[
  {
    "path": ".github/FUNDING.yml",
    "content": "custom:[https://github.com/sherlcok314159/ML/blob/main/sponsor.jpg]\n"
  },
  {
    "path": "NN/CNN/cnn.md",
    "content": "### Convolutional Neural Network\r\n\r\n\r\n章节\r\n\r\n- [Filter](#filter)\r\n- [池化](#pooling)\r\n- [Demo](#demo)\r\n- [冷知识](#cold)\r\n- [参考](#references)\r\n\r\n\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/cnn.png)\r\nCNN 一共分为输入，卷积，池化，拉直，softmax，输出\r\n\r\n卷积由互关运算（用Filter完成）和激活函数\r\n\r\n\r\n### <span id='filter'>Filter</span>\r\n\r\nCNN常用于图像识别，在深度学习中我们不可能直接将图片输入进去，**向量是机器学习的通行证**，我们将图片转换为像素矩阵再送进去，对于黑白的图片，每一个点只有一个像素值，若为彩色的，每一个点会有三个像素值（RGB）\r\n\r\n互关运算其实就是做矩阵点乘运算，用下面的Toy Example说明：其实就是用kernel(filter)来与像素矩阵局部做乘积，如下图，output的第一个阴影值其实是input和kernel的阴影部分进行矩阵乘法所得\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/kernel.png)\r\n\r\n接下来引入一个参数（Stride），代表我们每一次滤波器在像素矩阵上移动的步幅，步幅共分为水平步幅和垂直步幅，下图为水平步幅为2，垂直步幅为3的设置\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/stride.png)\r\n\r\n所以filter就不断滑过图片，所到之处做点积，那么，做完点积之后的shape是多少呢？假设input shape是32 * 32，stride 为1，filter shape 为4 * 4，那么结束后的shape为29 * 29，计算公式是((input shape - filter shape) / stride ) + 1，记住在深度学习中务必要掌握每一层的输入输出。\r\n\r\n那么，假如stride改为3，那么((32 - 4) / 3) + 1 不是整数，所以这样的设定是错误的，那么，我们可以通过padding的方式填充input shape，用0去填充，这里padding设为1，如下图，填充意味着输入的宽和高都会进行增加2 * 1，那么接下来的out shape 就是 ((32 + 2 * 1 - 4)/3) + 1，即为11 * 11\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/padding.png)\r\n\r\n接下来引入通道（channel），或为深度（depth）的介绍，一张彩色照片的深度为3，每一个像素点由3个值组成，我们的filter的输入通道或者说是深度应该和输入的一致，举例来说，一张照片32 * 32 * 3，filter可以设置为3 * 3 * 3，我们刚开始理解了一维的互关运算，三维无非就是filter拿出每一层和输入的每一层做运算，最后再组成一个深度为3的输出，这里stride设置为1，padding也为1，所以输出的shape为30 * 30 * 3。\r\n\r\n卷积的时候是用多个filter完成的，一般经过卷积之后的output shape 的输入通道（深度）为filter的数量，下图为输入深度为2的操作，会发现一个filter的输出最终会相加，将它的深度压为1，而不是一开始的输入通道。这是一个filter，多个filter最后放在一起，最后的深度就是filter的数量了。\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/channel.png)\r\n\r\n**Q & A:**\r\n\r\n**1.卷积的意义是什么呢？**\r\n\r\n其实如果用图片处理上的专业术语，被叫做锐化，卷积其实强调某些特征，然后将特征强化后提取出来，不同的卷积核关注图片上不同的特征，比如有的更关注边缘而有的更关注中心地带等等，如下图：\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/view_conv.png)\r\n\r\n当完成几个卷积层后（卷积 + 激活函数 + 池化）：\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/view_cnn.png)\r\n\r\n可以看出，一开始提取一些比较基础简单的特征，比如边角，后面会越来越关注某个局部比如头部甚至是整体\r\n\r\n**2.如何使得不同的卷积核关注不同的地方？**\r\n\r\n设置filter矩阵的值，比如input shape是4 * 4的，filter是2 * 2，filter是以一个一个小区域为单位，如果说我们想要关注每一个小区域的左上角，那么将filter矩阵的第一个值设为1，其他全为0即可\r\n\r\n总结来说，就是通过不断改变filter矩阵的值来关注不同的细节，提取不同的特征\r\n\r\n**3.filter矩阵里的权重参数是怎么来的？**\r\n\r\n首先会初始化权重参数，然后通过梯度下降不断降低loss来获得最好的权重参数\r\n\r\n**4.常见参数的默认设置有哪些？**\r\n\r\n一般filter的数量（output channels）通常可以设置为2的指数次，如32，64，128，512，这里提供一组比较稳定的搭配（具体还得看任务而定），F（kernel_size/filter_size）= 3，stride = 1，padding = 1；F = 5，stride = 1，Padding = 2;F = 1，S = 1，P = 0\r\n\r\n**4.参数数量？**\r\n\r\n举例来说，filter的shape为5 * 5 * 3 ，一共6个，stride设置为1，padding设为2，卷积层为(32 * 32 * 6)，注意卷积层这里是代表最后的输出shape，输入shape为 32 * 32 * 3，那么所需要的参数数量为 6 * (5 * 5 * 3 + 1)，里面 +1 的原因是原因是做完点积运算之后会加偏置（bias），当然这个参数是可以设置为没有的\r\n\r\n**5.1 x 1 卷积的意义是什么？**\r\n\r\nfilter的shape为1 x 1，stride = 1，padding = 0，假如input为32 * 32 * 3，那么output shape = (32 - 1) / 1 + 1 = 32，换言之，它并没有改变原来的shape，但是filter的数量可以决定输出通道，所以，1 x 1的卷积目的是改变输出通道。可以对输出通道进行升维或者降维，降维之后乘上的参数数量会减少，训练会更快，内存占用会更少。升维或降维的技术在ResNet中同样运用到啦（右图）：\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/1_1.jpg)\r\n\r\n另外，其实1 x 1的卷积不过是实现多通道之间的线性叠加，如果你还记得上面多通道的意思，1 x 1 卷积改变卷积核的数量，无非就是使得不同的feature map进行线性叠加而已（feature map指的是最后输出的每一层叠加出来的），因为通道的数量可以随时改变，1 x 1卷积也可以有跨通道信息交流的内涵\r\n\r\n****\r\n\r\n### <div id='pooling'>池化</div>\r\n\r\n卷积好之后会用RELU进行激活，当然，这并不会改变原来的shape，这样可以增加模型的非线性兼容性，如果模型是线性的，很容易出问题，如XOR问题，接下来进行池化操作（Pooling），常见的是MaxPooling（最大池化），它基本上长得跟filter一样，只不过功能是选出区域内的最大值。假如我们的shape是4 * 4 ，池化矩阵的shape是2 * 2，那么池化后的shape是2 * 2（4 / 2）\r\n\r\n那么，池化的意义是什么？池化又可以被成为向下取样（DownSample），经过池化之后shape会减小不少，如果说卷积的意义是提取出特征，那么，池化的意义是在这些特征中取出最有代表性的特征，这样可以降低像素的重复性，使得后续的卷积更有意义，同时可以降低shape，使得计算更为方便\r\n\r\n当然，也还有平均池化（AveragePooling），这样做试图包含区域内的所有的特征，那么，如果图片相邻色素重复很多，那么最大池化是不错的，如果说一张图片很多不同的特征需要关注，那么可以考虑平均池化\r\n\r\n补充一下，可以给上述池操作加一个Global，这就意味着全局，而不是一个一个的小区域\r\n\r\n\r\n***\r\n\r\n### <div id='demo'>Demo</div>\r\n\r\n！！！我的PyTorch完整Demo在[colab](https://colab.research.google.com/drive/1XMlSmiZ4FjHohptX-GSHsT_CFs4EoE6f?usp=sharing)\r\n\r\n进行卷积池化这样一组操作多次之后再全部拉直送入全连接网络，最后输出10个值，然后优化它们与真实标签的交叉熵损失，接下来用PyTorch和TensorFlow实操一下\r\n\r\n首先先搭建一个简单的PyTorch网络，这里采用Sequential容器写法，当然也可以按照普遍的self.conv1 = ...，按照Sequential写法更加简洁明了，后面前向传播函数也没有采取x = ...不断更新x，而是直接放进layer，遍历每一层即可，简洁干净\r\n```python\r\n# 导入库\r\nimport torch\r\nfrom torch import nn\r\nimport torchvision\r\nfrom torchvision import datasets,transforms\r\nimport torch.nn.functional as F\r\nimport matplotlib.pyplot as plt\r\n```\r\n\r\n```python\r\nclass Net(nn.Module):\r\n   def __init__(self):\r\n      super().__init__()\r\n      self.layer = nn.Sequential(\r\n                   nn.Conv2d(in_channels=1,out_channels=32,kernel_size=3),nn.ReLU(),\r\n                   nn.MaxPool2d(kernel_size=2),\r\n                   nn.Conv2d(32,64,2),nn.ReLU(),\r\n                   nn.MaxPool2d(2,2),\r\n                   nn.Flatten(),\r\n                   nn.Linear(64 * 6 * 6,10),nn.Softmax(),\r\n                   )\r\n\r\n   def forward(self,x):\r\n      x = self.layer(x)\r\n      return x\r\n```\r\n\r\nPyTorch中输入必须为(1,1,28,28)，这里比tensorflow多了一个1，这个1指的就是batch_size，这里`batch_first`为`True`，即若值为N，就会把输入分为N个小部分，每一个部分进行卷积，最后再将结果拼接起来\r\n\r\n\r\n搭建好网络之后，建议先检验一下网络和优化器参数\r\n\r\n```python\r\n# 如果GPU没有就会调到CPU\r\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\") \r\nmodel = Net().to(device)\r\nprint(model.parameters)\r\n# 训练时还需要优化器（Optimizer）\r\noptimizer = torch.optim.Adam(model.parameters())\r\nprint(optimizer)\r\n```\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/parameters.png)\r\n\r\n接下来定义训练和测试函数，先介绍几个小知识\r\n\r\n```python\r\nmodel.train() # 启用BatchNormalization和Dropout\r\nmodel.eval() # 因为是测试，所以取消两者\r\n```\r\n\r\n```python\r\ni = torch.tensor([\r\n    [1,2,3],\r\n    [4,5,6]\r\n])\r\n# 输出最大的值和它的索引\r\nprint(i.max(1,keepdim=True))\r\n# torch.return_types.max(values=tensor([[3],[6]]), indices=tensor([[2],[2]]))\r\n# 一般只要索引的话：\r\nprint(i.max(1,keepdim=True))[1]\r\n# tensor([[2],\r\n#         [2]])\r\n```\r\n\r\n```python\r\na = torch.tensor([1,2,3,4])\r\nb = torch.tensor([[1],\r\n                  [-1],\r\n                  [-2],\r\n                  2])\r\n# 将a转换为与b形状相同\r\na.view_as(b)\r\nprint(a)\r\n# tensor([[1],\r\n#        [2],\r\n#        [3],\r\n#        [4]])\r\n\r\n# 相对于numpy的equal函数，判断tensor里每一个值是否相等\r\n# 输出为True 或者 False\r\nprint(b.eq(a.view_as(b)))\r\n\r\n# tensor([[ True],\r\n#        [False],\r\n#        [False],\r\n#        [False]])\r\n\r\n# 求和用来判断损失和准确率\r\n# True --> 1，False --> 0\r\nprint(b.eq(a.view_as(b)).sum())\r\n\r\n# tensor(1)\r\n\r\n# 最后将PyTorch的tensor转换为Python中标准值\r\nprint(b.eq(a.view_as(b)).sum().item())\r\n# 1\r\n```\r\n\r\n```python\r\n# 下载训练和测试数据集\r\n\r\n# transforms函数可以对下载的数据做一些预处理\r\n# Compose 指的是将多个transforms操作组合在一起\r\n# ToTensor 是将[0,255] 范围 转换为[0,1]\r\n# 灰度图片（channel=1），所以每一个括号内只有一个值，前者代表mean，后者std（标准差）\r\n# 彩色图片（channel=3），所以每一个括号内有三个值，如\r\n# transforms.Normalize((0.5,0.5,0.5),(0.5,0.5,0.5))\r\ntransform = transforms.Compose([\r\n    transforms.ToTensor(),\r\n    transforms.Normalize((0.5,),(0.5,))\r\n])\r\n\r\ndata_train = datasets.MNIST(root=\"填自己的主路径\",\r\n                            transform=transform,\r\n                            train=True,\r\n                            download=True)\r\n\r\ndata_test = datasets.MNIST(root=\"填自己的主路径\",\r\n                           transform=transform,\r\n                           train=False)\r\n```\r\n\r\n```python\r\nBATCH_SIZE = 64 \r\nEPOCHS = 20 # 总共训练批次\r\nDEVICE = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\") \r\n```\r\n\r\n```python\r\n# 加载数据集\r\n# Load Data\r\ntrain_loader = torch.utils.data.DataLoader(dataset=data_train,\r\n                                                batch_size=BATCH_SIZE,\r\n                                                shuffle=True)\r\n\r\ntest_loader = torch.utils.data.DataLoader(dataset=data_test,\r\n                                               batch_size=BATCH_SIZE,\r\n                                               shuffle=True)\r\n```\r\n\r\n每一次新的batch中都需要梯度清零，否则的话梯度就会跨batch\r\n\r\n```python\r\ndef train(model,device,train_loader,optimizer,epoch):\r\n    model.train()\r\n    for batch_idx,(data,target) in enumerate(train_loader):\r\n        data,target = data.to(device),target.to(device)\r\n        optimizer.zero_grad() # 梯度清零\r\n        output = model(data)\r\n        loss = F.nll_loss(output,target) # negative likelihood loss\r\n        loss.backward() # 误差反向传播\r\n        optimizer.step() # 参数更新\r\n        if (batch_idx + 1) % 200 == 0:\r\n            print('Train Epoch: {} [{}/{} ({:.0f}%)]\\tLoss: {:.6f}'.format(\r\n                epoch, batch_idx * len(data), len(train_loader.dataset),\r\n                100. * batch_idx / len(train_loader), loss.item())) # .item()转换为python值\r\n    return loss.item()\r\n```\r\n\r\n因为测试的时候不需要更新参数，所以with torch.no_grad()\r\n```python\r\n# 定义测试函数\r\ndef test(model, device, test_loader):\r\n    model.eval()\r\n    test_loss,correct = 0 , 0\r\n    with torch.no_grad(): # 不track梯度\r\n        for data, target in test_loader:\r\n            data, target = data.to(device), target.to(device)\r\n            output = model(data)\r\n            test_loss += F.nll_loss(output, target, reduction = 'sum') # 将一批的损失相加\r\n            pred = output.max(1, keepdim = True)[1] # 找到概率最大的下标\r\n            correct += pred.eq(target.view_as(pred)).sum().item() # equals\r\n    test_loss /= len(test_loader.dataset)\r\n    acc = correct / len(test_loader.dataset)\r\n    print(\"\\nTest set: Average loss: {:.4f}, Accuracy: {} ({:.0f}%) \\n\".format(\r\n        test_loss, acc ,\r\n        100.* correct / len(test_loader.dataset)\r\n            ))\r\n    \r\n    return acc\r\n```\r\n\r\n接下来定义可视化函数\r\n\r\n```python\r\ndef visualize(lis,epoch,*label):\r\n    plt.xlabel(\"epochs\")\r\n    plt.ylabel(label)\r\n    plt.plot(epoch,lis)\r\n    plt.show()\r\n```\r\n\r\n最后进行训练和测试\r\n\r\n\r\n```python\r\ntrain_ = []\r\ntest_acc = []\r\nfor epoch in range(1,EPOCHS+1):\r\n    train_loss = train(model,DEVICE,train_loader,optimizer,epoch)\r\n    acc = test(model,DEVICE,test_loader)\r\n    train_.append(train_loss)\r\n    test_acc.append(acc)\r\n\r\nvisualize(train_,[i for i in range(20)],\"loss\")\r\nvisualize(test_acc,[i for i in range(20)],\"accuracy\")\r\n```\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/plt.png)\r\n\r\n\r\n接下来使用tensorflow-gpu 1.14.0再实操一下\r\n\r\n```python\r\n\r\nfrom tensorflow import keras\r\nimport numpy as np\r\nimport matplotlib.pyplot as plt\r\nimport tensorflow as tf\r\nimport matplotlib as mpl\r\nimport sys \r\n\r\n# solve could not create cudnn handle: CUDNN_STATUS_INTERNAL_ERROR\r\nconfig = tf.compat.v1.ConfigProto()\r\nconfig.gpu_options.allow_growth = True\r\nsession = tf.compat.v1.InteractiveSession(config=config)\r\n\r\n# 不同库版本，使用此代码块查看\r\nprint(sys.version_info)\r\nfor module in mpl,np,tf,keras:\r\n  print(module.__name__,module.__version__)\r\n\r\n'''\r\nsys.version_info(major=3, minor=6, micro=9, releaselevel='final', serial=0)\r\nmatplotlib 3.3.4\r\nnumpy 1.16.0\r\ntensorflow 1.14.0\r\ntensorflow.python.keras.api._v1.keras 2.2.4-tf\r\n'''\r\n# If you get numpy futurewarning,then try numpy 1.16.0\r\n\r\n# load train and test\r\n(x_train, y_train), (x_test, y_test) = keras.datasets.mnist.load_data()\r\n\r\n# Scale images to the [0, 1] range\r\nx_train = x_train.astype(\"float32\") / 255\r\nx_test = x_test.astype(\"float32\") / 255\r\n\r\n# 1 Byte = 8 Bits，2^8 -1 = 255。[0,255]代表图上的像素，同时除以一个常数进行归一化。1 就代表全部涂黑。0 就代表没涂\r\n\r\n# Make sure images have shape (28, 28, 1)\r\nx_train = np.expand_dims(x_train, -1)\r\nx_test = np.expand_dims(x_test, -1)\r\n\r\n# CNN 的输入方式必须得带上channel，这里扩充一下维度\r\n\r\n# convert class vectors to binary class matrices\r\ny_train = keras.utils.to_categorical(y_train, 10)\r\ny_test = keras.utils.to_categorical(y_test, 10)\r\n\r\n# y 属于 [0,9]代表手写数字的标签，这里将它转换为0-1表示，可以类比one-hot，举个例子，如果是2\r\n\r\n# [[0,0,1,0,0,0,0,0,0,0]……]\r\n\r\nmodel = keras.Sequential(\r\n    [\r\n        keras.Input(shape=(28, 28, 1)),\r\n        keras.layers.Conv2D(filters=32, kernel_size=(3, 3), activation=\"relu\"),\r\n        keras.layers.MaxPooling2D(pool_size=(2, 2)),\r\n        keras.layers.Conv2D(filters=64, kernel_size=(3, 3), activation=\"relu\"),\r\n        keras.layers.MaxPooling2D(pool_size=(2, 2)),\r\n        keras.layers.Flatten(),\r\n        keras.layers.Dense(units=10, activation=\"softmax\"),\r\n    ]\r\n)\r\n\r\n# 注意，Conv2D里面有激活函数不代表在卷积和池化的时候进行。而是在DNN里进行，最后拉直后直接接softmax就行\r\n\r\n\r\n# kernel_size 代表滤波器的大小，pool_size 代表池化的滤波器的大小\r\n\r\nmodel.compile(loss=\"categorical_crossentropy\", optimizer=\"adam\", metrics=[\"accuracy\"])\r\n\r\nmodel.summary()\r\n\r\nhistory = model.fit(x_train, y_train, batch_size=128, epochs=15, validation_split=0.1) #10层交叉检验\r\nscore = model.evaluate(x_test, y_test)\r\nprint(\"Test loss:\", score[0])\r\nprint(\"Test accuracy:\", score[1])\r\n\r\n# Test loss: 0.03664601594209671\r\n# Test accuracy: 0.989300012588501\r\n\r\n# visualize accuracy and loss\r\ndef plot_(history,label):\r\n    plt.plot(history.history[label])\r\n    plt.plot(history.history[\"val_\" + label])\r\n    plt.title(\"model \" + label)\r\n    plt.ylabel(label)\r\n    plt.xlabel(\"epoch\")\r\n    plt.legend([\"train\",\"test\"],loc = \"upper left\")\r\n    plt.show()\r\n\r\nplot_(history,\"acc\")\r\nplot_(history,\"loss\")\r\n\r\n```\r\n在机器学习中画精确度和loss的图很有必要，这样可以发现自己的代码中是否存在问题，并且将这个问题可视化\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/cnn_acc.png)\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/cnn_loss.png)\r\n\r\n\r\n### <div id='cold'>冷知识</div>\r\n\r\n>We don't minimize total loss to find the best function.\r\n\r\n我们采取将数据打乱并分组成一个一个的mini-batch，每个数据所含的数据个数也是可调的。关于epoch\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/batch.png)\r\n\r\n\r\n将一个mini-batch中的loss全部加起来，就更新一次参数。一个epoch就等于将所有的mini-batch都遍历一遍，并且经过一个就更新一次参数。\r\n\r\n如果epoch设为20，就将上述过程重复20遍\r\n\r\n****\r\n\r\n这里再细谈一下batch 和 epoch\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/speed.png)\r\n\r\n\r\n由图可知，当batch数目越多，分的越开，每一个epoch的速度理所应当就会**上升**的，当batch_size = 1的时候，1 epoch 就更新参数50000次 和 batch_size = 10的时候，1 epoch就更新5000次，那么如果更新次数相等的话，batch_size = 1会花**166s**;batch_size = 10每个epoch会花**17s**，总的时间就是**17 * 10 = 170s**。其实batch_size = 1不就是[SGD](../optimization/GD.md)。随机化很不稳定，相对而言，batch_size = 10，收敛的会更稳定，时间和等于1的差不多。那么何乐而不为呢？\r\n\r\n肯定有人要问了？随机速度快可以理解，看一眼就更新一次参数\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/gpu.png)\r\n\r\n为什么batch_size = 10速度和它差不多呢？按照上面来想，应该是一个mini-batch结束再来下一个，这样慢慢进行下去，其实没理由啊。\r\n\r\n接下来以batch_size = 2来介绍一下\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/gpu_2.png)\r\n\r\n学过线性代数应该明白，可以将同维度的向量拼成矩阵，来进行矩阵运算，这样每一个mini-batch都在同一时间计算出来，即为平行运算\r\n\r\n>所有平行运算GPU都能进行加速。\r\n\r\n那么，好奇的是到底计算机看到了什么？是一个一个的数字吗？\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/fake_digits.png)\r\n\r\n\r\n其实这件事情很反直觉，原以为计算机是看一张一张的图片，可是这个很难看出是单个数字而是**数字集**，那么我们试试看最大化像素\r\n\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/cnn_learn_2.png)\r\n\r\n\r\n其实左下角的6其实蛮像的耶。\r\n\r\n***\r\n\r\n### <div id='references'>参考</div>\r\n\r\nhttps://zh-v2.d2l.ai/\r\n\r\nhttps://demo.leemeng.tw/\r\n\r\nhttp://cs231n.stanford.edu\r\n\r\nhttps://www.youtube.com/watch?v=FrKWiRv254g&list=PLJV_el3uVTsPy9oCRY30oBPNLCo89yu49&index=19\r\n\r\nhttps://cs.stanford.edu/people/karpathy/convnetjs/demo/cifar10.html\r\n"
  },
  {
    "path": "NN/DNN/DNN_IMDB.py",
    "content": "import matplotlib.pyplot as plt\nimport matplotlib as mpl\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow import keras\n\nfor module in mpl,np,pd,tf,keras:\n    print(module.__name__,module.__version__)\n\n#取出词频为前10000\nvocab_size = 10000\n# <3的id都是特殊字符\nindex_from = 3\n# 这里用keras里面的imdb数据集\nimdb = keras.datasets.imdb\n\n(train_data,train_labels),(test_data,test_labels) = imdb.load_data(num_words = vocab_size,index_from = index_from)\n\nprint(train_data.shape)\nprint(train_labels.shape)\n\nprint(train_data[0],train_labels[0])\n\nprint(type(train_data))\nprint(type(train_labels))\n\nprint(np.unique(train_labels))\n\nprint(test_data.shape)\nprint(test_labels.shape)\n\nword_index=imdb.get_word_index()\n\nprint(len(word_index))\nprint(type(word_index))\n\nprint(word_index.get(\"footwork\"))\n\n# 取出的词表索引从1开始，id都偏移3\nword_index = {k:(v+3) for k,v in word_index.items()}\n# 自定义索引0-3\nword_index[\"<PAD>\"] = 0 # 填充字符\nword_index[\"<START>\"] = 1 # 起始字符\nword_index[\"<UNK>\"] = 2 # 找不到就返回UNK\nword_index[\"<END>\"] = 3 # 结束字符\n\n# 转成习惯的方式，索引为key,单词为value\nreverse_word_index = {v:k for k,v in word_index.items()}\n\n# 查看解码效果\nprint(reverse_word_index)\n\n# {34710: 'fawn', 52015: 'tsukino', 52016: 'nunnery', 16825: 'sonja', 63960: 'vani', 1417: 'woods', ……}\n\n# debug\n\nprint(reverse_word_index[34707])\n\n# footwork\n\nprint(word_index.get(\"footwork\"))\n\n# 34707\n\n# 随机看一下样本长度，可见长度不一\nprint(len(train_data[0]),len(train_data[1]),len(train_data[100]))\n\n# 218 189 158\n\n# 设置输入词汇表的长度，长度<500会被补全，>500会被截断\n\nmax_length = 500\n\n# 填充padding\n# value 用什么值填充\n# padding 选择填充的顺序，2中pre,post\ntrain_data = keras.preprocessing.sequence.pad_sequences(train_data,value = word_index[\"<PAD>\"],padding=\"pre\",maxlen = max_length)\n\n# 使测试集要和训练集结构相同\ntest_data = keras.preprocessing.sequence.pad_sequences(test_data,value = word_index[\"<PAD>\"],padding = \"pre\",maxlen = max_length)\n\n# 一个单词的维度是16维\nembedding_dim = 16\nbatch_size = 128\n\n# 定义模型\n# 定义矩阵 [vocab_size,embedding_dim]\n# GlobalAveragePooling1D 全局平均值池化-在max_length这个维度上做平均，就是1x16了,在哪个维度上做Global，该维度就会消失\n# 二分类问题，最后的激活函数用sigmoid\nmodel = keras.models.Sequential([\n        keras.layers.Embedding(vocab_size,embedding_dim,input_length = max_length),\n        keras.layers.GlobalAveragePooling1D(),\n        keras.layers.Dense(64,activation = \"relu\"),\n        keras.layers.Dense(1,activation = \"sigmoid\"),\n])\n\nmodel.summary()\nmodel.compile(optimizer = \"adam\",loss = \"binary_crossentropy\",metrics = [\"accuracy\"])\n\n# 数据集中只有训练集、测试集，没有验证集，就用validation_split-拿20%的训练集数据当作验证集数据\nhistory=model.fit(train_data,train_labels,epochs=30,batch_size=batch_size,validation_split=0.2)\n\n# 绘制学习曲线\ndef plot_(history,label):\n    plt.plot(history.history[label])\n    plt.plot(history.history[\"val_\" + label])\n    plt.title(\"model \" + label)\n    plt.ylabel(label)\n    plt.xlabel(\"epoch\")\n    plt.legend([\"train\",\"validation\"],loc = \"upper left\")\n    plt.show()\n\nplot_(history,\"acc\")\nplot_(history,\"loss\")\n\nscore = model.evaluate(\n    test_data,test_labels,\n    batch_size=batch_size,\n    verbose=1\n)\n\nprint(\"Test loss:\", score[0])\nprint(\"Test accuracy:\", score[1])\n\n'''\nTest loss: 0.6628\nTest accuracy: 0.8588\n'''\n"
  },
  {
    "path": "NN/DNN/IMDB.md",
    "content": "### Sentiment Classification in IMDB\n\n***通过DNN实现影评情感分类***\n\n章节\n\n- [包的准备](#prepare)\n- [数据下载](#download)\n- [数据预处理](#preprocess)\n- [设计DNN](#design)\n- [调参](#update)\n\n\n**<div id='prepare'>包的准备</div>**\n\n```python\nimport matplotlib.pyplot as plt\nimport matplotlib as mpl\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow import keras\n\nfor module in mpl,np,pd,tf,keras:\n    print(module.__name__,module.__version__)\n\n'''\nmatplotlib 3.3.4\nnumpy 1.16.0\npandas 1.1.5\ntensorflow 1.14.0\ntensorflow.python.keras.api._v1.keras 2.2.4-tf\n'''\n\n若没有按照版本安装，如\npip3 install numpy==1.16.0\n```\n\n**<div id='download'>数据下载</div>**\n\n```python\n#取出词频为前10000\nvocab_size = 10000\n# <3的id都是特殊字符\nindex_from = 3\n# 这里用keras里面的imdb数据集\nimdb = keras.datasets.imdb\n\n(train_data,train_labels),(test_data,test_labels) = imdb.load_data(num_words = vocab_size,index_from = index_from)\n\n'''\nDownloading data from https://storage.googleapis.com/tensorflow/tf-keras-datasets/imdb.npz\n17465344/17464789 [==============================] - 28s 2us/step\n'''\n\n# 若要进一步了解各种参数，API示例文档 https://keras.io/api/datasets/imdb/\n\n# 训练集的大小\nprint(train_data.shape)\nprint(train_labels.shape)\n\n# (25000,)\n# (25000,)\n\n# 训练集的第一个样本（是向量）\nprint(train_data[0],train_labels[0])\n\n'''\n[1, 14, 22, 16, 43, 530, 973, 1622, 1385, 65, 458, 4468, 66, 3941, 4, 173, 36, 256, 5, 25, 100, 43, 838, 112, 50, 670, 2, 9, 35, 480, 284, 5, 150, 4,……] \n\n1\n'''\n\n# 多维的数组 numpy.ndarray\nprint(type(train_data))\nprint(type(train_labels))\n\n'''\n<class 'numpy.ndarray'>\n<class 'numpy.ndarray'>\n'''\n\n# train_labels的值0(negative),1(positive)-二分类\nprint(np.unique(train_labels))\n\n# [0 1]\n\n#测试集大小\nprint(test_data.shape)\nprint(test_labels.shape)\n\n#(25000, 500)\n#(25000,)\n\n```\n\n**<div id='preprocess'>数据预处理</div>**\n\n```python\n# 下载词表，就是imdb_word_index.json\n# key是单词，value是索引\nword_index=imdb.get_word_index()\n\nprint(len(word_index))\nprint(type(word_index))\n\n# 88584\n# <class 'dict'>\n\nprint(word_index.get(\"footwork\"))\n\n# 34698\n\n# 取出的词表索引从1开始，id都偏移3\nword_index = {k:(v+3) for k,v in word_index.items()}\n# 自定义索引0-3\nword_index[\"<PAD>\"] = 0 # 填充字符\nword_index[\"<START>\"] = 1 # 起始字符\nword_index[\"<UNK>\"] = 2 # 找不到就返回UNK\nword_index[\"<END>\"] = 3 # 结束字符\n\n# 转成习惯的方式，索引为key,单词为value\nreverse_word_index = {v:k for k,v in word_index.items()}\n\n# 查看解码效果\nprint(reverse_word_index)\n\n# {34710: 'fawn', 52015: 'tsukino', 52016: 'nunnery', 16825: 'sonja', 63960: 'vani', 1417: 'woods', ……}\n\n# 解码函数，如果找不到的话就是<UNK>，按照索引找词\ndef decode_review(text_ids):\n  return \" \".join([reverse_word_index.get(word_id,\"<UNK>\") for word_id in text_ids])\n\n\n# 逐个对单词解码，得到一篇文本\ndecode_review(train_data[0])\n\n# debug\n\nprint(reverse_word_index[34707])\n\n# footwork\n\nprint(word_index.get(\"footwork\"))\n\n# 34707\n\n# 随机看一下样本长度，可见长度不一\nprint(len(train_data[0]),len(train_data[1]),len(train_data[100]))\n\n# 218 189 158\n\n# 设置输入词汇表的长度，长度<500会被补全，>500会被截断\n\nmax_length = 500\n\n# 填充padding\n# value 用什么值填充\n# padding 选择填充的顺序，2中pre,post\ntrain_data = keras.prepocessing.sequence.pad_sequences(train_data,value = word_index[\"<PAD>\"],padding=\"pre\",maxlen = max_length)\n\n# 使测试集要和训练集结构相同\ntest_data = keras.preprocessing.sequence.pad_sequences(test_data,value = word_index[\"<PAD>\"],padding = \"pre\",maxlen = max_length)\n\n```\n\n\n这里简要介绍一下两种**padding**方式，与前面代码无关，一个是在**开头**填充，一个是在**末尾**填充，在本题中好像pre train出的结果好一点\n\n```python\n\ntrain_data = [[1,2,3,34],[2,3,1,4,2]]\ntrain_data = keras.preprocessing.sequence.pad_sequences(train_data,value = 0,padding = \"pre\",maxlen = 10)\nprint(train_data)\n\n'''\n[[ 0  0  0  0  0  0  1  2  3 34]\n [ 0  0  0  0  0  2  3  1  4  2]]\n'''\n\ntrain_data = [[1,2,3,34],[2,3,1,4,2]]\ntrain_data = keras.preprocessing.sequence.pad_sequences(train_data,value = 0,padding = \"post\",maxlen = 10)\n\nprint(train_data)\n\n'''\n[[ 1  2  3 34  0  0  0  0  0  0]\n [ 2  3  1  4  2  0  0  0  0  0]]\n'''\n```\n\n**<div id='design'>定义模型</div>**\n\n```python\n# 一个单词的维度是16维\nembedding_dim = 16\nbatch_size = 128\n\n# 定义模型\n# 定义矩阵 [vocab_size,embedding_dim]\n# GlobalAveragePooling1D 全局平均值池化-在max_length这个维度上做平均，就是1x16了,在哪个维度上做Global，该维度就会消失\n# 二分类问题，最后的激活函数用sigmoid\nmodel = keras.models.Sequential([\n        keras.layers.Embedding(vocab_size,embedding_dim,input_length = max_length),\n        keras.layers.GlobalAveragePooling1D(),\n        keras.layers.Dense(64,activation = \"relu\"),\n        keras.layers.Dense(1,activation = \"sigmoid\"),\n])\n\nmodel.summary()\nmodel.compile(optimizer = \"adam\",loss = \"binary_crossentropy\",metrics = [\"accuracy\"])\n\n# 数据集中只有训练集、测试集，没有验证集，就用validation_split-拿20%的训练集数据当作验证集数据\nhistory=model.fit(train_data,train_labels,epochs=30,batch_size=batch_size,validation_split=0.2)\n\n# 绘制学习曲线\ndef plot_(history,label):\n    plt.plot(history.history[label])\n    plt.plot(history.history[\"val_\" + label])\n    plt.title(\"model \" + label)\n    plt.ylabel(label)\n    plt.xlabel(\"epoch\")\n    plt.legend([\"train\",\"validation\"],loc = \"upper left\")\n    plt.show()\n\nplot_(history,\"accuracy\")\nplot_(history,\"loss\")\n\n```\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/imdb_1.png)\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/imdb_2.png)\n\n其实可以发现已经烂掉了，发生了过拟合\n\n```python\nscore = model.evaluate(\n    test_data,test_labels,\n    batch_size=batch_size,\n    verbose=1\n)\n\nprint(\"Test loss: \", score[0])\nprint(\"Test accuracy: \", score[1])\n\n'''\nTest loss: 0.7127751180744171\nTest accuracy: 0.85788\n'''\n```\n\n接下来进行一些讨论\n\n**<div id='update'>调参</div>**\n\n**More neurons?**\n\n```python\n# 改成128个神经元\nkeras.layers.Dense(128,activation='relu'),\n'''\nTest loss: 0.7896\nTest accuracy: 0.8556\n'''\n\n# 改成256个神经元\nkeras.layers.Dense(256,activation='relu'),\n'''\nTest loss: 0.9015\nTest accuracy: 0.8531\n'''\n\n# 改成512个神经元\nkeras.layers.Dense(512,activation='relu'),\n'''\nTest loss: 1.0439\nTest accuracy: 0.8510\n'''\n# 其实结果都反倒不好了\n```\n\n**Other activation functions?**\n```python\n# 试试看sigmoid\nkeras.layers.Dense(64,activation='sigmoid'),\n'''\nTest loss: 0.3955\nTest accuracy: 0.8771\n'''\n# 哇，这个结果很棒！\n\n# 试试看tanh\nkeras.layers.Dense(64,activation='tanh'),\n'''\nTest loss: 1.0261\nTest accuracy: 0.8558\n'''\n# 没什么区别吧\n\n# 试试看softmax\nkeras.layers.Dense(64,activation='softmax'),                               \n'''\nTest loss: 0.2950\nTest accuracy: 0.8838\n'''\n\n# Cool!\n\n# 试试看softplus\nkeras.layers.Dense(64,activation='softplus'),                               \n'''\nTest loss: 0.4718\nTest accuracy: 0.8709\n'''\n# 还不错\n\n# 试试看Elu\nkeras.layers.Dense(64,activation='elu'),                               \n'''\nTest loss: 0.9268\nTest accuracy: 0.8544\n'''\n\n# 试试看Softsign\nkeras.layers.Dense(64,activation='softsign'),                               \n'''\nTest loss: 0.9815\nTest accuracy: 0.8555\n'''\n\n# 试试看Exponential\nkeras.layers.Dense(64,activation='exponential'),                               \n'''\nTest loss: 0.9815\nTest accuracy: 0.8555\n'''\n\n\n# 试试看Leaky Relu\nkeras.layers.Dense(64),\nkeras.layers.LeakyRelu(),                               \n'''\nTest loss: 0.8014\nTest accuracy: 0.8560\n'''\n```\n\n**Deep?**\n\n尝试了各种各样的组合，最终大部分都落在[86，87]区间，还没有不DEEP来的好\n\n\n**EarlyStopping?**\n\n其实很多时候train的时候再往下其实val_loss是不会下降的，不如直接停掉，防止过拟合\n\n代码在[Problems](../problems.md)中说过了，这里只讨论一下patience参数的影响\n\n\n```python\npatience = 0，accuracy: 0.8788\n```\n![](https://github.com/sherlcok314159/ML/blob/main/Images/val_loss_0.png)\n\n```python\npatience = 1，accuracy: 0.8746\n```\n![](https://github.com/sherlcok314159/ML/blob/main/Images/val_loss_1.png)\n\n```python\npatience = 2，accuracy: 0.8772\n```\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/val_loss_2.png)\n\n\n```python\npatience = 3，accuracy: 0.8183\n```\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/val_loss_3.png)\n\n```python\npatience = 4，accuracy: 0.8724\n```\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/val_loss_4.png)\n\n```python\npatience = 4，accuracy: 0.8650\n```\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/val_loss_5.png)\n\n其实大概可以看出，很多时候我们很难找出一个patience充当万金油，不知道该跳哪一个，所以真正实操的时候，很多时候选择不跳过\n\n一般的取值在10到100之间，取决于你的data和模型。举个例子来讲，如果你的模型下降的比较慢一开始，就把patience适当调大一点\n\n"
  },
  {
    "path": "NN/DNN/dnn.md",
    "content": "### DNN(Deep-Learning Neural Network)\r\n\r\n接下来介绍比较常见的**全连接层网络（fully-connected feedfoward nerural network）**\r\n\r\n**名词解释**\r\n\r\n首先介绍一下神经网络的基本架构，以一个神经元为例\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/neuron.png)\r\n\r\n输入是一个**向量**，**权重（weights）**也是一个**矩阵**\r\n\r\n把两个矩阵进行相乘，最后加上**偏差（bias）**，即*w1 * x1 + w2 * x2 + b*\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/neuron_2.png)\r\n\r\n神经元里面会有一个**激活函数（activation）**，比如[sigmoid,Relu](activation.md)等等，然后将这个结果当作未知量输入神经元所代表的函数\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/neuron_3.png)\r\n\r\n神经网络分为三个层次，从左到右分别为**输入层（Input Layer）**，**隐含层（Hidden Layer）**，**输出层（Output Layer）** 。当然在输出之前还得经过**softmax**，这里只是广义的网络架构。输入层和输出层没必要赘言。一个隐含层有很多神经元（neuron），神经元的数目是你可以设置的参数。\r\n\r\n何为 **全连接（fully-connected）** 呢？\r\n\r\n**每一个输入跟神经元必定两两相连**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/neuron_4.png)\r\n\r\n\r\n那么，肯定有人问了\r\n\r\n***Deep or not?***\r\n\r\n>Universality Theorem \r\n\r\n>Any Deep Neuron Network can be replaced by one-hidden-layer neuron network.\r\n\r\n于是有人说，我都可以用一层代替很多层了，那为什么还用Deep，根本没必要嘛\r\n\r\n***Why Deep?***\r\n\r\n确实一个很宽的隐含层可以代替很多层，但是效率必须纳入比较范围\r\n\r\n如果浅层和深层比较，按照**控制变量法**，两个参数数量必须一样，否则结果会有偏差\r\n\r\n举个例子，接下来我要通过图片来分辨长发男，短发男，长发女，短发女。\r\n\r\n**浅层做法：**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/shallow.png)\r\n\r\n那我们联系一下现实，现实中**长发男**不大好找诶，这就意味着这类数据量很少，train出的结果很糟。\r\n\r\n我们都知道如果问题比较复杂的时候，可以**将问题分为几个小问题**，算法中有个思维是**分而治之（Divide and Conquer）**。这里要介绍一下**模组化（Modularization）**。\r\n\r\n继续上面的例子，我们可以先分辨是男是女和是长发还是短发\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/modularization.png)\r\n\r\n\r\n\r\n这样的话，数据量都是够的，train出的结果不会很糟\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/modularization_2.png)\r\n\r\n\r\n\r\n通过模组化用两层神经网络可以解决数据量不足的问题，这样train出的结果比一层比起来肯定是好的多的\r\n\r\n这也可以解释其实当我们**数据不够**的时候，用**Deep Neuron Network**其实train出的结果比其他好一点\r\n\r\n而且神奇的是，**Modularization**在**DeepLearning**的过程中会自动从训练数据中学得，Deep的过程中会把一个复杂的问题分成若干个**Simple Function**，每一个各司其职，就像是写代码的时候会写一个函数，然后再需要用的时候，**call**一下函数名就行了\r\n\r\n> Deep is necessary.\r\n\r\n**通用近似定理（Universal Approximation Theorem）**\r\n\r\n只要有一层隐含层和激活层，就能够近似拟合任意的函数，其实深度学习就是去学习去一个网络来近似出一个函数，从而最大化接近相关变量的概率分布，这也是神经网络的基础。\r\n\r\n另外，补充一点，DNN一个好处是可以决定输出的大小（shape），只要设置隐含层的神经元即可\r\n\r\n\r\n接下来，以手写数字识别（Mnist）为例代码实操一下\r\n\r\n```python\r\nimport matplotlib.pyplot as plt\r\nimport numpy as np\r\nfrom tensorflow import keras\r\nfrom tensorflow.keras import layers\r\nimport sys\r\nimport matplotlib as mpl\r\nimport tensorflow as tf\r\n\r\n# 不同库版本，使用本代码需要查看\r\nprint(sys.version_info)\r\nfor module in mpl,np,tf,keras:\r\n  print(module.__name__,module.__version__)\r\n\r\n'''\r\nsys.version_info(major=3, minor=6, micro=9, releaselevel='final', serial=0)\r\nmatplotlib 3.3.4\r\nnumpy 1.16.0\r\ntensorflow 1.14.0\r\ntensorflow.python.keras.api._v1.keras 2.2.4-tf\r\n'''\r\n# If you get numpy futurewarning,then try numpy 1.16.0\r\n\r\n# Load train and test\r\n(x_train, y_train), (x_test, y_test) = keras.datasets.mnist.load_data()\r\n\r\n# Reshape to dense standard input\r\nx_train = x_train.reshape(60000, 784)\r\nx_test = x_test.reshape(10000, 784)\r\n\r\n# Scale images to the [0, 1] range\r\nx_train = x_train.astype(\"float32\") / 255\r\nx_test = x_test.astype(\"float32\") / 255\r\n\r\n# convert class vectors to binary class matrices\r\ny_train = keras.utils.to_categorical(y_train, 10)\r\ny_test = keras.utils.to_categorical(y_test, 10)\r\n\r\nmodel = keras.Sequential(\r\n    [\r\n        keras.Input(shape=(28 * 28)),\r\n        layers.Dense(128, activation=\"relu\"),\r\n        layers.Dense(128, activation=\"relu\"),\r\n        layers.Dense(128, activation=\"relu\"),\r\n        layers.Dense(10, activation=\"softmax\"),\r\n    ]\r\n)\r\n\r\nmodel.compile(loss=\"categorical_crossentropy\", optimizer=\"adam\", metrics=[\"accuracy\"])\r\n\r\nmodel.summary()\r\n\r\nhistory = model.fit(x_train, y_train, batch_size=128, epochs=15, validation_split=0.2)\r\nscore = model.evaluate(x_test, y_test)\r\n\r\nprint(\"Test Loss:\", score[0])\r\nprint(\"Test Accuracy\", score[1])\r\n\r\n# Test Loss: 0.11334700882434845\r\n# Test Accuracy 0.9750999808311462\r\n# 注意天下几乎没有两个相同的准确率，因为你是random出来的，在epoch之前会randomly initialize parameters\r\n\r\n# visualize accuracy and loss\r\ndef plot_(history,label):\r\n    plt.plot(history.history[label])\r\n    plt.plot(history.history[\"val_\" + label])\r\n    plt.title(\"model \" + label)\r\n    plt.ylabel(label)\r\n    plt.xlabel(\"epoch\")\r\n    plt.legend([\"train\",\"test\"],loc = \"upper left\")\r\n    plt.show()\r\n\r\nplot_(history,\"acc\")\r\nplot_(history,\"loss\")\r\n\r\n'''\r\n@Tool : Tensorflow 2.x\r\nTransform acc,val_acc above into accuracy,val_accuracy\r\n'''\r\n \r\n```\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/dnn_accuracy_plot.png)\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/dnn_loss_plot.png)\r\n\r\n\r\n这里跟[CNN](cnn.md) 其实shape的处理是不一样的。在CNN中你必须再加一个维度来表示**channel**，而DNN这里是不需要的。读者也可以把print一下train_data.shape，会发现是(60000,28,28)。60000是数据的数目。输入shape应该是 28 * 28 = 784，为了与输入shape匹配，需要一开始**reshape成(60000,784)**\r\n\r\n**注意**：千万别把 28 * 28 写出 (28,28)！否则会报错\r\n\r\n```python\r\nValueError: Input 0 of layer sequential is incompatible with the layer: expected axis -1 of input shape to have value 28 but received input with shape (128, 784)\r\n```\r\n\r\n**参考文献：**\r\n\r\nhttps://bnzn2426.tistory.com/category/%EB%A8%B8%EC%8B%A0%EB%9F%AC%EB%8B%9D%26%EB%94%A5%EB%9F%AC%EB%8B%9D%20%EA%B3%B5%EB%B6%80"
  },
  {
    "path": "NN/RNN/LSTM/lstm_embedding.py",
    "content": "# -*- coding: utf-8 -*-\n\"\"\"LSTM-embedding.ipynb\n\nAutomatically generated by Colaboratory.\n\nOriginal file is located at\n    https://colab.research.google.com/drive/1up_JyJBZ1VnlidzHKtpGMGMRc1W9uXG5\n\"\"\"\n\nimport matplotlib as mpl\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow import keras\nimport sklearn \nimport os\nimport sys\nimport time\n\nprint(tf.__version__)\nprint(sys.version_info)\nfor module in mpl,np,pd,sklearn,tf,keras:\n  print(module.__name__,module.__version__)\n\nimdb=keras.datasets.imdb\nvocab_size=10000\nindex_from=3\n(train_data,train_labels),(test_data,test_labels)=imdb.load_data(num_words=vocab_size,index_from=index_from)\n\nword_index=imdb.get_word_index()\nprint(len(word_index))\n\nword_index={k:(v+3) for k,v in word_index.items()}\n\nword_index['<PAD>']=0\nword_index['<START>']=1\nword_index['<UNK>']=2\nword_index['<END>']=3\n\nreverse_word_index=dict([\n    (value,key) for key,value in word_index.items()\n])\n\ndef decode_review(text_ids):\n    return ' '.join([reverse_word_index.get(word_id,'<UNK>') for word_id in text_ids])\n\ndecode_review(train_data[0])\n\nmax_length=500\n\ntrain_data=keras.preprocessing.sequence.pad_sequences(\n    train_data,value=word_index['<PAD>'],\n    padding='post',maxlen=max_length\n)\n\ntest_data=keras.preprocessing.sequence.pad_sequences(\n    test_data,value=word_index['<PAD>'],\n    padding='post',maxlen=max_length\n)\n\nprint(train_data[0])\n\n# 单向LSTM\n\nembedding_dim=16\nbatch_size=512\n# 把DNN的全局平均换成单向RNN，时间变长，不断修改效果变好\n# return_sequences:Boolean. Whether to return the last output in the output sequence, or the full sequence 文本生成、机器翻译是要返回所有序列的True,只要最后一个序列False\n# 这里的变量名字应该改成model_LSTM的（代码从单向RNN复制过来正在训练，就不改了）\nsingle_rnn_model=keras.models.Sequential([\n          keras.layers.Embedding(vocab_size,embedding_dim,input_length=max_length),\n          keras.layers.LSTM(units=64,return_sequences=False),\n          # w=64,b=64\n          keras.layers.Dense(64,activation='relu'),\n          keras.layers.Dense(1,activation='sigmoid'),\n])\n\nsingle_rnn_model.summary()\nsingle_rnn_model.compile(optimizer='adam',loss='binary_crossentropy',metrics=['accuracy'])\n\n# 全连接层参数是4160 wx+b:x是一维的64\n\nhistory_single_rnn=single_rnn_model.fit(\n    train_data,train_labels,\n    epochs=30,\n    batch_size=batch_size,\n    validation_split=0.2\n)\n\ndef plot_learning_curves(history,label,epochs,min_value,max_value):\n  data={}\n  data[label]=history.history[label]\n  data['val_'+label]=history.history['val_'+label]\n  pd.DataFrame(data).plot(figsize=(8,5))\n  plt.grid(True)\n  plt.axis([0,epochs,min_value,max_value])\n  plt.show()\n\n\n# 训练集、验证集上的准确率\nplot_learning_curves(history_single_rnn,'accuracy',30,0,1)\n# 训练集、验证集上的损失\nplot_learning_curves(history_single_rnn,'loss',30,0,1)\n\n\"\"\"过拟合-验证集上效果差一些\"\"\"\n\nsingle_rnn_model.evaluate(\n    test_data,test_labels,\n    batch_size=batch_size,\n    verbose=0\n)\n\n# 双向双层LSTM\nembedding_dim=16\nbatch_size=512\n\n# return_sequences:Boolean. Whether to return the last output in the output sequence, or the full sequence 文本生成、机器翻译是要返回所有序列的True,只要最后一个序列False\nmodel=keras.models.Sequential([\n          keras.layers.Embedding(vocab_size,embedding_dim,input_length=max_length),\n          keras.layers.Bidirectional(keras.layers.LSTM(units=64,return_sequences=True)),\n          keras.layers.Bidirectional(keras.layers.LSTM(units=64,return_sequences=False)),\n          # w=64,b=64\n          keras.layers.Dense(64,activation='relu'),\n          keras.layers.Dense(1,activation='sigmoid'),\n])\n\nmodel.summary()\nmodel.compile(optimizer='adam',loss='binary_crossentropy',metrics=['accuracy'])\n\n# 全连接层参数是4160 wx+b:x是一维的64\n\nhistory=single_rnn_model.fit(\n    train_data,train_labels,\n    epochs=30,\n    batch_size=batch_size,\n    validation_split=0.2\n)\n\n# 训练集、验证集上的准确率\nplot_learning_curves(history,'accuracy',30,0,1)\n# 训练集、验证集上的损失\nplot_learning_curves(history,'loss',30,0,1)\n\n# 双向单层LSTM\n\nembedding_dim=16\nbatch_size=512\n\n# return_sequences:Boolean. Whether to return the last output in the output sequence, or the full sequence 文本生成、机器翻译是要返回所有序列的True,只要最后一个序列False\nbi_lstm_model=keras.models.Sequential([\n          keras.layers.Embedding(vocab_size,embedding_dim,input_length=max_length),\n           keras.layers.Bidirectional(keras.layers.LSTM(units=32,return_sequences=False)),\n          # w=64,b=64\n          keras.layers.Dense(64,activation='relu'),\n          keras.layers.Dense(1,activation='sigmoid'),\n])\n\nbi_lstm_model.summary()\nbi_lstm_model.compile(optimizer='adam',loss='binary_crossentropy',metrics=['accuracy'])\n\n# 全连接层参数是4160 wx+b:x是一维的64\n\nhistory=bi_lstm_model.fit(\n    train_data,train_labels,\n    epochs=30,\n    batch_size=batch_size,\n    validation_split=0.2\n)\n\n# 训练集、验证集上的准确率\nplot_learning_curves(history,'accuracy',30,0,1)\n# 训练集、验证集上的损失\nplot_learning_curves(history,'loss',30,0,1)\n\nbi_lstm_model.evaluate(test_data,test_labels,batch_size=batch_size,verbose=0)"
  },
  {
    "path": "NN/RNN/LSTM/文本分类_lstm_subword.py",
    "content": "# -*- coding: utf-8 -*-\n\"\"\"文本分类-LSTM-subword.ipynb\n\nAutomatically generated by Colaboratory.\n\nOriginal file is located at\n    https://colab.research.google.com/drive/1yAuE8tx8tAEJ8auF6K5v95AnoDWvnApY\n\"\"\"\n\nimport matplotlib as mpl\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow import keras\nimport sklearn \nimport os\nimport sys\nimport time\n# 加载数据集特别常用\nimport tensorflow_datasets as tfds\n\nprint(tf.__version__)\nprint(sys.version_info)\nfor module in mpl,np,pd,sklearn,tf,keras,tfds:\n  print(module.__name__,module.__version__)\n\n\"\"\"https://tensorflow.google.cn/datasets/catalog/overview\n好多数据集：音频、图片、问答、文本、翻译、视频、可视化\n\"\"\"\n\n# 影评分类\n\n# 下载subword数据集\n# with_info:返回元组（tf.data.Dataset，tfds.core.DatasetInfo）\n# as_supervised True:有监督的，会把labels返回 False:无监督的，不会把labels返回\n# info:subword形成的集合\ndataset,info=tfds.load('imdb_reviews/subwords8k',with_info=True,as_supervised=True)\ntrain_dataset,test_dataset=dataset['train'],dataset['test']\n\n# 看看输入、输出\nprint(train_dataset)\nprint(test_dataset)\n\n\"\"\"输入是(None,)\n输出是()\n\"\"\"\n\ntrain_dataset = train_dataset.map(lambda x_text, x_label: (x_text, tf.expand_dims(x_label, -1)))\ntest_dataset = test_dataset.map(lambda x_text, x_label: (x_text, tf.expand_dims(x_label, -1)))\n\n# encoder:把文本转成subword形式\n# tokenizer对象\ntokenizer=info.features['text'].encoder\nprint(type(tokenizer))\n# 看看词袋里面有哪些单词\nprint('vocabulary size:{}'.format(tokenizer.vocab_size))\n\n# 从训练集中拿出一个，看看有哪些词根subword\nfor i in train_dataset.take(1):\n  print(i)\n\n# 对于随便一个句子，看看它在词袋中的id\n\nsample_string=\"Tensorflow is cool.\"\n# encode():把文本变为subword的id序列\ntokenized_string=tokenizer.encode(sample_string)\nprint(\"Tokenized string is {}\".format(tokenized_string))\n# decode():把subword的id序列变为文本\noriginal_string=tokenizer.decode(tokenized_string)\nprint(\"Original string is {}\".format(original_string))\n\nassert original_string==sample_string\n\n# 看看这个例子中的每个subword的id\nfor token in tokenized_string:\n  print(\"{}—>{} len:{}\".format(token,tokenizer.decode([token]),len(tokenizer.decode([token]))))\n\n\"\"\"空格也有id\"\"\"\n\n# 获取shape\n\nbuffer_size=10000\nbatch_size=64\n\npadded_shapes=tf.compat.v1.data.get_output_shapes(train_dataset)\nprint(padded_shapes)\npadded_shapes_test=tf.compat.v1.data.get_output_shapes(test_dataset)\nprint(padded_shapes_test)\n\ntrain_dataset=train_dataset.shuffle(buffer_size)\nprint(train_dataset)\n\n# padded_batch()对每批数据做padding\ntrain_dataset_=train_dataset.padded_batch(batch_size,padded_shapes)\ntest_dataset=test_dataset.padded_batch(batch_size,padded_shapes_test)\nprint(train_dataset)\nprint(test_dataset)\n\n\"\"\"batch之后维度增加了\n\n\"\"\"\n\nvocab_size=tokenizer.vocab_size\nembedding_dim=16\nbatch_size=512\n\n# 双向单层LSTM\nbi_lstm_model=keras.models.Sequential([\n                           keras.layers.Embedding(vocab_size,embedding_dim),\n                           keras.layers.Bidirectional(keras.layers.LSTM(units=32,return_sequences=False)),\n                           keras.layers.Dense(32,activation='relu'),\n                           keras.layers.Dense(1,activation='sigmoid')                               \n])\n\nbi_lstm_model.summary()\nbi_lstm_model.compile(optimizer='adam',loss='binary_crossentropy',metrics=['accuracy'])\n\n\"\"\"subword 词袋大小：8185\n8185x16=130960\n\"\"\"\n\nhistory=bi_lstm_model.fit(train_dataset,epochs=10,validation_data=test_dataset)\n\ndef plot_learning_curves(history,label,epochs,min_value,max_value):\n  data={}\n  data[label]=history.history[label]\n  data['val_'+label]=history.history['val_'+label]\n  pd.DataFrame(data).plot(figsize=(8,5))\n  plt.grid(False)\n  plt.axis([0,epochs,min_value,max_value])\n  plt.show()\n\nplot_learning_curves(history,'accuracy',10,0,1)\nplot_learning_curves(history,'loss',10,0,1)\n\n\"\"\"在验证集上：accuracy效果好，loss也没有过拟合，subword-level效果最好啊！！！\"\"\""
  },
  {
    "path": "NN/RNN/LSTM/文本生成.py",
    "content": "# -*- coding: utf-8 -*-\n\"\"\"文本生成.ipynb\n\nAutomatically generated by Colaboratory.\n\nOriginal file is located at\n    https://colab.research.google.com/drive/1JFyRrdUS6eRqL3h2pLPCCUP3_iBh7hkV\n\"\"\"\n\nimport matplotlib as mpl\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow import keras\nimport sklearn \nimport os\nimport sys\nimport time\n\nprint(tf.__version__)\nprint(sys.version_info)\nfor module in mpl,np,pd,sklearn,tf,keras:\n  print(module.__name__,module.__version__)\n\n# !wget https://storage.googleapis.com/download.tensorflow.org/data/shakespeare.txt\n\n# 莎士比亚文集路径\ninput_filepath=\"/content/shakespeare.txt\"\n# 读取文集\ntext=open(input_filepath,'r').read()\n\nprint(len(text))\nprint(type(text))\nprint(text[0:100])\n\n\"\"\"100W+个数据集对于NN训练是很小的\"\"\"\n\n# 对文集去重并排序\nvocab=sorted(set(text))\nprint(len(vocab))\nprint(type(vocab))\nprint(vocab)\n\n\"\"\"char-level：区分字母大小写，各种符号\"\"\"\n\n# 给字符编号char:idx\nchar2idx={char:idx for idx,char in enumerate(vocab)}\nprint(type(char2idx))\nprint(char2idx)\n\n# idx:char-vocab的下标就是天然的索引\n# np的array速度比python的list快\nidx2char=np.array(vocab)\nprint(type(idx2char))\nprint(idx2char)\n\n# 用{字符：编号}把文集中的字符都转成数字编号\ntext_as_int=np.array([char2idx[c] for c in text])\nprint(len(text_as_int))\nprint(type(text_as_int))\n\nprint(text[0:10])\nprint(text_as_int[0:10])\n\n\"\"\"文本First Citi对应的字符索引是[18 47 56 57 58  1 15 47 58 47]\n\n莎士比亚文集:char-level\n\"\"\"\n\n# 对文本划分好输入、输出 \n# e.g.对文本abcde划分得到输入abcd,输出bcde\ndef split_input_target(id_text):\n  return id_text[0:-1],id_text[1:]\n\n# 把id text作为数据集\nchar_dataset=tf.data.Dataset.from_tensor_slices(text_as_int)\n# 给100个序列，则划分成100个输入，100个输出\nseq_length=100\n# 分批处理，得到多组输入、输出\nseq_dataset=char_dataset.batch(seq_length+1,drop_remainder=True)\n\n# 拿出来两个字符，看看是什么具体字符\nfor ch_id in char_dataset.take(2):\n  print(ch_id,idx2char[ch_id.numpy()])\n\n# 拿出来两个句子，看看是什么具体句子\nfor seq_id in seq_dataset.take(2):\n  print(seq_id)\n  print(repr(''.join(idx2char[seq_id.numpy()])))\n  print(repr(' '.join(idx2char[seq_id.numpy()])))\n\n\"\"\"seq_id是用char-level表示的\n字符可以预测出空格，就作为单词的分隔了\n\"\"\"\n\n# 划分单词的输入、输出\n# map实现调用函数\nseq_dataset=seq_dataset.map(split_input_target)\n\n# 拿出来两个序列，划分输入输出\nfor item_input,item_output in seq_dataset.take(1):\n  print(item_input.numpy())\n  print(item_output.numpy())\n\nprint(seq_dataset)\n\n\"\"\"看例子，18输出47，47输出56，56输出57...\"\"\"\n\n# batch处理\nbatch_size=64\n# 洗牌\nbuffer_size=10000\n# shuffle()-随机重新排列此数据集的元素-理解:如果数据集包含10,000个元素但buffer_size设置为1,000个，则shuffle最初将仅从缓冲区中的前1,000个元素中选择一个随机元素。选择一个元素后，其缓冲区中的空间将被下一个（即1,001个）元素替换，并保留1,000个元素缓冲区。\nseq_dataset=seq_dataset.shuffle(buffer_size).batch(batch_size,drop_remainder=True)\nprint(seq_dataset)\n\nvocab_size=len(vocab)\n# 资料小，就升维\nembedding_dim=256\nrnn_units=1024\n\n# 搭建模型写成一个函数\ndef build_model(vocab_size,embedding_dim,rnn_units,batch_size):\n      model=keras.models.Sequential([\n                   keras.layers.Embedding(vocab_size,embedding_dim,batch_input_shape=[batch_size,None]),\n                  #  stateful=True 是否要把最后返回的状态添加到输出\n                  # recurrent_initializer='glorot_uniform'-RNN的权值初始值，均值为0，以0为中心的对称区间均匀分布的随机数\n                   keras.layers.SimpleRNN(units=rnn_units,stateful=True,recurrent_initializer='glorot_uniform',return_sequences=True),\n                  #  让输出是65个vocab_size的一个\n                   keras.layers.Dense(vocab_size),\n      ])\n      return model\n\nmodel=build_model(vocab_size=vocab_size,embedding_dim=embedding_dim,rnn_units=rnn_units,batch_size=batch_size)\nmodel.summary()\n\nmodel.variables\n\n# 从序列中拿出一个take(1)看一看模型对输入处理完的输出，简单验证能否做预测\nfor input_example_batch,target_example_batch in seq_dataset.take(1):\n    # 把model当成函数来用了，其实是调用了call方法-使实例（对象）像函数一样被调用\n    example_batch_predictions=model(input_example_batch)\n    print(example_batch_predictions.shape)\n\nprint(example_batch_predictions)\n\n\"\"\"浮点数理解-softmax输出就是概率值，再对应到具体的一类中，这里就是字符类\"\"\"\n\n# 输入是100个char,输出也是100个char\n# categorical()从分类分布中抽取样本\n# logits:2-D Tensor with shape [batch_size, num_classes]，这里是[100,1]的2维张量\nsample_indices=tf.random.categorical(logits=example_batch_predictions[0],num_samples=1)\nprint(sample_indices)\n# sqeeze:转为100的向量\nsample_indices=tf.squeeze(sample_indices,axis=-1)\nprint(sample_indices)\n\n# 看一组输入、输出\nprint(\"Input:\",repr(\"\".join(idx2char[input_example_batch[0]])))\nprint()\nprint(\"Output:\",repr(\"\".join(idx2char[target_example_batch[0]])))\nprint()\nprint(\"Predictions:\",repr(\"\".join(idx2char[sample_indices])))\n\n\"\"\"预测效果不咋地\"\"\"\n\ndef loss(labels,logits):\n  return keras.losses.sparse_categorical_crossentropy(labels,logits,from_logits=True)\n\nmodel.compile(optimizer='adam',loss=loss)\n# 真实标签和预测标签的区别\nexample_loss=loss(target_example_batch,example_batch_predictions)\nprint(example_loss.shape)\nprint(example_loss.numpy().mean())\n\n# 保存模型-经过训练之后的模型效果会比上边那个没有经过训练的效果要好\n\n# 定义一个文件夹来保存模型\noutput_dir=\"/content/text_generation_checkpoints\"\nif not os.path.exists(output_dir):\n  os.mkdir(output_dir)\n\n# 保存最后一次迭代的模型\ncheckpoint_prefix=os.path.join(output_dir,'ckpt_{epoch}')\ncheckpoint_callback=keras.callbacks.ModelCheckpoint(\n                                             filepath=checkpoint_prefix,\n                                             #  只保存权重值\n                                             save_weights_only=True\n                                                  )\n\nepochs=100\nhistory=model.fit(seq_dataset,epochs=epochs,callbacks=[checkpoint_callback])\n\n# 看看最好的模型\ntf.train.latest_checkpoint(output_dir)\n\n# 再创建一个新模型，去加载已经保存过的权重值\noutput_dir=\"/content/text_generation_checkpoints\"\nmodel2=build_model(vocab_size,embedding_dim,rnn_units,batch_size=1)\nmodel2.load_weights(tf.train.latest_checkpoint(output_dir))\n\n# 1个样本，None表示变长序列\nmodel2.build(tf.TensorShape([1,None]))\nmodel2.summary()\n\n# 实现文本生成\ndef generate_text(model,start_string,num_generate=1000):\n  # 输入\n  input_eval=[char2idx[ch] for ch in start_string]\n  print(input_eval)\n  # 升维-在axis=0方向上\n  input_eval=tf.expand_dims(input_eval,0)\n  print(input_eval)\n\n  text_generated=[]\n  # 连续调用模型用reset_states()\n  model.reset_states()\n  # 逐个预测输出字符\n  for _ in range(num_generate):\n  \n      predictions=model(input_eval)\n      # squeeze降维：消掉batch_size维度，变成predictions:[input_eval_len,vocab_size]\n      predictions=tf.squeeze(predictions,0)\n      print(predictions)\n      # 倒序、抽取样本、降维成1维\n      predicted_id=tf.random.categorical(predictions,num_samples=1)[-1,0].numpy()\n      print(predicted_id)\n      # 得到一个预测字符，append到生成文本中\n      text_generated.append(idx2char[predicted_id])\n      # 得到的预测再去作为下一次的输入字符\n      input_eval=tf.expand_dims([predicted_id],0)\n  return start_string+''.join(text_generated)\n\n\nnew_text=generate_text(model2,\"amazing:\")\nprint(new_text)"
  },
  {
    "path": "NN/RNN/eng-fra.txt",
    "content": "Go.\tVa !\nRun!\tCours !\nRun!\tCourez !\nWow!\tÇa alors !\nFire!\tAu feu !\nHelp!\tÀ l'aide !\nJump.\tSaute.\nStop!\tÇa suffit !\nStop!\tStop !\nStop!\tArrête-toi !\nWait!\tAttends !\nWait!\tAttendez !\nI see.\tJe comprends.\nI try.\tJ'essaye.\nI won!\tJ'ai gagné !\nI won!\tJe l'ai emporté !\nOh no!\tOh non !\nAttack!\tAttaque !\nAttack!\tAttaquez !\nCheers!\tSanté !\nCheers!\tÀ votre santé !\nCheers!\tMerci !\nGet up.\tLève-toi.\nGot it!\tJ'ai pigé !\nGot it!\tCompris !\nGot it?\tPigé ?\nGot it?\tCompris ?\nGot it?\tT'as capté ?\nHop in.\tMonte.\nHop in.\tMontez.\nHug me.\tSerre-moi dans tes bras !\nHug me.\tSerrez-moi dans vos bras !\nI fell.\tJe suis tombée.\nI fell.\tJe suis tombé.\nI know.\tJe sais.\nI left.\tJe suis parti.\nI left.\tJe suis partie.\nI lost.\tJ'ai perdu.\nI'm 19.\tJ'ai 19 ans.\nI'm OK.\tJe vais bien.\nI'm OK.\tÇa va.\nListen.\tÉcoutez !\nNo way!\tImpossible !\nNo way!\tEn aucun cas.\nNo way!\tC'est hors de question !\nNo way!\tIl n'en est pas question !\nNo way!\tC'est exclu !\nNo way!\tEn aucune manière !\nNo way!\tHors de question !\nReally?\tVraiment ?\nReally?\tVrai ?\nReally?\tAh bon ?\nThanks.\tMerci !\nWe try.\tOn essaye.\nWe won.\tNous avons gagné.\nWe won.\tNous gagnâmes.\nWe won.\tNous l'avons emporté.\nWe won.\tNous l'emportâmes.\nAsk Tom.\tDemande à Tom.\nAwesome!\tFantastique !\nBe calm.\tSois calme !\nBe calm.\tSoyez calme !\nBe calm.\tSoyez calmes !\nBe cool.\tSois détendu !\nBe fair.\tSois juste !\nBe fair.\tSoyez juste !\nBe fair.\tSoyez justes !\nBe fair.\tSois équitable !\nBe fair.\tSoyez équitable !\nBe fair.\tSoyez équitables !\nBe kind.\tSois gentil.\nBe nice.\tSois gentil !\nBe nice.\tSois gentille !\nBe nice.\tSoyez gentil !\nBe nice.\tSoyez gentille !\nBe nice.\tSoyez gentils !\nBe nice.\tSoyez gentilles !\nBeat it.\tDégage !\nCall me.\tAppelle-moi !\nCall me.\tAppellez-moi !\nCall us.\tAppelle-nous !\nCall us.\tAppelez-nous !\nCome in.\tEntrez !\nCome in.\tEntre.\nCome in.\tEntre !\nCome in.\tEntrez !\nCome on!\tAllez !\nCome on.\tAllez !\nCome on.\tViens !\nCome on.\tVenez !\nDrop it!\tLaisse tomber !\nDrop it!\tLaissez tomber !\nDrop it!\tLaisse-le tomber !\nDrop it!\tLaissez-le tomber !\nGet out!\tSortez !\nGet out!\tSors !\nGet out!\tSortez !\nGet out.\tSors.\nGet out.\tCasse-toi.\nGo away!\tDégage !\nGo away!\tPars !\nGo away.\tVa te faire foutre !\nGo away.\tPars !\nGo away.\tDégage !\nGo away.\tFous le camp !\nGo away.\tPars d'ici.\nGo away.\tVa t'en !\nGo away.\tDisparais !\nGo away.\tAllez-vous en !\nGo slow.\tVa doucement !\nGo slow.\tAllez doucement !\nGoodbye!\tÀ la revoyure.\nHang on!\tAttends un peu !\nHang on!\tAttendez un peu !\nHang on.\tTiens bon !\nHang on.\tTenez bon !\nHe quit.\tIl laissa tomber.\nHe quit.\tIl a laissé tomber.\nHe runs.\tIl court.\nHelp me!\tAide-moi !\nHelp me.\tAide-moi.\nHelp me.\tAidez-moi.\nHelp us.\tAidez-nous !\nHelp us.\tAide-nous !\nHold it!\tNe bouge plus !\nHold on.\tNe quittez pas.\nI agree.\tJe suis du même avis.\nI tried.\tJ'essayai.\nI tried.\tJ'ai essayé.\nI tried.\tJ'ai tenté.\nI'll go.\tJ'irai.\nI'm fat.\tJe suis gras.\nI'm fat.\tJe suis gros.\nI'm fit.\tJe suis en forme.\nI'm hit!\tJe suis touché !\nI'm hit!\tJe suis touchée !\nI'm ill.\tJe suis malade.\nI'm sad.\tJe suis triste.\nI'm shy.\tJe suis timide.\nI'm wet.\tJe suis mouillé.\nI'm wet.\tJe suis mouillée.\nIt's me!\tC'est bibi !\nJoin us.\tJoignez-vous.\nJoin us.\tJoignez-vous à nous.\nKeep it.\tGarde-le !\nKeep it.\tGardez-le !\nKiss me.\tEmbrasse-moi.\nKiss me.\tEmbrassez-moi.\nMe, too.\tMoi aussi.\nOpen up.\tOuvre-moi !\nOpen up.\tOuvre.\nPerfect!\tParfait !\nSee you.\tÀ plus.\nShow me.\tMontre-moi !\nShow me.\tMontrez-moi !\nShut up!\tTaisez-vous !\nShut up!\tFerme-la !\nShut up!\tTais-toi !\nShut up!\tFerme-la !\nShut up!\tLa ferme !\nSo long.\tÀ plus tard !\nTake it.\tPrends-le !\nTake it.\tPrenez-le !\nTell me.\tDis-moi !\nTell me.\tDites-moi !\nTom won.\tTom a gagné.\nWake up!\tRéveille-toi !\nWake up!\tRéveille-toi !\nWake up!\tRéveillez-vous !\nWake up.\tRéveille-toi !\nWake up.\tRéveillez-vous !\nWash up.\tLave-toi !\nWash up.\tLavez-vous !\nWe know.\tNous savons.\nWe lost.\tNous perdîmes.\nWe lost.\tNous avons perdu.\nWe lost.\tNous fûmes battus.\nWe lost.\tNous fûmes battues.\nWe lost.\tNous fûmes défaits.\nWe lost.\tNous fûmes défaites.\nWe lost.\tNous avons été défaits.\nWe lost.\tNous avons été défaites.\nWe lost.\tNous avons été battus.\nWe lost.\tNous avons été battues.\nWho won?\tQui a gagné ?\nWho won?\tQui l'a emporté ?\nYou run.\tTu cours.\nAm I fat?\tSuis-je gros ?\nAm I fat?\tSuis-je grosse ?\nBack off.\tRecule !\nBack off.\tReculez.\nBack off.\tRetire-toi !\nBack off.\tRetirez-vous.\nBe a man.\tSois un homme !\nBe a man.\tSoyez un homme !\nBe still.\tSois calme !\nBe still.\tSoyez calme !\nBe still.\tSoyez calmes !\nBeats me.\tAucune idée.\nBeats me.\tJ'en sais foutre rien.\nCall Tom.\tAppelle Tom.\nCall Tom.\tAppelez Tom.\nCheer up!\tCourage !\nCool off!\tDétends-toi !\nCuff him.\tMenottez-le.\nDrive on.\tAvance !\nDrive on.\tAvancez !\nDrive on.\tContinue à rouler !\nDrive on.\tContinuez à rouler !\nGet down!\tLâche-toi !\nGet down.\tDescends !\nGet down.\tDescendez !\nGet down.\tLâche-toi !\nGet down.\tLâchez-vous !\nGet lost!\tVa voir ailleurs si j'y suis !\nGet lost!\tDégage !\nGet lost!\tVa au diable !\nGet real!\tSois réaliste !\nGo ahead.\tVas-y.\nGo ahead.\tPoursuis !\nGo ahead.\tPasse devant !\nGo ahead.\tVas-y !\nGood job!\tBien joué !\nGood job!\tBon boulot !\nGood job!\tBeau travail !\nGrab him.\tAttrape-le.\nGrab him.\tAttrapez-le.\nHave fun.\tAmuse-toi bien !\nHave fun.\tAmusez-vous bien !\nHe tries.\tIl essaye.\nHe's wet.\tIl est mouillé.\nHi, guys.\tSalut, les mecs !\nHow cute!\tComme c'est mignon !\nHow deep?\tQuelle profondeur ?\nHow nice!\tComme c'est chouette !\nHow nice!\tComme c'est gentil !\nHow nice!\tC'est du joli !\nHow nice!\tComme c'est agréable !\nHumor me.\tFais-moi rire.\nHurry up.\tDépêche-toi.\nHurry up.\tGrouille !\nHurry up.\tPressez-vous !\nHurry up.\tFiça !\nI am fat.\tJe suis gras.\nI did OK.\tJe m'en suis bien sorti.\nI did OK.\tJe m'en suis bien sortie.\nI did it.\tJe l'ai fait.\nI did it.\tC'est moi qui l'ai fait.\nI forgot.\tJ'ai oublié.\nI get it.\tJ'ai compris.\nI got it.\tJ'ai compris.\nI got it.\tJ'ai capté.\nI phoned.\tJe téléphonai.\nI phoned.\tJ'ai téléphoné.\nI refuse.\tJe refuse.\nI refuse.\tJe le refuse.\nI saw it.\tJe l'ai vu.\nI saw it.\tJe l’ai vu.\nI stayed.\tJe suis resté.\nI stayed.\tJe suis restée.\nI use it.\tJe l'utilise.\nI use it.\tJ'en fais usage.\nI use it.\tJe m'en sers.\nI'll pay.\tJe paierai.\nI'll try.\tJ'essaierai.\nI'm back.\tJe suis revenu.\nI'm back.\tMe revoilà.\nI'm bald.\tJe suis chauve.\nI'm busy.\tJe suis occupé.\nI'm busy.\tJe suis occupée.\nI'm calm.\tJe suis calme.\nI'm cold.\tJ'ai froid.\nI'm done.\tJ'en ai fini.\nI'm fine.\tTout va bien.\nI'm fine.\tJe vais bien.\nI'm fine.\tÇa va.\nI'm free!\tJe suis libre !\nI'm free.\tJe suis libre.\nI'm free.\tJe suis disponible.\nI'm full.\tJe suis repu !\nI'm full.\tJe suis rassasié !\nI'm glad.\tJe suis content.\nI'm home.\tJe suis chez moi.\nI'm late.\tJe suis en retard.\nI'm lazy.\tJe suis paresseux.\nI'm lazy.\tJe suis fainéant.\nI'm lazy.\tJe suis paresseuse.\nI'm lazy.\tJe suis fainéante.\nI'm okay.\tJe vais bien.\nI'm okay.\tJe me porte bien.\nI'm safe.\tJe suis en sécurité.\nI'm sick.\tJe suis malade.\nI'm sure.\tJ'en suis certain.\nI'm sure.\tJe suis certain.\nI'm sure.\tJ'en suis sûr.\nI'm sure.\tJ'en suis sûre.\nI'm tall.\tJe suis grande.\nI'm thin.\tJe suis mince.\nI'm tidy.\tJe suis ordonné.\nI'm tidy.\tJe suis ordonnée.\nI'm ugly.\tJe suis laid.\nI'm ugly.\tJe suis laide.\nI'm weak.\tJe suis faible.\nI'm well.\tJe vais bien.\nI'm well.\tJe me porte bien.\nI've won.\tJ'ai gagné.\nI've won.\tJe l'ai emporté.\nIt works.\tElle marche.\nIt works.\tÇa fonctionne.\nIt's his.\tC'est le sien.\nIt's his.\tC'est la sienne.\nIt's new.\tC'est nouveau.\nIt's new.\tC'est neuf.\nIt's odd.\tC'est bizarre.\nIt's sad.\tC’est triste.\nKeep out!\tDéfense d'entrer.\nKeep out.\tN'entrez pas.\nLeave it.\tLaisse tomber !\nLeave it.\tLaissez tomber !\nLeave me.\tLaissez-moi !\nLeave us.\tLaisse-nous !\nLeave us.\tLaissez-nous !\nLet's go!\tAllons-y !\nLet's go!\tAllons !\nLet's go.\tAllons-y !\nLook out!\tAttention !\nMarry me.\tÉpouse-moi !\nMarry me.\tÉpousez-moi !\nMay I go?\tPuis-je partir ?\nMay I go?\tPuis-je y aller ?\nMay I go?\tPuis-je m'y rendre ?\nShe came.\tElle est venue.\nShe died.\tElle est morte.\nShe runs.\tElle court.\nSit down!\tAssieds-toi !\nSit down!\tAsseyez-vous !\nSit here.\tAssieds-toi ici.\nSit here.\tAsseyez-vous ici.\nSpeak up!\tParle plus fort !\nSpeak up!\tParlez plus fort !\nStop Tom.\tArrête Tom.\nStop Tom.\tStoppez Tom.\nTerrific!\tGénial !\nTerrific!\tExcellent !\nTerrific!\tFormidable !\nThey won.\tIls gagnèrent.\nThey won.\tElles gagnèrent.\nThey won.\tIls ont gagné.\nThey won.\tElles ont gagné.\nTom came.\tTom est venu.\nTom died.\tTom est mort.\nTom left.\tTom est parti.\nTom left.\tTom partit.\nTom lost.\tTom a perdu.\nToo late.\tTrop tard.\nTrust me.\tFaites-moi confiance.\nTrust me.\tFais-moi confiance.\nTry hard.\tFais un effort.\nTry some.\tEssaies-en !\nTry some.\tEssayez-en !\nTry this.\tEssaie ceci !\nTry this.\tEssayez ceci !\nUse this.\tUtilise ceci.\nUse this.\tUtilisez ceci.\nUse this.\tEmploie ceci !\nUse this.\tEmployez ceci !\nWarn Tom.\tAvertis Tom.\nWarn Tom.\tPréviens Tom.\nWatch me.\tRegarde-moi !\nWatch me.\tRegardez-moi !\nWatch us.\tRegardez-nous !\nWatch us.\tRegarde-nous !\nWe agree.\tNous sommes d'accord.\nWe'll go.\tNous irons.\nWhat for?\tPour quoi faire ?\nWhat for?\tÀ quoi bon ?\nWhat fun!\tQu'est-ce qu'on s'est marrés !\nWhat fun!\tQu'est-ce qu'on s'est marrées !\nWho died?\tQui est mort ?\nWho's he?\tQui est-il ?\nWrite me.\tÉcris-moi !\nWrite me.\tÉcrivez-moi !\nAfter you.\tAprès vous.\nAim. Fire!\tEn joue ! Feu !\nAm I late?\tSuis-je en retard ?\nAnswer me.\tRépondez-moi.\nBe seated.\tAssieds-toi !\nBe seated.\tAsseyez-vous !\nBirds fly.\tLes oiseaux volent.\nBless you.\tÀ tes souhaits !\nCall home!\tAppelle à la maison !\nCalm down!\tCalmez-vous !\nCalm down.\tCalme-toi.\nCan we go?\tPouvons-nous partir ?\nCan we go?\tPouvons-nous nous en aller ?\nCan we go?\tPouvons-nous y aller ?\nCatch him.\tRattrape-le.\nCome back.\tReviens !\nCome back.\tRevenez !\nCome here.\tViens ici.\nCome here.\tVenez là.\nCome over!\tViens !\nCome over!\tVenez !\nCome over.\tVenez ici !\nCome over.\tViens chez nous !\nCome over.\tVenez chez nous !\nCome over.\tViens chez moi !\nCome over.\tVenez chez moi !\nCome soon.\tViens bientôt !\nCome soon.\tVenez bientôt !\nCool down.\tCalmez-vous !\nDid I win?\tAi-je gagné ?\nDid I win?\tL'ai-je emporté ?\nDid I win?\tEst-ce moi qui ai gagné ?\nDogs bark.\tDes chiens aboient.\nDogs bark.\tLes chiens aboient.\nDon't ask.\tNe demande pas !\nDon't cry.\tNe pleure pas !\nDon't die.\tNe meurs pas !\nDon't die.\tNe mourez pas !\nDon't lie.\tNe mens pas.\nDon't run.\tNe courez pas.\nDon't run.\tNe cours pas.\nExcuse me.\tExcuse-moi.\nFantastic!\tFantastique !\nFeel this.\tSens ça !\nFeel this.\tSentez ça !\nFeel this.\tTouche ça !\nFeel this.\tTouchez ça !\nFollow me.\tSuis-moi.\nFollow us.\tSuis-nous !\nFollow us.\tSuivez-nous !\nForget it!\tOublie !\nForget it!\tOublie-le !\nForget it!\tOubliez !\nForget it!\tOubliez-le !\nForget it.\tLaisse tomber.\nForget it.\tOublie.\nGet a job.\tTrouve un emploi !\nGet a job.\tTrouve un boulot !\nGet a job.\tTrouvez un emploi !\nGet a job.\tTrouvez un boulot !\nGet ready.\tPrépare-toi.\nGet ready.\tPréparez-vous.\nGo get it.\tVa le chercher !\nGo get it.\tAllez le chercher !\nGo inside.\tEntrez !\nGo to bed.\tVa au lit !\nGo to bed.\tAllez au lit !\nGood luck.\tBonne chance !\nGood luck.\tBonne chance.\nGrab that.\tAttrape ça !\nGrab that.\tAttrapez ça !\nGrab that.\tSaisis-toi de ça !\nGrab that.\tSaisissez-vous de ça !\nGrab this.\tAttrape ça !\nGrab this.\tAttrapez ça !\nHands off.\tPas touche !\nHe is ill.\tIl est malade.\nHe is old.\tIl est vieux.\nHe's a DJ.\tIl est DJ.\nHe's good.\tIl est bon.\nHe's lazy.\tIl est paresseux.\nHe's rich.\tIl est riche.\nHere I am.\tMe voici.\nHere's $5.\tVoilà cinq dollars.\nHold fire.\tHalte au feu !\nHold fire.\tCessez le feu !\nHold this.\tTiens ça !\nHold this.\tTenez ça !\nHold this.\tTenez ceci !\nHold this.\tTiens ceci !\nHow awful!\tC'est affreux !\nHow's Tom?\tComment Tom va-t-il ?\nHow's Tom?\tComment va Tom ?\nI am busy.\tJe suis occupé.\nI am calm.\tJe suis calme.\nI am cold.\tJ'ai froid.\nI am good.\tJe suis bon.\nI am here.\tJe suis ici.\nI am lazy.\tJe suis paresseux.\nI am lazy.\tJe suis fainéant.\nI am lazy.\tJe suis paresseuse.\nI am lazy.\tJe suis fainéante.\nI am okay.\tJe vais bien.\nI am sick.\tJe suis malade.\nI am sure.\tJe suis sûr.\nI am sure.\tJe suis certain.\nI am weak.\tJe suis faible.\nI beg you.\tJe vous en prie.\nI beg you.\tJe vous en conjure.\nI beg you.\tJe vous en supplie.\nI beg you.\tJe te prie.\nI can run.\tJe sais courir.\nI can ski.\tJe sais skier.\nI cringed.\tJ'eus un mouvement de recul.\nI cringed.\tJ'ai eu un mouvement de recul.\nI cringed.\tJe suis rentré en moi-même.\nI give up.\tJ'abandonne.\nI got hot.\tJe me suis mis à avoir chaud.\nI got hot.\tJe me suis mise à avoir chaud.\nI had fun.\tJe me suis amusé.\nI had fun.\tJe me suis amusée.\nI had fun.\tJe me suis marré.\nI had fun.\tJe me suis marrée.\nI hate it.\tJe déteste ça.\nI hope so.\tJ'espère bien.\nI knew it.\tJe le savais.\nI like it.\tJ'aime ça.\nI lost it.\tJe l’ai perdu.\nI love it!\tJ'adore ça !\nI love it.\tJ'adore ça !\nI mean it!\tJe suis sérieux !\nI mean it.\tJe suis sérieux.\nI must go.\tJe dois y aller.\nI must go.\tIl faut que j'y aille.\nI must go.\tIl me faut y aller.\nI must go.\tIl me faut partir.\nI must go.\tIl me faut m'en aller.\nI must go.\tJe dois partir.\nI must go.\tJe dois m'en aller.\nI must go.\tIl faut que je m'en aille.\nI need it.\tJ'en ai besoin.\nI need it.\tIl me le faut.\nI noticed.\tJ'ai remarqué.\nI promise.\tJe le promets.\nI said no.\tJ'ai dit non.\nI said so.\tJe l'ai dit.\nI saw him.\tJe l'ai vu.\nI saw him.\tJe l’ai vu.\nI saw him.\tJe le vis.\nI saw one.\tJ'en ai vu une.\nI saw one.\tJ'en ai vu un.\nI saw you.\tJe vous vis.\nI saw you.\tJe te vis.\nI saw you.\tJe t'ai vue.\nI saw you.\tJe t'ai vu.\nI saw you.\tJe vous ai vues.\nI saw you.\tJe vous ai vus.\nI saw you.\tJe vous ai vue.\nI saw you.\tJe vous ai vu.\nI see Tom.\tJe vois Tom.\nI tripped.\tJ'ai trébuché.\nI tripped.\tJ'ai plané.\nI want it.\tJe le veux.\nI was new.\tJ'étais nouveau.\nI was new.\tJ'étais nouvelle.\nI will go.\tJ'irai.\nI woke up.\tJe me suis réveillé.\nI woke up.\tJe me suis éveillé.\nI'd agree.\tJe serais d'accord.\nI'd leave.\tJe partirais.\nI'll call.\tJ'appellerai.\nI'll cook.\tJe cuisinerai.\nI'll help.\tJ'aiderai.\nI'll live.\tJe vivrai.\nI'll obey.\tJ'obéirai.\nI'll pack.\tJe ferai mon sac.\nI'll pack.\tJe ferai ma valise.\nI'll pack.\tJe plierai mes gaules.\nI'll pass.\tJe passerai.\nI'll quit.\tJ'abandonnerai.\nI'll sing.\tJe chanterai.\nI'll swim.\tJe nagerai.\nI'll wait.\tJ'attendrai.\nI'll walk.\tJe marcherai.\nI'll work.\tJe vais travailler.\nI'll work.\tJe travaillerai.\nI'm a cop.\tJe suis flic.\nI'm a man.\tJe suis un homme.\nI'm alone.\tJe suis seule.\nI'm alone.\tJe suis seul.\nI'm armed.\tJe suis armé.\nI'm armed.\tJe suis armée.\nI'm awake.\tJe suis réveillé.\nI'm blind.\tJe suis aveugle.\nI'm broke.\tJe suis fauché.\nI'm crazy.\tJe suis fou.\nI'm crazy.\tJe suis folle.\nI'm cured.\tJe suis guéri.\nI'm cured.\tJe suis guérie.\nI'm drunk.\tJe suis saoul.\nI'm drunk.\tJe suis soûl.\nI'm drunk.\tJe suis ivre.\nI'm dying.\tJe me meurs.\nI'm early.\tJe suis en avance.\nI'm first.\tJe suis en premier.\nI'm fussy.\tJe suis difficile.\nI'm fussy.\tJe suis tatillon.\nI'm fussy.\tJe suis tatillonne.\nI'm going.\tJe pars maintenant.\nI'm going.\tJe me tire.\nI'm going.\tJ’y vais.\nI'm going.\tJe pars.\nI'm loyal.\tJe suis loyal.\nI'm loyal.\tJe suis loyale.\nI'm lucky.\tJe suis veinard.\nI'm lucky.\tJe suis veinarde.\nI'm lucky.\tJ'ai du pot.\nI'm lucky.\tJe suis chanceux.\nI'm lucky.\tJe suis chanceuse.\nI'm lying.\tJe suis en train de mentir.\nI'm quiet.\tJe suis tranquille.\nI'm ready!\tJe suis prête !\nI'm ready!\tJe suis prêt !\nI'm ready.\tJe suis prêt.\nI'm right.\tJ'ai raison.\nI'm sober.\tJe suis sobre.\nI'm sorry.\tExcuse-moi.\nI'm sorry.\tDésolé.\nI'm sorry.\tDésolé !\nI'm sorry.\tJe suis désolé.\nI'm sorry.\tJe suis désolée.\nI'm stuck.\tJe suis coincée.\nI'm timid.\tJe suis timide.\nI'm tired.\tJe suis fatigué !\nI'm tough.\tJe suis dur.\nI'm tough.\tJe suis dure.\nI'm tough.\tJe suis dur à cuire.\nI'm tough.\tJe suis dure à cuire.\nI'm yours.\tJe suis à toi.\nI'm yours.\tJe suis à vous.\nI've lost.\tJ'ai perdu.\nIs Tom OK?\tEst-ce que Tom va bien ?\nIs Tom OK?\tTom va-t-il bien ?\nIs it bad?\tC'est grave ?\nIs it far?\tEst-ce éloigné ?\nIs it far?\tEst-ce loin ?\nIs it you?\tEst-ce toi ?\nIs it you?\tEst-ce vous ?\nIs it you?\tEst-ce que c'est vous ?\nIt failed.\tÇa a échoué.\nIt snowed.\tIl a neigé.\nIt stinks.\tÇa sent mauvais.\nIt stinks.\tÇa pue.\nIt worked.\tÇa a fonctionné.\nIt worked.\tÇa a marché.\nIt's 3:30.\tIl est trois heures et demie.\nIt's cold.\tIl fait froid.\nIt's dark.\tC'est sombre.\nIt's dead.\tElle est morte.\nIt's dead.\tC'est mort.\nIt's dead.\tIl est mort.\nIt's done.\tC'est fait.\nIt's food.\tC'est de la nourriture.\nIt's free.\tC'est gratuit.\nIt's hers.\tC'est le sien.\nIt's hers.\tC'est la sienne.\nIt's late.\tIl est tard.\nIt's lost.\tC'est perdu.\nIt's open.\tC'est ouvert.\nIt's sand.\tC'est du sable.\nIt's true!\tC'est vrai !\nIt's work.\tC'est du boulot.\nLet it be.\tAinsi soit-il.\nLet it be.\tLaisse faire.\nLet me go!\tLaisse-moi partir !\nLet me go!\tLaissez-moi partir !\nLet me go!\tLâche-moi !\nLet me go!\tLaisse-moi m'en aller !\nLet me go!\tLaissez-moi m'en aller !\nLet me go!\tLaissez-moi y aller !\nLet me go!\tLaisse-moi y aller !\nLet me go.\tLaisse-moi partir !\nLet me go.\tLaissez-moi partir !\nLet me go.\tLaisse-moi m'en aller !\nLet me go.\tLaissez-moi m'en aller !\nLet me in.\tLaissez-moi rentrer.\nLet me in.\tLaissez-moi entrer.\nLet's ask.\tDemandons.\nLet's see.\tVoyons voir !\nLie still.\tReste allongé, immobile !\nLie still.\tReste allongée, immobile !\nLie still.\tRestez allongé, immobile !\nLie still.\tRestez allongée, immobile !\nLie still.\tRestez allongés, immobiles !\nLie still.\tRestez allongées, immobiles !\nLoosen up.\tÉchauffe-toi !\nLoosen up.\tÉchauffez-vous !\nLoosen up.\tDétends-toi !\nLoosen up.\tLaisse-toi aller !\nLoosen up.\tLaissez-vous aller !\nNice shot!\tJoli coup !\nOf course!\tPour sûr.\nOf course!\tMais ouais !\nOf course.\tBien sûr.\nOf course.\tPour sûr.\nOh please!\tJe vous en prie !\nOh please!\tJe t'en prie !\nPardon me?\tPardon ?\nPardon me?\tJe vous demande pardon ?\nPardon me?\tPlaît-il ?\nRead this.\tLis ceci.\nSay hello.\tDis bonjour.\nSee above.\tVoyez ci-dessus.\nSeriously?\tVraiment ?\nSeriously?\tEst-ce sérieux ?\nSeriously?\tSérieusement ?\nShe cried.\tElle pleurait.\nShe cried.\tElle pleura.\nShe tried.\tElle a essayé.\nShe walks.\tElle marche.\nShe's hot.\tElle est chaude.\nShe's hot.\tElle est très attirante.\nSign here.\tSigne ici.\nSign here.\tSignez ici.\nSlow down.\tRalentis !\nSlow down.\tRalentissez !\nStay back.\tReste en arrière !\nStay back.\tRestez en arrière !\nStay calm.\tRestez calme.\nStay calm.\tReste calme.\nStay calm.\tGarde ton calme.\nStay calm.\tGarde ton sang-froid.\nStay calm.\tReste tranquille.\nStay down.\tReste baissé.\nStay down.\tRestez baissé.\nStay thin.\tReste mince !\nStop that!\tArrêtez !\nStop that.\tArrêtez ça !\nStop that.\tArrête ça !\nTake care.\tPrends soin de toi.\nTake care.\tPrenez soin de vous.\nTake mine.\tPrends le mien.\nTake mine.\tPrends la mienne.\nTake mine.\tPrenez le mien.\nTake mine.\tPrenez la mienne.\nTake mine.\tPrends les miens.\nTake mine.\tPrends les miennes.\nTake mine.\tPrenez les miens.\nTake mine.\tPrenez les miennes.\nTake this.\tPrends ça.\nTake this.\tPrenez ça.\nThank you.\tMerci !\nThat's it.\tC'est ça.\nThey fell.\tIls sont tombés.\nThey fell.\tElles sont tombées.\nThey left.\tIls sont partis.\nThey left.\tElles sont parties.\nThey lied.\tIls ont menti.\nThey lied.\tElles ont menti.\nThey lost.\tIls ont perdu.\nThey lost.\tElles ont perdu.\nThey swam.\tIls nageaient.\nThey swam.\tElles nageaient.\nThey swam.\tIls nagèrent.\nThey swam.\tElles nagèrent.\nTom knits.\tTom tricote.\nTom knows.\tTom sait.\nTom spoke.\tTom a parlé.\nTom's fat.\tTom est gros.\nTry again.\tEssaie encore.\nTry again.\tEssayez de nouveau.\nTry again.\tEssaie de nouveau.\nTry it on.\tEssaie-le !\nTurn left.\tTourne à gauche.\nWait here.\tAttends ici.\nWait here.\tAttends là.\nWait here.\tAttendez ici.\nWait here.\tAttendez là.\nWatch out!\tAttention !\nWatch out!\tFaites attention !\nWatch out!\tFais attention !\nWe agreed.\tNous sommes tombés d'accord.\nWe did it!\tNous avons réussi !\nWe did it.\tNous avons réussi !\nWe did it.\tNous l'avons fait.\nWe forgot.\tNous avons oublié.\nWe saw it.\tNous l'avons vu.\nWe saw it.\tNous l'avons vue.\nWe talked.\tNous discutâmes.\nWe talked.\tNous avons discuté.\nWe talked.\tNous nous sommes entretenus.\nWe talked.\tNous nous sommes entretenues.\nWe talked.\tNous nous entretînmes.\nWe waited.\tNous attendîmes.\nWe waited.\tNous avons attendu.\nWe'll try.\tNous essayerons.\nWe'll try.\tNous tenterons.\nWe'll win.\tNous l'emporterons.\nWe'll win.\tNous gagnerons.\nWe're hot.\tNous avons chaud.\nWe're sad.\tNous sommes tristes.\nWe're shy.\tNous sommes timides.\nWell done!\tBien vu !\nWell done!\tBien cuit !\nWell done!\tÀ la bonne heure !\nWell done!\tPas mal !\nWhat else?\tQuoi d’autre ?\nWhat else?\tQuoi d'autre ?\nWhat's up?\tQuoi de beau ?\nWho cares?\tQui s'en préoccupe ?\nWho cares?\tQui s'en soucie ?\nWho cares?\tÀ qui ceci importe-t-il ?\nWho is he?\tQui est-ce ?\nWho is he?\tQui est-il ?\nWho is it?\tQui est-ce ?\nWho is it?\tQui est-il ?\nWho knows?\tQui sait ?\nWho spoke?\tQui a parlé ?\nWho'll go?\tQui ira ?\nWho's ill?\tQui est malade ?\nWonderful!\tMagnifique !\nWrite Tom.\tÉcrivez à Tom.\nYou drive.\tTu conduis.\nYou drive.\tToi, conduis !\nYou drive.\tVous conduisez.\nYou idiot!\tEspèce d'imbécile !\nYou idiot!\tEspèce d'idiot !\nYou start.\tTu commences.\nYou start.\tVous commencez.\nYou tried.\tTu as essayé.\nYou tried.\tVous avez essayé.\nAll aboard!\tTout le monde à bord!\nAm I clear?\tSuis-je clair ?\nAm I clear?\tSuis-je claire ?\nAm I dying?\tSuis-je en train de mourir ?\nAm I dying?\tSuis-je en train de trépasser ?\nAm I early?\tSuis-je en avance ?\nAm I fired?\tVous me mettez à la porte ?\nAm I first?\tSuis-je le premier ?\nAm I first?\tSuis-je la première ?\nAm I hired?\tSuis-je engagé ?\nAm I hired?\tSuis-je engagée ?\nAm I right?\tAi-je raison ?\nAm I right?\tSuis-je dans le vrai ?\nAm I wrong?\tMe trompé-je ?\nAm I wrong?\tAi-je tort ?\nAm I wrong?\tEst-ce que je me trompe ?\nAre you OK?\tEst-ce que tu vas bien ?\nAre you up?\tEs-tu levé ?\nAre you up?\tEs-tu levée ?\nAre you up?\tÊtes-vous levé ?\nAre you up?\tÊtes-vous levée ?\nAre you up?\tÊtes-vous levés ?\nAre you up?\tÊtes-vous levées ?\nAre you up?\tEs-tu debout ?\nAre you up?\tÊtes-vous debout ?\nAsk anyone.\tDemandez à n'importe qui.\nAsk anyone.\tDemande à n'importe qui.\nAsk anyone.\tDemande à quiconque !\nAsk around.\tDemande alentour !\nAsk around.\tDemandez alentour !\nBe careful.\tSois prudent !\nBe careful.\tSois prudente !\nBe careful.\tSoyez prudent !\nBe careful.\tSoyez prudente !\nBe careful.\tSoyez prudents !\nBe careful.\tSoyez prudentes !\nBe content.\tSois satisfait !\nBe content.\tSois satisfaite !\nBe content.\tSoyez satisfait !\nBe content.\tSoyez satisfaite !\nBe content.\tSoyez satisfaits !\nBe content.\tSoyez satisfaites !\nBe serious.\tSoyez sérieux !\nBe serious.\tSoyez sérieuse !\nBe serious.\tSoyez sérieuses !\nBe serious.\tSois sérieux !\nBe serious.\tSois sérieuse !\nBirds sing.\tLes oiseaux chantent.\nBottoms up!\tSanté !\nCan I come?\tPuis-je venir ?\nCan I help?\tPuis-je aider ?\nCan I stay?\tPuis-je rester ?\nCheck this.\tVérifie ça.\nCheck this.\tRegarde ça.\nChoose one.\tChoisis-en un.\nChoose one.\tChoisis-en une.\nCome along.\tJoignez-vous à nous.\nCome on in!\tEntre donc !\nCome on in.\tEntre.\nCome quick!\tViens vite !\nCome quick!\tJouis vite !\nCome to me.\tVenez à moi.\nCome to us.\tVenez à nous.\nCut it out!\tArrête !\nCut it out!\tArrêtez !\nCut it out.\tAssez !\nDid we win?\tAvons-nous gagné ?\nDo I stink?\tEst-ce que je pue ?\nDo come in!\tJe vous en prie, entrez !\nDo men cry?\tLes hommes pleurent-ils ?\nDon't fret.\tTe tracasse pas.\nDon't fret.\tVous tracassez pas.\nDon't fret.\tNe te tracasse pas.\nDon't fret.\tNe vous tracassez pas.\nDon't move!\tNe bouge pas !\nDon't move!\tNe bougez pas !\nDon't move.\tNe bougez pas.\nDon't move.\tNe bouge pas.\nDon't rush.\tNe te précipite pas.\nDon't rush.\tNe vous précipitez pas.\nDon't talk!\tNe parle pas !\nDon't talk!\tNe parlez pas !\nDon't wait.\tN'attends pas !\nDon't wait.\tN'attendez pas !\nDuty calls.\tLe devoir m'appelle.\nFill it up.\tLe plein.\nFind a job.\tTrouve un emploi !\nFind a job.\tTrouve un boulot !\nFollow him.\tSuis-le !\nFollow him.\tSuivez-le !\nForget him.\tOublie-le.\nForget him.\tOubliez-le.\nForgive me.\tPardonnez-moi.\nGet a life!\tAchète-toi une vie !\nGet to bed.\tVa au lit !\nGet to bed.\tAu lit !\nGet to bed.\tAllez au lit !\nGive it up.\tLaisse tomber.\nGive it up.\tAbandonne !\nGo warm up.\tVa t'échauffer !\nGo warm up.\tAllez vous échauffer !\nHe gave in.\tIl a cédé.\nHe gave in.\tIl céda.\nHe hung up.\tIl a raccroché.\nHe hung up.\tIl raccrocha.\nHe is a DJ.\tIl est DJ.\nHe is busy.\tIl a à faire.\nHe is here!\tIl est ici !\nHe is kind.\tIl est gentil.\nHe is late.\tIl est en retard.\nHe is lazy.\tIl est fainéant.\nHe is lazy.\tIl est paresseux.\nHe is poor.\tIl est pauvre.\nHe is sick.\tIl est malade.\nHe made it.\tIl a réussi.\nHe's Swiss.\tIl est Suisse.\nHe's Swiss.\tIl est Helvète.\nHe's broke.\tIl est ruiné.\nHe's broke.\tIl est fauché.\nHe's drunk.\tIl est ivre.\nHe's drunk.\tIl est soûl.\nHe's smart.\tIl est intelligent.\nHere he is!\tIl est ici !\nHere it is.\tLe voilà.\nHere it is.\tTenez.\nHere it is.\tLe voici.\nHere we go.\tC'est parti !\nHere we go.\tOn est partis !\nHold still.\tTiens-toi tranquille !\nHold still.\tTenez-vous tranquille !\nHow lovely!\tComme c'est charmant !\nHow's work?\tComment va le travail ?\nHurry home.\tDépêche-toi d'aller chez toi !\nHurry home.\tDépêchez-vous d'aller chez vous !\nI am a man.\tJe suis un homme.\nI am human.\tJe suis humain.\nI am ready.\tJe suis prêt.\nI am right.\tJ'ai raison.\nI am sorry.\tJe suis désolé.\nI am sorry.\tJe suis désolée.\nI am tired.\tJe suis fatigué !\nI am tired.\tJe suis crevé.\nI broke it.\tJe l'ai cassé.\nI broke it.\tJe l'ai cassée.\nI built it.\tJe l'ai construit.\nI built it.\tJe l'ai construite.\nI can come.\tJe peux venir.\nI can cook.\tJe sais cuisiner.\nI can jump.\tJe peux sauter.\nI can read.\tJe sais lire.\nI can read.\tJe peux lire.\nI can sing.\tJe sais chanter.\nI can stay.\tJe peux rester.\nI can swim.\tJe sais nager.\nI can wait.\tJe peux attendre.\nI can walk.\tJe peux marcher.\nI can't go.\tJe ne peux pas y aller.\nI can't go.\tJe ne peux pas m'y rendre.\nI can't go.\tJe ne peux pas partir.\nI did that.\tJ'ai fait cela.\nI did that.\tC'est moi qui l'ai fait.\nI disagree.\tJe ne suis pas d'accord.\nI do worry.\tJe me fais vraiment du souci.\nI doubt it.\tJ'en doute.\nI eat here.\tJe mange ici.\nI envy him.\tJe l'envie.\nI envy you.\tJe vous envie.\nI envy you.\tJe t'envie.\nI feel bad.\tJe me sens mal.\nI feel old.\tJe me sens vieux.\nI feel old.\tJe me sens vieille.\nI felt bad.\tJe me suis senti mal.\nI felt ill.\tJe me suis senti mal.\nI felt ill.\tJe me sentais malade.\nI felt ill.\tJe me sentis malade.\nI felt sad.\tJ'ai ressenti de la tristesse.\nI fixed it.\tJe l'ai réparé.\nI fixed it.\tJe l'ai réparée.\nI fixed it.\tJe la réparai.\nI fixed it.\tJe le réparai.\nI found it.\tJe l'ai trouvé.\nI found it.\tJe le trouvai.\nI got busy.\tJe suis devenu occupé.\nI got busy.\tJe suis devenu occupée.\nI got lost.\tJe me suis perdu.\nI got sick.\tJe suis devenu malade.\nI got sick.\tJe suis devenue malade.\nI guess so.\tJe le suppose.\nI guess so.\tJ'imagine.\nI had help.\tJ'ai reçu de l'aide.\nI hate you.\tJe te déteste.\nI hate you.\tJe te hais.\nI have one.\tJ'en ai un.\nI have one.\tJ'en ai une.\nI have won.\tJ'ai gagné.\nI have won.\tJe l'ai emporté.\nI help him.\tJe l'aide.\nI hope not.\tJe n'espère pas.\nI hope not.\tJ'espère que non.\nI know CPR.\tJe connais la RCP.\nI know her.\tJe la connais.\nI know him.\tJe le connais.\nI like art.\tJ'apprécie l'art.\nI like him.\tJe l'apprécie.\nI like him.\tJe l'aime bien.\nI like tea.\tJ'aime le thé.\nI like you.\tTu me plais.\nI like you.\tVous me plaisez.\nI like you.\tJe t'aime bien.\nI liked it.\tJ'ai aimé ça.\nI liked it.\tJe l'ai apprécié.\nI love Tom.\tJ'aime Tom.\nI love tea.\tJ'adore le thé.\nI love you.\tJe t'aime !\nI love you.\tJe t'adore.\nI loved it.\tJ'adorais ça.\nI made tea.\tJ'ai préparé du thé.\nI made two.\tJ'en ai fait deux.\nI made two.\tJ'en ai confectionné deux.\nI met them.\tJe les ai rencontrés.\nI met them.\tJe les ai rencontrées.\nI met them.\tJe les rencontrai.\nI must run.\tIl me faut courir.\nI must run.\tJe dois courir.\nI need air.\tJ'ai besoin d'air.\nI need air.\tIl me faut de l'air.\nI need ice.\tJ'ai besoin de glace.\nI need you.\tJ'ai besoin de toi.\nI need you.\tJ'ai besoin de vous.\nI panicked.\tJ'ai paniqué.\nI promised.\tJ'ai promis.\nI ran away.\tJe me suis enfuit.\nI ran home.\tJ'ai couru à la maison.\nI remember.\tJe m'en souviens.\nI remember.\tJe me le rappelle.\nI remember.\tJe m'en rappelle.\nI said yes.\tJ'ai dit oui.\nI sat down.\tJe m'assis.\nI saw that.\tJ'ai vu cela.\nI saw them.\tJe les ai vues.\nI saw them.\tJe les ai vus.\nI saw them.\tJe les vis.\nI screamed.\tJ'ai crié.\nI see them.\tJe les vois.\nI survived.\tJ'ai survécu.\nI threw up.\tJ'ai vomi.\nI tried it.\tJ'ai essayé.\nI tried it.\tJe l'ai essayé.\nI use this.\tJ'utilise cela.\nI want one!\tJ'en veux un !\nI want one!\tJ'en veux une !\nI want one.\tJ'en veux un !\nI want one.\tJ'en veux une !\nI want you.\tJ'ai envie de toi.\nI want you.\tJe te veux !\nI want you.\tJe vous veux !\nI was away.\tJe n'étais pas là.\nI was busy.\tJ'étais occupée.\nI was good.\tJe fus bon.\nI was good.\tJ'ai été bon.\nI was good.\tJ'ai été bonne.\nI was good.\tJe fus bonne.\nI was late.\tJ'étais en retard.\nI was late.\tJ'ai été en retard.\nI was lost.\tJ'étais perdu.\nI was lost.\tJ'étais perdue.\nI was sick.\tJ'ai été malade.\nI was sick.\tJ'étais malade.\nI will try.\tJ'essaierai.\nI work out.\tJe fais de l'exercice.\nI wrote it.\tJe l'ai écrit.\nI wrote it.\tC'est moi qui l'ai écrit.\nI'd accept.\tJ'accepterais.\nI'll check.\tJe vérifierai.\nI'll do it.\tJe vais le faire.\nI'll do it.\tJe le ferai.\nI'll drive.\tJe conduirai.\nI'll go in.\tJ'entrerai.\nI'll hurry.\tJe me dépêcherai.\nI'll leave.\tJe partirai.\nI'll shoot.\tJe tirerai.\nI'll stand.\tJe resterai debout.\nI'll start.\tJe commencerai.\nI'm French.\tJe suis français.\nI'm Korean.\tJe suis Coréen.\nI'm a hero.\tJe suis un héros.\nI'm a liar.\tJe suis un menteur.\nI'm baking!\tJe cuis !\nI'm better.\tJe vais mieux.\nI'm buying.\tJe paie.\nI'm buying.\tC'est moi qui paie.\nI'm chubby.\tJe suis grassouillet.\nI'm chubby.\tJe suis grassouillette.\nI'm eating.\tJe mange.\nI'm famous.\tJe suis connu.\nI'm famous.\tJe suis connue.\nI'm faster.\tJe suis plus rapide.\nI'm flabby.\tJe suis flasque.\nI'm greedy.\tJe suis cupide.\nI'm greedy.\tJe suis gourmand.\nI'm greedy.\tJe suis gourmande.\nI'm hiding.\tJe me cache.\nI'm honest.\tJe suis honnête.\nI'm humble.\tJe suis humble.\nI'm hungry!\tJ'ai faim !\nI'm hungry.\tJ'ai faim !\nI'm immune.\tJe suis immunisé.\nI'm immune.\tJe suis immunisée.\nI'm in bed.\tJe suis au lit.\nI'm in bed.\tJe suis alité.\nI'm in bed.\tJe suis alitée.\nI'm joking.\tJe rigole !\nI'm loaded.\tJe suis saoul.\nI'm lonely.\tJe me sens seul.\nI'm lonely.\tJe me sens seule.\nI'm losing.\tJe suis en train de perdre.\nI'm moving.\tJe suis en train de déménager.\nI'm normal.\tJe suis normal.\nI'm normal.\tJe suis normale.\nI'm paying.\tC'est moi qui paie.\nI'm paying.\tJe suis en train de payer.\nI'm pooped.\tJe suis crevé.\nI'm rested.\tJe suis reposé.\nI'm rested.\tJe suis reposée.\nI'm ruined.\tJe suis ruiné.\nI'm ruined.\tJe suis ruinée.\nI'm shaken.\tJe suis remué.\nI'm shaken.\tJe suis remuée.\nI'm single.\tJe suis célibataire.\nI'm skinny.\tJe suis maigrichon.\nI'm skinny.\tJe suis maigrichonne.\nI'm sleepy!\tJe suis fatigué !\nI'm sleepy!\tJ'ai sommeil !\nI'm sneaky.\tJe suis sournois.\nI'm sneaky.\tJe suis sournoise.\nI'm strict.\tJe suis strict.\nI'm strict.\tJe suis stricte.\nI'm strong.\tJe suis fort.\nI'm strong.\tJe suis forte.\nI'm thirty.\tJ'ai trente ans.\nI'm wasted.\tJe suis affaiblie.\nI've tried.\tJ'ai essayé.\nI've tried.\tJ'ai tenté.\nIgnore Tom.\tIgnore Tom.\nIgnore Tom.\tIgnorez Tom.\nIgnore him.\tNe faites pas attention à lui.\nIs he busy?\tEst-il occupé ?\nIs he dead?\tEst-il mort ?\nIs he dead?\tEst-il décédé ?\nIs he tall?\tEst-il grand ?\nIs it done?\tEst-ce fait ?\nIs it free?\tC'est gratuit ?\nIs it hard?\tEst-ce difficile ?\nIs it love?\tEst-ce de l'amour ?\nIs it love?\tEst-ce de l'amour ?\nIs it nice?\tEst-ce chouette ?\nIs it safe?\tEst-ce sûr ?\nIs it safe?\tEst-ce sans danger ?\nIs it safe?\tEst-ce inoffensif ?\nIs it true?\tC'est vrai ?\nIs that it?\tEst-ce cela ?\nIs that so?\tEn va-t-il ainsi ?\nIs that so?\tEn est-il ainsi ?\nIs that so?\tEst-ce le cas ?\nIt is cold.\tIl fait froid.\nIt matters.\tÇa importe.\nIt matters.\tÇa compte.\nIt matters.\tC'est important.\nIt went OK.\tÇa s'est bien passé.\nIt'll work.\tÇa fonctionnera.\nIt'll work.\tÇa marchera.\nIt's a fad.\tC'est une passade.\nIt's a fad.\tC'est une tocade.\nIt's a fad.\tC'est un phénomène de mode.\nIt's awful.\tC'est terrible.\nIt's awful.\tC'est affreux.\nIt's bogus.\tC'est du pipeau tout ça.\nIt's bulky.\tC'est encombrant.\nIt's cheap.\tC'est bon marché.\nIt's clean.\tC'est propre.\nIt's early.\tIl est tôt.\nIt's funny.\tC'est marrant.\nIt's funny.\tC'est drôle.\nIt's funny.\tC'est rigolo.\nIt's green.\tC'est vert.\nIt's my CD.\tC'est mon CD.\nIt's night.\tIl fait nuit.\nIt's on me.\tC'est pour moi.\nIt's phony.\tC'est du pipeau tout ça.\nIt's ready.\tC'est prêt.\nIt's right.\tC'est juste.\nIt's safer.\tC'est plus sûr.\nIt's sweet.\tC'est mignon.\nIt's sweet.\tC'est gentil.\nIt's weird.\tC'est bizarre.\nIt's wrong.\tC'est faux.\nIt's yours.\tC'est le tien.\nIt's yours.\tC'est la tienne.\nIt's yours.\tC'est la vôtre.\nIt's yours.\tC'est le vôtre.\nJust relax.\tDétendez-vous.\nJust relax.\tDétends-toi.\nKeep quiet!\tReste tranquille !\nKeep quiet!\tRestez tranquille !\nKeep quiet.\tReste tranquille.\nKeep quiet.\tRestez tranquille.\nKeep quiet.\tRestez tranquilles.\nLet him go!\tLaisse-le partir !\nLet him go!\tLaissez-le partir !\nLet him go!\tLaisse-le s'en aller!\nLet him go!\tLaissez-le s'en aller!\nLet him go.\tLaisse-le partir !\nLet him go.\tLaissez-le partir !\nLet him go.\tLaisse-le s'en aller!\nLet him go.\tLaissez-le s'en aller!\nLet him in.\tFais-le entrer.\nLet him in.\tLaisse-le entrer.\nLet him in.\tLaissez-le entrer.\nLet him in.\tFaites-le entrer.\nLet me die.\tLaissez-moi mourir.\nLet me die.\tLaisse-moi mourir.\nLet me out!\tLaisse-moi sortir !\nLet me out!\tLaissez-moi sortir !\nLet me pay.\tLaisse-moi payer.\nLet me pay.\tLaissez-moi payer.\nLet me see.\tLaissez-moi voir.\nLet me try.\tLaisse-moi essayer.\nLet me try.\tLaissez-moi essayer.\nLet us out.\tLaisse-nous sortir !\nLet us out.\tLaissez-nous sortir !\nLet's chat.\tDiscutons.\nLet's kiss.\tEmbrassons-nous.\nLet's pray.\tPrions !\nLet's talk.\tDiscutons !\nLet's work.\tTravaillons !\nLighten up.\tRelaxe !\nLighten up.\tDétends-toi !\nLook at it.\tRegardez-le !\nLook at it.\tRegarde-le !\nLook at me.\tRegarde-moi.\nLook it up.\tCherche-le !\nLove hurts.\tL'amour blesse.\nLove hurts.\tL'amour fait mal.\nMama cried.\tMaman a pleuré.\nMama cried.\tMaman pleurait.\nNever mind!\tN'y prête pas attention.\nNever mind!\tT'inquiète pas.\nNo comment.\tSans commentaire.\nNo kidding?\tVraiment ?\nNo kidding?\tSans blague ?\nNo problem!\tAucun problème !\nNo problem!\tPas de problème !\nNo problem.\tPas de problème.\nNo problem.\tAucun problème.\nNo problem.\tCe n'est rien.\nNo problem.\tSans problème.\nOh, really?\tOh ! Vraiment ?\nOnce again.\tEncore une fois.\nPick it up.\tRamasse-le.\nPlease sit.\tAsseyez-vous, je vous prie.\nRun for it!\tSauve-toi !\nRun for it!\tSauvez-vous !\nRun for it!\tPrends tes jambes à ton cou !\nRun for it!\tPrenez vos jambes à votre cou !\nRun for it!\tPrenez vos jambes à vos cous !\nRun for it!\tTaillez-vous !\nRun for it!\tTaille-toi !\nRun for it!\tFile !\nRun for it!\tFilez !\nSay please.\tDis : « s'il te plaît ».\nSay please.\tDites : « s'il vous plaît ».\nShadow him.\tFile-le !\nShe is old.\tElle est vieille.\nShe smiled.\tElle a souri.\nShe's busy.\tElle est occupée.\nShe's nice.\tElle est gentille.\nStand back!\tReculez !\nStand back!\tReculez !\nStand back!\tRecule-toi !\nStand back!\tReculez-vous !\nStay awake.\tReste debout.\nStay awake.\tReste éveillé.\nStay sharp.\tReste malin !\nStep aside.\tÉcarte-toi !\nStep aside.\tÉcartez-vous !\nStop lying.\tArrête de mentir.\nStop lying.\tArrêtez de mentir.\nStudy hard.\tÉtudie avec application.\nStudy hard.\tÉtudiez avec application.\nTake a bus.\tPrenez un bus.\nTake a nap.\tFais un petit somme !\nTalk to me!\tParle-moi !\nTalk to me!\tParle-moi !\nTalk to me!\tParlez-moi !\nTalk to me.\tParle avec moi.\nTalk to me.\tParlez avec moi.\nThat a boy!\tC'est bien !\nThat a boy!\tT'es un bon garçon !\nThat hurts.\tÇa fait mal.\nThat works.\tÇa fonctionne.\nThat's all.\tC'est tout.\nThat's fun.\tC'est amusant.\nThat's fun.\tC'est marrant.\nThat's her.\tC'est elle.\nThat's his.\tCe sont les siens.\nThat's his.\tC'est le sien.\nThat's his.\tC'est la sienne.\nThat's odd.\tC'est bizarre.\nThey agree.\tIls sont d'accord.\nThey agree.\tElles sont d'accord.\nThey cheat.\tIls trichent.\nThey cheat.\tElles trichent.\nThey voted.\tIls ont voté.\nThey voted.\tElles ont voté.\nThis is it.\tÇa y est.\nThis works.\tÇa fonctionne.\nTime flies.\tLe temps s'enfuit.\nTime flies.\tLe temps s'envole.\nTime is up.\tLe temps est écoulé.\nTime is up.\tL'heure est passée.\nTom agrees.\tTom est d'accord.\nTom cheats.\tTom triche.\nTom drinks.\tTom boit.\nTom drives.\tTom conduit.\nTom forgot.\tTom a oublié.\nTom forgot.\tTom oublia.\nTom helped.\tTom a aidé.\nTom helped.\tTom aida.\nTom jumped.\tTom sauta.\nTom looked.\tTom a regardé.\nTom looked.\tTom regarda.\nTom nodded.\tTom hocha la tête.\nTom sighed.\tTom soupira.\nTom snores.\tTom ronfle.\nTom yawned.\tTom bailla.\nTom's dead.\tTom est mort.\nTom's deaf.\tTom est sourd.\nTom's died.\tTom est mort.\nTom's fast.\tTom est rapide.\nTom's free.\tTom est libre.\nTom's glad.\tTom est content.\nTom's glad.\tTom est heureux.\nTom's glad.\tTom est joyeux.\nTom's here.\tTom est là.\nTom's here.\tTom est ici.\nTom's home.\tTom est chez lui.\nTom's home.\tTom est à la maison.\nTom's left.\tTom est parti.\nTom's left.\tTom partit.\nTom's well.\tTom va bien.\nTough luck!\tTant pis!\nTurn it up.\tMonte-le.\nTurn it up.\tMontez-le.\nTurn it up.\tAugmente-le.\nTurn it up.\tAugmentez-le.\nWait a bit.\tAttends une seconde !\nWait a bit.\tAttends un peu.\nWait a sec.\tAttends une seconde !\nWait a sec.\tAttendez une seconde !\nWe all die.\tNous mourons tous.\nWe all die.\tNous mourons toutes.\nWe are men.\tNous sommes des hommes.\nWe buy CDs.\tNous achetons des CD.\nWe can pay.\tNous pouvons payer.\nWe can try.\tNous pouvons essayer.\nWe can try.\tNous pouvons tenter.\nWe can win.\tNous pouvons gagner.\nWe can win.\tNous pouvons l'emporter.\nWe like it.\tNous l'apprécions.\nWe made it.\tNous l'avons fait.\nWe made it.\tNous l'avons accompli.\nWe made it.\tNous avons réussi.\nWe must go.\tNous devons y aller.\nWe must go.\tNous devons partir.\nWe must go.\tIl nous faut y aller.\nWe must go.\tNous devons nous en aller.\nWe need it.\tNous en avons besoin.\nWe saw you.\tNous vous avons vu.\nWe saw you.\tNous vous avons vue.\nWe saw you.\tNous vous avons vues.\nWe saw you.\tNous vous avons vus.\nWe saw you.\tNous t'avons vu.\nWe saw you.\tNous t'avons vue.\nWe want it.\tNous le voulons.\nWe'll cook.\tNous ferons la cuisine.\nWe'll fail.\tNous échouerons.\nWe'll help.\tNous apporterons de l'aide.\nWe'll obey.\tNous obéirons.\nWe'll pass.\tNous réussirons.\nWe'll swim.\tNous nagerons.\nWe'll wait.\tNous attendrons.\nWe'll walk.\tNous marcherons.\nWe'll work.\tNous travaillerons.\nWe're back.\tNous sommes de retour.\nWe're busy.\tNous sommes occupés.\nWe're busy.\tNous sommes occupées.\nWe're done.\tNous avons fini.\nWe're done.\tNous avons terminé.\nWe're done.\tNous en avons fini.\nWe're done.\tNous en avons terminé.\nWe're even.\tNous sommes quittes.\nWe're fine.\tNous allons bien.\nWe're here.\tNous sommes ici.\nWe're here.\tNous sommes là.\nWe're home.\tNous sommes chez nous.\nWe're late.\tNous sommes en retard.\nWe're lost.\tNous sommes perdus.\nWe're lost.\tNous sommes perdues.\nWe're rich.\tNous sommes riches.\nWe're safe.\tNous sommes en sécurité.\nWe're sunk.\tOn est foutu.\nWe're sunk.\tNous sommes foutus.\nWe're weak.\tNous sommes faibles.\nWhat a day!\tQuelle journée !\nWhat is it?\tQu’est-ce que c’est ?\nWhat is it?\tQu'est-ce ?\nWhat's new?\tQuoi de nouveau ?\nWhere am I?\tOù suis-je ?\nWho are we?\tQui sommes-nous ?\nWho did it?\tQui l'a fait ?\nWho did it?\tQui a fait ça ?\nWho saw me?\tQui m'a vu ?\nWho talked?\tQui a parlé ?\nWho yelled?\tQui a hurlé ?\nWhy bother?\tPourquoi s'en soucier ?\nYou decide.\tToi, décide.\nYou decide.\tVous, décidez.\nYou did it!\tC'est toi qui l'as fait !\nYou did it!\tC'est vous qui l'avez fait !\nYou may go.\tVous pouvez partir.\nYou may go.\tTu peux y aller.\nYou may go.\tTu peux partir.\nYou may go.\tTu peux t'en aller.\nYou may go.\tVous pouvez vous en aller.\nYou may go.\tVous pouvez y aller.\nYou're bad.\tTu es vilain.\nYou're big.\tTu es grand.\nYou're big.\tTu es grande.\nYou're big.\tVous êtes grand.\nYou're big.\tVous êtes grande.\nYou're big.\tVous êtes grands.\nYou're big.\tVous êtes grandes.\nYou're fun.\tT'es marrante.\nYou're fun.\tT'es marrant.\nYou're old.\tTu es vieux.\nYou're old.\tTu es vieille.\nYou're old.\tVous êtes vieux.\nYou're old.\tVous êtes vieilles.\nYou're old.\tVous êtes vieille.\nYou're sad.\tTu es triste.\nYou're sad.\tVous êtes triste.\nYou're shy.\tTu es timide.\nYou're shy.\tVous êtes timide.\nYou've won!\tVous avez gagné !\nYou've won!\tTu as gagné !\nAll is well.\tTout va bien.\nAm I hungry!\tJ'ai faim !\nAm I stupid?\tSuis-je idiot ?\nAm I stupid?\tSuis-je idiote ?\nAnyone home?\tQuiconque est-il dans la maison ?\nAnyone home?\tQuiconque est-il à la maison ?\nAnyone home?\tQui que ce soit est-il à la maison ?\nAnyone hurt?\tQuiconque est-il blessé ?\nAnyone hurt?\tQui que ce soit est-il blessé ?\nAre we done?\tAvons-nous terminé ?\nAre we done?\tEn avons-nous terminé ?\nAre we lost?\tSommes-nous perdus ?\nAre we lost?\tSommes-nous perdues ?\nAre we safe?\tSommes-nous en sécurité ?\nAre you Tom?\tÊtes-vous Tom ?\nAre you Tom?\tEst-ce que tu es Tom ?\nAre you mad?\tÊtes-vous fou ?\nAre you mad?\tEs-tu folle ?\nAre you mad?\tÊtes-vous folle ?\nAre you new?\tTu es nouveau ?\nAre you sad?\tEs-tu triste ?\nAs you like.\tComme tu veux.\nAs you like.\tComme vous voulez.\nAsk anybody.\tDemande à n'importe qui !\nAsk anybody.\tDemandez à n'importe qui !\nAsk anybody.\tDemande à qui que ce soit !\nAsk anybody.\tDemandez à qui que ce soit !\nBe creative.\tSoyez créatives !\nBe creative.\tSoyez créatifs !\nBe creative.\tSoyez créative !\nBe creative.\tSoyez créatif !\nBe creative.\tSois créative !\nBe creative.\tSois créatif !\nBe discreet.\tSois discret !\nBe discreet.\tSois discrète !\nBe discreet.\tSoyez discret !\nBe discreet.\tSoyez discrète !\nBe discreet.\tSoyez discrets !\nBe discreet.\tSoyez discrètes !\nBe friendly.\tSoyez amicales !\nBe friendly.\tSoyez amicaux !\nBe friendly.\tSoyez amicale !\nBe friendly.\tSoyez amical !\nBe friendly.\tSois amicale !\nBe friendly.\tSois amical !\nBe merciful.\tSois clément !\nBe merciful.\tSois clémente !\nBe merciful.\tSoyez clément !\nBe merciful.\tSoyez cléments !\nBe merciful.\tSoyez clémente !\nBe merciful.\tSoyez clémentes !\nBe merciful.\tSoyez miséricordieuses !\nBe merciful.\tSoyez miséricordieuse !\nBe merciful.\tSoyez miséricordieux !\nBe merciful.\tSois miséricordieuse !\nBe merciful.\tSois miséricordieux !\nBe prepared.\tSois prêt !\nBe prepared.\tTiens-toi prêt !\nBe prepared.\tSois prête !\nBe prepared.\tSoyez prêt !\nBe prepared.\tSoyez prête !\nBe prepared.\tSoyez prêts !\nBe prepared.\tSoyez prêtes !\nBe prepared.\tTiens-toi prête !\nBe prepared.\tTenez-vous prêt !\nBe prepared.\tTenez-vous prête !\nBe prepared.\tTenez-vous prêts !\nBe prepared.\tTenez-vous prêtes !\nBe punctual.\tSoyez ponctuelles !\nBe punctual.\tSoyez ponctuelle !\nBe punctual.\tSoyez ponctuels !\nBe punctual.\tSoyez ponctuel !\nBe punctual.\tSois ponctuel !\nBe punctual.\tSois ponctuelle !\nBe ruthless.\tSoyez impitoyable !\nBe ruthless.\tSoyez impitoyables !\nBe ruthless.\tSois impitoyable !\nBe sensible.\tSoyez raisonnable !\nBe sensible.\tSoyez raisonnables !\nBe sensible.\tSois raisonnable !\nBe yourself.\tSois toi-même.\nBe yourself.\tSoyez vous-même.\nBreak it up!\tArrêtez !\nCan it wait?\tCela peut-il attendre ?\nCan we come?\tPouvons-nous venir ?\nCan we help?\tPouvons-nous donner un coup de main ?\nCan we stop?\tPouvons-nous arrêter ?\nCan we talk?\tPouvons-nous parler ?\nCan you see?\tArrives-tu à voir ?\nCan you see?\tArrivez-vous à voir ?\nCan you ski?\tSavez-vous faire du ski ?\nCan you ski?\tSais-tu faire du ski ?\nCan you try?\tPouvez-vous essayer ?\nClean it up.\tNettoyez-le.\nClean it up.\tNettoie-le.\nCome get it.\tViens le chercher.\nCome get me.\tVenez me chercher.\nCome off it!\tArrête ça !\nCome off it!\tArrête de te la péter !\nCome off it!\tArrête ton char !\nCome off it!\tDécroche de ça !\nCome off it!\tChange de disque !\nCome off it!\tLaisse tomber !\nCome off it.\tLaisse tomber.\nCome off it.\tArrête ton char.\nCook for me.\tCuisine pour moi.\nCook for me.\tCuisinez pour moi.\nCount me in.\tTu peux me compter dans le nombre.\nCover it up.\tCouvrez-le.\nCover it up.\tCamouflez-le.\nDeal me out.\tNe compte pas sur moi.\nDid it hurt?\tÇa vous a fait mal ?\nDid you win?\tAs-tu vaincu ?\nDid you win?\tL'avez-vous emporté ?\nDid you win?\tL'as-tu emporté ?\nDo it again!\tFais-le encore une fois !\nDo it again!\tRefais-le !\nDo it again!\tFais-le de nouveau !\nDo it again!\tFais-le à nouveau !\nDo it again!\tFaites-le de nouveau !\nDo it again!\tFaites-le à nouveau !\nDo it again!\tRefaites-le !\nDo it right.\tFais-le comme il faut !\nDo it right.\tFaites-le comme il faut !\nDo your job.\tFais ton boulot.\nDon't do it!\tNe le fais pas !\nDon't do it!\tNe le faites pas !\nDon't do it.\tNe le fais pas !\nDon't do it.\tNe le faites pas !\nDon't gloat.\tNe jubilez pas !\nDon't gloat.\tNe jubile pas !\nDon't laugh.\tNe ris pas.\nDon't laugh.\tNe riez pas.\nDon't leave!\tNe t'en va pas !\nDon't leave!\tNe pars pas !\nDon't leave.\tNe pars pas !\nDon't leave.\tNe partez pas !\nDon't shoot!\tNe tire pas !\nDon't shoot!\tNe tirez pas !\nDon't shoot.\tNe tire pas !\nDon't shoot.\tNe tirez pas !\nDon't shout.\tNe crie pas.\nDon't worry.\tT'inquiète pas.\nDon't worry.\tT'inquiète.\nDon't worry.\tNe t'en fais pas.\nDon't worry.\tNe vous en faites pas.\nDon't worry.\tNe vous inquiétez pas.\nFlip a coin.\tLance une pièce !\nGet serious.\tSois sérieux.\nGet the box.\tPrends la boîte.\nGet the box.\tPrenez la boîte.\nGo home now.\tVa chez toi, maintenant.\nGo home now.\tVa chez nous, maintenant.\nGo home now.\tVa à la maison, maintenant.\nGo home now.\tAllez chez vous, maintenant.\nGo home now.\tAllez à la maison, maintenant.\nGo on ahead.\tContinue en avant.\nGo to sleep.\tVa dormir !\nGrab a seat.\tPrends-toi un siège !\nHave a beer.\tPrends une bière !\nHave a look.\tRegarde !\nHave a look.\tRegardez !\nHave a look.\tJette un œil !\nHave a look.\tJetez un œil !\nHave a seat.\tPrenez place.\nHave a seat.\tPrends place.\nHave we met?\tNous sommes-nous rencontrés ?\nHe can come.\tIl peut venir.\nHe can read.\tIl peut lire.\nHe can swim.\tIl sait nager.\nHe chuckled.\tIl gloussa.\nHe chuckled.\tIl a gloussé.\nHe found it.\tIl le trouva.\nHe found it.\tIl l'a trouvé.\nHe got away.\tIl s'en est sorti.\nHe grew old.\tIl devint vieux.\nHe grew old.\tIl est devenu vieux.\nHe has come!\tIl est venu !\nHe has guts.\tIl a des tripes.\nHe has wine.\tIl a du vin.\nHe helps us.\tIl nous aide.\nHe is drunk.\tIl est ivre.\nHe is drunk.\tIl est soûl.\nHe is eight.\tIl a huit ans.\nHe is hated.\tIl est haï.\nHe is nasty.\tIl est méchant.\nHe is smart.\tIl est intelligent.\nHe is young.\tIl est jeune.\nHe likes me.\tIl m'aime bien.\nHe likes me.\tIl m'apprécie.\nHe needs it.\tIl en a besoin.\nHe resigned.\tIl démissionna.\nHe squinted.\tIl loucha.\nHe squinted.\tIl a louché.\nHe stood up.\tIl se mit debout.\nHe stood up.\tIl se dressa.\nHe stood up.\tIl s'est levé.\nHe was busy.\tIl était occupé.\nHe's a hunk.\tC'est un beau mec.\nHe's a hunk.\tC'est un beau gosse.\nHe's a jerk.\tC'est un pauvre type.\nHe's a liar.\tC'est un menteur.\nHe's a nerd.\tC'est un binoclard.\nHe's a slob.\tC'est un flemmard.\nHe's asleep.\tIl est endormi.\nHe's coming.\tIl arrive.\nHe's coming.\tIl est en train d'arriver.\nHe's crying.\tIl est en train de pleurer.\nHe's faking.\tIl simule.\nHe's loaded.\tIl est blindé.\nHe's loaded.\tIl est pété de thune.\nHe's loaded.\tIl est plein aux as.\nHe's my age.\tIl a mon âge.\nHe's not in.\tIl n'est pas chez lui.\nHe's not in.\tIl n'est pas à l'intérieur.\nHe's not in.\tIl n'est pas là.\nHelp me out.\tAide-moi à sortir.\nHelp me out.\tAidez-moi à sortir.\nHere I come.\tJ'arrive.\nHere I come.\tMe voici.\nHere she is!\tLa voilà !\nHere we are!\tNous voilà !\nHere we are!\tNous voici !\nHere we are!\tNous y voilà !\nHere we are.\tOn y est.\nHere we are.\tNous y voici.\nHere we are.\tNous y voilà !\nHow are you?\tComment vas-tu ?\nHow are you?\tComment allez-vous ?\nHow are you?\tÇa va ?\nHow are you?\tComment allez-vous ?\nHow are you?\tComment il va ?\nHow are you?\tComment allons-nous ?\nHow are you?\tComment ça va ?\nHow curious!\tComme c'est curieux !\nHow is life?\tComment est la vie ?\nI also went.\tJ'y suis également allé.\nI am French.\tJe suis français.\nI am Korean.\tJe suis Coréen.\nI am a cook.\tJe suis cuisinier.\nI am a monk.\tJe suis un moine.\nI am better.\tJe vais mieux.\nI am better.\tJe suis mieux.\nI am coming.\tJ'arrive.\nI am hungry.\tJ'ai faim !\nI am joking.\tJe plaisante.\nI am single.\tJe suis célibataire.\nI am taller.\tJe suis plus grand.\nI apologize.\tJe vous prie de m'excuser.\nI asked Tom.\tJ'ai demandé à Tom.\nI assume so.\tJe le suppose.\nI bought it.\tJe l'ai acheté.\nI buried it.\tJe l'ai enterré.\nI buried it.\tJe l'ai enterrée.\nI burned it.\tJe l'ai brûlé.\nI burned it.\tJe l'ai brûlée.\nI came back.\tJe suis revenu.\nI can dance.\tJe sais danser.\nI can do it.\tJe peux le faire.\nI can do it.\tJe peux y arriver.\nI can do it.\tJe peux y parvenir.\nI can do it.\tJ'arrive à le faire.\nI can't eat.\tJe ne peux pas manger.\nI can't say.\tJe ne puis le dire.\nI can't say.\tJe ne peux le dire.\nI can't see.\tJe n'arrive pas à voir.\nI can't see.\tJe ne parviens pas à voir.\nI can't see.\tJe suis aveugle.\nI can't win.\tJe ne peux gagner.\nI can't win.\tJe ne peux pas gagner.\nI can't win.\tJe ne puis gagner.\nI caught it.\tJe l'ai attrapé.\nI caught it.\tJe l'ai attrapée.\nI confessed.\tJ'ai confessé.\nI confessed.\tJe l'ai confessé.\nI could try.\tJe pourrais essayer.\nI cut class.\tJ'ai séché.\nI didn't go.\tJe n'y suis pas allé.\nI didn't go.\tJe n'y suis pas allée.\nI didn't go.\tJe ne m'y suis pas rendu.\nI didn't go.\tJe ne m'y suis pas rendue.\nI eat alone.\tJe mange seul.\nI eat alone.\tJe mange seule.\nI eat bread.\tJe mange du pain.\nI eat fruit.\tJe mange des fruits.\nI exercised.\tJe me suis entraîné.\nI exercised.\tJe me suis entraînée.\nI feel blue.\tJe me sens déprimé.\nI feel blue.\tJe me sens déprimée.\nI feel cold.\tJ'ai froid.\nI feel fine.\tJe me sens bien.\nI feel good.\tJe me sens bien.\nI feel lost.\tJe me sens perdu.\nI feel lost.\tJe me sens perdue.\nI feel safe.\tJe me sens en sécurité.\nI feel sick.\tJe me sens mal.\nI feel weak.\tJe me sens faible.\nI feel well.\tJe me sens bien.\nI felt dumb.\tJe me suis senti idiot.\nI felt dumb.\tJe me suis sentie idiote.\nI felt fear.\tJ'ai ressenti de la peur.\nI felt good.\tJe me sentais bien.\nI felt safe.\tJe me suis senti en sécurité.\nI felt safe.\tJe me suis sentie en sécurité.\nI got bored.\tJ'ai commencé à m'ennuyer.\nI got dizzy.\tJ'ai été pris de vertiges.\nI got dizzy.\tJ'ai été prise de vertiges.\nI got fined.\tOn m'a mis une amende.\nI got fined.\tOn m'a collé une amende.\nI got fined.\tJ'ai pris une prune.\nI got fined.\tJ'ai été verbalisé.\nI got fined.\tJ'ai été verbalisée.\nI got fined.\tOn m'a mis une prune.\nI got fined.\tJe me suis fait verbaliser.\nI got fined.\tJ'ai pris une contravention.\nI got fined.\tOn m'a mis une contravention.\nI got fined.\tJ'ai pris une contredanse.\nI got fined.\tOn m'a mis une contredanse.\nI got lucky.\tJ'ai eu de la chance.\nI got lucky.\tJ'ai eu du bol.\nI got upset.\tJ'ai été contrariée.\nI got upset.\tJe me suis fâchée.\nI got upset.\tJe me suis fâché.\nI got upset.\tJ'ai été contrarié.\nI guess not.\tJ'imagine que non.\nI guess not.\tJe suppose que non.\nI had to go.\tJe devais y aller.\nI hate dogs.\tJe déteste les chiens.\nI hate dogs.\tJe hais les chiens.\nI hate fish.\tJe déteste le poisson.\nI hate golf.\tJe déteste le golf.\nI hate milk.\tJe déteste le lait.\nI hate sand.\tJe déteste le sable.\nI hate sand.\tJe hais le sable.\nI hate that.\tJe déteste ça.\nI hate them.\tJe les déteste.\nI hate this.\tJe déteste ça.\nI hate work.\tJe déteste le travail.\nI have cash.\tJ'ai du liquide.\nI have cash.\tJe dispose de liquide.\nI have eyes.\tJ'ai des yeux.\nI have food.\tJ'ai de la nourriture.\nI have food.\tJe dispose de nourriture.\nI have time.\tJ'ai du temps.\nI have time.\tJe dispose de temps.\nI have wine.\tJ'ai du vin.\nI know that.\tJe le sais.\nI know them.\tJe les connais.\nI know this.\tJe sais ça.\nI know this.\tJe le sais.\nI like blue.\tJ'aime le bleu.\nI like blue.\tJ'apprécie le bleu.\nI like both.\tJ'aime les deux.\nI like both.\tLes deux me plaisent.\nI like cake.\tJ'aime les gâteaux.\nI like cats.\tJ'aime les chats.\nI like cats.\tJ’aime les chats.\nI like dogs.\tJ'aime les chiens.\nI like jazz.\tJ'apprécie le jazz.\nI like math.\tJ'aime les maths.\nI like milk.\tJ'aime le lait.\nI like rice.\tJ'aime le riz.\nI like rock.\tJ'aime le rock.\nI like that.\tJ'aime cela.\nI like that.\tJ'apprécie cela.\nI like them.\tJe les apprécie.\nI like this.\tJe l'apprécie.\nI like this.\tJ'apprécie ceci.\nI live here.\tJ'habite ici.\nI love Mary.\tJ'aime Mary.\nI love kids.\tJ'adore les enfants.\nI love life.\tJ'adore la vie.\nI loved you.\tJe t'aimais.\nI loved you.\tJe t'ai aimé.\nI loved you.\tJe t'ai aimée.\nI messed up.\tJ'ai merdé.\nI messed up.\tJ'ai foiré.\nI messed up.\tJ'ai dégueulassé.\nI messed up.\tJ'ai sali.\nI messed up.\tJ'ai mis la pagaille.\nI messed up.\tJ'ai mis le souk.\nI must obey.\tIl me faut obéir.\nI must obey.\tJe dois obéir.\nI nailed it.\tC'est dans la poche !\nI nailed it.\tJe l'ai cloué.\nI nailed it.\tJ'ai mis la main dessus.\nI need food.\tIl me faut de la nourriture.\nI need glue.\tJ'ai besoin de colle.\nI need more.\tIl m'en faut davantage.\nI need more.\tIl m'en faut plus.\nI need some.\tJ'en ai besoin.\nI need that.\tIl me faut ça.\nI need that.\tJ'en ai besoin.\nI need that.\tC'est ce qu'il me faut.\nI need time.\tIl me faut du temps.\nI need time.\tJ'ai besoin de temps.\nI never bet.\tJe ne parie jamais.\nI never bet.\tJe n'ai jamais parié.\nI never win.\tJe ne gagne jamais.\nI never win.\tJamais je ne l'emporte.\nI often ski.\tJe skie souvent.\nI oppose it.\tJ'y suis opposé.\nI oppose it.\tJe m'y oppose.\nI pay taxes.\tJe paie des impôts.\nI pay taxes.\tJe paye des accises.\nI recovered.\tJe me suis remis.\nI recovered.\tJe me suis remise.\nI recovered.\tJe m'en suis remis.\nI recovered.\tJe m'en suis remise.\nI said stop.\tJ'ai dit stop.\nI said that.\tJ'ai dit ça.\nI saved you.\tJe t'ai sauvé.\nI saved you.\tJe t'ai sauvée.\nI saved you.\tJe vous ai sauvé.\nI saved you.\tJe vous ai sauvée.\nI saved you.\tJe vous ai sauvées.\nI saved you.\tJe vous ai sauvés.\nI saw a dog.\tJ'ai vu un chien.\nI sell cars.\tJe vends des voitures.\nI should go.\tJe devrais partir.\nI should go.\tJe devrais y aller.\nI smell gas.\tJe sens le gaz.\nI surrender.\tJe me rends.\nI thank you.\tJe te remercie.\nI trust her.\tJe lui fais confiance.\nI trust him.\tJ'ai confiance en lui.\nI trust him.\tJe lui fais confiance.\nI trust you.\tJe me fie à toi.\nI trust you.\tJ'ai confiance en toi.\nI waited up.\tJ'ai veillé.\nI want Mary.\tJe veux Mary.\nI want cash.\tJe veux du liquide.\nI want eggs.\tJe veux des œufs.\nI want kids.\tJe veux des enfants.\nI want mine.\tJe veux le mien.\nI want mine.\tJe veux la mienne.\nI want more.\tJ'en veux davantage.\nI want more.\tJe veux davantage.\nI want soup.\tJe veux de la soupe.\nI want that.\tJe le veux.\nI want that.\tMoi je veux ça.\nI want them.\tJe les veux.\nI want this.\tJe veux ceci.\nI want time.\tJe veux du temps.\nI was alone.\tJ'étais seul.\nI was alone.\tJe me trouvais seul.\nI was alone.\tJe me trouvais seule.\nI was bored.\tJe m'ennuyais.\nI was broke.\tJ'étais sans le sou.\nI was dizzy.\tJ'avais la tête qui tournait.\nI was dizzy.\tLa tête me tournait.\nI was drunk.\tJ'étais ivre.\nI was fired.\tJ'ai été licencié.\nI was fired.\tJ'ai été viré.\nI was fired.\tOn m'a saqué.\nI was hired.\tJ'ai été engagé.\nI was lucky.\tJ'ai eu de la chance.\nI was moved.\tJ'étais ému.\nI was naive.\tJ'étais crédule.\nI was naive.\tJ'ai été crédule.\nI was naive.\tJe fus crédule.\nI was naive.\tJ'ai été naïf.\nI was naive.\tJ'ai été naïve.\nI was naive.\tJ'étais naïf.\nI was naive.\tJ'étais naïve.\nI was ready.\tJ'étais prête.\nI was ready.\tJ'y étais prêt.\nI was ready.\tJ'y étais prête.\nI was sober.\tJ'étais sobre.\nI was sorry.\tJe fus désolé.\nI was sorry.\tJe fus désolée.\nI was there.\tJ'y étais.\nI was there.\tJe m'y trouvais.\nI was there.\tJ'étais là.\nI was there.\tJe me tenais là.\nI was tired.\tJ'étais fatigué.\nI was tired.\tJ’étais fatiguée.\nI was wrong.\tJ'avais tort.\nI was wrong.\tJ'eus tort.\nI was wrong.\tJ'ai eu tort.\nI washed it.\tJe l'ai lavé.\nI washed it.\tJe l'ai lavée.\nI went home.\tJ'allais à la maison.\nI went, too.\tJ'y suis également allé.\nI went, too.\tJ'y suis allé, également.\nI went, too.\tJ'y suis allé aussi.\nI will come.\tJe viendrai.\nI will help.\tJ'aiderai.\nI will obey.\tJ'obéirai.\nI will wait.\tJ'attendrai.\nI will walk.\tJe marcherai.\nI will work.\tJe vais travailler.\nI will work.\tJe travaillerai.\nI won again.\tJ'ai à nouveau gagné.\nI won't cry.\tJe ne pleurerai pas.\nI won't cry.\tJe ne crierai pas.\nI work here.\tJe travaille ici.\nI'll attend.\tJe serai présent.\nI'll attend.\tJ'y assisterai.\nI'll buy it.\tJe l'achèterai.\nI'll cancel.\tJ'annulerai.\nI'll change.\tJe changerai.\nI'll decide.\tJ'en déciderai.\nI'll decide.\tJe le déciderai.\nI'll get in.\tJ'arriverai à entrer.\nI'll get it.\tJe vais aller le chercher.\nI'll get it.\tJ'irai le chercher.\nI'll get up.\tJe me lèverai.\nI'll go now.\tJ'y vais maintenant.\nI'll go see.\tJ'irai voir.\nI'll manage.\tJe m'en sortirai.\nI'll scream.\tJe crierai.\nI'll try it.\tJe l'essayerai.\nI'll try it.\tJe le tenterai.\nI'm 17, too.\tJ'ai également dix-sept ans.\nI'm Finnish.\tJe suis Finlandais.\nI'm Finnish.\tJe suis Finlandaise.\nI'm Italian.\tJe suis italien.\nI'm a baker.\tJe suis boulanger.\nI'm a baker.\tJe suis boulangère.\nI'm all set.\tJe suis tout à fait prêt.\nI'm all set.\tJe suis tout à fait prête.\nI'm ashamed.\tJ'ai honte.\nI'm at home.\tJe suis à la maison.\nI'm at home.\tJe suis dans la maison.\nI'm baffled.\tJe suis perplexe.\nI'm blessed.\tJe suis béni.\nI'm blessed.\tJe suis bénie.\nI'm careful.\tJe suis prudent.\nI'm careful.\tJe suis prudente.\nI'm certain.\tJe suis sûr.\nI'm certain.\tJe suis certain.\nI'm chicken.\tJ'ai les foies.\nI'm chicken.\tJ'ai les chocottes.\nI'm correct.\tJ'ai raison.\nI'm curious.\tJe suis curieux.\nI'm curious.\tJe suis curieuse.\nI'm dancing.\tJe suis en train de danser.\nI'm dieting.\tJe suis au régime.\nI'm driving.\tJe suis en train de conduire.\nI'm driving.\tJe conduis.\nI'm engaged.\tJe suis fiancé.\nI'm engaged.\tJe suis fiancée.\nI'm excited.\tJe suis excité.\nI'm excited.\tJe suis excitée.\nI'm fasting.\tJe fais la diète.\nI'm fasting.\tJe suis à la diète.\nI'm finicky.\tJe suis méticuleux.\nI'm finicky.\tJe suis méticuleuse.\nI'm frantic.\tJe suis affolé.\nI'm frantic.\tJe suis affolée.\nI'm furious.\tJe suis furieux.\nI'm healthy.\tJe suis en bonne santé.\nI'm humming.\tJe fredonne.\nI'm in luck.\tJe suis veinard.\nI'm in luck.\tJe suis veinarde.\nI'm jealous.\tJe suis jalouse.\nI'm jittery.\tJ'ai la frousse.\nI'm kidding.\tJe plaisante.\nI'm kidding.\tJe rigole !\nI'm leaving.\tJe pars.\nI'm married.\tJe suis marié.\nI'm married.\tJe suis mariée.\nI'm no fool.\tJe ne suis pas une idiote.\nI'm no hero.\tJe ne suis pas un héros.\nI'm no liar.\tJe ne suis pas un menteur.\nI'm not fat.\tJe ne suis pas gros.\nI'm not mad.\tJe ne suis pas fou.\nI'm not mad.\tJe ne suis pas folle.\nI'm not old.\tJe ne suis pas vieux.\nI'm not old.\tJe ne suis pas vieille.\nI'm not sad.\tJe ne suis pas triste.\nI'm not shy.\tJe ne suis pas timide.\nI'm on duty.\tJe suis en service.\nI'm patient.\tJe suis patiente.\nI'm patient.\tJe suis patient.\nI'm popular.\tJe suis populaire.\nI'm psyched.\tJe suis remonté.\nI'm psychic.\tJe suis voyant.\nI'm psychic.\tJe suis voyante.\nI'm puzzled.\tJe suis perplexe.\nI'm reading.\tJe lis.\nI'm relaxed.\tJe suis détendu.\nI'm relaxed.\tJe suis détendue.\nI'm retired.\tJe suis retraité.\nI'm retired.\tJe suis retraitée.\nI'm retired.\tJe suis pensionné.\nI'm retired.\tJe suis pensionnée.\nI'm selfish.\tJe suis égoïste.\nI'm serious.\tJe suis sérieux.\nI'm shocked.\tJe suis choqué.\nI'm shocked.\tJe suis choquée.\nI'm sincere.\tJe suis sincère.\nI'm sloshed.\tJe suis bourré.\nI'm sloshed.\tJe suis bourrée.\nI'm so full.\tJe suis tellement rassasié.\nI'm starved.\tJe meurs de faim !\nI'm starved.\tJ'ai l'estomac dans les talons.\nI'm starved.\tJ'ai la dalle.\nI'm starved.\tJ'ai les crocs.\nI'm staying.\tJe reste.\nI'm stuffed.\tJe suis gavé.\nI'm stuffed.\tJe suis gavée.\nI'm stunned.\tJe suis sidéré.\nI'm stunned.\tJe suis sidérée.\nI'm talking.\tJe suis en train de discuter.\nI'm teasing.\tJe taquine.\nI'm thirsty.\tJ'ai soif.\nI'm through.\tJ'en ai fini.\nI'm through.\tJ'en ai terminé.\nI'm too fat.\tJe suis trop gros.\nI'm touched.\tJe suis touché.\nI'm touched.\tJe suis touchée.\nI'm unhappy.\tJe suis mécontent.\nI'm unhappy.\tJe suis mécontente.\nI'm unlucky.\tJ'ai la schcoumoune.\nI'm wealthy.\tJe suis fortuné.\nI'm wealthy.\tJe suis fortunée.\nI'm winning.\tJe gagne.\nI'm winning.\tJe l'emporte.\nI'm working.\tJe suis en train de travailler.\nI'm worried.\tJe me fais du souci.\nI've failed.\tJ'ai échoué.\nIgnore them.\tIgnore-les.\nIgnore them.\tIgnorez-les.\nIs Tom sure?\tEst-ce Tom est sûr ?\nIs he right?\tA-t-il raison ?\nIs it clean?\tEst-ce propre ?\nIs it clear?\tEst-ce clair ?\nIs it dirty?\tEst-ce sale ?\nIs it fatal?\tEst-ce fatal ?\nIs it legal?\tEst-ce légal ?\nIs it ready?\tEst-ce prêt ?\nIs it to go?\tÇa doit partir ?\nIs it to go?\tCela doit-il partir ?\nIs it to go?\tÀ emporter ?\nIs it yours?\tEst-ce à toi ?\nIs it yours?\tEst-ce à vous ?\nIs it yours?\tVous appartient-il ?\nIs it yours?\tEst-ce le vôtre ?\nIs it yours?\tEst-ce le tien ?\nIs it yours?\tEst-ce la tienne ?\nIs it yours?\tEst-ce la vôtre ?\nIs she gone?\tS'en est-elle allée ?\nIs that all?\tC'est tout ?\nIs that you?\tEst-ce toi ?\nIs that you?\tEst-ce vous ?\nIs that you?\tEst-ce que c'est vous ?\nIt can't be!\tC'est pas possible !\nIt is foggy.\tIl y a du brouillard.\nIt may snow.\tIl va peut-être se mettre à neiger.\nIt was long.\tC'était long.\nIt's 50 yen.\tC'est 50 yen.\nIt's Monday.\tNous sommes lundi.\nIt's a doll.\tC'est une poupée.\nIt's a song.\tC'est une chanson.\nIt's all OK.\tTout est d'équerre.\nIt's all OK.\tC'est tout bon.\nIt's broken.\tC'est cassé.\nIt's cloudy.\tLe temps est couvert.\nIt's ironic.\tC'est ironique.\nIt's locked.\tC'est verrouillé.\nIt's my job.\tC'est mon métier.\nIt's my job.\tC'est mon emploi.\nIt's my son.\tC'est mon fils.\nIt's no use.\tÇa ne sert à rien.\nIt's not us.\tCe n'est pas nous.\nIt's poison.\tC'est du poison.\nIt's secret.\tC'est secret.\nIt's silent.\tC'est silencieux.\nIt's stupid.\tC'est bête.\nIt's urgent.\tC'est urgent.\nIt's warmer.\tC'est plus chaud.\nIt's warmer.\tIl fait plus chaud.\nJust say no.\tDites simplement non !\nJust say no.\tDis simplement non !\nKeep trying.\tContinue à essayer.\nKeep trying.\tContinue d'essayer.\nKeep trying.\tContinuez à essayer.\nKeep trying.\tContinuez d'essayer.\nLet me help.\tLaisse-moi t'aider !\nLet me help.\tLaissez-moi vous aider !\nLet me know.\tFais-le moi savoir !\nLet me know.\tAvise-moi !\nLet me talk.\tLaisse-moi parler.\nLet me talk.\tLaissez-moi parler.\nLet's begin.\tCommençons !\nLet's dance.\tDansons.\nLet's do it!\tFaisons-le !\nLet's do it!\tFaisons-le !\nLet's do it!\tOn s'y met !\nLet's do it!\tMettons-nous y !\nLet's do it.\tFaisons-le.\nLet's drink.\tBuvons !\nLet's hurry.\tDépêchons-nous.\nLet's split.\tDivisons-nous !\nLet's split.\tSéparons-nous !\nLet's start!\tCommençons !\nLife is fun.\tLa vie est amusante.\nLook around.\tRegarde autour de toi.\nLook around.\tRegardez autour de vous.\nLunch is on.\tLe déjeuner est prêt.\nMake a list.\tFais une liste !\nMake a list.\tFaites une liste !\nMake a wish.\tFais un souhait !\nMake a wish.\tFaites un souhait !\nMany thanks.\tMerci beaucoup !\nMany thanks.\tMerci vraiment.\nMany thanks.\tMerci bien.\nMany thanks.\tMille mercis.\nMay I begin?\tPuis-je commencer ?\nMoney talks.\tL'argent est roi.\nNeed a lift?\tT'as besoin d'un chauffeur ?\nNice timing.\tBien calculé !\nNice timing.\tPile poil !\nNice timing.\tMoins une !\nNice timing.\tTout juste !\nNice timing.\tPile à l'heure !\nNo means no.\t« Non », ça veut dire « non ».\nNo one came.\tPersonne n'est venu.\nNo one came.\tPersonne ne vint.\nNo one died.\tPersonne n'est mort.\nNo one left.\tPersonne ne partit.\nNo one left.\tPersonne n'est parti.\nNobody came.\tPersonne n'est venu.\nNobody came.\tPersonne ne vint.\nNobody died.\tPersonne n'est mort.\nNow I'm sad.\tMaintenant je suis attristé.\nNow we wait.\tMaintenant nous attendons.\nOK. I agree.\tBien. Je suis d’accord.\nOh, come on.\tOh, viens.\nPick a card.\tPioche une carte !\nPick a card.\tPiochez une carte !\nPick a date.\tChoisissez une date !\nPick a date.\tChoisis une date !\nPlants grow.\tLes plantes poussent.\nPlants grow.\tLes plantes croissent.\nPlease come.\tViens, s'il te plait.\nPlease come.\tS'il te plait, viens.\nPlease come.\tVenez, je vous prie.\nPlease come.\tVeuillez venir.\nPlease sing.\tChante, je te prie !\nPlease sing.\tChantez, je vous prie !\nPlease sing.\tS'il te plaît, chante !\nPlease sing.\tS'il vous plaît, chantez !\nPlease sing.\tVeuillez chanter !\nPlease stop.\tS'il te plaît, arrête.\nPlease stop.\tS'il vous plaît, arrêtez.\nPlease stop.\tArrêtez, s'il vous plaît.\nPlease stop.\tArrête, s'il te plaît.\nPlease stop.\tVeuillez arrêter.\nPlease stop.\tMerci d'arrêter.\nPut it back.\tRemets-le en place !\nPut it down.\tLaisse-le !\nPut it down.\tPose-le !\nRelease him.\tRelâche-le !\nRelease him.\tRelâchez-le !\nRemember it.\tSouviens-en-toi.\nRemember it.\tSouvenez-vous-en.\nSend him in.\tEnvoie-le !\nSend him in.\tEnvoyez-le !\nShall we go?\tY allons-nous ?\nShe blushed.\tElle a rougi.\nShe fainted.\tElle est tombée dans les pommes.\nShe hit him.\tElle le frappa.\nShe hit him.\tElle l'a frappé.\nShe is curt.\tElle n'a pas de charme.\nShe is dead.\tElle est morte.\nShe is kind.\tElle est gentille.\nShe is late.\tElle est en retard.\nShe woke up.\tElle se réveille.\nShe's a dog.\tC'est une enfoirée.\nShe's a fox.\tC'est un renard.\nShould I go?\tDevrais-je y aller ?\nShould I go?\tDevrais-je partir ?\nSleep tight.\tDors bien.\nSleep tight.\tDormez bien.\nStand aside.\tReste à l'écart.\nStand aside.\tRestez à l'écart.\nStand aside.\tÉcarte-toi.\nStand aside.\tÉcartez-vous.\nStay in bed.\tReste au lit !\nStay in bed.\tRestez au lit !\nStay in bed.\tReste alité !\nStay in bed.\tReste alitée !\nStay in bed.\tRestez alité !\nStay in bed.\tRestez alitée !\nStay in bed.\tRestez alités !\nStay in bed.\tRestez alitées !\nStep inside.\tAvance à l'intérieur.\nStep inside.\tAvancez à l'intérieur.\nStop crying.\tArrête de pleurer !\nStop crying.\tArrêtez de pleurer !\nStop trying.\tArrête d'essayer.\nTake a bite.\tCroque !\nTake a bite.\tPrends une bouchée !\nTake a bite.\tPrenez une bouchée !\nTake a bite.\tCroquez !\nTake a card.\tPrends une carte.\nTake a card.\tPrenez une carte.\nTake a look.\tRegarde !\nTake a look.\tRegardez !\nTake a look.\tJette un œil !\nTake a look.\tJetez un œil !\nTake a rest.\tReposez-vous.\nTake a rest.\tRepose-toi.\nTake a seat.\tAssieds-toi !\nTake a seat.\tAsseyez-vous !\nTake a seat.\tPrenez place !\nTake a seat.\tPrends place !\nTake a walk.\tVa marcher !\nTake a walk.\tAllez marcher !\nTake it all.\tPrends tout !\nTake it all.\tPrenez tout !\nThat is all.\tC'est tout.\nThat worked.\tÇa a fonctionné.\nThat worked.\tÇa a marché.\nThat's cool.\tC'est super.\nThat's cool.\tC'est cool.\nThat's hers.\tCe sont les siens.\nThat's hers.\tC'est le sien.\nThat's hers.\tC'est la sienne.\nThat's hers.\tC'est à elle.\nThat's icky.\tC'est collant.\nThat's icky.\tC'est gnangnan.\nThat's lame.\tC'est minable.\nThat's lame.\tC'est faible.\nThat's mine.\tC'est le mien.\nThat's mine.\tC'est la mienne.\nThat's true.\tC'est exact.\nThat's true.\tC'est juste.\nThat's ugly.\tC'est laid.\nThat's wise.\tC'est sage.\nThe TV's on.\tLa télé est allumée.\nThere he is.\tLe voilà.\nThere he is.\tLe voici.\nThere it is.\tIl est là.\nThey burned.\tIls ont brûlé.\nThey burned.\tElles ont brûlé.\nThey got it.\tIls l'ont eu.\nThey got it.\tIls l'ont eue.\nThey hugged.\tIls se sont enlacés.\nThey hugged.\tElles se sont enlacées.\nThey obeyed.\tIls ont obéi.\nThey obeyed.\tElles ont obéi.\nThey smiled.\tIls ont souri.\nThey smiled.\tElles ont souri.\nThey're bad.\tIls sont mauvais.\nThey're bad.\tElles sont mauvaises.\nThey're old.\tIls sont vieux.\nThey're old.\tElles sont vieilles.\nThis is bad.\tÇa pue.\nThis is bad.\tC'est pas bon.\nThis is bad.\tCe n'est pas bon.\nThis is bad.\tC'est mauvais.\nThis is big.\tC'est gros.\nThis is big.\tC'est grand.\nThis is fun.\tC'est amusant.\nThis is his.\tC'est le sien.\nThis is his.\tC'est la sienne.\nThis is new.\tC'est nouveau.\nThis is new.\tC'est neuf.\nThis is odd.\tC'est bizarre.\nThis stinks.\tÇa pue.\nTom blinked.\tTom a cligné des yeux.\nTom drowned.\tTom se noya.\nTom drowned.\tTom s'est noyé.\nTom is dead.\tTom est mort.\nTom is nuts.\tTom est malade mental.\nTom is weak.\tTom est faible.\nTom laughed.\tTom rit.\nTom left me.\tTom m’a quitté.\nTom left me.\tTom m’a quittée.\nTom listens.\tTom écoute.\nTom'll quit.\tTom va démissionner.\nTom'll quit.\tTom va arrêter.\nTom's alive.\tTom est vivant.\nTom's alive.\tTom est en vie.\nTom's alone.\tTom est tout seul.\nTom's alone.\tTom est seul.\nTom's bored.\tTom s'ennuie.\nTom's funny.\tTom est drôle.\nTom's funny.\tTom est rigolo.\nTom's funny.\tTom est marrant.\nTom's lying.\tTom ment.\nTom's sorry.\tTom est désolé.\nTurn around.\tFaites demi-tour.\nTurn around.\tFais demi-tour.\nTurn it off.\tÉteins-le !\nTurn it off.\tÉteignez-le !\nWait for us.\tAttends-nous !\nWait for us.\tAttendez-nous !\nWake Tom up.\tRéveille Tom !\nWar is evil.\tLa guerre est mauvaise.\nWar is hell.\tLa guerre, c'est l'enfer.\nWas I wrong?\tEst-ce que j'avais tort ?\nWas I wrong?\tAvais-je tort ?\nWas I wrong?\tAi-je eu tort ?\nWe all know.\tNous le savons tous.\nWe all know.\tNous le savons toutes.\nWe all quit.\tNous démissionnons tous.\nWe all quit.\tNous démissionnons toutes.\nWe all quit.\tNous arrêtons toutes.\nWe all quit.\tNous arrêtons tous.\nWe all work.\tNous travaillons tous.\nWe all work.\tNous travaillons toutes.\nWe are even.\tNous sommes quittes.\nWe are even.\tNous sommes à égalité.\nWe are here.\tNous sommes ici.\nWe are here.\tNous y sommes.\nWe are late.\tNous sommes en retard.\nWe broke up.\tNous nous sommes séparés.\nWe broke up.\tNous nous sommes séparées.\nWe broke up.\tNous nous séparâmes.\nWe broke up.\tNous éclatâmes de rire.\nWe broke up.\tNous avons éclaté de rire.\nWe broke up.\tNous avons rompu.\nWe can meet.\tNous pouvons nous rencontrer.\nWe can talk.\tNous pouvons discuter.\nWe can wait.\tNous pouvons attendre.\nWe can't go.\tNous ne pouvons y aller.\nWe can't go.\tNous ne pouvons nous y rendre.\nWe can't go.\tNous ne pouvons pas y aller.\nWe can't go.\tNous ne pouvons pas nous y rendre.\nWe can't go.\tNous ne pouvons pas partir.\nWe did fine.\tNous nous en sommes bien tirés.\nWe did fine.\tNous nous en sommes bien tirées.\nWe did that.\tNous avons fait cela.\nWe did that.\tOn a fait ça.\nWe found it.\tNous l'avons trouvé.\nWe know him.\tNous le connaissons.\nWe know him.\tOn le connaît.\nWe like Tom.\tNous aimons bien Tom.\nWe like Tom.\tNous aimons Tom.\nWe like Tom.\tNous apprécions Tom.\nWe like him.\tNous l'apprécions.\nWe like him.\tNous l'aimons bien.\nWe miss you.\tTu nous manques.\nWe miss you.\tVous nous manquez.\nWe must act.\tIl nous faut agir.\nWe must run.\tIl nous faut courir.\nWe must try.\tIl nous faut essayer.\nWe need Tom.\tNous avons besoin de Tom.\nWe promised.\tNous promîmes.\nWe promised.\tNous avons promis.\nWe remember.\tNous nous souvenons.\nWe remember.\tNous nous en souvenons.\nWe survived!\tNous avons survécu !\nWe survived.\tNous survécûmes.\nWe survived.\tNous avons survécu.\nWe want Tom.\tNous voulons Tom.\nWe'll check.\tNous vérifierons.\nWe'll dance.\tNous danserons.\nWe'll drive.\tNous conduirons.\nWe'll fight.\tNous combattrons.\nWe'll hurry.\tNous nous dépêcherons.\nWe'll share.\tNous partagerons.\nWe'll shoot.\tNous tirerons.\nWe'll stand.\tNous nous tiendrons debout.\nWe'll start.\tNous commencerons.\nWe're alone.\tNous sommes seuls.\nWe're alone.\tNous sommes seules.\nWe're angry.\tNous sommes en colère.\nWe're armed.\tNous sommes armés.\nWe're armed.\tNous sommes armées.\nWe're bored.\tNous nous ennuyons.\nWe're bored.\tOn s'emmerde.\nWe're broke.\tNous sommes fauchés.\nWe're broke.\tNous sommes fauchées.\nWe're broke.\tOn est fauchés.\nWe're dying.\tNous sommes en train de mourir.\nWe're early.\tNous sommes en avance.\nWe're going.\tNous y allons.\nWe're happy.\tNous sommes heureux.\nWe're ready.\tNous sommes prêtes.\nWe're saved.\tNous sommes sauvés.\nWe're saved.\tNous sommes sauvées.\nWe're smart.\tNous sommes intelligents.\nWe're smart.\tNous sommes intelligentes.\nWe're sorry.\tNous sommes désolés.\nWe're sorry.\tNous sommes désolées.\nWe're stuck.\tNous sommes coincés.\nWe're stuck.\tNous sommes coincées.\nWe're tired.\tNous sommes fatigués.\nWe're tired.\tNous sommes fatiguées.\nWe're twins.\tNous sommes jumeaux.\nWe're twins.\tNous sommes jumelles.\nWhat a bore!\tQuel emmerdeur !\nWhat a bore!\tQuelle emmerdeuse !\nWhat a dope!\tQuelle andouille !\nWhat a dope!\tQuel couillon !\nWhat a drag!\tQuel boulet !\nWhat a dump.\tQuel taudis !\nWhat a heel!\tQuel malandrin !\nWhat a jerk!\tQuel naze !\nWhat a joke!\tQuelle blague !\nWhat a loss!\tQuelle perte !\nWhat a mess!\tQuel bordel !\nWhat a mess!\tQuelle pagaille !\nWhat a pain!\tQuelle plaie.\nWhat a pity!\tDommage !\nWhat a pity!\tQuel dommage !\nWhat a team!\tQuelle équipe !\nWhat is art?\tQu'est-ce que l'art ?\nWhat was it?\tQu'était-ce ?\nWhat was it?\tQu'est-ce que c'était ?\nWhat was it?\tDe quoi s'agissait-il ?\nWhat was it?\tQu'y avait-il ?\nWhat'd I do?\tQue ferais-je ?\nWhat's that?\tQu'est-ce que c'est que ça ?\nWhat's that?\tQu'est-ce ?\nWhat's that?\tQu'est-ce là ?\nWhat's that?\tQu'est cela ?\nWhat's this?\tQu’est-ce que c’est ?\nWhat's this?\tC'est quoi ?\nWhat's this?\tC'est quoi, ça ?\nWhere is he?\tOù est-il ?\nWhere was I?\tOù en étais-je ?\nWhere was I?\tOù étais-je ?\nWho are you?\tQui es-tu ?\nWho are you?\tQui êtes-vous ?\nWho is next?\tÀ qui le tour ?\nWho's going?\tQui va y aller ?\nWho's there?\tQui est là ?\nWhose is it?\tÀ qui est-ce ?\nWill it fit?\tCela ira-t-il ?\nWill it fit?\tCela passera-t-il ?\nWill it fit?\tCela s'adaptera-t-il ?\nWill you go?\tIrez-vous ?\nWill you go?\tIras-tu ?\nWill you go?\tT'y rendras-tu ?\nWill you go?\tVous y rendrez-vous ?\nWork slowly.\tTravaille lentement !\nWork slowly.\tTravaillez lentement !\nYou are big.\tTu es grand.\nYou are big.\tTu es grande.\nYou are big.\tVous êtes grand.\nYou are big.\tVous êtes grande.\nYou are big.\tVous êtes grands.\nYou are big.\tVous êtes grandes.\nYou are mad.\tTu es fou.\nYou cheated.\tTu as triché.\nYou cheated.\tVous avez triché.\nYou fainted.\tVous vous êtes évanoui.\nYou fainted.\tVous vous êtes évanouie.\nYou hurt me.\tTu me fais mal.\nYou hurt me.\tVous me faites mal.\nYou may sit.\tVous pouvez vous asseoir.\nYou may sit.\tTu peux t'asseoir.\nYou must go.\tIl faut que tu t'en ailles.\nYou must go.\tTu dois y aller.\nYou must go.\tTu dois partir.\nYou must go.\tTu dois t'en aller.\nYou're back.\tTu es de retour.\nYou're back.\tVous êtes de retour.\nYou're cool.\tT'es sympa.\nYou're cool.\tT'es décontracté.\nYou're fair.\tTu es juste.\nYou're fair.\tVous êtes juste.\nYou're fair.\tVous êtes justes.\nYou're fine.\tTu vas bien.\nYou're free.\tTu es libre.\nYou're free.\tVous êtes libres.\nYou're free.\tVous êtes libre.\nYou're good.\tVous êtes bon.\nYou're good.\tVous êtes bonne.\nYou're good.\tVous êtes bons.\nYou're good.\tVous êtes bonnes.\nYou're good.\tTu es bon.\nYou're good.\tTu es bonne.\nYou're good.\tT'es bon.\nYou're good.\tT'es bonne.\nYou're kind.\tTu es gentil.\nYou're kind.\tTu es gentille.\nYou're lazy.\tTu es paresseux.\nYou're lazy.\tTu es paresseuse.\nYou're lazy.\tVous êtes paresseux.\nYou're lazy.\tVous êtes paresseuses.\nYou're lazy.\tVous êtes paresseuse.\nYou're lost.\tTu es perdu.\nYou're lost.\tTu es perdue.\nYou're nice.\tT'es sympa.\nYou're nice.\tVous êtes sympa.\nYou're nice.\tVous êtes sympas.\nYou're nuts!\tTu es fou !\nYou're nuts!\tT'es dingue !\nYou're nuts!\tVous êtes dingue !\nYou're nuts!\tVous êtes dingues !\nYou're nuts!\tT'es givré !\nYou're nuts!\tT'es givrée !\nYou're nuts!\tVous êtes givré !\nYou're nuts!\tVous êtes givrée !\nYou're nuts!\tVous êtes givrés !\nYou're nuts!\tVous êtes givrées !\nYou're rich.\tTu es riche.\nYou're rich.\tVous êtes riche.\nYou're rich.\tVous êtes riches.\nYou're rude.\tTu es grossier.\nYou're rude.\tVous êtes grossiers.\nYou're rude.\tVous êtes grossière.\nYou're rude.\tVous êtes grossières.\nYou're rude.\tTu es grossière.\nYou're safe.\tTu es en sécurité.\nYou're safe.\tVous êtes en sécurité.\nYou're safe.\tTu es sauf.\nYou're safe.\tVous êtes saufs.\nYou're safe.\tVous êtes sauf.\nYou're safe.\tVous êtes sauve.\nYou're safe.\tVous êtes sauves.\nYou're safe.\tTu es sauve.\nYou're sick!\tVous êtes malade !\nYou're sick!\tTu es malade!\nYou're sick!\tVous êtes malade!\nYou're thin.\tTu es mince.\nYou're thin.\tVous êtes mince.\nYou're thin.\tVous êtes minces.\nYou're weak.\tTu es faible.\nYou're weak.\tVous êtes faible.\nYou're weak.\tVous êtes faibles.\nAbandon ship!\tAbandonnez le navire !\nAll is quiet.\tTout est calme.\nAll is still.\tTout est calme.\nAm I correct?\tAi-je raison ?\nAnybody here?\tY a-t-il quelqu'un ?\nAnybody here?\tY a-t-il qui que soit ici ?\nAnybody home?\tQuelqu'un est-il là ?\nAnybody home?\tY a-t-il quelqu'un ?\nAnybody home?\tY a-t-il quelqu'un dans la maison ?\nAnybody hurt?\tQuiconque a-t-il été blessé ?\nAnybody hurt?\tQui que ce soit est-il blessé ?\nAnything new?\tIl y a du nouveau ?\nAre we alone?\tSommes-nous seuls ?\nAre we alone?\tSommes-nous seules ?\nAre we broke?\tSommes-nous fauchés ?\nAre we broke?\tSommes-nous fauchées ?\nAre we ready?\tSommes-nous prêts ?\nAre we ready?\tSommes-nous prêtes ?\nAre you bald?\tEs-tu chauve ?\nAre you bald?\tÊtes-vous chauves ?\nAre you bald?\tÊtes-vous chauve ?\nAre you busy?\tEs-tu occupé ?\nAre you busy?\tÊtes-vous occupé ?\nAre you busy?\tÊtes-vous occupée ?\nAre you busy?\tEs-tu occupé ?\nAre you busy?\tEs-tu occupée ?\nAre you busy?\tÊtes-vous occupés ?\nAre you busy?\tÊtes-vous occupées ?\nAre you deaf?\tEs-tu sourd ?\nAre you deaf?\tÊtes-vous sourd ?\nAre you deaf?\tÊtes-vous sourde ?\nAre you deaf?\tEs-tu sourde ?\nAre you home?\tEs-tu chez toi ?\nAre you home?\tÊtes-vous chez vous ?\nAre you home?\tEs-tu chez nous ?\nAre you home?\tEs-tu chez moi ?\nAre you home?\tÊtes-vous chez nous ?\nAre you home?\tÊtes-vous chez moi ?\nAre you home?\tEs-tu à la maison ?\nAre you home?\tÊtes-vous à la maison ?\nAre you hurt?\tT'es-tu blessé ?\nAre you hurt?\tEs-tu blessé ?\nAre you hurt?\tÊtes-vous blessé ?\nAre you hurt?\tÊtes-vous blessés ?\nAre you hurt?\tÊtes-vous blessées ?\nAre you hurt?\tÊtes-vous blessée ?\nAre you hurt?\tVous êtes-vous blessé ?\nAre you hurt?\tVous êtes-vous blessée ?\nAre you hurt?\tVous êtes-vous blessés ?\nAre you hurt?\tVous êtes-vous blessées ?\nAre you lost?\tÊtes-vous perdu ?\nAre you lost?\tÊtes-vous perdus ?\nAre you lost?\tÊtes-vous perdues ?\nAre you lost?\tEs-tu perdu ?\nAre you lost?\tEs-tu perdue ?\nAre you lost?\tÊtes-vous perdue ?\nAre you sick?\tEs-tu malade ?\nAre you sure?\tEs-tu sûr ?\nAre you sure?\tEs-tu sûre ?\nAre you sure?\tÊtes-vous sûr ?\nAre you sure?\tÊtes-vous sûre ?\nAre you sure?\tÊtes-vous sûres ?\nAre you sure?\tÊtes-vous sûrs ?\nAre you sure?\tÊtes-vous sûr ?\nAre you sure?\tEs-tu sûr ?\nAre you sure?\tÊtes-vous sûrs ?\nAre you sure?\tÊtes-vous sûres ?\nBe attentive.\tSois attentif.\nBe attentive.\tSois attentive.\nBe confident.\tSois confiant !\nBe confident.\tSoyez confiant !\nBe confident.\tSoyez confiants !\nBe confident.\tSoyez confiante !\nBe confident.\tSoyez confiantes !\nBe confident.\tSois confiante !\nBeef, please.\tDu bœuf s'il vous plaît.\nBeef, please.\tDu bœuf, s'il vous plaît.\nBring a date.\tAmène une copine !\nBring him in.\tFais-le entrer.\nCan I go now?\tPuis-je m'en aller maintenant ?\nCan I go now?\tPuis-je partir maintenant ?\nCan I go now?\tEst-ce que je pourrais y aller maintenant ?\nCan I try it?\tJe peux essayer ?\nCan he do it?\tPeut-il le faire ?\nCan he do it?\tEst-il en mesure de le faire ?\nCan we leave?\tPouvons-nous partir ?\nCan we leave?\tPeut-on s'en aller ?\nCan we start?\tPouvons-nous commencer ?\nCan you come?\tPeux-tu venir ?\nCan you come?\tPouvez-vous venir ?\nCan you stay?\tPouvez-vous rester ?\nCan you swim?\tSais-tu nager ?\nCan you swim?\tEst-ce que tu sais nager ?\nCan you swim?\tEst-ce que vous savez nager ?\nCan you swim?\tSavez-vous nager ?\nCan you swim?\tSais-tu nager ?\nCan you walk?\tPeux-tu marcher ?\nCan you walk?\tPouvez-vous marcher ?\nCheck it out!\tVérifiez !\nCheck it out!\tVérifie !\nCome at once.\tViens ici immédiatement.\nCome back in.\tReviens à l'intérieur.\nCome help me.\tViens m'aider.\nCome help me.\tViens me donner un coup de main.\nCome join us.\tViens nous rejoindre !\nCome join us.\tViens te joindre à nous !\nCome join us.\tVenez vous joindre à nous !\nCome join us.\tVenez nous rejoindre !\nCome quickly!\tViens vite !\nCome quickly!\tVenez vite !\nCome quickly!\tDépêche-toi de venir !\nCome quickly!\tDépêchez-vous de venir !\nCome quickly.\tViens vite.\nCome quickly.\tVenez vite.\nCome up here.\tApproche.\nCome up here.\tApprochez.\nCome with me.\tVenez avec moi.\nCome with me.\tViens avec moi.\nCome with me.\tJoignez-vous à nous.\nCome with us.\tVenez avec nous.\nCool it down.\tBaisse le ton.\nCould we sit?\tPourrions-nous nous asseoir ?\nCover for me.\tRemplace-moi.\nCut that out!\tArrête !\nCut that out!\tArrêtez !\nCut that out!\tArrêtez ça !\nCut that out!\tArrête ça !\nDid Tom call?\tEst-ce que Tom a appelé ?\nDid Tom fall?\tTom est-il tombé ?\nDid Tom stay?\tTom est-il resté ?\nDid Tom swim?\tTom a-t-il nagé ?\nDid you sign?\tAs-tu signé ?\nDid you vote?\tAs-tu voté ?\nDid you vote?\tAvez-vous voté ?\nDo I look OK?\tAi-je l'air bien ?\nDo you agree?\tEs-tu d'accord ?\nDo you agree?\tEs-tu d’accord ?\nDo you agree?\tTu es d'accord ?\nDo you drink?\tBuvez-vous ?\nDo you drink?\tBois-tu ?\nDo you smoke?\tFumez-vous ?\nDo you smoke?\tFumes-tu ?\nDo you smoke?\tTu fumes ?\nDo you smoke?\tEst-ce que tu fumes ?\nDo you smoke?\tEst-ce que vous fumez ?\nDo your best!\tFais de ton mieux !\nDo your best.\tFaites de votre mieux.\nDoes it hurt?\tCela fait-il mal ?\nDoes it hurt?\tEst-ce que ça fait mal ?\nDoes it work?\tEst-ce que ça marche ?\nDoes it work?\tEst-ce que ça fonctionne ?\nDon't ask me.\tCe n'est pas à moi qu'il faut le demander.\nDon't be sad.\tNe sois pas malheureux.\nDon't be sad.\tNe sois pas vexé.\nDon't be shy.\tNe sois pas timide.\nDon't bother.\tNe dérange pas.\nDon't bother.\tNe dérangez pas.\nDon't forget.\tNe l'oubliez pas !\nDon't get up.\tNe vous levez pas.\nDon't kid me!\tNe me fais pas marcher !\nDon't kid me!\tNe me faites pas marcher !\nDon't kid me!\tNe me charrie pas !\nDon't kid me!\tNe me charriez pas !\nDon't litter!\tNe pas déverser d'immondices !\nDon't ramble.\tNe radote pas.\nDon't ramble.\tNe radotez pas.\nDon't resist.\tNe résiste pas !\nDrive safely.\tConduis prudemment !\nDrive safely.\tConduisez prudemment.\nDrop the gun.\tLâche l'arme !\nDrop the gun.\tLâchez l'arme !\nEasy does it.\tOn se calme !\nEasy does it.\tOn n'est pas aux pièces !\nFind the cat.\tTrouvez le chat.\nFind the cat.\tTrouve le chat.\nFish, please.\tDu poisson s'il vous plaît.\nGet a doctor.\tVa chercher un médecin !\nGet a doctor.\tAllez chercher un médecin !\nGet my rifle.\tAttrape mon fusil !\nGet my rifle.\tAttrapez mon fusil !\nGet my rifle.\tAttrape ma carabine !\nGet my rifle.\tAttrapez ma carabine !\nGhosts exist.\tLes fantômes existent.\nGo to school.\tVa à l'école.\nGo to school.\tAllez à l'école !\nGood for you.\tC'est bien pour toi.\nGood for you.\tC'est bien pour vous.\nGrab my hand.\tSaisis-moi la main !\nGrab my hand.\tSaisissez-moi la main !\nHand it over.\tRemets-le.\nHand it over.\tRemettez-le.\nHave a donut.\tPrends un beignet.\nHave a donut.\tPrenez un beignet.\nHave a drink.\tPrends un verre !\nHave a drink.\tPrenez un verre !\nHave a drink.\tPrends une boisson !\nHave a drink.\tPrenez une boisson !\nHave a taste.\tGoûte !\nHave a taste.\tGoûtez !\nHave another.\tPrends-en un autre.\nHe avoids me.\tIl m'évite.\nHe could die.\tIl se pourrait qu'il meure.\nHe denied it.\tIl l'a nié.\nHe denied it.\tIl le nia.\nHe denied it.\tIl l'a refusé.\nHe denied it.\tIl le refusa.\nHe dozed off.\tIl s'est endormi.\nHe dumped me.\tIl m'a plaquée.\nHe dumped me.\tIl m'a laissée tomber.\nHe got angry.\tIl s'est fâché.\nHe got angry.\tIl s'est mis en colère.\nHe had a dog.\tIl avait un chien.\nHe has a car.\tIl dispose d'un véhicule.\nHe has money.\tIl dispose d'argent.\nHe helps her.\tIl l'aide.\nHe is a poet.\tC'est un poète.\nHe is a poet.\tIl est poète.\nHe is asleep.\tIl est endormi.\nHe is cranky.\tIl est excentrique.\nHe is eating.\tIl est en train de manger.\nHe is heroic.\tIl est héroïque.\nHe is not in.\tIl n'est pas chez lui.\nHe is not in.\tIl n'est pas à l'intérieur.\nHe kicked it.\tIl y donna un coup de pied.\nHe let me go.\tIl m'a laissé m'en aller.\nHe let me go.\tIl m'a laissée m'en aller.\nHe let me go.\tIl m'a laissé partir.\nHe let me go.\tIl m'a laissée partir.\nHe let me go.\tIl me laissa partir.\nHe let me go.\tIl me laissa m'en aller.\nHe let us go.\tIl nous laissa partir.\nHe let us go.\tIl nous laissa nous en aller.\nHe let us go.\tIl nous a laissés nous en aller.\nHe let us go.\tIl nous a laissées nous en aller.\nHe let us go.\tIl nous a laissées partir.\nHe let us go.\tIl nous a laissés partir.\nHe likes tea.\tIl aime le thé.\nHe lost face.\tIl a perdu la face.\nHe loves her.\tIl l'aime.\nHe mocked me.\tIl s'est moqué de moi.\nHe needs you.\tIl a besoin de toi.\nHe needs you.\tIl a besoin de vous.\nHe shall die.\tIl doit mourir.\nHe wants one.\tIl en veut une.\nHe wants one.\tIl en veut un.\nHe was alone.\tIl était seul.\nHe was brave.\tIl était brave.\nHe was brave.\tIl était courageux.\nHe was great.\tIl a été super.\nHe was lucky.\tIl a eu de la chance.\nHe was naive.\tIl était crédule.\nHe was naive.\tIl était naïf.\nHe was wrong.\tIl eut tort.\nHe was wrong.\tIl avait tort.\nHe was wrong.\tIl a eu tort.\nHe will come.\tIl devrait arriver.\nHe will come.\tIl viendra.\nHe will wait.\tIl attendra.\nHe's English.\tIl est Anglais.\nHe's a bigot.\tC'est un bigot.\nHe's a bigot.\tC'est un sectaire.\nHe's a bigot.\tC'est un fanatique.\nHe's a bigot.\tC'est un illuminé.\nHe's in pain.\tIl souffre.\nHe's married.\tIl est marié.\nHe's my hero.\tC'est mon héros.\nHe's out now.\tIl est actuellement à l'extérieur.\nHe's so cute.\tIl est si mignon !\nHe's so cute.\tIl est tellement mignon !\nHello, girls.\tSalut les filles !\nHey, wait up!\tHé, un moment !\nHow annoying!\tC'est bien embêtant !\nHow did I do?\tComment ai-je fait ?\nHow horrible!\tQuelle horreur !\nHow romantic!\tComme c'est romantique !\nI admire you.\tJe t'admire.\nI admire you.\tJe vous admire.\nI always win.\tJe gagne toujours.\nI am Italian.\tJe suis italien.\nI am ashamed.\tJ'ai honte.\nI am at home.\tJe suis à la maison.\nI am curious.\tJe suis curieux.\nI am married.\tJe suis mariée.\nI am so sick.\tJe suis tellement malade.\nI am so sick.\tJe suis si malade.\nI am so sick.\tC'est moi qui suis tellement malade.\nI am so sick.\tC'est moi qui suis si malade.\nI am thirsty.\tJ'ai soif.\nI am working.\tJe suis en train de travailler.\nI apologized.\tJ'ai présenté mes excuses.\nI ate apples.\tJ'ai mangé des pommes.\nI ate caviar.\tJ'ai mangé du caviar.\nI believe it.\tJ'y crois.\nI believe it.\tJe le crois.\nI called him.\tJe l'ai appelé.\nI called you.\tJe vous ai appelés.\nI called you.\tJe vous ai appelées.\nI called you.\tJe vous ai appelée.\nI called you.\tJe vous ai appelé.\nI called you.\tJe t'ai appelé.\nI called you.\tJe t'ai appelée.\nI can fix it.\tJe peux le réparer.\nI can fix it.\tJe peux la réparer.\nI can manage.\tJe peux me débrouiller.\nI can't help.\tJe n'y peux rien.\nI can't move.\tJe ne peux pas bouger.\nI can't sing.\tJe suis incapable de chanter.\nI can't sing.\tJe ne sais pas chanter.\nI can't swim.\tJe ne sais pas nager.\nI can't wait.\tJe suis impatient.\nI can't wait.\tJe suis impatiente.\nI caught Tom.\tJ'ai attrapé Tom.\nI could help.\tJe pourrais aider.\nI could help.\tJe pouvais aider.\nI could walk.\tJe pouvais marcher.\nI could walk.\tJe pourrais marcher.\nI cried, too.\tJ'ai également pleuré.\nI cut myself.\tJe me suis coupé.\nI cut myself.\tJe me suis coupée.\nI cut myself.\tJe me coupai.\nI deserve it.\tJe le mérite.\nI did my job.\tJ'ai fait mon travail.\nI did my job.\tJe fis mon travail.\nI did my job.\tJ'ai effectué mon boulot.\nI did see it.\tJe l'ai vu, en effet.\nI didn't ask.\tJe n'ai pas demandé.\nI didn't cry.\tJe n'ai pas pleuré.\nI didn't pay.\tJe n'ai pas payé.\nI didn't win.\tJe n'ai pas gagné.\nI didn't win.\tJe ne l'ai pas emporté.\nI don't bite.\tJe ne mords pas.\nI don't care.\tÇa m'est égal.\nI don't care.\tJe m'en fous.\nI don't date.\tJe ne sors pas avec des filles.\nI don't date.\tJe ne sors pas avec des garçons.\nI don't date.\tJe ne sors pas avec une fille.\nI don't date.\tJe ne sors pas avec un garçon.\nI don't date.\tJe ne courtise pas.\nI don't know.\tJe l'ignore.\nI don't mind.\tÇa m'est égal.\nI don't mind.\tCela m'est égal.\nI doubt that.\tJ'en doute.\nI drank milk.\tJe buvais du lait.\nI drink beer.\tJe bois de la bière.\nI enjoyed it.\tJ'y ai pris plaisir.\nI feel alive.\tJe me sens vivant.\nI feel awful.\tJe me sens affreusement mal.\nI feel dizzy.\tJe me sens drôle.\nI feel faint.\tJe sens que je vais m'évanouir.\nI feel faint.\tJe me sens mal.\nI feel faint.\tJe me sens faible.\nI feel faint.\tJe me sens pris de malaise.\nI feel faint.\tJe me sens prise de malaise.\nI feel funny.\tJe me sens drôle.\nI feel funny.\tJe me sens bizarre.\nI feel giddy.\tJ'ai la tête qui tourne.\nI feel giddy.\tJ'ai la tête qui me tourne.\nI feel giddy.\tJe suis pris de vertiges.\nI feel giddy.\tJe suis prise de vertiges.\nI feel happy.\tJe me sens heureux.\nI feel lucky.\tJe me sens en veine.\nI feel ready.\tJe me sens prêt.\nI feel ready.\tJe me sens prête.\nI feel silly.\tJe me sens stupide.\nI feel young.\tJe me sens jeune.\nI felt awful.\tJe me sentis affreusement mal.\nI felt awful.\tJe me suis sentie affreusement mal.\nI felt awful.\tJe me suis senti affreusement mal.\nI felt great.\tJe me suis très bien senti.\nI felt great.\tJe me suis très bien sentie.\nI felt happy.\tJe me suis senti heureux.\nI felt happy.\tJe me suis sentie heureuse.\nI felt naked.\tJe me sentis nu.\nI felt naked.\tJe me suis senti nu.\nI felt naked.\tJe me sentis nue.\nI felt naked.\tJe me suis senti nue.\nI felt safer.\tJe me sentais davantage en sécurité.\nI go jogging.\tJe vais courir.\nI go to work.\tJe vais travailler.\nI go to work.\tJe me rends au travail.\nI go to work.\tJe vais au travail.\nI got carded.\tOn m'a demandé ma carte d'identité pour vérifier mon âge.\nI got caught.\tJe me suis fait prendre.\nI got caught.\tOn m'a attrapé.\nI got caught.\tOn m'a attrapée.\nI got dumped.\tOn m'a largué.\nI got dumped.\tOn m'a larguée.\nI got dumped.\tJ'ai été largué.\nI got dumped.\tJ'ai été larguée.\nI got sleepy.\tJ'ai commencé à avoir sommeil.\nI got soaked.\tJe me suis fait tremper.\nI had doubts.\tJ'avais des doutes.\nI handled it.\tJe m'en suis occupé.\nI handled it.\tJ'ai su y faire.\nI handled it.\tJe m'en suis sorti.\nI handled it.\tJe m'en suis sortie.\nI handled it.\tJ'ai géré.\nI hate beans.\tJe déteste les haricots.\nI hate flies.\tJe déteste les mouches.\nI hate liars.\tJe déteste les menteurs.\nI have a car.\tJ'ai une voiture.\nI have a car.\tJe dispose d'une voiture.\nI have a cat.\tJ'ai un chat.\nI have a cat.\tJ'ai une chatte.\nI have a dog.\tJ'ai un chien.\nI have a pen.\tJ’ai un stylo.\nI have hives.\tJ'ai de l'urticaire.\nI have needs.\tJ'ai des besoins.\nI have plans.\tJ'ai des plans.\nI have proof.\tJ'ai une preuve.\nI have proof.\tJe dispose d'une preuve.\nI have to go.\tJe dois y aller.\nI have to go.\tIl me faut y aller.\nI have to go.\tIl me faut partir.\nI have to go.\tIl me faut m'en aller.\nI have to go.\tJe dois partir.\nI have to go.\tJe dois m'en aller.\nI hear music.\tJ'entends de la musique.\nI heard that.\tJ'ai entendu ça.\nI helped out.\tJ'ai donné un coup de main.\nI honor that.\tJ'honore cela.\nI hugged her.\tJe l'étreignis.\nI improvised.\tJ'ai improvisé.\nI just moved.\tJe viens juste de déménager.\nI just moved.\tJe viens juste de bouger.\nI just moved.\tJe viens d'être muté.\nI keep a dog.\tJ'élève un chien.\nI kissed Tom.\tJ'ai embrassé Tom.\nI like China.\tJ'aime la Chine.\nI like R & B.\tJ'aime le R&B.\nI like bread.\tJ'aime le pain.\nI like chess.\tJ'apprécie les échecs.\nI like fruit.\tJ'aime les fruits.\nI like girls.\tJ'aime les filles.\nI like honey.\tJ'aime le miel.\nI like music.\tJ'aime la musique.\nI like opera.\tJ'apprécie l'opéra.\nI like sushi.\tJ'aime les sushis.\nI like these.\tJ'aime ceux-ci.\nI like these.\tJ'aime celles-ci.\nI like women.\tJ'apprécie les femmes.\nI like women.\tJ'aime les femmes.\nI love books.\tJ'adore les livres.\nI love bread.\tJ'adore le pain.\nI love games.\tJ'adore les jeux.\nI love jokes.\tJ'adore les blagues.\nI love jokes.\tJ'adore les plaisanteries.\nI love music.\tJ'adore la musique.\nI love music.\tJ'aime beaucoup la musique.\nI love trips.\tJ'aime les voyages.\nI loved that.\tJ'adorais ça.\nI loved that.\tJ'ai adoré ça.\nI made a bet.\tJ'ai effectué un pari.\nI made plans.\tJ'ai élaboré des plans.\nI made plans.\tJ'ai fait des projets.\nI made these.\tJ'ai fait ceux-ci.\nI made these.\tJ'ai fait celles-ci.\nI made these.\tJ'ai confectionné ceux-ci.\nI might stay.\tIl se pourrait que je reste.\nI missed you.\tTu m'as manqué.\nI must hurry.\tJe dois me grouiller.\nI must hurry.\tJe dois me dépêcher.\nI must hurry.\tJe dois me hâter.\nI must leave.\tIl me faut partir.\nI must leave.\tJe dois partir.\nI must study.\tJe dois étudier.\nI need a car.\tJ'ai besoin d'une voiture.\nI need a hug.\tJ'ai besoin d'un câlin.\nI need a job.\tIl me faut un travail.\nI need a job.\tJ'ai besoin d'un emploi.\nI need a job.\tJ'ai besoin d'un boulot.\nI need a map.\tIl me faut une carte.\nI need a pen.\tJ'ai besoin d'un stylo.\nI need money.\tJ'ai besoin d'argent.\nI need paint.\tJ'ai besoin de peinture.\nI need paint.\tIl me faut de la peinture.\nI need proof.\tJ'ai besoin de preuves.\nI need proof.\tIl me faut des preuves.\nI need sleep.\tJ'ai besoin de sommeil.\nI need space.\tJ'ai besoin d'espace.\nI need sugar.\tJ'ai besoin de sucre.\nI need to go.\tJe dois y aller.\nI need to go.\tJe dois partir.\nI need to go.\tJe dois m'en aller.\nI need water.\tIl me faut de l'eau.\nI need water.\tJ'ai besoin d'eau.\nI never lose.\tJe ne perds jamais.\nI often read.\tJe lis souvent.\nI play piano.\tJe joue du piano.\nI read books.\tJe lis des livres.\nI rewrote it.\tJe l'ai réécrit.\nI rewrote it.\tJe le réécrivis.\nI said maybe.\tJ'ai dit peut-être.\nI see a book.\tJe vois un livre.\nI see a lion.\tJe vois un lion.\nI see a rose.\tJe vois une rose.\nI sell shoes.\tJe vends des chaussures.\nI started it.\tJe l'ai démarré.\nI started it.\tJe l'ai démarrée.\nI started it.\tJe l'ai initié.\nI started it.\tJe l'ai initiée.\nI still care.\tJe m'en soucie encore.\nI suppose so.\tJe le suppose.\nI sympathize.\tJe compatis.\nI teach here.\tJ'enseigne ici.\nI thought so.\tJe m'en suis douté.\nI took risks.\tJ'ai pris des risques.\nI tried hard.\tJ'ai essayé de toutes mes forces.\nI tried that.\tJ'ai essayé ça.\nI understand.\tJe comprends.\nI understood.\tJ'ai compris.\nI want a lot.\tJ'en veux plein.\nI want a lot.\tJ'en veux beaucoup.\nI want facts.\tIl me faut des faits.\nI want proof.\tJe veux une preuve.\nI want these.\tJe veux ceux-là.\nI want these.\tJe veux celles-là.\nI want to go.\tJe veux partir.\nI want to go.\tJe veux m'en aller.\nI want to go.\tJe veux y aller.\nI was asleep.\tJ'étais endormi.\nI was asleep.\tJ'étais endormie.\nI was beaten.\tJ'ai été frappé.\nI was beaten.\tJ'ai été frappée.\nI was burned.\tJ'ai été brûlé.\nI was burned.\tJ'ai été brûlée.\nI was canned.\tOn m'a saqué.\nI was framed.\tOn m'a tendu un piège.\nI was lonely.\tJ'étais esseulé.\nI was lonely.\tJ'étais esseulée.\nI was shaken.\tJ'ai été remué.\nI was shaken.\tJ'ai été remuée.\nI was shaken.\tJ'ai été secoué.\nI was shaken.\tJ'ai été secouée.\nI was sleepy.\tJ'avais envie de dormir.\nI was stupid.\tJ'étais stupide.\nI was warned.\tJ'ai été prévenu.\nI was warned.\tJ'ai été prévenue.\nI was warned.\tOn m'a prévenu.\nI was warned.\tOn m'a prévenue.\nI went twice.\tJ'y suis allé deux fois.\nI went twice.\tJe m'y suis rendu à deux reprises.\nI went twice.\tJe m'y suis rendue à deux reprises.\nI went twice.\tJ'y suis allée deux fois.\nI will fight.\tJe me battrai.\nI will learn.\tJ'apprendrai.\nI will shoot.\tJe tirerai.\nI won't come.\tJe ne viendrai pas.\nI wonder who.\tJe me demande qui.\nI wonder why.\tJe me demande pourquoi.\nI work alone.\tJe travaille seul.\nI work alone.\tJe travaille seule.\nI wrote that.\tC'est moi qui ai écrit ça.\nI wrote that.\tJ'ai écrit ça.\nI'd buy that.\tJe l'achèterais.\nI'd buy that.\tJe le goberais.\nI'll ask him.\tJe lui demanderai.\nI'll be back.\tJe reviens.\nI'll be back.\tJe reviendrai.\nI'll be fine.\tÇa va aller.\nI'll be free.\tJe serai libre.\nI'll be late.\tJe serai en retard.\nI'll be nice.\tJe serai gentil.\nI'll be nice.\tJe serai gentille.\nI'll explain.\tJ'expliquerai.\nI'll get ice.\tJ'irai chercher de la glace.\nI'll get you.\tJ'irai te chercher.\nI'll get you.\tJ'irai vous chercher.\nI'll get you.\tJ'irai te prendre.\nI'll get you.\tJ'irai vous prendre.\nI'll go back.\tJe reviendrai.\nI'll go home.\tJ'irai chez moi.\nI'll go look.\tJ'irai voir.\nI'll go next.\tJ'irai ensuite.\nI'll grab it.\tJe mettrai la main dessus.\nI'll grab it.\tJe le saisirai.\nI'll grab it.\tJe l'attraperai.\nI'll jump in.\tJe m'y joindrai.\nI'll just go.\tJe vais juste y aller.\nI'll kill it.\tJe le tuerai.\nI'll open it.\tJe l'ouvrirai.\nI'll pay you.\tJe te paierai.\nI'll pay you.\tJe vous paierai.\nI'll read it.\tJe le lirai.\nI'll risk it.\tJe tenterai le coup.\nI'll sign it.\tJe le signerai.\nI'll sue you.\tJe te poursuivrai en justice.\nI'll sue you.\tJe te ferai un procès.\nI'll sue you.\tJe vous poursuivrai en justice.\nI'll sue you.\tJe vous ferai un procès.\nI'll take it.\tJe le prends.\nI'm a coward.\tJe suis un couard.\nI'm a coward.\tJe suis un lâche.\nI'm a doctor.\tJe suis médecin.\nI'm a doctor.\tJe suis toubib.\nI'm a farmer.\tJe suis fermier.\nI'm a farmer.\tJe suis agriculteur.\nI'm a farmer.\tJe travaille dans ma ferme.\nI'm a farmer.\tJe suis un agriculteur.\nI'm a purist.\tJe suis un puriste.\nI'm addicted.\tJe suis drogué.\nI'm addicted.\tJe suis accro.\nI'm addicted.\tJ'ai une assuétude.\nI'm all done.\tJ'ai tout fini.\nI'm all done.\tJ'ai tout terminé.\nI'm all ears.\tJe suis tout ouïe.\nI'm an adult.\tJe suis adulte.\nI'm an agent.\tJe suis un agent.\nI'm bleeding.\tJe suis en train de saigner.\nI'm confused.\tJe me mélange les pinceaux.\nI'm creative.\tJe suis créatif.\nI'm creative.\tJe suis créative.\nI'm cultured.\tJe suis cultivé.\nI'm cultured.\tJe suis cultivée.\nI'm divorced.\tJe suis divorcé.\nI'm divorced.\tJe suis divorcée.\nI'm drowning.\tJe suis en train de me noyer.\nI'm eighteen.\tJ'ai dix-huit ans.\nI'm faithful.\tJe suis fidèle.\nI'm famished.\tJe suis affamé !\nI'm fearless.\tJe suis intrépide.\nI'm fighting.\tJe me bats.\nI'm finished.\tJ'ai terminé.\nI'm finished.\tJ'en ai terminé.\nI'm free now.\tJe suis libre maintenant.\nI'm freezing.\tJe suis gelé.\nI'm grounded.\tJe suis cloué.\nI'm grounded.\tJe suis clouée.\nI'm gullible.\tJe suis crédule.\nI'm homesick.\tJ'ai le mal du pays.\nI'm hungover.\tJ'ai la gueule de bois.\nI'm in Paris.\tJe suis à Paris.\nI'm innocent.\tJe suis innocent.\nI'm innocent.\tJe suis innocente.\nI'm innocent.\tJe suis ingénu.\nI'm innocent.\tJe suis ingénue.\nI'm involved.\tJe suis impliqué.\nI'm involved.\tJe suis impliquée.\nI'm managing.\tJe m'en sors.\nI'm new here.\tJe suis nouveau, ici.\nI'm no rebel.\tJe ne suis pas un rebelle.\nI'm no saint.\tJe ne suis pas un saint.\nI'm no saint.\tJe ne suis pas une sainte.\nI'm not busy.\tJe ne suis pas occupé.\nI'm not deaf.\tJe ne suis pas sourd.\nI'm not deaf.\tJe ne suis pas sourde.\nI'm not done.\tJe n'ai pas fini.\nI'm not done.\tJe n'ai pas terminé.\nI'm not done.\tJe n'en ai pas terminé.\nI'm not dumb.\tJe ne suis pas abruti.\nI'm not dumb.\tJe ne suis pas abrutie.\nI'm not evil.\tJe ne suis pas mauvais.\nI'm not here.\tJe ne suis pas ici.\nI'm not here.\tJe ne suis pas là.\nI'm not home.\tJe ne suis pas chez moi.\nI'm not home.\tJe ne suis pas à la maison.\nI'm not hurt.\tJe ne suis pas blessé.\nI'm not hurt.\tJe ne suis pas blessée.\nI'm not mean.\tJe ne suis pas méchant.\nI'm not mean.\tJe ne suis pas méchante.\nI'm not rich.\tJe ne suis pas riche.\nI'm not sure.\tJe n'en suis pas certain.\nI'm not sure.\tJe n'en suis pas certaine.\nI'm not tall.\tJe ne suis pas grand.\nI'm not tall.\tJe ne suis pas grande.\nI'm not ugly.\tJe ne suis pas laid.\nI'm not ugly.\tJe ne suis pas laide.\nI'm not well.\tJe ne vais pas bien.\nI'm off-duty.\tJe ne suis pas en service.\nI'm offended.\tJe suis offensé.\nI'm offended.\tJe suis offensée.\nI'm outraged.\tJe suis indigné.\nI'm outraged.\tJe suis indignée.\nI'm powerful.\tJe suis puissant.\nI'm powerful.\tJe suis puissante.\nI'm prepared.\tJe suis prêt.\nI'm prepared.\tJe suis préparée.\nI'm prepared.\tJe suis préparé.\nI'm punctual.\tJe suis ponctuel.\nI'm punctual.\tJe suis ponctuelle.\nI'm rational.\tJe suis rationnel.\nI'm rational.\tJe suis rationnelle.\nI'm reformed.\tJe me suis amendé.\nI'm reformed.\tJe me suis amendée.\nI'm reliable.\tJe suis fiable.\nI'm restless.\tJe ne tiens pas en place.\nI'm ruthless.\tJe suis impitoyable.\nI'm shooting.\tJe tire.\nI'm sleeping.\tJe suis en train de dormir.\nI'm so sorry.\tJe suis tellement désolé !\nI'm so sorry.\tJe suis tellement désolée !\nI'm so tired!\tJe suis si fatigué !\nI'm so tired!\tJe suis tellement las !\nI'm speaking.\tJe suis en train de parler.\nI'm starving!\tJe meurs de faim !\nI'm starving.\tJe crève de faim !\nI'm starving.\tJ'ai la fringale.\nI'm stubborn.\tJe suis têtu.\nI'm stubborn.\tJe suis têtue.\nI'm stubborn.\tJe suis obstiné.\nI'm stubborn.\tJe suis obstinée.\nI'm the boss.\tC'est moi le patron.\nI'm the boss.\tC'est moi la patronne.\nI'm the boss.\tJe suis le patron.\nI'm the boss.\tJe suis la patronne.\nI'm thinking.\tJe réfléchis.\nI'm thorough.\tJe suis minutieux.\nI'm thorough.\tJe suis minutieuse.\nI'm thorough.\tJe suis consciencieux.\nI'm thorough.\tJe suis consciencieuse.\nI'm thrilled.\tJe suis ravi.\nI'm thrilled.\tJe suis ravie.\nI'm ticklish.\tJe suis chatouilleux.\nI'm ticklish.\tJe suis chatouilleuse.\nI'm too busy.\tJe suis trop occupé.\nI'm too busy.\tJe suis trop occupée.\nI'm too busy.\tJe suis trop affairé.\nI'm too busy.\tJe suis trop affairée.\nI'm truthful.\tJe dis la vérité.\nI'm unbiased.\tJe suis impartial.\nI'm unbiased.\tJe suis impartiale.\nI'm upstairs.\tJe suis au-dessus.\nI'm very fat.\tJe suis très gros.\nI'm very fat.\tJe suis très gras.\nI'm very sad.\tJe suis très triste.\nI'm very shy.\tJe suis très timide.\nI'm worn out.\tJe suis épuisé.\nI've checked.\tJ'ai vérifié.\nI've decided.\tJ'ai décidé.\nI've done it.\tJe l'ai fait.\nI've got you.\tJe t'ai eu.\nI've got you.\tJe t'ai eue.\nI've got you.\tJe vous ai eu.\nI've got you.\tJe vous ai eue.\nI've got you.\tJe vous ai eus.\nI've got you.\tJe vous ai eues.\nI've lost it.\tJe l’ai perdu.\nI've no idea.\tJe n'ai aucune idée.\nI've no idea.\tJe n'en ai aucune idée.\nI've retired.\tJ'ai pris ma retraite.\nI've seen it.\tJe l'ai vu.\nIron is hard.\tLe fer est dur.\nIs Tom alive?\tEst-ce que Tom est vivant ?\nIs Tom drunk?\tTom est-il saoul ?\nIs Tom drunk?\tTom est-il ivre ?\nIs Tom there?\tEst-ce que Tom est là ?\nIs Tom there?\tEst ce que Tom est ici ?\nIs it a deal?\tEst-ce une bonne affaire ?\nIs it a deer?\tEst-ce un cerf ?\nIs it a deer?\tS'agit-il d'un cerf ?\nIs it a joke?\tEst-ce une blague ?\nIs it a joke?\tS'agit-il d'une blague ?\nIs it a wolf?\tEst-ce un loup ?\nIs it a wolf?\tEst-ce une louve ?\nIs it an elk?\tEst-ce un élan ?\nIs it broken?\tEst-ce cassé ?\nIs it broken?\tEst-ce brisé ?\nIs it cancer?\tS'agit-il d'un cancer ?\nIs it cloudy?\tEst-ce nuageux ?\nIs it enough?\tEst-ce assez ?\nIs it nearby?\tEst-ce proche ?\nIs it nearby?\tEst-ce dans les environs ?\nIs that a no?\tEst-ce un non ?\nIs that love?\tC'est ça l'amour ?\nIs that love?\tEst-ce de l'amour ?\nIs that true?\tC'est vrai ?\nIs this fake?\tEst-ce une imitation ?\nIs this fake?\tEst-ce une simulation ?\nIs this fake?\tEst-ce du chiqué ?\nIs this fake?\tC'est du chiqué ?\nIs this fake?\tEst-ce un pastiche ?\nIs this love?\tC'est ça l'amour ?\nIs this love?\tEst-ce de l'amour ?\nIs this love?\tEst-ce de l'amour ?\nIs this love?\tEst-ce l'amour ?\nIs this love?\tSerait-ce de l'amour ?\nIs this wine?\tS'agit-il de vin ?\nIs this wine?\tEst-ce du vin ?\nIt amazed me.\tÇa m'a épaté.\nIt felt good.\tÇa faisait du bien.\nIt has begun.\tÇa a commencé.\nIt is a book.\tC'est un livre.\nIt is a book.\tCeci est un livre.\nIt is a song.\tC'est une chanson.\nIt is my cat.\tC'est mon chat.\nIt is unfair.\tC'est injuste.\nIt isn't new.\tCe n'est pas nouveau.\nIt scared me.\tÇa m'a fait peur.\nIt took time.\tÇa a pris du temps.\nIt was black.\tC'était noir.\nIt was night.\tIl faisait nuit.\nIt was night.\tC'était la nuit.\nIt was noisy.\tC'était bruyant.\nIt was white.\tC'était blanc.\nIt wasn't me.\tCe n'était pas moi.\nIt will burn.\tÇa va brûler.\nIt will heal.\tCela guérira.\nIt'll happen.\tÇa arrivera.\nIt'll happen.\tÇa surviendra.\nIt'll happen.\tÇa aura lieu.\nIt's a curse.\tC'est une malédiction.\nIt's a shame.\tC'est dommage.\nIt's all wet.\tTout est mouillé.\nIt's awesome.\tC'est génial.\nIt's awesome.\tC'est super.\nIt's awesome.\tC'est effarant.\nIt's bedtime.\tIl est temps de dormir.\nIt's bedtime.\tC'est l'heure de se coucher.\nIt's complex.\tC'est compliqué.\nIt's complex.\tC'est complexe.\nIt's for you.\tC'est pour toi.\nIt's for you.\tC'est pour vous.\nIt's garbage.\tCe sont des conneries.\nIt's garbage.\tC'est de la daube.\nIt's garbage.\tCe sont des détritus.\nIt's hideous.\tC'est hideux.\nIt's missing.\tC'est manquant.\nIt's missing.\tÇa fait défaut.\nIt's morning.\tOn est le matin.\nIt's my book.\tC'est mon livre.\nIt's my turn.\tC'est mon tour.\nIt's no good.\tCe n'est pas bon.\nIt's no joke.\tCe n'est pas une blague.\nIt's not new.\tCe n'est pas nouveau.\nIt's nothing.\tCe n'est rien.\nIt's obvious.\tC'est évident.\nIt's obvious.\tC'est patent.\nIt's obvious.\tCela coule de source.\nIt's on fire.\tC'est en feu.\nIt's on fire.\tC'est déchaîné.\nIt's our car.\tC'est notre voiture.\nIt's perfect.\tC'est parfait.\nIt's serious.\tC'est sérieux.\nIt's snowing.\tIl neige.\nIt's started.\tC'est commencé.\nIt's suicide.\tC'est du suicide.\nIt's the law.\tC'est la loi.\nIt's too big.\tC'est trop grand.\nIt's too big.\tC'est trop gros.\nIt's too hot.\tIl fait trop chaud.\nJust say yes.\tDis juste oui !\nJust say yes.\tDites juste oui !\nKeep driving.\tAvance !\nKeep driving.\tContinue à rouler !\nKeep driving.\tContinuez à rouler !\nKeep driving.\tRoule !\nKeep driving.\tRoulez !\nKeep it warm.\tGarde-le au chaud.\nKeep looking.\tContinue à regarder !\nKeep looking.\tContinuez à regarder !\nKeep reading.\tContinuez à lire !\nKeep reading.\tContinue à lire !\nKeep running.\tContinue à courir.\nKeep running.\tContinuez à courir.\nKeep working.\tContinue à travailler !\nKeep working.\tContinuez à travailler !\nLadies first.\tLes femmes d'abord.\nLead the way.\tMontre le chemin.\nLead the way.\tMontrez le chemin.\nLet go of it.\tOublie ça.\nLet go of me.\tLâche-moi !\nLet go of me.\tLâchez-moi !\nLet her talk.\tLaisse-la parler.\nLet her talk.\tLaissez-la parler.\nLet him talk.\tLaisse-le parler.\nLet him talk.\tLaissez-le parler.\nLet me check.\tLaisse-moi vérifier.\nLet me check.\tLaissez-moi vérifier.\nLet me check.\tLaisse-moi contrôler.\nLet me check.\tLaissez-moi contrôler.\nLet me leave!\tLaisse-moi partir !\nLet me sleep.\tLaisse-moi dormir.\nLet me sleep.\tLaissez-moi dormir.\nLet's all go.\tAllons-y tous !\nLet's all go.\tAllons-y toutes !\nLet's bounce.\tRebondissons !\nLet's go now.\tAllons-y maintenant.\nLet's listen.\tÉcoutons !\nLet's not go.\tN'y allons pas !\nLet's not go.\tNe partons pas !\nLife goes on.\tLa vie continue.\nLife is hard.\tLa vie est dure.\nLook at this.\tRegarde ça !\nLook at this.\tRegardez ça !\nLook closely.\tRegarde attentivement.\nMake a guess.\tDevine !\nMake a guess.\tHasarde une hypothèse !\nMary is cute.\tMarie est mignonne.\nMay I cut in?\tPuis-je vous interrompre ?\nMay I try it?\tEst-ce que je peux l'essayer ?\nMen are pigs.\tLes hommes sont des cochons.\nMen are pigs.\tLes hommes sont des égoïstes.\nMust I go on?\tDois-je continuer ?\nMust I hurry?\tDois-je me dépêcher ?\nMy eyes hurt.\tJ'ai mal aux yeux.\nMy feet hurt.\tMes pieds me font mal.\nMy hip hurts.\tMa hanche me fait mal.\nNeed I go on?\tAi-je besoin de continuer ?\nNo one cared.\tPersonne ne s'en souciait.\nNo one cares.\tTout le monde s'en fout.\nNo one cares.\tTout le monde s'en fiche.\nNo one cares.\tPersonne ne s'en soucie.\nNo one knows.\tPersonne ne sait.\nNo one moved.\tPersonne ne bougea.\nNo one moved.\tPersonne n'a bougé.\nNo one spoke.\tPersonne ne parla.\nNo one spoke.\tPersonne n'a parlé.\nNobody asked.\tPersonne n'a demandé.\nNobody knows.\tPersonne ne sait.\nNow drink up.\tMaintenant, bois d'un coup !\nNow drink up.\tMaintenant, buvez d'un coup !\nNow drink up.\tFinis ton verre, maintenant !\nNow drink up.\tVide ton verre, maintenant !\nNow drink up.\tVidez votre verre, maintenant !\nNow drink up.\tFinissez votre verre, maintenant !\nNow fix that.\tMaintenant, répare ça.\nNow fix that.\tMaintenant, corrigez cela.\nNow leave us.\tMaintenant laissez nous.\nNow leave us.\tMaintenant laisse-nous.\nNow leave us.\tVous pouvez disposer.\nOK. Go ahead.\tD'accord, allez-y.\nOur eyes met.\tNos yeux se sont croisés.\nPlay it cool.\tJoue-la pépère.\nPlease hurry.\tDépêchez-vous s'il vous plaît.\nPlease leave.\tVeuillez vous en aller.\nPlease leave.\tPars, s'il te plaît.\nPlease leave.\tPars, je te prie.\nPlease leave.\tJe te prie de partir.\nPlease leave.\tJe vous prie de partir.\nPlease relax.\tS'il te plaît, calme-toi.\nPlease smile.\tSouris, s'il te plaît !\nPlease smile.\tSouris, je te prie !\nPlease smile.\tSouriez, s'il vous plaît !\nPlease smile.\tSouriez, je vous prie !\nPlease smile.\tVeuillez sourire !\nSee you soon!\tÀ bientôt !\nSee you soon!\tÀ tout à l'heure !\nSet Tom free.\tLibère Tom.\nSet Tom free.\tLibérez Tom.\nShame on you!\tHonte à toi !\nShame on you.\tHonte à toi !\nShe can swim.\tElle sait nager.\nShe helps us.\tElle nous aide.\nShe is a fox.\tC'est un renard.\nShe is lucky.\tElle est chanceuse.\nShe is lucky.\tElle est chançarde.\nShe is quiet.\tElle est tranquille.\nShe is sharp.\tElle est tranchante.\nShe is sharp.\tElle est affûtée.\nShe is wrong.\tElle a tort.\nShe is young.\tElle est jeune.\nShe knows me.\tElle me connaît.\nShe liked it.\tElle l'apprécia.\nShe liked it.\tElle l'a apprécié.\nShe liked it.\tElle a aimé ça.\nShe may come.\tPeut-être viendra-t-elle.\nShe shot him.\tElle lui tira dessus.\nShe shot him.\tElle le descendit.\nShe shrieked.\tElle a crié.\nShe shrieked.\tElle cria.\nShe stood up.\tElle se leva.\nShe sued him.\tElle l'a poursuivi en justice.\nShe sued him.\tElle le poursuivit en justice.\nShe sued him.\tElle lui a fait un procès.\nShe sued him.\tElle lui fit un procès.\nShe was busy.\tElle était occupée.\nShe went out.\tElle est partie.\nShe went out.\tElle sortit.\nShould we go?\tDevrions-nous y aller ?\nSomeone came.\tQuelqu'un est venu.\nStay a while.\tReste un moment !\nStay with me.\tReste avec moi.\nStay with me.\tRestez avec moi.\nStay with us.\tReste avec nous.\nStay with us.\tRestez avec nous.\nStay with us.\tDemeure avec nous.\nStay with us.\tDemeurez avec nous.\nStop arguing.\tArrête de te disputer !\nStop arguing.\tArrête de te quereller !\nStop arguing.\tArrêtez de vous quereller !\nStop arguing.\tArrêtez de vous disputer !\nStop filming.\tArrête de filmer.\nStop gawking.\tArrête de bayer aux corneilles.\nStop reading.\tArrêtez de lire.\nStop reading.\tArrête de lire.\nStop smoking.\tArrête de fumer.\nStop staring.\tArrête de me fixer !\nStop staring.\tArrêtez de me fixer !\nStop talking.\tArrête de parler.\nStop the car.\tArrête la voiture !\nStop the car.\tArrêtez la voiture !\nStop yelling!\tArrête de hurler !\nStop yelling!\tArrêtez de hurler !\nStop yelling!\tCesse de hurler !\nStop yelling!\tCessez de hurler !\nStop yelling.\tArrête de hurler.\nStop yelling.\tArrêtez de hurler.\nSweet dreams!\tFais de beaux rêves !\nSweet dreams!\tFaites de beaux rêves !\nTake a break.\tFais une pause !\nTake a break.\tFaites une pause !\nTake a break.\tFais une pause.\nTake a whiff.\tPrends une bouffée.\nTake it easy!\tDétendez-vous !\nTake it easy!\tRelaxe, Max !\nTake it easy!\tCool, Raoul !\nTake it easy!\tRelaxe !\nTake it easy.\tReste cool.\nTake me home.\tAmène-moi à la maison.\nTell me more.\tDis-m'en davantage.\nTell me more.\tConte-m'en davantage !\nThanks a lot.\tMerci bien.\nThanks a lot.\tMille mercis.\nThat is mine.\tC'est le mien.\nThat is mine.\tC'est la mienne.\nThat is mine.\tC'est à moi.\nThat will do.\tÇa fera l'affaire.\nThat's a lie.\tIl s'agit d'un mensonge.\nThat's a lot!\tC'est beaucoup !\nThat's clear.\tC'est clair.\nThat's crazy.\tC'est fou.\nThat's crazy.\tC'est dingue.\nThat's funny.\tC'est amusant.\nThat's funny.\tC'est drôle.\nThat's great!\tC'est grand !\nThat's great!\tSuper !\nThat's right!\tC'est vrai !\nThat's right!\tC'est juste !\nThat's right.\tC'est exact.\nThat's right.\tC'est juste.\nThat's weird.\tC'est bizarre.\nThey approve.\tIls approuvent.\nThey approve.\tElles approuvent.\nThey crashed.\tIls se sont écrasés.\nThey crashed.\tElles se sont écrasées.\nThey escaped.\tIls se sont échappés.\nThey escaped.\tElles se sont échappées.\nThey gave up.\tIls ont abandonné.\nThey gave up.\tElles ont abandonné.\nThey gave up.\tIls abandonnèrent.\nThey gave up.\tElles abandonnèrent.\nThey hate us.\tIls nous détestent.\nThey hate us.\tElles nous détestent.\nThey know us.\tElles nous connaissent.\nThey laughed.\tIls ont ri.\nThey laughed.\tElles ont ri.\nThey refused.\tIls ont refusé.\nThey refused.\tElles ont refusé.\nThey relaxed.\tIls se sont détendus.\nThey relaxed.\tElles se sont détendues.\nThey said no.\tIls dirent non.\nThey said no.\tElles dirent non.\nThey said no.\tIls ont dit non.\nThey said no.\tElles ont dit non.\nThey sweated.\tIls ont transpiré.\nThey sweated.\tElles ont transpiré.\nThey'll grow.\tIls grandiront.\nThey'll grow.\tElles grandiront.\nThey're back.\tIls sont de retour.\nThey're back.\tElles sont de retour.\nThey're boys.\tCe sont des garçons.\nThey're cold.\tIls sont froids.\nThey're cold.\tElles sont froides.\nThey're cool.\tIls sont sympa.\nThey're cool.\tElles sont sympa.\nThey're cops.\tCe sont des flics.\nThey're cute.\tIls sont mignons.\nThey're cute.\tElles sont mignonnes.\nThey're dead.\tIls sont décédés.\nThey're dead.\tElles sont décédées.\nThey're done.\tIls ont terminé.\nThey're done.\tElles ont terminé.\nThey're free.\tIls sont libres.\nThey're free.\tElles sont libres.\nThey're gone.\tIls sont partis.\nThey're gone.\tElles sont parties.\nThey're gone.\tIl n'y en a plus.\nThey're here.\tIls sont là.\nThey're mine.\tIls sont à moi.\nThey're mine.\tIls sont miens.\nThey're mine.\tCe sont les miens.\nThey're mine.\tCe sont les miennes.\nThey're mine.\tElles sont miennes.\nThey're mine.\tElles sont à moi.\nThey're rich.\tIls sont riches.\nThey're rich.\tElles sont riches.\nThey're weak.\tIls sont faibles.\nThey're weak.\tElles sont faibles.\nThis is easy.\tC'est simple.\nThis is fine.\tC'est parfait.\nThis is free.\tC'est gratuit.\nThis is gold.\tC'est de l'or.\nThis is hers.\tCe sont les siens.\nThis is hers.\tCe sont les siennes.\nThis is huge.\tC'est énorme.\nThis is lame.\tC'est mauvais.\nThis is life!\tC'est la vie !\nThis is love.\tC'est l'amour.\nThis is love.\tC'est de l'amour.\nThis is mine.\tC'est le mien.\nThis is mine.\tIl s'agit du mien.\nThis is nice.\tC'est chouette.\nThis is sick.\tC'est dingue.\nThis is ugly.\tC'est hideux.\nThis is ugly.\tC'est laid.\nTom finished.\tTom a fini.\nTom is a spy.\tTom est un espion.\nTom is awful.\tTom est horrible.\nTom is blind.\tTom est aveugle.\nTom is cruel.\tTom est cruel.\nTom is drunk.\tTom est soûl.\nTom is drunk.\tTom est saoul.\nTom is drunk.\tTom est ivre.\nTom is dying.\tTom meurt.\nTom is there.\tTom est là-bas.\nTom listened.\tTom écouta.\nTom loved it.\tTom adorait ça.\nTom needs me.\tTom a besoin de moi.\nTom shrugged.\tTom haussa les épaules.\nTom stutters.\tTom bégaie.\nTom was poor.\tTom était pauvre.\nTom was shot.\tTom s'est fait tirer dessus.\nTom will cry.\tTom va pleurer.\nTom's afraid.\tTom est effrayé.\nTom's afraid.\tTom est apeuré.\nTom's asleep.\tTom est endormi.\nTom's coming.\tTom vient.\nTom's coming.\tTom arrive.\nTom's eating.\tTom est en train de manger.\nTom's famous.\tTom est célèbre.\nTom's famous.\tTom est connu.\nTom's guilty.\tTom est coupable.\nTrust no one.\tNe vous fiez à personne !\nTrust no one.\tNe te fie à personne !\nTrust no one.\tNe fais confiance à personne !\nTrust no one.\tNe faites confiance à personne !\nTry it again.\tEssaie encore.\nTry it again.\tEssaye encore.\nTry it again.\tEssaie de nouveau.\nTry it again.\tEssaye de nouveau.\nTry it again.\tEssaie à nouveau.\nTry it again.\tEssaye à nouveau.\nTry to sleep.\tEssaie de dormir.\nTry to sleep.\tEssayez de dormir.\nUnbelievable!\tIncroyable !\nUse them all.\tUtilise-les tous !\nUse them all.\tUtilise-les toutes !\nUse them all.\tUtilisez-les tous !\nUse them all.\tUtilisez-les toutes !\nWait a while.\tAttendez un moment.\nWait a while.\tAttends un moment !\nWait for Tom.\tAttends Tom.\nWait for Tom.\tAttendez Tom.\nWant a drink?\tVeux-tu un verre ?\nWe all cried.\tNous avons tous pleuré.\nWe all cried.\tNous avons toutes pleuré.\nWe apologize.\tNous présentons nos excuses.\nWe are Arabs.\tNous sommes arabes.\nWe are happy.\tNous sommes heureux.\nWe can't win.\tNous ne pouvons par l'emporter.\nWe could die.\tNous pourrions mourir.\nWe felt good.\tNous nous sommes sentis bien.\nWe get on OK.\tNous nous entendons bien.\nWe get on OK.\tOn s'entend bien.\nWe got lucky.\tNous avons eu de la chance.\nWe got lucky.\tOn a eu de la chance.\nWe got ready.\tNous nous sommes apprêtés.\nWe got ready.\tNous nous sommes apprêtées.\nWe have wine.\tNous avons du vin.\nWe live here.\tNous vivons ici.\nWe met today.\tNous nous sommes rencontrés aujourd'hui.\nWe met today.\tNous nous sommes rencontrées aujourd'hui.\nWe might die.\tIl se pourrait que nous mourions.\nWe must obey.\tIl nous faut obéir.\nWe must talk.\tIl nous faut discuter.\nWe must talk.\tIl faut que nous discutions.\nWe must wait.\tIl nous faut attendre.\nWe need both.\tNous avons besoin des deux.\nWe need help.\tNous avons besoin d'aide.\nWe need rest.\tNous avons besoin de repos.\nWe need time.\tIl nous faut du temps.\nWe needed it.\tNous en avions besoin.\nWe overslept.\tNous n'avons pas entendu le réveil.\nWe overslept.\tNous n'entendîmes pas le réveil.\nWe sat there.\tNous nous sommes assis là-bas.\nWe should go.\tNous devrions partir.\nWe succeeded!\tNous avons réussi !\nWe succeeded.\tNous avons réussi.\nWe surrender.\tNous nous rendons.\nWe trust him.\tNous avons confiance en lui.\nWe want jobs.\tNous voulons des emplois.\nWe were busy.\tNous étions occupés.\nWe were busy.\tNous étions occupées.\nWe'll attack.\tNous attaquerons.\nWe'll attend.\tNous y assisterons.\nWe'll decide.\tNous déciderons.\nWe'll follow.\tNous suivrons.\nWe'll manage.\tNous y arriverons.\nWe'll manage.\tNous nous débrouillerons.\nWe'll manage.\tNous gèrerons.\nWe'll starve.\tNous mourrons de faim.\nWe're a team.\tNous sommes une équipe.\nWe're adults.\tNous sommes des adultes.\nWe're all OK.\tNous allons tous bien.\nWe're at war.\tNous sommes en guerre.\nWe're biased.\tNotre point de vue est biaisé.\nWe're biased.\tNous avons des préjugés.\nWe're buying.\tNous achetons.\nWe're closed.\tNous sommes fermés.\nWe're coming.\tNous venons.\nWe're dating.\tNous sortons ensemble.\nWe're doomed.\tNous sommes condamnés.\nWe're hiding.\tNous nous cachons.\nWe're inside.\tNous sommes à l'intérieur.\nWe're joking.\tNous plaisantons.\nWe're losing.\tNous perdons.\nWe're losing.\tNous sommes en train de perdre.\nWe're moving.\tNous sommes en train de bouger.\nWe're normal.\tNous sommes normaux.\nWe're normal.\tNous sommes normales.\nWe're paying.\tNous sommes en train de payer.\nWe're pooped.\tNous sommes crevés.\nWe're pooped.\tNous sommes crevées.\nWe're ruined.\tNous sommes ruinés.\nWe're ruined.\tNous sommes ruinées.\nWe're shaken.\tNous sommes remués.\nWe're shaken.\tNous sommes remuées.\nWe're sneaky.\tNous sommes sournois.\nWe're sneaky.\tNous sommes sournoises.\nWe're strong.\tNous sommes forts.\nWe're strong.\tNous sommes fortes.\nWe're trying.\tNous essayons.\nWelcome back.\tSois de nouveau le bienvenu !\nWelcome back.\tSois de nouveau la bienvenue !\nWelcome back.\tSoyez de nouveau le bienvenu !\nWelcome back.\tSoyez de nouveau la bienvenue !\nWelcome home.\tBienvenue à la maison.\nWhat a loser!\tQuel raté !\nWhat a loser!\tQuel naze !\nWhat a night!\tQuelle nuit !\nWhat a night!\tQuelle soirée !\nWhat a phony!\tQuel charlatan !\nWhat a shame!\tQuelle honte !\nWhat a shame!\tDommage !\nWhat a shock!\tQuel choc !\nWhat a waste!\tQuel gâchis !\nWhat a woman!\tQuelle femme !\nWhat is love?\tQu'est-ce que l'amour ?\nWhat is love?\tQu'est l'amour ?\nWhat is that?\tQu'est-ce que c'est que ça ?\nWhat is that?\tQu'est-ce ?\nWhat is that?\tQu'est-ce que c'est?\nWhat is this?\tQu’est-ce que c’est ?\nWhat is this?\tQu'est ceci ?\nWhat's wrong?\tQu'est-ce qui ne va pas ?\nWhere is she?\tOù est-elle ?\nWho are they?\tQui sont-ils ?\nWho are they?\tQui sont-elles ?\nWho broke it?\tQui l'a cassé ?\nWho built it?\tQui l'a construit ?\nWho built it?\tQui l'a bâti ?\nWho built it?\tQui l'a construite ?\nWho built it?\tQui l'a bâtie ?\nWho did this?\tQui a fait ça ?\nWho has come?\tQui est venu ?\nWho sent you?\tQui t'a envoyé ?\nWho sent you?\tQui t'a envoyée ?\nWho sent you?\tQui vous a envoyé ?\nWho sent you?\tQui vous a envoyée ?\nWho told you?\tQui vous l'a dit ?\nWho told you?\tQui vous l'a raconté ?\nWho vanished?\tQui a disparu ?\nWho vanished?\tQui s'est éclipsé ?\nWho wants it?\tQui veut ça ?\nWho wants it?\tQui en veut ?\nWho wants it?\tQui le veut ?\nWho was here?\tQui était ici ?\nWho will pay?\tQui va payer ?\nWho will pay?\tQui paiera ?\nWho will win?\tQui va gagner ?\nWho's coming?\tQui vient ?\nWho's hungry?\tQui a faim ?\nWhy not both?\tPourquoi pas les deux ?\nWill he live?\tVivra-t-il ?\nWish me luck.\tSouhaite-moi chance !\nWish me luck.\tSouhaitez-moi chance !\nWrite in ink.\tEcrivez à l'encre.\nWrite to Tom.\tÉcris à Tom.\nWrite to Tom.\tÉcrivez à Tom.\nYears passed.\tDes années ont passé.\nYou amuse me.\tTu m'amuses.\nYou are good.\tVous êtes bon.\nYou are good.\tVous êtes bonne.\nYou are good.\tVous êtes bons.\nYou are good.\tVous êtes bonnes.\nYou are good.\tTu es bon.\nYou are good.\tTu es bonne.\nYou are late.\tTu es en retard.\nYou are late.\tVous êtes en retard.\nYou are rich.\tVous êtes riches.\nYou can come.\tTu peux te joindre.\nYou can come.\tVous pouvez venir.\nYou can help.\tTu peux aider.\nYou can rest.\tVous pouvez vous reposer.\nYou did this.\tTu as fais ceci.\nYou did this.\tVous avez fait ceci.\nYou go first.\tVas-y d'abord.\nYou go first.\tAllez-y.\nYou go first.\tJe vous en prie.\nYou go first.\tToi d'abord.\nYou go first.\tVous en premier.\nYou go first.\tJe t'en prie.\nYou hurt him.\tTu l'as blessé.\nYou look fat.\tVous avez l'air gros.\nYou look fat.\tTu as l'air gros.\nYou look fat.\tTu as l'air grosse.\nYou look fat.\tVous avez l'air grosse.\nYou may swim.\tVous pouvez nager.\nYou may swim.\tTu peux nager.\nYou may swim.\tTu as la permission de nager.\nYou promised.\tTu as promis.\nYou promised.\tVous avez promis.\nYou scare me.\tTu me fais peur.\nYou scare me.\tVous me faites peur.\nYou were shy.\tTu étais timide.\nYou were shy.\tVous étiez timide.\nYou will die.\tTu mourras.\nYou'll be OK.\tÇa ira.\nYou're bossy.\tTu joues au chef.\nYou're bossy.\tTu fais le chef.\nYou're crazy.\tTu es fou.\nYou're cruel.\tTu es cruelle.\nYou're cruel.\tTu es cruel.\nYou're cruel.\tVous êtes cruelle.\nYou're cruel.\tVous êtes cruelles.\nYou're cruel.\tVous êtes cruel.\nYou're cruel.\tVous êtes cruels.\nYou're early.\tTu viens tôt.\nYou're early.\tVous êtes matinal.\nYou're early.\tVous êtes matinale.\nYou're early.\tTu es matinal.\nYou're early.\tTu es matinale.\nYou're early.\tTu es en avance.\nYou're early.\tVous êtes en avance.\nYou're fired.\tTu es viré.\nYou're fired.\tTu es licencié.\nYou're first.\tTu es en premier.\nYou're first.\tTu passes en premier.\nYou're first.\tVous êtes en premier.\nYou're funny.\tT'es marrante.\nYou're funny.\tT'es marrant.\nYou're funny.\tVous êtes marrants.\nYou're funny.\tVous êtes marrantes.\nYou're funny.\tVous êtes marrant.\nYou're funny.\tVous êtes marrante.\nYou're fussy.\tTu es difficile.\nYou're fussy.\tTu fais des manières.\nYou're fussy.\tVous faites des manières.\nYou're gross!\tTu es malpoli !\nYou're lying!\tTu mens !\nYou're lying!\tVous mentez !\nYou're lying.\tVous mentez.\nYou're moody.\tTu es lunatique.\nYou're naive.\tTu es naïf.\nYou're naive.\tTu es naïve.\nYou're naive.\tVous êtes naïf.\nYou're naive.\tVous êtes naïve.\nYou're naive.\tVous êtes naïfs.\nYou're naive.\tVous êtes naïves.\nYou're quiet.\tTu es calme.\nYou're quiet.\tTu es tranquille.\nYou're right.\tTu as raison.\nYou're silly.\tTu es idiot.\nYou're silly.\tVous êtes idiot.\nYou're silly.\tVous êtes idiote.\nYou're silly.\tTu es idiote.\nYou're silly.\tVous êtes idiots.\nYou're silly.\tVous êtes idiotes.\nYou're stuck.\tT'es planté.\nYou're stuck.\tT'es plantée.\nYou're stuck.\tVous êtes plantés.\nYou're stuck.\tVous êtes plantées.\nYou're stuck.\tVous êtes plantée.\nYou're stuck.\tVous êtes planté.\nYou're tough.\tTu es dure.\nYou're tough.\tTu es dur.\nYou're tough.\tVous êtes dur.\nYou're tough.\tVous êtes dure.\nYou're tough.\tVous êtes durs.\nYou're tough.\tVous êtes dures.\nYou're upset.\tTu es contrariée.\nYou're upset.\tTu es contrarié.\nYou're weird.\tTu es bizarre.\nYou're weird.\tVous êtes bizarre.\nYou're weird.\tVous êtes bizarres.\nYou're wrong.\tTu es dans l'erreur.\nYou're wrong.\tTu as tort.\nYou're young.\tTu es jeune.\nYou're young.\tVous êtes jeune.\nYou're young.\tVous êtes jeunes.\nYou've tried.\tTu as essayé.\nYou've tried.\tVous avez essayé.\nA car hit Tom.\tTom a été heurté par une voiture.\nA car hit Tom.\tTom a été renversé par une voiture.\nA car went by.\tUne voiture passa.\nAin't he cute?\tN'est-il pas mignon ?\nAir the futon.\tAère le futon !\nAir the futon.\tAérez le futon !\nAm I dreaming?\tSuis-je en train de rêver ?\nAm I included?\tSuis-je inclus ?\nAm I included?\tSuis-je incluse ?\nAm I mistaken?\tEst-ce que je me trompe ?\nAm I talented?\tSuis-je doté de talent ?\nAm I talented?\tAi-je du talent ?\nAny questions?\tDes questions ?\nAny questions?\tDe quelconques questions ?\nAnything else?\tAutre chose ?\nAre they busy?\tSont-elles occupées ?\nAre they busy?\tSont-ils occupées ?\nAre they cops?\tC'est des flics ?\nAre they cops?\tSont-ils flics ?\nAre they cops?\tSont-ils des flics ?\nAre you a cop?\tÊtes-vous flic ?\nAre you alone?\tEs-tu seul ?\nAre you alone?\tEs-tu seule ?\nAre you alone?\tÊtes-vous seul ?\nAre you alone?\tÊtes-vous seule ?\nAre you angry?\tÊtes-vous en colère ?\nAre you angry?\tTu es fâché ?\nAre you awake?\tEs-tu réveillé?\nAre you awake?\tEs-tu réveillée?\nAre you blind?\tÊtes-vous aveugle ?\nAre you blind?\tEs-tu aveugle ?\nAre you bored?\tVous ennuyez-vous ?\nAre you bored?\tT'ennuies-tu ?\nAre you crazy?\tEs-tu fou ?\nAre you crazy?\tTu es folle ?\nAre you crazy?\tEs-tu folle ?\nAre you happy?\tÊtes-vous contents ?\nAre you happy?\tÊtes-vous heureux ?\nAre you happy?\tEs-tu content ?\nAre you happy?\tÊtes-vous content ?\nAre you happy?\tEs-tu contente ?\nAre you happy?\tÊtes-vous contente ?\nAre you happy?\tÊtes-vous contentes ?\nAre you happy?\tÊtes-vous heureuses ?\nAre you ready?\tEs-tu prêt ?\nAre you ready?\tÊtes-vous prêt ?\nAre you ready?\tEs-tu prête ?\nAre you ready?\tÊtes-vous prêts ?\nAre you ready?\tÊtes-vous prêt ?\nAre you ready?\tÊtes-vous prête ?\nAre you there?\tT'es là ?\nAre you there?\tVous êtes là ?\nAre you there?\tT’es là ?\nAre you tired?\tÊtes-vous fatigué ?\nAre you tired?\tÊtes-vous fatigués ?\nAre you tired?\tÊtes-vous las ?\nAre you tired?\tÊtes-vous lasses ?\nAre you tired?\tÊtes-vous fatiguées ?\nAre you tired?\tÊtes-vous fatiguée ?\nAre you young?\tÊtes-vous jeune ?\nAre you young?\tEs-tu jeune ?\nAre you young?\tÊtes-vous jeunes ?\nBe a good boy.\tSois un chic type !\nBe a good boy.\tSoyez un chic type !\nBe a good boy.\tSois un bon garçon !\nBe a good boy.\tSoyez un bon garçon !\nBe respectful.\tSois respectueuse !\nBe respectful.\tSois respectueux !\nBe respectful.\tSoyez respectueuse !\nBe respectful.\tSoyez respectueux !\nBe respectful.\tSoyez respectueuses !\nBeat it, kids!\tDégagez, les gamins !\nBeware of dog.\tAttention au chien !\nBring a lunch.\tApporte à déjeuner !\nBring a lunch.\tApporte à dîner !\nBring it here.\tApporte-le ici.\nBring it here.\tApportez-le ici.\nBring the key.\tApporte la clé.\nBring the key.\tEmmène la clé.\nCall a doctor.\tAppelle un médecin !\nCall security!\tAppelez la sécurité !\nCall security!\tAppelle la sécurité !\nCall the cops.\tAppelle les flics !\nCall the cops.\tAppellez les flics !\nCan I ask who?\tPuis-je demander qui ?\nCan I ask why?\tPuis-je demander pourquoi ?\nCan I come in?\tPuis-je entrer ?\nCan I come in?\tPuis-je entrer ?\nCan he see me?\tEst-il en mesure de me voir ?\nCan he see me?\tPeut-il me voir ?\nCan he see us?\tPeut-il nous voir ?\nCan he see us?\tEst-il en mesure de nous voir ?\nCan you drive?\tSais-tu conduire ?\nCan you pitch?\tSais-tu lancer ?\nCan you pitch?\tSais-tu donner le ton ?\nCan you pitch?\tSavez-vous lancer ?\nCan you pitch?\tSavez-vous donner le ton ?\nCan you skate?\tSais-tu patiner ?\nCats are cute.\tLes chats sont mignons.\nCheck, please.\tVérifie, s'il te plaît.\nCheck, please.\tL'addition, s'il vous plait.\nCheck, please.\tJ'aimerais la note, je vous prie.\nClean that up.\tNettoyez ça.\nClose the box.\tFerme la boîte.\nClose the box.\tFermez la boîte.\nCome right in.\tEntrez, je vous prie.\nCook the rice.\tCuisez le riz.\nCould I do it?\tPourrais-je le faire ?\nCould I do it?\tSerais-je capable de le faire ?\nCould I do it?\tSerais-je en mesure de le faire ?\nCould we walk?\tPourrions-nous marcher ?\nCrime is down.\tLa criminalité est en baisse.\nCrime is down.\tC'est la criminalité qui est en baisse.\nDance with me.\tDanse avec moi.\nDance with me.\tDansez avec moi.\nDid I ask you?\tVous l'ai-je demandé ?\nDid I ask you?\tTe l'ai-je demandé ?\nDid I blow it?\tEst-ce que j'ai vendu la mèche ?\nDid I blow it?\tEst-ce que je l'ai foiré ?\nDid I do that?\tAi-je fait cela ?\nDid Tom drown?\tTom s'est-il noyé ?\nDid Tom fight?\tTom s'est-il battu ?\nDid that work?\tÇa a marché ?\nDid that work?\tEst-ce que ça a marché ?\nDid that work?\tÇa a fonctionné ?\nDid you do it?\tL'as-tu fait ?\nDid you do it?\tL'avez-vous fait ?\nDo I know him?\tJe le connais ?\nDo I know you?\tEst-ce que je te connais ?\nDo I know you?\tEst-ce que je vous connais ?\nDo I look fat?\tAi-je l'air gros ?\nDo I look old?\tAi-je l'air vieux ?\nDo I look old?\tAi-je l'air vieille ?\nDo cats dream?\tLes chats rêvent-ils ?\nDo fish sleep?\tLes poissons dorment-ils ?\nDo it at once.\tFais-le immédiatement !\nDo it at once.\tFaites-le immédiatement.\nDo it quickly.\tFais-le vite !\nDo it quickly.\tFaites-le vite !\nDo me a favor.\tFais-moi une faveur.\nDo what I say.\tFais ce que je dis.\nDo what I say.\tFaites ce que je dis.\nDo you follow?\tEst-ce que tu suis ?\nDo you follow?\tEst-ce que vous suivez ?\nDo you get it?\tTu captes ?\nDo you get it?\tVous captez ?\nDo you get it?\tTu piges ?\nDo you get it?\tVous pigez ?\nDo you get it?\tPigez-vous ?\nDo you get it?\tEst-ce que vous captez ?\nDo you get it?\tEst-ce que tu captes ?\nDo you see me?\tMe vois-tu ?\nDo you see me?\tMe voyez-vous ?\nDon't be late.\tNe sois pas en retard.\nDon't be long.\tNe sois pas long.\nDon't be mean.\tNe sois pas mesquin !\nDon't be mean.\tNe sois pas mesquine !\nDon't be mean.\tNe soyez pas mesquin !\nDon't be mean.\tNe soyez pas mesquine !\nDon't be rude.\tNe sois pas impoli !\nDon't be rude.\tNe sois pas impolie !\nDon't be rude.\tNe soyez pas impoli !\nDon't be rude.\tNe soyez pas impolie !\nDon't call me.\tNe m'appelle pas.\nDon't deny it.\tNe le nie pas !\nDon't deny it.\tNe le niez pas !\nDon't despair.\tNe désespérez pas !\nDon't despair.\tNe désespère pas !\nDon't do that.\tNe fais pas ça.\nDon't do that.\tNe faites pas ça.\nDon't do this.\tNe fais pas ça !\nDon't do this.\tNe faites pas ça !\nDon't get fat.\tNe deviens pas gras.\nDon't get fat.\tNe grossis pas.\nDon't give up!\tN'abandonne pas !\nDon't give up.\tN'abandonne pas.\nDon't give up.\tN'abandonnez pas.\nDon't give up.\tNe laisse pas tomber.\nDon't give up.\tNe laissez pas tomber.\nDon't hurt me.\tNe me fais pas de mal !\nDon't kill me.\tNe me tue pas !\nDon't kill me.\tNe me tuez pas !\nDon't mock me.\tNe te moque pas de moi.\nDon't push it.\tNe pousse pas le bouchon !\nDon't push it.\tNe le pousse pas !\nDon't push it.\tNe poussez pas le bouchon !\nDon't push it.\tPousse pas le bouchon !\nDon't push it.\tPoussez pas le bouchon !\nDon't push me!\tNe me pousse pas !\nDon't push me!\tNe me poussez pas !\nDon't push me.\tNe me pousse pas !\nDon't push me.\tNe me poussez pas !\nDon't sass me.\tNe sois pas impertinent à mon égard.\nDon't tell me.\tNe me le dis pas.\nDon't tell me.\tM'en parle pas.\nDon't wait up.\tNe veille pas.\nDon't wait up.\tNe veillez pas.\nDraw a circle.\tTrace un cercle.\nDraw a circle.\tTrace un cercle !\nDraw a circle.\tTracez un cercle !\nDrink it down.\tBois-le !\nDrink it down.\tBuvez-le !\nDrop your gun!\tLaisse tomber ton arme !\nDrop your gun!\tLaissez tomber votre arme !\nDry your eyes.\tSèche tes larmes.\nDry your eyes.\tEssuie tes yeux.\nEat and drink.\tMangez et buvez.\nEat and drink.\tMange et bois.\nEat something.\tMange quelque chose !\nEat something.\tMangez quelque chose !\nEveryone dies.\tTout le monde meurt.\nEveryone wins.\tTout le monde y gagne.\nFeed the bird!\tNourris l'oiseau !\nFeed the bird!\tNourris l'oiseau !\nGet a haircut.\tVa te faire couper les cheveux !\nGet back here.\tReviens ici !\nGet back here.\tRevenez ici !\nGet off of me.\tLâche-moi.\nGet some rest.\tPrenez quelque repos !\nGet your coat.\tPrends ton manteau.\nGet your gear.\tVa chercher ton matériel !\nGet your gear.\tAllez chercher votre matériel !\nGet your gear.\tVa chercher ta tenue !\nGet your gear.\tAllez chercher votre tenue !\nGet your gear.\tVa chercher tes affaires !\nGet your gear.\tAllez chercher vos affaires !\nGive him time.\tDonne-lui du temps.\nGive it to me!\tDonne-le-moi !\nGive it to me.\tDonnez-le-moi.\nGive it to me.\tDonne-le-moi.\nGive it to me.\tDonne-la-moi.\nGive it to me.\tDonnez-la-moi.\nGive me a few.\tDonne-m'en quelques-uns.\nGive me a hug.\tSerre-moi dans tes bras !\nGive me a hug.\tSerrez-moi dans vos bras !\nGod bless you!\tQue Dieu te bénisse !\nGod bless you!\tDieu vous bénisse !\nGod bless you!\tDieu te bénisse !\nGod bless you!\tQue Dieu vous bénisse !\nGod knows why.\tDieu sait pourquoi.\nGuess who won.\tDevine qui a gagné.\nGuess who won.\tDevinez qui a gagné.\nHand it to me.\tPasse-le-moi.\nHang on tight!\tAccroche-toi bien !\nHang on tight!\tAccrochez-vous bien !\nHang on tight.\tAccroche-toi bien !\nHang on tight.\tAccrochez-vous bien !\nHave a cookie.\tPrends un biscuit !\nHave him come.\tFais-le venir.\nHave some ham.\tPrends du jambon.\nHave some ham.\tPrenez du jambon.\nHe broke them.\tIl les a cassés.\nHe broke them.\tIl les a cassées.\nHe can't sing.\tIl est incapable de chanter.\nHe can't sing.\tIl ne sait pas chanter.\nHe can't swim.\tIl ne sait pas nager.\nHe cheated me.\tIl m'a trompé.\nHe cracked up.\tIl a pété les plombs.\nHe cracked up.\tIl a disjoncté.\nHe drank beer.\tIl but de la bière.\nHe drank beer.\tIl a bu de la bière.\nHe dropped it.\tIl laissa tomber.\nHe dug a hole.\tIl a creusé un trou.\nHe eats a lot.\tIl mange beaucoup.\nHe feels hurt.\tIl se sent blessé.\nHe fooled her.\tIl la dupa.\nHe got caught.\tIl se fit prendre.\nHe got caught.\tIl s'est fait prendre.\nHe has a book.\tIl a un livre.\nHe has a book.\tIl dispose d'un livre.\nHe has a cold.\tIl a attrapé froid.\nHe has a maid.\tIl a une femme de ménage.\nHe has a maid.\tIl a une servante.\nHe has braces.\tIl porte des bagues dentaires.\nHe has braces.\tIl porte des bretelles.\nHe hugged her.\tIl l'enlaça.\nHe hugged her.\tIl l'a enlacée.\nHe ignored me.\tIl m'a ignoré.\nHe ignored me.\tIl m'ignora.\nHe ignored me.\tIl m'a ignorée.\nHe is British.\tIl est Britannique.\nHe is English.\tIl est Anglais.\nHe is a thief.\tC'est un voleur.\nHe is foolish.\tIl est idiot.\nHe is my boss.\tC'est mon patron.\nHe is my type!\tIl est mon genre !\nHe is no fool.\tIl n'est pas idiot.\nHe is no fool.\tIl n'est pas fou.\nHe is out now.\tIl est actuellement sorti.\nHe is reading.\tIl lit.\nHe is reading.\tIl est en train de lire.\nHe is running.\tIl court.\nHe is skating.\tIl fait du patin.\nHe is skating.\tIl patine.\nHe is too old.\tIl est trop vieux.\nHe killed him.\tIl le tua.\nHe killed him.\tIl l'a tué.\nHe left early.\tIl est parti tôt.\nHe left early.\tIl partit tôt.\nHe lied to me.\tIl m'a menti.\nHe lied to me.\tIl me mentit.\nHe liked that.\tIl aima cela.\nHe liked that.\tIl apprécia cela.\nHe liked that.\tIl a aimé ça.\nHe liked that.\tIl a apprécié cela.\nHe liked that.\tIl l'a apprécié.\nHe looks pale.\tIl a l'air pâle.\nHe looks well.\tIl a l'air en bonne santé.\nHe loves toys.\tIl adore les jouets.\nHe made me go.\tIl m'a fait partir.\nHe never lies.\tIl ne ment jamais.\nHe pinched me!\tIl m'a pincé !\nHe pinched me!\tIl m'a pincée !\nHe seems kind.\tIl a l'air gentil.\nHe sells cars.\tIl vend des voitures.\nHe shot at me.\tIl me tira dessus.\nHe smells bad.\tIl pue.\nHe talks well.\tIl parle bien.\nHe touched me.\tIl m'a touché.\nHe touched me.\tIl m'a ému.\nHe touched me.\tIl m'a émue.\nHe touched me.\tIl m'a touchée.\nHe tricked me.\tIl m'a floué.\nHe tricked me.\tIl m'a flouée.\nHe tricked me.\tIl m'a arnaqué.\nHe tricked me.\tIl m'a arnaquée.\nHe tricked me.\tIl m'a eu.\nHe tricked me.\tIl m'a eue.\nHe tries hard.\tIl s'efforce.\nHe walks fast.\tIl marche vite.\nHe walks fast.\tIl marche rapidement.\nHe wants more.\tIl en veut davantage.\nHe was crying.\tIl pleurait.\nHe was stoned.\tIl fut lapidé.\nHe was stoned.\tIl a été lapidé.\nHe went blind.\tIl est devenu aveugle.\nHe's a grouch.\tC'est un rouspéteur.\nHe's a jesuit.\tIl est jésuite.\nHe's a senior.\tC'est un aîné.\nHe's a senior.\tC'est un ancien.\nHe's a senior.\tC'est un retraité.\nHe's a tycoon.\tC'est un magnat.\nHe's addicted.\tIl est accro.\nHe's addicted.\tIl a une assuétude.\nHe's addicted.\tIl est drogué.\nHe's adorable.\tIl est adorable.\nHe's after me.\tIl est derrière moi.\nHe's after me.\tIl est après moi.\nHe's after me.\tIl est après mes fesses.\nHe's after me.\tIl me poursuit.\nHe's annoying.\tIl est embêtant.\nHe's demented.\tIl est fou.\nHe's in Tokyo.\tIl est à Tokyo.\nHe's innocent.\tIl est innocent.\nHe's innocent.\tIl est ingénu.\nHe's insecure.\tIl est peu sûr de lui.\nHe's insecure.\tIl manque de confiance en lui.\nHe's no saint.\tIl n'est pas un saint.\nHe's no saint.\tCe n'est pas un saint.\nHe's not home.\tIl n'est pas à la maison.\nHe's not sick.\tIl n'est pas malade.\nHe's outraged.\tIl est indigné.\nHe's ruthless.\tIl est impitoyable.\nHe's ruthless.\tIl est sans pitié.\nHe's so young.\tIl est si jeune.\nHe's so young.\tIl est tellement jeune.\nHe's studying.\tIl étudie.\nHe's studying.\tIl est en train d'étudier.\nHe's too busy.\tIl est trop occupé.\nHe's too slow.\tIl est trop lent.\nHe's very ill.\tIl est très malade.\nHe's very ill.\tIl est fort malade.\nHe's your son.\tIl est ton fils.\nHe's your son.\tC'est ton fils.\nHe's your son.\tC'est votre fils.\nHe's your son.\tIl est votre fils.\nHelp yourself.\tServez-vous.\nHelp yourself.\tSers-toi.\nHere he comes.\tLe voilà.\nHere he comes.\tLe voici qui vient.\nHere he comes.\tLe voici.\nHere or to go?\tSur place ou à emporter ?\nHis nose bled.\tIl saignait du nez.\nHis nose bled.\tIl avait le nez qui saignait.\nHold the door.\tRetiens la porte !\nHold the door.\tRetenez la porte !\nHold the rope.\tTenez la corde.\nHow about you?\tEt vous ?\nHow beautiful!\tComme c'est beau !\nHow big is he?\tIl est grand comment ?\nHow big is it?\tC'est grand comment ?\nHow can I pay?\tComment puis-je payer?\nHow can it be?\tComment se peut-il ?\nHow can it be?\tComment cela se peut-il ?\nHow do I look?\tDe quoi ai-je l'air ?\nHow old is he?\tQuel âge a-t-il ?\nHow thrilling!\tComme c'est excitant !\nHow thrilling!\tComme c'est palpitant !\nHow's the dog?\tComment va le chien ?\nI already ate.\tJ'ai déjà mangé.\nI always lose.\tJe perds toujours.\nI always walk.\tJe vais toujours à pied.\nI always walk.\tJe marche toujours.\nI am American.\tJe suis américain.\nI am American.\tJe suis américaine.\nI am Japanese.\tJe suis Japonais.\nI am a Muslim.\tJe suis musulman.\nI am a Muslim.\tJe suis musulmane.\nI am a Muslim.\tJe suis Musulman.\nI am a runner.\tJe suis un coureur.\nI am all ears.\tJe suis tout ouïe.\nI am diabetic.\tJe suis diabétique.\nI am divorced.\tJe suis divorcé.\nI am divorced.\tJe suis divorcée.\nI am in Paris.\tJe suis à Paris.\nI am new here.\tJe suis nouveau ici.\nI am new here.\tJe suis nouveau, ici.\nI am not deaf.\tJe ne suis pas sourd.\nI am so sorry.\tJe suis tellement désolé !\nI am so sorry.\tJe suis tellement désolée !\nI am very sad.\tJe suis très triste.\nI ate quickly.\tJ'ai mangé rapidement.\nI became rich.\tJe suis devenu riche.\nI became rich.\tJe suis devenue riche.\nI became rich.\tJe devins riche.\nI believe you.\tJe te crois.\nI believe you.\tJe vous crois.\nI belong here.\tC'est ici qu'est ma place.\nI borrowed it.\tJe l'ai emprunté.\nI borrowed it.\tJe l'ai empruntée.\nI bribed them.\tJe les ai soudoyés.\nI bribed them.\tJe les ai soudoyées.\nI burned them.\tJe l'ai brûlé.\nI called home.\tJ'ai appelé chez moi.\nI called home.\tJ'ai appelé la maison.\nI called them.\tJe les ai appelés.\nI called them.\tJe les ai appelées.\nI can buy one.\tJe peux en acheter un.\nI can buy one.\tJe peux en acheter une.\nI can buy one.\tJe peux en acquérir un.\nI can buy one.\tJe peux en acquérir une.\nI can do this.\tJe peux le faire !\nI can explain.\tJe peux expliquer.\nI can feel it.\tJ'arrive à le sentir.\nI can feel it.\tJ'arrive à le ressentir.\nI can feel it.\tJe parviens à le ressentir.\nI can survive.\tJe peux survivre.\nI can't dance.\tJe ne sais pas danser.\nI can't do it.\tJe n'y arrive pas.\nI can't do it.\tJe n'y parviens pas.\nI can't leave.\tJe ne peux pas partir.\nI can't sleep.\tJe ne peux pas dormir.\nI can't smoke.\tJe ne peux pas fumer.\nI canceled it.\tJe l'ai annulé.\nI canceled it.\tJe l'ai annulée.\nI caused this.\tJ'ai causé ceci.\nI caused this.\tJe l'ai causé.\nI contributed.\tJ'y ai contribué.\nI contributed.\tMoi j'ai contribué.\nI cried a lot.\tJ'ai beaucoup pleuré.\nI deserved it.\tJe l'ai mérité.\nI designed it.\tJe l'ai conçu.\nI designed it.\tJe l'ai conçue.\nI despise Tom.\tJe méprise Tom.\nI despise you.\tJe te méprise.\nI despise you.\tJe vous méprise.\nI did it once.\tJe l'ai fait une fois.\nI did my best.\tJ'ai fait de mon mieux.\nI did my best.\tJe fis de mon mieux.\nI did my part.\tJ'ai fait ma part.\nI did nothing.\tJe n'ai rien fait.\nI did nothing.\tMoi je n'ai rien fait.\nI did see him.\tJe l'ai vu.\nI didn't call.\tJe n'ai pas appelé.\nI didn't care.\tJ'ai pas fait gaffe.\nI didn't care.\tJe n'ai pas fait attention.\nI didn't care.\tJe n'ai pas prêté attention.\nI didn't know.\tJe ne savais pas.\nI didn't look.\tJe n'ai pas regardé.\nI didn't move.\tJe n'ai pas bougé.\nI didn't stop.\tJe n'ai pas arrêté.\nI didn't stop.\tJe n'ai pas cessé.\nI didn't vote.\tJe n'ai pas voté.\nI didn't walk.\tJe n'ai pas marché.\nI do like you.\tJe vous apprécie vraiment.\nI do like you.\tJe t'apprécie vraiment.\nI do love you.\tJe t'aime !\nI do remember.\tJe me rappelle, en effet.\nI do remember.\tJe me souviens, en effet.\nI don't agree.\tJe ne suis pas d'accord.\nI don't dance.\tJe ne danse pas.\nI don't drink.\tJe m'abstiens de boire.\nI don't drink.\tJe ne bois pas.\nI don't smoke.\tJe ne fume pas.\nI don't snore.\tJe ne ronfle pas.\nI don't steal.\tJe ne vole pas.\nI dream a lot.\tJe rêve beaucoup.\nI enjoy chess.\tJ'apprécie les échecs.\nI enjoy music.\tJ'apprécie la musique.\nI enjoy poker.\tJ'ai plaisir à jouer au poker.\nI exaggerated.\tJ'ai exagéré.\nI fear no one.\tJe ne crains personne.\nI fed the dog.\tJ'ai nourri le chien.\nI fed the dog.\tJ'ai nourri la chienne.\nI fed the dog.\tJe nourris le chien.\nI fed the dog.\tJe nourris la chienne.\nI fed the dog.\tJ'ai donné à manger à la chienne.\nI feel better.\tJe me sens mieux.\nI feel guilty.\tJe me sens coupable.\nI feel hungry.\tJ'ai faim !\nI feel it now.\tJe le sens, maintenant.\nI feel lonely.\tJe me sens seul.\nI feel lonely.\tJe me sens seule.\nI feel my age.\tJe sens le poids des ans.\nI feel my age.\tMon âge me pèse.\nI feel normal.\tJe me sens normal.\nI feel normal.\tJe me sens normale.\nI feel queasy.\tJ'ai mal au cœur.\nI feel queasy.\tJe me sens mal à l'aise.\nI feel so bad.\tJe me sens tellement mal.\nI feel stupid.\tJe me sens stupide.\nI feel unwell.\tJe ne me sens pas bien.\nI fell asleep.\tJe me suis endormie.\nI fell for it.\tJe me suis fait avoir.\nI fell for it.\tJe me suis fait prendre.\nI felt guilty.\tJe me sentis coupable.\nI felt guilty.\tJe me suis sentie coupable.\nI felt guilty.\tJe me suis senti coupable.\nI felt lonely.\tJe me sentais seul.\nI felt reborn.\tJe me suis senti renaître.\nI felt reborn.\tJe me suis sentie renaître.\nI felt scared.\tJe me sentis apeuré.\nI felt scared.\tJe me sentis apeurée.\nI felt scared.\tJe me suis sentis apeuré.\nI felt scared.\tJe me suis sentis apeurée.\nI felt strong.\tJe me suis senti fort.\nI felt strong.\tJe me suis sentie forte.\nI finally won.\tJ'ai fini par gagner.\nI finally won.\tJ'ai fini par l'emporter.\nI finished it.\tJe l'ai terminé.\nI forbid that.\tJ'interdis cela.\nI forgive you.\tJe te pardonne.\nI fought back.\tJ'ai rendu les coups.\nI found a job.\tJ'ai trouvé un boulot.\nI found these.\tJ'ai trouvé ceux-ci.\nI found these.\tJ'ai trouvé celles-ci.\nI freaked out.\tJ'ai eu les foies.\nI freaked out.\tJ'ai flippé.\nI freaked out.\tJ'ai eu la trouille.\nI freaked out.\tJ'ai eu la pétoche.\nI got a bonus.\tJ'ai obtenu une prime.\nI got it free.\tJe l'ai eu gratuitement.\nI got married.\tJe me suis marié.\nI got nothing.\tJe n'ai rien.\nI got scammed.\tJ'ai été arnaqué.\nI got scammed.\tJ'ai été arnaquée.\nI got thirsty.\tJe me suis mis à avoir soif.\nI got thirsty.\tJe me suis mise à avoir soif.\nI had an idea.\tJ'ai eu une idée.\nI had no clue.\tJe n'en avais aucune idée.\nI had no clue.\tJe n'en avais pas la moindre idée.\nI had no idea.\tJe n'avais pas idée.\nI had no idea.\tJe n'avais aucune idée.\nI had no idea.\tJe n'en avais aucune idée.\nI had to stay.\tIl me fallait rester.\nI had to stop.\tIl fallait que j'arrête.\nI had to stop.\tIl me fallait arrêter.\nI had to stop.\tIl me fallait cesser.\nI had to stop.\tIl fallait que je cesse.\nI had to stop.\tIl me fallut arrêter.\nI had to stop.\tIl me fallut cesser.\nI had to work.\tJ'ai dû travailler.\nI had to work.\tIl m'a fallu travailler.\nI hate coffee.\tJe déteste le café.\nI hate crowds.\tJ'ai horreur des foules.\nI hate flying.\tJe déteste voler.\nI hate losing.\tJe déteste perdre.\nI hate losing.\tJe déteste avoir le dessous.\nI hate moving.\tJ'ai horreur de déménager.\nI hate myself.\tJe me déteste.\nI hate school.\tJe déteste l'école.\nI hate soccer.\tJe déteste le football.\nI hate winter.\tJe déteste l'hiver.\nI have a cold.\tJ'ai un rhume.\nI have a cold.\tJe suis enrhumé.\nI have a date.\tJ'ai un rencard.\nI have a date.\tJ'ai un rendez-vous galant.\nI have a visa.\tJe dispose d'un visa.\nI have a wife.\tJ'ai une femme.\nI have cancer.\tJ'ai un cancer.\nI have doubts.\tJ'ai des doutes.\nI have failed.\tJ'ai échoué.\nI have had it.\tJ'en ai ma claque.\nI have orders.\tJ'ai des ordres.\nI have rights.\tJ'ai des droits.\nI have rights.\tJe dispose de droits.\nI have tenure.\tJe suis titulaire.\nI have to run.\tIl me faut courir.\nI have to run.\tJe dois courir.\nI have to try.\tIl me faut essayer.\nI have to try.\tIl faut que j'essaie.\nI have to win.\tIl faut que je gagne.\nI have to win.\tIl faut que je l'emporte.\nI ignored him.\tJe l'ai ignoré.\nI ignored him.\tJe l'ignorai.\nI just did it.\tJe viens de le faire.\nI just got up.\tJe viens de me lever.\nI just smiled.\tJ'ai simplement souri.\nI kid you not.\tJe ne te raconte pas de craques.\nI kid you not.\tJe ne vous raconte pas de craques.\nI know French.\tJe sais le français.\nI know myself.\tJe me connais.\nI know people.\tJe connais des gens.\nI know things.\tJe sais des choses.\nI let them go.\tJe les ai laissés partir.\nI let them go.\tJe les ai laissées partir.\nI let them go.\tJe les ai laissés s'en aller.\nI let them go.\tJe les ai laissées s'en aller.\nI let them go.\tJe les ai laissés y aller.\nI let them go.\tJe les ai laissées y aller.\nI like French.\tJ'aime le français.\nI like camels.\tJ’aime les chameaux.\nI like cities.\tJ'aime les villes.\nI like clocks.\tJ'aime les montres.\nI like movies.\tJ'aime le cinéma.\nI like my job.\tJ'aime mon travail.\nI like skiing.\tJ'aime le ski.\nI like spring.\tJ'aime le printemps.\nI like sweets.\tJ'aime les sucreries.\nI like to run.\tJ'aime courir.\nI like to run.\tJ'aime faire du jogging.\nI like trains.\tJ'aime les trains.\nI like winter.\tJ'aime l'hiver.\nI like yellow.\tJ'aime le jaune.\nI live nearby.\tJe vis à proximité.\nI live nearby.\tJe vis dans le coin.\nI looked away.\tJ'ai regardé ailleurs.\nI looked down.\tJe baissai les yeux.\nI looked down.\tJ'ai baissé les yeux.\nI lost my dog.\tJ'ai perdu mon chien.\nI lost my dog.\tJe perdis mon chien.\nI lost my key.\tJe perdis la clé.\nI lost my key.\tJe perdis la clef.\nI lost my key.\tJ'ai perdu ma clef.\nI love Arabic.\tJ'adore l'arabe.\nI love Boston.\tJ'adore Boston.\nI love French.\tJ'adore le français.\nI love Monday!\tJ'aime le lundi !\nI love apples.\tJ'adore les pommes.\nI love autumn.\tJ'adore l'automne.\nI love baking.\tJ'adore cuisiner.\nI love camels.\tJ'adore les chameaux.\nI love coffee.\tJ'adore le café.\nI love hiking.\tJ'adore la marche.\nI love hiking.\tJ'adore les excursions.\nI love horses.\tJ'adore les chevaux.\nI love movies.\tJ'adore le cinéma.\nI love my job.\tJ'adore mon boulot.\nI love myself.\tJe m'aime.\nI love nature.\tJ'adore la nature.\nI love poetry.\tJ'adore la poésie.\nI love spring.\tJ'adore le printemps.\nI love summer.\tJ'adore l'été.\nI love winter.\tJ'adore l'hiver.\nI made a deal.\tJ'ai conclu un accord.\nI made a deal.\tJ'ai conclu un contrat.\nI made a deal.\tJ'ai conclu une affaire.\nI made a list.\tJe fis une liste.\nI made a list.\tJ'ai fait une liste.\nI made a list.\tJ'ai dressé une liste.\nI made a list.\tJe dressai une liste.\nI made coffee.\tJ'ai préparé du café.\nI made dinner.\tJ'ai préparé à déjeuner.\nI made dinner.\tJ'ai préparé le déjeuner.\nI made dinner.\tJ'ai préparé à dîner.\nI made dinner.\tJ'ai préparé le dîner.\nI made him go.\tJe l'ai fait partir.\nI miss my cat.\tMon chat me manque.\nI miss my cat.\tMa chatte me manque.\nI miss my mom.\tMa maman me manque.\nI must fix it.\tJe dois le réparer.\nI must go now.\tJe dois partir maintenant.\nI must go out.\tJe dois sortir.\nI must insist.\tIl me faut insister.\nI must insist.\tJe dois insister.\nI must object.\tIl me faut émettre une objection.\nI must object.\tIl me faut formuler une objection.\nI must object.\tJe dois formuler une objection.\nI must object.\tJe dois émettre une objection.\nI must refuse.\tIl me faut refuser.\nI must refuse.\tJe dois refuser.\nI must resist.\tIl me faut résister.\nI nearly died.\tJe suis presque mort.\nI need a crew.\tIl me faut un équipage.\nI need advice.\tJ'ai besoin de conseils.\nI needed help.\tIl me fallut de l'aide.\nI needed help.\tJ'ai eu besoin d'aide.\nI needed help.\tIl m'a fallu de l'aide.\nI never drink.\tJe ne bois jamais.\nI never worry.\tJe ne me fais jamais de souci.\nI ought to go.\tIl me faut y aller.\nI ought to go.\tIl me faut partir.\nI outrank you.\tJe te dépasse.\nI outrank you.\tJe vous dépasse.\nI outrank you.\tJe passe avant toi.\nI outrank you.\tJe passe avant vous.\nI outrank you.\tJ'ai la préséance sur toi.\nI outrank you.\tJ'ai la préséance sur vous.\nI outrank you.\tJ'ai la priorité sur toi.\nI outrank you.\tJ'ai la priorité sur vous.\nI owe you one.\tJe t'en dois une.\nI own a horse.\tJe possède un cheval.\nI own a yacht.\tJe possède un bateau de plaisance.\nI prefer dogs.\tJe préfère les chiens.\nI quit my job.\tJ'ai quitté mon boulot.\nI quit my job.\tJ'ai démissionné de mon boulot.\nI quite agree.\tJe suis tout à fait d'accord.\nI ran outside.\tJe courus dehors.\nI ran outside.\tJ'ai couru à l'extérieur.\nI ran outside.\tQuant à moi, je courus dehors.\nI ran outside.\tQuant à moi, je courus au dehors.\nI remember it.\tJe m'en souviens.\nI remember it.\tJe me le rappelle.\nI rescheduled.\tJ'ai remis.\nI rescheduled.\tJ'ai décalé.\nI rescued her.\tJe l'ai sauvée.\nI rescued him.\tJe l'ai sauvé.\nI rescued you.\tJe t'ai sauvé.\nI rescued you.\tJe t'ai sauvée.\nI rescued you.\tJe vous ai sauvé.\nI rescued you.\tJe vous ai sauvée.\nI rescued you.\tJe vous ai sauvées.\nI rescued you.\tJe vous ai sauvés.\nI resent that.\tÇa me déplaît.\nI respect you.\tJe vous respecte.\nI respect you.\tJe te respecte.\nI said thanks.\tJ'ai dit merci.\nI saw nothing.\tJe n'ai rien vu.\nI saw nothing.\tJe ne vis rien.\nI saw someone.\tJe vis quelqu'un.\nI saw someone.\tJ'ai vu quelqu'un.\nI see a light.\tJe vois une lumière.\nI see a queen.\tJe vois une reine.\nI see the boy.\tJe vois le garçon.\nI should quit.\tJe devrais abandonner.\nI slapped him.\tJe l'ai giflé.\nI slept a lot.\tJ'ai beaucoup dormi.\nI smell bacon.\tIl doit y avoir des poulets dans le coin.\nI smell blood.\tJe flaire le sang.\nI support him.\tJe le soutiens.\nI think I can.\tJe pense pouvoir.\nI told you so.\tJe te l'avais dit !\nI told you so.\tJe vous l'avais dit !\nI told you so.\tJe te l'ai dit !\nI told you so.\tJe vous l'ai dit !\nI took a bath.\tJe pris un bain.\nI took a bath.\tJ'ai pris un bain.\nI tricked you.\tJe t’ai eu.\nI tricked you.\tJe t’ai eue.\nI tried again.\tJ'ai à nouveau essayé.\nI trusted you.\tJe t'ai fait confiance.\nI trusted you.\tJe te fis confiance.\nI use Firefox.\tJ'utilise Firefox.\nI volunteered.\tJe me suis porté volontaire.\nI volunteered.\tJe me suis portée volontaire.\nI walked here.\tJ'ai marché jusqu'ici.\nI want a book.\tJe veux un livre.\nI want a pool.\tJe veux une piscine.\nI want it all.\tJe veux tout.\nI want to cry.\tJ'ai envie de pleurer.\nI want to die.\tJe veux mourir.\nI want to run.\tJe veux courir.\nI want to try.\tJe veux essayer.\nI wanted this.\tJe voulais ceci.\nI was ashamed.\tJ'avais honte.\nI was at home.\tJ'étais à la maison.\nI was at home.\tJ'étais chez moi.\nI was at home.\tJ'étais à l'appartement.\nI was at work.\tJ'étais au travail.\nI was careful.\tJ'étais prudente.\nI was careful.\tJ'ai été prudent.\nI was careful.\tJ'ai été prudente.\nI was curious.\tJ'étais curieuse.\nI was curious.\tJ'étais curieux.\nI was dancing.\tJ'étais en train de danser.\nI was drugged.\tJ'ai été drogué.\nI was drugged.\tJ'ai été droguée.\nI was furious.\tJ'étais furieux.\nI was invited.\tJ'ai été invité.\nI was invited.\tJ'ai été invitée.\nI was kidding.\tJe blaguais.\nI was pleased.\tJ'ai été content.\nI was pleased.\tJ'ai été contente.\nI was relaxed.\tJ'étais détendu.\nI was relaxed.\tJ'étais détendue.\nI was singing.\tJ'étais en train de chanter.\nI was stunned.\tJ'étais scié.\nI was stunned.\tJ'étais sciée.\nI was tempted.\tJ'ai été tenté.\nI was tempted.\tJ'ai été tentée.\nI was too shy.\tJ'étais trop timide.\nI was trapped.\tJ'ai été piégé.\nI was trapped.\tJ'ai été piégée.\nI was unarmed.\tJ'étais sans arme.\nI was worried.\tJ'étais inquiète.\nI wasn't done.\tJe n'en avais pas terminé.\nI wasn't home.\tJe n'étais pas chez moi.\nI wasn't home.\tJe ne me trouvais pas à mon domicile.\nI went aboard.\tJe suis montée à bord.\nI went aboard.\tJe suis monté à bord.\nI went hiking.\tJe suis parti en excursion.\nI went hiking.\tJe suis partie en excursion.\nI went inside.\tJe suis entré.\nI went inside.\tJ'y suis entré.\nI went inside.\tJ'y ai pénétré.\nI will behave.\tJe me tiendrai bien.\nI will return.\tJe reviendrai.\nI woke you up.\tJe t'ai réveillé.\nI woke you up.\tJe vous ai réveillée.\nI woke you up.\tJe vous ai réveillées.\nI woke you up.\tJe vous ai réveillés.\nI woke you up.\tJe vous ai réveillé.\nI woke you up.\tJe t'ai réveillée.\nI work nights.\tJe travaille de nuit.\nI worked hard.\tJe travaillais dur.\nI write poems.\tJ'écris des poèmes.\nI'd better go.\tJe ferais mieux d'y aller.\nI'll allow it.\tJe le permettrai.\nI'll be brief.\tJe serai brève.\nI'll be brief.\tJe serai bref.\nI'll be going.\tJ'irai.\nI'll be ready.\tJe serai prêt.\nI'll be ready.\tJe serai prête.\nI'll be there.\tJ'y serai.\nI'll buy that.\tJ'achèterai ça.\nI'll buy this.\tJe vais acheter celui-ci.\nI'll call him.\tJe vais l'appeler au téléphone.\nI'll call him.\tJe l'appellerai.\nI'll call you.\tJe vous appellerai.\nI'll eat here.\tJe mangerai ici.\nI'll find you.\tJe te trouverai.\nI'll get help.\tJ'obtiendrai de l'aide.\nI'll get lost.\tJe me perdrai.\nI'll get some.\tJ'irai en chercher.\nI'll get them.\tJ'irai les chercher.\nI'll get this.\tJe vais prendre ceci.\nI'll go ahead.\tJ'irai en avant.\nI'll go ahead.\tJe continuerai.\nI'll go check.\tJ'irai vérifier.\nI'll go first.\tJ'irai en premier.\nI'll go first.\tJe vais y aller en premier.\nI'll go first.\tJe passerai en premier.\nI'll help you.\tJe t'aiderai.\nI'll help you.\tJe vous aiderai.\nI'll join you.\tJe me joindrai à toi.\nI'll join you.\tJe me joindrai à vous.\nI'll kill him.\tJe le tuerai.\nI'll kill you.\tJe vais te tuer.\nI'll miss you.\tTu vas me manquer.\nI'll prove it.\tJe le prouverai.\nI'll save you.\tJe te sauverai.\nI'll save you.\tJe vous sauverai.\nI'll show you.\tJe te montrerai.\nI'll stop now.\tJe vais arrêter maintenant.\nI'll take him.\tJe le prends.\nI'll take one.\tJ'en prendrai un.\nI'll take one.\tJ'en prendrai une.\nI'll tell you.\tJe te dirai.\nI'll tell you.\tJe vous dirai.\nI'll try that.\tJ'essayerai ça.\nI'll try that.\tJe tenterai ça.\nI'll warn Tom.\tJe préviendrai Tom.\nI'll watch it.\tJe le regarderai.\nI'm a patient.\tJe suis un patient.\nI'm a patient.\tJe suis une patiente.\nI'm a student.\tJe suis étudiant.\nI'm a teacher.\tJe suis professeur.\nI'm a teacher.\tJe suis enseignante.\nI'm adaptable.\tJe m'adapte.\nI'm afraid so.\tJ'en ai peur.\nI'm all alone.\tJe suis tout seul.\nI'm all right.\tJe vais bien.\nI'm all yours.\tJe suis tout à toi.\nI'm all yours.\tJe suis tout à vous.\nI'm all yours.\tJe suis toute à toi.\nI'm all yours.\tJe suis toute à vous.\nI'm ambitious.\tJe suis ambitieuse.\nI'm ambitious.\tJe suis ambitieux.\nI'm an artist.\tJe suis un artiste.\nI'm an artist.\tJe suis une artiste.\nI'm an orphan.\tJe suis orphelin.\nI'm attentive.\tJe suis attentive.\nI'm attentive.\tJe suis attentif.\nI'm available.\tJe suis disponible.\nI'm beautiful.\tJe suis belle.\nI'm beautiful.\tJe suis beau.\nI'm busy, too.\tJe suis également affairé.\nI'm busy, too.\tJe suis également affairée.\nI'm busy, too.\tJe suis également occupé.\nI'm busy, too.\tJe suis également occupée.\nI'm concerned.\tJe suis préoccupé.\nI'm concerned.\tJe suis préoccupée.\nI'm confident.\tJ'ai confiance.\nI'm contented.\tMe voilà satisfait.\nI'm contented.\tMe voilà satisfaite.\nI'm convinced.\tJ'en suis convaincu.\nI'm depressed.\tJe suis déprimé.\nI'm desperate.\tJe suis désespéré.\nI'm desperate.\tJe suis désespérée.\nI'm different.\tJe suis différente.\nI'm disgusted.\tJe suis dégoûté.\nI'm disgusted.\tJe suis dégoûtée.\nI'm easygoing.\tJe suis facile à vivre.\nI'm exhausted.\tJe suis épuisée.\nI'm exhausted.\tJe suis épuisé.\nI'm exhausted.\tJe suis vanné.\nI'm exhausted.\tJe suis vannée.\nI'm exhausted.\tJe suis fourbu.\nI'm exhausted.\tJe suis crevé.\nI'm exhausted.\tJe suis crevée.\nI'm forgetful.\tJe suis distrait.\nI'm forgetful.\tJe suis distraite.\nI'm forgetful.\tJe suis étourdi.\nI'm forgetful.\tJe suis étourdie.\nI'm home, Tom.\tJe suis chez moi, Tom.\nI'm hung over.\tJ'ai mal au cœur.\nI'm impatient.\tJe suis impatient.\nI'm impatient.\tJe suis impatiente.\nI'm important.\tJe suis important.\nI'm impressed.\tJe suis impressionnée.\nI'm impulsive.\tJe suis impulsif.\nI'm impulsive.\tJe suis impulsive.\nI'm in Boston.\tJe suis à Boston.\nI'm in danger.\tJe suis en danger.\nI'm intrigued.\tJe suis intrigué.\nI'm intrigued.\tJe suis intriguée.\nI'm intrigued.\tCela m'intrigue.\nI'm just lazy.\tJe suis juste paresseux.\nI'm just lazy.\tJe suis juste paresseuse.\nI'm listening.\tJ'écoute.\nI'm motivated.\tJe suis motivée.\nI'm motivated.\tJe suis motivé.\nI'm no expert.\tJe ne suis pas un expert.\nI'm not a cop.\tJe ne suis pas flic.\nI'm not a fan.\tJe ne fais pas partie de ses admirateurs.\nI'm not a fan.\tJe ne fais pas partie de leurs admirateurs.\nI'm not alone.\tJe ne suis pas seul.\nI'm not alone.\tJe ne suis pas seule.\nI'm not angry!\tJe ne suis pas en colère !\nI'm not angry.\tJe ne suis pas en colère.\nI'm not armed.\tJe ne suis pas armé.\nI'm not armed.\tJe ne suis pas armée.\nI'm not blind.\tJe ne suis pas aveugle.\nI'm not crazy.\tJe ne suis pas fou.\nI'm not crazy.\tJe ne suis pas folle.\nI'm not dying.\tJe ne suis pas en train de mourir.\nI'm not going.\tJe n'y vais pas.\nI'm not going.\tJe ne m'y rends pas.\nI'm not going.\tJe ne m'en vais pas.\nI'm not happy.\tJe ne suis pas content.\nI'm not happy.\tJe ne suis pas heureux.\nI'm not happy.\tJe ne suis pas heureuse.\nI'm not happy.\tJe ne suis pas contente.\nI'm not lying.\tJe ne suis pas en train de mentir.\nI'm not naive.\tJe ne suis pas naïf.\nI'm not naive.\tJe ne suis pas naïve.\nI'm not obese.\tJe ne suis pas obèse.\nI'm not ready.\tJe ne suis pas prêt.\nI'm not ready.\tJe ne suis pas prête.\nI'm not short.\tJe ne suis pas petite.\nI'm not tired.\tJe ne suis pas fatigué.\nI'm not tired.\tJe ne suis pas fatiguée.\nI'm not young.\tJe ne suis pas jeune.\nI'm observant.\tJe suis observateur.\nI'm observant.\tJe suis observatrice.\nI'm observant.\tJe suis respectueux.\nI'm observant.\tJe suis respectueuse.\nI'm on a diet.\tJe suis au régime.\nI'm on my way.\tJe suis en chemin.\nI'm on my way.\tJe suis en route.\nI'm plastered.\tJe suis bourré.\nI'm powerless.\tJe suis désarmé.\nI'm powerless.\tJe suis désarmée.\nI'm realistic.\tJe suis réaliste.\nI'm resentful.\tJ'éprouve du ressentiment.\nI'm resilient.\tJe suis endurant.\nI'm resilient.\tJe suis endurante.\nI'm resilient.\tJe suis tenace.\nI'm satisfied.\tJe suis satisfait.\nI'm saying no.\tJe dis non.\nI'm sensitive.\tJe suis sensible.\nI'm so hungry.\tJ'ai tellement faim.\nI'm surprised.\tJe suis surpris.\nI'm surprised.\tJe suis surprise.\nI'm surviving.\tJe survis.\nI'm terrified.\tJe suis terrifié.\nI'm terrified.\tJe suis terrifiée.\nI'm tired now.\tJe suis fatigué maintenant.\nI'm too drunk.\tJe suis trop saoul.\nI'm uninsured.\tJe ne suis pas assuré.\nI'm uninsured.\tJe ne suis pas assurée.\nI'm unmarried.\tJe suis célibataire.\nI'm very cold.\tJ'ai très froid.\nI'm very poor.\tJe suis très pauvre.\nI'm voting no.\tJe vote non.\nI'm your boss.\tJe suis votre chef.\nI'm your boss.\tJe suis ton chef.\nI've finished.\tJ'ai terminé.\nI've finished.\tJ'ai fini.\nI've found it.\tJe l'ai trouvé !\nI've got eyes.\tJ'ai des yeux.\nI've got eyes.\tJe suis pourvu d'yeux.\nI've got eyes.\tJe suis doté d'yeux.\nIs Tom around?\tTom est-il dans les parages ?\nIs Tom around?\tTom est-il dans les environs ?\nIs he at home?\tEst-il à la maison ?\nIs he at home?\tEst-il chez lui ?\nIs he correct?\tA-t-il raison ?\nIs he looking?\tEst-il en train de regarder ?\nIs he looking?\tRegarde-t-il ?\nIs it damaged?\tEst-ce endommagé ?\nIs it genuine?\tEst-ce véritable ?\nIs it helping?\tEst-ce que ça aide ?\nIs it my turn?\tC'est mon tour ?\nIs it my turn?\tEst-ce mon tour ?\nIs it painful?\tEst-ce douloureux ?\nIs it raining?\tPleut-il ?\nIs it serious?\tC'est grave ?\nIs it serious?\tEst-ce sérieux ?\nIs it too big?\tEst-ce trop grand ?\nIs that a bat?\tS'agit-il d'une chauve-souris ?\nIs that a cat?\tEst-ce que c'est un chat ?\nIs that right?\tEn est-il ainsi ?\nIs that right?\tEst-ce le cas ?\nIs that right?\tEst-ce exact ?\nIs that yours?\tEst-ce à vous ?\nIs that yours?\tEst-ce le vôtre ?\nIs this legal?\tEst-ce légal ?\nIs this legal?\tEst-ce licite ?\nIs this yours?\tEst-ce que c'est le tien ?\nIs this yours?\tEst-ce que c'est à toi ?\nIsn't it nice?\tN'est-ce pas gentil ?\nIsn't it nice?\tN'est-ce pas sympa ?\nIsn't it true?\tN'est-ce pas vrai ?\nIt came apart.\tC'est cassé.\nIt can't wait.\tÇa ne peut pas attendre.\nIt feels good.\tÇa fait du bien.\nIt gets worse.\tÇa empire.\nIt gets worse.\tÇa s'aggrave.\nIt had snowed.\tIl avait neigé.\nIt hurts here.\tJ'ai mal ici.\nIt hurts here.\tÇa fait mal ici.\nIt is a curse.\tC'est une malédiction.\nIt is no joke.\tCe n'est pas une blague.\nIt is snowing.\tIl neige.\nIt is the law.\tC'est la loi.\nIt is too hot.\tIl fait trop chaud.\nIt looks fine.\tÇa a l'air au poil.\nIt looks good.\tÇa a l'air bien.\nIt looks good.\tÇa a l'air bon.\nIt looks nice.\tÇa a l'air bien.\nIt made sense.\tC'était logique.\nIt made sense.\tÇa avait du sens.\nIt sickens me.\tÇa me rend malade.\nIt smells bad.\tÇa sent mauvais.\nIt smells bad.\tÇa pue.\nIt takes time.\tCela prend du temps.\nIt was a gift.\tC'était un cadeau.\nIt was a mess.\tC'était la pagaille.\nIt was a mess.\tC'était le bordel.\nIt was a test.\tC'était un test.\nIt was a test.\tC'était un examen.\nIt was boring.\tC'était barbant.\nIt was broken.\tC'était cassé.\nIt was broken.\tIl était cassé.\nIt was simple.\tC'était simple.\nIt was superb.\tCe fut magnifique.\nIt was superb.\tÇa a été magnifique.\nIt wasn't him.\tCe n'était pas lui.\nIt went viral.\tC'est devenu une épidémie.\nIt went viral.\tCela devint une épidémie.\nIt won't hurt.\tCela ne va pas faire mal.\nIt won't hurt.\tÇa ne fera pas mal.\nIt won't work.\tÇa ne marchera pas.\nIt works fine.\tÇa marche bien.\nIt works well.\tÇa fonctionne bien.\nIt works well.\tÇa marche bien.\nIt'll be easy.\tÇa va être facile.\nIt'll be easy.\tÇa sera facile.\nIt'll go away.\tÇa s'évanouira.\nIt's a parody.\tC'est une parodie.\nIt's a relief.\tC'est un soulagement.\nIt's a rental.\tC'est une location.\nIt's a rental.\tIl s'agit d'une location.\nIt's a sequel.\tC'en est une suite.\nIt's a weapon.\tIl s'agit d'une arme.\nIt's adorable.\tC'est adorable.\nIt's all gone.\tTout a disparu.\nIt's all here.\tTout est ici.\nIt's all mine.\tTout est à moi.\nIt's all over.\tC'est complètement fini.\nIt's all over.\tC'est complètement terminé.\nIt's all true.\tTout est vrai.\nIt's business.\tCe sont les affaires.\nIt's close by.\tC'est proche.\nIt's close by.\tC'est à proximité.\nIt's exciting.\tC'est excitant.\nIt's exciting.\tC'est passionnant.\nIt's exciting.\tC’est grisant.\nIt's fall now.\tC'est l'automne, maintenant.\nIt's for free.\tC'est gratuit.\nIt's gorgeous.\tC'est superbe.\nIt's instinct.\tC'est l'instinct.\nIt's midnight.\tIl est minuit.\nIt's my treat.\tC'est pour moi.\nIt's my treat.\tC'est ma tournée.\nIt's not cool.\tCe n'est pas sympa.\nIt's not easy.\tCe n'est pas facile.\nIt's not fair.\tCe n'est pas équitable.\nIt's not fake.\tCe n'est pas du chiqué.\nIt's not hard.\tCe n'est pas difficile.\nIt's not here.\tCe n'est pas ici.\nIt's not mine.\tCe n'est pas le mien.\nIt's not mine.\tCe n'est pas la mienne.\nIt's not mine.\tCe n'est pas à moi.\nIt's not real.\tCe n'est pas vrai.\nIt's not safe.\tCe n'est pas sûr.\nIt's not true.\tCe n'est pas vrai.\nIt's obsolete.\tC'est dépassé.\nIt's occupied.\tC'est occupé.\nIt's our duty.\tC'est notre devoir.\nIt's outdated.\tC'est vieillot.\nIt's outdated.\tC'est dépassé.\nIt's outdated.\tC'est démodé.\nIt's outdated.\tC'est obsolète.\nIt's pathetic.\tC'est minable.\nIt's personal.\tC'est personnel.\nIt's so clean.\tC'est tellement propre.\nIt's stealing.\tC'est un vol.\nIt's stealing.\tIl s'agit d'un vol.\nIt's suicidal.\tC'est suicidaire.\nIt's terrible.\tC'est terrible !\nIt's terrible.\tC'est terrible.\nIt's the cops!\tCe sont les flics !\nIt's too cold.\tIl fait trop froid.\nIt's too dark.\tIl fait trop sombre.\nIt's too easy.\tC'est trop facile.\nIt's too late.\tIl est trop tard.\nIt's too late.\tC'est trop tard.\nIt's too loud.\tC'est trop fort.\nIt's too thin.\tC'est trop fin.\nIt's too thin.\tC'est trop ténu.\nIt's unlikely.\tC'est improbable.\nIt's unlocked.\tC'est déverrouillé.\nIt's upstairs.\tC'est à l'étage au-dessus.\nIt's very dry.\tC'est très sec.\nIt's very dry.\tIl fait très sec.\nIt's very low.\tC'est très bas.\nIt's worth it.\tCela en vaut la peine.\nI’m falling.\tJe tombe.\nJust a minute.\tJuste une minute.\nJust a minute.\tUne minute.\nJust be quiet.\tSois simplement calme.\nJust leave it.\tLaisse-le.\nJust leave it.\tLaisse-la.\nJust trust me.\tFais-moi juste confiance !\nJust trust me.\tFaites-moi juste confiance !\nJust trust me.\tFie-toi juste à moi !\nJust trust me.\tFiez-vous juste à moi !\nKeep in touch!\tRestons en contact !\nKeep in touch.\tReste en contact.\nKeep in touch.\tRestons en contact !\nLearn Italian.\tApprends l'italien.\nLet Tom sleep.\tLaisse Tom dormir.\nLet Tom sleep.\tLaissez Tom dormir.\nLet her sleep.\tLaisse-la dormir.\nLet her sleep.\tLaissez-la dormir.\nLet me finish.\tLaisse-moi finir.\nLet me see it.\tLaisse-moi le voir.\nLet me see it.\tLaisse-moi la voir.\nLet me see it.\tLaisse-moi les voir.\nLet me see it.\tLaissez-moi le voir.\nLet me see it.\tLaissez-moi la voir.\nLet me see it.\tLaissez-moi les voir.\nLet me try it.\tLaisse-moi essayer.\nLet's ask him.\tAllons lui demander.\nLet's ask him.\tDemandons-lui !\nLet's do this.\tFaisons ça.\nLet's drop it.\tLaissons tomber.\nLet's drop it.\tOublions.\nLet's go away.\tAllons-nous-en !\nLet's go, Tom.\tAllons-y, Tom.\nLife is crazy.\tLa vie est dingue.\nLife is short.\tLa vie est courte.\nLife is short.\tLa vie est brève.\nLife is sweet.\tLa vie est douce.\nLock the door!\tVerrouille la porte !\nLock the door!\tVerrouillez la porte !\nLock the door.\tVerrouille la porte.\nLock the door.\tVerrouille la porte !\nLock the door.\tVerrouillez la porte !\nLook up there.\tRegarde là-haut.\nLook up there.\tRegardez là-haut.\nLove is blind.\tL'amour est aveugle.\nLuck is blind.\tLa chance est aveugle.\nMake a choice.\tFais un choix !\nMake a choice.\tFaites un choix !\nMake it quick.\tFais vite !\nMake it quick.\tFaites vite !\nMake your bed.\tFais ton lit !\nMake your bed.\tFaites votre lit !\nMan is mortal.\tL'homme est mortel.\nMary is weird.\tMarie est bizarre.\nMay I ask why?\tPuis-je demander pourquoi ?\nMay I come in?\tPuis-je entrer ?\nMay I come in?\tJe peux entrer ?\nMay I come in?\tPuis-je entrer ?\nMay I go home?\tPuis-je aller à la maison ?\nMay I go home?\tPuis-je me rendre à la maison ?\nMay I go home?\tPuis-je aller chez moi ?\nMen never cry.\tLes hommes ne pleurent jamais.\nMy dog ate it.\tMon chien l'a bouffé.\nMy foot hurts.\tMon pied me fait mal.\nMy foot hurts.\tMon pied est douloureux.\nMy name's Tom.\tMon nom est Tom.\nNever give up.\tN'abandonne jamais.\nNo one saw me.\tPersonne ne me vit.\nNo one saw us.\tPersonne ne nous a vus.\nNo one saw us.\tPersonne ne nous a vues.\nNo one's here.\tPersonne n'est ici.\nNo one's home.\tPersonne n'est chez lui.\nNo one's home.\tPersonne n'est à la maison.\nNo, he didn't.\tNon, il ne l'a pas fait.\nNo, you can't.\tNon, tu ne peux pas.\nNo, you can't.\tNon, vous ne pouvez pas.\nNobody got up.\tPersonne ne s'est levé.\nNobody saw me.\tPersonne ne me vit.\nNobody's busy.\tPersonne n'est occupé.\nNow means now.\tMaintenant veut dire maintenant.\nOh, I'm sorry.\tOh, je suis désolée.\nOpen the door.\tOuvre la porte.\nOpen the door.\tOuvre la porte !\nOpen the door.\tOuvrez la porte !\nOpen the safe.\tOuvre le coffre !\nOpen the safe.\tOuvrez le coffre !\nOur team lost.\tNotre équipe a perdu.\nOur team lost.\tNotre équipe perdit.\nOut of my way!\tHors de mon chemin !\nPick a number.\tChoisis un nombre !\nPick a number.\tChoisissez un nombre !\nPick a weapon.\tChoisis une arme !\nPick a weapon.\tChoisissez une arme !\nPlease fix it.\tVeuillez le réparer.\nPlease get in.\tEntrez s'il vous plaît.\nQuit gambling.\tArrête de jouer.\nQuit gambling.\tArrêtez de jouer.\nRead after me.\tLis après moi.\nRead after me.\tLisez après moi.\nRead it to me.\tLisez-le-moi !\nRead it to me.\tLis-le-moi !\nRead it to me.\tLis-la-moi !\nRead it to me.\tLisez-la-moi !\nRead this now.\tLis ça maintenant !\nRead this now.\tLisez ça maintenant !\nRed is better.\tLe rouge est mieux.\nRed is better.\tRouge, c'est mieux.\nRest in peace.\tRepose en paix.\nRing the bell.\tSonne la cloche.\nRing the bell.\tSonnez la cloche.\nSave yourself.\tSauve-toi !\nSave yourself.\tSauvez-vous !\nSee you again.\tÀ plus.\nSee you later.\tOn se voit plus tard.\nSee you there.\tRendez-vous là-bas.\nShall I begin?\tEst-ce que je commence ?\nShe avoids me.\tElle m'évite.\nShe came last.\tElle est arrivée dernière.\nShe can skate.\tElle sait patiner.\nShe can't ski.\tElle ne sait pas skier.\nShe could die.\tIl se pourrait qu'elle meure.\nShe dumped me.\tElle m'a plaqué.\nShe dumped me.\tElle m'a laissé tomber.\nShe got angry.\tElle s'est mise en colère.\nShe had twins.\tElle eut des jumeaux.\nShe had twins.\tElle a eu des jumeaux.\nShe hated him.\tElle le haïssait.\nShe hates him.\tElle le hait.\nShe hates him.\tElle le déteste.\nShe hired him.\tElle l'a embauché.\nShe is French.\tElle est française.\nShe is a twin.\tC'est une jumelle.\nShe is a twin.\tElle est jumelle.\nShe is active.\tElle est active.\nShe is crying.\tElle pleure.\nShe is crying.\tElle est en train de pleurer.\nShe is gentle.\tElle est gentille.\nShe is strong.\tElle est forte.\nShe just left.\tElle vient juste de partir.\nShe just left.\tElle vient de partir.\nShe likes him.\tElle l'aime.\nShe looks sad.\tElle paraît triste.\nShe loves Tom.\tElle est amoureuse de Tom.\nShe loves him.\tElle l'aime.\nShe needs you.\tElle a besoin de toi.\nShe needs you.\tElle a besoin de vous.\nShe obeys him.\tElle lui obéit.\nShe overslept.\tElle n'a pas entendu le réveil.\nShe seems sad.\tElle a l'air triste.\nShe wants him.\tElle le veut.\nShe was brave.\tElle était brave.\nShe was livid.\tElle était livide.\nShe was lying.\tElle était en train de mentir.\nShe was naive.\tElle était crédule.\nShe was naive.\tElle était naïve.\nShe went home.\tElle est rentrée chez elle.\nShe's a cutie.\tC'est une beauté.\nShe's a model.\tC'est un mannequin.\nShe's a model.\tElle est mannequin.\nShe's awesome.\tElle est super.\nShe's dieting.\tElle fait un régime.\nShe's my type.\tElle est mon genre.\nShould I come?\tDevrais-je venir ?\nShould I wait?\tDevrais-je attendre ?\nShow it to me.\tMontrez-le-moi.\nShow it to me.\tMontrez-la-moi.\nShow it to us.\tMontre-le-nous !\nShow yourself.\tMontre-toi !\nShow yourself.\tMontrez-vous !\nShut the door.\tFermez la porte.\nShut the door.\tFerme la porte.\nShut the door.\tFerme la porte !\nShut the door.\tFermez la porte !\nSit near here.\tAssieds-toi près d'ici !\nSpeak clearly.\tParle distinctement.\nSpeak clearly.\tParle clairement.\nSpeak quietly.\tParle doucement.\nSpeak quietly.\tParle à voix basse.\nStart running.\tCommence à courir.\nStart running.\tCommencez à courir.\nStart the car.\tDémarre la voiture !\nStart the car.\tDémarrez la voiture !\nStart writing.\tCommence à écrire.\nStart writing.\tCommencez à écrire.\nStay a moment.\tReste un moment !\nStay a moment.\tRestez un moment !\nStay positive.\tReste positif !\nStay positive.\tReste positive !\nStay together.\tRestez ensemble.\nStir the soup.\tMélange la soupe.\nStir the soup.\tTouille la soupe !\nStir the soup.\tTouillez la soupe !\nStop frowning.\tArrête de froncer les sourcils !\nStop shooting.\tArrête de tirer.\nStop shooting.\tArrêtez de tirer.\nStop that now.\tArrête ça maintenant.\nStop that now.\tArrêtez ça maintenant.\nStop worrying.\tArrête de t'inquiéter.\nStop worrying.\tArrêtez de vous inquiéter.\nStraighten up.\tTiens-toi droit.\nStraighten up.\tRedresse-toi.\nStuff happens.\tDes trucs arrivent.\nSuit yourself.\tFais comme tu veux.\nTake a breath.\tInspire !\nTake a breath.\tInspirez !\nTake a chance.\tEssaie !\nTake a chance.\tEssayez !\nTake a cookie.\tPrends un biscuit !\nTake a number.\tPrends un numéro !\nTake a number.\tPrenez un numéro !\nTake a shower.\tPrends une douche !\nTake a shower.\tPrenez une douche !\nThanks a heap.\tDes tonnes de mercis !\nThanks anyway.\tMerci tout de même.\nThat meant no.\tÇa voulait dire non.\nThat meant no.\tÇa signifiait non.\nThat suits me.\tÇa m'arrange.\nThat was cool.\tC'était super.\nThat was cool.\tC'était cool.\nThat was easy.\tC'était facile.\nThat was mean.\tC'était méchant.\nThat was ours.\tC'était le nôtre.\nThat was ours.\tC'était la nôtre.\nThat was ours.\tC'était à nous.\nThat's a book.\tC'est un livre.\nThat's a copy.\tC'est une copie.\nThat's a doll.\tC'est une poupée.\nThat's a fact.\tC'est un fait.\nThat's a fake.\tC'est un faux.\nThat's a joke.\tC'est une blague.\nThat's a joke.\tIl s'agit d'une blague.\nThat's a myth.\tIl s'agit d'un mythe.\nThat's a myth.\tC'est un mythe.\nThat's a plan.\tC'est un plan.\nThat's a plan.\tVoilà un plan.\nThat's a tree.\tC’est un arbre.\nThat's clever.\tC'est astucieux.\nThat's enough.\tÇa suffit !\nThat's enough.\tC'en est assez !\nThat's enough.\tArrête !\nThat's enough.\tCela suffit.\nThat's enough.\tÇa suffit.\nThat's enough.\tC'est suffisant.\nThat's lovely.\tC'est adorable.\nThat's lovely.\tC'est ravissant.\nThat's lovely.\tC'est charmant.\nThat's my boy.\tC'est mon garçon.\nThat's my car.\tC'est ma voiture.\nThat's my car.\tC'est ma bagnole.\nThat's my cat.\tC'est mon chat.\nThat's my cat.\tC'est ma chatte.\nThat's my cat.\tIl s'agit de mon chat.\nThat's my dog.\tC'est mon chien.\nThat's normal.\tC'est normal.\nThat's simple.\tC'est simple.\nThat's so rad.\tC'est tellement dément !\nThat's stupid.\tC'est bête.\nThat's stupid.\tC'est con.\nThat's stupid.\tC'est idiot.\nThat's stupid.\tC'est stupide.\nThat's unfair.\tC'est injuste.\nThat's untrue.\tC'est faux.\nThe girls won.\tLes filles gagnèrent.\nThe girls won.\tLes filles l'emportèrent.\nThe girls won.\tLes filles l'ont emporté.\nThe girls won.\tLes filles ont gagné.\nThere is hope.\tIl y a de l'espoir.\nThere you are.\tTu y es !\nThere you are.\tVous y êtes !\nThere you are.\tT'y voici.\nThere you are.\tVous y voici.\nThey all died.\tIls sont tous morts.\nThey all died.\tElles sont toutes mortes.\nThey all knew.\tIls savaient tous.\nThey all knew.\tElles savaient toutes.\nThey all know.\tIls savent tous.\nThey all know.\tElles savent toutes.\nThey are here.\tIls sont là.\nThey canceled.\tIls ont annulé.\nThey canceled.\tElles ont annulé.\nThey embraced.\tIls se sont embrassés.\nThey found it.\tIls l'ont trouvé.\nThey found it.\tElles l'ont trouvé.\nThey found it.\tIls le trouvèrent.\nThey found it.\tElles le trouvèrent.\nThey found us.\tIls nous ont trouvés.\nThey found us.\tIls nous ont trouvées.\nThey found us.\tElles nous ont trouvés.\nThey found us.\tElles nous ont trouvées.\nThey know him.\tIls le connaissent.\nThey look sad.\tIls ont l'air triste.\nThey look sad.\tElles ont l'air triste.\nThey love Tom.\tIls aiment Tom.\nThey love Tom.\tElles aiment Tom.\nThey need him.\tIls ont besoin de lui.\nThey need him.\tElles ont besoin de lui.\nThey said yes.\tElles ont dit oui.\nThey said yes.\tIls ont dit oui.\nThey saved us.\tIls nous ont sauvés.\nThey saved us.\tElles nous ont sauvés.\nThey're Asian.\tIls sont asiatiques.\nThey're Asian.\tElles sont asiatiques.\nThey're alive.\tIls sont en vie.\nThey're angry.\tIls sont en colère.\nThey're angry.\tElles sont en colère.\nThey're armed.\tIls sont armés.\nThey're armed.\tElles sont armées.\nThey're awake.\tIls sont éveillés.\nThey're awake.\tElles sont éveillées.\nThey're brave.\tIls sont courageux.\nThey're brave.\tElles sont courageuses.\nThey're brave.\tIls n'ont pas froid aux yeux.\nThey're broke.\tIls sont fauchés.\nThey're broke.\tElles sont fauchées.\nThey're clean.\tIls sont propres.\nThey're clean.\tElles sont propres.\nThey're crazy.\tIls sont fous.\nThey're crazy.\tElles sont folles.\nThey're drunk.\tIls sont saouls.\nThey're drunk.\tElles sont saoules.\nThey're dying.\tIls sont en train de mourir.\nThey're dying.\tElles sont en train de mourir.\nThey're early.\tIls sont en avance.\nThey're early.\tElles sont en avance.\nThey're happy.\tElles sont heureuses.\nThey're lying.\tIls mentent.\nThey're lying.\tElles mentent.\nThey're small.\tIls sont petits.\nThey're small.\tElles sont petites.\nThey're spies.\tCe sont des espions.\nThey're spies.\tCe sont des espionnes.\nThey're there.\tIls sont là.\nThey're tired.\tIls sont fatigués.\nThey're tired.\tElles sont fatiguées.\nThey're wrong.\tIls ont tort !\nThis is Italy.\tC'est l'Italie.\nThis is Japan.\tCeci est le Japon.\nThis is a DVD.\tC'est un DVD.\nThis is a DVD.\tCeci est un DVD.\nThis is a dog.\tC'est un chien.\nThis is a map.\tCeci est une carte.\nThis is a pen.\tC'est un stylo à encre.\nThis is a pun.\tC’est un jeu de mots.\nThis is a wig.\tC'est une perruque.\nThis is awful.\tC'est affreux.\nThis is cheap.\tC'est bon marché.\nThis is crazy.\tC'est fou.\nThis is crazy.\tC'est dingue.\nThis is funny.\tC'est drôle.\nThis is great.\tC'est super.\nThis is my CD.\tC'est mon CD.\nThis is silly.\tC'est idiot !\nThis is sweet.\tC'est gentil.\nThis is sweet.\tC'est sucré.\nThis is weird.\tC'est bizarre.\nThis is yours.\tC'est le tien.\nThis is yours.\tC'est le vôtre.\nThis is yours.\tIl s'agit du tien.\nThis is yours.\tIl s'agit du vôtre.\nTie your shoe.\tNoue ta chaussure.\nTie your shoe.\tNoue ton lacet.\nTie your shoe.\tNoue ton lacet de chaussure.\nTie your shoe.\tAttache ton lacet.\nTie your shoe.\tAttache ton lacet de chaussure.\nTie your shoe.\tNouez votre lacet de chaussure.\nTie your shoe.\tNouez votre lacet.\nTie your shoe.\tAttachez votre lacet.\nTie your shoe.\tAttachez votre lacet de chaussure.\nTie your shoe.\tNouez votre chaussure.\nTime is money.\tLe temps, c'est de l'argent.\nTom can do it.\tTom peut le faire.\nTom can't ski.\tTom ne sait pas skier.\nTom disagreed.\tTom était en désaccord.\nTom disagreed.\tTom n'était pas d'accord.\nTom got stuck.\tTom est resté coincé.\nTom has a dog.\tTom a un chien.\nTom hesitated.\tTom a hésité.\nTom hesitated.\tTom hésita.\nTom is OK now.\tThomas est OK maintenant.\nTom is boring.\tTom est ennuyeux.\nTom is chubby.\tTom est dodu.\nTom is chubby.\tTom est grassouillet.\nTom is eating.\tTom est en train de manger.\nTom is guilty.\tTom est coupable.\nTom is hiding.\tTom se cache.\nTom is in bed.\tTom est au lit.\nTom is voting.\tTom vote.\nTom is voting.\tTom est en train de voter.\nTom is vulgar.\tTom est vulgaire.\nTom is vulgar.\tTom est grossier.\nTom just died.\tTom vient de mourir.\nTom let us go.\tTom nous a laissé partir.\nTom let us go.\tTom nous laissa partir.\nTom lost hope.\tTom a perdu espoir.\nTom loves you.\tTom vous aime.\nTom missed it.\tÇa manquait à Tom.\nTom overslept.\tTom s'est réveillé trop tard.\nTom runs fast.\tTom court vite.\nTom walked in.\tTom entra.\nTom was alive.\tTom était vivant.\nTom was cruel.\tTom était cruel.\nTom was cruel.\tTom a été cruel.\nTom was dying.\tTom était en train de mourir.\nTom was scary.\tTom était effrayant.\nTom was third.\tTom était troisième.\nTom was third.\tTom a été troisième.\nTom was upset.\tTom était contrarié.\nTom went pale.\tTom a pâli.\nTom won't eat.\tTom ne mangera pas.\nTom's adopted.\tTom est adopté.\nTom's arrived.\tTom est arrivé.\nTom's cooking.\tTom cuisine.\nTom's excited.\tTom est excité.\nTom's healthy.\tTom est en bonne santé.\nTom's helping.\tTom aide.\nTom's married.\tTom est marié.\nTom's unarmed.\tTom n’est pas armé.\nTom's violent.\tTom est violent.\nTom's working.\tTom est en train de travailler.\nTom's wounded.\tTom est blessé.\nWait a minute.\tAttends une minute.\nWait a minute.\tUn instant...\nWait a second.\tAttends une seconde !\nWait a second.\tAttendez une seconde !\nWait till six.\tAttends jusqu'à six heures.\nWait till six.\tAttendez jusqu'à six heures.\nWait till six.\tAttends jusqu'à dix-huit heures.\nWait till six.\tAttendez jusqu'à dix-huit heures.\nWalk this way.\tVenez par ici !\nWalk this way.\tPar ici !\nWas I snoring?\tÉtais-je en train de ronfler ?\nWas Tom there?\tTom était-il là ?\nWas that a no?\tÉtait-ce un non ?\nWatch closely.\tRegarde de près !\nWatch closely.\tRegardez de près !\nWatch my back.\tSurveille mes arrières !\nWe admire you.\tNous t'admirons.\nWe all agreed.\tNous sommes tous tombés d'accord.\nWe all agreed.\tNous sommes toutes tombées d'accord.\nWe all change.\tNous changeons tous.\nWe all change.\tNous changeons toutes.\nWe are at war.\tNous sommes en guerre.\nWe are doomed.\tNous sommes condamnés.\nWe can try it.\tNous pouvons essayer.\nWe can try it.\tNous pouvons l'essayer.\nWe can't fail.\tNous ne pouvons pas échouer.\nWe can't lose.\tNous ne pouvons par perdre.\nWe caught you.\tNous t'avons attrapé.\nWe caught you.\tNous t'avons attrapée.\nWe caught you.\tNous vous avons attrapé.\nWe caught you.\tNous vous avons attrapés.\nWe caught you.\tNous vous avons attrapée.\nWe caught you.\tNous vous avons attrapées.\nWe could read.\tNous pourrions lire.\nWe could read.\tNous pouvions lire.\nWe could wait.\tNous pourrions attendre.\nWe could walk.\tNous pourrions marcher.\nWe don't know.\tNous ne savons pas.\nWe have to go.\tIl nous faut partir.\nWe have to go.\tIl nous faut y aller.\nWe kept quiet.\tNous restâmes silencieux.\nWe meant well.\tNos intentions étaient bonnes.\nWe met before.\tNous nous sommes rencontrés auparavant.\nWe met before.\tNous nous sommes rencontrées auparavant.\nWe missed you.\tTu nous as manqué.\nWe missed you.\tVous nous avez manqué.\nWe must check.\tIl nous faut vérifier.\nWe must focus.\tIl nous faut nous focaliser.\nWe must hurry.\tIl nous faut nous dépêcher.\nWe must leave.\tIl nous faut partir.\nWe must speak.\tIl nous faut parler.\nWe must speak.\tIl nous faut nous parler.\nWe need a car.\tNous avons besoin d'une voiture.\nWe need a car.\tIl nous faut une voiture.\nWe need a map.\tIl nous faut une carte.\nWe need money.\tNous avons besoin d'argent.\nWe need proof.\tIl nous faut des preuves.\nWe need rules.\tIl nous faut des règles.\nWe need sleep.\tIl nous faut du sommeil.\nWe need to go.\tNous devons y aller.\nWe need to go.\tNous devons partir.\nWe need to go.\tIl nous faut partir.\nWe need to go.\tIl nous faut y aller.\nWe need to go.\tIl nous faut nous en aller.\nWe need to go.\tNous devons nous en aller.\nWe need tools.\tNous avons besoin d'outils.\nWe need water.\tIl nous faut de l'eau.\nWe need water.\tNous avons besoin d'eau.\nWe never lose.\tNous ne perdons jamais.\nWe should eat.\tNous devrions manger.\nWe took a cab.\tNous avons pris un taxi.\nWe understand.\tNous comprenons.\nWe want candy.\tNous voulons des bonbons.\nWe want peace.\tNous voulons la paix.\nWe want to go.\tNous voulons nous en aller.\nWe want to go.\tNous voulons y aller.\nWe wanted you.\tNous te voulions.\nWe wanted you.\tNous vous voulions.\nWe were bored.\tNous nous ennuyions.\nWe were lucky.\tNous étions chanceux.\nWe were right.\tNous avions raison.\nWe were right.\tNous eûmes raison.\nWe will fight.\tNous combattrons.\nWe wonder why.\tOn se demande pourquoi.\nWe'll all die.\tNous mourrons tous !\nWe'll both go.\tNous irons tous les deux.\nWe'll explain.\tNous expliquerons.\nWe'll find it.\tOn va le trouver.\nWe'll find it.\tOn va la trouver.\nWe'll rebuild.\tNous reconstruirons.\nWe'll respond.\tNous allons répondre.\nWe'll succeed.\tNous réussirons.\nWe'll survive.\tNous survivrons.\nWe're a group.\tNous formons un groupe.\nWe're anxious.\tNous sommes anxieux.\nWe're ashamed.\tNous avons honte.\nWe're baffled.\tNous sommes perplexes.\nWe're careful.\tNous sommes prudents.\nWe're careful.\tNous sommes prudentes.\nWe're certain.\tNous sommes certains.\nWe're certain.\tNous sommes certaines.\nWe're cousins.\tNous sommes cousines.\nWe're dancing.\tNous sommes en train de danser.\nWe're dieting.\tNous sommes au régime.\nWe're engaged.\tNous sommes fiancés.\nWe're fasting.\tNous faisons la diète.\nWe're friends.\tNous sommes amis.\nWe're friends.\tNous sommes amies.\nWe're in love.\tNous nous aimons.\nWe're in love.\tNous sommes amoureux.\nWe're in love.\tNous sommes amoureuses.\nWe're in luck.\tNous sommes veinards.\nWe're in luck.\tNous sommes veinardes.\nWe're in pain.\tNous souffrons.\nWe're in sync.\tNous sommes synchronisés.\nWe're in sync.\tNous sommes synchronisées.\nWe're in town.\tNous sommes en ville.\nWe're jealous.\tNous sommes jalouses.\nWe're kidding.\tNous plaisantons.\nWe're married.\tNous sommes mariés.\nWe're not fit.\tNous ne sommes pas en forme.\nWe're not mad.\tNous ne sommes pas fous.\nWe're not mad.\tNous ne sommes pas folles.\nWe're not old.\tNous ne sommes pas vieux.\nWe're not old.\tNous ne sommes pas vieilles.\nWe're reading.\tNous sommes en train de lire.\nWe're relaxed.\tNous sommes détendus.\nWe're relaxed.\tNous sommes détendues.\nWe're serious.\tNous sommes sérieux.\nWe're serious.\tNous sommes sérieuses.\nWe're shocked.\tNous sommes choqués.\nWe're shocked.\tNous sommes choquées.\nWe're sincere.\tNous sommes sincères.\nWe're sinking.\tNous coulons.\nWe're sinking.\tNous sommes en train de couler.\nWe're sloshed.\tNous sommes bourrés.\nWe're sloshed.\tNous sommes bourrées.\nWe're smashed.\tNous sommes bourrés.\nWe're smashed.\tNous sommes bourrées.\nWe're special.\tNous sommes spéciaux.\nWe're stalled.\tNous sommes à l'arrêt.\nWe're starved.\tNous sommes affamés.\nWe're starved.\tNous sommes affamées.\nWe're staying.\tNous restons.\nWe're stuffed.\tNous sommes gavés.\nWe're stuffed.\tNous sommes gavées.\nWe're stunned.\tNous sommes sidérés.\nWe're stunned.\tNous sommes sidérées.\nWe're through.\tNous avons terminé.\nWe're through.\tNous en avons fini.\nWe're too old.\tNous sommes trop vieux.\nWe're touched.\tNous sommes touchés.\nWe're touched.\tNous sommes touchées.\nWe're trapped!\tNous sommes piégés !\nWe're trapped!\tNous sommes piégées !\nWe're trapped.\tNous sommes piégés.\nWe're trapped.\tNous sommes piégées.\nWe're unhappy.\tNous ne sommes pas satisfaits.\nWe're unhappy.\tNous ne sommes pas satisfaites.\nWe're unlucky.\tNous sommes malchanceux.\nWe're unlucky.\tNous sommes malchanceuses.\nWe're useless.\tNous sommes inutiles.\nWe're waiting.\tNous sommes en train d'attendre.\nWe're wealthy.\tNous sommes riches.\nWe're winners.\tNous sommes des gagneurs.\nWe're winning.\tNous sommes en train de gagner.\nWe're working.\tNous sommes en train de travailler.\nWe're worried.\tNous nous faisons du souci.\nWe've arrived.\tNous sommes arrivés.\nWe've no time.\tNous n'avons pas le temps.\nWe've seen it.\tNous l'avons vu.\nWere you busy?\tÉtais-tu occupée ?\nWere you busy?\tÉtais-tu occupé ?\nWere you busy?\tÉtiez-vous occupés ?\nWere you busy?\tÉtiez-vous occupées ?\nWere you shot?\tT'a-t-on tiré dessus ?\nWere you shot?\tVous a-t-on tiré dessus ?\nWhat a bummer!\tQuelle poisse !\nWhat a fiasco!\tQuel fiasco !\nWhat a hassle!\tQuelle histoire !\nWhat a relief!\tQuel soulagement !\nWhat about us?\tQu'en est-il de nous ?\nWhat an idiot!\tQuel idiot.\nWhat did I do?\tQu'ai-je fait ?\nWhat do I get?\tQu'est-ce que j'y gagne ?\nWhat happened?\tQu'est-ce qui s'est passé ?\nWhat happened?\tQue s'est-il passé ?\nWhat is a UFO?\tQu'est-ce que c'est qu'un OVNI ?\nWhat'll we do?\tQue ferons-nous ?\nWhere are you?\tOù es-tu ?\nWhere are you?\tOù êtes-vous ?\nWhere is Mary?\tOù est Marie ?\nWhere were we?\tOù étions-nous ?\nWhere were we?\tOù en étions-nous ?\nWhich is mine?\tLequel est le mien ?\nWhich is mine?\tLaquelle est la mienne ?\nWho hates you?\tQui te déteste ?\nWho helps her?\tQui l'aide ?\nWho hired you?\tQui t'a recruté ?\nWho hired you?\tQui vous a recruté ?\nWho hired you?\tQui t'a recrutée ?\nWho hired you?\tQui vous a recrutée ?\nWho hired you?\tQui vous a recrutés ?\nWho hired you?\tQui vous a recrutées ?\nWho is absent?\tQui est absent ?\nWho said that?\tQui a dit cela ?\nWho wants tea?\tQui veut du thé ?\nWho's dieting?\tQui est au régime ?\nWho's winning?\tQui gagne ?\nWho's winning?\tQui l'emporte ?\nWhose is this?\tÀ qui est-ce ?\nWill she come?\tViendra-t-elle ?\nYou all right?\tÇa va ?\nYou all right?\tÇa va bien ?\nYou all right?\tTu vas bien ?\nYou are crazy.\tTu es fou.\nYou are drunk!\tTu es bourré !\nYou are drunk!\tTu es saoul !\nYou are early.\tTu viens tôt.\nYou are early.\tVous êtes matinal.\nYou are early.\tVous êtes matinale.\nYou are early.\tTu es matinal.\nYou are early.\tTu es matinale.\nYou are early.\tTu es en avance.\nYou are early.\tVous êtes en avance.\nYou are lying.\tVous mentez.\nYou are lying.\tVous êtes en train de mentir.\nYou are lying.\tTu es en train de mentir.\nYou are sharp.\tTu es malin.\nYou are wrong.\tVous avez tort.\nYou are wrong.\tTu as tort.\nYou can do it.\tTu peux y arriver.\nYou can do it.\tC'est bon, tu peux le faire.\nYou can do it.\tTu peux le faire.\nYou can do it.\tVous pouvez y arriver.\nYou have mail.\tTu as du courrier.\nYou have mail.\tVous avez du courrier.\nYou look busy.\tTu sembles occupé.\nYou look busy.\tTu as l'air occupé.\nYou look busy.\tVous avez l'air occupé.\nYou look busy.\tVous avez l'air occupée.\nYou look busy.\tVous avez l'air occupés.\nYou look busy.\tVous avez l'air occupées.\nYou look busy.\tTu as l'air occupée.\nYou look pale.\tTu as l'air pâle.\nYou look sick.\tTu as l'air malade.\nYou look sick.\tVous avez l'air malade.\nYou must come.\tTu dois venir.\nYou must come.\tVous devez venir.\nYou must stay.\tTu dois rester.\nYou must stay.\tVous devez rester.\nYou need this.\tTu as besoin de ça.\nYou needed me.\tTu avais besoin de moi.\nYou needed me.\tVous aviez besoin de moi.\nYou seem busy.\tVous semblez occupé.\nYou seem busy.\tVous semblez occupée.\nYou seem busy.\tTu sembles occupé.\nYou seem busy.\tTu sembles occupée.\nYou seem busy.\tVous semblez occupés.\nYou seem busy.\tVous semblez occupées.\nYou should go.\tTu devrais y aller.\nYou stay here.\tTu restes ici.\nYou stay here.\tVous restez ici.\nYou want this?\tVeux-tu ceci ?\nYou want this?\tVoulez-vous ceci ?\nYou were mine.\tTu étais à moi.\nYou work hard.\tTu travailles dur.\nYou work hard.\tVous travaillez dur.\nYou'd love it.\tTu adorerais ça.\nYou'll go far.\tTu iras loin.\nYou'll go far.\tVous irez loin.\nYou're a doll!\tTu es un amour !\nYou're a doll!\tVous êtes un amour !\nYou're a liar.\tTu es un menteur.\nYou're a liar.\tVous êtes un menteur.\nYou're a liar.\tVous êtes une menteuse.\nYou're a liar.\tTu es une menteuse.\nYou're a nerd.\tTu es un binoclard.\nYou're a snob.\tTu es snob.\nYou're a snob.\tVous êtes snob.\nYou're biased.\tTu es partiale.\nYou're biased.\tTu es partial.\nYou're boring.\tVous m'ennuyez.\nYou're boring.\tTu m'ennuies.\nYou're bright.\tTu es brillant.\nYou're bright.\tTu es brillante.\nYou're bright.\tVous êtes brillant.\nYou're bright.\tVous êtes brillante.\nYou're bright.\tVous êtes brillants.\nYou're bright.\tVous êtes brillantes.\nYou're clever.\tTu es malin.\nYou're clever.\tTu es maline.\nYou're clever.\tVous êtes malin.\nYou're clever.\tVous êtes maline.\nYou're clever.\tVous êtes malins.\nYou're clever.\tVous êtes malines.\nYou're crafty.\tVous êtes rusé.\nYou're crafty.\tTu es rusé.\nYou're crafty.\tTu es rusée.\nYou're crafty.\tVous êtes rusés.\nYou're crafty.\tVous êtes rusée.\nYou're crafty.\tVous êtes rusées.\nYou're crafty.\tTu es astucieux.\nYou're crafty.\tTu es astucieuse.\nYou're crafty.\tVous êtes astucieux.\nYou're crafty.\tVous êtes astucieuse.\nYou're creepy.\tTu es sinistre.\nYou're creepy.\tVous êtes sinistre.\nYou're creepy.\tVous êtes sinistres.\nYou're famous.\tTu es connu.\nYou're famous.\tTu es connue.\nYou're famous.\tVous êtes connu.\nYou're famous.\tVous êtes connus.\nYou're famous.\tVous êtes connue.\nYou're famous.\tVous êtes connues.\nYou're greedy.\tTu es avide.\nYou're greedy.\tVous êtes avide.\nYou're greedy.\tVous êtes avides.\nYou're grumpy.\tTu es bougon.\nYou're grumpy.\tTu es bougonne.\nYou're grumpy.\tTu es grognon.\nYou're grumpy.\tVous êtes bougon.\nYou're grumpy.\tVous êtes bougonne.\nYou're grumpy.\tVous êtes grognon.\nYou're insane.\tTu es dingue.\nYou're joking!\tTu plaisantes !\nYou're joking!\tVous plaisantez !\nYou're loaded.\tT'es bourré.\nYou're loaded.\tT'es bourrée.\nYou're loaded.\tT'es plein de fric.\nYou're loaded.\tT'es pleine de fric.\nYou're losing.\tTu es en train de perdre.\nYou're losing.\tVous êtes en train de perdre.\nYou're no fun.\tTu n'es pas drôle.\nYou're no fun.\tVous n'êtes pas drôle.\nYou're pretty.\tTu es jolie.\nYou're pretty.\tVous êtes jolie.\nYou're single.\tTu es célibataire.\nYou're single.\tVous êtes célibataire.\nYou're skinny.\tTu es maigrichonne.\nYou're skinny.\tVous êtes maigrichonne.\nYou're skinny.\tVous êtes maigrichonnes.\nYou're skinny.\tVous êtes maigrichon.\nYou're skinny.\tVous êtes maigrichons.\nYou're skinny.\tTu es maigrichon.\nYou're sleepy.\tTu es endormi.\nYou're sleepy.\tTu es endormie.\nYou're sleepy.\tVous êtes endormi.\nYou're sleepy.\tVous êtes endormis.\nYou're sleepy.\tVous êtes endormie.\nYou're sleepy.\tVous êtes endormies.\nYou're sneaky.\tTu es sournois.\nYou're sneaky.\tTu es sournoise.\nYou're sneaky.\tVous êtes sournois.\nYou're sneaky.\tVous êtes sournoise.\nYou're sneaky.\tVous êtes sournoises.\nYou're stupid.\tTu es idiote.\nYou're unfair.\tTu es injuste.\nYou've failed.\tTu as échoué.\nYou've failed.\tVous avez échoué.\nA beer, please.\tUne bière, s'il vous plaît !\nA coke, please.\tUn coca s'il vous plaît.\nAct like a man.\tAgis en homme.\nAct like a man.\tAgissez en homme.\nAct like a man.\tConduis-toi en homme !\nAin't she cute?\tN'est-elle pas mignonne ?\nAllow me to go.\tPermets-moi d'y aller !\nAllow me to go.\tPermettez-moi d'y aller !\nAm I not right?\tN'ai-je pas raison ?\nAm I qualified?\tSuis-je qualifié ?\nApples are red.\tLes pommes sont rouges.\nAre there kids?\tEst-ce qu'il y a des enfants ?\nAre there kids?\tY a-t-il des enfants ?\nAre we friends?\tSommes-nous amis ?\nAre we friends?\tSommes-nous amies ?\nAre we leaving?\tPartons-nous ?\nAre we leaving?\tY allons-nous ?\nAre we sinking?\tSommes-nous en train de couler ?\nAre you afraid?\tAvez-vous peur?\nAre you coming?\tVenez-vous ?\nAre you coming?\tViens-tu ?\nAre you crying?\tPleures-tu ?\nAre you crying?\tPleurez-vous ?\nAre you hiring?\tEmbauches-tu ?\nAre you hiring?\tEmbauchez-vous ?\nAre you hiring?\tRecrutes-tu ?\nAre you hiring?\tRecrutez-vous ?\nAre you honest?\tEs-tu honnête ?\nAre you honest?\tÊtes-vous honnêtes ?\nAre you honest?\tÊtes-vous honnête ?\nAre you hungry?\tAvez-vous faim ?\nAre you insane?\tTu es folle ?\nAre you joking?\tVous plaisantez ?\nAre you joking?\tTu plaisantes ?\nAre you joking?\tEst-ce que tu blagues ?\nAre you lonely?\tTe sens-tu seul ?\nAre you lonely?\tTe sens-tu seule ?\nAre you lonely?\tVous sentez-vous seul ?\nAre you lonely?\tVous sentez-vous seule ?\nAre you lonely?\tÊtes-vous esseulé ?\nAre you lonely?\tÊtes-vous esseulée ?\nAre you lonely?\tEs-tu esseulé ?\nAre you lonely?\tEs-tu esseulée ?\nAre you single?\tEs-tu seul ?\nAre you sleepy?\tEs-tu fatigué ?\nAre you sleepy?\tAs-tu sommeil ?\nAre you sleepy?\tAvez-vous sommeil ?\nAren't you hot?\tN'avez-vous pas chaud ?\nAren't you hot?\tN'as-tu pas chaud ?\nAutumn is here.\tL'automne est là.\nBe a good girl.\tSois une chic fille !\nBe a good girl.\tSoyez une chic fille !\nBe nice to her.\tSois gentil avec elle.\nBe nice to her.\tSois gentille avec elle.\nBe nice to her.\tSois gentil avec elle !\nBe nice to her.\tSois gentille avec elle !\nBlow your nose.\tMouche-toi !\nBoats can sink.\tLes bateaux peuvent couler.\nBoth are alive.\tIls sont tous deux vivants.\nBoth are alive.\tElles sont toutes deux vivantes.\nBring a camera.\tApporte un appareil photo !\nBring a camera.\tApportez un appareil photo !\nBring a shovel.\tApporte une pelle !\nBring it to me.\tApportez-le-moi.\nBuy me a drink.\tOffre-moi un verre !\nBuy me a drink.\tOffre-moi un coup !\nBuy me a drink.\tPaie-moi un coup !\nBuy me a drink.\tPayez-moi un coup !\nBuy me a drink.\tOffrez-moi un coup !\nBuy me a drink.\tOffrez-moi un verre !\nCall a plumber.\tAppelle un plombier !\nCall a plumber.\tAppelez un plombier !\nCalm down, son.\tCalme-toi, mon fils !\nCan I eat this?\tPuis-je manger ceci ?\nCan I go first?\tPuis-je y aller en premier ?\nCan I have one?\tPuis-je en avoir un ?\nCan I have one?\tPuis-je en avoir une ?\nCan I help you?\tPuis-je t'aider ?\nCan I help you?\tPuis-je vous aider ?\nCan I help you?\tPuis-je t'aider ?\nCan I join you?\tPuis-je me joindre à toi ?\nCan I join you?\tPuis-je me joindre à vous ?\nCan I kiss you?\tPuis-je vous embrasser ?\nCan I see that?\tPuis-je voir ça ?\nCan I see this?\tPuis-je voir ça ?\nCan I see this?\tPuis-je voir ceci ?\nCan I see, too?\tPuis-je également voir ?\nCan I sit down?\tPuis-je m'asseoir ?\nCan I sit here?\tPuis-je m'asseoir ici ?\nCan I touch it?\tPuis-je y toucher ?\nCan I touch it?\tPuis-je le toucher ?\nCan I touch it?\tPuis-je la toucher ?\nCan Tom see us?\tEst-ce que Tom peut nous voir ?\nCan we come in?\tPouvons-nous entrer ?\nCan you juggle?\tSais-tu jongler ?\nCan you juggle?\tSavez-vous jongler ?\nCan you see it?\tPeux-tu le voir ?\nCan you see it?\tPouvez-vous le voir ?\nCash is better.\tDe l'argent liquide, c'est mieux.\nCatch the ball.\tAttrape le ballon.\nCatch the ball.\tAttrape la balle.\nCats are smart.\tLes chats sont malins.\nChange is good.\tLe changement est bénéfique.\nCheck that out.\tRegardez ça.\nCheck this out.\tRègle ça.\nCheck this out.\tVérifie ça.\nClose the door.\tFerme la porte !\nClose the door.\tFermez la porte !\nClose the gate.\tFerme le portail.\nCoffee, please.\tDu café, je vous prie.\nCoffee, please.\tDu café, je te prie.\nCome back here.\tReviens ici !\nCome back here.\tRevenez ici !\nCome back home.\tReviens à la maison.\nCome back home.\tRevenez à la maison.\nCome back home.\tRentre à la maison.\nCome back soon.\tNe sois pas long.\nCome down here.\tDescends ici !\nCome down here.\tDescendez ici !\nContact my son.\tPrenez contact avec mon fils !\nCows give milk.\tLes vaches produisent du lait.\nCows give milk.\tLes vaches donnent du lait.\nCut it in half.\tCoupe-le en deux.\nDid I break it?\tL'ai-je cassé ?\nDid I break it?\tL'ai-je cassée ?\nDid I break it?\tL'ai-je brisé ?\nDid I break it?\tL'ai-je brisée ?\nDid I hurt you?\tVous ai-je blessé ?\nDid I hurt you?\tT'ai-je blessé ?\nDid I hurt you?\tT'ai-je blessée ?\nDid I hurt you?\tVous ai-je blessée ?\nDid I hurt you?\tT'ai-je fait mal ?\nDid I hurt you?\tVous ai-je fait mal ?\nDid I say that?\tAi-je dit cela ?\nDid I wake you?\tVous ai-je réveillé ?\nDid I wake you?\tVous ai-je réveillés ?\nDid I wake you?\tVous ai-je réveillée ?\nDid I wake you?\tVous ai-je réveillées ?\nDid I wake you?\tT'ai-je réveillé ?\nDid I wake you?\tT'ai-je réveillée ?\nDid Tom buy it?\tTom l'a-t-il acheté ?\nDid she say it?\tL'a-t-elle dit ?\nDid you forget?\tAs-tu oublié ?\nDid you get it?\tAs-tu compris ?\nDid you get it?\tAvez-vous compris ?\nDid you go out?\tTu es sortie ?\nDid you go out?\tEs-tu sorti ?\nDid you go out?\tEs-tu sortie ?\nDid you go out?\tÊtes-vous sorti ?\nDid you go out?\tÊtes-vous sortie ?\nDid you go out?\tÊtes-vous sortis ?\nDid you go out?\tÊtes-vous sorties ?\nDid you say 30?\tAs-tu dit trente ?\nDid you say 30?\tAvez-vous dit trente ?\nDid you see it?\tL'as-tu vu ?\nDid you see it?\tL'as-tu vue ?\nDid you see it?\tL'as-tu vu ?\nDid you see it?\tL'avez-vous vu ?\nDid you see it?\tL'avez-vous vue ?\nDinner's ready.\tLe dîner est prêt.\nDo I annoy you?\tEst-ce que je t'ennuie ?\nDo I annoy you?\tEst-ce que je vous ennuie ?\nDo I annoy you?\tEst-ce que je vous agace ?\nDo I annoy you?\tEst-ce que je t'agace ?\nDo I annoy you?\tEst-ce que je t'embête ?\nDo I annoy you?\tEst-ce que je vous embête ?\nDo I need this?\tAi-je besoin de ça ?\nDo as you like.\tFais comme il te plaira !\nDo as you like.\tFais comme tu veux.\nDo as you like.\tFaites comme il vous plaira.\nDo as you like.\tFaites comme vous voulez.\nDo as you want.\tFais comme bon te semble.\nDo as you want.\tFais comme tu veux.\nDo as you want.\tFais comme ça te chante.\nDo as you want.\tFaites comme ça vous chante.\nDo it this way.\tFaites ça comme ça.\nDo it this way.\tFais-le de cette manière.\nDo it this way.\tFaites-le de cette manière.\nDo it this way.\tFais-le ainsi.\nDo it this way.\tFaites-le ainsi.\nDo it tomorrow.\tFais-le demain !\nDo it tomorrow.\tFaites-le demain !\nDo it yourself.\tFaites-le vous-même.\nDo not do that.\tNe fais pas cela.\nDo not do that.\tNe faites pas ça.\nDo tigers purr?\tLes tigres ronronnent-ils ?\nDo we know you?\tVous connaissons-nous ?\nDo you deny it?\tLe nies-tu ?\nDo you hate me?\tTu me détestes ?\nDo you hear me?\tTu m'entends ?\nDo you hear me?\tM'entendez-vous ?\nDo you know me?\tMe connaissez-vous ?\nDo you know me?\tMe connais-tu ?\nDo you know me?\tOn se connait ?\nDo you know me?\tTu sais qui je suis ?\nDo you know me?\tTu me connais ?\nDo you know us?\tNous connais-tu ?\nDo you know us?\tNous connaissez-vous ?\nDo you like it?\tTu aimes ?\nDo you like it?\tÇa vous plaît ?\nDo you love me?\tM'aimes-tu ?\nDo you love me?\tEst-ce que tu m'aimes ?\nDo you love me?\tM'aimez-vous ?\nDo you love me?\tTu m'aimes ?\nDo you mean us?\tTu veux dire nous ?\nDo you miss it?\tÇa te manque ?\nDo you miss it?\tVous manque-t-il ?\nDo you miss it?\tEst-ce qu'il vous manque ?\nDo you miss it?\tTe manque-t-elle ?\nDo you miss it?\tEst-ce qu'elle te manque ?\nDo you promise?\tPromets-tu ?\nDo you promise?\tPromettez-vous ?\nDo you read me?\tM'entendez-vous ?\nDo you recycle?\tPratiques-tu le recyclage ?\nDo you recycle?\tPratiquez-vous le recyclage ?\nDoes it matter?\tCela a-t-il de l'importance ?\nDoes this hurt?\tEst-ce que ça fait mal ?\nDon't be angry.\tNe sois pas fâché.\nDon't be angry.\tNe soyez pas en colère.\nDon't be crazy.\tNe sois pas fou !\nDon't be crazy.\tNe sois pas folle !\nDon't be crazy.\tNe soyez pas fou !\nDon't be crazy.\tNe soyez pas folle !\nDon't be crude.\tNe sois pas salace !\nDon't be crude.\tNe soyez pas salace !\nDon't be naive.\tNe sois pas naïf !\nDon't be naive.\tNe sois pas naïve !\nDon't be naive.\tNe soyez pas naïf !\nDon't be naive.\tNe soyez pas naïfs !\nDon't be naive.\tNe soyez pas naïve !\nDon't be naive.\tNe soyez pas naïves !\nDon't be sorry.\tNe sois pas désolé !\nDon't be sorry.\tNe sois pas désolée !\nDon't be sorry.\tNe soyez pas désolé !\nDon't be sorry.\tNe soyez pas désolée !\nDon't be sorry.\tNe soyez pas désolés !\nDon't be sorry.\tNe soyez pas désolées !\nDon't be upset.\tNe sois pas fâché !\nDon't be upset.\tNe sois pas fâchée !\nDon't be upset.\tNe soyez pas fâché !\nDon't be upset.\tNe soyez pas fâchée !\nDon't be upset.\tNe soyez pas contrarié !\nDon't be upset.\tNe soyez pas contrariée !\nDon't be upset.\tNe sois pas contrarié !\nDon't be upset.\tNe sois pas contrariée !\nDon't be upset.\tNe soyez pas fâchés !\nDon't be upset.\tNe soyez pas fâchées !\nDon't be upset.\tNe soyez pas contrariées !\nDon't be upset.\tNe soyez pas contrariés !\nDon't blame me.\tJe n'y suis pour rien.\nDon't blame me.\tNe me le reproche pas.\nDon't blame me.\tNe me le reprochez pas.\nDon't buy that.\tN'achète pas ça.\nDon't buy that.\tNe gobe pas ça.\nDon't complain.\tNe vous plaignez pas.\nDon't fall off!\tNe tombe pas !\nDon't fall off!\tNe tombez pas !\nDon't judge me.\tNe me jugez pas.\nDon't judge me.\tNe me juge pas.\nDon't leave me.\tNe me quitte pas.\nDon't leave me.\tNe me quittez pas.\nDon't leave us.\tNe nous quitte pas !\nDon't leave us.\tNe nous quittez pas !\nDon't mind her.\tNe te soucie pas d'elle.\nDon't mind her.\tNe vous souciez pas d'elle.\nDon't obey him.\tNe lui obéis pas.\nDon't obey him.\tNe lui obéissez pas.\nDon't run here.\tNe cours pas ici.\nDon't say that.\tNe dis pas ça.\nDon't say that.\tNe dites pas ça.\nDon't show off.\tArrête de frimer !\nDon't show off.\tArrête de te la péter !\nDon't stand up.\tNe te lève pas.\nDon't stand up.\tNe vous levez pas.\nDon't stop him.\tNe l'arrête pas.\nDon't stop him.\tNe l'arrêtez pas.\nDon't tease me.\tNe me taquine pas !\nDon't tease me.\tNe me taquinez pas !\nDon't tempt me.\tNe me tente pas !\nDon't tempt me.\tNe me tentez pas !\nDon't touch it.\tNe touche pas à ça.\nDon't touch it.\tN'y touche pas.\nDon't touch me!\tNe me touche pas !\nDon't touch me.\tNe me touche pas !\nDon't touch me.\tNe me touchez pas !\nDon't you care?\tN'en as-tu rien à faire ?\nDon't you care?\tN'en avez-vous rien à faire ?\nDrink some tea.\tBuvez un peu de thé.\nDrink some tea.\tBois un peu de thé.\nDrop me a line.\tLaissez-moi un mot.\nEat everything.\tMange tout.\nEat everything.\tMangez tout.\nEat more fruit.\tMangez plus de fruits.\nEat more fruit.\tMange plus de fruits.\nEnjoy the show.\tPrenez plaisir au spectacle.\nEnjoy the show.\tPrends plaisir au spectacle.\nEnjoy your day.\tBonne journée à vous !\nEnjoy your day.\tBonne journée à toi !\nEnter the room.\tEntrez dans la chambre.\nEverybody left.\tTout le monde partit.\nEverybody lies.\tTout le monde ment.\nEveryone gasps.\tTout le monde est en haleine.\nFight like men.\tBattez-vous comme des hommes.\nFishing is fun.\tPêcher est amusant.\nForm two lines.\tFormez deux lignes.\nGet in the car.\tMonte dans la voiture !\nGet in the car.\tMontez dans la voiture !\nGet in the car.\tGrimpe dans la voiture !\nGet in the car.\tGrimpez dans la voiture !\nGet in the van.\tMonte dans la camionnette !\nGet in the van.\tMontez dans la camionnette !\nGet in the van.\tGrimpe dans la camionnette !\nGet in the van.\tGrimpez dans la camionnette !\nGet on the bus.\tMontez dans le bus !\nGet on the bus.\tGrimpez dans le bus !\nGet on the bus.\tGrimpe dans le bus !\nGet on the bus.\tMonte dans le bus !\nGet on with it.\tContinuez !\nGet on with it.\tContinue !\nGet out of bed!\tSortez du lit !\nGet out of bed.\tSors du lit !\nGet out of bed.\tSortez du lit !\nGet rid of her.\tDébarrasse-toi d'elle !\nGet rid of her.\tDébarrassez-vous d'elle !\nGet some sleep.\tPrends un peu de sommeil.\nGet some sleep.\tPrenez un peu de sommeil.\nGive him a hug.\tFais-lui un câlin !\nGive him a hug.\tFaites-lui un câlin !\nGive it a shot.\tTente-le !\nGive it a shot.\tTentez-le !\nGive it to her.\tDonne-le-lui.\nGive it to him.\tDonne-le-lui.\nGive me a beer.\tDonne-moi une bière.\nGive me a beer.\tDonnez-moi une bière.\nGive me a hand.\tPrête-moi main forte !\nGive me a hand.\tPrêtez-moi main forte !\nGive me a hint.\tDonne-moi un indice.\nGive me a kiss.\tDonne-moi un bisou !\nGive me a kiss.\tDonnez-moi un baiser !\nGive me a kiss.\tDonnez-moi un bisou !\nGo back to bed.\tRetourne au lit !\nGo back to bed.\tRetournez au lit !\nGo get changed.\tVa te changer !\nGo get changed.\tAllez vous changer !\nGo look for it.\tVa le chercher !\nGo look for it.\tVa la chercher !\nGo right ahead.\tAllez tout droit !\nGo right ahead.\tVa tout droit !\nGo take a walk.\tVa faire une promenade !\nGo take a walk.\tAllez faire une promenade !\nGo to the park.\tAllez au parc.\nGood afternoon.\tBonjour.\nGrab your gear.\tAttrape tes affaires !\nGrab your gear.\tAttrapez vos affaires !\nGuess who I am.\tDevine qui je suis !\nHand me my mug.\tPasse-moi mon mug.\nHappy New Year!\tBonne année !\nHappy New Year!\tJoyeuse année !\nHappy birthday!\tBon anniversaire !\nHave you eaten?\tTu as mangé ?\nHave you eaten?\tAvez-vous mangé ?\nHave you slept?\tAs-tu dormi ?\nHave you slept?\tAvez-vous dormi ?\nHe almost died.\tIl a failli mourir.\nHe also saw it.\tIl l’a aussi vu.\nHe asked me to.\tIl me l'a demandé.\nHe became rich.\tIl est devenu riche.\nHe bit his lip.\tIl se mordit la lèvre.\nHe bit his lip.\tIl s'est mordu la lèvre.\nHe came by bus.\tIl est venu en bus.\nHe came by bus.\tIl vint en bus.\nHe came by car.\tIl est venu en voiture.\nHe can't count.\tIl ne sait pas compter.\nHe can't do it.\tIl est incapable de le faire.\nHe can't do it.\tIl n'est pas capable de le faire.\nHe can't drive.\tIl ne sait pas conduire.\nHe can't drive.\tIl ne peut pas conduire.\nHe cannot swim.\tIl ne sait pas nager.\nHe could do it.\tLui pourrait le faire.\nHe counts fast.\tIl compte vite.\nHe deceived me.\tIl m'a trompé.\nHe deserved it.\tIl l'a mérité.\nHe dislikes me.\tIl ne m'aime pas.\nHe dislikes me.\tIl éprouve de l'antipathie à mon égard.\nHe doesn't lie.\tIl ne ment pas.\nHe doesn't tan.\tIl ne bronze pas.\nHe felt uneasy.\tIl se sentit mal à l'aise.\nHe felt uneasy.\tIl s'est senti mal à l'aise.\nHe flew a kite.\tIl faisait voler un cerf-volant.\nHe gazed at me.\tIl me jeta un regard.\nHe got the job.\tIl eut le poste.\nHe got the job.\tIl a eu le poste.\nHe has a beard.\tIl porte une barbe.\nHe has a lunch.\tIl dispose d'un déjeuner.\nHe has a lunch.\tIl a un déjeuner.\nHe has a point.\tIl marque un point.\nHe has a point.\tIl a raison là-dessus.\nHe has a point.\tIl n'a pas complètement tort.\nHe has a video.\tIl dispose d'une vidéo.\nHe has a video.\tIl détient une vidéo.\nHe has changed.\tIl a changé.\nHe has left us.\tIl nous a quittés.\nHe has no fear.\tIl n'a pas peur.\nHe has to come.\tIl doit venir.\nHe hated lying.\tIl détestait mentir.\nHe is American.\tIl est Américain.\nHe is Canadian.\tIl est canadien.\nHe is Japanese.\tIl est japonais.\nHe is a genius.\tC'est un génie.\nHe is a writer.\tIl est écrivain.\nHe is an actor.\tC'est un acteur.\nHe is bankrupt.\tIl est en faillite.\nHe is in Tokyo.\tIl est à Tokyo.\nHe is my uncle.\tC'est mon oncle.\nHe is outgoing.\tIl est ouvert.\nHe is outgoing.\tIl est sociable.\nHe is outgoing.\tIl est extraverti.\nHe is powerful.\tIl est puissant.\nHe is well off.\tIl est riche.\nHe keeps a cat.\tIl a un chat.\nHe lay face up.\tIl était étendu le visage visible.\nHe likes money.\tIl aime l'argent.\nHe likes money.\tIl apprécie l'argent.\nHe lives alone.\tIl vit seul.\nHe looked back.\tIl regarda derrière lui.\nHe looked well.\tIl avait l'air bien.\nHe looked well.\tIl avait l'air en bonne santé.\nHe looks tired.\tIl a l'air fatigué.\nHe looks young.\tIl a l'air jeune.\nHe lost a book.\tIl a perdu un livre.\nHe loves music.\tIl adore la musique.\nHe needs money.\tIl a besoin d'argent.\nHe owes me one.\tIl m'en doit une.\nHe passed away.\tIl est décédé.\nHe respects me.\tIl me respecte.\nHe sang a song.\tIl a chanté une chanson.\nHe saw it also.\tIl l'a vu aussi.\nHe saw it, too.\tIl l'a vu aussi.\nHe saw it, too.\tIl l’a vu aussi.\nHe scolded her.\tIl la gronda.\nHe scolded her.\tIl l'a grondée.\nHe seems angry.\tIl a l'air en colère.\nHe seems happy.\tIl semble heureux.\nHe seems happy.\tIl paraît heureux.\nHe seems happy.\tIl a l'air heureux.\nHe seems tired.\tIl a l'air fatigué.\nHe sells fruit.\tIl vend des fruits.\nHe should come.\tIl devrait arriver.\nHe slapped her.\tIl l'a giflée.\nHe sold us out.\tIl nous a vendus.\nHe sold us out.\tIl nous a vendues.\nHe surrendered.\tIl s'est rendu.\nHe talks a lot.\tIl parle beaucoup.\nHe trusted you.\tIl s'est fié à toi.\nHe walked away.\tIl est parti.\nHe walked away.\tIl partit.\nHe walked away.\tIl s'en alla.\nHe wants to go.\tIl veut partir.\nHe wants to go.\tIl veut y aller.\nHe wants to go.\tIl veut s'en aller.\nHe was English.\tIl était Anglais.\nHe was in pain.\tIl souffrait.\nHe was invited.\tIl était invité.\nHe was invited.\tIl fut invité.\nHe was invited.\tIl a été invité.\nHe was panting.\tIl tirait la langue.\nHe was panting.\tIl haletait.\nHe was patient.\tIl était patient.\nHe was perfect.\tIl fut parfait.\nHe was perfect.\tIl a été parfait.\nHe was perfect.\tIl était parfait.\nHe was stunned.\tIl fut paralysé.\nHe was stunned.\tIl était paralysé.\nHe was stunned.\tIl a été paralysé.\nHe went skiing.\tIl est allé skier.\nHe went skiing.\tIl a fait du ski.\nHe went to bed.\tIl se mit au lit.\nHe will not go.\tIl n'ira pas.\nHe worked hard.\tIl travailla dur.\nHe worked hard.\tIl a travaillé dur.\nHe works a lot.\tIl travaille beaucoup.\nHe's a bit shy.\tIl est un peu timide.\nHe's a bit shy.\tIl est quelque peu timide.\nHe's a gambler.\tIl est joueur.\nHe's a gambler.\tC'est un joueur.\nHe's a man now.\tC'est désormais un homme.\nHe's a slacker.\tC'est un fainéant.\nHe's a slacker.\tC'est un planqué.\nHe's all right.\tIl va bien.\nHe's an author.\tC'est un auteur.\nHe's an author.\tIl est auteur.\nHe's an ex-con.\tC'est un ancien détenu.\nHe's an outlaw.\tC'est un hors-la-loi.\nHe's depressed.\tIl est déprimé.\nHe's henpecked.\tIl est harcelé.\nHe's in danger.\tIl est en danger.\nHe's in prison.\tIl se trouve en prison.\nHe's in prison.\tIl est en prison.\nHe's my friend.\tIl est mon ami.\nHe's my friend.\tC’est mon ami.\nHe's my friend.\tC'est mon ami.\nHe's not going.\tIl n'y va pas.\nHe's not going.\tIl ne s'y rend pas.\nHe's not going.\tIl ne s'en va pas.\nHe's not ready.\tIl n'est pas prêt.\nHe's so stupid.\tIl est tellement idiot !\nHe's too drunk.\tIl est trop saoul.\nHe's too drunk.\tIl est trop ivre.\nHe's very open.\tIl est très ouvert.\nHello everyone!\tSalut tout le monde !\nHello everyone!\tSalut les gens !\nHere comes Tom.\tVoici Tom.\nHere comes Tom.\tVoilà Tom.\nHere is a book.\tVoici un livre.\nHere is my key.\tVoici ma clef.\nHere she comes.\tLa voici.\nHere she comes.\tLa voilà !\nHere's my room.\tVoici ma chambre !\nHey, what's up?\tHé ! Quoi de neuf ?\nHi! What's new?\tHé ! Quoi de neuf ?\nHis head ached.\tIl avait mal à la tête.\nHow can I help?\tDe quelle manière puis-je aider ?\nHow can I lose?\tComment puis-je perdre ?\nHow deep is it?\tDe quelle profondeur est-ce ?\nHow did I look?\tDe quoi ai-je eu l'air ?\nHow did I look?\tDe quoi avais-je l'air ?\nHow did it end?\tComment ça s'est fini ?\nHow did you do?\tComment avez-vous fait ?\nHow did you do?\tComment as-tu fait ?\nHow good is he?\tJusqu'à quel point est-il bon ?\nHow high is it?\tGrand comment ?\nHow long is it?\tCombien de temps cela dure-t-il ?\nHow much is it?\tÇa coûte combien ?\nHow tall is he?\tQuelle est sa taille ?\nHow tall is he?\tQuelle taille fait-il ?\nHow was Boston?\tComment c'était, Boston ?\nHow wide is it?\tDe quelle largeur est-ce ?\nHow's it going?\tComment cela se passe-t-il ?\nHow's your job?\tComment va ton boulot ?\nHow's your job?\tComment va votre travail ?\nHurry up, guys.\tDépêchez-vous, les mecs !\nHurry up, guys.\tMagnez-vous, les mecs !\nHurry up, guys.\tManiez-vous, les mecs !\nI already know.\tJe sais déjà.\nI am Hungarian.\tJe suis hongrois.\nI am a shy boy.\tJe suis un garçon timide.\nI am a student.\tJe suis étudiant.\nI am a teacher.\tJe suis professeur.\nI am a tourist.\tJe suis touriste.\nI am after him.\tJe suis après lui.\nI am an artist.\tJe suis un artiste.\nI am an artist.\tJe suis une artiste.\nI am exhausted.\tJe suis épuisée.\nI am exhausted.\tJe suis épuisé.\nI am exhausted.\tJe suis vanné.\nI am exhausted.\tJe suis vannée.\nI am exhausted.\tJe suis fourbu.\nI am exhausted.\tJe suis crevé.\nI am in London.\tJe suis à Londres.\nI am in a spot.\tJe suis dans le pétrin.\nI am in a spot.\tJe suis dans un endroit.\nI am not happy.\tJe ne suis pas content.\nI am not happy.\tJe ne suis pas heureux.\nI am not happy.\tJe ne suis pas heureuse.\nI am not happy.\tJe ne suis pas contente.\nI am off today.\tJe suis en congé, aujourd'hui.\nI am off today.\tJe ne suis pas de service, aujourd'hui.\nI am off today.\tJe ne suis pas en service, aujourd'hui.\nI am too short.\tJe suis trop petit.\nI am very tall.\tJe suis très grand.\nI am very tall.\tJe suis très grande.\nI ate too much.\tJ'ai trop mangé.\nI believe that.\tJ'y crois.\nI believed you.\tJe t'ai cru.\nI believed you.\tJe vous ai cru.\nI believed you.\tJe t'ai crue.\nI believed you.\tJe vous ai crue.\nI believed you.\tJe vous ai crus.\nI believed you.\tJe vous ai crues.\nI bike to work.\tJe vais au travail à bicyclette.\nI bike to work.\tJe me rends au travail en vélo.\nI borrow money.\tJ'emprunte de l'argent.\nI bought a hat.\tJ'ai fait l'acquisition d'un chapeau.\nI broke my arm.\tJe me suis cassé le bras.\nI broke my leg.\tJe me suis cassé la jambe.\nI brought mine.\tJ'ai apporté le mien.\nI brought mine.\tJ'ai apporté la mienne.\nI brought wine.\tJ'ai apporté du vin.\nI called ahead.\tJ'ai appelé auparavant.\nI came for you.\tJe suis venu pour toi.\nI came for you.\tJe suis venu à cause de toi.\nI can hear you.\tJe peux t'entendre.\nI can hear you.\tJe peux vous entendre.\nI can help Tom.\tJe peux aider Tom.\nI can help you.\tJe peux t'aider.\nI can help you.\tJe peux vous aider.\nI can prove it.\tJe peux le prouver.\nI can't get in.\tJe ne parviens pas à y pénétrer.\nI can't get in.\tJe ne parviens pas à y entrer.\nI can't go out.\tJe ne peux pas sortir.\nI can't use it.\tJe ne peux pas l'utiliser.\nI corrected it.\tJe l'ai corrigé.\nI corrected it.\tJe l'ai corrigée.\nI decorated it.\tJe l'ai décoré.\nI decorated it.\tJe l'ai décorée.\nI deserve that.\tJe mérite ça.\nI deserve this.\tJe le mérite.\nI did have fun.\tJe me suis amusé.\nI did have fun.\tJe me suis amusée.\nI did warn you.\tJe t'avais prévenue.\nI did warn you.\tJe vous avais prévenue.\nI did warn you.\tJe vous avais prévenus.\nI did warn you.\tJe vous avais prévenues.\nI didn't argue.\tJe ne me suis pas disputé.\nI didn't argue.\tJe ne me suis pas disputée.\nI didn't cheat.\tJe n'ai pas triché.\nI didn't cheat.\tJe n'ai pas copié.\nI didn't do it.\tJe ne l'ai pas fait.\nI didn't drive.\tJe n'ai pas conduit.\nI didn't flunk.\tJe n'ai pas été recalé.\nI didn't flunk.\tJe n'ai pas été recalée.\nI didn't laugh.\tJe n'ai pas ri.\nI didn't sleep.\tJe n'ai pas dormi.\nI didn't speak.\tJe n'ai pas parlé.\nI dislike eggs.\tJe n'aime pas les œufs.\nI dislike eggs.\tJ'ai une aversion pour les œufs.\nI do apologize.\tJe présente vraiment mes excuses.\nI do know that.\tJe le sais bien.\nI don't belong.\tJe ne suis pas à ma place.\nI don't belong.\tJe ne m'insère pas.\nI don't follow.\tJe ne suis pas.\nI don't gamble.\tJe ne joue pas.\nI don't get it.\tJe ne comprends pas.\nI don't get it.\tÇa m'échappe.\nI don't get it.\tJe capte pas.\nI don't get it.\tJe ne capte pas.\nI don't gossip.\tJe ne commère pas.\nI don't gossip.\tJe ne ragote pas.\nI enjoy movies.\tJ'apprécie le cinéma.\nI feel ashamed.\tJe me sens honteux.\nI feel ashamed.\tJe me sens honteuse.\nI feel blessed.\tJe me sens bénit.\nI feel blessed.\tJe me sens bénite.\nI feel for you.\tJe compatis avec toi.\nI feel honored.\tJe me sens honoré.\nI feel honored.\tJe me sens honorée.\nI feel nothing.\tJe ne sens rien.\nI feel strange.\tJe me sens bizarre.\nI feel trapped.\tJe me sens piégé.\nI feel trapped.\tJe me sens piégée.\nI feel useless.\tJe me sens inutile.\nI fell in love.\tJe suis tombé amoureux.\nI fell in love.\tJe suis tombée amoureuse.\nI felt cheated.\tJe me suis sentie trahie.\nI felt cheated.\tJe me suis sentie trompée.\nI felt cheated.\tJe me suis sentie trahi.\nI felt cheated.\tJe me suis sentie trompé.\nI felt cheated.\tJe me suis sentie cocufiée.\nI felt cheated.\tJe me suis senti cocufié.\nI felt cheated.\tJe me sentis trahi.\nI felt cheated.\tJe me sentis trahie.\nI felt cheated.\tJe me sentis trompé.\nI felt cheated.\tJe me sentis trompée.\nI felt excited.\tJe me sentais énervé.\nI felt excited.\tJe me sentais énervée.\nI felt excited.\tJe me suis senti énervé.\nI felt excited.\tJe me suis senti énervée.\nI followed him.\tJe l'ai suivi.\nI followed you.\tJe t'ai suivi.\nI followed you.\tJe t'ai suivie.\nI followed you.\tJe vous ai suivi.\nI followed you.\tJe vous ai suivis.\nI followed you.\tJe vous ai suivie.\nI followed you.\tJe vous ai suivies.\nI gave it away.\tJ'en ai fait cadeau.\nI gave it back.\tJe l'ai rendu.\nI gave it back.\tJe l'ai rendue.\nI gave my word.\tJ’ai donné ma parole.\nI gave up hope.\tJ'ai abandonné tout espoir.\nI get off here.\tJe descends ici.\nI get the idea.\tJe pige.\nI get the idea.\tJe capte.\nI get up early.\tJe me lève tôt.\nI give my word.\tJe donne ma parole.\nI got arrested.\tOn m'a arrêté.\nI got arrested.\tOn m'a arrêtée.\nI got confused.\tJ'ai mélangé.\nI got confused.\tJ'ai été désorienté.\nI got confused.\tJ'ai été désorientée.\nI got divorced.\tJ'ai divorcé.\nI got expelled.\tJ'ai été expulsé.\nI got expelled.\tJ'ai été expulsée.\nI got nauseous.\tJe me suis mise à avoir la nausée.\nI got nauseous.\tJe me suis mis à avoir la nausée.\nI grew up here.\tJ'ai grandi ici.\nI guarantee it.\tJe le garantis.\nI had a stroke.\tJ'ai fait un accident vasculaire cérébral.\nI had a stroke.\tJ'ai fait un AVC.\nI had a vision.\tJ'ai eu une vision.\nI had fun here.\tJe me suis amusée, ici.\nI had fun here.\tJe me suis amusé, ici.\nI had some fun.\tJe me suis amusé.\nI had some fun.\tJe me suis amusée.\nI had some fun.\tJe me suis marré.\nI had some fun.\tJe me suis marrée.\nI had to do it.\tIl m'a fallu le faire.\nI had to do it.\tJ'ai dû le faire.\nI hate Mondays.\tJe déteste les lundis.\nI hate Sundays.\tJe déteste le dimanche.\nI hate dancing.\tJe déteste danser.\nI hate dieting.\tJ'ai horreur de faire des régimes.\nI hate her now.\tMaintenant, je la déteste.\nI hate her now.\tJe la déteste, désormais.\nI hate insects.\tJe déteste les insectes.\nI hate it here.\tJe déteste cet endroit.\nI hate it here.\tJe déteste être ici.\nI hate karaoke.\tJe déteste le karaoké.\nI hate lawyers.\tJe déteste les avocats.\nI hate my boss.\tJe déteste mon patron.\nI hate my life.\tJe déteste ma vie.\nI hate parties.\tJe déteste les fêtes.\nI hate secrets.\tJe déteste les secrets.\nI hate spiders.\tJe déteste les araignées.\nI hate spinach.\tJe déteste les épinards.\nI hate to iron.\tJe déteste repasser.\nI hate to lose.\tJe déteste perdre.\nI hate to wait.\tJe déteste attendre.\nI hate to wait.\tJ'ai horreur d'attendre.\nI hate working.\tJe déteste travailler.\nI hated school.\tJe détestais l'école.\nI hated school.\tJ'ai détesté l'école.\nI have a dream.\tJ'ai un rêve.\nI have a horse.\tJe dispose d'un cheval.\nI have a table.\tJ'ai une table.\nI have a truck.\tJe dispose d'une camionnette.\nI have amnesia.\tJe souffre d'amnésie.\nI have an idea.\tJ'ai une idée.\nI have hiccups.\tJ'ai le hoquet.\nI have no clue.\tJe n'en ai pas la moindre idée.\nI have no clue.\tJe n'en ai aucune idée.\nI have no food.\tJe n'ai pas de nourriture.\nI have no food.\tJe suis dépourvu de nourriture.\nI have no food.\tJe ne dispose d'aucune nourriture.\nI have no idea.\tJe n'ai aucune idée.\nI have no idea.\tAucune idée.\nI have no idea.\tJe n'en ai aucune idée.\nI have no time.\tJe n'ai pas le temps.\nI have no time.\tJe n’ai pas le temps.\nI have nothing.\tJe n'ai rien.\nI have sisters.\tJ'ai des sœurs.\nI have to stop.\tIl me faut arrêter.\nI have to stop.\tJe dois arrêter.\nI have to stop.\tIl me faut cesser.\nI have to stop.\tJe dois cesser.\nI heard voices.\tJ'entendis des voix.\nI heard voices.\tJ'ai entendu des voix.\nI hiccup a lot.\tJ'ai souvent le hoquet.\nI hurried home.\tJe filai à la maison.\nI hurried home.\tJe me suis précipité à la maison.\nI hurt my foot.\tJe me suis fait mal au pied.\nI just gave up.\tJ'ai juste laissé tomber.\nI just guessed.\tJ'ai simplement deviné.\nI just met him.\tJe viens de le rencontrer.\nI keep a diary.\tJe tiens un journal.\nI keep my word.\tJe tiens parole.\nI kept my word.\tJe tins parole.\nI kept my word.\tJ'ai tenu parole.\nI know the boy.\tJe connais ce garçon.\nI left my wife.\tJ'ai quitté ma femme.\nI let you down.\tJe t'ai laissé tomber.\nI let you down.\tJe t'ai laissée tomber.\nI let you down.\tJe vous ai laissé tomber.\nI let you down.\tJe vous ai laissées tomber.\nI let you down.\tJe vous ai laissée tomber.\nI let you down.\tJe vous ai laissés tomber.\nI like English.\tJ'aime l'anglais.\nI like castles.\tJ'aime les châteaux.\nI like cookies.\tJ'aime les cookies.\nI like cookies.\tJ'aime les biscuits.\nI like cooking.\tJ'aime cuisiner.\nI like flowers.\tJ'aime les fleurs.\nI like history.\tJ'aime l'histoire.\nI like jogging.\tJ'aime faire du jogging.\nI like mahjong.\tJ'aime le mah-jong.\nI like my life.\tJ'aime ma vie.\nI like picnics.\tJ'apprécie les pique-niques.\nI like picnics.\tJ'aime bien les pique-niques.\nI like puzzles.\tJ'aime les énigmes.\nI like reading.\tJ'aime lire.\nI like running.\tJ'aime courir.\nI like running.\tJ'aime faire du jogging.\nI like seafood.\tJ'aime les fruits de mer.\nI like singing.\tJ'aime chanter.\nI like stories.\tJ'aime les histoires.\nI like stories.\tJ'aime les récits.\nI like talking.\tJ'aime parler.\nI like talking.\tJ'aime causer.\nI like talking.\tIl me plaît de causer.\nI like talking.\tJe me plais à causer.\nI like to sing.\tJ’aime chanter.\nI like to sing.\tJ'aime chanter.\nI like to swim.\tJ'aime nager.\nI like to talk.\tJ'aime parler.\nI like to talk.\tJ'aime discuter.\nI like turtles.\tJ’aime les tortues.\nI like walking.\tJ'aime marcher.\nI like working.\tJ'aime travailler.\nI live in Kobe.\tJe vis à Kobe.\nI live in town.\tJe vis en ville.\nI live upstate.\tJe réside au nord de l'état.\nI lost control.\tJ'ai perdu le contrôle.\nI lost my keys.\tJ'ai perdu mes clés.\nI lost the bet.\tJ'ai perdu le pari.\nI lost the bet.\tJe perdis le pari.\nI love animals.\tJ'adore les animaux.\nI love bananas.\tJ'adore les bananes.\nI love cookies.\tJ'adore les biscuits.\nI love cooking.\tJ'adore cuisiner.\nI love flowers.\tJ'adore les fleurs.\nI love it here.\tJ'adore ici.\nI love lasagna.\tJ'adore les lasagnes.\nI love my home.\tJ'adore mon foyer.\nI love my home.\tJ'adore mon chez-moi.\nI love my kids.\tJ'adore mes enfants.\nI love my life.\tJ'adore ma vie.\nI love my work.\tJ'adore mon travail.\nI love parties.\tJ'adore les fêtes.\nI love puzzles.\tJ'adore les énigmes.\nI love reading.\tJ'adore lire.\nI love secrets.\tJ'adore les secrets.\nI love sunsets.\tJ'adore les couchers de soleil.\nI love the sun.\tJ'adore le soleil.\nI love to cook.\tJ'aime cuisiner.\nI love to read.\tJ'adore lire.\nI love to swim.\tJ'adore nager.\nI love winning.\tJ'adore gagner.\nI love winning.\tJ'adore l'emporter.\nI love winning.\tJ'adore avoir le dessus.\nI love you all.\tJe vous aime tous.\nI love you all.\tJe vous adore tous.\nI made cookies.\tJ'ai confectionné des biscuits.\nI made her cry.\tJe l'ai fait pleurer.\nI made her cry.\tJe la fis pleurer.\nI made him cry.\tJe l'ai fait pleurer.\nI made him cry.\tJe le fis pleurer.\nI may be wrong.\tIl se peut que j'aie tort.\nI may be wrong.\tJ'ai peut-être tort.\nI mean no harm.\tJe n'ai pas de mauvaise intention.\nI met a friend.\tJ'ai rencontré un ami.\nI met him once.\tJe l'ai rencontré une fois.\nI miss college.\tJ'ai la nostalgie de la fac.\nI miss college.\tJ'ai la nostalgie du lycée.\nI must buy one.\tJe dois en acheter un.\nI must decline.\tIl me faut décliner.\nI must protest.\tIl me faut soulever une protestation.\nI must protest.\tJe dois soulever une protestation.\nI must protest.\tIl me faut protester.\nI must see you.\tIl me faut vous voir.\nI must see you.\tIl me faut te voir.\nI need a drink.\tIl me faut un verre.\nI need a drink.\tJ'ai besoin de boire un verre.\nI need a favor.\tJ'ai besoin d'une faveur.\nI need a knife.\tJ'ai besoin d'un couteau.\nI need a snack.\tJ'ai besoin d'une collation.\nI need a stamp.\tJ'ai besoin d'un timbre.\nI need answers.\tJ'ai besoin de réponses.\nI need friends.\tJ'ai besoin d'amis.\nI need it ASAP.\tJ'en ai besoin aussi vite que possible.\nI need support.\tJ'ai besoin de soutien.\nI need surgery.\tJ'ai besoin d'une opération.\nI need to know.\tIl me faut savoir.\nI need to know.\tIl me faut le savoir.\nI need to know.\tJ'ai besoin de savoir.\nI need to know.\tJ'ai besoin de le savoir.\nI need to know.\tMoi j'ai besoin de le savoir.\nI need to know.\tMoi j'ai besoin de savoir.\nI need to stop.\tIl faut que j'arrête.\nI need you now.\tJ'ai besoin de toi maintenant.\nI need you now.\tJ'ai besoin de vous maintenant.\nI needed money.\tIl me fallut de l'argent.\nI needed money.\tIl m'a fallu de l'argent.\nI needed money.\tJ'ai eu besoin d'argent.\nI noticed that.\tJ'ai remarqué cela.\nI often hiccup.\tJ'ai souvent le hoquet.\nI often travel.\tJe voyage souvent.\nI often travel.\tJe voyage fréquemment.\nI owe him $100.\tJe lui dois $100.\nI own this car.\tJe possède cette voiture.\nI paid nothing.\tJe n'ai rien payé.\nI plead guilty.\tJe plaide coupable.\nI predicted it.\tJe l'avais prédit.\nI promised Tom.\tJ'ai promis à Tom.\nI quit smoking.\tJ’ai arrêté de fumer.\nI quit smoking.\tJ'ai arrêté de fumer.\nI raise cattle.\tJ'élève du bétail.\nI ran upstairs.\tJ'ai couru à l'étage.\nI ran upstairs.\tJe courus à l'étage.\nI realize that.\tJe m'en rends compte.\nI really tried.\tJ'ai vraiment essayé.\nI remember her.\tJe me souviens d'elle.\nI remember now.\tJe m'en souviens, maintenant.\nI remember now.\tÇa me revient.\nI remember you.\tJe me souviens de toi.\nI remember you.\tJe me souviens de vous.\nI said get out.\tJe t'ai dit de sortir.\nI said get out.\tJe vous ai dit de sortir.\nI said not now.\tJ'ai dit : pas maintenant.\nI said nothing.\tJe ne dis rien.\nI said nothing.\tJe n'ai rien dit.\nI said shut up!\tJ'ai dit de la fermer !\nI saw her home.\tJe l'ai vue chez elle.\nI saw her home.\tJe l'ai vue chez nous.\nI saw her home.\tJe l'ai vue à la maison.\nI saw her home.\tJe l'ai vue à son domicile.\nI saw her swim.\tJe l'ai vu nager.\nI saw him jump.\tJe l'ai vu sauter.\nI saw him once.\tJe l'ai vu une fois.\nI saw it first.\tJe l'ai vu en premier.\nI saw it on TV.\tJe l'ai vu à la télé.\nI saw somebody.\tJe vis quelqu'un.\nI saw somebody.\tJ'ai vu quelqu'un.\nI saw the cook.\tJ'ai vu le cuisinier.\nI saw the file.\tJ'ai vu le dossier.\nI saw the file.\tJ'ai vu le fichier.\nI sell flowers.\tJe vends des fleurs.\nI serve no one.\tJe ne suis au service de personne.\nI should do it.\tJe devrais le faire.\nI smell coffee.\tJe sens le café.\nI sneeze a lot.\tJ'éternue beaucoup.\nI speak French.\tJe parle français.\nI started that.\tJ'ai commencé ça.\nI started that.\tC'est moi qui ai commencé.\nI study French.\tJ'étudie le français.\nI study Korean.\tJ'étudie le coréen.\nI sure am cold.\tJ'ai vraiment froid.\nI sure hope so.\tJe l'espère vraiment.\nI take it back.\tJe le reprends.\nI teach French.\tJ'enseigne la langue française.\nI teach French.\tJ'enseigne le français.\nI think we can.\tJe crois que nous le pouvons.\nI thought hard.\tJ'y ai pensé très fort.\nI took her arm.\tJe lui pris le bras.\nI travel light.\tJe voyage léger.\nI trusted them.\tJe leur ai fait confiance.\nI turned right.\tJ'ai tourné à droite.\nI turned right.\tJe tournai à droite.\nI turned right.\tJe pris à droite.\nI turned right.\tJ'ai pris à droite.\nI urge caution.\tJ'exhorte à la prudence.\nI usually walk.\tHabituellement je me déplace à pied.\nI walked alone.\tJ'ai cheminé seul.\nI walked alone.\tJ'ai marché seul.\nI want a chair.\tJe désire une chaise.\nI want a donut.\tJe veux un beignet.\nI want a drink.\tJe veux quelque chose à boire.\nI want a puppy.\tJe veux un petit chien.\nI want a puppy.\tJe veux un chiot.\nI want a raise.\tJe veux une augmentation.\nI want answers.\tJe veux des réponses.\nI want details.\tJe veux des détails.\nI want justice.\tJe veux la justice.\nI want revenge.\tJe crie vengeance !\nI want the fan.\tJe veux l'éventail.\nI want the fan.\tJe veux le ventilateur.\nI want to come.\tJe veux venir.\nI want to help.\tJe veux aider.\nI want to live.\tJe veux vivre.\nI want to play.\tJe veux jouer.\nI want to quit.\tJe veux abandonner.\nI want to quit.\tJe veux démissionner.\nI want to quit.\tJe veux laisser tomber.\nI want to stay.\tJe veux rester.\nI want to talk.\tJe veux parler.\nI want to talk.\tJe veux discuter.\nI want to walk.\tJe veux marcher.\nI want to work.\tJe veux travailler.\nI wanted to go.\tJe voulais y aller.\nI wanted to go.\tJe voulais partir.\nI was attacked.\tJ'ai été attaqué.\nI was attacked.\tJ'ai été attaquée.\nI was barefoot.\tJ'étais pieds nus.\nI was bluffing.\tJ'étais en train de bluffer.\nI was captured.\tJ'ai été fait prisonnier.\nI was careless.\tJ'étais insouciant.\nI was careless.\tJ'étais insouciante.\nI was cleaning.\tJ'étais en train de nettoyer.\nI was detained.\tJ'ai été incarcéré.\nI was detained.\tJ'ai été incarcérée.\nI was grateful.\tJ'ai été reconnaissant.\nI was impolite.\tJ'ai été impoli.\nI was impolite.\tJ'ai été impolie.\nI was offended.\tJ'ai été offensé.\nI was offended.\tJ'ai été offensée.\nI was outdoors.\tJ'étais à l'extérieur.\nI was pardoned.\tJ'ai été gracié.\nI was pardoned.\tJ'ai été graciée.\nI was so happy.\tJ'étais tellement heureux.\nI was so happy.\tJ'étais tellement heureuse.\nI was starving.\tJe crevais de faim.\nI was studying.\tJ'étais en train d'étudier.\nI was thinking.\tJ'étais en train de réfléchir.\nI was upstairs.\tJ'étais en haut.\nI was upstairs.\tJ'étais là-haut.\nI was watching.\tJ'étais en train de regarder.\nI wasn't drunk.\tJe n'étais pas saoul.\nI wasn't drunk.\tJe n’étais pas saoul.\nI wasn't hired.\tOn ne m'a pas recruté.\nI wasn't hired.\tOn ne m'a pas embauché.\nI wasn't hired.\tOn ne m'a pas embauchée.\nI wasn't hired.\tOn ne m'a pas recrutée.\nI wasn't hired.\tOn ne m'a pas engagé.\nI wasn't hired.\tOn ne m'a pas engagée.\nI wear glasses.\tJe porte des lunettes.\nI went fishing.\tJe suis allé pêcher.\nI will sue you.\tJe te poursuivrai en justice.\nI will sue you.\tJe te ferai un procès.\nI will sue you.\tJe vous poursuivrai en justice.\nI will sue you.\tJe vous ferai un procès.\nI will survive.\tJe survivrai.\nI will take it.\tJe le prendrai.\nI will testify.\tJe témoignerai.\nI wish I could.\tSi seulement je pouvais.\nI won't forget.\tJe n'oublierai pas.\nI won't return.\tJe ne reviendrai pas.\nI'd be careful.\tJe serais prudent.\nI'd be careful.\tJe serais prudente.\nI'd be honored.\tJe serais honoré.\nI'd be honored.\tJe serais honorée.\nI'd rather die.\tJe préférerais mourir.\nI'd rather not.\tJ'aimerais plutôt pas.\nI'll apologize.\tJe présenterai mes excuses.\nI'll ask later.\tJe demanderai plus tard.\nI'll be around.\tJe serai dans les environs.\nI'll be direct.\tJe serai direct.\nI'll be direct.\tJe serai directe.\nI'll be honest.\tJe serai honnête.\nI'll be inside.\tJe serai à l'intérieur.\nI'll call them.\tJe les appellerai.\nI'll call them.\tJe leur téléphonerai.\nI'll cancel it.\tJe l'annulerai.\nI'll come back.\tJe reviens.\nI'll come back.\tJe reviendrai.\nI'll cooperate.\tJe coopérerai.\nI'll do it now.\tJe vais le faire maintenant.\nI'll get these.\tJ'irai chercher ceux-ci.\nI'll go anyway.\tJ'irai, de toutes façons.\nI'll go change.\tJ'irai me changer.\nI'll go myself.\tJ'irai moi-même.\nI'll guide you.\tJe te guiderai.\nI'll guide you.\tJe vous guiderai.\nI'll handle it.\tJe m'en chargerai.\nI'll handle it.\tJe m'en débrouillerai.\nI'll handle it.\tJe m'en occuperai.\nI'll just wait.\tJe vais juste attendre.\nI'll manage it.\tJe gérerai ça.\nI'll marry you.\tJe t'épouserai.\nI'll marry you.\tJe vous épouserai.\nI'll need that.\tJ'aurai besoin de ça.\nI'll pay later.\tJe payerai plus tard.\nI'll pray hard.\tJe prierai de toutes mes forces.\nI'll risk that.\tJe tenterai le coup.\nI'll scold him.\tJe le gronderai.\nI'll see to it.\tJe m'en chargerai.\nI'll stay here.\tJe resterai ici.\nI'll stay home.\tJe resterai à la maison.\nI'll take over.\tJe vais prendre le contrôle.\nI'll treat you.\tJe t'inviterai.\nI'll treat you.\tCe sera pour moi.\nI'll trust you.\tJe te ferai confiance.\nI'll trust you.\tJe vous ferai confiance.\nI'll trust you.\tJe me fierai à toi.\nI'll trust you.\tJe me fierai à vous.\nI'll try again.\tJe vais réessayer.\nI'll wait here.\tJ'attendrai ici.\nI'll work hard.\tJe travaillerai dur.\nI'm a bit busy.\tJe suis un peu occupé.\nI'm a diabetic.\tJe suis diabétique.\nI'm a free man.\tJe suis un homme libre.\nI'm a good guy.\tJe suis un mec bien.\nI'm a musician.\tJe suis musicien.\nI'm a musician.\tJe suis musicienne.\nI'm a nice guy.\tJe suis quelqu'un de bien.\nI'm a real man.\tJe suis un vrai mec.\nI'm a salesman.\tJe suis un vendeur.\nI'm afraid not.\tJ'ai bien peur que non.\nI'm afraid not.\tJe crains que non.\nI'm against it.\tJe suis contre.\nI'm all thumbs.\tJe suis maladroit.\nI'm an old man.\tJe suis un vieil homme.\nI'm astonished.\tJe suis stupéfait.\nI'm astonished.\tJe suis stupéfaite.\nI'm behind him.\tJe suis derrière lui.\nI'm being used.\tOn m'utilise.\nI'm contagious.\tJe suis contagieux.\nI'm contagious.\tJe suis contagieuse.\nI'm dead tired.\tJe suis mort de fatigue.\nI'm dehydrated.\tJe suis déshydraté.\nI'm dehydrated.\tJe suis déshydratée.\nI'm dependable.\tJe suis fiable.\nI'm dependable.\tOn peut compter sur moi.\nI'm devastated.\tJe suis anéanti.\nI'm devastated.\tJe suis anéantie.\nI'm doing well.\tJe vais bien.\nI'm downstairs.\tJe suis en bas.\nI'm eating now.\tJe suis en train de manger.\nI'm exercising.\tJe suis en train de m'entraîner.\nI'm farsighted.\tJe vois loin.\nI'm fascinated.\tJe suis fasciné.\nI'm fascinated.\tJe suis fascinée.\nI'm firing you.\tJe te vire.\nI'm firing you.\tJe vous vire.\nI'm free today.\tJe suis libre aujourd'hui.\nI'm from Kyoto.\tJe viens de Kyoto.\nI'm from Kyoto.\tJe suis de Kyoto.\nI'm from Tokyo.\tJe viens de Tokyo.\nI'm going back.\tJ'y retourne.\nI'm going bald.\tJe deviens chauve.\nI'm happy here.\tJe suis heureux, ici.\nI'm happy here.\tJe suis heureuse, ici.\nI'm happy, too.\tJe suis également heureux.\nI'm happy, too.\tJe suis également heureuse.\nI'm happy, too.\tJe suis heureux, moi aussi.\nI'm happy, too.\tJe suis heureuse, moi aussi.\nI'm having fun.\tJe m'amuse.\nI'm illiterate.\tJe suis analphabète.\nI'm in the car.\tJe suis dans la voiture.\nI'm interested.\tJe suis intéressé.\nI'm interested.\tJe suis intéressée.\nI'm just tired.\tJe suis seulement fatigué.\nI'm just tired.\tJe suis simplement fatigué.\nI'm just tired.\tJe suis seulement fatiguée.\nI'm just tired.\tJe suis simplement fatiguée.\nI'm mad at you.\tJe suis en colère après toi.\nI'm mad at you.\tJe suis en colère après vous.\nI'm making tea.\tJe prépare le thé.\nI'm meditating.\tJe suis en train de méditer.\nI'm methodical.\tJe suis méthodique.\nI'm no quitter.\tJe ne baisse pas facilement les bras.\nI'm no quitter.\tJe n'abandonne pas facilement.\nI'm no quitter.\tJe n'abandonne pas si facilement.\nI'm not a fool.\tJe ne suis pas idiot.\nI'm not a hero.\tJe ne suis pas un héros.\nI'm not a liar.\tJe ne suis pas un menteur.\nI'm not a liar.\tJe ne suis pas une menteuse.\nI'm not amused.\tÇa ne m'amuse pas.\nI'm not asleep.\tJe ne suis pas endormi.\nI'm not asleep.\tJe ne suis pas endormie.\nI'm not bitter.\tJe ne suis pas amer.\nI'm not bitter.\tJe ne suis pas amère.\nI'm not cranky.\tJe ne suis pas grincheux.\nI'm not cranky.\tJe ne suis pas grincheuse.\nI'm not crying.\tJe ne pleure pas.\nI'm not guilty.\tJe ne suis pas coupable.\nI'm not insane.\tJe ne suis pas fou.\nI'm not insane.\tJe ne suis pas folle.\nI'm not joking.\tJe ne blague pas.\nI'm not joking.\tJe ne plaisante pas.\nI'm not lonely.\tJe ne me sens pas seul.\nI'm not normal.\tJe ne suis pas normal.\nI'm not normal.\tJe ne suis pas normale.\nI'm not pretty.\tJe ne suis pas jolie.\nI'm not racist.\tJe ne suis pas raciste.\nI'm not scared.\tÇa ne me fait pas peur.\nI'm not skinny.\tJe ne suis pas maigrichon.\nI'm not skinny.\tJe ne suis pas maigrichonne.\nI'm not sleepy.\tJe n'ai pas sommeil.\nI'm not sleepy.\tJe ne suis pas endormi.\nI'm not strong.\tJe ne suis pas fort.\nI'm not strong.\tJe ne suis pas forte.\nI'm old enough.\tJe suis suffisamment grand.\nI'm old enough.\tJe suis suffisamment vieux.\nI'm on holiday.\tJe suis en vacances.\nI'm on holiday.\tJe suis en congés.\nI'm one of you.\tJe suis l'un de vous.\nI'm one of you.\tJe suis l'un d'entre vous.\nI'm optimistic.\tJe suis optimiste.\nI'm out of gas.\tJe suis à court d'essence.\nI'm prejudiced.\tJ'ai des préjugés.\nI'm really old.\tJe suis vraiment vieux.\nI'm reasonable.\tJe suis raisonnable.\nI'm remodeling.\tJe suis en train de réaménager.\nI'm right here.\tJe suis juste ici.\nI'm so thirsty.\tJ'ai tellement soif.\nI'm so unlucky!\tQuelle poisse j'ai !\nI'm still busy.\tJe suis toujours occupé.\nI'm still busy.\tJe suis encore occupée.\nI'm still here.\tJe suis encore ici.\nI'm successful.\tJ'ai du succès.\nI'm sure of it.\tJe suis certain de ça.\nI'm the killer.\tJe suis le tueur.\nI'm the oldest.\tJe suis le plus vieux.\nI'm the oldest.\tJe suis la plus vieille.\nI'm undressing.\tJe me déshabille.\nI'm undressing.\tJe me dévêts.\nI'm unemployed.\tJe suis au chômage.\nI'm untalented.\tJe n'ai pas de talent.\nI'm untalented.\tJe suis dépourvu de talent.\nI'm untalented.\tJe suis dépourvue de talent.\nI'm used to it.\tJ'y suis habitué.\nI'm used to it.\tJe suis habitué.\nI'm used to it.\tJ'y suis accoutumé.\nI'm used to it.\tJ'y suis habituée.\nI'm vegetarian.\tJe suis végétarienne.\nI'm very happy.\tJe suis très heureux.\nI'm very happy.\tJe suis très heureuse.\nI'm very short.\tJe suis très petit.\nI'm very sorry.\tJe suis vraiment désolé.\nI'm very tired.\tJe suis très fatigué.\nI'm very tired.\tJe suis fourbu.\nI'm very upset.\tJe suis fort contrarié.\nI'm very upset.\tJe suis fort contrariée.\nI'm very upset.\tJe suis très contrarié.\nI'm very upset.\tJe suis très contrariée.\nI'm wide awake.\tJe suis tout à fait éveillé.\nI'm wide awake.\tJe suis tout à fait éveillée.\nI've been busy.\tJ'étais occupée.\nI've forgotten.\tJ'ai oublié.\nI've got plans.\tJ'ai des plans.\nI've messed up.\tJ'ai merdé.\nI've messed up.\tJ'ai tout foutu en l'air.\nI've remarried.\tJe me suis remarié.\nI've remarried.\tJe me suis remariée.\nI've seen that.\tJe l'ai vu.\nI've seen that.\tJ'ai vu ça.\nI've upset you.\tJe vous ai contrarié.\nI've upset you.\tJe vous ai contrariés.\nI've upset you.\tJe vous ai contrariée.\nI've upset you.\tJe vous ai contrariées.\nI've upset you.\tJe t'ai contrarié.\nI've upset you.\tJe t'ai contrariée.\nIf only I knew!\tSi seulement je savais !\nIs Tom jealous?\tTom est-il jaloux ?\nIs Tom working?\tEst-ce que Tom travaille ?\nIs Tom working?\tTom travaille-t-il ?\nIs anyone here?\tY a-t-il qui que ce soit, ici ?\nIs anyone hurt?\tQuiconque est-il blessé ?\nIs anyone hurt?\tQuelqu'un est-il blessé ?\nIs anyone hurt?\tQuelqu'un est-il froissé ?\nIs he American?\tEst-il Américain ?\nIs he Japanese?\tEst-il japonais ?\nIs he sleeping?\tEst-il en train de dormir ?\nIs he sleeping?\tDort-il ?\nIs he sleeping?\tIl dort ?\nIs it any good?\tEst-ce là bien agir ?\nIs it credible?\tEst-ce crédible ?\nIs it finished?\tEst-ce terminé ?\nIs it in there?\tEst-ce là-dedans ?\nIs lunch ready?\tEst-ce que le déjeuner est prêt ?\nIs lunch ready?\tLe déjeuner est-il prêt ?\nIs she at home?\tEst-elle chez elle ?\nIs she at home?\tEst-elle chez nous ?\nIs she at home?\tEst-elle à la maison ?\nIs she married?\tEst-elle mariée ?\nIs that a fact?\tS'agit-il d'un fait ?\nIs that better?\tEst-ce meilleur ?\nIs that better?\tEst-ce mieux ?\nIs that enough?\tEst-ce assez ?\nIs that for me?\tEst-ce pour moi ?\nIs that likely?\tEst-ce probable ?\nIs that normal?\tEst-ce normal ?\nIs that so bad?\tEst-ce si mal ?\nIs that so bad?\tEst-ce si mauvais ?\nIs that so bad?\tEst-ce tellement mauvais ?\nIs that so bad?\tEst-ce tellement mal ?\nIs that unfair?\tEst-ce injuste ?\nIs this a date?\tS'agit-il d'un rendez-vous ?\nIs this a date?\tS'agit-il d'une avance ?\nIs this a joke?\tS'agit-il d'une plaisanterie ?\nIs this a joke?\tS'agit-il d'une blague ?\nIs this enough?\tEst-ce assez ?\nIs this normal?\tEst-ce normal ?\nIsn't it black?\tN'est-ce pas noir ?\nIt all changed.\tTout a changé.\nIt feels silly.\tÇa semble idiot.\nIt gets better.\tÇa s'améliore.\nIt has to stop.\tIl faut que ça s'arrête.\nIt has to stop.\tÇa doit s'arrêter.\nIt is Saturday.\tC'est samedi.\nIt is possible.\tC'est possible.\nIt is so early.\tIl est si tôt.\nIt is too late.\tIl est trop tard.\nIt looked real.\tÇa avait l'air réel.\nIt makes sense.\tÇa se tient.\nIt makes sense.\tÇa tient debout.\nIt may be true.\tCela peut être vrai.\nIt smells good!\tÇa sent bon !\nIt sounds easy.\tÇa semble facile.\nIt sounds easy.\tÇa semble aisé.\nIt was a dream.\tC'était un rêve.\nIt was a fluke.\tC'était un coup de chance.\nIt was awesome.\tC'était génial.\nIt was perfect.\tC'était parfait.\nIt was raining.\tIl pleuvait.\nIt was snowing.\tIl neigeait.\nIt was so dark.\tIl faisait si sombre.\nIt was so good.\tC'était si bon.\nIt was so good.\tC'était tellement bon.\nIt wasn't easy.\tCe ne fut pas facile.\nIt wasn't easy.\tÇa n'a pas été facile.\nIt wasn't luck.\tCe n'était pas de la chance.\nIt wasn't mine.\tCe n'était pas le mien.\nIt wasn't mine.\tCe n'était pas la mienne.\nIt'll work now.\tÇa fonctionnera dorénavant.\nIt's Christmas.\tC'est Noël.\nIt's Wednesday.\tC'est mercredi.\nIt's Wednesday.\tOn est mercredi.\nIt's a bargain.\tC'est une affaire.\nIt's a bargain.\tAffaire conclue !\nIt's a big one.\tC'en est un gros.\nIt's a classic.\tC'est un classique.\nIt's a mistake.\tC'est une erreur.\nIt's a problem.\tC'est un problème.\nIt's all clear.\tTout est clair.\nIt's all right.\tTout va bien.\nIt's all right.\tCe n'est pas grave.\nIt's all there.\tTout est là.\nIt's all white.\tC'est tout blanc.\nIt's all wrong.\tC'est complètement faux.\nIt's all wrong.\tTout est faux.\nIt's all yours.\tIl est tout à vous.\nIt's all yours.\tC'est tout à toi.\nIt's all yours.\tIl est tout à toi.\nIt's all yours.\tC'est tout à vous.\nIt's an ambush!\tC'est une embuscade !\nIt's an excuse.\tC'est une excuse.\nIt's beautiful.\tC'est beau.\nIt's beyond me.\tÇa me dépasse.\nIt's brand new.\tIl est tout neuf.\nIt's brand new.\tC'est tout nouveau.\nIt's brand new.\tC'est flambant neuf.\nIt's dangerous!\tC'est dangereux !\nIt's different.\tC'est différent.\nIt's dishonest.\tC'est malhonnête.\nIt's forbidden.\tC'est interdit.\nIt's important.\tC'est important.\nIt's inspiring.\tC'est exaltant.\nIt's no secret.\tCe n'est pas un secret.\nIt's not a dog.\tCe n'est pas un chien.\nIt's not a dog.\tCe n'est pas un mauvais placement.\nIt's not funny.\tCe n'est pas drôle.\nIt's not funny.\tCe n'est pas marrant.\nIt's not funny.\tCe n'est pas drôle !\nIt's not funny.\tCe n'est pas drôle !\nIt's not right.\tCe n'est pas correct.\nIt's not right.\tC'est inexact.\nIt's not right.\tCe n'est pas exact.\nIt's our fault.\tC'est de notre faute.\nIt's redundant.\tC'est en trop.\nIt's redundant.\tC'est superflu.\nIt's redundant.\tC'est devenu inutile.\nIt's redundant.\tC'est redondant.\nIt's revolting.\tC'est immonde.\nIt's safe here.\tC'est sans danger, ici.\nIt's safe here.\tOn est en sécurité, ici.\nIt's so pretty.\tC'est si joli.\nIt's the truth.\tC'est la vérité.\nIt's this book.\tC'est ce livre.\nIt's too early.\tIl est trop tôt.\nIt's too large.\tC'est trop grand.\nIt's too quiet.\tC'est trop calme.\nIt's too risky.\tC'est trop risqué.\nIt's too small.\tC'est trop petit.\nIt's too small.\tC’est trop petit.\nIt's undamaged.\tC'est intact.\nIt's up to you.\tC'est à toi de voir.\nIt's up to you.\tÇa dépend de toi.\nIt's up to you.\tÇa dépend de vous.\nIt's up to you.\tC'est à vous de voir.\nIt's very cold.\tIl fait très froid.\nIt's very dark.\tIl fait très sombre.\nIt's very good.\tC'est très bon.\nIt's very good.\tC'est très bien.\nIt's very good.\tC’est très bon.\nIt's very late.\tIl est très tard.\nIt's vibrating.\tÇa vibre.\nIt's well done.\tC'est bien fait.\nIt's what I am.\tC'est ce que je suis.\nIt's your book.\tC'est ton livre.\nIt's your book.\tC'est votre livre.\nIt's your turn.\tC'est votre tour.\nJapan is weird.\tLe Japon est bizarre.\nJust forget it.\tOublie !\nJust forget it.\tOubliez !\nJust ignore it.\tIgnore-le simplement !\nJust ignore it.\tN'y prête simplement pas attention !\nJust ignore it.\tN'y prêtez simplement pas attention !\nJust ignore it.\tTu n'as qu'à l'ignorer !\nJust ignore it.\tVous n'avez qu'à l'ignorer !\nJust sign here.\tSignez juste ici.\nJust sign here.\tSigne juste ici.\nKeep on trying.\tContinue d'essayer.\nKeep searching.\tContinue à chercher.\nKeep searching.\tContinuez à chercher.\nKids are cruel.\tLes enfants sont cruels.\nLeave it to me.\tLaissez-moi m'en occuper.\nLeave it to me.\tLaisse-moi m'en charger.\nLeave it to us.\tLaissez-nous cela !\nLeave me alone!\tFiche-moi la paix !\nLeave me alone!\tLaisse-moi seule !\nLeave me alone!\tLaisse-moi tranquille !\nLeave me alone!\tLaissez-moi tranquille !\nLeave me alone!\tLaisse-moi en paix !\nLeave me alone.\tLaisse-moi tranquille.\nLeave me alone.\tLaissez-moi tranquille.\nLeave me alone.\tLaisse-moi seule !\nLeave me alone.\tLaissez-moi tranquille !\nLeave me alone.\tFous-moi la paix !\nLeave my house.\tQuittez ma maison !\nLeave my house.\tQuitte ma maison !\nLeave us alone.\tFiche-nous la paix !\nLeave us alone.\tFichez-nous la paix !\nLeave us alone.\tLaisse-nous tranquilles !\nLend me a hand.\tPasse-moi un coup de main.\nLet Tom answer.\tLaissez Tom répondre.\nLet Tom answer.\tLaisse Tom répondre.\nLet Tom decide.\tLaisse Tom décider.\nLet Tom decide.\tLaissez Tom décider.\nLet Tom decide.\tLaissons Tom décider.\nLet me do that.\tLaissez-moi faire ça.\nLet me do this.\tLaissez-moi faire ça.\nLet me explain.\tLaisse-moi expliquer.\nLet me explain.\tLaissez-moi expliquer.\nLet me hear it.\tFaites-le-moi entendre.\nLet me hear it.\tLaissez-moi l'entendre.\nLet's be clear.\tSoyons clairs.\nLet's be happy.\tSoyons heureux.\nLet's call Tom.\tAppelons Tom.\nLet's continue.\tContinuons !\nLet's hurry up.\tDépêchons.\nLet's hurry up.\tDépêchons-nous.\nLet's not talk.\tNe parlons pas.\nLet's sit down.\tAsseyons-nous.\nLet's watch TV.\tAllons regarder la télévision.\nListen to this!\tÉcoute ça !\nListen to this!\tÉcoutez ça !\nLive and learn.\tVis et apprends.\nLock the doors.\tVerrouille les portes !\nLock the doors.\tVerrouillez les portes !\nLock your door.\tVerrouille ta porte !\nLock your door.\tVerrouillez votre porte !\nLook after Tom.\tPrenez soin de Tom.\nLook after Tom.\tPrends soin de Tom.\nLook for clues.\tCherchez des indices.\nLunch is ready.\tLe repas est prêt.\nMake an effort.\tFais un effort.\nMake your move.\tFais ton mouvement.\nMake your move.\tFaites votre mouvement.\nMake your move.\tFais ton déplacement.\nMake your move.\tFaites votre déplacement.\nMany fish died.\tBeaucoup de poissons ont péri.\nMany fish died.\tDe nombreux poissons sont morts.\nMany fish died.\tDe nombreux poissons périrent.\nMary is lovely.\tMarie est charmante.\nMay I eat this?\tPuis-je manger ceci ?\nMay I go first?\tPuis-je y aller en premier ?\nMay I help you?\tPuis-je vous aider ?\nMay I help you?\tEst-ce que je peux t'aider ?\nMay I join you?\tPuis-je me joindre à vous ?\nMay I join you?\tPuis-je vous accompagner ?\nMay I sit here?\tPuis-je m'asseoir ici ?\nMay I use this?\tPuis-je utiliser ceci ?\nMen are simple.\tLes hommes sont simples.\nMum's the word.\tMotus et bouche cousue.\nMy name is Tom.\tMon nom est Tom.\nMy name is Tom.\tJe me nomme Tom.\nMy nose itches.\tLe nez me gratte.\nMy tummy hurts.\tJ'ai mal au bide.\nNo one arrived.\tPersonne n'est arrivé.\nNo one can say.\tPersonne ne peut le dire.\nNo one can see.\tPersonne ne peut voir.\nNo one cheated.\tPersonne n'a triché.\nNo one cheated.\tPersonne ne tricha.\nNo one escaped.\tPersonne ne s'est évadé.\nNo one escaped.\tPersonne n'en a réchappé.\nNo one escaped.\tPersonne n'en réchappa.\nNo one escaped.\tPersonne ne s'est échappé.\nNo one is home.\tPersonne n'est chez lui.\nNo one is home.\tPersonne n'est à la maison.\nNo one knew it.\tPersonne ne le savait.\nNo one knew it.\tPersonne ne le sut.\nNo one knew it.\tPersonne ne l'a su.\nNo one laughed.\tPersonne ne rit.\nNo one laughed.\tPersonne n'a ri.\nNo one noticed.\tPersonne ne le remarqua.\nNo one noticed.\tPersonne ne l'a remarqué.\nNo one told me.\tPersonne ne me l'a dit.\nNo one told me.\tPersonne ne me le dit.\nNobody is here.\tPersonne n'est ici.\nNow I feel bad.\tDésormais, je me sens mal.\nNow I know why.\tMaintenant, je sais pourquoi.\nNow I remember.\tMaintenant je me rappelle.\nOnly God knows.\tDieu seul le sait.\nOpen the doors.\tOuvre les portes !\nOpen the doors.\tOuvrez les portes !\nOpen this door.\tOuvre cette porte !\nOpen this door.\tOuvrez cette porte !\nOpen your eyes.\tOuvrez vos yeux.\nOpen your eyes.\tOuvre les yeux.\nOpen your eyes.\tOuvrez les yeux.\nOpen your eyes.\tOuvre tes yeux.\nOpen your hand.\tOuvre la main !\nOpen your hand.\tOuvrez la main !\nPack your gear.\tEmballe ton matériel !\nPack your gear.\tEmballez votre matériel !\nPigs can't fly.\tLes cochons ne volent pas.\nPlay us a tune.\tJoue-nous un morceau.\nPlease come in.\tEntrez s'il vous plaît.\nPlease come in.\tEntrez, s'il vous plaît.\nPlease come in.\tVeuillez entrer.\nPlease help me.\tJe vous prie de m'aider.\nPlease help me.\tJe te prie de m'aider.\nPlease open it.\tOuvre-le, je te prie !\nPlease open it.\tOuvrez-le, je vous prie !\nPlease say yes.\tJe te prie de dire oui.\nPlease say yes.\tJe vous prie de dire oui.\nPrepare to die.\tPrépare-toi à mourir !\nPrepare to die.\tPréparez-vous à mourir !\nPrices went up.\tLes prix ont augmenté.\nPrices went up.\tLes prix montèrent.\nProve it to me.\tProuve-le-moi !\nPull over here.\tArrête ici !\nPull over here.\tArrêtez ici !\nPull over here.\tArrête-toi ici !\nPull over here.\tArrêtez-vous ici !\nRead this book.\tLis ce livre.\nRelax a moment.\tDétendez-vous un instant !\nRelax a moment.\tDétends-toi un instant !\nSave me a seat.\tRéserve-moi un siège.\nSave me a seat.\tRéserve-moi un fauteuil.\nSave me a seat.\tRéserve-moi une place.\nSay it clearly.\tDis-le clairement.\nSay it clearly.\tDites-le clairement.\nSay that again.\tRedis ça !\nSay that again.\tRedites ça !\nScience is fun.\tLa science est amusante.\nSeal the doors.\tScellez la porte !\nSeal the doors.\tScelle la porte !\nSee you around.\tAu plaisir de vous revoir.\nShall we order?\tEst-ce qu'on commande ?\nShe adores him.\tElle l'adore.\nShe adores him.\tElle le vénère.\nShe called him.\tElle l'appela.\nShe called him.\tElle l'a appelé.\nShe came alone.\tElle est venue seule.\nShe can't swim.\tElle ne sait pas nager.\nShe can't swim.\tElle n'est pas capable de nager.\nShe choked him.\tElle l'étrangla.\nShe choked him.\tElle l'a étranglé.\nShe cooks well.\tElle cuisine bien.\nShe ditched me.\tElle m'a largué.\nShe dumped him.\tElle l'a plaqué.\nShe fooled him.\tElle le berna.\nShe fooled him.\tElle l'a berné.\nShe gave money.\tElle a donné de l'argent.\nShe got caught.\tElle se fit prendre.\nShe got caught.\tElle s'est fait prendre.\nShe grew roses.\tElle fit pousser des roses.\nShe grew roses.\tElle a fait pousser des roses.\nShe has a bike.\tElle a un vélo.\nShe has a book.\tElle a un livre.\nShe has brains.\tElle a de la jugeotte.\nShe helped him.\tElle l'aida.\nShe helped him.\tElle l'a aidé.\nShe hugged him.\tElle l'enlaça.\nShe hugged him.\tElle l'a enlacé.\nShe is a nurse.\tElle est infirmière.\nShe is awkward.\tElle est maladroite.\nShe is dieting.\tElle est au régime.\nShe is talking.\tElle est en train de s'exprimer.\nShe isn't poor.\tElle n'est pas pauvre.\nShe kept quiet.\tElle s'est tenue tranquille.\nShe kicked him.\tElle lui donna un coup de pied.\nShe kissed him.\tElle l'embrassa.\nShe liked that.\tElle l'apprécia.\nShe liked that.\tElle apprécia cela.\nShe liked that.\tElle l'a apprécié.\nShe liked that.\tElle aima cela.\nShe liked that.\tElle a aimé ça.\nShe likes wine.\tElle aime le vin.\nShe looked ill.\tElle semblait malade.\nShe loves cake.\tElle adore les gâteaux.\nShe loves cats.\tElle adore les chats.\nShe might come.\tIl se peut qu'elle vienne.\nShe never lies.\tElle ne ment jamais.\nShe plays Bach.\tElle joue du Bach.\nShe plays Bach.\tElle joue Bach.\nShe seems rich.\tElle semble riche.\nShe shot a gun.\tElle a tiré avec une arme.\nShe sings well.\tElle chante bien.\nShe smells bad.\tElle pue.\nShe smells bad.\tElle sent mauvais.\nShe swims well.\tElle nage bien.\nShe teased him.\tElle le taquina.\nShe teased him.\tElle l'a taquiné.\nShe trusts him.\tElle lui fait confiance.\nShe trusts him.\tElle se fie à lui.\nShe types well.\tElle tape bien.\nShe was crying.\tElle pleurait.\nShe was crying.\tElle était en train de pleurer.\nShe works hard.\tElle travaille dur.\nShe's a beauty.\tElle est très belle.\nShe's a beauty.\tC'est une belle fille.\nShe's a hottie.\tC'est une bombe.\nShe's a looker.\tC'est un canon.\nShe's adorable.\tElle est adorable.\nShe's an angel.\tC'est un ange.\nShe's demented.\tElle est folle.\nShe's divorced.\tElle a divorcé.\nShe's innocent.\tElle est innocente.\nShe's innocent.\tElle est ingénue.\nShe's not here.\tElle n'est pas ici.\nShe's pregnant.\tElle est enceinte.\nShe's pregnant.\tElle attend un heureux événement.\nShe's pregnant.\tElle attend famille.\nShe's too loud.\tElle est trop bruyante.\nShe's too loud.\tElle parle trop fort.\nShould I close?\tDevrais-je fermer ?\nShould I leave?\tDevrais-je partir ?\nShould I reply?\tDevrais-je répondre ?\nShould I start?\tDevrais-je commencer ?\nShould we wait?\tDevrions-nous attendre ?\nShow it to her.\tMontre-la-lui !\nShow it to her.\tMontre-le-lui !\nShow it to him.\tMontre-le-lui !\nShow us around.\tFais-nous faire le tour.\nShow us around.\tFaites-nous faire le tour.\nShut that door.\tFerme cette porte !\nShut that door.\tFermez cette porte !\nShut your eyes.\tFerme les yeux.\nShut your eyes.\tFermez les yeux.\nSmoking stinks.\tFumer, c'est nul !\nSmoking stinks.\tFumer, ça pue !\nSnap out of it!\tReprends tes esprits !\nSnap out of it!\tReprenez vos esprits !\nSnap out of it!\tReviens à toi !\nSnap out of it!\tRevenez à vous !\nSomeone called.\tQuelqu'un a téléphoné.\nStay out of it.\tNe t'en mêle pas !\nStay out of it.\tNe vous en mêlez pas !\nStop grumbling.\tArrête de râler.\nStop grumbling.\tArrête de ronchonner.\nStop poking me.\tArrête de m'asticoter !\nStop resisting!\tArrête de résister !\nStop screaming.\tArrête de hurler !\nStop screaming.\tArrêtez de hurler !\nStop screaming.\tCesse de hurler !\nStop screaming.\tCessez de hurler !\nSugar is sweet.\tLe sucre est sucré.\nSummer is over.\tL'été est terminé.\nTake my advice!\tSuis mon conseil !\nTake my advice!\tÉcoute mon conseil !\nTake that back.\tRetire ça !\nTake that back.\tRetirez ça !\nTake your shot.\tÀ toi de tirer !\nTake your shot.\tÀ vous de tirer !\nTake your time.\tPrenez votre temps.\nTell the truth.\tDis la vérité.\nThanks a bunch.\tMerci bien.\nThanks a bunch.\tMille mercis.\nThanks so much.\tMerci bien.\nThanks so much.\tMille mercis.\nThat is a boat.\tC'est un bateau.\nThat took guts.\tIl fallait avoir les tripes.\nThat was a lie.\tC'était un mensonge.\nThat was close.\tC'était moins une.\nThat was great.\tC'tait super.\nThat was quick.\tC'était rapide.\nThat was quick.\tCe fut rapide.\nThat was sweet.\tC'était agréable.\nThat was sweet.\tC'était sucré.\nThat was weird.\tC'était bizarre.\nThat'll be all.\tCe sera tout.\nThat's a crime.\tC'est un délit.\nThat's a shame.\tC'est honteux.\nThat's a shame.\tC'est une honte.\nThat's a tower.\tC'est une tour.\nThat's a tower.\tIl s'agit d'une tour.\nThat's alright.\tÇa va.\nThat's alright.\tÇa convient.\nThat's amazing!\tC'est incroyable !\nThat's chicken.\tC'est du poulet.\nThat's correct.\tC'est juste.\nThat's evident.\tC'est évident.\nThat's evident.\tC'est visible.\nThat's evident.\tC'est manifeste.\nThat's foolish.\tC'est bête.\nThat's for you.\tC'est pour toi.\nThat's logical.\tC'est logique.\nThat's my beer.\tC'est ma bière.\nThat's my idea.\tC'est mon idée.\nThat's my wish.\tC'est mon désir.\nThat's no good.\tCe n'est pas bon.\nThat's not bad.\tCe n'est pas mauvais.\nThat's not bad.\tCe n'est pas mal.\nThat's not how.\tCe n'est pas comme ça.\nThat's not why.\tCe n'est pas la raison.\nThat's not why.\tÇa n'en est pas la raison.\nThat's perfect.\tC'est parfait.\nThat's rubbish.\tC'est absurde.\nThat's so hard.\tC'est tellement dur !\nThat's strange.\tC'est étrange.\nThat's the law.\tC'est la loi.\nThat's the way.\tC'est ainsi.\nThat's too bad.\tQuel dommage !\nThe baby cried.\tLe bébé pleura.\nThe baby cried.\tLe bébé a pleuré.\nThe birds sang.\tLes oiseaux chantaient.\nThe cat is wet.\tLe chat est mouillé.\nThe dog barked.\tLe chien aboyait.\nThe flag is up.\tLe drapeau est hissé.\nThe ice melted.\tLa glace a fondu.\nThe roof leaks.\tLe toit fuit.\nThe tea is hot.\tLe thé est brûlant.\nTheir eyes met.\tLeurs regards se croisèrent.\nThere's a risk.\tIl y a un risque.\nThere's a snag.\tIl y a un hic.\nThese are mine.\tCe sont les miens.\nThese are mine.\tCe sont les miennes.\nThey adore Tom.\tIls adorent Tom.\nThey adore Tom.\tElles adorent Tom.\nThey all drank.\tIls ont tous bu.\nThey all drank.\tElles ont toutes bu.\nThey all drank.\tIls burent tous.\nThey all drank.\tElles burent toutes.\nThey are alone.\tElles sont seules.\nThey are alone.\tIls sont seuls.\nThey are bored.\tIls s'ennuient.\nThey are bored.\tElles s'ennuient.\nThey asked him.\tIls lui ont demandé.\nThey asked him.\tElles lui ont demandé.\nThey found out.\tIls ont découvert le truc.\nThey found out.\tIls ont découvert la chose.\nThey found out.\tElles ont découvert le truc.\nThey found out.\tElles ont découvert la chose.\nThey found out.\tIls l'ont démasqué.\nThey found out.\tElles l'ont démasqué.\nThey hated Tom.\tIls haïssaient Tom.\nThey have wine.\tIls disposent de vin.\nThey have wine.\tElles disposent de vin.\nThey just left.\tIls viennent de partir.\nThey just left.\tElles viennent de partir.\nThey let me go.\tIls me laissèrent partir.\nThey let me go.\tElles me laissèrent partir.\nThey let me go.\tIls m'ont laissé partir.\nThey let me go.\tIls m'ont laissée partir.\nThey let me go.\tElles m'ont laissé partir.\nThey let me go.\tElles m'ont laissée partir.\nThey let me go.\tElles m'ont laissé m'en aller.\nThey let me go.\tElles m'ont laissée m'en aller.\nThey let me go.\tIls m'ont laissé m'en aller.\nThey let me go.\tIls m'ont laissée m'en aller.\nThey let me go.\tIls me laissèrent m'en aller.\nThey let me go.\tElles me laissèrent m'en aller.\nThey look cool.\tIls ont l'air calmes.\nThey look cool.\tIls ont l'air détendus.\nThey look cool.\tElles ont l'air calmes.\nThey look cool.\tElles ont l'air détendues.\nThey loved Tom.\tIls aimaient Tom.\nThey quarreled.\tElles se sont disputées.\nThey ruined it.\tIls l'ont détruit.\nThey ruined it.\tElles l'ont détruit.\nThey smell bad.\tIls puent.\nThey smell bad.\tElles puent.\nThey struggled.\tIls ont morflé.\nThey struggled.\tElles ont morflé.\nThey struggled.\tIls ont eu du mal.\nThey struggled.\tElles ont eu du mal.\nThey want more.\tIls veulent davantage.\nThey want more.\tIls en veulent davantage.\nThey want more.\tElles veulent davantage.\nThey want more.\tElles en veulent davantage.\nThey want this.\tIls veulent ceci.\nThey want this.\tElles veulent ceci.\nThey were busy.\tIls étaient occupés.\nThey were busy.\tElles étaient occupées.\nThey work hard.\tElles travaillent dur.\nThey're asleep.\tIls sont endormis.\nThey're asleep.\tElles sont endormies.\nThey're babies.\tCe sont des bébés.\nThey're boring.\tIls sont ennuyeux.\nThey're boring.\tElles sont ennuyeuses.\nThey're coming.\tIls arrivent.\nThey're coming.\tElles arrivent.\nThey're coming.\tIls sont en train d'arriver.\nThey're coming.\tElles sont en train d'arriver.\nThey're idiots.\tIls sont idiots.\nThey're inside.\tIls sont à l'intérieur.\nThey're strong.\tIls sont forts.\nThey're strong.\tElles sont fortes.\nThink about it.\tPenses-y.\nThink about it.\tPensez-y.\nThis dog bites.\tCe chien mord.\nThis dog bites.\tCette chienne mord.\nThis is a book.\tC'est un livre.\nThis is a book.\tCeci est un livre.\nThis is a desk.\tC'est un bureau.\nThis is a fact.\tC'est un fait.\nThis is a joke.\tC'est une blague.\nThis is a joke.\tIl s'agit d'une blague.\nThis is a lion.\tC'est un lion.\nThis is a lion.\tCeci est un lion.\nThis is a scam.\tC'est une arnaque.\nThis is a scam.\tC'est une escroquerie.\nThis is a sign.\tC'est un signe !\nThis is absurd.\tC'est absurde.\nThis is creepy.\tC'est effrayant.\nThis is doable.\tC'est faisable.\nThis is insane.\tC'est dingue.\nThis is my car.\tC'est ma voiture.\nThis is my cat.\tC'est mon chat.\nThis is my dog.\tC'est mon chien.\nThis is normal.\tC'est normal.\nThis is pretty.\tC'est joli.\nThis is theirs.\tCe sont les leurs.\nThis is tricky.\tC'est délicat.\nThis is unsafe.\tCe n'est pas sécurisé.\nThis is urgent.\tC'est urgent.\nThis was a lie.\tC'était un mensonge.\nThose are mine.\tCe sont les miens.\nThose are nice.\tCeux-là sont chouettes.\nThrow it there.\tJette-le là !\nTie your shoes.\tAttache tes chaussures.\nTie your shoes.\tAttache tes lacets.\nTie your shoes.\tNoue tes lacets.\nTie your shoes.\tNoue tes chaussures.\nTime will tell.\tL'avenir le dira.\nTom apologized.\tTom s'est excusé.\nTom apologized.\tTom s'excusa.\nTom can't swim.\tTom ne sait pas nager.\nTom did it all.\tTom a tout fait.\nTom died at 65.\tTom est mort à soixante-cinq ans.\nTom draws well.\tTom dessine bien.\nTom fired Mary.\tTom a viré Mary.\nTom fired Mary.\tTom a renvoyé Mary.\nTom is a guest.\tTom est un invité.\nTom is a moron.\tTom est un idiot.\nTom is a thief.\tTom est un voleur.\nTom is at work.\tTom est en train de travailler.\nTom is driving.\tTom conduit.\nTom is helpful.\tTom est serviable.\nTom is kidding.\tTom rigole.\nTom is kidding.\tTom plaisante.\nTom is leaving.\tTom part.\nTom is married.\tTom est marié.\nTom is packing.\tTom fait ses bagages.\nTom is packing.\tTom fait ses valises.\nTom is playing.\tTom est en train de jouer.\nTom is starved.\tTom est affamé.\nTom is starved.\tTom meurt de faim.\nTom is staying.\tTom reste.\nTom is talking.\tTom est en train de parler.\nTom is working.\tTom est en train de travailler.\nTom isn't dumb.\tTom n'est pas débile.\nTom isn't here.\tTom n'est pas ici.\nTom isn't rich.\tTom n'est pas riche.\nTom knows that.\tTom le sait.\nTom knows that.\tTom sait ça.\nTom liked that.\tTom a aimé ça.\nTom likes snow.\tTom aime la neige.\nTom looks sick.\tTom a l'air plutôt malade.\nTom loves Mary.\tTom adore Mary.\nTom loves Mary.\tTom adore Marie.\nTom may change.\tTom pourrait changer.\nTom needs help.\tTom a besoin d'aide.\nTom needs this.\tTom a besoin de ceci.\nTom needs work.\tTom a besoin de travail.\nTom seems lost.\tTom semble perdu.\nTom seems lost.\tTom a l'air perdu.\nTom seems nice.\tTom a l'air gentil.\nTom seems nice.\tTom a l'air sympa.\nTom set a trap.\tTom tendit un piège.\nTom stopped it.\tTom l'arrêta.\nTom stopped it.\tTom l'a arrêté.\nTom stopped it.\tTom l'a arrêtée.\nTom trusts him.\tTom lui fait confiance.\nTom trusts you.\tTom te fait confiance.\nTom trusts you.\tTom vous fait confiance.\nTom warned you.\tTom t'a prévenu.\nTom was better.\tTom était meilleur.\nTom was lonely.\tTom était seul.\nTom won't know.\tTom ne va pas savoir.\nTom won't know.\tTom ne saura pas.\nTom won't mind.\tÇa ne dérangera pas Tom.\nTom's a doctor.\tTom est docteur.\nTom's a doctor.\tTom est médecin.\nTom's diabetic.\tTom est diabétique.\nTom's dreaming.\tTom rêve.\nTom's drowning.\tTom se noie.\nTom's drowning.\tTom est en train de se noyer.\nTom's innocent.\tTom est innocent.\nTom's not here.\tTom n'est pas ici.\nTom's sweating.\tTom transpire.\nTom's upstairs.\tTom est en haut.\nTom, don't die.\tNe meurs pas, Tom.\nTreat her well.\tTraite-la bien.\nTreat her well.\tTraitez-la bien.\nTreat him well.\tTraite-le bien.\nTreat him well.\tTraitez-le bien.\nTry not to cry.\tEssaie de ne pas pleurer !\nTry not to cry.\tEssayez de ne pas pleurer !\nTry this sauce.\tEssaie cette sauce.\nTry to find it.\tEssaie de le trouver.\nTry to find it.\tTentez de le trouver.\nTry to stop me.\tEssaie de m'arrêter !\nTry to stop me.\tEssayez de m'arrêter !\nTurn on the TV.\tAllume la télé.\nTurn on the TV.\tAllumez la télé.\nWalk tall, son.\tMarche la tête haute, mon fils !\nWas that a yes?\tÉtait-ce un oui ?\nWash your face.\tLavez-vous le visage.\nWash your feet.\tLavez-vous les pieds.\nWash your feet.\tLave-toi les pieds.\nWatch the door.\tSurveille la porte !\nWatch the door.\tSurveillez la porte !\nWatch the rear.\tSurveille l'arrière.\nWatch the road.\tRegarde la route !\nWatch the road.\tRegardez la route !\nWatch yourself.\tFais attention à toi.\nWe all cheered.\tNous acclamèrent tous.\nWe all cheered.\tNous acclamèrent toutes.\nWe all knew it.\tNous le savions tous.\nWe all knew it.\tNous le savions toutes.\nWe all know it.\tNous le savons tous.\nWe all know it.\tNous le savons toutes.\nWe all laughed.\tNous avons tous ri.\nWe all laughed.\tNous avons toutes ri.\nWe all laughed.\tNous rîmes tous.\nWe all laughed.\tNous rîmes toutes.\nWe almost left.\tOn a failli partir.\nWe are all set.\tNous sommes tous prêts.\nWe are all set.\tNous sommes toutes prêtes.\nWe can do that.\tNous pouvons faire ça.\nWe can proceed.\tNous pouvons procéder.\nWe can't do it.\tNous ne pouvons pas le faire.\nWe can't do it.\tNous ne sommes pas en mesure de le faire.\nWe could crash.\tNous pourrions nous écraser.\nWe didn't kiss.\tOn ne s'est pas embrassés.\nWe drank a lot.\tNous bûmes beaucoup.\nWe had a blast.\tOn s'est éclatés.\nWe had a blast.\tOn s'est éclatées.\nWe had to stop.\tIl fallait que nous arrêtions.\nWe had to stop.\tIl nous fallait arrêter.\nWe had to stop.\tIl nous fallait cesser.\nWe had to stop.\tIl fallait que nous cessions.\nWe had to stop.\tIl fallut que nous arrêtions.\nWe had to stop.\tIl fallut que nous cessions.\nWe had to stop.\tIl nous fallut cesser.\nWe had to stop.\tIl nous fallut arrêter.\nWe have a plan.\tNous avons un plan.\nWe have enough.\tNous en avons assez.\nWe have guests.\tNous avons des invités.\nWe have it all.\tNous avons de tout.\nWe just landed.\tNous venons d'atterrir.\nWe knew enough.\tNous en savions assez.\nWe know enough.\tNous en savons assez.\nWe love coffee.\tNous adorons le café.\nWe met earlier.\tNous nous sommes rencontrés plus tôt.\nWe met earlier.\tNous nous sommes rencontrées plus tôt.\nWe must attack.\tIl nous faut attaquer.\nWe must decide.\tIl nous faut décider.\nWe must escape.\tIl nous faut nous échapper.\nWe must go now.\tNous devons y aller maintenant.\nWe need a plan.\tNous avons besoin d'un plan.\nWe need a plan.\tIl nous faut un plan.\nWe need action.\tNous avons besoin d'action.\nWe need heroes.\tIl nous faut des héros.\nWe need to eat.\tIl nous faut manger.\nWe need to win.\tIl nous faut gagner.\nWe need to win.\tIl nous faut l'emporter.\nWe needed help.\tNous avions besoin d'aide.\nWe needed this.\tNous avions besoin de ça.\nWe never voted.\tNous n'avons jamais voté.\nWe only kissed.\tNous n'avons fait que nous embrasser.\nWe saw nothing.\tNous n'avons rien vu.\nWe shook hands.\tNous nous sommes serrés la main.\nWe should help.\tNous devrions donner un coup de main.\nWe should wait.\tNous devrions attendre.\nWe study music.\tNous étudions la musique.\nWe surrendered.\tNous nous rendîmes.\nWe surrendered.\tNous nous sommes rendues.\nWe surrendered.\tNous nous sommes rendus.\nWe volunteered.\tNous nous portâmes volontaires.\nWe volunteered.\tNous nous sommes portés volontaires.\nWe volunteered.\tNous nous sommes portées volontaires.\nWe want change.\tNous voulons du changement.\nWe were beaten.\tNous avons été battus.\nWe were wasted.\tNous étions cuits.\nWe'll be there.\tNous serons là.\nWe'll be there.\tNous y serons.\nWe'll be there.\tOn y sera.\nWe'll be there.\tOn sera là.\nWe'll call you.\tNous vous appellerons.\nWe'll continue.\tNous continuerons.\nWe'll help you.\tNous t'aiderons.\nWe'll help you.\tNous vous aiderons.\nWe'll miss Tom.\tTom nous manquera.\nWe'll miss Tom.\tTom va nous manquer.\nWe'll miss you.\tTu nous manqueras.\nWe'll paint it.\tNous le peindrons.\nWe're a couple.\tNous sommes en couple.\nWe're a family.\tNous sommes une famille.\nWe're all busy.\tNous sommes tous occupés.\nWe're all busy.\tNous sommes toutes occupées.\nWe're all done.\tNous en avons terminé.\nWe're all done.\tNous en avons complètement fini.\nWe're all ears.\tNous sommes toute ouïe.\nWe're all here.\tNous sommes tous là.\nWe're all here.\tNous sommes tous ici.\nWe're all here.\tNous sommes toutes là.\nWe're all here.\tNous sommes toutes ici.\nWe're all safe.\tNous sommes tous en sécurité.\nWe're all safe.\tNous sommes toutes en sécurité.\nWe're brothers.\tNous sommes frères.\nWe're confused.\tNous sommes perplexes.\nWe're divorced.\tNous sommes divorcés.\nWe're escaping.\tNous sommes en train de nous échapper.\nWe're fighting.\tNous sommes en train de nous battre.\nWe're finished.\tNous avons fini.\nWe're finished.\tNous avons terminé.\nWe're finished.\tNous en avons fini.\nWe're finished.\tNous en avons terminé.\nWe're freezing.\tOn se gèle.\nWe're grateful.\tNous sommes reconnaissants.\nWe're grateful.\tNous sommes reconnaissantes.\nWe're helpless.\tNous sommes impuissants.\nWe're helpless.\tNous sommes impuissantes.\nWe're here now.\tNous y sommes, actuellement.\nWe're managing.\tNous nous en sortons.\nWe're not cops.\tNous ne sommes pas flics.\nWe're not cops.\tNous ne sommes pas des flics.\nWe're not done.\tNous n'en avons pas fini.\nWe're not done.\tNous n'en avons pas terminé.\nWe're not free.\tNous ne sommes pas libres.\nWe're not home.\tNous ne sommes pas à la maison.\nWe're not home.\tNous ne sommes pas chez nous.\nWe're not late.\tNous ne sommes pas en retard.\nWe're not lost.\tNous ne sommes pas perdus.\nWe're not lost.\tNous ne sommes pas perdues.\nWe're not open.\tNous ne sommes pas ouverts.\nWe're not open.\tNous ne sommes pas ouvertes.\nWe're not rich.\tNous ne sommes pas riches.\nWe're not safe.\tNous ne sommes pas en sécurité.\nWe're not sure.\tNous ne sommes pas sûrs.\nWe're not sure.\tNous ne sommes pas sûres.\nWe're not sure.\tNous n'en sommes pas sûrs.\nWe're not sure.\tNous n'en sommes pas sûres.\nWe're obedient.\tNous sommes obéissants.\nWe're obedient.\tNous sommes obéissantes.\nWe're partners.\tNous sommes partenaires.\nWe're powerful.\tNous sommes puissants.\nWe're powerful.\tNous sommes puissantes.\nWe're prepared.\tNous sommes prêtes.\nWe're punctual.\tNous sommes ponctuels.\nWe're punctual.\tNous sommes ponctuelles.\nWe're quitting.\tNous abandonnons.\nWe're reliable.\tNous sommes fiables.\nWe're retiring.\tNous partons à la retraite.\nWe're retiring.\tNous partons à la pension.\nWe're ruthless.\tNous sommes impitoyables.\nWe're safe now.\tNous sommes désormais en sécurité.\nWe're so sorry.\tNous sommes tellement désolés.\nWe're standing.\tNous sommes debout.\nWe're starving.\tNous mourons de faim.\nWe're stubborn.\tNous sommes têtus.\nWe're stubborn.\tNous sommes têtues.\nWe're students.\tNous sommes étudiants.\nWe're the best.\tNous sommes les meilleurs.\nWe're the best.\tNous sommes les meilleures.\nWe're the last.\tNous sommes les derniers.\nWe're the last.\tNous sommes les dernières.\nWe're the same.\tNous sommes pareils.\nWe're the same.\tNous sommes pareilles.\nWe're too busy.\tNous sommes trop occupés.\nWe're too busy.\tNous sommes trop occupées.\nWe're too late.\tNous sommes trop en retard.\nWe're too weak.\tNous sommes trop faibles.\nWe're up early.\tNous sommes debout tôt.\nWe've finished.\tNous avons terminé.\nWe've seen her.\tNous l'avons vu.\nWe've seen her.\tNous l'avons vue.\nWe've seen him.\tNous l'avons vu.\nWell done, Tom.\tBien joué, Tom.\nWell done, Tom.\tBravo, Tom.\nWell, let's go.\tEh bien, allons-y.\nWere they good?\tÉtaient-ils bons ?\nWere they good?\tÉtaient-elles bonnes ?\nWere you happy?\tÉtais-tu heureux ?\nWere you happy?\tÉtais-tu heureuse ?\nWere you happy?\tÉtiez-vous heureux ?\nWere you happy?\tÉtiez-vous heureuse ?\nWere you happy?\tÉtiez-vous heureuses ?\nWere you there?\tY étais-tu ?\nWere you there?\tY étiez-vous ?\nWhat a big dog!\tQuel gros chien !\nWhat a big dog!\tQuel grand chien !\nWhat a big dog!\tQuel chien massif !\nWhat a country!\tQuel pays !\nWhat a letdown!\tQuelle déception !\nWhat a miracle!\tQuel miracle !\nWhat a thought!\tQuelle idée !\nWhat a tragedy!\tQuelle tragédie !\nWhat about you?\tEt vous ?\nWhat are these?\tQu'est-ce que c'est ?\nWhat are those?\tQue sont ceux-ci ?\nWhat did I get?\tQu'ai-je obtenu ?\nWhat did I win?\tQu'est-ce que j'ai gagné ?\nWhat do I care?\tQu'en ai-je à faire ?\nWhat do I care?\tQu'est-ce que j'en ai à faire ?\nWhat do I have?\tQu'ai-je ?\nWhat do you do?\tQue fais-tu ?\nWhat do you do?\tQue faites-vous ?\nWhat if I fail?\tQue se passe-t-il si j'échoue ?\nWhat's it like?\tComment est-ce ?\nWhen did he go?\tQuand est-il parti ?\nWhen did he go?\tQuand y est-il allé ?\nWhere are they?\tOù sont-ils ?\nWhere are they?\tOù sont-elles ?\nWhere is Paris?\tOù se trouve Paris ?\nWhere were you?\tOù étais-tu ?\nWhere's my bag?\tOù est ma bourse ?\nWhere's my car?\tOù est ma voiture ?\nWho broke this?\tQui l'a cassé ?\nWho broke this?\tQui a cassé ceci ?\nWho called you?\tQui t'a appelé ?\nWho called you?\tQui vous a appelé ?\nWho did he see?\tQui a-t-il vu ?\nWho goes there?\tQui va là ?\nWho is on duty?\tQui est de service ?\nWho killed Tom?\tQui a tué Tom ?\nWho knows that?\tQui sait cela ?\nWho wants this?\tQui veut ça ?\nWho wants this?\tQui veut ceci ?\nWho will do it?\tQui le fera ?\nWho would care?\tQui s'en soucierait ?\nWho's that boy?\tQui est ce garçon ?\nWho's this guy?\tQui est ce type ?\nWho's this guy?\tQui est ce mec ?\nWho's watching?\tQui regarde ?\nWho's watching?\tQui est en train de regarder ?\nWhose are they?\tÀ qui sont-ils ?\nWhose are they?\tÀ qui sont-elles ?\nWhy do you ask?\tPourquoi demandes-tu ?\nWhy do you lie?\tPourquoi mens-tu ?\nWhy do you lie?\tPourquoi mentez-vous ?\nWhy is he busy?\tPourquoi est-il occupé ?\nWill you do it?\tLe feras-tu ?\nWind the clock.\tRemonte la pendule.\nWipe your nose.\tEssuie-toi le nez !\nYes, I know it.\tOui, je le sais.\nYes, we can go.\tOui, nous pouvons partir.\nYes, we can go.\tOui, nous pouvons y aller.\nYou are morons.\tVous êtes des idiots.\nYou are morons.\tVous êtes des crétins.\nYou are morons.\tVous êtes des attardés mentaux.\nYou are stupid.\tTu es stupide.\nYou aren't Tom.\tTu n'es pas Tom.\nYou aren't Tom.\tVous n'êtes pas Tom.\nYou disgust me.\tTu me dégoûtes.\nYou disgust me.\tVous me dégoutez.\nYou have to go.\tIl faut que tu t'en ailles.\nYou have to go.\tTu dois y aller.\nYou have to go.\tTu dois partir.\nYou have to go.\tTu dois t'en aller.\nYou have to go.\tIl vous faut partir.\nYou have to go.\tIl te faut partir.\nYou lied to me.\tTu m'as menti.\nYou lied to me.\tTu me mentis.\nYou lied to me.\tVous m'avez menti.\nYou lied to me.\tVous me mentîtes.\nYou look bored.\tTu as l'air de t'ennuyer.\nYou look great.\tTu as l'air super.\nYou look happy.\tVous avez l'air heureux.\nYou look happy.\tTu as l'air heureux.\nYou look happy.\tTu as l'air heureuse.\nYou look happy.\tVous avez l'air heureuse.\nYou look happy.\tVous avez l'air heureuses.\nYou look smart.\tTu as l'air intelligent.\nYou look smart.\tTu as l'air intelligente.\nYou look smart.\tVous avez l'air intelligent.\nYou look smart.\tVous avez l'air intelligente.\nYou look smart.\tVous avez l'air intelligentes.\nYou look smart.\tVous avez l'air intelligents.\nYou look tired.\tTu as l'air fatigué.\nYou look tired.\tTu sembles fatigué.\nYou look tired.\tTu parais fatigué.\nYou look tired.\tOn dirait que tu es fatigué.\nYou look upset.\tTu as l'air contrariée.\nYou look upset.\tTu as l'air fâchée.\nYou look upset.\tTu as l'air fâché.\nYou look upset.\tTu as l'air contrarié.\nYou must do it.\tTu dois le faire.\nYou must do it.\tVous devez le faire.\nYou must leave.\tIl faut que tu t'en ailles.\nYou need a job.\tIl vous faut un boulot.\nYou need a job.\tIl te faut un boulot.\nYou need sleep.\tVous avez besoin de sommeil.\nYou need sleep.\tTu as besoin de sommeil.\nYou need to go.\tIl faut que tu t'en ailles.\nYou owe me one.\tTu m'en dois une.\nYou owe me one.\tTu me dois une fière chandelle.\nYou screwed up.\tT'as merdé.\nYou screwed up.\tVous avez merdé.\nYou seem happy.\tVous avez l'air heureux.\nYou seem happy.\tTu sembles heureux.\nYou seem happy.\tTu sembles heureuse.\nYou seem happy.\tVous semblez heureux.\nYou seem happy.\tVous semblez heureuses.\nYou seem happy.\tVous semblez heureuse.\nYou seem upset.\tVous semblez contrariée.\nYou seem upset.\tVous semblez contrariées.\nYou seem upset.\tVous semblez contrarié.\nYou seem upset.\tVous semblez contrariés.\nYou seem upset.\tTu sembles contrarié.\nYou seem upset.\tTu sembles contrariée.\nYou should eat.\tTu devrais manger.\nYou should eat.\tVous devriez manger.\nYou smashed it.\tTu l'as écrasé.\nYou smashed it.\tTu l'as détruit.\nYou smell good.\tTu sens bon.\nYou were great.\tVous avez été super.\nYou were great.\tTu as été super.\nYou were happy.\tTu étais heureux.\nYou were happy.\tTu étais heureuse.\nYou were happy.\tVous étiez heureux.\nYou were happy.\tVous étiez heureuses.\nYou'd like Tom.\tTu aimerais Tom.\nYou'd like Tom.\tVous aimeriez Tom.\nYou'll all die.\tVous allez tous mourir.\nYou'll be fine.\tÇa se passera bien pour toi.\nYou'll be fine.\tÇa se passera bien pour vous.\nYou'll be safe.\tTu seras en sécurité.\nYou're a prude.\tTu es un puritain.\nYou're a prude.\tVous êtes un puritain.\nYou're a prude.\tTu es une puritaine.\nYou're a prude.\tVous êtes une puritaine.\nYou're all mad.\tVous êtes tous fous.\nYou're all mad.\tVous êtes toutes folles.\nYou're all set.\tVous êtes tous prêts.\nYou're all set.\tVous êtes toutes prêtes.\nYou're amazing.\tTu es incroyable.\nYou're amazing.\tVous êtes incroyable.\nYou're amazing.\tVous êtes incroyables.\nYou're amusing.\tTu me fais marrer.\nYou're amusing.\tVous me faites marrer.\nYou're awesome.\tTu es génial.\nYou're awesome.\tVous êtes génial.\nYou're awesome.\tTu es géniale.\nYou're awesome.\tVous êtes géniale.\nYou're callous.\tTu es insensible.\nYou're callous.\tVous êtes insensible.\nYou're careful.\tTu es prudent.\nYou're careful.\tTu es prudente.\nYou're correct.\tTu as raison.\nYou're elusive.\tVous êtes insaisissable.\nYou're elusive.\tTu es insaisissable.\nYou're finicky.\tTu es tatillon.\nYou're finicky.\tTu es tatillonne.\nYou're finicky.\tVous êtes tatillon.\nYou're finicky.\tVous êtes tatillons.\nYou're finicky.\tVous êtes tatillonne.\nYou're finicky.\tVous êtes tatillonnes.\nYou're foolish.\tTu es imprudent.\nYou're foolish.\tTu es imprudente.\nYou're foolish.\tVous êtes imprudent.\nYou're foolish.\tVous êtes imprudente.\nYou're foolish.\tVous êtes imprudents.\nYou're foolish.\tVous êtes imprudentes.\nYou're in luck.\tTu es veinard.\nYou're in luck.\tTu es veinarde.\nYou're in luck.\tVous êtes veinard.\nYou're in luck.\tVous êtes veinards.\nYou're in luck.\tVous êtes veinarde.\nYou're in luck.\tVous êtes veinardes.\nYou're invited.\tVous êtes invités.\nYou're invited.\tVous êtes invitées.\nYou're invited.\tVous êtes invité.\nYou're invited.\tVous êtes invitée.\nYou're invited.\tTu es invité.\nYou're invited.\tTu es invitée.\nYou're jealous.\tTu es jalouse.\nYou're kidding!\tTu me fais marcher !\nYou're kidding!\tTu plaisantes !\nYou're kidding!\tVous plaisantez !\nYou're kidding!\tVous me faites marcher !\nYou're my type.\tTu es mon type.\nYou're no help.\tTu n'es d'aucune aide.\nYou're no help.\tVous n'êtes d'aucune aide.\nYou're not bad.\tTu n'es pas mal.\nYou're not bad.\tVous n'êtes pas mal.\nYou're not fat.\tTu n'es pas gros.\nYou're not fat.\tVous n'êtes pas gros.\nYou're not fat.\tVous n'êtes pas grosse.\nYou're not fat.\tVous n'êtes pas grosses.\nYou're not fat.\tTu n'es pas grosse.\nYou're not fit.\tTu ne conviens pas.\nYou're not fit.\tVous ne convenez pas.\nYou're not fit.\tTu n'es pas en forme.\nYou're not fit.\tVous n'êtes pas en forme.\nYou're precise.\tVous êtes précis.\nYou're precise.\tTu es précis.\nYou're precise.\tTu es précise.\nYou're psyched.\tT'es remonté.\nYou're psyched.\tT'es remontée.\nYou're psychic.\tTu es voyante.\nYou're psychic.\tTu es voyant.\nYou're selfish.\tTu es égoïste.\nYou're selfish.\tVous êtes égoïste.\nYou're selfish.\tVous êtes égoïstes.\nYou're sloshed.\tT'es bourré.\nYou're smashed.\tT'es bourré.\nYou're so mean.\tVous êtes si méchant.\nYou're so mean.\tTu es si méchant.\nYou're so mean.\tTu es si méchante.\nYou're so mean.\tVous êtes si méchante.\nYou're so mean.\tVous êtes si méchants.\nYou're so mean.\tVous êtes si méchantes.\nYou're the pro.\tC'est vous le professionnel.\nYou're the pro.\tC'est toi le professionnel.\nYou're through.\tTu en as fini.\nYou're through.\tVous en avez fini.\nYou're through.\tVous en avez terminé.\nYou're useless.\tVous êtes inutiles.\nYou're welcome.\tJe vous en prie.\nYou're welcome.\tAvec plaisir.\nYou're welcome.\tDe rien !\nYou're welcome.\tJe t'en prie.\nYou're winning.\tTu gagnes.\nYou're winning.\tVous gagnez.\nYou're winning.\tTu l'emportes.\nYou're winning.\tVous l'emportez.\nYou've done it!\tTu l'as fait !\nYou've done it!\tVous l'avez fait !\nYour wife left.\tTa femme est partie.\nA boat capsized.\tUn bateau chavira.\nA boat capsized.\tUn bateau a chaviré.\nA fish can swim.\tUn poisson peut nager.\nA man must work.\tUn homme doit travailler.\nAbout what time?\tVers quelle heure ?\nAdjust your tie.\tAjuste ta cravate !\nAdjust your tie.\tAjustez votre cravate !\nAin't that cute?\tN'est-ce pas mignon ?\nAll are present.\tTous sont présents.\nAll are present.\tToutes sont présentes.\nAm I alone here?\tEst-ce que je suis seul ici?\nAm I boring you?\tEst-ce que je t'ennuie ?\nAm I boring you?\tEst-ce que je vous ennuie ?\nAnybody in here?\tY a-t-il qui que ce soit là-dedans ?\nAnybody see you?\tQuiconque t'a vu ?\nAnybody will do.\tN'importe qui fera l'affaire.\nAre drinks free?\tEst-ce que les boissons sont gratuites ?\nAre drinks free?\tLes boissons sont-elles gratuites ?\nAre these yours?\tCe sont les vôtres ?\nAre we all here?\tSommes-nous tous là ?\nAre we all here?\tSommes-nous toutes là ?\nAre we finished?\tEn avons-nous terminé ?\nAre we prepared?\tSommes-nous prêts ?\nAre we prepared?\tY sommes-nous prêts ?\nAre we prepared?\tSommes-nous prêtes ?\nAre we prepared?\tY sommes-nous prêtes ?\nAre you Chinese?\tEs-tu Chinois ?\nAre you Chinese?\tÊtes-vous chinois ?\nAre you Chinese?\tVous êtes chinois ?\nAre you a ghost?\tEs-tu un fantôme ?\nAre you a ghost?\tÊtes-vous un fantôme ?\nAre you a ghost?\tEs-tu un esprit ?\nAre you all set?\tVous êtes tous prêts ?\nAre you at home?\tTu es chez toi ?\nAre you at work?\tEs-tu au travail ?\nAre you at work?\tÊtes-vous au travail ?\nAre you certain?\tEn es-tu sûre ?\nAre you certain?\tEn êtes-vous sûr ?\nAre you certain?\tEn êtes-vous sûres ?\nAre you certain?\tEn êtes-vous sûre ?\nAre you certain?\tEn es-tu sûr ?\nAre you doctors?\tÊtes-vous médecins ?\nAre you dressed?\tEs-tu habillé ?\nAre you dressed?\tEs-tu habillée ?\nAre you dressed?\tÊtes-vous habillé ?\nAre you dressed?\tÊtes-vous habillés ?\nAre you dressed?\tÊtes-vous habillée ?\nAre you dressed?\tÊtes-vous habillées ?\nAre you envious?\tÊtes-vous envieux ?\nAre you envious?\tÊtes-vous envieuses ?\nAre you envious?\tÊtes-vous envieuse ?\nAre you envious?\tEs-tu envieux ?\nAre you envious?\tEs-tu envieuse ?\nAre you envious?\tEs-tu jaloux ?\nAre you envious?\tEs-tu jalouse ?\nAre you envious?\tÊtes-vous jaloux ?\nAre you envious?\tÊtes-vous jalouses ?\nAre you envious?\tÊtes-vous jalouse ?\nAre you excited?\tEs-tu énervé ?\nAre you excited?\tÊtes-vous énervé ?\nAre you excited?\tÊtes-vous énervés ?\nAre you excited?\tÊtes-vous énervées ?\nAre you guys OK?\tÇa va, tout le monde ?\nAre you healthy?\tÊtes-vous en bonne santé ?\nAre you insured?\tÊtes-vous assuré ?\nAre you insured?\tEs-tu assuré ?\nAre you jealous?\tEs-tu jaloux ?\nAre you jealous?\tEs-tu jalouse ?\nAre you jealous?\tÊtes-vous jaloux ?\nAre you jealous?\tÊtes-vous jalouses ?\nAre you jealous?\tÊtes-vous jalouse ?\nAre you kidding?\tVous plaisantez ?\nAre you kidding?\tTu plaisantes ?\nAre you kidding?\tTu plaisantes ?\nAre you kidding?\tVous plaisantez ?\nAre you kidding?\tPlaisantez-vous ?\nAre you kidding?\tPlaisantes-tu ?\nAre you looking?\tRegardes-tu ?\nAre you looking?\tRegardez-vous ?\nAre you married?\tÊtes-vous marié ?\nAre you nervous?\tÊtes-vous nerveux ?\nAre you nervous?\tÊtes-vous nerveuse ?\nAre you nervous?\tÊtes-vous nerveuses ?\nAre you on dope?\tEs-tu drogué ?\nAre you on dope?\tEs-tu droguée ?\nAre you on dope?\tÊtes-vous drogués ?\nAre you on dope?\tÊtes-vous droguées ?\nAre you on dope?\tÊtes-vous drogué ?\nAre you on dope?\tÊtes-vous droguée ?\nAre you relaxed?\tÊtes-vous détendu ?\nAre you relaxed?\tÊtes-vous détendues ?\nAre you relaxed?\tÊtes-vous détendus ?\nAre you relaxed?\tÊtes-vous détendue ?\nAre you relaxed?\tEs-tu détendu ?\nAre you relaxed?\tEs-tu détendue ?\nAre you serious?\tTu es sérieux ?\nAre you serious?\tÊtes-vous sérieux ?\nAre you serious?\tT'es sérieuse ?\nAre you sincere?\tEs-tu sincère ?\nAre you sincere?\tÊtes-vous sincère ?\nAre you sisters?\tÊtes-vous sœurs ?\nAre you thirsty?\tAvez-vous soif ?\nAre you thirsty?\tAs-tu soif ?\nAre you thirsty?\tAs-tu soif ?\nAre you thirsty?\tAvez-vous soif ?\nAre you working?\tTravaillez-vous ?\nAre you working?\tEs-tu en train de travailler ?\nAre you working?\tÊtes-vous en train de travailler ?\nAren't we lucky?\tN'avons-nous pas de chance ?\nAren't we lucky?\tNe sommes-nous pas chanceux ?\nAren't we lucky?\tNe sommes-nous pas chanceuses ?\nAren't you cold?\tN'avez-vous pas froid ?\nAren't you late?\tN'es-tu pas en retard ?\nAren't you late?\tN'êtes-vous pas en retard ?\nAsk me anything!\tDemande-moi n'importe quoi !\nBalls are round.\tLes balles sont rondes.\nBe careful, Tom!\tFais attention, Tom !\nBe more precise.\tSoyez plus précis.\nBe more precise.\tSoit plus précis.\nBe quiet, girls.\tRestez tranquilles, les filles !\nBe very careful.\tSois très prudent !\nBe very careful.\tSoyez très prudent !\nBe very careful.\tSoyez très prudente !\nBe very careful.\tSoyez très prudents !\nBe very careful.\tSoyez très prudentes !\nBe very careful.\tSois très prudente !\nBees make honey.\tLes abeilles font du miel.\nBehave yourself.\tComporte-toi bien.\nBlack suits you.\tLe noir te va bien.\nBlack suits you.\tLe noir vous va bien.\nBoil some water.\tFais bouillir un peu d'eau.\nBoil some water.\tFaites bouillir de l'eau.\nBoy was I naive.\tDieu que j'étais naïf !\nBoy was I naive.\tDieu que j'étais naïve !\nBoy was I naive.\tCe que j'étais naïve !\nBoy was I naive.\tCe que j'étais naïf !\nBoy was I wrong.\tCombien j'avais tort !\nBoys are stupid.\tLes garçons sont stupides.\nBring him to me.\tAmenez-le-moi.\nBring him to me.\tAmène-le-moi !\nBring me my hat.\tApporte-moi mon chapeau.\nBring that here.\tApporte ça ici.\nBring that here.\tApportez ça ici.\nCall me anytime.\tAppelle-moi quand tu veux.\nCall the police!\tAppelez la police !\nCan I afford it?\tEn ai-je les moyens ?\nCan I afford it?\tPuis-je me le payer ?\nCan I be honest?\tPuis-je être honnête ?\nCan I come over?\tPuis-je venir chez vous ?\nCan I come over?\tPuis-je venir chez toi ?\nCan I keep this?\tPuis-je garder ceci ?\nCan I leave now?\tPuis-je m'en aller maintenant ?\nCan I pay later?\tPuis-je payer plus tard?\nCan I trust him?\tPuis-je lui faire confiance ?\nCan anyone help?\tQuiconque peut-il aider ?\nCan they see me?\tPeuvent-ils me voir ?\nCan they see me?\tSont-ils en mesure de me voir ?\nCan they see me?\tPeuvent-elles me voir ?\nCan they see me?\tSont-elles en mesure de me voir ?\nCan they see us?\tSont-ils en mesure de nous voir ?\nCan they see us?\tSont-elles en mesure de nous voir ?\nCan they see us?\tPeuvent-ils nous voir ?\nCan they see us?\tPeuvent-elles nous voir ?\nCan we fix this?\tPouvons-nous arranger ça ?\nCan we fix this?\tPouvons-nous réparer ça ?\nCan we help you?\tPouvons-nous vous aider ?\nCan we help you?\tPouvons-nous t'aider ?\nCan you do that?\tPeux-tu faire ça ?\nCan you do that?\tPouvez-vous faire cela ?\nCan you hear me?\tM'entendez-vous ?\nCan you hear us?\tArrives-tu à nous entendre ?\nCan you hear us?\tArrivez-vous à nous entendre ?\nCan you hear us?\tParviens-tu à nous entendre ?\nCan you hear us?\tParvenez-vous à nous entendre ?\nCan you help me?\tPourrais-tu m'aider ?\nCan you help me?\tPeux-tu m'aider ?\nCan you help me?\tPouvez-vous m'aider ?\nCan you help me?\tPeux-tu m'aider ?\nCan you help us?\tPouvez-vous nous aider ?\nCan you see Tom?\tPeux-tu voir Tom ?\nCan you see Tom?\tPouvez-vous voir Tom ?\nCan you show me?\tPeux-tu me montrer ?\nCan you show me?\tPouvez-vous me montrer ?\nCan you shut up?\tPeux-tu te taire?\nCan you skip me?\tVous pouvez me lâcher ?\nCan you skip me?\tTu peux me lâcher ?\nCan you whistle?\tSavez-vous siffler ?\nCatch you later.\tÀ plus tard !\nCats catch mice.\tLes chats peuvent attraper les souris.\nCats catch mice.\tLes chats attrapent des souris.\nCats like boxes.\tLes chats aiment les boîtes.\nChange is scary.\tLe changement est terrifiant.\nCheck these out.\tRegarde celles-ci !\nCheck these out.\tRegardez celles-ci !\nCheck these out.\tRegarde ceux-ci !\nCheck these out.\tRegardez ceux-ci !\nClean your room.\tNettoyez votre chambre.\nClean your room.\tNettoie ta chambre.\nClean your room.\tNettoie ta chambre !\nClean your room.\tNettoyez votre chambre !\nClose that door.\tFerme cette porte !\nClose that door.\tFermez cette porte !\nClose your eyes.\tFerme tes yeux.\nClose your eyes.\tFerme les yeux.\nClose your eyes.\tFermez les yeux.\nCome and get it.\tViens le chercher.\nCome and get it.\tVenez le chercher.\nCome and get it.\tVenez la chercher.\nCome and get it.\tViens la chercher.\nCome and see me.\tViens me voir.\nCome and see me.\tVenez me voir.\nCome as you are.\tViens comme tu es.\nCome as you are.\tVenez comme vous êtes.\nCome back later.\tReviens plus tard.\nCome home early.\tRentre tôt à la maison.\nCome if you can.\tViens si tu peux !\nCome if you can.\tVenez, si vous pouvez !\nCome in already.\tEntre, déjà !\nCome in already.\tEntrez, déjà !\nCome on up here.\tGrimpe ici !\nCome on up here.\tGrimpe-là !\nCome on, get up.\tAllez, lève-toi.\nCongratulations!\tFélicitations.\nCongratulations!\tFélicitations !\nCount to thirty.\tCompte jusque trente.\nDid I drop that?\tAi-je fait tomber ça ?\nDid I miss much?\tAi-je beaucoup manqué ?\nDid I miss much?\tAi-je beaucoup loupé ?\nDid Tom find it?\tTom l'a-t-il trouvé ?\nDid Tom find it?\tTom l'a-t-il trouvée ?\nDid anyone care?\tQuiconque s'en est-il soucié ?\nDid he go there?\tEst-il allé là-bas ?\nDid he go there?\tEst-il allé là?\nDid he go there?\tS'y est-il rendu ?\nDid he go there?\tY est-il allé ?\nDid he say that?\tEst-ce qu'il a dit ça ?\nDid she like it?\tEst-ce qu'elle a aimé ?\nDid she like it?\tElle a aimé ?\nDid someone die?\tQuelqu'un est-il mort ?\nDid you do this?\tAs-tu fait ceci ?\nDid you do this?\tAvez-vous fait ceci ?\nDid you drop it?\tL'as-tu laissé tomber ?\nDid you drop it?\tL'avez-vous laissé tomber ?\nDid you drop it?\tL'as-tu abandonné ?\nDid you drop it?\tL'avez-vous abandonné ?\nDid you drop it?\tL'as-tu débarqué ?\nDid you drop it?\tL'avez-vous débarqué ?\nDid you hear it?\tL'as-tu entendu ?\nDid you hear it?\tL'avez-vous entendu ?\nDid you like it?\tL'as-tu aimé ?\nDid you like it?\tL'as-tu aimée ?\nDid you like it?\tL'avez-vous aimé ?\nDid you like it?\tL'avez-vous aimée ?\nDid you miss me?\tJe t'ai manqué ?\nDid you miss me?\tT'ai-je manqué ?\nDid you miss me?\tVous ai-je manqué ?\nDid you need me?\tAvais-tu besoin de moi ?\nDid you need me?\tAviez-vous besoin de moi ?\nDid you say yes?\tAvez-vous dit oui ?\nDid you take it?\tL'as-tu pris ?\nDid you take it?\tL'avez-vous pris ?\nDig a deep hole.\tCreuse un trou profond.\nDinner is ready.\tLe dîner est prêt.\nDo I have to go?\tDois-je y aller ?\nDo I look tired?\tAi-je l'air fatigué ?\nDo I look tired?\tAi-je l'air fatiguée ?\nDo it right now.\tFaites-le immédiatement.\nDo not tempt me.\tNe me tente pas !\nDo not tempt me.\tNe me tentez pas !\nDo we have time?\tAvons-nous le temps ?\nDo what he says.\tFais ce qu'il dit !\nDo what he says.\tFaites ce qu'il dit !\nDo you disagree?\tN'es-tu pas d'accord ?\nDo you disagree?\tN'êtes-vous pas d'accord ?\nDo you eat fish?\tManges-tu du poisson ?\nDo you eat fish?\tMangez-vous du poisson ?\nDo you eat fish?\tEst-ce que tu manges du poisson?\nDo you eat meat?\tManges-tu de la viande ?\nDo you eat meat?\tMangez-vous de la viande ?\nDo you have one?\tEn as-tu un ?\nDo you have one?\tEn avez-vous un ?\nDo you know CPR?\tConnais-tu le massage cardiaque ?\nDo you know CPR?\tConnaissez-vous le massage cardiaque ?\nDo you know her?\tLa connaissez-vous ?\nDo you know her?\tLa connais-tu ?\nDo you know him?\tVous le connaissez ?\nDo you know him?\tLe connaissez-vous ?\nDo you know why?\tSais-tu pourquoi ?\nDo you know why?\tSavez-vous pourquoi ?\nDo you know why?\tEst-ce que tu sais pourquoi ?\nDo you know why?\tEst-ce que vous savez pourquoi ?\nDo you like rap?\tTu aimes le rap ?\nDo you remember?\tTe rappelles-tu ?\nDo you remember?\tTu te souviens ?\nDo you remember?\tVous vous souvenez ?\nDo you remember?\tVous rappelez-vous ?\nDo you remember?\tEst-ce que vous vous souvenez ?\nDo you see that?\tVois-tu ça ?\nDo you think so?\tPenses-tu la même chose ?\nDo you think so?\tLe pensez-vous ?\nDo you think so?\tLe penses-tu ?\nDo you trust me?\tMe fais-tu confiance ?\nDo you trust me?\tTe fies-tu à moi ?\nDo you trust me?\tMe faites-vous confiance ?\nDo you trust me?\tVous fiez-vous à moi ?\nDo you want any?\tEn voudrais-tu ?\nDo you want him?\tAvez-vous besoin de lui ?\nDo your own job.\tFais ton propre travail !\nDo your own job.\tFaites votre propre travail !\nDoes he know me?\tMe connait-il ?\nDoes he like me?\tM'apprécie-t-il ?\nDoes that count?\tEst-ce que ça compte ?\nDon't apologize.\tNe t'excuse pas.\nDon't attack me.\tNe m'attaque pas !\nDon't attack me.\tNe m'attaquez pas !\nDon't back away.\tNe cède pas !\nDon't back away.\tNe cédez pas !\nDon't back away.\tNe recule pas !\nDon't back away.\tNe reculez pas !\nDon't be afraid.\tN'aie pas peur.\nDon't be afraid.\tN'ayez pas peur.\nDon't be afraid.\tN'aie pas peur !\nDon't be afraid.\tN'ayez pas peur !\nDon't be scared.\tN'aie pas peur.\nDon't be scared.\tN'ayez pas peur.\nDon't be so shy.\tNe sois pas si timide !\nDon't be so shy.\tNe soyez pas si timide !\nDon't be so shy.\tNe soyez pas si timides !\nDon't cheat him.\tNe le trompe pas.\nDon't die on me.\tNe me claque pas dans les pattes !\nDon't follow me.\tNe me suis pas !\nDon't follow me.\tNe me suivez pas !\nDon't forget us.\tNe nous oublie pas.\nDon't forget us.\tNe nous oubliez pas.\nDon't freak out.\tNe flipe pas !\nDon't get angry.\tNe te fâche pas.\nDon't interfere.\tNe t'en mêle pas !\nDon't interfere.\tNe vous en mêlez pas !\nDon't interrupt.\tN'interrompez pas !\nDon't interrupt.\tN'interromps pas !\nDon't lie to me.\tNe me mens pas !\nDon't lie to me.\tNe me mens pas.\nDon't look away.\tNe regarde pas ailleurs.\nDon't look back.\tNe regarde pas derrière toi.\nDon't overdo it.\tN'en fais pas trop.\nDon't play dumb!\tNe fais pas l'imbécile.\nDon't remind me.\tNe me le rappelle pas !\nDon't remind me.\tNe me le rappelez pas !\nDon't resist us.\tNe nous résiste pas !\nDon't resist us.\tNe nous résistez pas !\nDon't rub it in.\tNe le serine pas !\nDon't rub it in.\tNe le serinez pas !\nDon't run risks.\tNe cours pas de risques.\nDon't run risks.\tNe courez pas de risques.\nDon't stay here.\tNe reste pas ici !\nDon't stay here.\tNe restez pas ici !\nDon't trust him.\tNe lui faites pas confiance.\nDon't you agree?\tN'êtes-vous pas d'accord ?\nDraw me a sheep.\tDessine-moi un mouton...\nDrink something.\tBois quelque chose.\nDrive carefully.\tConduis prudemment.\nDrive carefully.\tConduis avec prudence.\nEnjoy your food.\tBon appétit !\nEnjoy your meal!\tBon appétit !\nEnjoy your meal.\tFaites un agréable repas !\nEnjoy your stay.\tFaites un agréable séjour !\nEnjoy your trip.\tFaites un bon voyage !\nEveryone agreed.\tTout le monde fut d'accord.\nEveryone agreed.\tTout le monde a été d'accord.\nEveryone did it.\tTout le monde le fit.\nEveryone did it.\tTout le monde l'a fait.\nEveryone dreams.\tTout le monde rêve.\nEveryone prayed.\tTout le monde a prié.\nEveryone prayed.\tTout le monde pria.\nEveryone saw it.\tTout le monde l'a vu.\nEveryone saw it.\tTout le monde le vit.\nEveryone smiled.\tTout le monde a souri.\nEveryone smiled.\tTout le monde sourit.\nEveryone waited.\tTout le monde attendit.\nEveryone waited.\tTout le monde a attendu.\nEveryone was OK.\tTout le monde était sain et sauf.\nEveryone's dead.\tTout le monde est mort.\nEveryone's fine.\tTout le monde va bien.\nExpect no mercy.\tN'espérez aucune pitié !\nExpect no mercy.\tN'espère aucune pitié !\nExpect no mercy.\tNe t'attends à aucune pitié !\nExpect no mercy.\tNe vous attendez à aucune pitié !\nFasten the gate.\tAttachez la grille s'il vous plait.\nFetch me my hat.\tRamène-moi mon chapeau.\nFold up the map.\tRepliez la carte.\nFollow that car.\tSuivez cette voiture.\nFollow that car.\tSuis cette voiture.\nFollow that car.\tSuivez cette voiture !\nGet in the boat.\tMonte dans le bateau !\nGet in the boat.\tMontez dans le bateau !\nGet in the boat.\tGrimpe dans le bateau !\nGet in the boat.\tGrimpez dans le bateau !\nGet me a lawyer.\tTrouve-moi un avocat !\nGet off my back!\tLâche-moi !\nGet off my back!\tLâchez-moi !\nGet out of here.\tSors d'ici !\nGet out of here.\tSortez d'ici !\nGet rid of them.\tDébarrassez-vous d'elles !\nGet rid of them.\tDébarrassez-vous d'eux !\nGet there early.\tArrivez-y tôt !\nGet there early.\tArrives-y tôt !\nGet your mother.\tVa chercher ta mère !\nGet your mother.\tAllez chercher votre mère!\nGirls are crazy.\tLes filles sont folles.\nGirls are crazy.\tLes filles sont dingues.\nGirls are crazy.\tLes filles sont bargeots.\nGirls are crazy.\tLes filles sont givrées.\nGive her a doll.\tDonne-lui une poupée !\nGive her a doll.\tDonnez-lui une poupée !\nGive it to them.\tDonne-le-leur.\nGive it to them.\tDonne-la-leur.\nGive me a break.\tLâche-moi !\nGive me a break.\tFous-moi la paix.\nGive me a break.\tFichez-moi la paix.\nGive me a break.\tLâche-moi !\nGive me a break.\tLâchez-moi !\nGive me a drink.\tDonnez-moi quelque chose à boire !\nGive me a drink.\tDonne-moi quelque chose à boire !\nGive them to me.\tDonnez-les-moi !\nGive them to me.\tDonne-les-moi !\nGo back to work.\tRetourne au travail !\nGo back to work.\tRetournez au travail !\nGo grab a drink.\tVa attraper un verre !\nGo grab a drink.\tVa t'attraper quelque chose à boire !\nGo grab a drink.\tAllez vous attraper quelque chose à boire !\nGo grab a drink.\tAllez attraper un verre !\nGo home quickly.\tRentre vite à la maison.\nGo home quickly.\tVa vite à la maison !\nGo see a doctor.\tVa voir un médecin !\nGo see a doctor.\tAllez voir un médecin !\nGo to the store.\tVa au magasin !\nGo to the store.\tAllez au magasin !\nGo to the store.\tRends-toi au magasin !\nGo to the store.\tRendez-vous au magasin !\nGo to your room!\tVa dans ta chambre !\nGo to your room!\tAllez dans votre chambre !\nGo to your room.\tVa dans ta chambre !\nGo to your room.\tAllez dans votre chambre !\nGod sent a sign.\tDieu envoya un signe.\nGod sent a sign.\tDieu envoya un écriteau.\nGod sent a sign.\tDieu envoya une pancarte.\nGod sent a sign.\tDieu envoya un panneau.\nGod sent a sign.\tDieu a envoyé un écriteau.\nGod sent a sign.\tDieu a envoyé un signe.\nGod sent a sign.\tDieu a envoyé une pancarte.\nGrab the bottom.\tAttrape le bas.\nGreat, isn't it?\tFormidable! Pas vrai?\nGreen suits you.\tLe vert te va bien.\nGreen suits you.\tLe vert vous sied bien.\nGuys are stupid.\tLes mecs sont stupides.\nHand me a towel.\tPasse-moi une serviette.\nHand me a towel.\tPassez-moi une serviette.\nHas he come yet?\tEst-il venu ?\nHave a nice day!\tBonne journée !\nHave a nice day.\tBonne journée !\nHave a nice day.\tPasse une bonne journée.\nHave a nice day.\tJe vous souhaite le bonjour !\nHave a nice day.\tPasse une bonne journée !\nHave pity on us!\tAyez pitié de nous !\nHe acts quickly.\tIl agit rapidement.\nHe began to cry.\tIl s'est mis à pleurer.\nHe began to cry.\tIl se mit à pleurer.\nHe began to run.\tIl a commencé à courir.\nHe betrayed you.\tIl vous trahissait.\nHe betrayed you.\tIl vous a trahie.\nHe betrayed you.\tIl t'a trahi.\nHe betrayed you.\tIl t'a trahie.\nHe betrayed you.\tIl vous a trahi.\nHe bought a car.\tIl acheta une voiture.\nHe bought a hat.\tIl a acheté un chapeau.\nHe came running.\tIl vint en courant.\nHe came running.\tIl est venu en courant.\nHe can run fast.\tIl est capable de courir vite.\nHe can't be ill.\tIl ne se peut pas qu'il soit malade.\nHe did his best.\tIl a fait de son mieux.\nHe did it again.\tIl l'a fait à nouveau.\nHe did it again.\tIl l'a fait de nouveau.\nHe did it again.\tIl a recommencé.\nHe does it fast.\tIl le fait rapidement.\nHe drank a beer.\tIl but une bière.\nHe drank a beer.\tIl a bu une bière.\nHe drinks a lot.\tIl boit beaucoup.\nHe gave up hope.\tIl abandonna tout espoir.\nHe gave up hope.\tIl a abandonné tout espoir.\nHe got into bed.\tIl se mit au lit.\nHe got the ball.\tIl a le ballon.\nHe got very mad.\tIl s'est mis très en colère.\nHe had ambition.\tIl avait de l'ambition.\nHe had no money.\tIl n'avait pas d'argent.\nHe hardly works.\tIl travaille à peine.\nHe hardly works.\tIl ne travaille guère.\nHe has a Toyota.\tIl a une Toyota.\nHe has a camera.\tIl a un appareil photo.\nHe has a camera.\tIl dispose d'un appareil photo.\nHe has a hat on.\tIl porte un chapeau.\nHe has gone mad.\tIl est devenu fou.\nHe has gone out.\tIl est sorti.\nHe has no money.\tIl n'a pas d'argent.\nHe has ten cows.\tIl possède dix vaches.\nHe has two cars.\tIl a deux voitures.\nHe has two cars.\tIl détient deux voitures.\nHe has two cats.\tIl a deux chats.\nHe hit me twice.\tIl m'a frappée par deux fois.\nHe intrigues me.\tIl m'intrigue.\nHe is a bad boy.\tC'est un mauvais garçon.\nHe is a dreamer.\tIl est rêveur.\nHe is a painter.\tIl est peintre.\nHe is a painter.\tC'est un peintre.\nHe is a psychic.\tIl est médium.\nHe is a psychic.\tC'est un voyant.\nHe is a student.\tC'est un étudiant.\nHe is a student.\tIl est étudiant.\nHe is a teacher.\tIl est enseignant.\nHe is a teacher.\tIl est instituteur.\nHe is depressed.\tIl est déprimé.\nHe is my friend.\tIl est mon ami.\nHe is off today.\tIl est en congé, aujourd'hui.\nHe is unmarried.\tIl n'est pas marié.\nHe is unmarried.\tIl est célibataire.\nHe is very tall.\tIl est fort grand.\nHe is well paid.\tIl est bien payé.\nHe just arrived.\tIl vient d'arriver.\nHe kept talking.\tIl continuait à parler.\nHe likes soccer.\tIl aime le foot.\nHe likes sweets.\tIl aime les sucreries.\nHe likes to run.\tIl aime courir.\nHe looks gloomy.\tIl a l'air sombre.\nHe looks strong.\tIl semble fort.\nHe lost his job.\tIl a perdu son travail.\nHe lost his job.\tIl perdit son emploi.\nHe loves coffee.\tIl adore le café.\nHe loves soccer.\tIl adore le foot.\nHe loves trains.\tIl adore les trains.\nHe made a robot.\tIl a fait un robot.\nHe made her cry.\tIl l'a fait pleurer.\nHe made her cry.\tIl la fit pleurer.\nHe made me sing.\tIl m'a fait chanter.\nHe may be there.\tPeut-être s'y trouve-t-il.\nHe may not come.\tIl pourrait ne pas venir.\nHe mentioned it.\tIl le mentionna.\nHe mentioned it.\tIl l'a mentionné.\nHe mentioned it.\tIl la mentionna.\nHe mentioned it.\tIl l'a mentionnée.\nHe missed class.\tIl a manqué la classe.\nHe never laughs.\tIl ne rit jamais.\nHe plays soccer.\tIl joue au football.\nHe puts on airs.\tIl prend des airs.\nHe said nothing.\tIl ne dit rien.\nHe said nothing.\tIl n'a rien dit.\nHe sang off key.\tIl a chanté faux.\nHe saved us all.\tIl nous a tous sauvés.\nHe saved us all.\tIl nous a toutes sauvées.\nHe saved us all.\tIl nous sauva tous.\nHe saved us all.\tIl nous sauva toutes.\nHe saw the girl.\tIl a vu la fille.\nHe saw the girl.\tIl vit la fille.\nHe seems honest.\tIl semble être honnête.\nHe sells whisky.\tIl vend du whisky.\nHe sounds angry.\tIl a l'air en colère.\nHe stared at me.\tIl me fixa.\nHe studied hard.\tIl étudiait avec application.\nHe studied hard.\tIl étudia avec application.\nHe swindled her.\tIl l'a escroquée.\nHe was cheating.\tIl était en train de tricher.\nHe was outraged.\tIl était indigné.\nHe was outraged.\tIl était outré.\nHe was standing.\tIl se tenait debout.\nHe was very fun.\tIl était très amusant.\nHe was very fun.\tIl était fort amusant.\nHe was very old.\tIl était fort vieux.\nHe went surfing.\tIl est allé faire du surf.\nHe will also go.\tIl ira aussi.\nHe will also go.\tIl ira également.\nHe will survive.\tIl survivra.\nHe wore glasses.\tIl portait des lunettes.\nHe writes books.\tIl écrit des livres.\nHe's a bad liar.\tIl ment mal.\nHe's a comedian.\tIl est comédien.\nHe's a frat boy.\tIl est membre d'une fraternité étudiante.\nHe's a freshman.\tC'est un bizuth.\nHe's a freshman.\tC'est un bleu.\nHe's a gardener.\tIl est jardinier.\nHe's a good boy.\tC'est un bon garçon.\nHe's a newcomer.\tC'est un nouveau venu.\nHe's a real man.\tC'est un vrai mec.\nHe's a slowpoke.\tC'est un lambin.\nHe's a slowpoke.\tC'est un lourdaud.\nHe's a southpaw.\tC'est un gaucher.\nHe's a southpaw.\tIl est gaucher.\nHe's going bald.\tIl devient chauve.\nHe's helping me.\tIl m'aide.\nHe's my husband.\tIl est mon époux.\nHe's my partner.\tC'est mon associé.\nHe's my partner.\tC'est mon compagnon.\nHe's my partner.\tC'est mon partenaire.\nHe's not a hero.\tCe n'est pas un héros.\nHe's not a liar.\tCe n'est pas un menteur.\nHe's not in yet.\tIl n'est pas encore là.\nHe's not stupid.\tIl n'est pas idiot.\nHe's on his way.\tIl est en route.\nHe's on his way.\tIl est en chemin.\nHe's photogenic.\tIl est photogénique.\nHe's right here.\tIl est juste là.\nHe's wide awake.\tIl est tout à fait éveillé.\nHelp me, please.\tAide-moi, s'il te plait.\nHelp us, please.\tAidez-nous, je vous prie !\nHelp us, please.\tAide-nous, je te prie !\nHelp us, please.\tAide-nous, je t'en prie !\nHelp us, please.\tAidez-nous, je vous en prie !\nHer father died.\tSon père mourut.\nHer father died.\tSon père décéda.\nHere I am again.\tMe revoilà.\nHere I am again.\tMe voici à nouveau.\nHere is the map.\tVoici la carte !\nHere's the bill.\tVoici la note.\nHere's the bill.\tVoici la facture.\nHere, take this.\tVoilà, prends ceci !\nHere, take this.\tVoilà, prenez ceci !\nHi! How are you?\tSalut ! Comment ça va ?\nHis ID was fake.\tSa carte d'identité était falsifiée.\nHis name is mud.\tIl a mauvaise réputation.\nHis son is sick.\tSon fils est malade.\nHis word is law.\tSa parole est la loi.\nHis word is law.\tSa parole est loi.\nHold on, please.\tRestez en ligne, s'il vous plaît.\nHorses run fast.\tUn cheval court vite.\nHow about 12:45?\tQue dirais-tu de midi quarante-cinq ?\nHow about 12:45?\tQue diriez-vous d'une heure moins le quart ?\nHow are you all?\tComment allez-vous tous ?\nHow are you now?\tComment vas-tu maintenant ?\nHow are you now?\tComment allez-vous maintenant ?\nHow big you are!\tQu'est-ce que tu es grand !\nHow big you are!\tComme tu es grand !\nHow big you are!\tQue tu es grand !\nHow big you are!\tQue vous êtes grand !\nHow big you are!\tQue vous êtes grande !\nHow big you are!\tQue vous êtes grandes !\nHow big you are!\tQue vous êtes grands !\nHow big you are!\tQue tu es grande !\nHow big you are!\tComme tu es grande !\nHow big you are!\tComme vous êtes grandes !\nHow big you are!\tComme vous êtes grande !\nHow big you are!\tComme vous êtes grands !\nHow big you are!\tComme vous êtes grand !\nHow can that be?\tComment cela se peut-il ?\nHow can this be?\tComment cela se peut-il ?\nHow can we tell?\tComment pouvons-nous le dire ?\nHow could it be?\tComment cela se pourrait-il ?\nHow could it be?\tComment ce pourrait-il être ?\nHow did it feel?\tQu'as-tu ressenti ?\nHow did it feel?\tQu'avez-vous ressenti ?\nHow do you know?\tComment savez-vous ?\nHow interesting!\tComme c'est intéressant !\nHow interesting!\tComme c'est intéressant !\nHow is everyone?\tComment va tout le monde ?\nHow is it going?\tComment cela se passe-t-il ?\nHow is your dad?\tComment va ton papa ?\nHow is your dad?\tComment va votre papa ?\nHow is your dad?\tComment va ton père ?\nHow nice of you!\tComme c'est chic de ta part !\nHow old are you?\tQuel âge as-tu ?\nHow old are you?\tQuel âge avez-vous ?\nHow rude of you!\tC'est grossier de votre part !\nHow'd you do it?\tComment avez-vous fait ?\nHow's the water?\tComment est l'eau ?\nHow's your cold?\tComment va votre rhume ?\nHow's your cold?\tComment va ton rhume ?\nHow's your wife?\tComment va ta femme ?\nHow's your wife?\tComment se porte votre épouse ?\nHow's your wife?\tComment se porte ta femme ?\nHow's your wife?\tComment va ta femme ?\nHurry up, girls.\tManiez-vous, les filles !\nHurry up, girls.\tMagnez-vous, les filles !\nHurry up, girls.\tDépêchez-vous, les filles !\nHurry up, girls.\tGrouillez-vous, les filles !\nHurry up, girls.\tPressons, les filles !\nHurry up, girls.\tOn se dépêche, les filles !\nHurry up, girls.\tOn se grouille, les filles !\nHurry up, girls.\tOn se magne, les filles !\nHurry up, girls.\tOn se secoue, les filles !\nHurry up, girls.\tSecouez-vous, les filles !\nHurry up, girls.\tBougez vos fesses, les filles !\nHurry up, girls.\tBougez-vous les fesses, les filles !\nHypnotism works.\tL'hypnose, ça marche.\nI abhor spiders.\tJ'ai horreur des araignées.\nI ache all over.\tMon corps me fait mal.\nI ache all over.\tJ'ai mal partout.\nI almost did it.\tJe l'ai presque fait.\nI am a Japanese.\tJe suis Japonais.\nI am a bachelor.\tJe suis célibataire.\nI am a good boy.\tJe suis un bon garçon.\nI am busy today.\tJe suis occupé aujourd’hui.\nI am from Egypt.\tJe viens d'Égypte.\nI am in trouble.\tJe suis dans le pétrin.\nI am in trouble.\tJe suis mal barré.\nI am in trouble.\tJe suis mal barrée.\nI am not eating.\tJe ne suis pas en train de manger.\nI am undressing.\tJe me déshabille.\nI am undressing.\tJe me dévêts.\nI am very sorry.\tJe suis vraiment désolé.\nI am very tired.\tJe suis très fatigué.\nI amused myself.\tJe me suis amusé.\nI amused myself.\tJe me suis amusée.\nI appreciate it.\tJe l'apprécie.\nI appreciate it.\tJ'apprécie.\nI baked cookies.\tJ'ai confectionné des biscuits.\nI beg to differ.\tJe ne suis pas d'accord.\nI beg to differ.\tJe suis désolé, mais je ne peux pas être d'accord.\nI believed that.\tJ'y ai cru.\nI bit my tongue.\tJe me suis mordu la langue.\nI booked a seat.\tJ’ai réservé une place.\nI bought a book.\tJ'ai acheté un livre.\nI broke a glass.\tJ'ai cassé un verre.\nI called Tom up.\tJ'ai passé un coup de fil à Tom.\nI called her up.\tJe l'ai appelée.\nI called him up.\tJe lui ai téléphoné.\nI can do it now.\tJe peux le faire maintenant.\nI can drive you.\tJe peux te conduire.\nI can handle it.\tJe peux y arriver.\nI can handle it.\tJe peux m'en sortir.\nI can swim fast.\tJe sais nager rapidement.\nI can swim well.\tJe sais bien nager.\nI can't be sure.\tJe ne saurais en être certain.\nI can't bear it.\tJe ne peux pas le supporter.\nI can't bear it.\tJe n'arrive pas à le supporter.\nI can't breathe.\tJe n'arrive pas à respirer.\nI can't breathe.\tJe ne parviens pas à respirer.\nI can't compete.\tJe ne peux pas me mesurer.\nI can't do that.\tJe n'arrive pas à faire ça.\nI can't do that.\tJe n'y arrive pas.\nI can't do that.\tJe n'arrive pas à le faire.\nI can't fake it.\tJe ne peux pas le simuler.\nI can't feel it.\tJe ne le ressens pas.\nI can't feel it.\tJe ne parviens pas à le percevoir.\nI can't feel it.\tJe ne le perçois pas.\nI can't find it.\tJe n'arrive pas à le trouver.\nI can't find it.\tJe n'arrive pas à la trouver.\nI can't give up.\tJe ne peux pas m'arrêter.\nI can't give up.\tJe n'arrive pas à arrêter.\nI can't give up.\tJe ne peux pas me rendre.\nI can't give up.\tJe ne peux pas admettre ma défaite.\nI can't give up.\tJe ne parviens pas à admettre ma défaite.\nI can't help it.\tJe ne peux pas m'en empêcher.\nI can't keep it.\tJe ne peux le garder.\nI can't let you.\tJe ne peux pas te le permettre.\nI can't let you.\tJe ne peux pas vous le permettre.\nI can't make it.\tJe n'y parviens pas.\nI caught a cold.\tJ'ai attrapé un rhume.\nI caught a cold.\tJ'ai contracté un rhume.\nI caught a cold.\tJe contractai un rhume.\nI chickened out.\tJ'ai eu les foies.\nI chickened out.\tJ'ai pris peur.\nI cooked dinner.\tJ'ai préparé à dîner.\nI could be next.\tJe pourrai être le prochain.\nI couldn't walk.\tJe ne pouvais pas marcher.\nI couldn't walk.\tJe ne pourrais pas marcher.\nI cry every day.\tJe pleure chaque jour.\nI dealt with it.\tJ'en ai fait mon affaire.\nI deserved that.\tJe méritais ça.\nI did it anyway.\tJe l'ai fait quand même.\nI did it myself.\tJe l'ai fait moi-même.\nI did it myself.\tJe l'ai fait par moi-même.\nI did that once.\tJe l'ai fait une fois.\nI didn't forget.\tJe n'ai pas oublié.\nI didn't listen.\tJe n'ai pas écouté.\nI didn't notice.\tJe n'ai pas remarqué.\nI didn't say it.\tJe ne l'ai pas dit.\nI didn't scream.\tJe n'ai pas hurlé.\nI didn't see it.\tJe ne l'ai pas vu.\nI didn't shower.\tJe n'ai pas pris de douche.\nI disobeyed you.\tJe vous ai désobéi.\nI disobeyed you.\tJe t'ai désobéi.\nI do that a lot.\tJe le fais beaucoup.\nI do understand.\tJe comprends réellement.\nI don't mind it.\tÇa ne me dérange pas.\nI don't need it.\tJe n'en ai pas besoin.\nI don't see how.\tJe ne vois pas comment.\nI don't see how.\tJe ne vois pas de quelle manière.\nI don't want it.\tJe ne le veux pas.\nI don't want it.\tJe n'en veux pas.\nI downloaded it.\tJe l'ai téléchargé.\nI downloaded it.\tJe l'ai téléchargée.\nI dried my face.\tJe me suis séché le visage.\nI drive to work.\tJe me rends au travail en voiture.\nI enjoy reading.\tJ'aime lire.\nI enjoy reading.\tJ'ai plaisir à lire.\nI enjoy working.\tJe prends plaisir à travailler.\nI escaped death.\tJ'ai échappé à la mort.\nI expected more.\tJe m'attendais à plus.\nI expected this.\tJe m'attendais à ça.\nI feel betrayed.\tJe me sens trahie.\nI feel betrayed.\tJe me sens trahi.\nI feel feverish.\tJe me sens fiévreux.\nI feel feverish.\tJe me sens fiévreuse.\nI feel fine now.\tJe me sens bien, maintenant.\nI feel his pain.\tJe compatis à sa douleur.\nI feel homesick.\tJ'ai le mal du pays.\nI feel horrible.\tJe me sens super mal.\nI feel nauseous.\tJ'ai la nausée.\nI feel relieved.\tJe me sens soulagé.\nI feel terrible.\tJe me sens super mal.\nI feel terrific.\tJe me sens en pleine forme.\nI feel the same.\tJe ressens la même chose.\nI felt betrayed.\tJe me suis sentie trahie.\nI felt betrayed.\tJe me suis senti trahi.\nI felt isolated.\tJe me sentis isolé.\nI felt isolated.\tJe me suis senti isolé.\nI felt left out.\tJe me suis senti délaissé.\nI felt left out.\tJe me suis sentie délaissée.\nI felt left out.\tJe me sentis exclu.\nI felt left out.\tJe me sentis exclue.\nI felt left out.\tJe me suis senti exclu.\nI felt left out.\tJe me suis senti exclue.\nI finished last.\tJ'ai terminé dernier.\nI finished last.\tJ'ai terminé dernière.\nI fired the gun.\tJe fis détoner l'arme.\nI follow orders.\tJ'obéis aux ordres.\nI forgot my bag.\tJ'ai oublié mon sac.\nI forgot my key.\tJ'ai oublié ma clé.\nI forgot my pen.\tJ'ai oublié mon stylo.\nI get up at six.\tJe me lève à 6 heures.\nI go every year.\tJ'y vais tous les ans.\nI got a bargain.\tJ'ai fait une affaire.\nI got no answer.\tJe n'ai pas obtenu de réponse.\nI got remarried.\tJe me suis remarié.\nI got remarried.\tJe me suis remariée.\nI got rid of it.\tJe m'en suis débarrassé.\nI got rid of it.\tJe m'en suis débarrassée.\nI got rid of it.\tJe m'en débarrassai.\nI got sunburned.\tJ'ai pris un coup de soleil.\nI grow tomatoes.\tJe cultive des tomates.\nI guess it's OK.\tJ'imagine que ça va.\nI guess it's OK.\tJ'imagine que c'est bon.\nI guessed right.\tJ'ai bien deviné.\nI guessed right.\tJ'ai deviné correctement.\nI had a seizure.\tJ'ai eu une attaque cardiaque.\nI had a seizure.\tJ'ai eu une attaque.\nI had my doubts.\tJ'ai eu mes doutes.\nI had no choice.\tJe n'avais pas le choix.\nI had no doubts.\tJe n'avais aucun doute.\nI had no doubts.\tJe n'eus aucun doute.\nI had no doubts.\tJe n'ai eu aucun doute.\nI had no doubts.\tJe n'ai rien flairé.\nI had some help.\tJ'ai reçu de l'aide.\nI had to resign.\tJe dus démissionner.\nI hate children.\tJe déteste les enfants.\nI hate everyone.\tJe déteste tout le monde.\nI hate fanatics.\tJe déteste les fanatiques.\nI hate fanatics.\tJ'ai horreur des fanatiques.\nI hate fighting.\tJe déteste la bagarre.\nI hate funerals.\tJ'ai horreur des obsèques.\nI hate my voice.\tJe déteste ma voix.\nI hate politics.\tJe déteste la politique.\nI hate reptiles.\tJ'ai horreur des reptiles.\nI hate shopping.\tJe déteste faire des courses.\nI hate studying.\tJe déteste étudier.\nI hate that guy.\tJe déteste ce type.\nI hate that guy.\tJe déteste ce mec.\nI hate them all.\tJe les déteste tous.\nI hate them all.\tJe les déteste toutes.\nI hate this car.\tJe déteste cette voiture.\nI hate this car.\tJe déteste cette bagnole.\nI hate this job.\tJe déteste ce boulot.\nI hate this job.\tMoi je déteste ce boulot.\nI hate this rug.\tJe déteste ce tapis.\nI hate violence.\tJe déteste la violence.\nI hate weddings.\tJe déteste les mariages.\nI hate you both.\tJe vous déteste tous les deux.\nI hate you both.\tJe vous déteste toutes les deux.\nI have a bruise.\tJ'ai un bleu.\nI have a bruise.\tJ'ai une ecchymose.\nI have a sister.\tJ'ai une sœur.\nI have children.\tJ'ai des enfants.\nI have children.\tJe dispose d'enfants.\nI have diabetes.\tJe suis diabétique.\nI have evidence.\tJe dispose de preuves.\nI have evidence.\tJ'ai des preuves.\nI have finished.\tJ'ai terminé.\nI have finished.\tJ'en ai terminé.\nI have finished.\tJ'ai fini.\nI have homework.\tJ'ai des devoirs.\nI have immunity.\tJe dispose de l'immunité.\nI have no fever.\tJe n'ai pas de fièvre.\nI have no horse.\tJe ne dispose pas de cheval.\nI have returned.\tJe suis revenu.\nI have the keys.\tJ'ai les clés.\nI have to fight.\tIl me faut me battre.\nI have to fight.\tJe dois me battre.\nI have to hurry!\tJe dois me dépêcher !\nI have to hurry!\tIl faut que je me dépêche !\nI have to hurry!\tJe suis pressé !\nI have to study.\tJe dois étudier.\nI have to think.\tIl me faut réfléchir.\nI have to think.\tJe dois réfléchir.\nI have two cats.\tJ'ai deux chats.\nI have two jobs.\tJ'ai deux boulots.\nI haven't eaten.\tJe n'ai pas mangé.\nI haven't slept.\tJe n'ai pas dormi.\nI haven't tried.\tJe n'ai pas essayé.\nI hear laughing.\tJ'entends qu'on rit.\nI heard a noise.\tJ'ai entendu un bruit.\nI heard screams.\tJ'ai entendu des hurlements.\nI heard yelling.\tJ'ai entendu hurler.\nI hope Tom wins.\tJ'espère que Tom gagnera.\nI hope it helps.\tJ'espère que c'est utile.\nI hope it rains.\tJ'espère qu'il pleuvra.\nI imagined that.\tJe l'avais imaginé.\nI just finished.\tJe viens de terminer.\nI just found it.\tJe viens de le trouver.\nI just got here.\tJe viens d'arriver ici.\nI just got that.\tJe viens de recevoir ça.\nI just miss him.\tIl me manque, tout simplement.\nI just panicked.\tJ'ai simplement paniqué.\nI just showered.\tJe viens de prendre une douche.\nI just showered.\tJ'ai simplement pris une douche.\nI just told him.\tJe viens de lui dire.\nI just told him.\tJe viens de le lui dire.\nI knew the risk.\tJe connaissais le risque.\nI knew too much.\tJ'en savais trop.\nI knew we'd win.\tJe savais que nous l'emporterions.\nI knew we'd win.\tJe savais que nous gagnerions.\nI know Tom lied.\tJe sais que Tom a menti.\nI know all that.\tJe sais tout ça.\nI know all that.\tJe sais tout cela.\nI know all this.\tJe sais tout ceci.\nI know her well.\tJe la connais bien.\nI know the girl.\tJe connais cette fille.\nI know them all.\tJe les connais tous.\nI know your son.\tJe connais votre fils.\nI know your son.\tJe connais ton fils.\nI laughed a lot.\tJ'ai beaucoup ri.\nI lay on my bed.\tJe me suis allongé sur mon lit.\nI lay on my bed.\tJ'étais étendu sur mon lit.\nI lay on my bed.\tJ'étais étendue sur mon lit.\nI learned a lot.\tJ'ai beaucoup appris.\nI left the room.\tJ'ai quitté la pièce.\nI lent him a CD.\tJe lui ai prêté un CD.\nI lied about it.\tJ'ai menti à ce sujet.\nI like baseball.\tJe joue au baseball.\nI like cartoons.\tJ'aime les dessins animés.\nI like children.\tJ'apprécie les enfants.\nI like old cars.\tJ'aime les vieilles voitures.\nI like sleeping.\tJ'aime dormir.\nI like swimming.\tJ'aime nager.\nI like teaching.\tJ'aime enseigner.\nI like that job.\tJ'apprécie ce boulot.\nI like the cold.\tJ'aime le froid.\nI like them all.\tJe les aime tous.\nI like this job.\tJ'aime ce boulot.\nI like this one.\tJ‘aime celui-ci.\nI like to dream.\tJ'aime rêver.\nI like to laugh.\tJ'aime rire.\nI like your car.\tJ'aime votre voiture.\nI like your car.\tJ'aime votre auto.\nI like your car.\tJ'aime ta voiture.\nI like your dog.\tJ'aime ton chien.\nI like your dog.\tJ'aime votre chien.\nI like your hat.\tJ'aime ton chapeau.\nI like your hat.\tJ'aime votre chapeau.\nI like your tie.\tJ'aime votre cravate.\nI like your tie.\tTa cravate me plaît.\nI like your tie.\tJ'aime ta cravate.\nI lit the match.\tJe craquai l'allumette.\nI lit the match.\tJ'enflammai l'allumette.\nI lit the match.\tJ'ai craqué l'allumette.\nI lit the match.\tJ'ai enflammé l'allumette.\nI live here now.\tJe vis ici, désormais.\nI live here now.\tJe vis ici, à l'heure actuelle.\nI live in Hyogo.\tJe vis à Hyogo.\nI live in Japan.\tJe vis au Japon.\nI live in Milan.\tJe vis à Milan.\nI live in Tokyo.\tJe vis à Tôkyô.\nI live in Tokyo.\tJe vis à Tokyo.\nI lost interest.\tMon intérêt s'est dissipé.\nI lost my phone.\tJ'ai perdu mon téléphone.\nI lost my watch.\tJ’ai perdu ma montre.\nI love barbecue.\tJ'adore les barbecues.\nI love comedies.\tJ'adore les comédies.\nI love eggplant.\tJ'adore les aubergines.\nI love swimming.\tJ'adore nager.\nI love teaching.\tJ'adore enseigner.\nI love this car.\tJ'adore cette voiture.\nI love this job.\tJ'adore ce boulot.\nI love this one.\tJ'adore celui-ci.\nI love to party.\tJ'adore faire la fête.\nI love to party.\tJ'adore faire la nouba.\nI love to party.\tJ'adore faire la java.\nI love to teach.\tJ'adore enseigner.\nI love weddings.\tJ'adore les mariages.\nI love you both.\tJe vous adore tous les deux.\nI love you both.\tJe vous aime tous les deux.\nI love you both.\tJe vous aime toutes les deux.\nI love you guys.\tLes mecs, je vous aime.\nI love you guys.\tLes mecs, je vous adore.\nI love your car.\tJ'aime votre voiture.\nI love your son.\tJ'adore ton fils.\nI love your son.\tJ'adore votre fils.\nI love your son.\tJe suis amoureuse de ton fils.\nI love your son.\tJe suis amoureuse de votre fils.\nI made brownies.\tJ'ai confectionné du moelleux au chocolat.\nI made that one.\tJ'ai fait celle-là.\nI made that one.\tJ'ai confectionné celle-là.\nI made that one.\tJ'ai réalisé celle-là.\nI made the deal.\tJ'ai conclu le contrat.\nI meant no harm.\tJe n'avais pas de mauvaise intention.\nI meant no harm.\tJe ne pensais pas à mal.\nI met Tom there.\tJ'ai rencontré Tom là-bas.\nI might say yes.\tIl se pourrait que je dise oui.\nI miss all this.\tTout ceci me manque.\nI missed supper.\tJ'ai loupé le dîner.\nI missed supper.\tJ'ai loupé le souper.\nI misunderstood.\tJ'ai compris de travers.\nI misunderstood.\tJ'ai mal compris.\nI motivated you.\tJe t'ai motivé.\nI motivated you.\tJe t'ai motivée.\nI must be blind.\tJe dois être aveugle.\nI must be blind.\tIl faut que je sois aveugle.\nI must be blind.\tFaut-il que sois aveugle !\nI must continue.\tIl me faut continuer.\nI must continue.\tJe dois continuer.\nI must go alone.\tJe dois y aller seul.\nI must go alone.\tJe dois y aller seule.\nI must go alone.\tJe dois m'y rendre seul.\nI must go alone.\tJe dois m'y rendre seule.\nI must go alone.\tIl me faut y aller seul.\nI must go alone.\tIl me faut y aller seule.\nI must go alone.\tIl faut que j'y aille seul.\nI must go alone.\tIl faut que j'y aille seule.\nI must go alone.\tIl faut que je m'y rende seul.\nI must go alone.\tIl faut que je m'y rende seule.\nI must help you.\tJe dois vous aider.\nI must help you.\tJe dois t'aider.\nI need Internet.\tJ'ai besoin d'Internet.\nI need a doctor.\tJ'ai besoin d'un médecin.\nI need a doctor.\tIl me faut un médecin.\nI need a hammer.\tJ'ai besoin d'un marteau.\nI need a laptop.\tJ'ai besoin d'un ordinateur portable.\nI need a lawyer.\tJ'ai besoin d'un avocat.\nI need a pencil.\tJ'ai besoin d'un crayon.\nI need a weapon.\tJ'ai besoin d'une arme.\nI need caffeine.\tIl me faut de la caféine.\nI need guidance.\tJ'ai besoin de conseils.\nI need help now.\tC'est maintenant que j'ai besoin d'aide.\nI need his help.\tJ'ai besoin de son aide.\nI need it today.\tIl me le faut aujourd'hui.\nI need it today.\tJ'en ai besoin aujourd'hui.\nI need the keys.\tIl me faut les clefs.\nI need the keys.\tJ'ai besoin des clés.\nI need to shave.\tJ'ai besoin de me raser.\nI need to sleep.\tJ'ai besoin de dormir.\nI need to study.\tJ'ai besoin d'étudier.\nI need you here.\tJ'ai besoin de toi ici.\nI need you here.\tJ'ai besoin de vous ici.\nI never noticed.\tJe n'ai jamais remarqué.\nI never said no.\tJe n'ai jamais dit non.\nI never saw you.\tJe ne t'ai jamais vu.\nI never saw you.\tJe ne t'ai jamais vue.\nI never saw you.\tJe ne vous ai jamais vu.\nI never saw you.\tJe ne vous ai jamais vue.\nI never saw you.\tJe ne vous ai jamais vus.\nI never saw you.\tJe ne vous ai jamais vues.\nI often see him.\tJe le rencontre souvent.\nI only need one.\tJe n'en ai besoin que d'un.\nI ordered pizza.\tJ'ai commandé de la pizza.\nI outwitted him.\tJ'ai été plus malin que lui.\nI outwitted him.\tJ'ai été plus maline que lui.\nI owe you a lot.\tJe vous dois beaucoup.\nI owe you a lot.\tJe te dois beaucoup.\nI paid for them.\tJ'ai payé pour eux.\nI paid for them.\tJ'ai payé pour elles.\nI paid my bills.\tJ'ai réglé mes factures.\nI paid the bill.\tJe réglais l'addition.\nI paid the bill.\tJ'ai payé l'addition.\nI played tennis.\tJe jouais au tennis.\nI prefer biking.\tJe préfère faire du vélo.\nI prefer coffee.\tJe préfère le café.\nI raise orchids.\tJe cultive des orchidées.\nI ran for mayor.\tJe me suis présenté comme maire.\nI ran for mayor.\tJe me suis présenté comme mayeur.\nI ran for mayor.\tJe me suis présenté comme maïeur.\nI ran for mayor.\tJe me suis présenté comme bourgmestre.\nI rang the bell.\tJe fis sonner la cloche.\nI rang the bell.\tJe fis résonner la cloche.\nI rang the bell.\tJ'ai fait sonner la cloche.\nI rang the bell.\tJ'ai fait résonner la cloche.\nI rang the bell.\tJ'ai fait retentir la cloche.\nI rang the bell.\tJe fis retentir la cloche.\nI read his book.\tJe lis son livre.\nI read the book.\tJ'ai lu le livre.\nI relied on him.\tJ'ai compté sur lui.\nI remember that.\tJe me souviens de ça.\nI remember that.\tJe me souviens de cela.\nI remember them.\tJe me souviens d'eux.\nI remember them.\tJe me souviens d'elles.\nI remember this.\tJe m'en souviens.\nI remembered it.\tJe m'en souvenais.\nI remembered it.\tJe m'en souvins.\nI run every day.\tJe cours tous les jours.\nI said I'm fine.\tJ'ai dit que j'allais bien.\nI saw Tom naked.\tJ'ai vu Tom nu.\nI saw her again.\tJe la vis de nouveau.\nI saw him do it.\tJe l'ai vu le faire.\nI saw him naked.\tJe le vis nu.\nI saw him naked.\tJe l'ai vu nu.\nI saw him there.\tJe l'y ai vu.\nI saw it coming.\tJe l'ai pressenti.\nI saw something.\tJe vis quelque chose.\nI saw something.\tJ'ai vu quelque chose.\nI saw the movie.\tJe vis le film.\nI saw the movie.\tJ'ai vu le film.\nI saw you there.\tJe vous y ai vu.\nI saw you there.\tJe vous y ai vue.\nI saw you there.\tJe vous y ai vus.\nI saw you there.\tJe vous y ai vues.\nI saw you there.\tJe t'y ai vu.\nI saw you there.\tJe t'y ai vue.\nI see a pattern.\tJe vois un motif qui se répète.\nI see his house.\tJe vois sa maison.\nI see something.\tJe vois quelque chose.\nI slept all day.\tJe dormis tout le jour.\nI slept all day.\tJ'ai dormi toute la journée.\nI smell trouble.\tJe sens les ennuis arriver.\nI smelled bacon.\tJ'ai senti les poulets.\nI still do that.\tJe le fais toujours.\nI still do that.\tJe le fais encore.\nI study English.\tJ'étudie l'anglais.\nI take vitamins.\tJe prends des vitamines.\nI talked to her.\tJe lui parlai.\nI talked to her.\tJe lui ai parlé.\nI teach Chinese.\tJ’enseigne le chinois.\nI think I agree.\tJe pense être d'accord.\nI think it's OK.\tJe pense que ça va.\nI think it's OK.\tJe pense que c'est bon.\nI think it's OK.\tJe pense que ça colle.\nI think so, too.\tJe le pense aussi.\nI think so, too.\tOui, je le pense aussi.\nI totally agree.\tJe suis totalement d'accord.\nI turned it off.\tJe l'ai éteint.\nI turned it off.\tJe l'ai éteinte.\nI understand it.\tJe le comprends.\nI use this desk.\tJ'emploie ce bureau-ci.\nI want a doctor.\tJe veux un médecin.\nI want a family.\tJe veux une famille.\nI want a lawyer.\tJe veux un avocat.\nI want a refund.\tJe veux un remboursement.\nI want a refund.\tJe veux me faire rembourser.\nI want children.\tJe veux des enfants.\nI want my money.\tJe veux mon argent.\nI want my stuff.\tJe veux mes trucs.\nI want one, too.\tJ'en veux une aussi.\nI want one, too.\tJ'en veux un aussi.\nI want that bag.\tJe veux ce sac.\nI want that cat.\tJe veux ce chat.\nI want that job.\tJe veux ce boulot.\nI want the best.\tJe veux le meilleur.\nI want this bag.\tJe veux ce sac.\nI want this cat.\tJe veux ce chat.\nI want to dance.\tJe veux danser.\nI want to do it.\tJe veux le faire.\nI want to dream.\tJe veux rêver.\nI want to drink.\tJe veux boire.\nI want to drive.\tJe veux conduire.\nI want to fight.\tJe veux combattre.\nI want to fight.\tJe veux me battre.\nI want to sleep.\tJe veux dormir.\nI want to speak.\tJe veux parler.\nI want to watch.\tJe veux regarder.\nI want you back.\tJe veux que tu sois revenu.\nI want you back.\tJe veux que tu sois revenue.\nI want you back.\tJe veux que vous soyez revenus.\nI want you back.\tJe veux que vous soyez revenues.\nI want you back.\tJe veux que vous soyez revenue.\nI want you back.\tJe veux que vous soyez revenu.\nI wanted to die.\tJe voulais mourir.\nI wanted to pay.\tJe voulais payer.\nI was a teacher.\tJ’étais professeur.\nI was a teacher.\tJ'étais professeur.\nI was assaulted.\tOn m'a attaqué.\nI was born here.\tJe suis né ici.\nI was born here.\tJe suis née ici.\nI was concerned.\tJ'étais préoccupé.\nI was concerned.\tJ'étais préoccupée.\nI was convicted.\tJ'ai été condamné.\nI was convicted.\tJ'ai été condamnée.\nI was disgusted.\tJ'étais dégoûté.\nI was disgusted.\tJ'étais dégoûtée.\nI was disgusted.\tJ'ai été dégoûté.\nI was disgusted.\tJ'ai été dégoûtée.\nI was dismissed.\tJ'ai été licencié.\nI was dismissed.\tOn m'a licencié.\nI was exhausted.\tJ'étais épuisé.\nI was horrified.\tJ'ai été horrifié.\nI was horrified.\tJ'ai été horrifiée.\nI was horrified.\tJ'étais horrifié.\nI was horrified.\tJ'étais horrifiée.\nI was horrified.\tJe fus horrifié.\nI was horrified.\tJe fus horrifiée.\nI was impressed.\tJ'ai été impressionné.\nI was impressed.\tJ'ai été impressionnée.\nI was in charge.\tC'était moi le responsable.\nI was in charge.\tC'était moi la responsable.\nI was kidnapped.\tJ'ai été kidnappé.\nI was kidnapped.\tJ'ai été kidnappée.\nI was not drunk.\tJe n’étais pas saoul.\nI was on patrol.\tJ'étais en patrouille.\nI was petrified.\tJ'étais pétrifié.\nI was satisfied.\tJ'étais satisfait.\nI was satisfied.\tJ'étais satisfaite.\nI was skeptical.\tJ'étais sceptique.\nI was surprised.\tJe fus surpris.\nI was terrified.\tJ'étais terrifié.\nI was too small.\tJ'étais trop petit.\nI wasn't asleep.\tJe n'étais pas assoupi.\nI wasn't asleep.\tJe n'étais pas assoupie.\nI wasn't joking.\tJe n'étais pas en train de plaisanter.\nI went for help.\tJe suis parti quérir de l'aide.\nI went for help.\tJe suis partie quérir de l'aide.\nI went to Paris.\tJe suis allée à Paris.\nI will continue.\tJe continuerai.\nI will go at 10.\tJe vais aller à 10 heures.\nI will help you.\tJe t'aiderai.\nI will help you.\tJe vous aiderai.\nI will kill you.\tJe vais te tuer.\nI will miss you.\tTu vas me manquer.\nI will stop you.\tJe t'arrêterai.\nI will stop you.\tJe vous arrêterai.\nI will warn him.\tJe l'avertirai.\nI will watch it.\tJe le regarderai.\nI wish you luck.\tJe vous souhaite bonne chance.\nI wish you luck.\tJe te souhaite bonne chance.\nI won't be late.\tJe ne serai pas en retard.\nI won't be long.\tJe ne serai pas parti longtemps.\nI won't buy one.\tJe n'en achèterai pas.\nI won't risk it.\tJe ne vais pas le risquer.\nI work at a zoo.\tJe travaille dans un zoo.\nI work in Milan.\tJe travaille à Milan.\nI work two jobs.\tJ'effectue deux boulots.\nI work with him.\tJe travaille avec lui.\nI wouldn't care.\tJe n'en aurais rien à faire.\nI wouldn't care.\tJe m'en ficherais.\nI wouldn't care.\tÇa me serait égal.\nI wouldn't care.\tJe ne m'en préoccuperais pas.\nI yelled at Tom.\tJ'ai crié sur Tom.\nI'd be grateful.\tJe serais reconnaissant.\nI'd be grateful.\tJe serais reconnaissante.\nI'd do it again.\tJe le referais.\nI'd like a fork.\tJ'aimerais une fourchette.\nI'd rather read.\tJe préfère lire.\nI'd rather stay.\tJe préférerais rester.\nI'd rather walk.\tJe préférerais marcher.\nI'll allow this.\tJe le permettrai.\nI'll arrange it.\tJ'arrangerai ça.\nI'll ask around.\tJe demanderai autour de moi.\nI'll assist you.\tJe vous aiderai.\nI'll be at home.\tJe serai chez moi.\nI'll be careful.\tJe serai prudent.\nI'll be careful.\tJe serai prudente.\nI'll be glad to.\tOui, avec joie.\nI'll be present.\tJe serai présent.\nI'll be working.\tJe serai au travail.\nI'll be working.\tJe serai en train de travailler.\nI'll buy a Ford.\tJ'achèterai une Ford.\nI'll come by 10.\tJe viendrai à dix heures.\nI'll destroy it.\tJe le détruirai.\nI'll destroy it.\tJe la détruirai.\nI'll do my best.\tJe ferai de mon mieux.\nI'll fix it now.\tJe vais le corriger maintenant.\nI'll fix it now.\tJe vais le réparer maintenant.\nI'll follow you.\tJe te suivrai.\nI'll follow you.\tJe vous suivrai.\nI'll just leave.\tJe vais juste partir.\nI'll never stop.\tJe ne cesserai jamais.\nI'll never tell.\tJe ne le dirai jamais.\nI'll order food.\tJe commanderai à manger.\nI'll pay double.\tJe paierai le double.\nI'll pay for it.\tJe le paierai.\nI'll play along.\tJe coopérerai.\nI'll play along.\tJe ferai mine de coopérer.\nI'll play along.\tJe ferai semblant de coopérer.\nI'll sleep here.\tJe dormirai ici.\nI'll stay close.\tJe resterai à proximité.\nI'll take those.\tJe prendrai ceux-là.\nI'll take those.\tJe prendrai celles-là.\nI'll try harder.\tJe vais essayer plus fort.\nI'll work alone.\tJe travaillerai seul.\nI'll work alone.\tJe vais travailler seul.\nI'm Azerbaijani.\tJe suis Azeri.\nI'm a TV addict.\tJe suis accro à la télé.\nI'm a bit drunk.\tJe suis un peu ivre.\nI'm a bit tipsy.\tJe suis un peu éméché.\nI'm a bit tipsy.\tJe suis un peu éméchée.\nI'm a bit tired.\tJe suis un peu fatigué.\nI'm a foreigner.\tJe suis un étranger.\nI'm a good cook.\tJe suis un bon cuisinier.\nI'm a happy man.\tJe suis un homme heureux.\nI'm a housewife.\tJe suis femme au foyer.\nI'm a masochist.\tJe suis masochiste.\nI'm a night owl.\tJe suis un oiseau de nuit.\nI'm able to run.\tJe peux courir.\nI'm able to ski.\tJe sais skier.\nI'm about ready.\tJe suis presque prêt.\nI'm about ready.\tJe suis quasiment prêt.\nI'm about ready.\tJe suis presque prête.\nI'm about ready.\tJe suis quasiment prête.\nI'm adventurous.\tJe suis aventureuse.\nI'm an engineer.\tJe suis ingénieur.\nI'm at work now.\tJe suis actuellement au travail.\nI'm begging you.\tJe vous en supplie.\nI'm begging you.\tJe t'en supplie.\nI'm catching on.\tJe capte.\nI'm catching on.\tJe comprends.\nI'm celebrating.\tJe fais la fête.\nI'm celebrating.\tJ'arrose ça.\nI'm cleaned out.\tJe suis lavé.\nI'm color-blind.\tJe suis daltonien.\nI'm comfortable.\tJe suis à mon aise.\nI'm coming home.\tJ'arrive chez moi.\nI'm cooperating.\tJe suis en train de coopérer.\nI'm cracking up.\tJe craque.\nI'm eating here.\tJe mange ici.\nI'm embarrassed.\tJe suis gêné.\nI'm feeling fit.\tJe me sens en forme.\nI'm feeling low.\tJe me sens abattu.\nI'm feeling low.\tJe me sens abattue.\nI'm from Brazil.\tJe viens du Brésil.\nI'm from Brazil.\tJe suis originaire du Brésil.\nI'm from France.\tJe viens de France.\nI'm from Turkey.\tJe viens de Turquie.\nI'm from Zambia.\tJe suis de Zambie.\nI'm getting old.\tJe commence à devenir vieux.\nI'm getting old.\tJe vieillis.\nI'm getting old.\tJe me fais vieux.\nI'm getting old.\tJe me fais vieille.\nI'm going crazy.\tJe deviens fou.\nI'm going crazy.\tJe deviens folle.\nI'm hardworking.\tJe suis appliqué.\nI'm hardworking.\tJe suis appliquée.\nI'm heartbroken.\tJ'ai le cœur brisé.\nI'm here to win.\tJe suis ici pour vaincre.\nI'm in no hurry.\tJe ne suis pas pressé.\nI'm in no hurry.\tJe ne suis pas pressée.\nI'm interfering.\tJe me mêle de ce qui ne me regarde pas.\nI'm interfering.\tJe dérange.\nI'm introverted.\tJe suis introverti.\nI'm introverted.\tJe suis introvertie.\nI'm leaving now.\tJe pars maintenant.\nI'm left-handed.\tJe suis gaucher.\nI'm lucky today.\tJe suis chanceux aujourd'hui.\nI'm married now.\tJe suis marié maintenant.\nI'm nearsighted.\tJe suis myope.\nI'm not English.\tJe ne suis pas anglais.\nI'm not English.\tJe ne suis pas anglaise.\nI'm not a child.\tJe ne suis pas un enfant.\nI'm not a child.\tJe ne suis pas une enfant.\nI'm not a crook.\tJe ne suis pas un escroc.\nI'm not a drunk.\tJe ne suis pas un ivrogne.\nI'm not a drunk.\tJe ne suis pas une ivrogne.\nI'm not a robot.\tJe ne suis pas un robot.\nI'm not a saint.\tJe ne suis pas un saint.\nI'm not a saint.\tJe ne suis pas une sainte.\nI'm not a thief.\tJe ne suis pas un voleur.\nI'm not a thief.\tJe ne suis pas une voleuse.\nI'm not alarmed.\tJe ne m'alarme pas.\nI'm not arguing.\tJe ne me dispute pas.\nI'm not ashamed.\tJe n'ai pas honte.\nI'm not certain.\tJe n'en suis pas certain.\nI'm not certain.\tJe n'en suis pas certaine.\nI'm not chicken.\tJe n'ai pas les foies.\nI'm not cooking.\tJe ne suis pas en train de faire la cuisine.\nI'm not jealous.\tJe ne suis pas jalouse.\nI'm not kidding.\tJe ne blague pas.\nI'm not leaving.\tJe ne m'en vais pas.\nI'm not married.\tJe ne suis pas marié.\nI'm not married.\tJe ne suis pas mariée.\nI'm not nervous.\tJe ne suis pas nerveux.\nI'm not nervous.\tJe ne suis pas nerveuse.\nI'm not patient.\tJe ne suis pas patient.\nI'm not patient.\tJe ne suis pas patiente.\nI'm not perfect.\tJe ne suis pas parfait.\nI'm not perfect.\tJe ne suis pas parfaite.\nI'm not selfish.\tJe ne suis pas égoïste.\nI'm not so sure.\tJe n'en suis pas si sûr !\nI'm not so sure.\tJe n'en suis pas si sûre !\nI'm not staying.\tJe ne reste pas.\nI'm not unhappy.\tJe ne suis pas malheureux.\nI'm not unhappy.\tJe ne suis pas malheureuse.\nI'm not wealthy.\tJe ne suis pas riche.\nI'm not worried.\tJe ne me fais pas de souci.\nI'm now unarmed.\tJe ne suis pas actuellement armé.\nI'm on vacation.\tJe suis en vacances.\nI'm only joking.\tJe ne fais que blaguer.\nI'm out of ammo.\tJe suis à court de munitions.\nI'm persevering.\tJe persévère.\nI'm pretty busy.\tJe suis plutôt occupé.\nI'm pretty busy.\tJe suis plutôt occupée.\nI'm quite happy.\tJe suis assez heureux.\nI'm quite happy.\tJe suis assez heureuse.\nI'm quite tired.\tJe suis assez fatiguée.\nI'm rather busy.\tJe suis plutôt occupé.\nI'm rather busy.\tJe suis plutôt occupée.\nI'm ready to go.\tJe suis prêt à y aller.\nI'm ready to go.\tJe suis prêt pour partir.\nI'm ready to go.\tJe suis prête pour partir.\nI'm really busy.\tJe suis vraiment occupé.\nI'm really busy.\tJe suis vraiment occupée.\nI'm really cold.\tJ'ai vraiment froid.\nI'm replaceable.\tJe suis remplaçable.\nI'm resourceful.\tJe suis plein de ressources.\nI'm resourceful.\tJe suis pleine de ressources.\nI'm sick of you.\tJ'en ai marre de toi.\nI'm sick of you.\tJ'en ai marre de vous.\nI'm so confused.\tJe suis tellement confus !\nI'm so confused.\tJe suis tellement perplexe.\nI'm spontaneous.\tJe suis spontanée.\nI'm spontaneous.\tJe suis spontané.\nI'm such a fool.\tJe suis un tel idiot.\nI'm sympathetic.\tJ'éprouve de la compassion.\nI'm the captain.\tJe suis le capitaine.\nI'm the surgeon.\tJe suis le chirurgien.\nI'm the teacher.\tJe suis le professeur.\nI'm the teacher.\tJe suis la professeur.\nI'm tired of it.\tJ'en ai ras le bol.\nI'm truly sorry.\tJe suis sincèrement désolé.\nI'm truly sorry.\tJe suis sincèrement désolée.\nI'm trustworthy.\tJe suis fiable.\nI'm trustworthy.\tOn peut me faire confiance.\nI'm unambitious.\tJe suis dépourvu d'ambition.\nI'm unambitious.\tJe suis dépourvue d'ambition.\nI'm unconvinced.\tJe ne suis pas convaincu.\nI'm unconvinced.\tJe ne suis pas convaincue.\nI'm very hungry.\tJ'ai une faim de loup.\nI'm very hungry.\tJ'ai très faim.\nI'm very hungry.\tJ'ai la dalle.\nI'm very hungry.\tJ'ai les crocs.\nI'm very modest.\tJe suis fort modeste.\nI'm very sleepy.\tJ'ai très sommeil.\nI'm very strict.\tJe suis très strict.\nI'm very strict.\tJe suis très stricte.\nI'm watching TV.\tJe suis en train de regarder la télévision.\nI'm your doctor.\tJe suis votre médecin.\nI'm your friend.\tJe suis votre ami.\nI'm your friend.\tJe suis votre amie.\nI'm your friend.\tJe suis ton ami.\nI'm your friend.\tJe suis ton amie.\nI'm your lawyer.\tJe suis votre avocat.\nI'm your sister.\tJe suis ta sœur.\nI'm your sister.\tJe suis votre sœur.\nI've been wrong.\tJ'ai eu tort.\nI've got a cold.\tJ'ai un rhume.\nI've got a cold.\tJe suis enrhumé.\nI've got a plan.\tJe dispose d'un plan.\nI've got a plan.\tJ'ai un plan.\nI've got it all.\tJ'ai tout pigé.\nI've had enough.\tJ'en ai ras le bol.\nI've had enough.\tÇa suffit.\nI've had enough.\tJ'en ai assez entendu.\nI've had enough.\tJ'en ai assez vu.\nI've had enough.\tJ'en ai assez avalé.\nI've had enough.\tJ'en ai assez gobé.\nI've had enough.\tJ'en ai assez supporté.\nI've had enough.\tJ'en ai par-dessus la tête.\nI've had enough.\tJe suis gavé.\nIs Tom dreaming?\tTom est-il en train de rêver ?\nIs anybody here?\tIl y a quelqu'un ?\nIs anybody home?\tQuelqu'un est-il là ?\nIs anybody home?\tY a-t-il quelqu'un ?\nIs anybody home?\tY a-t-il quelqu'un dans la maison ?\nIs anybody hurt?\tQuiconque est-il blessé ?\nIs anyone there?\tQuiconque est-il là ?\nIs everybody OK?\tTout le monde va-t-il bien ?\nIs he a teacher?\tEst-il enseignant ?\nIs he all right?\tVa-t-il bien ?\nIs he all right?\tSe porte-t-il bien ?\nIs he breathing?\tRespire-t-il ?\nIs it all there?\tTout est-il là ?\nIs it all wrong?\tEst-ce tout faux ?\nIs it all wrong?\tEst-ce entièrement mal ?\nIs it clear now?\tEst-ce désormais clair ?\nIs it dangerous?\tEst-ce dangereux ?\nIs it dangerous?\tEst-ce périlleux ?\nIs it good news?\tEst-ce une bonne nouvelle ?\nIs it happening?\tA-t-il lieu ?\nIs it happening?\tSe produit-il ?\nIs it hazardous?\tEst-ce dangereux ?\nIs it important?\tC'est grave ?\nIs it important?\tEst-ce grave ?\nIs it important?\tEst-ce important ?\nIs it not black?\tN'est-ce pas noir ?\nIs it poisonous?\tEst-ce toxique ?\nIs it that hard?\tEst-ce si dur ?\nIs it that hard?\tEst-ce si difficile ?\nIs it too small?\tEst-ce trop petit ?\nIs it your bike?\tC'est ta moto ?\nIs she Japanese?\tEst-elle japonaise ?\nIs she a doctor?\tEst-elle médecin ?\nIs she here yet?\tEst-elle déjà là ?\nIs that a crime?\tS'agit-il d'un crime ?\nIs that a crime?\tEst-ce un crime ?\nIs that correct?\tEst-ce juste ?\nIs that genuine?\tEst-ce véritable ?\nIs that healthy?\tEst-ce sain ?\nIs that illegal?\tEst-ce illégal ?\nIs that unusual?\tEst-ce inhabituel ?\nIs this a river?\tEst-ce que c'est une rivière ?\nIs this a river?\tEst-ce là une rivière ?\nIs this correct?\tEst-ce exact ?\nIs this ethical?\tEst-ce éthique ?\nIs this my life?\tEst-ce ma vie ?\nIs this my wine?\tEst-ce là mon vin ?\nIs this natural?\tEst-ce naturel ?\nIs this serious?\tEst-ce sérieux ?\nIs today Monday?\tSommes-nous lundi ?\nIsn't it enough?\tN'est-ce pas assez ?\nIsn't it lovely?\tN'est-ce pas charmant ?\nIsn't that nice?\tN'est-ce pas chouette ?\nIsn't that ours?\tN'est-ce pas à nous ?\nIsn't that true?\tN'est-ce pas vrai ?\nIsn't this nice?\tN'est-ce pas chouette ?\nIt blew my mind.\tÇa m'a explosé la tête.\nIt blew my mind.\tÇa m'a fait halluciner.\nIt can be fatal.\tCela peut être fatal.\nIt can be fatal.\tCela peut se révéler fatal.\nIt could be Tom.\tCela pourrait être Tom.\nIt could be fun.\tÇa pourrait être marrant.\nIt doesn't hurt.\tÇa ne fait pas mal.\nIt is an option.\tC'est une possibilité.\nIt isn't locked.\tIl n'est pas verrouillé.\nIt isn't locked.\tElle n'est pas verrouillée.\nIt looked awful.\tÇa avait l'air atroce.\nIt looked fresh.\tÇa avait l'air frais.\nIt looked fresh.\tIl avait l'air frais.\nIt looked fresh.\tElle avait l'air fraîche.\nIt looked funny.\tÇa avait l'air amusant.\nIt looked funny.\tÇa avait l'air drôle.\nIt may seem odd.\tCela peut sembler bizarre.\nIt seems likely.\tÇa semble probable.\nIt smells burnt.\tÇa sent le brûlé.\nIt sounded easy.\tÇa semblait facile.\nIt sounded easy.\tÇa semblait aisé.\nIt sounds crazy.\tÇa semble dingue.\nIt sounds great!\tÇa a l'air super !\nIt tasted sweet.\tÇa avait un goût sucré.\nIt tasted sweet.\tÇa goûtait sucré.\nIt took all day.\tÇa a pris toute la journée.\nIt took all day.\tCela prit toute la journée.\nIt was a relief.\tC'était un soulagement.\nIt was ages ago.\tC'était il y a des années.\nIt was all done.\tTout était fini.\nIt was all done.\tTout était terminé.\nIt was all gone.\tTout était parti.\nIt was all gone.\tTout avait disparu.\nIt was all over.\tIl y en avait partout.\nIt was all over.\tC'était fini.\nIt was enticing.\tC'était stimulant.\nIt was fabulous.\tCe fut fabuleux.\nIt was fabulous.\tCe a été fabuleux.\nIt was horrible.\tCe fut horrible.\nIt was horrible.\tÇa a été horrible.\nIt was my fault.\tC'était de ma faute.\nIt was personal.\tC'était personnel.\nIt was too late.\tIl était trop tard.\nIt was too long.\tC'était trop long.\nIt was unlocked.\tC'était déverrouillé.\nIt was unlocked.\tIl était déverrouillé.\nIt was unlocked.\tElle était déverrouillée.\nIt was very hot.\tIl faisait très chaud.\nIt was worth it.\tÇa valait le coup.\nIt wasn't funny.\tCe n'était pas drôle.\nIt'll be better.\tÇa s'améliorera.\nIt'll be tricky.\tÇa sera délicat.\nIt's OK with me.\tC'est bon pour moi.\nIt's a bad time.\tC'est une mauvaise heure.\nIt's a dead end.\tC'est un cul-de-sac.\nIt's a dead end.\tC'est une impasse.\nIt's a disgrace.\tC'est une honte.\nIt's a fine day.\tC'est une belle journée.\nIt's a new book.\tC'est un nouveau livre.\nIt's a nice day.\tC'est une belle journée.\nIt's a shortcut.\tC'est un raccourci.\nIt's a surprise.\tC'est une surprise.\nIt's a travesty.\tC'est une parodie.\nIt's about time.\tIl est grand temps !\nIt's about time.\tIl est temps.\nIt's about time.\tIl est grand temps.\nIt's about time.\tIl est temps !\nIt's about time.\tIl est bien temps !\nIt's acceptable.\tC'est acceptable.\nIt's all I know.\tC’est tout ce que je sais.\nIt's all I know.\tC'est tout ce que je sais.\nIt's all I need.\tC'est tout ce dont j'ai besoin.\nIt's all I want.\tC'est tout ce que je veux.\nIt's an outrage.\tC'est un outrage.\nIt's an outrage.\tIl s'agit d'un outrage.\nIt's artificial.\tC'est artificiel.\nIt's as you say.\tC'est comme tu le dis.\nIt's as you say.\tC'est comme vous le dites.\nIt's cold today!\tIl fait froid aujourd'hui !\nIt's cold today.\tIl fait froid aujourd'hui.\nIt's cool today.\tIl fait frais aujourd'hui.\nIt's dirt cheap.\tC'est tellement bon marché que c'en est indécent.\nIt's dirty work.\tCe sont de basses œuvres.\nIt's easy money.\tC'est de l'argent facile.\nIt's fine today.\tIl fait beau aujourd'hui.\nIt's hard to do.\tC'est difficile à faire.\nIt's impossible.\tC'est impossible.\nIt's improbable.\tC'est improbable.\nIt's inadequate.\tC'est inapproprié.\nIt's inadequate.\tC'est inadapté.\nIt's inadequate.\tC'est insuffisant.\nIt's incredible!\tC'est incroyable !\nIt's incredible.\tC'est incroyable.\nIt's inevitable.\tC'est inévitable.\nIt's irrelevant.\tC'est hors sujet.\nIt's irrelevant.\tC'est hors de propos.\nIt's just blood.\tCe n'est que du sang.\nIt's just money.\tCe n'est que de l'argent.\nIt's just money.\tIl ne s'agit que d'argent.\nIt's just wrong.\tC'est juste faux.\nIt's misleading.\tC'est trompeur.\nIt's misleading.\tC'est spécieux.\nIt's my problem.\tC'est mon problème.\nIt's news to me.\tJe n'étais pas au courant.\nIt's no problem.\tSans problème !\nIt's no problem.\tCela ne fait pas de difficulté.\nIt's no problem.\tCe n'est pas un problème.\nIt's not a date.\tIl ne s'agit pas d'un rendez-vous galant.\nIt's not a game.\tÇa n'est pas un jeu.\nIt's not a gift.\tCe n'est pas un cadeau.\nIt's not a joke.\tCe n'est pas une blague.\nIt's not broken.\tCe n'est pas cassé.\nIt's not enough.\tCe n'est pas suffisant.\nIt's not enough.\tCe n'est pas assez.\nIt's not enough.\tC'est insuffisant.\nIt's not pretty.\tCe n'est pas joli.\nIt's not secure.\tCe n'est pas sécurisé.\nIt's not stupid.\tC'est pas con.\nIt's not stupid.\tCe n'est pas bête.\nIt's on its way.\tC'est en cours.\nIt's on my desk.\tC'est sur mon bureau.\nIt's on my desk.\tIl est sur mon bureau.\nIt's on my desk.\tElle est sur mon bureau.\nIt's only blood.\tCe n'est que du sang.\nIt's only blood.\tIl ne s'agit que de sang.\nIt's only money.\tCe n'est que de l'argent.\nIt's only money.\tIl ne s'agit que d'argent.\nIt's pretty bad.\tC'est assez mauvais.\nIt's pretty hot.\tIl fait plutôt chaud.\nIt's pretty new.\tC'est assez nouveau.\nIt's quite good.\tC'est assez bon.\nIt's quite nice.\tC'est plutôt chouette.\nIt's quite safe.\tC'est plutôt pépère.\nIt's really bad.\tC'est vraiment mauvais.\nIt's really big.\tC'est vraiment balaise.\nIt's really fun.\tC'est vraiment marrant.\nIt's really sad.\tC'est vraiment triste.\nIt's refreshing.\tC'est rafraîchissant.\nIt's ridiculous.\tC'est ridicule.\nIt's so obvious.\tC'est si évident.\nIt's so strange.\tC'est tellement bizarre.\nIt's so typical.\tC'est tellement stéréotypé !\nIt's still dark.\tIl fait encore nuit.\nIt's still mine.\tC'est néanmoins le mien.\nIt's still mine.\tC'est néanmoins la mienne.\nIt's still warm.\tC'est encore chaud.\nIt's still warm.\tIl fait encore chaud.\nIt's sufficient.\tC'est suffisant.\nIt's tax season.\tC'est l'époque des impôts.\nIt's terrifying.\tC'est terrifiant.\nIt's time to go.\tIl est temps d'y aller.\nIt's too bright.\tIl y a trop de lumière.\nIt's too narrow.\tC'est trop étroit.\nIt's very clean.\tC'est très propre.\nIt's very close.\tC'est très proche.\nIt's very early.\tC'est très tôt.\nIt's very humid.\tC'est très humide.\nIt's very risky.\tC'est fort risqué.\nIt's very small.\tC'est très petit.\nIt's very sweet.\tC'est très gentil.\nIt's your money.\tC'est ton argent.\nIt's your money.\tC'est votre argent.\nIt's your money.\tIl s'agit de votre argent.\nJesus loves you.\tJésus vous aime.\nJobs are scarce.\tL'emploi est rare.\nJust ignore her.\tIgnore-la simplement.\nJust ignore him.\tIgnore-le simplement.\nJust ignore him.\tIgnorez-le simplement.\nJust try it out.\tFais-en simplement l'expérience.\nJust try it out.\tFaites-en simplement l'expérience.\nJust try it out.\tEssaie-le simplement !\nJust try it out.\tEssaie-le juste!\nJust try it out.\tEssayez-le simplement !\nJust try it out.\tEssayez-le juste!\nKeep on smiling.\tRestez souriants.\nKeep on smiling.\tRestez souriante.\nKeep on smiling.\tRestez souriant.\nKeep on smiling.\tRestez souriantes.\nKeep on smiling.\tReste souriant.\nKeep on smiling.\tReste souriante.\nKeep the secret.\tGardez le secret.\nKnow your enemy.\tIl faut connaître son ennemi.\nKoalas are cute.\tLes koalas sont mignons.\nLeave a message.\tLaisse un message !\nLeave a message.\tLaissez un message !\nLeave her alone.\tLaisse-la tranquille !\nLeave her alone.\tLaissez-la tranquille !\nLeave him alone.\tLaissez-le seul.\nLeave him alone.\tLaisse-le tranquille.\nLeave him alone.\tLaissez-le tranquille.\nLeave it closed.\tLaisse-le fermé.\nLeave our house.\tQuittez notre maison !\nLeave our house.\tQuitte notre maison !\nLemons are sour.\tLes citrons sont acides.\nLemons are sour.\tLe citron est acide.\nLet me check it.\tLaisse-moi voir ça.\nLet me find out.\tLaisse-moi trouver !\nLet me find out.\tLaissez-moi trouver !\nLet me go alone.\tLaisse-moi tranquille.\nLet me go alone.\tLaissez-moi tranquille.\nLet me help you.\tLaissez-moi vous aider.\nLet me help you.\tLaisse-moi t'aider.\nLet me help you.\tLaisse-moi t'aider !\nLet me help you.\tLaissez-moi vous aider !\nLet me see that.\tFais-moi voir ça.\nLet me see that.\tMontrez-moi ça.\nLet's do it now.\tFaisons-le maintenant !\nLet's get drunk.\tEnivrons-nous !\nLet's get going.\tAllons-y !\nLet's go by bus.\tAllons-y en bus.\nLet's go by bus.\tRendons-nous y en bus.\nLet's go by bus.\tAllons par le bus.\nLet's go by car.\tAllons-y en voiture.\nLet's go by car.\tRendons-nous-y en voiture.\nLet's go by car.\tAllons en voiture.\nLet's go to bed.\tAllons au lit !\nLet's improvise.\tImprovisons.\nLet's improvise.\tImprovisons !\nLet's live here.\tVivons ici !\nLet's negotiate.\tNégocions.\nLet's not argue.\tNe nous disputons pas !\nLet's not fight.\tNe nous battons pas !\nLet's not gloat.\tNe jubilons pas !\nLet's not panic.\tNe paniquons pas.\nLet's rest here.\tReposons-nous ici.\nLet's start now.\tCommençons maintenant.\nLet's stay here.\tRestons ici.\nLet's stop here.\tArrêtons-nous là.\nLet's stop here.\tArrêtons-nous ici.\nLet's talk soon.\tParlons bientôt !\nLet's try again.\tEssayons encore une fois.\nLet's try again.\tEssayons de nouveau.\nLet's turn back.\tRetournons !\nLet's wait here.\tAttendons ici.\nLet's wait here.\tAttendons ici !\nLife ain't easy.\tLa vie n'est pas facile.\nLife is a dream.\tLa vie est un songe.\nLife isn't easy.\tLa vie n'est pas facile.\nLife's not easy.\tLa vie n'est pas facile.\nListen a minute.\tÉcoute une minute !\nListen a minute.\tÉcoutez une minute !\nLock the office.\tVerrouille le bureau.\nLock the office.\tFerme le bureau à clé.\nLock your doors.\tVerrouillez vos portes !\nLock your doors.\tVerrouille tes portes !\nLook around you.\tRegarde autour de toi.\nLook around you.\tRegardez autour de vous.\nLook behind you.\tRegarde derrière toi.\nLook behind you.\tRegardez derrière vous.\nLook what I did.\tRegarde ce que j'ai fait !\nLook what I did.\tRegardez ce que j'ai fait !\nMake a decision.\tPrends une décision !\nMake a decision.\tDécide-toi !\nMake a decision.\tDécidez-vous !\nMake a decision.\tPrenez une décision !\nMake it smaller.\tFais-le plus petit.\nMake it smaller.\tFaites-le plus petit.\nMake it smaller.\tRends-le plus petit.\nMake it smaller.\tRendez-le plus petit.\nMake it smaller.\tFais-la plus petite.\nMake it smaller.\tFaites-la plus petite.\nMake it smaller.\tRends-la plus petite.\nMake it smaller.\tRendez-la plus petite.\nMake some noise!\tFais du bruit !\nMake some noise!\tFaites du bruit !\nMary's my niece.\tMary est ma nièce.\nMay I be honest?\tPuis-je être honnête ?\nMay I borrow it?\tPuis-je l'emprunter ?\nMay I go to bed?\tPuis-je aller au lit ?\nMay I go to bed?\tEst-ce que je peux aller au lit ?\nMay I interrupt?\tPuis-je t'interrompre ?\nMay I interrupt?\tPuis-je vous interrompre ?\nMay I leave now?\tJe peux partir, maintenant ?\nMay I try it on?\tPuis-je l'essayer ?\nMay I try it on?\tPuis-je essayer ceci ?\nMay I try it on?\tEst-ce que je peux l'essayer ?\nMaybe it's true.\tC'est peut-être vrai.\nMaybe it's true.\tPeut-être est-ce la vérité.\nMaybe next time.\tPeut-être la prochaine fois.\nMen should work.\tLes hommes devraient travailler.\nMerry Christmas!\tJoyeux Noël !\nMight I come in?\tPuis-je entrer ?\nMy TV is broken.\tMa télé est cassée.\nMy TV is broken.\tMon téléviseur est cassé.\nMy bag is empty.\tMon sac est vide.\nMy book is here.\tMon livre est ici.\nMy bottle broke.\tMa bouteille s'est cassée.\nMy cat is happy.\tMon chat est heureux.\nMy cat is white.\tMon chat est blanc.\nMy father is in.\tPapa est à la maison.\nMy father is in.\tMon père est à la maison.\nMy jeans shrank.\tMon jeans a rétréci.\nMy mouth is dry.\tJ'ai la bouche sèche.\nMy shift's over.\tMon service est terminé.\nMy wife was mad.\tMa femme était folle.\nMy wife was mad.\tMa femme était furieuse.\nMy work is done.\tMon travail est fait.\nNatto is sticky.\tLe natto est collant.\nNature is cruel.\tLa nature est cruelle.\nNature is scary.\tLa nature est terrifiante.\nNeither is true.\tAucune des deux n'est vraie.\nNeither is true.\tAucun des deux n'est vrai.\nNever say never.\tIl ne faut jamais dire jamais.\nNever tell lies.\tNe dites jamais de mensonges.\nNice seeing you!\tC'est chouette de te voir !\nNice seeing you!\tC'est chouette de vous voir !\nNice to see you.\tJe suis heureux de vous rencontrer à nouveau.\nNo one answered.\tPersonne ne répondit.\nNo one answered.\tPersonne n'a répondu.\nNo one can help.\tPersonne ne peut aider.\nNo one can tell.\tPersonne n'y comprend rien.\nNo one can tell.\tPersonne ne peut le dire.\nNo one flinched.\tPersonne ne flancha.\nNo one flinched.\tPersonne n'a flanché.\nNo one flinched.\tPersonne ne s'est dérobé.\nNo one flinched.\tPersonne ne se déroba.\nNo one got hurt.\tPersonne n'a été blessé.\nNo one got sick.\tPersonne ne tomba malade.\nNo one got sick.\tPersonne n'a été malade.\nNo one is there.\tIl n'y a personne.\nNo one is there.\tPersonne n'est là.\nNo one likes me.\tPersonne ne m'apprécie.\nNo one saw that.\tPersonne ne le vit.\nNo one saw that.\tPersonne ne l'a vu.\nNo one was hurt.\tPersonne n'a été blessé.\nNo one was late.\tPersonne n'était en retard.\nNo one's around.\tPersonne n'est aux alentours.\nNo taxi stopped.\tAucun taxi ne s'arrêta.\nNo taxi stopped.\tAucun taxi ne s'est arrêté.\nNo, I didn't go.\tNon, je ne suis pas parti.\nNo, I didn't go.\tNon, je n'y suis pas allé.\nNobody answered.\tPersonne n'a répondu.\nNobody was home.\tPersonne n'était chez moi.\nNobody was home.\tPersonne n'était chez nous.\nNow I'm serious.\tMaintenant je suis sérieux.\nNow go have fun.\tMaintenant, va t'amuser.\nNow go have fun.\tMaintenant, allez vous amuser.\nNow is the time.\tC'est maintenant le moment.\nNow stop crying.\tMaintenant arrête de pleurer.\nOkay, I'm ready.\tBon, je suis prêt.\nOkay, I'm ready.\tBon, je suis prête.\nOpen the bottle.\tOuvre la bouteille.\nOpen the bottle.\tOuvrez la bouteille.\nOpen your mouth!\tOuvrez la bouche !\nOpen your mouth.\tOuvre la bouche !\nOpen your mouth.\tOuvrez la bouche !\nParties are fun.\tLes fêtes sont amusantes.\nParties bore me.\tLes fêtes m'ennuient.\nPlease call him.\tVeuillez l'appeler.\nPlease call him.\tAppelle-le, s'il te plait.\nPlease continue.\tVeuillez continuez.\nPlease help Tom.\tVeuillez aider Tom.\nPlease help Tom.\tAidez Tom, s'il vous plaît.\nPlease hurry up!\tVeuillez vous presser !\nPlease hurry up!\tVeuillez vous dépêcher !\nPlease hurry up!\tPresse-toi, je te prie !\nPlease hurry up!\tDépêche-toi, je te prie !\nPlease sit down!\tVeuillez vous asseoir !\nPlease sit down.\tAsseyez-vous, s'il vous plaît.\nPlease sit down.\tAssieds-toi, s'il te plaît.\nPlease sit here.\tVeuillez vous asseoir ici.\nPlease sit here.\tAsseyez-vous ici, je vous prie.\nPlease sit here.\tAssieds-toi ici, je te prie.\nPour me a drink.\tVerse-moi un verre !\nPour me a drink.\tVersez-moi un verre !\nPrices are high.\tLes prix sont élevés.\nPut a lid on it!\tFerme-la !\nPut on your hat.\tMettez votre chapeau !\nPut on your hat.\tMets ton chapeau !\nPut your hat on.\tMettez votre chapeau !\nRaise your hand.\tLevez la main.\nRaise your hand.\tLève la main.\nRemove your hat.\tEnlève ton chapeau.\nRemove your hat.\tÔte ton chapeau !\nRemove your hat.\tRetire ton chapeau !\nRemove your hat.\tRetirez votre chapeau !\nRemove your hat.\tÔtez votre chapeau !\nRepeat after me.\tRépète après moi.\nRepeat after me.\tRépétez après moi.\nSchool bores me.\tL'école m'ennuie.\nSchool bores me.\tL'école me barbe.\nScience is cool.\tLa science, c'est sympa !\nSee what I mean?\tTu vois ce que je veux dire ?\nSee what I mean?\tVous voyez ce que je veux dire ?\nSharks eat fish.\tLes requins mangent des poissons.\nShe admired him.\tElle l'admirait.\nShe adores cats.\tElle adore les chats.\nShe calmed down.\tElle s'est calmée.\nShe deserved it.\tElle l'a mérité.\nShe disappeared.\tElle a disparu.\nShe forgave him.\tElle lui pardonna.\nShe forgave him.\tElle lui a pardonné.\nShe got up late.\tElle s'est levée tard.\nShe had a radio.\tElle disposait d'une radio.\nShe has no fear.\tElle n'a pas peur.\nShe is Canadian.\tElle est canadienne.\nShe is Japanese.\tElle est japonaise.\nShe is a beauty.\tC'est un canon.\nShe is a beauty.\tC'est une beauté.\nShe is a doctor.\tElle est médecin.\nShe is a doctor.\tElle est toubib.\nShe is a runner.\tC'est une coureuse.\nShe is a singer.\tElle est chanteuse.\nShe is a typist.\tC'est une dactylographe.\nShe is a typist.\tElle est dactylo.\nShe is graceful.\tElle est gracieuse.\nShe is not tall.\tElle n'est pas grande.\nShe is powerful.\tElle est puissante.\nShe is stubborn.\tElle est obstinée.\nShe looked away.\tElle détourna le regard.\nShe looked away.\tElle a détourné le regard.\nShe looks young.\tElle a l'air jeune.\nShe lost a book.\tElle a égaré un livre.\nShe married him.\tElle l'a épousé.\nShe married him.\tElle l'épousa.\nShe never reads.\tElle ne lit jamais.\nShe pinched him.\tElle le pinça.\nShe pinched him.\tElle l'a pincé.\nShe scolded him.\tElle le sermonna.\nShe scolded him.\tElle le gronda.\nShe scolded him.\tElle l'a sermonné.\nShe scolded him.\tElle l'a grondé.\nShe seems happy.\tElle paraît heureuse.\nShe seems tired.\tElle a l'air fatigué.\nShe slapped him.\tElle le gifla.\nShe slapped him.\tElle l'a giflé.\nShe sounded mad.\tElle avait l'air folle.\nShe stabbed him.\tElle le poignarda.\nShe stabbed him.\tElle l'a poignardé.\nShe talks a lot.\tElle parle beaucoup.\nShe tempted him.\tElle l'incita.\nShe tempted him.\tElle l'a incité.\nShe tempted him.\tElle l'a tenté.\nShe tempted him.\tElle le tenta.\nShe tied him up.\tElle l'attacha.\nShe tied him up.\tElle l'a attaché.\nShe tied him up.\tElle le ligota.\nShe tied him up.\tElle l'a ligoté.\nShe trusted you.\tElle te faisait confiance.\nShe trusted you.\tElle avait confiance en toi.\nShe trusted you.\tElle vous faisait confiance.\nShe trusted you.\tElle avait confiance en vous.\nShe trusted you.\tElle t'a fait confiance.\nShe trusted you.\tElle a eu confiance en toi.\nShe trusted you.\tElle vous a fait confiance.\nShe trusted you.\tElle a eu confiance en vous.\nShe was panting.\tElle tirait la langue.\nShe was panting.\tElle haletait.\nShe was perfect.\tElle fut parfaite.\nShe was perfect.\tElle a été parfaite.\nShe went inside.\tElle est rentrée.\nShe woke him up.\tElle le réveilla.\nShe woke him up.\tElle l'a réveillé.\nShe worked hard.\tElle a travaillé dur.\nShe worked hard.\tElle travaillait dur.\nShe's assertive.\tElle a de l'assurance.\nShe's depressed.\tElle est déprimée.\nShe's in danger.\tElle est en danger.\nShe's my friend.\tC'est mon amie.\nShe's my friend.\tElle est mon amie.\nShe's my sister.\tC'est ma sœur.\nShe's no singer.\tElle n'est pas chanteuse.\nShe's on a roll.\tElle est dans une bonne passe.\nShe's on a roll.\tElle a la baraka.\nShe's very tall.\tElle est très grande.\nSheep eat grass.\tLes moutons mangent de l'herbe.\nShould we start?\tDevrions-nous commencer ?\nShould we worry?\tDevrions-nous nous en faire ?\nShow them to me.\tMontre-les-moi.\nShow us the way.\tMontre-nous le chemin !\nShow us the way.\tMontrez-nous le chemin.\nShut your mouth.\tFerme-la !\nSit right there.\tAssieds-toi juste là !\nSit up straight.\tTiens-toi droit.\nSorry, I forgot.\tDésolé, j'ai oublié.\nSound the alarm!\tSonne l'alarme !\nSound the alarm!\tSonnez l'alarme !\nSpeak your mind.\tDis ce que tu penses.\nSpeak your mind.\tDites ce que vous pensez.\nSpring has come.\tLe printemps est arrivé.\nSpring has come.\tLe printemps est venu.\nStay in the car.\tReste dans la voiture !\nStay in the car.\tRestez dans la voiture !\nStay right here.\tReste juste ici !\nStay very still.\tReste bien tranquille !\nStay very still.\tRestez bien tranquille !\nStay very still.\tRestez bien tranquilles !\nStop doing that.\tArrête de faire ça !\nStop doing that.\tArrêtez de faire ça !\nStop hitting me!\tArrêtez de me frapper !\nStop hitting me!\tArrête de me frapper !\nStop it, please.\tCesse, je te prie !\nStop it, please.\tCessez, je vous prie !\nStop right here.\tArrête juste ici !\nStop right here.\tArrêtez juste ici !\nStop squabbling.\tArrêtez de vous chamailler.\nStop teasing me.\tArrête de me taquiner !\nStop teasing me.\tArrêtez de me taquiner !\nStop whimpering.\tArrête de geindre.\nSummer has come.\tL'été est venu.\nSummer has come.\tL'été est arrivé.\nSuni is playing.\tSuni est en train de jouer.\nTake a breather.\tFais une pause !\nTake care of it.\tPrenez-en soin !\nTake care of it.\tPrends-en soin !\nTake it, please.\tPrenez ça, s'il vous plaît.\nTake no chances.\tNe prends aucun risque !\nTake no chances.\tNe prenez aucun risque !\nTalk to my boss.\tParlez à mon patron.\nTalk to my boss.\tParle à mon patron.\nThat can happen.\tÇa peut arriver.\nThat car is his.\tCette voiture est la sienne.\nThat dog is big.\tCe chien est gros.\nThat dog is big.\tCe chien est massif.\nThat dog jumped.\tCe chien a sauté.\nThat is a table.\tC'est une table.\nThat is correct.\tC'est juste.\nThat is her car.\tC'est son véhicule.\nThat is his car.\tC'est sa voiture.\nThat is my book.\tC'est mon livre.\nThat is so cool.\tC'est tellement sympa !\nThat isn't fair.\tC'est injuste.\nThat looks good.\tÇa a l'air bon.\nThat might help.\tÇa pourrait aider.\nThat was a sign.\tC'était un signe.\nThat won't work!\tÇa ne va pas !\nThat won't work!\tÇa ne veut pas marcher !\nThat won't work!\tÇa ne marche pas !\nThat's a relief.\tC'est un soulagement.\nThat's about it.\tEn gros, c'est ça.\nThat's all I do.\tC'est tout ce que je fais.\nThat's all true.\tTout cela est vrai.\nThat's an order.\tC'est un ordre.\nThat's an order.\tIl s'agit d'un ordre.\nThat's cheating.\tC'est de la triche.\nThat's doubtful.\tC'est douteux.\nThat's doubtful.\tCe n'est pas sûr.\nThat's my chair.\tC'est ma chaise.\nThat's my fault.\tC'est de ma faute.\nThat's nonsense.\tC'est absurde.\nThat's not cool.\tCe n'est pas sympa.\nThat's not fair.\tC'est injuste.\nThat's not good.\tCe n'est pas bon.\nThat's not love.\tCe n'est pas ça, l'amour.\nThat's not love.\tCe n'est pas de l'amour.\nThat's not nice.\tCe n'est pas sympa.\nThat's not true.\tCe n'est pas vrai.\nThat's not true.\tC'est pas vrai.\nThat's peculiar.\tC'est bizarre.\nThat's peculiar.\tC'est étrange.\nThat's peculiar.\tC'est particulier.\nThat's so weird.\tC'est tellement bizarre.\nThat's terrible.\tC'est terrible !\nThat's the snag.\tVoilà le hic.\nThat's the word.\tC'est le mot.\nThat's too easy.\tC'est trop facile.\nThat's too long.\tC'est trop long.\nThat's too much!\tC'est trop !\nThat's very big.\tC'est très grand.\nThat's very big.\tC'est très gros.\nThat's very odd.\tC'est très bizarre.\nThe air is damp.\tL'air est humide.\nThe answer's no.\tLa réponse est « non ».\nThe baby's fine.\tL’enfant va bien.\nThe bike's mine.\tLe vélo est à moi.\nThe book is red.\tLe livre est rouge.\nThe car is blue.\tL'auto est bleue.\nThe cat is lazy.\tLe chat est paresseux.\nThe cat is safe.\tLe chat est en sécurité.\nThe cup is full.\tLa tasse est pleine.\nThe dog growled.\tLe chien a grogné.\nThe dog is dead.\tLe chien est mort.\nThe dog is mine.\tLe chien est à moi.\nThe dog is ours.\tLe chien est à nous.\nThe door opened.\tLa porte s'est ouverte.\nThe door opened.\tLa porte s'ouvrit.\nThe engine died.\tLe moteur s'est arrêté.\nThe house stank.\tLa maison puait.\nThe lake is big.\tLe lac est grand.\nThe leaves fell.\tLes feuilles tombèrent.\nThe leaves fell.\tLes feuilles sont tombées.\nThe light is on.\tLa lumière est allumée.\nThe man blushed.\tL'homme rougit.\nThe moon is out.\tLa lune est visible.\nThe moon is out.\tLa lune est là.\nThe net is huge.\tLe filet est énorme.\nThe room is hot.\tLa pièce est brûlante.\nThe sea is blue.\tLa mer est bleue.\nThe sea is calm.\tLa mer est calme.\nThe sky is blue.\tLe ciel est bleu.\nThe soup is hot.\tLa soupe est chaude.\nThe soup's cold.\tLe potage est froid.\nThe sun has set.\tLe soleil s'est couché.\nThe team waited.\tL'équipe attendait.\nThe well is dry.\tLe puits est à sec.\nThere she comes.\tLa voici.\nThere was music.\tIl y avait de la musique.\nThere's a catch.\tIl y a un truc.\nThere's a catch.\tIl y a un piège.\nThere's a catch.\tIl y a une attrape.\nThere's a table.\tIl y a une table.\nThere's a table.\tIl s'y trouve une table.\nThere's my team.\tVoilà mon équipe.\nThere's no cure.\tIl n'y a pas de remède.\nThere's no cure.\tIl n'y a pas de traitement.\nThere's no door.\tIl n'y a pas de porte.\nThere's no exit.\tIl n'y a pas d'issue.\nThere's no exit.\tIl n'y a pas de sortie.\nThere's no food.\tIl n'y a pas de nourriture.\nThere's no food.\tIl n'y a aucune nourriture.\nThere's no gold.\tIl n’y a pas d’or.\nThere's no hope.\tIl n'y a pas d'espoir.\nThere's no hope.\tIl n'y a aucun espoir.\nThere's no rush.\tIl n'y a pas d'urgence.\nThere's no rush.\tIl n'y a pas lieu de se précipiter.\nThere's no salt.\tIl n'y a pas de sel.\nThere's no time.\tIl n'y a pas le temps.\nThere's our bus.\tIl y a notre bus.\nThere's the rub.\tVoilà le hic.\nThey all did it.\tIls l'ont tous fait.\nThey all did it.\tElles l'ont toutes fait.\nThey all did it.\tIls le firent tous.\nThey all did it.\tElles le firent toutes.\nThey all hugged.\tTous se prirent dans les bras les uns des autres.\nThey all hugged.\tToutes se prirent dans les bras les uns des autres.\nThey all talked.\tIls ont tous parlé.\nThey are actors.\tIls sont acteurs.\nThey are melons.\tCe sont des melons.\nThey blocked it.\tIls l'ont bloquée.\nThey can manage.\tIls peuvent gérer.\nThey can manage.\tElles peuvent gérer.\nThey caught Tom.\tIls ont attrapé Tom.\nThey caught Tom.\tElles ont attrapé Tom.\nThey deserve it.\tIls le méritent.\nThey deserve it.\tElles le méritent.\nThey don't care.\tIls s'en fichent.\nThey don't care.\tElles ne s'en soucient pas.\nThey don't care.\tElles s'en fichent.\nThey don't help.\tIls n'aident pas.\nThey feared you.\tIls te craignaient.\nThey feared you.\tElles te craignaient.\nThey greeted me.\tIls m'ont souhaité la bienvenue.\nThey greeted me.\tElles m'ont souhaité la bienvenue.\nThey had a boat.\tIls avaient un bateau.\nThey held hands.\tIls se tenaient les mains.\nThey held hands.\tElles se tenaient les mains.\nThey helped Tom.\tIls ont aidé Tom.\nThey left early.\tIls sont partis tôt.\nThey left early.\tIls partirent tôt.\nThey live apart.\tIls vivent séparés.\nThey live apart.\tElles vivent séparées.\nThey look bored.\tIls ont l'air de s'ennuyer.\nThey look bored.\tElles ont l'air de s'ennuyer.\nThey look happy.\tElles semblent heureuses.\nThey look happy.\tElles ont l'air heureux.\nThey lost again.\tIls ont encore perdu.\nThey lost again.\tElles ont encore perdu.\nThey lost again.\tIls ont perdu à nouveau.\nThey lost again.\tElles ont perdu à nouveau.\nThey missed Tom.\tTom leur a manqué.\nThey seem happy.\tElles semblent heureuses.\nThey visited us.\tIls nous ont rendu visite.\nThey visited us.\tElles nous ont rendu visite.\nThey want peace.\tIls veulent la paix.\nThey want peace.\tElles veulent la paix.\nThey went crazy.\tIls devinrent fous.\nThey went crazy.\tElles devinrent folles.\nThey went crazy.\tIls sont devenus fous.\nThey went crazy.\tElles sont devenues folles.\nThey were lucky.\tElles eurent de la chance.\nThey were lucky.\tElles ont eu de la chance.\nThey were lucky.\tIls eurent de la chance.\nThey were lucky.\tIls ont eu de la chance.\nThey were naive.\tIls étaient crédules.\nThey were naive.\tElles étaient crédules.\nThey were naive.\tIls étaient naïfs.\nThey were naive.\tElles étaient naïves.\nThey were yours.\tIls étaient vôtres.\nThey were yours.\tElles étaient vôtres.\nThey were yours.\tIls étaient les vôtres.\nThey were yours.\tElles étaient les vôtres.\nThey'll be fine.\tTout ira bien pour eux.\nThey'll be fine.\tTout ira bien pour elles.\nThey'll find us.\tIls nous trouveront.\nThey'll find us.\tElle nous trouveront.\nThey'll kill me.\tIls me tueront.\nThey're all bad.\tIls sont tous mauvais.\nThey're all bad.\tElles sont toutes mauvaises.\nThey're amazing.\tIls sont incroyables.\nThey're amazing.\tElles sont incroyables.\nThey're animals.\tCe sont des animaux.\nThey're arguing.\tIls sont en train de se disputer.\nThey're arguing.\tElles sont en train de se disputer.\nThey're cousins.\tIls sont cousins.\nThey're cousins.\tElles sont cousines.\nThey're dancing.\tIls sont en train de danser.\nThey're dancing.\tElles sont en train de danser.\nThey're doctors.\tIls sont médecins.\nThey're doctors.\tElles sont médecins.\nThey're jittery.\tIls sont nerveux.\nThey're jittery.\tElles sont nerveuses.\nThey're jittery.\tIls ont la frousse.\nThey're jittery.\tElles ont la frousse.\nThey're leaving.\tIls partent.\nThey're leaving.\tIls s'en vont.\nThey're not bad.\tIls ne sont pas mal.\nThey're outside.\tIls sont dehors.\nThey're outside.\tIls sont à l'extérieur.\nThey're similar.\tIls sont similaires.\nThey're similar.\tElles sont similaires.\nThey're similar.\tIls sont semblables.\nThey're similar.\tElles sont semblables.\nThey're smiling.\tIls sourient.\nThey're special.\tIls sont spéciaux.\nThey're special.\tElles sont spéciales.\nThey're staying.\tIls restent.\nThey're staying.\tElles restent.\nThey're talking.\tIls parlent.\nThey're talking.\tElles parlent.\nThey're too fat.\tIls sont trop gros.\nThey're too fat.\tIls sont trop gras.\nThey're too fat.\tElles sont trop grosses.\nThey're too fat.\tElles sont trop grasses.\nThey're useless.\tIls sont inutiles.\nThey're useless.\tElles sont inutiles.\nThey're with me.\tIls sont avec moi.\nThis book's new.\tCe livre est nouveau.\nThis book's new.\tCe livre est neuf.\nThis dog is big.\tCe chien est massif.\nThis is a farce.\tIl s'agit d'une farce.\nThis is amazing.\tC'est incroyable.\nThis is amazing.\tC'est génial.\nThis is awesome.\tC'est effarant !\nThis is awesome.\tC'est super !\nThis is awesome.\tC'est génial !\nThis is awesome.\tC'est fantastique !\nThis is correct.\tC'est exact.\nThis is foolish.\tC'est idiot.\nThis is for you.\tC'est pour ton bien.\nThis is for you.\tC'est pour toi.\nThis is for you.\tC'est pour vous.\nThis is for you.\tCeci est pour toi.\nThis is for you.\tCeci est pour vous.\nThis is hogwash.\tCe sont des foutaises.\nThis is illegal.\tC'est illégal.\nThis is my beer.\tC'est ma bière.\nThis is my book.\tC'est mon livre.\nThis is my fate.\tC'est mon destin.\nThis is my fate.\tC'est ma destinée.\nThis is my fate.\tC'est mon sort.\nThis is my home.\tC'est ma maison.\nThis is my room.\tVoici ma chambre.\nThis is my wine.\tCe vin est le mien.\nThis is my wine.\tC'est mon vin.\nThis is no joke.\tCe n'est pas une blague.\nThis is nothing.\tCe n'est rien.\nThis is painful.\tC'est douloureux.\nThis is perfect.\tC'est parfait.\nThis is private.\tC'est privé.\nThis is reality.\tC'est la réalité.\nThis is rubbish.\tCe sont des balivernes.\nThis is so easy.\tC'est tellement facile.\nThis is so easy.\tC'est si facile.\nThis is so good.\tC'est tellement bon.\nThis is the boy.\tC'est le garçon.\nThis is the end.\tC'est la fin.\nThis is typical.\tC'est classique.\nThis is unusual.\tC'est singulier.\nThis is unusual.\tC'est insolite.\nThis is useless.\tC'est inutile.\nThis isn't safe.\tCe n'est pas sans danger.\nThis looks good.\tÇa a l'air bien.\nThis looks good.\tÇa a l'air bon.\nThis might hurt.\tÇa pourrait faire mal.\nThose are gifts.\tCe sont des cadeaux.\nTime for dinner.\tC'est l'heure du dîner.\nTime for dinner.\tC'est l'heure de dîner.\nTo each his own.\tÀ chacun le sien.\nToday is Friday.\tNous sommes vendredi.\nToday is Sunday.\tC'est aujourd'hui dimanche.\nToday is hectic.\tC'est chaud, aujourd'hui.\nTom ate quickly.\tTom mangea rapidement.\nTom ate quickly.\tTom a mangé rapidement.\nTom believed it.\tTom l'a cru.\nTom called back.\tTom rappela.\nTom called back.\tTom a rappelé.\nTom contributed.\tTom contribua.\nTom contributed.\tTom a contribué.\nTom didn't call.\tTom n'a pas appelé.\nTom disappeared.\tTom a disparu.\nTom exaggerates.\tTom exagère.\nTom had no sons.\tTom n'avait pas de fils.\nTom has a beard.\tTom a une barbe.\nTom has a horse.\tTom a un cheval.\nTom has my book.\tTom a mon livre.\nTom hugged Mary.\tTom fit un câlin à Marie.\nTom is a Muslim.\tTom est musulman.\nTom is a doctor.\tTom est docteur.\nTom is a doctor.\tTom est médecin.\nTom is a genius.\tTom est un génie.\nTom is a player.\tTom est un joueur.\nTom is all ears.\tTom est tout ouïe.\nTom is an idiot.\tTom est idiot.\nTom is deranged.\tTom est dérangé.\nTom is laughing.\tTom rit.\nTom is laughing.\tTom rigole.\nTom is laughing.\tTom est en train de rire.\nTom is likeable.\tTom est sympathique.\nTom is no angel.\tTom n'est pas un ange.\nTom is not dumb.\tTom n'est pas débile.\nTom is not here.\tTom n'est pas ici.\nTom is on leave.\tTom est en congé.\nTom is quitting.\tTom démissionne.\nTom is reckless.\tTom est insouciant.\nTom is relieved.\tTom est soulagé.\nTom is speaking.\tTom est en train de parler.\nTom is studying.\tTom est en train d'étudier.\nTom is sweating.\tTom transpire.\nTom is tireless.\tTom est infatigable.\nTom is tolerant.\tTom est tolérant.\nTom is watching.\tTom regarde.\nTom is your age.\tTom a ton âge.\nTom is your age.\tTom a votre âge.\nTom kicked Mary.\tTom donna un coup de pied à Mary.\nTom killed Mary.\tTom tua Mary.\nTom killed Mary.\tTom a tué Mary.\nTom kissed Mary.\tTom embrassa Mary.\nTom kissed Mary.\tTom a embrassé Mary.\nTom likes chess.\tTom aime les échecs.\nTom looked back.\tTom regarda en arrière.\nTom looked back.\tTom a regardé en arrière.\nTom looks great.\tTom est superbe.\nTom looks happy.\tTom a l'air heureux.\nTom never comes.\tTom ne vient jamais.\nTom never falls.\tTom ne tombe jamais.\nTom paid for it.\tTom a payé pour cela.\nTom quit school.\tTom a quitté l'école.\nTom saw a mouse.\tTom vit une souris.\nTom saw a mouse.\tTom a vu une souris.\nTom seems angry.\tTom semble énervé.\nTom seems angry.\tTom a l'air énervé.\nTom seems happy.\tTom a l'air heureux.\nTom seems young.\tTom semble jeune.\nTom seems young.\tTom a l'air jeune.\nTom stayed calm.\tTom est resté calme.\nTom stayed calm.\tTom resta calme.\nTom turned pale.\tTom a pâli.\nTom volunteered.\tTom se porta volontaire.\nTom wanted that.\tTom voulait cela.\nTom warned Mary.\tThomas avertit Marie.\nTom was in love.\tTom était amoureux.\nTom was nervous.\tTom était nerveux.\nTom was popular.\tTom était populaire.\nTom was sobbing.\tTom sanglotait.\nTom wasn't sure.\tTom n'était pas sûr.\nTom went inside.\tTom est entré.\nTom went inside.\tTom est allé à l'intérieur.\nTom will fix it.\tTom le corrigera.\nTom will fix it.\tTom le réparera.\nTom works a lot.\tTom travaille beaucoup.\nTom writes well.\tTom écrit bien.\nTom's different.\tTom est différent.\nTom's important.\tTom est important.\nTom's my friend.\tTom est mon ami.\nTrust is earned.\tLa confiance, ça s'acquiert.\nTry and stop me.\tEssaie de m'arrêter !\nTry and stop me.\tEssayez de m'arrêter !\nTry not to yawn.\tEssaie de ne pas bâiller.\nTurn off the TV.\tÉteins la télévision.\nUnlock the door.\tDéverrouille la porte.\nUnlock the door.\tDéverrouille la porte !\nUnlock the door.\tDéverrouillez la porte !\nWait one second.\tAttends une seconde !\nWait one second.\tAttendez une seconde !\nWait right here.\tAttends précisément ici.\nWait right here.\tAttendez précisément ici.\nWalls have ears.\tLes murs ont des oreilles.\nWash your hands.\tLave-toi les mains.\nWatch carefully.\tRegarde attentivement !\nWatch carefully.\tRegardez attentivement !\nWatch the front.\tSurveille devant.\nWatch the front.\tSurveille le devant.\nWatch your back.\tSurveille tes arrières !\nWatch your step.\tRegarde où tu poses le pied.\nWatch your step.\tRegardez où vous posez le pied.\nWatch your toes.\tAttention à tes orteils.\nWe all did well.\tNous avons tous bien réussi.\nWe all did well.\tNous avons toutes bien réussi.\nWe all had hope.\tNous avions tous de l'espoir.\nWe all had hope.\tNous avions toutes de l'espoir.\nWe all have fun.\tNous nous amusons tous.\nWe all have fun.\tNous nous amusons toutes.\nWe all know Tom.\tNous connaissons tous Tom.\nWe all like him.\tNous l'aimons tous.\nWe all like him.\tNous l'apprécions tous.\nWe all like him.\tNous l'apprécions toutes.\nWe all suffered.\tNous avons tous souffert.\nWe all suffered.\tNous avons toutes souffert.\nWe are a family.\tNous sommes une famille.\nWe are brothers.\tNous sommes frères.\nWe are busy men.\tNous sommes des hommes occupés.\nWe are his sons.\tNous sommes ses fils.\nWe are students.\tNous sommes étudiants.\nWe are teachers.\tNous sommes enseignants.\nWe are teachers.\tNous sommes enseignantes.\nWe are the best.\tNous sommes les meilleurs.\nWe are watching.\tNous regardons.\nWe ate together.\tNous avons mangé ensemble.\nWe both want it.\tNous le voulons tous les deux.\nWe both want it.\tNous le voulons toutes les deux.\nWe can't attend.\tNous ne pouvons y assister.\nWe can't escape.\tNous ne pouvons nous échapper.\nWe can't see it.\tNous ne pouvons pas le voir.\nWe closed early.\tNous avons fermé tôt.\nWe count on you.\tNous comptons sur toi.\nWe count on you.\tNous comptons sur vous.\nWe declared war.\tNous avons déclaré la guerre.\nWe don't forget.\tNous n'oublions pas.\nWe eat fish raw.\tNous mangeons du poisson cru.\nWe have no time.\tNous n'avons pas le temps.\nWe have refused.\tNous avons refusé.\nWe have to move.\tIl nous faut bouger.\nWe lack nothing.\tNous ne manquons de rien.\nWe like to talk.\tNous aimons parler.\nWe like to talk.\tNous apprécions de converser.\nWe love our dog.\tNous adorons notre chien.\nWe love our dog.\tNous adorons notre chienne.\nWe love picnics.\tNous adorons les pique-niques.\nWe made him cry.\tNous l'avons fait pleurer.\nWe made waffles.\tNous avons confectionné des gaufres.\nWe must retreat.\tIl nous faut battre en retraite.\nWe must succeed.\tIl nous faut réussir.\nWe need experts.\tIl nous faut des experts.\nWe need to talk.\tIl faut que nous parlions.\nWe need to talk.\tIl est nécessaire que nous parlions.\nWe need to talk.\tIl nous est nécessaire de parler.\nWe never forget.\tNous n'oublions jamais.\nWe ought to win.\tNous devrions l'emporter.\nWe ought to win.\tNous devrions gagner.\nWe played chess.\tNous avons joué aux échecs.\nWe realize that.\tNous en prenons conscience.\nWe respect them.\tNous les respectons.\nWe run together.\tNous courons ensemble.\nWe said nothing.\tNous n'avons rien dit.\nWe sang for her.\tNous avons chanté pour elle.\nWe shared ideas.\tNous avons partagé des idées.\nWe should study.\tNous devrions étudier.\nWe speak French.\tNous parlons français.\nWe study Arabic.\tNous étudions l'arabe.\nWe study French.\tNous étudions le français.\nWe travel light.\tNous voyageons léger.\nWe try our best.\tNous faisons de notre mieux.\nWe want answers.\tNous voulons des réponses.\nWe want revenge.\tNous voulons notre vengeance.\nWe want to help.\tNous voulons aider.\nWe want to talk.\tNous voulons discuter.\nWe went on foot.\tNous sommes allés à pied.\nWe went on foot.\tNous sommes allées à pied.\nWe went too far.\tNous sommes allés trop loin.\nWe went too far.\tNous sommes allées trop loin.\nWe went too far.\tNous allâmes trop loin.\nWe were friends.\tNous étions amis.\nWe were friends.\tNous étions amies.\nWe were sailing.\tNous faisions de la voile.\nWe were winning.\tNous étions en train de gagner.\nWe were winning.\tNous étions en train de l'emporter.\nWe were worried.\tNous nous faisions du souci.\nWe will survive.\tNous survivrons.\nWe'll catch you.\tNous t'attraperons.\nWe'll catch you.\tNous vous attraperons.\nWe'll cooperate.\tNous coopérerons.\nWe'll get there.\tNous y parviendrons.\nWe'll stay here.\tNous resterons ici.\nWe'll stop them.\tNous les arrêterons.\nWe'll wait here.\tNous attendrons ici.\nWe'll wait here.\tOn attendra ici.\nWe're Canadians.\tNous sommes Canadiens.\nWe're Canadians.\tNous sommes canadiennes.\nWe're adaptable.\tNous sommes flexibles.\nWe're all alone.\tNous sommes tous seuls.\nWe're all angry.\tNous sommes tous en colère.\nWe're all angry.\tNous sommes toutes en colère.\nWe're all armed.\tNous sommes tous armés.\nWe're all armed.\tNous sommes toutes armées.\nWe're all bored.\tNous nous ennuyons tous.\nWe're all bored.\tNous nous ennuyons toutes.\nWe're all crazy.\tNous sommes tous dingues.\nWe're all crazy.\tNous sommes toutes dingues.\nWe're all crazy.\tNous sommes tous fous.\nWe're all crazy.\tNous sommes toutes folles.\nWe're all dying.\tNous sommes tous en train de mourir.\nWe're all going.\tNous y allons tous.\nWe're ambitious.\tNous sommes ambitieux.\nWe're ambitious.\tNous sommes ambitieuses.\nWe're available.\tNous sommes disponibles.\nWe're both fine.\tNous allons bien tous les deux.\nWe're both fine.\tNous allons bien toutes les deux.\nWe're comedians.\tNous sommes comédiens.\nWe're committed.\tNous sommes engagés.\nWe're committed.\tNous sommes engagées.\nWe're confident.\tNous avons confiance.\nWe're contented.\tNous sommes satisfaits.\nWe're contented.\tNous sommes satisfaites.\nWe're dedicated.\tNous sommes dévoués.\nWe're dedicated.\tNous sommes dévouées.\nWe're depressed.\tNous sommes déprimés.\nWe're different.\tNous sommes différents.\nWe're different.\tNous sommes différentes.\nWe're done here.\tNous en avons fini, ici.\nWe're fixing it.\tNous sommes en train de le réparer.\nWe're flattered.\tNous sommes flattés.\nWe're from here.\tNous sommes d'ici.\nWe're gardeners.\tNous sommes jardiniers.\nWe're gentlemen.\tNous sommes des gentilshommes.\nWe're giving up.\tNous abandonnons.\nWe're going now.\tNous y allons maintenant.\nWe're going out.\tNous sortons.\nWe're here, too.\tNous aussi nous sommes là.\nWe're here, too.\tNous aussi nous sommes ici.\nWe're in charge.\tNous sommes en charge.\nWe're in charge.\tC'est nous qui dirigeons.\nWe're in danger.\tNous sommes en danger.\nWe're listening.\tNous écoutons.\nWe're losing it.\tNous sommes en train de perdre.\nWe're newcomers.\tNous sommes des nouveaux-venus.\nWe're newcomers.\tNous sommes des nouvelles-venues.\nWe're newlyweds.\tNous sommes jeunes mariés.\nWe're not alone.\tNous ne sommes pas seuls.\nWe're not alone.\tNous ne sommes pas seules.\nWe're not fools.\tNous ne sommes pas des imbéciles.\nWe're not fussy.\tNous ne faisons pas de chichis.\nWe're not going.\tNous n'y allons pas.\nWe're not going.\tNous ne nous y rendons pas.\nWe're not going.\tNous ne nous en allons pas.\nWe're not happy.\tNous ne sommes pas contents.\nWe're not happy.\tNous ne sommes pas contentes.\nWe're not happy.\tNous ne sommes pas heureux.\nWe're not happy.\tNous ne sommes pas heureuses.\nWe're not ready.\tNous ne sommes pas prêtes.\nWe're not young.\tNous ne sommes pas jeunes.\nWe're past that.\tNous avons dépassé cela.\nWe're plastered.\tNous sommes bourrés.\nWe're plastered.\tNous sommes bourrées.\nWe're powerless.\tNous sommes impuissants.\nWe're powerless.\tNous sommes impuissantes.\nWe're prisoners.\tNous sommes des prisonniers.\nWe're prisoners.\tNous sommes des prisonnières.\nWe're ready now.\tNous sommes prêts, désormais.\nWe're ready now.\tNous sommes prêtes, désormais.\nWe're ready now.\tNous sommes maintenant prêts.\nWe're ready now.\tNous sommes maintenant prêtes.\nWe're realistic.\tNous sommes réalistes.\nWe're resigning.\tNous démissionnons.\nWe're resilient.\tNous sommes endurants.\nWe're resilient.\tNous sommes endurantes.\nWe're safe here.\tNous sommes en sécurité, ici.\nWe're satisfied.\tNous sommes satisfaits.\nWe're satisfied.\tNous sommes satisfaites.\nWe're sensitive.\tNous sommes sensibles.\nWe're separated.\tNous sommes séparées.\nWe're separated.\tNous sommes séparés.\nWe're surprised.\tNous sommes surpris.\nWe're surprised.\tNous sommes surprises.\nWe're surviving.\tNous survivons.\nWe're survivors.\tNous sommes des survivants.\nWe're survivors.\tNous sommes des survivantes.\nWe're too close.\tNos scores sont trop serrés.\nWe're too close.\tNous sommes trop proches.\nWe're uninsured.\tNous ne sommes pas assurés.\nWe're uninsured.\tNous ne sommes pas assurées.\nWe're unrelated.\tNous ne sommes pas apparentés.\nWe're unrelated.\tNous ne sommes pas apparentées.\nWe're very busy.\tNous sommes très occupés.\nWe're very busy.\tNous sommes fort occupés.\nWe're very busy.\tNous sommes très occupées.\nWe've been busy.\tNous avons été occupés.\nWe've been busy.\tNous avons été occupées.\nWe've no choice.\tNous n'avons pas le choix.\nWhat a blessing!\tQuelle bénédiction !\nWhat a disaster!\tQuel désastre !\nWhat a huge dog!\tQuel énorme chien !\nWhat a nice tie!\tQuelle chouette cravate !\nWhat a pleasure!\tQuel plaisir !\nWhat a prospect!\tQuelle perspective !\nWhat a surprise!\tQuelle surprise !\nWhat a treasure!\tQuel trésor !\nWhat can you do?\tQue peut-on faire ?\nWhat can you do?\tQue peut-on y faire ?\nWhat could I do?\tQue pouvais-je faire ?\nWhat could I do?\tQue pourrais-je faire ?\nWhat did I miss?\tQu'ai-je manqué ?\nWhat did I miss?\tQu'ai-je loupé ?\nWhat did he say?\tQu'a-t-il dit ?\nWhat did he say?\tC'est ce qu'il a dit ?\nWhat do you say?\tQue dis-tu ?\nWhat do you say?\tQue dites-vous ?\nWhat do you see?\tQue vois-tu ?\nWhat do you see?\tQue voyez-vous ?\nWhat drives you?\tQu'est-ce qui te mène ?\nWhat drives you?\tQu'est-ce qui vous mène ?\nWhat fell on me?\tQu'est-ce qui m'est tombé dessus ?\nWhat is he like?\tComment est-il ?\nWhat is he like?\tDe quoi a-t-il l'air ?\nWhat is his age?\tQuel âge a-t-il ?\nWhat is missing?\tQu'est-ce qui manque ?\nWhat is missing?\tQue manque-t-il ?\nWhat scared you?\tQu'est-ce qui t'a effrayé ?\nWhat scared you?\tQu'est-ce qui t'a effrayée ?\nWhat scared you?\tQu'est-ce qui vous a effrayé ?\nWhat scared you?\tQu'est-ce qui vous a effrayée ?\nWhat scared you?\tQu'est-ce qui vous a effrayés ?\nWhat scared you?\tQu'est-ce qui vous a effrayées ?\nWhat time is it?\tQuelle heure est-il ?\nWhat time is it?\tQuelle heure est-il ?\nWhat was inside?\tQu'est-ce qui se trouvait à l'intérieur ?\nWhat was stolen?\tQu'est-ce qui a été volé ?\nWhat's Tom like?\tÀ quoi ressemble Tom ?\nWhat's all this?\tQu'est tout ceci ?\nWhat's going on?\tQu'est-ce qui se passe ?\nWhat's going on?\tQu'y a-t-il ?\nWhat's going on?\tQu'est ce qui se passe ?\nWhat's his name?\tComment s'appelle-t-il ?\nWhat's his name?\tQuel est son nom ?\nWhat's in there?\tQu'y a-t-il là-dedans ?\nWhat's it about?\tDe quoi s'agit-il ?\nWhat's it about?\tC’est à quel sujet ?\nWhat's its name?\tComment s'appelle-t-il ?\nWhat's its name?\tQuel est son nom ?\nWhat's kept you?\tQu'est-ce qui t'a retenu ?\nWhat's kept you?\tQu'est-ce qui vous a retenu ?\nWhat's my prize?\tQuelle est ma récompense ?\nWhat's so funny?\tQu'est-ce qui est si drôle ?\nWhat's the cost?\tQuel est le coût ?\nWhat's the idea?\tQuelle est l'idée ?\nWhat's the plan?\tC'est quoi le plan ?\nWhat's the plan?\tQuel est le plan ?\nWhat's the rush?\tPourquoi cette précipitation ?\nWhat's the time?\tQuelle heure est-il ?\nWhat's up, dude?\tComment ça va, mec ?\nWhat's your GPA?\tQuelle est ta moyenne générale ?\nWhat's your job?\tQuel est ton métier ?\nWhat've you got?\tQu'as-tu ?\nWhat've you got?\tQu'avez-vous ?\nWhen can we eat?\tQuand pouvons-nous manger ?\nWhen did it end?\tQuand cela s'est-il terminé ?\nWhen did it end?\tQuand est-ce que ça a fini ?\nWhere did he go?\tOù est-il allé ?\nWhere do I turn?\tOù est-ce que je tourne ?\nWhere is Father?\tOù est père ?\nWhere is my car?\tOù est ma voiture ?\nWhere is my dog?\tOù est mon chien ?\nWhere is my son?\tOù est mon fils ?\nWhere's Tom now?\tOù est Tom actuellement ?\nWhere's my book?\tOù se trouve mon livre ?\nWhere's the bag?\tOù est le sac ?\nWhere's the bag?\tOù se trouve le sac ?\nWhere's the cat?\tOù est le chat ?\nWhere's the dog?\tOù est le chien ?\nWhere's the map?\tOù est la carte ?\nWhere's the map?\tOù est le plan ?\nWhere's the oar?\tOù est la rame ?\nWhere's the oar?\tOù est l'aviron ?\nWhich key is it?\tDe quelle clé s'agit-il ?\nWho are you all?\tQui êtes-vous tous ?\nWho did you see?\tQui avez-vous vu ?\nWho is that guy?\tQui est ce type ?\nWho is that man?\tQui est cet homme ?\nWho is this boy?\tQui est ce garçon ?\nWho is this guy?\tQui est ce type ?\nWho likes beans?\tQui aime les haricots ?\nWho punched you?\tQui vous a frappé ?\nWho volunteered?\tQui s'est porté volontaire ?\nWho volunteered?\tQui a fait du bénévolat ?\nWho wants jello?\tQui veut de la gelée ?\nWho's been shot?\tQui s'est fait tirer dessus ?\nWho's in charge?\tQui commande ?\nWho's screaming?\tQui est en train de hurler ?\nWho's that girl?\tQui est cette fille  ?\nWhy am I crying?\tPourquoi est-ce que je pleure ?\nWhy are we here?\tPourquoi sommes-nous ici ?\nWhy are you sad?\tPourquoi es-tu triste ?\nWhy did Tom lie?\tPourquoi Tom a-t'il menti ?\nWhy did you lie?\tPourquoi as-tu menti ?\nWhy did you lie?\tPourquoi as-tu menti ?\nWhy do we dream?\tPourquoi rêvons-nous ?\nWhy is she here?\tPourquoi est-elle là ?\nWhy is she here?\tPourquoi est-elle ici ?\nWhy not ask Tom?\tPourquoi ne pas demander à Tom ?\nWhy should I go?\tPourquoi devrais-je partir ?\nWhy should I go?\tPourquoi devrais-je y aller ?\nWill he recover?\tS'en remettra-t-il ?\nWomen love that.\tLes femmes adorent ça.\nWords failed me.\tLes mots me manquèrent.\nWords failed me.\tJe n'ai pas trouvé les mots.\nWould you do it?\tLe ferais-tu ?\nWould you do it?\tLe feriez-vous ?\nWrite something.\tÉcris quelque chose.\nWrite something.\tÉcrivez quelque chose.\nYou almost died.\tTu es presque mort.\nYou almost died.\tVous êtes presque mort.\nYou almost died.\tVous êtes presque morte.\nYou almost died.\tVous êtes presque morts.\nYou almost died.\tVous êtes presque mortes.\nYou almost died.\tTu es presque morte.\nYou are my hero.\tTu es mon héros.\nYou are my hero.\tTu es mon héroïne.\nYou are my hero.\tVous êtes mon héros.\nYou are my hero.\tVous êtes mon héroïne.\nYou are naughty.\tTu es vilain.\nYou are naughty.\tVous êtes vilain.\nYou are naughty.\tTu es vilaine.\nYou are naughty.\tVous êtes vilaine.\nYou are so cute.\tComme tu es mignonne.\nYou are tallest.\tTu es le plus grand.\nYou are the one.\tTu es celui-là.\nYou are the one.\tVous êtes celui-là.\nYou are the one.\tTu es l'élu.\nYou are the one.\tTu es celle-là.\nYou are the one.\tVous êtes celle-là.\nYou are the one.\tTu es l'élue.\nYou are the one.\tVous êtes l'élu.\nYou are the one.\tVous êtes l'élue.\nYou can come in.\tTu peux entrer.\nYou can go back.\tTu peux rentrer.\nYou can go back.\tTu peux y retourner.\nYou can go home.\tVous pouvez rentrer chez vous.\nYou can go home.\tTu peux rentrer chez toi.\nYou can make it.\tTu peux y arriver.\nYou can make it.\tTu peux le faire.\nYou can make it.\tVous pouvez y arriver.\nYou can take it.\tTu peux le prendre.\nYou can take it.\tVous pouvez le prendre.\nYou can take it.\tVous pouvez la prendre.\nYou can take it.\tTu peux la prendre.\nYou can't leave.\tVous ne pouvez pas partir.\nYou cannot lose.\tTu ne peux pas perdre.\nYou deserved it.\tTu l'as mérité.\nYou have my mug.\tTu as ma tasse.\nYou have my mug.\tVous avez ma tasse.\nYou know enough.\tTu en sais assez.\nYou know enough.\tVous en savez assez.\nYou know people.\tVous connaissez les gens.\nYou let me down.\tVous m'avez déçu.\nYou lied to Tom.\tVous avez menti à Tom.\nYou lied to Tom.\tTu as menti à Tom.\nYou look strong.\tTu as l'air fort.\nYou look stupid.\tT'as l'air stupide.\nYou look stupid.\tTu as l'air stupide.\nYou look stupid.\tTu as l'air bête.\nYou lucky devil!\tSacré veinard !\nYou made my day.\tVous m'avez réjoui.\nYou made my day.\tTu m'as réjoui.\nYou made my day.\tVous m'avez réjouie.\nYou made my day.\tTu m'as réjouie.\nYou mustn't lie.\tTu ne dois pas mentir.\nYou nearly died.\tTu es presque mort.\nYou nearly died.\tVous êtes presque mort.\nYou nearly died.\tVous êtes presque morte.\nYou nearly died.\tVous êtes presque morts.\nYou nearly died.\tVous êtes presque mortes.\nYou nearly died.\tTu es presque morte.\nYou should stop.\tVous devriez y mettre un terme.\nYou should stop.\tTu devrais y mettre un terme.\nYou sound angry.\tTu as l'air en colère.\nYou sound angry.\tVous avez l'air en colère.\nYou sound tired.\tTu parais fatigué.\nYou sound tired.\tTu parais fatiguée.\nYou sound tired.\tVous paraissez fatigué.\nYou sound tired.\tVous paraissez fatiguée.\nYou sound tired.\tVous paraissez fatigués.\nYou sound tired.\tVous paraissez fatiguées.\nYou startled me!\tTu m'as abasourdi !\nYou will listen.\tTu vas écouter.\nYou'd better go.\tIl vaut mieux que vous y alliez.\nYou'd better go.\tIl vaut mieux que tu y ailles.\nYou're adorable.\tTu es adorable.\nYou're adorable.\tVous êtes adorable.\nYou're adorable.\tVous êtes adorables.\nYou're all done.\tVous êtes tous finis.\nYou're all done.\tVous êtes toutes finies.\nYou're all mine.\tVous êtes tous à moi.\nYou're all mine.\tVous êtes toutes à moi.\nYou're an idiot.\tTu es un idiot.\nYou're annoying.\tT'es chiant.\nYou're annoying.\tTu m'ennuies.\nYou're annoying.\tTu es chiant.\nYou're annoying.\tTu es chiante.\nYou're arrogant.\tTu es arrogant.\nYou're arrogant.\tTu es arrogante.\nYou're arrogant.\tVous êtes arrogant.\nYou're arrogant.\tVous êtes arrogante.\nYou're arrogant.\tVous êtes arrogants.\nYou're arrogant.\tVous êtes arrogantes.\nYou're blushing.\tTu rougis !\nYou're careless.\tTu es négligent.\nYou're careless.\tTu es négligente.\nYou're charming.\tTu es charmant.\nYou're charming.\tTu es charmante.\nYou're charming.\tVous êtes charmant.\nYou're charming.\tVous êtes charmante.\nYou're charming.\tVous êtes charmantes.\nYou're charming.\tVous êtes charmants.\nYou're cheating.\tTu triches.\nYou're cheating.\tVous trichez.\nYou're confused.\tTu es confus.\nYou're confused.\tTu t'embrouilles.\nYou're creative.\tTu es créatif.\nYou're creative.\tTu es créative.\nYou're creative.\tVous êtes créatif.\nYou're creative.\tVous êtes créative.\nYou're creative.\tVous êtes créatifs.\nYou're creative.\tVous êtes créatives.\nYou're demented.\tTu es fou.\nYou're demented.\tVous êtes fous.\nYou're demented.\tVous êtes dément.\nYou're disloyal.\tVous êtes déloyal.\nYou're disloyal.\tTu es déloyal.\nYou're disloyal.\tTu es déloyale.\nYou're disloyal.\tVous êtes déloyales.\nYou're disloyal.\tVous êtes déloyale.\nYou're disloyal.\tVous êtes déloyaux.\nYou're faithful.\tTu es fidèle.\nYou're faithful.\tVous êtes fidèle.\nYou're faithful.\tVous êtes fidèles.\nYou're fearless.\tTu es intrépide.\nYou're fearless.\tVous êtes intrépide.\nYou're fearless.\tVous êtes intrépides.\nYou're forgiven.\tTu es excusé.\nYou're forgiven.\tTu es pardonné.\nYou're forgiven.\tTu es pardonnée.\nYou're forgiven.\tVous êtes pardonné.\nYou're forgiven.\tVous êtes pardonnée.\nYou're forgiven.\tVous êtes pardonnés.\nYou're forgiven.\tVous êtes pardonnées.\nYou're grounded.\tTu es terre-à-terre.\nYou're grounded.\tVous êtes terre-à-terre.\nYou're horrible.\tVous êtes hideuses.\nYou're horrible.\tVous êtes hideux.\nYou're mistaken.\tVous vous trompez.\nYou're mistaken.\tTu te trompes.\nYou're my enemy.\tTu es mon ennemi.\nYou're my enemy.\tVous êtes mon ennemi.\nYou're no saint.\tTu n'es pas un saint.\nYou're no saint.\tTu n'es pas une sainte.\nYou're no saint.\tVous n'êtes pas un saint.\nYou're no saint.\tVous n'êtes pas une sainte.\nYou're not dead.\tTu n'es pas mort.\nYou're not dead.\tTu n'es pas morte.\nYou're not dead.\tVous n'êtes pas mort.\nYou're not dead.\tVous n'êtes pas morte.\nYou're not dead.\tVous n'êtes pas morts.\nYou're not dead.\tVous n'êtes pas mortes.\nYou're not late.\tTu n'es pas en retard.\nYou're not late.\tVous n'êtes pas en retard.\nYou're not sick.\tTu n'es pas malade.\nYou're not sick.\tVous n'êtes pas malade.\nYou're not sick.\tVous n'êtes pas malades.\nYou're outgoing.\tTu es sociable.\nYou're pathetic.\tTu es pathétique.\nYou're pathetic.\tVous êtes pathétique.\nYou're pathetic.\tVous êtes pathétiques.\nYou're powerful.\tTu es puissant.\nYou're powerful.\tVous êtes puissant.\nYou're powerful.\tVous êtes puissants.\nYou're powerful.\tVous êtes puissante.\nYou're powerful.\tVous êtes puissantes.\nYou're punctual.\tTu es ponctuel.\nYou're punctual.\tTu es ponctuelle.\nYou're reliable.\tTu es fiable.\nYou're reliable.\tVous êtes fiable.\nYou're reliable.\tVous êtes fiables.\nYou're restless.\tTu es agité.\nYou're restless.\tTu es agitée.\nYou're ruthless.\tTu es sans pitié.\nYou're ruthless.\tVous êtes sans pitié.\nYou're safe now.\tTu es désormais en sécurité.\nYou're safe now.\tVous êtes désormais en sécurité.\nYou're so bossy.\tVous êtes tellement autoritaire !\nYou're so bossy.\tTu es tellement autoritaire !\nYou're so picky.\tTu es tellement difficile !\nYou're so picky.\tVous êtes tellement difficile !\nYou're so picky.\tVous êtes tellement difficiles !\nYou're so sweet.\tTu es tellement gentil !\nYou're so sweet.\tTu es tellement gentille !\nYou're so sweet.\tTu es si gentil !\nYou're so sweet.\tTu es si gentille !\nYou're so sweet.\tVous êtes tellement gentil !\nYou're so sweet.\tVous êtes si gentil !\nYou're so sweet.\tVous êtes tellement gentille !\nYou're so sweet.\tVous êtes si gentille !\nYou're so sweet.\tVous êtes tellement gentils !\nYou're so sweet.\tVous êtes si gentils !\nYou're so sweet.\tVous êtes tellement gentilles !\nYou're so sweet.\tVous êtes si gentilles !\nYou're so wrong.\tTu as tellement tort.\nYou're so wrong.\tVous avez tellement tort.\nYou're stalling.\tTu temporises.\nYou're stalling.\tVous temporisez.\nYou're stubborn.\tTu es entêté.\nYou're stubborn.\tTu es entêtée.\nYou're talented.\tVous êtes talentueux.\nYou're talented.\tVous êtes talentueuse.\nYou're talented.\tVous êtes talentueuses.\nYou're talented.\tTu es talentueux.\nYou're talented.\tTu es talentueuse.\nYou're the best.\tTu es le meilleur.\nYou're the best.\tTu es la meilleure.\nYou're the best.\tVous êtes le meilleur.\nYou're the best.\tVous êtes la meilleure.\nYou're the boss.\tVous êtes le chef.\nYou're too loud.\tVous êtes trop bruyant.\nYou're too loud.\tVous êtes trop bruyante.\nYou're too loud.\tVous êtes trop bruyants.\nYou're too loud.\tVous êtes trop bruyantes.\nYou're too loud.\tTu es trop bruyant.\nYou're too loud.\tTu es trop bruyante.\nYou're too slow.\tVous êtes trop lent.\nYou're too slow.\tVous êtes trop lente.\nYou're too slow.\tVous êtes trop lents.\nYou're too slow.\tVous êtes trop lentes.\nYou're too slow.\tTu es trop lent.\nYou're too slow.\tTu es trop lente.\nYou're too weak.\tTu es trop faible.\nYou've been had.\tTu t'es fait avoir.\nYou've been had.\tVous vous êtes fait avoir.\nYou've found it.\tTu l'as trouvé.\nYou've found it.\tTu l'as trouvée.\nYou've found it.\tVous l'avez trouvé.\nYou've found it.\tVous l'avez trouvée.\nYour cat is fat.\tTon chat est gros.\nYour cat is fat.\tTon chat est gras.\nYour cat is fat.\tTa chatte est grosse.\nYour cat is fat.\tTa chatte est grasse.\nYour cat is fat.\tVotre chatte est grosse.\nYour cat is fat.\tVotre chatte est grasse.\nYour time is up.\tVotre temps est écoulé.\nYour time is up.\tTon temps est écoulé.\nYours is better.\tLe vôtre est meilleur.\nYours is better.\tLa vôtre est meilleure.\nYours is better.\tLe tien est meilleur.\nYours is better.\tLa tienne est meilleure.\n5 is less than 8.\tCinq est plus petit que huit.\n\"Look,\" she said.\tElle a dit : « Regarde. »\nA bird has wings.\tUn oiseau a des ailes.\nA cab is waiting.\tUn taxi est en train d'attendre.\nA cop was killed.\tUn policier a été tué.\nA cop was killed.\tUn flic a été tué.\nA deal is a deal.\tUn accord est un accord.\nA dog is barking.\tUn chien aboie.\nA dog is barking.\tUn chien est en train d'aboyer.\nA fuse has blown.\tUn plomb a sauté.\nA fuse has blown.\tUn fusible a sauté.\nA fuse has blown.\tUn fusible a fondu.\nA girl phoned me.\tUne fille m'a téléphoné.\nAccidents happen.\tLes accidents surviennent.\nAccidents happen.\tDes accidents surviennent.\nAir is invisible.\tL'air est invisible.\nAll are welcomed.\tTous sont bienvenus.\nAll are welcomed.\tToutes sont bienvenues.\nAll hope is gone.\tTout espoir a disparu.\nAll men must die.\tTous les hommes doivent mourir.\nAll of them died.\tTous moururent.\nAll of them died.\tToutes moururent.\nAll of them died.\tTous sont morts.\nAll of them died.\tToutes sont mortes.\nAnswer the phone.\tRépondez au téléphone !\nAny book will do.\tN'importe quel livre fera l'affaire.\nAnybody knows it.\tTout le monde le sait.\nAnyone can do it.\tTout le monde peut le faire.\nAre they friends?\tSont-ils amis ?\nAre they friends?\tSont-ils amis ?\nAre they friends?\tSont-elles amies ?\nAre they in love?\tSont-ils amoureux ?\nAre they in love?\tSont-elles amoureuses ?\nAre those for me?\tCeux-ci sont-ils pour moi ?\nAre those for me?\tCeux-là sont-ils pour moi ?\nAre those for me?\tCelles-ci sont-elles pour moi ?\nAre those for me?\tCelles-là sont-elles pour moi ?\nAre we all happy?\tSommes-nous tous satisfaits ?\nAre we done here?\tEn avons-nous terminé, ici ?\nAre we going far?\tAllons-nous loin ?\nAre we safe here?\tSommes-nous ici en sécurité ?\nAre you American?\tÊtes-vous Étasunien ?\nAre you American?\tEs-tu Étasunien ?\nAre you American?\tEs-tu Étasunienne ?\nAre you American?\tÊtes-vous Étasunienne ?\nAre you American?\tÊtes-vous Étasuniens ?\nAre you American?\tÊtes-vous Étasuniennes ?\nAre you Japanese?\tÊtes-vous japonais ?\nAre you Japanese?\tÊtes-vous japonais ?\nAre you Japanese?\tEs-tu japonais ?\nAre you a doctor?\tEs-tu médecin ?\nAre you a lawyer?\tÊtes-vous avocat ?\nAre you a maniac?\tEs-tu maniaque ?\nAre you a maniac?\tÊtes-vous maniaque ?\nAre you a singer?\tEs-tu chanteur ?\nAre you a typist?\tÊtes-vous dactylo ?\nAre you a typist?\tEs-tu dactylo ?\nAre you a wizard?\tEs-tu un sorcier ?\nAre you a wizard?\tEs-tu une sorcière ?\nAre you all nuts?\tÊtes-vous tous dingues ?\nAre you all nuts?\tÊtes-vous toutes dingues ?\nAre you blushing?\tRougis-tu ?\nAre you blushing?\tRougissez-vous ?\nAre you busy now?\tActuellement êtes-vous occupés ?\nAre you busy now?\tEs-tu occupé actuellement ?\nAre you drinking?\tEs-tu en train de boire ?\nAre you drinking?\tÊtes-vous en train de boire ?\nAre you finished?\tAs-tu fini ?\nAre you finished?\tAvez-vous fini ?\nAre you finished?\tAs-tu terminé ?\nAre you finished?\tEn as-tu fini ?\nAre you finished?\tEn as-tu terminé ?\nAre you finished?\tAvez-vous terminé ?\nAre you finished?\tEn avez-vous fini ?\nAre you finished?\tEn avez-vous terminé ?\nAre you for real?\tExistes-tu vraiment ?\nAre you for real?\tExistez-vous vraiment ?\nAre you free now?\tAs-tu du temps, maintenant ?\nAre you homeless?\tÊtes-vous sans abri ?\nAre you homeless?\tEs-tu un sans-abri ?\nAre you in Paris?\tT'es à Paname ?\nAre you in Paris?\tEs-tu à Paris ?\nAre you new here?\tÊtes-vous nouveau ici ?\nAre you new here?\tTu es nouveau ici ?\nAre you on crack?\tÊtes-vous drogué au crack ?\nAre you on crack?\tÊtes-vous droguée au crack ?\nAre you on crack?\tEs-tu drogué au crack ?\nAre you on crack?\tEs-tu droguée au crack ?\nAre you pregnant?\tEs-tu enceinte ?\nAre you still up?\tÊtes-vous toujours debout ?\nAre you still up?\tÊtes-vous encore debout ?\nAre you still up?\tEs-tu toujours debout ?\nAre you still up?\tEs-tu encore debout ?\nAre you students?\tÊtes-vous étudiants ?\nAre you students?\tÊtes-vous étudiantes ?\nAre you studying?\tÉtudiez-vous ?\nAre you studying?\tÉtudies-tu ?\nAren't you happy?\tN'êtes-vous pas heureux ?\nAren't you tired?\tN'es-tu pas fatigué ?\nAsk her her name.\tDemande-lui son nom.\nAsk her her name.\tDemandez-lui son nom.\nAsk him his name.\tDemande-lui son nom.\nAsk him his name.\tDemandez-lui son nom.\nAt last, he came.\tIl est enfin venu.\nAttention please!\tAttention, s'il vous plaît!\nBe more flexible.\tSois plus flexible.\nBe more flexible.\tSois davantage flexible.\nBe more flexible.\tSoyez plus flexible.\nBe more flexible.\tSoyez davantage flexible.\nBe more flexible.\tSoyez davantage flexibles.\nBe more flexible.\tSoyez plus flexibles.\nBe there tonight.\tSois là ce soir.\nBe there tonight.\tSois là cette nuit.\nBe there tonight.\tSois ici cette nuit.\nBe there tonight.\tSois ici ce soir.\nBirds have wings.\tLes oiseaux ont des ailes.\nBite your tongue.\tMords-toi la langue !\nBite your tongue.\tMordez-vous la langue !\nBite your tongue.\tTiens ta langue !\nBring me a chair.\tApporte-moi une chaise.\nBring me a chair.\tApportez-moi une chaise.\nBring me a drink.\tApporte-moi une boisson !\nBring me a drink.\tApportez-moi une boisson !\nBring me my cane.\tApportez-moi ma canne.\nBring me my cane.\tApporte-moi ma canne.\nBring them to me.\tApporte-les-moi.\nBrush your teeth.\tBrossez vos dents.\nBrush your teeth.\tBrosse tes dents.\nBusiness is slow.\tLes affaires n'avancent pas vite.\nCall a policeman.\tAppelle un agent !\nCall me tomorrow.\tAppelle-moi demain.\nCan I be excused?\tPuis-je être excusé ?\nCan I be excused?\tPuis-je être excusée ?\nCan I go to work?\tPuis-je me rendre au travail ?\nCan I sleep here?\tPuis-je dormir ici ?\nCan anyone drive?\tQuiconque sait-il conduire ?\nCan rabbits swim?\tLes lapins savent-ils nager ?\nCan we afford it?\tEn avons-nous les moyens ?\nCan we drop this?\tPouvons-nous laisser tomber ceci ?\nCan we go inside?\tPouvons-nous aller à l'intérieur ?\nCan we speak now?\tPouvons-nous parler, maintenant ?\nCan you call him?\tPeux-tu l'appeler ?\nCan you call him?\tPouvez-vous l'appeler ?\nCan you continue?\tPeux-tu continuer ?\nCan you find out?\tPeux-tu te renseigner ?\nCan you find out?\tPouvez-vous vous renseigner ?\nCan you meet him?\tPeux-tu le rencontrer ?\nCan you prove it?\tPouvez-vous le prouver ?\nCan you prove it?\tPeux-tu le prouver ?\nCan you spell it?\tPouvez-vous l'épeler ?\nCan you spell it?\tPeux-tu l'épeler ?\nCheck your order.\tVérifiez votre commande.\nChoose carefully.\tChoisis soigneusement.\nChoose carefully.\tChoisissez soigneusement.\nChoose something.\tChoisis quelque chose.\nChoose something.\tChoisissez quelque chose.\nClimb to the top.\tMonte au sommet.\nClose the window.\tFerme la fenêtre.\nClose the window.\tFerme la fenêtre !\nClose the window.\tFermez la fenêtre !\nClose the window.\tFermez la fenêtre.\nCome and help us.\tVenez nous aider.\nCome and help us.\tViens nous aider.\nCome immediately.\tViens immédiatement !\nCome immediately.\tVenez immédiatement !\nCome on, grow up.\tEnfin, arrête d'agir comme un gosse !\nCome on, grow up.\tEnfin, arrêtez d'agir comme des enfants !\nCome on, tell me.\tAllez, dis-moi !\nCome on, wake up.\tAllez, debout !\nCome run with me.\tViens courir avec moi.\nCome run with me.\tVenez courir avec moi.\nCome sit with us.\tViens t'asseoir avec nous.\nCome sit with us.\tVenez vous asseoir avec nous.\nCome with me now.\tVenez avec moi maintenant.\nCome with me now.\tViens avec moi maintenant.\nConcentrate, Tom.\tConcentre-toi, Tom.\nConcentrate, Tom.\tConcentrez-vous, Tom.\nConsult a doctor.\tConsulte un médecin !\nContinue digging.\tContinue de creuser.\nContinue working.\tContinue à travailler !\nControl yourself!\tMaîtrise-toi !\nControl yourself!\tMaîtrisez-vous !\nCookie is my dog.\tBiscuit est mon chien.\nCould I help you?\tPuis-je t'aider ?\nCows supply milk.\tLes vaches produisent du lait.\nCows supply milk.\tLes vaches donnent du lait.\nDial 110 at once.\tTéléphonez au 110 immédiatement.\nDid I write that?\tAi-je écrit cela ?\nDid I write that?\tL'ai-je écrit ?\nDid Tom go alone?\tTom y est-il allé seul ?\nDid Tom say that?\tTom a dit cela ?\nDid anyone laugh?\tQuiconque a-t-il ri ?\nDid he touch you?\tT'a-t-il touché ?\nDid he touch you?\tVous a-t-il touché ?\nDid he touch you?\tVous a-t-il touchée ?\nDid he touch you?\tT'a-t-il touchée ?\nDid she say that?\tA-t-elle dit ça ?\nDid they say how?\tOnt-ils dit comment ?\nDid they say how?\tOnt-elles dit comment ?\nDid they say why?\tOnt-ils dit pourquoi ?\nDid they say why?\tOnt-elles dit pourquoi ?\nDid you have fun?\tT'es-tu amusé ?\nDid you have fun?\tT'es-tu amusée ?\nDid you have fun?\tVous êtes-vous amusé ?\nDid you have fun?\tVous êtes-vous amusée ?\nDid you have fun?\tVous êtes-vous amusées ?\nDid you have fun?\tVous êtes-vous amusés ?\nDid you love Tom?\tAimais-tu Tom ?\nDid you love Tom?\tAimiez-vous Tom ?\nDid you meet her?\tTu l'as rencontrée ?\nDid you meet her?\tL'as-tu rencontrée ?\nDid you phone me?\tEst-ce vous qui m'avez appelée ?\nDid you see that?\tAs-tu vu ça ?\nDid you see that?\tAvez-vous vu ça ?\nDid you stop Tom?\tAs-tu arrêté Tom ?\nDid you stop Tom?\tAvez-vous arrêté Tom ?\nDid you vote yet?\tAvez-vous déjà voté ?\nDo I smell bacon?\tEst-ce qu'il n'y aurait pas des flics, dans le coin ?\nDo as I tell you.\tFais comme je te dis.\nDo as I told you.\tFais comme je t'ai dit.\nDo as you please.\tFaites comme il vous plaira.\nDo it delicately.\tFais-le délicatement.\nDo it delicately.\tFaites-le délicatement.\nDo it right away.\tFaites-le immédiatement.\nDo not come here.\tNe viens pas ici !\nDo not come here.\tNe venez pas ici !\nDo not interfere!\tNe t'en mêle pas !\nDo not interfere!\tNe vous en mêlez pas !\nDo not interfere!\tNe t'immisce pas là-dedans !\nDo not interfere!\tNe vous immiscez pas là-dedans !\nDo what you like.\tFais ce que tu aimes.\nDo what you want.\tFais ce que tu veux.\nDo what you want.\tFaites ce que vous voulez.\nDo you eat a lot?\tMangez-vous beaucoup ?\nDo you eat a lot?\tManges-tu beaucoup ?\nDo you even care?\tEn as-tu même quelque chose à faire ?\nDo you feel sick?\tVous ne vous sentez pas bien ?\nDo you feel sick?\tTe sens-tu malade ?\nDo you have beer?\tAvez-vous de la bière ?\nDo you have them?\tLes avez-vous ?\nDo you have them?\tTu les as ?\nDo you have time?\tEst-ce que tu as le temps ?\nDo you have time?\tEst-ce que vous avez le temps ?\nDo you hear that?\tEntendez-vous cela ?\nDo you know them?\tLes connaissez-vous ?\nDo you like cats?\tAimes-tu les chats ?\nDo you like dogs?\tEst-ce que tu aimes les chiens ?\nDo you like dogs?\tAimes-tu les chiens ?\nDo you like dogs?\tAimez-vous les chiens ?\nDo you like fish?\tAimes-tu le poisson ?\nDo you like fish?\tVous aimez le poisson?\nDo you like mine?\tAimes-tu le mien ?\nDo you like mine?\tAimez-vous le mien ?\nDo you like mine?\tAimes-tu la mienne ?\nDo you like mine?\tAimez-vous la mienne ?\nDo you like mine?\tAimes-tu les miennes ?\nDo you like mine?\tAimez-vous les miennes ?\nDo you like snow?\tAimez-vous la neige ?\nDo you live here?\tVivez-vous ici ?\nDo you live here?\tVous habitez ici ?\nDo you live here?\tRésides-tu ici ?\nDo you live here?\tTu vis ici ?\nDo you mind much?\tT'en soucies-tu beaucoup ?\nDo you mind much?\tVous en souciez-vous beaucoup ?\nDo you need help?\tAs-tu besoin d'aide ?\nDo you own a gun?\tPossèdes-tu une arme à feu ?\nDo you own a gun?\tPossédez-vous une arme à feu ?\nDo you trust her?\tLui faites-vous confiance ?\nDo you trust her?\tLui fais-tu confiance ?\nDo you want kids?\tVeux-tu des enfants ?\nDo you want kids?\tVoulez-vous des enfants ?\nDo you want this?\tLe veux-tu ?\nDo you want this?\tLe voulez-vous ?\nDo you want wine?\tVoulez-vous du vin ?\nDo you want wine?\tVeux-tu du vin ?\nDo you work here?\tTu travailles ici ?\nDo you work here?\tEst-ce que vous travaillez ici ?\nDo you work here?\tTravaillez-vous ici ?\nDo you work here?\tTravailles-tu ici ?\nDo your homework.\tFais tes devoirs.\nDoes anyone care?\tQuiconque s'en soucie-t-il ?\nDoes anyone care?\tQui que ce soit s'en soucie-t-il ?\nDogs are barking.\tDes chiens aboient.\nDogs are barking.\tLes chiens aboient.\nDon't ask me why.\tNe me demandez pas pourquoi.\nDon't be a moron.\tNe sois pas un connard !\nDon't be alarmed.\tNe soyez pas alarmé.\nDon't be alarmed.\tNe soyez pas alarmée.\nDon't be alarmed.\tNe sois pas alarmé.\nDon't be alarmed.\tNe sois pas alarmée.\nDon't be alarmed.\tNe soyez pas alarmés.\nDon't be alarmed.\tNe soyez pas alarmées.\nDon't be foolish.\tNe sois pas idiot.\nDon't be so lazy.\tNe sois pas si paresseux !\nDon't be so lazy.\tNe soyez pas si paresseux !\nDon't be so lazy.\tNe soyez pas si paresseuse !\nDon't be so lazy.\tNe sois pas si paresseuse !\nDon't be so lazy.\tNe soyez pas si paresseuses !\nDon't come again.\tNe reviens pas.\nDon't deceive me.\tNe me trompe pas.\nDon't deceive me.\tNe me trompez pas.\nDon't disturb me.\tNe me dérangez pas !\nDon't drink that.\tNe bois pas ça !\nDon't drink that.\tNe buvez pas ça !\nDon't leave town.\tNe quittez pas la ville !\nDon't leave town.\tNe quitte pas la ville.\nDon't look at me!\tNe me regarde pas !\nDon't look at me!\tNe me regardez pas !\nDon't look at me.\tNe me regarde pas !\nDon't look at me.\tNe me regardez pas !\nDon't look at us.\tNe nous regarde pas.\nDon't look at us.\tNe nous regardez pas.\nDon't lose heart.\tNe perds pas courage.\nDon't lose heart.\tNe perdez pas courage.\nDon't make me go.\tNe m'oblige pas à y aller.\nDon't make me go.\tNe m'obligez pas à y aller.\nDon't make noise.\tNe fais pas de bruit.\nDon't mention it.\tDe rien !\nDon't pick it up.\tNe le ramasse pas.\nDon't pick it up.\tNe le ramassez pas.\nDon't rip me off!\tNe m'arnaque pas !\nDon't say a word.\tPas un mot !\nDon't talk to me!\tMe parle pas !\nDon't talk to me!\tNe me parle pas !\nDon't talk to me!\tNe me parlez pas !\nDon't talk to me!\tNe me parle pas !\nDon't talk to me.\tNe me parle pas !\nDon't talk to me.\tNe me parlez pas !\nDon't touch this!\tNe touche pas à ceci !\nDon't touch this!\tNe touchez pas à ceci !\nDon't touch this!\tNe touche pas à ça !\nDon't touch this!\tNe touchez pas à ça !\nDon't touch this!\tPas touche !\nDon't yell at me.\tNe me crie pas dessus.\nDon't you get it?\tNe le comprends-tu pas ?\nDon't you get it?\tNe captes-tu pas ?\nDon't you get it?\tNe captez-vous pas ?\nDon't you get it?\tNe le comprenez-vous pas ?\nDon't you get it?\tNe saisis-tu pas ?\nDon't you get it?\tNe saisissez-vous pas ?\nDrink more water.\tBuvez davantage d'eau !\nDrink more water.\tBois davantage d'eau !\nDrink some water.\tBois de l'eau !\nDrink some water.\tBuvez de l'eau !\nDrink this juice.\tBois ce jus !\nDrink this juice.\tBuvez ce jus !\nDrinks are on me.\tLes boissons sont pour moi.\nDrinks are on me.\tLes verres sont sur mon compte.\nDrinks are on me.\tLes verres sont pour moi.\nEat meals slowly.\tMange tes repas lentement.\nEat your spinach.\tMange tes épinards !\nEat your spinach.\tMangez vos épinards !\nEat your veggies.\tMange tes légumes !\nEat your veggies.\tMangez vos légumes !\nEnjoy yourselves.\tAmusez-vous bien !\nEverybody groans.\tTout le monde râle.\nEverybody saw it.\tTout le monde l'a vu.\nEverybody saw it.\tTout le monde le vit.\nEverybody's dead.\tTout le monde est mort.\nEverybody's dead.\tTout le monde a cané.\nEverybody's dead.\tTout le monde a crevé.\nEverybody's here.\tTout le monde est là.\nEverybody's home.\tTout le monde est chez lui.\nEverybody's safe.\tTout le monde est en sécurité.\nEveryone changes.\tTout le monde change.\nEveryone cheered.\tTout le monde a applaudi.\nEveryone cheered.\tTout le monde applaudit.\nEveryone had fun.\tTout le monde s'est amusé.\nEveryone is here.\tTout le monde est là.\nEveryone laughed.\tTout le monde rit.\nEveryone laughed.\tTout le monde a ri.\nEveryone noticed.\tTout le monde le remarqua.\nEveryone noticed.\tTout le monde l'a remarqué.\nEveryone's lying.\tTout le monde ment.\nEveryone's there.\tTout le monde est là.\nEvil always wins.\tLe mal triomphe toujours.\nExplain it to me.\tExplique-le-moi.\nExplain it to me.\tExpliquez-le-moi.\nFamily is family.\tLa famille, c'est la famille.\nFollow my advice.\tSuis mon conseil.\nFollow my advice.\tSuivez mon conseil.\nFollow the rules.\tSuivez les règles !\nFollow the rules.\tSuis les règles !\nFood costs money.\tLa nourriture coûte de l'argent.\nFor what purpose?\tDans quel but ?\nForget about her.\tOublie-la.\nForget about her.\tOubliez-la.\nGardening is fun.\tJardiner est amusant.\nGet away from me.\tLâche-moi !\nGet away from me.\tÉloigne-toi de moi !\nGet away from me.\tÉloignez-vous de moi !\nGet away from me.\tLâchez-moi !\nGet back to work.\tRetournez au travail.\nGet into the car.\tRentre dans la voiture.\nGet on the horse.\tMonte le cheval.\nGet on the horse.\tMontez le cheval.\nGet on your bike.\tMonte sur ton vélo.\nGet on your feet.\tLève-toi !\nGet on your feet.\tLevez-vous !\nGet on your feet.\tMets-toi debout !\nGet on your feet.\tMettez-vous debout !\nGet out of there.\tSortez de là !\nGet out of there.\tSors de là !\nGet to the point!\tViens-en au fait !\nGet to the point.\tVenez-en au fait !\nGet to the point.\tViens-en au fait !\nGive him a break!\tLâche-le !\nGive him a break!\tLâchez-le !\nGive me a chance.\tAccorde-moi une chance !\nGive me a chance.\tAccordez-moi une chance !\nGive me a hammer.\tDonne-moi un marteau.\nGive me a hammer.\tDonnez-moi un marteau.\nGive me a minute.\tDonne-moi une minute.\nGive me a minute.\tDonne-moi une minute !\nGive me a minute.\tDonnez-moi une minute.\nGive me a second.\tAccorde-moi une seconde !\nGive me a second.\tAccordez-moi une seconde !\nGive me a second.\tDonne-moi une seconde !\nGive me a second.\tDonnez-moi une seconde !\nGive me my drink.\tDonne-moi mon verre !\nGive me my drink.\tDonnez-moi mon verre !\nGive me the ball.\tDonne-moi la balle !\nGive me the ball.\tDonnez-moi la balle !\nGive me the book.\tDonne-moi ce livre.\nGive me your gun.\tDonne-moi ton arme !\nGive me your gun.\tDonnez-moi votre arme !\nGive them to her.\tDonne-les-lui.\nGive them to him.\tDonne-les-lui.\nGive us a minute.\tAccorde-nous une minute !\nGo back to sleep.\tRetourne dormir.\nGo have some fun.\tVa t'amuser.\nGo have some fun.\tAllez vous amuser !\nGo on without me.\tContinuez sans moi.\nGo on without me.\tContinue sans moi.\nGo play with Tom.\tVa jouer avec Tom.\nGo to the barber.\tVa chez le Barbier.\nGo up the stairs.\tPrenez les escaliers.\nGo when you want.\tPars quand tu veux.\nGo with the flow.\tSurfe sur la vague !\nGo with the flow.\tSurfez sur la vague !\nGood luck to you!\tBonne chance !\nGood luck to you!\tJe te souhaite bonne chance.\nGoodnight ladies.\tBonsoir Mesdames !\nGrow up a little.\tGrandis un peu.\nGrow up a little.\tGrandissez un peu.\nHang on a minute.\tAttends une minute.\nHang on a second.\tPatientez une seconde.\nHave a good time.\tAmuse-toi bien !\nHave a good time.\tPasse un bon séjour.\nHave a good time.\tAmusez-vous bien !\nHave a good time.\tPassez un bon séjour.\nHave a good week!\tPasse une bonne semaine !\nHave a nice time.\tAmuse-toi bien !\nHave a nice time.\tAmusez-vous bien !\nHave a nice time.\tPasse du bon temps !\nHave a nice trip!\tFaites un bon voyage !\nHave a nice trip!\tFaites bon voyage.\nHave a nice trip!\tBon voyage !\nHave a nice trip.\tFaites un bon voyage !\nHave a nice trip.\tFaites bon voyage.\nHave a nice trip.\tFais bon voyage !\nHave a safe trip.\tFaites un bon voyage !\nHave a safe trip.\tBon voyage !\nHave a safe trip.\tFais bon voyage !\nHave a safe trip.\tFaites bon voyage !\nHave a safe trip.\tFais un bon voyage !\nHave some coffee.\tPrends du café !\nHave some coffee.\tPrenez du café !\nHave you decided?\tT'es-tu décidé ?\nHave you decided?\tT'es-tu décidée ?\nHave you decided?\tVous êtes-vous décidé ?\nHave you decided?\tVous êtes-vous décidée ?\nHave you decided?\tVous êtes-vous décidés ?\nHave you decided?\tVous êtes-vous décidées ?\nHave you met her?\tTu l'as rencontrée ?\nHave you met her?\tL'as-tu rencontrée ?\nHave you ordered?\tAvez-vous commandé ?\nHave you ordered?\tAs-tu commandé ?\nHe ate all of it.\tIl a tout mangé.\nHe became a hobo.\tIl est devenu vagabond.\nHe became famous.\tIl est devenu célèbre.\nHe began running.\tIl s'est mis à courir.\nHe blew the deal.\tIl a sabordé le contrat.\nHe broke the law.\tIl a enfreint la loi.\nHe can swim fast.\tIl peut nager vite.\nHe can swim well.\tIl nage bien.\nHe can't do that.\tIl n'arrive pas à faire ça.\nHe can't do that.\tIl n'y arrive pas.\nHe can't do that.\tIl n'arrive pas à le faire.\nHe can't read it.\tIl ne peut le lire.\nHe can't read it.\tIl ne peut la lire.\nHe caught a cold.\tIl a attrapé froid.\nHe cheated on me.\tIl m'a trompé.\nHe cheated on me.\tIl me trompa.\nHe cheated on me.\tIl m'a trompée.\nHe cleaned it up.\tIl le nettoya.\nHe cleaned it up.\tIl la nettoya.\nHe cleaned it up.\tIl l'a nettoyé.\nHe cleaned it up.\tIl l'a nettoyée.\nHe cried for joy.\tIl a pleuré de joie.\nHe died recently.\tIl est récemment décédé.\nHe died suddenly.\tIl mourut soudainement.\nHe doesn't drink.\tIl ne boit pas.\nHe doesn't sleep.\tIl ne dort pas.\nHe eats too much.\tIl mange trop.\nHe fed the horse.\tIl a nourri le cheval.\nHe fell backward.\tIl tomba en arrière.\nHe fell backward.\tIl tomba à la renverse.\nHe fixed the net.\tIl répara le filet.\nHe flew to Paris.\tIl s'est envolé pour Paris.\nHe found my bike.\tIl a trouvé mon vélo.\nHe gave it to me.\tIl me le donna.\nHe gave it to me.\tIl me l'a donné.\nHe gave me a hug.\tIl m'a enlacée.\nHe gets up early.\tIl se lève tôt.\nHe got a new job.\tIl a décroché un nouveau boulot.\nHe had gray hair.\tIl avait des cheveux gris.\nHe had long hair.\tIl avait les cheveux longs.\nHe has a Picasso.\tIl détient un Picasso.\nHe has a bicycle.\tIl a un vélo.\nHe has been busy.\tIl a été occupé.\nHe has big hands.\tIl a de grosses mains.\nHe has long legs.\tIl a de longues jambes.\nHe has no choice.\tIl n'a pas le choix.\nHe has no hat on.\tIl ne porte pas de chapeau.\nHe has no hat on.\tIl est tête nue.\nHe has no hat on.\tIl est découvert.\nHe has the Joker.\tIl dispose d'un joker.\nHe hates carrots.\tIl déteste les carottes.\nHe hates himself.\tIl se déteste.\nHe hates running.\tIl déteste courir.\nHe hates spiders.\tIl déteste les araignées.\nHe heard a noise.\tIl a entendu un bruit.\nHe heard a noise.\tIl entendit un bruit.\nHe heard a shout.\tIl entendit un cri.\nHe is a kind boy.\tC'est un gentil garçon.\nHe is an acrobat.\tIl est acrobate.\nHe is dead drunk.\tIl est ivre mort.\nHe is distracted.\tIl est dans la lune.\nHe is doing well.\tIl va bien.\nHe is her friend.\tIl est son ami.\nHe is in pajamas.\tIl est en pyjama.\nHe is in trouble.\tIl a des soucis.\nHe is in trouble.\tIl a des problèmes.\nHe is in trouble.\tIl a des ennuis.\nHe is just a kid.\tCe n'est qu'un enfant.\nHe is my brother.\tC'est mon frère.\nHe is my teacher.\tC'est mon professeur.\nHe is never lazy.\tIl n'est jamais paresseux.\nHe is not stupid.\tIl n'est pas idiot.\nHe is photogenic.\tIl est photogénique.\nHe is still here.\tIl est encore ici.\nHe is very angry.\tIl est très en colère.\nHe is very angry.\tIl est fort en colère.\nHe is very brave.\tIl est très courageux.\nHe is very brave.\tIl est fort courageux.\nHe is very young.\tIl est très jeune.\nHe is well-liked.\tIl est bien apprécié.\nHe isn't at home.\tIl n'est pas à la maison.\nHe isn't married.\tIl n'est pas marié.\nHe isn't perfect.\tIl n'est pas parfait.\nHe keeps a diary.\tIl tient un journal intime.\nHe kept his word.\tIl a tenu parole.\nHe kept his word.\tIl tint parole.\nHe knows his job.\tIl connaît son métier.\nHe knows my wife.\tIl connait ma femme.\nHe laughed at me.\tIl rit de moi.\nHe laughed at me.\tIl a ri de moi.\nHe laughed at me.\tIl me rit au nez.\nHe laughed at me.\tIl m'a ri au nez.\nHe left after me.\tIl est parti après moi.\nHe left his wife.\tIl a quitté sa femme.\nHe left his wife.\tIl a quitté son épouse.\nHe likes animals.\tIl aime les animaux.\nHe likes fishing.\tIl aime pêcher.\nHe likes hunting.\tIl aime chasser.\nHe likes oranges.\tIl aime les oranges.\nHe likes to hunt.\tIl aime chasser.\nHe looked around.\tIl a regardé aux alentours.\nHe looks healthy.\tIl a l'air en bonne santé.\nHe loves animals.\tIl adore les animaux.\nHe loves singing.\tIl adore chanter.\nHe made me do it.\tIl me l'a fait faire.\nHe made no reply.\tIl ne fit pas de réponse.\nHe made no reply.\tIl n'a pas répondu.\nHe made no reply.\tIl ne répondit pas.\nHe made no reply.\tIl n'a pas fait de réponse.\nHe meant no harm.\tIl n'avait pas de mauvaise intention.\nHe meant no harm.\tIl ne pensait pas à mal.\nHe moves quickly.\tIl se meut rapidement.\nHe must be tired.\tIl doit être fatigué.\nHe must love you.\tIl doit t'aimer.\nHe must not live.\tIl ne doit pas vivre.\nHe needs a towel.\tIl lui faut une serviette.\nHe painted a dog.\tIl a peint un chien.\nHe painted a dog.\tIl peignit un chien.\nHe played tennis.\tIl a joué au tennis.\nHe ran into debt.\tIl s'est endetté.\nHe ratted us out.\tIl nous a dénoncés.\nHe ratted us out.\tIl nous a dénoncées.\nHe remained dumb.\tIl est resté silencieux.\nHe retired at 65.\tIl a pris sa retraite à 65 ans.\nHe saved my life.\tIl m'a sauvé la vie.\nHe scares easily.\tIl prend facilement peur.\nHe shall have it.\tIl doit l'avoir !\nHe shares a room.\tIl partage une chambre.\nHe shut the door.\tIl ferma la porte.\nHe slept all day.\tIl a dormi toute la journée.\nHe slept an hour.\tIl a dormi une heure.\nHe slept an hour.\tIl dormit une heure.\nHe slept soundly.\tIl dormait profondément.\nHe speaks French.\tIl parle français.\nHe speaks French.\tIl parle le français.\nHe told everyone.\tIl le dit à tout le monde.\nHe told everyone.\tIl l'a dit à tout le monde.\nHe took his book.\tIl a pris son livre.\nHe took his book.\tIl a pris son ouvrage.\nHe took his time.\tIl prit son temps.\nHe took his time.\tIl a pris son temps.\nHe turned around.\tIl tourna autour.\nHe used his head.\tIl a utilisé sa tête.\nHe wants to come.\tIl veut venir.\nHe was acquitted.\tIl fut acquitté.\nHe was acquitted.\tIl a été acquitté.\nHe was all wrong.\tIl avait tout faux.\nHe was born rich.\tIl est né riche.\nHe was deaf, too.\tIl était aussi sourd.\nHe was impressed.\tIl fut impressionné.\nHe was impressed.\tIl a été impressionné.\nHe was in France.\tIl était en France.\nHe was intrigued.\tIl fut intrigué.\nHe was intrigued.\tIl a été intrigué.\nHe was tenacious.\tIl était tenace.\nHe was very poor.\tIl était très pauvre.\nHe was very poor.\tIl était fort pauvre.\nHe wears glasses.\tIl porte des lunettes.\nHe wears pajamas.\tIl porte un pyjama.\nHe went far away.\tIl est parti très loin.\nHe went shopping.\tIl alla faire des courses.\nHe went shopping.\tIl est allé faire des courses.\nHe went shopping.\tIl alla faire des emplettes.\nHe went shopping.\tIl est allé faire des emplettes.\nHe will be ready.\tIl sera prêt.\nHe won't make it.\tIl n'y parviendra pas.\nHe won't make it.\tIl n'y arrivera pas.\nHe works Sundays.\tIl travaille le dimanche.\nHe writes Arabic.\tIl écrit arabe.\nHe'll understand.\tIl comprendra.\nHe's a bartender.\tC'est un tenancier de bar.\nHe's a bartender.\tIl est tenancier de bar.\nHe's a bit drunk.\tIl est un peu ivre.\nHe's a bit naive.\tIl est un peu naïf.\nHe's a bit naive.\tIl est un peu niais.\nHe's a bit tipsy.\tIl est un peu éméché.\nHe's a cat lover.\tIl adore les chats.\nHe's a gentleman.\tC'est un gentleman.\nHe's a good liar.\tIl est bon menteur.\nHe's a grown man.\tC'est un adulte.\nHe's a historian.\tIl est historien.\nHe's a nonsmoker.\tIl est non-fumeur.\nHe's a sophomore.\tC'est un étudiant de deuxième année.\nHe's a sweet guy.\tC'est un gentil garçon.\nHe's about to go.\tIl est sur le point de partir.\nHe's about to go.\tIl est sur le point d'y aller.\nHe's about to go.\tIl est sur le point de s'en aller.\nHe's at her side.\tIl est à son côté.\nHe's at her side.\tIl se trouve à son côté.\nHe's getting old.\tIl se fait vieux.\nHe's got the flu.\tIl a la grippe.\nHe's here for me.\tIl est ici pour moi.\nHe's here for me.\tIl est là pour moi.\nHe's in my class.\tIl est dans la même classe que moi.\nHe's intelligent.\tIl est intelligent.\nHe's just a liar.\tCe n'est qu'un menteur.\nHe's kind of shy.\tIl est assez timide.\nHe's love struck.\tIl a le coup de foudre.\nHe's new in town.\tIl est nouveau en ville.\nHe's not at home.\tIl n'est pas chez lui.\nHe's not at home.\tIl n'est pas à la maison.\nHe's not like us.\tIl n'est pas comme nous.\nHe's not married.\tIl n'est pas marié.\nHe's not my type.\tIl n'est pas mon genre.\nHe's not perfect.\tIl n'est pas parfait.\nHe's not serious.\tIl n'est pas sérieux.\nHe's open-minded.\tIl est ouvert d'esprit.\nHe's open-minded.\tIl a l'esprit ouvert.\nHe's out of town.\tIl n'est pas en ville.\nHe's out of town.\tIl ne se trouve pas en ville.\nHe's ready to go.\tIl est prêt à partir.\nHe's ready to go.\tIl est prêt à y aller.\nHe's still alive.\tIl est encore en vie.\nHe's still alive.\tIl est toujours en vie.\nHe's such a jerk.\tC'est un de ces pauvres types !\nHe's such a jerk.\tC'est un tel pauvre type !\nHe's unconscious.\tIl est inconscient.\nHe's watching me.\tIl m'observe.\nHe's your father.\tIl est ton père.\nHe's your father.\tIl est votre père.\nHe's your friend.\tIl est ton ami.\nHe's your friend.\tIl est votre ami.\nHe's your friend.\tC'est votre ami.\nHeaven knows why.\tLe ciel le sait pourquoi.\nHelp me out here.\tAide-moi à sortir de là !\nHelp me out here.\tAidez-moi à sortir de là !\nHelp me out here.\tAide-moi à sortir d'ici !\nHelp me out here.\tAidez-moi à sortir d'ici !\nHer hair is long.\tSes cheveux sont longs.\nHere is the bill.\tVoici la facture.\nHere is your bag.\tTon sac est ici.\nHere is your bag.\tVoici ton sac.\nHere is your bag.\tVoilà ton sac.\nHere is your bag.\tVoici ton sac !\nHere is your dog.\tTon chien est là.\nHere is your dog.\tVoici ton chien.\nHere is your dog.\tVoici votre chien.\nHere is your key.\tVoici votre clé.\nHere's my chance.\tVoilà ma chance.\nHere's your beer.\tVoici ta bière.\nHere's your milk.\tVoici votre lait.\nHere's your milk.\tVoici ton lait.\nHere, drink this.\tVoici, bois ceci !\nHi! I'm new here.\tSalut ! Je suis nouveau, ici.\nHold on a minute.\tAttends un peu !\nHold on a minute.\tAttendez un peu !\nHold on a minute.\tAttends voir !\nHold on a minute.\tAttendez voir !\nHold on a minute.\tAttends une minute !\nHold on a minute.\tAttendez une minute !\nHow about a beer?\tQue dis-tu d'une chope ?\nHow are the kids?\tComment se portent les enfants ?\nHow cool is this?\tTu trouves pas que c'est bonnard ?\nHow cool is this?\tVous ne trouvez pas que c'est bonnard ?\nHow do you do it?\tComment le fais-tu ?\nHow does it feel?\tÇa fait quoi ?\nHow does it feel?\tQu'est-ce que ça fait ?\nHow does it feel?\tQue ressent-on ?\nHow does it feel?\tQue ressens-tu ?\nHow does it feel?\tQue ressentez-vous ?\nHow does it look?\tDe quoi ça a l'air ?\nHow does it work?\tComment ça marche ?\nHow does it work?\tComment cela fonctionne-t-il ?\nHow embarrassing!\tComme c'est embarrassant !\nHow good are you?\tJusqu'à quel point es-tu bon ?\nHow good are you?\tJusqu'à quel point es-tu bonne ?\nHow good are you?\tJusqu'à quel point êtes-vous bon ?\nHow good are you?\tJusqu'à quel point êtes-vous bonne ?\nHow good are you?\tJusqu'à quel point êtes-vous bons ?\nHow good are you?\tJusqu'à quel point êtes-vous bonnes ?\nHow is your cold?\tComment va votre rhume ?\nHow is your wife?\tComment va ta femme ?\nHow lucky we are!\tQuelle chance nous avons !\nHow much is that?\tCombien cela coûte-t-il ?\nHow strong he is!\tComme il est fort !\nHow stupid he is!\tQuel imbécile il fait !\nHow stupid of me!\tComme c'est bête de ma part !\nHow tall are you?\tCombien mesures-tu ?\nHow tall you are!\tQu'est-ce que tu es grand !\nHow tall you are!\tComme tu es grand !\nHow tall you are!\tQue tu es grand !\nHow tall you are!\tQue vous êtes grand !\nHow tall you are!\tQue vous êtes grande !\nHow tall you are!\tQue vous êtes grandes !\nHow tall you are!\tQue vous êtes grands !\nHow tall you are!\tQue tu es grande !\nHow tall you are!\tComme tu es grande !\nHow tall you are!\tComme vous êtes grandes !\nHow tall you are!\tComme vous êtes grande !\nHow tall you are!\tComme vous êtes grands !\nHow tall you are!\tComme vous êtes grand !\nHow unlucky I am!\tQuel malchanceux je suis !\nHow unlucky I am!\tComme je suis malchanceux !\nHow very curious!\tComme c'est vraiment étrange !\nHow very curious!\tComme c'est vraiment curieux !\nHow was your day?\tComment s'est passée ta journée ?\nHow you've grown!\tComme tu as grandi !\nHow're you doing?\tComment vas-tu ?\nHow're you doing?\tComment allez-vous ?\nHow's that again?\tTu dis ?\nHow's that again?\tVous dites ?\nHow's that again?\tComment dis-tu ?\nHow's that again?\tComment dites-vous ?\nHurry up, please.\tDépêche-toi, je te prie !\nHurry up, please.\tDépêchons, je vous prie !\nHurry up, please.\tDépêchez-vous, je vous prie !\nI abhor violence.\tJe déteste la violence.\nI agree with him.\tJe suis d'accord avec lui.\nI agree with him.\tJe suis d’accord avec lui.\nI agree with you.\tJe suis d'accord avec vous.\nI agree with you.\tJe suis de ton avis.\nI agree with you.\tJe suis d’accord avec vous.\nI almost drowned.\tJe me suis presque noyé.\nI almost drowned.\tJe me suis presque noyée.\nI already did it.\tJe l'ai déjà fait.\nI am a bit drunk.\tJe suis un peu ivre.\nI am a foreigner.\tJe suis étranger.\nI am a housewife.\tJe suis femme au foyer.\nI am a masochist.\tJe suis masochiste.\nI am a professor.\tJe suis professeur.\nI am a volunteer.\tJe suis volontaire.\nI am an American.\tJe suis américain.\nI am an American.\tJe suis américaine.\nI am cooking now.\tJe cuisine en ce moment.\nI am dumbfounded.\tJe suis sidéré.\nI am from Brazil.\tJe viens du Brésil.\nI am from France.\tJe viens de France.\nI am from Russia.\tJe viens de Russie.\nI am frying fish.\tJe fais frire du poisson.\nI am not kidding.\tJe ne blague pas.\nI am on duty now.\tMaintenant je suis en service.\nI am on duty now.\tJe suis actuellement en service.\nI am only joking.\tJe ne fais que blaguer.\nI am out of time.\tJe suis à court de temps.\nI am out of work.\tJe suis au chômage.\nI am out of work.\tJe suis sans travail.\nI am paid weekly.\tJe suis payée à la semaine.\nI am pretty sure.\tJe suis relativement sûr.\nI am truly sorry.\tJe suis vraiment désolé.\nI am truly sorry.\tJe suis vraiment désolée.\nI appreciated it.\tJe l'ai apprécié.\nI ate on the bus.\tJ'ai mangé dans le bus.\nI began to speak.\tJ'ai commencé à parler.\nI began to sweat.\tJe me mis à transpirer.\nI began to sweat.\tJe me suis mis à transpirer.\nI begin tomorrow.\tJe commence demain.\nI believe in God.\tJe crois en Dieu.\nI believe in him.\tJ'ai confiance en lui.\nI believe in him.\tJe crois en lui.\nI believe in you.\tJe crois en toi.\nI bought a house.\tJ'ai acheté une maison.\nI bought a house.\tJ'ai fait l'acquisition d'une maison.\nI bought a house.\tJ'ai procédé à l'acquisition d'une maison.\nI bought a watch.\tJ'ai acheté une montre.\nI bowed politely.\tJe m'inclinai poliment.\nI bowed politely.\tJe me suis poliment incliné.\nI bowed politely.\tJe me suis poliment inclinée.\nI brought a book.\tJ'ai apporté un livre.\nI brought a book.\tJ'ai apporté un ouvrage.\nI brought dinner.\tJ'ai apporté à dîner.\nI called earlier.\tJ'ai appelé plus tôt.\nI called him Tom.\tJe l'ai appelé Tom.\nI came yesterday.\tJe suis venu hier.\nI came yesterday.\tJe suis venue hier.\nI can reschedule.\tJe peux remettre.\nI can't budge it.\tJe n'arrive pas à le bouger.\nI can't complain.\tJe ne peux pas me plaindre.\nI can't eat meat.\tJe ne peux pas manger de viande.\nI can't eat pork.\tJe ne peux pas manger de porc.\nI can't eat pork.\tJe n'arrive pas à manger du porc.\nI can't find Tom.\tJe n'arrive pas à trouver Tom.\nI can't fix this.\tJe n'arrive pas à réparer ceci.\nI can't join you.\tJe ne peux me joindre à vous.\nI can't reach it.\tJe ne peux pas l'atteindre.\nI can't remember.\tJe n'arrive pas à me souvenir.\nI can't remember.\tJe n'arrive pas à m'en rappeler.\nI can't see well.\tJe n'ai pas une très bonne vue.\nI can't see well.\tJe ne vois pas très bien.\nI can't see well.\tJe ne parviens pas à bien voir.\nI can't show you.\tJe ne peux pas te le montrer.\nI can't show you.\tJe ne peux pas vous le montrer.\nI can't show you.\tJe n'arrive pas à te le montrer.\nI can't show you.\tJe n'arrive pas à vous le montrer.\nI can't stand up.\tJe ne peux pas me redresser.\nI can't stop Tom.\tJe ne peux pas arrêter Tom.\nI can't stop Tom.\tJe ne peux pas stopper Tom.\nI cannot whistle.\tJe ne sais pas siffler.\nI caught the flu.\tJ'ai chopé la grippe.\nI confiscated it.\tJe l'ai confisqué.\nI confiscated it.\tJe l'ai confisquée.\nI could kiss you.\tJe pourrais t'embrasser.\nI could kiss you.\tJe pouvais t'embrasser.\nI could kiss you.\tJe pourrais vous embrasser.\nI could kiss you.\tJe pouvais vous embrasser.\nI could see that.\tJe m'en suis aperçu.\nI could see that.\tJe m'en suis aperçue.\nI could've cried.\tJ'aurais pu pleurer.\nI couldn't speak.\tJe ne pouvais pas parler.\nI couldn't speak.\tJe ne pourrais pas parler.\nI couldn't stand.\tJe ne pourrais pas tenir.\nI couldn't stand.\tJe n'arriverais pas à tenir.\nI deserve better.\tJe mérite mieux.\nI did everything.\tJ'ai tout fait.\nI did it already.\tJe l'ai déjà fait.\nI did it for him.\tJe le fis pour lui.\nI did it for him.\tJe l'ai fait pour lui.\nI did it for you.\tJe l'ai fait pour toi.\nI did it for you.\tJe l'ai fait pour vous.\nI did it for you.\tJe le fis pour toi.\nI did it for you.\tJe le fis pour vous.\nI did it quickly.\tJe le fis rapidement.\nI did it quickly.\tJe l'ai fait rapidement.\nI didn't hear it.\tJe ne l'ai pas entendu.\nI didn't hear it.\tJe ne l'ai pas entendue.\nI didn't like it.\tJe n'ai pas aimé.\nI didn't like it.\tÇa ne me plaisait pas.\nI didn't mean it.\tCe n'était pas mon intention.\nI didn't mean it.\tJe ne l'ai pas fait exprès.\nI didn't see her.\tJe ne l'ai pas vue.\nI didn't see him.\tJe ne l'ai pas vu.\nI didn't see him.\tJe ne le vis pas.\nI didn't see you.\tJe ne t'ai pas vu.\nI didn't see you.\tJe ne t'ai pas vue.\nI didn't see you.\tJe ne vous ai pas vu.\nI didn't see you.\tJe ne vous ai pas vue.\nI didn't see you.\tJe ne vous ai pas vus.\nI didn't see you.\tJe ne vous ai pas vues.\nI didn't take it.\tJe ne l'ai pas pris.\nI didn't take it.\tJe n'ai pas pris ça.\nI dislike coffee.\tJe n'aime pas le café.\nI disregarded it.\tJe n'en ai pas tenu compte.\nI do believe you.\tJe te crois vraiment.\nI do believe you.\tJe vous crois vraiment.\nI do have a plan.\tJ'ai vraiment un plan.\nI don't allow it.\tJe ne le permets pas.\nI don't buy that.\tTu parles, Charles.\nI don't buy that.\tJe ne l'accepte pas.\nI don't disagree.\tJe n'y suis pas opposé.\nI don't disagree.\tJe n'y suis pas opposée.\nI don't do drugs.\tJe ne fais pas dans la drogue.\nI don't eat meat.\tJe ne mange pas de viande.\nI don't eat pork.\tJe ne mange pas de viande de porc.\nI don't envy you.\tJe ne t'envie pas.\nI don't hate him.\tJe ne le hais pas.\nI don't hate you.\tJe ne vous hais pas.\nI don't hate you.\tJe ne vous hais point.\nI don't hate you.\tJe ne te hais pas.\nI don't hate you.\tJe ne te hais point.\nI don't have one.\tJe n'en ai pas.\nI don't know her.\tJe ne la connais pas.\nI don't know him.\tJe ne le connais pas.\nI don't know why.\tJe ne sais pas pourquoi.\nI don't know yet.\tJe ne sais pas encore.\nI don't know you.\tJe ne vous connais pas.\nI don't know you.\tJe ne te connais pas.\nI don't like her.\tJe ne l'aime pas.\nI don't like him.\tJe ne l'aime pas.\nI don't love her.\tJe ne l'aime pas.\nI don't love her.\tJe n'en suis pas amoureux.\nI don't love her.\tJe ne suis pas épris d'elle.\nI don't mean you.\tJe ne veux pas dire toi.\nI don't mean you.\tJe ne veux pas dire vous.\nI don't need Tom.\tJe n'ai pas besoin de Tom.\nI don't remember.\tJe ne me souviens pas.\nI don't think so.\tJe ne crois pas.\nI don't think so.\tJe pense que non.\nI don't watch TV.\tJe ne regarde pas la télé.\nI drank the wine.\tJe bus le vin.\nI drink tea, too.\tJe bois également du thé.\nI drink to relax.\tJe bois pour me détendre.\nI drive a hybrid.\tJe conduis un véhicule hybride.\nI enjoy swimming.\tJ'aime la natation.\nI enjoyed myself.\tJe me suis amusé.\nI enjoyed myself.\tJe me suis amusée.\nI expected worse.\tJe m'attendais à pire.\nI feel all right.\tJe me sens tout à fait bien.\nI feel bad today.\tJe me sens mal aujourd'hui.\nI feel empowered.\tJe me sens investi de pouvoir.\nI feel empowered.\tJe me sens investie de pouvoir.\nI feel empowered.\tJe me sens investi de pouvoirs.\nI feel empowered.\tJe me sens investie de pouvoirs.\nI feel flattered.\tJe me sens flatté.\nI feel flattered.\tJe me sens flattée.\nI feel powerless.\tJe me sens impuissant.\nI feel powerless.\tJe me sens impuissante.\nI feel protected.\tJe me sens protégé.\nI feel protected.\tJe me sens protégée.\nI feel refreshed.\tJe me sens revigoré.\nI feel safe here.\tJe me sens en sécurité, ici.\nI feel safe here.\tJe me sens ici en sécurité.\nI feel so pretty.\tJe me sens tellement jolie !\nI feel so stupid.\tJe me sens si stupide.\nI feel very cold.\tJ'ai très froid.\nI feel very sick.\tJe me sens très malade.\nI feel wonderful.\tJe me sens merveilleusement bien.\nI feel wonderful.\tJe me sens à merveille.\nI feel your pain.\tJe compatis à ta douleur.\nI feel your pain.\tJe compatis à votre douleur.\nI felt depressed.\tJe me sentis déprimé.\nI felt depressed.\tJe me sentis déprimée.\nI felt depressed.\tJe me suis senti déprimé.\nI felt depressed.\tJe me suis senti déprimée.\nI felt powerless.\tJe me suis senti impuissant.\nI felt powerless.\tJe me suis senti impuissante.\nI felt wonderful.\tJ'ai eu un sentiment merveilleux.\nI felt wonderful.\tJe me suis senti très bien.\nI felt wonderful.\tJe me suis sentie très bien.\nI finished first.\tJ'ai terminé premier.\nI finished first.\tJ'ai terminé première.\nI forgot the map.\tJ'ai oublié la carte.\nI found it there.\tJe l'ai trouvé là.\nI found my shoes.\tJ'ai trouvé mes chaussures.\nI found somebody.\tJ'ai trouvé quelqu'un.\nI found your cap.\tJ'ai trouvé ta casquette.\nI gave Tom a hug.\tJ'ai donné un câlin à Tom.\nI gave up my job.\tJ'ai quitté mon boulot.\nI gave up my job.\tJ'ai laissé tomber mon poste.\nI go to the park.\tJe vais au parc.\nI got goosebumps.\tJ'ai la chair de poule.\nI got her a doll.\tJe lui ai acheté une poupée.\nI got home first.\tJe suis rentré le premier à la maison.\nI got paid today.\tJ'ai été payé aujourd'hui.\nI got paid today.\tJ'ai été payée aujourd'hui.\nI got really mad.\tJe me suis vraiment mis en colère.\nI got really mad.\tJe me suis vraiment mise en colère.\nI guess we could.\tJe suppose que nous pourrions.\nI had a hard day.\tJ'ai eu une dure journée.\nI had a headache.\tJ'ai eu un mal de tête.\nI had a headache.\tJ'ai eu mal au crâne.\nI had my reasons.\tJ'avais mes raisons.\nI had to be sure.\tJe devais être sûr.\nI had to be sure.\tJe devais être sûre.\nI had to go back.\tJ'ai dû retourner.\nI had to go back.\tIl m'a fallu retourner.\nI had to go back.\tIl me fallut y retourner.\nI had to go back.\tIl m'a fallu y retourner.\nI had to see you.\tJe devais vous voir.\nI had to see you.\tJe devais te voir.\nI had to see you.\tIl me fallait vous voir.\nI had to see you.\tIl me fallait te voir.\nI had to see you.\tIl m'a fallu vous voir.\nI had to see you.\tIl m'a fallu te voir.\nI hate Halloween.\tJe déteste Halloween.\nI hate chemistry.\tJe déteste la chimie.\nI hate computers.\tJe déteste les ordinateurs.\nI hate hypocrisy.\tJe déteste l'hypocrisie.\nI hate my sister.\tJe déteste ma sœur.\nI hate paperwork.\tJe déteste les tâches administratives.\nI hate paperwork.\tJe déteste la paperasse.\nI hate surprises.\tJe déteste les surprises.\nI hate that book.\tJe déteste ce bouquin.\nI hate that book.\tJe déteste ce livre.\nI hate that idea.\tJe déteste cette idée.\nI hate that song.\tJe déteste cette chanson.\nI hate this game.\tJe déteste ce jeu.\nI hate this song.\tJe déteste cette chanson.\nI hate this town.\tJe déteste cette ville.\nI hate this town.\tJe déteste cette bourgade.\nI hate traveling.\tJe déteste voyager.\nI hate your guts.\tJe déteste votre audace.\nI have Tom's key.\tJ'ai les clefs de Tom.\nI have a bicycle.\tJe dispose d'un vélo.\nI have a big dog.\tJ'ai un grand chien.\nI have a diploma.\tJe dispose d'un diplôme.\nI have a grenade.\tJ'ai une grenade.\nI have a problem.\tJ'ai un problème.\nI have a receipt.\tJ'ai un reçu.\nI have a receipt.\tJ'ai une quittance.\nI have a red car.\tJ'ai une voiture rouge.\nI have allergies.\tJe suis sujet à des allergies.\nI have allergies.\tJe suis sujette à des allergies.\nI have asked him.\tJe lui ai demandé.\nI have been busy.\tJ'ai été occupé.\nI have few books.\tJ'ai peu de livres.\nI have forgotten.\tJ'ai oublié.\nI have hay fever.\tJ'ai le rhume des foins.\nI have heartburn.\tJ'ai des brûlures d'estomac.\nI have insurance.\tJe dispose d'une assurance.\nI have no choice.\tJe n'ai pas le choix.\nI have no excuse.\tJe n'ai pas d'excuse.\nI have no excuse.\tJe n'ai aucune excuse.\nI have no excuse.\tJe suis dépourvu d'excuse.\nI have no family.\tJe n'ai pas de famille.\nI have one child.\tJ'ai un enfant.\nI have one child.\tJ'ai une enfant.\nI have questions.\tJ'ai des questions.\nI have some food.\tJ'ai quelque chose à manger.\nI have some time.\tJ'ai du temps.\nI have some time.\tJe dispose de temps.\nI have something.\tJ'ai quelque chose.\nI have sore feet.\tMes pieds me font mal.\nI have standards.\tJ'ai des critères.\nI have standards.\tJ'ai des étendards.\nI have standards.\tJ'ai des principes.\nI have to change.\tIl faut que je change.\nI have to change.\tIl me faut changer.\nI have to go now.\tIl faut que j'y aille, maintenant.\nI have two books.\tJ'ai deux livres.\nI hear something.\tJ'entends quelque chose.\nI heard coughing.\tJ'ai entendu tousser.\nI heard it on TV.\tJe l'ai entendu à la télé.\nI hope you agree.\tJ'espère que tu es d'accord.\nI just got a job.\tJe viens d'avoir un boulot.\nI just got a job.\tJe viens d'obtenir un boulot.\nI just got fired.\tJe viens de me faire virer.\nI just love that.\tJ'adore ça, tout simplement.\nI just opened it.\tJe viens de l'ouvrir.\nI kicked the dog.\tJ'ai filé un coup de pied au chien.\nI knew the risks.\tJe connaissais les risques.\nI know I'm wrong.\tJe sais que j'ai tort.\nI know he did it.\tJe sais qu'il l'a fait.\nI know it myself.\tJe le sais moi-même.\nI know only this.\tJe sais seulement cela.\nI know the drill.\tJe connais la chanson.\nI know the truth.\tJe connais la vérité.\nI know this song.\tJe connais cette chanson.\nI know your face.\tJe connais ton visage.\nI know your name.\tJe connais ton nom.\nI know your name.\tJe connais votre nom.\nI know your type.\tJe connais votre genre.\nI know your type.\tJe connais ton genre.\nI lay on my face.\tJ'étais allongé sur le ventre.\nI left a message.\tJ'ai laissé un message.\nI let the cat in.\tJ'ai laissé entrer le chat.\nI let the cat in.\tJe laisse entrer le chat.\nI like astrology.\tJ'aime l'astrologie.\nI like fresh air.\tJ'apprécie l'air frais.\nI like her novel.\tJ'aime son roman.\nI like math best.\tCe sont les maths que je préfère.\nI like mysteries.\tJ'aime les mystères.\nI like surprises.\tJ'aime les surprises.\nI like that song.\tJ'aime cette chanson.\nI like the beach.\tJ'aime la plage.\nI like these two.\tJ'aime ces deux-ci.\nI like this book.\tJ'aime cet ouvrage.\nI like this book.\tJ'aime ce livre.\nI like this game.\tJ'apprécie cette manche.\nI like this room.\tJ'aime cette pièce.\nI like this room.\tJ'aime cette chambre.\nI like this song.\tJ'aime cette chanson.\nI like to travel.\tJ’aime voyager.\nI like traveling.\tJ’aime voyager.\nI like what I do.\tJ'apprécie ce que je fais.\nI like your city.\tJ'aime ta ville.\nI like your hair.\tJ'aime tes cheveux.\nI like your hair.\tJ'aime vos cheveux.\nI lit the candle.\tJ'allumai la chandelle.\nI lit the candle.\tJ'allumai le cierge.\nI lit the candle.\tJ'allumai la bougie.\nI live in Boston.\tJe vis à Boston.\nI live in Boston.\tJ'habite à Boston.\nI live in Tahiti.\tJe vis à Tahiti.\nI live in Tahiti.\tJ'habite à Tahiti.\nI live next door.\tJe vis la porte à côté.\nI lost my camera.\tJ'ai perdu mon appareil photo.\nI lost my temper.\tJe perdis patience.\nI lost my wallet.\tJ'ai perdu mon portefeuille.\nI lost the watch.\tJ'ai perdu ma montre.\nI lost the watch.\tJ’ai perdu ma montre.\nI love Christmas.\tJ'adore Noël.\nI love astronomy.\tJ'adore l'astronomie.\nI love chocolate.\tJ'adore le chocolat.\nI love gardening.\tJ'adore jardiner.\nI love libraries.\tJ'adore les bibliothèques.\nI love my family.\tJ'adore ma famille.\nI love my mother.\tJ'adore ma mère.\nI love old books.\tJ'adore les ouvrages anciens.\nI love soul food.\tJ'adore les nourritures de l'esprit.\nI love surprises.\tJ'adore les surpises.\nI love that idea.\tJ'adore cette idée.\nI love that show.\tJ'adore ce spectacle.\nI love that song.\tJ'adore cette chanson.\nI love this game.\tJ'adore ce jeu.\nI love this game.\tJ'adore cette partie.\nI love this game.\tJ'adore cette manche.\nI love this part.\tJ'adore cette partie.\nI love this part.\tJ'adore ce rôle.\nI love this show.\tJ'adore ce spectacle.\nI love this song.\tJ'adore cette chanson.\nI love this town.\tJ'adore cette ville.\nI love traveling.\tJ'adore voyager.\nI love what I do.\tJ'adore ce que je fais.\nI love you a lot.\tJe t'aime beaucoup.\nI love your city.\tJ'aime ta ville.\nI love your eyes.\tJ'adore vos yeux.\nI love your eyes.\tJ'adore tes yeux.\nI love your hair.\tJ'adore tes cheveux.\nI loved that car.\tJ'ai adoré cette voiture.\nI loved that dog.\tJ'ai adoré ce chien.\nI loved the play.\tJ'ai adoré la pièce.\nI made Tom laugh.\tJ'ai fait rire Tom.\nI made a fortune.\tJ'ai amassé une fortune.\nI made a mistake.\tJ'ai commis une erreur.\nI made a promise.\tJ'ai fait une promesse.\nI made a promise.\tJe fis une promesse.\nI made a snowman.\tJ’ai fait un bonhomme de neige.\nI made breakfast.\tJ'ai préparé le petit-déjeuner.\nI made him do so.\tJe le lui ai fait faire.\nI made it myself.\tJe l'ai confectionné moi-même.\nI made it myself.\tJe l'ai confectionnée moi-même.\nI made it myself.\tJe l'ai confectionné par moi-même.\nI made it myself.\tJe l'ai fait moi-même.\nI may be too old.\tJe suis peut-être trop vieux.\nI may be too old.\tPeut-être suis-je trop vieux.\nI met my friends.\tJ'ai rencontré mes amis.\nI might be wrong.\tIl se peut que j'aie tort.\nI miss her a lot.\tElle me manque fort.\nI miss her a lot.\tElle me manque beaucoup.\nI miss you badly.\tTu me manques beaucoup.\nI miss you badly.\tTu me manques énormément.\nI missed the bus.\tJ'ai raté le bus.\nI missed the bus.\tJ'ai manqué le bus.\nI missed the bus.\tJ'ai loupé le bus.\nI must apologize.\tJe dois faire mes excuses.\nI must get going.\tJe dois y aller.\nI must get going.\tIl faut que j'y aille.\nI must leave now.\tJe dois partir maintenant.\nI must warn them.\tJe dois les prévenir.\nI must warn them.\tIl me faut les prévenir.\nI nearly starved.\tJe suis presque mort de faim.\nI nearly starved.\tJe mourus presque de faim.\nI need a Kleenex.\tIl me faut un Kleenex.\nI need a Kleenex.\tJ'ai besoin d'un Kleenex.\nI need a haircut.\tJ'ai besoin de me faire couper les cheveux.\nI need a partner.\tJ'ai besoin d'un partenaire.\nI need a partner.\tJ'ai besoin d'une partenaire.\nI need all of it.\tJ'ai besoin du tout.\nI need an escort.\tJ'ai besoin d'une escorte.\nI need an escort.\tJ'ai besoin d'une hôtesse.\nI need envelopes.\tJ'ai besoin d'enveloppes.\nI need more gold.\tJ'ai besoin de plus d'or.\nI need more gold.\tJ'ai besoin de davantage d'or.\nI need more time.\tJ'ai besoin de plus de temps.\nI need new shoes.\tJ'ai besoin de nouvelles chaussures.\nI need new tires.\tJ'ai besoin de nouveaux pneus.\nI need new tires.\tIl me faut des pneus neufs.\nI need some cash.\tIl me faut du liquide.\nI need some cash.\tJ'ai besoin de liquide.\nI need some soap.\tJ'ai besoin de savon.\nI need subtitles.\tJ'ai besoin de sous-titres.\nI need the money.\tJ'ai besoin de l'argent.\nI need to travel.\tIl faut que je voyage.\nI need to travel.\tJ'ai besoin de voyager.\nI need your help.\tJ'ai besoin que tu m'aides.\nI need your help.\tJ'ai besoin de ton aide.\nI never did that.\tJe ne l'ai jamais fait.\nI never did that.\tJe n'ai jamais fait ça.\nI never sleep in.\tJe ne fais jamais la grasse matinée.\nI never sleep in.\tJe ne dors jamais sur mon lieu de travail.\nI never told Tom.\tJe ne l’ai jamais dit à Tom.\nI opened one eye.\tJ'ouvris un œil.\nI opened one eye.\tJ'ai ouvert un œil.\nI owe him a debt.\tJ'ai une dette envers lui.\nI owe him a debt.\tJ'ai une dette à son égard.\nI owe you a beer.\tJe te dois une bière.\nI owe you a beer.\tJe vous dois une bière.\nI own a computer.\tJe possède un ordinateur.\nI own this place.\tJe possède cet endroit.\nI own this store.\tJe possède ce magasin.\nI paid attention.\tJ'ai fait attention.\nI paid attention.\tJ'ai prêté attention.\nI paid the check.\tJ'ai payé l'addition.\nI party too much.\tJe fais trop la fête.\nI party too much.\tJe fais trop la nouba.\nI pay my own way.\tJe peux me gérer seul.\nI pay my own way.\tJe paie mes propres dettes.\nI planted a tree.\tJ'ai planté un arbre.\nI play the piano.\tJe joue du piano.\nI pointed at him.\tJe l'ai désigné.\nI prefer reading.\tJe préfère lire.\nI prefer to read.\tJe préfère lire.\nI prefer to walk.\tJe préfère marcher.\nI prefer walking.\tJe préfère marcher.\nI ran downstairs.\tJe me précipitai au bas des escaliers.\nI ran downstairs.\tJe me suis précipité en bas.\nI ran downstairs.\tJe me suis précipitée en bas.\nI ran out of gas.\tJe tombai en panne d'essence.\nI ran out of gas.\tJe suis tombé en panne d'essence.\nI ran out of gas.\tJe suis tombée en panne d'essence.\nI really am busy.\tJe suis vraiment occupé.\nI really am busy.\tJe suis vraiment occupée.\nI really hope so.\tJe l’espère vraiment.\nI really hope so.\tJe l’espère de tout mon cœur.\nI really hurried.\tJe me suis vraiment dépêché.\nI really hurried.\tJe me suis vraiment dépêchée.\nI really mean it.\tJe suis sérieux.\nI really mean it.\tJe suis sérieuse.\nI really need it.\tJ'en ai vraiment besoin.\nI recommend this.\tJe recommande ceci.\nI refused to pay.\tJe refusai de payer.\nI refused to pay.\tJ'ai refusé de payer.\nI refused to pay.\tJe me refusai à payer.\nI refused to pay.\tJe me suis refusé à payer.\nI regret nothing.\tJe ne regrette rien.\nI require advice.\tJe requiers des conseils.\nI rubbed my feet.\tJe me suis frotté les pieds.\nI run this place.\tJe fais marcher cet endroit.\nI said stay back.\tJ'ai dit de rester en arrière.\nI sat beside her.\tJe m'assis à côté d'elle.\nI saw everything.\tJ'ai tout vu.\nI saw him go out.\tJe l'ai vu sortir.\nI see your house.\tJe vois votre maison.\nI see your house.\tJe vois ta maison.\nI see your point.\tJe vois ce que tu veux dire.\nI see your point.\tJe vois ce que vous voulez dire.\nI seldom see him.\tJe le vois rarement.\nI sell computers.\tJe vends des ordinateurs.\nI sell umbrellas.\tJe vends des parapluies.\nI started crying.\tJe me suis mis à pleurer.\nI started crying.\tJe me suis mise à pleurer.\nI started to cry.\tJ'ai commencé à pleurer.\nI still like Tom.\tJ'aime toujours Tom.\nI still love you.\tJe t'aime encore.\nI still love you.\tJe vous aime encore.\nI still love you.\tJe t'aime toujours.\nI still love you.\tJe vous aime toujours.\nI strongly agree.\tJe suis tout à fait d'accord.\nI swim every day.\tJe nage tous les jours.\nI talk to myself.\tJe parle tout seul.\nI talk to myself.\tJe me parle.\nI talk to myself.\tJe parle à moi-même.\nI think Tom died.\tJe pense que Tom est mort.\nI think Tom left.\tJe pense que Tom est parti.\nI think it's Tom.\tJe pense que c'est Tom.\nI totally forgot.\tJ'ai complètement oublié.\nI truly hope not.\tJe ne l'espère vraiment pas.\nI understand why.\tJe comprends pourquoi.\nI understand you.\tJe te comprends.\nI understand you.\tJe vous comprends.\nI used to be fat.\tJ'ai été gros.\nI visited Boston.\tJ'ai visité Boston.\nI waited a month.\tJ'ai attendu un mois.\nI waited a while.\tJ'attendis un moment.\nI waited a while.\tJ'ai attendu un moment.\nI walk every day.\tJe marche tous les jours.\nI walk to school.\tJe vais à l'école en marchant.\nI want a blanket.\tJe veux une couverture.\nI want a divorce.\tJe veux divorcer.\nI want a martini.\tJe veux un martini.\nI want a pen pal.\tJe veux un correspondant.\nI want a rematch.\tJe veux une revanche.\nI want a scooter.\tJe veux une trottinette.\nI want much more.\tJe veux beaucoup plus.\nI want some milk.\tJe veux du lait.\nI want that book.\tJe veux ce livre.\nI want the facts.\tJe veux les faits.\nI want to retire.\tJe veux prendre ma retraite.\nI want to retire.\tJe veux partir à la retraite.\nI want to retire.\tJe veux prendre ma pension.\nI want to see it.\tJe veux le voir.\nI want to see it.\tJe veux voir ça.\nI want to try it.\tJe veux essayer.\nI want to try it.\tJe veux le tenter.\nI want us to win.\tJe veux que nous gagnions.\nI want vengeance.\tJe veux ma vengeance.\nI want you to go.\tJe veux que vous partiez.\nI want your love.\tJe veux ton amour.\nI want your love.\tJe veux ton affection.\nI want your love.\tJe veux votre amour.\nI want your love.\tJe veux votre affection.\nI wanted to come.\tJe voulais venir.\nI was astonished.\tJe fus étonné.\nI was astonished.\tJ'ai été étonné.\nI was born there.\tJe suis né là.\nI was born there.\tJe suis née là.\nI was devastated.\tJ'étais anéanti.\nI was devastated.\tJ'étais anéantie.\nI was distracted.\tJ'ai été distrait.\nI was distracted.\tJ'ai été distraite.\nI was dumbstruck.\tJ'étais sidéré.\nI was frightened.\tJ'étais apeurée.\nI was frustrated.\tJ'étais agacé.\nI was frustrated.\tJ'étais agacée.\nI was happy then.\tJ'étais heureux, alors.\nI was happy then.\tJ'étais heureuse, alors.\nI was here first.\tJ'étais là en premier.\nI was here first.\tJ'étais là le premier.\nI was humiliated.\tOn m'a humilié.\nI was humiliated.\tOn m'a humiliée.\nI was humiliated.\tJ'ai été humilié.\nI was humiliated.\tJ'ai été humiliée.\nI was in all day.\tJe suis resté à l'intérieur toute la journée.\nI was in all day.\tJe suis restée à l'intérieur toute la journée.\nI was in all day.\tJe suis resté cloîtré toute la journée.\nI was in all day.\tJe suis restée cloîtrée toute la journée.\nI was quite calm.\tJ'étais plutôt calme.\nI was speechless.\tJe fus à court de mots.\nI was speechless.\tJ’étais sans voix.\nI was speechless.\tJe suis resté sans voix.\nI was sure of it.\tJ'en étais sûr.\nI was sure of it.\tJ'en étais sûre.\nI was threatened.\tOn m'a menacé.\nI was threatened.\tOn m'a menacée.\nI was threatened.\tJ'ai été menacé.\nI was threatened.\tJ'ai été menacée.\nI was unprepared.\tJe n'étais pas préparé.\nI was unprepared.\tJe n'étais pas préparée.\nI was very tired.\tJ'étais très fatigué.\nI was very tired.\tJ'étais très fatiguée.\nI was very tired.\tJ'étais fourbu.\nI was very tired.\tJ'étais fourbue.\nI washed my feet.\tJe me suis lavé les pieds.\nI wasn't invited.\tJe n'ai pas été invité.\nI wasn't invited.\tJe n'ai pas été invitée.\nI wasn't kidding.\tJe n'étais pas en train de blaguer.\nI wasn't serious.\tJe n'étais pas sérieux.\nI wasn't serious.\tJe n'étais pas sérieuse.\nI waved him back.\tJe lui fis signe de la main en retour.\nI went to school.\tJe suis allé à l'école.\nI went to school.\tJe suis allée à l'école.\nI went to school.\tJ'ai fréquenté l'école.\nI went to school.\tJe me suis rendu à l'école.\nI went to school.\tJe me suis rendue à l'école.\nI will shoot him.\tJe vais le buter.\nI will shoot him.\tJe vais le descendre.\nI will shoot him.\tJe vais le flinguer.\nI will teach you.\tJe te l'enseignerai.\nI will translate.\tJe traduirai.\nI will try again.\tJ'essaierai à nouveau.\nI wish them luck.\tJe leur souhaite bonne chance.\nI won't be quiet.\tJe ne serai pas tranquille.\nI won't be quiet.\tJe ne me tiendrai pas tranquille.\nI won't need you.\tJe n'aurai pas besoin de vous.\nI won't tell Tom.\tJe ne le dirai pas à Tom.\nI work in a bank.\tJe travaille dans une banque.\nI work on Sunday.\tJe travaille le dimanche.\nI work on a farm.\tJe travaille dans une ferme.\nI worry too much.\tJe me fais trop de souci.\nI worry too much.\tJe m'inquiète de trop.\nI would complain.\tJe voudrais porter plainte.\nI wrote the note.\tJ'ai écrit la note.\nI wrote the note.\tJ'écrivis la note.\nI'd be delighted.\tJe serais ravi.\nI'd be delighted.\tJ'en serais ravi.\nI'd be delighted.\tJ'en serais ravie.\nI'd be delighted.\tJe serais ravie.\nI'd like a raise.\tJ'aimerais une augmentation.\nI'll be at Tom's.\tJe serai chez Tom.\nI'll be discreet.\tJe serai discret.\nI'll be discreet.\tJe serai discrète.\nI'll be in touch.\tJe resterai en contact.\nI'll beat you up!\tJe vais te cogner !\nI'll bring lunch.\tJ'apporterai à déjeuner.\nI'll bring lunch.\tJ'apporterai à dîner.\nI'll check again.\tJe revérifierai.\nI'll clean it up.\tJe vais le nettoyer.\nI'll demonstrate.\tJe le démontrerai.\nI'll demonstrate.\tJe manifesterai.\nI'll do anything.\tJe ferai n'importe quoi.\nI'll fix a drink.\tJe vais préparer une boisson.\nI'll fix a drink.\tJe vais préparer un verre.\nI'll forgive you.\tJe te pardonnerai.\nI'll forgive you.\tJe vous pardonnerai.\nI'll get my coat.\tJe vais chercher mon manteau.\nI'll get my keys.\tJe vais prendre mes clés.\nI'll get the car.\tJe vais chercher la voiture.\nI'll go by plane.\tJ'irai en avion.\nI'll go shopping.\tJ'irai faire des courses.\nI'll go this way.\tJe vais aller par là.\nI'll go with you.\tJ'irai avec toi.\nI'll go with you.\tJe vais y aller avec toi.\nI'll go with you.\tJe vais y aller avec vous.\nI'll go with you.\tJ'irai avec vous.\nI'll handle this.\tJe m'en chargerai.\nI'll handle this.\tJe m'en débrouillerai.\nI'll handle this.\tJe m'en occuperai.\nI'll have dinner.\tJe déjeunerai.\nI'll ignore that.\tJe vais ignorer ça.\nI'll never learn.\tJe n'apprendrai jamais.\nI'll never leave.\tJe ne partirai jamais.\nI'll pack my bag.\tJe ferai mon sac.\nI'll protect Tom.\tJe vais protéger Tom.\nI'll protect you.\tJe vous protègerai.\nI'll protect you.\tJe te protègerai.\nI'll say no more.\tJe n'en dirai pas plus.\nI'll shut up now.\tJe me tairai, maintenant.\nI'll support him.\tJe l'appuierai.\nI'll support him.\tJe le soutiendrai.\nI'll support him.\tJe l'épaulerai.\nI'll take it all.\tJe prendrai le tout.\nI'll treasure it.\tJ'y serai très attaché.\nI'll try my luck.\tJe vais tenter ma chance.\nI'll wash dishes.\tJe vais laver les plats.\nI'm 18 years old.\tJ'ai dix-huit ans.\nI'm 24 years old.\tJ'ai 24 ans.\nI'm 25 years old.\tJe suis âgé de vingt-cinq ans.\nI'm Tom's cousin.\tJe suis le cousin de Tom.\nI'm a bank clerk.\tJe suis employé de banque.\nI'm a bit hungry.\tJ'ai un peu faim.\nI'm a lonely man.\tJe suis un homme solitaire.\nI'm a normal guy.\tJe suis un gars normal.\nI'm a normal guy.\tJe suis un type normal.\nI'm a shutterbug.\tJe suis un fondu de photo.\nI'm able to swim.\tJe sais nager.\nI'm all confused.\tJe suis très désorienté.\nI'm all confused.\tJe suis très désorientée.\nI'm all for that.\tJe suis tout à fait pour.\nI'm already done.\tJ'ai déjà fini.\nI'm already done.\tJ'ai déjà terminé.\nI'm already rich.\tJe suis déjà riche.\nI'm always happy.\tJe suis toujours heureux.\nI'm always happy.\tJe suis toujours content.\nI'm always happy.\tJe suis toujours heureuse.\nI'm always happy.\tJe suis toujours contente.\nI'm always moody.\tJe suis toujours de mauvaise humeur.\nI'm ambidextrous.\tJe suis ambidextre.\nI'm at the beach.\tJe suis à la plage.\nI'm between jobs.\tJe suis entre deux emplois.\nI'm between jobs.\tJe suis entre deux postes.\nI'm between jobs.\tJe suis en train de changer de poste.\nI'm by your side.\tJe suis de votre côté.\nI'm by your side.\tJe suis à ton côté.\nI'm by your side.\tJe suis à votre côté.\nI'm by your side.\tJe suis à tes côtés.\nI'm by your side.\tJe suis à vos côtés.\nI'm by your side.\tJe suis avec vous.\nI'm by your side.\tJe suis avec toi.\nI'm by your side.\tJe suis de ton côté.\nI'm confused now.\tJe suis paumé maintenant.\nI'm disappointed.\tJe suis déçu.\nI'm dissatisfied.\tJe ne suis pas content.\nI'm dissatisfied.\tJe ne suis pas satisfait.\nI'm done with it.\tJ'en ai fini.\nI'm eating lunch.\tJe déjeune.\nI'm fairly happy.\tJe suis plutôt heureux.\nI'm fairly happy.\tJe suis plutôt content.\nI'm fairly happy.\tJe suis plutôt heureuse.\nI'm fairly happy.\tJe suis plutôt contente.\nI'm feeling good.\tJe me sens bien.\nI'm fine with it.\tC'est bon pour moi.\nI'm fine with it.\tÇa me va.\nI'm fine with it.\tÇa colle pour moi.\nI'm freaking out.\tJe flippe.\nI'm from America.\tJe viens d'Amérique.\nI'm from Croatia.\tJe viens de Croatie.\nI'm from England.\tJe viens d'Angleterre.\nI'm from Romania.\tJe viens de Roumanie.\nI'm going to bed.\tJe vais me coucher !\nI'm going to bed.\tJe vais au lit.\nI'm good for now.\tC'est bon pour moi pour l'instant.\nI'm happy enough.\tJe suis assez content.\nI'm happy enough.\tJe suis assez heureux.\nI'm happy enough.\tJe suis assez contente.\nI'm happy enough.\tJe suis assez heureuse.\nI'm homeschooled.\tJe suis scolarisé à la maison.\nI'm homeschooled.\tJe suis scolarisée à la maison.\nI'm housesitting.\tJe garde la maison.\nI'm in the attic.\tJe suis au grenier.\nI'm in the house.\tJe suis dans la maison.\nI'm inviting you.\tJe vous invite.\nI'm just curious.\tJe suis juste curieux.\nI'm just curious.\tJe suis juste curieuse.\nI'm just kidding.\tJe plaisante.\nI'm just kidding.\tJe rigole.\nI'm just looking.\tJe ne fais que regarder.\nI'm killing time.\tJe tue le temps.\nI'm kind of full.\tJ'ai, pour ainsi dire, trop mangé.\nI'm no different.\tJe ne suis pas différent.\nI'm no different.\tJe ne suis pas différente.\nI'm not a beggar.\tJe ne suis pas un mendiant.\nI'm not a doctor.\tJe ne suis pas docteur.\nI'm not a genius.\tJe ne suis pas un génie.\nI'm not bluffing.\tJe suis sérieux.\nI'm not bluffing.\tJe suis sérieuse.\nI'm not blushing!\tJe ne rougis pas !\nI'm not bragging.\tJe ne frime pas.\nI'm not counting.\tJe ne suis pas en train de compter.\nI'm not dead yet.\tJe ne suis pas encore mort.\nI'm not dead yet.\tJe ne suis pas encore morte.\nI'm not done yet.\tJe n'en ai pas encore fini.\nI'm not done yet.\tJe n'en ai pas encore terminé.\nI'm not dreaming.\tJe ne suis pas en train de rêver.\nI'm not fighting.\tJe ne suis pas en train de me battre.\nI'm not finished.\tJe n'en ai pas terminé.\nI'm not like you.\tJe ne suis pas comme toi.\nI'm not like you.\tJe ne suis pas comme vous.\nI'm not mistaken.\tJe ne fais pas erreur.\nI'm not offended.\tJe ne me sens pas offensé.\nI'm not offended.\tJe ne me sens pas offensée.\nI'm not outgoing.\tJe ne suis pas extraverti.\nI'm not outgoing.\tJe ne suis pas extravertie.\nI'm not paranoid.\tJe ne suis pas paranoïaque.\nI'm not so lucky.\tJe ne suis pas si veinard.\nI'm not sure why.\tJe ne suis pas sûr de la raison.\nI'm not sure why.\tJe ne suis pas sûre de la raison.\nI'm not the boss.\tJe ne suis pas le patron.\nI'm not the boss.\tJe ne suis pas la patronne.\nI'm not your son.\tJe ne suis pas ton fils.\nI'm not your son.\tJe ne suis pas votre fils.\nI'm on your side.\tJe suis de votre côté.\nI'm out of ideas.\tJe suis à court d'idées.\nI'm out of shape.\tJe ne suis pas en forme.\nI'm overreacting.\tJe sur-réagis.\nI'm pretty angry.\tJe suis assez en colère.\nI'm pretty happy.\tJe suis assez heureux.\nI'm pretty happy.\tJe suis assez heureuse.\nI'm proud of you.\tJe suis fier de toi.\nI'm real careful.\tJe suis vraiment prudent.\nI'm real careful.\tJe suis vraiment prudente.\nI'm really angry.\tJ'ai les glandes.\nI'm really happy.\tJe suis vraiment heureux.\nI'm really happy.\tJe suis vraiment heureuse.\nI'm really happy.\tJe suis vraiment content.\nI'm really happy.\tJe suis vraiment contente.\nI'm really tired.\tJe suis vraiment fatigué.\nI'm retired, too.\tJe suis également à la retraite.\nI'm retired, too.\tJe suis également pensionné.\nI'm retired, too.\tJe suis également pensionnée.\nI'm retired, too.\tJe suis également à la pension.\nI'm sick of fish.\tJ'en ai marre du poisson !\nI'm sick of this.\tJ'en ai ras-le-bol.\nI'm staying here.\tJe reste ici.\nI'm still hungry.\tJ’ai toujours faim.\nI'm still hungry.\tJ'ai encore faim.\nI'm still single.\tJe suis toujours célibataire.\nI'm still sleepy.\tJe suis encore endormi.\nI'm still sleepy.\tJe suis encore endormie.\nI'm still trying.\tJ'essaye toujours.\nI'm stronger now.\tJe suis plus fort, désormais.\nI'm super hungry.\tJ'ai super faim.\nI'm very serious.\tJe suis très sérieux.\nI'm very serious.\tJe suis très sérieuse.\nI'm very thirsty.\tJ'ai très soif.\nI'm very thirsty.\tJe meurs de soif.\nI'm volunteering.\tJe me porte volontaire.\nI'm volunteering.\tJe fais du bénévolat.\nI'm watching you.\tJe t'observe.\nI'm working here.\tJe travaille ici.\nI'm your brother.\tJe suis ton frère.\nI'm your partner.\tJe suis ton partenaire.\nI'm your partner.\tJe suis votre partenaire.\nI've done my job.\tJ'ai fait mon boulot.\nI've found a job.\tJ'ai trouvé un boulot.\nI've got company.\tJ'ai de la compagnie.\nI've lost my bag.\tJ'ai perdu mon sac.\nI've lost weight.\tJ'ai perdu du poids.\nI've never tried.\tJe n'ai jamais essayé.\nI've never voted.\tJe n’ai jamais voté.\nI've seen enough.\tJ'en ai assez vu.\nI've seen it all.\tJ'ai tout vu.\nI've seen it all.\tJe l'ai entièrement vu.\nIf not now, when?\tSi pas maintenant, quand ?\nIronic, isn't it?\tIronique, non ?\nIs Tom an artist?\tTom est-il un artiste ?\nIs Tom your name?\tTu t'appelles bien Tom ?\nIs anybody there?\tQuiconque est-il là ?\nIs anybody there?\tQui que ce soit est-il là ?\nIs anybody there?\tQuiconque s'y trouve-t-il ?\nIs everyone busy?\tTout le monde est-il occupé ?\nIs everyone here?\tTout le monde est-il là ?\nIs everything OK?\tEst-ce que tout va bien ?\nIs he still here?\tEst-il encore là?\nIs he still here?\tEst-il encore ici ?\nIs it accessible?\tEst-ce accessible ?\nIs it contagious?\tEst-ce contagieux ?\nIs she all right?\tVa-t-elle bien ?\nIs she all right?\tSe porte-t-elle bien ?\nIs she beautiful?\tEst-elle belle ?\nIs that a riddle?\tEst-ce une énigme ?\nIs that a riddle?\tS'agit-il d'une énigme ?\nIs that a threat?\tS'agit-il d'une menace ?\nIs that for sale?\tEst-ce à vendre ?\nIs that for sale?\tEst-ce en vente ?\nIs that too hard?\tEst-ce trop difficile ?\nIs that too much?\tEst-ce trop ?\nIs that your car?\tEst-ce là votre voiture ?\nIs that your car?\tEst-ce ta voiture ?\nIs that your car?\tEst-ce là ta voiture ?\nIs that your dog?\tEst-ce là votre chien ?\nIs that your dog?\tEst-ce là ton chien ?\nIs the bank open?\tEst-ce que la banque est ouverte ?\nIs the bank open?\tLa banque est-elle ouverte ?\nIs the door open?\tLa porte est-elle ouverte ?\nIs there a point?\tÀ quoi cela sert-il ?\nIs there a point?\tÀ quoi ça sert ?\nIs this 223-1374?\tSuis-je bien au 223-1374 ?\nIs this a letter?\tS'agit-il d'une lettre ?\nIs this a riddle?\tEst-ce une énigme ?\nIs this your DVD?\tEst-ce ton DVD ?\nIs this your car?\tEst-ce que c'est votre voiture ?\nIs this your car?\tEst-ce ta voiture ?\nIs this your car?\tEst-ce votre voiture ?\nIs this your dog?\tEst-ce ton chien ?\nIs this your dog?\tEst-ce votre chien ?\nIs this your pen?\tC'est ton stylo ?\nIs this your pen?\tC'est votre stylo ?\nIs your car fast?\tVotre voiture est-elle rapide ?\nIs your dog mean?\tTon chien est-il méchant ?\nIsn't that awful?\tN'est-ce pas horrible ?\nIsn't that right?\tN'est-ce pas correct ?\nIsn't that right?\tN'est-ce pas juste ?\nIt almost worked.\tÇa a presque fonctionné.\nIt almost worked.\tÇa a failli fonctionner.\nIt almost worked.\tÇa a failli marcher.\nIt almost worked.\tÇa a presque marché.\nIt began to snow.\tIl se mit à neiger.\nIt began to snow.\tIl commença à neiger.\nIt belongs to me.\tÇa m'appartient.\nIt costs 2 euros.\tÇa coûte 2 euros.\nIt couldn't hurt.\tÇa ne pourrait pas faire de mal.\nIt did the trick.\tÇa a fait l'affaire.\nIt did the trick.\tÇa l'a fait.\nIt doesn't count.\tÇa ne compte pas.\nIt freaks me out.\tÇa me fait flipper.\nIt freaks me out.\tÇa me fout les chocottes.\nIt happened here.\tÇa s'est passé ici.\nIt happened here.\tC'est arrivé ici.\nIt hurts so much.\tÇa fait tellement mal.\nIt is cloudy now.\tC'est actuellement nuageux.\nIt is fine today.\tC'est parfait aujourd'hui.\nIt is very short.\tC'est très court.\nIt is your right.\tC'est ton droit.\nIt just came out.\tÇa vient de sortir.\nIt just came out.\tÇa vient de paraître.\nIt just came out.\tIl vient de s'avouer homo.\nIt looks painful.\tÇa a l'air douloureux.\nIt looks so real.\tCela a l'air tellement réel.\nIt made me laugh.\tÇa m'a fait rire.\nIt made me laugh.\tÇa me fit rire.\nIt matters a lot.\tCela importe beaucoup.\nIt matters to me.\tÇa a de l'importance pour moi.\nIt matters to me.\tÇa signifie quelque chose pour moi.\nIt may rain soon.\tIl devrait pleuvoir bientôt.\nIt must be there.\tÇa doit être ici.\nIt needs washing.\tOn doit le laver.\nIt needs washing.\tIl lui faut être lavé.\nIt needs washing.\tIl lui faut être lavée.\nIt seemed likely.\tÇa semblait probable.\nIt should be fun.\tÇa devrait être marrant.\nIt sounds simple.\tA l'entendre, c'est simple.\nIt was a big one.\tC'en était un balaise.\nIt was a big one.\tC'en était un gros.\nIt was a mistake.\tCe fut une erreur.\nIt was a mistake.\tÇa a été une erreur.\nIt was all there.\tTout s'est passé là.\nIt was all wrong.\tC'était tout faux.\nIt was effective.\tC'était efficace.\nIt was effective.\tCe fut efficace.\nIt was his fault.\tC'était sa faute.\nIt was his fault.\tC'était de sa faute.\nIt was just hype.\tC'était juste du battage médiatique.\nIt was just hype.\tC'était juste du battage publicitaire.\nIt was last year.\tC'était l'année dernière.\nIt was last year.\tC'était l'an dernier.\nIt was very cool.\tC'était très sympa.\nIt was very dark.\tIl faisait très sombre.\nIt was very ugly.\tC'était fort laid.\nIt was very ugly.\tC'était très laid.\nIt was very ugly.\tCe n'était vraiment pas beau à voir.\nIt was your idea.\tCe fut ton idée.\nIt was your idea.\tC'était ton idée.\nIt was your idea.\tC'était votre idée.\nIt was your idea.\tCe fut votre idée.\nIt wasn't enough.\tCe n'était pas assez.\nIt wasn't enough.\tCe n'était pas suffisant.\nIt will grow old.\tIl deviendra vieux.\nIt won't be easy.\tÇa ne sera pas facile.\nIt won't be easy.\tÇa ne sera pas aisé.\nIt won't be hard.\tCe ne sera pas dur.\nIt won't be hard.\tCe ne sera pas difficile.\nIt worked for me.\tCela fonctionna pour moi.\nIt worked for me.\tCela a fonctionné pour moi.\nIt wouldn't hurt.\tÇa ne ferait pas de mal.\nIt'll never work.\tCela ne fonctionnera jamais.\nIt's a good deal.\tC'est une bonne affaire.\nIt's a good rule.\tC'est une bonne règle.\nIt's a great day.\tC'est un grand jour.\nIt's a large one.\tC'en est un gros.\nIt's a large one.\tC'en est une grosse.\nIt's a rainy day.\tC'est jour pluvieux.\nIt's a snowstorm.\tC'est une tempête de neige.\nIt's a sunflower.\tC'est un tournesol.\nIt's a sunny day.\tC'est un jour ensoleillé.\nIt's a windy day.\tC'est un jour venteux.\nIt's all perfect.\tTout est parfait.\nIt's all settled.\tC'est tout réglé.\nIt's all we have.\tC'est tout ce que nous avons.\nIt's all we have.\tC'est tout ce dont nous disposons.\nIt's almost over.\tC'est presque terminé.\nIt's almost time.\tIl est presque l'heure.\nIt's an old pain.\tC'est une vieille douleur.\nIt's bad for you.\tC'est mauvais pour toi.\nIt's bad for you.\tC'est mauvais pour vous.\nIt's balmy today.\tC'est réconfortant d'avoir un temps radieux aujourd'hui.\nIt's complicated.\tC'est compliqué.\nIt's conceivable.\tC'est concevable.\nIt's deer season.\tC'est la saison des cerfs.\nIt's easily done.\tC'est aisément fait.\nIt's far-fetched.\tC'est tiré par les cheveux.\nIt's frightening.\tÇa fait peur.\nIt's good enough.\tC'est suffisamment bon.\nIt's hot in here.\tIl fait chaud ici.\nIt's interesting.\tC'est intéressant non?\nIt's just a game.\tCe n'est rien qu'un jeu.\nIt's kind of fun.\tC'est assez marrant.\nIt's like a drug.\tC'est comme une drogue.\nIt's my pleasure.\tTout le plaisir est pour moi.\nIt's no big deal.\tÇa n’est pas grave.\nIt's no big deal.\tCe n'est pas un drame.\nIt's not all bad.\tCe n'est pas entièrement mauvais.\nIt's not illegal.\tCe n'est pas illégal.\nIt's not logical.\tCe n'est pas logique.\nIt's not natural.\tCe n'est pas naturel.\nIt's not so easy.\tCe n'est pas si facile.\nIt's not the job.\tCe n'est pas le boulot.\nIt's not too far.\tCe n'est pas trop loin.\nIt's now my turn.\tC'est mon tour maintenant.\nIt's on the sofa.\tC'est sur le canapé.\nIt's on the sofa.\tIl est sur le canapé.\nIt's on the sofa.\tElle est sur le canapé.\nIt's one of mine.\tC'est l'une des miennes.\nIt's one of mine.\tC'est l'un des miens.\nIt's pretty cold.\tIl fait assez froid.\nIt's quite large.\tC'est assez grand.\nIt's quite large.\tC'est plutôt grand.\nIt's regrettable.\tC'est regrettable.\nIt's so exciting.\tC'est tellement passionnant.\nIt's still alive.\tElle vit encore.\nIt's the big one.\tC'est le gros.\nIt's the law now.\tC'est désormais la loi.\nIt's time to eat.\tÀ table !\nIt's time to eat.\tC'est l'heure de manger.\nIt's transparent.\tC'est transparent.\nIt's unnecessary.\tCe n'est pas nécessaire.\nIt's very simple.\tC'est simple comme bonjour.\nIt's very sticky.\tC'est très collant.\nIt's very sticky.\tC'est très embarrassant.\nIt's worth a try.\tÇa vaut le coup d'être essayé.\nIt's worth a try.\tÇa vaut le coup d'essayer.\nIt's your choice.\tC'est ton choix.\nJust a moment ...\tUn instant...\nJust do as I say.\tFais juste comme je dis !\nJust do as I say.\tFaites juste comme je dis !\nJust do your job.\tFais simplement ton travail !\nJust do your job.\tContente-toi de faire ton boulot !\nJust do your job.\tContente-toi de faire ton travail !\nJust do your job.\tContentez-vous de faire votre travail !\nJust do your job.\tFaites simplement votre travail !\nJust do your job.\tContentez-vous de faire votre boulot !\nJust follow them.\tSuis-les juste !\nJust follow them.\tSuivez-les juste !\nJust get to work.\tMets-toi simplement au travail !\nJust get to work.\tMettez-vous simplement au travail !\nJust keep moving.\tContinuez !\nJust keep moving.\tContinue !\nJust keep moving.\tContinuons !\nJust keep moving.\tContinue à avancer !\nJust keep moving.\tContinuons à avancer !\nJust keep moving.\tContinuez à avancer !\nJust keep moving.\tContentez-vous de continuer à avancer !\nJust keep moving.\tContente-toi de continuer à avancer !\nJust look at him.\tRegarde-le, simplement !\nJust who are you?\tQui êtes-vous, exactement ?\nJust who are you?\tQui es-tu, exactement ?\nKeep a cool head.\tGarde la tête froide.\nKeep a cool head.\tGardez la tête froide.\nKeep me informed.\tTiens-moi informé !\nKeep me informed.\tTenez-moi informé !\nKeep the dog out.\tLaisse le chien dehors.\nKeep the dog out.\tLaissez le chien dehors !\nLeave that alone.\tLaisse ça tranquille !\nLeave that alone.\tLaissez ça tranquille !\nLeave that to me.\tLaisse-moi ça !\nLeave that to me.\tLaissez-moi ça !\nLeave this to me.\tLaissez-moi faire ça.\nLeave this to me.\tLaisse-moi ça.\nLeave this to me.\tLaisse-moi faire ça.\nLeave this to me.\tLaisse-le-moi.\nLeave this to me.\tLaisse.\nLeave this to me.\tLaissez.\nLeave this to me.\tLaissez-moi ça.\nLeave this to me.\tLaissez-le-moi.\nLet go of my arm!\tLâche mon bras !\nLet go of my arm!\tLâchez mon bras !\nLet go of my arm.\tLâche mon bras.\nLet go of my arm.\tLâche-moi le bras.\nLet go of my arm.\tLâchez-moi le bras.\nLet me do my job.\tLaisse-moi faire mon boulot !\nLet me do my job.\tLaisse-moi faire mon travail !\nLet me do my job.\tLaissez-moi faire mon boulot !\nLet me do my job.\tLaissez-moi faire mon travail !\nLet me handle it.\tLaisse-moi gérer ça !\nLet me handle it.\tLaissez-moi gérer ça !\nLet me handle it.\tLaisse-moi m'en charger !\nLet me handle it.\tLaissez-moi m'en charger !\nLet me handle it.\tLaisse-moi m'en débrouiller !\nLet me handle it.\tLaissez-moi m'en débrouiller !\nLet me handle it.\tLaisse-moi faire !\nLet me handle it.\tLaissez-moi faire !\nLet me handle it.\tLaisse-moi m'en occuper !\nLet me handle it.\tLaissez-moi m'en occuper !\nLet me repair it.\tLaisse-moi le réparer.\nLet me repair it.\tLaissez-moi le réparer.\nLet me stop here.\tLaisse-moi m'arrêter ici.\nLet me stop here.\tLaissez-moi m'arrêter ici.\nLet me take that.\tLaisse-moi prendre ça.\nLet me try again.\tLaisse-moi essayer à nouveau !\nLet me try again.\tLaissez-moi essayer à nouveau !\nLet me try again.\tLaissez-moi réessayer !\nLet me try again.\tLaisse-moi réessayer !\nLet's be careful.\tSoyons prudents !\nLet's be friends.\tSoyons amies.\nLet's compromise.\tFaisons un compromis.\nLet's cross here.\tTraversons ici.\nLet's do our job.\tLaissez-nous faire notre boulot !\nLet's do our job.\tFaisons notre boulot !\nLet's go ask Tom.\tAllons demander à Tom.\nLet's go by taxi.\tAllons-y en taxi.\nLet's go camping.\tAllons camper.\nLet's go dancing.\tAllons danser.\nLet's have lunch.\tAllons déjeuner.\nLet's have sushi.\tPrenons des sushi.\nLet's just do it.\tFaisons-le, simplement !\nLet's keep quiet.\tRestons calmes.\nLet's keep quiet.\tRestons silencieux.\nLet's play cards.\tJouons aux cartes.\nLet's play catch.\tJouons à la balle.\nLet's play house.\tJouons au papa et à la maman !\nLet's start here.\tCommençons ici !\nLet's take a bus.\tPrenons un bus.\nLight the candle.\tAllume le cierge !\nLight the candle.\tAllumez le cierge !\nLight the candle.\tAllume la bougie !\nLight the candle.\tAllumez la bougie !\nListen carefully.\tÉcoute bien.\nListen carefully.\tÉcoute attentivement.\nLive free or die.\tVivre libre ou mourir.\nLook at that dog.\tRegarde ce chien !\nLook at that dog.\tVise ce chien !\nLook at that dog.\tRegardez ce chien !\nLook at that dog.\tVisez ce chien !\nLook at this one.\tRegarde celui-ci.\nLook at your map.\tRegarde ta carte.\nLook at your map.\tRegardez votre carte.\nLower your voice.\tBaisse la voix.\nLower your voice.\tBaissez la voix.\nMake your choice.\tFais ton choix.\nMake your choice.\tFaites votre choix.\nMary is charming.\tMarie est charmante.\nMary is divorced.\tMarie est divorcée.\nMary is my niece.\tMary est ma nièce.\nMay I assist you?\tPuis-je vous aider ?\nMay I be excused?\tPuis-je être excusé ?\nMay I come again?\tPuis-je revenir ?\nMay I open a can?\tPuis-je ouvrir une boîte ?\nMay I open a can?\tPuis-je ouvrir une cannette ?\nMay I smoke here?\tPuis-je fumer ici ?\nMaybe it'll snow.\tPeut-être neigera-t-il.\nMy boat is small.\tMon bateau est petit.\nMy eyes are blue.\tMes yeux sont bleus.\nMy eyes are sore.\tMes yeux sont douloureux.\nMy eyes are sore.\tJ'ai les yeux douloureux.\nMy eyes are sore.\tLes yeux me font mal.\nMy father is out.\tMon père est sorti.\nMy feet are cold.\tMes pieds sont froids.\nMy feet get cold.\tJ'ai froid aux pieds.\nMy glass is full.\tMon verre est plein.\nMy house is nice.\tMa maison est chouette.\nMy job is boring.\tMon boulot est ennuyeux.\nMy legs are fine.\tMes jambes vont bien.\nMy mouth is numb.\tJ'ai la bouche endormie.\nMy nose is itchy.\tLe nez me gratte.\nMy stomach hurts.\tJ'ai mal à l'estomac.\nMy stomach hurts.\tMon estomac me fait mal.\nMy tie is orange.\tMa cravate est orange.\nMy wallet's gone.\tMon portefeuille a disparu.\nMy wife beats me.\tMa femme me bat.\nNever tell a lie!\tNe dites jamais de mensonges.\nNever tell a lie!\tNe mens jamais !\nNever tell a lie.\tNe dites jamais de mensonges.\nNice to meet you.\tJe suis heureux de vous rencontrer.\nNice to meet you.\tEnchanté de faire votre connaissance.\nNo need to worry.\tPas de quoi s'inquiéter.\nNo one asked you.\tPersonne ne vous l'a demandé.\nNo one asked you.\tPersonne ne te l'a demandé.\nNo one can leave.\tPersonne ne peut partir.\nNo one disagreed.\tPersonne ne fut en désaccord.\nNo one disagreed.\tPersonne n'a été en désaccord.\nNo one disagreed.\tPersonne n'a exprimé de désaccord.\nNo one disagreed.\tPersonne n'exprima de désaccord.\nNo one helped me.\tPersonne ne m'aida.\nNo one is amused.\tPersonne ne trouve ça drôle.\nNo one is amused.\tPersonne ne goûte ton humour.\nNo one is amused.\tPersonne ne goûte votre humour.\nNo one is around.\tPersonne ne se trouve aux alentours.\nNo one is around.\tPersonne ne se trouve dans les environs.\nNo one is coming.\tPersonne ne vient.\nNo one knows why.\tPersonne ne sait pourquoi.\nNo one knows yet.\tPersonne ne le sait encore.\nNo one likes war.\tPersonne n'aime la guerre.\nNo one likes war.\tNul n'aime la guerre.\nNo one loves war.\tPersonne n'aime la guerre.\nNo one responded.\tPersonne ne répondit.\nNo one responded.\tPersonne n'a répondu.\nNo one says that.\tPersonne ne dit cela.\nNo one showed up.\tPersonne ne s'est montré.\nNo one thinks so.\tPersonne ne pense cela.\nNo one warned me.\tPersonne ne m'a prévenu.\nNo one was alive.\tPersonne n'était vivant.\nNo one was there.\tPersonne ne se trouvait là.\nNo one was there.\tPersonne n'était là.\nNo one was there.\tPersonne n'y était.\nNo one will care.\tPersonne ne s'en souciera.\nNo one will know.\tPersonne ne saura.\nNo one will know.\tPersonne ne le saura.\nNo one will talk.\tPersonne ne veut parler.\nNo one will talk.\tTout le monde se refuse à parler.\nNo one will talk.\tPersonne ne parlera.\nNo one's looking.\tPersonne ne regarde.\nNo one's perfect.\tNul n'est parfait.\nNo one's talking.\tPersonne ne parle.\nNo one's working.\tPersonne ne travaille.\nNo pain, no gain!\tOn n'a rien sans peine.\nNo pain, no gain!\tOn n'a rien sans effort.\nNo pain, no gain.\tOn n'a rien sans rien.\nNo pain, no gain.\tOn n'a rien sans peine.\nNobody does that.\tPersonne ne fait ça.\nNobody likes her.\tPersonne ne l'apprécie.\nNobody likes war.\tPersonne n'aime la guerre.\nNobody likes you.\tPersonne ne vous apprécie.\nNobody likes you.\tPersonne ne t'apprécie.\nNobody loves war.\tPersonne n'aime la guerre.\nNobody must know.\tPersonne ne doit savoir.\nNobody remembers.\tPersonne ne s'en souvient.\nNobody remembers.\tPersonne ne s'en rappelle.\nNobody showed up.\tPersonne n'est venu.\nNobody will know.\tPersonne ne saura.\nNobody's perfect.\tNul n'est parfait.\nNothing happened.\tRien ne s'est passé.\nNow I understand.\tMaintenant je comprends.\nNow I'm done for.\tJe laisse tomber.\nOh no, not again!\tOh non, pas encore !\nOh, I'm so sorry.\tOh, je suis désolé.\nOil is expensive.\tLe pétrole est onéreux.\nOpen the windows.\tOuvre les fenêtres !\nOpen the windows.\tOuvrez les fenêtres !\nOpen these doors.\tOuvre ces portes !\nOpen these doors.\tOuvrez ces portes !\nOur team can win.\tNotre équipe peut gagner.\nOur team may win.\tIl se peut que notre équipe gagne.\nPass me the salt.\tPasse-moi le sel.\nPeople are dying.\tLes gens meurent.\nPeople are dying.\tDes gens meurent.\nPeople will talk.\tLes gens parleront.\nPets are allowed.\tLes animaux sont autorisés.\nPlease answer me.\tS'il te plaît, réponds-moi.\nPlease be honest.\tJe te prie d'être honnête !\nPlease be honest.\tJe vous prie d'être honnête !\nPlease be honest.\tVeuillez être honnête !\nPlease be honest.\tJe vous prie d'être honnêtes !\nPlease be honest.\tVeuillez être honnêtes !\nPlease be polite.\tSoyez poli s'il vous plaît.\nPlease be polite.\tVeuillez vous montrer poli.\nPlease be polite.\tVeuillez vous montrer polis.\nPlease be polite.\tVeuillez vous montrer polie.\nPlease be polite.\tVeuillez vous montrer polies.\nPlease be polite.\tSois poli s'il te plaît.\nPlease come here.\tVenez ici, je vous prie.\nPlease copy this.\tS'il vous plaît, copiez ceci.\nPlease don't cry.\tS'il te plaît, ne pleure pas.\nPlease don't die!\tJe t'en prie, ne meurs pas !\nPlease don't die!\tJe t'en prie, crève pas !\nPlease don't die.\tS'il te plait, ne meurs pas.\nPlease don't die.\tS'il vous plait, ne mourez pas.\nPlease follow me.\tVeuillez me suivre.\nPlease follow me.\tSuivez-moi, je vous prie.\nPlease phone him.\tVeuillez l'appeler.\nPlease phone him.\tAppelle-le, s'il te plait.\nPlease sign here.\tVeuillez signer ici.\nPlease sign here.\tSigne ici, je te prie.\nPlease sit still.\tS'il vous plaît, tenez-vous tranquille.\nPlease sit still.\tS'il vous plaît, tenez-vous tranquilles.\nPlease sit still.\tS'il te plaît, tiens-toi tranquille.\nPlease try again.\tVeuillez essayer de nouveau.\nPlease try again.\tVeuillez à nouveau essayer.\nPlease try again.\tEssaie à nouveau, je te prie.\nPlease try again.\tEssaie de nouveau, je te prie.\nPlease wait here.\tAttendez ici, s'il vous plaît.\nPrepare yourself.\tPrépare-toi !\nPrepare yourself.\tApprête-toi !\nPrepare yourself.\tPréparez-vous !\nPrepare yourself.\tApprêtez-vous !\nPump up the tire.\tGonflez le pneu !\nPut on your coat.\tMets ton manteau.\nQuit complaining.\tArrête de te plaindre !\nQuit complaining.\tArrêtez de vous plaindre !\nQuit complaining.\tCessez de vous plaindre !\nQuit complaining.\tCesse de te plaindre !\nQuit hassling me.\tArrête de m'embêter !\nQuit hassling me.\tArrêtez de m'embêter !\nRabbits can swim.\tLes lapins savent nager.\nRaise your hands.\tLève les mains !\nRaise your hands.\tLevez les mains !\nRead the article.\tLis l'article.\nRead the article.\tLisez l'article.\nRed wine, please.\tDu vin rouge, s'il vous plait.\nRed wine, please.\tDu vin rouge, je vous prie.\nRed wine, please.\tDu vin rouge, s'il te plait.\nRome is in Italy.\tRome est en Italie.\nRoses smell good.\tLes roses sentent bon.\nSay it in French.\tDis-le en français.\nSay it in French.\tDites-le en français.\nSchool is boring.\tL'école, c'est ennuyeux !\nSchool's not fun.\tL'école, ce n'est pas drôle.\nSearch the house.\tFouille la maison !\nSearch the house.\tFouillez la maison !\nSee for yourself.\tVois par toi-même.\nSee for yourself.\tVoyez par vous-même.\nSee for yourself.\tVoyez par vous-mêmes.\nSee you at lunch.\tÀ midi !\nSee you tomorrow.\tÀ demain.\nSee you tomorrow.\tOn se voit demain !\nSee you tomorrow.\tOn se voit demain.\nSee you tomorrow.\tJe te verrai demain.\nSee you tomorrow.\tJe vous verrai demain.\nSee you tomorrow.\tNous nous verrons demain.\nShall I continue?\tDois-je continuer ?\nShall I help you?\tDevrais-je t'aider ?\nShall I help you?\tDois-je t'aider ?\nShe attacked him.\tElle l'a attaqué.\nShe became happy.\tElle devint heureuse.\nShe began crying.\tElle commença à pleurer.\nShe betrayed you.\tElle t'a trahi.\nShe betrayed you.\tElle vous a trahi.\nShe betrayed you.\tElle vous a trahies.\nShe betrayed you.\tElle vous a trahis.\nShe betrayed you.\tElle vous a trahie.\nShe betrayed you.\tElle t'a trahie.\nShe defeated him.\tElle l'a battu.\nShe despises him.\tElle le méprise.\nShe did it again.\tElle a recommencé.\nShe did it again.\tElle l'a fait à nouveau.\nShe did it again.\tElle l'a fait de nouveau.\nShe didn't reply.\tElle n'a pas répondu.\nShe didn't reply.\tElle ne répondit pas.\nShe died from TB.\tElle mourut de la tuberculose.\nShe died from TB.\tElle est morte de la tuberculose.\nShe died in 1960.\tElle mourut en 1960.\nShe disliked him.\tElle ne l'aimait pas.\nShe disliked him.\tElle éprouvait pour lui une aversion.\nShe divorced him.\tElle en a divorcé.\nShe does know it.\tElle sait certainement cela.\nShe has dry hair.\tElle a une chevelure sèche.\nShe has no shame.\tElle n'a pas de honte.\nShe has wet hair.\tElle a les cheveux mouillés.\nShe idolized him.\tElle l'idolâtrait.\nShe insulted him.\tElle l'insulta.\nShe insulted him.\tElle l'a insulté.\nShe is a pianist.\tElle est pianiste.\nShe is a student.\tElle est étudiante.\nShe is easygoing.\tElle est facile à vivre.\nShe is mad at me.\tElle est en colère contre moi.\nShe is no beauty.\tCe n'est pas une beauté.\nShe is not wrong.\tElle n'a pas tort.\nShe is obstinate.\tElle est obstinée.\nShe is on a diet.\tElle est au régime.\nShe is very busy.\tElle est très occupée.\nShe is very wise.\tElle est très sage.\nShe just told me.\tElle vient de me le dire.\nShe kept working.\tElle continua à travailler.\nShe kept working.\tElle a continué à travailler.\nShe lost her way.\tElle perdit son chemin.\nShe made a scene.\tElle a fait une scène.\nShe made him cry.\tElle l'a fait pleurer.\nShe made him cry.\tElle le fit pleurer.\nShe may not come.\tPeut-être ne viendra-t-elle pas.\nShe must be sick.\tElle doit être malade.\nShe put on socks.\tElle mit des chaussettes.\nShe put on socks.\tElle a mis des chaussettes.\nShe rejected him.\tElle le rejeta.\nShe rejected him.\tElle l'a rejeté.\nShe repulses him.\tElle le repousse.\nShe rode a camel.\tElle est montée sur un chameau.\nShe rode a camel.\tElle a monté un chameau.\nShe said goodbye.\tElle a dit \"au revoir\".\nShe smokes a lot.\tElle fume beaucoup.\nShe spoke wisely.\tElle a parlé avec sagesse.\nShe stared at me.\tElle m'a fixé.\nShe stared at me.\tElle m'a fixée.\nShe startled him.\tElle l'a fait sursauter.\nShe stood by him.\tElle se tenait à côté de lui.\nShe studies hard.\tElle étudie ardemment.\nShe surprised me.\tElle m'a surpris.\nShe talked a lot.\tElle a beaucoup parlé.\nShe took my hand.\tElle m'a pris par la main.\nShe took my hand.\tElle me prit la main.\nShe was homesick.\tElle avait le mal du pays.\nShe was in agony.\tElle était à l'agonie.\nShe was promoted.\tElle fut promue.\nShe was swimming.\tElle était en train de nager.\nShe wore glasses.\tElle a porté des lunettes.\nShe wore glasses.\tElle portait des lunettes.\nShe worships him.\tElle l'adore.\nShe worships him.\tElle le vénère.\nShe's a bad liar.\tElle ment mal.\nShe's nice to me.\tElle est sympa avec moi.\nShe's not a liar.\tCe n'est pas une menteuse.\nShe's very upset.\tElle est très contrariée.\nShe's very upset.\tElle est très fâchée.\nShould we cancel?\tDevrions-nous annuler ?\nShut that boy up.\tFaites taire ce gamin.\nSit down, please.\tAsseyez-vous, s'il vous plaît.\nSo what happened?\tAlors, que s'est-il passé ?\nSome pitied them.\tCertains leur firent pitié.\nSomebody laughed.\tQuelqu'un a ri.\nSomebody laughed.\tQuelqu'un rit.\nSomebody laughed.\tQuelqu'un rigola.\nSomebody laughed.\tQuelqu'un a rigolé.\nSomebody saw you.\tQuelqu'un t'a vu.\nSomebody saw you.\tQuelqu'un t'a vue.\nSomebody saw you.\tQuelqu'un vous a vu.\nSomebody saw you.\tQuelqu'un vous a vue.\nSomebody saw you.\tQuelqu'un vous a vues.\nSomebody saw you.\tQuelqu'un vous a vus.\nSomeone is lying.\tQuelqu'un ment.\nSomeone screamed.\tQuelqu'un a crié.\nSomeone screamed.\tQuelqu'un cria.\nSomeone's coming.\tQuelqu'un vient.\nSomeone's coming.\tQuelqu'un est en train d'arriver.\nSorry to be late.\tDésolé d'être en retard.\nSorry, I am late.\tDésolé, je suis en retard.\nSpiders scare me.\tJ'ai peur des araignées.\nSpit it out, Tom.\tCrache le morceau, Tom.\nSpit it out, Tom.\tRecrache-le, Tom.\nSpit it out, Tom.\tCrache-la, Tom.\nSpring is coming.\tLe printemps approche.\nStand up, please.\tLevez-vous, s'il vous plaît.\nStay in your car.\tReste dans ta voiture.\nStay in your car.\tRestez dans votre voiture.\nStay out of this.\tReste en dehors de ça !\nStay out of this.\tRestez en dehors de ça !\nStay right there.\tReste juste là !\nStay right there.\tRestez juste là !\nStop being cruel.\tCesse d'être cruel.\nStop being cruel.\tCessez d'être cruel.\nStop being cruel.\tCesse d'être cruelle.\nStop being cruel.\tCessez d'être cruelle.\nStop being cruel.\tCessez d'être cruelles.\nStop being cruel.\tCessez d'être cruels.\nStop right there.\tArrête-toi juste là !\nStop right there.\tArrêtez-vous juste là !\nStop showing off!\tArrête de frimer !\nStop showing off!\tArrête de te la péter !\nStop showing off!\tArrêtez de frimer !\nStop showing off!\tArrêtez de vous la péter !\nStop the car now.\tArrête la voiture, maintenant !\nStop the car now.\tArrêtez la voiture, maintenant !\nSummer has ended.\tL'été est fini.\nSummer is coming.\tL'été approche.\nSwimming is easy.\tNager, c'est facile.\nTake Tom outside.\tEmmène Tom dehors.\nTake Tom outside.\tEmmenez Tom dehors.\nTake a short cut.\tPrends un raccourci !\nTake a short cut.\tPrenez un raccourci !\nTell Dad to come.\tDis à Papa de venir.\nTell Tom to wait.\tDis à Tom d'attendre.\nTell Tom to wait.\tDites à Tom d'attendre.\nTell me about it!\tÀ qui le dis-tu !\nTell me about it!\tTu parles !\nTell me about it!\tVous parlez !\nTell me about it.\tParlez-moi de cela.\nThank you kindly.\tMerci bien.\nThanks a million.\tMerci bien.\nThanks a million.\tMille mercis.\nThanks very much.\tMerci beaucoup !\nThanks very much.\tMerci bien.\nThanks very much.\tMille mercis.\nThat book is old.\tCe livre est vieux.\nThat car is hers.\tCette voiture est la sienne.\nThat didn't work.\tÇa n'a pas marché.\nThat didn't work.\tÇa n'a pas fonctionné.\nThat explains it.\tÇa l'explique.\nThat helps a bit.\tÇa aide un peu.\nThat helps a lot.\tCela aide beaucoup.\nThat is a pagoda.\tC'est une pagode.\nThat is a pencil.\tC'est un crayon.\nThat is not true.\tCe n'est pas vrai.\nThat is old news.\tOn le sait déjà.\nThat made me cry.\tÇa m'a fait pleurer.\nThat makes sense.\tÇa se tient.\nThat plan failed.\tCe plan a échoué.\nThat seems right.\tÇa semble exact.\nThat seems right.\tÇa semble correct.\nThat smells nice.\tÇa sent bon.\nThat was amazing.\tC'était super.\nThat was amazing.\tC'était génial.\nThat was amazing.\tC'était incroyable.\nThat was awesome.\tC'était super.\nThat was awesome.\tC'était génial.\nThat was so cool.\tC'était tellement bien.\nThat was so cool.\tC'était tellement sympa.\nThat wasn't good.\tCe n'était pas bien.\nThat wasn't good.\tCe n'était pas bon.\nThat will not do.\tÇa ne fera pas le compte.\nThat's a big one.\tC'en est un gros.\nThat's a big one.\tC'en est un grand.\nThat's a promise.\tC'est une promesse.\nThat's a promise.\tIl s'agit d'une promesse.\nThat's about all.\tC'est à peu près tout.\nThat's all I ask.\tC'est tout ce que je demande.\nThat's all I did.\tC'est tout ce que j'ai fait.\nThat's all I got.\tC'est tout ce que j'ai obtenu.\nThat's all I saw.\tC'est tout ce que j'ai vu.\nThat's all wrong.\tC'est complètement faux.\nThat's avoidable.\tOn peut l'éviter.\nThat's brilliant!\tC'est grand !\nThat's fantastic.\tC'est fantastique.\nThat's hilarious.\tC'est hilarant.\nThat's his house.\tC'est sa demeure.\nThat's how it is.\tC'est comme ça.\nThat's idle talk.\tCe sont des paroles en l'air.\nThat's important.\tC'est important.\nThat's ludicrous.\tC'est absurde.\nThat's ludicrous.\tC'est ridicule.\nThat's my affair.\tC'est mon problème.\nThat's no excuse.\tCe n'est pas une excuse.\nThat's no excuse.\tÇa ne constitue pas une excuse.\nThat's no secret.\tCe n'est pas un secret.\nThat's not a job.\tCe n'est pas un travail.\nThat's not funny.\tCe n'est pas drôle.\nThat's not funny.\tCe n'est pas marrant.\nThat's not funny.\tCe n'est pas drôle !\nThat's not wrong.\tCe n'est pas faux.\nThat's not yours.\tCe n'est pas à toi.\nThat's not yours.\tCe n'est pas à vous.\nThat's our fault.\tC'est de notre faute.\nThat's our house.\tC'est notre maison.\nThat's our house.\tC'est notre demeure.\nThat's our house.\tC'est notre résidence.\nThat's so ironic.\tC'est tellement ironique !\nThat's so untrue.\tC'est tellement faux.\nThat's the point.\tC'est l'idée.\nThat's troubling.\tC'est inquiétant.\nThat's true, too.\tC'est également vrai.\nThat's true, too.\tC'est vrai aussi.\nThat's upsetting.\tC'est déplaisant.\nThat's upsetting.\tC'est pénible.\nThat's upsetting.\tC'est vexant.\nThat's very easy.\tC'est fort aisé.\nThat's very true.\tC'est très vrai.\nThat's your duty.\tC’est ton devoir.\nThat's your duty.\tIl en va de votre devoir.\nThe TV is broken.\tLa télé est cassée.\nThe answer is no.\tLa réponse est : non.\nThe answer's yes.\tLa réponse est « oui ».\nThe apple is red.\tLa pomme est rouge.\nThe bill, please.\tL'addition, s'il vous plait.\nThe bill, please.\tJ'aimerais la note, je vous prie.\nThe bill, please.\tL'addition, s'il vous plaît.\nThe bird is dead.\tL'oiseau est mort.\nThe book is easy.\tLe livre est facile.\nThe book is here.\tLe livre est ici.\nThe book is mine.\tC'est mon livre.\nThe book is mine.\tLe livre est à moi.\nThe bus was full.\tLe bus était plein.\nThe car is ready.\tLa voiture est prête.\nThe car is ready.\tLa bagnole est prête.\nThe cat is black.\tLe chat est noir.\nThe dog is dying.\tLe chien est en train de mourir.\nThe dog is dying.\tLe chien est mourant.\nThe dog is white.\tLe chien est blanc.\nThe dog was dead.\tLe chien était mort.\nThe dogs are wet.\tLes chiens sont mouillés.\nThe door creaked.\tLa porte grinça.\nThe food is cold.\tLa nourriture est froide.\nThe game is over.\tLes jeux sont faits !\nThe game is over.\tLa partie est terminée.\nThe game is over.\tFini de jouer.\nThe joke's on us.\tC'est nous, les dindons de la farce ?\nThe joke's on us.\tOn se moque de nous.\nThe joke's on us.\tLa blague se retourne contre nous.\nThe jury is hung.\tLe jury est divisé.\nThe light is off.\tLa lumière est éteinte.\nThe light is out.\tLa lumière est éteinte.\nThe light was on.\tLa lumière était allumée.\nThe line is busy.\tÇa sonne occupé.\nThe line is busy.\tLa ligne est occupée.\nThe man is right.\tLe type a raison.\nThe man is right.\tL'homme a raison.\nThe mass is over.\tLa messe est dite.\nThe milk is sour.\tLe lait est aigre.\nThe night is hot.\tLa nuit est chaude.\nThe pain is gone.\tLa douleur a disparu.\nThe party's over.\tLa fête est finie.\nThe sea is rough.\tLa mer est agitée.\nThe soup is cold.\tLe potage est froid.\nThe switch is on.\tL'interrupteur est enclanché.\nThe tank is full.\tLe réservoir est plein.\nThe twins smiled.\tLes jumeaux sourirent.\nThe twins smiled.\tLes jumeaux ont souri.\nThe water is hot.\tL'eau est brûlante.\nThe water is hot.\tL'eau est chaude.\nThe water is icy.\tL'eau est glacée.\nThe water's cold.\tL'eau est froide.\nThe water's warm.\tL'eau est chaude.\nThe well ran dry.\tLe puits s'assécha.\nThe well ran dry.\tLe puits se tarit.\nThere is no hope.\tIl n'y a pas d'espoir.\nThere is no hope.\tIl n'y a aucun espoir.\nThere's no doubt.\tIl n'y a aucun doute.\nThere's no guard.\tIl n'y a pas de garde.\nThere's no guard.\tIl n'y a aucun garde.\nThere's no hurry.\tIl n'y a pas d'urgence.\nThere's no hurry.\tIl n'y a pas le feu au lac.\nThere's no hurry.\tOn se calme.\nThere's no knife.\tIl n'y a pas de couteau.\nThere's no limit.\tIl n'y a pas de limite.\nThere's no limit.\tIl n'y a aucune limite.\nThere's no money.\tIl n'y a pas d'argent.\nThere's no proof.\tIl n'y a pas de preuve.\nThere's no sugar.\tIl n'y a pas de sucre.\nThese are my CDs.\tCe sont mes CDs.\nThey all changed.\tIls ont tous changé.\nThey all changed.\tElles ont toutes changé.\nThey all cheated.\tIls ont tous triché.\nThey all cheated.\tElles ont toutes triché.\nThey all cheered.\tIls acclamèrent tous.\nThey all cheered.\tElles acclamèrent toutes.\nThey all drowned.\tIls se sont tous noyés.\nThey all drowned.\tElles se sont toutes noyées.\nThey all entered.\tIls entrèrent tous.\nThey all entered.\tElles entrèrent toutes.\nThey all entered.\tIls sont tous entrés.\nThey all entered.\tElles sont toutes entrées.\nThey all scoffed.\tIls ont tous raillé.\nThey all scoffed.\tElles ont toutes raillé.\nThey all stopped.\tIls se sont tous arrêtés.\nThey all stopped.\tElles se sont toutes arrêtées.\nThey all stopped.\tIls ont tous arrêté.\nThey all stopped.\tElles ont toutes arrêté.\nThey all watched.\tIls ont tous regardé.\nThey all watched.\tElles ont toutes regardé.\nThey are Russian.\tIls sont russes.\nThey are Russian.\tElles sont russes.\nThey are arguing.\tIls se disputent.\nThey are arguing.\tIls sont en train de se disputer.\nThey are artists.\tIls sont artistes.\nThey are artists.\tElles sont artistes.\nThey are doctors.\tIls sont médecins.\nThey are doctors.\tElles sont médecins.\nThey are singers.\tIls sont chanteurs.\nThey blocked her.\tIls l'ont bloquée.\nThey calmed down.\tElles se sont calmées.\nThey deceived us.\tIls nous ont trompés.\nThey deceived us.\tElles nous ont trompés.\nThey deserved it.\tElles l'ont mérité.\nThey deserved it.\tIls l'ont mérité.\nThey despise you.\tElles te méprisent.\nThey despise you.\tIls te méprisent.\nThey despise you.\tElles vous méprisent.\nThey despise you.\tIls vous méprisent.\nThey disappeared.\tIls ont disparu.\nThey disappeared.\tElles ont disparu.\nThey go shopping.\tIls vont faire des emplettes.\nThey go shopping.\tElles vont faire des emplettes.\nThey got married.\tIls se sont mariés.\nThey grew closer.\tIls s'approchèrent.\nThey grew closer.\tElles s'approchèrent.\nThey grew closer.\tIls se sont approchés.\nThey grew closer.\tElles se sont approchées.\nThey had no food.\tIls n'avaient pas de nourriture.\nThey lied to you.\tOn vous a menti.\nThey like apples.\tIls aiment les pommes.\nThey live nearby.\tIls vivent à proximité.\nThey love coffee.\tIls adorent le café.\nThey love coffee.\tElles adorent le café.\nThey made her go.\tIls l'obligèrent à partir.\nThey made her go.\tIls la firent partir.\nThey saw nothing.\tElles n'ont rien vu.\nThey took a walk.\tElles firent une promenade.\nThey took a walk.\tIls firent une promenade.\nThey trusted you.\tIls te faisaient confiance.\nThey trusted you.\tElles te faisaient confiance.\nThey trusted you.\tIls t'ont fait confiance.\nThey trusted you.\tElles t'ont fait confiance.\nThey trusted you.\tIls vous ont fait confiance.\nThey trusted you.\tElles vous ont fait confiance.\nThey trusted you.\tIls vous faisaient confiance.\nThey trusted you.\tElles vous faisaient confiance.\nThey'll kill you.\tIls te tueront.\nThey'll kill you.\tElles te tueront.\nThey'll kill you.\tIls vous tueront.\nThey'll kill you.\tElles vous tueront.\nThey're all dead.\tIls sont tous morts.\nThey're all dead.\tIls sont tous décédés.\nThey're all dead.\tElles sont toutes décédées.\nThey're all dead.\tElles sont toutes mortes.\nThey're all fake.\tIls sont tous faux.\nThey're all fake.\tElles sont toutes fausses.\nThey're all gone.\tIls sont tous partis.\nThey're all gone.\tElles sont toutes parties.\nThey're all gone.\tIls ont tous disparu.\nThey're all gone.\tElles ont toutes disparu.\nThey're all here.\tIls sont tous là.\nThey're all here.\tElles sont toutes là.\nThey're all here.\tIls sont tous ici.\nThey're all here.\tElles sont toutes ici.\nThey're all mine.\tIls sont tous à moi.\nThey're all mine.\tElles sont toutes à moi.\nThey're all mine.\tCe sont tous les miens.\nThey're all mine.\tCe sont toutes les miennes.\nThey're all nuts.\tIls sont tous dingues.\nThey're all nuts.\tElles sont toutes dingues.\nThey're all safe.\tIls sont tous en sécurité.\nThey're all safe.\tElles sont toutes en sécurité.\nThey're not dead.\tIls ne sont pas morts.\nThey're not dead.\tElles ne sont pas mortes.\nThey're not evil.\tIls ne sont pas mauvais.\nThey're not evil.\tElles ne sont pas mauvaises.\nThey're not mine.\tCe ne sont pas les miens.\nThey're so funny.\tIls sont si drôles.\nThey're stalling.\tIls sont en train de temporiser.\nThey're stalling.\tIls sont en train de gagner du temps.\nThey're stalling.\tElles sont en train de gagner du temps.\nThey're stalling.\tElles sont en train de temporiser.\nThey're students.\tCe sont des étudiants.\nThey're students.\tCe sont des étudiantes.\nThey're students.\tCe sont des élèves.\nThey're students.\tElles sont étudiantes.\nThey're students.\tIls sont étudiants.\nThey're traitors.\tCe sont des traîtres.\nThey've all left.\tIls sont tous partis.\nThey've all left.\tElles sont toutes parties.\nThings got weird.\tLes choses devinrent bizarres.\nThis and no more.\tCeci et rien de plus.\nThis bed is cold.\tCe lit est froid.\nThis book is new.\tCe livre est nouveau.\nThis book is new.\tCe livre est neuf.\nThis book is old.\tCe livre est vieux.\nThis car is fast.\tCette voiture est rapide.\nThis car is mine.\tC'est ma voiture.\nThis doesn't fit.\tÇa ne colle pas.\nThis doesn't fit.\tÇa ne correspond pas.\nThis doesn't fit.\tÇa n'est pas la bonne taille.\nThis dog is mine.\tCe chien est à moi.\nThis feels right.\tÇa semble correct.\nThis game is fun.\tCe jeu est amusant.\nThis is Room 839.\tC'est la chambre 839.\nThis is Room 839.\tC'est la Salle 839.\nThis is a hybrid.\tC'est une hybride.\nThis is a hybrid.\tC'est un hybride.\nThis is a pencil.\tCeci est un crayon.\nThis is accurate.\tC'est exact.\nThis is an order.\tC'est un ordre.\nThis is annoying.\tC’est fâcheux.\nThis is bad news.\tCe sont de mauvaises nouvelles.\nThis is hopeless.\tC'est sans espoir.\nThis is insanity.\tC'est la folie.\nThis is my coach.\tC'est mon entraîneur.\nThis is my horse.\tCe cheval est à moi.\nThis is my house.\tC'est ma maison.\nThis is nonsense.\tC'est absurde.\nThis is nonsense.\tCe sont des balivernes.\nThis is not good.\tCe n'est pas bon.\nThis is not safe.\tCe n'est pas sans danger.\nThis is not true.\tCe n'est pas vrai.\nThis is not true.\tC'est pas vrai.\nThis is official.\tC'est officiel.\nThis is old news.\tCe sont de vieilles saucisses.\nThis is old news.\tC'est du réchauffé.\nThis is our home.\tC'est notre maison.\nThis is personal.\tC'est personnel.\nThis is puzzling.\tJe trouve cela curieux.\nThis is required.\tC'est requis.\nThis is shameful.\tC'est honteux.\nThis is so crazy.\tC'est tellement dingue.\nThis is terrible.\tC'est terrible.\nThis is too hard.\tC'est trop difficile.\nThis is too hard.\tC'est trop dur.\nThis is too long.\tC'est trop long.\nThis is your dog.\tVoici ton chien.\nThis is your key.\tC'est votre clé.\nThis isn't funny.\tCe n'est pas marrant.\nThis isn't funny.\tCe n'est pas amusant.\nThis isn't funny.\tCe n'est pas drôle !\nThis isn't legal.\tCeci n'est pas légal.\nThis isn't legal.\tCe n'est pas légal.\nThis made me sad.\tCela m'a rendu triste.\nThis made me sad.\tCela m'a rendue triste.\nThis makes sense.\tÇa se tient.\nThis one's on me.\tCelui-ci est pour moi.\nThis one's on me.\tCelle-ci est pour moi.\nThis seems risky.\tÇa a l'air risqué.\nThis seems risky.\tCela semble être risqué.\nThis smells good.\tÇa sent bon.\nThis tastes good.\tÇa a bon goût.\nThis was my idea.\tC'était mon idée.\nThose are my CDs.\tCe sont mes CDs.\nToday is Tuesday.\tAujourd'hui, c'est mardi.\nToday is Tuesday.\tAujourd'hui, on est mardi.\nTom almost cried.\tTom a presque pleuré.\nTom ate my lunch.\tTom a mangé mon déjeuner.\nTom ate my lunch.\tTom mangea mon déjeuner.\nTom brought that.\tTom a apporté ça.\nTom can run fast.\tTom peut courir vite.\nTom can't see us.\tTom ne peut pas nous voir.\nTom changed jobs.\tTom a changé de travail.\nTom changed jobs.\tTom a changé de boulot.\nTom changed jobs.\tTom changea de travail.\nTom clearly lied.\tTom a manifestement menti.\nTom cooks for us.\tTom cuisine pour nous.\nTom didn't laugh.\tTom n'a pas ri.\nTom died at home.\tTom est mort chez lui.\nTom died at home.\tTom mourut chez lui.\nTom died from TB.\tTom est mort de la tuberculose.\nTom doesn't know.\tTom ne sait pas.\nTom doesn't know.\tTom n'est pas au courant.\nTom doesn't read.\tTom ne lit pas.\nTom drinks a lot.\tTom boit beaucoup.\nTom had jeans on.\tTom portait un jean.\nTom has big lips.\tTom a de grosses lèvres.\nTom has charisma.\tTom a du charisme.\nTom has red hair.\tTom a les cheveux roux.\nTom has red hair.\tTom a les cheveux rouges.\nTom hates school.\tTom déteste l'école.\nTom hates sports.\tTom déteste le sport.\nTom helped again.\tTom a de nouveau aidé.\nTom hurt himself.\tTom s'est fait mal.\nTom is Mary's ex.\tTom est l'ex de Mary.\nTom is a monster.\tTom est un monstre.\nTom is a mystery.\tTom est un mystère.\nTom is a student.\tTom est étudiant.\nTom is all alone.\tTom est tout seul.\nTom is all alone.\tTom est complètement seul.\nTom is all right.\tTom va bien.\nTom is an intern.\tTom est interne.\nTom is an orphan.\tTom est orphelin.\nTom is at school.\tTom est à l'école.\nTom is bilingual.\tTom est bilingue.\nTom is dangerous.\tTom est dangereux.\nTom is forgetful.\tTom est distrait.\nTom is important.\tTom est important.\nTom is like that.\tTom est comme ça.\nTom is mad at us.\tTom est en colère contre nous.\nTom is merciless.\tTom est sans pitié.\nTom is merciless.\tTom est impitoyable.\nTom is my friend.\tTom est mon ami.\nTom is our guest.\tTom est notre invité.\nTom is the owner.\tTom est le propriétaire.\nTom is too young.\tTom est trop jeune.\nTom isn't a hero.\tTom n'est pas un héros.\nTom isn't crying.\tTom ne pleure pas.\nTom isn't crying.\tTom n'est pas en train de pleurer.\nTom isn't joking.\tTom ne rigole pas.\nTom isn't joking.\tTom ne blague pas.\nTom isn't strong.\tTom n'est pas fort.\nTom isn't stupid.\tTom n'est pas stupide.\nTom kept digging.\tTom continua de creuser.\nTom kept reading.\tTom continua de lire.\nTom kept singing.\tTom continua de chanter.\nTom kept singing.\tTom a continué de chanter.\nTom killed a man.\tTom a tué un homme.\nTom killed a man.\tTom tua un homme.\nTom likes cheese.\tTom aime le fromage.\nTom likes ponies.\tTom aime les poneys.\nTom likes to run.\tTom aime courir.\nTom looked young.\tTom avait l'air jeune.\nTom lost his hat.\tTom a perdu son chapeau.\nTom lost his job.\tTom a perdu son emploi.\nTom lost the bet.\tTom a perdu son pari.\nTom needs a bath.\tTom a besoin d'un bain.\nTom never sleeps.\tTom ne dort jamais.\nTom often smiles.\tTom sourit souvent.\nTom plays tennis.\tTom joue au tennis.\nTom punched Mary.\tTom a frappé Mary.\nTom punched Mary.\tTom a mis un coup de poing à Mary.\nTom punched Mary.\tTom mit un coup de poing à Mary.\nTom punched Mary.\tTom frappa Mary.\nTom reads slowly.\tTom lit lentement.\nTom sounds angry.\tTom semble en colère.\nTom sounds angry.\tTom a l'air en colère.\nTom sounds angry.\tTom paraît énervé.\nTom spoke calmly.\tTom parla calmement.\nTom stopped Mary.\tTom arrêta Marie.\nTom studies hard.\tTom étudie beaucoup.\nTom studies hard.\tTom étudie sérieusement.\nTom swears a lot.\tTom jure beaucoup.\nTom took the job.\tTom prit le poste.\nTom walks slowly.\tTom marche lentement.\nTom wants a beer.\tTom veut une bière.\nTom was abducted.\tTom était kidnappé.\nTom was cheerful.\tTom était de bonne humeur.\nTom was upstairs.\tTom était en haut.\nTom was upstairs.\tTom était à l'étage.\nTom went fishing.\tTom est parti pêcher.\nTom will find it.\tTom le trouvera.\nTom won the game.\tTom a gagné la partie.\nTom won the game.\tTom remporta le match.\nTom won't retire.\tTom ne prendra pas sa retraite.\nTom's big-headed.\tTom a la grosse tête.\nTom's big-headed.\tTom est un crâneur.\nTom's distracted.\tTom est distrait.\nTrust me on that.\tCrois-en moi !\nTrust me on that.\tCroyez-en moi !\nTrust me on that.\tFie-toi à moi là-dessus !\nTrust me on that.\tFiez-vous à moi en la matière !\nTrust me on this.\tCrois-moi en la matière.\nTrust me on this.\tCroyez-moi en la matière.\nTry another door.\tEssaie une autre porte !\nTry another door.\tEssayez une autre porte !\nTry it once more.\tEssaie encore une fois.\nTry not to laugh.\tEssaie de ne pas rire.\nTry not to laugh.\tEssayez de ne pas rire.\nTry not to laugh.\tEssaie de ne pas rigoler.\nTry not to laugh.\tEssayez de ne pas rigoler.\nTry not to panic.\tEssaie de ne pas paniquer !\nTry not to panic.\tEssayez de ne pas paniquer !\nTry not to worry.\tEssaie de ne pas t'en faire !\nTry not to worry.\tEssayez de ne pas vous en faire !\nTry some of this.\tEssaie de ça !\nTry some of this.\tEssayez de ça !\nTry this instead.\tEssaye plutôt ceci.\nTry this instead.\tEssayez plutôt ceci.\nTry to calm down.\tEssaie de te calmer !\nTry to calm down.\tEssayez de vous calmer !\nTry to go slower.\tEssaie d'aller plus lentement.\nTry to go slower.\tEssayez d'aller plus lentement.\nTry to look busy.\tEssaie d'avoir l'air occupé.\nTurn right there.\tTournez là-devant à droite.\nTurn right there.\tTournez-là à droite.\nTurn to the left.\tTourne à gauche.\nTurn to the left.\tTournez à gauche.\nWalk ahead of me.\tMarche devant moi.\nWar's not pretty.\tLa guerre n'est pas belle.\nWas anybody hurt?\tQuiconque a-t-il été blessé ?\nWas anybody hurt?\tQui que ce soit a-t-il été blessé ?\nWas it necessary?\tÉtait-ce nécessaire ?\nWas there a fire?\tY avait-il un feu ?\nWasn't it enough?\tN'était-ce pas assez ?\nWatch your speed.\tSurveille ta vitesse.\nWatch yourselves.\tPrenez garde !\nWatch yourselves.\tFaites attention à vous !\nWater the plants.\tArrose les plantes !\nWater the plants.\tArrosez les plantes !\nWe all have kids.\tNous avons tous des gosses.\nWe all have kids.\tNous avons toutes des gosses.\nWe are not alone.\tNous ne sommes pas seuls.\nWe are not alone.\tNous ne sommes pas seules.\nWe arrived first.\tNous arrivâmes les premiers.\nWe arrived first.\tNous sommes arrivés les premiers.\nWe ate swordfish.\tNous avons mangé de l'espadon.\nWe both competed.\tNous avons tous deux concouru.\nWe both competed.\tNous avons toutes deux concouru.\nWe both love you.\tNous t'aimons tous les deux.\nWe both love you.\tNous vous aimons tous les deux.\nWe came together.\tNous sommes venus ensemble.\nWe came together.\tNous sommes venues ensemble.\nWe can all dream.\tNous pouvons tous rêver.\nWe can all dream.\tNous pouvons toutes rêver.\nWe can still win.\tNous pouvons encore gagner.\nWe can't be sure.\tNous ne pouvons en être certains.\nWe can't be sure.\tNous ne pouvons en être certaines.\nWe can't do that.\tNous ne pouvons pas le faire.\nWe can't give up.\tNous ne parvenons pas à admettre notre défaite.\nWe can't give up.\tNous ne pouvons pas arrêter.\nWe can't give up.\tNous ne parvenons pas à arrêter.\nWe can't go back.\tNous ne pouvons revenir en arrière.\nWe considered it.\tNous y avons songé.\nWe demand action.\tNous exigeons des actes.\nWe depend on you.\tNous dépendons de toi.\nWe depend on you.\tNous dépendons de vous.\nWe do not forget.\tNous n'oublions pas.\nWe enjoy talking.\tNous avons plaisir à parler.\nWe enjoy talking.\tNous prenons plaisir à bavarder.\nWe found it here.\tNous l'avons trouvé ici.\nWe found it here.\tNous l'avons trouvée ici.\nWe gave our word.\tNous avons donné notre parole.\nWe gave our word.\tNous donnâmes notre parole.\nWe got separated.\tNous nous sommes séparés.\nWe got separated.\tNous avons été séparés.\nWe got separated.\tNous nous sommes séparées.\nWe got separated.\tNous avons été séparées.\nWe got too close.\tOn s'est trop rapprochés.\nWe had a bad day.\tNous avons passé une mauvaise journée.\nWe hate violence.\tNous avons la violence en horreur.\nWe have a theory.\tNous avons une théorie.\nWe have homework.\tNous avons des devoirs.\nWe have injuries.\tNous avons des blessures.\nWe have no money.\tNous ne disposons d'aucun argent.\nWe have no money.\tNous n'avons aucun argent.\nWe have no proof.\tNous ne disposons d'aucune preuve.\nWe have no proof.\tNous n'avons aucune preuve.\nWe have no water.\tNous n'avons pas d'eau.\nWe have no water.\tNous sommes dépourvues d'eau.\nWe have no water.\tNous sommes dépourvus d'eau.\nWe have no water.\tNous ne disposons pas d'eau.\nWe have to split.\tNous devons nous diviser.\nWe have two ears.\tNous avons deux oreilles.\nWe have two kids.\tNous avons deux enfants.\nWe have two sons.\tNous avons deux fils.\nWe heard a noise.\tNous avons entendu un bruit.\nWe heard screams.\tNous avons entendu des cris.\nWe just got here.\tNous venons d'arriver ici.\nWe just got here.\tNous venons d'arriver.\nWe kept our word.\tNous tînmes parole.\nWe kept our word.\tNous avons tenu parole.\nWe know all this.\tNous savons tout cela.\nWe know all this.\tOn sait tout ça.\nWe know it works.\tNous savons que cela fonctionne.\nWe know it works.\tOn sait que ça marche.\nWe left by train.\tNous sommes partis en train.\nWe left together.\tNous partîmes de conserve.\nWe like children.\tNous aimons les enfants.\nWe live in peace.\tNous vivons en paix.\nWe live together.\tNous vivons ensemble.\nWe lost the game.\tNous perdîmes la partie.\nWe lost the game.\tNous avons perdu la partie.\nWe make mistakes.\tNous commettons des erreurs.\nWe mean business.\tCe que nous voulons, c'est faire des affaires.\nWe meant no harm.\tNous n'avions pas de mauvaise intention.\nWe meant no harm.\tNous ne pensions pas à mal.\nWe met last week.\tNous nous sommes rencontrés la semaine dernière.\nWe met last week.\tNous nous sommes rencontrées la semaine dernière.\nWe met on Sunday.\tNous nous sommes rencontrés dimanche.\nWe must continue.\tIl nous faut continuer.\nWe must evacuate.\tIl nous faut évacuer.\nWe must fix this.\tNous devons y remédier.\nWe must fix this.\tNous devons le réparer.\nWe must fix this.\tNous devons régler ça.\nWe must sit down.\tNous devons nous asseoir.\nWe must sit down.\tIl nous faut nous asseoir.\nWe must withdraw.\tIl nous faut nous retirer.\nWe need evidence.\tIl nous faut des preuves.\nWe need exercise.\tNous avons besoin d'exercice.\nWe need somebody.\tNous avons besoin de quelqu'un.\nWe need supplies.\tIl nous faut des provisions.\nWe need you back.\tIl faut que tu reviennes.\nWe only want you.\tNous ne voulons que vous.\nWe only want you.\tNous ne voulons que toi.\nWe saw something.\tNous avons vu quelque chose.\nWe spoke briefly.\tNous nous entretînmes brièvement.\nWe spoke briefly.\tNous nous sommes brièvement entretenus.\nWe spoke briefly.\tNous nous sommes brièvement entretenues.\nWe spoke briefly.\tNous avons parlé brièvement.\nWe study Chinese.\tNous étudions le chinois.\nWe told everyone.\tNous l'avons dit à tous.\nWe want to leave.\tNous voulons partir.\nWe were ambushed.\tNous avons été pris dans une embuscade.\nWe were ambushed.\tNous avons été prises dans une embuscade.\nWe were mistaken.\tNous nous trompions.\nWe were partners.\tNous étions partenaires.\nWe were soldiers.\tNous étions des soldats.\nWe were together.\tNous étions ensemble.\nWe were too late.\tNous arrivâmes trop tard.\nWe were too late.\tNous sommes arrivés trop tard.\nWe were too late.\tNous sommes arrivées trop tard.\nWe weren't happy.\tNous n'étions pas satisfaits.\nWe weren't happy.\tNous n'étions pas satisfaites.\nWe weren't lucky.\tNous n'avons pas eu de chance.\nWe will fix this.\tNous réparerons ceci.\nWe will fix this.\tNous corrigerons ceci.\nWe will not fail.\tNous n'échouerons pas.\nWe wish you luck.\tNous vous souhaitons bonne chance.\nWe won the match.\tOn a gagné le match.\nWe work together.\tNous travaillons ensemble.\nWe'll be careful.\tNous serons prudents.\nWe'll be careful.\tNous serons prudentes.\nWe'll be working.\tNous travaillerons.\nWe'll follow Tom.\tNous suivrons Tom.\nWe'll never know.\tNous ne le saurons jamais.\nWe'll pay for it.\tNous payerons pour ça.\nWe'll talk later.\tNous discuterons plus tard.\nWe're a bit late.\tNous sommes un peu en retard.\nWe're a bit late.\tNous sommes un tantinet en retard.\nWe're all afraid.\tNous avons tous peur.\nWe're all afraid.\tNous avons toutes peur.\nWe're all hungry.\tNous avons tous faim.\nWe're all hungry.\tNous avons toutes faim.\nWe're all scared.\tNous avons tous peur.\nWe're all scared.\tNous avons toutes peur.\nWe're all single.\tNous sommes tous célibataires.\nWe're all single.\tNous sommes toutes célibataires.\nWe're all unique.\tNous sommes tous uniques.\nWe're alone here.\tNous sommes seuls ici.\nWe're alone here.\tNous sommes seules ici.\nWe're astonished.\tNous sommes stupéfaits.\nWe're back early.\tNous sommes de retour tôt.\nWe're being used.\tOn nous exploite.\nWe're both right.\tNous avons tous deux raison.\nWe're both right.\tNous avons toutes deux raison.\nWe're both wrong.\tNous avons tous deux tort.\nWe're both wrong.\tNous avons toutes deux tort.\nWe're classmates.\tNous sommes des copains de classe.\nWe're doing well.\tNous nous en sortons pas mal.\nWe're downsizing.\tNous réduisons la voilure.\nWe're getting it.\tNous pigeons.\nWe're going back.\tNous retournons en arrière.\nWe're going down.\tNous descendons.\nWe're going east.\tNous nous dirigeons vers l'est.\nWe're going east.\tNous nous dirigeons à l'est.\nWe're going west.\tNous nous dirigeons vers l'ouest.\nWe're going west.\tNous nous dirigeons à l'ouest.\nWe're half right.\tNous avons à moitié raison.\nWe're having fun.\tNous nous amusons.\nWe're here alone.\tNous sommes ici seuls.\nWe're here alone.\tNous sommes ici seules.\nWe're here early.\tNous sommes là tôt.\nWe're home early.\tNous sommes tôt à la maison.\nWe're in college.\tNous sommes à la fac.\nWe're in control.\tNous contrôlons la situation.\nWe're in trouble.\tNous sommes dans le pétrin.\nWe're in trouble.\tOn est dans le pétrin.\nWe're just lucky.\tNous sommes juste chanceux.\nWe're just tired.\tNous sommes juste fatigués.\nWe're just tired.\tNous sommes juste fatiguées.\nWe're lifeguards.\tNous sommes sauveteurs.\nWe're meditating.\tNous sommes en train de méditer.\nWe're not buying.\tNous ne sommes pas en train d'acheter.\nWe're not dating.\tNous ne sortons pas ensemble.\nWe're not dating.\tNous ne fricotons pas.\nWe're not eating.\tNous ne sommes pas en train de manger.\nWe're not family.\tNous ne sommes pas de la même famille.\nWe're not guilty.\tNous ne sommes pas coupables.\nWe're not moving.\tNous ne sommes pas en train de bouger.\nWe're not needed.\tOn n'a pas besoin de nous.\nWe're not stupid.\tNous ne sommes pas idiots.\nWe're not stupid.\tNous ne sommes pas idiotes.\nWe're on our own.\tNous sommes seuls.\nWe're on our own.\tNous sommes seules.\nWe're on our way.\tNous sommes en route.\nWe're prejudiced.\tNous avons des préjugés.\nWe're right here.\tNous sommes juste là.\nWe're speechless.\tNous sommes sans voix.\nWe're still here.\tNous sommes encore ici.\nWe're successful.\tNous connaissons la réussite.\nWe're surrounded.\tNous sommes cernés.\nWe're taking off.\tNous sommes en train de décoller.\nWe're the owners.\tNous sommes les propriétaires.\nWe're undressing.\tNous nous déshabillons.\nWe're undressing.\tNous sommes en train de nous déshabiller.\nWe're unemployed.\tNous sommes sans emploi.\nWe're unemployed.\tNous sommes dépourvus d'emplois.\nWe're untalented.\tNous sommes dépourvus de talent.\nWe're untalented.\tNous sommes dépourvues de talent.\nWe're very close.\tNos scores sont très serrés.\nWe're very close.\tNous sommes très proches.\nWe're very happy.\tNous sommes très heureux.\nWe've done a lot.\tNous avons fait beaucoup.\nWe've got a boat.\tNous disposons d'un bateau.\nWe've got enough.\tNous en avons assez.\nWe've got enough.\tNous en avons suffisamment.\nWell, here we go.\tBien, allons-y.\nWere you excited?\tÉtais-tu excité ?\nWere you excited?\tÉtais-tu excitée ?\nWere you excited?\tÉtiez-vous excité ?\nWere you excited?\tÉtiez-vous excitée ?\nWere you excited?\tÉtiez-vous excités ?\nWere you excited?\tÉtiez-vous excitées ?\nWere you shot at?\tT'a-t-on tiré dessus ?\nWere you shot at?\tVous a-t-on tiré dessus ?\nWere you sincere?\tÉtais-tu sincère ?\nWere you sincere?\tÉtiez-vous sincère ?\nWere you sincere?\tÉtiez-vous sincères ?\nWhat a big eater!\tQuel gros mangeur !\nWhat a big truck!\tQuel gros camion !\nWhat a cute baby!\tQuel mignon bébé !\nWhat a cute girl!\tQuelle jolie fille!\nWhat a funny man!\tQuel homme curieux !\nWhat a funny man!\tQuel homme bizarre !\nWhat a funny man!\tQuel homme amusant !\nWhat a good shot!\tQuel bon tireur !\nWhat a heavy bag!\tQue ce sac est lourd !\nWhat a hypocrite!\tQuelle hypocrite !\nWhat a hypocrite!\tQuel hypocrite !\nWhat a nightmare!\tQuelle horreur !\nWhat a smart guy!\tQuel type intelligent !\nWhat can be done?\tQu'est-ce qui peut être fait ?\nWhat can you see?\tQue peux-tu voir ?\nWhat can you see?\tQue pouvez-vous voir ?\nWhat could it be?\tQu'est-ce que ça pourrait être ?\nWhat did she say?\tQu'est-ce qu'elle a dit ?\nWhat did we miss?\tQu'avons-nous manqué ?\nWhat did you buy?\tQu'as-tu acheté ?\nWhat did you buy?\tQu'avez-vous acheté ?\nWhat did you eat?\tTu as mangé quoi ?\nWhat did you eat?\tQu'as-tu mangé ?\nWhat did you eat?\tQu'avez-vous mangé ?\nWhat did you get?\tQu'as-tu eu ?\nWhat did you say?\tQu'avez-vous dit ?\nWhat did you say?\tQu'as-tu dit ?\nWhat did you say?\tPlaît-il ?\nWhat did you say?\tQu'as-tu dit ?\nWhat did you see?\tQu'avez-vous vu ?\nWhat did you see?\tQu'as-tu vu ?\nWhat do bees eat?\tDe quoi se nourrissent les abeilles ?\nWhat do you have?\tQu'est-ce que vous avez ?\nWhat do you know?\tQue sais-tu ?\nWhat do you know?\tQue savez-vous ?\nWhat do you like?\tQu'est-ce que tu aimes bien ?\nWhat do you like?\tQu'aimes-tu ?\nWhat do you like?\tQu'apprécies-tu ?\nWhat do you mean?\tQue veux-tu dire ?\nWhat do you mean?\tQue voulez-vous dire ?\nWhat do you need?\tDe quoi avez-vous besoin ?\nWhat do you need?\tDe quoi avez-vous besoin ?\nWhat do you need?\tDe quoi as-tu besoin ?\nWhat do you need?\tDe quoi avez-vous besoin?\nWhat do you seek?\tQue cherches-tu ?\nWhat do you seek?\tQue cherchez-vous ?\nWhat do you want?\tQue veux-tu ?\nWhat do you want?\tDe quoi as-tu besoin ?\nWhat do you want?\tQu'est-ce que tu veux ?\nWhat do you want?\tQue veux-tu ?\nWhat do you want?\tQue voulez-vous ?\nWhat do you want?\tQu'est-ce que tu veux ?\nWhat does he say?\tQue dit-il ?\nWhat does he see?\tQue voit-il ?\nWhat does she do?\tQue fait-elle ?\nWhat else is new?\tQuoi d'autre est nouveau ?\nWhat happens now?\tQue se passe-t-il, maintenant ?\nWhat has he done?\tQu'a-t-il fait ?\nWhat have I done?\tQu'ai-je fait !\nWhat have we got?\tQu'avons-nous ?\nWhat have we got?\tQu'avons-nous obtenu ?\nWhat have we got?\tDe quoi disposons-nous ?\nWhat if I refuse?\tEt si je refuse ?\nWhat if he fails?\tQue se passe-t-il s'il échoue ?\nWhat is all this?\tQu'est tout ceci ?\nWhat is going on?\tQu'est-ce qui se passe ?\nWhat is going on?\tQu'y a-t-il ?\nWhat is he after?\tQu’est-ce qu’il espère?\nWhat is he doing?\tQu'est-ce qu'il fait ?\nWhat is he up to?\tQue manigance-t-il ?\nWhat is he up to?\tQu'a-t-il en tête ?\nWhat is his name?\tComment s'appelle-t-il ?\nWhat is it about?\tDe quoi s'agit-il ?\nWhat is the news?\tQuelles sont les nouvelles?\nWhat is the time?\tQuelle heure est-il ?\nWhat is this for?\tQuel est le but de ceci ?\nWhat is your age?\tQuel âge as-tu ?\nWhat shall we do?\tQue faire ?\nWhat shall we do?\tQu'allons-nous faire ?\nWhat shall we do?\tQue ferons-nous ?\nWhat should I do?\tQue devrais-je faire ?\nWhat was I to do?\tQu'étais-je sur le point de faire ?\nWhat will we eat?\tQu'allons-nous manger ?\nWhat will we eat?\tQue mangerons-nous ?\nWhat will you do?\tQue feras-tu ?\nWhat will you do?\tQue ferez-vous ?\nWhat woke you up?\tQu'est-ce qui t'a réveillé ?\nWhat woke you up?\tQu'est-ce qui t'a réveillée ?\nWhat woke you up?\tQu'est-ce qui vous a réveillé  ?\nWhat woke you up?\tQu'est-ce qui vous a réveillés ?\nWhat woke you up?\tQu'est-ce qui vous a réveillées ?\nWhat woke you up?\tQu'est-ce qui vous a réveillée  ?\nWhat's for lunch?\tQu'y a-t-il pour déjeuner ?\nWhat's happening?\tQu'est-ce qui se passe ?\nWhat's he hiding?\tQue cache-t-il ?\nWhat's he hiding?\tQu'est-ce qu'il cache ?\nWhat's it called?\tComment cela se nomme-t-il ?\nWhat's she doing?\tQue fait-elle ?\nWhat's that bird?\tQuel est cet oiseau ?\nWhat's the catch?\tC'est quoi le truc ?\nWhat's the catch?\tOù est l'arnaque ?\nWhat's the hurry?\tPourquoi cette précipitation ?\nWhat's the score?\tQuelle est la marque ?\nWhat's the score?\tQuel est le résultat ?\nWhat's this mess?\tQu'est-ce que c'est que ce fouillis?\nWhat's your beef?\tC'est quoi ton problème ?\nWhat's your name?\tComment est-ce que tu t'appelles ?\nWhat's your name?\tComment tu t'appelles ?\nWhat's your name?\tComment vous appelez-vous ?\nWhat's your name?\tQuel est votre nom ?\nWhat's your name?\tQuel est ton nom ?\nWhat's your name?\tComment te nomme-t-on ?\nWhat's your name?\tComment tu t’appelles ?\nWhat's your plan?\tQuel est ton plan ?\nWhat's your plan?\tQuel est votre plan ?\nWhat's your wish?\tQuel est votre souhait ?\nWhat's your wish?\tQuel est ton souhait ?\nWhat've you done?\tQu'avez-vous fait ?\nWhatever you say.\tComme tu veux.\nWhatever you say.\tComme vous voulez.\nWhatever you say.\tComme vous voudrez.\nWhatever you say.\tComme tu voudras.\nWhen are you off?\tQuand pars-tu ?\nWhen do we leave?\tQuand partons-nous ?\nWhen do we start?\tQuand commençons-nous ?\nWhen does it end?\tQuand est-ce que ça finit ?\nWhen does it end?\tQuand cela finit-il ?\nWhen will you go?\tQuand iras-tu ?\nWhen will you go?\tQuand irez-vous ?\nWhere are we now?\tOù en sommes-nous maintenant ?\nWhere are we now?\tOù sommes-nous maintenant ?\nWhere can I park?\tOù puis-je me garer ?\nWhere did you go?\tOù vous êtes-vous rendu ?\nWhere did you go?\tOù vous êtes-vous rendue ?\nWhere did you go?\tOù vous êtes-vous rendus ?\nWhere did you go?\tOù vous êtes-vous rendues ?\nWhere did you go?\tOù es-tu allé ?\nWhere did you go?\tOù es-tu allée ?\nWhere do I sleep?\tOù est-ce que je dors ?\nWhere do I sleep?\tJe dors où ?\nWhere is my book?\tOù se trouve mon livre ?\nWhere is my seat?\tOù est mon siège ?\nWhere is the boy?\tOù est le garçon ?\nWhere is the boy?\tOù est le garçon?\nWhere is the cat?\tOù se trouve le chat ?\nWhere is the cat?\tOù se trouve la chatte ?\nWhere is the cat?\tOù est le chat ?\nWhere is the dog?\tOù est le chien ?\nWhere's a mirror?\tOù trouver un miroir ?\nWhere's everyone?\tOù est tout le monde ?\nWhere's my money?\tOù est mon argent ?\nWhere's my phone?\tOù est mon téléphone ?\nWhere's the boss?\tOù est le patron ?\nWhere's the exit?\tOù se trouve la sortie ?\nWhere's the park?\tOù se trouve le parc ?\nWhere's the rest?\tOù est le reste ?\nWhere's your dog?\tOù est ton chien ?\nWhere's your dog?\tOù est votre chien ?\nWhere's your dog?\tOù est ton chien ?\nWhich is cheaper?\tLequel est le moins cher ?\nWhich is cheaper?\tLaquelle est la moins chère ?\nWhich is our car?\tLaquelle est notre auto ?\nWhich way is out?\tQuel est le chemin vers la sortie ?\nWho did you meet?\tQui avez-vous rencontré ?\nWho did you meet?\tQui as-tu rencontré ?\nWho do you trust?\tEn qui as-tu confiance ?\nWho do you trust?\tEn qui avez-vous confiance ?\nWho do you trust?\tQui croyez-vous ?\nWho do you trust?\tQui crois-tu ?\nWho else is here?\tQui d'autre est ici ?\nWho is that lady?\tQui est cette femme ?\nWho is this girl?\tQui est cette fille  ?\nWho is this lady?\tQui est cette femme ?\nWho notified you?\tQui vous a informé ?\nWho notified you?\tQui t'as informé ?\nWho ordered that?\tQui a commandé ça ?\nWho ordered that?\tQui a ordonné cela ?\nWho painted that?\tQui a peint cela ?\nWho painted this?\tQui a peint ceci ?\nWho will help me?\tQui m'aide ?\nWho's had enough?\tQui en a eu assez ?\nWho's in control?\tQui est aux commandes ?\nWho's not coming?\tQui ne vient pas ?\nWhose turn is it?\tÀ qui le tour ?\nWhose turn is it?\tÀ qui est le tour ?\nWhy are you late?\tPourquoi es-tu en retard ?\nWhy are you late?\tPourquoi êtes-vous en retard ?\nWhy can't I hear?\tPourquoi ne puis-je entendre ?\nWhy can't I move?\tPourquoi ne puis-je pas bouger ?\nWhy did you call?\tPourquoi as-tu appelé ?\nWhy did you call?\tPourquoi avez-vous appelé ?\nWhy did you quit?\tPourquoi as-tu démissionné ?\nWhy did you stop?\tPourquoi avez-vous arrêté ?\nWhy did you stop?\tPourquoi vous êtes-vous arrêté ?\nWhy did you stop?\tPourquoi as-tu arrêté ?\nWhy did you stop?\tPourquoi t'es-tu arrêté ?\nWhy do you study?\tPourquoi tu étudies ?\nWhy do you study?\tPourquoi étudies-tu ?\nWhy would he lie?\tPourquoi mentirait-il ?\nWill that be all?\tCe sera tout ?\nWill that change?\tEst-ce que cela va changer ?\nWill you go, too?\tIrez-vous aussi ?\nWill you go, too?\tIras-tu aussi ?\nWill you help me?\tPeux-tu me donner un coup de main ?\nWill you join us?\tTe joindras-tu à nous ?\nWill you join us?\tVous joindrez-vous à nous ?\nWill you join us?\tTe joins-tu à nous ?\nWill you shut up?\tVeux-tu te taire ?\nWill you shut up?\tVoulez-vous vous taire ?\nWill you tell me?\tMe le diras-tu ?\nWill you tell me?\tMe le direz-vous ?\nWords failed her.\tLes mots lui manquèrent.\nWords failed her.\tElle n'a pas trouvé les mots.\nWords failed him.\tIl n'a pas trouvé les mots.\nWords failed him.\tLes mots lui manquèrent.\nWould it help me?\tEst-ce que ça m'aiderait ?\nWould it help me?\tCela m'aiderait-il ?\nYolks are yellow.\tLes jaunes d'œufs sont jaunes.\nYolks are yellow.\tLes jaunes sont jaunes.\nYou abandoned me.\tVous m'avez abandonné.\nYou all did well.\tVous avez tous bien réussi.\nYou all did well.\tVous avez toutes bien réussi.\nYou are a doctor.\tVous êtes médecin.\nYou are a doctor.\tTu es toubib.\nYou are a genius.\tTu es un génie.\nYou are a genius.\tVous êtes un génie.\nYou are blushing.\tTu rougis !\nYou are children.\tVous êtes des enfants.\nYou are deranged.\tTu es dérangé.\nYou are dreaming.\tTu es en train de rêver.\nYou are dreaming.\tVous êtes en train de rêver.\nYou are fabulous.\tTu es fabuleux.\nYou are fabulous.\tTu es fabuleuse.\nYou are gorgeous.\tTu es splendide.\nYou are gorgeous.\tVous êtes splendide.\nYou are hopeless.\tTu es impossible.\nYou are hopeless.\tTu es incorrigible.\nYou are not kind.\tVous n'êtes pas gentil.\nYou are to blame.\tVous êtes responsable.\nYou are to blame.\tVous êtes responsables.\nYou are too late.\tTu arrives trop tard.\nYou are too late.\tVous arrivez trop tard.\nYou aren't wrong.\tT'as pas tort.\nYou better hurry.\tTu ferais mieux de te grouiller !\nYou better hurry.\tVous feriez mieux de vous activer !\nYou better hurry.\tVous feriez mieux de vous dépêcher !\nYou better hurry.\tTu ferais mieux de te magner !\nYou blew it, Tom.\tTu as foiré, Tom.\nYou came at five.\tTu es venu à 5 heures.\nYou came in late.\tVous êtes arrivé en retard.\nYou can all help.\tVous pouvez tous aider.\nYou can all help.\tVous pouvez toutes aider.\nYou can go there.\tTu peux y aller.\nYou can go there.\tVous pouvez y aller.\nYou can go there.\tVous pouvez vous y rendre.\nYou can go there.\tTu peux t'y rendre.\nYou can go there.\tTu es en mesure d'y aller.\nYou can go there.\tTu es en mesure de t'y rendre.\nYou can go there.\tVous êtes en mesure de vous y rendre.\nYou can go there.\tVous êtes en mesure d'y aller.\nYou can look now.\tTu peux regarder, maintenant.\nYou can trust me.\tVous pouvez avoir confiance en moi.\nYou can use mine.\tTu peux utiliser le mien.\nYou can't go now.\tTu ne peux pas y aller maintenant.\nYou can't go out.\tTu ne peux pas sortir.\nYou can't go out.\tVous ne pouvez pas sortir.\nYou can't go yet.\tTu ne peux pas encore y aller.\nYou can't go yet.\tTu ne peux pas encore t'en aller.\nYou can't go yet.\tVous ne pouvez pas encore vous en aller.\nYou can't go yet.\tVous ne pouvez pas encore y aller.\nYou can't go yet.\tVous ne pouvez pas encore partir.\nYou can't go yet.\tTu ne peux pas encore partir.\nYou can't say no.\tTu ne peux pas dire \"Non.\"\nYou can't say no.\tTu ne peux pas dire non.\nYou did say that.\tVous aviez effectivement dit cela.\nYou have a point.\tVous avez probablement raison.\nYou have my word.\tJe te le promets.\nYou have my word.\tJe vous le promets.\nYou have my word.\tVous avez ma parole.\nYou have my word.\tTu as ma parole.\nYou have no idea.\tTu n'en as aucune idée.\nYou have no idea.\tVous n'en avez aucune idée.\nYou have no idea.\tTu n'as pas idée.\nYou have no life.\tVous n'avez pas de vie.\nYou have no life.\tTu n'as pas de vie.\nYou have to come.\tTu dois venir.\nYou have to come.\tVous devez venir.\nYou know I can't.\tTu sais que je ne peux pas.\nYou know me well.\tTu me connais bien.\nYou know me well.\tVous me connaissez bien.\nYou know the law.\tTu connais la loi.\nYou know the law.\tVous connaissez la loi.\nYou look amazing.\tTu as l'air resplendissante.\nYou look nervous.\tTu as l'air nerveux.\nYou look nervous.\tVous avez l'air nerveux.\nYou look nervous.\tVous avez l'air nerveuses.\nYou look nervous.\tVous avez l'air nerveuse.\nYou look nervous.\tTu as l'air nerveuse.\nYou look perfect.\tTu as l'air parfait.\nYou look perfect.\tTu as l'air parfaite.\nYou look perfect.\tVous avez l'air parfait.\nYou look perfect.\tVous avez l'air parfaite.\nYou look perfect.\tVous avez l'air parfaits.\nYou look perfect.\tVous avez l'air parfaites.\nYou look so cool.\tVous avez l'air tellement décontracté !\nYou look so cool.\tTu as l'air tellement décontracté !\nYou look so pale.\tTu as l'air si pâle !\nYou look younger.\tTu as l'air plus jeune.\nYou look younger.\tVous avez l'air plus jeune.\nYou made Tom cry.\tTu as fait pleurer Tom.\nYou made me late.\tTu m'as mis en retard.\nYou make me sick.\tTu me rends malade.\nYou make me sick.\tVous me rendez malade.\nYou may be right.\tTu as peut-être raison.\nYou may be right.\tIl se peut que tu aies raison.\nYou may be right.\tIl se peut que vous ayez raison.\nYou may go there.\tTu peux y aller.\nYou may go there.\tVous pouvez y aller.\nYou may go there.\tVous avez la permission d'y aller.\nYou may go there.\tTu as la permission d'y aller.\nYou may go there.\tTu as la permission de t'y rendre.\nYou may go there.\tVous avez la permission de vous y rendre.\nYou may meet him.\tTu peux le rencontrer.\nYou may meet him.\tTu as l'autorisation de le rencontrer.\nYou may quote me.\tVous pouvez me citer.\nYou missed a lot.\tTu as sacrement manqué.\nYou missed a lot.\tT'en as loupé.\nYou must tell me.\tIl te faut me le dire.\nYou must tell me.\tIl vous faut me le dire.\nYou must tell me.\tTu dois me le dire.\nYou must tell me.\tVous devez me le dire.\nYou must tell us.\tVous devez nous le dire.\nYou need a drink.\tIl te faut un verre.\nYou need a drink.\tIl vous faut un verre.\nYou need a drink.\tIl te faut boire quelque chose.\nYou need a drink.\tIl vous faut boire quelque chose.\nYou need to come.\tTu dois venir.\nYou need to come.\tVous devez venir.\nYou need to rest.\tIl vous faut vous reposer.\nYou need to rest.\tIl te faut te reposer.\nYou need to stop.\tIl faut que tu arrêtes.\nYou need to stop.\tIl faut que vous arrêtiez.\nYou need to stop.\tTu dois arrêter.\nYou need to stop.\tTu dois cesser.\nYou need to stop.\tIl faut que tu cesses.\nYou saved us all.\tTu nous as tous sauvés.\nYou saved us all.\tTu nous as toutes sauvées.\nYou saved us all.\tVous nous avez tous sauvés.\nYou saved us all.\tVous nous avez toutes sauvées.\nYou should do it.\tTu devrais le faire.\nYou should do it.\tVous devriez le faire.\nYou were perfect.\tTu as été parfait.\nYou were perfect.\tVous avez été parfait.\nYou were perfect.\tTu as été parfaite.\nYou were perfect.\tVous avez été parfaits.\nYou were perfect.\tVous avez été parfaite.\nYou were perfect.\tVous avez été parfaites.\nYou were perfect.\tTu fus parfait.\nYou were perfect.\tTu fus parfaite.\nYou were perfect.\tVous fûtes parfait.\nYou were perfect.\tVous fûtes parfaite.\nYou were perfect.\tVous fûtes parfaites.\nYou were perfect.\tVous fûtes parfaits.\nYou will survive.\tVous survivrez.\nYou will survive.\tTu survivras.\nYou're a man now.\tTu es désormais un homme.\nYou're a man now.\tVous êtes désormais un homme.\nYou're a traitor.\tTu es un traître.\nYou're a traitor.\tVous êtes un traître.\nYou're a traitor.\tTu es une traîtresse.\nYou're a traitor.\tVous êtes une traîtresse.\nYou're all alone.\tVous êtes tous seuls.\nYou're all alone.\tVous êtes toutes seules.\nYou're all alone.\tTu es tout seul.\nYou're all alone.\tTu es toute seule.\nYou're all alone.\tVous êtes tout seul.\nYou're all alone.\tVous êtes toute seule.\nYou're all crazy.\tVous êtes tous fous.\nYou're all crazy.\tVous êtes toutes folles.\nYou're all happy.\tVous êtes tous contents.\nYou're all happy.\tVous êtes toutes contentes.\nYou're all happy.\tVous êtes tous heureux.\nYou're all happy.\tVous êtes toutes heureuses.\nYou're all happy.\tVous êtes tous satisfaits.\nYou're all happy.\tVous êtes toutes satisfaites.\nYou're all right.\tTu vas bien.\nYou're all right.\tVous allez bien.\nYou're ambitious.\tTu es ambitieuse.\nYou're ambitious.\tTu es ambitieux.\nYou're ambitious.\tVous êtes ambitieux.\nYou're ambitious.\tVous êtes ambitieuses.\nYou're ambitious.\tVous êtes ambitieuse.\nYou're assertive.\tTu te fais comprendre.\nYou're assertive.\tTu sais te faire comprendre.\nYou're assertive.\tVous savez vous faire comprendre.\nYou're beautiful.\tTu es beau.\nYou're beautiful.\tVous êtes belle.\nYou're beautiful.\tVous êtes beaux.\nYou're beautiful.\tVous êtes belles.\nYou're conceited.\tTu es suffisant.\nYou're conceited.\tTu es suffisante.\nYou're conceited.\tVous êtes suffisant.\nYou're conceited.\tVous êtes suffisante.\nYou're conceited.\tVous êtes suffisants.\nYou're conceited.\tVous êtes suffisantes.\nYou're courteous.\tTu es courtois.\nYou're courteous.\tTu es courtoise.\nYou're courteous.\tVous êtes courtois.\nYou're courteous.\tVous êtes courtoise.\nYou're courteous.\tVous êtes courtoises.\nYou're exhausted.\tTu es épuisée.\nYou're exhausted.\tVous êtes épuisés.\nYou're exhausted.\tVous êtes épuisées.\nYou're forgetful.\tTu es distrait.\nYou're forgetful.\tTu es distraite.\nYou're forgetful.\tTu es oublieux.\nYou're forgetful.\tTu es oublieuse.\nYou're forgetful.\tTu es étourdi.\nYou're forgetful.\tTu es étourdie.\nYou're fortunate.\tTu as de la chance.\nYou're fortunate.\tTu es chanceux.\nYou're fortunate.\tTu es chanceuse.\nYou're fortunate.\tVous êtes chanceux.\nYou're fortunate.\tVous êtes chanceuse.\nYou're fortunate.\tVous êtes chanceuses.\nYou're impatient.\tTu es impatient.\nYou're impatient.\tTu es impatiente.\nYou're in danger.\tTu es en danger.\nYou're in danger.\tVous êtes en danger.\nYou're my friend.\tTu es mon amie.\nYou're no doctor.\tVous n'êtes pas médecin.\nYou're no doctor.\tTu n'es pas médecin.\nYou're no singer.\tVous n'êtes pas chanteur.\nYou're no singer.\tVous n'êtes pas chanteuse.\nYou're no singer.\tTu n'es pas chanteur.\nYou're no singer.\tTu n'es pas chanteuse.\nYou're not alone.\tTu n'es pas seul.\nYou're not alone.\tTu n'es pas seule.\nYou're not alone.\tVous n'êtes pas seul.\nYou're not alone.\tVous n'êtes pas seuls.\nYou're not alone.\tVous n'êtes pas seules.\nYou're not alone.\tVous n'êtes pas seule.\nYou're not dying.\tVous n'êtes pas mourant.\nYou're not fired.\tTu n'es pas viré.\nYou're not fired.\tTu n'es pas virée.\nYou're not fired.\tVous n'êtes pas viré.\nYou're not fired.\tVous n'êtes pas virés.\nYou're not fired.\tVous n'êtes pas virée.\nYou're not fired.\tVous n'êtes pas virées.\nYou're obnoxious.\tTu es odieux.\nYou're obnoxious.\tTu es odieuse.\nYou're obnoxious.\tVous êtes odieux.\nYou're obnoxious.\tVous êtes odieuse.\nYou're obnoxious.\tVous êtes odieuses.\nYou're observant.\tTu as le sens de l'observation.\nYou're powerless.\tTu es dépourvu de pouvoir.\nYou're powerless.\tTu es dépourvue de pouvoir.\nYou're resilient.\tTu es tenace.\nYou're resilient.\tVous êtes tenace.\nYou're resilient.\tVous êtes tenaces.\nYou're resilient.\tVous êtes endurants.\nYou're resilient.\tVous êtes endurantes.\nYou're resilient.\tVous êtes endurant.\nYou're resilient.\tVous êtes endurante.\nYou're resilient.\tTu es endurant.\nYou're resilient.\tTu es endurante.\nYou're shivering.\tTu frissonnes.\nYou're so pretty.\tTu es tellement mignonne.\nYou're talkative.\tTu es bavard.\nYou're talkative.\tTu es bavarde.\nYou're talkative.\tVous êtes bavard.\nYou're talkative.\tVous êtes bavarde.\nYou're talkative.\tVous êtes bavards.\nYou're talkative.\tVous êtes bavardes.\nYou're too naive.\tTu es trop naïve.\nYou're too tense.\tTu es trop tendu.\nYou're too tense.\tTu es trop tendue.\nYou're too tense.\tVous êtes trop tendu.\nYou're too tense.\tVous êtes trop tendue.\nYou're too tense.\tVous êtes trop tendus.\nYou're too tense.\tVous êtes trop tendues.\nYou're unethical.\tTu es immoral.\nYou're unethical.\tTu es immorale.\nYou're very busy.\tTu es fort occupé.\nYou're very busy.\tTu es fort occupée.\nYou're very busy.\tTu es très occupé.\nYou're very busy.\tTu es très occupée.\nYou're very busy.\tVous êtes très occupé.\nYou're very busy.\tVous êtes très occupée.\nYou're very busy.\tVous êtes très occupés.\nYou're very busy.\tVous êtes très occupées.\nYou're very busy.\tVous êtes fort occupé.\nYou're very busy.\tVous êtes fort occupée.\nYou're very busy.\tVous êtes fort occupés.\nYou're very busy.\tVous êtes fort occupées.\nYou're very good.\tVous êtes très bonne.\nYou're very good.\tVous êtes très bonnes.\nYou're very good.\tVous êtes fort bonne.\nYou're very good.\tVous êtes fort bonnes.\nYou're very good.\tVous êtes fort bon.\nYou're very good.\tVous êtes fort bons.\nYou're very good.\tVous êtes très bon.\nYou're very good.\tVous êtes très bons.\nYou're very good.\tTu es très bon.\nYou're very good.\tTu es fort bon.\nYou're very good.\tTu es très bonne.\nYou're very good.\tTu es fort bonne.\nYou're very late.\tVous êtes en retard.\nYou're very nice.\tVous êtes très gentille.\nYou're very nice.\tTu es très chouette.\nYou're very nice.\tTu es très gentil.\nYou're very nice.\tTu es très gentille.\nYou're very nice.\tVous êtes très gentil.\nYou're very nice.\tVous êtes très gentils.\nYou're very nice.\tVous êtes très gentilles.\nYou're very nice.\tVous êtes très chouette.\nYou're very nice.\tVous êtes très chouettes.\nYou're very open.\tTu es très ouvert.\nYou're very open.\tTu es très ouverte.\nYou're very open.\tVous êtes très ouvert.\nYou're very open.\tVous êtes très ouverts.\nYou're very open.\tVous êtes très ouverte.\nYou're very open.\tVous êtes très ouvertes.\nYou're very rude.\tTu es très grossier.\nYou're very rude.\tTu es fort grossier.\nYou're very rude.\tTu es fort grossière.\nYou're very rude.\tTu es très grossière.\nYou're very rude.\tVous êtes fort grossière.\nYou're very rude.\tVous êtes très grossière.\nYou're very rude.\tVous êtes fort grossières.\nYou're very rude.\tVous êtes très grossières.\nYou're very rude.\tVous êtes très grossier.\nYou're very rude.\tVous êtes fort grossier.\nYou're very rude.\tVous êtes très grossiers.\nYou're very rude.\tVous êtes fort grossiers.\nYou're very tall.\tTu es très grand.\nYou're very tall.\tTu es très grande.\nYou're very tall.\tVous êtes très grand.\nYou're very tall.\tVous êtes très grande.\nYou're very tall.\tVous êtes très grands.\nYou're very tall.\tVous êtes très grandes.\nYou're very wise.\tTu es très sage.\nYou're very wise.\tTu es très avisé.\nYou're very wise.\tTu es fort avisé.\nYou're very wise.\tTu es très avisée.\nYou're very wise.\tTu es fort avisée.\nYou're very wise.\tTu es fort sage.\nYou're very wise.\tVous êtes très sage.\nYou're very wise.\tVous êtes fort sage.\nYou're very wise.\tVous êtes très sages.\nYou're very wise.\tVous êtes fort sages.\nYou're very wise.\tVous êtes très avisé.\nYou're very wise.\tVous êtes très avisée.\nYou're very wise.\tVous êtes très avisés.\nYou're very wise.\tVous êtes très avisées.\nYou're very wise.\tVous êtes fort avisé.\nYou're very wise.\tVous êtes fort avisée.\nYou're very wise.\tVous êtes fort avisés.\nYou're very wise.\tVous êtes fort avisées.\nYou're wonderful.\tTu es merveilleux.\nYou're wonderful.\tTu es merveilleuse.\nYou're wonderful.\tVous êtes merveilleux.\nYou're wonderful.\tVous êtes merveilleuse.\nYou're wonderful.\tVous êtes merveilleuses.\nYour car is fast.\tTa voiture est rapide.\nYour car is fast.\tVotre voiture est rapide.\nYour dog is here.\tTon chien est là.\nYour face is red.\tTon visage est rouge.\nYour face is red.\tTu as le visage rouge.\nYour fly is open!\tTa braguette est ouverte !\nYour fly is open!\tVotre braguette est ouverte !\nYour room is big.\tTa chambre est grande.\nA dog bit her leg.\tUn chien l'a mordue à la jambe.\nA dog bit her leg.\tUn chien a mordu sa jambe.\nA dog was running.\tUn chien était en train de courir.\nA drunk robbed me.\tUn ivrogne m'a dévalisé.\nA leaf is falling.\tUne feuille tombe.\nAdd a little milk.\tAjoute un peu de lait.\nAdd a little milk.\tAjoutez un peu de lait.\nAdjust the brakes.\tAjuste les freins.\nAdvance two steps.\tAvance de deux pas.\nAdvance two steps.\tAvancez de deux pas.\nAm I a bad person?\tSuis-je quelqu'un de mauvais ?\nAm I going to die?\tVais-je mourir ?\nAm I making sense?\tEst-ce que ce que je dis est compréhensible ?\nAm I making sense?\tCe que je dis est-il compréhensible ?\nAm I the only one?\tSuis-je le seul ?\nAm I the only one?\tSuis-je la seule ?\nAm I under arrest?\tSuis-je en état d'arrestation ?\nAny paper will do.\tN’importe quel papier conviendra parfaitement.\nAre they Japanese?\tSont-elles japonaises ?\nAre they Japanese?\tSont-ils japonais ?\nAre they all nuts?\tSont-ils tous dingues ?\nAre they all nuts?\tSont-elles toutes dingues ?\nAre they brothers?\tSont-ils frères ?\nAre they students?\tSont-ils étudiants ?\nAre you a student?\tEs-tu étudiant ?\nAre you a student?\tÊtes-vous étudiant ?\nAre you all alone?\tEs-tu tout seul ?\nAre you all ready?\tÊtes-vous tous prêts ?\nAre you all right?\tÇa va bien ?\nAre you all right?\tTu vas bien ?\nAre you all right?\tTe sens-tu bien ?\nAre you all right?\tVous sentez-vous bien ?\nAre you all right?\tTout va bien ?\nAre you available?\tEs-tu libre ?\nAre you bachelors?\tÊtes-vous des bacheliers ?\nAre you bachelors?\tÊtes-vous célibataires ?\nAre you contented?\tEs-tu satisfait?\nAre you from here?\tVous êtes du coin ?\nAre you from here?\tVous habitez ici ?\nAre you happy now?\tEs-tu heureux maintenant ?\nAre you in Boston?\tEs-tu à Boston ?\nAre you in Boston?\tÊtes-vous à Boston ?\nAre you in danger?\tEs-tu en danger ?\nAre you in danger?\tÊtes-vous en danger ?\nAre you listening?\tTu écoutes ?\nAre you listening?\tÉcoutes-tu ?\nAre you listening?\tM'écoutes-tu ?\nAre you listening?\tM'écoutes-tu ?\nAre you ready now?\tEs-tu prêt maintenant ?\nAre you ready now?\tEs-tu prête maintenant ?\nAre you ready now?\tÊtes-vous prêt maintenant ?\nAre you ready now?\tÊtes-vous prête maintenant ?\nAre you ready now?\tÊtes-vous prêts maintenant ?\nAre you ready now?\tÊtes-vous prêtes maintenant ?\nAre you religious?\tAs-tu de la religion ?\nAre you religious?\tAvez-vous de la religion ?\nAre you saying no?\tDites-vous non ?\nAre you saying no?\tDis-tu non ?\nAre you surprised?\tÊtes-vous surpris ?\nAre you surprised?\tÊtes-vous surprise ?\nAre you surprised?\tÊtes-vous surprises ?\nAre you surprised?\tEs-tu surpris ?\nAre you surprised?\tEs-tu surprise ?\nAre you the mayor?\tÊtes-vous le maire ?\nAre you the mayor?\tEs-tu le maire ?\nAre you up for it?\tY êtes-vous prêt ?\nAre you up for it?\tY êtes-vous prête ?\nAre you up for it?\tY êtes-vous prêts ?\nAre you up for it?\tY êtes-vous prêtes ?\nAre you up for it?\tY es-tu prêt ?\nAre you up for it?\tY es-tu prête ?\nAre your eyes bad?\tVotre vision est-elle mauvaise ?\nAren't you hungry?\tN'avez-vous pas faim ?\nAren't you hungry?\tTu n'as pas faim ?\nAren't you hungry?\tN'as-tu pas faim ?\nAren't you sleepy?\tN'as-tu pas sommeil ?\nAren't you sleepy?\tN'avez-vous pas sommeil ?\nAsk your question.\tPosez votre question.\nBe honest with me.\tSois honnête avec moi.\nBe kind to others.\tSois gentil avec les autres !\nBe kind to others.\tSoyez aimable avec autrui !\nBe nice to others.\tSois gentil avec les autres !\nBe nice to others.\tSoyez aimable avec autrui !\nBeware of the dog!\tAttention au chien !\nBirds build nests.\tLes oiseaux construisent des nids.\nBoys will be boys.\tLes garçons restent des garçons.\nBreak time's over.\tLa pause est finie.\nBreathe in deeply.\tInspirez profondément.\nBring me my shoes.\tApporte-moi mes chaussures !\nBring me my shoes.\tApportez-moi mes chaussures !\nBut I was careful.\tMais j'ai fait attention.\nBut I was careful.\tMais j'ai été prudent.\nBut I was careful.\tMais j'ai été prudente.\nCall an ambulance.\tAppelez une ambulance.\nCall an ambulance.\tAppelle une ambulance.\nCall her tomorrow.\tAppelle-la demain.\nCan I ask why not?\tPuis-je demander pourquoi pas ?\nCan I come in now?\tJe peux entrer maintenant ?\nCan I dial direct?\tPuis-je faire le numéro directement ?\nCan I dial direct?\tPuis-je composer directement le numéro ?\nCan I do anything?\tY a-t-il quelque chose que je puisse faire ?\nCan I go home now?\tPuis-je rentrer à la maison maintenant ?\nCan I make copies?\tPuis-je faire des copies ?\nCan I make copies?\tPuis-je effectuer des copies ?\nCan I make copies?\tPuis-je réaliser des copies ?\nCan I rely on you?\tJe peux compter sur toi ?\nCan I rely on you?\tEst-ce que je peux compter sur toi ?\nCan I talk to you?\tEst-ce que je peux te parler ?\nCan I try this on?\tPuis-je l'essayer ?\nCan I try this on?\tPuis-je essayer ceci ?\nCan all birds fly?\tEst-ce que tous les oiseaux peuvent voler ?\nCan all birds fly?\tTous les oiseaux peuvent-ils voler ?\nCan the baby walk?\tLe bébé sait-il marcher ?\nCan we go fishing?\tPouvons-nous aller pêcher ?\nCan we reschedule?\tPouvons-nous remettre ?\nCan you afford it?\tEn as-tu les moyens ?\nCan you afford it?\tEn avez-vous les moyens ?\nCan you afford it?\tPeux-tu te le payer ?\nCan you afford it?\tPouvez-vous vous le payer ?\nCan you elaborate?\tPeux-tu développer ?\nCan you go faster?\tPeux-tu aller plus vite ?\nCan you go faster?\tEs-tu en mesure d'aller plus vite ?\nCan you go faster?\tPouvez-vous aller plus vite ?\nCan you go faster?\tÊtes-vous en mesure d'aller plus vite ?\nCan you handle it?\tSais-tu y faire ?\nCan you handle it?\tSais-tu t'y prendre ?\nCan you handle it?\tSavez-vous y faire ?\nCan you handle it?\tSavez-vous vous y prendre ?\nCan you handle it?\tPeux-tu t'en sortir ?\nCan you handle it?\tPouvez-vous vous en sortir ?\nCan you handle it?\tPeux-tu t'en occuper ?\nCan you handle it?\tPouvez-vous vous en occuper ?\nCan you read that?\tArrives-tu à lire ça ?\nCan you read that?\tArrivez-vous à lire ça ?\nCan you read that?\tParviens-tu à lire ça ?\nCan you read that?\tParvenez-vous à lire ça ?\nCan you read that?\tSais-tu lire ça ?\nCan you read that?\tSavez-vous lire ça ?\nCan't you help us?\tNe peux-tu nous aider ?\nCan't you help us?\tNe peux-tu pas nous aider ?\nCan't you help us?\tNe pouvez-vous nous aider ?\nCan't you help us?\tNe pouvez-vous pas nous aider ?\nChampagne, please.\tChampagne, s'il vous plait.\nChoose one person.\tChoisissez une personne.\nChoose one person.\tChoisis une personne.\nChristmas is soon.\tNoël arrive bientôt.\nChristmas is soon.\tNoël approche.\nCocaine is a drug.\tLa cocaïne est une drogue.\nCome a bit closer.\tApproche-toi un peu plus !\nCome a bit closer.\tApprochez-vous un peu plus !\nCome here at once.\tViens ici tout de suite.\nCome here quickly.\tViens vite ici.\nCome here quickly.\tViens ici rapidement.\nCome into my room.\tEntrez dans ma chambre.\nCome on, trust me.\tAllez, fais-moi confiance !\nCome play with us.\tViens jouer avec nous.\nCome play with us.\tVenez jouer avec nous.\nCome to my office.\tViens à mon bureau.\nCompare the facts.\tCompare les faits !\nCows give us milk.\tLa vache nous donne du lait.\nCows give us milk.\tLes vaches nous donnent du lait.\nCrime doesn't pay.\tLe crime ne paie pas.\nCut off the power.\tCoupe le courant.\nDeal us the cards.\tDistribue-nous les cartes.\nDeal us the cards.\tDistribuez-nous les cartes.\nDid I do all that?\tAi-je fait tout cela ?\nDid I fall asleep?\tEst-ce que je me suis endormie ?\nDid I startle you?\tT'ai-je fait sursauter ?\nDid I startle you?\tVous ai-je fait sursauter ?\nDid I wake you up?\tVous ai-je réveillé ?\nDid I wake you up?\tVous ai-je réveillés ?\nDid I wake you up?\tVous ai-je réveillée ?\nDid I wake you up?\tVous ai-je réveillées ?\nDid I wake you up?\tT'ai-je réveillé ?\nDid I wake you up?\tT'ai-je réveillée ?\nDid they hurt you?\tT'ont-ils blessé ?\nDid they hurt you?\tT'ont-ils blessée ?\nDid they hurt you?\tT'ont-ils fait du mal ?\nDid they hurt you?\tVous ont-ils fait du mal ?\nDid they hurt you?\tVous ont-ils blessé ?\nDid you hear that?\tAs-tu entendu ça ?\nDid you hear that?\tAs-tu entendu cela ?\nDid you hear that?\tAvez-vous entendu cela ?\nDid you hear that?\tAvez-vous entendu ça ?\nDid you hear that?\tL'avez-vous entendu ?\nDid you know that?\tSavais-tu cela ?\nDid you know that?\tSaviez-vous cela ?\nDid you live here?\tAvez-vous vécu ici ?\nDid you live here?\tAs-tu vécu ici ?\nDid you read them?\tLes as-tu lus ?\nDid you wash that?\tAvez-vous lavé cela ?\nDid you wash that?\tAs-tu lavé ça ?\nDidn't you go out?\tN'es-tu pas sorti ?\nDidn't you go out?\tN'êtes-vous pas sorti ?\nDidn't you go out?\tN'es-tu pas sortie ?\nDidn't you go out?\tN'êtes-vous pas sortis ?\nDidn't you go out?\tN'êtes-vous pas sorties ?\nDiet is important.\tLe régime alimentaire est important.\nDisable the alarm.\tDésactive l'alarme.\nDisable the alarm.\tDésactivez l'alarme.\nDo ants have ears?\tLes fourmis ont-elles des oreilles ?\nDo as you're told.\tFais comme on te dit.\nDo as you're told.\tFaites comme on vous dit.\nDo it by yourself.\tFais-le toi-même !\nDo they like wine?\tEst-ce qu'ils aiment le vin ?\nDo they like wine?\tAiment-ils le vin ?\nDo we have a deal?\tSommes-nous parvenus à un accord ?\nDo you drink beer?\tBuvez-vous de la bière ?\nDo you drink beer?\tBois-tu de la bière ?\nDo you drink wine?\tVous buvez du vin ?\nDo you drink wine?\tBuvez-vous du vin ?\nDo you drink wine?\tBois-tu du vin ?\nDo you drink wine?\tTu bois du vin ?\nDo you ever sleep?\tT'arrive-t-il de dormir ?\nDo you ever sleep?\tÇa t'arrive de dormir ?\nDo you ever sleep?\tVous arrive-t-il de dormir ?\nDo you ever sleep?\tÇa vous arrive de dormir ?\nDo you feel lucky?\tTe sens-tu chanceux ?\nDo you feel lucky?\tTe sens-tu chanceuse ?\nDo you feel lucky?\tTe sens-tu en veine ?\nDo you feel lucky?\tVous sentez-vous chanceux ?\nDo you feel lucky?\tVous sentez-vous chanceuse ?\nDo you feel lucky?\tVous sentez-vous chanceuses ?\nDo you feel lucky?\tVous sentez-vous en veine ?\nDo you guys smoke?\tEst-ce que vous fumez?\nDo you have a bag?\tDisposez-vous d'un sac ?\nDo you have a car?\tAs-tu une voiture ?\nDo you have a car?\tAvez-vous une voiture ?\nDo you have a car?\tPossédez-vous une voiture ?\nDo you have a dog?\tAvez-vous un chien ?\nDo you have a dog?\tAs-tu un chien ?\nDo you have a pen?\tAvez-vous un stylo ?\nDo you have a pen?\tTu as un stylo ?\nDo you have a pen?\tAs-tu un stylo ?\nDo you have a pet?\tAs-tu un animal de compagnie ?\nDo you have a pet?\tAvez-vous un animal de compagnie ?\nDo you have a pet?\tAvez-vous un animal domestique ?\nDo you have a pet?\tAs-tu un animal domestique ?\nDo you have a son?\tAvez-vous un fils ?\nDo you have money?\tAs-tu de l'argent ?\nDo you have paper?\tAs-tu du papier ?\nDo you know Latin?\tConnais-tu le latin ?\nDo you like music?\tEst-ce que tu aimes la musique ?\nDo you like music?\tAimes-tu la musique ?\nDo you like music?\tTu aimes la musique ?\nDo you like music?\tLa musique te plaît ?\nDo you like music?\tLa musique vous plaît ?\nDo you like trips?\tAimes-tu les voyages ?\nDo you live alone?\tVivez-vous seuls ?\nDo you live alone?\tVivez-vous seules ?\nDo you live alone?\tVivez-vous seul ?\nDo you live alone?\tVivez-vous seule ?\nDo you live alone?\tVis-tu seul ?\nDo you live alone?\tVis-tu seule ?\nDo you love music?\tEst-ce que tu aimes la musique ?\nDo you love music?\tAimes-tu la musique ?\nDo you mean to go?\tVeux-tu y aller ?\nDo you mean to go?\tVoulez-vous y aller ?\nDo you need a bag?\tAvez-vous besoin d'un sachet ?\nDo you need money?\tAs-tu besoin d'argent ?\nDo you need money?\tAvez-vous besoin d'argent ?\nDo you see a rose?\tEst-ce que tu vois une rose ?\nDo you see a star?\tEst-ce que tu vois une étoile ?\nDo you smell that?\tSens-tu cela ?\nDo you understand?\tComprenez-vous ?\nDo you want a cab?\tVous voulez un taxi ?\nDo you want a car?\tVeux-tu une voiture ?\nDo you want a car?\tTu veux une voiture ?\nDo you want a job?\tVeux-tu un travail ?\nDo you want a job?\tVoulez-vous un travail ?\nDo you want to go?\tVeux-tu partir ?\nDo you want to go?\tTu veux partir ?\nDo you want to go?\tVeux-tu y aller ?\nDo you want to go?\tVeux-tu t'en aller ?\nDo you want to go?\tVoulez-vous vous en aller ?\nDo you want to go?\tVoulez-vous y aller ?\nDo you want to go?\tVoulez-vous partir ?\nDo you wish to go?\tVeux-tu y aller ?\nDo your very best.\tFais de ton mieux.\nDo your very best.\tFaites de votre mieux.\nDoes he live here?\tEst-ce qu'il habite ici ?\nDoes he live here?\tEst-ce qu'il vit ici ?\nDoes he live here?\tVit-il ici ?\nDoes she know you?\tTe connaît-elle ?\nDoes she know you?\tEst-ce qu'elle te connait ?\nDoes truth matter?\tLa vérité importe-t-elle ?\nDoes truth matter?\tEst-ce que la vérité importe ?\nDogs are faithful.\tLes chiens sont fidèles.\nDon't be so angry.\tNe te mets pas en colère.\nDon't be so silly.\tNe sois pas aussi bête.\nDon't be so silly.\tNe soyez pas aussi bête.\nDon't deceive him.\tNe le trompe pas.\nDon't do it again.\tNe le refaites pas !\nDon't do it again.\tNe le refais pas !\nDon't even try it.\tN'essaye même pas.\nDon't fire anyone.\tNe virez personne !\nDon't fire anyone.\tNe vire personne !\nDon't forget that.\tN'oublie pas ça.\nDon't forget that.\tN'oubliez pas ça.\nDon't forget that.\tN'oublie pas cela.\nDon't forget that.\tN'oubliez pas cela.\nDon't get excited.\tGarde la tête froide.\nDon't go in there.\tNe rentre pas là-dedans.\nDon't go in there.\tNe rentrez pas là-dedans.\nDon't hurt anyone.\tNe fais de mal à personne !\nDon't hurt anyone.\tNe faites de mal à personne !\nDon't laugh at me.\tNe te ris pas de moi.\nDon't let me down.\tNe me laissez pas tomber.\nDon't let me down.\tNe me laisse pas tomber.\nDon't look at him!\tNe le regarde pas !\nDon't look at him!\tNe le regardez pas !\nDon't look for us.\tNe nous cherche pas !\nDon't look for us.\tNe nous cherchez pas !\nDon't look so sad.\tN'ayez pas l'air si triste !\nDon't look so sad.\tN'aie pas l'air si triste !\nDon't make a fuss.\tN'en faites pas toute une histoire.\nDon't make me beg.\tNe m'oblige pas à supplier.\nDon't rely on him.\tNe te repose pas sur lui.\nDon't rely on him.\tNe te fie pas à lui !\nDon't repeat that.\tNe répète pas ça !\nDon't repeat that.\tNe réïtère pas ça !\nDon't repeat that.\tNe répétez pas ça !\nDon't repeat that.\tNe réïtérez pas ça !\nDon't run so fast.\tNe cours pas si vite.\nDon't screw it up!\tNe le fous pas en l'air !\nDon't screw it up!\tNe le foire pas !\nDon't screw it up!\tNe le foirez pas !\nDon't talk to Tom.\tNe parle pas à Tom.\nDon't talk to Tom.\tNe parlez pas à Tom.\nDon't tell anyone.\tNe le dis à personne !\nDon't tell anyone.\tNe le dites à personne !\nDon't tell anyone.\tNe le dis à qui que ce soit !\nDon't tell anyone.\tNe le dites à qui que ce soit !\nDon't tell anyone.\tNe le dis à quiconque !\nDon't tell anyone.\tNe le dites à quiconque !\nDon't threaten me.\tNe me menace pas.\nDon't threaten me.\tNe me menacez pas.\nDon't turn around.\tNe te retourne pas.\nDon't turn around.\tNe vous retournez pas.\nDon't wait for me.\tNe m'attendez pas.\nDon't wake her up.\tNe la réveille pas.\nDon't you go away.\tNe partez pas.\nDon't you like us?\tNe nous apprécies-tu pas ?\nDon't you like us?\tNe nous appréciez-vous pas ?\nDrop your weapons!\tLaisse tomber tes armes !\nDrop your weapons!\tLaisse tomber les armes !\nDrop your weapons!\tLaissez tomber les armes !\nDrop your weapons!\tLaissez tomber vos armes !\nEarth is a planet.\tLa Terre est une planète.\nEven my mom knows.\tMême ma mère le sait.\nEvery bus is full.\tTous les bus sont pleins.\nEverybody cheered.\tTout le monde a applaudi.\nEverybody cheered.\tTout le monde applaudit.\nEverybody is fine.\tTout le monde va bien.\nEverybody is sore.\tTout le monde est vexé.\nEverybody is sore.\tTout le monde est agacé.\nEverybody's happy.\tTout le monde est content.\nEverybody's happy.\tTout le monde est heureux.\nEverybody's tired.\tTout le monde est fatigué.\nEveryone got sick.\tTout le monde se mit à être malade.\nEveryone is angry.\tTout le monde est en colère.\nEveryone is drunk.\tTout le monde est saoul.\nEveryone is going.\tTout le monde y va.\nEveryone is going.\tTout le monde s'en va.\nEveryone is happy.\tTout le monde est heureux.\nEveryone is happy.\tTout le monde est satisfait.\nEveryone is tired.\tTout le monde est fatigué.\nEveryone knows me.\tTout le monde me connait.\nEveryone sat down.\tTout le monde s'assit.\nEveryone sat down.\tTout le monde s'est assis.\nEveryone screamed.\tTout le monde cria.\nEveryone screamed.\tTout le monde a crié.\nEveryone was hurt.\tTout le monde a été blessé.\nEveryone was hurt.\tTout le monde fut blessé.\nEveryone's asleep.\tTout le monde dort.\nEveryone's asleep.\tTout le monde est endormi.\nEveryone's eating.\tTout le monde est en train de manger.\nEverything is bad.\tTout est mauvais.\nEverything is new.\tTout est nouveau.\nEverything is new.\tTout est neuf.\nEverything is set.\tTout est prêt.\nEverything is set.\tTout est en place.\nEverything's fine.\tTout va bien.\nExercise outdoors.\tFais de l'exercice à l'extérieur.\nExercise outdoors.\tFaites de l'exercice à l'extérieur.\nFill in this form.\tRemplissez ce formulaire.\nFinish your drink.\tFinis ton verre !\nFinish your drink.\tFinissez votre verre !\nFire is dangerous.\tLe feu est dangereux.\nFry an egg for me.\tCuis-moi un œuf.\nGet into your car.\tFile dans ta voiture !\nGet into your car.\tFilez dans votre voiture !\nGet into your car.\tGrimpe dans ta voiture !\nGet into your car.\tGrimpez dans votre voiture !\nGet me some water.\tVa me chercher de l'eau !\nGet me some water.\tAllez me chercher de l'eau !\nGet on your knees.\tMets-toi à genoux.\nGet on your knees.\tMettez-vous à genoux.\nGet on your knees.\tÀ genoux !\nGet on your knees.\tMets-toi à genoux !\nGet on your knees.\tMettez-vous à genoux !\nGet on your knees.\tAgenouille-toi !\nGet on your knees.\tAgenouillez-vous !\nGet out of my bed.\tDégage de mon lit !\nGet out of my bed.\tDégagez de mon lit !\nGet out of my bed.\tSors de mon lit !\nGet out of my bed.\tSortez de mon lit !\nGet out of my car.\tSors de ma voiture !\nGet out of my car.\tSortez de ma voiture !\nGet out of my way.\tÉcarte-toi de mon chemin.\nGet ready for bed.\tPréparez-vous à aller au lit !\nGet ready for bed.\tPrépare-toi à aller au lit !\nGet ready quickly.\tPrépare-toi vite.\nGet up out of bed.\tSors du lit !\nGet up out of bed.\tSortez du lit !\nGet up, everybody.\tDebout, tout le monde !\nGive me an orange.\tDonnez-moi une orange.\nGive me five days.\tDonnez-moi cinq jours.\nGive me five days.\tDonne-moi cinq jours.\nGive me some milk.\tDonne-moi un peu de lait.\nGive me the money.\tAboule le fric !\nGive me your belt.\tDonne-moi ta ceinture.\nGive me your hand.\tDonne-moi la main.\nGive me your keys.\tDonne-moi tes clés !\nGive me your keys.\tDonnez-moi vos clés !\nGo ahead and talk.\tVas-y et parle.\nGo ahead and talk.\tPoursuis et parle.\nGo away right now!\tPartez tout de suite !\nGo away. I'm busy.\tPartez. Je suis occupé.\nGo away. I'm busy.\tAllez-vous en. Je suis occupée.\nGo get some water.\tVa chercher de l'eau !\nGo get some water.\tAllez chercher de l'eau !\nGo straight ahead.\tVa tout droit.\nGod bless America.\tQue Dieu bénisse les États-Unis d'Amérique !\nGoodnight, Mother.\tBonne nuit, Mère !\nGrab hold of this.\tSaisis ceci !\nGrab hold of this.\tSaisissez ceci !\nHas Tom eaten yet?\tTom a-t-il déjà mangé ?\nHas Tom eaten yet?\tEst-ce que Tom a déjà mangé ?\nHas the bell rung?\tLa cloche a-t-elle sonné ?\nHaste makes waste.\tLa vitesse crée de la perte.\nHaste makes waste.\tHâte-toi lentement.\nHave a drink, Tom.\tBois un coup, Tom.\nHave you finished?\tAs-tu fini ?\nHave you finished?\tAs-tu fini ?\nHave you finished?\tAvez-vous fini ?\nHave you tried it?\tAvez-vous essayé ?\nHave you tried it?\tAs-tu essayé ?\nHay is for horses.\tLe foin, c'est pour les chevaux.\nHay is for horses.\tLe foin est pour les chevaux.\nHe appeared young.\tIl paraissait jeune.\nHe appeared young.\tIl avait l'air jeune.\nHe arrived safely.\tIl est arrivé sans encombre.\nHe asked for food.\tIl a réclamé de la nourriture.\nHe asked for help.\tIl a demandé de l'aide.\nHe became furious.\tIl est devenu furieux.\nHe began to sweat.\tIl s'est mis à transpirer.\nHe began to sweat.\tIl se mit à transpirer.\nHe blackmailed me.\tIl m'a fait chanter.\nHe blocked my way.\tIl m'a barré le chemin.\nHe broke his word.\tIl n'a pas tenu sa parole.\nHe broke his word.\tIl a rompu sa parole.\nHe broke my heart.\tIl m'a brisé le cœur.\nHe called my name.\tIl appela mon nom.\nHe came back soon.\tIl est revenu peu après.\nHe came in person.\tIl est venu en personne.\nHe came to see me.\tIl est venu pour me voir.\nHe can't be young.\tIl ne doit pas être jeune.\nHe can't help you.\tIl ne peut pas t'aider.\nHe can't help you.\tIl ne peut pas vous aider.\nHe carried a cane.\tIl portait une canne.\nHe chewed his gum.\tIl mâcha sa gomme.\nHe cried with joy.\tIl pleura de joie.\nHe deals in grain.\tIl est marchand de grains.\nHe did a good job.\tIl a fait du bon boulot.\nHe did a good job.\tIl fit du bon boulot.\nHe did it himself.\tIl l'a fait tout seul.\nHe did not listen.\tIl n'écouta pas.\nHe did not listen.\tIl n'a pas écouté.\nHe didn't protest.\tIl ne protesta pas.\nHe didn't protest.\tIl n'a pas protesté.\nHe didn't show up.\tIl ne s'est pas montré.\nHe died of cancer.\tIl est mort d'un cancer.\nHe died yesterday.\tIl est décédé hier.\nHe died yesterday.\tIl a clamecé hier.\nHe died yesterday.\tIl est canné hier.\nHe died yesterday.\tIl a crevé hier.\nHe does not smoke.\tIl ne fume pas.\nHe doesn't listen.\tIl n'écoute pas.\nHe drank a little.\tIl a un peu bu.\nHe drives a truck.\tIl conduit une camionnette.\nHe drives roughly.\tIl conduit brutalement.\nHe dropped a vase.\tIl a fait tomber un vase.\nHe earns a living.\tIl gagne de quoi vivre.\nHe employs a maid.\tIl emploie une femme de ménage.\nHe employs a maid.\tIl emploie une servante.\nHe exhaled loudly.\tIl expira bruyamment.\nHe fills the bill.\tIl paie l'addition.\nHe gave her a box.\tIl lui a donné une boîte.\nHe gave me a cold.\tIl m'a transmis un rhume.\nHe gave me a hint.\tIl me donna un indice.\nHe glanced at her.\tIl jeta un coup d'oeil sur elle.\nHe goes to school.\tIl va a l'école.\nHe got me a watch.\tIl m'a acheté une montre.\nHe got very drunk.\tIl s'enivra beaucoup.\nHe got very drunk.\tIl s'est beaucoup enivré.\nHe got well again.\tIl se remit.\nHe grabbed my arm.\tIl saisit mon bras.\nHe grabbed my arm.\tIl a saisi mon bras.\nHe had a new idea.\tIl eut une nouvelle idée.\nHe had no coat on.\tIl n'avait aucun manteau sur lui.\nHe had no coat on.\tIl ne portait pas de manteau.\nHe hanged himself.\tIl s'est pendu.\nHe has a few pens.\tIl a quelques stylos.\nHe has a headache.\tIl a mal à la tête.\nHe has a headache.\tIl souffre de maux de tête.\nHe has a headache.\tIl a mal au crâne.\nHe has a headache.\tIl a un mal de tête.\nHe has a huge ego.\tIl a un ego sur-dimensionné.\nHe has blond hair.\tIl a les cheveux blonds.\nHe has brown eyes.\tIl a les yeux marron.\nHe has curly hair.\tIl a les cheveux frisés.\nHe has curly hair.\tIl a les cheveux bouclés.\nHe has no bicycle.\tIl n'a pas de bicyclette.\nHe has no remorse.\tIl n'a aucun remord.\nHe has short hair.\tIl a les cheveux courts.\nHe has small feet.\tIl a de petits pieds.\nHe has three sons.\tIl a trois fils.\nHe hates his life.\tIl déteste sa vie.\nHe hates shopping.\tIl déteste faire des courses.\nHe hates shopping.\tIl déteste faire les courses.\nHe helped me move.\tIl m'a aidé à déménager.\nHe himself did it.\tIl l'a fait par lui-même.\nHe is a big eater.\tC'est un gros mangeur.\nHe is a biologist.\tIl est biologiste.\nHe is a born poet.\tC'est un poète né.\nHe is a brave man.\tC'est un brave homme.\nHe is a daredevil.\tC'est un casse-cou.\nHe is a detective.\tIl est détective.\nHe is a dramatist.\tIl est dramaturge.\nHe is a gentleman.\tC'est un gentleman.\nHe is a gentleman.\tC'est un monsieur.\nHe is a physicist.\tC'est un physicien.\nHe is a physicist.\tIl est physicien.\nHe is a quiet man.\tC'est un homme taiseux.\nHe is a scientist.\tC'est un scientifique.\nHe is a scientist.\tIl est scientifique.\nHe is about forty.\tIl doit avoir la quarantaine.\nHe is an American.\tIl est Américain.\nHe is an evil man.\tC'est un méchant homme.\nHe is at his desk.\tIl est à son bureau.\nHe is beyond help.\tIl n'y a rien à en tirer.\nHe is beyond hope.\tC'est un cas sans espoir.\nHe is getting old.\tIl se fait vieux.\nHe is in business.\tIl est dans les affaires.\nHe is incompetent.\tIl est incompétent.\nHe is influential.\tIl est influent.\nHe is intelligent.\tIl est intelligent.\nHe is introverted.\tIl est introverti.\nHe is just my age.\tIl a le même âge que moi.\nHe is not married.\tIl n'est pas marié.\nHe is not so tall.\tIl n'est pas si grand.\nHe is on the team.\tIl fait partie de l'équipe.\nHe is quite right.\tIl a plutôt raison.\nHe is running now.\tMaintenant, il court.\nHe is still alive.\tIl est encore vivant.\nHe is still angry.\tIl est encore fâché.\nHe is teaching me.\tIl m'instruit.\nHe is unrealistic.\tIl est irréaliste.\nHe is very honest.\tIl est très honnête.\nHe is walking now.\tIl est actuellement en train de marcher.\nHe is watching TV.\tIl regarde la TV.\nHe is watching TV.\tIl regarde la télévision.\nHe isn't here now.\tIl n'est pas là en ce moment.\nHe isn't here now.\tIl n'est pas là actuellement.\nHe just texted me.\tIl vient de me faire parvenir un texto.\nHe just texted me.\tIl vient de m'envoyer un texto.\nHe keeps his word.\tIl tient parole.\nHe keeps two cats.\tIl a deux chats.\nHe kept it secret.\tIl l'a gardé secret.\nHe kept on crying.\tIl ne cessa de pleurer.\nHe kept on crying.\tIl n'a pas cessé de pleurer.\nHe killed himself.\tIl s'est suicidé.\nHe knows too much.\tIl en sait trop.\nHe lay on the bed.\tIl était étendu sur le lit.\nHe left the house.\tIl a quitté la maison.\nHe likes my jokes.\tIl apprécie mes blagues.\nHe likes my jokes.\tIl apprécie mes plaisanteries.\nHe likes sleeping.\tIl aime dormir.\nHe likes sleeping.\tIl apprécie de dormir.\nHe lives close by.\tIl n'habite pas loin.\nHe lives frugally.\tIl vit de manière frugale.\nHe lives frugally.\tIl vit chichement.\nHe lives in Kyoto.\tIl habite à Kyôto.\nHe lives in Osaka.\tIl habite à Osaka.\nHe lives in Tokyo.\tIl habite à Tokyo.\nHe looks after us.\tIl s'occupe de nous.\nHe looks confused.\tIl a l'air paumé.\nHe looks confused.\tIl a l'air désorienté.\nHe looks confused.\tIl a l'air perplexe.\nHe looks familiar.\tIl me semble le connaître.\nHe lost his honor.\tIl a perdu son honneur.\nHe loves to party.\tIl adore faire la fête.\nHe loves to party.\tIl adore faire la nouba.\nHe loves to party.\tIl adore faire la java.\nHe made a mistake.\tIl a commis une erreur.\nHe made me a cake.\tIl me confectionna un gâteau.\nHe made me a cake.\tIl m'a confectionné un gâteau.\nHe made me a suit.\tIl m'a confectionné un costume.\nHe may come today.\tIl viendra peut-être aujourd'hui.\nHe moved to Tokyo.\tIl a déménagé à Tokyo.\nHe must find work.\tIl lui faut trouver du travail.\nHe must find work.\tIl doit trouver du travail.\nHe needed to rest.\tIl avait besoin de se reposer.\nHe never asked me.\tIl ne me l'a jamais demandé.\nHe owns this land.\tCette terre lui appartient.\nHe raised his arm.\tIl leva la main.\nHe raised his arm.\tIl leva le bras.\nHe raised his hat.\tIl a levé son chapeau.\nHe ran five miles.\tIl courut cinq miles.\nHe refused to pay.\tIl refusa de payer.\nHe refused to pay.\tIl se refusa à payer.\nHe refused to pay.\tIl s'est refusé à payer.\nHe refused to pay.\tIl a refusé de payer.\nHe requested help.\tIl demanda de l'aide.\nHe requested help.\tIl requis de l'aide.\nHe ruined my life.\tIl a ruiné ma vie.\nHe runs very fast.\tIl court fort vite.\nHe sat on the bed.\tIl s'assit sur le lit.\nHe saved a sailor.\tIl a sauvé un marin.\nHe saw everything.\tIl a tout vu.\nHe saw everything.\tIl vit tout.\nHe shook his head.\tIl a secoué la tête.\nHe skipped a year.\tIl sauta une classe.\nHe speaks Chinese.\tIl parle chinois.\nHe speaks Chinese.\tIl parle le chinois.\nHe speaks English.\tIl parle anglais.\nHe speaks Russian.\tIl parle russe.\nHe speaks Russian.\tIl parle le russe.\nHe speaks quickly.\tIl parle vite.\nHe started to cry.\tIl s'est mis à pleurer.\nHe started to cry.\tIl se mit à pleurer.\nHe stayed up late.\tIl est resté debout tard.\nHe stole my heart.\tIl a dérobé mon cœur.\nHe struck a match.\tIl frotta une allumette.\nHe takes vitamins.\tIl prend des vitamines.\nHe teaches Arabic.\tIl enseigne l'arabe.\nHe threw the ball.\tIl lança la balle.\nHe told the truth.\tIl dit la vérité.\nHe told the truth.\tIl disait la vérité.\nHe took a day off.\tIl prit un jour de congé.\nHe turned the key.\tIl tourna la clé.\nHe turned the key.\tIl a tourné la clé.\nHe twisted my arm.\tIl m'a tordu le bras.\nHe wakes up early.\tIl se lève tôt.\nHe walked quietly.\tIl marchait tranquillement.\nHe wants an apple.\tIl veut une pomme.\nHe wants to speak.\tIl veut parler.\nHe was a bit late.\tIl était un peu en retard.\nHe was a tall man.\tC'était un homme de grande taille.\nHe was imprisoned.\tIl fut emprisonné.\nHe was imprisoned.\tIl a été emprisonné.\nHe was raging mad.\tIl était fou de rage.\nHe was tired then.\tIl était fatigué à ce moment-là.\nHe was very happy.\tIl fut très heureux.\nHe was wide awake.\tIl était tout à fait éveillé.\nHe went back home.\tIl rentra chez lui.\nHe went back home.\tIl est revenu à la maison.\nHe went ballistic.\tIl a piqué une crise.\nHe will be missed.\tIl manquera.\nHe will come back.\tIl reviendra.\nHe will come soon.\tIl viendra bientôt.\nHe will excuse me.\tIl m'excusera.\nHe wore old shoes.\tIl portait de vieilles chaussures.\nHe wore red pants.\tIl portait un pantalon rouge.\nHe works at night.\tIl travaille de nuit.\nHe works at night.\tIl travaille la nuit.\nHe works under me.\tIl travaille sous mes ordres.\nHe writes scripts.\tIl écrit des scénarios.\nHe wrote a letter.\tIl a écrit une lettre.\nHe'll get over it.\tIl s'en remettra.\nHe's a big coward.\tC'est un grand lâche.\nHe's a journalist.\tIl est journaliste.\nHe's a movie buff.\tC'est un mordu de cinéma.\nHe's already left.\tIl est déjà parti.\nHe's already left.\tIl s'en est déjà allé.\nHe's an old timer.\tC'est un vieux de la vieille.\nHe's an undergrad.\tC'est un étudiant de premier cycle.\nHe's deep in debt.\tIl est endetté jusqu'au cou.\nHe's from Georgia.\tIl est originaire de Géorgie.\nHe's in hot water.\tIl est dans le pétrin.\nHe's in hot water.\tIl est dans la mouise.\nHe's just arrived.\tIl vient d'arriver.\nHe's kind of cute.\tIl est assez mignon.\nHe's kind of cute.\tIl est mignon, dans son genre.\nHe's looking good.\tIl a l'air bien.\nHe's not here yet.\tIl n'est pas encore là.\nHe's old and ugly.\tIl est vieux et laid.\nHe's raking it in.\tIl s'en met plein les poches.\nHe's raking it in.\tIl s'en fourre plein les fouilles.\nHe's raking it in.\tIl ramasse l'argent à la pelle.\nHe's raking it in.\tIl prend plein d'oseille.\nHe's raking it in.\tIl gagne plein de thune.\nHe's really quick.\tIl est vraiment rapide.\nHe's sound asleep.\tIl dort profondément.\nHe's still single.\tIl est toujours célibataire.\nHe's still single.\tIl est encore célibataire.\nHe's swimming now.\tIl est en train de nager.\nHe's tickled pink.\tIl est aux anges.\nHe's too trusting.\tIl est trop confiant.\nHer eyes are blue.\tSes yeux sont bleus.\nHer eyes darkened.\tSes yeux s'assombrirent.\nHer nails are red.\tSes ongles sont rouges.\nHere is your book.\tVoici ton livre.\nHere we are again.\tNous voici donc de nouveau au même point.\nHere's my receipt.\tVoici mon reçu.\nHere's some water.\tVoici un peu d'eau.\nHere's the change.\tVoici la monnaie.\nHere's your drink.\tVoici ton verre !\nHere's your drink.\tVoici votre verre !\nHey, this is nice.\tEh, c'est sympa.\nHis car is a Ford.\tSa voiture est une Ford.\nHis eyes are blue.\tSes yeux sont bleus.\nHis room's a mess.\tSa chambre est un bordel.\nHis story is true.\tSon histoire est vraie.\nHold that thought.\tGarde ça en tête.\nHoney, I love you.\tTrésor, je t'aime !\nHow about a drink?\tQue diriez-vous d'un verre ?\nHow about a drink?\tQue dirais-tu d'un verre ?\nHow about a smoke?\tQue dites-vous d'aller en griller une ?\nHow about a snack?\tQue dites-vous d'un en-cas ?\nHow about a snack?\tQue dis-tu d'un en-cas ?\nHow about running?\tQue penseriez-vous de courir ?\nHow about running?\tQue penses-tu de courir ?\nHow about running?\tEt si nous courions ?\nHow about running?\tEt si tu courais ?\nHow about running?\tEt si je courais ?\nHow about running?\tEt s'ils couraient ?\nHow about running?\tEt si elles couraient ?\nHow about running?\tEt si vous couriez ?\nHow about running?\tEt s'il courait ?\nHow about running?\tEt si elle courait ?\nHow about running?\tSi on allait courir ?\nHow about tonight?\tQue dis-tu de ce soir ?\nHow about tonight?\tQue dis-tu de cette nuit ?\nHow about tonight?\tQue dites-vous de ce soir ?\nHow about tonight?\tQue dites-vous de cette nuit ?\nHow are you doing?\tComment vas-tu ?\nHow are you today?\tComment vas-tu aujourd'hui ?\nHow are you today?\tComment vous portez-vous, aujourd'hui ?\nHow could this be?\tComment cela pourrait-il être ?\nHow could this be?\tComment cela se pourrait-il ?\nHow did you do it?\tComment avez-vous fait ?\nHow do we do that?\tComment faisons-nous cela ?\nHow do we find it?\tComment le trouve-t-on ?\nHow do we find it?\tComment la trouve-t-on ?\nHow do we find it?\tComment est-ce qu'on le trouve ?\nHow do we find it?\tComment est-ce qu'on la trouve ?\nHow do we stop it?\tComment l'arrêtons-nous ?\nHow do we stop it?\tComment le stoppons-nous ?\nHow does he do it?\tComment fait-il ?\nHow does he do it?\tComment s'y prend-il ?\nHow far did it go?\tJusqu'où est-ce allé ?\nHow is it spelled?\tComment l'épelle-t-on ?\nHow long are they?\tQuelle longueur font-ils ?\nHow long are they?\tDe quelle longueur sont-ils ?\nHow long are they?\tQuelle longueur font-elles ?\nHow long are they?\tDe quelle longueur sont-elles ?\nHow lucky you are!\tQuelle chance tu as !\nHow lucky you are!\tQuelle chance vous avez !\nHow lucky you are!\tComme tu as de la chance !\nHow lucky you are!\tComme vous avez de la chance !\nHow old is he now?\tQuel âge a-t-il maintenant ?\nHow should I know?\tComment le saurais-je ?\nHow was the beach?\tComment était la plage ?\nHow was your stay?\tComment s'est passé votre séjour ?\nHow was your test?\tComment s'est passé ton test ?\nHow was your trip?\tComment était ton voyage ?\nHow was your trip?\tComment fut votre voyage ?\nHow was your walk?\tComment était ta promenade ?\nHow'd it work out?\tComment est-ce que ça réussirait ?\nHow'd you find it?\tComment le trouverais-tu ?\nHow'd you find it?\tComment le trouveriez-vous ?\nHow's the weather?\tQuel temps fait-il ?\nHow's the weather?\tComment est le temps ?\nHow's the weather?\tQuel temps fait-il ?\nHow's your family?\tComment va votre famille ?\nHow's your family?\tComment va ta famille ?\nHow's your father?\tComment va ton père ?\nHow's your father?\tComment va votre père ?\nHow's your mother?\tComment va votre mère ?\nHow's your mother?\tComment va ta mère ?\nHow's your mother?\tComment va votre mère ?\nI accept the risk.\tJ'en accepte le risque.\nI admit I'm wrong.\tJ'admets que j'ai tort.\nI agreed to do it.\tJ'ai accepté de le faire.\nI agreed with Tom.\tJ'étais d'accord avec Tom.\nI agreed with her.\tJe fus d'accord avec elle.\nI agreed with her.\tJ'ai été d'accord avec elle.\nI almost shot you.\tJe t'ai presque tiré dessus.\nI almost shot you.\tJe vous ai presque tiré dessus.\nI already said no.\tJ'ai déjà dit non.\nI also went there.\tJ'y suis également allé.\nI also went there.\tJe m'y suis également rendu.\nI also went there.\tJ'y suis également allée.\nI also went there.\tJe m'y suis également rendue.\nI am 18 years old.\tJ'ai dix-huit ans.\nI am 19 years old.\tJ'ai 19 ans.\nI am a bad person.\tJe suis un être mauvais.\nI am a cat person.\tJ'aime les chats.\nI am a vegetarian.\tJe suis végétarienne.\nI am afraid to go.\tJ'ai peur d'y aller.\nI am afraid to go.\tJ'ai peur de m'y rendre.\nI am almost ready.\tJe suis presque prêt.\nI am almost ready.\tJe suis presque prête.\nI am almost ready.\tJe suis quasiment prête.\nI am baking bread.\tJe cuis du pain.\nI am baking bread.\tJe suis en train de cuire du pain.\nI am from England.\tJe viens d'Angleterre.\nI am going to bed.\tJe vais au lit.\nI am going to bed.\tJe vais dormir.\nI am good at math.\tJe suis bon en maths.\nI am in the house.\tJe suis dans la maison.\nI am in your debt.\tJe suis votre débiteur.\nI am in your debt.\tJe suis votre débitrice.\nI am not like you.\tJe ne suis pas comme toi.\nI am not like you.\tJe ne suis pas comme vous.\nI am rather happy.\tJe suis assez content.\nI am ready to die.\tJe suis préparé à mourir.\nI am ready to die.\tJe suis prêt à mourir.\nI am so exhausted!\tJe suis si épuisé !\nI am so exhausted!\tJe suis si épuisée !\nI am studying now.\tJe suis en train d'étudier.\nI am the same age.\tJ'ai le même âge.\nI am the same age.\tJe suis du même âge.\nI am very curious.\tJe suis très curieux.\nI am very pleased.\tJe suis très satisfait.\nI am very pleased.\tJe suis très content.\nI appreciate that.\tJe l'apprécie.\nI appreciate this.\tJe l'apprécie.\nI ate my sandwich.\tJ'ai mangé mon sandwich.\nI baited the hook.\tJ'ai mis un appât sur l'hameçon.\nI barely know you.\tJe te connais à peine.\nI bathe every day.\tJe me baigne quotidiennement.\nI bathe every day.\tJe me baigne tous les jours.\nI beg you to stay.\tJe te supplie de rester.\nI beg you to stay.\tJe vous supplie de rester.\nI beg your pardon.\tJe vous prie de m'excuser.\nI beg your pardon.\tJe te prie de m'excuser.\nI beg your pardon?\tJe vous demande pardon ?\nI beg your pardon?\tJe vous supplie de me pardonner.\nI beg your pardon?\tPlaît-il ?\nI bet you're busy.\tJe parie que vous êtes occupé.\nI bet you're busy.\tJe parie que vous êtes occupée.\nI bet you're busy.\tJe parie que vous êtes occupés.\nI bet you're busy.\tJe parie que vous êtes occupées.\nI bet you're busy.\tJe parie que tu es occupé.\nI bet you're busy.\tJe parie que tu es occupée.\nI bid against him.\tJe parie contre lui.\nI bought a hybrid.\tJ'ai fait l'acquisition d'une hybride.\nI bought that car.\tJ'ai acheté cette voiture.\nI bought the book.\tJ'ai acheté le livre.\nI bought the book.\tJ'achetai le livre.\nI braked suddenly.\tJ'ai freiné soudainement.\nI broke his heart.\tJe lui ai brisé le cœur.\nI brought cookies.\tJ'ai apporté des biscuits.\nI brushed my hair.\tJe me suis brossé les cheveux.\nI brushed my hair.\tJe me suis coiffé.\nI brushed my hair.\tJe me suis coiffée.\nI called for help.\tJ'ai appelé à l'aide.\nI called security.\tJ'ai appelé la sécurité.\nI called the cops.\tJ'ai appelé les flics.\nI came from China.\tJe suis venu de la Chine.\nI can comfort her.\tJe peux la consoler.\nI can drive a car.\tJe peux conduire une voiture.\nI can handle this.\tJe sais y faire.\nI can handle this.\tJe sais m'y prendre.\nI can handle this.\tJe peux m'en charger.\nI can handle this.\tJe peux m'en occuper.\nI can hardly swim.\tJe sais à peine nager.\nI can hardly walk.\tJe peux difficilement marcher.\nI can play Chopin.\tJe peux jouer du Chopin.\nI can play tennis.\tJe sais jouer au tennis.\nI can protect you.\tJe peux te protéger.\nI can protect you.\tJe peux vous protéger.\nI can't afford it.\tJe n'en ai pas les moyens.\nI can't blame him.\tJe ne peux pas le blâmer.\nI can't blame him.\tJe ne peux pas lui faire de reproche.\nI can't blame you.\tJe ne peux pas te blâmer.\nI can't blame you.\tJe ne peux pas vous blâmer.\nI can't blame you.\tJe ne peux pas vous faire de reproche.\nI can't blame you.\tJe ne peux pas te faire de reproche.\nI can't keep this.\tJe ne peux pas garder ceci.\nI can't leave now.\tJe ne peux pas partir maintenant.\nI can't place him.\tJe n'arrive pas à le remettre.\nI can't place him.\tJe ne parviens pas à le remettre.\nI can't read lips.\tJe ne peux pas lire sur les lèvres.\nI can't read this.\tJe ne peux pas lire ceci.\nI can't slow down.\tJe ne peux pas ralentir.\nI can't stand him.\tJe ne peux pas le supporter.\nI can't stand him.\tJe n'arrive pas à le supporter.\nI can't swim well.\tJe ne sais pas bien nager.\nI changed clothes.\tJ'ai changé de vêtements.\nI changed my mind.\tJ'ai changé d'avis.\nI checked my bags.\tJ'ai enregistré mes bagages.\nI checked outside.\tJ'ai vérifié à l'extérieur.\nI come from Japan.\tJe viens du Japon.\nI considered that.\tJe l'ai pris en considération.\nI considered that.\tJe l'ai envisagé.\nI could intervene.\tJe pouvais intervenir.\nI could intervene.\tJe pourrais intervenir.\nI could tutor you.\tJe pourrais vous enseigner.\nI could tutor you.\tJe pourrais t'enseigner.\nI couldn't get it.\tJe n'ai pas capté.\nI couldn't refuse.\tJe ne pouvais refuser.\nI deny everything.\tJe nie tout.\nI deserved better.\tJe méritais mieux.\nI did a bad thing.\tJ'ai fait quelque chose de mal.\nI did a lot today.\tJ'ai beaucoup fait, aujourd'hui.\nI did all I could.\tJe fis tout ce que je pus.\nI did all I could.\tJ'ai fait tout ce que j'ai pu.\nI did it just now.\tJe viens de le faire.\nI did my homework.\tJ'ai fait mes devoirs.\nI did my homework.\tJ'ai effectué mes devoirs.\nI did this myself.\tJe l'ai fait moi-même.\nI did you a favor.\tJe t'ai rendu service.\nI did you a favor.\tJe vous ai rendu service.\nI did you a favor.\tJe vous ai accordé une faveur.\nI did you a favor.\tJe t'ai accordé une faveur.\nI didn't break it.\tJe ne l'ai pas cassé.\nI didn't break it.\tJe ne l'ai pas rompu.\nI didn't break it.\tJe ne l'ai pas enfreint.\nI didn't buy them.\tJe ne les ai pas achetés.\nI didn't buy them.\tJe ne les ai pas achetées.\nI didn't buy them.\tJe n'en ai pas fait l'acquisition.\nI didn't buy them.\tJe n'ai pas procédé à leur acquisition.\nI didn't clean it.\tJe ne l'ai pas lavé.\nI didn't feel bad.\tJe ne me sentais pas mal.\nI didn't graduate.\tJe ne fus pas diplômé.\nI didn't graduate.\tJe ne fus pas diplômée.\nI didn't graduate.\tJe n'ai pas été diplômé.\nI didn't graduate.\tJe n'ai pas été diplômée.\nI didn't hear you.\tJe ne vous ai pas entendu.\nI didn't kill Tom.\tJe n'ai pas tué Tom.\nI didn't kiss Tom.\tJe n'ai pas embrassé Tom.\nI didn't know Tom.\tJe ne connaissais pas Tom.\nI didn't know how.\tJ'ignorais comment.\nI didn't register.\tJe ne me suis pas inscrit.\nI didn't say that.\tJe n'ai pas dit cela.\nI didn't say that.\tJe n'ai pas dit ça.\nI didn't see much.\tJe n'ai pas vu grand chose.\nI didn't steal it.\tJe ne l'ai pas volé.\nI didn't steal it.\tJe ne l'ai pas dérobé.\nI didn't touch it.\tJe ne l'ai pas touché.\nI do all the work.\tJe fais tout le travail.\nI do not feel sad.\tJe ne me sens pas malheureux.\nI do not feel sad.\tJe ne suis pas triste.\nI don't accept it.\tJe ne l'accepte pas.\nI don't blame you.\tJe ne te le reproche pas.\nI don't blame you.\tJe ne vous le reproche pas.\nI don't even vote.\tJe ne vote même pas.\nI don't feel sick.\tJe ne me sens pas malade.\nI don't feel well.\tJe ne me sens pas bien.\nI don't get opera.\tJe ne pige pas l'opéra.\nI don't have long.\tJe ne dispose pas de beaucoup de temps.\nI don't have that.\tJe n'ai pas ça.\nI don't have time.\tJe n'ai pas le temps.\nI don't know them.\tJe ne les connais pas.\nI don't like cops.\tJ'aime pas les flics.\nI don't like dogs.\tJ’aime pas les chiens.\nI don't like eggs.\tJe n'aime pas les œufs.\nI don't like kids.\tJe n'aime pas les enfants.\nI don't like sand.\tJe n'aime pas le sable.\nI don't like snow.\tJe n'aime pas la neige.\nI don't like that.\tJe n'aime pas cela.\nI don't like that.\tJe n'aime pas ça.\nI don't like this.\tJe n'aime pas cela.\nI don't need luck.\tJe n'ai pas besoin de chance.\nI don't negotiate.\tJe ne négocie pas.\nI don't want meat.\tJe ne veux pas de viande.\nI don't want that.\tJe ne veux pas de ça !\nI don't work here.\tJe ne travaille pas ici.\nI drank the water.\tJe bus l'eau.\nI drank the water.\tJ'ai bu l'eau.\nI dropped my keys.\tJ'ai fait tomber mes clés.\nI enjoy traveling.\tJ’aime voyager.\nI enjoy traveling.\tJ'ai plaisir à voyager.\nI feel better now.\tJe me sens mieux, maintenant.\nI feel really bad.\tJe me sens vraiment mal.\nI feel ridiculous.\tJe me sens ridicule.\nI feel safer here.\tJe me sens plus en sécurité, ici.\nI feel safer here.\tJe me sens davantage en sécurité, ici.\nI feel their pain.\tJe compatis à leur douleur.\nI feel vulnerable.\tJe me sens vulnérable.\nI feel well today.\tAujourd'hui, je vais bien.\nI felt threatened.\tJe me suis senti menacé.\nI felt threatened.\tJe me suis senti menacée.\nI felt very happy.\tJe me sentais très heureux.\nI felt very happy.\tJe me sentais très heureuse.\nI finally escaped.\tJe me suis finalement échappé.\nI finally escaped.\tJe m'échappai finalement.\nI finally gave up.\tJ'ai fini par abandonner.\nI finally gave up.\tJ'ai fini par laisser tomber.\nI find that funny.\tJe trouve ça drôle.\nI forgot my scarf.\tJ'ai oublié mon cache-nez.\nI forgot the book.\tJ'ai oublié le livre.\nI forgot the book.\tJ'oubliai le livre.\nI found a way out.\tJ'ai trouvé une issue.\nI found him a job.\tJe lui ai trouvé un travail.\nI found him a job.\tJe lui ai dégoté un emploi.\nI found the money.\tJ’ai trouvé l’argent.\nI gave him a call.\tJe lui ai téléphoné.\nI gave him a call.\tJe lui ai donné un coup de fil.\nI gave you a book.\tJe t'ai donné un livre.\nI get good grades.\tJ'ai de bonnes notes.\nI get the picture.\tJ'ai compris.\nI got a bee sting.\tJ'ai été piqué par une abeille.\nI got a flat tire.\tJ'ai crevé un pneu.\nI got first place.\tJ'ai obtenu la première place.\nI got it for free.\tJe l’ai eu gratuitement.\nI got left behind.\tOn m'a laissé derrière.\nI got my hair cut.\tJe me suis fait couper les cheveux.\nI got off lightly.\tJe m'en suis bien sorti.\nI got off lightly.\tJe m'en suis bien sortie.\nI got off lightly.\tJe m'en suis tiré à bon compte.\nI got off lightly.\tJe m'en suis tirée à bon compte.\nI got soaking wet.\tJe me suis fait tremper.\nI got soaking wet.\tJe me suis trempé.\nI got soaking wet.\tJe me suis trempée.\nI got very sleepy.\tJe me mis à avoir très sommeil.\nI guess it's true.\tJe suppose que c'est vrai.\nI guess that's OK.\tJe suppose que c'est d'accord.\nI guess that's OK.\tJe suppose que ça va.\nI guess that's OK.\tJe suppose que ça passe.\nI had a bad dream.\tJ'ai fait un mauvais rêve.\nI had a breakdown.\tJ'avais une panne.\nI had a good idea.\tJ'ai eu une bonne idée.\nI had a nightmare.\tJ'ai fait un cauchemar.\nI had a rough day.\tJ'ai eu une journée chahutée.\nI had an accident.\tFeci un incidente.\nI had fun with it.\tJe m'en suis amusé.\nI had stuff to do.\tJ'ai eu des trucs à faire.\nI hate being late.\tJe déteste être en retard.\nI hate exercising.\tJ'ai horreur de faire du sport.\nI hate hypocrites.\tJ'ai les hypocrites en horreur.\nI hate mosquitoes.\tJe déteste les moustiques.\nI hate my brother.\tJe déteste mon frère.\nI hate my parents.\tJe déteste mes parents.\nI hate rainy days.\tJe déteste les jours pluvieux.\nI hate rainy days.\tJe déteste les journées pluvieuses.\nI hate that color.\tJe déteste cette couleur.\nI hate that movie.\tJe déteste ce film.\nI hate this music.\tJe déteste cette musique.\nI hate this place.\tJe déteste cet endroit.\nI hate this store.\tJe déteste ce magasin.\nI hate this thing.\tJe déteste cette chose.\nI hate to do this.\tJe déteste faire ça.\nI have Tom's keys.\tJ'ai les clefs de Tom.\nI have a backache.\tJ'ai une douleur au dos.\nI have a bad cold.\tJ'ai un mauvais rhume.\nI have a computer.\tJe possède un ordinateur.\nI have a computer.\tJe dispose d'un ordinateur.\nI have a cut here.\tJ'ai une coupure ici.\nI have a daughter.\tJ'ai une fille.\nI have a hangover.\tJ'ai la gueule de bois.\nI have a headache.\tJ’ai mal au crâne.\nI have a passport.\tJ'ai un passeport.\nI have a proposal.\tJ'ai une proposition.\nI have a question.\tJ'ai une question.\nI have a solution.\tJ'ai une solution.\nI have an earache.\tJ'ai une otite.\nI have an old car.\tJ'ai une vieille voiture.\nI have an old car.\tMa voiture est vieille.\nI have an old car.\tJe possède une vieille voiture.\nI have apologized.\tJ'ai présenté mes excuses.\nI have bad breath.\tJ'ai mauvaise haleine.\nI have been loved.\tJ'ai été aimé.\nI have been loved.\tJ'ai été aimée.\nI have brown hair.\tJ'ai les cheveux châtains.\nI have everything.\tJ'ai tout.\nI have many books.\tJ'ai beaucoup de livres.\nI have many discs.\tJ'ai beaucoup de disques.\nI have no comment.\tJe n'ai aucun commentaire.\nI have no friends.\tJe n'ai pas d'amis.\nI have no friends.\tJe n'ai aucun ami.\nI have no friends.\tJe n'ai aucune amie.\nI have no friends.\tJe n'ai pas d'amies.\nI have no privacy.\tJe n'ai pas d'intimité.\nI have no regrets.\tJe n'ai pas de regrets.\nI have no sisters.\tJe n'ai pas de sœurs.\nI have one sister.\tJ'ai une sœur.\nI have some gifts.\tJ'ai des cadeaux.\nI have some money.\tJ'ai un peu d'argent.\nI have three dogs.\tJ'ai trois chiens.\nI have to do this.\tJe dois le faire.\nI have to go back.\tIl faut que je m'en retourne.\nI have to go back.\tIl faut que j'y retourne.\nI have to go home.\tJe dois rentrer chez moi.\nI have to go home.\tJe dois me rendre chez moi.\nI haven't decided.\tJe n'ai pas décidé.\nI haven't started.\tJe n'ai pas commencé.\nI heard screaming.\tJ'ai entendu crier.\nI heard something.\tJ'ai entendu quelque chose.\nI held his sleeve.\tJe l'ai tenu par la manche.\nI hit the jackpot.\tJ'ai tiré le gros lot.\nI hope he's wrong.\tJ'espère qu'il a tort.\nI hope she's safe.\tJ'espère qu'elle est saine et sauve.\nI hope she's safe.\tJ'espère qu'elle est en sécurité.\nI hope that helps.\tJ'espère que cela aide.\nI hope this works.\tJ'espère que ça fonctionne.\nI hope this works.\tJ'espère que ça marche.\nI hope to see you.\tJ'espère vous voir.\nI hope we survive.\tJ'espère que nous survivrons.\nI itch everywhere.\tÇa me gratte de partout.\nI just can't wait.\tJe suis très impatient.\nI just can't wait.\tJe suis très impatiente.\nI just can't wait.\tJ'ai vraiment hâte.\nI just dropped in.\tJe ne fais que passer.\nI just feel awful.\tJe me sens juste affreusement mal.\nI just gave blood.\tJe viens de donner mon sang.\nI just got bitten.\tJe viens de me faire mordre.\nI just got tenure.\tJe viens d'en obtenir le titre de propriété.\nI just got tenure.\tJe viens d'être titularisé.\nI just got tenure.\tJe viens d'être titularisée.\nI just ignore Tom.\tJ'ignore simplement Tom.\nI just remembered.\tJe viens de me le rappeler.\nI just remembered.\tJe viens de m'en souvenir.\nI kept on reading.\tJ'ai continué à lire.\nI knew who did it.\tJe savais qui l'avait fait.\nI knew who he was.\tJe savais qui il était.\nI knew you'd come.\tJe savais que tu viendrais.\nI know a shortcut.\tJe connais un raccourci.\nI know everything.\tJe sais tout.\nI know he is busy.\tJe sais qu'il est occupé.\nI know his family.\tJe connais sa famille.\nI know how to fly.\tJe sais voler.\nI know how to ski.\tJe sais skier.\nI know how to win.\tJe sais comment gagner.\nI know it was you.\tJe sais que c'était toi.\nI know it's a lie.\tJe sais que c'est un mensonge.\nI know it's a lie.\tJe sais qu'il s'agit d'un mensonge.\nI know what I did.\tJe sais ce que j'ai fait.\nI know what to do.\tJe sais quoi faire.\nI know who did it.\tJe sais qui l'a fait.\nI know you did it.\tJe sais que tu l'as fait.\nI know you did it.\tJe sais que vous l'avez fait.\nI lack confidence.\tJe manque de confiance.\nI left you a note.\tJe vous laissai une note.\nI left you a note.\tJe te laissai une note.\nI left you a note.\tJe vous ai laissé une note.\nI left you a note.\tJe t'ai laissé une note.\nI let the dog out.\tJ'ai laissé sortir le chien.\nI lied about that.\tJ'ai menti à ce sujet.\nI like challenges.\tJ'aime les défis.\nI like coffee hot.\tJ'aime le café brûlant.\nI like folk songs.\tJ'aime les chansons populaires.\nI like it so much.\tJe l'aime tant !\nI like sauerkraut.\tJ'aime la choucroute.\nI like short hair.\tJ'aime les cheveux courts.\nI like that shirt.\tJ'aime cette chemise.\nI like that skirt.\tJ'aime cette jupe.\nI like the colors.\tJ'en apprécie les couleurs.\nI like these hats.\tJ'aime ces chapeaux.\nI like these hats.\tCes chapeaux me plaisent.\nI like this color.\tJ'aime cette couleur.\nI like this model.\tJ'aime ce mannequin.\nI like those odds.\tJ'aime ces probabilités.\nI like to be here.\tJ'aime être ici.\nI like to be here.\tJ'aime me trouver ici.\nI like what I see.\tJ'aime ce que je vois.\nI like your beard.\tJ'aime ta barbe.\nI like your beard.\tJ'aime votre barbe.\nI like your dress.\tJ'aime ta robe.\nI like your dress.\tJ'aime votre robe.\nI like your house.\tJ'aime votre maison.\nI like your place.\tJ'aime ton appartement.\nI like your place.\tJ'aime bien chez toi.\nI like your place.\tJ'aime bien chez vous.\nI like your place.\tJ'aime votre appartement.\nI like your scarf.\tJ'aime ton écharpe.\nI like your shoes.\tJ'aime vos souliers.\nI like your shoes.\tJ'aime tes souliers.\nI like your shoes.\tJ'aime vos chaussures.\nI like your shoes.\tJ'aime tes chaussures.\nI like your smile.\tJ'aime ton sourire.\nI like your smile.\tJ'aime votre sourire.\nI like your style.\tJ'aime ton style.\nI like your style.\tJ'aime votre style.\nI like your style.\tJ'apprécie votre style.\nI like your style.\tJ'apprécie ton style.\nI liked that book.\tJ'ai apprécié ce livre.\nI liked this book.\tJ'ai apprécié ce livre.\nI liked this film.\tCe film m'a plu.\nI lit the candles.\tJ'ai allumé les bougies.\nI live here alone.\tJe vis seul ici.\nI live here alone.\tJe vis seule ici.\nI live in a hotel.\tJe vis à l'hôtel.\nI live in comfort.\tJe vis confortablement.\nI locked the door.\tJe verrouillai la porte.\nI locked the door.\tJ'ai verrouillé la porte.\nI lost an earring.\tJ'ai perdu une boucle d'oreille.\nI lost everything.\tJ'ai tout perdu.\nI lost my car key.\tJ'ai perdu les clés de ma voiture.\nI lost my glasses.\tJ'ai perdu mes lunettes.\nI love California.\tJ'aime la Californie.\nI love all of you.\tJe vous aime tous.\nI love all of you.\tJe vous adore tous.\nI love all of you.\tJe vous aime toutes.\nI love all of you.\tJe vous adore toutes.\nI love doing this.\tJ'adore faire ça.\nI love music, too.\tMoi aussi, j'adore la musique.\nI love my country.\tJ'aime mon pays.\nI love my new job.\tJ'adore mon nouveau boulot.\nI love my parents.\tJ'adore mes parents.\nI love performing.\tJ'adore jouer en public.\nI love that chair.\tJ'adore cette chaise.\nI love that dress.\tJ'adore cette robe.\nI love that movie.\tJ'adore ce film.\nI love that place.\tJ'adore cet endroit.\nI love that scarf.\tJ'adore cette écharpe.\nI love that shirt.\tJ'adore cette chemise.\nI love that story.\tJ'adore cette histoire.\nI love this group.\tJ'aime ce groupe.\nI love this photo.\tJ'adore cette photo.\nI love this place.\tJ'adore cet endroit.\nI love this store.\tJ'adore ce magasin.\nI love this store.\tJe raffole de ce magasin.\nI love you anyway.\tJe t'aime quand même.\nI love you anyway.\tJe vous aime quand même.\nI love you people.\tJe vous adore.\nI love your dress.\tJ'adore votre robe.\nI love your dress.\tJ'adore ta robe.\nI love your house.\tJ'adore votre maison.\nI love your house.\tJ'adore ta maison.\nI love your place.\tJ'adore ton appartement.\nI love your place.\tJ'adore ton appart.\nI love your place.\tJ'adore votre appartement.\nI loved that book.\tJ'ai adoré ce livre.\nI loved that book.\tJ'ai adoré cet ouvrage.\nI made a decision.\tJ'ai pris une décision.\nI made a decision.\tJe pris une décision.\nI made fun of him.\tJe me suis moqué de lui.\nI made fun of him.\tJe me moquai de lui.\nI made you coffee.\tJe t'ai fait du café.\nI made you coffee.\tJe vous ai fait du café.\nI may outlive you.\tIl se peut que je t'enterre.\nI may outlive you.\tIl se peut que je vous enterre.\nI mean what I say.\tJe pense ce que je dis.\nI met your friend.\tJ’ai rencontré ton ami.\nI miss my friends.\tMes amis me manquent.\nI miss my friends.\tMes amies me manquent.\nI miss my parents.\tMes parents me manquent.\nI miss that place.\tCe lieu me manque.\nI miss this place.\tCet endroit me manque.\nI missed my train.\tJ'ai manqué mon train.\nI missed you kids.\tC'est vous qui m'avez manqués, les enfants.\nI must eat slowly.\tIl me faut manger lentement.\nI need 30 minutes.\tJ'ai besoin de 30 minutes.\nI need Tom's help.\tJ'ai besoin de l'aide de Tom.\nI need a breather.\tJ'ai besoin d'une pause.\nI need a breather.\tJ'ai besoin d'un répit.\nI need a computer.\tIl me faut un ordinateur.\nI need a keyboard.\tIl me faut un clavier.\nI need a vacation!\tJ'ai besoin de vacances !\nI need an ashtray.\tUn cendrier s'il vous plaît.\nI need more light.\tIl me faut davantage de lumière.\nI need more money.\tJ'ai besoin de davantage d'argent.\nI need more power.\tIl me faut davantage de pouvoir.\nI need more power.\tIl me faut davantage d'électricité.\nI need more power.\tJ'ai besoin de plus de pouvoir.\nI need more power.\tJ'ai besoin de plus d'électricité.\nI need my privacy.\tIl me faut mon intimité.\nI need my privacy.\tJ'ai besoin de mon intimité.\nI need protection.\tJ'ai besoin de protection.\nI need some light.\tJ'ai besoin de lumière.\nI need some paper.\tJ'ai besoin de papier.\nI need some sleep.\tJ'ai besoin de sommeil.\nI need some sugar.\tJ'ai besoin de sucre.\nI need some water.\tIl me faut de l'eau.\nI need some water.\tJ'ai besoin d'eau.\nI need this money.\tJ'ai besoin de cet argent.\nI need to do this.\tIl me faut le faire.\nI need to go home.\tJe dois aller chez moi.\nI need to go home.\tIl me faut aller à la maison.\nI need volunteers.\tJ'ai besoin de volontaires.\nI need volunteers.\tIl me faut des volontaires.\nI needed a change.\tJ'avais besoin de changement.\nI never knew that.\tJe n'ai jamais su ça.\nI never knew that.\tJe ne le sus jamais.\nI never oversleep.\tJe n'oublie jamais de me réveiller.\nI never said that.\tJe n'ai jamais dit cela.\nI never went back.\tJe n'y suis jamais retourné.\nI never went back.\tJe n'y suis jamais retournée.\nI often drink tea.\tJe bois souvent du thé.\nI opened the door.\tJ'ouvris la porte.\nI opened the door.\tJ'ai ouvert la porte.\nI overslept again.\tJe ne me suis pas réveillé, une fois de plus.\nI overslept again.\tJe ne me suis pas réveillée, une fois de plus.\nI owe him my life.\tJe lui dois la vie.\nI owe him nothing.\tJe ne lui dois rien.\nI owe you a favor.\tJe vous dois une faveur.\nI owe you a favor.\tJe te dois une faveur.\nI owe you a lunch.\tJe vous dois un déjeuner.\nI owe you a lunch.\tJe te dois un déjeuner.\nI owe you my life.\tJe vous dois la vie.\nI owe you my life.\tJe te dois la vie.\nI owe you nothing.\tJe ne te dois rien.\nI owe you nothing.\tJe ne vous dois rien.\nI owe you so much.\tJe vous dois tant.\nI owe you so much.\tJe te dois tant.\nI paid in advance.\tJ'ai payé d'avance.\nI plan on winning.\tJe prévois de gagner.\nI plan on winning.\tJe prévois de l'emporter.\nI play the violin.\tJe joue du violon.\nI played football.\tJ'ai joué au football.\nI pulled a muscle.\tJe me suis fait une entorse.\nI punched his jaw.\tJe l'ai frappé à la mâchoire.\nI ran into a deer.\tJ'ai rencontré un cerf.\nI ran into a tree.\tJ'ai embouti un arbre.\nI ran into a tree.\tJe me suis tapé un arbre.\nI read some books.\tJ'ai lu des livres.\nI really am sorry.\tJe suis vraiment désolé.\nI really am sorry.\tJe suis vraiment désolée.\nI really doubt it.\tJ'en doute vraiment.\nI really hope not.\tJ'espère vraiment que non.\nI really like him!\tJe l'apprécie beaucoup!\nI really like him.\tJe l'apprécie vraiment.\nI really like you.\tJe t'aime vraiment.\nI really like you.\tJe t'aime vraiment bien.\nI really love you.\tJe vous aime vraiment.\nI really love you.\tJe t'aime vraiment.\nI really miss Tom.\tTom me manque vraiment.\nI really miss you.\tVous me manquez vraiment.\nI really miss you.\tTu me manques vraiment.\nI really need you.\tJ'ai vraiment besoin de toi.\nI really need you.\tJ'ai vraiment besoin de vous.\nI remember it now.\tJe m'en souviens, maintenant.\nI remember it now.\tJe me le rappelle, maintenant.\nI rescued the cat.\tJ'ai sauvé le chat.\nI ripped my pants.\tJ'ai déchiré mon pantalon.\nI said I liked it.\tJe dis que je l'appréciais.\nI said I liked it.\tJe dis que je l'aimais.\nI said I liked it.\tJ'ai dit que je l'appréciais.\nI said I liked it.\tJ'ai dit que je l'aimais.\nI said it in jest.\tJe l'ai dit pour rire.\nI said it in jest.\tJe l'ai dit en plaisantant.\nI sat by his side.\tJe me suis assis à côté de lui.\nI sat next to Tom.\tJe m'assis à côté de Tom.\nI saved your life.\tJe t'ai sauvé la vie.\nI saved your life.\tJe vous ai sauvé la vie.\nI saw him running.\tJe l’ai vu courir.\nI saw him running.\tJe l'ai vu courir.\nI saw the sunrise.\tJ'ai assisté au lever du soleil.\nI saw you cooking.\tJe vous ai vu cuisiner.\nI saw you cooking.\tJe vous ai vus cuisiner.\nI saw you outside.\tJe t'ai vu dehors.\nI saw you outside.\tJe vous ai vu à l'extérieur.\nI saw you outside.\tJe t'ai vue à l'extérieur.\nI saw you outside.\tJe vous ai vues dehors.\nI saw you outside.\tJe vous ai vue dehors.\nI saw you outside.\tJe vous ai vus dehors.\nI saw your father.\tJ'ai vu votre père.\nI see the problem.\tJe vois le problème.\nI seem to be lost.\tIl semble que je sois perdu.\nI should be happy.\tJe devrais être heureux.\nI should be happy.\tJe devrais être content.\nI should be happy.\tJe devrais être heureuse.\nI should be happy.\tJe devrais être contente.\nI should be there.\tJe devrais être là.\nI should be there.\tJe devrais y être.\nI should be there.\tJe devrais être là-bas.\nI should head out.\tJe devrais sortir.\nI should've asked.\tJ'aurais dû demander.\nI should've known.\tJ'aurais dû le savoir.\nI shouldn't drink.\tJe ne devrais pas boire.\nI shouldn't worry.\tJe ne devrais pas me faire de souci.\nI slept very well.\tJ'ai très bien dormi.\nI slept very well.\tJe dormis fort bien.\nI sometimes skate.\tJe fais parfois du patin.\nI sometimes skate.\tJe fais parfois de la planche à roulettes.\nI still have mine.\tJ'ai toujours les miens.\nI still have mine.\tJ'ai toujours les miennes.\nI still have mine.\tJ'ai toujours le mien.\nI still have mine.\tJ'ai toujours la mienne.\nI stopped smoking.\tJ'ai arrêté de fumer.\nI stopped smoking.\tJ'ai cessé de fumer.\nI study at school.\tJ'étudie à l'école.\nI sure do hope so.\tJe l'espère vraiment.\nI swallowed a bug.\tJ'ai avalé une bestiole.\nI teach geography.\tJ'enseigne la géographie.\nI think I'm drunk.\tJe pense que je suis ivre.\nI think I'm ready.\tJe pense être prêt.\nI think he did it.\tJe pense qu'il l'a fait.\nI think it's fine.\tJe pense que c'est bon.\nI think it's good.\tJe pense que c'est bon.\nI think it's good.\tJe pense que c'est bien.\nI think it's true.\tJe crois que c'est vrai.\nI think otherwise.\tJe pense autrement.\nI think we did OK.\tJe pense que nous nous en sommes bien sortis.\nI think we did OK.\tJe pense que nous nous en sommes bien sorties.\nI took Highway 58.\tJ'ai pris l'autoroute 58.\nI took a week off.\tJ'ai pris une semaine de congés.\nI tried to escape.\tJ'ai essayé de m'échapper.\nI truly apologize.\tJe vous présente de plates excuses.\nI truly apologize.\tJe te présente de plates excuses.\nI truly loved her.\tJe l'aimais sincèrement.\nI truly loved her.\tJe l'aimais vraiment.\nI understand this.\tJe comprends ça.\nI usually eat out.\tD'ordinaire, je mange à l'extérieur.\nI want a lot more.\tJe veux beaucoup plus.\nI want an apology.\tJe veux des excuses.\nI want everything.\tJe veux tout.\nI want more money.\tJe veux davantage d'argent.\nI want my freedom.\tJe veux ma liberté.\nI want some paper.\tJe veux du papier.\nI want some water.\tJe veux de l'eau.\nI want ten plates.\tJe voudrais dix assiettes.\nI want them alive.\tJe les veux vivants.\nI want them alive.\tJe les veux vivantes.\nI want to be safe.\tJe veux être en sécurité.\nI want to confess.\tJe veux me confesser.\nI want to do this.\tJe veux faire ça.\nI want to do this.\tJe veux faire ceci.\nI want to do well.\tJe veux faire bien.\nI want to see him.\tJe veux le voir.\nI want to see you.\tJe veux te voir.\nI want to workout.\tJe veux faire de l'exercice.\nI want you to die.\tJe veux que vous mouriez.\nI want you to die.\tJe veux que tu meures.\nI wanted sympathy.\tJe voulais de la compassion.\nI wanted the best.\tJe voulais le meilleur.\nI wanted the best.\tJ'ai voulu la meilleure.\nI wanted to fight.\tJe voulais me battre.\nI wanted to laugh.\tJe voulais rire.\nI wanted to laugh.\tJ'ai voulu rire.\nI warned you once.\tJe t'ai prévenu une fois.\nI warned you once.\tJe t'ai prévenue une fois.\nI warned you once.\tJe t'ai averti une fois.\nI warned you once.\tJe t'ai avertie une fois.\nI was daydreaming.\tJ'étais en train de faire un songe.\nI was defenseless.\tJ'étais sans défenses.\nI was discouraged.\tOn me dissuada.\nI was discouraged.\tJe fus dissuadé.\nI was discouraged.\tOn m'a dissuadé.\nI was discouraged.\tJ'ai été dissuadé.\nI was discredited.\tJ'ai été discrédité.\nI was discredited.\tJ'ai été discréditée.\nI was dumbfounded.\tJ'ai été sidéré.\nI was embarrassed.\tJ'étais embarrassé.\nI was going to go.\tJ'étais sur le point de partir.\nI was going to go.\tJ'allais partir.\nI was happy there.\tJ'y étais heureux.\nI was happy there.\tJ'y étais heureuse.\nI was just joking.\tJe ne faisais que plaisanter.\nI was just mugged.\tJe viens d'être dévalisé.\nI was not pleased.\tJe ne fus pas content.\nI was not pleased.\tJe n'ai pas été content.\nI was on my knees.\tJ'étais à genoux.\nI was on vacation.\tJ'étais en vacances.\nI was only joking.\tJe ne faisais que plaisanter.\nI was out all day.\tJ'étais dehors toute la journée.\nI was outnumbered.\tJ'ai été mis en minorité.\nI was overwhelmed.\tJ'étais bouleversé.\nI was overwhelmed.\tJ'étais bouleversée.\nI was overwhelmed.\tJ'étais submergé.\nI was overwhelmed.\tJ'étais submergée.\nI was sympathetic.\tJ'éprouvais de la compassion.\nI was tired today.\tJ'étais fatigué aujourd'hui.\nI was tired today.\tJ'étais fatiguée aujourd'hui.\nI was trespassing.\tJ'avais dépassé les bornes.\nI was unconscious.\tJ'étais inconsciente.\nI was very hungry.\tJ'avais très faim.\nI was very hungry.\tJ'étais fort affamé.\nI was very hungry.\tJ'étais fort affamée.\nI wasn't finished.\tJe n'en avais pas terminé.\nI wasn't flirting.\tJe ne draguais pas.\nI wasn't informed.\tOn ne m'a pas informé.\nI wasn't informed.\tOn ne m'a pas informée.\nI wasn't involved.\tJe n'étais pas impliqué.\nI wasn't involved.\tJe n'étais pas impliquée.\nI wasn't involved.\tOn ne m'a pas impliqué.\nI wasn't involved.\tOn ne m'a pas impliquée.\nI wasn't sleeping.\tJe n'étais pas en train de dormir.\nI went on reading.\tJ'ai continué à lire.\nI went on reading.\tJe poursuivis ma lecture.\nI went to Harvard.\tJe suis allé à Harvard.\nI went to the zoo.\tJe suis allé au zoo.\nI will choose one.\tJe vais en choisir un.\nI will choose one.\tJ'en choisirai un.\nI will choose one.\tJ'en choisirai une.\nI will do my best.\tJe vais faire de mon mieux.\nI will go on foot.\tJ'irai à pied.\nI will go on foot.\tJe m'y rendrai à pied.\nI will stay there.\tJ'y séjournerai.\nI will stay there.\tJ'y resterai.\nI won't back down.\tJe ne cèderai pas.\nI won't back down.\tJe ne reculerai pas.\nI won't need luck.\tJe n'aurai pas besoin de chance.\nI won't negotiate.\tJe ne négocierai pas.\nI won't sign this.\tJe ne signerai pas ceci.\nI worked with Tom.\tJe travaillais avec Tom.\nI worry about him.\tJe me fais du souci à son sujet.\nI would've waited.\tJ'aurais attendu.\nI wrote that book.\tJ'ai écrit ce livre.\nI wrote this book.\tJ'ai écrit ce livre.\nI'd appreciate it.\tJe l'apprécierais.\nI'd be angry, too.\tJe serais moi aussi en colère.\nI'd be devastated.\tJe serais anéanti.\nI'd be devastated.\tJe serais anéantie.\nI'd better go now.\tJe ferais mieux d'y aller maintenant.\nI'd like to dance.\tJ'aimerais danser.\nI'd like to stand.\tJ'aimerais être debout.\nI'd like to stand.\tJ'aimerais me tenir debout.\nI'd like to stand.\tJ'aimerais me porter candidat.\nI'd like to stand.\tJ'aimerais me présenter.\nI'd like to stand.\tJ'aimerais me lever.\nI'd love to do it.\tJ'adorerais le faire.\nI'll arrange that.\tJ'arrangerai ça.\nI'll be back soon.\tJe serai vite de retour.\nI'll eat anything.\tJe mangerai n'importe quoi.\nI'll get off here.\tJe descends ici.\nI'll have another.\tJ'en prendrai une autre.\nI'll have another.\tJ'en prendrai un autre.\nI'll keep it warm.\tJe le garderai au chaud.\nI'll let you know.\tJe te le ferai savoir.\nI'll let you know.\tJe vous le ferai savoir.\nI'll never change.\tJe ne changerai jamais.\nI'll never forget.\tJe n'oublierai jamais.\nI'll pay anything.\tJe payerai n'importe quel prix.\nI'll pray for you.\tJe prierai pour toi.\nI'll pray for you.\tJe prierai pour vous.\nI'll recommend it.\tJe le recommanderai.\nI'll ride shotgun.\tJe me mettrai à la place du mort.\nI'll send flowers.\tJ'enverrai des fleurs.\nI'll set you free.\tJe te libèrerai.\nI'll set you free.\tJe vous libèrerai.\nI'll step outside.\tJ'irai faire un tour dehors.\nI'll stick around.\tJe resterai dans les environs.\nI'll tell my wife.\tJe le dirai à ma femme.\nI'll tell someone.\tJe le dirai à quelqu'un.\nI'll tell you why.\tJe te dirai pourquoi.\nI'll tell you why.\tJe vous dirai pourquoi.\nI'll vote for you.\tJe voterai pour toi.\nI'll wait for you.\tJe t'attendrai.\nI'm Canadian, too.\tJe suis canadien, moi aussi.\nI'm a busy person.\tJe suis une personne occupée.\nI'm a careful man.\tJe suis un homme prudent.\nI'm a good person.\tJe suis une bonne personne.\nI'm a little busy.\tJe suis un peu occupé.\nI'm a little hurt.\tJ'ai un peu mal.\nI'm a little sick.\tJe suis un peu malade.\nI'm a new student.\tJe suis un nouvel étudiant.\nI'm a new student.\tJe suis une nouvelle étudiante.\nI'm a new student.\tJe suis un nouvel élève.\nI'm a new student.\tJe suis une nouvelle élève.\nI'm a normal girl.\tJe suis une fille normale.\nI'm a salesperson.\tJe suis un vendeur.\nI'm a total wreck.\tJe suis une vraie loque.\nI'm all by myself.\tJe suis tout seul.\nI'm already bored.\tJe m'ennuie déjà.\nI'm always hungry.\tJ'ai toujours faim.\nI'm as old as you.\tJe suis aussi âgé que toi.\nI'm as old as you.\tJe suis aussi âgée que toi.\nI'm as old as you.\tJe suis aussi âgé que vous.\nI'm as old as you.\tJe suis aussi âgée que vous.\nI'm at school now.\tJe suis actuellement à l'école.\nI'm at the prison.\tJe suis à la prison.\nI'm at your mercy.\tJe suis à votre merci.\nI'm at your mercy.\tJe suis à ta merci.\nI'm aware of that.\tJ'en suis conscient.\nI'm aware of that.\tJ'en suis consciente.\nI'm awfully tired.\tJe suis terriblement fatigué.\nI'm awfully tired.\tJe suis terriblement fatiguée.\nI'm being careful.\tJe fais attention.\nI'm being patient.\tJe fais montre de patience.\nI'm being serious.\tJe suis sérieux.\nI'm being serious.\tJe suis sérieuse.\nI'm being watched.\tJe suis observé.\nI'm concentrating.\tJe suis en train de me concentrer.\nI'm concentrating.\tJe suis en cours de concentration.\nI'm doing my best.\tJe fais de mon mieux.\nI'm doing my duty.\tJe fais mon devoir.\nI'm done thinking.\tJ'en ai marre de penser.\nI'm done with you.\tJ'en ai fini avec toi.\nI'm done with you.\tJ'en ai fini avec vous.\nI'm done with you.\tJ'en ai fini de vous.\nI'm done with you.\tJ'en ai fini de toi.\nI'm done with you.\tMoi j'en ai fini avec vous.\nI'm done with you.\tMoi j'en ai fini avec toi.\nI'm extremely fat.\tJe suis extrêmement gras.\nI'm feeling dizzy.\tJ'ai la tête qui tourne.\nI'm feeling dizzy.\tJ'ai la tête qui me tourne.\nI'm flabbergasted.\tJe suis sidéré.\nI'm flabbergasted.\tJe suis abasourdi.\nI'm freezing cold.\tJe crève de froid.\nI'm from Bulgaria.\tJe viens de Bulgarie.\nI'm from Colombia.\tJe viens de Colombie.\nI'm from the city.\tJe suis de la ville.\nI'm from the city.\tJe viens de la ville.\nI'm glad I did it.\tJe me réjouis de l'avoir fait.\nI'm going to jump.\tJe vais sauter.\nI'm going to work.\tJe vais travailler.\nI'm happy with it.\tJ'en suis heureux.\nI'm happy with it.\tJe m'en contente.\nI'm irreplaceable.\tJe suis irremplaçable.\nI'm just guessing.\tJe ne fais que supposer.\nI'm just not sure.\tJe n'en suis simplement pas sûr.\nI'm just not sure.\tJe n'en suis simplement pas sûre.\nI'm kind of happy.\tJe suis assez heureux.\nI'm kind of happy.\tJe suis pour ainsi dire heureux.\nI'm leaving today.\tJe pars aujourd'hui.\nI'm losing weight.\tJe perds du poids.\nI'm losing weight.\tJe maigris.\nI'm not a gambler.\tJe ne suis pas joueur.\nI'm not a gambler.\tJe ne suis pas joueuse.\nI'm not a monster.\tJe ne suis pas un monstre.\nI'm not a psychic.\tJe ne pratique pas la divination.\nI'm not a psychic.\tJe ne suis pas devin.\nI'm not a psychic.\tJe ne suis pas télépathe.\nI'm not a soldier.\tJe ne suis pas soldat.\nI'm not a teacher.\tJe ne suis pas enseignant.\nI'm not a teacher.\tJe ne suis pas instituteur.\nI'm not a teacher.\tJe ne suis pas institutrice.\nI'm not an expert.\tJe ne suis pas un expert.\nI'm not available.\tJe ne suis pas disponible.\nI'm not available.\tJe suis indisponible.\nI'm not buying it.\tJe ne gobe pas ça.\nI'm not convinced.\tJe ne suis pas convaincu.\nI'm not convinced.\tJe ne suis pas convaincue.\nI'm not dangerous.\tJe ne suis pas dangereux.\nI'm not desperate.\tJe ne suis pas désespéré.\nI'm not desperate.\tJe ne suis pas désespérée.\nI'm not from here.\tJe ne suis pas d'ici.\nI'm not giving up.\tJe n'abandonne pas.\nI'm not impressed.\tJe ne suis pas impressionné.\nI'm not impressed.\tJe ne suis pas impressionnée.\nI'm not in a rush.\tJe ne suis pas aux pièces.\nI'm not like that.\tJe ne suis pas comme ça.\nI'm not listening.\tJe n'écoute pas.\nI'm not lying now.\tJe ne suis pas en train de mentir, à l'heure actuelle.\nI'm not miserable.\tJe ne suis pas malheureux.\nI'm not miserable.\tJe ne suis pas malheureuse.\nI'm not panicking.\tJe ne me panique pas.\nI'm not panicking.\tJe ne panique pas.\nI'm not persuaded.\tJe ne suis pas convaincu.\nI'm not persuaded.\tJe n'en suis pas persuadé.\nI'm not persuaded.\tJe n'en suis pas persuadée.\nI'm not ready yet.\tJe ne suis pas encore prêt.\nI'm not ready yet.\tJe ne suis pas encore prête.\nI'm not satisfied.\tJe ne suis pas satisfait.\nI'm not satisfied.\tJe ne suis pas satisfaite.\nI'm not surprised.\tJe ne suis pas surpris.\nI'm not surprised.\tJe ne suis pas surprise.\nI'm not that fast.\tJe ne suis pas si rapide.\nI'm not the coach.\tJe ne suis pas l'entraîneur.\nI'm not tired yet.\tJe ne suis pas encore fatigué.\nI'm not tired yet.\tJe ne suis pas encore fatiguée.\nI'm not very busy.\tJe ne suis pas très occupé.\nI'm not very busy.\tJe ne suis pas très occupée.\nI'm not your baby.\tJe ne suis pas ton bébé.\nI'm not your maid.\tJe ne suis pas ta servante.\nI'm not your maid.\tJe ne suis pas votre servante.\nI'm not your maid.\tJe ne suis pas ta bonne.\nI'm not your maid.\tJe ne suis pas votre bonne.\nI'm over eighteen.\tJ'ai plus de dix-huit ans.\nI'm quite serious.\tJe suis très sérieux.\nI'm quite serious.\tJe suis très sérieuse.\nI'm really hungry.\tJ'ai vraiment faim.\nI'm really sleepy.\tJ'ai vraiment sommeil.\nI'm right outside.\tJe suis juste à l'extérieur.\nI'm sick of lying.\tJ'en ai marre de mentir.\nI'm sick of lying.\tJ'en ai vraiment marre de mentir.\nI'm so overworked.\tJe suis tellement débordé.\nI'm sore all over.\tJ'ai mal partout.\nI'm sort of tired.\tJe suis en quelque sorte fatigué.\nI'm sort of tired.\tJe suis en quelque sorte fatiguée.\nI'm still dubious.\tJe suis encore sceptique.\nI'm still married.\tJe suis toujours marié.\nI'm still married.\tJe suis toujours mariée.\nI'm still married.\tJe suis encore marié.\nI'm still married.\tJe suis encore mariée.\nI'm still thirsty.\tJ'ai toujours soif.\nI'm still thirsty.\tJ'ai encore soif.\nI'm still waiting.\tJ'attends encore.\nI'm strong enough.\tJe suis suffisamment fort.\nI'm strong enough.\tJe suis suffisamment forte.\nI'm strong enough.\tJe suis assez fort.\nI'm strong enough.\tJe suis assez forte.\nI'm such an idiot.\tJe suis un tel idiot.\nI'm taking a bath.\tJe suis en train de prendre mon bain.\nI'm totally drunk.\tJe suis complètement saoul.\nI'm uncomfortable.\tJe suis gêné.\nI'm working on it.\tJ'y travaille.\nI'm your neighbor.\tJe suis votre voisin.\nI've been evicted.\tJ'ai été expulsé.\nI've been tricked.\tOn m'a trompé.\nI've been working.\tJ'ai travaillé.\nI've got bad news.\tJ'ai de mauvaises nouvelles.\nI've got them all.\tJe les ai tous.\nI've got them all.\tJe les ai toutes.\nI've heard enough.\tJ'en ai assez entendu.\nI've heard of you.\tJ'ai entendu parler de vous.\nI've heard of you.\tJ'ai entendu parler de toi.\nI've heard rumors.\tJ'ai entendu des rumeurs.\nI've lost my keys.\tJ'ai perdu mes clés.\nIs Tom there, too?\tEst-ce que Tom est là aussi ?\nIs anyone looking?\tQuiconque regarde-t-il ?\nIs anyone looking?\tQuiconque est-il en train de regarder ?\nIs anyone looking?\tQui que ce soit est-il en train de regarder ?\nIs anyone looking?\tQui que ce soit regarde-t-il ?\nIs anything wrong?\tY a-t-il quoi que ce soit qui cloche ?\nIs everybody busy?\tTout le monde est-il occupé ?\nIs everybody here?\tTout le monde est-il là ?\nIs everybody okay?\tEst-ce que ça va bien pour tout le monde ?\nIs he nice to her?\tEst-il sympa avec elle ?\nIs he still alive?\tEst-il encore en vie ?\nIs he still alive?\tEst-il toujours en vie ?\nIs he still there?\tY est-il encore ?\nIs he still there?\tY est-il toujours ?\nIs her story true?\tSon histoire est-elle vraie ?\nIs his story true?\tSon histoire est-elle vraie ?\nIs it complicated?\tEst-ce compliqué ?\nIs it raining now?\tPleut-il maintenant ?\nIs it that urgent?\tEst-ce si urgent ?\nIs life here hard?\tLa vie ici est-elle difficile?\nIs one of you Tom?\tTom est-il l'un d'entre vous ?\nIs somebody there?\tY a-t-il quelqu'un ?\nIs somebody there?\tQuelqu'un est-il là ?\nIs somebody there?\tQuelqu'un est-il là ?\nIs sugar a poison?\tLe sucre est-il un poison ?\nIs that a problem?\tS'agit-il d'un problème ?\nIs that a problem?\tEst-ce un problème ?\nIs that a promise?\tS'agit-il d'une promesse ?\nIs that all clear?\tTout est-il clair ?\nIs that all clear?\tEst-ce entièrement clair ?\nIs that important?\tEst-ce que ça compte ?\nIs that mandatory?\tEst-ce obligatoire ?\nIs that not clear?\tN'est-ce pas clair ?\nIs that notarized?\tEst-ce notarié ?\nIs that pure gold?\tEst-ce de l'or pur ?\nIs that warranted?\tEst-ce garanti ?\nIs that your book?\tEst-ce que c'est ton livre ?\nIs that your room?\tEst-ce ta chambre ?\nIs that your wife?\tEst-ce ta femme ?\nIs that your wife?\tEst-ce votre femme ?\nIs the bath ready?\tLe bain est-il prêt ?\nIs the water deep?\tL'eau est-elle profonde ?\nIs there a curfew?\tY a-t-il un couvre-feu ?\nIs this all right?\tEst-ce en ordre ?\nIs this all yours?\tTout ceci est-il à vous ?\nIs this all yours?\tTout ceci est-il à toi ?\nIs this pen yours?\tEst-ce que ce stylo est à toi ?\nIs this pen yours?\tEst-ce que ce stylo est à vous ?\nIs this pure gold?\tEst-ce de l'or pur ?\nIs this seat free?\tCe siège est-il libre ?\nIs this seat free?\tCette chaise est-elle libre ?\nIs this seat free?\tCette place est-elle libre ?\nIs this seat open?\tCe siège est-il libre ?\nIs this your beer?\tEst-ce votre bière ?\nIs this your beer?\tS'agit-il de votre bière ?\nIs this your bike?\tEst-ce que c'est votre vélo ?\nIs this your bike?\tEst-ce votre vélo ?\nIs this your bike?\tEst-ce votre bicyclette ?\nIs this your bike?\tEst-ce ton vélo ?\nIs this your book?\tEst-ce que c'est ton livre ?\nIs this your room?\tEst-ce ta chambre ?\nIs this your room?\tEst-ce votre chambre ?\nIs this your wine?\tEst-ce là votre vin ?\nIs your house big?\tEst-ce que ta maison est grande ?\nIsn't that enough?\tN'est-ce pas assez ?\nIt became useless.\tC'est devenu inutile.\nIt belongs to Tom.\tCela appartient à Tom.\nIt can't hurt you.\tÇa ne peut pas vous faire de mal.\nIt can't hurt you.\tÇa ne peut pas te faire de mal.\nIt cannot be done.\tOn ne peut pas le faire.\nIt cannot be done.\tÇa ne peut pas être fait.\nIt didn't go well.\tÇa ne s'est pas bien passé.\nIt doesn't matter.\tCe n'est pas grave.\nIt doesn't matter.\tÇa ne fait rien.\nIt goes both ways.\tÇa fonctionne dans les deux sens.\nIt has cooled off.\tÇa s'est rafraîchi.\nIt has to be done.\tIl faut le faire.\nIt is pretty cold.\tIl fait assez froid.\nIt is sunny today.\tAujourd'hui est un jour ensoleillé.\nIt is sunny today.\tLe soleil brille, aujourd'hui.\nIt is windy today.\tIl y a du vent aujourd'hui.\nIt isn't optional.\tCela n'a rien de facultatif.\nIt isn't over yet.\tCe n'est pas encore terminé.\nIt looks familiar.\tÇa a l'air familier.\nIt makes no sense.\tÇa n'a pas de sens.\nIt never gets old.\tÇa ne vieillit jamais.\nIt never happened.\tÇa n'est jamais arrivé.\nIt never happened.\tÇa ne s'est jamais produit.\nIt rained all day.\tIl plut toute la journée.\nIt rained heavily.\tIl a fortement plu.\nIt rained nonstop.\tIl plut sans arrêt.\nIt rained nonstop.\tIl a plu sans arrêt.\nIt sounds healthy.\tÀ l'entendre, c'est bon pour la santé.\nIt sure scared me.\tÇa m'a fait peur.\nIt was Tom's idea.\tC'était l'idée de Tom.\nIt was a bad idea.\tCe fut une mauvaise idée.\nIt was a bad idea.\tC'était une mauvaise idée.\nIt was a good day.\tÇa a été une bonne journée.\nIt was a good day.\tCe fut une bonne journée.\nIt was a warm day.\tC'était une chaude journée.\nIt was deliberate.\tC'était délibéré.\nIt was horrendous.\tCe fut épouvantable.\nIt was horrendous.\tÇa a été épouvantable.\nIt was impressive.\tC'était impressionnant.\nIt was just water.\tCe n'était que de l'eau.\nIt was no problem.\tCe ne fut pas un problème.\nIt was no problem.\tÇa n'a pas été un problème.\nIt was no trouble.\tÇa n'a pas été un souci.\nIt was no trouble.\tCe ne fut pas un souci.\nIt was our secret.\tC'était notre secret.\nIt was terrifying.\tC'était terrifiant.\nIt was very funny.\tC'était très amusant.\nIt was very funny.\tCe fut très amusant.\nIt was very funny.\tÇa a été très amusant.\nIt was very quick.\tC'était très rapide.\nIt was very scary.\tC'était très effrayant.\nIt was very windy.\tIl y avait beaucoup de vent.\nIt was very windy.\tC'était très venteux.\nIt wasn't a dream.\tCe n'était pas un rêve.\nIt wasn't a party.\tCe n'était pas une fête.\nIt will grow back.\tÇa repoussera.\nIt's a bit flimsy.\tC'est peu convaincant.\nIt's a bit flimsy.\tC'est un peu léger.\nIt's a bit greasy.\tC'est un peu gras.\nIt's a bit wobbly.\tC'est un peu branlant.\nIt's a boys' club.\tC'est un cercle de garçons.\nIt's a cloudy day.\tC'est une journée nuageuse.\nIt's a dictionary.\tC'est un dictionnaire.\nIt's a girl thing.\tC'est un truc de filles.\nIt's a good start.\tC'est un bon début.\nIt's a good story.\tC'est une bonne histoire.\nIt's a good thing.\tC'est une bonne chose.\nIt's a lovely day.\tC'est une journée délicieuse.\nIt's a lovely day.\tC'est une délicieuse journée.\nIt's a nice party.\tC'est une chouette fête.\nIt's a no-brainer.\tC'est simple comme bonjour.\nIt's a no-brainer.\tC'est l'enfance de l'art.\nIt's a no-brainer.\tIl n'y a pas à hésiter.\nIt's a no-brainer.\tIl n'y a aucune hésitation.\nIt's a no-brainer.\tJe ne vois pas où est le problème.\nIt's a no-brainer.\tIl n'y a pas de quoi se faire des nœuds au cerveau.\nIt's a pipe dream.\tC'est un projet chimérique.\nIt's a small town.\tC'est une petite ville.\nIt's a true story.\tC'est une histoire vraie.\nIt's all I've got.\tC'est tout ce que j'ai.\nIt's all nonsense.\tC'est complètement insensé.\nIt's all nonsense.\tRien n'a de sens.\nIt's all nonsense.\tRien de ça n'a de sens.\nIt's all over now.\tMaintenant, tout est fini.\nIt's all the rage.\tC'est le dernier cri.\nIt's all the rage.\tC'est la folie.\nIt's already done.\tC'est déjà fait.\nIt's already late.\tIl est tard.\nIt's already late.\tIl est déjà tard.\nIt's an emergency!\tIl s'agit d'une urgence !\nIt's an emergency.\tIl s'agit d'une urgence.\nIt's cloudy today.\tC'est nuageux aujourd'hui.\nIt's cold in here.\tIl fait froid là-dedans.\nIt's dark in here.\tIl fait noir là-dedans.\nIt's embarrassing.\tC'est gênant.\nIt's embarrassing.\tC'est embarrassant.\nIt's finally over.\tC'est enfin terminé.\nIt's finished now.\tC'est désormais terminé.\nIt's five o'clock.\tIl est cinq heures.\nIt's getting cold.\tÇa se rafraîchit.\nIt's getting dark.\tÇa s'assombrit.\nIt's getting dark.\tLa nuit tombe.\nIt's getting dark.\tLe ciel s'obscurcit.\nIt's getting hard.\tCela devient difficile.\nIt's getting late.\tIl commence à se faire tard.\nIt's getting late.\tIl se fait tard.\nIt's going nicely!\tÇa se passe gentiment !\nIt's hard to tell.\tC'est difficile à dire.\nIt's hot out here.\tIl fait chaud ici.\nIt's human nature.\tC'est la nature humaine.\nIt's just a dream.\tCe n'est qu'un rêve.\nIt's just a dream.\tC'est seulement un rêve.\nIt's just a rumor.\tCe n'est qu'une rumeur.\nIt's just an idea.\tCe n'est qu'une idée.\nIt's kind of hard.\tC'est plutôt dur.\nIt's kind of late.\tIl est plutôt tard.\nIt's my brother's.\tC'est celui de mon frère.\nIt's not a secret.\tCe n'est pas un secret.\nIt's not a weapon.\tIl ne s'agit pas d'une arme.\nIt's not a weapon.\tCe n'est pas une arme.\nIt's not done yet.\tCe n'est pas encore fait.\nIt's not hopeless.\tCe n'est pas dénué d'espoir.\nIt's not my fault.\tCe n'est pas ma faute.\nIt's not my style.\tCe n'est pas mon style.\nIt's not over yet.\tCe n'est pas encore terminé.\nIt's not personal.\tCe n'est pas personnel.\nIt's not possible.\tCe n'est pas possible.\nIt's not that bad.\tCe n'est pas aussi mauvais que cela.\nIt's not too deep.\tCe n'est pas trop profond.\nIt's not too much.\tCe n'est pas trop.\nIt's not yet time.\tIl n'est pas encore temps.\nIt's now or never.\tC'est maintenant ou jamais.\nIt's on the house.\tC'est pour la maison.\nIt's only a dream.\tCe n'est qu'un rêve.\nIt's part of life.\tÇa fait partie de la vie.\nIt's pretty light.\tC'est assez léger.\nIt's raining hard.\tIl pleut fort.\nIt's settled then.\tC'est réglé, alors.\nIt's settled then.\tC'est arrangé, alors.\nIt's snowing here.\tIci, il neige.\nIt's so beautiful.\tC'est tellement beau !\nIt's so beautiful.\tC'est si beau !\nIt's so imprecise.\tC'est tellement imprécis.\nIt's starting now.\tÇa commence.\nIt's the last one.\tC'est le dernier.\nIt's the only way.\tC'est la seule manière.\nIt's the only way.\tC'est la seule façon.\nIt's time for bed.\tC'est l'heure d'aller au lit.\nIt's time for bed.\tC'est l'heure de se coucher.\nIt's time for bed.\tC'est l'heure de dodo.\nIt's time for bed.\tIl est l'heure d'aller au lit.\nIt's to your left.\tC'est à votre gauche.\nIt's too far away.\tC'est trop loin.\nIt's too late now.\tC'est trop tard maintenant.\nIt's unauthorized.\tCe n'est pas autorisé.\nIt's unbelievable.\tC'est incroyable.\nIt's very onerous.\tC'est très onéreux !\nIt's warm in here.\tIl fait chaud ici.\nIt's worth a trip.\tÇa vaut le voyage.\nIt's your bedtime.\tC'est l'heure d'aller te coucher.\nIt's your bedtime.\tC'est l'heure d'aller vous coucher.\nJust do your best.\tFais juste de ton mieux.\nJust do your best.\tFaites juste de votre mieux.\nJust tell them no.\tDites-leur simplement non.\nJust tell them no.\tDis-leur simplement non.\nKeep an eye on it.\tGarde un œil dessus.\nKeep an eye on it.\tGardez un œil dessus.\nKeep away from me.\tGarde tes distances.\nKeep away from me.\tGardez vos distances.\nKeep away from me.\tReste à distance de moi.\nKeep away from me.\tRestez à distance de moi.\nKeep out of sight.\tReste hors de ma vue !\nKeep out of sight.\tRestez hors de ma vue !\nKeep to the right.\tReste à droite.\nKeep your coat on.\tGarde ton manteau sur toi.\nKnock on the door.\tFrappe à la porte !\nKnock on the door.\tFrappez à la porte !\nLeave immediately!\tPars immédiatement !\nLeave immediately!\tPartez immédiatement !\nLeave me in peace!\tLaissez-moi en paix !\nLet Tom stay home.\tLaisse Tom rester à la maison.\nLet Tom stay home.\tLaissez Tom rester à la maison.\nLet go of my arms.\tLâche-moi les bras !\nLet go of my arms.\tLâchez-moi les bras !\nLet go of my hair.\tLâche-moi les cheveux !\nLet go of my hair.\tLâchez-moi les cheveux !\nLet go of my hand.\tLâche-moi la main !\nLet go of my hand.\tLâchez-moi la main !\nLet me finish, OK?\tLaissez-moi terminer ! D'accord ?\nLet me finish, OK?\tLaisse-moi terminer ! D'accord ?\nLet me have a try.\tLaisse-moi essayer.\nLet me pay for it.\tLaisse-moi le payer.\nLet me pay for it.\tLaissez-moi le payer.\nLet no one escape.\tNe laisse personne échapper !\nLet no one escape.\tNe laissez personne échapper !\nLet us do our job.\tLaissez-nous faire notre boulot !\nLet's begin, then.\tAlors commençons.\nLet's concentrate.\tConcentrons-nous.\nLet's do it again.\tRefaisons-le.\nLet's do it again.\tRefaisons-la.\nLet's do this now.\tFaisons-le maintenant !\nLet's draw straws.\tTirons à la courte-paille !\nLet's flip a coin.\tTirons à pile ou face !\nLet's get a drink.\tAllons nous chercher un verre.\nLet's get married.\tMarions-nous.\nLet's get serious.\tUn peu de sérieux.\nLet's get started.\tCommençons !\nLet's go by train.\tAllons-y en train.\nLet's go downtown.\tAllons en ville !\nLet's go downtown.\tRendons-nous en ville !\nLet's go this way.\tPrenons ici.\nLet's go this way.\tPrenons par là.\nLet's go this way.\tAllons par ce chemin.\nLet's have a chat.\tDiscutons !\nLet's have a look.\tVoyons voir !\nLet's ignore that.\tIgnorons cela !\nLet's just listen.\tÉcoutons, simplement !\nLet's just say no.\tDisons simplement non !\nLet's just try it.\tEssayons !\nLet's just try it.\tTentons-le !\nLet's leave early.\tPartons tôt.\nLet's pick up Tom.\tAllons chercher Tom.\nLet's play soccer.\tJouons au football.\nLet's shake hands.\tSerrons-nous la main !\nLet's sing a song.\tAllez, chantons une chanson !\nLet's take a rest.\tReposons-nous.\nLet's take a taxi.\tPrenons un taxi.\nLet's take a trip.\tAllons en voyage.\nLet's take a walk.\tAllons marcher.\nLet's take a walk.\tFaisons une promenade.\nLife is beautiful.\tLa vie est belle.\nLife is enjoyable.\tLa vie est agréable.\nLife is enjoyable.\tLa vie est divertissante.\nLife is too short.\tLa vie est trop courte.\nLight the candles.\tAllume les bougies !\nLight the candles.\tAllumez les bougies !\nLight the candles.\tAllume les cierges !\nLight the candles.\tAllumez les cierges !\nLive and let live.\tOccupe-toi de ta vie et laisse vivre les autres.\nLong time, no see.\tÇa fait une paille.\nLong time, no see.\tÇa fait un bout de temps qu'on ne s'est vus.\nLong time, no see.\tÇa fait un bail.\nLook at the girls.\tRegarde les filles.\nLook into my eyes.\tRegarde-moi dans les yeux.\nLook, I know that.\tÉcoute, je le sais.\nLove conquers all.\tL'amour triomphe de tout.\nLove will prevail.\tL'amour prévaudra.\nLove will survive.\tL'amour survivra.\nLunch is included.\tLe déjeuner est inclus.\nMake a prediction.\tFais une prédiction !\nMake a prediction.\tFaites une prédiction !\nMake up your mind.\tFaites votre choix.\nMay God bless you.\tQue Dieu te bénisse !\nMay God bless you.\tQue Dieu vous bénisse !\nMay I go home now?\tPuis-je rentrer à la maison maintenant ?\nMay I go with him?\tJe peux aller avec lui ?\nMay I go with you?\tEst-ce que je peux vous accompagner ?\nMay I put it here?\tPuis-je le mettre ici ?\nMay I put it here?\tPuis-je le mettre là ?\nMay I take a rest?\tPuis-je prendre un peu de repos ?\nMay I talk to you?\tEst-ce que je peux te parler ?\nMaybe I should go.\tPeut-être devrais-je y aller.\nMessage me online.\tEnvoie-moi un message en ligne.\nMight makes right.\tLa puissance fait le droit.\nMom set the table.\tMaman a mis la table.\nMove away from me.\tÉloignez-vous de moi.\nMove away from me.\tÉloigne-toi de moi.\nMy bag was stolen.\tOn m'a volé mon sac.\nMy bag was stolen.\tMon sac a été volé.\nMy bag was stolen.\tOn m'a piqué mon sac.\nMy bag was stolen.\tMon sac fut dérobé.\nMy brother is out.\tMon frère est dehors.\nMy brother is out.\tMon frère est sur la touche.\nMy cat loves toys.\tMon chat adore les jouets.\nMy eyes are tired.\tMes yeux sont fatigués.\nMy father is busy.\tMon père est occupé.\nMy father is rich.\tMon père est riche.\nMy father is tall.\tPapa est grand.\nMy father is tall.\tMon père est grand.\nMy glass is dirty.\tMon verre est sale.\nMy glass is empty.\tMon verre est vide.\nMy hair is a mess.\tMes cheveux sont en pagaille.\nMy hair is a mess.\tMes cheveux sont en désordre.\nMy hair is greasy.\tMes cheveux sont gras.\nMy hands are cold.\tMes mains sont froides.\nMy hands are tied.\tJ'ai les mains liées.\nMy heart's aching.\tMon cœur est douloureux.\nMy hobby is music.\tMon passe-temps est la musique.\nMy house is small.\tMa maison est petite.\nMy room is a mess.\tC'est le bordel dans ma chambre.\nMy shoulder hurts.\tJ'ai mal à l'épaule.\nMy shoulder hurts.\tMon épaule me fait mal.\nMy stomach's full.\tJ'ai l'estomac plein.\nMy tailor is rich.\tMon tailleur est riche.\nNever tell anyone.\tNe le dites jamais à quiconque !\nNever tell anyone.\tNe le dis jamais à quiconque !\nNever tell anyone.\tNe le dites jamais à qui que ce soit !\nNever tell anyone.\tNe le dis jamais à qui que ce soit !\nNo minors allowed.\tInterdit aux mineurs.\nNo minors allowed.\tLes mineurs ne sont pas admis.\nNo music, no life.\tPas de vie sans musique.\nNo one has failed.\tPersonne n'a échoué.\nNo one is perfect.\tNul n'est parfait.\nNo one is talking.\tPersonne ne parle.\nNo one knows that.\tPersonne ne le sait.\nNo one knows that.\tPersonne ne sait cela.\nNo one lives here.\tPersonne ne vit ici.\nNo one looks busy.\tPersonne n'a l'air occupé.\nNo one looks busy.\tPersonne ne semble occupé.\nNo one misses you.\tTu ne manques à personne.\nNo one misses you.\tVous ne manquez à personne.\nNo one understood.\tPersonne ne comprit.\nNo one was killed.\tPersonne n'a été tué.\nNo one was killed.\tPersonne ne fut tué.\nNo one's gambling.\tPersonne ne joue.\nNo one's gambling.\tPersonne ne mise.\nNo one's gambling.\tPersonne ne parie.\nNo one's in sight.\tPersonne n'est en vue.\nNo one's prepared.\tPersonne n'est préparé.\nNo one's prepared.\tPersonne n'y est préparé.\nNo one's watching.\tPersonne ne regarde.\nNo problem at all!\tAucun problème !\nNo problem at all!\tPas de problème !\nNo, I didn't help.\tNon, je n'ai pas aidé.\nNobody called Tom.\tPersonne n'a appelé Tom.\nNobody called Tom.\tPersonne n'appela Tom.\nNobody is perfect.\tNul n'est parfait.\nNobody knows this.\tPersonne ne le sait.\nNobody likes rats.\tPersonne n'aime les rats.\nNobody likes rats.\tPersonne n'apprécie les rats.\nNothing scares me.\tRien ne me terrifie.\nNothing was funny.\tRien n'était drôle.\nNothing's working.\tRien ne fonctionne.\nNothing's working.\tRien ne marche.\nOK, I'll order it.\tD'accord, je le commenderai.\nOK, I'm convinced.\tD'accord, je suis convaincu.\nOK, that's enough.\tBien, en voilà assez !\nOnce isn't enough.\tUne fois ne suffit pas.\nOnce more, please.\tEncore une fois s'il vous plaît.\nOur train is late.\tNotre train a du retard.\nOur train is late.\tNotre train est en retard.\nPay what you want.\tPayez ce que vous voulez.\nPay what you want.\tPaie ce que tu veux.\nPeople are stupid.\tLes gens sont idiots.\nPink is for girls.\tLe rose, c'est pour les filles.\nPlease back me up!\tSoutiens-moi, s'il te plait !\nPlease be careful.\tVeuillez être prudent.\nPlease be careful.\tSoyez prudent, je vous prie.\nPlease be careful.\tSois prudent, je te prie.\nPlease be careful.\tS'il te plaît, sois prudent !\nPlease be careful.\tS'il vous plaît, soyez prudent !\nPlease be careful.\tVeuillez être prudente.\nPlease be careful.\tSoyez prudente, je vous prie.\nPlease be careful.\tSois prudente, je te prie.\nPlease be careful.\tS'il te plaît, sois prudente !\nPlease be careful.\tS'il vous plaît, soyez prudente !\nPlease be careful.\tVeuillez être prudents.\nPlease be careful.\tSoyez prudents, je vous prie.\nPlease be careful.\tS'il vous plaît, soyez prudents !\nPlease be careful.\tVeuillez être prudentes.\nPlease be careful.\tSoyez prudentes, je vous prie.\nPlease be careful.\tS'il vous plaît, soyez prudentes !\nPlease be serious.\tSoyez sérieux, je vous prie !\nPlease be serious.\tSoyez sérieuse, je vous prie !\nPlease be serious.\tSois sérieux, je te prie !\nPlease be serious.\tSois sérieuse, je te prie.\nPlease come again.\tJe te prie de revenir.\nPlease come again.\tJe vous prie de revenir.\nPlease correct it.\tVeuillez le corriger.\nPlease explain it.\tExpliquez ça s'il vous plaît.\nPlease fix my toy.\tMerci de réparer mon jouet.\nPlease forgive me.\tPardonne-moi s'il te plaît.\nPlease forgive me.\tPardonne-moi s'il te plait.\nPlease forgive me.\tVeuillez me pardonner.\nPlease keep quiet.\tReste tranquille, s'il te plait.\nPlease keep quiet.\tRestez tranquille s'il vous plait.\nPlease look at me.\tRegardez-moi, s'il vous plaît.\nPlease reconsider.\tRéfléchis-y encore, je te prie.\nPlease reconsider.\tVeuillez encore y réfléchir.\nPlease step aside.\tVeuillez vous mettre de côté.\nPlease step aside.\tMets-toi de côté, je te prie.\nPlease turn it on.\tAllume-le, s'il te plait.\nPlease turn right.\tVeuillez tourner à droite.\nPretend you're me.\tFais comme si tu étais moi.\nPretend you're me.\tFais semblant d'être moi.\nPretend you're me.\tFais-toi passer pour moi.\nPrices are rising.\tLes prix augmentent.\nProduction is low.\tLa production est faible.\nPut it on my bill.\tMettez-le sur mon compte !\nPut it on my bill.\tMets-le sur mon compte !\nPut out the light.\tÉteins la lumière.\nPut some music on.\tMets un peu de musique.\nPut your hands up!\tLes mains en l'air !\nQuit bothering me.\tArrête de m'embêter !\nQuit bothering me.\tArrêtez de m'embêter !\nRead it once more.\tLis-le encore une fois.\nRest is important.\tLe repos est important.\nRoses smell sweet.\tLes roses sentent bon.\nSay it in English.\tDis-le en anglais.\nShe began to sing.\tElle commença à chanter.\nShe began to sing.\tElle se mit à chanter.\nShe began to sing.\tElle a commencé à chanter.\nShe began to sing.\tElle s'est mise à chanter.\nShe can handle it.\tElle sait s'y prendre.\nShe can handle it.\tElle sait y faire.\nShe can handle it.\tElle peut s'en sortir.\nShe can handle it.\tElle peut s'en occuper.\nShe can jump high.\tElle peut sauter haut.\nShe can't do that.\tElle n'arrive pas à faire ça.\nShe can't do that.\tElle n'arrive pas à le faire.\nShe can't do that.\tElle n'y arrive pas.\nShe can't stop me.\tElle ne peut pas m'arrêter.\nShe cooks for him.\tElle cuisine pour lui.\nShe decided to go.\tElle a décidé d'y aller.\nShe decided to go.\tElle a décidé de partir.\nShe decided to go.\tElle s'est décidée à y aller.\nShe did come here.\tElle est bien venue ici.\nShe did it easily.\tElle le fit facilement.\nShe did it slowly.\tElle le fit lentement.\nShe did it slowly.\tElle l'a fait lentement.\nShe didn't answer.\tElle n'a pas répondu.\nShe didn't answer.\tElle ne répondit pas.\nShe didn't go far.\tElle n'est pas allée loin.\nShe drives me mad.\tElle me rend fou.\nShe gained weight.\tElle prit du poids.\nShe gained weight.\tElle a pris du poids.\nShe gave it to me.\tElle me l'a donné.\nShe gave it to me.\tElle me l'a donnée.\nShe gets up early.\tElle se lève tôt.\nShe guessed right.\tElle a bien deviné.\nShe has a bicycle.\tElle est détentrice d'une bicyclette.\nShe has a bicycle.\tElle a un vélo.\nShe has a picture.\tElle détient une photo.\nShe has a picture.\tElle dispose d'une photo.\nShe has long hair.\tElle a les cheveux longs.\nShe has long hair.\tElle a de longs cheveux.\nShe has long hair.\tElle a une longue chevelure.\nShe has many dogs.\tElle a de nombreux chiens.\nShe has no figure.\tElle est dépourvue de silhouette.\nShe hates carrots.\tElle déteste les carottes.\nShe heard him cry.\tElle l'a entendu pleurer.\nShe heard him cry.\tElle l'entendit pleurer.\nShe is a beginner.\tElle est débutante.\nShe is a beginner.\tElle est novice.\nShe is aggressive.\tElle est agressive.\nShe is attractive.\tElle est attirante.\nShe is her friend.\tElle est son amie.\nShe is his friend.\tElle est son amie.\nShe is mad at you.\tElle est en colère après vous.\nShe is mad at you.\tElle est en colère après toi.\nShe is not up yet.\tElle n'est pas encore debout.\nShe is thirty-one.\tElle a 31 ans.\nShe is unsociable.\tElle est asociale.\nShe isn't married.\tElle n'est pas mariée.\nShe isn't running.\tElle ne court pas.\nShe keeps secrets.\tElle garde des secrets.\nShe knew the teen.\tElle connaissait l'adolescente.\nShe knew the teen.\tElle connaissait l'adolescent.\nShe knew the teen.\tElle connaissait l'ado.\nShe knows my wife.\tElle connaît ma femme.\nShe left the room.\tElle quitta la pièce.\nShe looked around.\tElle a regardé aux alentours.\nShe looked lonely.\tElle avait l'air seule.\nShe looks unhappy.\tElle a l'air malheureuse.\nShe loves cooking.\tElle adore cuisiner.\nShe loves singing.\tElle adore chanter.\nShe made him rich.\tElle l'a rendu riche.\nShe made me hurry.\tElle m'a fait me dépêcher.\nShe made me hurry.\tElle m'a fait courir.\nShe married young.\tElle s'est mariée jeune.\nShe met her uncle.\tElle rencontra son oncle.\nShe met her uncle.\tElle a rencontré son oncle.\nShe must be angry.\tElle doit être en colère.\nShe must go there.\tElle doit y aller.\nShe must go there.\tElle doit s'y rendre.\nShe never told me.\tJamais elle ne me le dit.\nShe never told me.\tElle ne me l'a jamais dit.\nShe never told me.\tJamais elle ne me l'a dit.\nShe sells flowers.\tElle vend des fleurs.\nShe smiled at him.\tElle lui sourit.\nShe speaks loudly.\tElle parle à haute voix.\nShe speaks loudly.\tElle parle tout haut.\nShe took her book.\tElle a pris son livre.\nShe took her book.\tElle prit son livre.\nShe went shopping.\tElle alla faire des courses.\nShe went shopping.\tElle est allée faire des courses.\nShe went shopping.\tElle est allée faire des emplettes.\nShe went shopping.\tElle alla faire des emplettes.\nShe went upstairs.\tElle est allée en haut.\nShe wept bitterly.\tElle pleura amèrement.\nShe wept bitterly.\tElle pleurait amèrement.\nShe won't make it.\tElle n'y parviendra pas.\nShe won't make it.\tElle n'y arrivera pas.\nShe's a bit naive.\tElle est un peu naïve.\nShe's a bit naive.\tElle est un peu niaise.\nShe's a good liar.\tElle est bonne menteuse.\nShe's a professor.\tElle est professeur.\nShe's a tough one.\tC'est une coriace.\nShe's fashionable.\tElle est à la mode.\nShe's got a point.\tElle a un argument.\nShe's got a point.\tElle n'a pas tort.\nShe's hyperactive.\tElle est hyperactive.\nShe's my daughter.\tC'est ma fille.\nShe's not a child.\tElle n'est pas une enfant.\nShe's not a child.\tCe n'est pas une enfant.\nShe's not my type.\tElle n'est pas mon genre.\nShe's open-minded.\tElle est ouverte d'esprit.\nShe's open-minded.\tElle a l'esprit ouvert.\nShe's rather good.\tElle est plutôt bonne.\nShe's still young.\tElle est encore jeune.\nShe's very pretty.\tElle est très belle.\nShould I continue?\tDevrais-je continuer ?\nShould I feel bad?\tDevrais-je me sentir mal ?\nShould I tell him?\tDevrais-je lui dire ?\nShow me that list.\tMontrez-moi cette liste !\nShow me that list.\tMontre-moi cette liste !\nShow me the photo.\tMontre-moi la photo.\nShow me your hand.\tMontre-moi ta main.\nShow me your hand.\tMontrez-moi votre main.\nSilence is golden.\tLe silence est d'or.\nSo where were you?\tOù étais-tu donc ?\nSolve the problem.\tRésous le problème.\nSomebody answered.\tQuelqu'un a répondu.\nSomebody answered.\tQuelqu'un répondit.\nSomebody's coming.\tQuelqu'un vient.\nSomebody's coming.\tQuelqu'un est en train d'arriver.\nSomeone is coming.\tQuelqu'un vient.\nSomeone is coming.\tQuelqu'un est en train de venir.\nSomeone is coming.\tQuelqu'un est en train.\nSomeone is inside.\tQuelqu'un est à l'intérieur.\nSomeone's outside.\tIl y a quelqu'un dehors.\nSomeone's talking.\tQuelqu'un parle.\nSomeone's talking.\tQuelqu'un est en train de parler.\nSorry, I was busy.\tDésolé, j'étais occupé.\nStand up straight.\tTiens-toi droit !\nStand up straight.\tTenez-vous droit !\nStand up straight.\tTiens-toi droite !\nStand up straight.\tTenez-vous droite !\nStand up straight.\tTenez-vous droits !\nStand up straight.\tTenez-vous droites !\nStay away from us.\tNe t'approche pas de nous !\nStay here with us.\tReste ici avec nous.\nStay in the house.\tReste dans la maison.\nStay in the house.\tRestez dans la maison.\nStay in this room.\tReste dans cette pièce.\nStay in this room.\tRestez dans cette pièce.\nStealing is wrong.\tVoler est mal.\nStep on the scale.\tMontez sur la balance.\nStop badgering me.\tArrête de me harceler.\nStop badgering me.\tArrêtez de me harceler.\nStop being stupid.\tCesse d'être idiot !\nStop being stupid.\tCesse d'être idiote !\nStop bothering me!\tArrête de m’embêter !\nStop bothering me!\tArrête de m'ennuyer !\nStop following me.\tArrête de me suivre.\nStop following me.\tArrêtez de me suivre.\nStop harassing me.\tArrête de me harceler.\nStop harassing me.\tArrêtez de me harceler.\nStop it right now!\tArrête immédiatement !\nStop it right now!\tArrêtez immédiatement !\nStop the car here.\tArrête la voiture ici !\nTake a wild guess.\tRisque une hypothèse !\nTake a wild guess.\tRisquez une hypothèse !\nTake a wild guess.\tHasarde une hypothèse !\nTake care of this.\tPrenez soin de ceci !\nTake care of this.\tPrends soin de ceci !\nTake his car keys.\tPrends ses clés de voiture.\nTake his car keys.\tPrenez ses clés de voiture.\nTake no prisoners.\tNe faites pas de prisonniers !\nTake off your cap.\tÔte ta casquette.\nTake off your cap.\tÔtez votre casquette.\nTake off your cap.\tRetire ta casquette.\nTake off your hat.\tÔtez votre chapeau !\nTake one of these.\tPrends l'un de ceux-ci !\nTake one of these.\tPrends l'un de ceux-là !\nTake one of these.\tPrenez l'un de ceux-ci !\nTake one of these.\tPrenez l'un de ceux-là !\nTake one of these.\tPrenez l'une de celles-ci !\nTake one of these.\tPrenez l'une de celles-là !\nTake one of these.\tPrends l'une de celles-ci !\nTake one of these.\tPrends l'une de celles-là !\nTake this aspirin.\tPrenez cette aspirine.\nTell me about him.\tParle-moi de lui.\nTell me the story.\tRaconte-moi l'histoire.\nTell me the truth.\tDites-moi la vérité.\nTell me the truth.\tDis-moi la vérité.\nTermites eat wood.\tLes termites mangent du bois.\nThank you so much.\tMerci bien.\nThank you so much.\tMille mercis.\nThanks for coming.\tMerci de venir.\nThanks for coming.\tMerci d'être venue.\nThanks for coming.\tMerci d'être venus.\nThanks for coming.\tMerci d'être venues.\nThanks for dinner.\tMerci pour le dîner.\nThanks in advance.\tMerci d'avance.\nThanks in advance.\tD'avance, merci.\nThat always helps.\tÇa ne peut pas faire de mal.\nThat apple is big.\tCette pomme est grosse.\nThat boy is smart.\tCe garçon est intelligent.\nThat boy is smart.\tCe garçon est malin.\nThat girl is Mary.\tCette fille, c'est Mary.\nThat hit the spot.\tC'était parfait.\nThat house is big.\tCette maison est grande.\nThat house is big.\tCette maison est massive.\nThat is a mistake.\tC'est une erreur.\nThat is essential.\tC'est essentiel.\nThat is her house.\tC'est sa maison.\nThat is his house.\tC'est sa maison.\nThat is my school.\tC'est mon école.\nThat is your book.\tC'est ton livre.\nThat is your book.\tC'est votre livre.\nThat isn't enough.\tCe n'est pas suffisant.\nThat isn't enough.\tCe n'est pas assez.\nThat might be fun.\tNous allons nous amuser.\nThat movie stinks!\tCe film craint !\nThat really hurts.\tCela fait vraiment mal.\nThat should do it.\tÇa devrait le faire.\nThat soon changed.\tCela a vite changé.\nThat sounds great.\tÇa a l'air super !\nThat sounds great.\tÇa a l'air génial !\nThat sounds right.\tOn dirait que c'est exact.\nThat sounds right.\tOn dirait que c'est juste.\nThat sounds right.\tÇa semble coller.\nThat wall is cold.\tCe mur est froid.\nThat was our plan.\tC'était notre plan.\nThat was pathetic.\tC'était pathétique.\nThat'll be enough.\tÇa sera assez.\nThat'll be enough.\tÇa sera suffisant.\nThat'll never fly.\tÇa ne volera jamais.\nThat's a bad spot.\tC'est un mauvais endroit.\nThat's a big blow.\tC'est un gros choc.\nThat's a big deal.\tC'est une grosse affaire.\nThat's a hard one.\tElle est très difficile, celle-là.\nThat's a low blow.\tC'est un coup bas.\nThat's acceptable.\tC'est acceptable.\nThat's all I have.\tC'est tout ce que j'ai.\nThat's all I knew.\tC'était tout ce que je savais.\nThat's all I knew.\tC'est tout ce que je savais.\nThat's all I know.\tC'est tout ce que je sais.\nThat's all I need.\tC'est tout ce dont j'ai besoin.\nThat's all I said.\tC'est tout ce que j'ai dit.\nThat's all I want.\tC'est tout ce que je veux.\nThat's all we saw.\tC'est tout ce que nous avons vu.\nThat's classified.\tC'est secret.\nThat's disgusting.\tC'est dégueulasse.\nThat's how it was.\tC'est ainsi que c'était.\nThat's how it was.\tC'est ainsi qu'il en allait.\nThat's impossible.\tC'est impossible.\nThat's impressive.\tC’est impressionnant.\nThat's just awful.\tC'est simplement atroce.\nThat's just crazy.\tC'est juste dingue.\nThat's just crazy.\tC'est tout simplement fou.\nThat's just false.\tC'est juste faux.\nThat's news to me.\tPremière nouvelle !\nThat's no problem.\tCe n'est pas un problème.\nThat's not enough.\tCe n'est pas suffisant.\nThat's not enough.\tCe n'est pas assez.\nThat's not my car.\tCe n'est pas ma voiture.\nThat's not my job.\tCe n'est pas mon boulot.\nThat's only a toy.\tCe n'est qu'un jouet.\nThat's real funny.\tC'était vraiment amusant.\nThat's really sad.\tC'est vraiment triste.\nThat's ridiculous!\tC'est risible !\nThat's sufficient.\tC'est suffisant.\nThat's super easy.\tC'est super facile.\nThat's terrifying.\tC'est terrifiant.\nThat's the answer.\tC'est la réponse.\nThat's very funny.\tC'est très marrant.\nThat's very funny.\tC'est très drôle.\nThat's very handy.\tC'est très pratique.\nThat's what I did.\tC'est ce que j'ai fait.\nThe alarm sounded.\tL'alarme sonna.\nThe answer is yes.\tLa réponse est : oui\nThe bar is closed.\tLe bar est fermé.\nThe bath is ready.\tLe bain est prêt.\nThe boat capsized.\tLe bateau a chaviré.\nThe boat capsized.\tLe bateau chavira.\nThe book is small.\tLe livre est petit.\nThe book is white.\tLe livre est blanc.\nThe cage is empty.\tLa cage est vide.\nThe cat scared me.\tLe chat m'a effrayé.\nThe cat scared me.\tLe chat m'a effrayée.\nThe cats are safe.\tLes chats sont en sécurité.\nThe check bounced.\tLe chèque était sans provision.\nThe check, please.\tL'addition s'il vous plaît.\nThe check, please.\tLa note, s'il vous plaît.\nThe check, please.\tL'addition, s'il vous plaît.\nThe clock stopped.\tL'horloge s'arrêta.\nThe clock stopped.\tLa pendule s'arrêta.\nThe cops are gone.\tLes flics sont partis.\nThe cops want you.\tLes flics sont après toi.\nThe cops want you.\tLes flics sont après vous.\nThe crowd cheered.\tLa foule a applaudi.\nThe dog is theirs.\tLe chien est à eux.\nThe dog was dying.\tLe chien était en train de mourir.\nThe dog was dying.\tLe chien était mourant.\nThe dog went away.\tLe chien fila.\nThe dog went away.\tLe chien a filé.\nThe door squeaked.\tLa porte a grincé.\nThe earth rotates.\tLa Terre tourne.\nThe enemy is weak.\tL'ennemi est faible.\nThe fight is over.\tLe combat est terminé.\nThe fire went out.\tLe feu s'éteignit.\nThe girls fainted.\tLes filles sont tombées dans les pommes.\nThe girls fainted.\tLes filles se sont évanouies.\nThe girls giggled.\tLes filles pouffèrent.\nThe girls giggled.\tLes filles ont pouffé.\nThe girls giggled.\tLes filles gloussèrent.\nThe girls giggled.\tLes filles ont gloussé.\nThe gun is jammed.\tL'arme est enrayée.\nThe home team won.\tL'équipe à domicile l'a emporté.\nThe horse is mine.\tC'est mon cheval.\nThe horse is mine.\tCe cheval est à moi.\nThe house is warm.\tIl fait bon dans la maison.\nThe joke's on you.\tOn se moque de vous.\nThe joke's on you.\tOn se moque de toi.\nThe joke's on you.\tOn se fout de ta gueule.\nThe joke's on you.\tOn se fout de votre gueule.\nThe joke's on you.\tC'est une blague sur toi.\nThe joke's on you.\tC'est une blague sur vous.\nThe joke's on you.\tC'est de toi qu'on se moque.\nThe joke's on you.\tC'est de vous qu'on se moque.\nThe lemon is sour.\tLe citron est acide.\nThe lid is closed.\tLe couvercle est fermé.\nThe light went on.\tLa lumière s'est allumée.\nThe lights are on.\tLes phares sont allumés.\nThe lights are on.\tLes voyants sont allumés.\nThe man ate bread.\tL'homme mangea du pain.\nThe market is big.\tLe marché est grand.\nThe meat is tough.\tLa viande est dure.\nThe money is gone.\tL'argent a disparu.\nThe money is gone.\tL'argent a filé.\nThe money is gone.\tL'argent s'en est allé.\nThe night is dark.\tLa nuit est sombre.\nThe pain has gone.\tLa douleur est partie.\nThe pain has gone.\tLa douleur a disparu.\nThe party is over.\tLa fête est finie.\nThe pay is meager.\tLa paie est maigre.\nThe room was dark.\tLa pièce était sombre.\nThe rumor is true.\tLa rumeur est vraie.\nThe sand was warm.\tLe sable était chaud.\nThe shop was busy.\tLe magasin était plein de monde.\nThe soup is thick.\tLa soupe est épaisse.\nThe street is wet.\tLa rue est mouillée.\nThe sun is a star.\tLe Soleil est une étoile.\nThe sun is rising.\tLe soleil se lève.\nThe switch is off.\tL’interrupteur est ouvert.\nThe tactic worked.\tLa tactique a fonctionné.\nThe tank is empty.\tLa cuve est vide.\nThe team needs me.\tL'équipe a besoin de moi.\nThe train stopped.\tLe train s'est arrêté.\nThe water is cold.\tL'eau est froide.\nThe water is good.\tL'eau est bonne.\nThe water is pure.\tL'eau est pure.\nThe water is warm.\tL'eau est chaude.\nThe water was hot.\tL'eau était chaude.\nThe worst is over.\tLe pire est passé.\nThe worst is over.\tLe pire est déjà passé.\nThere are no gods.\tIl n'y a pas de dieux.\nThere are so many.\tIl y en a tant.\nThere is a strike.\tIl y a une grève.\nThere is no doubt.\tIl n'y a aucun doute.\nThere is no hurry.\tIl n'y a pas le feu au lac.\nThere is no paint.\tIl n'y a pas de peinture.\nThere is one less.\tIl y en a un de moins.\nThere is one less.\tIl y en a une de moins.\nThere were enough.\tIl y en avait assez.\nThere were enough.\tIl y en avait suffisamment.\nThere's no answer.\tIl n'y a pas de réponse.\nThere's no change.\tIl n'y a pas de changement.\nThere's no choice.\tIl n'y a pas le choix.\nThere's no coffee.\tIl n'y a pas de café.\nThere's no damage.\tIl n'y a pas de dommage.\nThere's no danger.\tIl n'y a aucun danger.\nThere's no danger.\tIl n'y a pas de danger.\nThere's no escape.\tIl n'y a pas d'issue.\nThere's no escape.\tIl n'y a pas d'échappatoire.\nThese are animals.\tCe sont des animaux.\nThese are genuine.\tCeux-ci sont véritables.\nThey all chuckled.\tElles ont toutes gloussé.\nThey already know.\tIls savent déjà.\nThey are all dead.\tIls sont tous morts.\nThey are in class.\tIls sont en classe.\nThey are very big.\tIls sont très gros.\nThey are very big.\tIls sont très grands.\nThey are very big.\tElles sont très grosses.\nThey are very big.\tElles sont très grandes.\nThey are very big.\tElles sont très massives.\nThey are very big.\tIls sont très massifs.\nThey are watching.\tIls regardent.\nThey aren't alone.\tIls ne sont pas seuls.\nThey aren't alone.\tElles ne sont pas seules.\nThey arrested her.\tIls l'ont arrêtée.\nThey arrested her.\tElles l'ont arrêtée.\nThey both laughed.\tTous deux rirent.\nThey both laughed.\tTous deux ont ri.\nThey both laughed.\tToutes deux rirent.\nThey both laughed.\tToutes deux ont ri.\nThey can't see me.\tIls ne peuvent me voir.\nThey can't see me.\tIls ne peuvent pas me voir.\nThey can't see me.\tElles ne peuvent me voir.\nThey can't see me.\tElles ne peuvent pas me voir.\nThey deported Tom.\tIls ont déporté Tom.\nThey did it again.\tIls l'ont encore fait.\nThey hunted foxes.\tIls chassaient les renards.\nThey hunted foxes.\tIls chassaient des renards.\nThey just beat us.\tIl nous ont simplement battus.\nThey keep calling.\tElles ne cessent d'appeler.\nThey keep calling.\tIls ne cessent d'appeler.\nThey kidnapped me.\tIls m'ont enlevé.\nThey kidnapped me.\tElles m'ont enlevé.\nThey kidnapped me.\tIls m'ont enlevée.\nThey kidnapped me.\tElles m'ont enlevée.\nThey like English.\tL'anglais leur plaît.\nThey look healthy.\tIls ont l'air en bonne santé.\nThey look healthy.\tElles ont l'air en bonne santé.\nThey must be cops.\tÇa doit être des flics.\nThey must be fake.\tIls doivent être faux.\nThey released Tom.\tIls ont relâché Tom.\nThey released Tom.\tElles ont relâché Tom.\nThey said it's OK.\tIls ont dit que c'était d'accord.\nThey said it's OK.\tElles ont dit que c'était d'accord.\nThey said it's OK.\tIls ont dit que ça convenait.\nThey said it's OK.\tElles ont dit que ça convenait.\nThey sang in tune.\tIls ont chanté juste.\nThey went surfing.\tIls sont allés faire du surf.\nThey went surfing.\tElles sont allées faire du surf.\nThey were panting.\tIls tiraient la langue.\nThey were panting.\tElles tiraient la langue.\nThey were panting.\tIls haletaient.\nThey were panting.\tElles haletaient.\nThey were wealthy.\tIls étaient riches.\nThey were wealthy.\tElles étaient fortunées.\nThey will survive.\tIls survivront.\nThey will survive.\tElles survivront.\nThey'll eat those.\tIls mangeront ceux-là.\nThey'll eat those.\tIls mangeront celles-là.\nThey'll eat those.\tElles mangeront ceux-là.\nThey'll eat those.\tElles mangeront celles-là.\nThey'll like that.\tIls aimeront cela.\nThey'll like that.\tIls vont aimer cela.\nThey'll try again.\tIls essayeront à nouveau.\nThey'll try again.\tElles essayeront à nouveau.\nThey're all alike.\tIls sont tous semblables.\nThey're all alike.\tElles sont toutes semblables.\nThey're all liars.\tCe sont tous des menteurs.\nThey're all liars.\tCe sont toutes des menteuses.\nThey're all lying.\tElles mentent toutes.\nThey're all lying.\tIls mentent tous.\nThey're cannibals.\tCe sont des cannibales.\nThey're dangerous.\tIls sont dangereux.\nThey're dangerous.\tElles sont dangereuses.\nThey're different.\tIls sont différents.\nThey're different.\tElles sont différentes.\nThey're expensive.\tIls sont onéreux.\nThey're expensive.\tElles sont onéreuses.\nThey're in danger.\tIls sont en danger.\nThey're in danger.\tElles sont en danger.\nThey're nice guys.\tCe sont de chics types.\nThey're not alone.\tIls ne sont pas seuls.\nThey're not alone.\tElles ne sont pas seules.\nThey're not happy.\tIls ne sont pas satisfaits.\nThey're not happy.\tElles ne sont pas satisfaites.\nThey're surprised.\tIls sont surpris.\nThey're surprised.\tElles sont surprises.\nThey're undamaged.\tIls sont intacts.\nThey're undamaged.\tElles sont intactes.\nThey're very busy.\tIls sont très occupés.\nThey're very busy.\tElles sont très occupées.\nThey've just left.\tIls viennent de partir.\nThings can change.\tLes choses peuvent changer.\nThis apple is bad.\tCette pomme est mauvaise.\nThis bed is heavy.\tCe lit pèse lourd.\nThis bird can fly.\tCet oiseau sait voler.\nThis book was new.\tCe livre était neuf.\nThis box is light.\tCette caisse est légère.\nThis bucket leaks.\tCe seau fuit.\nThis coat is warm.\tCe manteau est chaud.\nThis desk is good.\tCe bureau est bien.\nThis doesn't burn.\tÇa ne brûle pas.\nThis doesn't work!\tÇa ne fonctionne pas !\nThis doesn't work!\tÇa ne marche pas !\nThis dog is white.\tCe chien est blanc.\nThis dog is yours.\tCe chien est le tien.\nThis dog is yours.\tCe chien est le vôtre.\nThis egg is fresh.\tC'est un œuf frais.\nThis guy is great.\tCe type est extra.\nThis guy is great.\tCe type est célèbre.\nThis is a miracle.\tC'est un miracle.\nThis is a mistake.\tIl s'agit d'une erreur.\nThis is a mistake.\tC'est une erreur.\nThis is a picture.\tCeci est un tableau.\nThis is appalling.\tC'est atroce.\nThis is appalling.\tC'est choquant.\nThis is different.\tC'est différent.\nThis is expensive.\tC'est cher.\nThis is expensive.\tC'est onéreux.\nThis is good meat.\tC'est une bonne viande.\nThis is good news.\tCe sont de bonnes nouvelles.\nThis is her house.\tC'est sa maison.\nThis is hilarious.\tC'est tordant.\nThis is hilarious.\tC'est à se plier de rire.\nThis is hilarious.\tC'est hilarant.\nThis is his fault.\tC'est sa faute.\nThis is his house.\tC'est sa maison.\nThis is how it is.\tC'est ainsi.\nThis is important.\tC'est important.\nThis is insulting.\tC'est insultant.\nThis is justified.\tC'est justifié.\nThis is ludicrous.\tC'est absurde.\nThis is ludicrous.\tC'est ridicule.\nThis is messed up.\tC'est foutu.\nThis is messed up.\tC'est foiré.\nThis is my choice.\tJe choisis ceci.\nThis is my family.\tC'est ma famille.\nThis is my friend.\tC'est mon ami.\nThis is my mother.\tC'est ma mère.\nThis is my mother.\tC'est ma maman.\nThis is my office.\tC'est mon bureau.\nThis is my pencil.\tIl s'agit de mon crayon.\nThis is my school.\tC'est mon école.\nThis is my sister.\tC'est ma sœur.\nThis is not funny.\tCe n'est pas marrant.\nThis is not funny.\tCe n'est pas amusant.\nThis is not funny.\tCe n'est pas drôle !\nThis is offensive.\tC'est offensant.\nThis is offensive.\tC'est grossier.\nThis is our house.\tC'est notre maison.\nThis is pointless.\tÇa n'a pas de sens.\nThis is priceless.\tC'est hors de prix.\nThis is revolting.\tC'est révoltant.\nThis is sickening.\tC'est écœurant.\nThis is so boring.\tC'est tellement chiant.\nThis is so stupid.\tC'est tellement idiot !\nThis is so unfair.\tC'est tellement injuste.\nThis is tasteless.\tÇa n'a aucun goût.\nThis is temporary.\tC'est temporaire.\nThis is true love.\tC'est l'amour vrai.\nThis is true love.\tC'est l'amour véritable.\nThis is true love.\tC'est l'amour, le vrai.\nThis is very easy.\tC'est fort aisé.\nThis is very good.\tC'est très bon.\nThis is very good.\tC'est très bien.\nThis is very true.\tC'est vrai de vrai.\nThis is very true.\tC'est très vrai.\nThis is worrisome.\tC'est inquiétant.\nThis is your book.\tC'est ton livre.\nThis is your fate.\tC'est ton destin.\nThis is your fate.\tC'est ta destinée.\nThis is your fate.\tC'est ton sort.\nThis is your fate.\tC'est votre sort.\nThis is your fate.\tC'est votre destinée.\nThis is your fate.\tC'est votre destin.\nThis is your wine.\tC'est votre vin.\nThis isn't a game.\tCe n'est pas un jeu.\nThis isn't a game.\tIl ne s'agit pas d'un jeu.\nThis isn't enough.\tCe n'est pas suffisant.\nThis isn't enough.\tCe n'est pas assez.\nThis lake is deep.\tCe lac est profond.\nThis one is on me.\tCelui-ci est pour moi.\nThis one is on me.\tCelle-ci est pour moi.\nThis plane is his.\tCet avion est le sien.\nThis sounds fishy.\tÇa a l'air louche.\nThis sounds fishy.\tÇa semble suspect.\nThis tastes moldy.\tÇa a un goût de moisi.\nThis tastes moldy.\tÇa a goût de moisi.\nThis tastes moldy.\tÇa a le goût de moisi.\nThis wall is cold.\tCe mur est froid.\nThis will be easy.\tÇa sera facile.\nThose aren't mine.\tCeux-là ne sont pas à moi.\nThose aren't mine.\tCelles-là ne sont pas à moi.\nThrow me the ball.\tJetez-moi la balle.\nToday is Thursday.\tNous sommes jeudi.\nToday is my treat.\tAujourd'hui c'est pour moi.\nToday is my treat.\tAujourd'hui, c'est moi qui régale.\nTom arrived first.\tTom est arrivé le premier.\nTom arrived first.\tTom est arrivé en premier.\nTom arrived first.\tTom fut le premier à arriver.\nTom began praying.\tTom commença à prier.\nTom began praying.\tTom a commencé à prier.\nTom behaved badly.\tTom s'est mal comporté.\nTom broke his arm.\tTom s'est cassé le bras.\nTom broke his arm.\tTom lui a cassé le bras.\nTom called me fat.\tTom m'a décrit comme gros.\nTom came too late.\tTom est arrivé trop tard.\nTom can do better.\tTom peut mieux faire.\nTom can't come in.\tTom ne peut pas entrer.\nTom can't help me.\tTom ne peut pas m'aider.\nTom can't hurt me.\tTom ne peut pas me blesser.\nTom caught a fish.\tTom a attrapé un poisson.\nTom could do that.\tTom pourrait faire cela.\nTom could do that.\tTom pourrait faire ça.\nTom despised Mary.\tTom méprisait Marie.\nTom despises Mary.\tTom méprise Marie.\nTom didn't appear.\tTom n'est pas apparu.\nTom didn't see it.\tTom ne l'a pas vu.\nTom didn't see it.\tTom ne l'a pas vue.\nTom didn't see it.\tTom ne le vit pas.\nTom didn't see it.\tTom ne la vit pas.\nTom does love you.\tTom t'aime vraiment !\nTom does love you.\tTom vous aime !\nTom doesn't smoke.\tTom ne fume pas.\nTom drinks coffee.\tTom boit du café.\nTom drives safely.\tTom conduit prudemment.\nTom drives slowly.\tTom conduit lentement.\nTom expects a lot.\tTom attend beaucoup.\nTom fed the horse.\tTom a donné à manger au cheval.\nTom fed the horse.\tTom donna à manger au cheval.\nTom has Windows 7.\tTom a Windows 7.\nTom has allergies.\tTom a des allergies.\nTom has blue eyes.\tTom a les yeux bleus.\nTom has dark skin.\tTom a la peau foncée.\nTom hasn't called.\tTom n'a pas appelé.\nTom imitated Mary.\tTom imita Mary.\nTom imitated Mary.\tTom a imité Mary.\nTom is a good man.\tTom est un homme bon.\nTom is a preacher.\tTom est un donneur de leçons.\nTom is a teenager.\tTom est un adolescent.\nTom is an old man.\tTom est un vieil homme.\nTom is an old man.\tTom est un vieillard.\nTom is doing fine.\tTom va bien.\nTom is downstairs.\tTom est en bas.\nTom is frustrated.\tTom est frustré.\nTom is going nuts.\tTom perd la tête.\nTom is growing up.\tTom est en train de grandir.\nTom is growing up.\tTom grandit.\nTom is handcuffed.\tTom est menotté.\nTom is in custody.\tTom est en garde à vue.\nTom is intolerant.\tTom est intolérant.\nTom is making tea.\tTom fait du thé.\nTom is making tea.\tTom est en train de faire du thé.\nTom is my brother.\tTom est mon frère.\nTom is not a hero.\tTom n'est pas un héros.\nTom is not crying.\tTom ne pleure pas.\nTom is very smart.\tTom est très intelligent.\nTom is your uncle.\tTom est ton oncle.\nTom is your uncle.\tTom est votre oncle.\nTom isn't a child.\tTom n'est pas un enfant.\nTom isn't at home.\tTom n'est pas à la maison.\nTom isn't trained.\tTom n'est pas formé.\nTom isn't worried.\tTom n'est pas inquiet.\nTom knew too much.\tTom en savait trop.\nTom likes fishing.\tTom aime la pêche.\nTom likes oranges.\tTom aime les oranges.\nTom likes to fish.\tTom aime pêcher.\nTom likes to knit.\tTom aime tricoter.\nTom likes writing.\tTom aime écrire.\nTom looks excited.\tTom a l'air enthousiaste.\nTom lost the race.\tTom perdit la course.\nTom lost the race.\tTom a perdu la course.\nTom loves his job.\tTom aime son travail.\nTom loves his job.\tTom aime son emploi.\nTom loves singing.\tTom aime chanter.\nTom loves to sing.\tTom aime chanter.\nTom loves you all.\tTom vous aime tous.\nTom loves you all.\tTom vous aime toutes.\nTom made Mary cry.\tTom a fait pleurer Mary.\nTom moves quickly.\tTom bouge rapidement.\nTom must be proud.\tTom doit être fier.\nTom must be tired.\tTom doit être fatigué.\nTom must be wrong.\tTom doit avoir tort.\nTom must be wrong.\tTom doit se tromper.\nTom needs to work.\tTom a besoin de travailler.\nTom never gave up.\tTom ne renonça jamais.\nTom never gave up.\tTom n'a jamais renoncé.\nTom never said no.\tTom n'a jamais dit non.\nTom peeked inside.\tTom jeta un coup d'œil à l'intérieur.\nTom peeked inside.\tTom jeta un œil à l'intérieur.\nTom put on a coat.\tTom mit son manteau.\nTom rang the bell.\tTom sonna la cloche.\nTom refused to go.\tTom refusa d'y aller.\nTom remembers you.\tTom se souvient de toi.\nTom remembers you.\tTom se souvient de vous.\nTom scored a goal.\tTom a marqué un but.\nTom seems sincere.\tTom paraît sincère.\nTom seems sincere.\tTom semble sincère.\nTom seems so nice.\tTom a l'air si sympathique.\nTom seems so nice.\tTom paraît si sympathique.\nTom seems so nice.\tTom a l'air si gentil.\nTom shook my hand.\tTom m'a serré la main.\nTom shook my hand.\tTom me serra la main.\nTom shut his eyes.\tTom ferma les yeux.\nTom sings off key.\tTom chante faux.\nTom sounded happy.\tTom semblait heureux.\nTom spoke to Mary.\tTom a parlé à Mary.\nTom stood in line.\tTom resta dans l'alignement.\nTom talks quickly.\tTom parle rapidement.\nTom took a shower.\tTom prit une douche.\nTom took my money.\tTom a pris mon argent.\nTom took the bait.\tTom a pris l'appât.\nTom travels a lot.\tTom voyage beaucoup.\nTom understood me.\tTom me comprenait.\nTom waited for me.\tTom m'attendit.\nTom waited for me.\tTom m'a attendue.\nTom walks quickly.\tTom marche vite.\nTom walks quickly.\tTom marche rapidement.\nTom wanted to cry.\tTom voulait pleurer.\nTom wants revenge.\tTom veut se venger.\nTom wants to come.\tTom veut venir.\nTom wants to help.\tTom veut aider.\nTom wants to play.\tTom veut jouer.\nTom was ambitious.\tTom était ambitieux.\nTom was dangerous.\tTom était dangereux.\nTom was delirious.\tTom délirait.\nTom was motivated.\tTom était motivé.\nTom was strangled.\tTom fut étranglé.\nTom was strangled.\tTom a été étranglé.\nTom wasn't amused.\tTom n'a pas trouvé cela drôle.\nTom went that way.\tTom est allé de ce côté.\nTom will continue.\tTom continuera.\nTom will find you.\tTom te trouvera.\nTom will find you.\tTom vous trouvera.\nTom won't be long.\tTom ne va pas tarder.\nTom won't give in.\tThomas ne cédera pas.\nTom works at home.\tTom travaille à la maison.\nTom would say yes.\tTom approuverait.\nTom's suffocating.\tTom est en train de suffoquer.\nTom, are you okay?\tTom, est-ce que ça va ?\nTry it once again.\tEssaie-le encore une fois.\nTry it once again.\tEssaie-la encore une fois.\nTry it once again.\tEssaie de nouveau.\nTry to stay awake.\tEssaie de rester éveillé.\nTurn on your back.\tMets-toi sur le dos.\nTurn the hose off.\tCoupe l'alimentation du tuyau !\nTurn the hose off.\tCoupez l'alimentation du tuyau !\nTurn to the right.\tTournez à droite s'il vous plait.\nTwo beers, please.\tDeux bières, s'il vous plait.\nTwo beers, please.\tDeux bières, je vous prie !\nUse acrylic paint.\tEmployez de la peinture acrylique.\nUse it or lose it.\tFais-en usage ou sépare-t'en.\nUse it or lose it.\tUtilise-le ou perds-le.\nVisit us tomorrow.\tRends-nous visite demain !\nVisit us tomorrow.\tRendez-nous visite demain !\nWait a bit longer.\tAttends encore un peu !\nWas he home alone?\tÉtait-il tout seul à la maison ?\nWatch how I do it.\tRegarde comment je le fais !\nWatch how I do it.\tRegardez comment je le fais !\nWatch your tongue.\tSurveille ton langage.\nWater is a liquid.\tL'eau est un liquide.\nWe agree with you.\tNous sommes d’accord avec vous.\nWe all got scared.\tNous avons tous été effrayés.\nWe all got scared.\tNous avons toutes été effrayées.\nWe all have flaws.\tNous avons tous des défauts.\nWe all have flaws.\tNous avons toutes des défauts.\nWe all understand.\tNous comprenons tous.\nWe all understand.\tNous comprenons toutes.\nWe are Australian.\tNous sommes Australiens.\nWe are Australian.\tNous sommes Australiennes.\nWe are classmates.\tNous sommes camarades de classe.\nWe are not amused.\tÇa ne nous fait pas rire.\nWe aren't married.\tNous ne sommes pas mariés.\nWe aren't married.\tNous ne sommes pas mariées.\nWe aren't related.\tNous ne sommes pas apparentés.\nWe aren't related.\tNous ne sommes pas apparentées.\nWe can both do it.\tOn peut le faire tous les deux.\nWe can't go there.\tNous ne pouvons pas y aller.\nWe can't go there.\tNous ne pouvons pas aller là-bas.\nWe can't go there.\tOn ne peut pas y aller.\nWe can't go there.\tOn ne peut pas aller là-bas.\nWe can't help Tom.\tNous ne pouvons pas aider Tom.\nWe can't help you.\tNous ne pouvons pas t'aider.\nWe can't help you.\tNous ne pouvons pas vous aider.\nWe can't kill Tom.\tNous ne pouvons pas tuer Tom.\nWe chose this one.\tNous avons choisi celui-ci.\nWe could continue.\tNous pourrions continuer.\nWe cried together.\tNous pleurâmes ensemble.\nWe cried together.\tNous avons pleuré ensemble.\nWe didn't find it.\tNous ne l'avons pas trouvé.\nWe don't have tea.\tNous n'avons pas de thé.\nWe don't know her.\tNous ne la connaissons pas.\nWe don't need him.\tNous n'avons pas besoin de lui.\nWe don't need you.\tNous n'avons pas besoin de toi.\nWe don't need you.\tNous n'avons pas besoin de vous.\nWe finally did it.\tNous l'avons finalement fait.\nWe finished today.\tNous avons terminé aujourd'hui.\nWe gave them food.\tNous leur donnâmes de la nourriture.\nWe gave them food.\tNous leur avons donné de la nourriture.\nWe got up at dawn.\tNous nous levâmes à l'aube.\nWe got up at dawn.\tNous nous sommes levés à l'aube.\nWe had no secrets.\tNous n'avions pas de secrets.\nWe had no trouble.\tNous n'avions pas de souci.\nWe had no trouble.\tNous n'eûmes pas de souci.\nWe had no trouble.\tNous n'avons pas eu de souci.\nWe have a big dog.\tNous avons un gros chien.\nWe have a problem.\tNous avons un problème.\nWe have good news.\tNous avons une bonne nouvelle.\nWe have no chance.\tNous n'avons aucune chance.\nWe have no choice.\tNous n'avons pas le choix.\nWe have suppliers.\tNous disposons de fournisseurs.\nWe have to escape.\tNous devons nous échapper.\nWe heard gunshots.\tNous avons entendu des détonations.\nWe know this song.\tCette chanson nous est familière.\nWe know this song.\tNous connaissons cette chanson.\nWe live in Boston.\tNous vivons à Boston.\nWe long for peace.\tNous aspirons à la paix.\nWe look after him.\tOn s'occupe de lui.\nWe look after him.\tNous nous occupons de lui.\nWe looked for her.\tNous l'avons cherchée.\nWe love our parks.\tNous aimons nos parcs.\nWe made a bargain.\tNous avons fait une affaire.\nWe miss you a lot.\tTu nous manques beaucoup.\nWe miss you a lot.\tVous nous manquez beaucoup.\nWe must intervene.\tIl nous faut intervenir.\nWe must keep calm.\tNous devons garder notre calme.\nWe nearly starved.\tNous mourûmes presque de faim.\nWe nearly starved.\tNous sommes presque morts de faim.\nWe nearly starved.\tNous sommes presque mortes de faim.\nWe need a victory.\tIl nous faut une victoire.\nWe need an answer.\tOn a besoin d'une réponse.\nWe need an answer.\tIl nous faut une réponse.\nWe need an answer.\tNous avons besoin d'une réponse.\nWe need fresh air.\tNous avons besoin d'air frais.\nWe need more data.\tNous avons besoin de plus de données.\nWe need more data.\tIl nous faut plus de données.\nWe need more time.\tNous avons besoin de plus de temps.\nWe need your help.\tNous avons besoin de votre aide.\nWe need your help.\tNous avons besoin de ton aide.\nWe play on Sunday.\tNous jouons le dimanche.\nWe ran out of gas.\tNous fûmes à court d'essence.\nWe rented a canoe.\tNous louâmes un canoë.\nWe saw everything.\tNous avons tout vu.\nWe saw them leave.\tNous les avons vus partir.\nWe saw them leave.\tNous les avons vues partir.\nWe should ask Tom.\tNous devrions demander à Tom.\nWe should go home.\tNous devrions rentrer.\nWe should go home.\tNous devrions rentrer chez nous.\nWe train together.\tNous nous entraînons ensemble.\nWe tried our best.\tNous fîmes de notre mieux.\nWe tried our best.\tNous avons fait de notre mieux.\nWe tried them all.\tNous les avons tous essayés.\nWe tried them all.\tNous les avons toutes essayées.\nWe understand why.\tNous comprenons pourquoi.\nWe waited outside.\tNous avons attendu dehors.\nWe waited outside.\tNous attendîmes dehors.\nWe want a rematch.\tNous voulons une revanche.\nWe want more food.\tNous voulons plus de nourriture.\nWe want our money.\tNous voulons notre argent.\nWe went due north.\tNous sommes partis plein nord.\nWe went due north.\tNous partîmes plein nord.\nWe went to Russia.\tNous sommes allés en Russie.\nWe were all happy.\tNous étions tous heureux.\nWe were all happy.\tNous étions toutes heureuses.\nWe were all tired.\tNous étions tous fatigués.\nWe were all wrong.\tNous avions tout faux.\nWe were concerned.\tNous étions préoccupés.\nWe were concerned.\tNous étions préoccupées.\nWe were concerned.\tNous avons été préoccupés.\nWe were concerned.\tNous avons été préoccupées.\nWe were impressed.\tNous avons été impressionnés.\nWe were impressed.\tNous avons été impressionnées.\nWe were in Boston.\tNous étions à Boston.\nWe were in Boston.\tOn était à Boston.\nWe were terrified.\tNous étions terrifiés.\nWe were terrified.\tNous étions terrifiées.\nWe won the battle.\tNous avons gagné la bataille.\nWe won't use that.\tNous n'emploierons pas cela.\nWe're a good team.\tNous sommes une bonne équipe.\nWe're about ready.\tNous sommes pour ainsi dire prêts.\nWe're about ready.\tNous sommes pour ainsi dire prêtes.\nWe're all at risk.\tNous sommes tous en danger.\nWe're all at risk.\tNous sommes toutes en danger.\nWe're all cowards.\tNous sommes tous des lâches.\nWe're all cowards.\tNous sommes toutes des lâches.\nWe're all friends.\tNous sommes tous amis.\nWe're all retired.\tNous sommes tous retraités.\nWe're all retired.\tNous sommes toutes retraitées.\nWe're all retired.\tNous sommes tous à la pension.\nWe're all retired.\tNous sommes toutes à la pension.\nWe're both insane.\tNous sommes tous deux fous.\nWe're both insane.\tNous sommes toutes deux folles.\nWe're both single.\tNous sommes tous deux célibataires.\nWe're celebrating.\tNous fêtons ça.\nWe're changing it.\tNous sommes en train de le changer.\nWe're cooperating.\tNous coopérons.\nWe're defenseless.\tNous sommes sans défenses.\nWe're doing great.\tNous nous en sortons très bien.\nWe're experienced.\tNous avons de l'expérience.\nWe're experienced.\tNous disposons d'expérience.\nWe're friends now.\tNous sommes désormais amis.\nWe're friends now.\tNous sommes désormais amies.\nWe're going north.\tNous nous dirigeons vers le nord.\nWe're going north.\tNous nous dirigeons au nord.\nWe're going south.\tNous nous dirigeons vers le sud.\nWe're going south.\tNous nous dirigeons au sud.\nWe're handling it.\tNous sommes en train de nous en occuper.\nWe're handling it.\tNous sommes en train de nous en charger.\nWe're interfering.\tNous dérangeons.\nWe're journalists.\tNous sommes journalistes.\nWe're just scared.\tNous avons juste peur.\nWe're leaving now.\tNous partons maintenant.\nWe're like family.\tNous formons en quelque sorte une famille.\nWe're married now.\tNous sommes désormais mariés.\nWe're married now.\tNous sommes désormais mariées.\nWe're not arguing.\tNous ne sommes pas en train de nous disputer.\nWe're not cowards.\tNous ne sommes pas des lâches.\nWe're not dressed.\tNous ne sommes pas habillés.\nWe're not dressed.\tNous ne sommes pas habillées.\nWe're not friends.\tNous ne sommes pas amis.\nWe're not invited.\tNous ne sommes pas invités.\nWe're not invited.\tNous ne sommes pas invitées.\nWe're not kidding.\tNous ne plaisantons pas.\nWe're not killers.\tNous ne sommes pas des tueurs.\nWe're not killers.\tNous ne sommes pas des tueuses.\nWe're not leaving.\tNous ne partons pas.\nWe're not looking.\tNous sommes pas en train de regarder.\nWe're not married.\tNous ne sommes pas mariés.\nWe're not married.\tNous ne sommes pas mariées.\nWe're not perfect.\tNous ne sommes pas parfaits.\nWe're not perfect.\tNous ne sommes pas parfaites.\nWe're not related.\tNous ne sommes pas apparentés.\nWe're not related.\tNous ne sommes pas apparentées.\nWe're not serious.\tNous ne sommes pas sérieux.\nWe're not serious.\tNous ne sommes pas sérieuses.\nWe're not smiling.\tNous ne sommes pas en train de sourire.\nWe're not so sure.\tNous n'en sommes pas si sûrs.\nWe're not so sure.\tNous n'en sommes pas si sûres.\nWe're not staying.\tNous ne restons pas.\nWe're not welcome.\tNous ne sommes pas les bienvenus.\nWe're not welcome.\tNous ne sommes pas les bienvenues.\nWe're old friends.\tNous sommes de vieux amis.\nWe're old friends.\tNous sommes vieux amis.\nWe're on schedule.\tOn est dans les clous.\nWe're on schedule.\tNous sommes dans les temps.\nWe're out of ammo.\tNous sommes à court de munitions.\nWe're out of beer.\tNous sommes à court de bière.\nWe're out of milk.\tNous sommes à court de lait.\nWe're out of time.\tOn n'a plus le temps.\nWe're out of wine.\tNous n'avons plus de vin.\nWe're persevering.\tNous persévérons.\nWe're pulling out.\tNous nous retirons.\nWe're quite alone.\tNous sommes tout à fait seuls.\nWe're quite alone.\tNous sommes assez seuls.\nWe're quite alone.\tNous sommes tout à fait seules.\nWe're quite alone.\tNous sommes assez seules.\nWe're quite drunk.\tOn est pas mal bourrés.\nWe're quite tired.\tNous sommes assez fatigués.\nWe're ready to go.\tNous sommes prêtes à partir.\nWe're ready to go.\tNous sommes prêts à y aller.\nWe're ready to go.\tNous sommes prêtes à y aller.\nWe're really good.\tNous sommes vraiment bons.\nWe're really good.\tNous sommes vraiment bonnes.\nWe're really late.\tNous sommes très en retard.\nWe're resourceful.\tNous sommes pleins de ressources.\nWe're still alive.\tNous sommes toujours en vie.\nWe're taking over.\tNous prenons le contrôle.\nWe're taking over.\tNous prenons l'ascendant.\nWe're taking over.\tNous rejouons.\nWe're the problem.\tNous sommes le problème.\nWe're trustworthy.\tNous sommes dignes de confiance.\nWe've all done it.\tNous l'avons tous fait.\nWe've all seen it.\tNous l'avons tous vu.\nWe've all seen it.\tNous l'avons tous vue.\nWe've all seen it.\tNous l'avons toutes vu.\nWe've all seen it.\tNous l'avons toutes vue.\nWe've already met.\tNous nous sommes déjà rencontrés.\nWe've already met.\tNous nous sommes déjà rencontrées.\nWe've been warned.\tOn nous a avertis.\nWe've been warned.\tOn nous a averties.\nWe've been warned.\tNous avons été avertis.\nWe've been warned.\tNous avons été averties.\nWe've been warned.\tNous avons été prévenus.\nWe've been warned.\tNous avons été prévenues.\nWe've been warned.\tOn nous a prévenus.\nWe've been warned.\tOn nous a prévenues.\nWe've done it all.\tNous l'avons entièrement fait.\nWe've got company.\tNous avons de la compagnie.\nWear warm clothes.\tPortez des vêtements chauds.\nWelcome to Boston.\tBienvenue à Boston.\nWere you drinking?\tÉtais-tu en train de boire ?\nWere you drinking?\tÉtiez-vous en train de boire ?\nWhat a clever dog!\tQue ce chien est malin !\nWhat a fool I was!\tQuel idiot j'ai été !\nWhat a great idea!\tQuelle idée brillante !\nWhat a great idea!\tQuelle idée splendide !\nWhat a great idea!\tQuelle excellente idée !\nWhat a lovely day!\tQuelle journée délicieuse.\nWhat a lovely day!\tQuelle belle journée !\nWhat a revelation!\tQuelle révélation !\nWhat a smart idea!\tQuelle idée judicieuse !\nWhat a weird idea!\tQuelle idée bizarre !\nWhat are we doing?\tQue sommes-nous en train de faire ?\nWhat did she mean?\tQue voulait-elle dire ?\nWhat did you find?\tQu'as-tu trouvé ?\nWhat did you find?\tQu'avez-vous trouvé ?\nWhat did you hear?\tQu'as-tu entendu ?\nWhat did you hear?\tQu'avez-vous entendu ?\nWhat did you hide?\tQu'as-tu caché ?\nWhat did you make?\tQu'as-tu fait ?\nWhat did you make?\tQu'as-tu confectionné ?\nWhat did you make?\tQu'avez-vous confectionné ?\nWhat do we do now?\tQue faisons-nous maintenant ?\nWhat do we do now?\tQue faisons-nous désormais ?\nWhat do you think?\tQu'en penses-tu ?\nWhat does he want?\tQue veut-il ?\nWhat does it mean?\tQu'est-ce que ça veut dire ?\nWhat does she say?\tQue dit-elle ?\nWhat gave it away?\tQu'est-ce qui l'a révélé ?\nWhat gave it away?\tComment ça s'est su ?\nWhat gave me away?\tQu'est-ce qui m'a trahi ?\nWhat happens next?\tEt après ?\nWhat happens next?\tQu'arrive-t-il ensuite ?\nWhat happens next?\tQue se passe-t-il ensuite ?\nWhat have we done?\tQu'avons-nous fait ?\nWhat is happening?\tQu'est-ce qui se passe ?\nWhat is happiness?\tQu'est-ce que le bonheur ?\nWhat is happiness?\tQu'est le bonheur ?\nWhat is he hiding?\tQu'est-ce qu'il dissimule ?\nWhat is it you do?\tQue fais-tu ?\nWhat is it you do?\tQue faites-vous ?\nWhat is it you do?\tC'est quoi, ce que tu fais ?\nWhat is it you do?\tC'est quoi, ce que vous faites ?\nWhat is the delay?\tQuel en est le délai ?\nWhat is the price?\tC'est à quel prix ?\nWhat is your name?\tComment est-ce que tu t'appelles ?\nWhat is your name?\tComment tu t'appelles ?\nWhat is your name?\tComment vous appelez-vous ?\nWhat is your name?\tQuel est votre nom ?\nWhat is your name?\tQuel est ton nom ?\nWhat should I buy?\tQu'est-ce que je devrais acheter ?\nWhat should I eat?\tQue devrais-je manger ?\nWhat was I saying?\tQue disais-je ?\nWhat was he up to?\tQuelle était son intention ?\nWhat was she like?\tComment était-elle ?\nWhat would you do?\tQue ferais-tu ?\nWhat would you do?\tQue feriez-vous ?\nWhat're you doing?\tQue fais-tu ?\nWhat're you doing?\tQue faites-vous ?\nWhat're you doing?\tQu'es-tu en train de faire ?\nWhat're you doing?\tQu'es-tu en train de faire ?\nWhat're you doing?\tQu'êtes-vous en train de faire ?\nWhat's in the bag?\tQu'y a-t-il dans le sac ?\nWhat's in the bag?\tQu'est-ce qu'il y a dans le sac ?\nWhat's that stain?\tQuelle est cette tache ?\nWhat's that stain?\tQu'est cette tache ?\nWhat's that stain?\tQu'est-ce que c'est que cette tache ?\nWhat's that stuff?\tQu'est-ce que c'est que ce truc ?\nWhat's the matter?\tQuel est le problème ?\nWhat's the matter?\tDe quoi s'agit-il ?\nWhat's the number?\tQuel est le numéro ?\nWhat's the reason?\tQuelle est la raison ?\nWhat's the secret?\tQuel est le secret ?\nWhat's the skinny?\tVide ton sac !\nWhat's the target?\tQuelle est la cible ?\nWhat's this smell?\tQuelle est cette odeur ?\nWhat's this sound?\tQu'est ce bruit ?\nWhat's your hobby?\tQuel est votre passe-temps ?\nWhat's your hobby?\tQuel est ton passe-temps ?\nWhat's your major?\tQuelle est ta spécialité ?\nWhat's your major?\tQuelle est votre spécialité ?\nWhen are you busy?\tQuand es-tu occupé ?\nWhen did you come?\tQuand êtes-vous venus ?\nWhen did you come?\tQuand es-tu venu ?\nWhen do we arrive?\tDans combien de temps arrivons-nous ?\nWhen do you study?\tQuand étudiez-vous ?\nWhen does he come?\tQuand vient-il?\nWhen does it open?\tQuand ouvre-t-il ?\nWhen does it open?\tQuand est-ce que ça ouvre ?\nWhen is the party?\tQuand la fête a-t-elle lieu ?\nWhen was she born?\tQuand est-elle née ?\nWhere are you now?\tOù êtes-vous maintenant ?\nWhere can we meet?\tOù pouvons-nous nous rencontrer ?\nWhere can we park?\tOù pouvons-nous nous garer ?\nWhere could he be?\tOù pourrait-il se trouver ?\nWhere did they go?\tOù sont-ils passés ?\nWhere did they go?\tOù sont-ils allés ?\nWhere did they go?\tOù sont-ils partis ?\nWhere do we start?\tOù commençons-nous ?\nWhere do you live?\tOù habites-tu ?\nWhere do you live?\tOù vis-tu ?\nWhere do you live?\tOù vivez-vous ?\nWhere do you live?\tOù habitez-vous ?\nWhere do you live?\tTu habites où ?\nWhere do you live?\tVous habitez où ?\nWhere do you live?\tT'as où les vaches ?\nWhere do you park?\tOù te gares-tu ?\nWhere do you park?\tOù vous garez-vous ?\nWhere do you work?\tOù travailles-tu ?\nWhere do you work?\tOù travaillez-vous ?\nWhere is the book?\tOù est le livre ?\nWhere is the exit?\tOù est la sortie ?\nWhere is the pain?\tOù se situe la douleur ?\nWhere is your cap?\tOù est ta casquette ?\nWhere is your dog?\tOù est ton chien ?\nWhere is your dog?\tOù est votre chien ?\nWhere is your dog?\tOù est ton chien ?\nWhere shall we go?\tOù devrions-nous aller ?\nWhere shall we go?\tOù irons-nous ?\nWhere will we eat?\tOù allons-nous manger ?\nWhere will you be?\tOù seras-tu ?\nWhere will you be?\tOù serez-vous ?\nWhere will you go?\tOù irez-vous ?\nWhere's everybody?\tOù est tout le monde ?\nWhere's everybody?\tOù sont-ils tous ?\nWhere's my driver?\tOù est mon chauffeur ?\nWhere's my mother?\tOù est ma mère ?\nWhere's our stuff?\tOù sont nos affaires ?\nWhere's the catch?\tOù est l'arnaque ?\nWhere's the catch?\tOù est le truc ?\nWhere's the catch?\tOù sont les prises ?\nWhere's the catch?\tOù se trouve le loquet ?\nWhere's the catch?\tQu'est-ce qu'il y a à piger ?\nWhere's the knife?\tOù est le couteau ?\nWhere's the money?\tOù est l'argent ?\nWhere's your coat?\tOù est ton manteau ?\nWhere've you been?\tOù as-tu été ?\nWhere've you been?\tOù avez-vous été ?\nWhich is the best?\tLequel est le meilleur?\nWhich is your pen?\tLequel est ton stylo ?\nWhich is your pen?\tLequel est votre stylo ?\nWhich one is mine?\tLequel est le mien ?\nWhich tooth hurts?\tQuelle est la dent qui fait mal ?\nWho ate the bread?\tQui a mangé le pain ?\nWho broke the cup?\tQui a cassé la tasse?\nWho can blame you?\tQui peut te blâmer ?\nWho can blame you?\tQui peut vous blâmer ?\nWho can you trust?\tÀ qui se fier ?\nWho gave you this?\tQui t'a donné ça ?\nWho gave you this?\tQui vous a donné ça ?\nWho is that woman?\tQui est cette femme ?\nWho is this woman?\tQui est cette femme ?\nWho made the doll?\tQui a fabriqué la poupée ?\nWho made this box?\tQui a fait cette boîte ?\nWho made this pie?\tQui a fait cette tarte ?\nWho made this pie?\tQui a fait cette tourte ?\nWho needs a drink?\tÀ qui faut-il un verre ?\nWho needs a drink?\tÀ qui faut-il une boisson ?\nWho says Tom knew?\tQui dit que Tom savait ?\nWho should I call?\tQui devrais-je appeler ?\nWho wants a drink?\tQui veut une boisson ?\nWho's on the team?\tQui fait partie de l'équipe ?\nWho's your father?\tQui est votre père ?\nWho's your father?\tQui est ton père ?\nWho's your father?\tLequel est ton père ?\nWho's your father?\tLequel est votre père ?\nWhose bed is that?\tÀ qui est ce lit ?\nWhose car is that?\tÀ qui est cette voiture ?\nWhose car is this?\tÀ qui est cette voiture ?\nWhose clock is it?\tÀ qui est cette horloge ?\nWhose fault is it?\tÀ qui la faute ?\nWhose fault is it?\tDe qui est la faute ?\nWhose is this bag?\tÀ qui est le sac ?\nWhose son are you?\tDe qui êtes-vous le fils ?\nWhose son are you?\tDe qui es-tu le fils ?\nWhose son are you?\tTu es le fils de qui ?\nWhose son are you?\tVous êtes le fils de qui ?\nWhy all the drama?\tPourquoi tout ce drame ?\nWhy am I so tired?\tPourquoi suis-je si fatiguée ?\nWhy are they here?\tPourquoi sont-ils ici ?\nWhy are they here?\tPourquoi sont-elles ici ?\nWhy are you alone?\tPourquoi es-tu seul ?\nWhy are you alone?\tPourquoi es-tu seule ?\nWhy are you alone?\tPourquoi êtes-vous seul ?\nWhy are you alone?\tPourquoi êtes-vous seule ?\nWhy are you alone?\tPourquoi êtes-vous seuls ?\nWhy are you alone?\tPourquoi êtes-vous seules ?\nWhy are you alone?\tPourquoi es-tu seul ?\nWhy are you alone?\tPourquoi es-tu seule ?\nWhy are you alone?\tPourquoi êtes-vous seul ?\nWhy are you alone?\tPourquoi êtes-vous seule ?\nWhy are you alone?\tPourquoi êtes-vous seuls ?\nWhy are you alone?\tPourquoi êtes-vous seules ?\nWhy are you angry?\tPourquoi es-tu en colère ?\nWhy are you lying?\tPourquoi mens-tu ?\nWhy are you lying?\tPourquoi mentez-vous ?\nWhy did I do that?\tPourquoi ai-je fait cela ?\nWhy did I do this?\tPourquoi ai-je fait ça ?\nWhy did I do this?\tPourquoi l'ai-je fait ?\nWhy did you do it?\tPourquoi l'as-tu fait ?\nWhy did you do it?\tPourquoi l'avez-vous fait ?\nWhy is snow white?\tPourquoi la neige est-elle blanche ?\nWhy must we do it?\tPourquoi devons-nous le faire ?\nWhy not just quit?\tPourquoi ne pas simplement démissionner ?\nWhy not just quit?\tPourquoi ne pas simplement arrêter ?\nWhy not just quit?\tPourquoi ne pas simplement cesser ?\nWhy not just stay?\tPourquoi ne pas simplement rester ?\nWhy not start now?\tPourquoi ne pas commencer maintenant ?\nWhy not try it on?\tPourquoi ne pas l'essayer ?\nWhy should I wait?\tPourquoi devrais-je attendre?\nWhy take the risk?\tPourquoi encourir le risque ?\nWhy was Tom fired?\tPourquoi Tom a-t-il été viré ?\nWhy would I laugh?\tPourquoi rirais-je ?\nWhy would she lie?\tPourquoi mentirait-elle ?\nWill Tom be ready?\tTom sera-t-il prêt ?\nWill you be going?\tIrez-vous ?\nWill you be going?\tIras-tu ?\nWill you go there?\tT'y rendras-tu ?\nWill you pay cash?\tPayerez-vous en liquide ?\nWill you pay cash?\tPayeras-tu en liquide ?\nWood burns easily.\tLe bois brûle facilement.\nWoods burn easily.\tLes bois brûlent facilement.\nWould you do that?\tLe ferais-tu ?\nWould you drop it?\tVoudrais-tu bien laisser tomber ?\nWow! That's cheap!\tWaou ! C'est bon marché !\nWow! That's cheap!\tWaou ! C'est pas cher !\nYes. That's right.\tOui. C'est exact.\nYou are a bit fat.\tTu es un peu gras.\nYou are a student.\tTu es un étudiant.\nYou are a student.\tTu es une étudiante.\nYou are a student.\tVous êtes un étudiant.\nYou are a student.\tVous êtes une étudiante.\nYou are a teacher.\tTu es enseignant.\nYou are a teacher.\tTu es enseignante.\nYou are actresses.\tVous êtes des actrices.\nYou are beautiful.\tTu es beau.\nYou are beautiful.\tTu es belle.\nYou are beautiful.\tVous êtes beau.\nYou are beautiful.\tVous êtes belle.\nYou are beautiful.\tVous êtes beaux.\nYou are beautiful.\tVous êtes belles.\nYou are hilarious.\tQue vous êtes drôle.\nYou are hilarious.\tVous me faites mourir de rire.\nYou are important.\tTu es important.\nYou are important.\tVous êtes important.\nYou are important.\tVous êtes importants.\nYou are important.\tVous êtes importantes.\nYou are important.\tTu es importante.\nYou are important.\tVous êtes importante.\nYou are in my way.\tTu es sur mon chemin.\nYou are in my way.\tVous êtes sur mon chemin.\nYou are my father.\tTu es mon père.\nYou are my friend.\tTu es mon amie.\nYou are so stupid.\tTu es tellement idiot !\nYou are so stupid.\tTu es tellement idiote !\nYou are so stupid.\tVous êtes tellement idiot !\nYou are so stupid.\tVous êtes tellement idiote !\nYou are so stupid.\tVous êtes tellement idiots !\nYou are so stupid.\tVous êtes tellement idiotes !\nYou are very nice.\tTu es très sympa.\nYou are very rich.\tTu es très riche.\nYou are very rich.\tVous êtes très riche.\nYou are very rich.\tVous êtes très riches.\nYou are very rich.\tVous êtes fort riche.\nYou are very rich.\tVous êtes fort riches.\nYou bet I'm angry.\tTu parles que je suis fâché.\nYou broke my nose.\tTu m'as pété le nez.\nYou broke my nose.\tVous m'avez cassé le nez.\nYou came too late.\tTu es venue trop tard.\nYou came too late.\tTu es venu trop tard.\nYou came too late.\tVous êtes venu trop tard.\nYou came too late.\tVous êtes venue trop tard.\nYou came too late.\tVous êtes venus trop tard.\nYou came too late.\tVous êtes venues trop tard.\nYou can come home.\tTu peux venir à la maison.\nYou can come home.\tVous pouvez venir à la maison.\nYou can have both.\tVous pouvez avoir les deux.\nYou can have both.\tTu peux avoir les deux.\nYou can trust him.\tTu peux lui faire confiance.\nYou can trust him.\tTu peux t'y fier.\nYou can wait here.\tTu peux attendre ici.\nYou can wait here.\tVous pouvez attendre ici.\nYou can't beat me.\tTu ne peux pas me battre.\nYou can't deny it.\tVous ne pouvez pas nier cela.\nYou can't do that.\tTu ne peux pas faire ça.\nYou can't give up.\tTu ne peux pas arrêter.\nYou can't give up.\tVous ne pouvez pas arrêter.\nYou can't give up.\tTu ne peux pas admettre ta défaite.\nYou can't give up.\tVous ne pouvez pas admettre votre défaite.\nYou can't help me.\tTu ne peux pas m'aider.\nYou can't help me.\tVous ne pouvez pas m'aider.\nYou can't just go.\tTu ne peux pas simplement t'en aller comme ça.\nYou can't just go.\tVous ne pouvez pas simplement vous en aller comme ça.\nYou can't miss it.\tTu ne peux pas le manquer.\nYou can't miss it.\tVous ne pouvez pas le manquer.\nYou can't miss it.\tTu ne peux pas le louper.\nYou can't save me.\tTu ne peux pas me sauver.\nYou can't save me.\tVous ne pouvez pas me sauver.\nYou could help me.\tTu pourrais m'aider.\nYou could've died.\tTu aurais pu mourir.\nYou could've died.\tVous auriez pu mourir.\nYou did well, Tom.\tTu as bien fait, Tom.\nYou did well, Tom.\tVous avez bien fait, Tom.\nYou did your best.\tTu as fais de ton mieux.\nYou did your part.\tVous avez fait votre part.\nYou did your part.\tTu as fait ta part.\nYou disappoint me.\tTu me déçois.\nYou got here fast.\tTu es arrivé vite.\nYou guessed right.\tTu as bien deviné.\nYou guessed right.\tVous avez bien deviné.\nYou had better go.\tVous feriez mieux de partir.\nYou had better go.\tTu ferais mieux d'y aller.\nYou had better go.\tVous feriez mieux d'y aller.\nYou had better go.\tTu ferais mieux de partir.\nYou had me fooled.\tTu m'as eu.\nYou had no choice.\tTu n'avais pas le choix.\nYou had no choice.\tVous n'aviez pas le choix.\nYou have no fever.\tTu n'as pas de fièvre.\nYou have no fever.\tVous n'avez pas de fièvre.\nYou have no heart.\tTu n'as pas de cœur.\nYou have no heart.\tVous n'avez pas de cœur.\nYou have no proof.\tTu n'as aucune preuve.\nYou have no proof.\tVous n'avez aucune preuve.\nYou have no taste.\tTu n'as aucun goût.\nYou have no taste.\tVous n'avez aucun goût.\nYou have one hour.\tTu as une heure.\nYou have one hour.\tVous avez une heure.\nYou have to fight.\tIl faut que tu te battes !\nYou have to leave.\tTu dois partir.\nYou have to leave.\tVous devez partir.\nYou know too much.\tVous en savez trop.\nYou know too much.\tTu en sais trop.\nYou learn quickly.\tVous apprenez rapidement.\nYou learn quickly.\tTu apprends rapidement.\nYou like everyone.\tTu apprécies tout le monde.\nYou like everyone.\tVous appréciez tout le monde.\nYou like everyone.\tVous aimez bien tout le monde.\nYou like everyone.\tTu aimes bien tout le monde.\nYou look European.\tTu as l'air européen.\nYou look European.\tTu as l'air européenne.\nYou look European.\tVous avez l'air européen.\nYou look European.\tVous avez l'air européenne.\nYou look Japanese.\tTu as l'air japonais.\nYou look Japanese.\tTu as l'air japonaise.\nYou look Japanese.\tVous avez l'air japonais.\nYou look Japanese.\tVous avez l'air japonaise.\nYou look Japanese.\tVous avez l'air japonaises.\nYou look fabulous.\tTu as l'air resplendissant.\nYou look fabulous.\tTu as l'air resplendissante.\nYou look fabulous.\tVous avez l'air resplendissant.\nYou look fabulous.\tVous avez l'air resplendissante.\nYou look fabulous.\tVous avez l'air resplendissants.\nYou look fabulous.\tVous avez l'air resplendissantes.\nYou look familiar.\tTu me dis quelque-chose.\nYou look familiar.\tVous me dites quelque chose.\nYou look handsome.\tTu as l'air beau.\nYou look terrible.\tTu as une sale tête.\nYou look terrific.\tTu as l'air terrible.\nYou look terrific.\tTu as l'air super.\nYou look terrific.\tVous avez l'air terrible.\nYou look terrific.\tVous avez l'air super.\nYou made an error.\tTu as fait une erreur.\nYou made me proud.\tTu m'as rendu fier.\nYou make me laugh.\tTu me fais rire.\nYou may be needed.\tOn pourrait avoir besoin de toi.\nYou may enter now.\tVous pouvez entrer, maintenant.\nYou may go in now.\tTu peux entrer, maintenant.\nYou may go in now.\tVous pouvez entrer, maintenant.\nYou may need this.\tTu pourrais avoir besoin de ceci.\nYou may park here.\tTu peux te garer ici.\nYou may park here.\tVous pouvez vous garer ici.\nYou missed a spot.\tTu as loupé une tache.\nYou missed a spot.\tC'est toi qui as loupé une tache.\nYou must help her.\tVous devez l'aider.\nYou must hurry up.\tTu dois te dépêcher.\nYou must stop him.\tVous devez l'arrêter.\nYou must stop him.\tTu dois l'arrêter.\nYou must stop him.\tTu dois le retenir.\nYou need to hurry.\tTu dois te dépêcher.\nYou need to leave.\tIl faut que tu t'en ailles.\nYou need to relax.\tTu as besoin de te détendre.\nYou need to relax.\tVous devez vous détendre.\nYou need to sleep.\tTu as besoin de dormir.\nYou need to sleep.\tVous avez besoin de dormir.\nYou owe me a beer.\tTu me dois une bière.\nYou read too much.\tVous lisez trop.\nYou read too much.\tTu lis trop.\nYou run very fast.\tTu cours très rapidement.\nYou run very fast.\tVous courez très rapidement.\nYou saved my life.\tTu m'as sauvé la vie.\nYou should go now.\tVous devriez y aller maintenant.\nYou should go now.\tTu devrais y aller maintenant.\nYou should go now.\tVous devriez partir, maintenant.\nYou should go now.\tTu devrais partir, maintenant.\nYou should try it.\tTu devrais essayer.\nYou talk too much.\tTu parles trop.\nYou talk too much.\tVous parlez trop.\nYou two may leave.\tVous deux, vous pouvez partir.\nYou understand me.\tTu me comprends.\nYou won't be shot.\tOn ne te tirera pas dessus.\nYou won't be shot.\tTu ne seras pas fusillé.\nYou won't be shot.\tOn ne vous tirera pas dessus.\nYou won't be shot.\tTu ne seras pas fusillée.\nYou won't be shot.\tVous ne serez pas fusillé.\nYou won't be shot.\tVous ne serez pas fusillée.\nYou won't be shot.\tVous ne serez pas fusillés.\nYou won't be shot.\tVous ne serez pas fusillées.\nYou won't need it.\tTu n'en auras pas besoin.\nYou won't need it.\tVous n'en aurez pas besoin.\nYou won't need me.\tTu n'auras pas besoin de moi.\nYou won't need me.\tVous n'aurez pas besoin de moi.\nYou won't succeed.\tTu ne réussiras pas.\nYou won't succeed.\tVous ne réussirez pas.\nYou work too hard.\tTu travailles trop dur.\nYou work too hard.\tVous travaillez trop dur.\nYou work too much.\tTu travailles trop.\nYou'll find a job.\tTu trouveras du travail.\nYou're a bad liar.\tTu mens mal.\nYou're a bad liar.\tVous mentez mal.\nYou're a prisoner.\tTu es un prisonnier.\nYou're a prisoner.\tVous êtes un prisonnier.\nYou're aggressive.\tTu es agressif.\nYou're aggressive.\tTu es agressive.\nYou're all insane.\tVous êtes tous malades.\nYou're all insane.\tVous êtes toutes malades.\nYou're articulate.\tTu t'exprimes bien.\nYou're articulate.\tVous vous exprimez bien.\nYou're back again.\tTu es à nouveau de retour.\nYou're back again.\tVous êtes à nouveau de retour.\nYou're courageous.\tTu es courageux.\nYou're courageous.\tTu es courageuse.\nYou're disgusting.\tTu es dégoûtant.\nYou're disgusting.\tTu es dégoûtante.\nYou're disgusting.\tVous êtes dégoûtant.\nYou're disgusting.\tVous êtes dégoûtante.\nYou're disgusting.\tVous êtes dégoûtants.\nYou're disgusting.\tVous êtes dégoûtantes.\nYou're free to go.\tT'es libre d'y aller.\nYou're free to go.\tT'es libre de t'en aller.\nYou're free to go.\tVous êtes libre d'y aller.\nYou're free to go.\tVous êtes libres d'y aller.\nYou're free to go.\tVous êtes libre de vous en aller.\nYou're free to go.\tVous êtes libres de vous en aller.\nYou're half right.\tVous avez à moitié raison.\nYou're half right.\tTu as à moitié raison.\nYou're here early.\tTu es là tôt.\nYou're here early.\tTu viens tôt.\nYou're hurting me.\tTu me fais mal !\nYou're hurting me.\tVous me faites mal !\nYou're incredible.\tTu es incroyable.\nYou're incredible.\tVous êtes incroyable.\nYou're incredible.\tVous êtes incroyables.\nYou're just a boy.\tTu n'es qu'un enfant.\nYou're just a kid.\tTu n'es qu'un enfant.\nYou're just tired.\tTu es juste fatigué.\nYou're killing me.\tTu me tues.\nYou're killing me.\tVous me tuez.\nYou're not normal.\tVous n'êtes pas normal.\nYou're not normal.\tVous n'êtes pas normale.\nYou're not normal.\tVous n'êtes pas normaux.\nYou're not normal.\tVous n'êtes pas normales.\nYou're not normal.\tTu n'es pas normal.\nYou're not normal.\tTu n'es pas normale.\nYou're overworked.\tTu es surmené.\nYou're overworked.\tTu es surmenée.\nYou're overworked.\tVous êtes surmenée.\nYou're overworked.\tVous êtes surmenées.\nYou're overworked.\tVous êtes surmené.\nYou're overworked.\tVous êtes surmenés.\nYou're productive.\tTu es productif.\nYou're productive.\tTu es productive.\nYou're productive.\tVous êtes productif.\nYou're productive.\tVous êtes productifs.\nYou're productive.\tVous êtes productive.\nYou're productive.\tVous êtes productives.\nYou're remarkable.\tTu es remarquable.\nYou're scaring me.\tTu me fais peur.\nYou're surrounded.\tTu es cerné.\nYou're surrounded.\tVous êtes cernés.\nYou're surrounded.\tVous êtes cernées.\nYou're surrounded.\tVous êtes cerné.\nYou're surrounded.\tVous êtes cernée.\nYou're surrounded.\tTu es cernée.\nYou're telling me.\tC'est toi qui me le dis.\nYou're the leader.\tVous êtes le chef.\nYou're the leader.\tTu es le chef.\nYou're the leader.\tTu es la chef.\nYou're the leader.\tVous êtes la chef.\nYou're the leader.\tC'est toi le chef.\nYou're the leader.\tC'est toi la chef.\nYou're the leader.\tC'est vous le chef.\nYou're the leader.\tC'est vous la chef.\nYou're the master.\tVous êtes le maître.\nYou're the master.\tVous êtes la maîtresse.\nYou're the master.\tTu es le maître.\nYou're the master.\tTu es la maîtresse.\nYou're the master.\tC'est toi le maître.\nYou're the master.\tC'est toi la maîtresse.\nYou're the master.\tC'est vous le maître.\nYou're the master.\tC'est vous la maîtresse.\nYou're the oldest.\tVous êtes le plus vieux.\nYou're the oldest.\tVous êtes le doyen.\nYou're the oldest.\tVous êtes la plus vieille.\nYou're the oldest.\tVous êtes la doyenne.\nYou're the oldest.\tTu es le doyen.\nYou're the oldest.\tTu es la doyenne.\nYou're the oldest.\tTu es la plus vieille.\nYou're the oldest.\tTu es le plus vieux.\nYou're the oldest.\tC'est toi le plus vieux.\nYou're the oldest.\tC'est toi la plus vieille.\nYou're the oldest.\tC'est vous la plus vieille.\nYou're the oldest.\tC'est toi la doyenne.\nYou're the oldest.\tC'est vous le plus vieux.\nYou're the oldest.\tC'est toi le doyen.\nYou're the oldest.\tC'est vous le doyen.\nYou're the oldest.\tC'est vous la doyenne.\nYou're the oldest.\tC'est vous l'aîné.\nYou're the oldest.\tC'est toi l'aîné.\nYou're the oldest.\tC'est vous l'aînée.\nYou're the oldest.\tC'est toi l'aînée.\nYou're the oldest.\tVous êtes l'aîné.\nYou're the oldest.\tVous êtes l'aînée.\nYou're the oldest.\tTu es l'aîné.\nYou're the oldest.\tTu es l'aînée.\nYou're the owners.\tVous êtes les propriétaires.\nYou're the owners.\tC'est vous les propriétaires.\nYou're too polite.\tTu es trop poli.\nYou're too polite.\tTu es trop polie.\nYou're too polite.\tVous êtes trop poli.\nYou're too polite.\tVous êtes trop polie.\nYou're too polite.\tVous êtes trop polis.\nYou're too polite.\tVous êtes trop polies.\nYou're too skinny.\tVous êtes trop maigrichon.\nYou're too skinny.\tVous êtes trop maigre.\nYou're too skinny.\tVous êtes trop maigrichonne.\nYou're too skinny.\tVous êtes trop maigrichons.\nYou're too skinny.\tVous êtes trop maigrichonnes.\nYou're too skinny.\tVous êtes trop maigres.\nYou're too skinny.\tTu es trop maigre.\nYou're too skinny.\tTu es trop maigrichon.\nYou're too skinny.\tTu es trop maigrichonne.\nYou're very angry.\tVous êtes fort en colère.\nYou're very angry.\tTu es fort en colère.\nYou're very angry.\tVous êtes très en colère.\nYou're very angry.\tTu es très en colère.\nYou're very brave.\tTu es très courageux.\nYou're very brave.\tTu es très brave.\nYou're very brave.\tVous êtes très courageux.\nYou're very brave.\tVous êtes très courageuse.\nYou're very brave.\tVous êtes très courageuses.\nYou're very brave.\tVous êtes fort brave.\nYou're very brave.\tVous êtes très brave.\nYou're very brave.\tVous êtes fort braves.\nYou're very brave.\tVous êtes très braves.\nYou're very brave.\tTu es fort brave.\nYou're very brave.\tTu es fort courageux.\nYou're very brave.\tTu es très courageuse.\nYou're very brave.\tTu es fort courageuse.\nYou're very brave.\tVous êtes fort courageux.\nYou're very brave.\tVous êtes fort courageuse.\nYou're very brave.\tVous êtes fort courageuses.\nYou're very funny.\tTu es très drôle.\nYou're very funny.\tTu es fort drôle.\nYou're very funny.\tVous êtes très drôle.\nYou're very funny.\tVous êtes très drôles.\nYou're very funny.\tVous êtes fort drôle.\nYou're very funny.\tVous êtes fort drôles.\nYou're very funny.\tVous êtes très marrant.\nYou're very funny.\tVous êtes très marrante.\nYou're very funny.\tVous êtes très marrants.\nYou're very funny.\tVous êtes très marrantes.\nYou're very funny.\tTu es très marrant.\nYou're very funny.\tTu es très marrante.\nYou're very sharp.\tTu es très vif.\nYou're very sharp.\tTu es très vive.\nYou're very sharp.\tVous êtes très vif.\nYou're very sharp.\tVous êtes très vifs.\nYou're very sharp.\tVous êtes très vive.\nYou're very sharp.\tVous êtes très vives.\nYou're very smart.\tTu es très intelligent.\nYou're very smart.\tTu es très intelligente.\nYou're very smart.\tVous êtes très sages.\nYou're very timid.\tTu es très timide.\nYou're very timid.\tTu es fort timide.\nYou're very timid.\tVous êtes très timide.\nYou're very timid.\tVous êtes très timides.\nYou're very timid.\tVous êtes fort timide.\nYou're very timid.\tVous êtes fort timides.\nYou're very timid.\tVous êtes fort craintif.\nYou're very timid.\tVous êtes fort craintive.\nYou're very timid.\tVous êtes fort craintifs.\nYou're very timid.\tVous êtes fort craintives.\nYou're very timid.\tVous êtes très craintive.\nYou're very timid.\tVous êtes très craintif.\nYou're very timid.\tVous êtes très craintives.\nYou're very timid.\tVous êtes très craintifs.\nYou're very timid.\tTu es fort craintif.\nYou're very timid.\tTu es fort craintive.\nYou're very timid.\tTu es très craintif.\nYou're very timid.\tTu es très craintive.\nYou're very timid.\tTu es très peureux.\nYou're very timid.\tTu es très peureuse.\nYou're very timid.\tVous êtes très peureux.\nYou're very timid.\tVous êtes très peureuse.\nYou're very timid.\tVous êtes très peureuses.\nYou're very upset.\tTu es très contrarié.\nYou're very upset.\tTu es très contrariée.\nYou're very upset.\tTu es fort contrarié.\nYou're very upset.\tTu es fort contrariée.\nYou're very upset.\tVous êtes très contrarié.\nYou're very upset.\tVous êtes très contrariée.\nYou're very upset.\tVous êtes très contrariés.\nYou're very upset.\tVous êtes très contrariées.\nYou're very upset.\tVous êtes fort contrarié.\nYou're very upset.\tVous êtes fort contrariée.\nYou're very upset.\tVous êtes fort contrariés.\nYou're very upset.\tVous êtes fort contrariées.\nYou've been great.\tT'as été super !\nYou've been great.\tVous avez été super !\nYou've had enough.\tVous en avez eu assez.\nYou've had enough.\tTu en as eu assez.\nYour book is here.\tTon livre est ici.\nYour face is pale.\tTon visage est pâle.\nYour name, please.\tVotre nom, s'il vous plaît.\nYour time is over.\tTon temps est écoulé.\nYour time is over.\tTon temps est passé.\nA cat has two ears.\tUn chat a deux oreilles.\nA cat scratched me.\tUn chat m'a griffé.\nA child is missing.\tUn enfant manque.\nA child is missing.\tUn enfant est manquant.\nA child needs love.\tUn enfant a besoin d'amour.\nA guard is outside.\tUn garde se trouve à l'extérieur.\nA storm is brewing.\tUne tempête se prépare.\nAdmission was free.\tL'entrée était gratuite.\nAll my plants died.\tToutes mes plantes sont mortes.\nAll of us like her.\tNous l'aimons tous.\nAll of us stood up.\tNous nous sommes tous mis debout.\nAll of us stood up.\tNous nous sommes toutes mises debout.\nAm I bothering you?\tEst-ce que je te dérange ?\nAm I bothering you?\tEst-ce que je vous dérange ?\nAm I seeing things?\tAi-je des visions ?\nAnswer my question.\tRéponds à ma question !\nAnswer my question.\tRépondez à ma question !\nAnyhow let's begin.\tQuoi qu'il en soit commençons.\nAnyone can do that.\tN'importe qui peut faire ça.\nAre these for sale?\tSont-ils à vendre?\nAre they satisfied?\tSont-ils contents ?\nAre they satisfied?\tSont-elle contentes ?\nAre they satisfied?\tSont-ils contentés ?\nAre they satisfied?\tSont-elles contentées ?\nAre we ready to go?\tSommes-nous prêts à partir ?\nAre we ready to go?\tSommes-nous prêtes à partir ?\nAre we ready to go?\tSommes-nous prêts à y aller ?\nAre we ready to go?\tSommes-nous prêtes à y aller ?\nAre you a Buddhist?\tEs-tu bouddhiste ?\nAre you a criminal?\tEs-tu un criminel ?\nAre you a criminal?\tEs-tu une criminelle ?\nAre you a criminal?\tÊtes-vous un criminel ?\nAre you a criminal?\tÊtes-vous une criminelle ?\nAre you about done?\tAvez-vous bientôt fini ?\nAre you about done?\tAs-tu bientôt fini ?\nAre you about done?\tEn as-tu bientôt terminé ?\nAre you about done?\tEn as-tu bientôt fini ?\nAre you about done?\tEn avez-vous bientôt terminé ?\nAre you about done?\tEn avez-vous bientôt fini ?\nAre you both crazy?\tÊtes-vous tous deux fous ?\nAre you both crazy?\tÊtes-vous toutes deux folles ?\nAre you busy today?\tEs-tu occupé aujourd'hui ?\nAre you feeling OK?\tVous vous sentez bien ?\nAre you feeling OK?\tTu te sens bien ?\nAre you going, too?\tY vas-tu également ?\nAre you going, too?\tY allez-vous également ?\nAre you going, too?\tPars-tu aussi ?\nAre you going, too?\tPartez-vous aussi ?\nAre you here alone?\tEs-tu seul ici ?\nAre you here alone?\tÊtes-vous seul ici ?\nAre you here alone?\tÊtes-vous seule ici ?\nAre you here alone?\tÊtes-vous seuls ici ?\nAre you here alone?\tÊtes-vous seules ici ?\nAre you here alone?\tEs-tu seule ici ?\nAre you hungry now?\tAs-tu faim maintenant ?\nAre you in a hurry?\tEst-ce que vous êtes pressé ?\nAre you in a hurry?\tTu es pressé ?\nAre you in a hurry?\tÊtes-vous pressés ?\nAre you in trouble?\tAs-tu des problèmes ?\nAre you in trouble?\tÊtes-vous en difficulté ?\nAre you kidding me?\tTu plaisantes ?\nAre you kidding me?\tVous vous moquez de moi ?\nAre you on holiday?\tEs-tu en vacances ?\nAre you on holiday?\tÊtes-vous en vacances ?\nAre you productive?\tEs-tu productif ?\nAre you productive?\tEs-tu productive ?\nAre you productive?\tÊtes-vous productif ?\nAre you productive?\tÊtes-vous productifs ?\nAre you productive?\tÊtes-vous productive ?\nAre you productive?\tÊtes-vous productives ?\nAre you registered?\tÊtes-vous inscrit ?\nAre you registered?\tÊtes-vous inscrite ?\nAre you registered?\tEs-tu inscrit ?\nAre you registered?\tEs-tu inscrite ?\nAre you registered?\tÊtes-vous inscrits ?\nAre you sure of it?\tEn es-tu sûre ?\nAre you sure of it?\tEn êtes-vous sûr ?\nAre you sure of it?\tEn êtes-vous sûres ?\nAre you sure of it?\tEn êtes-vous sûre ?\nAre you sure of it?\tEn êtes-vous sûrs ?\nAren't you thirsty?\tN'avez-vous pas soif ?\nAren't you thirsty?\tN'as-tu pas soif ?\nAsk her for advice.\tDemande-lui conseil.\nAsk him for advice.\tDemande-lui conseil.\nAttendance is free.\tLa participation est gratuite.\nBetter him than me.\tPlutôt lui que moi.\nBoth girls laughed.\tLes deux filles ont ri.\nBoth girls laughed.\tLes deux rirent.\nBoys, be ambitious.\tGarçons, soyez ambitieux.\nBreakfast is ready.\tLe petit-déjeuner est prêt.\nBring me the flute.\tApporte-moi la flûte.\nBuy low, sell high.\tAchète bas, vends haut !\nBuy low, sell high.\tAchetez bas, vendez haut !\nCall me right back.\tRappelle-moi de suite !\nCall me right back.\tRappelez-moi de suite !\nCall off your dogs.\tRappelez vos chiens !\nCall off your dogs.\tRappelle tes chiens !\nCan I borrow yours?\tPuis-je emprunter le tien ?\nCan I count on you?\tPuis-je compter sur vous ?\nCan I count on you?\tPuis-je compter sur toi ?\nCan I get a pillow?\tPuis-je avoir un oreiller ?\nCan I go there now?\tEst-ce que je pourrais y aller maintenant ?\nCan I rent rackets?\tPuis-je louer des raquettes ?\nCan I say it aloud?\tPuis-je le dire tout haut ?\nCan I see that one?\tPuis-je voir celui-ci ?\nCan I sit with you?\tPuis-je m'asseoir avec toi ?\nCan I sit with you?\tPuis-je m'asseoir avec vous ?\nCan I speak to you?\tPuis-je te parler ?\nCan I speak to you?\tPuis-je vous parler ?\nCan I speak to you?\tEst-ce que je peux te parler ?\nCan I take a break?\tPuis-je faire une pause ?\nCan I use your pen?\tPuis-je faire usage de votre stylo ?\nCan I use your pen?\tPuis-je utiliser ton stylo ?\nCan anyone help me?\tQuiconque peut-il m'aider ?\nCan he do this job?\tPourrait-il accomplir ce travail ?\nCan we have a talk?\tEst-ce qu'on peut parler ?\nCan you believe it?\tPeux-tu le croire ?\nCan you believe it?\tArrives-tu à le croire ?\nCan you believe it?\tArrivez-vous à le croire ?\nCan you believe it?\tPouvez-vous le croire ?\nCan you forgive me?\tPeux-tu me pardonner ?\nCan you forgive me?\tPouvez-vous me pardonner ?\nCan you pick it up?\tPeux-tu le prendre ?\nCaution is advised.\tLa prudence est conseillée.\nChange is possible.\tLe changement est possible.\nCheck your pockets.\tVérifie tes poches !\nCheck your pockets.\tVérifiez vos poches !\nChildren need love.\tLes enfants ont besoin d'amour.\nChoose your weapon.\tChoisis ton arme.\nChoose your weapon.\tChoisissez votre arme.\nClean up that mess.\tNettoyez ce bazar.\nClean up that mess.\tNettoie ce bazar.\nCold water, please.\tDe l'eau froide, s'il vous plait.\nCome along with me.\tVenez avec moi, je vous prie.\nCome along with me.\tVeuillez me suivre.\nCome along with me.\tViens avec moi.\nCome along with us.\tVenez avec nous.\nCome along with us.\tViens avec nous !\nCome and sit by me.\tViens et assieds-toi à mon côté.\nCome back in a day.\tReviens demain !\nCome back in a day.\tRevenez demain !\nCome back tomorrow.\tReviens demain !\nCome back tomorrow.\tRevenez demain !\nCome into the room.\tEntre dans la pièce.\nCome into the room.\tEntrez dans la pièce.\nCome near the fire.\tApproche-toi du feu.\nCome on, try again.\tAllez, essaie encore.\nCount up to thirty.\tComptez jusqu'à trente.\nCount up to thirty.\tCompte jusqu'à trente.\nCrime does not pay.\tLe crime ne paye pas.\nDeath is permanent.\tLa mort, c'est permanent.\nDid I get it right?\tEst-ce que j'ai bien compris ?\nDid I get it right?\tAi-je bien capté ?\nDid I just do that?\tEst-ce que je viens de faire ça ?\nDid I mention that?\tL'ai-je mentionné ?\nDid I mention that?\tEn ai-je fait mention ?\nDid I say it wrong?\tL'ai-je dit de travers ?\nDid I say too much?\tEn ai-je trop dit ?\nDid I surprise you?\tVous ai-je surpris ?\nDid I surprise you?\tT'ai-je surpris ?\nDid anyone call me?\tQuiconque m'a-t-il appelé ?\nDid anyone hear me?\tQuelqu'un m'a-t-il entendu ?\nDid anyone hear me?\tQuiconque m'a-t-il entendu ?\nDid anyone miss me?\tAi-je manqué à quiconque ?\nDid anyone miss me?\tAi-je manqué à qui que ce soit ?\nDid she sleep well?\tA-t-elle bien dormi ?\nDid they live here?\tIls ont habité ici ?\nDid they live here?\tHabitaient-ils ici ?\nDid they live here?\tVivaient-ils ici ?\nDid you check this?\tAvez-vous vérifié ceci ?\nDid you check this?\tAs-tu vérifié ceci ?\nDid you enjoy that?\tCela t'a-t-il plu ?\nDid you enjoy that?\tCela t'a-t-il amusé ?\nDid you find a job?\tAs-tu trouvé du travail ?\nDid you invite him?\tL'as-tu invité ?\nDid you invite him?\tL'avez-vous invité ?\nDid you see anyone?\tAs-tu vu qui que ce soit ?\nDid you see anyone?\tAvez-vous vu qui que ce soit ?\nDid you sleep well?\tAs-tu bien dormi ?\nDid you sleep well?\tAs-tu bien dormi ?\nDid you sleep well?\tAvez-vous bien dormi ?\nDid you write that?\tAvez-vous écrit cela ?\nDid you write that?\tAs-tu écrit ça ?\nDidn't you hear me?\tNe m'as-tu pas entendu ?\nDidn't you hear me?\tNe m'avez-vous pas entendu ?\nDivide and conquer.\tDiviser pour régner.\nDo I have a choice?\tAi-je le choix ?\nDo I have it right?\tSuis-je dans le vrai ?\nDo I have to study?\tDois-je étudier ?\nDo I need a reason?\tAi-je besoin d'une raison ?\nDo as he tells you.\tFais comme il te dit.\nDo as he tells you.\tFaites comme il vous dit.\nDo come if you can!\tAllez, venez, si vous pouvez !\nDo not disturb her.\tNe la dérange pas.\nDo they have money?\tOnt-ils de l'argent ?\nDo they have money?\tOnt-elles de l'argent ?\nDo you accept Visa?\tVous prenez la VISA ?\nDo you believe him?\tVous fiez-vous à sa parole ?\nDo you believe him?\tEst-ce que tu le crois ?\nDo you believe him?\tEst-ce que tu le crois, lui ?\nDo you have a blog?\tAvez-vous un blog ?\nDo you have a blog?\tAs-tu un blog ?\nDo you have a coin?\tAvez-vous de la monnaie ?\nDo you have a copy?\tEn avez-vous une copie ?\nDo you have a copy?\tEn avez-vous un duplicata ?\nDo you have a copy?\tEn as-tu une copie ?\nDo you have a copy?\tEn avez-vous un exemplaire ?\nDo you have a copy?\tEn possèdes-tu un exemplaire ?\nDo you have a plan?\tAvez-vous un plan ?\nDo you have any ID?\tAvez-vous une carte d'identité ?\nDo you have enough?\tEn avez-vous assez ?\nDo you have enough?\tEn as-tu assez ?\nDo you like French?\tAimes-tu le français ?\nDo you like Moscow?\tAimes-tu Moscou ?\nDo you like Moscow?\tAimez-vous Moscou ?\nDo you like Wagner?\tAppréciez-vous Wagner ?\nDo you like Wagner?\tAimes-tu Wagner ?\nDo you like Wagner?\tApprécies-tu Wagner ?\nDo you like Wagner?\tAimez-vous Wagner ?\nDo you like apples?\tEst-ce que tu aimes les pommes ?\nDo you like apples?\tAimes-tu les pommes ?\nDo you like it all?\tApprécies-tu tout ça ?\nDo you like movies?\tAimes-tu les films ?\nDo you like robots?\tAimes-tu les robots ?\nDo you like robots?\tEst-ce que tu aimes les robots ?\nDo you like robots?\tEst-ce que vous aimez les robots ?\nDo you like robots?\tAimez-vous les robots ?\nDo you like salmon?\tAimes-tu le saumon ?\nDo you like salmon?\tEst-ce que tu aimes le saumon ?\nDo you like salmon?\tAimez-vous le saumon ?\nDo you like salmon?\tEst-ce que vous aimez le saumon ?\nDo you like school?\tAimes-tu l'école ?\nDo you like school?\tAimez-vous l'école ?\nDo you like sports?\tAimes-tu le sport ?\nDo you like summer?\tAimez-vous l'été ?\nDo you like summer?\tAimes-tu l'été ?\nDo you need a lift?\tT'as besoin d'un chauffeur ?\nDo you need a lift?\tVous avez besoin d'un chauffeur ?\nDo you need a ride?\tAs-tu besoin d'être véhiculé ?\nDo you need a ride?\tAvez-vous besoin d'être véhiculés ?\nDo you need a ride?\tAvez-vous besoin d'être véhiculées ?\nDo you need a ride?\tAvez-vous besoin d'être véhiculée ?\nDo you need a ride?\tAvez-vous besoin d'être véhiculé ?\nDo you need a ride?\tAs-tu besoin d'être véhiculée ?\nDo you play tennis?\tTu joues au tennis ?\nDo you remember me?\tVous souvenez-vous de moi ?\nDo you remember me?\tTe souviens-tu de moi ?\nDo you remember us?\tTe souviens-tu de nous ?\nDo you speak Latin?\tParlez-vous latin ?\nDo you travel much?\tVoyagez-vous beaucoup ?\nDo you want a ride?\tVeux-tu que je te véhicule ?\nDo you want a ride?\tVoulez-vous que je vous véhicule ?\nDo you want a ride?\tVeux-tu que je t'emmène ?\nDo you want a ride?\tVoulez-vous que je vous emmène ?\nDoctors save lives.\tLes médecins sauvent des vies.\nDoes he have a dog?\tA-t-il un chien ?\nDoes he like China?\tAime-t-il la Chine ?\nDoes he like China?\tApprécie-t-il la Chine ?\nDoes he like Japan?\tApprécie-t-il le Japon ?\nDoes it hurt a lot?\tCela fait-il beaucoup mal ?\nDoes it offend you?\tCela t'offense-t-il ?\nDoes it offend you?\tCela vous offense-t-il ?\nDoes it offend you?\tCela t'offusque-t-il ?\nDoes it offend you?\tCela vous offusque-t-il ?\nDoes that mean yes?\tCela signifie-t-il oui ?\nDoes that suit you?\tEst-ce que ça te convient ?\nDoes that suit you?\tCela vous convient-il ?\nDoes that suit you?\tEst-ce que ça vous va ?\nDoes that suit you?\tCela te convient-il ?\nDoes your dog bite?\tEst-ce que votre chien mord ?\nDoes your dog bite?\tVotre chien mord-il ?\nDoes your dog bite?\tTon chien mord-il ?\nDoes your mom know?\tTa mère le sait-elle ?\nDoes your mom know?\tTa mère est-elle au courant ?\nDon't ask me again.\tNe me repose pas la question !\nDon't be a bad boy.\tNe sois pas un mauvais garçon.\nDon't be a copycat.\tNe sois pas un imitateur.\nDon't be so choosy.\tNe sois pas si sélectif !\nDon't be so choosy.\tNe sois pas si sélective !\nDon't be so choosy.\tNe sois pas si difficile !\nDon't be so greedy.\tNe sois pas si avare.\nDon't be so modest.\tNe soyez pas si modeste !\nDon't be so modest.\tNe sois pas si modeste !\nDon't call anybody.\tN'appelez personne !\nDon't call anybody.\tN'appelle personne !\nDon't call her now.\tNe l'appelle pas maintenant.\nDon't call him now.\tNe l'appelle pas maintenant.\nDon't come near me.\tNe t'approche pas de moi !\nDon't come near me.\tNe vous approchez pas de moi !\nDon't eat too much.\tNe mange pas trop.\nDon't eat too much.\tNe mangez pas trop.\nDon't feed the dog.\tNe nourris pas le chien.\nDon't feed the dog.\tNe nourrissez pas le chien !\nDon't give me that!\tNe me donne pas ça !\nDon't give up hope.\tNe perdez pas espoir.\nDon't give up hope.\tNe perds pas espoir.\nDon't interrupt me.\tNe m'interromps pas !\nDon't interrupt me.\tNe m'interrompez pas !\nDon't kid yourself.\tNe te mens pas à toi-même.\nDon't make a noise.\tNe fais pas de bruit.\nDon't make a sound.\tNe fais pas un bruit !\nDon't make a sound.\tNe faites pas un bruit !\nDon't make me stay.\tNe m'oblige pas à rester.\nDon't make me stay.\tNe m'obligez pas à rester.\nDon't make trouble.\tNe vous attirez pas d'ennuis.\nDon't move, please.\tNe bougez pas, s'il vous plait.\nDon't patronize me.\tNe me traite pas avec condescendance.\nDon't say anything.\tNe dis rien !\nDon't say anything.\tNe dites rien !\nDon't say too much.\tN'en dis pas trop !\nDon't say too much.\tN'en dites pas trop !\nDon't tell anybody.\tNe le dis à personne !\nDon't tell anybody.\tNe le dites à personne !\nDon't tell anybody.\tNe le conte à personne !\nDon't tell anybody.\tNe le raconte à personne !\nDon't tell anybody.\tNe le racontez à personne !\nDon't tell anybody.\tNe le contez à personne !\nDon't tell anybody.\tNe le dis à qui que ce soit !\nDon't tell anybody.\tNe le dites à qui que ce soit !\nDon't tell anybody.\tNe le dis à quiconque !\nDon't tell anybody.\tNe le dites à quiconque !\nDon't tell my wife.\tNe dites rien à ma femme !\nDon't tell my wife.\tNe dites rien à mon épouse !\nDon't tell my wife.\tNe dis rien à ma femme !\nDon't tell my wife.\tNe dis rien à mon épouse !\nDon't thank me now.\tNe me remercie pas maintenant.\nDon't thank me now.\tNe me remerciez pas maintenant.\nDon't touch my car.\tNe touche pas à ma voiture.\nDon't touch my car.\tTouche pas à ma bagnole !\nDon't touch my car.\tTouche pas à ma caisse !\nDon't trust anyone.\tNe vous fiez à personne !\nDon't trust anyone.\tNe te fie à personne !\nDon't trust anyone.\tNe te fie à quiconque !\nDon't trust anyone.\tNe vous fiez à quiconque !\nDon't try too hard!\tN'essaie pas trop fort !\nDon't try too hard!\tN'essayez pas trop fort !\nDon't walk so fast.\tNe marche pas si vite.\nDon't write in ink.\tN'écris pas à l'encre.\nDon't you think so?\tNe le penses-tu pas ?\nDown with the king!\tÀ bas le roi !\nDrink up your milk.\tBois ton lait.\nDrink up your milk.\tFinis ton lait !\nDriving relaxes me.\tConduire me détend.\nDust off the shelf.\tDépoussiérez l'étagère.\nEasy come, easy go.\tCe qui est facilement gagné est facilement perdu.\nEasy come, easy go.\tAussitôt gagné, aussitôt dépensé.\nEmpty your pockets!\tVide tes poches !\nEmpty your pockets!\tVidez vos poches !\nEndorse this check.\tEndosse ce chèque.\nEnjoy your evening.\tPassez une bonne soirée !\nEnjoy your evening.\tPasse une bonne soirée !\nEnjoy your weekend.\tProfitez bien de votre week-end !\nEnjoy your weekend.\tProfite bien de ton week-end !\nEverybody gets old.\tTout le monde vieillit.\nEverybody hates me.\tTout le monde me déteste.\nEverybody is alive.\tTout le monde est vivant.\nEverybody is great.\tTout le monde est super.\nEverybody knows me.\tTout le monde me connait.\nEverybody loves it.\tTout le monde adore ça.\nEverybody sat down.\tTout le monde s'assit.\nEverybody sat down.\tTout le monde s'est assis.\nEverybody's crying.\tTout le monde pleure.\nEverybody's in bed.\tTout le monde est au lit.\nEveryone felt safe.\tTout le monde se sentit en sécurité.\nEveryone felt safe.\tTout le monde s'est senti en sécurité.\nEveryone is scared.\tTout le monde a peur.\nEveryone is silent.\tTout le monde est silencieux.\nEveryone is unique.\tTout le monde est unique.\nEveryone is unique.\tChacun est unique.\nEveryone knew that.\tTout le monde le savait.\nEveryone likes her.\tTout le monde l'aime.\nEveryone likes her.\tTout le monde l'apprécie.\nEveryone likes you.\tTout le monde t'apprécie.\nEveryone likes you.\tTout le monde t'aime bien.\nEveryone loves him.\tTout le monde l'aime.\nEveryone loves him.\tChacun l'aime.\nEveryone loves him.\tTout le monde l'adore.\nEveryone should go.\tTout le monde devrait y aller.\nEveryone should go.\tTout le monde devrait partir.\nEveryone was alert.\tTout le monde était vigilant.\nEveryone was alert.\tTout le monde a été vigilant.\nEveryone was happy.\tTous étaient heureux.\nEveryone was happy.\tTout le monde était heureux.\nEveryone was tense.\tTout le monde était tendu.\nEveryone was there.\tTout le monde était là.\nEveryone's reading.\tTout le monde est en train de lire.\nEveryone's shocked.\tTout le monde est choqué.\nEverything is fine.\tTout va bien.\nEverything is gone.\tTout est parti.\nEverything is good.\tTout est bon.\nEverything is over.\tTout est fini.\nEverything matters.\tTout importe.\nEverything matters.\tTout est important.\nEverything matters.\tTout a son importance.\nEverything's ready.\tTout est prêt.\nExcuse me a minute.\tExcusez-moi une minute.\nExplain that to me.\tExplique-moi cela.\nExplain that to me.\tExpliquez-moi cela.\nFacebook is boring.\tFacebook est ennuyant.\nFill in the blanks.\tRemplissez les blancs.\nFill in the blanks.\tRemplissez les espaces libres.\nFill it up, please.\tLe plein, s'il vous plait.\nFill out this form.\tRemplissez ce formulaire.\nFill out this form.\tRemplis ce formulaire.\nFind somebody else.\tTrouve quelqu'un d'autre.\nFind somebody else.\tTrouvez quelqu'un d'autre.\nFirst things first.\tCommençons par le commencement !\nFollow his example.\tSuivez son exemple.\nFollow your desire.\tSuis ton désir.\nFollow your desire.\tSuivez votre désir.\nFor here, or to go?\tÀ emporter ou à consommer sur place ?\nFor here, or to go?\tSur place ou à emporter ?\nFor here, or to go?\tSur place ou pour emporter ?\nFor here, or to go?\tPour consommer sur place ou à emporter ?\nForty years passed.\tQuarante ans ont passés.\nGet away from here.\tVa-t'en d'ici.\nGet in the car now.\tMonte dans la voiture, maintenant !\nGet in the car now.\tGrimpe dans la voiture, maintenant !\nGet in the car now.\tMontez dans la voiture, maintenant !\nGet in the car now.\tGrimpez dans la voiture, maintenant !\nGet it out of here.\tSortez-le d'ici !\nGet it out of here.\tSors-le d'ici !\nGet me out of here.\tEmmène-moi ailleurs.\nGet me out of here.\tSortez-moi de là !\nGet me out of here.\tSors-moi de là !\nGet me some coffee.\tAmenez-moi du café.\nGet me some coffee.\tAmène-moi du café.\nGet me the details.\tObtiens-moi les détails.\nGet me the details.\tObtenez-moi les détails.\nGet me up at eight.\tRéveillez-moi à huit heures.\nGet out if you can.\tSors, si tu peux !\nGet out if you can.\tSortez, si vous pouvez !\nGet out of my life!\tSors de ma vie !\nGet out of my life!\tSortez de ma vie !\nGet out of my room!\tSors de ma chambre !\nGet out of my room!\tSortez de ma chambre !\nGet out of my room.\tSors de ma chambre !\nGet out of my room.\tSortez de ma chambre !\nGet out of my seat.\tSors de mon siège !\nGet out of my seat.\tSortez de mon siège !\nGet out of my seat.\tLibère mon siège !\nGet out of my seat.\tLibérez mon siège !\nGet out of the car.\tSors de la voiture !\nGet out of the car.\tSortez de la voiture !\nGet out of the van.\tSors de la camionnette !\nGet out of the van.\tSortez de la camionnette !\nGet out of the way.\tÉcartez-vous du passage !\nGet out of the way.\tÉcarte-toi du passage !\nGet real, will you?\tSois réaliste, tu veux ?\nGet real, will you?\tSoyez réaliste, voulez-vous ?\nGet rid of the gun.\tDébarrasse-toi de l'arme !\nGet rid of the gun.\tDébarrassez-vous de l'arme !\nGet rid of the gun.\tDébarrasse-toi du canon !\nGet rid of the gun.\tDébarrassez-vous du canon !\nGet the kid to bed.\tMets le gosse au lit !\nGet the kid to bed.\tMettez le gosse au lit !\nGet us out of here.\tSors-nous de là.\nGet us out of here.\tSortez-nous d'ici.\nGive it back to me!\tRends-le-moi !\nGive it back to me!\tRendez-le-moi !\nGive me an example.\tDonne-moi un exemple.\nGive me an example.\tDonnez-moi un exemple.\nGive me an example.\tFournis-moi un exemple.\nGive me an example.\tFournissez-moi un exemple.\nGive me half of it.\tDonne-moi la moitié.\nGive me your money.\tDonne-moi ton argent.\nGive me your phone.\tDonne-moi ton téléphone !\nGive me your phone.\tDonnez-moi votre téléphone !\nGive me your shirt.\tDonne-moi ta chemise !\nGive me your shirt.\tDonnez-moi votre chemise !\nGive me your watch.\tDonne-moi ta montre.\nGlass is breakable.\tLe verre est cassant.\nGo and wake Tom up.\tVa réveiller Tom.\nGo and wake Tom up.\tAllez réveiller Tom!\nGo and wake her up.\tVa la réveiller.\nGo back to the lab.\tRetourne au laboratoire !\nGo play in traffic.\tVa mourir.\nGo play in traffic.\tVa te faire pendre.\nGo to the hospital.\tVa à l'hôpital.\nGo up these stairs.\tMontez ces escaliers.\nHand me that phone.\tPasse-moi ce téléphone.\nHand me the remote.\tPasse-moi la télécommande.\nHand me the wrench.\tPassez-moi la clé.\nHappy Thanksgiving!\tJoyeux Thanksgiving.\nHas Tom been fired?\tTom a-t-il été renvoyé ?\nHas Tom been fired?\tTom a-t-il été viré ?\nHas he arrived yet?\tEst-il déjà arrivé ?\nHave a nice flight.\tBon vol !\nHave a nice flight.\tBon vol.\nHave another drink.\tPrenez un autre verre !\nHave another drink.\tPrends un autre verre !\nHave another drink.\tPrends une autre boisson !\nHave another drink.\tPrenez une autre boisson !\nHave fun with that.\tAmuse-toi bien avec !\nHave fun with that.\tAmusez-vous bien avec !\nHave we met before?\tNous sommes-nous rencontrés auparavant ?\nHave you eaten yet?\tEst-ce que vous avez déjà mangé ?\nHave you eaten yet?\tEst-ce que tu as déjà mangé ?\nHave you eaten yet?\tAvez-vous déjà mangé ?\nHave you gone nuts?\tÊtes-vous devenu fou ?\nHave you gone nuts?\tÊtes-vous devenus fous ?\nHave you gone nuts?\tÊtes-vous devenue folle ?\nHave you gone nuts?\tÊtes-vous devenues folles ?\nHave you gone nuts?\tEs-tu devenu fou ?\nHave you gone nuts?\tEs-tu devenue folle ?\nHave you had lunch?\tAs-tu déjeuné ?\nHe OD'd on cocaine.\tIl a fait une overdose de cocaïne.\nHe acted foolishly.\tIl s'est comporté comme un idiot.\nHe advised caution.\tIl conseilla la prudence.\nHe appeared honest.\tIl avait l'air honnête.\nHe arrived in time.\tIl arriva à temps.\nHe arrived in time.\tIl est arrivé à temps.\nHe asked about you.\tIl s'est enquis de vous.\nHe asked about you.\tIl s'est enquis de toi.\nHe asked after you.\tIl vous a demandé.\nHe asked for money.\tIl demanda de l'argent.\nHe asked for money.\tIl a quémandé de l'argent.\nHe asked my mother.\tIl a demandé à ma mère.\nHe asked my mother.\tIl demanda à ma mère.\nHe banged his head.\tIl s'est heurté la tête.\nHe banged his head.\tIl se heurta la tête.\nHe banged his head.\tIl lui frappa la tête.\nHe banged his head.\tIl l'a frappé à la tête.\nHe banged his head.\tIl le frappa à la tête.\nHe banged his knee.\tIl se cogna le genou.\nHe banged his knee.\tIl s'est cogné au genou.\nHe banged his knee.\tIl s'est cogné le genou.\nHe bores everybody.\tIl ennuie tout le monde.\nHe breathed deeply.\tIl prit une profonde inspiration.\nHe breathed deeply.\tIl a profondément respiré.\nHe broke the rules.\tIl a enfreint les règles.\nHe broke the rules.\tIl enfreignit les règles.\nHe called for help.\tIl a demandé de l'aide.\nHe called me a cab.\tIl m'a appelé un taxi.\nHe came downstairs.\tIl descendit les escaliers.\nHe came downstairs.\tIl vint en bas.\nHe came downstairs.\tIl est descendu.\nHe came here again.\tIl est revenu ici.\nHe came out on top.\tIl finit en tête.\nHe came out on top.\tIl termina en tête.\nHe came out on top.\tIl débuta au sommet.\nHe can barely read.\tIl sait à peine lire.\nHe can drive a car.\tIl sait conduire.\nHe can drive a car.\tIl sait conduire une voiture.\nHe can hardly walk.\tIl peut à peine marcher.\nHe can swim a mile.\tIl peut nager 1 mile.\nHe can't handle it.\tIl ne parvient pas à le gérer.\nHe can't handle it.\tLui ne parvient pas à le gérer.\nHe can't keep time.\tIl est incapable de garder le rythme.\nHe can't stay long.\tIl ne peut rester longtemps.\nHe cannot be saved.\tIl ne peut être sauvé.\nHe changed his job.\tIl a changé d'emploi.\nHe changed his job.\tIl a changé de boulot.\nHe changed his job.\tIl a changé de poste.\nHe closed the door.\tIl ferma la porte.\nHe cried and cried.\tIl pleura et pleura encore.\nHe cried and cried.\tIl pleura tant et plus.\nHe crushed the box.\tIl écrasa la boîte.\nHe did a cartwheel.\tIl fit la roue.\nHe died in his bed.\tIl mourut dans son lit.\nHe died in his bed.\tIl trépassa dans son lit.\nHe died in his bed.\tIl est mort dans son lit.\nHe disliked school.\tIl n'aimait pas l'école.\nHe does not listen.\tIl n'écoute pas.\nHe does speak well.\tIl parle bien.\nHe does speak well.\tIl s'exprime bien.\nHe doesn't know me.\tIl ne me connaît pas.\nHe doesn't like us.\tIl ne nous aime pas.\nHe doesn't love me.\tIl ne m'aime pas.\nHe doesn't want it.\tIl ne la veut pas.\nHe doesn't want it.\tIl n'en veut pas.\nHe drinks too much.\tIl boit trop.\nHe drives me crazy.\tIl me rend chèvre.\nHe drives me crazy.\tIl me rend fou.\nHe drives me crazy.\tIl me rend dingue.\nHe drove to school.\tIl a conduit jusqu'à l'école.\nHe enjoyed cycling.\tIl avait plaisir à faire du vélo.\nHe entered my room.\tIl est entré dans ma chambre.\nHe failed the exam.\tIl échoua à l'examen.\nHe failed the exam.\tIl a échoué à l'examen.\nHe forgot her name.\tIl a oublié son nom.\nHe forgot his name.\tIl a oublié son nom.\nHe found me a taxi.\tIl me trouva un taxi.\nHe gave her a book.\tIl lui a donné un livre.\nHe gave him a book.\tIl lui a donné un livre.\nHe gave me a watch.\tIl m'a donné une montre.\nHe got ahead of me.\tIl m'a dépassé.\nHe got off the bus.\tIl est descendu du bus.\nHe had an accident.\tIl eut un accident.\nHe had fun with it.\tIl s'en est amusé.\nHe had to go there.\tIl a dû y aller.\nHe has a big mouth.\tIl a une grande gueule.\nHe has a big truck.\tIl a un gros camion.\nHe has a long nose.\tIl a un long nez.\nHe has another son.\tIl a un autre fils.\nHe has greasy hair.\tIl a les cheveux gras.\nHe has his own car.\tIl a sa propre voiture.\nHe has no children.\tIl n'a pas d'enfants.\nHe has white teeth.\tIl a des dents blanches.\nHe heard footsteps.\tIl entendit des pas.\nHe heard the noise.\tIl entendit le bruit.\nHe heard the sound.\tIl a entendu le son.\nHe held his breath.\tIl a retenu sa respiration.\nHe held his breath.\tIl a retenu son souffle.\nHe held his breath.\tIl retint sa respiration.\nHe is a bad driver.\tIl est mauvais conducteur.\nHe is a bad person.\tC'est une mauvaise personne.\nHe is a bank clerk.\tIl est employé de banque.\nHe is a clever boy.\tC'est un garçon intelligent.\nHe is a fishmonger.\tIl est poissonnier.\nHe is a good loser.\tIl est un bon perdant.\nHe is a slim child.\tC'est un enfant mince.\nHe is about my age.\tIl a environ mon âge.\nHe is about my age.\tIl a à peu près mon âge.\nHe is about thirty.\tIl a environ trente ans.\nHe is about to die.\tIl est sur le point de mourir.\nHe is about to die.\tIl est à l'article de la mort.\nHe is all but dead.\tIl est tout sauf mort.\nHe is already here.\tIl est déjà là.\nHe is drinking tea.\tIl est en train de boire du thé.\nHe is having lunch.\tIl est en train de déjeuner.\nHe is my classmate.\tC'est mon camarade de classe.\nHe is my colleague.\tIl est mon collègue.\nHe is my colleague.\tC'est mon collègue.\nHe is no gentleman.\tCe n'est pas un gentleman.\nHe is not Japanese.\tIl n'est pas Japonais.\nHe is on the radio.\tIl passe à la radio.\nHe is on the radio.\tIl est à la radio.\nHe is only a child.\tIl n'est qu'un enfant.\nHe is playing golf.\tIl joue au golf.\nHe is playing here.\tC'est ici qu'il joue.\nHe is sharp-witted.\tIl a l'esprit vif.\nHe is so heartless.\tIl est vraiment sans cœur.\nHe is still in bed.\tIl est encore au lit.\nHe is sure to come.\tIl est certain de venir.\nHe is thick-headed.\tIl est borné.\nHe is very careful.\tIl est très prudent.\nHe is very careful.\tIl est très soigneux.\nHe is very learned.\tIl est très érudit.\nHe is very learned.\tIl est fort érudit.\nHe is well off now.\tIl est riche, maintenant.\nHe isn't my cousin.\tCe n'est pas mon cousin.\nHe kept his hat on.\tIl garda son chapeau sur la tête.\nHe kept me waiting.\tIl me fit attendre.\nHe kept me waiting.\tIl m'a fait attendre.\nHe kept on singing.\tIl continua à chanter.\nHe kept quite calm.\tIl est resté tout à fait calme.\nHe kicked the ball.\tIl tapa dans le ballon.\nHe killed that man.\tIl a tué cet homme.\nHe killed that man.\tIl tua cet homme.\nHe knows the truth.\tIl connaît la vérité.\nHe lacks judgement.\tIl manque de jugement.\nHe lay on his back.\tIl était étendu sur le dos.\nHe learned to swim.\tIl a appris à nager.\nHe leaves at eight.\tIl part à huit heures.\nHe lied to my face.\tIl m'a menti effrontément.\nHe lied to my face.\tIl me mentit effrontément.\nHe likes adventure.\tIl aime l'aventure.\nHe likes sweet tea.\tIl aime le thé sucré.\nHe lit the candles.\tIl alluma les cierges.\nHe lit the candles.\tIl a allumé les cierges.\nHe lives near here.\tIl vit dans le coin.\nHe looks very good.\tIl a l'air très bien.\nHe looks very good.\tIl a l'air très bon.\nHe lost everything.\tIl a tout perdu.\nHe lost his memory.\tIl a perdu la mémoire.\nHe lost his memory.\tIl perdit la mémoire.\nHe loves attention.\tIl adore qu'on lui prête attention.\nHe loves attention.\tIl adore les prévenances.\nHe loves traveling.\tIl adore voyager.\nHe made an apology.\tIl présenta ses excuses.\nHe might retaliate.\tIl pourrait riposter.\nHe needs the money.\tIl a besoin de l'argent.\nHe often gets sick.\tIl est souvent malade.\nHe opened the door.\tIl ouvrit la porte.\nHe opened the door.\tIl a ouvert la porte.\nHe owes me a favor.\tIl me doit une faveur.\nHe plays very well.\tIl joue très bien.\nHe plays very well.\tIl joue fort bien.\nHe pulled my shirt.\tIl a tiré ma chemise.\nHe pulled my shirt.\tIl a tiré sur ma chemise.\nHe raised his hand.\tIl leva la main.\nHe rarely gives up.\tIl abandonne rarement.\nHe remained silent.\tIl est resté silencieux.\nHe robbed me blind.\tIl m'a dépouillé.\nHe robbed me blind.\tIl m'a dépouillée.\nHe rolled his eyes.\tIl roula des yeux.\nHe said it himself.\tIl l'a dit lui-même.\nHe sat next to her.\tIl s'est assis à côté d'elle.\nHe sat next to her.\tIl s'assit près d'elle.\nHe sat next to her.\tIl s'assit auprès d'elle.\nHe sat next to her.\tIl s'est assis auprès d'elle.\nHe sat next to her.\tIl s'est assis près d'elle.\nHe sat next to her.\tIl s'assit à son côté.\nHe sat next to her.\tIl s'est assis à son côté.\nHe seems to be ill.\tOn dirait qu'il est malade.\nHe should be angry.\tIl devrait être en colère.\nHe should thank me.\tIl devrait me remercier.\nHe showed it to me.\tIl me le montra.\nHe showed it to me.\tIl me l'a montré.\nHe sings very well.\tIl chante très bien.\nHe skipped a grade.\tIl sauta une classe.\nHe skipped a grade.\tIl a sauté une classe.\nHe smiled and left.\tIl sourit et partit.\nHe smiled and left.\tIl a souri et est parti.\nHe started singing.\tIl s'est mis à chanter.\nHe still loves her.\tIl l'aime encore.\nHe still loves her.\tIl l'aime toujours.\nHe stole her watch.\tIl a dérobé sa montre.\nHe stood behind me.\tIl se tenait derrière moi.\nHe stood up slowly.\tIl se leva lentement.\nHe stopped talking.\tIl s'est arrêté de parler.\nHe stopped the car.\tIl arrêta la voiture.\nHe stopped the car.\tIl a arrêté la voiture.\nHe studies Chinese.\tIl étudie le chinois.\nHe teaches English.\tIl enseigne l'anglais.\nHe took a big risk.\tIl a pris un gros risque.\nHe took a big risk.\tIl prit un gros risque.\nHe touched my hand.\tIl me toucha la main.\nHe touched my hand.\tIl m'a touché la main.\nHe waited his turn.\tIl attendait son tour.\nHe walks to school.\tIl marche vers l'école.\nHe wants a new car.\tIl veut une nouvelle voiture.\nHe wants the money.\tIl veut l'argent.\nHe wants vengeance.\tIl veut sa vengeance.\nHe was a good king.\tIl était un bon roi.\nHe was alone there.\tIl était seul là-bas.\nHe was embarrassed.\tIl était embarrassé.\nHe was getting old.\tIl vieillissait.\nHe was heartbroken.\tIl avait le cœur brisé.\nHe was not pleased.\tIl ne fut pas content.\nHe was not pleased.\tIl n'a pas été content.\nHe was unimpressed.\tIl ne fut pas impressionné.\nHe was unimpressed.\tIl n'a pas été impressionné.\nHe weighs 70 kilos.\tIl pèse soixante-dix kilos.\nHe went by bicycle.\tIl y est allé en bicyclette.\nHe went by bicycle.\tIl y est allé en vélo.\nHe went by bicycle.\tIl est parti en vélo.\nHe went on singing.\tIl a continué de chanter.\nHe went out to eat.\tIl sortit manger.\nHe went out to eat.\tIl est sorti manger.\nHe works all night.\tIl travaille toute la nuit.\nHe works very hard.\tIl travaille très dur.\nHe'll be back soon.\tIl sera bientôt de retour.\nHe'll be done soon.\tIl va bientôt finir.\nHe'll be here soon.\tIl sera bientôt là.\nHe'll be just fine.\tÇa ira très bien pour lui.\nHe'll wait for you.\tIl t'attendra.\nHe'll wait for you.\tIl vous attendra.\nHe's a bit jealous.\tIl est un peu jaloux.\nHe's a bit jealous.\tIl est quelque peu jaloux.\nHe's a creationist.\tC'est un créationiste.\nHe's a fast walker.\tC'est un marcheur rapide.\nHe's a filthy liar.\tC'est un sale menteur !\nHe's a food critic.\tC'est un critique gastronomique.\nHe's a ghostwriter.\tC'est un nègre.\nHe's a goal keeper.\tIl est gardien de but.\nHe's a good person.\tC'est quelqu'un de bien.\nHe's a kind person.\tIl est gentil.\nHe's a married man.\tC'est un homme marié.\nHe's a meth addict.\tIl est accro aux méthamphétamines.\nHe's a strange guy.\tC'est un type étrange.\nHe's a total wreck.\tC'est une vraie loque.\nHe's already a man.\tC'est déjà un homme.\nHe's an Englishman.\tIl est Anglais.\nHe's an aristocrat.\tC'est un aristocrate.\nHe's an aristocrat.\tIl est aristocrate.\nHe's coming closer.\tIl s'approche.\nHe's coming closer.\tIl se rapproche.\nHe's down to earth.\tIl est concret.\nHe's good at cards.\tIl est bon aux cartes.\nHe's in the shower.\tIl est dans la douche.\nHe's my new friend.\tC'est mon nouvel ami.\nHe's not a bad boy.\tCe n'est pas un mauvais garçon.\nHe's not a bad guy.\tCe n'est pas un mauvais bougre.\nHe's not all there.\tIl n'est pas tout à fait là.\nHe's not available.\tIl n'est pas disponible.\nHe's not available.\tIl est indisponible.\nHe's not my cousin.\tCe n'est pas mon cousin.\nHe's not my father.\tIl n'est pas mon père.\nHe's not one of us.\tIl n'est pas des nôtres.\nHe's old and crazy.\tIl est vieux et fou.\nHe's one of a kind.\tIl est unique en son genre.\nHe's overconfident.\tIl a trop confiance en lui-même.\nHe's pushing fifty.\tIl frôle les cinquante ans.\nHe's self-employed.\tIl est indépendant.\nHe's short and fat.\tIl est petit et gros.\nHe's still at work.\tIl est encore au travail.\nHe's tall and slim.\tIl est grand et mince.\nHe's the scapegoat.\tC'est lui le bouc émissaire.\nHe's very flexible.\tIl est très flexible.\nHe's very talented.\tIl est très talentueux.\nHe's working on it.\tIl y travaille.\nHedgehogs are cute.\tLes hérissons, c'est mignon.\nHello, how are you?\tBonjour, comment allez-vous ?\nHelp is on its way.\tL'aide arrive.\nHelp is on its way.\tL'aide est en route.\nHelp me if you can.\tAidez-moi, si vous le pouvez !\nHelp me if you can.\tAide-moi, si tu le peux !\nHelp me print this.\tAide-moi à imprimer ça.\nHelp me print this.\tAidez-moi à imprimer ceci.\nHer dress was torn.\tSes vêtements étaient déchirés.\nHer father is tall.\tSon père est grand.\nHer hair grew back.\tSes cheveux ont repoussé.\nHer skin is smooth.\tSa peau est douce.\nHer socks are gray.\tSes chaussettes sont grises.\nHere are our books.\tVoici nos livres.\nHere are the rules.\tVoici les règles.\nHere are your keys.\tVoici vos clés.\nHere comes the bus.\tLe bus arrive.\nHere comes the bus.\tVoilà le bus.\nHere is an example.\tVoici un exemple.\nHere is my baggage.\tC'est mon bagage.\nHere is my bicycle.\tMon vélo est ici.\nHere is some water.\tVoici de l'eau.\nHere's the address.\tVoici l'adresse.\nHere's the address.\tEn voici l'adresse.\nHere's your change.\tVoici ton changement !\nHere's your change.\tVoici votre changement !\nHere's your change.\tVoici ta monnaie !\nHere's your change.\tVoici votre monnaie !\nHere, have a drink.\tVoilà, bois un coup !\nHere, have a drink.\tVoilà, buvez un coup !\nHere, look at this.\tVoilà, regarde ça !\nHere, look at this.\tVoilà, regardez ceci !\nHey, open the door.\tHé, ouvre la porte.\nHey, open the door.\tHé, ouvrez la porte.\nHey, what happened?\tHé, que s'est-il passé ?\nHis hair was brown.\tSes cheveux étaient bruns.\nHis joke was great.\tSon canular était épatant.\nHis knees gave way.\tSes genoux se dérobèrent.\nHis name eludes me.\tJe ne me souviens pas du nom de cette personne.\nHis play was a hit.\tSa pièce de théâtre fut un succès.\nHis play was a hit.\tSa pièce de théâtre fit un tabac.\nHis play was a hit.\tSa pièce de théâtre a été un succès.\nHis room is untidy.\tSa chambre est en désordre.\nHis socks are gray.\tSes chaussettes sont grises.\nHis wife is French.\tSon épouse est française.\nHold your position.\tReste en position !\nHold your position.\tRestez en position !\nHorses are animals.\tLes chevaux sont des animaux.\nHow about this one?\tQue diriez-vous de celui-ci ?\nHow about this one?\tQue dirais-tu de celle-ci ?\nHow about tomorrow?\tQue dis-tu de demain ?\nHow about tomorrow?\tQue dites-vous de demain ?\nHow accurate is it?\tQuelle précision est-ce que ça a ?\nHow big will it be?\tDe quelle taille cela sera-t-il ?\nHow can I help you?\tEn quoi puis-je vous servir ?\nHow can I prove it?\tComment puis-je le prouver ?\nHow can it be done?\tComment cela peut-il être fait ?\nHow can it be done?\tDe quelle manière peut-on le faire ?\nHow can you fix it?\tComment peux-tu le réparer ?\nHow can you fix it?\tComment pouvez vous le réparer ?\nHow could I forget?\tComment pourrais-je oublier ?\nHow could I refuse?\tComment pouvais-je refuser ?\nHow could I refuse?\tComment pourrais-je refuser ?\nHow could I refuse?\tComment ai-je pu refuser ?\nHow could I resist?\tComment puis-je résister ?\nHow could you know?\tComment pourrais-tu savoir ?\nHow could you know?\tComment pouvais-tu savoir ?\nHow could you know?\tComment pourriez-vous savoir ?\nHow could you know?\tComment pouviez-vous savoir ?\nHow did I get here?\tComment suis-je parvenu ici ?\nHow did I get here?\tComment suis-je parvenue ici ?\nHow did he do this?\tComment l'a-t-il fait ?\nHow did he find us?\tComment nous a-t-il trouvés ?\nHow did he find us?\tComment nous a-t-il trouvées ?\nHow did we do that?\tComment avons-nous fait cela ?\nHow did you get in?\tComment êtes-vous entré ?\nHow did you get in?\tComment es-tu entré ?\nHow do I thank you?\tComment puis-je vous remercier ?\nHow do I thank you?\tComment puis-je te remercier ?\nHow do you do that?\tComment fais-tu cela ?\nHow do you do this?\tComment le fais-tu ?\nHow do you do this?\tComment le faites-vous ?\nHow do you do this?\tComment fais-tu ceci ?\nHow do you do this?\tComment faites-vous ceci ?\nHow does she do it?\tComment fait-elle ?\nHow does she do it?\tComment le fait-elle ?\nHow does she do it?\tComment la fait-elle ?\nHow does this work?\tComment ça marche ?\nHow foolish of you!\tComme c'est idiot de votre part !\nHow foolish of you!\tComme c'est idiot de ta part !\nHow hungry are you?\tÀ quel point tu as faim ?\nHow hungry are you?\tÀ quel point as-tu faim ?\nHow is it possible?\tComment cela se peut-il ?\nHow is the economy?\tComment se porte l'économie ?\nHow is the weather?\tQuel temps fait-il ?\nHow is the weather?\tComment est le temps ?\nHow is the weather?\tQuel temps fait-il ?\nHow is your family?\tComment se porte votre famille ?\nHow is your mother?\tComment va votre mère ?\nHow is your mother?\tComment va ta mère ?\nHow is your mother?\tComment va votre mère ?\nHow may I help you?\tComment puis-je vous aider ?\nHow may I help you?\tComment puis-je t'aider ?\nHow may I help you?\tQue puis-je faire pour vous ?\nHow old is this TV?\tCombien d'années a cette télé ?\nHow was your night?\tComment s'est passée ta nuit ?\nHow was your night?\tComment s'est déroulée ta nuit ?\nHow's the job hunt?\tComment se passe la recherche d'emploi ?\nHow's the job hunt?\tComment se passe la quête d'un emploi ?\nHow's your new job?\tComment va ton nouveau boulot ?\nHow's your new job?\tC’est comment, ton nouveau boulot ?\nI absolutely agree.\tJe suis complètement d'accord.\nI accept the offer.\tJ'accepte la proposition.\nI admit my mistake.\tJ'admets mon erreur.\nI advise customers.\tJe conseille des clients.\nI agree completely.\tJe suis totalement d'accord.\nI agree completely.\tJe suis tout à fait d'accord !\nI almost forgot it.\tJe l'ai presque oublié.\nI already did that.\tJe l'ai déjà fait.\nI already did that.\tJ'ai déjà fait ça.\nI already said yes.\tJ'ai déjà dit oui.\nI already told you.\tJe vous l'ai déjà dit.\nI am a new student.\tJe suis un nouvel étudiant.\nI am an only child.\tJe suis enfant unique.\nI am boiling water.\tJe suis en train de bouillir de l'eau.\nI am doing my best.\tJe fais de mon mieux.\nI am done teaching.\tJ'ai fini d'enseigner.\nI am fond of music.\tJ'adore la musique.\nI am from Portugal.\tJe viens de Portugal.\nI am from Shizuoka.\tJe suis de Shizuoka.\nI am grilling fish.\tJe suis en train de griller du poisson.\nI am in deep water.\tJe suis en grande difficulté.\nI am in the garden.\tJe suis dans le jardin.\nI am just a nobody.\tJe suis juste un monsieur tout-le-monde.\nI am not a teacher.\tJe ne suis pas un enseignant.\nI am not a teacher.\tJe ne suis pas enseignant.\nI am not ready yet.\tJe ne suis pas encore prêt.\nI am not ready yet.\tJe ne suis pas encore prête.\nI am not too tired.\tJe ne suis pas trop fatigué.\nI am sorry for you.\tJe suis désolé pour toi.\nI answered for him.\tJe répondis pour lui.\nI answered for him.\tJ'ai répondu pour lui.\nI arrived too late.\tJe suis arrivé trop tard.\nI asked who he was.\tJ'ai demandé qui il était.\nI baked it for you.\tJe le cuisis pour toi.\nI baked it for you.\tJe le cuisis pour vous.\nI baked it for you.\tJe la cuisis pour toi.\nI baked it for you.\tJe la cuisis pour vous.\nI baked it for you.\tJe l'ai cuit pour toi.\nI baked it for you.\tJe l'ai cuite pour toi.\nI baked it for you.\tJe l'ai cuit pour vous.\nI baked it for you.\tJe l'ai cuite pour vous.\nI beat him at golf.\tJe l'ai battu au golf.\nI believe all that.\tJe crois tout cela.\nI bet you're right.\tJe parie que vous avez raison.\nI bet you're right.\tJe parie que tu as raison.\nI bought a new bag.\tJ'ai acheté un nouveau sac.\nI bought a new car.\tJ'ai acheté une nouvelle voiture.\nI bought a red tie.\tJ'ai acheté une cravate rouge.\nI bought him a tie.\tJe lui ai acheté une cravate.\nI brought you this.\tJe vous ai apporté ceci.\nI brought you this.\tJe t'ai apporté ceci.\nI burned the paper.\tJ'ai brulé le papier.\nI came to kill him.\tJe suis venu pour le tuer.\nI can be impartial.\tJe peux être impartial.\nI can confirm this.\tJe suis en mesure de le confirmer.\nI can confirm this.\tJe peux le confirmer.\nI can do it myself.\tJe peux le faire moi-même.\nI can explain this.\tJe peux expliquer cela.\nI can go next week.\tJe peux y aller la semaine prochaine.\nI can go next week.\tJe peux m'y rendre la semaine prochaine.\nI can hear nothing.\tJe n'entends rien.\nI can help you out.\tJe peux te donner un coup de main.\nI can help you out.\tJe peux vous donner un coup de main.\nI can ride a horse.\tJe sais monter à cheval.\nI can see that now.\tJe m'en rends compte à l'heure actuelle.\nI can speak French.\tJe peux parler français.\nI can wait for you.\tJe vais vous attendre.\nI can wait for you.\tJe peux t'attendre.\nI can wait for you.\tJe peux vous attendre.\nI can't control it.\tJe n'arrive pas à le contrôler.\nI can't exclude it.\tJe ne peux pas l'exclure.\nI can't excuse her.\tJe ne peux pas l'excuser.\nI can't follow you.\tJe ne peux pas te suivre.\nI can't follow you.\tJe n'arrive pas à te suivre.\nI can't forget her.\tJe ne peux pas l'oublier.\nI can't imagine it.\tJe ne peux l'imaginer.\nI can't let you go.\tJe ne peux pas vous laisser partir.\nI can't let you go.\tJe ne peux pas te laisser partir.\nI can't live alone.\tJe ne peux pas vivre seule.\nI can't see my dad.\tJe ne vois pas mon père.\nI can't sleep well.\tJe n’arrive pas à bien dormir.\nI can't stand kids.\tJe ne peux pas supporter les enfants.\nI can't stand kids.\tJe ne supporte pas les enfants.\nI can't study here.\tJe ne peux pas étudier ici.\nI can't wait to go.\tJ'ai hâte d'y aller.\nI checked the date.\tJ'ai vérifié la date.\nI come from Brazil.\tJe viens du Brésil.\nI confessed my sin.\tJ'ai confessé ma faute.\nI confessed my sin.\tJ'ai confessé mon péché.\nI corrected myself.\tJe me suis corrigé tout seul.\nI corrected myself.\tJe me suis corrigé moi-même.\nI coughed up blood.\tJ'ai craché du sang.\nI could be of help.\tJe pourrais être utile.\nI could do nothing.\tJe ne pouvais rien faire.\nI could do nothing.\tJe ne pourrais rien faire.\nI could not refuse.\tJe ne pouvais refuser.\nI couldn't breathe.\tJe ne pouvais pas respirer.\nI couldn't breathe.\tJe ne pourrais pas respirer.\nI couldn't find it.\tJe n'ai pas pu le trouver.\nI couldn't find it.\tJe n'ai pas pu la trouver.\nI couldn't find it.\tJe ne pus le trouver.\nI couldn't find it.\tJe ne pus la trouver.\nI detest hypocrisy.\tJe déteste l'hypocrisie.\nI did all the work.\tJ'ai fait tout le travail.\nI did it like this.\tJe l'ai fait ainsi.\nI did it like this.\tJe l'ai fait comme ceci.\nI did it on my own.\tJe l'ai fait par moi-même.\nI did this for you.\tJe l'ai fait pour toi.\nI did this for you.\tJe l'ai fait pour vous.\nI did what I could.\tJ'ai fait ce que je pouvais.\nI did write to him.\tJe lui ai écrit.\nI didn't apologize.\tJe n'ai pas présenté mes excuses.\nI didn't expect it.\tJe ne m'y suis pas attendu.\nI didn't feel well.\tJe ne me sentais pas bien.\nI didn't know that.\tJe ne savais pas.\nI didn't know that.\tJe l'ignorais.\nI didn't know that.\tJe ne le savais pas.\nI didn't like that.\tJe n'ai pas aimé ça.\nI didn't like that.\tJe n'ai pas aimé cela.\nI didn't notice it.\tJe n'ai pas remarqué.\nI didn't notice it.\tJe ne l'ai pas remarqué.\nI didn't volunteer.\tJe ne me suis pas porté volontaire.\nI didn't volunteer.\tJe n'ai pas fait de bénévolat.\nI didn't volunteer.\tJe n'ai pas proposé ma participation.\nI didn't want that.\tJe ne voulais pas ça.\nI do what I'm told.\tJe fais ce qu'on me dit.\nI don't believe it!\tJe ne le crois pas !\nI don't believe it.\tJe ne le crois pas.\nI don't believe it.\tJe n'y crois pas.\nI don't believe it.\tJe n'y accorde pas foi.\nI don't compromise.\tJe ne transige pas.\nI don't compromise.\tJe ne fais pas de compromis.\nI don't deserve it.\tJe ne le mérite pas.\nI don't drink beer.\tJe ne bois pas de bière.\nI don't fear death.\tJe n'ai pas peur de la mort.\nI don't fear death.\tJe ne crains pas la mort.\nI don't have a car.\tJe n'ai pas de voiture.\nI don't have a car.\tJe ne dispose pas de voiture.\nI don't have a cat.\tJe n'ai pas de chat.\nI don't have a cat.\tJe ne possède pas de chat.\nI don't have a dog.\tJe n'ai pas de chien.\nI don't have a gun.\tJe n'ai pas d'arme à feu.\nI don't have a key.\tJe n'ai pas de clé.\nI don't have a key.\tJe ne dispose pas d'une clé.\nI don't have vodka.\tJe n'ai pas de vodka.\nI don't mind a bit.\tJe m'en fiche comme d'une guigne.\nI don't mind a bit.\tJe n'y prête pas la moindre attention.\nI don't need a bed.\tJe n'ai pas besoin de lit.\nI don't need a gun.\tJe n'ai pas besoin d'arme.\nI don't need a nap.\tJe n'ai pas besoin de sieste.\nI don't play games.\tJe ne joue pas.\nI don't sleep much.\tJe dors peu.\nI don't speak fast.\tJe ne parle pas vite.\nI don't speak fast.\tJe ne parle pas rapidement.\nI don't understand.\tJe ne comprends pas.\nI don't want to go.\tJe ne veux pas partir.\nI don't want to go.\tJe ne veux pas y aller.\nI doubt if it will.\tJ'en doute.\nI drive everywhere.\tJe roule partout.\nI drive everywhere.\tJe conduis partout.\nI eat in the house.\tJe mange dans la maison.\nI ended up winning.\tJ'ai fini par gagner.\nI ended up winning.\tJe finis par gagner.\nI enjoyed swimming.\tJ'adorais nager.\nI envy you so much.\tJe vous envie beaucoup.\nI expect your help.\tJe compte sur votre aide.\nI expect your help.\tJe compte sur ton aide.\nI failed chemistry.\tJ'ai échoué en chimie.\nI failed miserably.\tJ'ai lamentablement échoué.\nI failed the tests.\tJ'ai échoué aux examens.\nI feared the worst.\tJe craignis le pire.\nI feared the worst.\tJ'ai craint le pire.\nI feel bad for her.\tJe me sens mal pour elle.\nI feel bad for her.\tJe compatis avec elle.\nI feel comfortable.\tJe me sens à l'aise.\nI feel funny today.\tJe me sens bizarre, aujourd'hui.\nI feel funny today.\tJe me sens drôle, aujourd'hui.\nI feel like a fool.\tJe me sens comme un idiot.\nI feel like a fool.\tJe me sens comme une idiote.\nI feel like a rest.\tJ'ai envie de me reposer.\nI feel like crying.\tJ'ai envie de pleurer.\nI feel responsible.\tJe me sens responsable.\nI feel so helpless.\tJe me sens tellement impuissant.\nI feel so helpless.\tJe me sens tellement impuissante.\nI feel very chilly.\tJe suis gelé.\nI feel very chilly.\tJe suis gelée.\nI feel very guilty.\tJe me sens très coupable.\nI fell in the pool.\tJe suis tombé dans la piscine.\nI fell in the pool.\tJe suis tombée dans la piscine.\nI felt comfortable.\tJe me sentais à l'aise.\nI felt like crying.\tJ'avais envie de pleurer.\nI felt responsible.\tJe me suis senti responsable.\nI felt responsible.\tJe me suis sentie responsable.\nI felt very sleepy.\tJ'avais très sommeil.\nI felt very uneasy.\tJe me sentis fort mal à l'aise.\nI felt very uneasy.\tJe me suis senti vraiment mal à l'aise.\nI forgot my jacket.\tJ'ai oublié ma veste.\nI forgot my pencil.\tJ'ai oublié mon crayon.\nI forgot something.\tJ'ai oublié quelque chose.\nI found a solution.\tJ'ai trouvé une solution.\nI fractured my arm.\tJe me suis cassé le bras.\nI gave you my word.\tJe t'ai donné ma parole.\nI give you my word.\tJe te donne ma parole.\nI had a good coach.\tJ'ai eu un bon entraîneur.\nI had a good coach.\tJ'ai disposé d'un bon entraîneur.\nI had a good sleep.\tJ'ai bien dormi.\nI had a great time.\tJe me suis bien amusé !\nI had a great time.\tJe me suis bien amusée !\nI had a late lunch.\tJ'ai pris un déjeuner tardif.\nI had a lot of fun.\tJe me suis bien amusé.\nI had an awful day.\tJ'ai eu une journée épouvantable.\nI had him write it.\tJe le lui ai fait écrire.\nI had him write it.\tJe la lui ai fait écrire.\nI had him write it.\tJe lui ai fait l'écrire.\nI had loads of fun.\tJe me suis bien marré.\nI had loads of fun.\tJe me suis bien marrée.\nI had things to do.\tJ'ai eu des choses à faire.\nI had to accept it.\tJ'ai dû l'accepter.\nI had to lie again.\tJ'ai dû mentir à nouveau.\nI had to lie again.\tIl m'a fallu à nouveau mentir.\nI had to walk home.\tJ'ai dû rentrer à la maison à pied.\nI handed him a map.\tJe lui tendis une carte.\nI hate all of them.\tJe les hais tous.\nI hate all of them.\tJe les hais toutes.\nI hate her parents.\tJe déteste ses parents.\nI hate his parents.\tJe déteste ses parents.\nI hate my computer.\tJe déteste mon ordinateur.\nI hate my roommate.\tJe déteste mon colocataire.\nI hate my roommate.\tJe déteste ma colocataire.\nI hate these words.\tJe déteste ces mots.\nI hate this carpet.\tJe déteste ce tapis.\nI hate this carpet.\tJe déteste cette moquette.\nI hate this school.\tJe hais cette école.\nI hate this school.\tJe déteste cette école.\nI hate to complain.\tJe déteste me plaindre.\nI have a black eye.\tJ'ai un œil au beurre noir.\nI have a dry cough.\tJ'ai une toux sèche.\nI have a fish tank.\tJ'ai un aquarium.\nI have a glass eye.\tJ'ai un œil de verre.\nI have a pain here.\tJ'ai mal ici.\nI have a toothache.\tJ'ai mal aux dents.\nI have few friends.\tJ'ai peu d'amis.\nI have frizzy hair.\tJ'ai les cheveux crêpus.\nI have information.\tJ'ai des informations.\nI have information.\tJe dispose d'informations.\nI have lost my key.\tJ'ai perdu ma clef.\nI have lost my pen.\tJ'ai perdu mon stylo.\nI have many dreams.\tJ'ai beaucoup de rêves.\nI have my own room.\tJe dispose de ma propre chambre.\nI have my own room.\tJ'ai une salle pour moi tout seul.\nI have no appetite.\tJe n'ai pas d'appétit.\nI have no children.\tJe n'ai pas d'enfants.\nI have no patience.\tJe n'ai pas de patience.\nI have no religion.\tJe n'ai pas de religion.\nI have no religion.\tJe suis dépourvu de religion.\nI have no religion.\tJe n'ai aucune religion.\nI have no siblings.\tJe n'ai pas de frères et sœurs.\nI have one brother.\tJ'ai un frère.\nI have seen enough.\tJ'en ai assez vu.\nI have small hands.\tJ'ai de petites mains.\nI have to dress up.\tJe dois m'habiller chic.\nI have to dress up.\tJe dois me mettre sur mon trente-et-un.\nI have to dress up.\tJe dois me saper.\nI have to dress up.\tJe dois me faire beau.\nI have to eat, too.\tJe dois manger, aussi.\nI have to exercise.\tJ'ai besoin de m'exercer.\nI have to find Tom.\tJe dois trouver Tom.\nI have to find her.\tJe dois la trouver.\nI have to know now.\tJe dois savoir maintenant.\nI have to know why.\tJe dois savoir pourquoi.\nI have to meet him.\tJe dois le rencontrer.\nI have to paint it.\tJe dois le peindre.\nI have to paint it.\tJe dois la peindre.\nI have to warn him.\tJe dois l'avertir.\nI have to warn him.\tIl faut que je l'avertisse.\nI have two cameras.\tJ'ai deux appareils photo.\nI have two cousins.\tJ'ai deux cousins.\nI have two cousins.\tJ'ai deux cousines.\nI have two nephews.\tJ'ai deux neveux.\nI have two tickets.\tJ'ai deux tickets.\nI heard Tom scream.\tJ'ai entendu Tom crier.\nI heard every word.\tJ'ai entendu chaque mot.\nI heard everything.\tJ'ai tout entendu.\nI heard everything.\tJ'entendis tout.\nI heard explosions.\tJ'ai entendu des explosions.\nI heard him go out.\tJe l'ai entendu sortir.\nI heard him go out.\tJe l'entendis sortir.\nI hid it somewhere.\tJe l'ai caché quelque part.\nI hope Tom has fun.\tJ'espère que Tom s'amuse.\nI hope Tom is safe.\tJ'espère que Tom est en sécurité.\nI hope you're well.\tJ'espère que vous vous portez bien.\nI hope you're well.\tJ'espère que tu te portes bien.\nI jog twice a week.\tJe cours deux fois par semaine.\nI just emailed you.\tJe viens de vous envoyer un courriel.\nI just emailed you.\tJe viens de t'envoyer un courriel.\nI just got a raise.\tJe viens d'obtenir une augmentation de salaire.\nI just got an idea.\tJe viens d'avoir une idée.\nI just got engaged.\tJe viens de me fiancer.\nI just got married.\tJe viens de me marier.\nI just redecorated.\tJe viens de refaire la décoration.\nI just want to cry.\tJe veux juste pleurer.\nI just want to die.\tJe veux simplement mourir.\nI just want to die.\tJe ne veux que mourir.\nI kind of like you.\tJe vous apprécie, en quelque sorte.\nI know Tom cheated.\tJe sais que Tom a triché.\nI know all of them.\tJe les connais tous.\nI know her address.\tJe connais son adresse.\nI know him by name.\tJe le connais de nom.\nI know him by name.\tSon nom m'est connu.\nI know his address.\tJe connais son adresse.\nI know it by heart.\tJe le connais par cœur.\nI know nothing yet.\tJe ne sais encore rien.\nI know nothing yet.\tJe ne sais rien, pour l'instant.\nI know the feeling.\tJe connais ce sentiment.\nI know the feeling.\tJe connais cette sensation.\nI know those women.\tJe connais ces femmes.\nI know what I like.\tJe sais ce que j'aime.\nI know what I'd do.\tJe sais ce que je ferais.\nI know what to say.\tJe sais quoi dire.\nI know who you are.\tJe sais qui tu es.\nI know who you are.\tJe sais qui vous êtes.\nI know you love me.\tJe sais que tu m'aimes.\nI know you love me.\tJe sais que vous m'aimez.\nI know your father.\tJe connais ton père.\nI know your mother.\tJe connais votre mère.\nI know your mother.\tJe connais ta mère.\nI lack imagination.\tJe manque d'imagination.\nI laughed out loud.\tJ'ai éclaté de rire.\nI lay down to rest.\tJe me suis allongé pour me reposer.\nI lead a busy life.\tJe mène une vie prenante.\nI led that mission.\tJ'ai conduit cette mission.\nI led that mission.\tJ'ai pris la tête de cette mission.\nI left it unlocked.\tJe l'ai laissé déverrouillé.\nI left it unlocked.\tJe l'ai laissée déverrouillée.\nI left my bag here.\tJ'ai laissé mon sac ici.\nI let you catch me.\tJe vous ai laissée m'attraper.\nI let you catch me.\tJe vous ai laissé m'attraper.\nI let you catch me.\tJe vous ai laissés m'attraper.\nI let you catch me.\tJe vous ai laissées m'attraper.\nI let you catch me.\tJe t'ai laissée m'attraper.\nI let you catch me.\tJe t'ai laissé m'attraper.\nI like Irish music.\tJ'aime la musique irlandaise.\nI like a challenge.\tJ'aime le défi.\nI like all of them.\tJe les aime tous.\nI like all of them.\tJe les aime toutes.\nI like all of them.\tJe les apprécie tous.\nI like all of them.\tJe les apprécie toutes.\nI like being alone.\tJ'aime être seul.\nI like busy places.\tJ'aime les endroits débordant d'activité.\nI like candlelight.\tMoi, j'aime bien la lumière des bougies.\nI like candlelight.\tJ’aime la lumière des bougies.\nI like candlelight.\tJ'aime bien la lumière des bougies.\nI like comic books.\tJ'aime les bandes dessinées.\nI like disco music.\tJ'aime le disco.\nI like good coffee.\tJ'aime du bon café.\nI like it that way.\tC'est ainsi que je l'apprécie.\nI like it that way.\tJe l'aime ainsi.\nI like living here.\tJ'aime vivre ici.\nI like mathematics.\tJ'aime les mathématiques.\nI like mathematics.\tJ'aime les maths.\nI like my teachers.\tJ'aime mes professeurs.\nI like short poems.\tJ'aime les petits poèmes.\nI like that answer.\tJ'apprécie cette réponse.\nI like that answer.\tJ'aime cette réponse.\nI like their house.\tJ'aime leur maison.\nI like this answer.\tJ'apprécie cette réponse.\nI like this custom.\tJ'aime cette coutume.\nI like to be early.\tJ'aime être en avance.\nI like to think so.\tJ'aime le penser.\nI like to watch TV.\tJ'aime regarder la télé.\nI like watching TV.\tJ'aime regarder la télé.\nI like watching TV.\tJ'aime regarder la télévision.\nI like your mirror.\tJ'aime ton miroir.\nI like your outfit.\tJ'aime votre tenue.\nI like your outfit.\tJ'aime ta tenue.\nI liked that movie.\tJ'aime ce film.\nI liked your story.\tJ'ai bien aimé ton histoire.\nI live in Kakogawa.\tJ'habite à Kakogawa.\nI live in the city.\tJ'habite en ville.\nI lived in poverty.\tJ'ai vécu dans la pauvreté.\nI looked around me.\tJe regardai autour de moi.\nI looked around me.\tJ'ai regardé autour de moi.\nI lost my car keys.\tJ'ai perdu mes clés de voiture.\nI lost my umbrella.\tJ'ai égaré mon parapluie.\nI lost your number.\tJ'ai perdu ton numéro.\nI lost your number.\tJ'ai perdu votre numéro.\nI love Korean food.\tJ'adore la cuisine coréenne.\nI love a challenge.\tJ'adore les défis.\nI love apple juice.\tJ'adore le jus d'orange.\nI love bearded men.\tJ'adore les barbus.\nI love being alone.\tJ'adore être seul.\nI love being alone.\tJ'adore me trouver seul.\nI love being alone.\tJ'adore être seule.\nI love being alone.\tJ'adore me trouver seule.\nI love being right.\tJ'adore avoir raison.\nI love both of you.\tJe vous aime tous les deux.\nI love both of you.\tJe vous aime toutes les deux.\nI love comic books.\tJ'aime les bandes dessinées.\nI love comic books.\tJ'adore les bandes dessinées.\nI love comic books.\tJ'adore la bande dessinée.\nI love my children.\tJ'aime mes enfants.\nI love my daughter.\tJ'adore ma fille.\nI love summer rain.\tJ'aime la pluie d'été.\nI love your garden.\tJ'adore votre jardin.\nI love your garden.\tJ'adore ton jardin.\nI love your jacket.\tJ'adore votre veste.\nI love your jacket.\tJ'adore ta veste.\nI loved that house.\tJ'ai adoré cette maison.\nI made a few calls.\tJ'ai passé quelques appels.\nI made a few calls.\tJ'ai passé quelques coups de fil.\nI made a pot roast.\tJ'ai fait un rôti.\nI made a pot roast.\tJe fis un rôti.\nI made her a dress.\tJe lui ai confectionné une robe.\nI made my decision.\tJ'ai pris ma décision.\nI made no mistakes.\tJe n'ai pas commis d'erreurs.\nI made no promises.\tJe n'ai pas fait de promesses.\nI made photocopies.\tJ'ai fait des photocopies.\nI made them myself.\tJe les ai faites moi-même.\nI made them myself.\tJe les ai faits moi-même.\nI made you cookies.\tJe vous ai fait des cookies.\nI may die tomorrow.\tJe pourrais mourir demain.\nI may not graduate.\tIl se peut que je ne passe pas.\nI mean you no harm.\tJe ne vous veux aucun mal.\nI mean you no harm.\tJe ne te veux aucun mal.\nI met an old woman.\tJ'ai rencontré une vieille femme.\nI met him just now.\tJe viens de le rencontrer.\nI miss her so much.\tElle me manque tellement.\nI miss you already.\tVous me manquez déjà.\nI miss you already.\tTu me manques déjà.\nI miss you so much.\tTu me manques tellement.\nI missed my flight.\tJ'ai manqué mon vol.\nI missed my flight.\tJ'ai loupé mon vol.\nI moved last month.\tJ'ai déménagé le mois dernier.\nI must be dreaming.\tJe dois rêver.\nI must concentrate.\tIl me faut me concentrer.\nI must concentrate.\tJe dois me concentrer.\nI must destroy you.\tJe dois te détruire.\nI must destroy you.\tJe dois vous détruire.\nI must find my key.\tJe dois trouver ma clef.\nI need a mouse pad.\tJ'ai besoin d'un tapis de souris.\nI need a volunteer.\tJ'ai besoin d'un volontaire.\nI need an envelope.\tJ'ai besoin d'une enveloppe.\nI need another one.\tIl m'en faut un autre.\nI need another one.\tIl m'en faut une autre.\nI need hand lotion.\tJ'ai besoin de lotion pour les mains.\nI need information.\tIl me faut des informations.\nI need inspiration.\tIl me faut de l'inspiration.\nI need some advice.\tJ'ai besoin de quelques conseils.\nI need some nutmeg.\tIl me faut de la noix de muscade.\nI need someone now.\tJ'ai besoin de quelqu'un, maintenant.\nI need to be alone.\tJ'ai besoin d'être seul.\nI need to be alone.\tJ'ai besoin de me trouver seul.\nI need to go there.\tJ'ai besoin d'y aller.\nI need to know now.\tJ'ai besoin de savoir maintenant.\nI need your advice.\tJ’ai besoin de ton conseil.\nI needed the money.\tJ'avais besoin de l'argent.\nI never blamed you.\tJe ne t'ai jamais blâmé.\nI never blamed you.\tJe ne vous ai jamais blâmé.\nI never doubted it.\tJe n'en ai jamais douté.\nI never drink wine.\tJe ne bois jamais de vin.\nI never got caught.\tJe ne me suis jamais fait prendre.\nI never got caught.\tJe ne m'y suis jamais fait prendre.\nI never touch beer.\tJe ne bois jamais de bière.\nI never touched it.\tJe n'y ai jamais touché.\nI obeyed the rules.\tJ'ai obéi aux règles.\nI often read books.\tJe lis souvent des livres.\nI oiled my bicycle.\tJ'ai lubrifié mon vélo.\nI oiled my bicycle.\tJ'ai huilé mon vélo.\nI only did my duty.\tJe n'ai fait que mon devoir.\nI only did my duty.\tJe ne fis que mon devoir.\nI only drink water.\tJe ne bois que de l'eau.\nI owe you a dinner.\tJe te dois un dîner.\nI owe you a dinner.\tJe vous dois un dîner.\nI panicked and ran.\tJ'ai paniqué et couru.\nI play video games.\tJe joue aux jeux vidéo.\nI promise I'll try.\tJe promets que j'essaierai.\nI put my helmet on.\tJ'enfile mon casque.\nI ran to my mother.\tJe courus voir ma mère.\nI ran to my mother.\tJ'ai couru voir ma mère.\nI read comic books.\tJe lis des bandes dessinées.\nI read your report.\tJ'ai lu ton rapport.\nI read your report.\tJ'ai lu votre rapport.\nI really hate this.\tJe déteste vraiment ça.\nI really like snow.\tJ'adore la neige.\nI really like that.\tÇa me plaît beaucoup.\nI really love cats.\tJ'adore vraiment les chats.\nI really need this.\tJ'en ai vraiment besoin.\nI really needed it.\tJ'en avais vraiment besoin.\nI really should go.\tJe devrais vraiment y aller.\nI refuse to answer.\tJe refuse de répondre.\nI refuse to answer.\tJe me refuse à répondre.\nI refused at first.\tJ'ai tout d'abord refusé.\nI remain skeptical.\tJe reste sceptique.\nI remember it well.\tJe m'en souviens bien.\nI remembered wrong.\tJe me le suis rappelé de travers.\nI repeated my name.\tJe répétai mon nom.\nI repeated my name.\tJ'ai répété mon nom.\nI run a tight ship.\tJe fais tourner une bonne petite affaire.\nI said he could go.\tJ'ai dit qu'il pouvait y aller.\nI said he could go.\tJe dis qu'il pouvait y aller.\nI said he could go.\tJ'ai dit qu'il pouvait partir.\nI said he could go.\tJ'ai dit qu'il pourrait partir.\nI said he could go.\tJe dis qu'il pourrait y aller.\nI saw him just now.\tJe viens juste de le voir.\nI saw the man jump.\tJ'ai vu l'homme sauter.\nI saw the pictures.\tJ'ai vu les images.\nI saw them kissing.\tJe les ai vus s'embrasser.\nI saw them kissing.\tJe les ai vues s'embrasser.\nI saw what you did.\tJ'ai vu ce que tu as fait.\nI saw what you did.\tJ'ai vu ce que vous avez fait.\nI saw what you did.\tJe vis ce que tu avais fait.\nI saw what you did.\tJe vis ce que vous aviez fait.\nI saw you with Tom.\tJe t'ai vue avec Tom.\nI should go to bed.\tJe devrais aller au lit.\nI should take this.\tJe devrais prendre ceci.\nI should thank you.\tJe devrais vous remercier.\nI should've called.\tJ'aurais dû appeler.\nI shower every day.\tJe me douche quotidiennement.\nI signed the check.\tJ'ai signé le chèque.\nI slapped his face.\tJe lui mis une baffe.\nI sleep in my room.\tJe dors dans ma chambre.\nI sleep on my side.\tJe dors sur le côté.\nI slept nine hours.\tJ'ai dormi pendant 9 heures.\nI slept on the bus.\tJ'ai dormi dans le bus.\nI smoke cigarettes.\tJe fume des cigarettes.\nI sort of like him.\tJe l'apprécie, en quelque sorte.\nI spilled my drink.\tJ'ai renversé mon verre.\nI spilled my drink.\tJ'ai renversé ma boisson.\nI still don't know.\tJe ne sais toujours pas.\nI still don't know.\tJ'ignore encore.\nI still enjoy that.\tJ'y prends toujours plaisir.\nI still enjoy that.\tJ'y prends encore plaisir.\nI still want to go.\tJe veux toujours y aller.\nI stopped laughing.\tJ'ai arrêté de rire.\nI stopped laughing.\tJ'ai cessé de rire.\nI stopped to smoke.\tJe me suis arrêté pour fumer.\nI suggest we hurry.\tJe suggère que nous nous hâtions.\nI suggest we hurry.\tJe suggère que nous nous dépêchions.\nI surprised myself.\tJe me suis surpris.\nI surprised myself.\tJe me suis surprise.\nI think I did well.\tJe pense avoir bien fait.\nI think I did well.\tJe pense avoir réussi.\nI think I did well.\tJe pense m'en être bien sorti.\nI think I did well.\tJe pense m'en être bien sortie.\nI think Tom did it.\tJe pense que c'est Tom le responsable.\nI think Tom is old.\tJe pense que Tom est âgé.\nI think Tom is sad.\tJe pense que Tom est triste.\nI think Tom's here.\tJe pense que Tom est ici.\nI think he'll come.\tJe pense qu'il viendra.\nI think he's happy.\tJe crois qu'il est heureux.\nI think he's lying.\tJe pense qu'il ment.\nI think he's right.\tJe pense qu'il a raison.\nI think he's right.\tJe crois qu'il a raison.\nI think he's tired.\tJe pense qu'il est fatigué.\nI think it's funny.\tJe pense que c'est drôle.\nI think that helps.\tJe pense que ça aide.\nI think that's Tom.\tJe pense que c'est Tom.\nI think we're done.\tJe pense que nous en avons fini.\nI think we're even.\tJe pense que nous sommes à égalité.\nI think you did it.\tJe pense que tu l'as fait.\nI think you did it.\tJe pense que vous l'avez fait.\nI think you did it.\tJe pense que c'est vous qui l'avez fait.\nI think you did it.\tJe pense que c'est toi qui l'a fait.\nI thought you knew.\tJe pensais que vous saviez.\nI thought you knew.\tJe pensais que tu savais.\nI thought you quit.\tJe pensais que tu avais démissionné.\nI totally disagree.\tJe suis totalement en désaccord.\nI tried everything.\tJ'ai tout essayé.\nI tried everything.\tJ'ai tout tenté.\nI tried not to cry.\tJ'ai essayé de ne pas pleurer.\nI twisted my ankle.\tJe me suis foulé la cheville.\nI use it every day.\tJe l'utilise tous les jours.\nI used to be a cop.\tJ'étais flic.\nI walked to school.\tJe marchai jusqu'à l'école.\nI walked to school.\tJ'ai marché jusqu'à l'école.\nI walked to school.\tJe suis allé à pied à l'école.\nI walked to school.\tJ'allai à pied à l'école.\nI walked to school.\tJe me rendis à pied à l'école.\nI walked to school.\tJe me suis rendu à pied à l'école.\nI want a boyfriend.\tJe veux un petit ami.\nI want a boyfriend.\tJe veux un petit copain.\nI want a boyfriend.\tJe veux un jules.\nI want a challenge.\tJe veux un défi.\nI want a low table.\tJe veux une table basse.\nI want a new dress.\tJe veux une nouvelle robe.\nI want an attorney.\tJe veux un avocat.\nI want many things.\tJe veux de nombreuses choses.\nI want my job back.\tJe veux qu'on me rende mon boulot.\nI want my key back.\tJe veux qu'on me rende ma clé.\nI want my key back.\tJe veux que tu me rendes ma clé.\nI want my key back.\tJe veux que vous me rendiez ma clé.\nI want to be heard.\tJe veux être entendue.\nI want to be heard.\tJe veux être entendu.\nI want to die soon.\tJe veux bientôt mourir.\nI want to enjoy it.\tJe veux en profiter.\nI want to go there.\tJe veux y aller.\nI want to have fun.\tJe veux m'amuser.\nI want to hold you.\tJe veux te tenir.\nI want to join you.\tJe veux me joindre à vous.\nI want to join you.\tJe veux me joindre à toi.\nI want to keep one.\tJe veux en garder un.\nI want to keep one.\tJe veux en garder une.\nI want to kiss Tom.\tJe veux embrasser Tom.\nI want to know now.\tJe veux le savoir maintenant.\nI want to know why.\tJe veux savoir pourquoi.\nI want to see more.\tJe veux en voir davantage.\nI want to see them.\tJe veux les voir.\nI want to see this.\tJe veux voir ceci.\nI want to sit down.\tJe veux m'asseoir.\nI want to talk now.\tJe veux parler maintenant.\nI want to tell you.\tJe veux vous le dire.\nI want to tell you.\tJe veux te le dire.\nI want to warn you.\tJe veux vous avertir.\nI want to warn you.\tJe veux t'avertir.\nI want you to sing.\tJe veux que tu chantes.\nI want you to sing.\tJe veux que vous chantiez.\nI want you to sing.\tJe voudrais que tu chantes une chanson.\nI want you to stop.\tJe veux que tu arrêtes.\nI want you to talk.\tJe veux que vous parliez.\nI want you to talk.\tJe veux que tu parles.\nI wanted red shoes.\tJe voulais des chaussures rouges.\nI wanted to change.\tJe voulais changer.\nI wanted to change.\tJ'ai voulu changer.\nI wanted to say no.\tJe voulais dire non.\nI was able to knit.\tJ'étais capable de tricoter.\nI was almost right.\tJ'avais presque raison.\nI was almost right.\tJ'ai presque eu raison.\nI was at home then.\tJ'étais alors chez moi.\nI was at the party.\tJ'étais à la fête.\nI was born in 1960.\tJe suis né en 1960.\nI was born in 1972.\tJe suis né en 1972.\nI was born in 1972.\tJe suis né en mille neuf cent soixante-douze.\nI was born in 1979.\tJe suis né en 1979.\nI was busy all day.\tJ'ai été occupé toute la journée.\nI was busy cooking.\tJ'étais occupé à cuisiner.\nI was busy cooking.\tJ'étais occupé à faire la cuisine.\nI was busy cooking.\tJ'étais occupée à faire la cuisine.\nI was busy cooking.\tJ'étais occupée à cuisiner.\nI was disappointed.\tJ'étais déçue.\nI was disqualified.\tJ'ai été disqualifié.\nI was disqualified.\tJ'ai été disqualifiée.\nI was expecting it!\tJe m'y attendais !\nI was forced to go.\tOn m'a forcé à y aller.\nI was forced to go.\tJ'ai été forcé à y aller.\nI was forced to go.\tJ'ai été forcé d'y aller.\nI was just curious.\tJ'étais juste curieux.\nI was just curious.\tJ'étais juste curieuse.\nI was just leaving.\tJe m'apprêtais à partir.\nI was just teasing.\tJe ne faisais que plaisanter.\nI was married once.\tJ'ai déjà été marié.\nI was married once.\tJ'ai été marié, une fois.\nI was not drinking.\tJe n'étais pas en train de boire.\nI was on the phone.\tJe téléphonais.\nI was only teasing.\tJe ne faisais que plaisanter.\nI was paraphrasing.\tJe paraphrasais.\nI was raised right.\tJ'ai été bien éduqué.\nI was raised right.\tJ'ai été bien éduquée.\nI was really upset.\tJ'étais vraiment triste.\nI was scared stiff.\tJ'avais une peur bleue.\nI was sound asleep.\tJe dormais profondément.\nI was the only man.\tJ'étais le seul homme.\nI was very careful.\tJ'ai fait très attention.\nI was working late.\tJe travaillais tard.\nI was younger then.\tJ'étais plus jeune, alors.\nI was younger then.\tJ'étais plus jeune, à l'époque.\nI wasn't born rich.\tJe ne suis pas né riche.\nI wasn't born rich.\tJe ne suis pas née riche.\nI wasn't consulted.\tOn ne m'a pas consulté.\nI wasn't consulted.\tOn ne m'a pas consultée.\nI wasn't listening.\tJe n'étais pas en train d'écouter.\nI watch television.\tJe regarde la télévision.\nI went to Nagasaki.\tJe suis allé à Nagasaki.\nI went to the shop.\tJe suis allé au magasin.\nI will go on ahead.\tJ'irai en avant.\nI will lose weight.\tJe perdrai du poids.\nI will protect you.\tJe vous protègerai.\nI will protect you.\tJe te protègerai.\nI will wait a week.\tJ'attendrai pendant une semaine.\nI wish I had a car.\tJ'aimerais avoir une voiture.\nI wish I were rich.\tJe souhaite être riche.\nI wish I were rich.\tJe voudrais être riche.\nI wish I were rich.\tJ'aimerais être riche.\nI wish I'd met her.\tJ'aurais aimé la rencontrer.\nI won't bother you.\tJe ne vais pas vous déranger.\nI won't get caught.\tJe ne vais pas me faire pincer.\nI worked on a farm.\tJ'ai travaillé dans une ferme.\nI would've done it.\tJe l'aurais fait.\nI wouldn't do that.\tJe ne le ferais pas.\nI'd better go, too.\tJe ferais mieux d'y aller, moi aussi.\nI'd never hire Tom.\tJe n'engagerais jamais Tom.\nI'd never hire Tom.\tJe ne recruterais jamais Tom.\nI'd never hire Tom.\tJe n'embaucherais jamais Tom.\nI'll be right back.\tJe serai vite de retour.\nI'll be right back.\tJe reviens de suite.\nI'll buy a new one.\tJ'en achèterai un nouveau.\nI'll call the chef.\tJe vais appeler le chef.\nI'll call the chef.\tJe vais appeler le cuisinier.\nI'll call the chef.\tJe vais appeler le cuistot.\nI'll come with you.\tJe viendrai avec toi.\nI'll come with you.\tJe viendrai avec vous.\nI'll come with you.\tJe me joindrai à toi.\nI'll come with you.\tJe me joindrai à vous.\nI'll cover for you.\tJe vais te couvrir.\nI'll do the dishes.\tJe ferai la plonge.\nI'll explain later.\tJ'expliquerai plus tard.\nI'll foot the bill.\tJe paierai l'addition.\nI'll get rid of it.\tJe m'en débarrasserai.\nI'll give it a try.\tJe ferai un essai.\nI'll give it a try.\tJe l'essayerai.\nI'll give it a try.\tJ'en ferai l'essai.\nI'll go downstairs.\tJ'irai en bas.\nI'll go get my car.\tJe vais chercher ma voiture.\nI'll go next month.\tJ'irai le mois prochain.\nI'll handle things.\tJe gèrerai les choses.\nI'll have the same.\tJe vais prendre la même chose.\nI'll help you pack.\tJe t'aiderai à faire tes bagages.\nI'll help you pack.\tJe vous aiderai à faire vos bagages.\nI'll introduce you.\tJe te présenterai.\nI'll never make it.\tJe n'y arriverai jamais.\nI'll pay for lunch.\tJe paierai pour le déjeuner.\nI'll play with you.\tJe jouerai avec toi.\nI'll play with you.\tJe jouerai avec vous.\nI'll remember that.\tJe m'en souviendrai.\nI'll repair it now.\tJe vais le réparer maintenant.\nI'll stop gambling.\tJ'arrêterai de jouer.\nI'll take anything.\tJe prendrai n'importe quoi.\nI'll tell him that.\tJe lui dirai ça.\nI'll tell him that.\tJe le lui dirai.\nI'm Tom's neighbor.\tJe suis le voisin de Tom.\nI'm Tom's neighbor.\tJe suis la voisine de Tom.\nI'm a fast learner.\tJ'apprends vite.\nI'm a little child.\tJe suis un petit enfant.\nI'm a little child.\tJe suis une petite enfant.\nI'm a little dizzy.\tJ'ai un peu la tête qui tourne.\nI'm a little drunk.\tJe suis un peu bourrée.\nI'm a little rusty.\tJe suis un peu rouillé.\nI'm a little tired.\tJe suis un peu fatigué.\nI'm a photographer.\tJe suis photographe.\nI'm about to leave.\tJe suis sur le point de partir.\nI'm afraid I can't.\tJe suis désolé mais je ne peux pas.\nI'm afraid of bats.\tJ'ai peur des chauves-souris.\nI'm afraid of dogs.\tJ'ai peur des chiens.\nI'm always careful.\tJe suis toujours prudent.\nI'm always careful.\tJe suis toujours prudente.\nI'm always thirsty.\tJ'ai toujours soif.\nI'm as tall as Tom.\tJe suis aussi grand que Tom.\nI'm at Tom's house.\tJe suis chez Tom.\nI'm being harassed.\tJe me fais harceler.\nI'm being promoted.\tOn m'a promu.\nI'm being promoted.\tOn m'a promue.\nI'm being promoted.\tJe suis promu.\nI'm being promoted.\tJe suis promue.\nI'm being punished.\tJe suis puni.\nI'm being punished.\tJe suis punie.\nI'm being sensible.\tJe fais preuve de bon sens.\nI'm bleeding badly.\tJe saigne gravement.\nI'm bored to death.\tJe m'ennuie à mourir.\nI'm buying a puppy.\tJ'achète un chiot.\nI'm buying a puppy.\tJe suis en train d'acheter un chiot.\nI'm claustrophobic.\tJe suis claustrophobe.\nI'm coming at once.\tJ'arrive tout de suite.\nI'm coming in July.\tJe viens en juillet.\nI'm counting on it.\tJe compte dessus.\nI'm counting on it.\tJ'y compte.\nI'm drinking water.\tJe bois de l'eau.\nI'm feeling better.\tJe vais mieux.\nI'm feeling hungry.\tJ'ai faim.\nI'm free on Sunday.\tJe suis libre le dimanche.\nI'm from Singapore.\tJe suis de Singapour.\nI'm gaining weight.\tJe prends du poids.\nI'm getting better.\tJe me remets.\nI'm getting hungry.\tJe commence à avoir faim.\nI'm getting sleepy.\tJe commence à avoir sommeil.\nI'm giving it back.\tJe le rends.\nI'm giving it back.\tJe la rends.\nI'm going downtown.\tJe vais en ville.\nI'm going downtown.\tJe me rends en ville.\nI'm going home now.\tJe vais à la maison maintenant.\nI'm going to fight.\tJe vais me battre.\nI'm going to relax.\tJe vais me détendre.\nI'm going to sleep.\tJe vais dormir.\nI'm good at skiing.\tJe suis bon en ski.\nI'm here to listen.\tJe suis ici pour écouter.\nI'm here, aren't I?\tJe suis ici, n'est-ce pas ?\nI'm in charge here.\tIci, c'est moi le patron.\nI'm in good health.\tJe suis en bonne santé.\nI'm in the bathtub.\tJe suis dans la baignoire.\nI'm in trouble now.\tMaintenant, j'ai des ennuis.\nI'm in trouble now.\tDésormais, j'ai des ennuis.\nI'm just a teacher.\tJe ne suis qu'un enseignant.\nI'm just a tourist.\tJe ne suis qu'un touriste.\nI'm just beginning.\tJe commence à peine.\nI'm just beginning.\tJe ne fais que commencer.\nI'm late, aren't I?\tJe suis en retard, n'est-ce pas ?\nI'm laying you off.\tJe te licencie.\nI'm laying you off.\tJe vous licencie.\nI'm learning Czech.\tJ'apprends le tchèque.\nI'm learning music.\tJ'étudie la musique.\nI'm letting you go.\tJe te vire.\nI'm letting you go.\tJe vous vire.\nI'm letting you go.\tJe te laisse partir.\nI'm letting you go.\tJe vous laisse partir.\nI'm letting you go.\tJe te libère.\nI'm letting you go.\tJe vous libère.\nI'm no one special.\tJe ne suis personne de spécial.\nI'm no one special.\tJe ne suis personne de particulier.\nI'm not a criminal.\tJe ne suis pas un criminel.\nI'm not a criminal.\tJe ne suis pas une criminelle.\nI'm not a magician.\tJe ne suis pas magicien.\nI'm not busy today.\tJe ne suis pas occupé aujourd'hui.\nI'm not delusional.\tJe ne souffre pas de lubies.\nI'm not denying it.\tJe ne le nie point.\nI'm not doing that.\tJe ne suis pas en train de faire ça.\nI'm not going away.\tJe ne m'en vais pas.\nI'm not good at it.\tJe ne suis pas bon à ça.\nI'm not happy here.\tJe ne suis pas heureux ici.\nI'm not hungry yet.\tJe n'ai pas encore faim.\nI'm not in trouble.\tJe n'ai pas de problème.\nI'm not invincible.\tJe ne suis pas invincible.\nI'm not late, am I?\tJe ne suis pas en retard, n'est-ce pas ?\nI'm not old enough.\tJe ne suis pas assez vieux.\nI'm not old enough.\tJe ne suis pas assez vieille.\nI'm not overweight.\tJe ne suis pas en surpoids.\nI'm not photogenic.\tJe ne suis pas photogénique.\nI'm not quite sure.\tJe ne suis pas tout à fait sûr.\nI'm not that drunk.\tJe ne suis pas si saoul.\nI'm not that drunk.\tJe ne suis pas si saoule.\nI'm not your enemy.\tJe ne suis pas votre ennemi.\nI'm not your enemy.\tJe ne suis pas votre ennemie.\nI'm not your enemy.\tJe ne suis pas ton ennemi.\nI'm not your enemy.\tJe ne suis pas ton ennemie.\nI'm out of control.\tJe suis incontrôlable.\nI'm ready now, Tom.\tJe suis maintenant prêt, Tom.\nI'm ready to start.\tJe suis prêt à démarrer.\nI'm really shocked.\tJe suis vraiment choqué.\nI'm really shocked.\tJe suis vraiment choquée.\nI'm seeing someone.\tJe vois quelqu'un.\nI'm so embarrassed.\tJe suis tellement embarrassé.\nI'm so embarrassed.\tJe suis tellement embarrassée.\nI'm somewhat dizzy.\tJ'ai un peu la tête qui tourne.\nI'm sorry I'm late.\tExcusez mon retard.\nI'm still in shock.\tJe suis encore sous le choc.\nI'm still not sure.\tJe ne suis toujours pas sûr.\nI'm still not sure.\tJe ne suis toujours pas sûre.\nI'm suddenly tired.\tJe suis soudainement fatigué.\nI'm suddenly tired.\tJe suis tout à coup fatiguée.\nI'm supporting you.\tJe vous soutiens.\nI'm terribly sorry.\tJe suis terriblement désolé.\nI'm trying my best.\tJe fais de mon mieux.\nI'm twice your age.\tJ'ai le double de ton âge.\nI'm unenthusiastic.\tJe suis sans enthousiasme.\nI'm using that cup.\tJe fais usage de cette tasse.\nI'm using that cup.\tJ'utilise cette tasse.\nI'm using that cup.\tJe suis en train d'utiliser cette tasse.\nI'm very fortunate.\tJ'ai beaucoup de chance.\nI'm very fortunate.\tJ'ai la baraka.\nI'm very happy now.\tJe suis très heureux maintenant.\nI'm very happy now.\tMaintenant, je suis très heureuse.\nI'm very impressed.\tJe suis fort impressionné.\nI'm very impressed.\tJe suis très impressionnée.\nI'm very impressed.\tJe suis fort impressionnée.\nI'm writing a book.\tJe suis en train d'écrire un bouquin.\nI've been all over.\tJ'ai été partout.\nI've been drinking.\tJ'ai bu.\nI've been laid off.\tJ'ai été licencié.\nI've been promoted.\tJ'ai été promu.\nI've been promoted.\tJ'ai été promue.\nI've caught a cold.\tJ'ai attrapé un rhume.\nI've caught a cold.\tJ'ai attrapé froid.\nI've caught a cold.\tJ'ai contracté un rhume.\nI've done all that.\tJ'ai fait tout cela.\nI've gained weight.\tJ'ai pris du poids.\nI've got two books.\tJ'ai deux livres.\nI've gotten better.\tJe me suis amélioré.\nI've heard nothing.\tJe n'ai rien entendu.\nI've just seen Tom.\tJe viens de voir Tom.\nI've misjudged you.\tJe t'ai méjugé.\nI've never met her.\tJe ne l'ai jamais rencontrée.\nI've never met him.\tJe ne l'ai jamais rencontré.\nI've never met him.\tJe ne le rencontrai jamais.\nI've seen all that.\tJ'ai vu tout cela.\nI've seen them all.\tJe les ai tous vus.\nI've seen them all.\tJe les ai toutes vues.\nIgnorance is bliss.\tL'ignorance, c'est la félicité.\nIs Fox News biased?\tFox News est-il partial ?\nIs Fox News biased?\tFox News est-elle partiale ?\nIs Tom able to eat?\tEst-ce que Tom est capable de manger ?\nIs Tom at home now?\tEst-ce que Tom est chez lui maintenant?\nIs Tom from Boston?\tTom est-il de Boston ?\nIs Tom from Boston?\tEst-ce que Tom est de Boston ?\nIs Tom on the boat?\tTom est-il à bord du bateau ?\nIs anyone here yet?\tQuiconque est-il déjà là ?\nIs anyone in there?\tQuiconque se trouve-t-il là-dedans ?\nIs anyone in there?\tQui que ce soit se trouve-t-il là-dedans ?\nIs anyone on board?\tQuiconque se trouve-t-il à bord ?\nIs anyone on board?\tQui que ce soit se trouve-t-il à bord ?\nIs anything broken?\tQuoi que ce soit est-il cassé ?\nIs breakfast ready?\tLe petit-déjeuner est-il prêt ?\nIs everybody ready?\tTout le monde est-il prêt ?\nIs everybody ready?\tChacun est-il prêt ?\nIs everyone hungry?\tTout le monde a-t-il faim ?\nIs everything okay?\tTout va bien ?\nIs he back already?\tEst-il déjà de retour ?\nIs he your teacher?\tEst-il votre enseignant ?\nIs it a compliment?\tEst-ce un compliment ?\nIs it a compliment?\tS'agit-il d'un compliment ?\nIs it all paid for?\tTout est-il payé ?\nIs it all paid for?\tTout est-il réglé ?\nIs it five already?\tIl est déjà cinq heures ?\nIs it large enough?\tC'est assez grand ?\nIs it large enough?\tEst-ce suffisamment grand ?\nIs it large enough?\tEst-ce assez grand ?\nIs it satisfactory?\tEst-ce satisfaisant ?\nIs she coming, too?\tVient-elle aussi ?\nIs she your mother?\tEst-elle ta mère ?\nIs she your mother?\tEst-elle votre mère ?\nIs she your sister?\tEst-elle ta sœur ?\nIs she your sister?\tEst-elle votre sœur ?\nIs something wrong?\tQuelque chose ne va pas ?\nIs that deliberate?\tEst-ce délibéré ?\nIs that depressing?\tEst-ce déprimant ?\nIs that not enough?\tN'est-ce pas assez ?\nIs that not normal?\tN'est-ce pas normal ?\nIs that real blood?\tEst-ce du vrai sang ?\nIs that really you?\tEst-ce vraiment toi ?\nIs that your house?\tEst-ce là votre maison ?\nIs that your house?\tEst-ce là ta maison ?\nIs the dog chained?\tLe chien est-il enchaîné ?\nIs the horse black?\tLe cheval est-il noir ?\nIs the horse black?\tEst-ce que le cheval est noir ?\nIs the house ready?\tLa maison est-elle prête ?\nIs the window open?\tLa fenêtre est-elle ouverte ?\nIs there a message?\tY a-t-il un message ?\nIs there a milkman?\tY a-t-il un laitier ?\nIs there a problem?\tY a-t-il un problème ?\nIs there a problem?\tIl y a un problème ?\nIs there a problem?\tY a-t-il un problème ?\nIs there any sugar?\tY a-t-il du sucre ?\nIs there hot water?\tY a-t-il de l'eau chaude ?\nIs this book yours?\tCe livre est-il à toi ?\nIs this book yours?\tEst-ce que ce livre est à toi ?\nIs this everything?\tC'est tout ?\nIs this place safe?\tEst-ce que cet endroit est sûr ?\nIs this place safe?\tCet endroit est-il sûr ?\nIs this seat taken?\tCette place est-elle libre ?\nIs this your house?\tEst-ce ta maison ?\nIs this your house?\tEst-ce votre maison ?\nIs this your money?\tEst-ce ton argent ?\nIs this your money?\tEst-ce votre argent ?\nIs your gun loaded?\tTon arme est-elle chargée ?\nIsn't she a doctor?\tN'est-elle pas médecin ?\nIt all makes sense.\tTout ceci a du sens.\nIt came to nothing.\tCela ne mena à rien.\nIt can not be true.\tÇa ne peut être vrai.\nIt can't be helped.\tOn n'y peut rien.\nIt could be a trap.\tCela pourrait être un piège.\nIt didn't work out.\tÇa n'a pas marché.\nIt didn't work out.\tÇa n'a pas réussi.\nIt feels like rain.\tOn dirait qu'il va pleuvoir.\nIt has no parallel.\tÇa n'a pas de parallèle.\nIt is Monday today.\tAujourd'hui c'est lundi.\nIt is Pochi's food.\tC'est la nourriture de Pochi.\nIt is a long story.\tC'est une longue histoire.\nIt is almost three.\tIl est presque trois heures.\nIt is almost three.\tIl est presque quinze heures.\nIt is already dark.\tIl fait déjà sombre.\nIt is cloudy today.\tC'est nuageux aujourd'hui.\nIt is really cheap.\tC'est vraiment bon marché.\nIt is too long ago.\tC'est il y a trop longtemps.\nIt isn't expensive.\tCe n'est pas cher.\nIt looks like rain.\tIl semble pleuvoir.\nIt looks like rain.\tIl semble qu'il pleuve.\nIt looks like snow.\tÇa ressemble à de la neige.\nIt looks very nice.\tÇa a l'air très sympa.\nIt looks very nice.\tCela a l'air très agréable.\nIt makes sense now.\tC'est sensé, désormais.\nIt might be enough.\tIl se pourrait que cela suffise.\nIt rained for days.\tIl a plu pendant des jours.\nIt snowed in Osaka.\tIl a neigé à Osaka.\nIt sounds familiar.\tÇa semble familier.\nIt started to rain.\tIl s'est mis à pleuvoir.\nIt started to snow.\tIl se mit à neiger.\nIt started to snow.\tIl commença à neiger.\nIt was a bad movie.\tC'était un mauvais film.\nIt was a bad movie.\tC'était un film mauvais.\nIt was a nightmare.\tC'était un cauchemar.\nIt was all planned.\tTout avait été prévu.\nIt was all so easy.\tTout était si facile.\nIt was frightening.\tC'était effrayant.\nIt was good enough.\tC'était assez bon.\nIt was handcrafted.\tC'était confectionné à la main.\nIt was handcrafted.\tC'était fait main.\nIt was kind of fun.\tC'était en quelque sorte amusant.\nIt was no accident.\tCe n'était pas un accident.\nIt was only a joke.\tC'était juste une blague.\nIt was pitch-black.\tIl faisait noir comme dans un four.\nIt was preventable.\tC'était évitable.\nIt was quite funny.\tC'était assez amusant.\nIt was quite funny.\tC'était plutôt amusant.\nIt was quite funny.\tCe fut plutôt amusant.\nIt was quite funny.\tC'était tout à fait amusant.\nIt was quite funny.\tCe fut assez amusant.\nIt was quite funny.\tÇa a été assez amusant.\nIt was really cold.\tIl faisait vraiment froid.\nIt was sort of fun.\tC'était plutôt amusant.\nIt was sort of fun.\tC'était, en sorte, amusant.\nIt was worth a try.\tÇa valait le coup d'essayer.\nIt was your choice.\tC'était votre choix.\nIt wasn't my fault.\tCe n'était pas ma faute.\nIt wasn't that big.\tCe n'était pas si gros.\nIt wasn't that big.\tIl n'était pas si grand.\nIt wasn't that big.\tElle n'était pas si grande.\nIt wasn't that big.\tIl n'était pas si gros.\nIt wasn't that big.\tElle n'était pas si grosse.\nIt wasn't very fun.\tCe ne fut pas très marrant.\nIt wasn't very fun.\tÇa n'a pas été très marrant.\nIt wasn't very fun.\tÇa n'a pas été très amusant.\nIt wasn't very fun.\tCe ne fut pas très amusant.\nIt won't last long.\tÇa ne durera pas longtemps.\nIt'll be all right.\tÇa va aller.\nIt's a big country.\tC'est un grand pays.\nIt's a bit extreme.\tC'est un peu extrême.\nIt's a coincidence.\tC'est une coïncidence.\nIt's a distraction.\tC‘est une distraction.\nIt's a good camera.\tC'est une bonne caméra.\nIt's a good camera.\tC'est un bon appareil photo.\nIt's a good choice.\tC'est une bonne choix.\nIt's a good school.\tC'est une bonne école.\nIt's a good system.\tC'est un bon système.\nIt's a happy thing.\tC'est une chose heureuse.\nIt's a proven fact.\tC'est un fait prouvé.\nIt's a small world.\tLe monde est petit.\nIt's a strange one.\tC'en est un étrange.\nIt's a strange one.\tC'en est une étrange.\nIt's a stupid idea.\tC'est une idée stupide.\nIt's a stupid rule.\tC'est une règle stupide.\nIt's a vague story.\tC'est une histoire vague.\nIt's all our fault.\tTout est de notre faute.\nIt's already seven.\tIl est déjà 7 heures.\nIt's an experiment.\tC'est une expérience.\nIt's an investment.\tC'est un investissement.\nIt's an old custom.\tC'est une vieille coutume.\nIt's at the corner.\tÇa se trouve au coin.\nIt's booby-trapped.\tC'est piégé.\nIt's bound to rain.\tIl va certainement pleuvoir.\nIt's cold out here.\tIl fait froid, ici dehors.\nIt's crowded today.\tIl y a foule aujourd'hui.\nIt's crowded today.\tC'est plein aujourd'hui.\nIt's disconcerting.\tC'est déconcertant.\nIt's far too small.\tC'est beaucoup trop petit.\nIt's for my family.\tC'est pour ma famille.\nIt's fun to travel.\tC'est rigolo de voyager.\nIt's fun to travel.\tC'est marrant de voyager.\nIt's getting there.\tÇa arrive.\nIt's good training.\tC'est un bon entraînement.\nIt's got to be now.\tIl faut que ce soit maintenant.\nIt's gotten better.\tÇa s'est amélioré.\nIt's gotten better.\tIl s'est amélioré.\nIt's gotten better.\tElle s'est améliorée.\nIt's heartbreaking.\tC'est très triste.\nIt's him, isn't it?\tC'est lui, n'est-ce pas ?\nIt's his, isn't it?\tC'est le sien, n'est-ce pas ?\nIt's hot down here.\tIl fait chaud, ici.\nIt's just not fair.\tCe n'est vraiment pas juste.\nIt's just not safe.\tÇa n'est simplement pas sécurisé.\nIt's just too soon.\tC'est juste trop tôt.\nIt's made of brass.\tC'est du laiton.\nIt's merely a joke.\tCe n'est qu'une plaisanterie.\nIt's not a disease.\tIl ne s'agit pas d'une maladie.\nIt's not a holiday.\tCe n'est pas un jour de congé.\nIt's not a problem.\tCe n'est pas un problème.\nIt's not even true.\tCe n'est même pas vrai.\nIt's not his style.\tCe n'est pas son style.\nIt's not just that.\tCe n'est pas que ça.\nIt's not like that.\tCe n'est pas ainsi.\nIt's not my choice.\tCe n'est pas mon choix.\nIt's not necessary.\tCe n'est pas nécessaire.\nIt's not our fault.\tCe n'est pas notre faute.\nIt's not our fault.\tCe n'est pas de notre faute.\nIt's not pertinent.\tCe n'est pas pertinent.\nIt's not safe here.\tOn n'est pas en sécurité, ici.\nIt's not safe here.\tCe n'est pas sans danger, ici.\nIt's not that cold.\tIl ne fait pas si froid.\nIt's not that deep.\tCe n'est pas si profond.\nIt's not that hard.\tCe n'est pas si difficile.\nIt's not that nice.\tCe n'est pas si sympa.\nIt's not too early.\tCe n'est pas trop tôt.\nIt's not very easy.\tCe n'est pas très facile.\nIt's not very good.\tCe n'est pas très bon.\nIt's our only hope.\tC'est notre seul espoir.\nIt's our only hope.\tC'est notre unique espoir.\nIt's our only show.\tC'est notre unique spectacle.\nIt's our only show.\tC'est notre unique salon.\nIt's raining again!\tIl pleut de nouveau !\nIt's raining again.\tIl pleut encore.\nIt's raining again.\tIl pleut à nouveau.\nIt's raining there.\tIl pleut là-bas.\nIt's raining today.\tIl pleut aujourd'hui.\nIt's rather ironic.\tC'est plutôt ironique.\nIt's rather unique.\tC'est plutôt unique.\nIt's really bright.\tC'est vraiment lumineux.\nIt's really simple.\tC'est vraiment simple.\nIt's sad, but true.\tC'est triste mais c'est la vérité.\nIt's so improbable.\tC'est tellement improbable.\nIt's something new.\tC'est quelque chose de nouveau.\nIt's still raining.\tIl pleut encore.\nIt's still snowing.\tIl neige encore.\nIt's the same here.\tIl en va de même ici.\nIt's the same wine.\tC'est le même vin.\nIt's time to leave.\tIl est temps de partir.\nIt's time to leave.\tIl est temps de s'en aller.\nIt's time to party.\tIl est l'heure de faire la fête.\nIt's too dangerous!\tC'est trop dangereux !\nIt's too difficult.\tC'est trop difficile.\nIt's too expensive!\tC'est trop cher !\nIt's too expensive.\tC'est trop cher.\nIt's unforgettable.\tC'est inoubliable.\nIt's very cold now.\tIl fait très froid maintenant.\nIt's very unlikely.\tC'est très improbable.\nIt's very valuable.\tC'est très précieux.\nIt's way too heavy.\tC'est bien trop lourd.\nIt's way too heavy.\tC'est beaucoup trop lourd.\nIt's your decision.\tC'est ton choix.\nIt's your decision.\tC'est votre décision.\nItaly isn't Greece.\tL'Italie n'est pas la Grèce.\nJudge for yourself.\tJuges-en par toi-même !\nJudge for yourself.\tJugez-en par vous-même !\nJudge for yourself.\tJugez-en par vous-mêmes !\nJust do what I did.\tFais juste ce que j'ai fait !\nJust do what I did.\tFaites juste ce que j'ai fait !\nJust do what I say.\tFais juste ce que je dis !\nJust do what I say.\tFaites juste ce que je dis !\nJust don't drop it.\tNe le fais simplement pas tomber !\nJust don't drop it.\tNe le faites simplement pas tomber !\nJust say yes or no.\tDis juste oui ou non !\nJust say yes or no.\tDites juste oui ou non !\nJust water, please.\tUniquement de l'eau, je vous prie.\nJust water, please.\tJuste de l'eau, s'il vous plaît.\nKeep a low profile.\tFais profil bas.\nKeep an eye on him.\tGardez-le à l'œil !\nKeep an eye on him.\tGardez l'œil sur lui !\nKeep an eye on him.\tGarde-le à l'œil !\nKeep an eye on him.\tGarde l'œil sur lui !\nKeep off the grass!\tNe marchez pas sur la pelouse !\nKeep off the grass.\tPelouse interdite.\nKeep off the grass.\tNe pas marcher sur la pelouse.\nKeep out of my way.\tReste en dehors de mon chemin !\nKeep out of my way.\tRestez en dehors de mon chemin !\nKeep the door open.\tGarde la porte ouverte.\nKeep your hands up.\tGarde les mains en l'air !\nKeep your hands up.\tGardez les mains en l'air !\nKeep your head low.\tGarde la tête basse !\nKeep your head low.\tGardez la tête basse !\nKeep your head low.\tFaites profil bas !\nKeep your head low.\tFais profil bas !\nKnowledge is power.\tLe savoir est une force.\nKnowledge is power.\tLe savoir c'est le pouvoir.\nLeave me alone now.\tLaisse-moi tranquille maintenant.\nLeave me alone now.\tLaissez-moi tranquille maintenant.\nLeaves are falling.\tLes feuilles tombent.\nLesson Two is easy.\tLa leçon deux est facile.\nLet Tom do his job.\tLaisse Tom faire son travail.\nLet Tom do his job.\tLaissez Tom faire son travail.\nLet go of the rope.\tLâchez la corde !\nLet go of the rope.\tLâche la corde !\nLet her replace it.\tLaisse-la le remplacer.\nLet me borrow that.\tLaisse-moi emprunter ça.\nLet me borrow that.\tLaisse-moi emprunter cela.\nLet me go with you.\tLaissez-moi y aller avec vous.\nLet me grab my bag.\tLaisse-moi attraper mon sac !\nLet me grab my bag.\tLaissez-moi attraper mon sac !\nLet me handle this.\tLaisse-moi m'occuper de ça.\nLet me handle this.\tLaissez-moi m'en débrouiller.\nLet me handle this.\tLaissez-moi régler ça.\nLet me handle this.\tLaisse-moi régler ça.\nLet me handle this.\tLaisse-moi y faire !\nLet me rephrase it.\tPermettez-moi de le reformuler.\nLet me rephrase it.\tPermets-moi de reformuler.\nLet us out of here.\tSortons d'ici !\nLet's buy this one.\tAchetons celui-ci.\nLet's check it out.\tContrôlons-le.\nLet's check it out.\tContrôlons-la.\nLet's face reality.\tRegardons la réalité en face.\nLet's get cracking!\tC'est parti mon kiki !\nLet's get cracking!\tDémarrons !\nLet's get cracking!\tOn y va !\nLet's get divorced.\tDivorçons.\nLet's get off here.\tDescendons ici.\nLet's hit the road.\tAllons-y !\nLet's hit the road.\tTaillons-nous !\nLet's hit the road.\tOn se casse !\nLet's hit the road.\tCassons-nous !\nLet's hit the road.\tTaillons la route !\nLet's move the bed.\tBougeons le lit !\nLet's not squabble.\tNe nous chamaillons pas !\nLet's not watch TV.\tNe regardons pas la télévision.\nLet's sit up front.\tAsseyons-nous à l'avant.\nLet's stay focused.\tRestons concentrés !\nLet's study French.\tÉtudions le français.\nLet's take the bus.\tPrenons le bus.\nLet's talk outside.\tParlons dehors !\nLet's try to sleep.\tEssayons de dormir.\nLet's wait a while.\tAttendons un moment !\nLife is very short.\tLa vie est fort courte.\nListen, all of you.\tÉcoutez, vous tous.\nLook at it closely.\tRegarde-le attentivement.\nLook at it closely.\tRegarde-la attentivement.\nLook at that house.\tRegarde cette maison.\nLook at that house.\tRegardez cette maison !\nLook in the mirror.\tRegarde dans le miroir.\nLook what happened.\tRegarde ce qui est arrivé.\nLook who's talking.\tRegarde qui dit ça.\nLove doesn't exist.\tL'amour n'existe pas.\nLove is everything.\tL'amour, c'est tout.\nLove is not enough.\tL'amour ne suffit pas.\nLuck doesn't exist.\tLa chance n'existe pas.\nLuck is against me.\tLa chance est contre moi.\nLuck is against me.\tLa chance n'est pas de mon côté.\nMake love, not war.\tFaites l'amour, pas la guerre.\nMary is Tom's wife.\tMarie est la femme de Tom.\nMay I have the key?\tPourrais-je avoir la clé ?\nMay I open the box?\tPuis-je ouvrir la boîte ?\nMay I pay by check?\tPuis-je payer par chèque ?\nMay I run with you?\tJe peux courir avec toi ?\nMay I speak to you?\tPuis-je vous parler ?\nMay I watch TV now?\tPourrais-je regarder la télévision maintenant ?\nMaybe he likes you.\tPeut-être t'apprécie-t-il.\nMaybe he likes you.\tPeut-être vous apprécie-t-il.\nMaybe it's destiny.\tPeut-être est-ce le destin.\nMaybe you're right.\tTu as peut-être raison.\nMaybe you're right.\tPeut-être as-tu raison.\nMaybe you're right.\tPeut-être avez-vous raison.\nMind if I join you?\tCela vous dérange-t-il que je me joigne à vous ?\nMistakes were made.\tDes erreurs furent commises.\nMistakes were made.\tDes erreurs ont été commises.\nMonopolies are bad.\tLes monopoles sont nuisibles.\nMove out of my way.\tSors de mon chemin !\nMove out of my way.\tSortez de mon chemin !\nMusic is universal.\tLa musique est universelle.\nMy arm still hurts.\tMon bras me fait encore souffrir.\nMy arm still hurts.\tMon bras me fait encore mal.\nMy brother is rich.\tMon frère est riche.\nMy car is a Toyota.\tMa voiture est une Toyota.\nMy car won't start.\tMa voiture ne démarre pas.\nMy coach helped me.\tMon entraîneur m'a aidé.\nMy dog is pregnant.\tMa chienne est grosse.\nMy dog is pregnant.\tMa chienne est en gestation.\nMy dream came true.\tMon rêve s'est réalisé.\nMy dress is ruined.\tMa robe est ruinée.\nMy eyes feel itchy.\tMes yeux sont irrités.\nMy family is small.\tMa famille est petite.\nMy father is quiet.\tMon père est taciturne.\nMy father was busy.\tMon père était occupé.\nMy garden is small.\tChez moi le jardin est petit.\nMy hair's too long.\tMes cheveux sont trop longs.\nMy husband is lazy.\tMon mari est paresseux.\nMy jeans won't fit.\tMon jeans n'ira pas.\nMy mother is crazy.\tMa mère est folle.\nMy mother loves me.\tMa mère m'adore.\nMy nose is running.\tMon nez coule.\nMy nose is too big.\tMon nez est trop gros.\nMy parents are old.\tMes parents sont vieux.\nMy watch is broken.\tMa montre est cassée.\nMy wife hates cats.\tMa femme déteste les chats.\nMy wife is Chinese.\tMa femme est chinoise.\nMy wife is Chinese.\tMa femme est Chinoise.\nMy wife is cooking.\tMa femme est en train de faire la cuisine.\nMy wife is cooking.\tMon épouse est en train de cuisiner.\nMy wife's pregnant.\tMa femme est enceinte.\nNeed anything else?\tAutre chose ?\nNeither is correct.\tAucun n'est juste.\nNeither is correct.\tAucune n'est juste.\nNo one believed me.\tPersonne ne me crut.\nNo one believed me.\tPersonne ne m'a cru.\nNo one believed me.\tPersonne ne m'a crue.\nNo one believes me.\tPersonne ne me croit.\nNo one can do that.\tPersonne ne peut faire ça.\nNo one can do that.\tPersonne n'arrive à faire ça.\nNo one can do that.\tPersonne ne parvient à faire ça.\nNo one can hear us.\tPersonne ne peut nous entendre.\nNo one can hear us.\tPersonne ne parvient à nous entendre.\nNo one can help me.\tPersonne ne peut m'aider.\nNo one can help us.\tPersonne ne peut nous aider.\nNo one can stop me.\tPersonne ne peut m'arrêter.\nNo one followed me.\tPersonne ne m'a suivi.\nNo one followed me.\tPersonne ne me suivit.\nNo one is at fault.\tCe n'est la faute de personne.\nNo one is at fault.\tPersonne n'est fautif.\nNo one is immortal.\tPersonne n'est immortel.\nNo one is innocent.\tPersonne n'est innocent.\nNo one is speaking.\tPersonne ne parle.\nNo one is thrilled.\tPersonne n'est ravi.\nNo one looks happy.\tPersonne n'a l'air content.\nNo one respects me.\tPersonne ne me respecte.\nNo one was injured.\tPersonne n'a été blessé.\nNo one was present.\tPersonne n'était présent.\nNo one's convinced.\tPersonne n'est convaincu.\nNo one's convinced.\tPersonne n'en est convaincu.\nNo one's listening.\tPersonne n'écoute.\nNo one's safe here.\tPersonne n'est ici en sécurité.\nNobody believes me.\tPersonne ne me croit.\nNobody can beat me.\tPersonne ne peut me battre.\nNobody can help me.\tPersonne ne peut m'aider.\nNobody can stop it.\tPersonne ne peut y mettre un terme.\nNobody can stop me!\tPersonne ne peut m'arrêter !\nNobody lives there.\tPersonne n'y vit.\nNobody understands.\tPersonne ne comprend.\nNobody was injured.\tPersonne n'a été blessé.\nNobody will notice.\tPersonne ne va remarquer.\nNobody will notice.\tPersonne ne remarquera.\nNothing is forever.\tRien ne dure éternellement.\nNothing is perfect.\tRien n'est parfait.\nNothing is planned.\tRien n'est planifié.\nNothing is strange.\tRien n'est étrange.\nNow I'm in trouble.\tMaintenant, j'ai des ennuis.\nNow I'm in trouble.\tDésormais, j'ai des ennuis.\nNow I'm used to it.\tJ'y suis désormais habitué.\nNow I'm used to it.\tJ'y suis désormais habituée.\nNow I'm wide awake.\tMaintenant je suis bien réveillé.\nNow it's your turn.\tC'est maintenant ton tour.\nNow it's your turn.\tC'est maintenant votre tour.\nNow's not the time.\tCe n'est actuellement pas le moment.\nOh! That's too bad.\tOh ! C'est dommage.\nOnce is not enough.\tUne fois ne suffit pas.\nOur house is yours.\tNotre maison est la vôtre.\nOur house is yours.\tNotre maison est la tienne.\nOut of my way, boy.\tHors de mon chemin, gamin.\nOwls have big eyes.\tLes hiboux sont pourvus de grands yeux.\nPaper burns easily.\tLe papier brûle facilement.\nPlease call him up.\tTéléphone-lui.\nPlease don't do it.\tS'il vous plaît, non!\nPlease get dressed.\tHabillez-vous s'il vous plaît.\nPlease have a seat.\tS'il vous plaît, asseyez-vous !\nPlease have a seat.\tVeuillez prendre un fauteuil.\nPlease have a seat.\tVeuillez vous asseoir.\nPlease let us know.\tFais-le nous savoir, je te prie !\nPlease look for it.\tCherche-le, je te prie.\nPlease look for it.\tCherchez-le, je vous prie.\nPlease look for it.\tCherche-la, je te prie.\nPlease look for it.\tCherchez-la, je vous prie.\nPlease make my bed.\tVeuillez faire mon lit !\nPlease repair this.\tVeuillez réparer ceci.\nPlease sing a song.\tChante une chanson s'il te plaît.\nPlease step inside.\tEntrez, je vous prie !\nPlease take a bath.\tPrends un bain s'il te plaît.\nPlease take a seat.\tAsseyez-vous, s'il vous plaît.\nPlease take a seat.\tPrenez place, je vous prie !\nPray for all of us.\tPrie pour nous tous !\nPray for all of us.\tPrie pour nous toutes !\nPray for all of us.\tPriez pour nous tous !\nPray for all of us.\tPriez pour nous toutes !\nPrices have jumped.\tLes prix ont bondi.\nPrices have jumped.\tLes prix ont fait un bond.\nPush the door open.\tEnfonce la porte !\nPush the door open.\tEnfoncez la porte !\nReal men drink tea.\tLes vrais hommes boivent du thé.\nSave your strength.\tÉconomise tes forces.\nSchool is over now.\tL'école est finie, désormais.\nSend me a postcard.\tEnvoie-moi une carte postale.\nShake before using.\tAgiter avant utilisation.\nShe almost drowned.\tElle se noya presque.\nShe almost drowned.\tElle s'est presque noyée.\nShe almost fainted.\tElle s'est presque évanouie.\nShe always says no.\tElle dit toujours non.\nShe ate her dinner.\tElle mangea son dîner.\nShe ate her dinner.\tElle mangea son souper.\nShe became a nurse.\tElle devint infirmière.\nShe became a woman.\tElle est devenue une femme.\nShe began to sweat.\tElle se mit à transpirer.\nShe began to sweat.\tElle s'est mise à transpirer.\nShe bought chicken.\tElle a acheté du poulet.\nShe came to my aid.\tElle est venue à mon secours.\nShe came to see me.\tElle est venue me rendre visite.\nShe cannot stop us.\tElle ne peut nous arrêter.\nShe could not swim.\tElle ne savait pas nager.\nShe cried bitterly.\tElle a amèrement pleuré.\nShe did a good job.\tElle fit du bon boulot.\nShe did a good job.\tElle a fait du bon boulot.\nShe did not listen.\tElle n'a pas écouté.\nShe did not listen.\tElle n'écouta pas.\nShe didn't show up.\tElle ne parut pas.\nShe didn't show up.\tElle ne s'est pas montrée.\nShe didn't show up.\tElle ne se montra pas.\nShe didn't show up.\tElle n'est pas parue.\nShe didn't show up.\tElle n'est pas apparue.\nShe didn't show up.\tElle ne fit pas son apparition.\nShe didn't show up.\tElle n'a pas fait son apparition.\nShe died of cancer.\tElle mourut d'un cancer.\nShe died yesterday.\tElle est morte hier.\nShe died yesterday.\tElle est décédée hier.\nShe does not smoke.\tElle ne fume pas.\nShe gave it to him.\tElle le lui donna.\nShe gave it to him.\tElle la lui donna.\nShe gave me a doll.\tElle me donna une poupée.\nShe glanced around.\tElle jeta un regard alentour.\nShe goes to school.\tElle va à l'école.\nShe had no brother.\tElle n'avait aucun frère.\nShe has brown eyes.\tElle a les yeux marron.\nShe has green eyes.\tElle a les yeux verts.\nShe has more books.\tElle a plus de livres.\nShe has no enemies.\tElle n'a pas d'ennemis.\nShe has no manners.\tElle n'a aucune manière.\nShe has no manners.\tElle est dépourvue de manières.\nShe has small feet.\tElle a de petits pieds.\nShe heard him sing.\tElle l'entendit chanter.\nShe heard him sing.\tElle l'a entendu chanter.\nShe invited him in.\tElle l'invita à entrer.\nShe is a kind girl.\tC'est une gentille fille.\nShe is a poor cook.\tC'est une piètre cuisinière.\nShe is from France.\tElle vient de France.\nShe is going on 35.\tElle va sur ses 35 ans.\nShe is helping him.\tElle est en train de l'aider.\nShe is kissing him.\tElle est en train de l'embrasser.\nShe is my daughter.\tC'est ma fille.\nShe is pigeon-toed.\tElle a les pieds en dedans.\nShe is quite angry.\tElle est assez fâchée.\nShe is unconscious.\tElle est inconsciente.\nShe is very pretty.\tElle est très mignonne.\nShe kept on crying.\tElle continua à pleurer.\nShe left me a note.\tElle me laissa une note.\nShe left me a note.\tElle m'a laissé une note.\nShe likes sleeping.\tElle aime dormir.\nShe likes sleeping.\tElle apprécie de dormir.\nShe listens to him.\tElle l'écoute.\nShe lives in Kyoto.\tElle vit à Kyoto.\nShe lives with him.\tElle vit avec lui.\nShe looked excited.\tElle avait l'air excitée.\nShe looked ghostly.\tElle est devenue pâle comme un linge.\nShe looks confused.\tElle a l'air paumée.\nShe looks confused.\tElle a l'air désorientée.\nShe looks confused.\tElle a l'air perplexe.\nShe looks familiar.\tElle me dit quelque chose.\nShe looks lonesome.\tElle a l'air solitaire.\nShe loves antiques.\tElle adore les antiquités.\nShe loves children.\tElle adore les enfants.\nShe loves shopping.\tElle adore faire des courses.\nShe loves shopping.\tElle adore faire les courses.\nShe loves shopping.\tElle adore faire des achats.\nShe loves shopping.\tElle adore faire des emplettes.\nShe made her point.\tElle a expliqué son point de vue.\nShe made him do it.\tElle le lui a fait faire.\nShe made him happy.\tElle le rendit heureux.\nShe made him happy.\tElle l'a rendu heureux.\nShe made me a cake.\tElle me cuisit un gâteau.\nShe made me a cake.\tElle me prépara un gâteau.\nShe made me a cake.\tElle me concocta un gâteau.\nShe made me a cake.\tElle me fit un gâteau.\nShe made me a cake.\tElle m'a confectionné un gâteau.\nShe made me a star.\tElle a fait de moi une étoile.\nShe needs our help.\tElle a besoin de notre aide.\nShe picked flowers.\tElle a cueilli des fleurs.\nShe pointed at him.\tElle le désigna.\nShe probably knows.\tElle le sait probablement.\nShe put on her hat.\tElle a mis son chapeau.\nShe runs a charity.\tElle gère une œuvre charitable.\nShe runs a charity.\tElle gère une œuvre de charité.\nShe sat next to me.\tElle s'est assise à côté de moi.\nShe sat next to me.\tElle s'assit près de moi.\nShe sat next to me.\tElle s'est assise près de moi.\nShe sat next to me.\tElle s'assit à côté de moi.\nShe seems friendly.\tElle a l'air sympa.\nShe shook her head.\tElle secoua la tête.\nShe shook her head.\tElle a secoué la tête.\nShe smiled happily.\tElle sourit avec bonheur.\nShe speaks Chinese.\tElle parle chinois.\nShe started crying.\tElle s'est mise à pleurer.\nShe threatened him.\tElle le menaça.\nShe threatened him.\tElle l'a menacé.\nShe wants to dance.\tElle a envie de danser.\nShe was a bit late.\tElle était un peu en retard.\nShe was all smiles.\tElle était tout sourire.\nShe was born lucky.\tElle est née le cul bordé de nouilles.\nShe was in a hurry.\tElle était pressée.\nShe was making tea.\tElle était en train de faire du thé.\nShe's Tom's sister.\tElle est la sœur de Tom.\nShe's a big teaser.\tC'est une taquine.\nShe's a smart girl.\tC'est une fille intelligente.\nShe's a supermodel.\tC'est un mannequin d'élite.\nShe's a sweet girl.\tC'est une gentille fille.\nShe's an alcoholic.\tC'est une alcoolique.\nShe's eating fruit.\tElle est en train de manger des fruits.\nShe's just a child.\tCe n'est qu'une enfant.\nShe's my classmate.\tC'est ma camarade de classe.\nShould I help them?\tDevrais-je les aider ?\nShould we continue?\tDevrions-nous continuer ?\nShow me an example.\tDonne-moi un exemple.\nShow me an example.\tMontre-moi un exemple.\nShow me everything.\tMontre-moi tout.\nShow me everything.\tMontrez-moi tout.\nShow me your hands.\tMontre-moi tes mains.\nShow me your hands.\tMontrez-moi vos mains.\nShut off the water.\tFerme l'eau !\nShut off the water.\tFermez l'eau !\nShut off the water.\tCoupe l'eau !\nShut off the water.\tCoupez l'eau !\nShut up and listen!\tTais-toi et écoute !\nSlip on your shoes.\tEnfile tes chaussures.\nSlip on your shoes.\tEnfilez vos chaussures.\nSnails move slowly.\tLes escargots se déplacent lentement.\nSnails move slowly.\tLes escargots se meuvent lentement.\nSo how mad are you?\tÀ quel stade de la folie es-tu donc parvenu ?\nSo what's going on?\tDonc que se passe-t-il ?\nSo, do you like it?\tDonc, tu l'aimes ?\nSo, do you like it?\tDonc, vous l'aimez ?\nSo, do you like it?\tAlors, vous l'aimez ?\nSo, do you like it?\tAlors, tu l'aimes ?\nSome juice, please.\tUn jus de fruit s'il vous plaît.\nSome of us hate it.\tCertains d'entre nous le détestent.\nSome water, please.\tUn peu d'eau, s'il vous plaît.\nSome water, please.\tUn peu d'eau, s'il te plaît.\nSomebody is eating.\tQuelqu'un est en train de manger.\nSomeone is singing.\tQuelqu'un est en train de chanter.\nSomeone was coming!\tQuelqu'un venait !\nSomeone will do it.\tQuelqu'un le fera.\nSomething happened.\tQuelque chose s'est produit.\nSomething happened.\tQuelque chose s'est passé.\nSomething happened.\tQuelque chose est survenu.\nSomething happened.\tQuelque chose a eu lieu.\nSomething happened.\tIl est arrivé quelque chose.\nSomething is wrong.\tQuelque chose cloche.\nSpeak for yourself.\tParle pour toi-même !\nSpeak for yourself.\tParlez pour vous-même !\nSpeak for yourself.\tParlez pour vous-mêmes !\nStand back, please.\tVeuillez reculer.\nStand back, please.\tRecule, s'il te plaît.\nStay away from him!\tReste à distance de lui !\nStay away from him!\tRestez à distance de lui !\nStay out of my way!\tReste en dehors de mon chemin !\nStay out of my way!\tRestez en dehors de mon chemin !\nStay out of my way.\tReste en dehors de mon chemin.\nStay out of my way.\tRestez à l'écart de mon chemin.\nStay where you are.\tRestez où vous êtes.\nStay where you are.\tReste où tu es.\nStep aside, please.\tMettez-vous de côté, je vous prie !\nStep aside, please.\tMets-toi de côté, je te prie !\nStop being so nice.\tArrête d'être si gentil !\nStop being so nice.\tArrête d'être si gentille !\nStop being so nice.\tArrêtez d'être si gentil !\nStop being so nice.\tArrêtez d'être si gentille !\nStop being so nice.\tArrêtez d'être si gentils !\nStop being so nice.\tArrêtez d'être si gentilles !\nStop correcting me.\tArrête de me corriger !\nStop correcting me.\tArrêtez de me corriger !\nStop dating losers!\tArrête de sortir avec des tocards !\nStop joking around.\tArrête de chahuter !\nStop joking around.\tArrêtez de chahuter !\nStop making a fuss.\tArrête de faire des chichis !\nStop me if you can.\tArrête-moi si tu peux !\nStop me if you can.\tArrêtez-moi si vous pouvez !\nStop me if you can.\tArrête-moi si tu le peux !\nStop me if you can.\tArrêtez-moi si vous le pouvez !\nStop staring at me.\tArrête de me dévisager !\nStop staring at me.\tArrêtez de me dévisager !\nStop staring at me.\tArrête de me fixer des yeux !\nStop staring at me.\tArrêtez de me fixer des yeux !\nStop where you are.\tArrête-toi où tu es.\nStop where you are.\tArrêtez-vous où vous êtes.\nStop yelling at me.\tArrête de me hurler dessus !\nStop yelling at me.\tArrêtez de me hurler dessus !\nStop. That tickles.\tArrête. Ça chatouille !\nStop. That tickles.\tArrêtez. Ça chatouille !\nStrive to be happy.\tEfforce-toi d'être heureux.\nStrive to be happy.\tEfforcez-vous d'être heureux.\nStrive to be happy.\tEfforce-toi d'être heureuse.\nStrive to be happy.\tEfforcez-vous d'être heureuse.\nStrive to be happy.\tEfforcez-vous d'être heureuses.\nTake a closer look.\tRegarde plus attentivement !\nTake a closer look.\tRegardez plus attentivement !\nTake a closer look.\tRegarde de plus près !\nTake a closer look.\tRegardez de plus près !\nTake a deep breath.\tPrends une profonde inspiration.\nTake a deep breath.\tPrenez une profonde inspiration.\nTake a sip of this.\tPrenez une gorgée de ceci !\nTake a sip of this.\tPrends une gorgée de ceci !\nTake her to the OR.\tAmenez-la en salle d'op.\nTake off your coat.\tÔtez votre manteau.\nTake off your coat.\tEnlève ton manteau.\nTake out the trash.\tSors les ordures !\nTake out the trash.\tSortez les ordures !\nTake what you need.\tPrends ce dont tu as besoin.\nTake what you need.\tPrenez ce dont vous avez besoin.\nTake what you want.\tPrenez ce que vous voulez !\nTake what you want.\tPrends ce que tu veux !\nTaxes are too high.\tLes impôts sont trop élevés.\nTell Tom I'm sorry.\tDis à Tom que je suis désolé.\nTell me what to do.\tDis-moi quoi faire.\nThank you, my dear.\tMerci, mon cher !\nThank you, my dear.\tMerci ma chère !\nThank you, my dear.\tMerci, ma chérie !\nThat book is small.\tCe livre est petit.\nThat book is small.\tCet ouvrage est petit.\nThat can't be true.\tCela ne peut être vrai.\nThat can't be true.\tÇa ne peut être vrai.\nThat feels amazing.\tCe qu'on en ressent est incroyable !\nThat feels amazing.\tCe qu'on ressent est incroyable !\nThat feels amazing.\tÇa procure une sensation incroyable !\nThat guy annoys me.\tCe type m'agace.\nThat guy annoys me.\tCe type m'importune.\nThat is good to me.\tC'est bon pour moi.\nThat is good to me.\tÇa m'est bénéfique.\nThat is my opinion.\tC'est mon avis.\nThat is not my pen.\tCe n'est pas mon stylo.\nThat is our school.\tC'est notre école.\nThat is surprising.\tC'est surprenant.\nThat isn't allowed.\tCela n'est pas permis.\nThat isn't complex.\tCe n'est pas compliqué.\nThat made me laugh.\tÇa m'a fait rire.\nThat was a problem.\tC'était un problème.\nThat was different.\tC'était différent.\nThat was fantastic.\tC'était fantastique.\nThat was mentioned.\tC'était mentionné.\nThat was mentioned.\tCe fut mentionné.\nThat was my intent.\tC'était mon intention.\nThat was promising.\tC'était prometteur.\nThat was very easy.\tC'était très facile.\nThat was very good.\tC'était très bien.\nThat was very good.\tÇa a été très bien.\nThat was very good.\tC'était très bon.\nThat was very good.\tCe fut très bon.\nThat was years ago.\tC'était il y a des années.\nThat would be fine.\tÇa serait très bien.\nThat's Tom's house.\tC'est la maison de Tom.\nThat's a good idea!\tC’est une bonne idée !\nThat's a good idea.\tC'est une bonne idée.\nThat's a man's job.\tC'est un boulot d'homme.\nThat's a nice coat.\tC'est un beau manteau.\nThat's all for now.\tC'est tout pour l'instant.\nThat's all we know.\tC'est tout ce que nous savons.\nThat's all we need.\tC'est tout ce dont nous avons besoin.\nThat's all we want.\tC'est tout ce que nous voulons.\nThat's all you get.\tC'est tout ce que tu obtiens.\nThat's all you get.\tC'est tout ce qu'on obtient.\nThat's all you get.\tC'est tout ce que vous obtenez.\nThat's an ugly tie.\tC'est une cravate horrible.\nThat's good enough.\tC'est suffisamment bon.\nThat's how life is.\tC'est ainsi qu'est la vie.\nThat's interesting.\tC'est intéressant.\nThat's my business.\tÇa me regarde.\nThat's my suitcase.\tC'est ma valise.\nThat's my umbrella.\tC’est mon parapluie.\nThat's not a crime.\tCe n'est pas un crime.\nThat's not for Tom.\tCe n'est pas pour Tom.\nThat's not my call.\tLa décision ne m'appartient pas.\nThat's not my name.\tIl ne s'agit pas de mon nom.\nThat's not my name.\tCe n'est pas mon nom.\nThat's not our job.\tCe n'est pas notre boulot.\nThat's not unusual.\tCe n'est pas inhabituel.\nThat's one of mine.\tIl s'agit de l'un des miens.\nThat's one of mine.\tIl s'agit de l'une des miennes.\nThat's one of ours.\tIl s'agit de l'un des nôtres.\nThat's one of ours.\tIl s'agit de l'une des nôtres.\nThat's one of them.\tIl s'agit de l'un des leurs.\nThat's one of them.\tIl s'agit de l'une des leurs.\nThat's one of them.\tC'est l'un d'eux.\nThat's one of them.\tC'est l'une d'elles.\nThat's really cute.\tC'est vraiment mignon.\nThat's really nice.\tC'est vraiment gentil.\nThat's the reality.\tC'est la vérité.\nThat's true enough.\tC'est suffisamment vrai.\nThat's unimportant.\tÇa ne fait rien.\nThat's unimportant.\tÇa ne compte pas.\nThat's very clever.\tC'est très intelligent.\nThat's your choice.\tC’est ton choix.\nThe alarm went off.\tL'alarme sonna.\nThe answer was yes.\tLa réponse était oui.\nThe apples are red.\tLes pommes sont rouges.\nThe area was quiet.\tCette zone était calme.\nThe attempt failed.\tLa tentative échoua.\nThe attempt failed.\tLa tentative a échoué.\nThe baby is crying.\tLe bébé pleure.\nThe baby was naked.\tLe bébé était nu.\nThe bar was packed.\tLe bar était plein de gens.\nThe beach is empty.\tLa plage est déserte.\nThe boy is thirsty.\tLe garçon a soif.\nThe boy was silent.\tLe garçon était silencieux.\nThe car broke down.\tLa voiture est cassée.\nThe car broke down.\tLa voiture est tombée en panne.\nThe car hit a tree.\tLa voiture a heurté un arbre.\nThe case is closed.\tL'affaire est classée.\nThe chance is gone.\tOn a laissé passer l'occasion.\nThe clock says two.\tLa pendule indique deux heures.\nThe coffee is cold.\tLe café est froid.\nThe damage is done.\tLe mal est fait.\nThe danger is over.\tLe danger est passé.\nThe dog is panting.\tLe chien est en train de haleter.\nThe dog looks sick.\tLe chien a l'air malade.\nThe door blew open.\tLa porte s'ouvrit d'un souffle.\nThe door blew shut.\tLa porte claqua dans un souffle.\nThe door is closed.\tLa porte est fermée.\nThe door is locked.\tLa porte est verrouillée.\nThe doorknob broke.\tLe bouton de porte s'est cassé.\nThe earth is round.\tLa Terre est ronde.\nThe flame went out.\tLa flamme s'éteignit.\nThe floor gave way.\tLe sol céda.\nThe fog has lifted.\tLe brouillard s'est levé.\nThe fruit went bad.\tLe fruit s'est avarié.\nThe fuse has blown.\tLe fusible a pété.\nThe fuse has blown.\tLe fusible a fondu.\nThe fuse has blown.\tLe fusible a brûlé.\nThe house is clean.\tLa maison est propre.\nThe house is empty.\tLa maison est vide.\nThe ice has melted.\tLa glace a fondu.\nThe ice is melting.\tLa glace fond.\nThe ice is melting.\tLa glace est en train de fondre.\nThe idea isn't bad.\tL'idée n'est pas mauvaise.\nThe king is coming.\tLe roi arrive.\nThe law is the law.\tLa loi est la loi.\nThe light is green.\tLe feu est au vert.\nThe light is green.\tLe feu est vert.\nThe light went out.\tLa lumière s'est éteinte.\nThe lights are out.\tLes lumières sont éteintes.\nThe lock is broken.\tLa serrure est cassée.\nThe meat is frozen.\tLa viande est congelée.\nThe men go to work.\tLes hommes se rendent au travail.\nThe milk went sour.\tLe lait avait tourné.\nThe milk went sour.\tLe lait tourna.\nThe moon is bright.\tLa Lune est éclatante.\nThe ocean was calm.\tL'océan était calme.\nThe only way is up.\tLe seul chemin est vers le haut.\nThe paper is white.\tLe papier est blanc.\nThe parrot is dead.\tLe perroquet est mort.\nThe path is direct.\tLe chemin est direct.\nThe path is direct.\tC'est le chemin qui est direct.\nThe power went out.\tL'électricité a été coupée.\nThe price is right.\tLe prix est exact.\nThe road is closed.\tLa route est fermée.\nThe skirt is green.\tLa jupe est verte.\nThe sky brightened.\tLe ciel s'illumina.\nThe sky cleared up.\tLe ciel s'est éclairci.\nThe snow is melted.\tLa neige est fondue.\nThe stamp came off.\tLe timbre s'est décollé.\nThe summer is over.\tL'été est terminé.\nThe table is green.\tLa table est verte.\nThe telephone rang.\tLe téléphone a sonné.\nThe tire leaks air.\tLe pneu fuit.\nThe tire leaks air.\tDe l'air s'échappe du pneu.\nThe tree fell down.\tL'arbre s'abattit.\nThe tree fell down.\tL'arbre se coucha.\nThe tree fell down.\tL'arbre s'est couché.\nThe tree fell down.\tL'arbre s'est abattu.\nThe tree fell down.\tL'arbre chut.\nThe water is clean.\tL'eau est pure.\nThe water is clean.\tL'eau est propre.\nThe water was blue.\tL'eau était bleue.\nThe water was cold.\tL'eau était froide.\nThe water was warm.\tL'eau était chaude.\nThe waves are high.\tLes vagues sont hautes.\nThe weather is bad.\tIl fait mauvais temps.\nThe wind blew hard.\tLe vent soufflait fort.\nThe wind died away.\tLe vent s'est calmé.\nThe woman is naked.\tLa femme est nue.\nThe woman is ready.\tLa femme est prête.\nThe world is small.\tLe monde est petit.\nTheir answer is no.\tLeur réponse est non.\nThere are no rules.\tIl n'y a pas de règles.\nThere goes our bus.\tVoilà notre bus qui part.\nThere is no choice.\tIl n'y a pas le choix.\nThere is no escape.\tIl n'y a pas d'issue.\nThere is some wind.\tIl y a un peu de vent.\nThere you go again.\tTu remets encore ça.\nThere're no lights.\tIl n'y a pas de lumières.\nThere's a day left.\tIl reste un jour.\nThere's a gas leak.\tIl y a une fuite de gaz.\nThere's no mistake.\tIl n'y a pas d'erreur.\nThere's no urgency.\tIl n'y a pas d'urgence.\nThere's no way out.\tIl n'y a pas d'issue.\nThere's no way out.\tIl n'y a pas de sortie.\nThese are his pens.\tCes stylos sont à lui.\nThese are our kids.\tCe sont nos enfants.\nThese are our kids.\tCeux-là sont nos enfants.\nThese aren't words.\tCe ne sont pas des mots.\nThese dogs are big.\tCes chiens sont gros.\nThese dogs are big.\tCes chiens sont massifs.\nThese pens are his.\tCes stylos sont à lui.\nThey all can drive.\tIls peuvent tous conduire.\nThey all have come.\tIls sont tous arrivés.\nThey all have kids.\tIls ont tous des gosses.\nThey all have kids.\tElles ont toutes des gosses.\nThey almost got us.\tIls nous ont presque chopés.\nThey almost got us.\tIls nous ont presque eus.\nThey are all alike.\tIls sont tous semblables.\nThey are both good.\tIls sont tous deux bons.\nThey are both good.\tElles sont toutes deux bonnes.\nThey are both good.\tIls sont bons tous les deux.\nThey are both good.\tElles sont bonnes toutes les deux.\nThey are exhausted.\tElles sont crevées.\nThey are exhausted.\tIls sont exténués.\nThey are exhausted.\tElles sont exténuées.\nThey are not tired.\tIls ne sont pas fatigués.\nThey are not tired.\tElles ne sont pas fatiguées.\nThey are too close.\tIls sont trop proches.\nThey are very kind.\tIls sont très bienveillants.\nThey are very kind.\tElles sont très bienveillantes.\nThey are very kind.\tIls sont très gentils.\nThey are very kind.\tElles sont très gentilles.\nThey can't do that.\tIls n'arrivent pas à faire ça.\nThey can't do that.\tIls n'arrivent pas à le faire.\nThey can't do that.\tIls n'y arrivent pas.\nThey can't do that.\tElles n'y arrivent pas.\nThey can't do that.\tElles n'arrivent pas à le faire.\nThey can't do that.\tElles n'arrivent pas à faire ça.\nThey can't do this.\tIls ne peuvent faire cela.\nThey can't do this.\tElles ne peuvent faire cela.\nThey can't get out.\tElles ne peuvent sortir.\nThey can't get out.\tIls ne peuvent sortir.\nThey can't hurt me.\tIls ne peuvent me blesser.\nThey can't hurt me.\tElles ne peuvent me blesser.\nThey didn't listen.\tIls n'ont pas écouté.\nThey didn't see it.\tIls ne l'ont pas vu.\nThey didn't see it.\tElles ne l'ont pas vu.\nThey don't know us.\tIls ne nous connaissent pas.\nThey don't know us.\tElles ne nous connaissent pas.\nThey gave it to me.\tIls me le donnèrent.\nThey gave it to me.\tIls me l'ont donné.\nThey have families.\tIls ont des familles.\nThey have families.\tElles ont des familles.\nThey have no money.\tElles n'ont pas d'argent.\nThey kept drinking.\tIls continuèrent à boire.\nThey kept drinking.\tElles continuèrent à boire.\nThey kept drinking.\tIls ont continué à boire.\nThey kept drinking.\tElles ont continué à boire.\nThey live in peace.\tIls vivent en paix.\nThey live in tents.\tIls vivent dans des tentes.\nThey live in tents.\tElles vivent dans des tentes.\nThey look confused.\tElles ont l'air désorientées.\nThey look confused.\tIls ont l'air désorientés.\nThey made him work.\tIls l'ont fait travailler.\nThey made him work.\tIls le firent travailler.\nThey made him work.\tElles le firent travailler.\nThey made me do it.\tElles me l'ont fait faire.\nThey made me do it.\tIls me l'ont fait faire.\nThey made the goal.\tIls ont atteint l'objectif.\nThey must be happy.\tIls sont heureux, sans aucun doute.\nThey never gave up.\tIls n'ont jamais abandonné.\nThey never gave up.\tElles n'ont jamais abandonné.\nThey never gave up.\tIls n'abandonnèrent jamais.\nThey never gave up.\tElles n'abandonnèrent jamais.\nThey say he's sick.\tIls disent qu'il est malade.\nThey say he's sick.\tElles disent qu'il est malade.\nThey spoke briefly.\tIls se sont brièvement entretenus.\nThey spoke briefly.\tElles se sont brièvement entretenues.\nThey spoke briefly.\tIls parlèrent brièvement.\nThey spoke briefly.\tElles parlèrent brièvement.\nThey spoke briefly.\tIls ont brièvement parlé.\nThey spoke briefly.\tElles ont brièvement parlé.\nThey walked around.\tIls marchèrent aux alentours.\nThey want you dead.\tIls vous veulent mort.\nThey want you dead.\tIls te veulent mort.\nThey want you dead.\tElles vous veulent mort.\nThey want you dead.\tIls vous veulent morte.\nThey want you dead.\tIls vous veulent morts.\nThey want you dead.\tIls vous veulent mortes.\nThey want you dead.\tElles vous veulent morte.\nThey want you dead.\tElles vous veulent mortes.\nThey want you dead.\tElles vous veulent morts.\nThey want you dead.\tIls te veulent morte.\nThey want you dead.\tElles te veulent mort.\nThey want you dead.\tElles te veulent morte.\nThey were attacked.\tIls ont été attaqués.\nThey were attacked.\tElles ont été attaquées.\nThey were murdered.\tIls ont été tués.\nThey were murdered.\tIls ont été assassinés.\nThey were peaceful.\tIls étaient paisibles.\nThey were peaceful.\tElles étaient paisibles.\nThey were swimming.\tIls nageaient.\nThey were swimming.\tElles nageaient.\nThey will not pass!\tIls ne passeront pas.\nThey won't find it.\tIls ne le trouveront pas.\nThey won't find it.\tElles ne le trouveront pas.\nThey won't help us.\tIls ne nous aideront pas.\nThey won't help us.\tIls ne vont pas nous aider.\nThey won't make it.\tIls n'y arriveront pas.\nThey won't make it.\tElles n'y arriveront pas.\nThey won't make it.\tIls n'y parviendront pas.\nThey won't make it.\tElles n'y parviendront pas.\nThey work at night.\tIls travaillent de nuit.\nThey work at night.\tElles travaillent de nuit.\nThey work too much.\tIls travaillent trop.\nThey work too much.\tElles travaillent trop.\nThey'll never know.\tIls ne sauront jamais.\nThey're Christians.\tIls sont chrétiens.\nThey're all guilty.\tIls sont tous coupables.\nThey're all guilty.\tElles sont toutes coupables.\nThey're all hungry.\tIls ont tous faim.\nThey're all hungry.\tElles ont toutes faim.\nThey're all normal.\tIls sont tous normaux.\nThey're all normal.\tElles sont toutes normales.\nThey're both right.\tIls ont tous les deux raison.\nThey're both right.\tElles ont toutes les deux raison.\nThey're carnations.\tCe sont des œillets.\nThey're disposable.\tIls sont jetables.\nThey're disposable.\tElles sont jetables.\nThey're downstairs.\tIls sont en bas.\nThey're downstairs.\tIls sont en-dessous.\nThey're downstairs.\tIls sont au-dessous.\nThey're in trouble.\tIls ont des ennuis.\nThey're in trouble.\tElles ont des ennuis.\nThey're in trouble.\tIls sont dans la mouise.\nThey're in trouble.\tElles sont dans la mouise.\nThey're just words.\tCe ne sont que des mots.\nThey're mad at you.\tIls sont en colère après toi.\nThey're mad at you.\tIls sont en colère après vous.\nThey're mad at you.\tElles sont en colère après toi.\nThey're mad at you.\tElles sont en colère après vous.\nThey're mad at you.\tElles sont furieuses après vous.\nThey're mad at you.\tElles sont furieuses après toi.\nThey're mad at you.\tIls sont furieux après vous.\nThey're mad at you.\tIls sont furieux après toi.\nThey're my friends.\tIls sont mes amis.\nThey're not coming.\tIls ne viennent pas.\nThey're not coming.\tElles ne viennent pas.\nThey're not so bad.\tIls ne sont pas si mauvais.\nThey're not so bad.\tElles ne sont pas si mauvaises.\nThey're part of us.\tIls font partie de nous.\nThey're part of us.\tElles font partie de nous.\nThey're very smart.\tIls sont très intelligents.\nThey're very smart.\tElles sont très intelligentes.\nThey've had enough.\tIls en ont eu assez.\nThey've had enough.\tElles en ont eu assez.\nThis apple is sour.\tCette pomme est acide.\nThis book is small.\tCe livre est petit.\nThis cake is sweet.\tCe gâteau-ci est sucré.\nThis chair is ugly.\tCette chaise est laide.\nThis coat fits you.\tCe manteau est à ta taille.\nThis dog is shaggy.\tCe chien est hirsute.\nThis house is mine.\tCette maison est mienne.\nThis is Mary's dog.\tCelui-ci, c'est le chien de Marie.\nThis is Tom's room.\tC'est la chambre de Tom.\nThis is a big deal.\tC'est important.\nThis is a big deal.\tC'est une grosse affaire.\nThis is a big help.\tCeci est d'une grande aide.\nThis is a bus stop.\tCeci est un arrêt de bus.\nThis is a disaster.\tC'est un désastre.\nThis is a painting.\tC'est un tableau.\nThis is a road map.\tC'est une carte routière.\nThis is acceptable.\tC'est acceptable.\nThis is all I know.\tC’est tout ce que je sais.\nThis is all I want.\tC'est tout ce que je veux.\nThis is astounding.\tC'est renversant.\nThis is classified.\tC'est classé.\nThis is depressing.\tC'est déprimant.\nThis is disturbing.\tC'est troublant.\nThis is how I feel.\tC'est ce que je ressens.\nThis is impossible.\tC'est impossible.\nThis is incredible.\tC'est incroyable.\nThis is intriguing.\tC'est intrigant.\nThis is irrelevant.\tC'est hors sujet.\nThis is irrelevant.\tC'est hors de propos.\nThis is irrelevant.\tC'est sans rapport avec la question.\nThis is just water.\tCe n'est que de l'eau.\nThis is just water.\tC'est juste de l'eau.\nThis is my bicycle.\tC'est ma bicyclette.\nThis is my bicycle.\tC'est mon vélo.\nThis is my brother.\tC'est mon frère.\nThis is not a game.\tCe n'est pas un jeu.\nThis is not a game.\tIl ne s'agit pas d'un jeu.\nThis is not a trap.\tCe n'est pas un piège.\nThis is not enough.\tCe n'est pas suffisant.\nThis is not enough.\tCe n'est pas assez.\nThis is not for me.\tCe n'est pas pour moi.\nThis is not my car.\tCe n'est pas ma voiture.\nThis is not so fun.\tCe n'est pas si marrant.\nThis is outlandish.\tC'est étrange.\nThis is outrageous.\tC'est effarant !\nThis is plagiarism.\tC'est du plagiat.\nThis is really low.\tC'est très bas.\nThis is refreshing.\tC'est rafraîchissant.\nThis is ridiculous!\tC'est ridicule !\nThis is surprising.\tC'est surprenant.\nThis is suspicious.\tC'est suspect.\nThis is unbearable.\tC'est insupportable.\nThis is unexpected.\tC'est inattendu.\nThis is your fault.\tC'est votre faute.\nThis is your fault.\tC'est ta faute.\nThis is your fault.\tC'est de votre faute.\nThis is your fault.\tC'est de ta faute.\nThis is your house.\tC'est ta maison.\nThis isn't a party.\tCe n'est pas une fête.\nThis isn't a party.\tC’est pas une fête.\nThis one is bigger.\tCelui-ci est plus gros.\nThis one is bigger.\tCelle-ci est plus grosse.\nThis room is quiet.\tCette chambre est calme.\nThis should be fun.\tÇa devrait être marrant.\nThis should be fun.\tÇa devrait être amusant.\nThis story is true.\tCette histoire est vraie.\nThis was your idea.\tCe fut ton idée.\nThis was your idea.\tC'était ton idée.\nThis won't be easy.\tCe ne sera pas facile.\nThis won't be easy.\tCe ne sera pas aisé.\nThis won't help us.\tÇa ne nous sera d'aucun secours.\nThose are my books.\tCes livres sont à moi.\nThose are my pants.\tC'est mon pantalon.\nThose dogs are big.\tCes chiens sont grands.\nThose dogs are big.\tCes chiens sont massifs.\nThree were wounded.\tTrois furent blessés.\nThree were wounded.\tTrois ont été blessés.\nThree were wounded.\tTrois furent blessées.\nThree were wounded.\tTrois ont été blessées.\nTie your shoelaces.\tAttache tes lacets.\nTie your shoelaces.\tNoue tes lacets.\nTie your shoelaces.\tFais tes lacets.\nTighten this screw.\tResserre cette vis !\nTime is on my side.\tJ'ai le temps pour moi.\nTimes are changing.\tLes temps changent.\nTimes have changed.\tLes temps ont changé.\nToday is Wednesday.\tAujourd'hui on est mercredi.\nToday is very cold.\tIl fait très froid aujourd'hui.\nToday is very cold.\tAujourd'hui il fait très froid.\nTom almost fainted.\tTom est presque tombé dans les pommes.\nTom almost fainted.\tTom était sur le point de s'évanouir.\nTom began coughing.\tTom commença à tousser.\nTom began to laugh.\tTom se mit à rire.\nTom broke his nose.\tTom s'est cassé le nez.\nTom broke his nose.\tTom lui a cassé le nez.\nTom broke my heart.\tTom m'a brisé le cœur.\nTom came yesterday.\tTom est venu hier.\nTom came yesterday.\tTom est passé hier.\nTom can trust Mary.\tTom peut faire confiance à Mary.\nTom can't help you.\tTom ne peut pas t'aider.\nTom can't help you.\tTom ne peut pas vous aider.\nTom can't use this.\tTom ne peut pas utiliser ceci.\nTom comforted Mary.\tTom a consolé Marie.\nTom comforted Mary.\tTom consolait Marie.\nTom comforted Mary.\tTom consola Marie.\nTom could be a spy.\tTom pourrait être un espion.\nTom could help you.\tTom pourrait t'aider.\nTom could help you.\tTom pourrait vous aider.\nTom counts on Mary.\tTom compte sur Mary.\nTom did a good job.\tTom a fait un bon travail.\nTom didn't help me.\tTom ne m'a pas aidé.\nTom didn't help me.\tTom ne m'a pas aidée.\nTom didn't mean it.\tTom ne le pensait pas.\nTom didn't mean it.\tTom ne voulait pas dire ça.\nTom died in prison.\tTom est mort en prison.\nTom died last year.\tTom est mort l'an dernier.\nTom died last year.\tTom est mort l'année dernière.\nTom does good work.\tTom fait du bon travail.\nTom drank lemonade.\tTom a bu de la limonade.\nTom drank too much.\tTom a trop bu.\nTom feels unwanted.\tTom se sent rejeté.\nTom found evidence.\tTom a trouvé des preuves.\nTom found the leak.\tTom a trouvé la fuite.\nTom got in the car.\tTom est monté dans la voiture.\nTom groaned loudly.\tTom gémit bruyamment.\nTom has a big nose.\tTom a un gros nez.\nTom has a blue car.\tTom a une voiture bleue.\nTom has a hangover.\tTom a la gueule de bois.\nTom has a mustache.\tTom a une moustache.\nTom has brown hair.\tTom a les cheveux bruns.\nTom has chosen you.\tTom t'a choisi.\nTom has chosen you.\tTom vous a choisi.\nTom has short hair.\tTom a les cheveux courts.\nTom has short legs.\tTom a de courtes jambes.\nTom has three cows.\tTom a trois vaches.\nTom has three kids.\tTom a trois enfants.\nTom has to act now.\tTom doit agir dès maintenant.\nTom has to go home.\tTom doit rentrer chez lui.\nTom has to go home.\tTom doit rentrer à la maison.\nTom hates his life.\tTom déteste sa vie.\nTom hates homework.\tTom déteste les devoirs.\nTom hit a home run.\tTom vient de faire un coup de circuit.\nTom is John's twin.\tTom est le jumeau de John.\nTom is a bad coach.\tTom est un mauvais entraîneur.\nTom is a candidate.\tTom est un candidat.\nTom is a good cook.\tTom est un bon cuisinier.\nTom is a great guy.\tTom est un bon gars.\nTom is a grown man.\tTom est un adulte.\nTom is an imposter.\tTom est un imposteur.\nTom is behind Mary.\tTom est derrière Marie.\nTom is competitive.\tTom est compétitif.\nTom is getting old.\tTom devient âgé.\nTom is her brother.\tTom est son frère.\nTom is his brother.\tTom est son frère.\nTom is in the park.\tTom est dans le parc.\nTom is job hunting.\tTom cherche du travail.\nTom is looking ill.\tTom a l'air malade.\nTom is my prisoner.\tTom est mon prisonnier.\nTom is now in jail.\tTom est maintenant en prison.\nTom is now in jail.\tTom est dorénavant en prison.\nTom is on the roof.\tTom est sur le toit.\nTom is quite drunk.\tTom est bien ivre.\nTom is really good.\tTom est très bon.\nTom is still alive.\tTom est toujours en vie.\nTom is still angry.\tTom est toujours en colère.\nTom is still young.\tTom est encore jeune.\nTom is sympathetic.\tTom est sympathique.\nTom is very greedy.\tTom est très cupide.\nTom is very stupid.\tTom est très stupide.\nTom isn't a doctor.\tTom n'est pas médecin.\nTom isn't a doctor.\tTom n'est pas docteur.\nTom isn't a parent.\tTom n'est pas parent.\nTom isn't friendly.\tTom n'est pas amical.\nTom isn't like you.\tTom n'est pas comme toi.\nTom isn't like you.\tTom ne te ressemble pas.\nTom isn't my enemy.\tTom n'est pas mon ennemi.\nTom isn't reliable.\tTom n'est pas fiable.\nTom just confessed.\tTom vient d'avouer.\nTom keeps his word.\tTom tient parole.\nTom kissed my hand.\tTom embrassa ma main.\nTom knows who I am.\tTom sait qui je suis.\nTom led the attack.\tTom a mené l'attaque.\nTom led the attack.\tTom a dirigé l'offensive.\nTom left a message.\tTom a laissé un message.\nTom likes swimming.\tTom aime nager.\nTom likes that one.\tTom aime celle-là.\nTom likes that one.\tTom aime celui-là.\nTom likes to write.\tTom aime écrire.\nTom looks thrilled.\tTom a l'air ravi.\nTom loved his kids.\tTom aimait ses enfants.\nTom loves his work.\tTom aime son travail.\nTom loves his work.\tTom aime son emploi.\nTom missed the bus.\tTom a raté le bus.\nTom needs help now.\tTom a besoin d'aide maintenant.\nTom needs help now.\tTom a besoin d'aide en ce moment.\nTom paid Mary cash.\tTom a payé Marie en liquide.\nTom paid Mary cash.\tTom a payé Marie en espèces.\nTom pays his taxes.\tTom paie ses impôts.\nTom sang me a song.\tTom me chanta une chanson.\nTom sang me a song.\tTom m'a chanté une chanson.\nTom sold his house.\tTom a vendu sa maison.\nTom started crying.\tTom commença à pleurer.\nTom stole the ring.\tTom a volé l'anneau.\nTom studies French.\tTom étudie le français.\nTom talks too fast.\tTom parle trop vite.\nTom talks too much.\tTom parle trop.\nTom teaches French.\tTom enseigne le français.\nTom took a day off.\tTom a pris un jour de congé.\nTom tried to leave.\tTom a essayé de partir.\nTom tried to leave.\tTom essaya de partir.\nTom tried to sleep.\tTom essaya de dormir.\nTom tried to sleep.\tTom a essayé de dormir.\nTom twisted my arm.\tTom m'a tordu le bras.\nTom was a good guy.\tTom était un bon gars.\nTom was a good guy.\tTom était un type bien.\nTom was born there.\tTom est né là-bas.\nTom was humiliated.\tTom était humilié.\nTom was real happy.\tTom était très heureux.\nTom was sure of it.\tTom en était sûr.\nTom was very tired.\tTom était très fatigué.\nTom wasn't violent.\tTom n'était pas violent.\nTom went to Boston.\tTom est parti pour Boston.\nTom won a free car.\tTom a gagné une voiture gratuite.\nTom won't go alone.\tTom n'ira pas seul.\nTom's dog stood up.\tLe chien de Tom se leva.\nTom's nose was red.\tLe nez de Tom était rouge.\nTom, are you awake?\tTom, es-tu réveillé ?\nTom, are you awake?\tTom, êtes-vous réveillé ?\nTom, say something.\tTom, dis quelque chose.\nTom, say something.\tTom, dites quelque chose.\nTomorrow's no good.\tDemain ne convient pas.\nTry not to be late.\tEssaie de ne pas être en retard !\nTry not to be late.\tEssayez de ne pas être en retard !\nTry to remain calm.\tEssaie de rester calme.\nTry to remain calm.\tEssayez de rester calme.\nTry to remain calm.\tEssayez de rester calmes.\nTuck your shirt in.\tRentre ta chemise dans ton pantalon !\nTuck your shirt in.\tRentrez votre chemise dans votre pantalon !\nTurn off the light.\tEteins la lumière.\nTurn off the light.\tÉteignez la lumière !\nTurn off the radio.\tÉteins la radio.\nTurn on the lights.\tAllume les phares !\nTurn the volume up.\tMonte le son.\nTurn the volume up.\tMontez le son.\nTurn up the volume.\tMonte le son.\nTurn up the volume.\tAugmente le son.\nTurn up the volume.\tMontez le son.\nTurn up the volume.\tAugmentez le son.\nWait just a moment.\tAttends juste un instant !\nWar affects us all.\tLa guerre nous affecte tous.\nWas I seen leaving?\tM'a-t-on vu partir ?\nWas her story true?\tÉtait-elle vraie son histoire ?\nWas his story true?\tÉtait-elle vraie son histoire ?\nWas his story true?\tSon histoire était-elle vraie ?\nWas it all a dream?\tTout était-il un rêve ?\nWas it interesting?\tÉtait-ce intéressant ?\nWas that an insult?\tÉtait-ce une insulte ?\nWas that an insult?\tÉtait-ce là une insulte ?\nWas that an insult?\tS'agissait-il d'une insulte ?\nWas that not clear?\tN'était-ce pas clair ?\nWas the movie good?\tEst-ce que le film était bien ?\nWater is important.\tL'eau est importante.\nWe adopted a child.\tNous avons adopté un enfant.\nWe all cried a lot.\tNous avons tous beaucoup pleuré.\nWe all cried a lot.\tNous avons toutes beaucoup pleuré.\nWe are Australians.\tNous sommes Australiens.\nWe are Australians.\tNous sommes Australiennes.\nWe are busy people.\tNous sommes des gens occupés.\nWe are defenseless.\tNous sommes sans défenses.\nWe argued politics.\tNous avons discuté politique.\nWe ate some apples.\tNous mangeâmes quelques pommes.\nWe better be going.\tNous ferions mieux d'y aller.\nWe better be going.\tOn ferait mieux d'y aller.\nWe can handle that.\tNous pouvons nous en occuper.\nWe can handle that.\tNous pouvons nous en charger.\nWe can handle that.\tNous pouvons nous en débrouiller.\nWe can handle that.\tNous savons y faire.\nWe can handle that.\tNous savons nous y prendre.\nWe can't afford it.\tNous ne pouvons nous le permettre.\nWe can't afford it.\tNous ne pouvons pas nous le permettre.\nWe can't be killed.\tNous ne pouvons pas être tués.\nWe can't be killed.\tNous ne pouvons pas être tuées.\nWe can't do it now.\tNous ne pouvons pas le faire maintenant.\nWe can't stay here.\tNous ne pouvons pas rester là.\nWe can't stay here.\tNous ne pouvons pas rester ici.\nWe chartered a bus.\tNous affrétâmes un car.\nWe chartered a bus.\tNous avons affrété un car.\nWe considered that.\tNous avons songé à ça.\nWe didn't kill Tom.\tNous n'avons pas tué Tom.\nWe do not know her.\tNous ne la connaissons pas.\nWe don't have long.\tNous n'avons pas beaucoup de temps.\nWe don't have that.\tNous n'avons pas cela.\nWe don't have that.\tOn n'a pas ça.\nWe don't like rain.\tNous n'aimons pas la pluie.\nWe don't trust Tom.\tNous ne faisons pas confiance à Tom.\nWe drank all night.\tNous bûmes toute la nuit.\nWe drank all night.\tNous avons bu toute la nuit.\nWe drank some wine.\tNous bûmes du vin.\nWe drank some wine.\tNous avons bu du vin.\nWe enjoyed skating.\tNous avons eu plaisir à patiner.\nWe enjoyed skating.\tNous avons pris plaisir à patiner.\nWe feel frustrated.\tNous nous sentons frustrés.\nWe followed orders.\tNous avons suivi les ordres.\nWe found her alive.\tNous l'avons trouvée vivante.\nWe found him alive.\tNous l'avons trouvé vivant.\nWe found something.\tNous trouvâmes quelque chose.\nWe found something.\tNous avons trouvé quelque chose.\nWe found something.\tOn a trouvé quelque chose.\nWe grow wheat here.\tNous faisons pousser du blé ici.\nWe grow wheat here.\tIci, nous cultivons le blé.\nWe had fun with it.\tNous nous en sommes amusés.\nWe had fun with it.\tNous nous en sommes amusées.\nWe had lunch early.\tNous avons déjeuné tôt.\nWe have lots to do.\tNous avons beaucoup à faire.\nWe have more to do.\tNous avons davantage à faire.\nWe have no comment.\tNous n'avons aucun commentaire.\nWe have no secrets.\tNous n'avons pas de secrets.\nWe heard a gunshot.\tNous entendîmes un coup de feu.\nWe heard a gunshot.\tNous avons entendu un coup de feu.\nWe heard a gunshot.\tNous entendîmes une détonation.\nWe heard a gunshot.\tNous avons entendu une détonation.\nWe kept them quiet.\tNous les tînmes tranquilles.\nWe know each other.\tNous nous connaissons.\nWe learned English.\tNous avons appris l'anglais.\nWe listen to music.\tNous écoutons de la musique.\nWe lost our chance.\tNous avons raté notre chance.\nWe love each other.\tNous nous aimons l'un l'autre.\nWe love what we do.\tNous aimons ce que nous faisons.\nWe made sacrifices.\tNous avons fait des sacrifices.\nWe made sacrifices.\tNous avons consenti des sacrifices.\nWe made sure of it.\tNous nous en sommes assurés.\nWe made sure of it.\tNous nous en sommes assurées.\nWe missed the exit.\tNous avons loupé la sortie.\nWe need everything.\tNous avons besoin de tout.\nWe need some money.\tNous avons besoin d'argent.\nWe prayed together.\tNous avons prié ensemble.\nWe ran in the park.\tNous courûmes dans le parc.\nWe ran out of food.\tNous fûmes à court de nourriture.\nWe remained silent.\tNous sommes restés silencieux.\nWe remained silent.\tNous sommes restées silencieuses.\nWe sacrifice a lot.\tNous sacrifions beaucoup.\nWe saved your life.\tNous t'avons sauvé la vie.\nWe saved your life.\tNous vous avons sauvé la vie.\nWe should hang out.\tOn devrait sortir.\nWe should hang out.\tOn devrait aller traîner.\nWe started to walk.\tNous commençâmes à marcher.\nWe swam in the sea.\tNous avons nagé dans la mer.\nWe swam in the sea.\tNous nageâmes dans la mer.\nWe talk frequently.\tNous discutons fréquemment.\nWe took a mud bath.\tNous avons pris un bain de boue.\nWe understand this.\tNous le comprenons.\nWe want more money.\tNous voulons davantage d'argent.\nWe want to be fair.\tNous voulons être équitables.\nWe want to hear it.\tNous voulons l'entendre.\nWe watched a movie.\tNous avons regardé un film.\nWe watched a movie.\tNous avons vu un film.\nWe went for a walk.\tNous avons fait une promenade.\nWe went for a walk.\tNous sommes allés nous promener.\nWe went to a movie.\tNous allâmes voir un film.\nWe went to a movie.\tNous sommes allés voir un film.\nWe went to a movie.\tNous sommes allées voir un film.\nWe were both drunk.\tNous étions toutes deux saoules.\nWe were both drunk.\tNous étions tous deux saouls.\nWe were both drunk.\tNous étions saouls tous les deux.\nWe were both drunk.\tNous étions saoules toutes les deux.\nWe were just going.\tNous étions justement sur le point d'y aller.\nWe were passengers.\tNous étions passagers.\nWe were passengers.\tNous étions des passagers.\nWe were very close.\tNous étions très proches.\nWe were very tired.\tNous étions très fatiguées.\nWe will meet again.\tNous nous reverrons.\nWe worked together.\tNous travaillions ensemble.\nWe worked together.\tNous avons travaillé ensemble.\nWe'll all be there.\tNous serons tous là.\nWe'll all be there.\tNous serons toutes là.\nWe'll all be there.\tNous y serons tous.\nWe'll all be there.\tNous y serons toutes.\nWe'll be just fine.\tÇa ira bien pour nous.\nWe'll convince Tom.\tNous convaincrons Tom.\nWe'll decide later.\tNous en déciderons plus tard.\nWe'll finish later.\tNous finirons plus tard.\nWe're a big family.\tNous sommes une grande famille.\nWe're all infected.\tNous sommes tous infectés.\nWe're all infected.\tNous sommes toutes infectées.\nWe're all students.\tNous sommes tous étudiants.\nWe're all students.\tNous sommes toutes étudiantes.\nWe're all the same.\tNous sommes tous les mêmes.\nWe're all the same.\tNous sommes toutes les mêmes.\nWe're almost ready.\tNous sommes presque prêts.\nWe're almost ready.\tNous sommes presque prêtes.\nWe're almost there.\tEncore un petit effort.\nWe're almost there.\tNous y sommes presque.\nWe're almost there.\tNous y sommes bientôt.\nWe're already late.\tNous sommes déjà en retard.\nWe're always right.\tNous avons toujours raison.\nWe're best friends.\tNous sommes les meilleurs amis.\nWe're both writers.\tNous sommes tous deux écrivains.\nWe're close enough.\tNous sommes suffisamment proches.\nWe're conservative.\tNous sommes conservateurs.\nWe're contributing.\tNous contribuons.\nWe're disappointed.\tNous sommes déçues.\nWe're done talking.\tNotre entretien est terminé.\nWe're done talking.\tNous avons fini de parler.\nWe're going inside.\tNous sommes en train d'y pénétrer.\nWe're going to try.\tNous allons essayer.\nWe're halfway home.\tNous sommes à mi-chemin de chez nous.\nWe're honeymooning.\tNous sommes en lune de miel.\nWe're housesitting.\tNous gardons la maison.\nWe're in a library.\tNous sommes dans une bibliothèque.\nWe're just nervous.\tNous sommes simplement nerveux.\nWe're just nervous.\tNous sommes simplement nerveuses.\nWe're just talking.\tNous ne faisons que parler.\nWe're leaving here.\tNous partons d'ici.\nWe're nearly there.\tNous y sommes presque.\nWe're not dead yet.\tNous ne sommes pas encore morts.\nWe're not dead yet.\tNous ne sommes pas encore mortes.\nWe're not done yet.\tNous n'en avons pas encore terminé.\nWe're not fighting.\tNous ne nous battons pas.\nWe're not finished.\tNous n'en avons pas fini.\nWe're not free yet.\tNous ne sommes pas encore libres.\nWe're not involved.\tNous ne sommes pas impliqués.\nWe're not involved.\tNous ne sommes pas impliquées.\nWe're not partners.\tNous ne sommes pas partenaires.\nWe're not soldiers.\tNous ne sommes pas soldats.\nWe're not speaking.\tNous ne sommes pas en train de parler.\nWe're not sure yet.\tNous n'en sommes pas encore sûrs.\nWe're not sure yet.\tNous n'en sommes pas encore sûres.\nWe're not watching.\tNous ne regardons pas.\nWe're only friends.\tNous ne sommes que des amis.\nWe're out of money.\tNous sommes à court d'argent.\nWe're out of stock.\tNous n'en avons plus en stock.\nWe're out of stock.\tNous sommes à court.\nWe're overreacting.\tNous sur-réagissons.\nWe're pretty tight.\tNotre horaire est assez serré.\nWe're pulling back.\tNous nous retirons.\nWe're really angry.\tNous sommes vraiment en colère.\nWe're really drunk.\tNous sommes vraiment saouls.\nWe're really drunk.\tNous sommes vraiment saoules.\nWe're really lucky.\tNous avons vraiment de la chance.\nWe're running away.\tNous nous enfuyons.\nWe're running late.\tNous prenons du retard.\nWe're slowing down.\tNous sommes en train de ralentir.\nWe're still a team.\tNous sommes encore une équipe.\nWe're studying now.\tNous sommes actuellement en train d'étudier.\nWe're the same age.\tNous sommes du même âge.\nWe're the same age.\tNous avons le même âge.\nWe're turning back.\tNous retournons en arrière.\nWe're under attack.\tNous sommes attaqués.\nWe're under attack.\tNous sommes attaquées.\nWe're unprejudiced.\tNous sommes dépourvus de préjugés.\nWe're unprejudiced.\tNous sommes dépourvues de préjugés.\nWe're very excited.\tNous sommes très excités.\nWe're very excited.\tNous sommes très excitées.\nWe're very serious.\tNous sommes très sérieux.\nWe're very serious.\tNous sommes très sérieuses.\nWe're volunteering.\tNous faisons du bénévolat.\nWe're volunteering.\tNous nous portons volontaires.\nWe've all got ears.\tNous sommes tous dotés d'oreilles.\nWe've all got ears.\tNous sommes toutes dotées d'oreilles.\nWe've all got ears.\tNous sommes tous pourvus d'oreilles.\nWe've all got ears.\tNous sommes toutes pourvues d'oreilles.\nWe've been friends.\tNous avons été amis.\nWe've been spotted.\tNous avons été repérées.\nWe've been spotted.\tNous avons été repérés.\nWe've gone too far.\tNous sommes allés trop loin.\nWe've gone too far.\tNous sommes allées trop loin.\nWe've just arrived.\tNous venons d'arriver.\nWere you two close?\tÉtiez-vous tous deux proches ?\nWhat a big pumpkin!\tQuelle grosse citrouille !\nWhat a coincidence!\tQuelle coïncidence !\nWhat a lot of pens!\tQuel tas de stylos !\nWhat a nice family!\tQuelle chouette famille !\nWhat a nice family!\tQuelle famille sympathique !\nWhat a pretty girl!\tQuelle jolie fille !\nWhat a pretty girl!\tQuelle fille mignonne !\nWhat a small world!\tLe monde est petit.\nWhat a strange dog!\tQuel chien étrange !\nWhat a strange guy!\tQuel type étrange !\nWhat a strange man!\tQuel homme étrange !\nWhat a strong wind!\tQuel vent !\nWhat a total idiot!\tQuel parfait imbécile !\nWhat are the rules?\tQuelles sont les règles ?\nWhat are these for?\tÀ quoi servent celles-ci ?\nWhat are these for?\tÀ quoi servent ceux-ci ?\nWhat are you doing?\tQue fais-tu ?\nWhat are you doing?\tQue faites-vous ?\nWhat are you doing?\tQu'es-tu en train de faire ?\nWhat are you doing?\tQu'es-tu en train de faire ?\nWhat are you doing?\tQu'êtes-vous en train de faire ?\nWhat are you doing?\tQu’est-ce que vous faites ?\nWhat are you up to?\tQue préparez-vous ?\nWhat are you up to?\tÀ quoi te prépares-tu ?\nWhat are you up to?\tÀ quoi vous préparez-vous ?\nWhat are you up to?\tQu'est-ce que tu mijotes ?\nWhat are you up to?\tQu'est-ce que vous mijotez ?\nWhat awful weather!\tQuel temps de chien !\nWhat can I get you?\tQue puis-je aller te chercher ?\nWhat can I get you?\tQue puis-je aller vous chercher ?\nWhat color is this?\tQuelle couleur est-ce ?\nWhat color is this?\tDe quelle couleur est-ce ?\nWhat did I just do?\tQu'est-ce que je viens de faire ?\nWhat did she drink?\tQu'a-t-elle bu ?\nWhat did they want?\tQue voulaient-ils ?\nWhat did they want?\tQue voulaient-elles ?\nWhat did you drink?\tQu'as-tu bu ?\nWhat did you drink?\tQu'avez-vous bu ?\nWhat did you learn?\tQu'as-tu appris ?\nWhat did you learn?\tQu'avez-vous appris ?\nWhat did you watch?\tQu'est-ce que tu as regardé ?\nWhat did you write?\tQu'as-tu écrit ?\nWhat did you write?\tQu'avez-vous écrit ?\nWhat do I call you?\tComment dois-je t'appeler ?\nWhat do I call you?\tComment dois-je vous appeler ?\nWhat do tigers eat?\tQue mangent les tigres?\nWhat do you desire?\tQu'est-ce que vous désirez ?\nWhat do you desire?\tQu'est-ce que tu désires ?\nWhat does Tom need?\tDe quoi Tom a-t-il besoin ?\nWhat does she have?\tQu'est-ce qu'elle a ?\nWhat does she have?\tQu'a-t-elle ?\nWhat does that say?\tQu'est-ce que ça dit ?\nWhat happened here?\tQu'est-ce qu'il s'est passé ici ?\nWhat happened here?\tQu'est-ce qui s'est passé ici ?\nWhat happened next?\tQue s'est-il passé ensuite ?\nWhat happened next?\tQue s'est-il produit ensuite ?\nWhat happened next?\tQu'est-il survenu ensuite ?\nWhat have you done?\tQu'avez-vous fait ?\nWhat if he's wrong?\tEt s'il a tort ?\nWhat is it made of?\tDe quoi est-ce constitué ?\nWhat is over there?\tQu'y a-t-il là-bas ?\nWhat is she saying?\tQue dit-elle ?\nWhat is the number?\tQuel est le numéro ?\nWhat is this place?\tQu'est cet endroit ?\nWhat just happened?\tQue vient-il de se passer ?\nWhat just happened?\tQue vient-il de se produire ?\nWhat might that be?\tQu'est-ce que cela pourrait être ?\nWhat might that be?\tQue cela pourrait-il être ?\nWhat month is this?\tQuel mois sommes-nous ?\nWhat narrow stairs!\tQu'est-ce qu'ils sont étroits ces escaliers!\nWhat narrow stairs!\tQue ces escaliers sont étroits !\nWhat part is wrong?\tQuelle partie est fausse ?\nWhat part is wrong?\tQuelle partie est mauvaise ?\nWhat should I wear?\tQue devrais-je porter ?\nWhat station is it?\tQuelle gare est-ce ?\nWhat will you have?\tQue choisis-tu ?\nWhat will you make?\tQue fabriqueras-tu ?\nWhat would he know?\tQue saurait-il ?\nWhat'll it be like?\tComment sera-ce ?\nWhat'll it be like?\tÀ quoi cela ressemblera-t-il ?\nWhat're you saying?\tQue dites-vous ?\nWhat're you saying?\tQu'es-tu en train de dire ?\nWhat're you saying?\tQu'êtes-vous en train de dire ?\nWhat's in that box?\tQu'y a-t-il dans cette boîte?\nWhat's in the file?\tQu'y a-t-il dans le dossier ?\nWhat's in the file?\tQue contient le dossier ?\nWhat's in the file?\tQu'y a-t-il dans le fichier ?\nWhat's it all mean?\tQue signifie tout ceci ?\nWhat's not to like?\tQu'y a-t-il à y redire ?\nWhat's not to like?\tQue demander de plus ?\nWhat's the problem?\tQuel est le problème ?\nWhat's their story?\tQuelle est leur histoire ?\nWhat's there to do?\tQu'est-ce qu'il y a à faire ?\nWhat's there to do?\tQu'y a-t-il à faire ?\nWhat's your secret?\tC'est quoi ton secret ?\nWhen can I move in?\tQuand puis-je emménager ?\nWhen can you start?\tQuand peux-tu commencer ?\nWhen can you start?\tQuand peux-tu démarrer ?\nWhen can you start?\tQuand pouvez-vous commencer ?\nWhen can you start?\tQuand pouvez-vous démarrer ?\nWhen did I do that?\tQuand l'ai-je fait ?\nWhen do owls sleep?\tQuand les hiboux dorment-ils ?\nWhen do owls sleep?\tQuand les chouettes dorment-elles ?\nWhen do you use it?\tQuand l'employez-vous ?\nWhen do you use it?\tQuand l'emploies-tu ?\nWhen will it begin?\tQuand est-ce que ça commence ?\nWhen will you call?\tQuand appelleras-tu ?\nWhen's the funeral?\tQuand les funérailles ont-elles lieu ?\nWhere are my books?\tOù sont mes livres ?\nWhere are the boys?\tOù sont les garçons ?\nWhere are the guns?\tOù sont les armes ?\nWhere are the guns?\tOù sont les flingues ?\nWhere are the kids?\tOù sont les enfants ?\nWhere are we going?\tOù va-t-on ?\nWhere are you from?\tTu viens d'où ?\nWhere are you from?\tD'où viens-tu ?\nWhere are you from?\tD'où venez-vous ?\nWhere are you from?\tVous venez d'où ?\nWhere are you from?\tD'où êtes-vous ?\nWhere are you hurt?\tOù es-tu blessé ?\nWhere are you hurt?\tOù êtes-vous blessé ?\nWhere did I put it?\tOù l'ai-je mis ?\nWhere did he do it?\tOù l'a-t-il fait ?\nWhere did you live?\tOù avez-vous vécu ?\nWhere did you stay?\tOù as-tu séjourné ?\nWhere did you stay?\tOù avez-vous séjourné ?\nWhere do I go then?\tOù vais-je, alors ?\nWhere do they live?\tOù vivent-ils ?\nWhere do they live?\tOù habitent-ils ?\nWhere do they live?\tOù habitent-elles ?\nWhere do they live?\tOù vivent-elles ?\nWhere do we go now?\tOù allons-nous maintenant ?\nWhere do you write?\tOù écrivez-vous ?\nWhere do you write?\tOù écris-tu ?\nWhere does he live?\tOù vit-il ?\nWhere does he work?\tOù travaille-t-il ?\nWhere has she gone?\tOù est-elle allée ?\nWhere is everybody?\tOù est tout le monde ?\nWhere is it hidden?\tOù est-ce que c'est caché ?\nWhere is it hidden?\tOù est-ce caché ?\nWhere is it hidden?\tOù est-il caché ?\nWhere is the beach?\tOù est la plage ?\nWhere is the hotel?\tOù est l'hôtel ?\nWhere is your room?\tOù est ta chambre ?\nWhere should I sit?\tOù devrais-je m'asseoir ?\nWhere should we go?\tOù devrions-nous aller ?\nWhere should we go?\tOù devrions-nous nous rendre ?\nWhere was Tom born?\tOù est né Tom ?\nWhere was Tom born?\tOù Tom est-il né ?\nWhere will we meet?\tOù nous rencontrerons-nous ?\nWhere're the shoes?\tOù sont les chaussures ?\nWhere's Tom's card?\tOù est la carte de Tom ?\nWhere's the bakery?\tOù est la boulangerie ?\nWhere's the butter?\tOù est le beurre ?\nWhere's the doctor?\tOù est le médecin ?\nWhere's the doctor?\tOù est le docteur ?\nWhere's the remote?\tOù est la télécommande ?\nWhere's the toilet?\tOù sont les toilettes ?\nWhere's the toilet?\tOù se trouvent les toilettes ?\nWhere's your drink?\tOù est ton verre ?\nWhere's your drink?\tOù est votre verre ?\nWhere's your house?\tOù est ta maison ?\nWhere's your shirt?\tOù est ta chemise ?\nWhich cap is yours?\tQuel chapeau est le tien ?\nWhich cap is yours?\tLequel est ton chapeau ?\nWhich cap is yours?\tC'est lequel ton chapeau ?\nWhich cup is yours?\tLaquelle est ta tasse ?\nWhich cup is yours?\tLaquelle est votre tasse ?\nWhich cup is yours?\tQuelle tasse est la vôtre ?\nWhich cup is yours?\tQuelle tasse est la tienne ?\nWhich dog is yours?\tQuel est ton chien ?\nWhich dog is yours?\tLequel est votre chien ?\nWhich dog is yours?\tLequel est ton chien ?\nWhich hat is yours?\tLequel est ton chapeau ?\nWhich is your book?\tLequel est ton livre ?\nWhich team is ours?\tQuelle équipe est la nôtre ?\nWho allowed him in?\tQui l'a laissé entrer ?\nWho allowed him in?\tQui lui a permis d'entrer ?\nWho are those guys?\tQui sont ces types-là ?\nWho broke the vase?\tQui a brisé le vase ?\nWho can prevent it?\tQui peut le prévenir ?\nWho can prevent it?\tQui peut l'empêcher ?\nWho cares about me?\tQui fait attention à moi ?\nWho cares about me?\tQui se soucie de moi ?\nWho is that person?\tQui est cette personne ?\nWho is your friend?\tQui est ta copine ?\nWho is your lawyer?\tQui est ton avocat ?\nWho is your mother?\tQui est votre mère ?\nWho is your mother?\tQui est ta mère ?\nWho listens to Tom?\tQui écoute Tom ?\nWho made this cake?\tQui a fait ce gâteau ?\nWho put that there?\tQui a mis ça là ?\nWho would buy this?\tQui achèterait ça ?\nWho wrote the book?\tPar qui le livre a-t-il été écrit ?\nWho's at the wheel?\tQui est au volant ?\nWho's their mother?\tQui est leur mère ?\nWho's volunteering?\tQui se porte volontaire ?\nWho's volunteering?\tQui fait du bénévolat ?\nWho's your teacher?\tQui est ton professeur ?\nWho's your teacher?\tQui est votre enseignant ?\nWho's your teacher?\tQui est ton instituteur ?\nWho's your teacher?\tQui est votre professeur ?\nWho's your teacher?\tQui est ton institutrice ?\nWhose beer is this?\tÀ qui est cette bière ?\nWhose bike is this?\tÀ qui est cette bicyclette ?\nWhose bike is this?\tC’est à qui, ce vélo ?\nWhose book is that?\tÀ qui est ce livre ?\nWhose book is this?\tÀ qui est ce livre ?\nWhose book is this?\tÀ qui appartient ce livre ?\nWhose friend is he?\tDe qui est-il l'ami ?\nWhose room is this?\tC'est la chambre de qui ?\nWhy are we running?\tPourquoi courons-nous ?\nWhy are you asking?\tPourquoi demandes-tu ?\nWhy are you crying?\tPourquoi pleures-tu ?\nWhy are you so mad?\tPourquoi es-tu tellement en colère ?\nWhy are you so sad?\tPourquoi es-tu si triste ?\nWhy blame just Tom?\tPourquoi ne blâmer que Tom ?\nWhy can't you come?\tPourquoi ne peux-tu venir ?\nWhy can't you come?\tPourquoi ne peux-tu pas venir ?\nWhy come to me now?\tPourquoi venir à moi maintenant ?\nWhy did you buy it?\tPourquoi l'avez-vous acheté ?\nWhy did you buy it?\tPourquoi en avez-vous fait l'acquisition ?\nWhy did you buy it?\tPourquoi en as-tu fait l'acquisition ?\nWhy didn't it work?\tPourquoi cela n'a-t-il pas fonctionné ?\nWhy didn't you run?\tPourquoi tu n'as pas couru ?\nWhy didn't you run?\tPourquoi n'avez-vous pas couru ?\nWhy do I even care?\tPourquoi même est-ce que je m'en soucie ?\nWhy do you hate me?\tPourquoi me hais-tu ?\nWhy do you hate me?\tPourquoi me haïssez-vous ?\nWhy do you like it?\tPourquoi l'aimes-tu ?\nWhy do you need it?\tPourquoi en as-tu besoin ?\nWhy do you need it?\tPourquoi en avez-vous besoin ?\nWhy does ice float?\tPourquoi la glace flotte ?\nWhy don't you help?\tPourquoi n'aidez-vous pas ?\nWhy don't you help?\tPourquoi n'aides-tu pas ?\nWhy don't you quit?\tPourquoi ne donnes-tu pas ta démission ?\nWhy don't you quit?\tPourquoi ne donnez-vous pas votre démission ?\nWhy don't you quit?\tPourquoi ne remets-tu pas ta démission ?\nWhy don't you quit?\tPourquoi ne remettez-vous pas votre démission ?\nWhy don't you quit?\tPourquoi n'arrêtez-vous pas ?\nWhy don't you quit?\tPourquoi n'arrêtes-tu pas ?\nWhy don't you sing?\tPourquoi ne chantes-tu pas ?\nWhy don't you sing?\tPourquoi ne chantez-vous pas ?\nWhy is he so quiet?\tPourquoi est-il si silencieux ?\nWhy is she sulking?\tPourquoi elle fait la tête ?\nWhy not live it up?\tPourquoi ne pas profiter de la vie?\nWhy not use robots?\tPourquoi ne pas employer des robots ?\nWhy take that risk?\tPourquoi prendre ce risque ?\nWhy wait until now?\tPourquoi avoir attendu jusqu'à maintenant ?\nWhy was Tom killed?\tPourquoi Tom a-t-il été tué ?\nWhy would I be mad?\tPourquoi serais-je en colère ?\nWill I have a scar?\tAurai-je une cicatrice ?\nWill it rain today?\tPleuvra-t-il aujourd'hui ?\nWomen talk nonstop.\tLes femmes parlent sans cesse.\nWould he like that?\tL'apprécierait-il ?\nWould he like that?\tAimerait-il ça ?\nWould he like that?\tAimerait-il cela ?\nWould you buy that?\tAchèterais-tu ça ?\nWould you buy that?\tAchèteriez-vous cela ?\nWould you like ice?\tVoudrais-tu de la glace ?\nWould you like ice?\tVoudriez-vous de la glace ?\nWould you like one?\tEn voudriez-vous un ?\nWould you like one?\tEn voudriez-vous une ?\nWould you like one?\tEn voudrais-tu un ?\nWould you like one?\tEn voudrais-tu une ?\nWould you teach me?\tMe l'enseignerais-tu ?\nWould you teach me?\tVoudrais-tu me l'enseigner ?\nWould you teach me?\tMe l'enseigneriez-vous ?\nWould you teach me?\tVoudriez-vous me l'enseigner ?\nYeah, you're right.\tOuais, tu as raison.\nYeah, you're right.\tOuais, vous avez raison.\nYou are a good boy.\tTu es un bon garçon.\nYou are a good boy.\tVous êtes un bon garçon.\nYou are a good boy.\tT'es un bon garçon !\nYou are free to go.\tVous êtes libres de partir.\nYou are impossible.\tVous êtes insupportable.\nYou are overworked.\tTu es surmené.\nYou are very brave.\tTu es très courageux.\nYou are very brave.\tTu es très brave.\nYou are very brave.\tVous êtes très courageux.\nYou are very brave.\tVous êtes très courageuse.\nYou are very brave.\tVous êtes très courageuses.\nYou are very smart.\tVous êtes très sages.\nYou aren't invited.\tTu n'es pas invité.\nYou aren't invited.\tTu n'es pas invitée.\nYou aren't invited.\tVous n'êtes pas invitée.\nYou aren't invited.\tVous n'êtes pas invité.\nYou aren't invited.\tVous n'êtes pas invitées.\nYou aren't invited.\tVous n'êtes pas invités.\nYou aren't looking.\tTu ne regardes pas.\nYou aren't looking.\tVous ne regardez pas.\nYou broke the rule.\tTu as enfreint la règle.\nYou broke your arm.\tTu t'es cassé le bras.\nYou broke your leg.\tVous vous êtes cassé la jambe.\nYou can do it, too.\tVous pouvez le faire, aussi.\nYou can do it, too.\tTu peux le faire, aussi.\nYou can rely on me.\tTu peux me faire confiance.\nYou can rely on me.\tTu peux compter sur moi.\nYou can study here.\tTu peux étudier ici.\nYou can trust them.\tOn peut leur faire confiance.\nYou can trust them.\tTu peux leur faire confiance.\nYou can trust them.\tVous pouvez leur faire confiance.\nYou can't back out.\tTu ne peux pas te retirer.\nYou can't back out.\tTu ne peux pas te dédire.\nYou can't back out.\tVous ne pouvez pas vous retirer.\nYou can't back out.\tVous ne pouvez pas vous dédire.\nYou can't blame me.\tTu ne peux pas m'accuser.\nYou can't blame me.\tVous ne pouvez pas m'accuser.\nYou can't blame me.\tTu ne peux pas me faire reproche.\nYou can't blame me.\tVous ne pouvez pas me faire reproche.\nYou can't complain.\tTu ne peux pas te plaindre.\nYou can't eat here.\tVous ne pouvez pas manger ici.\nYou can't eat here.\tTu ne peux pas manger ici.\nYou can't get both.\tOn ne peut pas avoir les deux.\nYou can't go there.\tTu ne peux pas y aller.\nYou can't leave me.\tTu ne peux pas me quitter.\nYou can't leave me.\tVous ne pouvez pas me quitter.\nYou can't quit now.\tTu ne peux pas abandonner maintenant.\nYou can't quit now.\tVous ne pouvez pas abandonner maintenant.\nYou can't quit now.\tTu ne peux pas démissionner maintenant.\nYou can't quit now.\tVous ne pouvez pas démissionner maintenant.\nYou cannot do this.\tTu ne peux pas faire ça.\nYou cannot do this.\tTu ne peux pas faire cela.\nYou cannot do this.\tVous ne pouvez pas faire cela.\nYou cannot do this.\tVous ne pouvez pas faire ça.\nYou didn't warn me.\tVous ne m'avez pas averti.\nYou didn't warn me.\tTu ne m'as pas averti.\nYou don't scare me.\tVous ne me faites pas peur.\nYou don't scare me.\tVous me faites pas peur.\nYou freaked me out.\tTu m'as fichu la trouille.\nYou freaked me out.\tTu m'as refilé les foies.\nYou get used to it.\tVous vous y habituerez.\nYou get used to it.\tTu t'y habitueras.\nYou get used to it.\tVous vous y ferez.\nYou get used to it.\tTu t'y feras.\nYou guys look lost.\tVous avez l'air perdus.\nYou guys wait here.\tAttendez ici.\nYou had a long day.\tVous avez eu une longue journée.\nYou have a message.\tTu as un message.\nYou have a message.\tVous avez un message.\nYou have been busy.\tVous avez été occupé.\nYou have been busy.\tVous avez été occupés.\nYou have cute eyes.\tTu as des yeux mignons.\nYou have cute eyes.\tVous avez de mignons yeux.\nYou have no choice.\tVous n'avez pas le choix.\nYou have no choice.\tTu n'as pas le choix.\nYou have to get up.\tTu dois te lever.\nYou have to get up.\tVous devez vous lever.\nYou intimidate Tom.\tVous intimidez Tom.\nYou intimidate Tom.\tTu intimides Tom.\nYou just need help.\tTu as seulement besoin d'aide.\nYou know I'm wrong.\tVous savez que j'ai tort.\nYou know I'm wrong.\tTu sais que j'ai tort.\nYou know how it is.\tTu sais comment c'est.\nYou know how it is.\tVous savez comment c'est.\nYou know the drill.\tTu connais l'exercice.\nYou know the drill.\tTu connais le mantra.\nYou know the drill.\tTu connais la rengaine.\nYou know the drill.\tTu connais le refrain.\nYou know the drill.\tVous connaissez le refrain.\nYou know the drill.\tVous connaissez la rengaine.\nYou know the drill.\tVous connaissez le mantra.\nYou know the drill.\tVous connaissez l'exercice.\nYou like elephants.\tLes éléphants vous plaisent.\nYou like elephants.\tVous aimez les éléphants.\nYou look contented.\tVous avez l'air content.\nYou look contented.\tVous avez l'air satisfaite.\nYou look contented.\tVous avez l'air satisfait.\nYou look just fine.\tTu as l'air juste comme il faut.\nYou look just fine.\tVous avez l'air juste comme il faut.\nYou look satisfied.\tVous avez l'air satisfaite.\nYou look satisfied.\tVous avez l'air satisfait.\nYou look surprised.\tTu as l'air surpris.\nYou look surprised.\tVous avez l'air surpris.\nYou look very good.\tTu as l'air très bien.\nYou look very good.\tVous avez l'air très bien.\nYou look very pale.\tTu as l'air très pâle.\nYou look very pale.\tVous avez l'air très pâle.\nYou look very pale.\tVous avez l'air très pâles.\nYou made a promise.\tVous aviez promis.\nYou may be correct.\tIl se peut que tu aies raison.\nYou may be correct.\tIl se peut que vous ayez raison.\nYou may go at once.\tTu peux y aller immédiatement.\nYou may go at once.\tVous pouvez y aller immédiatement.\nYou may go at once.\tVous pouvez partir immédiatement.\nYou may go at once.\tTu peux partir immédiatement.\nYou may use my car.\tVous pouvez utiliser ma voiture.\nYou may use my car.\tTu peux prendre ma voiture.\nYou might be right.\tTu dois avoir raison.\nYou might get hurt.\tIl est possible que tu sois blessé.\nYou might get hurt.\tVous pourriez être blessé.\nYou might meet him.\tPeut-être le rencontreras-tu.\nYou might meet him.\tPeut-être auras-tu la permission de le rencontrer.\nYou might try that.\tVous pourriez essayer ça.\nYou must all leave.\tVous devez tous partir.\nYou must be joking!\tTu parles !\nYou must be sleepy.\tTu dois avoir sommeil.\nYou must be sleepy.\tVous devez avoir sommeil.\nYou must be strong.\tIl te faut être fort.\nYou must be strong.\tIl vous faut être fort.\nYou must find work.\tIl vous faut trouver du travail.\nYou must find work.\tIl te faut trouver du travail.\nYou must find work.\tTu dois trouver du travail.\nYou must find work.\tVous devez trouver du travail.\nYou must get going.\tIl faut que tu y ailles.\nYou must get going.\tIl faut que vous y alliez.\nYou need to fix it.\tIl faut que tu le répares.\nYou need to let go.\tIl faut que tu laisses courir.\nYou need to let go.\tIl faut que vous laissiez courir.\nYou only live once.\tOn ne vit qu'une fois.\nYou owe me a favor.\tTu me dois une faveur.\nYou party too much.\tTu fais trop la fête.\nYou party too much.\tVous faites trop la fête.\nYou people are mad.\tVous êtes fous.\nYou people are mad.\tVous êtes tous cinglés.\nYou ruined my life.\tTu as ruiné ma vie.\nYou ruined my life.\tVous avez ruiné ma vie.\nYou seem confident.\tTu as l'air confiant.\nYou seem depressed.\tTu as l'air déprimé.\nYou seem depressed.\tTu as l'air déprimée.\nYou seem depressed.\tVous avez l'air déprimé.\nYou seem depressed.\tVous avez l'air déprimée.\nYou seem depressed.\tVous avez l'air déprimées.\nYou seem depressed.\tVous avez l'air déprimés.\nYou seem very busy.\tVous avez l'air très occupé.\nYou should do that.\tTu devrais faire ça.\nYou should do that.\tVous devriez faire ça.\nYou should know it.\tTu devrais le savoir.\nYou should know it.\tVous devriez le savoir.\nYou speak too much.\tTu parles trop.\nYou take the money.\tPrends l'argent.\nYou taught me that.\tTu m'as appris cela.\nYou taught us that.\tTu nous l'a enseigné.\nYou were fantastic.\tTu as été fantastique.\nYou were fantastic.\tVous avez été fantastiques.\nYou were fantastic.\tVous avez été fantastique.\nYou were fantastic.\tTu étais fantastique.\nYou were fantastic.\tVous étiez fantastique.\nYou were fantastic.\tVous étiez fantastiques.\nYou were in a coma.\tTu étais dans le coma.\nYou were in a coma.\tVous étiez dans le coma.\nYou were my friend.\tVous fûtes mon ami.\nYou were my friend.\tVous fûtes mon amie.\nYou were my friend.\tTu fus mon ami.\nYou were my friend.\tTu fus mon amie.\nYou were my friend.\tTu as été mon amie.\nYou were my friend.\tTu as été mon ami.\nYou were my friend.\tVous avez été mon ami.\nYou were my friend.\tVous avez été mon amie.\nYou were so strong.\tVous étiez si fort.\nYou were so strong.\tTu étais tellement fort.\nYou were so strong.\tTu étais si forte.\nYou were so strong.\tVous étiez tellement forts.\nYou were so strong.\tVous étiez si forte.\nYou were so strong.\tVous étiez si fortes.\nYou won't be fired.\tOn ne vous virera pas.\nYou won't be fired.\tVous ne serez pas virée.\nYou won't be fired.\tVous ne serez pas viré.\nYou won't be fired.\tVous ne serez pas virées.\nYou won't be fired.\tVous ne serez pas virés.\nYou won't be fired.\tTu ne seras pas virée.\nYou won't be fired.\tTu ne seras pas viré.\nYou won't be fired.\tOn ne te virera pas.\nYou'd better hurry.\tTu ferais mieux de te dépêcher.\nYou'd better hurry.\tTu ferais mieux de te grouiller.\nYou'd better hurry.\tVous feriez mieux de vous dépêcher.\nYou'd better hurry.\tVous feriez mieux de vous grouiller.\nYou'll bounce back.\tVous vous en remettrez.\nYou'll feel better.\tTu te sentiras mieux.\nYou'll feel better.\tVous vous sentirez mieux.\nYou'll get over it.\tTu t'en remettras.\nYou'll get over it.\tVous vous en remettrez.\nYou're a big softy.\tT'es un gros nounours.\nYou're a funny gal.\tT'es une drôle de fille.\nYou're a funny guy.\tT'es un gars marrant.\nYou're a funny guy.\tT'es un drôle de gars.\nYou're a funny guy.\tVous êtes un drôle de zozo.\nYou're a funny guy.\tVous êtes un drôle d'oiseau.\nYou're a funny guy.\tVous êtes un drôle de spécimen.\nYou're a funny man.\tT'es un mec marrant.\nYou're a funny man.\tVous êtes un drôle de type.\nYou're a good liar.\tTu es bon menteur.\nYou're a good liar.\tVous êtes bon menteur.\nYou're a great guy.\tTu es un bon gars.\nYou're a great guy.\tVous êtes un bon gars.\nYou're a smart boy.\tTu es un garçon malin.\nYou're a weird kid.\tT'es un gamin bizarre.\nYou're a weird kid.\tVous êtes un enfant bizarre.\nYou're a woman now.\tTu es désormais une femme.\nYou're a woman now.\tVous êtes désormais une femme.\nYou're about right.\tTu as presque raison.\nYou're all cowards.\tVous êtes tous des lâches.\nYou're all invited.\tVous êtes tous invités.\nYou're all invited.\tVous êtes toutes invitées.\nYou're all racists.\tVous êtes tous des racistes.\nYou're all racists.\tVous êtes toutes des racistes.\nYou're annoying me.\tTu m'énerves.\nYou're avoiding me.\tTu m'évites.\nYou're avoiding me.\tVous m'évitez.\nYou're being silly.\tTu es idiot.\nYou're being silly.\tVous êtes idiot.\nYou're being silly.\tVous êtes idiote.\nYou're being silly.\tTu es idiote.\nYou're considerate.\tVous êtes prévenant.\nYou're considerate.\tTu es prévenant.\nYou're considerate.\tTu es prévenante.\nYou're cooperating.\tVous coopérez.\nYou're extroverted.\tTu es extraverti.\nYou're extroverted.\tTu es extravertie.\nYou're extroverted.\tVous êtes extraverti.\nYou're extroverted.\tVous êtes extravertis.\nYou're extroverted.\tVous êtes extravertie.\nYou're extroverted.\tVous êtes extraverties.\nYou're fascinating.\tVous êtes fascinante.\nYou're fascinating.\tVous êtes fascinantes.\nYou're fascinating.\tVous êtes fascinant.\nYou're fascinating.\tVous êtes fascinants.\nYou're fascinating.\tTu es fascinante.\nYou're fascinating.\tTu es fascinant.\nYou're fashionable.\tTu es branché.\nYou're fashionable.\tTu es branchée.\nYou're fashionable.\tVous êtes branché.\nYou're fashionable.\tVous êtes branchés.\nYou're fashionable.\tVous êtes branchée.\nYou're fashionable.\tVous êtes branchées.\nYou're hurting him.\tVous lui faites mal.\nYou're hurting him.\tTu lui fais mal.\nYou're influential.\tVous êtes influent.\nYou're lying to me.\tTu me mens.\nYou're my princess.\tVous êtes ma princesse.\nYou're not bruised.\tTu n'es pas contusionné.\nYou're not bruised.\tTu n'es pas contusionnée.\nYou're not bruised.\tVous n'êtes pas contusionné.\nYou're not bruised.\tVous n'êtes pas contusionnée.\nYou're not bruised.\tVous n'êtes pas contusionnés.\nYou're not bruised.\tVous n'êtes pas contusionnées.\nYou're not dressed.\tVous n'êtes pas habillé.\nYou're not dressed.\tVous n'êtes pas habillée.\nYou're not dressed.\tVous n'êtes pas habillés.\nYou're not dressed.\tVous n'êtes pas habillées.\nYou're not dressed.\tTu n'es pas habillé.\nYou're not dressed.\tTu n'es pas habillée.\nYou're not helping.\tTu n'aides pas.\nYou're not helping.\tVous n'aidez pas.\nYou're not like me.\tTu n'es pas comme moi.\nYou're not like me.\tVous n'êtes pas comme moi.\nYou're not my type.\tTu n'es pas mon genre.\nYou're not my type.\tVous n'êtes pas mon genre.\nYou're not special.\tTu n'es pas spécial.\nYou're on the list.\tVous êtes sur la liste.\nYou're out of luck.\tTa chance est épuisée.\nYou're out of luck.\tVotre chance est épuisée.\nYou're out of time.\tVotre temps est écoulé.\nYou're out of time.\tTon temps est écoulé.\nYou're pretty good.\tT'es assez bon.\nYou're pretty good.\tT'es assez bonne.\nYou're pretty good.\tVous êtes plutôt bon.\nYou're pretty good.\tVous êtes plutôt bonne.\nYou're pretty good.\tVous êtes plutôt bons.\nYou're pretty good.\tVous êtes assez bonnes.\nYou're quite smart.\tTu es fort maline.\nYou're replaceable.\tOn peut te remplacer.\nYou're replaceable.\tTu n'es pas indispensable.\nYou're resourceful.\tTu es plein de ressources.\nYou're resourceful.\tTu es pleine de ressources.\nYou're resourceful.\tVous êtes plein de ressources.\nYou're resourceful.\tVous êtes pleins de ressources.\nYou're resourceful.\tVous êtes pleine de ressources.\nYou're so paranoid.\tTu es tellement paranoïaque !\nYou're so paranoid.\tVous êtes tellement paranoïaque !\nYou're so pathetic.\tTu es si pitoyable.\nYou're so pathetic.\tVous êtes si pathétique.\nYou're so talented.\tVous avez tellement de talent !\nYou're so talented.\tTu as tellement de talent !\nYou're still alive.\tVous êtes toujours vivant.\nYou're still alive.\tVous êtes toujours vivants.\nYou're still alive.\tTu es toujours vivant.\nYou're still alive.\tTu es toujours vivante.\nYou're still alive.\tVous êtes toujours vivante.\nYou're still alive.\tVous êtes toujours vivantes.\nYou're still green.\tTu es encore jeune.\nYou're still green.\tVous êtes encore inexpérimenté.\nYou're still green.\tTu es encore un bleu.\nYou're still young.\tTu es encore jeune.\nYou're still young.\tVous êtes encore jeune.\nYou're still young.\tVous êtes encore jeunes.\nYou're such a jerk.\tTu es un de ces pauvres types !\nYou're such a jerk.\tVous êtes un de ces pauvres types !\nYou're such a liar.\tTu es un sacré menteur.\nYou're such a liar.\tVous êtes un sacré menteur.\nYou're such a liar.\tQuel menteur tu fais !\nYou're such a liar.\tQuel menteur vous faites !\nYou're such a liar.\tQuelle menteuse tu fais !\nYou're such a liar.\tQuelle menteuse vous faites !\nYou're such a liar.\tVous êtes une sacrée menteuse.\nYou're such a liar.\tTu es une sacrée menteuse.\nYou're the teacher.\tVous êtes l'enseignant.\nYou're the teacher.\tVous êtes l'enseignante.\nYou're the teacher.\tVous êtes l'instituteur.\nYou're the teacher.\tVous êtes l'institutrice.\nYou're the teacher.\tVous êtes le professeur.\nYou're the teacher.\tVous êtes la professeur.\nYou're the teacher.\tTu es le professeur.\nYou're the teacher.\tTu es la professeur.\nYou're the teacher.\tTu es l'institutrice.\nYou're the teacher.\tTu es l'instituteur.\nYou're the teacher.\tTu es l'enseignante.\nYou're the teacher.\tTu es l'enseignant.\nYou're the teacher.\tC'est vous l'enseignante.\nYou're the teacher.\tC'est vous l'enseignant.\nYou're the teacher.\tC'est vous le professeur.\nYou're the teacher.\tC'est vous la professeur.\nYou're the teacher.\tC'est vous l'instituteur.\nYou're the teacher.\tC'est vous l'institutrice.\nYou're the teacher.\tC'est toi l'instituteur.\nYou're the teacher.\tC'est toi l'institutrice.\nYou're the teacher.\tC'est toi le professeur.\nYou're the teacher.\tC'est toi la professeur.\nYou're the teacher.\tC'est toi le prof.\nYou're the teacher.\tC'est toi la prof.\nYou're the teacher.\tC'est toi l'enseignant.\nYou're the teacher.\tC'est toi l'enseignante.\nYou're touching me.\tTu me touches.\nYou're touching me.\tVous me touchez.\nYou're trustworthy.\tTu es fiable.\nYou're trustworthy.\tVous êtes fiable.\nYou're trustworthy.\tVous êtes fiables.\nYou're turning red.\tTu deviens rouge.\nYou're turning red.\tVous devenez rouge.\nYou're unambitious.\tTu es dépourvu d'ambition.\nYou're unambitious.\tTu es dépourvue d'ambition.\nYou're unambitious.\tVous êtes dépourvu d'ambition.\nYou're unambitious.\tVous êtes dépourvue d'ambition.\nYou're unambitious.\tVous êtes dépourvus d'ambition.\nYou're unambitious.\tVous êtes dépourvues d'ambition.\nYou're very astute.\tTu es fort astucieux.\nYou're very astute.\tTu es fort astucieuse.\nYou're very astute.\tTu es très astucieux.\nYou're very astute.\tTu es très astucieuse.\nYou're very astute.\tVous êtes très astucieux.\nYou're very astute.\tVous êtes très astucieuse.\nYou're very astute.\tVous êtes très astucieuses.\nYou're very astute.\tVous êtes fort astucieux.\nYou're very astute.\tVous êtes fort astucieuse.\nYou're very astute.\tVous êtes fort astucieuses.\nYou're very clever.\tTu es très ingénieux.\nYou're very clever.\tTu es très ingénieuse.\nYou're very clever.\tTu es très habile.\nYou're very clever.\tTu es fort habile.\nYou're very clever.\tVous êtes très habile.\nYou're very clever.\tVous êtes très habiles.\nYou're very clever.\tVous êtes fort habile.\nYou're very clever.\tVous êtes fort habiles.\nYou're very clever.\tVous êtes fort ingénieux.\nYou're very clever.\tVous êtes très ingénieux.\nYou're very clever.\tVous êtes fort ingénieuse.\nYou're very clever.\tVous êtes fort ingénieuses.\nYou're very clever.\tVous êtes très ingénieuse.\nYou're very clever.\tVous êtes très ingénieuses.\nYou're very clever.\tTu es fort ingénieux.\nYou're very clever.\tTu es fort ingénieuse.\nYou're very direct.\tTu es très direct.\nYou're very direct.\tTu es très directe.\nYou're very direct.\tVous êtes très direct.\nYou're very direct.\tVous êtes très directe.\nYou're very direct.\tVous êtes très directes.\nYou're very lonely.\tTu es très solitaire.\nYou're very lonely.\tTu es fort solitaire.\nYou're very lonely.\tVous êtes très solitaire.\nYou're very lonely.\tVous êtes très solitaires.\nYou're very lonely.\tVous êtes fort solitaire.\nYou're very lonely.\tVous êtes fort solitaires.\nYou're very pretty.\tTu es très jolie.\nYou're wrong again.\tTu as à nouveau tort.\nYou're wrong again.\tVous avez à nouveau tort.\nYou've been warned.\tOn t'a prévenu.\nYou've been warned.\tOn t'a prévenue.\nYou've been warned.\tOn vous a prévenu.\nYou've been warned.\tOn vous a prévenue.\nYou've been warned.\tT'as été prévenu.\nYou've been warned.\tT'as été prévenue.\nYou've been warned.\tVous avez été prévenu.\nYou've been warned.\tVous avez été prévenue.\nYou've been warned.\tVous avez été prévenus.\nYou've been warned.\tVous avez été prévenues.\nYou've been warned.\tOn vous a prévenus.\nYou've been warned.\tOn vous a prévenues.\nYou've betrayed us.\tTu nous as trahies.\nYou've done enough.\tTu en as fait assez.\nYou've done enough.\tVous en avez fait assez.\nYou've got a fever.\tVous avez de la fièvre.\nYou've got a fever.\tTu as de la fièvre.\nYou've got to hide.\tIl faut que tu te caches.\nYou've got to move.\tIl vous faut bouger.\nYou've got to move.\tIl te faut bouger.\nYou've got to move.\tIl vous faut vous déplacer.\nYou've got to move.\tIl te faut te déplacer.\nYou've got to wait.\tIl te faut attendre.\nYou've got to wait.\tIl vous faut attendre.\nYou've said enough.\tTu en as assez dit.\nYou've said enough.\tVous en avez assez dit.\nYou've seen enough.\tTu en as assez vu.\nYou've seen enough.\tVous en avez assez vu.\nYou've worked hard.\tTu as travaillé dur.\nYou've worked hard.\tVous avez rudement travaillé.\nYou've worked hard.\tVous avez travaillé d'arrache-pied.\nYour bath is ready.\tTon bain est prêt.\nYour bath is ready.\tVotre bain est prêt.\nYour face is dirty.\tVotre visage est sale.\nYour place or mine?\tEst-ce votre place ou la mienne ?\n\"Trust me,\" he said.\t« Fais-moi confiance », dit-il.\nA dog has four legs.\tUn chien a quatre pattes.\nA dog has four legs.\tUn chien est doté de quatre pattes.\nA nap would be good.\tUne sieste ferait du bien.\nA noise woke her up.\tUn bruit l'a réveillée.\nA rose smells sweet.\tUne rose, ça sent bon.\nA truck hit the dog.\tUn camion a percuté le chien.\nA whale is a mammal.\tLa baleine est un mammifère.\nAcid acts on metals.\tL'acide attaque le métal.\nAdvice is like salt.\tLes conseils sont pareils au sel.\nAll I have is books.\tTout ce que j'ai, ce sont des livres.\nAll I have is books.\tTout ce dont je dispose, ce sont des livres.\nAll I want is money.\tTout ce que je veux, c'est de l'argent.\nAll is well with me.\tTout va bien pour moi.\nAll of us are happy.\tNous sommes tous contents.\nAll sales are final.\tLes soldes ne sont pas reprises.\nAll share the blame.\tTous partagent la faute.\nAll share the blame.\tToutes partagent la faute.\nAll swans are white.\tTous les cygnes sont blancs.\nAll you do is party.\tTout ce que vous faites, c'est de faire la fête.\nAll you do is party.\tTout ce que tu fais, c'est faire la fête.\nAm I disturbing you?\tEst-ce que je te dérange ?\nAm I disturbing you?\tEst-ce que je vous dérange ?\nAm I going too fast?\tVais-je trop vite ?\nAnswer the question.\tRépondez à la question.\nAnybody can do that.\tN'importe qui peut faire ça.\nAnybody can read it.\tN'importe qui peut le lire.\nAnybody want a beer?\tQuelqu'un veut-il une bière ?\nAnybody want a lift?\tQui que ce soit veut-il que je le dépose quelque part ?\nAre seats available?\tY a-t-il des places libres ?\nAre seats available?\tDes places sont-elles disponibles ?\nAre they all strong?\tSont-ils tous forts ?\nAre they all strong?\tSont-elles toutes fortes ?\nAre we just friends?\tNe sommes-nous qu'amis ?\nAre we just friends?\tNe sommes-nous qu'amies ?\nAre we leaving soon?\tPartons-nous bientôt ?\nAre we leaving soon?\tY allons-nous bientôt ?\nAre we leaving soon?\tOn part bientôt ?\nAre you a policeman?\tÊtes-vous un agent de police ?\nAre you a policeman?\tEs-tu un policier ?\nAre you almost here?\tEs-tu bientôt là ?\nAre you almost here?\tÊtes-vous bientôt là ?\nAre you avoiding me?\tEst-ce que tu m'évites ?\nAre you avoiding me?\tEst-ce que vous m'évitez ?\nAre you coming down?\tDescends-tu ?\nAre you enjoying it?\tEst-ce que ça te plaît ?\nAre you enjoying it?\tCela te plaît-il ?\nAre you enjoying it?\tCela vous plaît-il ?\nAre you enjoying it?\tEst-ce que cela vous plaît ?\nAre you kids hungry?\tLes enfants, avez-vous faim ?\nAre you leaving now?\tPars-tu maintenant ?\nAre you leaving now?\tPartez-vous maintenant ?\nAre you lying to me?\tEs-tu en train de me mentir ?\nAre you lying to me?\tÊtes-vous en train de me mentir ?\nAre you lying to me?\tMe mens-tu ?\nAre you lying to me?\tMe mentez-vous ?\nAre you on Facebook?\tT'es sur Facebook ?\nAre you on Facebook?\tÊtes-vous sur Facebook ?\nAre you people lost?\tÊtes-vous perdus ?\nAre you proud of me?\tÊtes-vous fiers de moi ?\nAre you proud of me?\tÊtes-vous fières de moi ?\nAre you proud of me?\tÊtes-vous fier de moi ?\nAre you proud of me?\tÊtes-vous fière de moi ?\nAre you proud of me?\tEs-tu fier de moi ?\nAre you proud of me?\tEs-tu fière de moi ?\nAre you ready to go?\tEs-tu prêt à partir ?\nAre you ready to go?\tÊtes-vous prêt à partir ?\nAre you ready to go?\tÊtes-vous prêts à partir ?\nAre you ready to go?\tÊtes-vous prête à partir ?\nAre you ready to go?\tÊtes-vous prêtes à partir ?\nAre you ready to go?\tEs-tu prête à partir ?\nAre you ready to go?\tEs-tu prêt à y aller ?\nAre you ready to go?\tEs-tu prête à y aller ?\nAre you ready to go?\tÊtes-vous prêt à y aller ?\nAre you ready to go?\tÊtes-vous prête à y aller ?\nAre you ready to go?\tÊtes-vous prêts à y aller ?\nAre you ready to go?\tÊtes-vous prêtes à y aller ?\nAre you really sick?\tEs-tu vraiment malade ?\nAre you really sick?\tÊtes-vous vraiment malade ?\nAre you resourceful?\tEs-tu débrouillard?\nAre you settling in?\tVous installez-vous ?\nAre you settling in?\tT'installes-tu ?\nAre you settling in?\tT'installes-tu à demeure ?\nAre you settling in?\tVous installez-vous à demeure ?\nAre you still awake?\tEs-tu toujours debout ?\nAre you still happy?\tÊtes-vous toujours heureux ?\nAre you still happy?\tÊtes-vous toujours heureuse?\nAre you still happy?\tEs-tu toujours heureuse ?\nAre you still there?\tY êtes-vous encore ?\nAre you still there?\tY êtes-vous toujours ?\nAre you still there?\tY es-tu encore ?\nAre you still there?\tY es-tu toujours ?\nAre you that stupid?\tÊtes-vous aussi bête ?\nAre you that stupid?\tÊtes-vous aussi bêtes ?\nAre you that stupid?\tEs-tu aussi bête ?\nAre you the manager?\tÊtes-vous le directeur ?\nAre you the prophet?\tVous êtes le prophète ?\nAsk Tom to be quiet.\tDemande à Tom d'être calme.\nBaby ducks are cute.\tLes bébés canards sont mignons.\nBad habits die hard.\tLes mauvaises habitudes ont la peau dure.\nBe polite, but firm.\tSois poli mais ferme.\nBe polite, but firm.\tSois polie mais ferme.\nBe polite, but firm.\tSoyez poli mais ferme.\nBe polite, but firm.\tSoyez polie mais ferme.\nBe polite, but firm.\tSoyez polis mais fermes.\nBe polite, but firm.\tSoyez polies mais fermes.\nBest of luck to you.\tJe vous souhaite la meilleure des chances.\nBest of luck to you.\tJe te souhaite la meilleure des chances.\nBeware of jellyfish.\tAttention aux méduses !\nBreakfast is served.\tLe petit-déjeuner est servi.\nBreakfast is served.\tLe déjeuner est servi.\nBring me my glasses.\tApportez-moi mes lunettes.\nBring me my glasses.\tApporte-moi mes lunettes.\nBring me my glasses.\tPasse-moi mes lunettes.\nBring me some water.\tApporte-moi de l'eau !\nBring me some water.\tApportez-moi de l'eau !\nBunnies are so cute.\tLes lapins sont tellement mignons !\nBut I wasn't afraid.\tMais je n'avais pas peur.\nCall if you need me.\tAppelle si tu as besoin de moi !\nCall if you need me.\tAppelez si vous avez besoin de moi !\nCan I call you back?\tPuis-je te rappeler ?\nCan I call you back?\tPuis-je vous rappeler ?\nCan I do this later?\tPuis-je le faire plus tard ?\nCan I go to bed now?\tPuis-je aller au lit maintenant ?\nCan I have some tea?\tPuis-je avoir du thé ?\nCan I see you again?\tPuis-je te revoir ?\nCan I see you again?\tPuis-je vous revoir ?\nCan I talk with you?\tEst-ce que je peux te parler ?\nCan I use this bike?\tPuis-je utiliser ce vélo ?\nCan he speak French?\tSait-il parler le français ?\nCan we believe that?\tPouvons-nous y croire ?\nCan we just drop it?\tPeut-on juste en rester là ?\nCan we just drop it?\tPouvons-nous juste en rester là ?\nCan we just go home?\tPouvons-nous juste rentrer chez nous ?\nCan we just go home?\tPouvons-nous juste rentrer à la maison ?\nCan we recycle this?\tPouvons-nous recycler ceci ?\nCan we recycle this?\tPeut-on recycler ceci ?\nCan we speak French?\tPouvons-nous parler français ?\nCan we speak French?\tPeut-on parler français ?\nCan we speak French?\tOn peut parler français ?\nCan you answer this?\tPouvez-vous répondre à cela ?\nCan you describe it?\tPeux-tu le décrire ?\nCan you describe it?\tPouvez-vous le décrire ?\nCan you drive a car?\tPouvez-vous conduire une voiture ?\nCan you drive a car?\tSais-tu conduire ?\nCan you drive a car?\tSavez-vous conduire ?\nCan you read Arabic?\tTu peux lire en arabe ?\nCan you really swim?\tSais-tu vraiment nager ?\nCan you tell me how?\tPeux-tu me dire comment?\nCan you tell me how?\tPouvez-vous me dire comment?\nCatch me if you can.\tAttrape-moi si tu peux.\nChange is important.\tLe changement est important.\nChange your clothes.\tChange de vêtements.\nChew your food well.\tMâche bien ta nourriture.\nChivalry isn't dead.\tLa chevalerie n'est pas morte.\nChristmas drew near.\tNoël se rapprochait.\nChristmas is coming.\tNoël approche.\nClear off the table.\tDébarrassez la table !\nClear off the table.\tDébarrasse la table.\nClear off the table.\tRemettez la table !\nCome again tomorrow.\tRevenez demain.\nCome again tomorrow.\tReviens demain.\nCome here right now.\tViens ici tout de suite.\nCome meet everybody.\tViens rencontrer tout le monde !\nCome meet everybody.\tVenez rencontrer tout le monde !\nCome on, talk to me.\tAllez, parlez-moi.\nCome on, talk to me.\tAllez, parle-moi.\nContact me tomorrow.\tContacte-moi demain.\nContact me tomorrow.\tContactez-moi demain.\nCookie needs a walk.\tMédor a besoin d'une promenade !\nCould you sign here?\tPouvez-vous signer ici ?\nCrime is increasing.\tLe crime est en augmentation.\nDeath is inevitable.\tLa mort est inévitable.\nDid I embarrass you?\tVous ai-je embarrassée ?\nDid I embarrass you?\tVous ai-je embarrassé ?\nDid I embarrass you?\tVous ai-je embarrassées ?\nDid I embarrass you?\tVous ai-je embarrassés ?\nDid I embarrass you?\tT'ai-je embarrassé ?\nDid I embarrass you?\tT'ai-je embarrassée ?\nDid I forget anyone?\tAi-je oublié qui que ce soit ?\nDid I have a choice?\tAvais-je le choix ?\nDid I just say that?\tEst-ce que je viens de dire ça ?\nDid I lock the door?\tAi-je verrouillé la porte ?\nDid I make the team?\tJe fais partie de l'équipe ?\nDid I make the team?\tSuis-je sélectionné dans l'équipe ?\nDid I mess up again?\tAi-je encore foutu le bordel ?\nDid I mess up again?\tAi-je encore foiré ?\nDid I miss anything?\tAi-je manqué quelque chose ?\nDid I miss the turn?\tAi-je loupé mon tour ?\nDid I miss the turn?\tAi-je manqué la bifurcation ?\nDid I miss the turn?\tAi-je loupé la bifurcation ?\nDid I miss the turn?\tAi-je manqué l'embranchement ?\nDid I miss the turn?\tAi-je loupé l'embranchement ?\nDid I pass the test?\tAi-je réussi l'examen ?\nDid I show you this?\tT'ai-je montré ceci ?\nDid I show you this?\tVous ai-je montré ceci ?\nDid I tell you that?\tVous ai-je dit cela ?\nDid I tell you that?\tVous ai-je conté cela ?\nDid I tell you that?\tT'ai-je conté cela ?\nDid I tell you that?\tT'ai-je dit cela ?\nDid I touch a nerve?\tAi-je touché un point sensible ?\nDid I wake you guys?\tJe vous ai réveillés, les mecs ?\nDid I win something?\tAi-je gagné quelque chose ?\nDid I win something?\tAi-je remporté quelque chose ?\nDid Tom like Boston?\tEst-ce que Tom a aimé Boston?\nDid anybody see you?\tQui que ce soit vous a-t-il vu ?\nDid anybody see you?\tQuiconque vous a-t-il vu ?\nDid anybody see you?\tQui que ce soit t'a-t-il vu ?\nDid anybody see you?\tQuiconque t'a-t-il vu ?\nDid you ask Tom why?\tAs-tu demandé pourquoi à Tom ?\nDid you ask Tom why?\tAvez-vous demandé pourquoi à Tom ?\nDid you buy flowers?\tAs-tu acheté des fleurs ?\nDid you buy flowers?\tAvez-vous acheté des fleurs ?\nDid you do all this?\tAs-tu fait tout ceci ?\nDid you do all this?\tAvez-vous fait tout ceci ?\nDid you do all this?\tEst-ce toi qui as fait tout ça ?\nDid you do all this?\tEst-ce vous qui avez fait tout ça ?\nDid you give him up?\tAvez-vous perdu espoir pour lui ?\nDid you give him up?\tAs-tu perdu espoir pour lui ?\nDid you hear it too?\tL'avez-vous également entendu ?\nDid you hear it too?\tL'as-tu également entendu ?\nDid you hug anybody?\tAs-tu enlacé qui que ce soit ?\nDid you hug anybody?\tAvez-vous enlacé qui que ce soit ?\nDid you leave a tip?\tTu as laissé un pourboire ?\nDid you like Boston?\tAs-tu apprécié Boston ?\nDid you like Boston?\tAvez-vous apprécié Boston ?\nDid you lose weight?\tAs-tu perdu du poids ?\nDid you lose weight?\tAvez-vous perdu du poids ?\nDid you read it all?\tL'as-tu lu en entier ?\nDid you read it all?\tL'as-tu lue en entier ?\nDid you read it all?\tL'avez-vous lu en entier ?\nDid you read it all?\tL'avez-vous lue en entier ?\nDid you read it all?\tL'avez-vous lu en totalité ?\nDid you read it all?\tL'as-tu lu en totalité ?\nDid you see anybody?\tAs-tu vu qui que ce soit ?\nDid you see anybody?\tAvez-vous vu qui que ce soit ?\nDid you take a bath?\tAs-tu pris un bain?\nDo I curse too much?\tEst-ce que je jure trop ?\nDo I detect sarcasm?\tDois-je entendre un sarcasme ?\nDo exactly as I say.\tFais précisément ce que je dis.\nDo we have a choice?\tAvons-nous le choix ?\nDo we need a Plan B?\tAvons-nous besoin d'un plan de secours ?\nDo you drink coffee?\tBois-tu du café ?\nDo you drink coffee?\tBuvez-vous du café ?\nDo you enjoy losing?\tApprécies-tu de perdre ?\nDo you enjoy losing?\tPrends-tu plaisir à perdre ?\nDo you enjoy losing?\tAppréciez-vous de perdre ?\nDo you enjoy losing?\tPrenez-vous plaisir à perdre ?\nDo you feel it, too?\tEn as-tu également le sentiment ?\nDo you feel it, too?\tEn avez-vous également le sentiment ?\nDo you go to church?\tFréquentez-vous l'église ?\nDo you have a fever?\tAs-tu de la fièvre ?\nDo you have a hobby?\tAs-tu un passe-temps ?\nDo you have a hobby?\tAvez-vous un passe-temps ?\nDo you have a house?\tAs-tu une maison ?\nDo you have a match?\tAs-tu une allumette ?\nDo you have a match?\tDisposes-tu d'une allumette ?\nDo you have a phone?\tAs-tu un téléphone ?\nDo you have a phone?\tAvez-vous un téléphone ?\nDo you have any CDs?\tAvez-vous des CDs\nDo you have to stay?\tDevez-vous rester ?\nDo you know my name?\tConnais-tu mon nom ?\nDo you know my name?\tConnaissez-vous mon nom ?\nDo you know the way?\tConnaissez-vous le chemin ?\nDo you like English?\tAimez-vous l'anglais ?\nDo you like English?\tAimes-tu l'anglais ?\nDo you like cooking?\tAimes-tu faire la cuisine ?\nDo you like dancing?\tAimez-vous danser ?\nDo you like it then?\tAlors, cela te plaît-il ?\nDo you like it then?\tAlors, cela vous plaît-il ?\nDo you like me, too?\tM'apprécies-tu aussi ?\nDo you like me, too?\tM'appréciez-vous aussi ?\nDo you like oysters?\tAppréciez-vous les huîtres ?\nDo you like oysters?\tAimez-vous les huîtres ?\nDo you like oysters?\tApprécies-tu les huîtres ?\nDo you like oysters?\tAimes-tu les huîtres ?\nDo you like singing?\tAimes-tu chanter ?\nDo you like singing?\tAimez-vous chanter ?\nDo you like to sing?\tAimes-tu chanter ?\nDo you like writing?\tEst-ce que tu aimes écrire ?\nDo you like writing?\tAimez-vous écrire ?\nDo you like writing?\tAimes-tu écrire ?\nDo you mind if I go?\tVoyez-vous un inconvénient à ce que je parte ?\nDo you mind if I go?\tVoyez-vous un inconvénient à ce que j'y aille ?\nDo you mind if I go?\tVois-tu un inconvénient à ce que j'y aille ?\nDo you mind if I go?\tVois-tu un inconvénient à ce que je parte ?\nDo you own research.\tConduisez vos propres investigations !\nDo you own research.\tConduis tes propres investigations !\nDo you realize that?\tEn prends-tu conscience ?\nDo you realize that?\tEn prenez-vous conscience ?\nDo you see anything?\tVois-tu quoi que ce soit ?\nDo you see anything?\tVoyez-vous quoi que ce soit ?\nDo you share a room?\tPartages-tu une chambre?\nDo you smoke cigars?\tFumes-tu le cigare ?\nDo you smoke cigars?\tFumez-vous le cigare ?\nDo you speak French?\tParlez-vous français ?\nDo you speak French?\tParles-tu français ?\nDo you speak French?\tSais-tu parler français ?\nDo you study French?\tÉtudiez-vous le français ?\nDo you take plastic?\tAcceptez-vous les cartes de crédits ?\nDo you travel a lot?\tVoyagez-vous beaucoup ?\nDo you trust anyone?\tTe fies-tu à quiconque ?\nDo you trust anyone?\tTe fies-tu à qui que ce soit ?\nDo you trust anyone?\tVous fiez-vous à quiconque ?\nDo you trust anyone?\tVous fiez-vous à qui que ce soit ?\nDo you want to pray?\tVeux-tu prier ?\nDo you want to pray?\tVoulez-vous prier ?\nDo you want to stay?\tVeux-tu rester ?\nDo you want to stay?\tVoulez-vous rester ?\nDo you want to stop?\tVeux-tu t'arrêter ?\nDo you want to stop?\tVoulez-vous vous arrêter ?\nDo you want to talk?\tVoulez-vous parler ?\nDo you wear glasses?\tPortes-tu des lunettes ?\nDo you wear glasses?\tPortez-vous des lunettes ?\nDoes Tom have a job?\tTom a-t-il un travail ?\nDoes it even matter?\tCela a-t-il même une importance ?\nDoes she play piano?\tJoue-t-elle du piano ?\nDoes that seem wise?\tCela semble-t-il avisé ?\nDoes your head hurt?\tAvez-vous mal à la tête?\nDoes your wife know?\tTa femme le sait-elle ?\nDoes your wife know?\tVotre femme le sait-elle ?\nDoesn't anyone care?\tPersonne ne s'en soucie-t-il ?\nDon't act like that.\tN'agis pas ainsi.\nDon't act like that.\tN'agissez pas ainsi.\nDon't act like that.\tN'agis pas de la sorte.\nDon't act like that.\tN'agissez pas de la sorte.\nDon't act surprised.\tNe fais pas comme si tu étais surpris.\nDon't act surprised.\tNe fais pas comme si tu étais surprise.\nDon't act surprised.\tNe faites pas comme si vous étiez surpris.\nDon't act surprised.\tNe faites pas comme si vous étiez surprise.\nDon't act surprised.\tNe faites pas comme si vous étiez surprises.\nDon't ask for money.\tNe demande pas d'argent.\nDon't ask for money.\tNe demandez pas d'argent.\nDon't be a stranger.\tRestez en contact.\nDon't be disgusting.\tNe sois pas dégoûtant.\nDon't be disgusting.\tNe soyez pas dégoûtant.\nDon't be disgusting.\tNe soyez pas dégoûtante.\nDon't be disgusting.\tNe soyez pas dégoûtants.\nDon't be disgusting.\tNe soyez pas dégoûtantes.\nDon't be disgusting.\tNe sois pas dégoûtante.\nDon't be ridiculous!\tNe soyez pas ridicule !\nDon't be ridiculous.\tNe sois pas ridicule.\nDon't be ridiculous.\tNe soyez pas ridicule.\nDon't burn yourself.\tNe te brûle pas.\nDon't climb on this!\tNe grimpe pas là-dessus !\nDon't drop that cup.\tNe jetez pas cette tasse.\nDon't drop the soap.\tNe laisse pas le savon tomber.\nDon't get any ideas.\tNe te fais pas des idées !\nDon't get any ideas.\tNe vous faites pas des idées !\nDon't go in my room.\tNe va pas dans ma chambre !\nDon't go in my room.\tN'allez pas dans ma chambre !\nDon't leave it open.\tNe le laissez pas ouvert.\nDon't leave me here.\tNe me laisse pas là.\nDon't leave me here.\tNe me laissez pas là.\nDon't listen to her.\tNe l'écoute pas.\nDon't make it worse.\tNe l'empire pas !\nDon't make me angry.\tNe me fâche pas.\nDon't make me blush.\tNe me fais pas rougir.\nDon't make me blush.\tNe me faites pas rougir.\nDon't make me do it.\tNe m'oblige pas à le faire.\nDon't make me do it.\tNe m'obligez pas à le faire.\nDon't make me laugh!\tNe me fais pas rire !\nDon't make me laugh!\tNe me faites pas rire !\nDon't make me laugh.\tNe me fais pas rire !\nDon't make me leave.\tNe m'oblige pas à partir.\nDon't make me leave.\tNe m'obligez pas à partir.\nDon't obey that man.\tN'obéis pas à cet homme.\nDon't obey that man.\tN'obéissez pas à cet homme.\nDon't open the door.\tN'ouvre pas la porte.\nDon't phone her now.\tNe l'appelle pas maintenant.\nDon't read my diary.\tNe lis pas mon journal !\nDon't read my diary.\tNe lisez pas mon journal !\nDon't rock the boat.\tNe fais pas balancer le bateau !\nDon't rock the boat.\tNe faites pas balancer le bateau !\nDon't say that word.\tNe dis pas ce mot !\nDon't say that word.\tNe dites pas ce mot !\nDon't scribble here.\tNe gribouille pas ici !\nDon't scribble here.\tNe gribouillez pas ici !\nDon't slam the door.\tNe claque pas la porte.\nDon't speak so fast.\tNe parlez pas si vite !\nDon't stand near me.\tNe reste pas près de moi.\nDon't stand near me.\tNe vous tenez pas près de moi !\nDon't stand near me.\tNe te tiens pas près de moi !\nDon't take the bait.\tNe mords pas à l'appât.\nDon't talk about me.\tNe parlez pas de moi !\nDon't talk about me.\tNe parle pas de moi !\nDon't talk nonsense!\tNe dis pas n'importe quoi !\nDon't talk nonsense.\tNe raconte pas de conneries !\nDon't talk nonsense.\tNe dis pas de sottises.\nDon't tell your dad.\tNe le dis pas à ton papa.\nDon't tell your dad.\tNe le dites pas à votre papa.\nDon't trust anybody.\tNe vous fiez à personne !\nDon't trust anybody.\tNe te fie à personne !\nDon't use that word.\tN'emploie pas ce mot !\nDon't use that word.\tN'employez pas ce mot !\nDon't wait too long.\tN'attends pas trop.\nDon't work too hard!\tNe travaille pas trop dur !\nDon't you all agree?\tN'êtes-vous pas tous d'accord ?\nDon't you all agree?\tN'êtes-vous pas toutes d'accord ?\nDon't you feel cold?\tN'avez-vous pas froid ?\nDraw a small circle.\tTrace un petit cercle.\nEat more vegetables.\tMangez plus de légumes.\nEat your vegetables.\tMange tes légumes !\nEat your vegetables.\tMangez vos légumes !\nEnjoy your holidays.\tProfite de tes vacances.\nEnjoy your holidays.\tProfitez de vos vacances.\nEnjoy your vacation.\tProfite bien de tes vacances !\nEvery minute counts.\tChaque minute compte.\nEvery seat was full.\tToutes les chaises étaient occupées.\nEverybody applauded.\tTout le monde a applaudi.\nEverybody does that.\tTout le monde le fait.\nEverybody does that.\tTout le monde fait ça.\nEverybody likes Tom.\tTout le monde aime Tom.\nEverybody likes her.\tTout le monde l'aime.\nEverybody likes him.\tTout le monde l'aime.\nEverybody likes you.\tTout le monde vous apprécie.\nEverybody likes you.\tTout le monde t'apprécie.\nEverybody loved Tom.\tTout le monde adorait Tom.\nEverybody loves her.\tTout le monde l'aime.\nEverybody loves her.\tTout le monde l'adore.\nEverybody loves him.\tTout le monde l'aime.\nEverybody loves him.\tTout le monde l'adore.\nEverybody needs one.\tTout le monde en a besoin d'un.\nEverybody needs one.\tTout le monde en a besoin d'une.\nEverybody's so busy.\tTout le monde est tellement occupé.\nEverybody's so busy.\tTout le monde est si occupé.\nEveryone is special.\tTout le monde est spécial.\nEveryone kept quiet.\tTout le monde resta silencieux.\nEveryone kept quiet.\tTout le monde est resté silencieux.\nEveryone knows that.\tTout le monde sait ça.\nEveryone likes them.\tIls sont aimés de tous.\nEveryone likes them.\tTout le monde les apprécie.\nEveryone likes them.\tTout le monde les aime bien.\nEveryone was asleep.\tTout le monde était endormi.\nEveryone was hungry.\tTous avaient faim.\nEveryone was killed.\tTout le monde a été tué.\nEveryone was killed.\tTout le monde fut tué.\nEveryone's a winner.\tTout le monde y gagne.\nEveryone's relieved.\tTout le monde est soulagé.\nEveryone's standing.\tTout le monde est debout.\nEveryone's watching.\tTout le monde regarde.\nEveryone, follow me.\tSuivez-moi, tout le monde.\nEverything is great.\tTout est super.\nEverything is quiet.\tTout est tranquille.\nEverything is ready.\tTout est prêt.\nEverything is tough.\tTout est dur.\nEvil sometimes wins.\tParfois le diable gagne.\nExcuse me, I'm lost.\tExcusez-moi, je me suis perdu.\nFamily is important.\tLa famille, c'est important.\nFew people think so.\tPeu de gens pensent ainsi.\nFew people think so.\tPeu de gens le pensent.\nFish is cheap today.\tLe poisson est bon marché, aujourd'hui.\nForget your sorrows.\tOubliez vos peines.\nForget your sorrows.\tOublie tes chagrins.\nFreedom is not free.\tLa liberté n'est pas gratuite.\nGet Tom to help you.\tPersuade Tom de t'aider.\nGet Tom to help you.\tConvaincs Tom de t'aider.\nGet Tom to help you.\tPersuadez Tom de vous aider.\nGet Tom to help you.\tConvainquez Tom de vous aider.\nGet away from there.\tÉloigne-toi de là.\nGet away from there.\tÉloignez-vous de là.\nGet down from there.\tDescends de là !\nGet down from there.\tDescends de là !\nGet down from there.\tDescendez de là !\nGet dressed quickly.\tHabille-toi avec hâte !\nGet dressed quickly.\tHabillez-vous en hâte !\nGet me the evidence.\tObtiens-moi les preuves !\nGet me the evidence.\tObtenez-moi les preuves !\nGet out of here now!\tSors d'ici, maintenant !\nGet out of here now!\tSortez d'ici, maintenant !\nGet out of my chair.\tSors de ma chaise !\nGet out of my chair.\tSortez de ma chaise !\nGet out of my house.\tSors de ma maison !\nGet out of my house.\tSortez de ma maison !\nGet out of my sight.\tSors de ma vue !\nGet out of my sight.\tSortez de ma vue !\nGet your clothes on.\tEnfile tes vêtements !\nGet your clothes on.\tEnfilez vos vêtements !\nGive it back to her.\tRends-le-lui !\nGive it back to her.\tRendez-le-lui !\nGive it back to him.\tRends-le-lui !\nGive it back to him.\tRendez-le-lui !\nGive me back my hat.\tRends-moi mon chapeau.\nGive me back my hat.\tRendez-moi mon chapeau.\nGive me two minutes.\tDonne-moi deux minutes !\nGive me two minutes.\tDonnez-moi deux minutes !\nGive my back my bag.\tRends-moi mon sac.\nGlass breaks easily.\tLe verre casse facilement.\nGo and wake Mary up.\tVa réveiller Marie.\nGo brush your teeth.\tVa te laver les dents !\nGo brush your teeth.\tAllez vous laver les dents !\nGo jump in the lake.\tVa te noyer !\nGo to your room now!\tVa dans ta chambre, maintenant !\nGood luck with that.\tBonne chance avec ça !\nGrief drove her mad.\tLe chagrin la rendit folle.\nHand in your papers.\tMontrez vos papiers.\nHand in your papers.\tRemettez-moi vos papiers.\nHand in your papers.\tRemettez-nous vos papiers.\nHand in your papers.\tRemettez-lui vos papiers.\nHand in your papers.\tRemettez-leur vos papiers.\nHas Tom calmed down?\tTom s'est-il calmé?\nHas Tom noticed yet?\tTom a-t-il déjà remarqué ?\nHas anyone seen Tom?\tQuelqu'un a-t-il vu Tom ?\nHas he failed again?\tA-t-il échoué à nouveau ?\nHas he gone already?\tEst-il déjà parti ?\nHave I lost my mind?\tAi-je perdu l'esprit ?\nHave a beer with me.\tBois une bière avec moi !\nHave a beer with me.\tBuvez une bière avec moi !\nHave a good weekend!\tPasse un bon week-end !\nHave a good weekend.\tPasse un bon week-end !\nHave a nice holiday.\tBonnes vacances !\nHave a nice holiday.\tPassez de bonnes vacances !\nHave a nice holiday.\tPasse de bonnes vacances !\nHave a nice weekend!\tBon week-end.\nHave a nice weekend.\tBon week-end.\nHave a nice weekend.\tBon week-end !\nHave a piece of pie.\tPrenez une part de tarte !\nHave a piece of pie.\tPrends une part de tarte !\nHave a safe journey.\tFais bon voyage !\nHave a safe journey.\tFaites bon voyage !\nHave you got it yet?\tTu captes, maintenant ?\nHave you got it yet?\tVous captez, maintenant ?\nHave you got it yet?\tT'as compris, désormais ?\nHave you got it yet?\tVous avez compris, désormais ?\nHe abused our trust.\tIl a abusé de notre confiance.\nHe accepted my idea.\tIl a accepté mon idée.\nHe accepted my idea.\tIl accepta mon idée.\nHe accepted the job.\tIl a accepté le job.\nHe adopted her idea.\tIl a adopté son idée.\nHe asked for a beer.\tIl réclama une bière.\nHe asked for a beer.\tIl demanda une bière.\nHe averted his gaze.\tIl évita son regard.\nHe averted his gaze.\tIl a évité son regard.\nHe became a pianist.\tIl est devenu pianiste.\nHe became a pianist.\tIl devint pianiste.\nHe became irritated.\tIl est devenu irrité.\nHe boarded the ship.\tIl monta à bord du bateau.\nHe bought a new car.\tIl a acheté une nouvelle voiture.\nHe bought her a dog.\tIl lui acheta un chien.\nHe bragged about it.\tIl s'en est vanté.\nHe bragged about it.\tIl s'en vanta.\nHe burst into tears.\tIl éclata en larmes.\nHe burst into tears.\tIl a fondu en larmes.\nHe called me a taxi.\tIl m'a appelé un taxi.\nHe called me a taxi.\tIl m'appela un taxi.\nHe came home at ten.\tIl est revenu chez lui à dix heures.\nHe came to my house.\tIl est venu chez moi.\nHe came to my house.\tIl vint chez moi.\nHe can be relied on.\tOn peut se fier à lui.\nHe can hardly speak.\tIl sait à peine parler.\nHe can hardly speak.\tIl peut à peine parler.\nHe can help you out.\tIl peut vous donner un coup de main.\nHe can help you out.\tIl peut te donner un coup de main.\nHe can play a flute.\tIl sait jouer de la flûte.\nHe can't be trusted.\tOn ne peut pas lui faire confiance.\nHe can't be trusted.\tOn ne peut pas se fier à lui.\nHe caught a big one.\tIl en captura un gros.\nHe caught a big one.\tIl en a attrapé un gros.\nHe changed his mind.\tIl changea d'avis.\nHe changed his mind.\tIl a changé d'avis.\nHe chased the thief.\tIl poursuivait le cambrioleur.\nHe comes from Genoa.\tIl vient de Gênes.\nHe commited suicide.\tIl s'est suicidé.\nHe cooked me dinner.\tIl me prépara à déjeuner.\nHe cooked me dinner.\tIl m'a préparé à déjeuner.\nHe cured my illness.\tIl a soigné ma maladie.\nHe denied that fact.\tIl a nié les faits.\nHe denied the rumor.\tIl nia la rumeur.\nHe denied the rumor.\tIl réfuta la rumeur.\nHe did it willingly.\tIl le fit volontiers.\nHe did it willingly.\tIl l'a fait volontiers.\nHe did the opposite.\tIl a fait le contraire.\nHe did the opposite.\tIl fit le contraire.\nHe did the opposite.\tIl a fait l'inverse.\nHe didn't know that.\tIl ne le savait pas.\nHe died a sad death.\tIl a eu une triste fin.\nHe does not like us.\tIl ne nous aime pas.\nHe does not like us.\tIl ne nous apprécie pas.\nHe doesn't know yet.\tIl l'ignore encore.\nHe doesn't know yet.\tIl n'en sait encore rien.\nHe drinks to excess.\tIl boit trop d'alcool.\nHe drinks to excess.\tIl boit trop.\nHe drives a Ferrari.\tIl conduit une Ferrari.\nHe drives very fast.\tIl roule très vite.\nHe dropped in on me.\tIl m'a rendu une petite visite.\nHe entered his room.\tIl entra dans sa chambre.\nHe entered the army.\tIl est entré dans l'armée.\nHe entered the room.\tIl entra dans la pièce.\nHe feels very happy.\tIl se sent très heureux.\nHe felt ill at ease.\tIl se sentit mal à l'aise.\nHe felt ill at ease.\tIl s'est senti mal à l'aise.\nHe felt very lonely.\tIl se sentait très seul.\nHe felt very lonely.\tIl se sentit très seul.\nHe felt very lonely.\tIl s'est senti très seul.\nHe flew into a rage.\tIl se mit en rage.\nHe found his master.\tIl a trouvé son maître.\nHe found my bicycle.\tIl a trouvé mon vélo.\nHe gave a deep sigh.\tIl soupira profondément.\nHe gave me an apple.\tIl me donna une pomme.\nHe gave me an apple.\tIl m'a donné une pomme.\nHe gave me his word.\tIl me donna sa parole.\nHe gave me his word.\tIl m'a donné sa parole.\nHe got on the train.\tIl est monté dans le train.\nHe greeted the lady.\tIl salua la dame.\nHe grows a mustache.\tIl se laisse pousser la moustache.\nHe had already gone.\tIl était déjà parti.\nHe had fun with her.\tIl s'est amusé avec elle.\nHe had his hair cut.\tIl s'est fait couper les cheveux.\nHe had just arrived.\tIl venait d'arriver.\nHe had no objection.\tIl n'eut pas d'objection.\nHe had no objection.\tIl n'a pas fait d'objection.\nHe has a funny name.\tSon nom est amusant.\nHe has a loud voice.\tIl a une grosse voix.\nHe has a loud voice.\tIl est doté d'une voix forte.\nHe has a nose bleed.\tIl saigne du nez.\nHe has a round face.\tIl a un visage rond.\nHe has a square jaw.\tIl a la mâchoire carrée.\nHe has acted wisely.\tIl a agi sagement.\nHe has big problems.\tIl a de gros problèmes.\nHe has enough money.\tIl a assez d'argent.\nHe has enough money.\tIl dispose de suffisamment d'argent.\nHe has gone too far.\tIl est allé trop loin.\nHe has his own room.\tIl a sa propre chambre.\nHe has his own room.\tIl dispose de sa propre chambre.\nHe has left already.\tIl est déjà parti.\nHe has left already.\tIl s'en est déjà allé.\nHe has little money.\tIl a peu d'argent.\nHe has many talents.\tIl est doté de nombreux talents.\nHe has mutton chops.\tIl porte des rouflaquettes.\nHe hates air travel.\tIl déteste les voyages en avion.\nHe held her tightly.\tIl la tint fermement.\nHe held her tightly.\tIl l'a fermement tenue.\nHe himself tried it.\tIl l'a essayé lui-même.\nHe hoped to succeed.\tIl espérait réussir.\nHe is a born artist.\tC'est un artiste né.\nHe is a fast runner.\tC'est un coureur rapide.\nHe is a good doctor.\tC'est un bon docteur.\nHe is a good doctor.\tC'est un bon médecin.\nHe is a good singer.\tC'est un bon chanteur.\nHe is a good singer.\tIl est bon chanteur.\nHe is a good writer.\tC'est un bon écrivain.\nHe is a hard worker.\tC'est un travailleur appliqué.\nHe is a jealous man.\tC'est un homme jaloux.\nHe is a lazy fellow.\tC'est un type paresseux.\nHe is a learned man.\tC'est un homme cultivé.\nHe is a nice person.\tC'est une gentille personne.\nHe is a rude person.\tIl est malpoli.\nHe is about my size.\tIl fait à peu près ma taille.\nHe is always joking.\tIl plaisante toujours.\nHe is an honest man.\tC'est un homme honnête.\nHe is apt to forget.\tIl a tendance à oublier.\nHe is at his office.\tIl est à son bureau.\nHe is at home today.\tIl est à la maison aujourd'hui.\nHe is at the office.\tIl est au bureau.\nHe is clever indeed.\tIl est vraiment intelligent.\nHe is far from rich.\tIl est loin d'être riche.\nHe is good at rugby.\tIl est fort au rugby.\nHe is my old friend.\tC'est mon vieil ami.\nHe is not available.\tIl n'est pas disponible.\nHe is not religious.\tIl n'est pas religieux.\nHe is over 80 kilos.\tIl fait plus de 80 kilos.\nHe is playing music.\tIl joue de la musique.\nHe is playing there.\tIl joue là.\nHe is playing there.\tIl y joue.\nHe is probably dead.\tIl est probablement mort.\nHe is ready to work.\tIl est prêt à travailler.\nHe is taking a walk.\tIl fait une promenade.\nHe is tall and lean.\tIl est grand et maigre.\nHe is telling a lie.\tIl dit un mensonge.\nHe is too sensitive.\tIl est trop sensible.\nHe is very sociable.\tIl est très sociable.\nHe is very talented.\tIl est très talentueux.\nHe is washing a car.\tIl nettoie une voiture.\nHe is wearing a hat.\tIl porte un chapeau.\nHe jimmied the lock.\tIl a forcé la serrure.\nHe jimmied the lock.\tIl força la serrure.\nHe kept his promise.\tIl a été fidèle à sa promesse.\nHe kept his promise.\tIl tint sa promesse.\nHe kept his promise.\tIl a tenu sa promesse.\nHe kissed her again.\tIl l'embrassa à nouveau.\nHe knows everything.\tIl sait tout.\nHe knows everything.\tIl est au courant.\nHe knows the secret.\tIl connaît le secret.\nHe lacks confidence.\tIl manque de confiance.\nHe lacks experience.\tIl manque d'expérience.\nHe lacks motivation.\tIl manque de motivation.\nHe laid on his back.\tIl était étendu sur le dos.\nHe lays on his back.\tIl est allongé sur le dos.\nHe left a while ago.\tIl est parti il y a déjà un moment.\nHe left immediately.\tIl est immédiatement parti.\nHe left me the keys.\tIl m'a laissé les clés.\nHe left me the keys.\tIl m'a laissé les clefs.\nHe likes air travel.\tIl aime voyager par avion.\nHe lives by begging.\tIl vit de mendicité.\nHe lives by himself.\tIl vit seul.\nHe lives in Morocco.\tIl vit au Maroc.\nHe lives in Morocco.\tIl habite au Maroc.\nHe lives in his car.\tIl vit dans son véhicule.\nHe lives in his car.\tIl vit dans sa voiture.\nHe lives off campus.\tIl vit en dehors du campus.\nHe looked surprised.\tIl eut l'air surpris.\nHe looked surprised.\tIl a eu l'air surpris.\nHe looks like a bug.\tIl a l'air d'un insecte.\nHe looks like a bug.\tIl ressemble à une bestiole.\nHe looks suspicious.\tIl a l'air suspicieux.\nHe looks suspicious.\tIl a l'air suspect.\nHe looks suspicious.\tIl a l'air méfiant.\nHe made a wisecrack.\tIl fit une vanne.\nHe made no response.\tIl ne fit pas de réponse.\nHe made up his mind.\tIl se décida.\nHe made up his mind.\tIl s'est décidé.\nHe may have said so.\tIl a peut-être dit ça.\nHe may not be happy.\tIl n'est peut-être pas heureux.\nHe must be homesick.\tIl doit avoir le mal du pays.\nHe needed the money.\tIl avait besoin de l'argent.\nHe never loses hope.\tIl ne perd jamais espoir.\nHe never loses hope.\tIl ne perd jamais l'espoir.\nHe never tells lies.\tIl ne ment jamais.\nHe opened the cages.\tIl a ouvert les cages.\nHe parties too much.\tIl fait trop la fête.\nHe parties too much.\tIl fait trop la nouba.\nHe parties too much.\tIl fait trop la java.\nHe parties too much.\tIl fait trop la bamboula.\nHe pushed me gently.\tIl m'a poussé gentiment.\nHe pushed me gently.\tIl m'a poussée gentiment.\nHe pushed me gently.\tIl m'a gentiment poussé.\nHe pushed me gently.\tIl m'a gentiment poussée.\nHe pushed me gently.\tIl me poussa gentiment.\nHe pushed me gently.\tIl me poussa avec douceur.\nHe pushed me gently.\tIl m'a poussé avec douceur.\nHe pushed me gently.\tIl m'a poussée avec douceur.\nHe ran out of money.\tIl a été à court d'argent.\nHe reached his goal.\tIl a atteint son but.\nHe really got to me.\tIl m'a vraiment énervé.\nHe refused to do so.\tIl a refusé de le faire.\nHe remains sick bed.\tIl reste alité.\nHe retired at sixty.\tIl a pris sa retraite à soixante ans.\nHe runs a shoe shop.\tIl dirige un magasin de chaussures.\nHe said he was poor.\tIl disait qu'il était pauvre.\nHe said he was poor.\tIl a dit qu'il était pauvre.\nHe said he was poor.\tIl dit qu'il était pauvre.\nHe saluted the lady.\tIl salua la dame.\nHe sat on the bench.\tIl s'assit sur le banc.\nHe says it's urgent.\tIl dit que c'est urgent.\nHe seemed to be ill.\tIl avait l'air d'être malade.\nHe seems to be rich.\tOn dirait qu'il est riche.\nHe seems to be rich.\tIl semble être riche.\nHe seems to be sick.\tIl semble être malade.\nHe seems to be sick.\tIl a l'air malade.\nHe seems to know us.\tIl semble nous connaître.\nHe set off to Paris.\tIl partit pour Paris.\nHe shined his shoes.\tIl a ciré ses chaussures.\nHe should have come.\tIl aurait dû venir.\nHe signed the check.\tIl signa le chèque.\nHe slept in the car.\tIl dormit dans la voiture.\nHe slept in the car.\tIl a dormi dans la voiture.\nHe started swearing.\tIl s'est mis à jurer.\nHe stood by himself.\tIl se tenait de son côté.\nHe stopped drinking.\tIl a cessé de boire.\nHe stopped drinking.\tIl cessa de boire.\nHe stopped drinking.\tIl a arrêté de boire.\nHe stopped drinking.\tIl arrêta de boire.\nHe stopped to smoke.\tIl s'arrêta pour fumer.\nHe stuck to his job.\tIl s'accrocha à son travail.\nHe told me about it.\tIl m'en parla.\nHe told me about it.\tIl m'en a parlé.\nHe told me about it.\tIl me l'a dit.\nHe took off his hat.\tIl a retiré son chapeau.\nHe traveled by boat.\tIl a voyagé par bateau.\nHe traveled by boat.\tIl voyagea par bateau.\nHe treated me badly.\tIl m'a maltraité.\nHe treated me badly.\tIl m'a maltraitée.\nHe treated me badly.\tIl me maltraita.\nHe turned Christian.\tIl s'est converti au christianisme.\nHe turned Christian.\tIl se convertit au christianisme.\nHe used to love her.\tIl l'avait aimée.\nHe visited a friend.\tIl a rendu visite à un ami.\nHe wants that a lot.\tIl veut beaucoup cela.\nHe wants to kill me.\tIl veut me tuer.\nHe was a bookkeeper.\tIl était comptable.\nHe was born in Ohio.\tIl est né dans l'Ohio.\nHe was buried alive.\tIl fut enterré vivant.\nHe was buried alive.\tIl a été enterré vivant.\nHe was disappointed.\tIl était déçu.\nHe was disappointed.\tIl fut déçu.\nHe was leaving then.\tIl était alors en train de partir.\nHe was made captain.\tIl fut fait capitaine.\nHe was the only man.\tIl était le seul homme.\nHe was very excited.\tIl était terriblement excité.\nHe was very nervous.\tIl était très nerveux.\nHe was very patient.\tIl était très patient.\nHe was very puzzled.\tIl était très perplexe.\nHe was very puzzled.\tIl était fort perplexe.\nHe was wet all over.\tIl était trempé des pieds à la tête.\nHe went on doing it.\tIl a continué à le faire.\nHe will be punished.\tIl sera puni.\nHe will defeat them.\tIl les vaincra.\nHe will regret this.\tIl le regrettera.\nHe won a gold medal.\tIl a emporté une médaille d'or.\nHe won a gold medal.\tIl a gagné une médaille d'or.\nHe won't be pleased.\tÇa ne va pas lui plaire.\nHe worked very hard.\tIl a travaillé très dur.\nHe worked very hard.\tIl travailla très dur.\nHe works long hours.\tIl travaille de longues heures.\nHe would not go out.\tIl refusait de sortir.\nHe wrote the report.\tIl écrivit le rapport.\nHe wrote the report.\tIl a écrit le rapport.\nHe'll never beat me.\tIl ne me battra jamais.\nHe's a cardiologist.\tC'est un cardiologue.\nHe's a cardiologist.\tIl est cardiologue.\nHe's a chain smoker.\tC'est un fumeur invétéré.\nHe's a great kisser.\tIl embrasse très bien.\nHe's a late bloomer.\tIl est tardivement arrivé à maturité.\nHe's a little rusty.\tIl est un peu rouillé.\nHe's a loose cannon.\tC'est un électron libre.\nHe's a salesman too.\tIl est aussi un vendeur.\nHe's a scriptwriter.\tIl est scénariste.\nHe's a stand-up guy.\tC'est un type sur qui on peut compter.\nHe's about to leave.\tIl est sur le point de partir.\nHe's about to leave.\tIl est sur le point de s'en aller.\nHe's active and fit.\tIl est actif et en forme.\nHe's afraid of dogs.\tIl a peur des chiens.\nHe's an opera lover.\tC'est un inconditionnel de l'opéra.\nHe's an opera lover.\tIl adore l'opéra.\nHe's behaving oddly.\tIl se comporte étrangement.\nHe's doing his best.\tIl fait de son mieux.\nHe's doing it right.\tIl le fait correctement.\nHe's doing it right.\tIl le fait comme il faut.\nHe's done it before.\tIl l'a fait auparavant.\nHe's got a headache.\tIl a mal à la tête.\nHe's in big trouble.\tIl a de gros problèmes.\nHe's in big trouble.\tIl est dans la merde.\nHe's in for a shock.\tIl va avoir un choc.\nHe's in his fifties.\tIl a la cinquantaine.\nHe's in the kitchen.\tIl est dans la cuisine.\nHe's known for that.\tIl est connu pour cela.\nHe's likely to come.\tIl est probable qu'il vienne.\nHe's looking at you.\tIl te regarde.\nHe's looking at you.\tIl vous regarde.\nHe's looking at you.\tIl est en train de te regarder.\nHe's looking at you.\tIl est en train de vous regarder.\nHe's my best friend.\tC'est mon meilleur ami.\nHe's my best friend.\tIl est mon meilleur ami.\nHe's on sentry duty.\tIl est de garde.\nHe's probably wrong.\tIl a probablement tort.\nHe's really selfish.\tIl est vraiment égoïste.\nHe's taller than me.\tIl est plus grand que moi.\nHe's too old for me.\tIl est trop vieux pour moi.\nHe's very skeptical.\tIl est très sceptique.\nHeed public opinion.\tTenez compte de l'opinion publique.\nHer bicycle is blue.\tSa bicyclette est bleue.\nHer cheeks were red.\tSes joues étaient rouges.\nHer novel sold well.\tSon roman se vendit bien.\nHer parents hate me.\tSes parents me détestent.\nHer parents love me.\tSes parents m'adorent.\nHer son is a genius.\tSon fils est un génie.\nHere is your change.\tVoici votre monnaie.\nHere's your pudding.\tVoici votre pudding.\nHey, you're not Tom.\tHé ! Vous n'êtes pas Tom.\nHis bicycle is blue.\tSa bicyclette est bleue.\nHis dog barks at me.\tSon chien m'aboie.\nHis dream came true.\tSon rêve se réalisa.\nHis eyes failed him.\tSes yeux l'ont trahi.\nHis face brightened.\tSon visage s'éclaira.\nHis heart is broken.\tIl a le cœur brisé.\nHis novel sold well.\tSon roman se vendit bien.\nHis parents hate me.\tSes parents me détestent.\nHis parents love me.\tSes parents m'adorent.\nHis shoes are brown.\tSes chaussures sont marron.\nHis son is a genius.\tSon fils est un génie.\nHis sweater is gray.\tSon pull est gris.\nHis wife is Swedish.\tSon épouse est suédoise.\nHis wife is Swedish.\tSa femme est suédoise.\nHonesty is a virtue.\tL'honnêteté est une vertu.\nHow I've missed you!\tComme tu m'as manqué !\nHow about I do that?\tEt si je le faisais ?\nHow about Thai food?\tQue diriez-vous de la cuisine thaïlandaise ?\nHow are you feeling?\tComment te sens-tu ?\nHow are you feeling?\tComment vous sentez-vous ?\nHow are you related?\tQuels sont vos liens familiaux ?\nHow big is the team?\tDe quelle taille est l'équipe ?\nHow can I repay you?\tComment puis-je vous rembourser ?\nHow can I repay you?\tComment puis-je te rembourser ?\nHow deep is it here?\tQuelle est la profondeur ici ?\nHow did I miss this?\tComment ai-je pu le manquer ?\nHow did it get here?\tComment cela a-t-il atterri ici ?\nHow did that happen?\tComment est-ce arrivé ?\nHow did that happen?\tComment cela s'est-il produit ?\nHow did that happen?\tComment est-ce survenu ?\nHow did that happen?\tComment cela a-t-il eu lieu ?\nHow did the exam go?\tComment s'est passé l'examen ?\nHow did this happen?\tComment est-ce arrivé ?\nHow did this happen?\tComment cela est-il survenu ?\nHow did you do that?\tComment as-tu fait cela ?\nHow did you do this?\tComment l'avez-vous fait ?\nHow did you do this?\tComment l'as-tu fait ?\nHow did you find me?\tComment m'as-tu trouvée ?\nHow did you find me?\tComment m'as-tu trouvé ?\nHow did you find me?\tComment m'avez-vous trouvée ?\nHow did you find me?\tComment m'avez-vous trouvé ?\nHow did you find us?\tComment nous avez-vous trouvés ?\nHow did you find us?\tComment nous avez-vous trouvées ?\nHow did you find us?\tComment nous as-tu trouvés ?\nHow did you find us?\tComment nous as-tu trouvées ?\nHow did you like it?\tCela t'a-t-il plu ?\nHow did you lose it?\tComment l'avez-vous perdu ?\nHow did you lose it?\tComment l'as-tu perdue ?\nHow did you lose it?\tComment l'as-tu perdu ?\nHow did you lose it?\tComment l'avez-vous perdue ?\nHow did you make it?\tComment avez-vous fait ?\nHow do we know that?\tComment le savons-nous ?\nHow do you feel now?\tComment vous sentez-vous ?\nHow do you say that?\tComment dis-tu cela ?\nHow does he do this?\tComment le fait-il ?\nHow does it help us?\tEn quoi cela nous aide-t-il ?\nHow does it help us?\tEn quoi est-ce que cela nous aide ?\nHow else can he act?\tComment peut-il agir autrement ?\nHow is that helpful?\tEn quoi est-ce utile ?\nHow long do we have?\tDe combien de temps disposons-nous ?\nHow long do we have?\tCombien de temps avons-nous ?\nHow may I serve you?\tComment puis-je vous servir ?\nHow much did I lose?\tCombien ai-je perdu ?\nHow old are you now?\tQuel âge as-tu maintenant ?\nHow old are you now?\tQuel âge avez-vous maintenant ?\nHow old is that dog?\tQuel âge a ce chien ?\nHow old is this zoo?\tQuel âge a ce zoo ?\nHow old is your son?\tQuel âge a votre fils ?\nHow strange life is!\tComme la vie est étrange !\nHow was the concert?\tComment était le concert ?\nHow was the reunion?\tComment s'est passée la réunion?\nHow was the wedding?\tComment était le mariage ?\nHow was your summer?\tComment s'est passé ton été ?\nHow was your summer?\tComment s'est déroulé ton été ?\nHow was your summer?\tComment s'est passé votre été ?\nHow was your summer?\tComment s'est déroulé votre été ?\nHow will you manage?\tComment vas-tu te débrouiller ?\nHow will you manage?\tComment allez-vous vous débrouiller ?\nHow's that possible?\tComment cela se peut-il ?\nHow's this possible?\tComment cela se peut-il ?\nHurry up and get in.\tDépêche-toi et rentre.\nHurry up and get in.\tDépêche-toi de rentrer.\nI accept your offer.\tJ'accepte votre offre.\nI accept your terms.\tJ'accepte vos conditions.\nI accept your terms.\tJ'accepte tes conditions.\nI admire his talent.\tJ'admire son talent.\nI almost kissed him.\tJe l'ai presque embrassé.\nI almost passed out.\tJ’ai failli tomber dans les pommes.\nI already said that.\tJ'ai déjà dit cela.\nI already sold that.\tJ'ai déjà vendu cela.\nI also love to cook.\tJ'aime également cuisiner.\nI always study hard.\tJ'étudie toujours avec application.\nI am a fast swimmer.\tJe peux nager très vite.\nI am a teacher, too.\tMoi aussi, je suis professeur.\nI am a teacher, too.\tJe suis également enseignant.\nI am afraid of dogs.\tJ'ai peur des chiens.\nI am an electrician.\tJe suis électricien.\nI am an electrician.\tJe suis un électricien.\nI am bored to death.\tJe m'ennuie à en mourir.\nI am eating noodles.\tJe mange des nouilles.\nI am engaged to her.\tJe suis fiancé avec elle.\nI am fond of skiing.\tJ'aime skier.\nI am free from care.\tJe ne m'en fais pas.\nI am going to sleep.\tJe vais aller rejoindre les bras de Morphée.\nI am going to sleep.\tJe vais dormir.\nI am going to study.\tJe vais étudier.\nI am in charge here.\tC'est moi le patron, ici.\nI am like my mother.\tJe suis comme ma mère.\nI am not your enemy.\tJe ne suis pas votre ennemi.\nI am not your enemy.\tJe ne suis pas votre ennemie.\nI am not your enemy.\tJe ne suis pas ton ennemi.\nI am not your enemy.\tJe ne suis pas ton ennemie.\nI am off duty today.\tJ'ai congé, aujourd'hui.\nI am older than him.\tJe suis plus vieux que lui.\nI am peeling apples.\tJe suis en train d'éplucher des pommes.\nI am poor at tennis.\tJe suis médiocre au tennis.\nI am reading a book.\tJe suis en train de lire un livre.\nI am right for once.\tPour une fois j'ai raison.\nI am sad to hear it.\tÇa me rend triste d'entendre ça.\nI am short of money.\tJe manque d'argent.\nI am short of money.\tJ'ai un problème d'argent.\nI am the chosen one.\tJe suis l'élu.\nI am the chosen one.\tJe suis l'élue.\nI am very dangerous.\tJe suis vraiment dangereux.\nI answered the door.\tJ'allai ouvrir la porte.\nI arrived yesterday.\tJe suis arrivé hier.\nI arrived yesterday.\tJe suis arrivée hier.\nI ate a light lunch.\tJ'ai pris un repas léger.\nI beat him at chess.\tJe l'ai battu aux échecs.\nI became a director.\tJe suis devenu directeur.\nI believe in ghosts.\tJe crois aux fantômes.\nI believe in myself.\tJe crois en moi.\nI bet you know this.\tJe parie que tu sais ceci.\nI bet you're hungry.\tJe parie que tu as faim.\nI bet you're hungry.\tJe parie que vous avez faim.\nI bought a VIP pass.\tJ'ai acheté un sauf-conduit pour personnalité.\nI bought many books.\tJ'ai acheté de nombreux livres.\nI bought you a gift.\tJe vous ai acheté un cadeau.\nI broke up with her.\tJ'ai rompu avec elle.\nI broke up with her.\tJe rompis avec elle.\nI broke up with him.\tJe rompis avec lui.\nI broke up with him.\tJ'ai rompu avec lui.\nI built a new house.\tJ'ai construit une nouvelle maison.\nI called the police.\tJ'ai appelé la police.\nI can barely see it.\tJ'arrive à peine à le voir.\nI can come at three.\tOk pour 3 heures.\nI can come tomorrow.\tJe peux venir demain.\nI can give it a try.\tJe peux m'y essayer.\nI can give it a try.\tJe peux le tenter.\nI can keep a secret.\tJe sais garder un secret.\nI can peel an apple.\tJe peux éplucher une pomme.\nI can peel an apple.\tJe sais éplucher une pomme.\nI can see the light.\tJ'arrive à voir la lumière.\nI can see the light.\tJe peux voir la lumière.\nI can see the light.\tJe parviens à voir la lumière.\nI can smell cookies.\tJe peux sentir des biscuits.\nI can speak Chinese.\tJe sais parler chinois.\nI can speak Chinese.\tJe peux parler chinois.\nI can speak English.\tJe parle anglais.\nI can speak English.\tJe sais parler anglais.\nI can survive alone.\tJe peux survivre seul.\nI can survive alone.\tJe peux survivre tout seul.\nI can't accept this.\tJe ne peux pas accepter ça.\nI can't answer that.\tJe ne peux pas répondre à ça.\nI can't believe you.\tJe n'arrive pas à te croire.\nI can't believe you.\tJe n'arrive pas à vous croire.\nI can't change that.\tJe ne peux pas changer ça.\nI can't do any more.\tJe ne peux en faire davantage.\nI can't do anything.\tJe ne peux rien faire.\nI can't do it alone.\tJe ne peux le faire seul.\nI can't do it alone.\tJe ne peux le faire seule.\nI can't do it today.\tJe ne peux le faire aujourd'hui.\nI can't do that now.\tJe ne peux le faire maintenant.\nI can't draw a bird.\tJe ne sais pas dessiner d'oiseau.\nI can't drive a bus.\tJe ne sais pas conduire un bus.\nI can't fall asleep.\tJe n'arrive pas à m'endormir.\nI can't find my bag.\tJe n'arrive pas à trouver mon sac.\nI can't find my key.\tJe ne trouve pas ma clé.\nI can't forgive her.\tJe ne peux pas lui pardonner.\nI can't give up now.\tJe ne peux pas abandonner maintenant.\nI can't go in there.\tJe ne peux pas y aller.\nI can't go in there.\tJe ne peux pas y pénétrer.\nI can't go in there.\tJe ne peux pas m'y rendre.\nI can't go in there.\tJe n'arrive pas à y pénétrer.\nI can't go in there.\tJe ne parviens pas à y pénétrer.\nI can't go with you.\tJe ne peux pas y aller avec toi.\nI can't go with you.\tJe ne peux pas m'en aller avec toi.\nI can't go with you.\tJe ne peux pas y aller avec vous.\nI can't go with you.\tJe ne peux pas m'en aller avec vous.\nI can't go with you.\tJe ne peux pas partir avec toi.\nI can't go with you.\tJe ne peux pas partir avec vous.\nI can't handle them.\tJe n'arrive pas à les gérer.\nI can't hear a word.\tJe ne parviens pas à entendre un mot.\nI can't help anyone.\tJe ne peux aider personne.\nI can't help crying.\tJe ne peux pas m'empêcher de pleurer.\nI can't help myself.\tJe ne peux pas m'en empêcher.\nI can't help myself.\tC'est plus fort que moi.\nI can't identify it.\tJe n'arrive pas à l'identifier.\nI can't ignore that.\tJe ne peux pas ignorer ça.\nI can't imagine why.\tJe n'arrive pas à imaginer pourquoi.\nI can't protect you.\tJe ne peux te protéger.\nI can't protect you.\tJe ne peux vous protéger.\nI can't read French.\tJe ne sais pas lire le français.\nI can't remember it.\tJe ne m'en souviens plus.\nI can't see a thing.\tJe ne vois rien.\nI can't stand liars.\tJe n'arrive pas à supporter les menteurs.\nI can't stop myself.\tJe ne peux pas m'arrêter.\nI can't stop myself.\tJe ne parviens pas à m'arrêter.\nI can't swim at all.\tJe ne sais pas du tout nager.\nI can't talk to Tom.\tJe ne peux pas parler à Tom.\nI can't wait to die.\tJe suis impatient de mourir.\nI can't wait to die.\tJe suis impatiente de mourir.\nI can't wait to die.\tJ'ai hâte de mourir.\nI cannot excuse her.\tJe ne peux pas l'excuser.\nI cannot follow you.\tJe n'arrive pas à te suivre.\nI cannot follow you.\tJe n'arrive pas à vous suivre.\nI cleared the table.\tJe débarrassai la table.\nI cleared the table.\tJ'ai débarrassé la table.\nI collect postcards.\tJe collectionne les cartes postales.\nI come from America.\tJe viens d'Amérique.\nI come from England.\tJe viens d'Angleterre.\nI come from Holland.\tJe viens de Hollande.\nI come from Saitama.\tJe viens de Saitama.\nI come from Saitama.\tJe suis originaire de Saitama.\nI completely forgot.\tJ'ai complètement oublié.\nI continued reading.\tJ'ai continué à lire.\nI continued reading.\tJe poursuivis ma lecture.\nI continued singing.\tJ'ai continué à chanter.\nI continued singing.\tJe continuai à chanter.\nI continued working.\tJ'ai continué à travailler.\nI continued working.\tJe continuai à travailler.\nI cooked him dinner.\tJe lui ai préparé à déjeuner.\nI could use a drink.\tJ'aurais bien besoin d'un verre.\nI could use a drink.\tJe ne dirais pas non à un verre.\nI couldn't hear Tom.\tJe ne pouvais pas entendre Tom.\nI cried all morning.\tJ'ai pleuré toute la matinée.\nI decided not to go.\tJ'ai décidé de ne pas y aller.\nI decorated my room.\tJ'ai décoré ma chambre.\nI deserve happiness.\tJe mérite le bonheur.\nI did as I was told.\tJe fis ce qu'on me dit.\nI did as I was told.\tJ'ai fait ce qu'on m'a dit.\nI did it in a hurry.\tJe l'ai fait dans la précipitation.\nI did it many times.\tJe l'ai fait de nombreuses fois.\nI did it many times.\tJe l'ai fait maintes fois.\nI did no such thing.\tJe n'ai pas fait une telle chose.\nI did not know this.\tJe l'ignorais.\nI did not know this.\tJe ne le savais pas.\nI did nothing wrong.\tJe n'ai rien fait de mal.\nI did see something.\tJ'ai vu quelque chose.\nI did see something.\tJ'ai bien vu quelque chose.\nI did some checking.\tJ'ai procédé à des vérifications.\nI did some research.\tJ'ai effectué des recherches.\nI did something bad.\tJ'ai fait quelque chose de mal.\nI did that ages ago.\tJ'ai fait ça il y a des lustres.\nI did that one time.\tJe l'ai fait une fois.\nI did what I had to.\tJ'ai fait ce que j'avais à faire.\nI didn't expect you.\tJe ne vous attendais pas.\nI didn't expect you.\tJe ne t'attendais pas.\nI didn't expect you.\tJe ne m'attendais pas à vous voir.\nI didn't expect you.\tJe ne m'attendais pas à te voir.\nI didn't have a key.\tJe n'avais pas de clé.\nI didn't have to go.\tJe ne devais pas y aller.\nI didn't have to go.\tIl ne me fallait pas y aller.\nI didn't invite Tom.\tJe n'ai pas invité Tom.\nI didn't see anyone.\tJe n'ai vu personne.\nI didn't sleep well.\tJe n'ai pas bien dormi.\nI didn't sleep well.\tJe ne dormis pas bien.\nI didn't understand.\tJe ne compris pas.\nI disagree with you.\tJe ne suis pas d'accord avec toi.\nI do agree with Tom.\tJe suis d'accord avec Tom.\nI do not deserve it.\tJe ne le mérite pas.\nI do not fear death.\tJe ne crains pas la mort.\nI do not have a cat.\tJe n'ai pas de chat.\nI do not like music.\tJe n'aime pas la musique.\nI do not like music.\tJe n'apprécie pas la musique.\nI do not read books.\tJe ne lis pas de livres.\nI do not sleep well.\tJe ne dors pas bien.\nI do not understand.\tJe ne comprends pas.\nI do that sometimes.\tJe le fais parfois.\nI do the best I can.\tJe fais du mieux que je peux.\nI don't believe you.\tJe ne te crois pas.\nI don't believe you.\tJe ne vous crois pas.\nI don't belong here.\tJe n'appartiens pas à cette société.\nI don't belong here.\tJe n'ai rien à faire ici.\nI don't belong here.\tCe n'est pas mon monde.\nI don't expect help.\tJe ne m'attends pas à recevoir d'aide.\nI don't get nervous.\tJe ne m'énerve pas.\nI don't go out much.\tJe ne sors pas beaucoup.\nI don't have a clue.\tJe n'en ai pas la moindre idée.\nI don't have a home.\tJe n'ai pas de chez moi.\nI don't have a plan.\tJe n'ai pas de plan.\nI don't have a suit.\tJe n'ai pas de costume.\nI don't have cancer.\tJe n'ai pas de cancer.\nI don't have change.\tJe n'ai pas de monnaie.\nI don't have enough.\tJe n'ai pas assez.\nI don't know really.\tJe ne sais vraiment pas.\nI don't like apples.\tJe n'aime pas les pommes.\nI don't like coffee.\tJe n'aime pas le café.\nI don't like coffee.\tJe n'apprécie pas le café.\nI don't like my job.\tJe n'aime pas mon boulot.\nI don't like my job.\tJe n'apprécie pas mon emploi.\nI don't like spring.\tJe n'aime pas le printemps.\nI don't like summer.\tJe n'aime pas l'été.\nI don't mind at all.\tJe ne m'en soucie pas du tout.\nI don't mind at all.\tJe n'en ai cure.\nI don't need a ride.\tJe n'ai pas besoin qu'on me conduise.\nI don't need it now.\tJe n'en ai pas besoin à l'heure actuelle.\nI don't really care.\tJe ne m'en soucie pas vraiment.\nI don't really care.\tJe m'en fiche un peu.\nI don't really know.\tJe ne sais pas trop.\nI don't really know.\tJe ne sais pas vraiment.\nI don't remember it.\tJe ne m'en souviens pas.\nI don't remember it.\tJe ne me le rappelle pas.\nI don't see why not.\tJe ne vois pas d'obstacle.\nI don't sleep a lot.\tJe ne dors pas beaucoup.\nI don't want cereal.\tJe ne veux pas de céréales.\nI don't want dinner.\tJe ne veux pas dîner.\nI don't want dinner.\tJe ne veux pas souper.\nI don't want to die.\tJe ne veux pas mourir.\nI dream every night.\tJe rêve chaque nuit.\nI eat with my hands.\tJe mange avec les mains.\nI enjoy a challenge.\tJ'apprécie un défi.\nI enjoy his company.\tJ'apprécie sa compagnie.\nI enjoyed this book.\tJ'ai pris plaisir à lire ce livre.\nI enjoyed this book.\tCe livre m'a procuré du plaisir.\nI feel a lot better.\tJe me sens bien mieux.\nI feel bad about it.\tJe me sens mal à ce sujet.\nI feel bad for them.\tJe me sens mal pour eux.\nI feel bad for them.\tJe me sens mal pour elles.\nI feel bad for them.\tJe compatis avec eux.\nI feel bad for them.\tJe compatis avec elles.\nI feel better today.\tJe me sens mieux aujourd'hui.\nI feel empty inside.\tJe me sens vide à l'intérieur.\nI feel kind of sick.\tJe me sens comme malade.\nI feel like a drink.\tJ'ai envie de boire un coup.\nI feel like dancing.\tJ'ai envie de danser.\nI feel like singing.\tJ'ai envie de chanter.\nI feel like smiling.\tJ'ai envie de sourire.\nI feel like waiting.\tJ'ai envie d'attendre.\nI feel like walking.\tJ'ai envie de marcher.\nI feel really proud.\tJe me sens vraiment fier.\nI feel the same way.\tJe ressens la même chose.\nI feel very relaxed.\tJe me sens très détendue.\nI feel very relaxed.\tJe me sens très détendu.\nI felt out of place.\tJe ne me sentis pas à ma place.\nI felt the same way.\tJ'ai éprouvé la même chose.\nI felt the same way.\tJ'ai ressenti la même chose.\nI felt the same way.\tJe ressentis la même chose.\nI felt the same way.\tJ'éprouvai la même chose.\nI felt very awkward.\tJe me suis senti très gêné.\nI finally got a job.\tJ'ai enfin décroché le boulot !\nI finally got a job.\tJ'ai finalement obtenu le poste !\nI find swimming fun.\tJe trouve amusant de nager.\nI finished the work.\tJ'ai terminé le travail.\nI fix broken radios.\tJe répare les radios cassées.\nI folded the towels.\tJe pliai les serviettes.\nI folded the towels.\tJ'ai plié les serviettes.\nI forgot about that.\tJ'ai oublié ça.\nI forgot my glasses.\tJ'ai oublié mes lunettes.\nI forgot my manners.\tJ'ai oublié les bonnes manières.\nI forgot to ask Tom.\tJ'ai oublié de demander à Tom.\nI forgot to ask him.\tJ'ai oublié de lui demander.\nI found Tom's diary.\tJ'ai trouvé le journal intime de Tom.\nI gave him the book.\tJe lui ai donné le livre.\nI got a weird email.\tJ'ai reçu un courriel bizarre.\nI got really hungry.\tJe me suis vraiment mis à avoir faim.\nI got really hungry.\tJe me suis vraiment mise à avoir faim.\nI got that from Tom.\tJ'ai reçu ça de Tom.\nI got up about five.\tJe me suis levé vers cinq heures.\nI got what I needed.\tJ'ai obtenu ce dont j'avais besoin.\nI got you a present.\tJe t'ai ramené un cadeau.\nI guess I was lucky.\tJe suppose que j'ai eu de la chance.\nI guess I was wrong.\tJe suppose que j'avais tort.\nI guess I was wrong.\tJe suppose que j'ai eu tort.\nI guess I'm spoiled.\tJe suis gâté.\nI had a light lunch.\tJ'ai fait un repas léger.\nI had a light lunch.\tJ'ai déjeuné léger.\nI had a little help.\tJ'ai disposé d'un peu d'aide.\nI had a lot of help.\tJ'ai été beaucoup aidé.\nI had a lot of help.\tJ'ai été beaucoup aidée.\nI had a premonition.\tJ'ai eu une prémonition.\nI had a weird dream.\tJ'ai fait un rêve bizarre.\nI had good teachers.\tJ'avais de bons professeurs.\nI had little choice.\tJe n'ai pas eu grand choix.\nI had some problems.\tJ'ai eu des problèmes.\nI had to do my duty.\tJ'ai dû faire mon devoir.\nI had to do my duty.\tJ'ai dû accomplir mon devoir.\nI had to do my duty.\tIl m'a fallu faire mon devoir.\nI had to lie to Tom.\tJ'ai dû mentir à Tom.\nI had to rent a car.\tJ'ai dû louer une voiture.\nI hate being stupid.\tJe déteste me conduire comme un idiot.\nI hate being stupid.\tJe déteste me conduire comme une idiote.\nI hate long flights.\tJ'ai les longs vols en horreur.\nI hate long flights.\tJ'ai horreur des longs vols.\nI hate taking risks.\tJe déteste prendre des risques.\nI hate that so much.\tJe déteste tellement ça.\nI hate these things.\tJe déteste ces choses.\nI hate this uniform.\tJe déteste cet uniforme.\nI hate to eat alone.\tJe déteste manger seul.\nI hate to eat alone.\tJe déteste manger seule.\nI have a chest pain.\tJ’ai mal à la poitrine.\nI have a dictionary.\tJe dispose d'un dictionnaire.\nI have a dictionary.\tJ'ai le dictionnaire.\nI have a high fever.\tJ’ai beaucoup de fièvre.\nI have a pretty dog.\tJ'ai un beau chien.\nI have a runny nose.\tJ'ai le nez qui coule.\nI have another idea.\tJ'ai une autre idée.\nI have appendicitis.\tJ'ai l'appendicite.\nI have bad eyesight.\tJ'ai une mauvaise vue.\nI have but one wish.\tJe n'ai qu'un vœu.\nI have chapped lips.\tJ'ai des lèvres crevassées.\nI have enough money.\tJe dispose de suffisamment d'argent.\nI have enough money.\tJ'ai assez d'argent.\nI have lost the key.\tJ'ai perdu la clé.\nI have lots of time.\tJe dispose de pas mal de temps.\nI have lucid dreams.\tJe fais des rêves éveillés.\nI have many talents.\tJe suis doté de nombreux talents.\nI have many talents.\tJe suis dotée de nombreux talents.\nI have no insurance.\tJe n'ai pas d'assurance.\nI have no insurance.\tJe suis dépourvu d'assurance.\nI have no insurance.\tJe suis dépourvue d'assurance.\nI have no insurance.\tJe ne dispose pas d'assurance.\nI have no objection.\tJe n'ai pas d'objection.\nI have no opponents.\tJe suis dépourvu d'opposants.\nI have no opponents.\tJe suis dépourvu d'adversaires.\nI have nothing else.\tJe n'ai rien d'autre.\nI have only one pen.\tJe n'ai qu'un seul stylo.\nI have to apologize.\tJe dois faire mes excuses.\nI have to apologize.\tJe dois présenter mes excuses.\nI have to find that.\tJe dois trouver ça.\nI have to go to bed.\tJe dois aller dormir.\nI have to leave now.\tIl faut que j'y aille maintenant.\nI have to leave now.\tJe dois partir maintenant.\nI have to leave now.\tJe dois y aller.\nI have to leave now.\tIl faut que j'y aille, maintenant.\nI have to leave you.\tJe dois te quitter.\nI have to stay here.\tIl me faut rester ici.\nI have to warn them.\tJe dois les avertir.\nI have to warn them.\tIl faut que je les avertisse.\nI have two brothers.\tJ'ai deux frères.\nI have two children.\tJ'ai deux enfants.\nI haven't done that.\tJe n'ai pas fait ça.\nI haven't eaten yet.\tJe n'ai pas encore mangé.\nI haven't forgotten.\tJe n'ai pas oublié.\nI hear with my ears.\tJ'entends avec mes oreilles.\nI heard her singing.\tJe l'ai entendue chanter.\nI heard the message.\tJ'ai entendu le message.\nI heard the message.\tJ'entendis le message.\nI heard them coming.\tJe les ai entendus venir.\nI heard them coming.\tJe les ai entendues venir.\nI hid behind a tree.\tJe me dissimulai derrière un arbre.\nI hid behind a tree.\tJe me suis dissimulé derrière un arbre.\nI highly doubt that.\tJ'en doute fortement.\nI hope I don't lose.\tJ'espère ne pas perdre.\nI hope he sees this.\tJ'espère qu'il verra cela.\nI hope he will come.\tJ'espère qu'il viendra.\nI hope to marry her.\tJ'espère l'épouser.\nI hope to marry her.\tJ'espère me marier avec elle.\nI hope you'll agree.\tJ'espère que tu seras d'accord.\nI hope you'll agree.\tJ'espère que vous serez d'accord.\nI hope you're happy.\tJ'espère que tu es heureux.\nI hope you're happy.\tJ'espère que tu es heureuse.\nI hope you're happy.\tJ'espère que vous êtes heureux.\nI hope you're happy.\tJ'espère que vous êtes heureuse.\nI hope you're happy.\tJ'espère que vous êtes heureuses.\nI hope you're right.\tJ'espère que tu as raison.\nI hope you're right.\tJ'espère que vous avez raison.\nI hope you're wrong.\tJ'espère que tu as tort.\nI hope you're wrong.\tJ'espère que vous avez tort.\nI hurt myself today.\tJe me suis fait mal, aujourd'hui.\nI just brewed a pot.\tJe viens d'en préparer une cafetière.\nI just brewed a pot.\tJe viens d'en infuser une théière.\nI just cleaned this.\tJe viens de nettoyer ceci.\nI just don't buy it.\tJe ne marche pas là-dedans, un point c'est tout.\nI just don't buy it.\tJe ne marche pas, un point c'est tout.\nI just don't get it.\tJe ne capte simplement pas.\nI just don't get it.\tJe ne pige simplement pas.\nI just feel so lost.\tJe me sens tellement perdu.\nI just feel so lost.\tJe me sens tellement perdue.\nI just got off duty.\tOn vient de me donner congé.\nI just got off duty.\tJe viens d'être libéré de mon service.\nI just got promoted.\tJe viens d'être promu.\nI just got promoted.\tJe viens d'être promue.\nI just got the news.\tJe viens d'avoir les nouvelles.\nI just saw the news.\tJe viens de voir les nouvelles.\nI just stayed quiet.\tJe suis simplement resté silencieux.\nI just want answers.\tJe veux seulement des réponses.\nI just want to help.\tJe veux juste être utile.\nI just want to help.\tJe veux juste me rendre utile.\nI just want to read.\tJe veux seulement lire.\nI just want to rest.\tJe veux juste me reposer.\nI just want to talk.\tJe veux juste discuter.\nI kind of messed up.\tJ'ai un peu foiré.\nI kind of messed up.\tJ'ai un peu merdé.\nI knew it was a lie.\tJe savais qu'il s'agissait d'un mensonge.\nI knew it was a lie.\tJe savais que c'était un mensonge.\nI knew it was right.\tJe savais que c'était juste.\nI knew it was right.\tJe savais que c'était correct.\nI knew that already.\tJe le savais déjà.\nI knew that was Tom.\tJe savais que c'était Tom.\nI knew you'd be mad.\tJe savais que tu serais furieux.\nI knew you'd be mad.\tJe savais que tu serais furieuse.\nI knew you'd be mad.\tJe savais que vous seriez furieux.\nI knew you'd be mad.\tJe savais que vous seriez furieuse.\nI know Tom is smart.\tJe sais que Tom est intelligent.\nI know Tom's sister.\tJe connais la sœur de Tom.\nI know a few things.\tJe connais quelques trucs.\nI know all about it.\tJ'en sais tout.\nI know both of them.\tJe connais les deux.\nI know her slightly.\tJe la connais un peu.\nI know how to do it.\tJe sais comment le faire.\nI know how you feel.\tJe peux bien comprendre ce que tu ressens.\nI know it very well.\tJe le connais très bien.\nI know none of them.\tJe ne connais aucune d'elles.\nI know these people.\tJe connais ces gens.\nI know these people.\tJe connais ces personnes.\nI know this is hard.\tJe sais que c'est dur.\nI know this is true.\tJe sais que c'est vrai.\nI know we can do it.\tJe sais que nous pouvons le faire.\nI know what I'll do.\tJe sais ce que je vais faire.\nI know what that is.\tJe sais ce que c'est que cela.\nI know what this is.\tJe sais ce que c'est.\nI know what you did.\tJe sais ce que tu as fait.\nI know what you did.\tJe sais ce que vous avez fait.\nI know what's right.\tJe sais ce qui est juste.\nI know what's wrong.\tJe sais ce qui ne va pas.\nI know where she is.\tJe sais où elle est.\nI know where we are.\tJe sais où nous sommes.\nI know you are rich.\tJe sais que vous êtes riche.\nI know you are rich.\tJe sais que tu es riche.\nI know you did that.\tJe sais que vous l'avez fait.\nI know you did this.\tJe sais que vous l'avez fait.\nI know you feel bad.\tJe sais que tu te sens mal.\nI know you feel bad.\tJe sais que vous vous sentez mal.\nI know you feel sad.\tJe sais que tu te sens triste.\nI know you love Tom.\tJe sais que tu aimes Tom.\nI know you love Tom.\tJe sais que vous aimez Tom.\nI know you miss Tom.\tJe sais que Tom te manque.\nI know you're right.\tJe sais que tu as raison.\nI know you're right.\tJe sais que vous avez raison.\nI know you're upset.\tJe sais que tu es fâché.\nI know you're upset.\tJe sais que tu es fâchée.\nI know you're upset.\tJe sais que tu es contrarié.\nI know you're upset.\tJe sais que tu es contrariée.\nI know your brother.\tJe connais ton frère.\nI know your brother.\tJe connais votre frère.\nI know your problem.\tJe connais votre problème.\nI know your problem.\tJe connais ton problème.\nI leave that to you.\tJe laisse cela à tes soins.\nI leave that to you.\tJe laisse cela à vos soins.\nI left school early.\tJ'ai quitté tôt l'école.\nI let the team down.\tJ'ai laissé tomber l'équipe.\nI like Boston a lot.\tJ'aime beaucoup Boston.\nI like English, too.\tMoi aussi, j'aime l'anglais.\nI like being single.\tJ'apprécie d'être célibataire.\nI like each of them.\tJ'aime chacun d'entre eux.\nI like each of them.\tJ'aime chacune d'entre elles.\nI like his attitude.\tJ'apprécie son attitude.\nI like it very much.\tÇa me plaît beaucoup.\nI like it very much.\tJe l'aime beaucoup.\nI like light colors.\tJ'aime les couleurs claires.\nI like playing golf.\tJ'aime jouer au golf.\nI like taking walks.\tJ'aime faire des promenades.\nI like these chairs.\tJ'aime ces chaises.\nI like to play golf.\tJ'aime jouer au golf.\nI like what you did.\tJ'apprécie ce que vous avez fait.\nI like what you did.\tJ'apprécie ce que tu as fait.\nI like where I live.\tJe me plais là où je vis.\nI like wild flowers.\tJ'aime les fleurs des champs.\nI like working here.\tJ'aime travailler ici.\nI like your article.\tJ'apprécie ton article.\nI like your cookies.\tJ'apprécie vos biscuits.\nI like your cookies.\tJ'apprécie tes biscuits.\nI live in Kyoto now.\tJ'habite à Kyoto maintenant.\nI live in the house.\tJe vis dans la maison.\nI locked myself out.\tJe me suis enfermé dehors.\nI looked everywhere.\tJ'ai regardé partout.\nI love Chinese food.\tJ'aime la nourriture chinoise.\nI love French films.\tJ'adore les films français.\nI love Italian food.\tJ'adore la nourriture italienne.\nI love blackberries.\tJ'aime les mûres.\nI love this company.\tJ'adore cette entreprise.\nI love to eat cakes.\tJ'aime manger des gâteaux.\nI love to play golf.\tJ'adore jouer au golf.\nI love you the most.\tC'est toi que j'aime le plus.\nI love you the most.\tC'est vous que j'aime le plus.\nI love your sweater.\tJ'adore ton chandail.\nI love your sweater.\tJ'adore votre chandail.\nI loved high school.\tJ'ai adoré le lycée.\nI made a phone call.\tJ'ai passé un appel.\nI made a phone call.\tJ'ai passé un coup de fil.\nI made reservations.\tJ'ai émis des reserves.\nI made reservations.\tJ'ai effectué des réservations.\nI made sure of that.\tJe m'en suis assuré.\nI make my own rules.\tJe fais mes propres règles.\nI managed to get in.\tJ'ai réussi à entrer.\nI may not have time.\tIl se peut que je n'aie pas le temps.\nI may not have time.\tIl se peut que je ne dispose pas du temps.\nI meant what I said.\tJe pensais ce que j'ai dit.\nI meant you no harm.\tJe ne te voulais aucun mal.\nI meant you no harm.\tJe ne vous voulais aucun mal.\nI met her by chance.\tJe l'ai rencontrée par hasard.\nI met her by chance.\tJe suis tombé sur elle par hasard.\nI met him by chance.\tJe l'ai rencontré par hasard.\nI met him yesterday.\tJe l'ai rencontré hier.\nI must be going now.\tIl faut que j'y aille maintenant.\nI must do something.\tIl me faut faire quelque chose.\nI must get it fixed.\tIl faut que je le fasse réparer.\nI must get it fixed.\tJe dois le faire réparer.\nI must have lost it.\tJ'ai dû le perdre.\nI must have lost it.\tJ'ai dû perdre les pédales.\nI must look a sight.\tJe dois avoir l'air horrible.\nI must work tonight.\tIl me faut travailler ce soir.\nI must've forgotten.\tJe dois avoir oublié.\nI need a heavy coat.\tJ'ai besoin d'un manteau épais.\nI need it yesterday.\tJ'en ai besoin hier.\nI need lots of time.\tIl me faut beaucoup de temps.\nI need medical help.\tJ'ai besoin de voir quelqu'un dans la salle des urgences.\nI need some answers.\tIl me faut des réponses.\nI need some hangers.\tJ'ai besoin de quelques cintres.\nI need the car keys.\tIl me faut les clés de voiture.\nI need to repay her.\tIl me faut la rembourser.\nI need to sleep now.\tJ'ai besoin de dormir maintenant.\nI never believed it.\tJe n'y ai jamais cru.\nI never believed it.\tJe ne l'ai jamais cru.\nI never drink alone.\tJe ne bois jamais seul.\nI never drink alone.\tJe ne bois jamais seule.\nI never go anywhere.\tJe ne vais jamais nulle part.\nI never lied to you.\tJe ne t'ai jamais menti.\nI never lied to you.\tJe ne vous ai jamais menti.\nI never make my bed.\tJe ne fais jamais mon lit.\nI never told anyone.\tJe ne l'ai jamais dit à quiconque.\nI never trusted Tom.\tJe n’ai jamais fait confiance à Tom.\nI never wanted that.\tJe n'ai jamais voulu ça.\nI never wanted that.\tJe n'ai jamais voulu cela.\nI never wanted this.\tJe ne l'ai jamais voulu.\nI often call on him.\tJe le requiers souvent.\nI often catch colds.\tJ'attrape fréquemment froid.\nI only saw him once.\tJe ne l'ai vu qu'une fois.\nI only saw him once.\tJe ne le vis qu'une fois.\nI only think of you.\tJe ne pense qu'à vous.\nI only think of you.\tJe ne pense qu'à toi.\nI opened the drawer.\tJ'ai ouvert le tiroir.\nI opened the drawer.\tJ'ouvris le tiroir.\nI opened the window.\tJ'ouvris la fenêtre.\nI opened the window.\tJ'ai ouvert la fenêtre.\nI owe you something.\tJe te dois quelque chose.\nI owe you something.\tJe vous dois quelque chose.\nI own this property.\tJe possède cette propriété.\nI pretended to work.\tJ'ai feint de travailler.\nI pretended to work.\tJ'ai fait semblant de travailler.\nI pretended to work.\tJe fis semblant de travailler.\nI pretended to work.\tJe feignis de travailler.\nI promise I'll call.\tJe promets d'appeler.\nI promise I'll call.\tJe promets que j'appellerai.\nI quickly ate lunch.\tJ'ai rapidement déjeuné.\nI quickly ate lunch.\tJe déjeunai rapidement.\nI quit after a week.\tJ'ai arrêté après une semaine.\nI ran like the wind.\tJe courus comme le vent.\nI ran out of breath.\tJ'étais à bout de souffle.\nI rang the doorbell.\tJe sonnai à la porte.\nI rang the doorbell.\tJ'ai sonné à la porte.\nI really admire Tom.\tJ'admire vraiment Tom.\nI really don't care.\tJe ne m'en soucie vraiment pas.\nI really don't care.\tJe m'en fiche vraiment.\nI really don't know.\tJe ne sais vraiment pas.\nI really don't know.\tJ'ignore vraiment.\nI really don't sing.\tJe ne chante vraiment pas.\nI really doubt that.\tJ'en doute vraiment.\nI really enjoyed it.\tJe me suis bien amusé.\nI really have to go.\tIl me faut vraiment y aller.\nI really have to go.\tIl me faut vraiment m'en aller.\nI really like China.\tJ'adore la Chine.\nI really liked that.\tJ'ai vraiment aimé ça.\nI really liked that.\tJ'ai vraiment aimé cela.\nI really liked that.\tJ'ai vraiment apprécié ça.\nI really liked that.\tJ'ai vraiment apprécié cela.\nI really missed you.\tVous m'avez vraiment manqué.\nI really missed you.\tTu m'as vraiment manqué.\nI really need a hug.\tJ'ai vraiment besoin qu'on m'étreigne.\nI really need to go.\tIl me faut vraiment y aller.\nI really need to go.\tIl me faut vraiment m'en aller.\nI received my bonus.\tJ'ai reçu mon bonus.\nI recommend caution.\tJe recommande de la prudence.\nI regret doing that.\tJe regrette avoir fait ça.\nI regret doing that.\tJe regrette avoir fait cela.\nI remember all that.\tJe me rappelle tout ça.\nI remember all that.\tJe me souviens de tout ça.\nI remember laughing.\tJe me souviens avoir ri.\nI remember that guy.\tJe me souviens de ce type.\nI remember that guy.\tJe me rappelle ce type.\nI remember the word.\tJe me souviens du mot.\nI returned to Japan.\tJe suis retourné au Japon.\nI returned to Japan.\tJe suis retournée au Japon.\nI reviewed the file.\tJ'ai passé le fichier en revue.\nI reviewed the file.\tJ'ai examiné le fichier.\nI revised my theory.\tJ'ai revu ma théorie.\nI rewrote my report.\tJ'ai réécrit mon rapport.\nI risked everything.\tJ'ai tout risqué.\nI risked everything.\tJe risquai tout.\nI ruined everything.\tJ'ai tout gâché.\nI ruined everything.\tJ'ai tout démoli.\nI run every morning.\tJe cours tous les matins.\nI said I'd be there.\tJ'ai dit que je serais là.\nI said it as a joke.\tJe l'ai dit en manière de plaisanterie.\nI said it as a joke.\tJe l'ai dit comme une blague.\nI saw her last week.\tJe l'ai vue la semaine passée.\nI saw nobody around.\tJe n'ai vu personne alentour.\nI saw you yesterday.\tJe t'ai vu hier.\nI saw you yesterday.\tJe t'ai vue hier.\nI saw you yesterday.\tJe vous ai vus hier.\nI saw you yesterday.\tJe vous ai vues hier.\nI saw you yesterday.\tJe vous ai vu hier.\nI saw you yesterday.\tJe vous ai vue hier.\nI second the motion.\tJe soutiens la motion.\nI see her every day.\tJe la vois tous les jours.\nI see what you mean.\tJe vois ce que tu veux dire.\nI see what you mean.\tJe vois ce que vous voulez dire.\nI see you are ready.\tJe vois que tu es prête.\nI see you are ready.\tJe vois que vous êtes prête.\nI see you are ready.\tJe vois que vous êtes prêt.\nI see you are ready.\tJe vois que vous êtes prêtes.\nI see you are ready.\tJe vois que vous êtes prêts.\nI sent you an email.\tJe t'ai envoyé un courrier électronique.\nI share his opinion.\tJe partage son opinion.\nI shouldn't be here.\tJe ne devrais pas être ici.\nI simply don't know.\tJe n'en sais simplement rien.\nI sleep standing up.\tJe dors debout.\nI sprang out of bed.\tJe bondis hors du lit.\nI sprang out of bed.\tJ'ai bondi hors du lit.\nI stared at the man.\tJ'ai fixé l'homme du regard.\nI still have to try.\tJe dois encore essayer.\nI still have to try.\tIl me faut encore essayer.\nI stole it from Tom.\tJe l'ai volé à Tom.\nI study mathematics.\tJ'étudie les mathématiques.\nI study very little.\tJ'étudie très peu.\nI suggest you leave.\tJe vous suggère de partir.\nI suggest you leave.\tJe te suggère de partir.\nI suppose that's OK.\tJe suppose que c'est d'accord.\nI suppose that's OK.\tJe suppose que ça convient.\nI suppressed a yawn.\tJ'ai évité de bailler.\nI talked to friends.\tJ'ai parlé à des amis.\nI tested everything.\tJ'ai tout essayé.\nI tested everything.\tJ'ai tout testé.\nI think I can do it.\tJe pense pouvoir réussir.\nI think I'm in love.\tJe pense que je suis amoureux.\nI think I'm in love.\tJe pense que je suis amoureuse.\nI think Tom is dead.\tJe pense que Tom est mort.\nI think Tom is hurt.\tJe pense que Tom est blessé.\nI think Tom is sick.\tJe pense que Tom est malade.\nI think he is angry.\tJe pense qu'il est en colère.\nI think he is right.\tJe pense qu'il a raison.\nI think he likes me.\tJe pense qu'il m'apprécie.\nI think she is sick.\tJe crois qu'elle est malade.\nI think that's best.\tJe pense que c'est mieux.\nI think that's fair.\tJe pense que c'est juste.\nI think that's wise.\tJe pense que c'est sage.\nI think they saw me.\tJe pense qu'ils m'ont aperçu.\nI think they saw us.\tJe pense qu'ils nous ont aperçus.\nI think we found it.\tJe crois que nous l'avons trouvé.\nI think we lost Tom.\tJe pense que nous avons perdu Tom.\nI think we'll be OK.\tJe pense que nous allons nous en sortir.\nI think you like me.\tJe pense que vous m'appréciez.\nI think you like me.\tJe pense que tu m'apprécies.\nI think you're cute.\tJe pense que tu es mignonne.\nI think you're cute.\tJe pense que vous êtes adorable.\nI think you're cute.\tJe pense que vous êtes adorables.\nI think you're cute.\tJe pense que tu es mignon.\nI think you're nice.\tJe pense que tu es chouette.\nI think you're nice.\tJe pense que tu es sympa.\nI think you're nuts.\tJe pense que t'es dingue.\nI think you're nuts.\tJe pense que t'es barré.\nI think you're nuts.\tJe pense que t'es barrée.\nI think you're nuts.\tJe pense que vous êtes dingue.\nI think you're nuts.\tJe pense que vous êtes dingues.\nI think you're nuts.\tJe pense que vous êtes barré.\nI think you're nuts.\tJe pense que vous êtes barrée.\nI think you're nuts.\tJe pense que vous êtes barrés.\nI think you're nuts.\tJe pense que vous êtes barrées.\nI told you to leave.\tJe t'ai demandé de partir.\nI told you to leave.\tJe vous ai demandé de partir.\nI took care of that.\tJ'en ai pris soin.\nI took my shoes off.\tJe retirai mes chaussures.\nI took my shoes off.\tJ'ai retiré mes chaussures.\nI took the medicine.\tJ'ai pris les médicaments.\nI travel frequently.\tJe voyage fréquemment.\nI tried to help her.\tJ'ai essayé de l'aider.\nI tried to help her.\tJ'essayai de l'aider.\nI tried to help her.\tJ'essayai de lui être secourable.\nI tried to help him.\tJ'ai essayé de l'aider.\nI tried to help him.\tJ'essayai de l'aider.\nI tried to run fast.\tJ'ai essayé de courir vite.\nI tried to save him.\tJ'ai essayé de le sauver.\nI tried to save you.\tJ'ai essayé de te sauver.\nI tried to save you.\tJ'ai essayé de vous sauver.\nI tried to save you.\tJ'ai tenté de te sauver.\nI tried to save you.\tJ'ai tenté de vous sauver.\nI tried to tell you.\tJ'ai essayé de te le dire.\nI tried to warn you.\tJ'ai essayé de te prévenir.\nI tried to warn you.\tJ'ai essayé de vous prévenir.\nI unlocked the door.\tJ'ai déverrouillé la porte.\nI used to love that.\tJ'adorais ça.\nI used to play here.\tJe jouais ici.\nI wanna go to Japan.\tJe voudrais aller au Japon.\nI wanna quit my job.\tJe veux quitter mon boulot.\nI want another beer.\tJe veux une autre bière.\nI want him to leave.\tJe veux qu'il parte.\nI want him to leave.\tJe veux que lui parte.\nI want him to leave.\tJe veux qu'il s'en aille.\nI want him to leave.\tJe veux que lui s'en aille.\nI want more of that.\tJe veux davantage de ça.\nI want my life back.\tJe veux qu'on me rende ma vie.\nI want my life back.\tJe veux retrouver ma vie.\nI want my life back.\tJe veux retrouver ma vie d'avant.\nI want some answers.\tJe veux des réponses.\nI want to apologize.\tJe veux présenter mes excuses.\nI want to be a hero.\tJe veux être un héros.\nI want to eat steak.\tJe veux manger du steak.\nI want to go abroad.\tJe veux partir à l'étranger.\nI want to go abroad.\tJe veux aller à l'étranger.\nI want to hear more.\tJe veux en entendre davantage.\nI want to hear this.\tJe veux entendre ceci.\nI want to keep that.\tJe veux garder cela.\nI want to learn how.\tJe veux apprendre comment.\nI want to live here.\tJe veux vivre ici.\nI want to move away.\tJe veux déménager.\nI want to negotiate.\tJe veux négocier.\nI want to play, too.\tJe veux jouer, moi aussi.\nI want to play, too.\tJe veux également jouer.\nI want to speak now.\tJe veux maintenant parler.\nI want to start now.\tJe veux commencer maintenant.\nI want to start now.\tJe veux démarrer maintenant.\nI want to thank you.\tJe veux vous remercier.\nI want to thank you.\tJe veux te remercier.\nI want to trust you.\tJe veux vous faire confiance.\nI want to trust you.\tJe veux me fier à vous.\nI want to trust you.\tJe veux me fier à toi.\nI want to trust you.\tJe veux te faire confiance.\nI want your opinion.\tJe veux votre opinion.\nI want your opinion.\tJe veux ton avis.\nI want your opinion.\tJe veux ton opinion.\nI wanted everything.\tJe voulais tout.\nI wanted to see Tom.\tJe voulais voir Tom.\nI wanted you to win.\tJe voulais que tu gagnes.\nI was all by myself.\tJ'étais absolument seul.\nI was all by myself.\tJ'étais absolument seule.\nI was aware of that.\tJ'en était conscient.\nI was born in Kyoto.\tJe suis né à Kyoto.\nI was born in Kyoto.\tJe suis née à Kyoto.\nI was born in Osaka.\tJe suis né à Osaka.\nI was born in Osaka.\tJe suis née à Osaka.\nI was drinking milk.\tJe buvais du lait.\nI was eighteen then.\tJ'avais alors 18 ans.\nI was expecting you.\tJe t'attendais.\nI was going to work.\tJ'allais travailler.\nI was happy for him.\tJe fus heureux pour lui.\nI was happy for him.\tJ'ai été heureux pour lui.\nI was happy for him.\tJ'étais heureux pour lui.\nI was ill yesterday.\tHier, j'étais malade.\nI was like you once.\tJ'étais comme vous autrefois.\nI was like you once.\tJ'étais comme toi autrefois.\nI was overconfident.\tJ'ai péché par excès de confiance.\nI was really scared.\tJ'ai vraiment eu peur.\nI was so humiliated.\tJ'ai été si humilié.\nI was so humiliated.\tJ'ai été si humiliée.\nI was uncomfortable.\tJ'étais mal à l'aise.\nI washed my T-shirt.\tJ'ai lavé mon T-shirt.\nI wasn't even there.\tJe n'y étais même pas.\nI wasn't in a hurry.\tJe n'étais pas pressé.\nI watched the movie.\tJ'ai vu le film.\nI went into details.\tJ'entrais dans les détails.\nI went to bed early.\tJe suis allé tôt au lit.\nI will be back soon.\tJe serai de retour dans une minute.\nI will be back soon.\tJe reviens vite.\nI will be back soon.\tJe reviens de suite.\nI will go if you go.\tJ'irai si tu vas.\nI will go if you go.\tJ'irai si tu y vas.\nI will go if you go.\tJe m'y rendrai si tu t'y rends.\nI will go if you go.\tJe partirai si tu pars.\nI will go if you go.\tJe partirai si vous partez.\nI will go if you go.\tJe m'y rendrai si vous vous y rendez.\nI will go if you go.\tJe m'y rendrai si tu le fais.\nI will go if you go.\tJe m'y rendrai si vous le faites.\nI will go if you go.\tJe partirai si vous le faites.\nI will go if you go.\tJe partirai si tu le fais.\nI will go if you go.\tJ'irai si vous y allez.\nI will go if you go.\tJ'irai si vous allez.\nI will hit the sack.\tJe vais me piauter.\nI will miss you all.\tVous allez tous me manquer.\nI will not help you.\tJe ne t'aiderai pas.\nI will study German.\tJ'étudierai l'allemand.\nI will study German.\tJ'apprendrai l'allemand.\nI will try it again.\tJe le tenterai à nouveau.\nI will try it again.\tJ'essaierai à nouveau.\nI will wait outside.\tJ'attendrai dehors.\nI will wait outside.\tJ'attendrai à l'extérieur.\nI wish I could swim.\tJ'aimerais savoir nager.\nI wish I were young.\tJe souhaiterais être jeune.\nI wish Tom the best.\tJe souhaite le meilleur à Tom.\nI wish Tom was here.\tJ'aimerais que Tom soit là.\nI wish you the same.\tJe te souhaite la même chose.\nI wish you the same.\tJe te souhaite de même.\nI won't accept that.\tJe n'accepterai pas cela.\nI won't do it again.\tJe ne le referai plus.\nI won't forget that.\tJe ne l'oublierai pas.\nI won't forget that.\tJe n'oublierai pas cela.\nI won't let you die.\tJe ne te laisserai pas mourir.\nI won't let you die.\tJe ne vous laisserai pas mourir.\nI won't tell anyone.\tJe ne le dirai à personne.\nI won't tolerate it.\tJe ne le tolèrerai pas.\nI wonder who she is.\tJe me demande qui elle est.\nI would do it again.\tJe le referais.\nI would do it again.\tJe le ferais à nouveau.\nI would like a room.\tJ'aimerais une chambre.\nI would've said yes.\tJ’aurais dit oui.\nI'd appreciate that.\tJe l'apprécierais.\nI'd die without you.\tJe mourrais, sans toi.\nI'd die without you.\tJe mourrais, sans vous.\nI'd die without you.\tSans vous, je mourrais.\nI'd die without you.\tSans toi, je mourrais.\nI'd help if I could.\tJ'aiderais, si c'était en mon pouvoir.\nI'd like a city map.\tJe voudrais un plan de la ville.\nI'd like some shoes.\tJ'aimerais des chaussures.\nI'd like some water.\tJe voudrais un peu d'eau.\nI'd like to do more.\tJe voudrais faire davantage.\nI'd like to do that.\tJ'aimerais faire ça.\nI'd like to go home.\tJ'aimerais me rendre chez moi.\nI'd like to go home.\tJ'aimerais aller chez moi.\nI'd like to go, too.\tJ'aimerais aussi y aller.\nI'd like to go, too.\tJ'aimerais également m'y rendre.\nI'd like to see her.\tJe voudrais la rencontrer.\nI'll always be here.\tJe serai toujours ici.\nI'll be back at ten.\tJe reviens à dix heures.\nI'll be back by six.\tJe reviens avant six heures.\nI'll be leaving now.\tJe suis sur le départ.\nI'll be leaving now.\tJe m'apprête à partir.\nI'll be out of town.\tJe ne serai pas en ville.\nI'll be right there.\tJ'y serai.\nI'll be right there.\tJ'y vais immédiatement.\nI'll be right there.\tJe te surveille.\nI'll buy you a beer.\tJe vais te payer une bière.\nI'll buy you a beer.\tJe vais vous payer une bière.\nI'll call back soon.\tJe rappelle tout de suite.\nI'll call you a cab.\tJe t'appellerai un taxi.\nI'll call you a cab.\tJe vous appellerai un taxi.\nI'll call you later.\tJe te rappellerai plus tard.\nI'll come back soon.\tJe reviens bientôt.\nI'll come right now.\tJ'arrive tout de suite.\nI'll do it with you.\tJe le ferai avec toi.\nI'll do it with you.\tJe le ferai avec vous.\nI'll do my homework.\tJe ferai mes devoirs.\nI'll drive Tom home.\tJe conduirai Tom chez lui.\nI'll drive Tom home.\tJe conduirai Tom à la maison.\nI'll eat after that.\tJe vais manger après ça.\nI'll fix your wagon.\tJe réparerai ton chariot.\nI'll fix your wagon.\tJe vais t'arranger le cul.\nI'll get used to it.\tJe m'y habituerai.\nI'll give him a pen.\tJe lui donnerai un stylo.\nI'll give it a shot.\tJe vais tenter le coup.\nI'll give it to you.\tJe te le donnerai.\nI'll give it to you.\tJe vous le donnerai.\nI'll go in a minute.\tJ'irai dans une minute.\nI'll have skim milk.\tPour moi, du lait écrémé.\nI'll join you later.\tJe vous rejoindrai plus tard.\nI'll kick your butt!\tJe vais te botter le train !\nI'll lend it to you.\tJe vais te la prêter.\nI'll lend it to you.\tJe te la prêterai.\nI'll lend it to you.\tJe te le prêterai.\nI'll lend it to you.\tJe vous le prêterai.\nI'll lend it to you.\tJe vous la prêterai.\nI'll make you happy.\tJe vais te rendre heureux.\nI'll make you happy.\tJe vous rendrai heureux.\nI'll make you happy.\tJe vous rendrai heureuse.\nI'll meet you there.\tJe t'y retrouverai.\nI'll need your help.\tJ'aurai besoin de votre aide.\nI'll need your help.\tJ'aurai besoin de ton aide.\nI'll pay my own way.\tJe payerai à ma façon.\nI'll see you around.\tJe te verrai dans le coin.\nI'll see you around.\tJe vous verrai dans le coin.\nI'll show you later.\tJe vous montrerai plus tard.\nI'll take it inside.\tJe le prendrai à l'intérieur.\nI'll take you there.\tJe vous y amènerai.\nI'll take your coat.\tJe prendrai ton manteau.\nI'll think about it.\tJ'y songerai.\nI'll wait patiently.\tJ'attendrai patiemment.\nI'll wait till noon.\tJ'attendrai jusqu'à midi.\nI'm a beginner, too.\tMoi aussi je suis débutant.\nI'm a beginner, too.\tJe suis également débutant.\nI'm a beginner, too.\tJe suis également un débutant.\nI'm a beginner, too.\tMoi aussi je suis un débutant.\nI'm a light sleeper.\tJe dors peu.\nI'm a little hungry.\tJ'ai un peu faim.\nI'm a married woman.\tJe suis une femme mariée.\nI'm a perfectionist.\tJe suis perfectionniste.\nI'm a quick learner.\tJ'apprends vite.\nI'm a social worker.\tJe suis un travailleur social.\nI'm a social worker.\tJe suis une travailleuse sociale.\nI'm a stranger here.\tJe suis un étranger ici.\nI'm a stranger here.\tJe suis une étrangère ici.\nI'm about to go out.\tJe vais sortir.\nI'm absolutely sure!\tJ’en suis sûre et certaine !\nI'm afraid of death.\tJ'ai peur de mourir.\nI'm afraid of dying.\tJ'ai peur de mourir.\nI'm already married.\tJe suis déjà marié.\nI'm already married.\tJe suis déjà mariée.\nI'm an innocent man.\tJe suis innocent.\nI'm at your service.\tJe suis à votre service.\nI'm at your service.\tJe suis à ton service.\nI'm bad at swimming.\tJe ne sais pas bien nager.\nI'm behind schedule.\tJe suis en retard.\nI'm behind schedule.\tJe suis en retard sur le programme.\nI'm better than him.\tJe suis meilleur que lui.\nI'm bored right now.\tJe m'ennuie, en ce moment.\nI'm broke and tired.\tJe suis lessivé et fatigué.\nI'm broke and tired.\tJe suis ruiné et fatigué.\nI'm broke and tired.\tJe suis sur la paille et fatigué.\nI'm certain of that.\tJ'en suis certain.\nI'm counting on you.\tJe compte sur toi.\nI'm crazy about you.\tJe suis fou de toi.\nI'm crazy about you.\tJe suis fou de vous.\nI'm doing all I can.\tJe fais tout ce que je peux.\nI'm drinking a beer.\tJe suis en train de boire une bière.\nI'm dying of thirst.\tJe meurs de soif.\nI'm eating an apple.\tJe mange une pomme.\nI'm extremely happy.\tJe suis extrêmement heureux.\nI'm fed up with her.\tJ'en ai marre d'elle.\nI'm fed up with him.\tJ'en ai marre de lui.\nI'm fine, thank you.\tÇa va, merci.\nI'm getting married.\tJe vais me marier.\nI'm glad to be here.\tJe suis content d'être là.\nI'm glad to be here.\tJe suis contente d'être là.\nI'm glad to be here.\tJe suis content d'être ici.\nI'm glad to see you.\tJe suis heureux de vous voir.\nI'm glad to see you.\tJe suis enchanté de vous rencontrer.\nI'm glad to see you.\tJe suis heureux de te voir.\nI'm glad we saw Tom.\tJe suis content que nous ayons vu Tom.\nI'm going on a trip.\tJe pars en voyage.\nI'm going there now.\tJ'y vais maintenant.\nI'm going to go now.\tJe vais maintenant y aller.\nI'm going to prison.\tJe vais en prison.\nI'm good at science.\tJe suis bon en Sciences.\nI'm good at singing.\tJe suis bon en chant.\nI'm happy with that.\tJ'en suis content.\nI'm happy with that.\tJ'en suis contente.\nI'm in my underwear.\tJe suis en sous-vêtements.\nI'm incredibly busy.\tJe suis incroyablement occupé.\nI'm indebted to you.\tJ'ai une dette envers toi.\nI'm indebted to you.\tJ'ai une dette envers vous.\nI'm just not hungry.\tJe n'ai simplement pas faim.\nI'm kind of a loner.\tJe suis une sorte de solitaire.\nI'm learning Basque.\tJe suis en train d'apprendre le basque.\nI'm learning French.\tJe suis en train d'apprendre le français.\nI'm leaving tonight.\tJe pars ce soir.\nI'm living my dream.\tJe vis mon rêve.\nI'm making progress.\tJe fais des progrès.\nI'm more than happy.\tJe suis plus qu'heureux.\nI'm more than happy.\tJe suis plus qu'heureuse.\nI'm more than happy.\tJe suis plus que content.\nI'm more than happy.\tJe suis plus que contente.\nI'm no longer tired.\tJe ne suis plus fatigué.\nI'm not a bit tired.\tJe ne suis pas du tout fatigué.\nI'm not a good liar.\tJe ne suis pas un bon menteur.\nI'm not a good liar.\tJe ne suis pas une bonne menteuse.\nI'm not a scientist.\tJe ne suis pas scientifique.\nI'm not apologizing.\tJe ne présente pas mes excuses.\nI'm not at all busy.\tJe ne suis pas occupé du tout.\nI'm not at all busy.\tJe ne suis pas occupée du tout.\nI'm not blaming you.\tJe ne vous blâme pas.\nI'm not busy either.\tJe ne suis pas occupé non plus.\nI'm not busy either.\tJe ne suis pas occupée non plus.\nI'm not comfortable.\tJe ne suis pas à l'aise.\nI'm not coming back.\tJe ne reviens pas.\nI'm not complaining.\tJe ne me plains pas.\nI'm not disagreeing.\tJe l'accorde.\nI'm not discouraged.\tJe ne suis pas découragé.\nI'm not discouraged.\tJe ne suis pas découragée.\nI'm not eating this.\tJe ne mange pas ça.\nI'm not eating this.\tJe ne vais pas manger ça.\nI'm not embarrassed.\tJe ne suis pas embarrassé.\nI'm not embarrassed.\tJe ne suis pas embarrassée.\nI'm not going to go.\tJe ne vais pas y aller.\nI'm not in any pain.\tJe n'éprouve pas la moindre douleur.\nI'm not in the mood.\tJe ne suis pas d'humeur.\nI'm not intimidated.\tJe ne suis pas intimidé.\nI'm not intimidated.\tJe ne suis pas intimidée.\nI'm not leaving you.\tJe ne te quitte pas.\nI'm not married yet.\tJe ne suis pas encore mariée.\nI'm not married yet.\tJe ne suis pas encore marié.\nI'm not one of them.\tJe ne fais pas partie du sérail.\nI'm not one of them.\tJe ne fais pas partie de leur groupe.\nI'm not one of them.\tJe ne fais pas partie de leur sérail.\nI'm not one of them.\tJe ne fais pas partie de leur bande.\nI'm not presentable.\tJe ne suis pas présentable.\nI'm not proud of it.\tJe n'en suis pas fier.\nI'm not proud of it.\tJe n'en suis pas fière.\nI'm not really busy.\tJe ne suis pas vraiment occupé.\nI'm not really busy.\tJe ne suis pas vraiment occupée.\nI'm not telling you.\tJe ne te le dis pas.\nI'm not that stupid!\tJe ne suis pas stupide à ce point !\nI'm not the manager.\tJe ne suis pas le patron.\nI'm not the problem.\tLe problème, ce n'est pas moi.\nI'm not the problem.\tCe n'est pas moi le problème.\nI'm not very hungry.\tJe n'ai pas très faim.\nI'm not your father.\tJe ne suis pas ton père.\nI'm not your friend.\tJe ne suis pas ton ami.\nI'm not your friend.\tJe ne suis pas ton amie.\nI'm not your friend.\tJe ne suis pas votre ami.\nI'm not your friend.\tJe ne suis pas votre amie.\nI'm on the way home.\tJe suis sur le chemin de la maison.\nI'm only a customer.\tJe ne suis qu'un client.\nI'm out of practice.\tJe manque de pratique.\nI'm perfectly happy.\tJe suis parfaitement heureux.\nI'm perfectly happy.\tJe suis parfaitement heureuse.\nI'm proud of my dad.\tJe suis fière de mon père.\nI'm proud of my son.\tJe suis fier de mon fils.\nI'm proud of myself.\tJe suis fière de moi.\nI'm proud of myself.\tJe suis fier de moi.\nI'm ready to go now.\tJe suis prêt à partir maintenant.\nI'm ready to go now.\tJe suis prêt à y aller maintenant.\nI'm really not busy.\tJe ne suis vraiment pas occupé.\nI'm really not busy.\tJe ne suis vraiment pas occupée.\nI'm right, aren't I?\tJ'ai raison, non ?\nI'm sad without you.\tJe suis triste sans vous.\nI'm sad without you.\tJe suis triste sans toi.\nI'm sad without you.\tSans toi, je suis triste.\nI'm short of breath.\tJe suis à bout de souffle.\nI'm sick of English.\tJ'en ai marre de l'anglais.\nI'm sick of English.\tJe n'en peux plus de l'anglais.\nI'm slightly hungry.\tJ'ai légèrement faim.\nI'm so proud of you.\tJe suis tellement fier de toi.\nI'm so proud of you.\tJe suis tellement fière de toi.\nI'm so proud of you.\tJe suis tellement fière de vous.\nI'm so proud of you.\tJe suis tellement fier de vous.\nI'm so sick of this.\tJ'en ai tellement marre.\nI'm sorry. I forgot.\tJe suis désolé. J'ai oublié.\nI'm sorry. I forgot.\tJe suis désolée. J'ai oublié.\nI'm still concerned.\tJe suis toujours inquiet.\nI'm still not ready.\tJe ne suis pas encore prêt.\nI'm still undecided.\tJe suis encore indécis.\nI'm stuck in my job.\tJe suis coincé dans mon boulot.\nI'm stuck in my job.\tJe suis coincée dans mon boulot.\nI'm studying French.\tJe suis en train d'étudier le français.\nI'm studying French.\tJ'étudie le français.\nI'm taller than you.\tJe suis plus grand que toi.\nI'm tired of Boston.\tJe suis las de Boston.\nI'm tired of Boston.\tJe suis fatigué de Boston.\nI'm tired of Boston.\tJe suis fatiguée de Boston.\nI'm tired of losing.\tJ'en ai marre de perdre.\nI'm too old for Tom.\tJe suis trop vieille pour Tom.\nI'm too old for Tom.\tJe suis trop âgé pour Tom.\nI'm too old for Tom.\tJe suis trop âgée pour Tom.\nI'm too old for Tom.\tJe suis trop vieux pour Tom.\nI'm too old for her.\tJe suis trop vieux pour elle.\nI'm too old for you.\tJe suis trop vieux pour vous.\nI'm too old for you.\tJe suis trop vieux pour toi.\nI'm too old for you.\tJe suis trop vieille pour vous.\nI'm too old for you.\tJe suis trop vieille pour toi.\nI'm traveling light.\tJe voyage léger.\nI'm trying to sleep.\tJ'essaie de dormir.\nI'm used to Tom now.\tJe suis habitué à Tom maintenant.\nI'm very busy today.\tJe suis très occupé aujourd'hui.\nI'm very frustrated.\tJe suis très frustré.\nI'm very frustrated.\tJe suis très frustrée.\nI'm very sleepy now.\tJ'ai très sommeil, maintenant.\nI'm waiting my turn.\tJ'attends mon tour.\nI'm writing a novel.\tJ'écris un roman.\nI'm your new lawyer.\tJe suis votre nouvel avocat.\nI've got a new bike.\tJ'ai un nouveau vélo.\nI've got a question.\tJ'ai une question.\nI've got my reasons.\tJ'ai mes raisons.\nI've got no worries.\tJe n'ai aucun souci.\nI've got to do this.\tJe dois le faire.\nI've got to see you.\tIl me faut vous voir.\nI've got to see you.\tIl me faut te voir.\nI've lost my ticket.\tJ'ai perdu mon billet.\nI've lost my wallet.\tJ'ai perdu mon portefeuille.\nI've made my choice.\tJ'ai fait mon choix.\nI've promised to go.\tJ'ai promis d'y aller.\nI've tried them all.\tJe les ai tous essayés.\nI've tried them all.\tJe les ai toutes essayées.\nIs French difficult?\tLe français est-il difficile ?\nIs French difficult?\tEst-ce que c'est difficile, le français ?\nIs Tom absent today?\tTom est-il absent aujourd'hui ?\nIs Tom still aboard?\tTom est-il toujours à bord ?\nIs Tom still aboard?\tTom est-il encore à bord ?\nIs any of this true?\tQuoi que ce soit de ceci est-il vrai ?\nIs anybody in there?\tY a-t-il qui que ce soit, là-dedans ?\nIs anyone else home?\tQui que ce soit d'autre se trouve-t-il dans la maison ?\nIs anyone else home?\tQui que ce soit d'autre se trouve-t-il à la maison ?\nIs anyone listening?\tQuiconque écoute-t-il ?\nIs anyone surprised?\tQuiconque est-il surpris ?\nIs anyone surprised?\tQui que ce soit est-il surpris ?\nIs anything missing?\tQuoi que ce soit manque-t-il ?\nIs anything missing?\tY a-t-il quoi que ce soit qui manque ?\nIs college worth it?\tL'université vaut-elle le coup ?\nIs college worth it?\tLa faculté vaut-elle le coup ?\nIs college worth it?\tCela vaut-il le coup d'aller à l'université ?\nIs college worth it?\tCela vaut-il le coup d'aller en fac ?\nIs everybody hungry?\tTout le monde a-t-il faim ?\nIs everyone waiting?\tTout le monde est-il en train d'attendre ?\nIs everything ready?\tEst-ce que tout est prêt ?\nIs everything ready?\tTout est-il prêt ?\nIs he looking at me?\tEst-il en train de me regarder ?\nIs he really coming?\tViendra-t-il effectivement ?\nIs it a yes or a no?\tC'est oui ou c'est non ?\nIs it all necessary?\tTout ceci est-il nécessaire ?\nIs it comprehensive?\tEst-ce exhaustif ?\nIs it far from here?\tC'est loin d'ici ?\nIs it getting worse?\tCela empire-t-il ?\nIs it still raining?\tPleut-il encore ?\nIs it time you need?\tEst-ce de temps dont vous avez besoin ?\nIs it time you need?\tEst-ce de temps dont tu as besoin ?\nIs my laundry ready?\tMon linge est-il prêt ?\nIs that a challenge?\tS'agit-il d'un défi ?\nIs that all of them?\tEst-ce là la totalité d'entre eux ?\nIs that all of them?\tEst-ce là la totalité d'entre elles ?\nIs that all we need?\tEst-ce tout ce dont nous avons besoin ?\nIs that one of ours?\tEst-ce là l'un d'entre nous ?\nIs that one of ours?\tEst-ce l'un d'entre nous ?\nIs that our problem?\tEst-ce notre problème ?\nIs that really true?\tEst-ce véridique ?\nIs that significant?\tEst-ce significatif ?\nIs that so terrible?\tEst-ce si terrible ?\nIs that thing yours?\tCette chose est à toi ?\nIs that your mother?\tEst-ce là ta mère ?\nIs that your mother?\tEst-ce là votre mère ?\nIs that your sister?\tEst-ce là ta sœur ?\nIs that your sister?\tEst-ce là votre sœur ?\nIs the dog swimming?\tEst-ce que le chien est en train de nager ?\nIs the dog swimming?\tLe chien est-il en train de nager ?\nIs the weather nice?\tLe temps est-il beau ?\nIs this a challenge?\tS'agit-il d'un défi ?\nIs this all of them?\tEst-ce là tout ?\nIs this all they do?\tEst-ce tout ce qu'ils font ?\nIs this all they do?\tEst-ce tout ce qu'elles font ?\nIs this all we need?\tEst-ce là tout ce dont nous avons besoin ?\nIs this appropriate?\tEst-ce approprié ?\nIs this appropriate?\tEst-ce convenable ?\nIs this jasmine tea?\tEst-ce du thé au jasmin ?\nIs this permissible?\tEst-ce autorisé ?\nIs this radio yours?\tCette radio est-elle la vôtre ?\nIs this radio yours?\tCette radio est-elle la tienne ?\nIs this seat vacant?\tCette place est-elle libre ?\nIs this seat vacant?\tCe siège est-il libre ?\nIs this seat vacant?\tCette chaise est-elle libre ?\nIs this seat vacant?\tCette place est-elle libre ?\nIs this your family?\tEst-ce ta famille ?\nIs this your letter?\tS'agit-il de votre lettre ?\nIs your father rich?\tEst-ce que ton père est riche ?\nIs your mother here?\tTa mère est-elle là ?\nIs your mother here?\tVotre mère est-elle là ?\nIsn't it profitable?\tN'est-ce pas profitable ?\nIsn't she beautiful?\tN'est-elle pas belle ?\nIsn't that annoying?\tN'est-ce pas ennuyeux ?\nIsn't that annoying?\tN'est-ce pas agaçant ?\nIsn't that childish?\tN'est-ce pas puéril ?\nIsn't that exciting?\tCela n'est-il pas excitant ?\nIsn't that exciting?\tN'est-ce pas excitant ?\nIt bothers me a lot.\tÇa me soucie beaucoup.\nIt can be dangerous.\tÇa peut être dangereux.\nIt can be difficult.\tÇa peut être difficile.\nIt cannot be helped.\tOn n'y peut rien.\nIt could be anybody.\tÇa pourrait être n'importe qui.\nIt did not come off.\tÇa ne s'est pas produit.\nIt did not come off.\tÇa n'a pas été un succès.\nIt did not come off.\tÇa n'a pas été une réussite.\nIt did not end well.\tÇa ne s'est pas bien terminé.\nIt doesn't work yet.\tÇa ne fonctionne pas encore.\nIt felt pretty good.\tJe me sentis assez bien.\nIt felt pretty good.\tJe me suis senti assez bien.\nIt happened in Rome.\tC'est survenu à Rome.\nIt happened in Rome.\tC'est arrivé à Rome.\nIt happened in Rome.\tÇa s'est passé à Rome.\nIt happened so fast.\tC'est arrivé tellement vite !\nIt happened so fast.\tC'est arrivé tellement rapidement !\nIt is a little cold.\tIl fait un peu froid.\nIt is going to snow.\tIl va neiger.\nIt is too expensive.\tC'est trop cher.\nIt isn't impossible.\tCe n'est pas impossible.\nIt looks like a UFO.\tÇa ressemble à un OVNI.\nIt makes me nervous.\tÇa me rend nerveux.\nIt makes me nervous.\tÇa me rend nerveuse.\nIt may rain tonight.\tIl se peut qu'il pleuve ce soir.\nIt may well be true.\tÇa peut bien être vrai.\nIt never snows here.\tIl ne neige jamais ici.\nIt often rains here.\tIl pleut souvent ici.\nIt often snows here.\tIl neige souvent ici.\nIt really bugged me.\tÇa m'a vraiment ennuyé.\nIt really bugged me.\tÇa m'a vraiment ennuyée.\nIt serves you right.\tTu le mérites.\nIt serves you right.\tVous le méritez.\nIt smells delicious.\tÇa sent délicieusement bon.\nIt smells delicious.\tCela sent délicieusement bon.\nIt snowed all night.\tIl a neigé toute la nuit.\nIt snowed yesterday.\tIl a neigé, hier.\nIt tastes very good.\tÇa a très bon goût.\nIt took all evening.\tÇa a pris toute la soirée.\nIt uses solar power.\tÇa utilise l'énergie solaire.\nIt was a busy night.\tCe fut une nuit animée.\nIt was a busy night.\tÇa a été une nuit agitée.\nIt was a dark night.\tC'était une nuit noire.\nIt was a great trip.\tCe fut un merveilleux voyage.\nIt was a great trip.\tÇa a été un super voyage.\nIt was a great trip.\tCe fut un super voyage.\nIt was a great trip.\tÇa a été un merveilleux voyage.\nIt was a lot of fun.\tC'était très amusant.\nIt was a nice party.\tCe fut une chouette fête.\nIt was a nice party.\tÇa a été une chouette fête.\nIt was a nice story.\tC'était une belle histoire.\nIt was all worth it.\tTout en valait la peine.\nIt was almost funny.\tC'était presque amusant.\nIt was excruciating.\tCe fut extrêmement douloureux.\nIt was excruciating.\tÇa a été extrêmement douloureux.\nIt was fairly funny.\tC'était assez amusant.\nIt was fine all day.\tIl a fait beau toute la journée.\nIt was getting dark.\tÇa s'assombrissait.\nIt was hard as rock.\tC'était dur comme de la pierre.\nIt was just a dream.\tCe n'était qu'un rêve.\nIt was just a fling.\tCe n'était qu'une passade.\nIt was just a fling.\tCe ne fut qu'une passade.\nIt was just a hunch.\tC'était juste une intuition.\nIt was light enough.\tIl faisait suffisamment jour.\nIt was like a dream.\tÇa me semblait comme un rêve.\nIt was not my fault.\tCe n'était pas ma faute.\nIt was only a dream.\tCe n'était qu'un rêve.\nIt was only a dream.\tCe ne fut qu'un rêve.\nIt was only a dream.\tÇa n'a été qu'un rêve.\nIt was rather funny.\tC'était plutôt amusant.\nIt was rather funny.\tCe fut plutôt amusant.\nIt was really close.\tC'était moins une.\nIt was really funny.\tC'était vraiment amusant.\nIt was really funny.\tCe fut vraiment amusant.\nIt was really weird.\tC'était très bizarre.\nIt was the only way.\tC'était la seule manière.\nIt was the only way.\tC'était l'unique chemin.\nIt was unbelievable.\tC'était incroyable.\nIt was very painful.\tCe fut très douloureux.\nIt was very painful.\tÇa a été très douloureux.\nIt was worth trying.\tÇa valait le coup d'essayer.\nIt was your mistake.\tC'était ton erreur.\nIt wasn't a request.\tCe n'était pas une demande.\nIt wasn't expensive.\tCe n'était pas cher.\nIt wasn't just luck.\tCe n'était pas que de la chance.\nIt worked perfectly.\tÇa a parfaitement fonctionné.\nIt works like magic.\tÇa marche comme par magie.\nIt would be perfect.\tÇa serait parfait.\nIt'll be our secret.\tCe sera notre secret.\nIt'll come in handy.\tÇa sera bien utile.\nIt'll probably rain.\tIl pleuvra probablement.\nIt'll rain for sure.\tIl va certainement pleuvoir.\nIt'll rain for sure.\tIl pleuvra, sans aucun doute.\nIt'll rain for sure.\tIl pleuvra certainement.\nIt'll snow tomorrow.\tIl neigera demain.\nIt's a brain-teaser.\tC'est un casse-tête.\nIt's a dreary place.\tC'est un endroit sinistre.\nIt's a gorgeous day.\tC'est une magnifique journée.\nIt's a huge mistake.\tC'est une grosse erreur.\nIt's a huge mistake.\tC'est une énorme erreur.\nIt's a little dated.\tÇa a un peu vécu.\nIt's a little dated.\tC'est un peu démodé.\nIt's a little dated.\tC'est un peu désuet.\nIt's a little nasty.\tC'est un peu méchant.\nIt's a little scary.\tC'est un peu effrayant.\nIt's a perfect trap.\tC'est un piège idéal.\nIt's a popular idea.\tC'est une idée répandue.\nIt's a real bargain.\tC'est une bonne affaire.\nIt's a slippery one.\tC'en est une scabreuse.\nIt's a world record.\tC'est un record du monde.\nIt's all a big joke.\tTout ça est une grosse blague.\nIt's all new for me.\tC'est tout nouveau pour moi.\nIt's all or nothing.\tC'est tout ou rien.\nIt's all your fault.\tC'est entièrement de ta faute.\nIt's all your fault.\tC'est entièrement de votre faute.\nIt's already eleven.\tIl est déjà onze heures.\nIt's an inside joke.\tC'est une blague d'initiés.\nIt's an inside joke.\tC'est une blague entre nous.\nIt's an old picture.\tC'est une vieille photo.\nIt's an old picture.\tC'est un vieux tableau.\nIt's an old picture.\tC'est une vieille image.\nIt's an older model.\tC'est un modèle plus ancien.\nIt's as cold as ice.\tC'est froid comme de la glace.\nIt's being arranged.\tC'est en train d'être arrangé.\nIt's cold out there.\tIl fait froid au dehors.\nIt's dangerous here.\tC'est dangereux, ici.\nIt's extremely ugly.\tC'est vraiment très moche.\nIt's free of charge.\tC'est gratuit.\nIt's getting larger.\tÇa s'agrandit.\nIt's hard to choose.\tC'est dur de choisir.\nIt's hard to choose.\tC'est difficile de choisir.\nIt's his first time.\tC'est sa première fois.\nIt's just a fantasy.\tC'est juste un fantasme.\nIt's just a placebo.\tÇa n'est qu'un placebo.\nIt's just not right.\tC'est simplement incorrect.\nIt's kind of boring.\tC'est plutôt ennuyeux.\nIt's mine, not hers.\tC'est le mien, pas le sien.\nIt's mine, not hers.\tC'est la mienne, pas la sienne.\nIt's neat and clean.\tC'est clair et net.\nIt's never too late.\tIl n'est jamais trop tard.\nIt's non-refundable.\tCe n'est pas remboursable.\nIt's not a big deal.\tPeu importe.\nIt's not about that.\tIl ne s'agit pas de ça.\nIt's not about them.\tIl ne s'agit pas d'eux.\nIt's not about them.\tIl ne s'agit pas d'elles.\nIt's not cold today.\tIl ne fait pas froid aujourd'hui.\nIt's not impossible.\tCe n'est pas impossible.\nIt's not irrelevant.\tCe n'est pas hors-sujet.\nIt's not my concern.\tCe n'est pas mon affaire.\nIt's not negotiable.\tC'est non-négociable.\nIt's not real money.\tCe n'est pas du véritable argent.\nIt's not ridiculous.\tCe n'est pas ridicule.\nIt's not safe there.\tCe n'est pas sécurisé, là-bas.\nIt's not spring yet.\tCe n'est pas encore le printemps.\nIt's not subjective.\tCe n'est pas subjectif.\nIt's not the answer.\tCe n'est pas la réponse.\nIt's not the answer.\tÇa ne constitue pas la réponse.\nIt's not worth much.\tÇa ne vaut pas grand-chose.\nIt's not your fault.\tCe n'est pas de ta faute.\nIt's not your fault.\tCe n'est pas de votre faute.\nIt's not your style.\tCe n'est pas ton style.\nIt's not your style.\tCe n'est pas votre style.\nIt's old and clunky.\tC'est vieux et poussif.\nIt's really awesome.\tC'est vraiment génial.\nIt's really awesome.\tC'est vraiment terrible.\nIt's really awesome.\tC'est vraiment effarant.\nIt's slightly windy.\tIl y a un peu de vent.\nIt's still in limbo.\tC'est toujours dans les limbes.\nIt's stuffy in here.\tC'est renfermé, là-dedans.\nIt's time to get up.\tIl est temps de se lever.\nIt's time-consuming.\tÇa prend du temps.\nIt's time-consuming.\tC'est chronophage.\nIt's totally normal.\tC'est totalement normal.\nIt's unbearably hot.\tIl fait insupportablement chaud.\nIt's useless to try.\tC'est inutile d'essayer.\nIt's useless to try.\tIl est inutile d'essayer.\nIt's very dangerous.\tC'est très dangereux.\nIt's very effective.\tC'est très efficace.\nIt's very expensive.\tC'est très cher !\nIt's your lucky day.\tC'est ton jour de chance.\nIt's your only shot.\tC'est ton seul tir.\nIt's your only shot.\tC'est votre seul tir.\nI’m able to speak.\tJe suis capable de parler.\nJapanese are Asians.\tLes Japonais sont des Asiatiques.\nJesus answered them.\tJésus leur répondit.\nJust follow my lead.\tSuivez simplement mon exemple.\nJust follow my lead.\tSuis simplement mon exemple.\nJust give it a shot.\tTentez votre chance.\nJust leave me alone.\tFichez-moi simplement la paix !\nJust leave me alone.\tFiche-moi simplement la paix !\nJust relax a moment.\tDétendez-vous juste, un moment.\nKeep me in the loop.\tLaisse-moi dans la boucle.\nKeep me in the loop.\tFais-moi circuler l'information.\nKeep me in the loop.\tGarde-moi informé.\nKeep your eyes open.\tGarde les yeux ouverts.\nKeep your gun handy.\tGarde ton arme à portée de main !\nKeep your gun handy.\tGardez votre arme à portée de main !\nKids can be so mean.\tLes enfants peuvent être tellement méchants.\nKids can be so mean.\tIl arrive que les enfants soient tellement méchants.\nLay it on the table.\tPosez-le sur la table.\nLay it on the table.\tPosez-la sur la table.\nLay it on the table.\tPose-le sur la table.\nLay it on the table.\tPose-la sur la table.\nLeave out this word.\tExclus ce mot !\nLeave out this word.\tExcluez ce mot !\nLeave out this word.\tLaisse ce mot de côté !\nLeave out this word.\tLaissez ce mot de côté !\nLeave the door open.\tLaisse la porte ouverte.\nLet me do it my way.\tLaisse-moi le faire à ma façon.\nLet me pay my share.\tLaissez-moi payer ma part.\nLet me pay my share.\tLaisse-moi payer ma part.\nLet me win for once.\tLaisse-moi gagner pour une fois.\nLet's call it a day.\tFinissons-en pour aujourd'hui.\nLet's call it a day.\tC'est tout pour aujourd'hui !\nLet's check the map.\tVérifions la carte !\nLet's clean this up.\tNettoyons cela !\nLet's clean this up.\tNettoyons ça !\nLet's do the dishes.\tFaisons la vaisselle.\nLet's give it a try.\tEssayons !\nLet's give it a try.\tEssayons ça !\nLet's go out to eat.\tAllons manger dehors.\nLet's go to a movie.\tAllons voir un film.\nLet's have some fun.\tAmusons-nous.\nLet's have some fun.\tAmusons-nous !\nLet's keep in touch.\tOn garde contact.\nLet's make it brief.\tFaisons court.\nLet's not overreact.\tNe nous emballons pas !\nLet's play baseball.\tJouons au baseball.\nLet's sit down here.\tAsseyons-nous ici.\nLet's speak English.\tParlons anglais.\nLet's try something.\tTentons quelque chose !\nLet's try this cake.\tEssayons ce gâteau.\nLet's watch TV here.\tRegardons la télévision ici.\nLife has just begun.\tLa vie vient juste de commencer.\nLife is not all fun.\tLa vie n'est pas toujours agréable.\nLife is not perfect.\tLa vie n'est pas parfaite.\nLook at Tom's shoes.\tRegarde les chaussures de Tom.\nLook at the picture.\tRegarde l'image.\nLook at the picture.\tRegardez ce tableau, s'il vous plaît.\nLook out the window.\tRegarde par la fenêtre !\nLook out the window.\tRegardez par la fenêtre !\nLook under the seat.\tRegarde sous le siège.\nLook under the seat.\tRegardez sous le siège.\nLook, I'll show you.\tRegarde, je vais te montrer !\nLook, I'll show you.\tRegardez, je vais vous montrer !\nLove is not a crime.\tL'amour n'est pas un crime.\nLove your neighbors.\tAime ton prochain.\nMany people do this.\tBeaucoup de gens font ça.\nMay I ask your name?\tPuis-je vous demander votre nom ?\nMay I be of service?\tPuis-je être utile ?\nMay I be of service?\tPuis-je me rendre utile ?\nMay I drink alcohol?\tPuis-je boire de l'alcool ?\nMay I drink alcohol?\tPuis-je consommer de l'alcool ?\nMay I eat something?\tPourrais-je manger quelque chose ?\nMay I eat that cake?\tPuis-je manger ce gâteau ?\nMay I eat this cake?\tPuis-je manger ce gâteau ?\nMay I interrupt you?\tPuis-je vous interrompre ?\nMay I say something?\tEst-ce que je peux dire quelque chose ?\nMay I say something?\tPuis-je dire quelque chose ?\nMay I set the table?\tJe peux mettre la table ?\nMay I take a shower?\tJe peux prendre une douche?\nMay I use the phone?\tPuis-je utiliser le téléphone ?\nMaybe I exaggerated.\tPeut-être ai-je exagéré.\nMaybe I'll call you.\tPeut-être vous appellerai-je.\nMaybe I'll call you.\tPeut-être t'appellerai-je.\nMaybe Tom is stupid.\tPeut-être que Tom est stupide.\nMaybe it wasn't Tom.\tPeut-être ne s'agissait-il pas de Tom.\nMaybe she is coming.\tPeut-être vient-elle.\nMaybe we can fix it.\tPeut-être pouvons-nous le réparer.\nMerlin was a wizard.\tMerlin était magicien.\nMoney is everything.\tL'argent peut tout.\nMonkeys climb trees.\tLes singes grimpent aux arbres.\nMove out of the way.\tSors du passage !\nMove out of the way.\tSortez du passage !\nMust I write in ink?\tDois-je écrire à l'encre ?\nMy answer is enough.\tMa réponse suffit.\nMy aunt looks young.\tMa tante paraît jeune.\nMy back still hurts.\tMon dos me fait encore mal.\nMy brother has died.\tMon frère est mort.\nMy camera is broken.\tMon appareil photo est cassé.\nMy cat loves catnip.\tMon chat adore l'herbe à chat.\nMy cat loves shrimp.\tMon chat adore les crevettes.\nMy dad will kill me.\tMon père me tuera.\nMy dog needs a walk.\tMon chien a besoin d'une promenade.\nMy eyes are burning.\tLes yeux me brûlent.\nMy eyes feel gritty.\tJ'ai du sable dans les yeux.\nMy feet are swollen.\tMes pieds sont enflés.\nMy friend helped me.\tMon ami m'a aidé.\nMy friend helped me.\tMon amie m'a aidé.\nMy friend helped me.\tMon ami m'a aidée.\nMy friend helped me.\tMon amie m'a aidée.\nMy friend helped me.\tMon ami m'aida.\nMy friend helped me.\tMon amie m'aida.\nMy gums are swollen.\tMes gencives sont enflées.\nMy hair is too long.\tMes cheveux sont trop longs.\nMy hair is too long.\tJ'ai les cheveux trop longs.\nMy headache is gone.\tMon mal de tête est parti.\nMy hobby is cooking.\tMon passe-temps est la cuisine.\nMy hobby is reading.\tMon passe-temps est la lecture.\nMy home is far away.\tMon domicile est éloigné.\nMy legs are hurting.\tJ'ai mal aux jambes.\nMy legs are hurting.\tJ’ai mal aux jambes.\nMy life is complete.\tMa vie est complète.\nMy mom will kill me.\tMa mère me tuera.\nMy mother called me.\tMa mère m'a appelé.\nMy mother called me.\tMa mère m'a appelée.\nMy mother is active.\tMa mère est active.\nMy nose is bleeding.\tMon nez saigne.\nMy phone rang again.\tMon téléphone a de nouveau sonné.\nMy phone rang again.\tMon téléphone a sonné à nouveau.\nMy phone rang again.\tMon téléphone sonna à nouveau.\nMy room number is 5.\tLe numéro de ma chambre est le 5.\nMy sister has a job.\tMa sœur a un travail.\nMy sister is famous.\tMa sœur est célèbre.\nMy sister is pretty.\tMa sœur est jolie.\nMy throat feels dry.\tJ'ai la gorge sèche.\nMy trousers are wet.\tMon pantalon est mouillé.\nMy work is finished.\tMon travail est fini.\nNext person, please.\tPersonne suivante, s'il vous plaît.\nNo more can be said.\tOn ne peut en dire plus.\nNo one ate anything.\tPersonne ne mangea quoi que ce soit.\nNo one ate the cake.\tPersonne ne mangea le gâteau.\nNo one ate the cake.\tPersonne n'a mangé le gâteau.\nNo one believed him.\tPersonne ne l'a cru.\nNo one believed him.\tPersonne ne le crut.\nNo one believes him.\tPersonne ne le croit.\nNo one came up here.\tPersonne n'est monté ici.\nNo one can help you.\tPersonne ne peut vous aider.\nNo one can help you.\tPersonne ne peut t'aider.\nNo one could see us.\tPersonne ne pourrait nous voir.\nNo one could see us.\tPersonne ne pouvait nous voir.\nNo one else laughed.\tPersonne d'autre ne rit.\nNo one else laughed.\tPersonne d'autre n'a ri.\nNo one has anything.\tPersonne n'a quoi que ce soit.\nNo one has anything.\tPersonne ne dispose de quoi que ce soit.\nNo one likes losing.\tPersonne n'aime perdre.\nNo one really cares.\tTout le monde s'en fout.\nNo one really cares.\tPersonne ne s'en soucie vraiment.\nNo one really knows.\tPersonne ne le sait vraiment.\nNo one saw anything.\tPersonne n'a rien vu.\nNo one saw anything.\tPersonne n'a vu quoi que ce soit.\nNo one supported me.\tPersonne ne m'a soutenu.\nNo one will help us.\tPersonne ne nous aidera.\nNo one will miss me.\tJe ne manquerai à personne.\nNo one will stop us.\tPersonne ne nous arrêtera.\nNo one will survive.\tPersonne ne survivra.\nNo one would listen.\tPersonne ne voulait écouter.\nNo one would listen.\tPersonne ne voudrait écouter.\nNo one's allowed in.\tPersonne n'est admis.\nNo one's allowed in.\tPersonne n'y est admis.\nNo weapon was found.\tAucune arme n'a été trouvée.\nNo weapon was found.\tAucune arme ne fut trouvée.\nNo, I don't want to.\tNon, je ne veux pas.\nNo, that's not true.\tNon, ce n'est pas vrai.\nNobody can hear you.\tPersonne ne peut t'entendre.\nNobody can hear you.\tPersonne ne parvient à t'entendre.\nNobody can hear you.\tPersonne ne peut vous entendre.\nNobody can hear you.\tPersonne ne parvient à vous entendre.\nNobody cares for me.\tPersonne ne s'occupe de moi.\nNobody cares for me.\tPersonne ne se soucie de moi.\nNobody really knows.\tPersonne ne sait vraiment.\nNobody saw anything.\tPersonne n'a rien vu.\nNobody speaks to me.\tAucun ne me parle.\nNone of us like Tom.\tAucun d'entre nous n'aime Tom.\nNot everyone agreed.\tTout le monde n'était pas d'accord.\nNot everyone agrees.\tTout le monde n'est pas d'accord.\nNothing can stop me.\tRien ne peut m'arrêter.\nNothing feels right.\tRien ne semble coller.\nNothing has changed.\tRien n'a changé.\nNothing is forgiven.\tRien n'est pardonné.\nNothing seems right.\tRien ne semble coller.\nNothing will change.\tRien ne changera.\nNow eat your supper.\tMaintenant, mange ton souper.\nNow eat your supper.\tMaintenant, mange ton dîner.\nNow is not the time.\tCe n'est actuellement pas le moment.\nNow let's celebrate.\tMaintenant, fêtons ça.\nNow what's the deal?\tQu'en est-il, maintenant ?\nNuts are nutritious.\tLes noisettes sont nourrissantes.\nOf course I will go.\tBien sûr que j'irai.\nOf course I will go.\tBien sûr que je partirai.\nOld habits die hard.\tLes vieilles habitudes ont la vie dure.\nOne of us has to go.\tL'un de nous doit partir.\nOne of you is lying.\tL'un de vous ment.\nOne of you is lying.\tL'une de vous ment.\nOnly time will tell.\tSeul le temps nous le dira.\nOur allies are weak.\tNos alliés sont faibles.\nOur allies are weak.\tNos alliées sont faibles.\nOur team is winning.\tNotre équipe est en train de gagner.\nOur team is winning.\tNotre équipe est en train de l'emporter.\nOur work never ends.\tNotre travail ne s'arrête jamais.\nOur work never ends.\tNotre travail ne prend jamais fin.\nPaper burns quickly.\tLe papier brûle rapidement.\nPeople like to talk.\tLes gens aiment parler.\nPeople like to talk.\tLes personnes aiment parler.\nPeople love freedom.\tLe peuple aime la liberté.\nPeople love freedom.\tLes gens sont épris de liberté.\nPeople love to talk.\tLes gens adorent parler.\nPerhaps I was wrong.\tPeut-être me suis-je trompé.\nPerhaps that's true.\tC'est peut-être exact.\nPlease come on time.\tVeuillez venir à l'heure.\nPlease don't get up.\tS'il te plait ne te lève pas.\nPlease don't mumble.\tJe te prie de ne pas marmonner.\nPlease have a drink.\tJe vous en prie, prenez une boisson !\nPlease have a drink.\tJe t'en prie, prends une boisson !\nPlease make the bed.\tFaites le lit, je vous prie !\nPlease make the bed.\tFais le lit, je te prie !\nPlease show me that.\tVeuillez me montrer cela, je vous prie.\nPlease show me that.\tMontre-moi cela, je te prie !\nPlease speak French.\tParle français, s'il te plaît.\nPlease speak French.\tParlez français, s'il vous plaît.\nPlease stop singing.\tArrête de chanter, je te prie !\nPlease stop singing.\tArrêtez de chanter, je vous prie !\nPlease stop talking.\tArrête de parler, je te prie !\nPlease stop talking.\tArrêtez de parler, je vous prie !\nPlease stop talking.\tCesse de parler, je te prie !\nPlease stop talking.\tCessez de parler, je vous prie !\nPlease stop talking.\tVeuillez arrêter de parler, je vous prie !\nPlease stop talking.\tVeuillez cesser de parler, je vous prie !\nPlease take me home.\tS'il te plaît, emmène-moi chez moi.\nPlease take me home.\tS'il vous plaît, emmenez-moi chez moi.\nPlease wash my back.\tNettoie mon dos s'il te plaît.\nPleased to meet you.\tEnchanté de faire votre connaissance.\nPleased to meet you.\tRavie de faire ta connaissance.\nPoaching is illegal.\tIl est illégal de braconner.\nPoaching is illegal.\tLe braconnage est illégal.\nPrices are going up.\tLes prix augmentent.\nPull the rope tight.\tTends la corde.\nPull the rope tight.\tTendez la corde.\nPut on your pajamas.\tMets ton pyjama.\nPut on your pajamas.\tMettez vos pyjamas.\nPut some clothes on.\tMets des vêtements !\nPut some clothes on.\tMettez des vêtements !\nPut some clothes on.\tHabille-toi !\nPut some clothes on.\tHabillez-vous !\nPut some clothes on.\tVêts-toi !\nPut some clothes on.\tVêtez-vous !\nPut that in writing.\tMets ça par écrit.\nPut that in writing.\tMettez ça par écrit.\nPut your books away.\tMettez vos livres de côté.\nPut your glasses on.\tMets tes lunettes !\nPut your glasses on.\tMettez vos lunettes !\nQuote me an example.\tCitez-moi un exemple.\nQuote me an example.\tCite-moi un exemple.\nRespect your elders.\tRespectez vos aînés.\nRespect your elders.\tRespectez vos aînées.\nRespect your elders.\tRespecte tes aînés.\nRespect your elders.\tRespecte tes aînées.\nRome is an old city.\tRome est une ville ancienne.\nSee you in two days.\tÀ après-demain !\nSeeing is believing.\tVoir c'est croire.\nSeeing is believing.\tVoir, c'est croire.\nShall we go and eat?\tVous voulez y aller et manger ?\nShall we go and eat?\tSi on allait manger ?\nShall we go and eat?\tOn y va et on mange ?\nShe baked me a cake.\tElle me cuisit un gâteau.\nShe baked me a cake.\tElle me prépara un gâteau.\nShe baked me a cake.\tElle me concocta un gâteau.\nShe baked me a cake.\tElle me fit un gâteau.\nShe baked me a cake.\tElle m'a confectionné un gâteau.\nShe became a doctor.\tElle est devenue médecin.\nShe became a doctor.\tElle est devenue toubib.\nShe became a singer.\tElle est devenue chanteuse.\nShe became pregnant.\tElle est tombée enceinte.\nShe became very ill.\tElle est tombée gravement malade.\nShe blackmailed him.\tElle le fit chanter.\nShe boards students.\tElle prend des étudiants en pension.\nShe boiled the eggs.\tElle a cuit les œufs.\nShe bowed in thanks.\tElle s'inclina en remerciements.\nShe called for help.\tElle a appelé à l'aide.\nShe called for help.\tElle appela à l'aide.\nShe came near to me.\tElle est venue près de moi.\nShe came out on top.\tElle débuta au sommet.\nShe came out on top.\tElle termina en tête.\nShe can drive a car.\tElle sait conduire une voiture.\nShe can't cook well.\tElle ne sait pas bien cuisiner.\nShe closed her eyes.\tElle ferma les yeux.\nShe closed her eyes.\tElle a fermé les yeux.\nShe closed her eyes.\tElle a clos les yeux.\nShe closed her eyes.\tElle ferma ses yeux.\nShe cried all night.\tElle pleura toute la nuit.\nShe danced with joy.\tElle dansa avec joie.\nShe did pretty well.\tElle s'en est assez bien sortie.\nShe didn't like him.\tElle ne l'aimait pas.\nShe does look tired.\tElle a vraiment l'air fatiguée.\nShe drives me crazy.\tElle me rend fou.\nShe drives me crazy.\tElle me rend dingue.\nShe drives me crazy.\tElle me rend chèvre.\nShe feels bad today.\tElle se sent mal aujourd'hui.\nShe gave him a book.\tElle lui a donné un livre.\nShe gave me a watch.\tElle m'a donné une montre.\nShe gave me a watch.\tElle me donna une montre.\nShe got in the taxi.\tElle est montée dans un taxi.\nShe had gone to bed.\tElle est partie se coucher.\nShe has a long nose.\tElle a un grand nez.\nShe has faults, too.\tElle aussi elle a ses torts.\nShe has few friends.\tElle a peu d'amis.\nShe has few friends.\tElle a peu d'amies.\nShe has gone abroad.\tElle est allée à l'étranger.\nShe has lost weight.\tElle a perdu du poids.\nShe has no brothers.\tElle n'a pas de frère.\nShe held her breath.\tElle retint son souffle.\nShe hit me, not him.\tC'est elle qui m'a frappé, pas lui.\nShe hit me, not him.\tC'est moi qu'elle a frappé, pas lui.\nShe hit me, not him.\tC'est moi qu'elle a frappée, pas lui.\nShe is a bad person.\tC'est une mauvaise personne.\nShe is a chatterbox.\tC'est un moulin à parole.\nShe is about my age.\tElle a à peu près mon âge.\nShe is about my age.\tElle a environ mon âge.\nShe is bad-mannered.\tElle est mal élevée.\nShe is dark-skinned.\tElle a la peau noire.\nShe is fond of cake.\tElle adore les gâteaux.\nShe is good-natured.\tElle a une bonne nature.\nShe is good-natured.\tElle est bienveillante.\nShe is hard at work.\tElle travaille dur.\nShe is hard on them.\tElle est dure avec eux.\nShe is just a child.\tElle n'est qu'une enfant.\nShe is my classmate.\tElle est ma camarade de classe.\nShe is not here yet.\tElle n'est pas encore là.\nShe is not to blame.\tElle n'est pas à blâmer.\nShe is still a girl.\tElle est encore mineure.\nShe kept on talking.\tElle continua de parler.\nShe kept on working.\tElle a continué de travailler.\nShe kept on working.\tElle continua à travailler.\nShe kept on working.\tElle a continué à travailler.\nShe kicked the door.\tElle tapa dans la porte.\nShe kissed my cheek.\tElle m'embrassa la joue.\nShe kissed my cheek.\tElle m'embrassa sur la joue.\nShe kissed my cheek.\tElle m'a embrassé sur la joue.\nShe knows the truth.\tElle connaît la vérité.\nShe laced her shoes.\tElle laça ses chaussures.\nShe likes all of us.\tElle nous aime toutes.\nShe listened to him.\tElle l'écoutait.\nShe lit the candles.\tElle alluma les cierges.\nShe lit the candles.\tElle a allumé les cierges.\nShe lit the candles.\tElle alluma les bougies.\nShe lit the candles.\tElle a allumé les bougies.\nShe lives in London.\tElle vit à Londres.\nShe locked the door.\tElle a fermé la porte à clé.\nShe looks very sick.\tElle a l'air très malade.\nShe made me cookies.\tElle me confectionna des biscuits.\nShe made me cookies.\tElle m'a confectionné des biscuits.\nShe opened the door.\tElle a ouvert la porte.\nShe played a sonata.\tElle joua une sonate.\nShe played a sonata.\tElle donna une sonate.\nShe pulled my shirt.\tElle a tiré ma chemise.\nShe ran to Shinjuku.\tElle a couru jusqu'à Sinjuku.\nShe reserved a room.\tElle réserva une chambre.\nShe reserved a room.\tElle a réservé une chambre.\nShe robbed me blind.\tElle m'a dépouillé.\nShe robbed me blind.\tElle m'a dépouillée.\nShe rubbed her eyes.\tElle se frotta les yeux.\nShe rubbed her eyes.\tElle s'est frotté les yeux.\nShe sat next to him.\tElle s'assit à son côté.\nShe shaved her head.\tElle s'est rasée la tête.\nShe speaks too much.\tElle parle trop.\nShe still buys milk.\tElle achète toujours du lait.\nShe still loved him.\tElle l'aimait encore.\nShe still loves him.\tElle l'aime encore.\nShe still loves him.\tElle l'aime toujours.\nShe stopped talking.\tElle arrêta de parler.\nShe stopped talking.\tElle a arrêté de parler.\nShe studies English.\tElle étudie l'anglais.\nShe teaches English.\tElle enseigne l'anglais.\nShe told him a joke.\tElle lui raconta une blague.\nShe told him a joke.\tElle lui a raconté une blague.\nShe turned him down.\tElle l'a éconduit.\nShe understands him.\tElle le comprend.\nShe wants a new hat.\tElle veut un nouveau chapeau.\nShe went on working.\tElle a continué de travailler.\nShe went to Ibaraki.\tElle est allée à Ibaragi.\nShe won't like this.\tÇa ne va pas lui plaire.\nShe works in a bank.\tElle travaille dans une banque.\nShe'll be just fine.\tÇa ira très bien pour elle.\nShe's a born artist.\tElle est une artiste-née.\nShe's a dumb blonde.\tC'est une blonde.\nShe's a real gossip.\tC'est une vraie concierge.\nShe's a real gossip.\tC'est une vraie commère.\nShe's a real hottie.\tElle est vraiment une fille ravissante.\nShe's a tough woman.\tC'est une femme forte.\nShe's a true artist.\tC'est une véritable artiste.\nShe's an only child.\tElle est fille unique.\nShe's been poisoned.\tElle a été empoisonnée.\nShe's in a bad mood.\tElle est de mauvaise humeur.\nShe's my first love.\tElle est mon premier amour.\nShe's not penniless.\tElle n'est pas sans argent.\nShe's still a minor.\tElle est encore mineure.\nShe's strong-willed.\tElle est obstinée.\nShe's strong-willed.\tElle a une forte volonté.\nShe's wearing a hat.\tElle porte un chapeau.\nShould I be jealous?\tDevrais-je être jaloux ?\nShould I be jealous?\tDevrais-je être jalouse ?\nShould I be worried?\tDevrais-je être préoccupé ?\nShould I be worried?\tDevrais-je être préoccupée ?\nShould we intervene?\tDevrions-nous intervenir ?\nShouldn't we go now?\tNe devrions-nous pas y aller maintenant ?\nShow me some others.\tMontrez-m'en d'autres.\nShow me the picture.\tMontre-moi la photo.\nShow me your papers!\tMontrez-moi vos papiers !\nShow me your papers!\tMontre-moi tes papiers !\nShow me your tattoo.\tMontre-moi ton tatouage.\nShow me your tattoo.\tMontrez-moi votre tatouage.\nShut the door tight.\tFerme bien la porte !\nShut the door tight.\tFermez bien la porte !\nShut the door tight.\tFerme la porte de manière étanche !\nShut the door tight.\tFermez la porte de manière étanche !\nSign the guest book.\tSignez le registre des invités !\nSign the guest book.\tSigne le registre des invités !\nSing a song with me.\tChantez une chanson avec moi.\nSing a song with me.\tChante une chanson avec moi.\nSnakes are reptiles.\tLes serpents sont des reptiles.\nSo what else is new?\tAlors, quoi de neuf, à part ça ?\nSo, what do you say?\tAlors, qu'est-ce que t'en dis ?\nSo, what do you say?\tAlors, qu'en dites-vous ?\nSomebody killed Tom.\tQuelqu'un a tué Tom.\nSomebody touched me.\tQuelqu'un m'a touché.\nSomeday, we'll know.\tUn jour, nous saurons.\nSomething was wrong.\tQuelque chose n'allait pas.\nSomething was wrong.\tQuelque chose clochait.\nSomething's missing.\tQuelque chose manque.\nSorry about earlier.\tDésolé pour ce que j'ai dit plus tôt.\nSorry about earlier.\tDésolée pour ce que j'ai dit plus tôt.\nSorry about earlier.\tDésolés pour ce que nous avons dit plus tôt.\nSorry about earlier.\tDésolées pour ce que nous avons dit plus tôt.\nSorry to bother you.\tPardonne le dérangement.\nSpring will be late.\tLe printemps va tarder à venir.\nStand on the scales.\tMontez sur la balance.\nStand where you are!\tTiens-toi là où tu es !\nStand where you are!\tTenez-vous là où vous êtes !\nStay out of my room.\tReste hors de ma chambre.\nStay out of trouble.\tTe mets pas dans la merde.\nStay out of trouble.\tNe vous mettez pas dans les ennuis.\nStop being so naive.\tArrête d'être si naïf.\nStop being so naive.\tArrêtez d'être si naïf.\nStop being so naive.\tArrête d'être si naïve.\nStop being so naive.\tArrêtez d'être si naïve.\nStop being so naive.\tArrêtez d'être si naïves.\nStop being so naive.\tArrêtez d'être si naïfs.\nStop calling me Tom.\tArrête de m'appeler Tom.\nStop calling me Tom.\tArrêtez de m'appeler Tom.\nStop fooling around!\tT’as fini de faire l’idiot !\nStop fooling around!\tC’est fini de faire l’idiot !\nStop talking loudly.\tArrête de parler fort.\nStop talking loudly.\tArrêtez de parler fort.\nStop, or I'll shoot.\tNe bougez pas ou je tire.\nStop, or I'll shoot.\tNe bouge pas ou je tire.\nTake a look at this.\tJette un œil là-dessus.\nTake my word for it.\tFie-toi à ma parole en la matière !\nTake my word for it.\tFiez-vous à ma parole en la matière !\nTake off your shoes.\tEnlève tes chaussures.\nTake off your socks.\tRetire tes chaussettes.\nTaxis are expensive.\tLes taxis sont chers.\nTell Tom to shut up.\tDis à Tom de la fermer.\nTell Tom to shut up.\tDites à Tom de se taire.\nTell him I'm not in.\tDites-lui que je n'y suis pas !\nTell him I'm not in.\tDis-lui que je n'y suis pas !\nTell me if it hurts.\tDis-moi si ça fait mal.\nTell me if it hurts.\tDites-moi si ça fait mal.\nTell me where he is.\tDites-moi où il se trouve !\nTell me where he is.\tDis-moi où il se trouve !\nThank you for today.\tMerci pour aujourd'hui.\nThank you for today.\tMerci beaucoup pour aujourd'hui.\nThank you very much.\tMerci beaucoup !\nThank you very much.\tMerci bien.\nThanks for the book.\tMerci pour le livre.\nThanks for the hint.\tMerci pour le conseil.\nThanks for the hint.\tMerci pour l'indice.\nThanks for the info.\tMerci pour l'information.\nThanks for the meal.\tMerci pour le repas.\nThanks for the ride.\tMerci pour la balade.\nThat book is theirs.\tCe livre est le leur.\nThat can't be legal.\tIl n'est pas possible que ce soit légal.\nThat comes in handy.\tÇa arrive à point nommé.\nThat comes in handy.\tC'est utile.\nThat comes in handy.\tÇa tombe à pic.\nThat costs 30 euros.\tÇa coûte trente euros.\nThat day shall come.\tCe jour viendra.\nThat depends on you.\tÇa dépend de toi.\nThat depends on you.\tÇa dépend de vous.\nThat doesn't add up.\tÇa ne fait pas le compte.\nThat doesn't add up.\tLe compte n'y est pas.\nThat doesn't happen.\tÇa n'arrive pas.\nThat explains a lot.\tÇa explique beaucoup de choses.\nThat guy is a crook.\tCe type est un bandit.\nThat idea's not bad.\tCette idée n'est pas mauvaise.\nThat is a good idea.\tC'est une bonne idée.\nThat is my overcoat.\tC'est mon manteau.\nThat is not a tiger.\tCe n'est pas un tigre.\nThat is not my line.\tCe n'est pas mon point fort.\nThat isn't possible.\tCela n'est pas possible.\nThat looks like fun.\tÇa a l'air amusant.\nThat looks like tea.\tOn dirait du thé.\nThat makes me happy.\tÇa me rend heureux.\nThat makes no sense.\tÇa n'a pas de sens.\nThat never happened.\tÇa n'est jamais arrivé.\nThat rarely happens.\tÇa arrive rarement.\nThat seemed to help.\tÇa a paru aider.\nThat sounds awesome.\tÇa a l'air génial.\nThat was months ago.\tC'était il y a des mois.\nThat was my mistake.\tAu temps pour moi.\nThat was some storm.\tC'était un sacré orage.\nThat wasn't my idea.\tCe n'était pas mon idée.\nThat wasn't too bad.\tCe n'était pas trop mauvais.\nThat won't help you.\tÇa ne va pas t'aider.\nThat would be funny.\tÇa serait drôle.\nThat would be wrong.\tCe serait une erreur.\nThat's a blue house.\tC'est une maison bleue.\nThat's a crazy idea.\tC'est une idée dingue.\nThat's a good brand.\tC'est une bonne marque.\nThat's a good guess.\tBien deviné !\nThat's a good point.\tC'est une bonne remarque.\nThat's a good point.\tC'est vrai !\nThat's a good start.\tC'est un bon démarrage.\nThat's a good story.\tC'est une bonne histoire.\nThat's a good thing.\tC'est une bonne chose.\nThat's a great poem.\tC'est un grand poème.\nThat's a great poem.\tC'est un fameux poème.\nThat's a huge organ.\tCe sont des orgues gigantesques.\nThat's a huge organ.\tC'est un organe gigantesque.\nThat's a nice dress.\tC'est une jolie robe.\nThat's a nice story.\tC'est une belle histoire.\nThat's a no-brainer.\tC'est un jeu d'enfant.\nThat's all I can do.\tC'est tout ce que je peux faire.\nThat's all I needed.\tC'est tout ce dont j'avais besoin.\nThat's all I wanted.\tC'est tout ce que je voulais.\nThat's all Tom said.\tC'est tout ce qu'a dit Tom.\nThat's all Tom said.\tC'est tout ce que Tom a dit.\nThat's all it takes.\tC'est tout ce qu'il faut.\nThat's all nonsense.\tCe ne sont que balivernes.\nThat's all over now.\tC'est désormais terminé.\nThat's all there is.\tC'est tout ce qu'il y a.\nThat's all they had.\tC'est tout ce qu'ils avaient.\nThat's all they had.\tC'est tout ce qu'elles avaient.\nThat's an imitation.\tC'est une imitation.\nThat's close enough.\tC'est assez proche.\nThat's close enough.\tC'est suffisamment proche.\nThat's common sense.\tC'est une question de bon sens.\nThat's embarrassing.\tC'est embarrassant.\nThat's good to hear.\tC'est bon à entendre.\nThat's good to hear.\tIl est bon de l'entendre.\nThat's how I did it.\tC'est ainsi que je l'ai fait.\nThat's how I see it.\tC'est ainsi que je le vois.\nThat's it for today.\tC'est tout pour aujourd'hui.\nThat's just a guess.\tC'est juste une supposition.\nThat's just awesome.\tC'est simplement génial.\nThat's just awesome.\tC'est simplement de la balle.\nThat's kind of deep.\tC'est plutôt profond.\nThat's kind of rare.\tC'est plutôt rare.\nThat's kind of rude.\tC'est plutôt grossier.\nThat's more like it.\tC'est davantage ainsi.\nThat's more like it.\tÇa y ressemble davantage.\nThat's my real name.\tC'est mon vrai nom.\nThat's nice to know.\tC'est chouette de le savoir.\nThat's not a secret.\tCe n'est pas un secret.\nThat's not an issue.\tCe n'est pas un problème.\nThat's not my fault.\tÇa n'est pas ma faute.\nThat's not my fault.\tÇa n'est pas de ma faute.\nThat's not my style.\tCe n'est pas mon style.\nThat's not my thing.\tC'est pas mon truc.\nThat's not possible.\tCe n'est pas possible.\nThat's not uncommon.\tCe n'est pas inhabituel.\nThat's not your job.\tCe n'est pas ton boulot.\nThat's not your job.\tCe n'est pas votre boulot.\nThat's preposterous.\tC'est grotesque.\nThat's quite common.\tC'est plutôt courant.\nThat's quite enough.\tC'est tout à fait suffisant.\nThat's quite simple.\tC'est assez simple.\nThat's really great!\tC'est vraiment génial !\nThat's really scary.\tÇa fait vraiment peur.\nThat's self-evident.\tÇa va de soi.\nThat's simply wrong.\tC'est simplement faux.\nThat's sort of nice.\tC'est plutôt chouette.\nThat's sweet of you.\tC'est gentil de votre part.\nThat's very serious.\tÇa, c'est très sérieux.\nThat's what I heard.\tC'est ce que j'ai entendu.\nThat's what I meant.\tC'est ce que je voulais dire.\nThat's what I think.\tC'est ce que je pense.\nThat's what I wrote.\tC'est ce que j'ai écrit.\nThat's what we want.\tC'est ce que nous voulons.\nThat's where I work.\tC'est là que je travaille.\nThat's why I called.\tC'est pourquoi j'ai appelé.\nThat's why I did it.\tC'est pourquoi je l'ai fait.\nThat's why I'm here.\tC'est pour ça que je suis là.\nThat's why I'm here.\tC'est pourquoi je suis ici.\nThat's why I'm here.\tC'est pourquoi je me trouve ici.\nThat's why I'm here.\tC'est pourquoi je suis là.\nThat's why I'm here.\tC'est la raison de ma présence.\nThat's why I'm here.\tC'est la raison de ma présence, ici.\nThat's why I'm late.\tC'est pourquoi je suis en retard.\nThat's your opinion.\tC’est ton avis.\nThe TV doesn't work.\tLe téléviseur ne marche pas.\nThe TV doesn't work.\tLe téléviseur ne fonctionne pas.\nThe TV doesn't work.\tLe poste de télévision ne fonctionne pas.\nThe TV doesn't work.\tLa télévision ne fonctionne pas.\nThe baby's sleeping.\tL’enfant dort.\nThe bell is ringing.\tLa cloche sonne.\nThe bicycle is mine.\tC'est ma bicyclette.\nThe bicycle is mine.\tCette bicyclette m'appartient.\nThe bicycle is mine.\tCe vélo m'appartient.\nThe bicycle is mine.\tC'est mon vélo.\nThe blouse is clean.\tLa chemise est propre.\nThe blouse is clean.\tLe chemisier est propre.\nThe boat is sinking.\tLa bateau coule.\nThe boy bowed to me.\tLe garçon s'inclina devant moi.\nThe car didn't move.\tLa voiture ne bougea pas.\nThe cat is adorable.\tLe chat est adorable.\nThe cat is not dead.\tLe chat n'est pas mort.\nThe cat is not dead.\tLa chatte n'est pas morte.\nThe chair is broken.\tLa chaise est cassée.\nThe cheering ceased.\tLes encouragements se turent.\nThe choice is yours.\tC'est ton choix.\nThe class went wild.\tLa classe se déchaîna.\nThe class went wild.\tLa classe s'est déchaînée.\nThe clock is broken.\tL'horloge est cassée.\nThe coal is burning.\tLe charbon brûle.\nThe coal is burning.\tLe charbon se consume.\nThe concert is over.\tLe concert est fini.\nThe crowd applauded.\tLa foule applaudit.\nThe cup has a crack.\tLa tasse a une fêlure.\nThe damage was done.\tLe mal était fait.\nThe dog bit my hand.\tLe chien m'a mordu la main.\nThe dog bit my hand.\tLe chien mordit ma main.\nThe dog bit the man.\tLe chien a mordu l'homme.\nThe dog followed me.\tLe chien me suivit.\nThe dog followed me.\tLe chien m'a suivi.\nThe dog is bleeding.\tLe chien est en train de saigner.\nThe dog is drooling.\tLe chien est en train de baver.\nThe dog is sleeping.\tLe chien est en train de dormir.\nThe door is closing.\tLa porte est en train de se fermer.\nThe door was closed.\tLa porte était fermée.\nThe door was locked.\tLa porte était verrouillée.\nThe door won't open.\tLa porte ne veut pas s'ouvrir.\nThe door's unlocked.\tLa porte est déverrouillée.\nThe fire alarm rang.\tL'alarme-incendie sonna.\nThe fish smells bad.\tLe poisson sent mauvais.\nThe fish smells bad.\tLe poisson pue.\nThe food is spoiled.\tLa nourriture est avariée.\nThe food is spoiled.\tLa nourriture est gâtée.\nThe fridge is empty.\tLe frigo est vide.\nThe garage is dusty.\tLe garage est poussiéreux.\nThe ground was cold.\tLe sol était froid.\nThe house is vacant.\tLa maison est inoccupée.\nThe idea is not bad.\tL'idée n'est pas mauvaise.\nThe idea is not new.\tL'idée n'est pas nouvelle.\nThe lake was frozen.\tLe lac était gelé.\nThe law was changed.\tLa loi a été modifiée.\nThe light faded out.\tLa lumière s'estompa.\nThe light faded out.\tLa lumière baissa progressivement.\nThe lights went out.\tLes lumières se sont éteintes.\nThe lights went out.\tLes lumières s'éteignirent.\nThe man is starving.\tL'homme est affamé.\nThe man took my arm.\tL'homme prit mon bras.\nThe monkey got away.\tLe singe s'échappa.\nThe moon is shining.\tLa lune brille.\nThe mystery deepens.\tLe mystère s'épaissit.\nThe news leaked out.\tLes informations ont filtré.\nThe path was narrow.\tLe chemin était étroit.\nThe people fear war.\tLes gens craignent la guerre.\nThe plan has failed.\tLe plan a échoué.\nThe pond froze over.\tL'étang a gelé.\nThe prices are high.\tLes prix sont élevés.\nThe radio is broken.\tLa radio est cassée.\nThe reason is clear.\tLa raison est claire.\nThe room is too big.\tLa chambre est trop grande.\nThe room was locked.\tLa pièce était verrouillée.\nThe room was packed.\tLa pièce était bondée.\nThe server was down.\tLe serveur était déprimé.\nThe server was down.\tLe serveur était hors-service.\nThe sirens went off.\tLes sirènes se sont déclenchées.\nThe sky turned dark.\tLe ciel s'assombrit.\nThe snow has melted.\tLa neige a fondu.\nThe snow is melting.\tLa neige fond.\nThe stakes are high.\tLes enjeux sont élevés.\nThe street is empty.\tLa rue est vide.\nThe traffic was bad.\tLa circulation était mauvaise.\nThe trees are green.\tLes arbres sont verts.\nThe view is amazing.\tLa vue est fantastique.\nThe water is rising.\tL'eau monte.\nThe website is down.\tLe site web est par terre.\nThe wind has abated.\tLe vent a molli.\nThe wind is howling.\tLe vent hurle.\nThe window was open.\tLa fenêtre était ouverte.\nThe zipper is stuck.\tLa fermeture-éclair est coincée.\nThe zipper is stuck.\tLa tirette est coincée.\nTheir answer is yes.\tLeur réponse est oui.\nThere are no knives.\tIl n'y a pas de couteaux.\nThere is no problem.\tIl n'y a aucun problème.\nThere is no urgency.\tIl n'y a pas d'urgence.\nThere is no urgency.\tIl n'y a aucune urgence.\nThere may be others.\tPeut-être y en a-t-il d'autres.\nThere they go again.\tEt c'est reparti.\nThere they go again.\tEt les voilà repartis.\nThere they go again.\tEt les voilà reparties.\nThere was no damage.\tIl n'y eut aucun dommage.\nThere was no damage.\tIl n'y a eu aucun dommage.\nThere wasn't enough.\tIl n'y en avait pas assez.\nThere's a book here.\tVoilà un livre, ici.\nThere's a cat there.\tIl y a là un chat.\nThere's a lot to do.\tIl y a beaucoup à faire.\nThere's a lot to do.\tIl y a fort à faire.\nThere's always hope.\tIl y a toujours de l'espoir.\nThere's no elevator.\tIl n'y a pas d'ascenseur.\nThere's no evidence.\tIl n'y a pas de preuve.\nThere's no one here.\tIl n'y a personne ici.\nThere's no one here.\tPersonne n'est ici.\nThere's no one left.\tIl ne reste personne.\nThere's no response.\tIl n'y a pas de réponse.\nThere's nobody home.\tIl n'y a personne chez moi.\nThere's nobody home.\tIl n'y a personne chez nous.\nThere's room inside.\tIl y a de la place à l'intérieur.\nThese are bad times.\tNous vivons des temps difficiles.\nThese are bad times.\tLes temps sont durs.\nThese are not words.\tCe ne sont pas des mots.\nThese are our books.\tCe sont nos livres.\nThese are the rules.\tTelles sont les règles.\nThese books are new.\tCes livres sont neufs.\nThese cars are ours.\tCes voitures sont à nous.\nThese cars are ours.\tCes voitures sont les nôtres.\nThey are Christians.\tIls sont chrétiens.\nThey are Christians.\tCe sont des chrétiens.\nThey are Christians.\tElles sont chrétiennes.\nThey are Christians.\tCe sont des chrétiennes.\nThey are my friends.\tCe sont mes amis.\nThey are my friends.\tCe sont mes amies.\nThey are my friends.\tIls sont mes amis.\nThey are my friends.\tElles sont mes amies.\nThey are our guests.\tIls sont nos invités.\nThey are our guests.\tElles sont nos invitées.\nThey believe in God.\tIls croient en Dieu.\nThey believe in God.\tElles croient en Dieu.\nThey believe in God.\tEux croient en Dieu.\nThey both snickered.\tTous deux ricanèrent.\nThey both snickered.\tToutes deux ricanèrent.\nThey came last week.\tIls sont venus la semaine passée.\nThey can't fire you.\tIls ne peuvent te virer.\nThey can't fire you.\tIls ne peuvent vous virer.\nThey can't fire you.\tIls ne peuvent pas te virer.\nThey can't fire you.\tIls ne peuvent pas vous virer.\nThey can't fire you.\tElles ne peuvent te virer.\nThey can't fire you.\tElles ne peuvent vous virer.\nThey can't fire you.\tElles ne peuvent pas te virer.\nThey can't fire you.\tElles ne peuvent pas vous virer.\nThey can't hear you.\tIls ne peuvent pas vous entendre.\nThey can't hear you.\tElles ne peuvent pas vous entendre.\nThey can't hear you.\tIls ne peuvent vous entendre.\nThey can't hear you.\tIls ne peuvent pas t'entendre.\nThey can't hear you.\tIls ne peuvent t'entendre.\nThey can't hear you.\tElles ne peuvent vous entendre.\nThey can't hear you.\tElles ne peuvent t'entendre.\nThey can't hear you.\tElles ne peuvent pas t'entendre.\nThey can't hurt you.\tIls ne peuvent te faire de mal.\nThey can't hurt you.\tElles ne peuvent te faire de mal.\nThey can't stop you.\tIls ne peuvent pas vous arrêter.\nThey can't stop you.\tElles ne peuvent pas vous arrêter.\nThey did a good job.\tIls firent du bon boulot.\nThey did a good job.\tIls ont fait du bon boulot.\nThey did a good job.\tElles ont fait du bon boulot.\nThey did a good job.\tElles firent du bon boulot.\nThey did not listen.\tIls n'ont pas écouté.\nThey did not listen.\tElles n'ont pas écouté.\nThey did not listen.\tElles n'écoutèrent pas.\nThey didn't hurt me.\tIls ne m'ont pas fait de mal.\nThey died in battle.\tIls moururent sur le champ de bataille.\nThey don't have one.\tIls n'en ont pas.\nThey don't have one.\tElles n'en ont pas.\nThey don't know yet.\tIls l'ignorent encore.\nThey don't know yet.\tElles l'ignorent encore.\nThey don't know yet.\tIls n'en savent encore rien.\nThey don't know yet.\tElles n'en savent encore rien.\nThey don't like you.\tIls ne vous apprécient pas.\nThey don't like you.\tElles ne vous apprécient pas.\nThey handcuffed Tom.\tIls ont menotté Tom.\nThey have a problem.\tIls ont un problème.\nThey have a problem.\tElles ont un problème.\nThey have been busy.\tIls ont été occupés.\nThey have been busy.\tElles ont été occupées.\nThey have few books.\tIls ont peu de livres.\nThey have no choice.\tIls n'ont pas le choix.\nThey have no choice.\tElles n'ont pas le choix.\nThey know our plans.\tIls ont connaissance de nos projets.\nThey know our plans.\tElles ont connaissance de nos projets.\nThey know the truth.\tIls connaissent la vérité.\nThey know the truth.\tElles connaissent la vérité.\nThey know your name.\tIls connaissent votre nom.\nThey live next door.\tIls habitent à côté.\nThey lost their dog.\tIls ont perdu leur chien.\nThey lost their dog.\tElles ont perdu leur chien.\nThey love that song.\tIls adorent cette chanson.\nThey love that song.\tIls raffolent de cette chanson.\nThey love that song.\tElles adorent cette chanson.\nThey love that song.\tElles raffolent de cette chanson.\nThey love this song.\tIls adorent cette chanson.\nThey love this song.\tElles adorent cette chanson.\nThey made fun of me.\tIls se moquèrent de moi.\nThey need investors.\tIls ont besoin d'investisseurs.\nThey need investors.\tElles ont besoin d'investisseurs.\nThey need the money.\tIls ont besoin de l'argent.\nThey need the money.\tElles ont besoin de l'argent.\nThey questioned him.\tIls l'ont questionné.\nThey questioned him.\tElles l'ont questionné.\nThey ruined my life.\tIls ont ruiné ma vie.\nThey ruined my life.\tElles ont ruiné ma vie.\nThey sang in chorus.\tIls chantaient en chœur.\nThey say she's sick.\tIls disent qu'elle est malade.\nThey say she's sick.\tElles disent qu'elle est malade.\nThey seem surprised.\tIls semblent surpris.\nThey seem surprised.\tElles semblent surprises.\nThey should be fine.\tÇa devrait aller pour eux.\nThey should be fine.\tIls devraient s'en sortir.\nThey stayed friends.\tIls restèrent amis.\nThey stayed friends.\tIls continuèrent à être amis.\nThey were all there.\tIls étaient tous là.\nThey were all there.\tElles étaient toutes là.\nThey'll go shopping.\tIls iront faire les courses.\nThey'll go shopping.\tElles iront faire les courses.\nThey're a good team.\tIls sont une bonne équipe.\nThey're about to go.\tIls sont sur le point de partir.\nThey're all thieves.\tCe sont tous des voleurs.\nThey're all thieves.\tCe sont toutes des voleuses.\nThey're all waiting.\tIls attendent tous.\nThey're all waiting.\tElles attendent toutes.\nThey're all waiting.\tElles sont toutes en train d'attendre.\nThey're all waiting.\tIls sont tous en train d'attendre.\nThey're almost here.\tIls sont presque là.\nThey're almost here.\tIls en sont presque là.\nThey're almost here.\tElles sont presque là.\nThey're almost here.\tElles en sont presque là.\nThey're here for me.\tIls sont là pour moi.\nThey're here for me.\tElles sont là pour moi.\nThey're ignoring me.\tIls ne me prêtent pas attention.\nThey're kind of fun.\tIls sont plutôt marrants.\nThey're kind of fun.\tElles sont plutôt marrantes.\nThey're out of town.\tIls ne sont pas en ville.\nThey're out of town.\tElles ne sont pas en ville.\nThey're really ugly.\tIls sont vraiment moches.\nThey're really ugly.\tElles sont vraiment moches.\nThey're still young.\tIls sont encore jeunes.\nThey're still young.\tElles sont encore jeunes.\nThings have changed.\tLes choses ont changé.\nThis CD is my son's.\tCe CD est à mon fils.\nThis bird can't fly.\tCet oiseau ne peut pas voler.\nThis bird can't fly.\tCet oiseau ne sait pas voler.\nThis can't be right.\tCe ne peut être vrai.\nThis coffee is cold.\tCe café est froid.\nThis costs too much.\tCeci coûte trop.\nThis desk is broken.\tCe bureau est cassé.\nThis dog minds well.\tCe chien obéit bien.\nThis door is locked.\tCette porte est verrouillée.\nThis drives me nuts.\tÇa me rend dingue.\nThis forum is great.\tCe forum est merveilleux.\nThis guy is a crook.\tCe type est un bandit.\nThis guy is a loser.\tCe mec est un nullard.\nThis guy is a loser.\tCe type est un raté.\nThis is Tom's grave.\tC'est la tombe de Tom.\nThis is a good deal.\tC'est une bonne affaire.\nThis is a good deal.\tC'est un bon accord.\nThis is a newspaper.\tC'est un journal.\nThis is all for you.\tTout est pour toi.\nThis is all for you.\tTout est pour vous.\nThis is all rubbish.\tTout ça n'est qu'absurdités.\nThis is an old book.\tC'est un vieux livre.\nThis is complicated.\tC'est compliqué.\nThis is devastating.\tC'est accablant.\nThis is her handbag.\tC'est son sac-à-main.\nThis is infuriating.\tC'est exaspérant.\nThis is infuriating.\tC'est horripilant.\nThis is interesting.\tC'est intéressant.\nThis is just stupid.\tC'est juste stupide.\nThis is kind of fun.\tC'est plutôt amusant.\nThis is kind of fun.\tC'est plutôt marrant.\nThis is my city now.\tC'est ma ville désormais.\nThis is my daughter.\tC'est ma fille.\nThis is my father's.\tC’est à mon père.\nThis is my father's.\tCeci appartient à mon père.\nThis is my notebook.\tC'est mon carnet de notes.\nThis is my notebook.\tC'est mon ordinateur portable.\nThis is my old bike.\tCeci est mon vieux vélo.\nThis is my painting.\tC'est mon tableau.\nThis is my question.\tC'est ma question.\nThis is my umbrella.\tIl s'agit de mon parapluie.\nThis is no accident.\tCe n'est pas un hasard.\nThis is not a tiger.\tCe n'est pas un tigre.\nThis is not natural.\tCe n'est pas naturel.\nThis is so much fun.\tC'est tellement marrant.\nThis is very useful.\tC'est fort utile.\nThis is very useful.\tC'est très utile.\nThis is what I want.\tC'est ce que je veux.\nThis isn't possible.\tCe n'est pas possible.\nThis lady is Indian.\tCette dame est indienne.\nThis makes no sense.\tCela n'a aucun sens.\nThis makes no sense.\tÇa n'a pas de sens.\nThis may hurt a bit.\tIl se peut que ça fasse un peu mal.\nThis never gets old.\tCeci ne vieillit jamais.\nThis novel bores me.\tCe roman m'ennuie.\nThis party's packed.\tIl y avait un max de monde à cette soirée.\nThis screw is loose.\tCette vis est desserrée.\nThis sheet is light.\tCe drap est léger.\nThis table is clean.\tCette table est propre.\nThis table is heavy.\tCette table est lourde.\nThis tooth is loose.\tCette dent bouge.\nThis winter is warm.\tL'hiver est doux cette année.\nThose were the days.\tC'était le bon temps.\nThree weeks went by.\tTrois semaines ont passé.\nThree weeks went by.\tTrois semaines sont passées.\nThree weeks went by.\tTrois semaines passèrent.\nTime is running out.\tLe temps s'épuise.\nTom arrived on foot.\tTom est arrivé à pied.\nTom bolted the door.\tTom verrouilla la porte.\nTom bolted the door.\tTom a verrouillé la porte.\nTom borrowed my car.\tTom a emprunté ma voiture.\nTom brought flowers.\tTom a apporté des fleurs.\nTom came by himself.\tTom est venu de lui-même.\nTom can drive a car.\tTom peut conduire une voiture.\nTom can handle this.\tTom peut gérer cela.\nTom can't even read.\tTom ne peut même pas lire.\nTom can't help Mary.\tTom ne peut pas aider Marie.\nTom closed his eyes.\tTom ferma les yeux.\nTom closed his eyes.\tTom a fermé les yeux.\nTom collects comics.\tTom collectionne les comics.\nTom could stop this.\tTom pourrait arrêter ceci.\nTom didn't say that.\tTom n'a pas dit ça.\nTom doesn't help me.\tTom ne m'aide pas.\nTom doesn't like me.\tTom ne m'aime pas.\nTom doesn't like us.\tTom ne nous aime pas.\nTom doesn't love me.\tTom ne m'aime pas.\nTom doesn't need me.\tTom n'a pas besoin de moi.\nTom drinks a little.\tTom boit un peu.\nTom drinks too much.\tTom boit trop.\nTom drives too fast.\tTom conduit trop vite.\nTom felt invincible.\tTom se sentit invincible.\nTom felt invincible.\tTom s'est senti invincible.\nTom felt very tired.\tTom se sentit très fatigué.\nTom forced me to go.\tTom m'a forcé à y aller.\nTom found something.\tTom a trouvé quelque chose.\nTom gave up smoking.\tTom a arrêté de fumer.\nTom gets up at 6:30.\tTom se lève à 6H30.\nTom had a rough day.\tTom a eu une dure journée.\nTom has a bald spot.\tTom a une tonsure.\nTom has a big house.\tTom a une grande maison.\nTom has a big mouth.\tTom a une grande bouche.\nTom has a big mouth.\tTom ne sait pas tenir sa langue.\nTom has a big mouth.\tTom est une pipelette.\nTom has a big mouth.\tTom a une grande gueule.\nTom has a pacemaker.\tTom a un stimulateur cardiaque.\nTom has a white dog.\tTom a un chien blanc.\nTom has calmed down.\tTom s'est calmé.\nTom has passed away.\tTom est mort.\nTom has tonsillitis.\tTom a une angine.\nTom hasn't met Mary.\tTom n'a pas rencontré Mary.\nTom hates Halloween.\tTom déteste Halloween.\nTom hates the rules.\tTom déteste les règles.\nTom heard the sound.\tTom entendit le son.\nTom held his breath.\tTom retint son souffle.\nTom helped us a lot.\tTom nous a beaucoup aidés.\nTom helped us a lot.\tTom nous a beaucoup aidées.\nTom hit rock bottom.\tTom a touché le fond.\nTom is a biochemist.\tTom est biochimiste.\nTom is a con artist.\tTom est un escroc.\nTom is already here.\tTom est déjà là.\nTom is always lying.\tTom ment constamment.\nTom is always lying.\tTom est toujours en train de mentir.\nTom is an architect.\tThomas est architecte.\nTom is back in town.\tTom est de retour en ville.\nTom is clearly lost.\tTom est clairement perdu.\nTom is good at math.\tTom est bon en math.\nTom is having lunch.\tTom est en train de déjeuner.\nTom is having lunch.\tTom déjeune.\nTom is making faces.\tTom fait des grimaces.\nTom is multilingual.\tTom est multilingue.\nTom is not a member.\tTom n'est pas un membre.\nTom is on the phone.\tTom est au téléphone.\nTom is still inside.\tTom est toujours à l'intérieur.\nTom is still inside.\tTom est encore à l'intérieur.\nTom is unbelievable.\tTom est incroyable.\nTom is very unhappy.\tTom est très malheureux.\nTom isn't a bad boy.\tTom n'est pas un mauvais garçon.\nTom isn't a bad guy.\tTom n'est pas un mauvais gars.\nTom isn't a student.\tTom n'est pas étudiant.\nTom isn't dangerous.\tTom n'est pas dangereux.\nTom joined the army.\tTom a rejoint l'armée.\nTom kept his hat on.\tTom a gardé son chapeau sur la tête.\nTom knows I'm right.\tTom sait que j'ai raison.\nTom knows everybody.\tTom connaît tout le monde.\nTom likes the ocean.\tTom aime l'océan.\nTom likes to travel.\tTom aime voyager.\nTom lit the candles.\tTom a allumé les bougies.\nTom lit the candles.\tTom alluma les bougies.\nTom lives in Boston.\tTom habite à Boston.\nTom lives in Boston.\tTom vit à Boston.\nTom looks disgusted.\tTom avait l'air dégoûté.\nTom looks intrigued.\tTom a l'air intrigué.\nTom lost his ticket.\tTom a perdu son ticket.\nTom lost his wallet.\tTom a perdu son porte-monnaie.\nTom loves chocolate.\tTom adore le chocolat.\nTom makes big money.\tTom gagne beaucoup d'argent.\nTom misses his wife.\tLa femme de Tom lui manque.\nTom must be excited.\tTom doit être excité.\nTom must've seen it.\tTom aurait dû voir ça.\nTom never came back.\tTom ne revint jamais.\nTom never came back.\tTom n'est jamais revenu.\nTom opened a window.\tTom ouvrit une fenêtre.\nTom opened a window.\tTom ouvrait une fenêtre.\nTom opened a window.\tTom a ouvert une fenêtre.\nTom opened the safe.\tTom a ouvert le coffre-fort.\nTom opened the safe.\tTom ouvrit le coffre-fort.\nTom ordered a drink.\tTom a commandé une boisson.\nTom ordered a drink.\tTom a commandé un verre.\nTom owes us a favor.\tTom nous doit une faveur.\nTom paid for it all.\tTom a tout payé.\nTom plays in a band.\tTom joue dans un groupe.\nTom plays the piano.\tTom joue du piano.\nTom pointed at Mary.\tTom a montré Mary du doigt.\nTom prefers blondes.\tTom préfère les blondes.\nTom pulled the rope.\tTom tira la corde.\nTom remained silent.\tTom a gardé le silence.\nTom said it was fun.\tTom a dit que c'était drôle.\nTom said to ask you.\tTom a dit de te demander.\nTom sat at his desk.\tTom était assis à son bureau.\nTom saw Mary crying.\tTom a vu Marie en train de pleurer.\nTom saw Mary crying.\tTom a vu Marie pleurer.\nTom sealed the deal.\tTom conclut le marché.\nTom sealed the room.\tTom ferma la salle.\nTom seems courteous.\tTom semble courtois.\nTom seems courteous.\tTom a l'air courtois.\nTom seems dangerous.\tTom semble dangereux.\nTom seems dangerous.\tTom a l'air dangereux.\nTom sells computers.\tTom vend des ordinateurs.\nTom sipped some tea.\tTom prit une gorgée de thé.\nTom sipped some tea.\tTom a bu une gorgée de thé.\nTom sipped some tea.\tTom a siroté du thé.\nTom sorted the mail.\tTom tria ses e-mails.\nTom speaks too fast.\tTom parle trop rapidement.\nTom started shaking.\tTom commença à trembler.\nTom started singing.\tTom a commencé à chanter.\nTom started yelling.\tTom a commencé à crier.\nTom started yelling.\tTom commença à crier.\nTom stepped forward.\tTom fit un pas en avant.\nTom stole my camera.\tTom a volé mon appareil photo.\nTom swims very fast.\tTom nage très rapidement.\nTom tasted the wine.\tTom goûta le vin.\nTom tasted the wine.\tTom a goûté le vin.\nTom teaches history.\tTom enseigne l'histoire.\nTom took a bad fall.\tTom fit une mauvaise chute.\nTom took this photo.\tTom a pris cette photo.\nTom waited his turn.\tTom attendit son tour.\nTom wants an answer.\tTom veut une réponse.\nTom was fast asleep.\tTom dormait profondément.\nTom was my cellmate.\tTom était mon compagnon de cellule.\nTom was never happy.\tTom n'était jamais heureux.\nTom wasn't flirting.\tTom ne flirtait pas.\nTom wears silk ties.\tTom porte des cravates de soie.\nTom will be jealous.\tTom va être jaloux.\nTom won first prize.\tTom a gagné le premier prix.\nTom won the contest.\tTom a gagné le concours.\nTom won three races.\tTom a gagné trois courses.\nTom worked overtime.\tTom a fait des heures supplémentaires.\nTom works full time.\tTom travaille à temps plein.\nTom works with Mary.\tTom travaille avec Marie.\nTom's eyes are blue.\tLes yeux de Tom sont bleus.\nTom's fat, isn't he?\tTom est gros, n'est-ce pas ?\nTom's very annoying.\tTom est très agaçant.\nTranslate this text.\tTraduis ce texte.\nTranslate this text.\tTraduisez ce texte.\nTry on this sweater.\tEssaie ce pull.\nTry on this sweater.\tEssaie ce tricot.\nTry to do your best.\tEssaye de faire de ton mieux.\nTry to do your best.\tEssaie de faire de ton mieux.\nTry to do your best.\tEssayez de faire de votre mieux.\nTry to keep it down.\tEssaie de ne pas vomir.\nTry to keep it down.\tEssayez de ne pas vomir.\nTry to keep it down.\tEssaie de le tenir en échec.\nTry to keep it down.\tEssayez de le tenir en échec.\nTurn around, please.\tVeuillez tourner autour !\nTurn around, please.\tVeuillez vous retourner !\nTurn around, please.\tRetourne-toi, je te prie !\nTurn around, please.\tTourne autour, je te prie !\nTurn down the music.\tBaissez la musique !\nTurn down the music.\tBaisse la musique !\nTurn off the lights.\tÉteins les phares !\nTurn off the lights.\tÉteignez les phares !\nTurn the radio down.\tBaisse la radio.\nTurn your papers in.\tRemettez-moi vos papiers.\nTurn your papers in.\tRemettez-nous vos papiers.\nTurn your papers in.\tRemettez-lui vos papiers.\nTurn your papers in.\tRemettez-leur vos papiers.\nUse this as a model.\tUtilise ceci comme modèle !\nUse this as a model.\tUtilisez ceci comme modèle !\nWait until tomorrow.\tAttends jusqu'à demain.\nWake me up at eight.\tRéveillez-moi à huit heures.\nWake me up at seven.\tRéveillez-moi à sept heures.\nWake me up at seven.\tRéveille-moi à sept heures.\nWar concerns us all.\tLa guerre nous concerne tous.\nWas I polite enough?\tAi-je été assez polie ?\nWas I polite enough?\tAi-je été assez poli ?\nWas I really boring?\tÉtais-je vraiment si ennuyeux ?\nWas I really boring?\tÉtais-je vraiment si ennuyeuse ?\nWas anyone arrested?\tQuelqu'un a-t-il été arrêté ?\nWas it all worth it?\tEst-ce que ça en valait la peine?\nWas it an explosion?\tÉtait-ce une explosion ?\nWas that a squirrel?\tS'agissait-il d'un écureuil ?\nWas that a squirrel?\tÉtait-ce un écureuil ?\nWas that a squirrel?\tÉtait-ce là un écureuil ?\nWas there a scandal?\tY a-t-il eu un scandale ?\nWas there a scandal?\tY avait-il un scandale ?\nWaste not, want not.\tQui ne gaspille pas ne manque de rien.\nWe all have arrived.\tNous sommes tous arrivés.\nWe all have changed.\tNous avons tous changé.\nWe all have changed.\tNous avons toutes changé.\nWe all have secrets.\tNous avons tous des secrets.\nWe all have secrets.\tNous avons toutes des secrets.\nWe all like cycling.\tNous aimons tous faire du vélo.\nWe all want answers.\tNous voulons tous des réponses.\nWe all want answers.\tNous voulons toutes des réponses.\nWe all want changes.\tNous voulons tous des changements.\nWe all want changes.\tNous voulons toutes des changements.\nWe are all born mad.\tNous sommes tous nés fous.\nWe are good friends.\tNous sommes bons amis.\nWe are good friends.\tNous sommes de bonnes amies.\nWe are his children.\tNous sommes ses enfants.\nWe are in a library.\tNous sommes dans une bibliothèque.\nWe are in a library.\tNous sommes dans la bibliothèque.\nWe are very similar.\tNous sommes très semblables.\nWe both are friends.\tNous sommes tous deux amis.\nWe both fell asleep.\tNous nous endormîmes tous deux.\nWe both fell asleep.\tNous nous endormîmes toutes deux.\nWe both fell asleep.\tNous nous sommes tous deux endormis.\nWe both fell asleep.\tNous nous sommes toutes deux endormies.\nWe can hide in here.\tNous pouvons nous cacher là-dedans.\nWe can't drink milk.\tNous ne pouvons pas boire de lait.\nWe can't forget Tom.\tNous ne pouvons oublier Tom.\nWe cannot afford it.\tNous ne pouvons nous le permettre.\nWe cannot afford it.\tNous ne pouvons pas nous le permettre.\nWe caught the thief.\tNous avons attrapé le voleur.\nWe couldn't do that.\tNous ne le pourrions pas.\nWe couldn't do that.\tNous ne le pouvions pas.\nWe count everything.\tNous comptons tout.\nWe cut off the rope.\tNous avons coupé la corde.\nWe did it ourselves.\tNous l'avons fait nous-mêmes.\nWe dislike violence.\tNous éprouvons une aversion pour la violence.\nWe don't have to go.\tIl ne nous faut pas y aller.\nWe don't have to go.\tNous ne devons pas y aller.\nWe don't have to go.\tIl ne nous faut pas partir.\nWe don't have to go.\tNous ne devons pas partir.\nWe don't have to go.\tNous ne sommes pas obligés de partir.\nWe drive everywhere.\tNous roulons partout.\nWe got your message.\tNous avons eu votre message.\nWe got your message.\tOn a eu ton message.\nWe grew up together.\tNous avons grandi ensemble.\nWe grew up together.\tNous grandîmes ensemble.\nWe had a huge fight.\tOn a eu une énorme dispute.\nWe had a rough time.\tNous traversâmes une période difficile.\nWe had an oral exam.\tNous avons eu un examen oral.\nWe had an oral exam.\tNous eûmes un examen oral.\nWe had little water.\tNous ne disposions que de peu d'eau.\nWe had little water.\tNous avions peu d'eau.\nWe have a lot to do.\tNous avons beaucoup à faire.\nWe have enough data.\tNous avons assez de données.\nWe have enough time.\tNous avons assez de temps.\nWe have enough time.\tNous disposons de suffisamment de temps.\nWe have seen no one.\tNous n'avons vu personne.\nWe have to warn him.\tNous devons l'avertir.\nWe have to warn him.\tIl faut que nous l'avertissions.\nWe haven't finished.\tNous n'avons pas fini.\nWe haven't found it.\tNous ne l'avons pas trouvé.\nWe lay on the grass.\tNous sommes allongés dans l'herbe.\nWe left immediately.\tNous sommes immédiatement partis.\nWe love our country.\tNous adorons notre pays.\nWe love our country.\tOn adore notre pays.\nWe love you so much.\tNous vous aimons tant.\nWe love you so much.\tNous t'aimons tant.\nWe made a good team.\tNous formions une bonne équipe.\nWe make a good team.\tNous formons une bonne équipe.\nWe make great money.\tNous faisons beaucoup d'argent.\nWe may need it soon.\tIl se peut que nous en ayons besoin bientôt.\nWe mean you no harm.\tNous ne vous voulons pas de mal.\nWe mean you no harm.\tNous ne te voulons pas de mal.\nWe missed our train.\tNous avons raté notre train.\nWe must be cautious.\tNous devons être prudents.\nWe must be cautious.\tNous devons être prudentes.\nWe must be cautious.\tIl nous faut être prudents.\nWe must be cautious.\tIl nous faut être prudentes.\nWe must do it again.\tNous devons le refaire.\nWe must do it again.\tNous devons le faire à nouveau.\nWe must do it again.\tIl nous faut le faire à nouveau.\nWe must do it again.\tIl nous faut le refaire.\nWe must inform them.\tNous devons les en informer.\nWe must leave early.\tNous devons partir tôt.\nWe must not be late.\tNe sois pas en retard.\nWe must not retreat.\tNous ne devons pas battre en retraite.\nWe must pay the tax.\tNous devons payer l'impôt.\nWe must pay the tax.\tNous devons payer la taxe.\nWe need a volunteer.\tNous avons besoin d'un volontaire.\nWe need information.\tNous avons besoin d'information.\nWe need to help Tom.\tNous devons aider Tom.\nWe obeyed the rules.\tNous avons obéi au règlement.\nWe often play chess.\tNous jouons souvent aux échecs.\nWe ran out of money.\tNous nous sommes trouvés à court d'argent.\nWe ran out of money.\tNous nous sommes trouvées à court d'argent.\nWe ran out of money.\tNous nous trouvâmes à court d'argent.\nWe regret his death.\tNous regrettons sa mort.\nWe season with salt.\tNous assaisonnons avec du sel.\nWe should celebrate.\tNous devrions fêter ça.\nWe should do better.\tNous devrions faire mieux.\nWe should do better.\tNous devrions mieux faire.\nWe should get going.\tNous devrions y aller.\nWe swam in the lake.\tNous nageâmes dans le lac.\nWe took a long walk.\tNous avons fait une longue promenade.\nWe waited anxiously.\tNous attendîmes anxieusement.\nWe waited anxiously.\tNous avons attendu avec inquiétude.\nWe want out of here.\tNous voulons nous tirer d'ici.\nWe want to help Tom.\tNous voulons aider Tom.\nWe want your advice.\tNous voulons vos conseils.\nWe wanted to listen.\tNous voulions écouter.\nWe were all shocked.\tNous fûmes tous choqués.\nWe were all shocked.\tNous fûmes toutes choquées.\nWe were all shocked.\tNous avons tous été choqués.\nWe were all shocked.\tNous avons toutes été choquées.\nWe were all worried.\tOn était tous inquiets.\nWe were both hungry.\tNous avions tous les deux faim.\nWe were both hungry.\tNous avions tous deux faim.\nWe were eating eggs.\tNous mangions des œufs.\nWe were left behind.\tNous avons été reniés.\nWe were outnumbered.\tNous fûmes surpassés en nombre.\nWe were outnumbered.\tNous fûmes surpassées en nombre.\nWe were outnumbered.\tNous avons été surpassés en nombre.\nWe were outnumbered.\tNous avons été surpassées en nombre.\nWe will defeat them.\tNous les vaincrons.\nWe will do our best.\tNous ferons de notre mieux.\nWe'll begin shortly.\tNous commencerons incessamment.\nWe'll begin shortly.\tNous allons commencer sous peu.\nWe'll keep in touch.\tNous resterons en contact.\nWe'll keep in touch.\tOn se tient au courant.\nWe'll never make it.\tOn ne va jamais y arriver.\nWe'll never make it.\tNous n'allons jamais y arriver.\nWe'll soon find out.\tOn le découvrira bientôt.\nWe'll soon find out.\tNous le découvrirons bientôt.\nWe'll swim tomorrow.\tNous irons nous baigner demain.\nWe'll work together.\tNous travaillerons ensemble.\nWe're all different.\tNous sommes tous différents.\nWe're all different.\tNous sommes toutes différentes.\nWe're all done here.\tNous en avons complètement terminé ici.\nWe're all impressed.\tNous sommes tous impressionnés.\nWe're all impressed.\tNous sommes toutes impressionnées.\nWe're all prisoners.\tNous sommes tous prisonniers.\nWe're all prisoners.\tNous sommes toutes prisonnières.\nWe're all right now.\tNous allons bien, maintenant.\nWe're all witnesses.\tNous sommes tous témoins.\nWe're always hungry.\tNous avons toujours faim.\nWe're among friends.\tNous sommes au milieu d'amis.\nWe're back together.\tNous sommes de nouveau ensemble.\nWe're being watched.\tOn nous regarde.\nWe're being watched.\tNous sommes observés.\nWe're both teachers.\tNous sommes tous deux enseignants.\nWe're both teachers.\tNous sommes toutes deux enseignantes.\nWe're close friends.\tNous sommes des amis proches.\nWe're closing early.\tNous fermons tôt.\nWe're conscientious.\tNous sommes consciencieux.\nWe're conscientious.\tNous sommes consciencieuses.\nWe're eating apples.\tNous sommes en train de manger des pommes.\nWe're finally alone.\tNous sommes enfin seuls.\nWe're finally alone.\tNous sommes enfin seules.\nWe're finally alone.\tOn est enfin seuls.\nWe're finally alone.\tOn est enfin seules.\nWe're finished here.\tNous en avons fini, ici.\nWe're getting close.\tNous nous approchons.\nWe're getting close.\tNous nous en approchons.\nWe're getting close.\tNous en approchons.\nWe're getting there.\tNous y arrivons.\nWe're getting tired.\tNous commençons à fatiguer.\nWe're going dancing.\tNous allons danser.\nWe're going hunting.\tNous allons à la chasse.\nWe're halfway there.\tNous sommes à la moitié du chemin.\nWe're having dinner.\tNous sommes en train de déjeuner.\nWe're just children.\tNous ne sommes que des enfants.\nWe're just starting.\tNous ne faisons que commencer.\nWe're just students.\tNous ne sommes que des étudiants.\nWe're like brothers.\tNous sommes comme des frères.\nWe're not giving up.\tNous ne comptons pas abandonner.\nWe're not going out.\tNous n'allons pas sortir.\nWe're not impressed.\tNous ne sommes pas impressionnés.\nWe're not impressed.\tNous ne sommes pas impressionnées.\nWe're not listening.\tNous sommes pas en train d'écouter.\nWe're not on a date.\tNous ne sortons pas ensemble.\nWe're not prisoners.\tNous ne sommes pas prisonniers.\nWe're not prisoners.\tNous ne sommes pas prisonnières.\nWe're not strangers.\tNous ne sommes pas des étrangers.\nWe're not yet there.\tNous n'en sommes pas encore là.\nWe're not yet there.\tNous n'y sommes pas encore.\nWe're open tomorrow.\tNous sommes ouverts demain.\nWe're out of coffee.\tNous sommes à court de café.\nWe're playing cards.\tNous sommes en train de jouer aux cartes.\nWe're proud of that.\tNous en sommes fiers.\nWe're proud of that.\tNous en sommes fières.\nWe're really scared.\tNous avons vraiment peur.\nWe're still friends.\tNous sommes toujours amis.\nWe're still married.\tNous sommes encore mariés.\nWe're tempting fate.\tNous tentons notre chance.\nWe're tempting fate.\tNous tentons le Diable.\nWe're the good guys.\tNous sommes les gentils.\nWe're the same size.\tNous avons la même taille.\nWe're tired of this.\tOn en a marre.\nWe're truly worried.\tOn est vraiment inquiets.\nWe're trying to win.\tNous essayons de gagner.\nWe're very grateful.\tNous sommes très reconnaissants.\nWe're very grateful.\tNous sommes très reconnaissantes.\nWe're wasting water.\tNous sommes en train de gaspiller de l'eau.\nWe've already begun.\tNous avons déjà commencé.\nWe've already tried.\tNous avons déjà essayé.\nWe've made progress.\tNous avons fait des progrès.\nWelcome to our home.\tBienvenue dans notre maison.\nWelcome to the club.\tBienvenue au cercle !\nWell? Will you come?\tEh bien ? Tu vas venir ?\nWell? Will you come?\tAlors ? Viendras-tu ?\nWell? Will you come?\tAlors ? Viendrez-vous ?\nWere you born there?\tEs-tu né là-bas ?\nWere you born there?\tÊtes-vous né là-bas ?\nWere you born there?\tEs-tu née là-bas ?\nWere you born there?\tÊtes-vous nés là-bas ?\nWere you born there?\tÊtes-vous née là-bas ?\nWere you born there?\tÊtes-vous nées là-bas ?\nWere you successful?\tAs-tu réussi ?\nWere you successful?\tAvez-vous réussi ?\nWhat a horrible man!\tQuel homme épouvantable !\nWhat a lazy teacher!\tQuel enseignant paresseux !\nWhat a lovely dress!\tQuelle robe ravissante !\nWhat a lovely dress!\tQuelle robe délicieuse !\nWhat a pretty woman!\tQuelle jolie femme !\nWhat am I to do now?\tQue suis-je supposé faire maintenant ?\nWhat are they doing?\tQue font-ils ?\nWhat are you called?\tComment est-ce que tu t'appelles ?\nWhat are you called?\tComment vous nomme-t-on ?\nWhat are you called?\tComment te nomme-t-on ?\nWhat are you eating?\tQue manges-tu ?\nWhat are you hiding?\tQu'êtes-vous en train de cacher ?\nWhat are you hiding?\tQu'es-tu en train de cacher ?\nWhat are you saying?\tQue dis-tu ?\nWhat are you saying?\tQue dites-vous ?\nWhat can I tell Tom?\tQue puis-je dire à Tom ?\nWhat can I tell you?\tQue puis-je vous dire ?\nWhat can I tell you?\tQue puis-je te dire ?\nWhat could go wrong?\tQu'est-ce qui pourrait aller de travers ?\nWhat did I do wrong?\tQu'ai-je fait de travers ?\nWhat did I do wrong?\tQu'ai-je fait de mal ?\nWhat did I just say?\tQu'est-ce que je viens de dire ?\nWhat did I tell you?\tQue vous ai-je dit ?\nWhat did I tell you?\tQue t'ai-je dit ?\nWhat did he not buy?\tQue n'a-t-il pas acheté ?\nWhat did that prove?\tQu'est-ce que ça a prouvé ?\nWhat did you answer?\tQu'est-ce que tu as répondu ?\nWhat did you answer?\tQu'as-tu répondu ?\nWhat did you answer?\tQu'avez-vous répondu ?\nWhat did you decide?\tQu'as-tu décidé ?\nWhat did you decide?\tQu'avez-vous décidé ?\nWhat did you expect?\tÀ quoi t'attendais-tu ?\nWhat did you expect?\tÀ quoi vous attendiez-vous ?\nWhat do we call you?\tComment est-ce que tu t'appelles ?\nWhat do we call you?\tComment vous nomme-t-on ?\nWhat does he expect?\tQu’est-ce qu’il espère?\nWhat does he expect?\tÀ quoi s'attend-il ?\nWhat does it matter?\tQu'importe ?\nWhat does that mean?\tQu'est-ce que ça veut dire ?\nWhat does this mean?\tQu'est-ce que cela signifie ?\nWhat don't you have?\tQue n'as-tu ?\nWhat don't you have?\tQue n'as-tu pas ?\nWhat don't you have?\tQue n'avez-vous ?\nWhat don't you have?\tQue n'avez-vous pas ?\nWhat don't you have?\tQue n'as-tu pas ?\nWhat don't you have?\tQue n'avez-vous pas ?\nWhat don't you have?\tDe quoi ne disposes-tu pas ?\nWhat don't you have?\tDe quoi ne disposez-vous pas ?\nWhat don't you like?\tQue n'aimes-tu pas ?\nWhat have you heard?\tQu'as-tu entendu ?\nWhat have you heard?\tQu'avez-vous entendu ?\nWhat is for dessert?\tQuel est le dessert ?\nWhat is its purpose?\tQuel est son but ?\nWhat is popular now?\tQu'est-ce qui est à la mode, à l'heure actuelle ?\nWhat is this called?\tComment nomme-t-on cela ?\nWhat is this called?\tComment nomme-t-on ça ?\nWhat is this letter?\tQu'est cette lettre ?\nWhat is your number?\tQuel est ton numéro ?\nWhat is your number?\tQuel est votre numéro ?\nWhat lovely weather!\tQuel beau temps !\nWhat made her do so?\tQu'est-ce qui le lui a fait faire ?\nWhat on earth is it?\tQue Diable est-ce là ?\nWhat on earth is it?\tQu'est-ce que c'est que ça, Bon Dieu ?\nWhat should I bring?\tQue dois-je emporter ?\nWhat should we cook?\tQue devrions-nous cuisiner ?\nWhat smells so good?\tQu'est-ce qui sent si bon ?\nWhat time is brunch?\tÀ quelle heure est le brunch ?\nWhat time is dinner?\tÀ quelle heure est le déjeuner ?\nWhat time is dinner?\tÀ quelle heure est le dîner ?\nWhat time is it now?\tQuelle heure est-il à présent ?\nWhat time is sunset?\tÀ quelle heure est le coucher de soleil ?\nWhat was I thinking?\tA quoi je pensais ?\nWhat was that noise?\tQuel était ce bruit ?\nWhat was that sound?\tQu'était ce bruit ?\nWhat were you doing?\tQu'étais-tu en train de faire ?\nWhat would Tom need?\tDe quoi Tom aurait-il besoin ?\nWhat would you like?\tQu'aimerais-tu ?\nWhat would you like?\tQu'aimeriez-vous ?\nWhat would you like?\tQu'est-ce que vous voudriez ?\nWhat would you like?\tQu'est-ce que tu voudrais ?\nWhat're you good at?\tÀ quoi es-tu bon ?\nWhat're you good at?\tÀ quoi êtes-vous bon ?\nWhat's Tom drinking?\tQue boit Tom ?\nWhat's Tom drinking?\tQu'est-ce que boit Tom ?\nWhat's all that for?\tÀ quoi sert tout ça ?\nWhat's all the fuss?\tC'est quoi toutes ces histoires ?\nWhat's all the fuss?\tC'est quoi tout ce raffut ?\nWhat's done is done.\tCe qui est fait est fait.\nWhat's done is done.\tCe qui est fait, est fait.\nWhat's got into you?\tQu'est-ce qui te préoccupe ?\nWhat's got into you?\tQu'est-ce qui vous préoccupe ?\nWhat's it all about?\tDe quoi tout cela s'agit-il ?\nWhat's it look like?\tDe quoi ça a l'air ?\nWhat's it made from?\tDe quoi est-ce fait ?\nWhat's new with you?\tQuoi de neuf de ton côté ?\nWhat's new with you?\tQuoi de neuf de votre côté ?\nWhat's the big deal?\tQu'y a-t-il de si extraordinaire ?\nWhat's the big rush?\tQuelle est cette précipitation ?\nWhat's the bus fare?\tQuel est le tarif du bus ?\nWhat's the plan now?\tQuel est le plan, maintenant ?\nWhat's the time now?\tQuelle heure est-il maintenant?\nWhat's the time now?\tIl est quelle heure là?\nWhat's there to say?\tQu'y a-t-il à en dire ?\nWhat's this key for?\tÀ quoi sert cette clé ?\nWhat's today's date?\tLe quantième sommes-nous ?\nWhat's worrying you?\tQu'est-ce qui te cause du souci ?\nWhat's worrying you?\tQu'est-ce qui t'inquiète ?\nWhat's worrying you?\tQu'est-ce qui te préoccupe ?\nWhat's worrying you?\tQu'est-ce qui vous inquiète ?\nWhat's your address?\tQuelle est votre adresse ?\nWhat's your address?\tQuelle est ton adresse ?\nWhat's your problem?\tC'est quoi ton problème ?\nWhat's your problem?\tQuel est votre problème ?\nWhat's your problem?\tY a-t-il un problème ?\nWhat's your problem?\tC'est quoi ton problème ?\nWhen can I call you?\tQuand puis-je vous appeler ?\nWhen did I say that?\tQuand ai-je dit cela ?\nWhen did Tom arrive?\tQuand Tom est-il arrivé ?\nWhen did Tom arrive?\tQuand est-ce que Tom est arrivé ?\nWhen did this occur?\tQuand cela s'est-il produit ?\nWhen did you arrive?\tQuand es-tu arrivé ?\nWhen did you arrive?\tQuand es-tu arrivée ?\nWhen did you buy it?\tQuand l'as-tu acheté ?\nWhen did you buy it?\tQuand en as-tu fait l'acquisition ?\nWhen did you buy it?\tQuand en avez-vous fait l'acquisition ?\nWhen did you buy it?\tQuand l'avez-vous acheté ?\nWhen did you get up?\tQuand est-ce que tu t'es levé ?\nWhen does it arrive?\tQuand arrive-t-il ?\nWhen is school over?\tQuand l'école se termine-t-elle ?\nWhen will it happen?\tQuand est-ce que ça arrivera ?\nWhen will we arrive?\tDans combien de temps arrivons-nous ?\nWhen will you leave?\tTu pars quand ?\nWhen will you leave?\tQuand pars-tu ?\nWhen will you leave?\tQuand vas-tu partir ?\nWhen will you leave?\tQuand partirez-vous ?\nWhen will you start?\tQuand commenceras-tu ?\nWhen will you start?\tQuand commencerez-vous ?\nWhen's Tom arriving?\tQuand Tom arrive-t-il ?\nWhere are my things?\tOù sont mes affaires ?\nWhere are the forks?\tOù sont les fourchettes ?\nWhere are the shoes?\tOù sont les chaussures ?\nWhere are you bound?\tOù te diriges-tu ?\nWhere are you bound?\tVers où es-tu en chemin ?\nWhere are you going?\tOù vas-tu ?\nWhere are you going?\tOù te rends-tu ?\nWhere are you going?\tOù vous rendez-vous ?\nWhere could they be?\tOù pourraient-elles se trouver ?\nWhere could they be?\tOù pourraient-ils se trouver ?\nWhere have you been?\tOù étais-tu passé ?\nWhere is Tom buried?\tOù Tom est-il enterré ?\nWhere is her family?\tOù est sa famille ?\nWhere is his family?\tOù est sa famille ?\nWhere is the bridge?\tOù se trouve le pont ?\nWhere is the market?\tOù est le marché ?\nWhere is the school?\tOù se trouve l'école ?\nWhere is your house?\tOù est ta maison ?\nWhere is your house?\tOù se trouve ta maison ?\nWhere is your house?\tOù est votre maison ?\nWhere is your money?\tOù est votre argent ?\nWhere was he headed?\tOù s'en était-il allé ?\nWhere was he headed?\tOù se rendait-il ?\nWhere were you born?\tOù êtes-vous né ?\nWhere were you born?\tOù êtes-vous née ?\nWhere were you born?\tOù êtes-vous nés ?\nWhere were you born?\tOù êtes-vous nées ?\nWhere were you born?\tOù es-tu née ?\nWhere's Mary's ring?\tOù est la bague de Mary ?\nWhere's the airport?\tOù se trouve l'aéroport ?\nWhere's the mistake?\tOù est l'erreur ?\nWhere's the pan lid?\tOù se trouve le couvercle de la poêle ?\nWhere's your father?\tOù est votre père ?\nWhere's your mother?\tOù est ta mère ?\nWhere's your mother?\tOù est votre mère ?\nWhere's your school?\tOù se trouve ton école ?\nWhere's your school?\tOù est ton école ?\nWhere's your school?\tOù est votre école ?\nWhere's your sister?\tOù est votre sœur ?\nWhere's your weapon?\tOù est ton arme ?\nWhich book is yours?\tQuel livre est le vôtre ?\nWhich book is yours?\tQuel livre est le tien ?\nWhich book is yours?\tLequel est ton livre ?\nWhich one is broken?\tC'est lequel qui est cassé ?\nWhich one is broken?\tLequel est cassé ?\nWhich team will win?\tQuelle équipe va gagner ?\nWho am I addressing?\tÀ qui est-ce que je m'adresse ?\nWho am I forgetting?\tQui est-ce que j'oublie ?\nWho baked this cake?\tQui a confectionné ce gâteau ?\nWho believes in God?\tQui croit en Dieu ?\nWho broke the chair?\tQui a cassé la chaise ?\nWho called the cops?\tQui a appelé les flics ?\nWho could forget it?\tQui pourrait l'oublier ?\nWho did this to you?\tQui t'a fait ça ?\nWho did this to you?\tQui vous a fait ceci ?\nWho did you go with?\tAvec qui es-tu allé ?\nWho did you go with?\tAvec qui es-tu allée ?\nWho did you go with?\tAvec qui êtes-vous allé ?\nWho did you go with?\tAvec qui êtes-vous allée ?\nWho did you go with?\tAvec qui êtes-vous allés ?\nWho did you go with?\tAvec qui êtes-vous allées ?\nWho did you talk to?\tAvec qui parlais-tu ?\nWho did you talk to?\tÀ qui parlais-tu ?\nWho did you talk to?\tÀ qui as-tu parlé ?\nWho do you work for?\tPour qui travailles-tu ?\nWho else helped you?\tQui d'autre vous a aidé ?\nWho else helped you?\tQui d'autre t'a aidé ?\nWho is in the house?\tQui est à la maison ?\nWho is in this room?\tQui est dans cette pièce ?\nWho is on the train?\tQui se trouve à bord du train ?\nWho is your brother?\tQui est ton frère ?\nWho is your teacher?\tQui est ton professeur ?\nWho is your teacher?\tQui est votre enseignant ?\nWho is your teacher?\tQui est ton instituteur ?\nWho is your teacher?\tQui est votre professeur ?\nWho is your teacher?\tQui est ton institutrice ?\nWho owns this house?\tQui est propriétaire de cette maison ?\nWho owns this house?\tQui est le propriétaire de cette maison ?\nWho sent this to us?\tQui nous a envoyé cela ?\nWho should I inform?\tQui devrais-je informer ?\nWho wrote the Bible?\tQui a écrit la Bible ?\nWho's here with you?\tQui est ici avec vous ?\nWho's here with you?\tQui est ici avec toi ?\nWho's on duty today?\tQui est de service aujourd'hui ?\nWho's on duty today?\tQui est de garde aujourd'hui ?\nWho's replacing you?\tQui te remplace ?\nWho's replacing you?\tQui vous remplace ?\nWho's that cute boy?\tQui est ce mignon garçon ?\nWho's that cute guy?\tQui est ce mec mignon ?\nWho's this hot babe?\tQui est cette bombe ?\nWhose idea was that?\tDe qui était cette idée ?\nWhose paper is this?\tÀ qui est ce papier-ci ?\nWhose phone is that?\tÀ qui est ce téléphone ?\nWhose phone is this?\tÀ qui est ce téléphone ?\nWhy am I doing this?\tPourquoi est-ce que je fais ça ?\nWhy am I doing this?\tPourquoi fais-je cela ?\nWhy are we laughing?\tPourquoi est-ce qu'on rigole ?\nWhy are you all sad?\tPourquoi êtes-vous tous tristes ?\nWhy are you all sad?\tPourquoi êtes-vous toutes tristes ?\nWhy are you cursing?\tPourquoi jures-tu ?\nWhy are you cursing?\tPourquoi jurez-vous ?\nWhy are you limping?\tPourquoi boites-tu ?\nWhy are you staying?\tPourquoi restes-tu ?\nWhy are you staying?\tPourquoi restez-vous ?\nWhy are you waiting?\tPourquoi êtes-vous en train d'attendre ?\nWhy are you waiting?\tPourquoi es-tu en train d'attendre ?\nWhy are you with me?\tPourquoi êtes-vous avec moi ?\nWhy are you with me?\tPourquoi es-tu avec moi ?\nWhy can't I do that?\tPourquoi ne puis-je pas faire ça ?\nWhy can't I see you?\tPourquoi ne puis-je te voir ?\nWhy can't I see you?\tPourquoi ne puis-je vous voir ?\nWhy can't I see you?\tPourquoi est-ce que je ne parviens pas à te voir ?\nWhy can't I see you?\tPourquoi est-ce que je ne parviens pas à vous voir ?\nWhy can't you do it?\tPourquoi ne parvenez-vous pas à le faire ?\nWhy can't you do it?\tPourquoi ne parviens-tu pas à le faire ?\nWhy can't you do it?\tPourquoi ne pouvez-vous pas le faire ?\nWhy can't you do it?\tPourquoi ne peux-tu pas le faire ?\nWhy did I trust you?\tPourquoi t'ai-je fait confiance ?\nWhy did I trust you?\tPourquoi vous ai-je fait confiance ?\nWhy did I trust you?\tPourquoi me suis-je fié à toi ?\nWhy did I trust you?\tPourquoi me suis-je fiée à toi ?\nWhy did I trust you?\tPourquoi me suis-je fié à vous ?\nWhy did Tom do that?\tPourquoi Tom a-t-il fait cela ?\nWhy did Tom want it?\tPourquoi Tom le voulait ?\nWhy did Tom want it?\tPourquoi Tom la voulait ?\nWhy did he run away?\tPourquoi s'est-il enfui ?\nWhy did she do that?\tPourquoi a-t-elle fait ça ?\nWhy did you call me?\tPourquoi m'as-tu appelé ?\nWhy did you call me?\tPourquoi m'avez-vous appelé ?\nWhy did you do that?\tPourquoi as-tu fais cela ?\nWhy did you kiss me?\tPourquoi m'as-tu embrassé ?\nWhy did you kiss me?\tPourquoi m'as-tu embrassée ?\nWhy did you kiss me?\tPourquoi m'avez-vous embrassée ?\nWhy did you kiss me?\tPourquoi m'avez-vous embrassé ?\nWhy did you like it?\tPourquoi l'avez-vous aimé ?\nWhy did you like it?\tPourquoi l'as-tu aimé ?\nWhy didn't Tom move?\tPourquoi Tom n'a-t-il pas bougé ?\nWhy didn't she come?\tPourquoi ne vint-elle pas ?\nWhy didn't she come?\tPourquoi n'est-elle pas venue ?\nWhy didn't you come?\tPourquoi n'êtes-vous pas venu ?\nWhy didn't you come?\tPourquoi n'es-tu pas venu ?\nWhy didn't you come?\tPourquoi n'es-tu pas venu ?\nWhy do you say that?\tPourquoi dis-tu cela ?\nWhy do you think so?\tPourquoi pensez-vous ça ?\nWhy don't we all go?\tPourquoi n'y allons-nous pas tous ?\nWhy don't we all go?\tPourquoi n'y allons-nous pas toutes ?\nWhy don't you start?\tPourquoi ne démarres-tu pas ?\nWhy don't you start?\tPourquoi ne démarrez-vous pas ?\nWhy is the light on?\tPourquoi la lumière est-elle allumée ?\nWhy is the sky blue?\tPourquoi le ciel est-il bleu ?\nWhy not let Tom try?\tPourquoi ne pas laisser Tom essayer ?\nWill he ever change?\tChangera-t-il jamais ?\nWill you eat dinner?\tDéjeuneras-tu ?\nWill you eat dinner?\tDéjeunerez-vous ?\nWill you go with us?\tEst-ce que tu viendras avec nous ?\nWill you go with us?\tEst-ce que vous viendrez avec nous ?\nWomen are beautiful.\tLes femmes sont belles.\nWould Tom like that?\tTom aimerait-il cela ?\nWould you all relax?\tVoudriez-vous tous vous détendre ?\nWould you all relax?\tVoudriez-vous toutes vous détendre ?\nWould you chill out?\tVoudrais-tu te détendre ?\nWould you chill out?\tVoudriez-vous vous détendre ?\nWould you elaborate?\tVoudrais-tu développer ?\nWould you excuse me?\tVoudriez-vous m'excuser ?\nWould you excuse me?\tVoudrais-tu m'excuser ?\nWould you follow me?\tMe suivriez-vous ?\nWould you follow me?\tMe suivrais-tu ?\nWould you like that?\tApprécierais-tu cela ?\nWould you like that?\tL'apprécierais-tu ?\nWould you like that?\tAimerais-tu cela ?\nWould you like that?\tAimeriez-vous cela ?\nWould you like this?\tAimerais-tu ceci ?\nWow! What a big box!\tOuf ! Quelle grosse caisse !\nWow! What a big box!\tOuf ! Quelle grosse boîte !\nYesterday I was ill.\tHier j'étais malade.\nYou are a good cook.\tTu es bon cuisinier.\nYou are my daughter.\tVous êtes ma fille.\nYou are my daughter.\tTu es ma fille.\nYou are such a liar!\tTu es un de ces menteurs !\nYou are such a liar!\tVous êtes un de ces menteurs !\nYou are such a liar!\tVous êtes une de ces menteuses !\nYou are such a liar!\tTu es une de ces menteuses !\nYou asked to see me.\tVous avez demandé à me voir.\nYou ate my sandwich.\tTu as mangé mon sandwich.\nYou can not miss it.\tTu ne peux pas le manquer.\nYou can not miss it.\tVous ne pouvez pas le manquer.\nYou can rely on him.\tTu peux lui faire confiance.\nYou can rely on him.\tTu peux compter sur lui.\nYou can rely on him.\tOn peut compter sur lui.\nYou can rely on him.\tVous pouvez compter sur lui.\nYou can rely on him.\tOn peut se fier à lui.\nYou can rely on him.\tTu peux te fier à lui.\nYou can rely on him.\tVous pouvez vous fier à lui.\nYou can sing a song.\tTu peux chanter une chanson.\nYou can't blame him.\tTu ne peux pas le blâmer.\nYou can't blame him.\tVous ne pouvez pas le blâmer.\nYou can't blame him.\tTu ne peux pas lui faire de reproche.\nYou can't blame him.\tVous ne pouvez pas lui faire de reproche.\nYou can't defeat me.\tTu ne peux pas me battre.\nYou can't defeat me.\tVous ne pouvez me vaincre.\nYou can't deny that.\tTu ne peux pas nier cela.\nYou can't deny that.\tTu ne peux pas le nier.\nYou can't deny that.\tVous ne pouvez pas nier cela.\nYou can't deny that.\tVous ne pouvez pas le nier.\nYou can't deny that.\tTu ne peux le nier.\nYou can't deny that.\tVous ne pouvez le nier.\nYou can't handle it.\tTu ne sais pas t'y prendre.\nYou can't handle it.\tVous ne savez pas vous y prendre.\nYou can't handle it.\tTu ne sais pas y faire.\nYou can't handle it.\tVous ne savez pas y faire.\nYou can't have both.\tTu ne peux pas avoir les deux.\nYou can't have both.\tVous ne pouvez pas avoir les deux.\nYou can't have this.\tTu ne peux pas avoir ça.\nYou can't have this.\tVous ne pouvez pas avoir ça.\nYou can't help them.\tTu ne peux pas les aider.\nYou can't help them.\tVous ne pouvez pas les aider.\nYou can't just quit.\tTu ne peux pas simplement abandonner.\nYou can't just quit.\tVous ne pouvez pas simplement abandonner.\nYou can't just quit.\tTu ne peux pas simplement démissionner.\nYou can't just quit.\tVous ne pouvez pas simplement démissionner.\nYou can't sit there.\tVous ne pouvez pas vous asseoir là.\nYou can't swim here.\tVous n'avez pas le droit de nager ici.\nYou can't trust Tom.\tTu ne peux pas faire confiance à Tom.\nYou can't trust Tom.\tVous ne pouvez pas faire confiance à Tom.\nYou can't wear that.\tTu ne peux pas porter ça.\nYou can't wear that.\tVous ne pouvez pas porter ça.\nYou could stop this.\tVous pourriez arrêter ceci.\nYou could stop this.\tTu pourrais stopper ceci.\nYou could've called.\tTu aurais pu appeler.\nYou deserve a medal.\tTu mérites une médaille.\nYou deserve a medal.\tVous méritez une médaille.\nYou disappointed me.\tTu m'as déçu.\nYou disappointed me.\tVous m'avez déçu.\nYou don't know that.\tTu n'en sais rien.\nYou don't know that.\tTu l'ignores.\nYou don't know that.\tVous n'en savez rien.\nYou don't know that.\tVous l'ignorez.\nYou don't know them.\tTu ne les connais pas.\nYou don't know them.\tVous ne les connaissez pas.\nYou don't look well.\tTu n'as pas l'air bien.\nYou don't look well.\tVous n'avez pas l'air bien.\nYou don't need luck.\tTu n'as pas besoin de chance.\nYou don't need luck.\tVous n'avez pas besoin de chance.\nYou don't need that.\tTu n'as pas besoin de ça.\nYou don't need that.\tVous n'avez pas besoin de ça.\nYou don't want this.\tTu ne veux pas cela.\nYou don't work here.\tVous ne travaillez pas ici.\nYou guys are no fun.\tVous n'êtes pas marrants, les mecs.\nYou guys having fun?\tVous vous marrez bien, les mecs ?\nYou guys looked mad.\tVous aviez l'air énervé.\nYou have a big nose.\tTu as un grand nez.\nYou have a big nose.\tTu as un gros nez.\nYou have dirty feet.\tVous avez les pieds sales.\nYou have everything.\tVous avez tout.\nYou have everything.\tTu as tout.\nYou have many books.\tTu as de nombreux livres.\nYou have many books.\tVous avez beaucoup de livres.\nYou have many books.\tTu as beaucoup de livres.\nYou have some books.\tVous avez quelques livres.\nYou have some books.\tTu as quelques livres.\nYou have three cars.\tVous avez trois voitures.\nYou heard correctly.\tTu as bien entendu.\nYou heard correctly.\tVous avez bien entendu.\nYou just screwed up.\tTu viens de foirer.\nYou just screwed up.\tVous venez de foirer.\nYou knew I was here.\tVous saviez que j'étais là.\nYou know I love you!\tTu sais que je t'aime !\nYou know I love you!\tVous savez que je vous aime !\nYou know who I mean.\tVous savez de qui je veux parler.\nYou know why I left.\tVous savez pourquoi je suis partie.\nYou look incredible.\tTu es superbe.\nYou look incredible.\tVous êtes superbe.\nYou look like a boy.\tTu as l'air d'un garçon.\nYou look like a boy.\tVous avez l'air d'un garçon.\nYou look like a cop.\tT'as l'air d'un flic.\nYou look like a cop.\tVous avez l'air d'un flic.\nYou look like a kid.\tTu as l'air d'un enfant.\nYou look like a kid.\tVous ressemblez à une enfant.\nYou look pale today.\tTu as l'air pâle aujourd'hui.\nYou look very tired.\tVous avez l'air très fatigué.\nYou look very tired.\tTu as l'air très fatigué.\nYou look very tired.\tVous avez l'air très fatiguée.\nYou look very tired.\tVous avez l'air très fatigués.\nYou look very tired.\tVous avez l'air très fatiguées.\nYou look very tired.\tTu as l'air très fatiguée.\nYou lost an earring.\tTu as perdu une boucle d'oreille.\nYou lost an earring.\tVous avez perdu une boucle d'oreille.\nYou may come in now.\tTu peux entrer, maintenant.\nYou may come in now.\tVous pouvez entrer, maintenant.\nYou may go anywhere.\tTu peux aller n'importe où.\nYou may go anywhere.\tVous pouvez aller n'importe où.\nYou may not like it.\tIl se peut que vous ne l'aimiez pas.\nYou may not like it.\tIl se peut que tu ne l'aimes pas.\nYou may rely on him.\tTu peux lui faire confiance.\nYou must be in love.\tVous devez être amoureux.\nYou must be in love.\tVous devez être amoureuse.\nYou must be in love.\tVous devez être amoureuses.\nYou must be in love.\tTu dois être amoureux.\nYou must be in love.\tTu dois être amoureuse.\nYou must be kidding!\tTu veux plaisanter !\nYou must be kidding!\tVous voulez plaisanter !\nYou must not say it.\tVous devez ne pas le dire.\nYou must not say it.\tTu dois ne pas le dire.\nYou must study more.\tTu dois étudier plus.\nYou must study more.\tTu dois davantage étudier.\nYou need a joystick.\tTu as besoin d'une manette de jeu.\nYou need a joystick.\tVous avez besoin d'une manette de jeu.\nYou need a joystick.\tIl vous faut une manette de jeu.\nYou need a joystick.\tIl te faut une manette de jeu.\nYou need to do this.\tIl te faut le faire.\nYou need to do this.\tIl vous faut le faire.\nYou need to grow up.\tIl te faut grandir.\nYou need to grow up.\tIl vous faut grandir.\nYou need to help me.\tTu dois m'aider.\nYou need to move on.\tIl vous faut avancer.\nYou need to move on.\tIl vous faut passer à autre chose.\nYou need to move on.\tIl te faut avancer.\nYou need to move on.\tIl te faut passer à autre chose.\nYou need to wake up.\tIl faut te réveiller.\nYou never asked why.\tTu n'as jamais demandé pourquoi.\nYou never asked why.\tVous n'avez jamais demandé pourquoi.\nYou owe me big time.\tTu me dois une fière chandelle.\nYou passed the test.\tTu as réussi l'examen.\nYou passed the test.\tVous avez réussi l'examen.\nYou ran a red light.\tTu es passé au feu rouge.\nYou ran a red light.\tVous êtes passé au feu rouge.\nYou ran a red light.\tVous êtes passés au feu rouge.\nYou ran a red light.\tVous êtes passée au feu rouge.\nYou ran a red light.\tVous êtes passées au feu rouge.\nYou ran a red light.\tTu es passée au feu rouge.\nYou ran a red light.\tTu as grillé un feu rouge.\nYou really annoy me.\tTu m'ennuies vraiment.\nYou really annoy me.\tTu m'importunes vraiment.\nYou really annoy me.\tVous m'importunez vraiment.\nYou really annoy me.\tVous m'ennuyez vraiment.\nYou really are nuts.\tVous êtes vraiment cinglés.\nYou really are nuts.\tVous êtes vraiment fous.\nYou reek of alcohol.\tTu pues l'alcool.\nYou reek of alcohol.\tVous puez l'alcool.\nYou see what I mean?\tTu vois ce que je veux dire ?\nYou see what I mean?\tVous voyez ce que je veux dire ?\nYou should eat more.\tTu devrais manger davantage.\nYou should eat more.\tVous devriez manger davantage.\nYou should exercise.\tTu devrais faire de l'exercice.\nYou should exercise.\tVous devriez faire de l'exercice.\nYou should meet him.\tTu devrais le rencontrer.\nYou should meet him.\tVous devriez le rencontrer.\nYou should thank me.\tTu devrais me remercier.\nYou smell wonderful.\tTon parfum est délicieux.\nYou smell wonderful.\tTu sens super bon.\nYou sure are pretty.\tTu es vraiment jolie.\nYou sure are pretty.\tC'est vrai que tu es mignonne !\nYou were both drunk.\tNous étions tous deux ivres.\nYou were right, too.\tTu avais aussi raison.\nYou were right, too.\tVous aviez aussi raison.\nYou won't be harmed.\tOn ne te fera pas de mal.\nYou won't be harmed.\tOn ne vous fera pas de mal.\nYou won't die today.\tTu ne mourras pas aujourd'hui.\nYou won't die today.\tVous ne mourrez pas aujourd'hui.\nYou won't need that.\tTu n'en auras pas besoin.\nYou won't need that.\tVous n'en aurez pas besoin.\nYou'd better not go.\tTu ferais mieux de ne pas y aller.\nYou'd better not go.\tTu ferais mieux de ne pas t'y rendre.\nYou'd better not go.\tVous feriez mieux de ne pas y aller.\nYou'd better not go.\tVous feriez mieux de ne pas vous y rendre.\nYou'll be all right.\tÇa va très bien aller pour toi.\nYou'll be all right.\tÇa va très bien aller pour vous.\nYou'll catch a cold.\tTu vas prendre froid.\nYou'll give me away.\tTu me trahiras.\nYou'll give me away.\tVous me trahirez.\nYou're a funny girl.\tT'es une drôle de fille.\nYou're a funny girl.\tT'es une fille marrante.\nYou're all I've got.\tTu es tout ce que j'ai.\nYou're all I've got.\tVous êtes tout ce que j'ai.\nYou're all the same.\tVous êtes tous pareils.\nYou're all the same.\tVous êtes toutes pareilles.\nYou're almost right.\tTu as presque raison.\nYou're cantankerous.\tTu es acariâtre.\nYou're cantankerous.\tVous êtes acariâtre.\nYou're going to die.\tVous allez mourir.\nYou're going to die.\tTu vas mourir.\nYou're grown up now.\tVous êtes des grands maintenant.\nYou're grown up now.\tTu es un grand maintenant.\nYou're incorrigible.\tTu es incorrigible.\nYou're incorrigible.\tVous êtes incorrigible.\nYou're incorrigible.\tVous êtes incorrigibles.\nYou're irresistible.\tT'es irrésistible.\nYou're kind of cute.\tTu es mignon, dans ton genre.\nYou're kind of cute.\tTu es mignonne, dans ton genre.\nYou're kind of cute.\tVous êtes mignon, dans votre genre.\nYou're kind of cute.\tVous êtes mignons, dans votre genre.\nYou're kind of cute.\tVous êtes mignonne, dans votre genre.\nYou're kind of cute.\tVous êtes mignonnes, dans votre genre.\nYou're no different.\tVous n'êtes pas différent.\nYou're no different.\tVous n'êtes pas différente.\nYou're no different.\tVous n'êtes pas différents.\nYou're no different.\tVous n'êtes pas différentes.\nYou're no different.\tTu n'es pas différent.\nYou're no different.\tTu n'es pas différente.\nYou're not a doctor.\tVous n’êtes pas un médecin.\nYou're not a doctor.\tVous n'êtes pas médecin.\nYou're not a doctor.\tVous n'êtes pas toubib.\nYou're not a doctor.\tTu n'es pas médecin.\nYou're not bleeding.\tTu ne saignes pas.\nYou're not bleeding.\tVous ne saignez pas.\nYou're not dead yet.\tTu n'es pas encore mort.\nYou're not dead yet.\tTu n'es pas encore morte.\nYou're not dead yet.\tVous n'êtes pas encore mort.\nYou're not dead yet.\tVous n'êtes pas encore morte.\nYou're not dead yet.\tVous n'êtes pas encore morts.\nYou're not dead yet.\tVous n'êtes pas encore mortes.\nYou're not finished.\tTu n'en as pas terminé.\nYou're not finished.\tVous n'en avez pas terminé.\nYou're not that old.\tTu n'es pas si vieille.\nYou're not that old.\tTu n'es pas si vieux.\nYou're not that old.\tVous n'êtes pas si vieille.\nYou're not that old.\tVous n'êtes pas si vieux.\nYou're not that old.\tVous n'êtes pas si vieilles.\nYou're not too late.\tTu n'es pas trop en retard.\nYou're not too late.\tVous n'êtes pas trop en retard.\nYou're off the hook.\tTu es tiré d'affaire.\nYou're off the hook.\tTu es tirée d'affaire.\nYou're off the hook.\tVous êtes tiré d'affaire.\nYou're off the hook.\tVous êtes tirées d'affaire.\nYou're off the hook.\tVous êtes tirés d'affaire.\nYou're off the hook.\tVous êtes tirée d'affaire.\nYou're out of booze.\tVous êtes à sec.\nYou're out of booze.\tT'es à sec.\nYou're out of booze.\tT'a plus de bibine.\nYou're out of booze.\tC'est marée basse.\nYou're out of order.\tTu es hors-service.\nYou're out of sugar.\tTu es à court de sucre.\nYou're overreacting.\tTu dramatises.\nYou're overreacting.\tVous dramatisez.\nYou're overreacting.\tTu réagis de manière excessive.\nYou're overreacting.\tVous réagissez de manière excessive.\nYou're part of this.\tTu en fais partie.\nYou're part of this.\tVous en faites partie.\nYou're poisoning me.\tTu m'empoisonnes.\nYou're poisoning me.\tVous m'empoisonnez.\nYou're so impatient.\tTu es tellement impatient.\nYou're so impatient.\tTu es tellement impatiente.\nYou're so impatient.\tVous êtes tellement impatient.\nYou're so impatient.\tVous êtes tellement impatiente.\nYou're so impatient.\tVous êtes tellement impatients.\nYou're so impatient.\tVous êtes tellement impatientes.\nYou're still my son.\tTu es toujours mon fils.\nYou're such a flirt.\tVous êtes un de ces dragueurs !\nYou're such a flirt.\tVous êtes une de ces dragueuses !\nYou're such a flirt.\tTu es un de ces dragueurs !\nYou're such a flirt.\tTu es une de ces dragueuse !\nYou're the greatest.\tTu es le meilleur.\nYou're the greatest.\tTu es la meilleure.\nYou're the greatest.\tVous êtes le meilleur.\nYou're the greatest.\tVous êtes la meilleure.\nYou're the prisoner.\tC'est toi le prisonnier.\nYou're the sweetest.\tVous êtes la plus mignonne.\nYou're the sweetest.\tTu es la plus mignonne.\nYou're too trusting.\tTu es trop confiant.\nYou're too trusting.\tTu es trop confiante.\nYou're too trusting.\tVous êtes trop confiant.\nYou're too trusting.\tVous êtes trop confiante.\nYou're too trusting.\tVous êtes trop confiants.\nYou're too trusting.\tVous êtes trop confiantes.\nYou're very curious.\tVous êtes très curieux.\nYou're very curious.\tVous êtes fort curieux.\nYou're very curious.\tVous êtes très curieuse.\nYou're very curious.\tVous êtes très curieuses.\nYou're very curious.\tVous êtes fort curieuse.\nYou're very curious.\tVous êtes fort curieuses.\nYou're very curious.\tTu es fort curieux.\nYou're very curious.\tTu es fort curieuse.\nYou're very curious.\tTu es très curieux.\nYou're very curious.\tTu es très curieuse.\nYou're very forward.\tVous êtes très effrontée.\nYou're very forward.\tVous êtes fort effrontée.\nYou're very forward.\tVous êtes très effronté.\nYou're very forward.\tVous êtes très effrontées.\nYou're very forward.\tVous êtes très effrontés.\nYou're very forward.\tVous êtes fort effronté.\nYou're very forward.\tVous êtes fort effrontées.\nYou're very forward.\tVous êtes fort effrontés.\nYou're very forward.\tTu es fort effrontée.\nYou're very forward.\tTu es très effrontée.\nYou're very forward.\tTu es fort effronté.\nYou're very forward.\tTu es très effronté.\nYou're very helpful.\tTu es très serviable.\nYou're very helpful.\tTu es fort serviable.\nYou're very helpful.\tVous êtes très serviable.\nYou're very helpful.\tVous êtes fort serviable.\nYou're very helpful.\tVous êtes très serviables.\nYou're very helpful.\tVous êtes fort serviables.\nYou're very stylish.\tTu es très élégante.\nYou're very stylish.\tTu es fort élégante.\nYou're very stylish.\tTu es très élégant.\nYou're very stylish.\tTu es fort élégant.\nYou're very stylish.\tVous êtes très élégante.\nYou're very stylish.\tVous êtes très élégant.\nYou're very stylish.\tVous êtes très élégantes.\nYou're very stylish.\tVous êtes très élégants.\nYou're very stylish.\tVous êtes fort élégante.\nYou're very stylish.\tVous êtes fort élégant.\nYou're very stylish.\tVous êtes fort élégantes.\nYou're very stylish.\tVous êtes fort élégants.\nYou're wasting ammo.\tVous gaspillez des munitions.\nYou're wasting ammo.\tTu gaspilles des munitions.\nYou're wasting time.\tVous gaspillez du temps.\nYou're wasting time.\tTu gaspilles du temps.\nYou're with friends.\tTu es avec des amis.\nYou're with friends.\tTu es avec des amies.\nYou're with friends.\tVous êtes avec des amis.\nYou're with friends.\tVous êtes avec des amies.\nYou're working hard.\tTu travailles dur.\nYou're working hard.\tVous travaillez dur.\nYou've gone too far.\tTu es allé trop loin.\nYou've gone too far.\tTu es allée trop loin.\nYour French is good.\tTon français est bon.\nYour French is good.\tVotre français est bon.\nYour father is tall.\tVotre père est grand.\nYour feet are dirty.\tTes pieds sont sales.\nYour feet are dirty.\tVos pieds sont sales.\nYour guess is wrong.\tVotre hypothèse est erronée.\nYour guess is wrong.\tTon hypothèse est erronée.\nYour hair is pretty.\tTes cheveux sont jolis.\nYour memory is good.\tTu as une bonne mémoire.\nYour memory is good.\tTon souvenir est bon.\nYour order is ready.\tVotre commande est prête.\nYour shoes are here.\tTes chaussures sont ici.\nYour zipper is open.\tTa braguette est ouverte !\nYour zipper is open.\tVotre braguette est ouverte !\nYours is over there.\tLe tien est par là-bas.\n\"I forgot,\" she said.\t\"J'ai oublié\", répondit-elle.\nA cat has nine lives.\tUn chat a neuf vies.\nA cup of tea, please.\tUne tasse de thé, s'il vous plait.\nA horse is an animal.\tUn cheval, c'est un animal.\nA man must be honest.\tUn homme doit être honnête.\nA piano is expensive.\tUn piano coûte cher.\nA piano is expensive.\tUn piano est cher.\nAcid eats into metal.\tL'acide attaque le métal.\nAdd more water to it.\tAjoutez-y davantage d'eau.\nAll I have is a book.\tTout ce que j'ai, c'est un livre.\nAll men are brothers.\tTous les hommes sont frères.\nAll my stuff is here.\tToutes mes affaires sont ici.\nAll that has changed.\tTout cela a changé.\nAll things must pass.\tToutes les choses doivent passer.\nAll this has changed.\tTout ceci a changé.\nAll we need is water.\tTout ce dont nous avons besoin, c'est de l'eau.\nAm I under suspicion?\tSuis-je soupçonné ?\nAm I under suspicion?\tSuis-je soupçonnée ?\nAm I under suspicion?\tFais-je l'objet de soupçons ?\nAm I wasting my time?\tEst-ce que je perds mon temps ?\nAnother man has died.\tUn autre homme est mort.\nAny child knows that.\tN'importe quel enfant sait cela.\nAny of you can do it.\tQuiconque d'entre vous peut le faire.\nAny of you can do it.\tN'importe lequel d'entre vous peut la faire.\nAny of you can do it.\tL'un quelconque d'entre vous peut faire ça.\nAnyone could do that.\tN'importe qui pourrait faire ça.\nAnyone could do that.\tN'importe qui pourrait faire cela.\nAnyone could do that.\tN'importe qui pouvait faire ça.\nAnyone could do that.\tN'importe qui pouvait faire cela.\nAnything is possible.\tTout est possible.\nApples grow on trees.\tLes pommes croissent sur des arbres.\nApples grow on trees.\tLes pommes poussent sur des arbres.\nAre they coming, too?\tViennent-ils aussi ?\nAre they coming, too?\tViennent-elles aussi ?\nAre those explosives?\tEst-ce que ce sont des explosifs?\nAre we starting soon?\tOn commence bientôt ?\nAre you able to swim?\tSais-tu nager ?\nAre you able to type?\tSavez-vous taper à la machine ?\nAre you afraid of it?\tVous en avez peur?\nAre you afraid of it?\tTu en as peur?\nAre you afraid of it?\tEn as-tu peur ?\nAre you afraid of it?\tEn avez-vous peur ?\nAre you afraid of me?\tAs-tu peur de moi ?\nAre you afraid of me?\tAvez-vous peur de moi ?\nAre you almost ready?\tEs-tu bientôt prêt ?\nAre you almost ready?\tEs-tu bientôt prête ?\nAre you almost ready?\tÊtes-vous bientôt prêt ?\nAre you almost ready?\tÊtes-vous bientôt prête ?\nAre you almost ready?\tÊtes-vous bientôt prêts ?\nAre you almost ready?\tÊtes-vous bientôt prêtes ?\nAre you eating lunch?\tEst-ce que tu déjeunes ?\nAre you eating lunch?\tTu déjeunes ?\nAre you eating lunch?\tVous déjeunez ?\nAre you feeling sick?\tTe sens-tu malade ?\nAre you feeling sick?\tVous sentez-vous malade ?\nAre you following me?\tEst-ce que tu me suis ?\nAre you following me?\tEst-ce que vous me suivez ?\nAre you following me?\tVous me suivez ?\nAre you freaking out?\tT'as les foies ?\nAre you freaking out?\tVous avez les foies ?\nAre you free tonight?\tEs-tu libre ce soir ?\nAre you going or not?\tY vas-tu ou pas ?\nAre you going or not?\tY allez-vous ou pas ?\nAre you imitating me?\tEs-tu en train de m'imiter ?\nAre you imitating me?\tÊtes-vous en train de m'imiter ?\nAre you leaving soon?\tTu pars bientôt ?\nAre you mentally ill?\tEs-tu mentalement dérangé ?\nAre you mentally ill?\tEs-tu un malade mental ?\nAre you mentally ill?\tÊtes-vous mentalement dérangé ?\nAre you mentally ill?\tÊtes-vous mentalement dérangée ?\nAre you mentally ill?\tÊtes-vous mentalement dérangés ?\nAre you mentally ill?\tÊtes-vous mentalement dérangées ?\nAre you mentally ill?\tEs-tu mentalement dérangée ?\nAre you mentally ill?\tÊtes-vous un malade mental ?\nAre you mentally ill?\tÊtes-vous une malade mentale ?\nAre you mentally ill?\tÊtes-vous des malades mentaux ?\nAre you mentally ill?\tÊtes-vous des malades mentales ?\nAre you ready to fly?\tÊtes-vous prêt à voler ?\nAre you ready to fly?\tEs-tu prête à voler ?\nAre you ready to fly?\tEs-tu prêt à voler ?\nAre you retired, Tom?\tEst-ce que tu es en retraite, Tom ?\nAre you retired, Tom?\tEst-ce que vous êtes en retraite, Tom ?\nAre you scared of me?\tAs-tu peur de moi ?\nAre you scared of me?\tAvez-vous peur de moi ?\nAre you still afraid?\tAs-tu encore peur ?\nAre you still afraid?\tAvez-vous encore peur ?\nAre you still around?\tÊtes-vous encore dans les parages ?\nAre you still scared?\tEs-tu toujours effrayé ?\nAre you still scared?\tEs-tu toujours effrayée ?\nAre you still scared?\tÊtes-vous toujours effrayées ?\nAre you still scared?\tÊtes-vous toujours effrayés ?\nAre you still sleepy?\tEs-tu encore endormi ?\nAre you still sleepy?\tEs-tu encore endormie ?\nAre you still sleepy?\tAs-tu encore sommeil ?\nAre you still sleepy?\tÊtes-vous encore endormi ?\nAre you still sleepy?\tÊtes-vous encore endormie ?\nAre you still sleepy?\tÊtes-vous encore endormis ?\nAre you still sleepy?\tÊtes-vous encore endormies ?\nAre you still sleepy?\tAvez-vous encore sommeil ?\nAre you still sleepy?\tTu as encore sommeil ?\nAre you talking shop?\tVous parlez boulot ?\nAre you talking shop?\tTu parles boulot ?\nAre you their mother?\tÊtes-vous leur mère ?\nAre you their mother?\tEs-tu leur mère ?\nAre you with someone?\tEs-tu avec quelqu'un ?\nAre you with someone?\tÊtes-vous avec quelqu'un ?\nAre you with the FBI?\tEs-tu avec le FBI ?\nAre you with the FBI?\tÊtes-vous avec le FBI ?\nAre you with us, Tom?\tEs-tu avec nous, Tom ?\nAre you with us, Tom?\tÊtes-vous avec nous, Tom ?\nAre your hands clean?\tTes mains sont-elles propres ?\nAre your hands clean?\tVos mains sont-elles propres ?\nAren't they adorable?\tNe sont-ils pas adorables ?\nAren't they adorable?\tNe sont-elles pas adorables ?\nAren't you convinced?\tN'es-tu pas convaincu?\nAren't you convinced?\tN'es-tu pas convaincue?\nBaby teeth are sharp.\tLes dents des bébés sont acérées.\nBe proud of yourself.\tSoyez fier de vous.\nBe proud of yourself.\tSoyez fière de vous.\nBe proud of yourself.\tSoyez fiers de vous.\nBe proud of yourself.\tSoyez fières de vous.\nBe proud of yourself.\tSois fier de toi.\nBe proud of yourself.\tSois fière de toi.\nBe quiet, all of you.\tRestez tous tranquilles !\nBe quiet, all of you.\tRestez toutes tranquilles !\nBe sure to come at 3.\tTâche d'arriver à trois heures.\nBeauty is subjective.\tLa beauté est subjective.\nBeware of imitations.\tAttention aux imitations.\nBeware of imitations.\tMéfiez-vous des imitations.\nBirds fly in the sky.\tDes oiseaux volent dans le ciel.\nBoston is a big city.\tBoston est une grande ville.\nBoth dogs are asleep.\tLes deux chiens sont endormis.\nBoys are not welcome.\tLes garçons ne sont pas bienvenus.\nBring all your money.\tAmène tout ton argent !\nBring all your money.\tAmenez tout votre argent !\nBring me a dry towel.\tApporte-moi une serviette sèche.\nBring me the Kleenex.\tApporte-moi les Kleenex.\nBusiness is business.\tLes affaires sont les affaires.\nBut you're not there.\tMais tu n'es pas là-bas.\nBuy the full version.\tAchetez la version complète.\nCall me this evening.\tAppelez-moi ce soir.\nCall me this evening.\tAppelle-moi ce soir.\nCall me when you can.\tAppelle-moi quand tu peux.\nCall me when you can.\tAppelez-moi quand vous pouvez.\nCan I be your friend?\tPuis-je être ton ami ?\nCan I call you again?\tPuis-je te rappeler ?\nCan I call you again?\tPuis-je vous rappeler ?\nCan I come backstage?\tPuis-je venir dans les coulisses?\nCan I extend my stay?\tPuis-je prolonger mon séjour ?\nCan I go out to play?\tPuis-je aller jouer dehors ?\nCan I speak with you?\tEst-ce que je peux te parler ?\nCan I take a day off?\tPuis-je prendre un jour de congé ?\nCan I take a message?\tPuis-je prendre un message ?\nCan I think about it?\tPuis-je y réfléchir ?\nCan I turn on the TV?\tPuis-je allumer la télévision ?\nCan I use your phone?\tJe peux utiliser ton téléphone ?\nCan he speak English?\tSait-il parler anglais ?\nCan somebody help me?\tQuelqu'un peut-il m'aider ?\nCan that be achieved?\tEst-ce réalisable ?\nCan we afford it now?\tEn avons-nous actuellement les moyens ?\nCan we hurry this up?\tPouvons-nous accélérer ceci ?\nCan you come with us?\tPeux-tu venir avec nous ?\nCan you deliver this?\tPouvez-vous livrer ceci ?\nCan you do it faster?\tPeux-tu le faire plus vite ?\nCan you do it faster?\tArrives-tu à le faire plus vite ?\nCan you do it faster?\tPeux-tu le faire plus rapidement ?\nCan you do it faster?\tArrives-tu à le faire plus rapidement ?\nCan you do it faster?\tPouvez-vous le faire plus vite ?\nCan you do it faster?\tPouvez-vous le faire plus rapidement ?\nCan you do it faster?\tÊtes-vous en mesure de le faire plus vite ?\nCan you do it faster?\tÊtes-vous en mesure de le faire plus rapidement ?\nCan you do it faster?\tEs-tu en mesure de le faire plus vite ?\nCan you do it faster?\tEs-tu en mesure de le faire plus rapidement ?\nCan you do it faster?\tArrivez-vous à le faire plus vite ?\nCan you do it faster?\tArrivez-vous à le faire plus rapidement ?\nCan you fix a toilet?\tSais-tu réparer des toilettes ?\nCan you guess my age?\tPeux-tu deviner mon âge ?\nCan you make it safe?\tPeux-tu t'en sortir sain et sauf ?\nCan you make it safe?\tPouvez-vous vous en sortir sain et sauf ?\nCan you make it safe?\tPouvez-vous vous en sortir sains et saufs ?\nCan you make it safe?\tPouvez-vous vous en sortir saines et sauves ?\nCan you make it safe?\tPouvez-vous vous en sortir saine et sauve ?\nCan you make it safe?\tPeux-tu t'en sortir saine et sauve ?\nCan you ride a horse?\tSavez-vous monter à cheval ?\nCan you ride a horse?\tPeux-tu monter un cheval ?\nCan you ride a horse?\tPouvez-vous monter à cheval ?\nCan you spare a buck?\tPeux-tu me prêter 1 dollar ?\nCan you speak French?\tParlez-vous français ?\nCan you speak French?\tSavez-vous parler français ?\nCan you speak French?\tSais-tu parler français ?\nCan't we go with Tom?\tNe pouvons-nous pas aller avec Tom ?\nCan't we start again?\tNe pouvons-nous pas recommencer ?\nCats hate to get wet.\tLes chats ont horreur de se mouiller.\nCats have nine lives.\tUn chat a neuf vies.\nCattle feed on grass.\tLe bétail se nourrit d'herbe.\nChange is inevitable.\tLe changement est inévitable.\nChanges came quickly.\tLes changements survinrent rapidement.\nChanges came quickly.\tLes changements sont rapidement survenus.\nChildren need loving.\tLes enfants ont besoin d'amour.\nClean up the kitchen.\tNettoie la cuisine.\nClothes make the man.\tL'habit fait l'homme.\nCome back in an hour.\tRevenez dans une heure !\nCome back in an hour.\tReviens dans une heure !\nCome in for a minute.\tEntre une minute.\nCome on, let's do it.\tAllez, faisons-le !\nCome on, let's do it.\tAllez, action !\nCome on, spit it out!\tAllez, accouche !\nCome outside with me.\tViens avec moi dehors.\nCome with me, please.\tVenez avec moi, je vous prie.\nContext is important.\tLe contexte est important.\nCotton absorbs water.\tLe coton absorbe l'eau.\nCould I borrow a saw?\tPourrais-je emprunter une scie ?\nCould I get some tea?\tPourrais-je avoir du thé ?\nCould we have a fork?\tPouvons-nous avoir une fourchette ?\nCould you fill me in?\tPourrais-tu me mettre au courant ?\nCould you fill me in?\tPourriez-vous me mettre au courant ?\nDating is exhausting.\tSortir avec des garçons est épuisant.\nDating is exhausting.\tSortir avec des filles est épuisant.\nDiamonds are forever.\tLes diamants sont éternels.\nDid I give it to you?\tVous l'ai-je donné ?\nDid I give it to you?\tVous l'ai-je donnée ?\nDid I give it to you?\tTe l'ai-je donné ?\nDid I give it to you?\tTe l'ai-je donnée ?\nDid I hear you right?\tVous ai-je bien entendu ?\nDid I hear you right?\tVous ai-je bien entendue ?\nDid I hear you right?\tT'ai-je bien entendu ?\nDid I hear you right?\tT'ai-je bien entendue ?\nDid I hear you right?\tVous ai-je bien entendus ?\nDid I hear you right?\tVous ai-je bien entendues ?\nDid I miss something?\tAi-je manqué quelque chose ?\nDid I miss something?\tAi-je manqué quelque chose ?\nDid I really do that?\tAi-je vraiment fait cela ?\nDid anybody get hurt?\tQuiconque a-t-il été blessé ?\nDid he get a receipt?\tA-t-il eu un reçu ?\nDid he pass the exam?\tA-t-il réussi à l'examen?\nDid he pass the test?\tA-t-il réussi à l'examen?\nDid he say something?\tA-t-il dit quelque chose ?\nDid it go well today?\tCela s'est-il bien passé aujourd'hui ?\nDid something happen?\tEst-il arrivé quelque chose?\nDid the car look old?\tEst-ce que la voiture paraissait vieille ?\nDid we hit something?\tAvons-nous heurté quelque chose ?\nDid we miss anything?\tAvons-nous manqué quelque chose ?\nDid you behave today?\tTu t'es bien tenu aujourd'hui ?\nDid you do your work?\tAs-tu fait ton travail ?\nDid you foresee this?\tL'avez-vous prévu ?\nDid you foresee this?\tL'as-tu prévu ?\nDid you get all that?\tAs-tu obtenu tout ça ?\nDid you get all that?\tAvez-vous obtenu tout ça ?\nDid you just hit Tom?\tEst-ce que tu viens juste de taper Tom ?\nDid you just hit Tom?\tEst-ce que vous venez juste de taper Tom ?\nDid you kill anybody?\tAs-tu tué qui que ce soit ?\nDid you kill anybody?\tAvez-vous tué qui que ce soit ?\nDid you kiss anybody?\tAs-tu embrassé qui que ce soit ?\nDid you kiss anybody?\tAvez-vous embrassé qui que ce soit ?\nDid you see a doctor?\tAs-tu vu un docteur ?\nDid you see that car?\tAvez-vous vu cette voiture ?\nDid you see that car?\tAs-tu vu cette voiture ?\nDid you see the show?\tAvez-vous vu le spectacle ?\nDid you see the show?\tAs-tu vu le spectacle ?\nDid you speak at all?\tAs-tu parlé le moins du monde ?\nDid you speak at all?\tAvez-vous parlé le moins du monde ?\nDid you tell anybody?\tL'avez-vous dit à qui que ce soit ?\nDid you tell anybody?\tL'as-tu dit à qui que ce soit ?\nDid you volunteer us?\tNous as-tu désignés ?\nDid you volunteer us?\tNous as-tu désignées ?\nDid you volunteer us?\tNous avez-vous désignés ?\nDid you volunteer us?\tNous avez-vous désignées ?\nDid you wait for Tom?\tAs-tu attendu Tom ?\nDid you wait for Tom?\tAvez-vous attendu Tom ?\nDid you win the case?\tAs-tu eu gain de cause ?\nDid you win the case?\tAvez-vous eu gain de cause ?\nDid you win the race?\tAs-tu gagné la course ?\nDid you win the race?\tAvez-vous gagné la course ?\nDidn't I tell you so?\tNe te l'avais-je pas dit ?\nDidn't I tell you so?\tNe vous l'avais-je pas dit ?\nDidn't that seem odd?\tCela n'a-t-il pas semblé bizarre ?\nDinner was excellent.\tLe dîner était excellent.\nDo I have to pay you?\tMe faut-il vous payer ?\nDo I have to pay you?\tMe faut-il te payer ?\nDo I have to pay you?\tDois-je vous payer ?\nDo I have to pay you?\tDois-je te payer ?\nDo I have to undress?\tDois-je me déshabiller ?\nDo I have to undress?\tDois-je me dévêtir ?\nDo I have to undress?\tMe faut-il me dévêtir ?\nDo I have to undress?\tMe faut-il me déshabiller ?\nDo come and visit us.\tVenez nous rendre visite !\nDo come by all means.\tVenez par tous les moyens.\nDo what he tells you.\tFais ce qu'il te dit.\nDo what he tells you.\tFaites ce qu'il vous dit.\nDo whatever it takes.\tFaites ce qui est nécessaire !\nDo whatever you like.\tFais ce qui te chante !\nDo whatever you like.\tFaites ce qui vous chante !\nDo whatever you want.\tFais ce que tu veux.\nDo you carry weapons?\tPortes-tu des armes ?\nDo you carry weapons?\tPortez-vous des armes ?\nDo you drink alcohol?\tBuvez-vous de l'alcool ?\nDo you drink alcohol?\tBois-tu de l'alcool ?\nDo you dye your hair?\tTe teins-tu les cheveux ?\nDo you enjoy talking?\tAimez-vous discuter ?\nDo you enjoy talking?\tAimes-tu discuter ?\nDo you fancy a drink?\tEnvie d'un verre ?\nDo you fancy a drink?\tAs-tu envie d'un verre ?\nDo you fancy a drink?\tAvez-vous envie d'un verre ?\nDo you feel up to it?\tT'en sens-tu à la hauteur ?\nDo you feel up to it?\tVous en sentez-vous à la hauteur ?\nDo you get up at six?\tTu te lèves à six heures ?\nDo you have a camera?\tAs-tu un appareil photo ?\nDo you have a family?\tAvez-vous une famille ?\nDo you have a family?\tAs-tu une famille ?\nDo you have a minute?\tAs-tu une minute ?\nDo you have a minute?\tAvez-vous une minute ?\nDo you have a moment?\tAvez-vous un instant ?\nDo you have a moment?\tDisposez-vous d'un instant ?\nDo you have a pencil?\tAs-tu un crayon ?\nDo you have a tattoo?\tAs-tu un tatouage ?\nDo you have a tattoo?\tAvez-vous un tatouage ?\nDo you have a ticket?\tAs-tu un ticket ?\nDo you have a ticket?\tAs-tu un billet ?\nDo you have a ticket?\tAvez-vous un billet ?\nDo you have a violin?\tAs-tu un violon ?\nDo you have an alibi?\tDisposes-tu d'un alibi ?\nDo you have an alibi?\tDisposez-vous d'un alibi ?\nDo you have any beer?\tAvez-vous une quelconque bière ?\nDo you have any cash?\tAs-tu le moindre liquide ?\nDo you have any cash?\tAs-tu le moindre argent liquide ?\nDo you have any cash?\tAvez-vous le moindre liquide ?\nDo you have any cash?\tAvez-vous le moindre argent liquide ?\nDo you have any kids?\tAvez-vous des enfants ?\nDo you have any kids?\tAvez-vous des gosses ?\nDo you have any kids?\tAs-tu des gosses ?\nDo you have the book?\tAvez-vous le livre ?\nDo you have the book?\tAs-tu le livre ?\nDo you have the time?\tAvez-vous l'heure ?\nDo you know anything?\tSavez-vous la moindre chose ?\nDo you know his name?\tConnaissez-vous son nom ?\nDo you know his name?\tSavez-vous son nom ?\nDo you know his name?\tConnais-tu son nom ?\nDo you know his name?\tSais-tu son nom ?\nDo you know that guy?\tConnaissez-vous ce type ?\nDo you know that guy?\tConnais-tu ce gars ?\nDo you know who I am?\tTu sais qui je suis ?\nDo you know who I am?\tSavez-vous qui je suis ?\nDo you know who I am?\tSais-tu qui je suis ?\nDo you like studying?\tAimes-tu étudier ?\nDo you like studying?\tAimez-vous étudier ?\nDo you like to dance?\tAimez-vous danser ?\nDo you like to dance?\tAimez-vous danser ?\nDo you like to dance?\tAimes-tu danser ?\nDo you like to study?\tAimes-tu étudier ?\nDo you like to study?\tAimez-vous étudier ?\nDo you mind if I sit?\tVoyez-vous un inconvénient à ce que je m'asseye ?\nDo you mind if I sit?\tVois-tu un inconvénient à ce que je m'asseye ?\nDo you need anything?\tAs-tu besoin de quoi que ce soit ?\nDo you need anything?\tAvez-vous besoin de quoi que ce soit ?\nDo you need our help?\tAs-tu besoin de notre aide ?\nDo you need our help?\tAvez-vous besoin de notre aide ?\nDo you need the keys?\tT'as besoin des clefs ?\nDo you need the keys?\tAs-tu besoin des clés ?\nDo you not like them?\tNe les aimez-vous pas ?\nDo you not like them?\tNe les aimes-tu pas ?\nDo you run every day?\tCourez-vous tous les jours ?\nDo you speak Chinese?\tParlez-vous chinois ?\nDo you speak Chinese?\tParles-tu chinois ?\nDo you speak English?\tParlez-vous anglais ?\nDo you speak English?\tSavez-vous parler anglais ?\nDo you speak English?\tSavez-vous parler anglais ?\nDo you speak English?\tSais-tu parler anglais ?\nDo you speak English?\tTu parles anglais ?\nDo you still need me?\tEst-ce que tu as toujours besoin de moi ?\nDo you study English?\tÉtudies-tu l'anglais ?\nDo you study English?\tÉtudiez-vous l'anglais ?\nDo you understand me?\tVous me comprenez ?\nDo you understand me?\tMe comprenez-vous ?\nDo you understand me?\tMe comprends-tu ?\nDo you understand me?\tMe comprenez-vous ?\nDo you understand me?\tMe comprends-tu ?\nDo you want anything?\tTu veux quelque chose ?\nDo you want anything?\tVeux-tu quelque chose ?\nDo you want anything?\tVoulez-vous quelque chose ?\nDo you want anything?\tVeux-tu quelque chose ?\nDo you want children?\tVoulez-vous avoir des enfants?\nDo you want to dance?\tAs-tu envie de danser ?\nDo you want to do it?\tVeux-tu le faire ?\nDo you want to do it?\tVoulez-vous le faire ?\nDo you want to go in?\tVeux-tu entrer ?\nDo you want to go in?\tVoulez-vous entrer ?\nDo you want to leave?\tVous voulez partir ?\nDo you wear a kimono?\tPortez-vous un kimono ?\nDo your homework now.\tFais tes devoirs maintenant.\nDo your homework now.\tFaites vos devoirs maintenant.\nDo your homework now.\tFais ton travail de classe maintenant.\nDoes anybody hear me?\tQuiconque m'entend-il ?\nDoes anybody hear me?\tQui que ce soit m'entend-il ?\nDoes anyone disagree?\tQuiconque est-il en désaccord ?\nDoes he like his job?\tApprécie-t-il son emploi ?\nDolphins are curious.\tLes dauphins sont curieux.\nDon't admit anything.\tNe reconnais rien !\nDon't admit anything.\tNe reconnaissez rien !\nDon't ask me to help.\tNe me demandez pas d'aider.\nDon't be fresh to me.\tNe sois pas effronté avec moi !\nDon't be fresh to me.\tNe sois pas effrontée avec moi !\nDon't be fresh to me.\tNe soyez pas effronté avec moi !\nDon't be fresh to me.\tNe soyez pas effrontée avec moi !\nDon't be fresh to me.\tNe soyez pas effrontés avec moi !\nDon't be fresh to me.\tNe soyez pas effrontées avec moi !\nDon't be so careless!\tNe sois pas si négligent !\nDon't be so careless!\tNe sois pas si négligente !\nDon't be so careless!\tNe soyez pas si négligent !\nDon't be so careless!\tNe soyez pas si négligente !\nDon't be so careless!\tNe soyez pas si négligents !\nDon't be so careless!\tNe soyez pas si négligentes !\nDon't be so childish.\tNe sois pas si infantile.\nDon't be so childish.\tNe soyez pas si puériles.\nDon't be so childish.\tNe faites pas l'enfant.\nDon't be so dramatic.\tNe sois pas si dramatique !\nDon't be so dramatic.\tNe soyez pas si dramatique !\nDon't be so negative.\tNe soyez pas si négatif !\nDon't be so negative.\tNe soyez pas si négatifs !\nDon't be so negative.\tNe soyez pas si négative !\nDon't be so negative.\tNe soyez pas si négatives !\nDon't be so negative.\tNe sois pas si négatif !\nDon't be so negative.\tNe sois pas si négative !\nDon't be so outraged.\tNe sois pas si indigné !\nDon't be so outraged.\tNe sois pas si indignée !\nDon't be so outraged.\tNe soyez pas si indigné !\nDon't be so outraged.\tNe soyez pas si indignée !\nDon't be so outraged.\tNe soyez pas si indignés !\nDon't be so outraged.\tNe soyez pas si indignées !\nDon't be so reserved.\tNe sois pas aussi réservé.\nDon't be so reserved.\tNe soyez pas aussi réservé.\nDon't be such a fool.\tNe soyez pas si idiot !\nDon't be such a fool.\tNe soyez pas si idiote !\nDon't be such a fool.\tNe sois pas si idiot !\nDon't be such a fool.\tNe sois pas si idiote !\nDon't be such a jerk.\tNe sois pas un tel pauvre type !\nDon't brake suddenly.\tNe freine pas d'un coup.\nDon't brake suddenly.\tNe freinez pas d'un coup.\nDon't break my heart.\tNe me brise pas le cœur !\nDon't break my heart.\tNe me brisez pas le cœur !\nDon't call him names.\tNe l'insulte pas.\nDon't call him names.\tNe l'insultez pas.\nDon't call me a jerk.\tNe me traite pas de pauvre type !\nDon't call me a jerk.\tNe me traitez pas de pauvre type !\nDon't change a thing.\tNe change rien !\nDon't change a thing.\tNe changez rien !\nDon't change a thing.\tNe change pas quoi que ce soit !\nDon't change a thing.\tNe changez pas quoi que ce soit !\nDon't close the door.\tNe ferme pas la porte.\nDon't close the door.\tNe fermez pas la porte.\nDon't drink anything.\tNe buvez rien !\nDon't eat like a pig.\tNe mange pas comme un porc.\nDon't eat without me.\tNe mangez pas sans moi !\nDon't eat without me.\tNe mange pas sans moi !\nDon't exert yourself.\tNe vous manifestez pas.\nDon't forget to vote.\tN'oublie pas de voter !\nDon't get me started.\tNe me fais pas démarrer.\nDon't get me started.\tNe me faites pas démarrer.\nDon't get so excited!\tNe sois pas si excité !\nDon't give it to him.\tNe le lui donne pas.\nDon't let him escape!\tNe le laisse pas échapper !\nDon't let him escape!\tNe le laissez pas échapper !\nDon't lie. Be honest.\tNe dis pas de mensonge, sois honnête !\nDon't lie. Be honest.\tNe mentez pas. Soyez honnête !\nDon't lie. Be honest.\tNe mentez pas. Soyez honnêtes !\nDon't make fun of me.\tNe te moque pas de moi !\nDon't make fun of me.\tNe vous moquez pas de moi !\nDon't make me choose.\tNe m'oblige pas à choisir.\nDon't make me choose.\tNe m'obligez pas à choisir.\nDon't make me say it.\tNe me fais pas dire ça.\nDon't make me say it.\tNe me faites pas dire ça.\nDon't make me say it.\tNe m'oblige pas à le dire.\nDon't make me say it.\tNe m'obligez pas à le dire.\nDon't make me suffer.\tNe me fais pas souffrir.\nDon't make me suffer.\tNe me faites pas souffrir.\nDon't open your book.\tN'ouvre pas ton livre.\nDon't open your book.\tN'ouvre pas ton livre !\nDon't open your book.\tN'ouvrez pas votre livre !\nDon't pick your nose.\tNe te cure pas le nez.\nDon't play with fire.\tNe joue pas avec le feu.\nDon't play with fire.\tNe jouez pas avec le feu.\nDon't play with fire.\tNe joue pas avec le feu !\nDon't pull my sleeve.\tNe tirez pas sur ma manche.\nDon't pull my sleeve.\tNe tire pas ma manche.\nDon't push your luck.\tNe pousse pas les limites.\nDon't push your luck.\tNe tente pas le diable.\nDon't rely on others.\tNe comptez pas sur les autres.\nDon't shut your eyes.\tNe ferme pas les yeux !\nDon't smoke too much.\tNe fume pas trop.\nDon't spoil the mood.\tNe casse pas l'ambiance.\nDon't talk like that.\tNe parle pas comme ça.\nDon't talk to anyone.\tNe parle à personne !\nDon't talk to anyone.\tNe parlez à personne !\nDon't think about it.\tN'y pensez pas.\nDon't think about it.\tN'y pense pas.\nDon't touch anything.\tNe touchez à rien !\nDon't touch anything.\tNe touche à rien !\nDon't touch my stuff.\tNe touche pas à mes trucs !\nDon't touch my stuff.\tNe touchez pas à mes trucs !\nDon't try to deny it.\tN'essaye pas de le nier.\nDon't try to deny it.\tN'essayez pas de le nier.\nDon't try to fool me.\tN'essaie pas de m'arnaquer.\nDon't try to fool me.\tN'essaie pas de me duper.\nDon't try to fool me.\tN'essayez pas de m'arnaquer.\nDon't try to fool me.\tN'essayez pas de me duper.\nDon't try to stop me.\tN'essaie pas de m'arrêter !\nDon't try to stop me.\tN'essayez pas de m'arrêter !\nDon't wait up for me.\tNe m'attends pas !\nDon't wait up for me.\tNe m'attendez pas !\nDon't wait up for me.\tNe veillez pas pour moi !\nDon't wait up for me.\tNe veille pas pour moi !\nDon't worry about it.\tNe t'inquiète pas à ce sujet.\nDon't worry about it.\tNe t'en fais pas !\nDon't worry about it.\tNe te soucie pas de cela.\nDon't worry about it.\tNe vous en souciez pas.\nDon't worry about it.\tNe vous faites pas de souci à ce sujet !\nDon't worry about it.\tNe te fais pas de souci à ce sujet !\nDon't worry about me.\tNe t'inquiète pas pour moi.\nDon't worry about me.\tNe te soucie pas de moi.\nDon't worry about me.\tNe vous souciez pas de moi.\nDon't worry about us.\tNe vous inquiétez pas pour nous.\nDon't worry. It's OK.\tNe t'inquiète pas. Ça va.\nDon't you believe me?\tTu ne me crois pas ?\nDon't you want to go?\tNe voulez-vous pas y aller ?\nDon't you want to go?\tNe voulez-vous pas vous en aller ?\nDon't you want to go?\tNe veux-tu pas y aller ?\nDon't you want to go?\tNe veux-tu pas t'en aller ?\nDraw a straight line.\tDessine une ligne droite.\nDublin is in Ireland.\tDublin est en Irlande.\nEither is acceptable.\tN'importe lequel est acceptable.\nEither is acceptable.\tN'importe laquelle est acceptable.\nEverybody blames you.\tTout le monde vous fait des reproches.\nEverybody blames you.\tTout le monde te fait des reproches.\nEverybody blames you.\tTout le monde vous rend responsable.\nEverybody blames you.\tTout le monde te rend responsable.\nEverybody is focused.\tChacun est concentré.\nEverybody knows that.\tTout le monde le sait.\nEverybody knows that.\tTous le savent.\nEverybody needs help.\tTout le monde a besoin d'aide.\nEverybody thought so.\tTout le monde le pensait.\nEverybody thought so.\tTout le monde a pensé ça.\nEverybody was silent.\tTout le monde était silencieux.\nEverybody was silent.\tTout le monde fut silencieux.\nEverybody was silent.\tTout le monde a été silencieux.\nEverybody's a winner.\tTout le monde y gagne.\nEveryone else waited.\tTous les autres attendirent.\nEveryone else waited.\tTous les autres ont attendu.\nEveryone else waited.\tToutes les autres attendirent.\nEveryone else waited.\tToutes les autres ont attendu.\nEveryone fell asleep.\tTout le monde s'endormit.\nEveryone fell asleep.\tTout le monde s'est endormi.\nEveryone is doing it.\tTout le monde le fait.\nEveryone is gone now.\tTout le monde est parti, maintenant.\nEveryone is here now.\tTout le monde est là, maintenant.\nEveryone is here now.\tTout le monde est désormais là.\nEveryone is outraged.\tTout le monde a été outragé.\nEveryone is standing.\tTout le monde se tient debout.\nEveryone seems tense.\tTout le monde a l'air tendu.\nEveryone stayed calm.\tTout le monde resta calme.\nEveryone stayed calm.\tTout le monde est resté calme.\nEveryone was shocked.\tTout le monde a été choqué.\nEveryone was shocked.\tTout le monde fut choqué.\nEveryone was smiling.\tTout le monde souriait.\nEveryone was stunned.\tTout le monde fut paralysé.\nEveryone's gone home.\tTout le monde est parti chez lui.\nEveryone's saying it.\tTout le monde le dit.\nEveryone, say cheese.\tTout le monde, dites «ouistiti».\nEverything is broken.\tTout est cassé.\nEverything is broken.\tTout est brisé.\nEverything is closed.\tTout est fermé.\nEverything is normal.\tTout est normal.\nEverything was wrong.\tTout était faux.\nEverything went well.\tTout s'est bien passé.\nExcuse my clumsiness.\tExcusez ma maladresse.\nExtension 45, please.\tLe poste 45, s'il vous plait.\nFather isn't at home.\tMon père n’est pas à la maison.\nFind the differences.\tTrouve les différences !\nFish live in the sea.\tLes poissons vivent dans la mer.\nFold up your bedding.\tPlie ta literie.\nFrance borders Italy.\tLa France à une frontière avec l'Italie.\nGet back to the ship.\tRetourne au bateau !\nGet back to the ship.\tRetournez au bateau !\nGet him off my hands.\tDégage-le de mes pattes !\nGet him off my hands.\tDégagez-le de mes pattes !\nGet in the back seat.\tMonte dans le siège arrière.\nGet in the back seat.\tMontez dans la banquette arrière.\nGet in the back seat.\tMettez-vous dans le siège de derrière.\nGet out of my office.\tSors de mon bureau !\nGet out of my office.\tSortez de mon bureau !\nGet out of the truck.\tSors du camion !\nGet out of the truck.\tSortez du camion !\nGet out of the water.\tSors de l'eau !\nGet out of the water.\tSortez de l'eau !\nGet some sleep, okay?\tPrends un peu de sommeil, d'accord ?\nGet some sleep, okay?\tPrenez un peu de sommeil, d'accord ?\nGet some sleep, okay?\tRepose-toi un peu, d'accord ?\nGet that book for me.\tAttrape ce livre pour moi.\nGirls aren't welcome.\tLes filles ne sont pas bienvenues.\nGive me a day or two.\tDonne-moi un jour ou deux.\nGive me the car keys.\tDonne-moi les clés de la voiture.\nGive me the car keys.\tDonnez-moi les clés de la voiture.\nGive me your address.\tDonne-moi ton adresse !\nGive me your address.\tDonnez-moi votre adresse !\nGive that back to me.\tRends-moi ça!\nGo ahead, try it now.\tVas-y, essaye maintenant !\nGo ahead, try it now.\tAllez-y, essayez maintenant !\nGo and open the door.\tVa ouvrir la porte.\nGo and open the door.\tAllez ouvrir la porte.\nGo and see who it is.\tVa voir qui c'est.\nGo and see who it is.\tAllez voir qui c'est.\nGo back to your room.\tRetourne dans ta chambre !\nGo back to your room.\tRetournez dans votre chambre !\nGo back to your seat.\tRegagnez votre place.\nGo back to your seat.\tRetourne à ta place.\nGo kiss someone else.\tVa embrasser quelqu'un d'autre !\nGo kiss someone else.\tAllez embrasser quelqu'un d'autre !\nHas Tom become crazy?\tTom est-il devenu fou ?\nHas Tom ever hit you?\tTom t'a-t-il déjà frappé ?\nHave I convinced you?\tEs-tu convaincu ?\nHave I convinced you?\tÊtes-vous convaincu ?\nHave a great weekend.\tPasse un bon week-end.\nHave a nice vacation.\tPasse de bonnes vacances.\nHave a nice vacation.\tBonnes vacances !\nHave it your own way.\tComme vous voudrez.\nHave it your own way.\tFaites ce qui vous plaira.\nHave some pity on me.\tAyez de la compassion à mon égard !\nHave some pity on me.\tAie de la compassion à mon égard !\nHave you been abroad?\tAvez-vous déjà été à l'étranger ?\nHave you betrayed me?\tM'avez-vous trahi ?\nHave you betrayed me?\tM'avez-vous trahie ?\nHave you betrayed me?\tM'as-tu trahi ?\nHave you betrayed me?\tM'as-tu trahie ?\nHave you fed the dog?\tAs-tu nourri le chien ?\nHave you fed the dog?\tAs-tu nourri le chien ?\nHave you fed the dog?\tAvez-vous nourri le chien ?\nHave you finished it?\tL'as-tu terminé ?\nHave you finished it?\tL'avez-vous terminé ?\nHave you got a match?\tAs-tu une allumette ?\nHave you got a match?\tDisposes-tu d'une allumette ?\nHave you got a match?\tAvez-vous une allumette ?\nHave you got a match?\tDisposez-vous d'une allumette ?\nHave you heard of me?\tAvez-vous entendu parler de moi ?\nHave you heard of me?\tAs-tu entendu parler de moi ?\nHave you lost weight?\tAvez-vous perdu du poids ?\nHave you measured it?\tL'as-tu mesuré ?\nHave you measured it?\tL'as-tu mesurée ?\nHave you measured it?\tL'avez-vous mesuré ?\nHave you measured it?\tL'avez-vous mesurée ?\nHave you met him yet?\tL'avez-vous déjà rencontré ?\nHave you seen enough?\tEn avez-vous assez vu ?\nHave you seen enough?\tEn as-tu assez vu ?\nHave you seen my pen?\tAvez-vous vu mon stylo ?\nHave you seen my son?\tAs-tu vu mon fils ?\nHave you seen my son?\tAvez-vous vu mon fils ?\nHave you sold it yet?\tL'as-tu déjà vendu ?\nHave you sold it yet?\tL'as-tu déjà vendue ?\nHave you sold it yet?\tL'avez-vous déjà vendu ?\nHave you sold it yet?\tL'avez-vous déjà vendue ?\nHe achieved his goal.\tIl a atteint son but.\nHe achieved his goal.\tIl atteignit son but.\nHe acted as my guide.\tIl fut pour moi un guide.\nHe aimed at the bird.\tIl visa l'oiseau.\nHe always plays well.\tIl joue toujours bien.\nHe always works hard.\tIl travaille toujours dur.\nHe always works hard.\tIl travaille toujours d'arrache-pied.\nHe and I are cousins.\tLui et moi sommes cousins.\nHe and I are cousins.\tLui et moi, nous sommes cousins.\nHe arrived too early.\tIl est arrivé trop tôt.\nHe asked me for help.\tIl m'a demandé de l'aide.\nHe asked me to do it.\tIl m'a demandé de le faire.\nHe asked me to do it.\tIl me demanda de le faire.\nHe attained his goal.\tIl a atteint son but.\nHe attained his goal.\tIl atteignit son but.\nHe attained his goal.\tIl a atteint son objectif.\nHe attempted suicide.\tIl a tenté de se suicider.\nHe attempted suicide.\tIl a fait une tentative de suicide.\nHe attempted suicide.\tIl fit une tentative de suicide.\nHe became a Catholic.\tIl s'est fait catholique.\nHe began to feel ill.\tIl a commencé à se sentir mal.\nHe begged me to stay.\tIl me supplia de rester.\nHe bent his head low.\tIl inclina profondément la tête.\nHe breathed his last.\tIl rendit son dernier soupir.\nHe built a new house.\tIl construisait une nouvelle maison.\nHe came into my room.\tIl rentra dans ma chambre.\nHe came into my room.\tIl est venu dans ma chambre.\nHe came to my rescue.\tIl est venu à mon secours.\nHe can be counted on.\tOn peut compter sur lui.\nHe cannot be trusted.\tOn ne peut pas lui faire confiance.\nHe cannot be trusted.\tOn ne peut pas se fier à lui.\nHe caught a big fish.\tIl a attrapé un gros poisson.\nHe caught three fish.\tIl prit trois poissons.\nHe chose a good wife.\tIl a choisi une bonne épouse.\nHe clipped the sheep.\tIl a tondu les moutons.\nHe comes from Geneva.\tIl vient de Genève.\nHe committed suicide.\tIl s'est suicidé.\nHe continued singing.\tIl continua à chanter.\nHe crossed the river.\tIl traversa la rivière.\nHe crossed the river.\tIl a traversé la rivière.\nHe deals in hardware.\tIl fait commerce de quincaillerie.\nHe decided not to go.\tIl décida de ne pas s'y rendre.\nHe decided not to go.\tIl décida de ne pas y aller.\nHe decided not to go.\tIl décida de ne pas partir.\nHe decided not to go.\tIl a décidé de ne pas s'y rendre.\nHe decided not to go.\tIl a décidé de ne pas y aller.\nHe decided not to go.\tIl a décidé de ne pas partir.\nHe denied everything.\tIl nia tout.\nHe denied everything.\tIl a tout nié.\nHe devoured his meal.\tIl dévora son repas.\nHe did as I told him.\tIl fit comme je lui avais dit.\nHe did as I told him.\tIl a fait comme je lui ai dit.\nHe did as I told him.\tIl a fait comme je le lui ai dit.\nHe did it right away.\tIl l'a fait sur-le-champ.\nHe did nothing wrong.\tIl n'a rien fait de mal.\nHe didn't fear death.\tIl ne craignait pas la mort.\nHe didn't get caught.\tIl ne s'est pas fait prendre.\nHe didn't get caught.\tIl ne se fit pas prendre.\nHe didn't look happy.\tIl n'avait pas l'air heureux.\nHe didn't say a word.\tIl n'a pas dit un mot.\nHe didn't say a word.\tIl n'a absolument rien dit.\nHe died one year ago.\tIl est mort il y a un an.\nHe died the next day.\tIl mourut le jour suivant.\nHe died the next day.\tIl est mort le jour suivant.\nHe doesn't get jokes.\tIl ne comprend pas la plaisanterie.\nHe doesn't like eggs.\tIl n'aime pas les œufs.\nHe doesn't like fish.\tIl n'aime pas le poisson.\nHe doesn't tell lies.\tIl ne dit pas de mensonges.\nHe easily gets angry.\tIl se met vite en colère.\nHe emptied his glass.\tIl vida son verre.\nHe fell to the floor.\tIl est tombé au sol.\nHe felt a sharp pain.\tIl ressentit une vive douleur.\nHe filed a complaint.\tIl a porté plainte.\nHe filed a complaint.\tIl porta plainte.\nHe fired three shots.\tIl a tiré trois fois.\nHe gave a short talk.\tIl fit un bref discours.\nHe gave me a big hug.\tIl me donna une grande accolade.\nHe gave me a big hug.\tIl me serra très fort.\nHe gave me a big hug.\tIl me serra bien fort.\nHe gave me this book.\tIl m’a donné ce livre.\nHe gets on my nerves.\tIl me tape sur les nerfs.\nHe got angry with me.\tIl s'est mis en colère après moi.\nHe got bored quickly.\tIl s'est vite lassé.\nHe got bored quickly.\tIl se lassa rapidement.\nHe got his dander up.\tIl s'est courroucé.\nHe got his doctorate.\tIl a obtenu son doctorat.\nHe got off the train.\tIl descendit du train.\nHe got off the train.\tIl est descendu du train.\nHe had fifty dollars.\tIl avait 50 dollars.\nHe had lost all hope.\tIl avait perdu tout espoir.\nHe has a common name.\tIl a un nom commun.\nHe has a dark secret.\tIl détient un noir secret.\nHe has a fair income.\tIl a un bon revenu.\nHe has a foreign car.\tIl possède une voiture étrangère.\nHe has a foreign car.\tIl a une voiture étrangère.\nHe has a good accent.\tIl a un bon accent.\nHe has a good memory.\tIl a bonne mémoire.\nHe has a good memory.\tIl a une bonne mémoire.\nHe has a hairy chest.\tIl a le torse poilu.\nHe has a hairy chest.\tIl a le torse velu.\nHe has a large truck.\tIl a un grand camion.\nHe has a lot of land.\tIl détient de nombreuses terres.\nHe has a nimble mind.\tIl a l'esprit agile.\nHe has a strong body.\tSon corps est doté de force.\nHe has a strong will.\tIl a une forte volonté.\nHe has a sweet voice.\tIl a la voix douce.\nHe has already begun.\tIl a déjà commencé.\nHe has good eyesight.\tIl a une bonne vue.\nHe has no conscience.\tIl n'a aucune conscience.\nHe has no conscience.\tIl est dépourvu de conscience.\nHe has nothing to do.\tIl n'a rien à faire.\nHe has poor eyesight.\tIl a une mauvaise vue.\nHe has powerful arms.\tIl a des bras puissants.\nHe has rough manners.\tIl a de rudes manières.\nHe has to study hard.\tIl doit étudier avec application.\nHe has very bad luck.\tIl a la poisse.\nHe held out his hand.\tIl lui a serré la main.\nHe held out his hand.\tIl tendit la main.\nHe held up his hands.\tIl avait les mains en l'air.\nHe hit me by mistake.\tIl m'a frappé par erreur.\nHe insulted our team.\tIl a insulté notre équipe.\nHe is a cruel person.\tC'est un homme cruel.\nHe is a fast speaker.\tIl parle vite.\nHe is a good speaker.\tC'est un bon orateur.\nHe is a good student.\tC'est un bon étudiant.\nHe is a good swimmer.\tC'est un bon nageur.\nHe is a handsome man.\tC'est un bel homme.\nHe is a harsh critic.\tC'est un critique acerbe.\nHe is a lazy student.\tC'est un étudiant paresseux.\nHe is a man of faith.\tC'est un homme de foi.\nHe is a tough cookie.\tC'est un emmerdeur.\nHe is about your age.\tIl a environ votre âge.\nHe is afraid of dogs.\tIl a peur des chiens.\nHe is afraid to swim.\tIl a peur de nager.\nHe is always reading.\tIl est toujours en train de lire.\nHe is always reading.\tIl lit à longueur de temps.\nHe is always with me.\tIl est toujours avec moi.\nHe is an angry drunk.\tIl a le vin mauvais.\nHe is an unsung hero.\tC'est un héros inconnu.\nHe is angry with you.\tIl est en colère après toi.\nHe is as tall as her.\tIl est aussi grand qu'elle.\nHe is away from home.\tIl est loin de chez lui.\nHe is bad at driving.\tC'est un mauvais conducteur.\nHe is breathing hard.\tIl respire avec difficulté.\nHe is close to sixty.\tIl a près de soixante ans.\nHe is cool, isn't he?\tIl est cool, pas vrai ?\nHe is far from happy.\tIl est loin d'être heureux.\nHe is far from happy.\tIl n'est vraiment pas heureux.\nHe is five feet tall.\tIl mesure cinq pieds.\nHe is full of energy.\tIl est plein d'énergie.\nHe is getting better.\tIl va mieux.\nHe is good at soccer.\tIl est bon au foot.\nHe is hard to please.\tIl est difficile de le satisfaire.\nHe is his own master.\tIl est son propre maître.\nHe is his usual self.\tIl est pareil à lui-même.\nHe is in his library.\tIl est dans sa bibliothèque.\nHe is in poor health.\tIl est en mauvaise santé.\nHe is in the kitchen.\tIl est dans la cuisine.\nHe is in trouble now.\tIl est dans le pétrin.\nHe is likely to come.\tIl va probablement venir.\nHe is making cookies.\tIl est en train de faire des cookies.\nHe is my best friend.\tC'est mon meilleur ami.\nHe is my best friend.\tIl est mon meilleur ami.\nHe is now on his own.\tIl est désormais à son compte.\nHe is off duty today.\tIl n'est pas en service aujourd'hui.\nHe is precious to us.\tIl est précieux pour nous.\nHe is quite a savage.\tIl est assez sauvage.\nHe is reading a book.\tIl lit un livre.\nHe is reading a book.\tIl est en train de lire un livre.\nHe is sadly mistaken.\tIl se trompe complètement.\nHe is still standing.\tIl est toujours debout.\nHe is the chosen one.\tIl est l'élu.\nHe is very depressed.\tIl est très déprimé.\nHe is very depressed.\tIl est fort déprimé.\nHe is wearing gloves.\tIl porte des gants.\nHe is willing enough.\tIl a suffisamment de volonté.\nHe isn't an American.\tIl n'est pas américain.\nHe isn't here, is he?\tIl n'est pas là, non ?\nHe jumped out of bed.\tIl a sauté du lit.\nHe jumped out of bed.\tIl sauta hors du lit.\nHe knew it all along.\tIl le savait depuis le départ.\nHe knows how to swim.\tIl sait nager.\nHe knows many people.\tIl connaît beaucoup de gens.\nHe laughed nervously.\tIl rit nerveusement.\nHe laughed nervously.\tIl a ri nerveusement.\nHe leaned towards me.\tIl se pencha dans ma direction.\nHe left a minute ago.\tIl est parti il y a une minute.\nHe left a minute ago.\tIl y a une minute qu'il est parti.\nHe likes music a lot.\tIl aime beaucoup la musique.\nHe likes to watch TV.\tIl aime regarder la télévision.\nHe likes watching TV.\tIl aime regarder la télévision.\nHe lived a long life.\tIl a vécu une longue vie.\nHe lives in Nagasaki.\tIl vit à Nagasaki.\nHe lives in Nagasaki.\tIl habite à Nagasaki.\nHe lives like a king.\tIl vit comme un roi.\nHe looked bewildered.\tIl avait l'air déconcerté.\nHe looked very happy.\tIl avait l'air très heureux.\nHe looked very tired.\tIl avait l'air très fatigué.\nHe looks like a girl.\tIl a l'air d'une fille.\nHe looks very sleepy.\tIl a l'air très endormi.\nHe lost his eyesight.\tIl a perdu la vue.\nHe lost his eyesight.\tIl perdit la vue.\nHe made for the door.\tIl se tourna vers la porte.\nHe made her his wife.\tIl a fait d'elle sa femme.\nHe made her his wife.\tIl fit d'elle sa femme.\nHe made up an excuse.\tIl a inventé une excuse.\nHe made up an excuse.\tIl s'inventa une excuse.\nHe made up the story.\tIl a monté toute cette histoire.\nHe managed to escape.\tIl a réussi à s'évader.\nHe managed to escape.\tIl a réussi à s'échapper.\nHe married my cousin.\tIl épousa ma cousine.\nHe married my cousin.\tIl épousa mon cousin.\nHe married my cousin.\tIl a épousé mon cousin.\nHe married my sister.\tIl s'est marié avec ma sœur.\nHe may have been ill.\tIl était peut-être malade.\nHe missed his flight.\tIl a loupé son vol.\nHe missed his flight.\tIl loupa son vol.\nHe misses his father.\tSon père lui manque.\nHe must have seen it.\tIl doit l'avoir vu.\nHe needs an umbrella.\tIl a besoin d'un parapluie.\nHe needs to be alone.\tIl a besoin d'être seul.\nHe never looked back.\tIl n’a jamais regardé en arrière.\nHe never tells a lie.\tIl ne ment jamais.\nHe never told anyone.\tIl ne le dit jamais à personne.\nHe never told anyone.\tIl ne l'a jamais dit à personne.\nHe never told anyone.\tIl ne l'a jamais dit à quiconque.\nHe never wears a tie.\tIl ne met jamais de cravate.\nHe often plays piano.\tIl joue souvent du piano.\nHe ordered us steaks.\tIl nous a commandé des steaks.\nHe owns a dishwasher.\tIl possède un lave-vaisselle.\nHe picked up a stone.\tIl ramassa une pierre.\nHe raised a question.\tIl a soulevé une question.\nHe ran at full speed.\tIl courait à toute vitesse.\nHe ran into the room.\tIl entra en courant dans la pièce.\nHe ran outside naked.\tIl courut dehors, nu.\nHe ran outside naked.\tIl a couru nu dehors.\nHe ran up the stairs.\tIl courut au haut des escaliers.\nHe ran up the stairs.\tIl courut en haut de l'escalier.\nHe rarely went there.\tIl y est rarement allé.\nHe removed his shirt.\tIl tomba la chemise.\nHe removed his shirt.\tIl retira sa chemise.\nHe removed his shirt.\tIl a ôté sa chemise.\nHe removed his shirt.\tIl a retiré sa chemise.\nHe removed his shirt.\tIl a tombé la chemise.\nHe returned to Japan.\tIl est retourné au Japon.\nHe returned to Japan.\tIl retourna au Japon.\nHe said it as a joke.\tIl l'a dit pour plaisanter.\nHe said it as a joke.\tIl l'a dit par plaisanterie.\nHe said it as a joke.\tIl le disait pour blaguer.\nHe saw a pretty girl.\tIl vit une jolie fille.\nHe screamed for help.\tIl a crié à l'aide.\nHe seems quite happy.\tIl semble assez content.\nHe seems to be happy.\tIl semble être heureux.\nHe seems to think so.\tIl semble penser cela.\nHe seems very sleepy.\tIl semble très endormi.\nHe seldom gets angry.\tIl se met rarement en colère.\nHe seldom went there.\tIl y est rarement allé.\nHe sent me a present.\tIl m'envoya un cadeau.\nHe speaks Portuguese.\tIl parle portugais.\nHe spoke about peace.\tIl a parlé de paix.\nHe spoke about peace.\tIl parla de paix.\nHe studied very hard.\tIl a étudié très dur.\nHe studied very hard.\tIl étudia très dur.\nHe studies very hard.\tIl étudie dur.\nHe suddenly fell ill.\tIl est subitement tombé malade.\nHe survived his wife.\tIl a survécu à sa femme.\nHe swims like a fish.\tIl nage comme un poisson.\nHe talked to himself.\tIl se parla à lui-même.\nHe thinks I love her.\tIl pense que je l'aime.\nHe took off his coat.\tIl enleva son manteau.\nHe tore his ligament.\tIl s'est étiré le ligament.\nHe trained very hard.\tIl s'est entraîné très dur.\nHe tried to stand up.\tIl a essayé de se lever.\nHe turned the corner.\tIl tourna au coin.\nHe turned the corner.\tIl a tourné au coin.\nHe used to live here.\tIl habitait ici autrefois.\nHe used to love that.\tIl adorait ça.\nHe wanted to meet me.\tIl voulait me rencontrer.\nHe wanted to succeed.\tIl voulait réussir.\nHe wants red glasses.\tIl veut des lunettes rouges.\nHe wants to kiss her.\tIl veut l'embrasser.\nHe wants to meet you.\tIl veut vous rencontrer.\nHe wants to meet you.\tIl veut te rencontrer.\nHe was a good friend.\tIl était un bon ami.\nHe was born in Osaka.\tIl est né à Osaka.\nHe was drunk on beer.\tIl s'est saoulé à la bière.\nHe was elected mayor.\tIl a été élu maire.\nHe was fully clothed.\tIl était entièrement vêtu.\nHe was fully clothed.\tIl était entièrement habillé.\nHe was in the shower.\tIl était dans la douche.\nHe was in the shower.\tIl était sous la douche.\nHe was made to do so.\tIl était obligé d'agir de la sorte.\nHe was not impressed.\tIl ne fut pas impressionné.\nHe was not impressed.\tIl n'a pas été impressionné.\nHe was out of breath.\tIl était essoufflé.\nHe was put in a cell.\tIl a été placé en isolement.\nHe was put in prison.\tIl a été envoyé en prison.\nHe was sitting there.\tIl s'asseyait là.\nHe wasn't even there.\tIl n'y était même pas.\nHe went duck hunting.\tIl est allé à la chasse aux canards.\nHe went to bed early.\tIl se mit au lit tôt.\nHe went to bed early.\tIl est allé tôt au lit.\nHe went to the store.\tIl a été au magasin.\nHe will be back soon.\tIl reviendra rapidement.\nHe will be here soon.\tIl sera bientôt là.\nHe works as a busboy.\tIl travaille comme garçon de salle.\nHe would not approve.\tIl ne l'approuverait pas.\nHe wrote me a letter.\tIl m'a écrit une lettre.\nHe's a bad influence.\tIl a une mauvaise influence.\nHe's a computer nerd.\tC'est un informaticien boutonneux.\nHe's a control freak.\tC'est un malade du contrôle.\nHe's a control freak.\tC'est un maniaque du contrôle.\nHe's a famous artist.\tC'est un artiste célèbre.\nHe's a hopeless case.\tIl est sans espoir.\nHe's a nervous wreck.\tC'est une boule de nerfs.\nHe's a nervous wreck.\tIl est nerveusement usé.\nHe's a smooth talker.\tC'est un beau parleur.\nHe's a smooth talker.\tC'est un baratineur.\nHe's a tennis player.\tIl est joueur de tennis.\nHe's a very nice boy.\tC'est un très gentil garçon.\nHe's a very nice boy.\tC'est un très chouette garçon.\nHe's a very nice boy.\tC'est un garçon très gentil.\nHe's a very nice boy.\tC'est un garçon très chouette.\nHe's afraid to dance.\tIl a peur de danser.\nHe's already married.\tIl est déjà marié.\nHe's crazy about her.\tIl est fou d'elle.\nHe's crazy about her.\tIl est follement épris d'elle.\nHe's eight years old.\tIl a huit ans.\nHe's extremely happy.\tIl est extrêmement heureux.\nHe's got lung cancer.\tIl a le cancer des poumons.\nHe's greedy and lazy.\tIl est avide et paresseux.\nHe's in grave danger.\tIl est en danger grave.\nHe's mad at everyone.\tIl est en colère après tout le monde.\nHe's making progress.\tIl fait des progrès.\nHe's missed the boat.\tIl a loupé le coche.\nHe's my half-brother.\tIl est mon demi-frère.\nHe's never satisfied.\tIl n'est jamais satisfait.\nHe's not in the mood.\tIl n'est pas d'humeur.\nHe's now on the boat.\tIl est maintenant sur le bateau.\nHe's offered to help.\tIl a offert son assistance.\nHe's on his way home.\tIl est sur le chemin de son domicile.\nHe's one of the best.\tC'est l'un des meilleurs.\nHe's one of the best.\tIl est l'un des meilleurs.\nHe's out of position.\tIl n'est pas à sa place.\nHe's out of practice.\tIl manque de pratique.\nHe's out of practice.\tIl est rouillé.\nHe's smarter than me.\tIl est plus intelligent que moi.\nHe's taking a shower.\tIl est en train de prendre une douche.\nHe's the class clown.\tC'est le pitre de la classe.\nHe's too old for her.\tIl est trop vieux pour elle.\nHe's too old for you.\tIl est trop vieux pour toi.\nHe's too old for you.\tIl est trop vieux pour vous.\nHe's under the chair.\tIl est sous la chaise.\nHe's very protective.\tIl est très protecteur.\nHer daughter is sick.\tSa fille est malade.\nHer name was unknown.\tSon nom était inconnu.\nHere are the tickets.\tVoilà les billets.\nHere comes the train.\tVoilà le train.\nHere's a yellow rose.\tVoici une rose jaune.\nHey, guys. What's up?\tHé, les mecs ! Quoi de neuf ?\nHey, guys. What's up?\tHé, les gars ! Quoi de neuf ?\nHey, it's not so bad.\tHé, c'est pas si mal !\nHey. What's going on?\tEh bien ! Que se passe-t-il ?\nHi everyone, I'm Tom.\tSalut tout le monde, je suis Tom.\nHis blood is boiling.\tSon sang bout.\nHis book inspired me.\tSon livre m'inspira.\nHis book inspired me.\tSon livre m'a inspiré.\nHis daughter is sick.\tSa fille est malade.\nHis face turned pale.\tSon visage pâlit.\nHis feet were asleep.\tSes pieds s’étaient engourdis.\nHis hands feel rough.\tSes mains sont rugueuses.\nHis memory amazes me.\tSa mémoire me surprend.\nHis nose is bleeding.\tIl saigne du nez.\nHis parents loved me.\tSes parents m'adoraient.\nHis teeth were white.\tSes dents furent blanches.\nHis teeth were white.\tSes dents ont été blanches.\nHow about your place?\tQue dirais-tu de chez toi ?\nHow am I still alive?\tComment suis-je encore en vie ?\nHow are things going?\tComment les choses se déroulent-elles ?\nHow are your parents?\tComment vont tes parents ?\nHow are your parents?\tComment vont vos parents ?\nHow beautiful she is!\tComme elle est belle !\nHow beautiful she is!\tQu'elle est belle !\nHow big is this park?\tQuelle taille fait ce parc ?\nHow big is your room?\tQuelle taille fait ta chambre ?\nHow can this be done?\tComment cela peut-il être fait ?\nHow can this be done?\tDe quelle manière peut-on le faire ?\nHow can this be true?\tComment cela peut-il être vrai ?\nHow can we thank you?\tComment pouvons-nous te remercier ?\nHow can we thank you?\tComment pouvons-nous vous remercier ?\nHow can you not know?\tComment peux-tu l'ignorer ?\nHow can you not know?\tComment pouvez-vous l'ignorer ?\nHow can you not know?\tComment parviens-tu à l'ignorer ?\nHow can you not know?\tComment parvenez-vous à l'ignorer ?\nHow can you say that?\tComment peux-tu dire ça ?\nHow can you say that?\tComment pouvez-vous dire cela ?\nHow can you stand it?\tComment peux-tu supporter ça ?\nHow can you stand it?\tComment est-ce que tu peux supporter ça ?\nHow could we not win?\tComment pourrions-nous ne pas gagner ?\nHow could we not win?\tComment pourrions-nous ne pas l'emporter ?\nHow deep is the lake?\tQuelle est la profondeur du lac ?\nHow did he come here?\tComment est-il venu ici ?\nHow did it all begin?\tComment tout a commencé ?\nHow did it get there?\tComment est-ce arrivé là ?\nHow did it get there?\tComment cela a-t-il atterri là ?\nHow did you get here?\tComment es-tu parvenu ici ?\nHow did you get here?\tComment es-tu parvenue ici ?\nHow did you get here?\tComment êtes-vous parvenu ici ?\nHow did you get here?\tComment êtes-vous parvenus ici ?\nHow did you get here?\tComment êtes-vous parvenue ici ?\nHow did you get here?\tComment êtes-vous parvenues ici ?\nHow did you get hurt?\tComment vous êtes-vous blessé ?\nHow did you get hurt?\tComment vous êtes-vous blessés ?\nHow did you get hurt?\tComment vous êtes-vous blessée ?\nHow did you get hurt?\tComment vous êtes-vous blessées ?\nHow did you get hurt?\tComment t'es-tu blessé ?\nHow did you get hurt?\tComment t'es-tu blessée ?\nHow did you get them?\tComment te les es-tu procurés ?\nHow did you get them?\tComment te les es-tu procurées ?\nHow did you get them?\tComment as-tu mis la main dessus  ?\nHow did you meet him?\tComment l'avez-vous rencontré ?\nHow did you meet him?\tComment l'as-tu rencontré ?\nHow did you two meet?\tComment vous êtes-vous tous deux rencontrés ?\nHow did your test go?\tComment s'est déroulé ton examen ?\nHow did your test go?\tComment s'est déroulé votre examen ?\nHow do parents do it?\tComment les parents le font-ils ?\nHow do you know that?\tComment le sais-tu ?\nHow do you like that?\tQu'en penses-tu ?\nHow do you stop this?\tComment avez-vous stoppé ceci ?\nHow do you stop this?\tComment as-tu stoppé ceci ?\nHow do you stop this?\tComment as-tu arrêté ceci ?\nHow do you stop this?\tComment avez-vous arrêté ceci ?\nHow do you want them?\tComment les veux-tu ?\nHow far are we going?\tJusqu'à quel point allons-nous ?\nHow far are we going?\tJusqu'où allons-nous ?\nHow fast does he run?\tÀ quelle vitesse court-il?\nHow hard can that be?\tDe quelle difficulté cela peut-il être ?\nHow high is Mt. Fuji?\tQuelle hauteur a le mont Fuji ?\nHow high is Mt. Fuji?\tDe quelle hauteur est le mont Fuji ?\nHow is that possible?\tComment est-ce possible ?\nHow is that possible?\tComment cela se peut-il ?\nHow is this possible?\tComment est-ce possible ?\nHow is this possible?\tComment cela est-il possible ?\nHow is this possible?\tComment cela se peut-il ?\nHow is this relevant?\tEn quoi est-ce pertinent ?\nHow is your daughter?\tComment va ta fille ?\nHow is your daughter?\tComment va votre fille ?\nHow is your daughter?\tComment se porte votre fille ?\nHow is your daughter?\tComment se porte ta fille ?\nHow long did I sleep?\tCombien de temps ai-je dormi ?\nHow long did I sleep?\tCombien de temps ai-je sommeillé ?\nHow long did it last?\tCombien de temps cela a-t-il duré ?\nHow long did it take?\tCombien de temps cela a-t-il pris ?\nHow long have we got?\tDe combien de temps disposons-nous ?\nHow many did you get?\tCombien en as-tu eu ?\nHow many did you get?\tCombien en as-tu obtenu ?\nHow many did you get?\tCombien en avez-vous eu ?\nHow many did you get?\tCombien en avez-vous obtenu ?\nHow many do you need?\tTu as besoin de combien ?\nHow many people died?\tCombien de personnes sont-elles décédées ?\nHow many people died?\tCombien de personnes sont mortes ?\nHow much did you pay?\tCombien as-tu payé ?\nHow much did you pay?\tCombien avez-vous payé ?\nHow much did you win?\tCombien as-tu gagné ?\nHow much did you win?\tCombien avez-vous gagné ?\nHow much do you want?\tCombien en veux-tu ?\nHow much do you want?\tCombien en voulez-vous ?\nHow much is an apple?\tCombien coûte une pomme ?\nHow much is one beer?\tC'est combien, une bière ?\nHow much is this hat?\tQuel est le prix de ce chapeau ?\nHow much is this pen?\tCombien coûte ce stylo ?\nHow much is this tie?\tCombien coûte cette cravate ?\nHow old are the kids?\tQuel âge ont les enfants ?\nHow old is this tree?\tCet arbre a quel âge ?\nHow old is this tree?\tQuel âge a cet arbre ?\nHow should I respond?\tQue devrais-je rétorquer ?\nHow thin is too thin?\tTrop maigre, c'est quoi ?\nHow was school today?\tComment s'est passée l'école, aujourd'hui ?\nHow was your holiday?\tComment se sont passées tes vacances ?\nHow was your meeting?\tComment s'est passée ta réunion ?\nHow was your meeting?\tComment s'est passée votre réunion ?\nHow was your weekend?\tComment était ton weekend ?\nHow's everyone doing?\tComment va tout le monde ?\nHow's the water here?\tComment est l'eau, ici ?\nHow's your boy doing?\tComment s'en sort votre garçon ?\nHow's your boy doing?\tComment s'en sort ton garçon ?\nHow's your day going?\tComment se déroule ta journée ?\nHow's your day going?\tComment se déroule votre journée ?\nHow's your kid doing?\tComment s'en sort votre gosse ?\nHow's your kid doing?\tComment s'en sort ton gosse ?\nHow's your wife, Tom?\tComment va ta femme, Tom ?\nHow's your wife, Tom?\tComment va votre femme, Tom ?\nHuman life is sacred.\tLa vie humaine est sacrée.\nI abandoned my plans.\tJ'ai abandonné mes plans.\nI admire her efforts.\tJ'admire ses efforts.\nI admire your talent.\tJ'admire ton talent.\nI admire your talent.\tJ'admire votre talent.\nI agree to this plan.\tJ'approuve ce projet.\nI almost believe you.\tJe vous crois presque.\nI almost believe you.\tJe te crois presque.\nI already called him.\tJe l'ai déjà appelé.\nI also like painting.\tJ'aime également peindre.\nI always believe you.\tJe te crois toujours.\nI always believe you.\tJe vous crois toujours.\nI always feel hungry.\tJ'ai toujours faim.\nI always feel sleepy.\tJ'ai toujours sommeil.\nI am a stranger here.\tIci, je suis un étranger.\nI am a stranger here.\tJe suis étranger ici.\nI am a stranger here.\tJe suis un étranger ici.\nI am a stranger here.\tJe suis un étranger, ici.\nI am afraid of bears.\tJ'ai peur des ours.\nI am afraid of death.\tJ'ai peur de la mort.\nI am afraid of dying.\tJ'ai peur de mourir.\nI am better than you.\tJe suis meilleur que toi.\nI am counting on you.\tJe compte sur toi.\nI am drinking coffee.\tJe suis en train de boire du café.\nI am eating an apple.\tJe mange une pomme.\nI am forced to do it.\tJe suis contraint à le faire.\nI am getting dressed.\tJe me vêts.\nI am glad to see her.\tJe suis contente de la voir.\nI am glad to see her.\tJe suis content de la voir.\nI am looking at that.\tJe regarde ça.\nI am no longer tired.\tJe ne suis plus fatigué.\nI am no longer tired.\tJe ne suis plus fatiguée.\nI am not well at all.\tJe ne vais pas bien du tout.\nI am playing it safe.\tJe joue prudemment.\nI am poor at drawing.\tJe suis mauvais en dessin.\nI am telling a story.\tJe conte une histoire.\nI am terribly hungry.\tJ'ai terriblement faim.\nI am waiting my turn.\tJ'attends mon tour.\nI am wasting my time.\tJe suis en train de perdre mon temps.\nI am weighing myself.\tJe suis en train de me peser.\nI apologize for that.\tJe vous présente mes excuses pour cela.\nI apologize for that.\tJe te présente mes excuses pour cela.\nI apologize for this.\tJe m'en excuse.\nI applied for a visa.\tJ'ai sollicité un visa.\nI asked him his name.\tJe me suis enquis de son nom.\nI asked him his name.\tJe me suis enquise de son nom.\nI asked him his name.\tJe lui ai demandé son nom.\nI ate too much today.\tJ'ai trop mangé aujourd'hui.\nI awoke from a dream.\tJe me réveillai d'un rêve.\nI awoke on the floor.\tJe me suis réveillé sur le sol.\nI baked some cookies.\tJ'ai confectionné des biscuits.\nI bear him no malice.\tJe n'ai aucune malveillance à son égard.\nI beg you to help me.\tJe vous supplie de m'aider.\nI beg you to help me.\tJe te supplie de m'aider.\nI beg you to help us.\tJe vous supplie de nous aider.\nI beg you to help us.\tJe te supplie de nous aider.\nI believe that story.\tJe crois à cette histoire.\nI bought a red diary.\tJ'ai fait l'acquisition d'un cahier rouge pour tenir mon journal.\nI bought an old lamp.\tJ'ai acheté une vieille lampe.\nI bought an umbrella.\tJ'ai acheté un parapluie.\nI bought her a clock.\tJe lui ai acheté une horloge.\nI bought him a clock.\tJe lui ai acheté une horloge.\nI broke my right leg.\tJe me suis cassé la jambe droite.\nI broke your ashtray.\tJ'ai cassé ton cendrier.\nI built this for you.\tJ'ai construit ça pour toi.\nI built this for you.\tJ'ai bâti ça pour toi.\nI built this for you.\tJ'ai construit ça pour vous.\nI built this for you.\tJ'ai bâti ça pour vous.\nI burst out laughing.\tJ'ai éclaté de rire.\nI came here to learn.\tJe suis venu ici pour apprendre.\nI came here to learn.\tJe suis venue ici pour apprendre.\nI came here to study.\tJe suis venu ici pour étudier.\nI can give it a shot.\tJe peux essayer.\nI can hardly breathe.\tJ'arrive à peine à respirer.\nI can hardly breathe.\tJe parviens à peine à respirer.\nI can hardly breathe.\tJe peux à peine à respirer.\nI can hear something.\tJ'entends quelque chose.\nI can live with that.\tJe le supporte.\nI can make it happen.\tJe peux faire en sorte que cela arrive.\nI can play the piano.\tJe sais jouer du piano.\nI can read your mind.\tJ'arrive à lire ce que tu as en tête.\nI can read your mind.\tJ'arrive à lire ce que vous avez en tête.\nI can ride a bicycle.\tJe sais monter à vélo.\nI can ride a bicycle.\tJe sais faire du vélo.\nI can squeeze you in.\tJe peux t'insérer.\nI can squeeze you in.\tJe peux vous insérer.\nI can squeeze you in.\tJe peux vous faire entrer.\nI can squeeze you in.\tJe peux te faire entrer.\nI can swim very fast.\tJe peux nager très vite.\nI can take a message.\tJe peux prendre un message.\nI can talk for a bit.\tJe peux parler un peu.\nI can wait no longer.\tJe ne peux pas attendre plus longtemps.\nI can't believe that.\tJe n'arrive pas à y croire.\nI can't believe this.\tJe n'arrive pas à le croire.\nI can't carry a tune.\tJe ne sais pas chanter juste.\nI can't come tonight.\tJe ne peux pas venir ce soir.\nI can't confirm that.\tJe ne peux pas le confirmer.\nI can't confirm that.\tJe ne peux pas confirmer cela.\nI can't confirm this.\tJe ne peux pas le confirmer.\nI can't confirm this.\tJe suis dans l'incapacité de le confirmer.\nI can't count on Tom.\tJe ne peux pas compter sur Tom.\nI can't dance either.\tJe ne sais pas non plus danser.\nI can't dance either.\tJe ne sais pas danser non plus.\nI can't dance either.\tJe ne sais pas davantage danser.\nI can't do it either.\tJe ne peux pas le faire non plus.\nI can't do that, sir.\tJe ne peux pas faire cela, Monsieur.\nI can't eat all this.\tJe ne peux pas manger tout ça.\nI can't eat any more.\tJe ne peux rien avaler de plus.\nI can't eat any more.\tJe ne peux pas manger davantage.\nI can't eat any more.\tJe n'arrive plus à manger.\nI can't get involved.\tJe ne peux m'impliquer.\nI can't get involved.\tJe ne peux pas m'impliquer.\nI can't hear a thing.\tJe n'arrive pas à entendre quoi que ce soit.\nI can't hear a thing.\tJe ne parviens pas à entendre quoi que ce soit.\nI can't help you now.\tJe ne peux pas vous aider maintenant.\nI can't imagine that.\tJe ne peux pas me l'imaginer.\nI can't kiss you now.\tJe ne peux t'embrasser maintenant.\nI can't kiss you now.\tJe ne peux vous embrasser maintenant.\nI can't kiss you now.\tJe ne peux pas t'embrasser maintenant.\nI can't kiss you now.\tJe ne peux pas vous embrasser maintenant.\nI can't move my legs.\tJe ne peux pas bouger les jambes.\nI can't move my legs.\tJe ne parviens pas à bouger les jambes.\nI can't pay the rent.\tJe ne suis pas en mesure de payer le loyer.\nI can't see anything.\tJe ne vois rien.\nI can't sleep at all!\tJe n'arrive pas du tout à dormir.\nI can't speak French.\tJe ne sais pas parler français.\nI can't speak German.\tJe ne sais pas parler allemand.\nI can't speak German.\tJe ne parle pas allemand.\nI can't speak to Tom.\tJe ne peux pas parler à Tom.\nI can't stop smoking.\tJe ne parviens pas à m'arrêter de fumer.\nI can't stop writing.\tJe ne peux pas m’arrêter d'écrire.\nI can't take chances.\tJe ne peux prendre aucun risque.\nI can't tell you yet.\tJe ne peux pas encore te le dire.\nI can't tell you yet.\tJe ne peux vous le dire encore.\nI can't wait all day.\tJe ne peux pas attendre toute la journée.\nI can't wait for Tom.\tJe ne peux pas attendre Tom.\nI can't wait for you.\tJe ne peux pas t'attendre.\nI can't wait forever.\tJe ne peux pas attendre indéfiniment.\nI cannot drive a bus.\tJe ne sais pas conduire un bus.\nI cannot read French.\tJe ne sais pas lire le français.\nI caused an accident.\tJ'ai causé un accident.\nI caused an accident.\tJ'ai provoqué un accident.\nI checked everywhere.\tJ'ai vérifié partout.\nI chose not to leave.\tJ'ai choisi de ne pas partir.\nI closed my umbrella.\tJe fermai mon parapluie.\nI convinced everyone.\tJ'ai convaincu tout le monde.\nI could barely speak.\tJe pouvais à peine parler.\nI could kill you now.\tJe pourrais vous tuer, maintenant.\nI could kill you now.\tJe pourrais te tuer, maintenant.\nI could've done that.\tJ'aurais pu faire cela.\nI couldn't care less.\tJe m'en soucie comme d'une guigne.\nI couldn't finish it.\tJe n'ai pas pu le terminer.\nI couldn't finish it.\tJe ne pouvais pas le finir.\nI count on your help.\tJe compte sur votre aide.\nI count on your help.\tJe compte sur ton aide.\nI crossed the street.\tJe traversai la rue.\nI cut myself shaving.\tJe me suis coupée en me rasant.\nI daydreamed all day.\tJ'ai rêvassé toute la journée.\nI decided not to eat.\tJ'ai décidé de ne pas manger.\nI demand punctuality.\tJ'exige de la ponctualité.\nI did find something.\tJ'ai trouvé quelque chose.\nI did it a few times.\tJe l'ai fait quelques fois.\nI did it without you.\tJe l'ai fait sans toi.\nI did it without you.\tJe l'ai fait sans vous.\nI did not order this.\tJe n'ai pas commandé ça.\nI did that yesterday.\tJe l'ai fait hier.\nI did what was right.\tJ'ai fait ce qui convenait.\nI did what you asked.\tJ'ai fait ce que tu as demandé.\nI did what you asked.\tJ'ai fait ce que vous avez demandé.\nI didn't buy the car.\tJe n'ai pas acheté la voiture.\nI didn't buy the car.\tJe n'achetai pas la voiture.\nI didn't do anything.\tJe n'ai rien fait !\nI didn't do anything.\tJe n'ai rien fait.\nI didn't fall asleep.\tJe ne me suis pas endormi.\nI didn't fall asleep.\tJe ne me suis pas endormie.\nI didn't get the job.\tJe n'ai pas décroché le poste.\nI didn't get the job.\tJe n'ai pas obtenu l'emploi.\nI didn't kill anyone.\tJe n'ai tué personne.\nI didn't look at Tom.\tJe n'ai pas regardé Tom.\nI didn't mean to pry.\tJe ne voulais pas être impoli.\nI didn't mean to pry.\tJe ne voulais pas être impolie.\nI didn't read it all.\tJe ne l'ai pas lu entièrement.\nI didn't see anybody.\tJe n'ai vu personne.\nI didn't tell anyone.\tJe ne l'ai dit à personne.\nI didn't want to die.\tJe ne voulais pas mourir.\nI do a lot of things.\tJe fais de nombreuses choses.\nI do appreciate that.\tJ'apprécie vraiment cela.\nI do it all the time.\tJe le fais tout le temps.\nI do not feel guilty.\tJe ne me sens pas coupable.\nI do not like spring.\tJe n'aime pas le printemps.\nI do not mince words.\tJe ne mâche pas mes mots.\nI do want to open it.\tJe veux vraiment l'ouvrir.\nI do want to see you.\tJe veux vraiment vous voir.\nI do want to see you.\tJe veux vraiment te voir.\nI don't believe that.\tJe n'y crois pas.\nI don't believe that.\tJe ne crois pas ça.\nI don't believe this.\tJe n'y crois pas.\nI don't care anymore.\tJe ne m'en soucie plus.\nI don't care for him.\tJe ne me soucie pas de lui.\nI don't care for him.\tLui, je m'en fiche.\nI don't deserve this.\tJe ne le mérite pas.\nI don't deserve this.\tJe ne mérite pas ça.\nI don't do that well.\tJe ne le fais pas bien.\nI don't drink coffee.\tJe ne bois pas de café.\nI don't enjoy tennis.\tJe n'aime pas le tennis.\nI don't feel like it.\tJe n'en ai pas envie.\nI don't feel like it.\tJe n'en suis pas d'humeur.\nI don't feel like it.\tJe n'en ai pas le cœur.\nI don't feel so good.\tJe ne me sens pas très bien.\nI don't feel so good.\tJe ne me sens pas tellement bien.\nI don't feel so well.\tJe ne me sens pas si bien.\nI don't get out much.\tJe ne sors pas beaucoup.\nI don't get the joke.\tJe n'ai pas compris la blague.\nI don't go to church.\tJe ne vais pas à l'église.\nI don't have a badge.\tJe n'ai pas de passe.\nI don't have a fever.\tJe n'ai pas de fièvre.\nI don't have a knife.\tJe n'ai pas de couteau.\nI don't have a phone.\tJe n'ai pas de téléphone.\nI don't have all day.\tJe n'ai pas toute la journée.\nI don't have the key.\tJe n'ai pas la clé.\nI don't hear a thing.\tJe n'entends rien.\nI don't hear barking.\tJe n'entends pas aboyer.\nI don't hold grudges.\tJe ne garde pas rancune.\nI don't keep a diary.\tJe ne tiens pas de journal.\nI don't know English.\tJe ne sais pas l'anglais.\nI don't know English.\tJ'ignore l'anglais.\nI don't know English.\tJe ne connais pas l'anglais.\nI don't know Russian.\tJe ne sais pas le russe.\nI don't know exactly.\tJe ne sais pas exactement.\nI don't know how far.\tJ'ignore à quelle distance.\nI don't know the way.\tJe ne connais pas le chemin.\nI don't know the way.\tJ'ignore le chemin.\nI don't like doctors.\tJe n'aime pas les médecins.\nI don't like her hat.\tJe n'aime pas son chapeau.\nI don't like his hat.\tJe n'aime pas son chapeau.\nI don't like silence.\tJe n'aime pas le silence.\nI don't like spiders.\tJe n'aime pas les araignées.\nI don't like to fail.\tJe n'aime pas échouer.\nI don't like to lose.\tJe n'aime pas perdre.\nI don't like to lose.\tJe n'apprécie pas de perdre.\nI don't like waiting.\tJe n'aime pas servir.\nI don't like writing.\tJe n'aime pas écrire.\nI don't mind helping.\tÇa ne me dérange pas d'aider.\nI don't mind it here.\tÇa ne me dérange pas d'être ici.\nI don't mind waiting.\tCela ne me fait rien d'attendre.\nI don't need a break.\tJe n'ai pas besoin de pause.\nI don't need it back.\tJe n'en ai plus besoin.\nI don't need to know.\tJe n'ai pas besoin de le savoir.\nI don't own a guitar.\tJe ne possède pas de guitare.\nI don't see anything.\tJe ne vois rien.\nI don't speak French.\tJe ne parle pas français.\nI don't speak German.\tJe ne parle pas allemand.\nI don't trust anyone.\tJe ne fais confiance à personne.\nI don't want to know.\tJe ne veux pas le savoir.\nI don't want to play.\tJe ne veux pas jouer.\nI don't want to stay.\tJe ne veux pas rester.\nI don't want to stop.\tJe ne veux pas m'arrêter.\nI don't want to stop.\tJe me refuse à y mettre un terme.\nI don't want to swim.\tJe ne veux pas nager.\nI don't want to talk.\tJe ne veux pas parler.\nI don't work for you.\tJe ne travaille pas pour vous.\nI don't work for you.\tJe ne travaille pas pour toi.\nI dropped my earring.\tJ'ai laissé tomber ma boucle d'oreille.\nI dropped my earring.\tJ'ai fait tomber ma boucle d'oreille.\nI eat here every day.\tJe mange ici tous les jours.\nI eat here every day.\tJe mange ici chaque jour.\nI enjoy working here.\tJ'apprécie de travailler ici.\nI enjoy your company.\tJ'apprécie votre compagnie.\nI enjoy your company.\tJ'apprécie ta compagnie.\nI expect him to come.\tJ'attends qu'il vienne.\nI expect much of him.\tJ'attends beaucoup de lui.\nI feel kind of tired.\tJe me sens comme fatigué.\nI feel kind of tired.\tJe me sens comme fatiguée.\nI feel like an idiot.\tJe me sens bête.\nI feel like vomiting.\tJ'ai envie de vomir.\nI feel really stupid.\tJe me sens vraiment idiot.\nI feel really stupid.\tJe me sens vraiment idiote.\nI feel safe with you.\tJe me sens en sécurité, avec vous.\nI feel safe with you.\tJe me sens en sécurité, avec toi.\nI feel sorry for her.\tJe suis désolée pour elle.\nI feel sorry for her.\tJe me sens désolé pour elle.\nI feel sorry for her.\tJe me sens désolée pour elle.\nI feel sorry for him.\tJe me sens désolé pour lui.\nI feel sorry for him.\tJe me sens désolée pour lui.\nI feel sorry for you.\tJe me sens désolé pour toi.\nI feel sorry for you.\tJe me sens désolée pour toi.\nI feel sorry for you.\tJe me sens désolé pour vous.\nI feel sorry for you.\tJe me sens désolée pour vous.\nI feel very betrayed.\tJe me sens vraiment trahi.\nI feel very betrayed.\tJe me sens vraiment trahie.\nI felt like an idiot.\tJe me sentis idiot.\nI felt like an idiot.\tJe me sentis idiote.\nI felt like an idiot.\tJe me suis senti idiot.\nI felt like an idiot.\tJe me suis sentie idiote.\nI felt sorry for you.\tJe me suis sentie désolée pour vous.\nI felt sorry for you.\tJe me suis senti désolé pour vous.\nI felt sorry for you.\tJe me suis sentie désolée pour toi.\nI felt sorry for you.\tJe me suis senti désolé pour toi.\nI finally understand.\tJe comprends finalement.\nI followed the rules.\tJ'ai respecté les règles.\nI followed the rules.\tJe respectai les règles.\nI forget who said it.\tJ'ai oublié qui l'a dit.\nI forgot his address.\tJ'ai oublié son adresse.\nI forgot my password.\tJ'ai oublié mon mot de passe.\nI found an apartment.\tJ'ai trouvé un appartement.\nI found the building.\tJ'ai trouvé l'immeuble.\nI get off there, too.\tJe descends ici aussi.\nI go to Osaka by bus.\tJe vais à Osaka en bus.\nI go to bed at 10.30.\tJe me couche à dix heures et demie.\nI got an A in French.\tJ’ai eu un A en français.\nI got it for nothing.\tJe l'ai eu pour trois fois rien.\nI guess Tom is right.\tJ'imagine que Tom a raison.\nI guess that's right.\tJe suppose que c'est vrai.\nI guess you're right.\tJe suppose que tu as raison.\nI guess you're right.\tJe suppose que vous avez raison.\nI had a busy morning.\tJ'ai eu une matinée chargée.\nI had a good teacher.\tJ'ai eu un bon instituteur.\nI had a good teacher.\tJ'ai eu un bon professeur.\nI had a good teacher.\tJ'ai eu une bonne institutrice.\nI had a heart attack.\tJ'ai eu une crise cardiaque.\nI had a lovely night.\tJ'ai passé une nuit délicieuse.\nI had a lovely night.\tJ'ai passé une soirée délicieuse.\nI had a speech ready.\tJ'avais un discours de prêt.\nI had a tooth pulled.\tOn m'a arraché une dent.\nI had an early lunch.\tJ'ai déjeuné tôt.\nI had an inspiration.\tJ'eus une inspiration.\nI had fun last night.\tJe me suis amusée, hier soir.\nI had fun last night.\tJe me suis amusé, hier soir.\nI had it all planned.\tJ'avais tout prévu.\nI had never seen her.\tJe ne l'avais jamais vue.\nI had no alternative.\tJe ne disposais pas d'alternative.\nI had no time to eat.\tJe n'ai pas eu le temps de manger.\nI had no time to eat.\tJe n'eus pas le temps de manger.\nI had nothing to say.\tJe n'avais rien à dire.\nI had only one drink.\tJe n'ai pris qu'un verre.\nI had only one drink.\tJe ne pris qu'un verre.\nI had to act at once.\tJ'ai dû agir immédiatement.\nI had to act at once.\tJ'ai dû agir sur-le-champ.\nI had to act quickly.\tJ'ai dû agir rapidement.\nI hard-boiled an egg.\tJ'ai cuit un œuf dur.\nI hate cops like him.\tJe déteste les flics tels que lui.\nI hate hospital food.\tJe déteste la nourriture des hôpitaux.\nI hate hospital food.\tJe déteste la nourriture d'hôpital.\nI hate long goodbyes.\tJe déteste les longs au revoir.\nI hate silent movies.\tJe déteste les films muets.\nI hated you at first.\tJe vous détestais, au début.\nI hated you at first.\tJe te détestais, au début.\nI have a bad sunburn.\tJ'ai un mauvais coup de soleil.\nI have a better idea.\tJ'ai une meilleure idée.\nI have a big problem.\tJ'ai un gros problème.\nI have a few friends.\tJ'ai quelques amis.\nI have a job for you.\tJ'ai un travail pour toi.\nI have a job for you.\tJ'ai un boulot pour vous.\nI have a job for you.\tJ'ai un boulot pour toi.\nI have a job for you.\tJ'ai un travail pour vous.\nI have a new bicycle.\tJ'ai un nouveau vélo.\nI have a new red car.\tJ'ai une nouvelle voiture rouge.\nI have a reservation.\tJ'ai une réserve.\nI have a slight cold.\tJ'ai un léger rhume.\nI have a stomachache.\tJ'ai mal au ventre.\nI have a stomachache.\tJ'ai mal à l'estomac.\nI have a sweet tooth.\tJe suis bec sucré.\nI have a sweet tooth.\tJ'ai un penchant pour les sucreries.\nI have a wooden comb.\tJ'ai un peigne en bois.\nI have an invitation.\tJ'ai une invitation.\nI have back problems.\tJ'ai des problèmes de dos.\nI have been to India.\tJe suis allé en Inde.\nI have bleeding gums.\tMes gencives saignent.\nI have bottled water.\tJ'ai de l'eau en bouteille.\nI have caught a cold.\tJ'ai attrapé un rhume.\nI have caught a cold.\tJ'ai attrapé froid.\nI have gained weight.\tJ'ai pris du poids.\nI have good eyesight.\tJ'ai une bonne vue.\nI have got to go now.\tIl faut que j'y aille maintenant.\nI have got to go now.\tJe dois partir maintenant.\nI have lost my watch.\tJ'ai perdu ma montre.\nI have lost my watch.\tJ’ai perdu ma montre.\nI have lots of ideas.\tJ'ai plein d'idées.\nI have lots of money.\tJe dispose de beaucoup d'argent.\nI have lunch at noon.\tJe déjeune à midi.\nI have misjudged you.\tJe vous ai méjugé.\nI have misjudged you.\tJe t'ai méjugé.\nI have misjudged you.\tJe vous ai méjugée.\nI have misjudged you.\tJe t'ai méjugée.\nI have my own theory.\tJ'ai ma propre théorie.\nI have no experience.\tJe n'ai pas d'expérience.\nI have no experience.\tJe suis dépourvu d'expérience.\nI have no experience.\tJe suis dépourvue d'expérience.\nI have no more ideas.\tJe suis à court d'idées.\nI have no statistics.\tJe ne dispose pas de statistiques.\nI have no use for it.\tJe n'en ai pas l'usage.\nI have poor eyesight.\tJ'ai une mauvaise vue.\nI have read the book.\tJ'ai lu le livre.\nI have seen it a lot.\tJe l'ai beaucoup vu.\nI have so many ideas.\tJ'ai tellement d'idées !\nI have so many ideas.\tJ'ai tant d'idées !\nI have such bad luck.\tJ'ai une telle poisse !\nI have thirteen cats.\tJ'ai treize chats.\nI have three cameras.\tJ'ai trois appareils photo.\nI have three cousins.\tJ'ai trois cousins.\nI have three sisters.\tJ'ai trois sœurs.\nI have three tickets.\tJ'ai trois billets.\nI have to be careful.\tIl me fait être prudent.\nI have to do my best.\tJe dois faire de mon mieux.\nI have to do my hair.\tIl faut que je me coiffe.\nI have to go to work.\tJe dois aller au travail.\nI have to see it all.\tIl me faut le voir en entier.\nI have to wear boots.\tIl faut que je porte des bottes.\nI have two daughters.\tJ'ai deux filles.\nI haven't had dinner.\tJe n'ai pas dîné.\nI heard the question.\tJ'ai entendu la question.\nI heard you did well.\tJ'ai entendu dire que vous vous en étiez bien tiré.\nI heard you did well.\tJ'ai entendu dire que tu t'en étais bien tiré.\nI hit on a good idea.\tIl m'est venu une bonne idée.\nI hope it's not true.\tJ'espère que ce n'est pas vrai.\nI hope that's a joke.\tJ'espère que c'est une blague.\nI hope you're hungry.\tJ'espère que tu as faim.\nI hope you're hungry.\tJ'espère que vous avez faim.\nI hugged her tightly.\tJe l'ai étroitement enlacée.\nI just bought a boat.\tJe viens d'acheter un bateau.\nI just can't help it.\tJe ne peux simplement m'en empêcher.\nI just can't help it.\tJe ne peux simplement pas m'en empêcher.\nI just can't take it.\tJe ne peux simplement pas le prendre.\nI just can't take it.\tJe ne peux simplement pas encaisser ça.\nI just cracked a rib.\tJe viens de me fêler une côte.\nI just cut my finger.\tJe viens de me couper le doigt.\nI just don't like it.\tJe n'aime pas ça, un point c'est tout.\nI just don't like it.\tJe ne l'aime pas, un point c'est tout.\nI just need a minute.\tJ'ai juste besoin d'une minute.\nI just took a shower.\tJe viens de prendre une douche.\nI just took a shower.\tJ'ai simplement pris une douche.\nI just want you back.\tJe veux simplement que tu me reviennes.\nI just want you back.\tJe veux simplement que tu reviennes avec moi.\nI keep thirteen cats.\tJ'ai treize chats.\nI kept my mouth shut.\tJ'ai tenu ma langue.\nI kept my mouth shut.\tJe tins ma langue.\nI kept my mouth shut.\tJe n'ai pas dit mot.\nI kept my mouth shut.\tJe ne dis pas mot.\nI knew I could do it.\tJe savais que je pouvais le faire.\nI knew I could do it.\tJe savais pouvoir le faire.\nI knew I'd be blamed.\tJe savais qu'on me le reprocherait.\nI knew Tom would win.\tJe savais que Tom gagnerait.\nI knew it was a joke.\tJe savais que c'était une blague.\nI knew we'd find you.\tJe savais que nous vous trouverions.\nI knew we'd find you.\tJe savais que nous te trouverions.\nI knew you'd like it.\tJe savais que vous l'aimeriez.\nI knew you'd like it.\tJe savais que tu l'aimerais.\nI know I can do that.\tJe sais pouvoir le faire.\nI know Tom very well.\tJe connais très bien Tom.\nI know Tom was angry.\tJe sais que Tom était en colère.\nI know all about you.\tJe sais tout de toi.\nI know all about you.\tJe sais tout de vous.\nI know all about you.\tJe sais tout à ton sujet.\nI know all about you.\tJe sais tout à votre sujet.\nI know her very well.\tJe la connais très bien.\nI know him very well.\tJe le connais très bien.\nI know him very well.\tJe le connais fort bien.\nI know it's not easy.\tJe sais que ce n'est pas facile.\nI know it's not fair.\tJe sais que ce n'est pas juste.\nI know it's not true.\tJe sais que ce n'est pas vrai.\nI know lots of songs.\tJe connais de nombreuses chansons.\nI know sign language.\tJe connais la langue des signes.\nI know that you know.\tJe sais que tu sais.\nI know that you know.\tJe sais que vous savez.\nI know the gentleman.\tJe connais ce gentleman.\nI know what they are.\tJe sais ce qu'ils sont.\nI know what they are.\tJe sais ce qu'elles sont.\nI know what to study.\tJe sais quoi étudier.\nI know what you know.\tJe sais ce que tu sais.\nI know what you mean.\tJe sais ce que tu veux dire.\nI know what you mean.\tJe sais ce que vous voulez dire.\nI know why he did it.\tJe sais pourquoi il a fait ça.\nI know you know this.\tJe sais que tu sais cela.\nI know you're scared.\tJe sais que vous avez peur.\nI know you're scared.\tJe sais que tu as peur.\nI know your roommate.\tJe connais ton compagnon de chambre.\nI know your roommate.\tJe connais votre compagnon de chambre.\nI know your roommate.\tJe connais ton compagnon de chambrée.\nI know your roommate.\tJe connais ta camarade de chambre.\nI know your roommate.\tJe connais votre camarade de chambre.\nI leave it up to you.\tJe te laisse en décider.\nI leave it up to you.\tJe vous laisse en décider.\nI leave it up to you.\tJe laisse cela à tes soins.\nI leave it up to you.\tJe laisse cela à vos soins.\nI leave this evening.\tJe pars ce soir.\nI left the door open.\tJ'ai laissé la porte ouverte.\nI left you a message.\tJe vous ai laissé un message.\nI left you a message.\tJe t'ai laissé un message.\nI lent Tom my camera.\tJ'ai prêté mon appareil photo à Tom.\nI let go of the rope.\tJ'ai lâché la corde.\nI let go of the rope.\tJe lâchai la corde.\nI lied to my parents.\tJ'ai menti à mes parents.\nI like Japanese food.\tJ'aime la cuisine japonaise.\nI like canned fruits.\tJ'aime les fruits en conserve.\nI like coffee better.\tJ'aime mieux le café.\nI like coffee better.\tJe préfère le café.\nI like her dark eyes.\tJ'aime ses yeux foncés.\nI like her very much.\tJe l'aime beaucoup.\nI like her very much.\tJe l'apprécie beaucoup.\nI like him very much.\tJe l'aime beaucoup.\nI like painting, too.\tJ'aime peindre aussi.\nI like reading books.\tJ'aime lire des livres.\nI like to eat apples.\tJ'aime manger des pommes.\nI like to play poker.\tJ'aime jouer au poker.\nI like to read books.\tJ'aime lire des livres.\nI like to sing songs.\tJ'aime chanter des chansons.\nI like you very much.\tJe t'aime beaucoup.\nI like your attitude.\tJ'apprécie ton attitude.\nI like your attitude.\tJ'apprécie votre attitude.\nI like your earrings.\tJ'aime tes boucles d'oreilles.\nI like your necklace.\tJ'aime votre collier.\nI like your necklace.\tJ'aime ton collier.\nI like your painting.\tJ'apprécie ton tableau.\nI like your painting.\tJ'apprécie votre tableau.\nI like your painting.\tJ'aime ton tableau.\nI like your painting.\tJ'aime votre tableau.\nI liked your dancing.\tJ'ai apprécié votre danse.\nI liked your dancing.\tJ'ai apprécié ta danse.\nI liked your friends.\tJ'ai apprécié tes amis.\nI liked your friends.\tJ'ai apprécié tes amies.\nI liked your friends.\tJ'appréciai tes amis.\nI liked your friends.\tJ'ai apprécié vos amis.\nI liked your friends.\tJ'ai apprécié vos amies.\nI liked your friends.\tJ'appréciai tes amies.\nI liked your friends.\tJ'appréciai vos amis.\nI liked your friends.\tJ'appréciai vos amies.\nI live a simple life.\tJe mène une vie simple.\nI live in a big city.\tJ'habite dans une grande ville.\nI live in this hotel.\tJ'habite dans cet hôtel.\nI look forward to it.\tJ'attends cela avec impatience.\nI look forward to it.\tJe m'en réjouis d'avance.\nI looked at my watch.\tJ'ai regardé ma montre.\nI looked for the key.\tJe cherchais la clef.\nI lost my flashlight.\tJ'ai perdu ma lampe-torche.\nI lost my house keys.\tJ'ai perdu les clés de chez moi.\nI lost my sunglasses.\tJ'ai égaré mes lunettes de soleil.\nI lost that argument.\tJ'ai perdu cette joute verbale.\nI lost that argument.\tJe perdis cette joute verbale.\nI lost track of time.\tJ'ai perdu la notion du temps.\nI love American food.\tJ'aime la nourriture américaine.\nI love French movies.\tJ'adore les films français.\nI love beach parties.\tJ'adore les fêtes sur la plage.\nI love fried bananas.\tJ'adore les bananes frites.\nI love reading books.\tJ'adore lire des livres.\nI love the food here.\tJ'adore la nourriture, ici.\nI love your daughter.\tJ'adore votre fille.\nI love your daughter.\tJ'aime votre fille.\nI love your daughter.\tJ'adore ta fille.\nI made a big mistake.\tJ'ai commis une grosse erreur.\nI made a big mistake.\tJe commis une grosse erreur.\nI made a few changes.\tJ'ai effectué quelques modifications.\nI made a lucky guess.\tJ'ai hasardé une heureuse hypothèse.\nI made a model plane.\tJe fabriquais une maquette d'avion.\nI made a paper plane.\tJe fis un avion de papier.\nI made a paper plane.\tJ'ai fait un avion de papier.\nI made a paper plane.\tJ'ai fait un avion en papier.\nI made that decision.\tJ'ai pris cette décision.\nI major in economics.\tJe suis spécialisé en Sciences Économiques.\nI make a good living.\tJe gagne bien ma vie.\nI may as well go now.\tJe ferais bien d'y aller maintenant.\nI mean no disrespect.\tJe ne veux pas manquer de respect.\nI meant it as a joke.\tC'était censé être une blague.\nI meant it as a joke.\tÇa se voulait une blague.\nI memorized the poem.\tJ'ai mémorisé le poème.\nI memorized the poem.\tJ'ai mémorisé la poésie.\nI met Mary yesterday.\tJ'ai rencontré Mary hier.\nI met Mary yesterday.\tHier, j'ai rencontré Marie.\nI met a friend there.\tJ'ai rencontré un ami là-bas.\nI met a friend there.\tJ'ai rencontré une amie là-bas.\nI met him about noon.\tJe l'ai rencontré vers midi.\nI met him in January.\tJe l'ai rencontré en janvier.\nI met him in January.\tJe le rencontrai en janvier.\nI met them last week.\tJe les ai rencontrés la semaine dernière.\nI miss you very much.\tTu me manques beaucoup.\nI missed you so much.\tTu m'as tellement manqué !\nI missed you so much.\tVous m'avez tellement manqué !\nI must be going deaf.\tJe dois devenir sourd.\nI must be going deaf.\tJe dois devenir sourde.\nI must buy some milk.\tJe dois acheter du lait.\nI must talk with you.\tJe dois parler avec toi.\nI nearly blacked out.\tJ'ai presque perdu la mémoire.\nI need a clean shirt.\tJ'ai besoin d'une chemise propre.\nI need a drink first.\tIl me faut d'abord un verre.\nI need a fresh start.\tJ'ai besoin de recommencer à neuf.\nI need a little time.\tJ'ai besoin d'un peu de temps.\nI need a new bicycle.\tJ'ai besoin d'un nouveau vélo.\nI need a new bicycle.\tIl me faut un nouveau vélo.\nI need another drink.\tIl me faut un autre verre.\nI need another drink.\tJ'ai besoin d'un autre verre.\nI need it right away.\tJ'en ai besoin tout de suite.\nI need more blankets.\tJ'ai besoin de plus de couvertures.\nI need to go to work.\tJe dois aller au travail.\nI need to study math.\tJ'ai besoin d'étudier les maths.\nI need you right now.\tJ'ai immédiatement besoin de toi.\nI need you right now.\tJ'ai immédiatement besoin de vous.\nI need you right now.\tJ'ai besoin de toi sur-le-champ.\nI need you right now.\tJ'ai besoin de vous sur-le-champ.\nI needed to meet you.\tJ'avais besoin de te rencontrer.\nI needed to meet you.\tJ'avais besoin de vous rencontrer.\nI never asked for it.\tJe ne l'ai jamais requis.\nI never asked for it.\tJe ne l'ai jamais demandé.\nI never did it again.\tJe ne l'ai jamais refait.\nI never liked school.\tJe n'ai jamais aimé l'école.\nI never saw his face.\tJe n’ai jamais vu son visage.\nI no longer like you.\tJe ne t'aime plus.\nI no longer love him.\tJe ne l'aime plus.\nI no longer love you.\tJe ne t'aime plus.\nI no longer love you.\tJe ne vous aime plus.\nI now agree with Tom.\tJe suis maintenant d'accord avec Tom.\nI only need a minute.\tJe n'ai besoin que d'une minute.\nI only need a minute.\tIl ne me faut qu'une minute.\nI only saw the apple.\tJ'ai seulement vu la pomme.\nI ordered fries, too.\tJ'ai également commandé des frites.\nI owe a lot of money.\tJe dois beaucoup d'argent.\nI owe him 50,000 yen.\tJe lui dois 50,000 yens.\nI owe him some money.\tJe lui dois un peu d'argent.\nI owe him some money.\tJe lui dois quelque argent.\nI parked around back.\tJ'ai fait le tour pour me garer derrière.\nI plan to do it soon.\tJe projette de le faire bientôt.\nI pleaded not guilty.\tJ'ai plaidé non coupable.\nI prefer it that way.\tJe le préfère ainsi.\nI prefer it that way.\tJe le préfère comme ça.\nI prefer it that way.\tJe le préfère de cette façon.\nI prefer it this way.\tJe le préfère ainsi.\nI prefer it this way.\tJe le préfère de cette manière.\nI prefer to be alone.\tJe préfère être seul.\nI prefer to be alone.\tJe préfère être seule.\nI prefer to go alone.\tJe préfère y aller seul.\nI prefer to go alone.\tJe préfère y aller seule.\nI prefer to go alone.\tJe préfère m'y rendre seul.\nI prefer to go alone.\tJe préfère m'y rendre seule.\nI put on my trousers.\tJe mets mon pantalon.\nI put on my trousers.\tJe mis mon pantalon.\nI put on my trousers.\tJe passai mon pantalon.\nI put on my trousers.\tJe passe mon pantalon.\nI ran into my friend.\tJ'ai percuté mon ami.\nI ran like lightning.\tJ'ai couru à la vitesse de l'éclair.\nI really didn't care.\tJe ne m'en souciais vraiment pas.\nI really like garlic.\tJ'aime vraiment l'ail.\nI really like garlic.\tJ'aime beaucoup l'ail.\nI really love my job.\tJ'aime vraiment mon travail.\nI really ought to go.\tIl me faut vraiment y aller.\nI really ought to go.\tIl me faut vraiment m'en aller.\nI really wasn't sure.\tJe n'en étais pas vraiment sûr.\nI really wasn't sure.\tJe n'en étais pas vraiment sûre.\nI received your note.\tJ'ai reçu votre note.\nI received your note.\tJ'ai reçu ta note.\nI rechecked the data.\tJ'ai à nouveau vérifié les données.\nI rechecked the data.\tJ'ai de nouveau vérifié les données.\nI refuse to allow it.\tJe refuse de le permettre.\nI refused to be paid.\tJ'ai refusé d'être payé.\nI regret going there.\tJe regrette d'y être allé.\nI regret kissing you.\tJe regrette de t'avoir embrassée.\nI regret kissing you.\tJe regrette de t'avoir embrassé.\nI regret saying that.\tJe regrette avoir dit ça.\nI regret saying that.\tJe regrette avoir dit cela.\nI rejected the offer.\tJ'ai rejeté l'offre.\nI rejected the offer.\tJ'ai rejeté la proposition.\nI remember something.\tJe me souviens de quelque chose.\nI remember this poem.\tJe me souviens de ce poème.\nI remember this word.\tJe me souviens de ce mot.\nI remember this word.\tJe me souviens de cette parole.\nI said don't do that.\tJ'ai dit de ne pas le faire.\nI said it might rain.\tJ'ai dit qu'il pourrait pleuvoir.\nI saw you snickering.\tJe t'ai vu pouffer.\nI saw you snickering.\tJe t'ai vue pouffer.\nI saw you snickering.\tJe vous ai vu pouffer.\nI saw you snickering.\tJe vous ai vue pouffer.\nI saw you snickering.\tJe vous ai vues pouffer.\nI saw you snickering.\tJe vous ai vus pouffer.\nI see no alternative.\tJe ne vois pas d'alternative.\nI sent you an e-mail.\tJe t'ai envoyé un courrier électronique.\nI should go with you.\tJe devrais aller avec vous.\nI should go with you.\tJe devrais aller avec toi.\nI should've told you.\tJ'aurais dû te le dire.\nI should've told you.\tJ'aurais dû vous le dire.\nI shouldn't complain.\tJe ne devrais pas me plaindre.\nI showed her my room.\tJe lui ai montré ma chambre.\nI showed him my room.\tJe lui ai montré ma chambre.\nI showed him the way.\tJe lui indiquai le chemin.\nI showed him the way.\tJe lui ai indiqué le chemin.\nI shower every night.\tJe me douche chaque soir.\nI sincerely hope not.\tJe ne l'espère sincèrement pas.\nI sometimes watch TV.\tJe regarde parfois la télévision.\nI sort of understand.\tJe comprends à peu près.\nI started this topic.\tJ'ai ouvert ce sujet.\nI still don't get it.\tJe ne capte toujours pas.\nI still don't get it.\tJe ne saisis toujours pas.\nI studied last night.\tJ'ai étudié hier soir.\nI suddenly feel sick.\tJe me sens tout à coup malade.\nI swallowed my pride.\tJ'ai ravalé ma fierté.\nI swim in the summer.\tEn été, je nage.\nI talked about music.\tJ'ai parlé de musique.\nI talked about music.\tJ'ai parlé musique.\nI thank you for that.\tJe vous en remercie.\nI think I understand.\tJe pense comprendre.\nI think I understood.\tJe pense que j’ai compris.\nI think I'll do that.\tJe pense que je ferai ça.\nI think Tom can help.\tJe pense que Tom peut vous aider.\nI think Tom can help.\tJe pense que Tom peut nous aider.\nI think Tom can help.\tJe pense que Tom peut m'aider.\nI think Tom can help.\tJe pense que Tom peut t'aider.\nI think Tom did that.\tJe pense que c'est Tom qui l'a fait.\nI think Tom did this.\tJe pense que c'est Tom le responsable.\nI think Tom did this.\tJe pense que Tom a fait ceci.\nI think Tom did well.\tJe pense que Tom a bien fait.\nI think Tom has gone.\tJe pense que Tom a disparu.\nI think Tom is awake.\tJe pense que Tom est réveillé.\nI think Tom is drunk.\tJe pense que Tom est bourré.\nI think Tom is drunk.\tJe pense que Tom est saoul.\nI think Tom is loyal.\tJe pense que Tom est loyal.\nI think Tom is loyal.\tJe pense que Tom est fidèle.\nI think Tom is ready.\tJe pense que Tom est prêt.\nI think Tom is right.\tJe pense que Tom a raison.\nI think Tom liked it.\tJe pense que Tom a aimé.\nI think Tom needs me.\tJe pense que Tom a besoin de moi.\nI think Tom will win.\tJe pense que Tom gagnera.\nI think he likes you.\tJe pense qu'il t'apprécie.\nI think he likes you.\tJe pense qu'il vous apprécie.\nI think it is a gift.\tJe pense que c'est un présent.\nI think it's awesome.\tJe pense que c'est génial.\nI think it's obvious.\tJe pense que c'est évident.\nI think my mom knows.\tJe pense que ma maman le sait.\nI think that was Tom.\tJe pense que c'était Tom.\nI think that's awful.\tJe pense que c'est affreux.\nI think they know me.\tJe pense qu'ils me connaissent.\nI think they know us.\tJe pense qu'ils nous connaissent.\nI think they like me.\tJe crois qu'ils m'aiment.\nI think they like me.\tJe pense qu'ils m'apprécient.\nI think they like me.\tJe pense qu'elles m'apprécient.\nI think they like us.\tJe crois qu'ils nous aiment.\nI think they like us.\tJe crois qu'ils nous apprécient.\nI think they like us.\tJe crois qu'elles nous apprécient.\nI think they saw you.\tJe pense qu'ils t'ont aperçu.\nI think they saw you.\tJe pense qu'ils vous ont aperçu.\nI think this is mine.\tJe pense que c'est le mien.\nI think this is mine.\tJe pense que c'est la mienne.\nI think this will do.\tJe pense que cela va faire l'affaire.\nI think we can do it.\tJe pense que nous pouvons le faire.\nI think we should go.\tJe pense que nous devrions y aller.\nI think we should go.\tJe pense que nous devrions nous en aller.\nI think you heard me.\tJe crois que vous m'avez bien entendu.\nI think you look hot.\tJe pense que tu as l'air excitant.\nI think you look hot.\tJe pense que tu as l'air excitante.\nI think you look hot.\tJe pense que vous avez l'air excitant.\nI think you look hot.\tJe pense que vous avez l'air excitante.\nI think you look hot.\tJe pense que vous avez l'air excitants.\nI think you look hot.\tJe pense que vous avez l'air excitantes.\nI think you look hot.\tJe pense que vous avez l'air d'avoir chaud.\nI think you look hot.\tJe pense que tu as l'air d'avoir chaud.\nI think you panicked.\tJe pense que vous vous êtes paniqué.\nI think you panicked.\tJe pense que vous vous êtes paniqués.\nI think you panicked.\tJe pense que vous vous êtes paniquées.\nI think you panicked.\tJe pense que vous vous êtes paniquée.\nI think you panicked.\tJe pense que tu t'es paniqué.\nI think you panicked.\tJe pense que tu t'es paniquée.\nI think you're drunk.\tJe pense que tu es ivre.\nI think you're drunk.\tJe pense que vous êtes ivre.\nI think you're drunk.\tJe pense que vous êtes ivres.\nI think you're funny.\tJe pense que vous êtes drôle.\nI think you're funny.\tJe pense que vous êtes marrant.\nI think you're funny.\tJe pense que tu es drôle.\nI think you're funny.\tJe pense que tu es marrant.\nI think you're funny.\tJe pense que tu es marrante.\nI think you're funny.\tJe pense que vous êtes marrante.\nI think you're funny.\tJe pense que vous êtes marrants.\nI think you're funny.\tJe pense que vous êtes marrantes.\nI think you're lying.\tJe pense que tu mens.\nI think you're lying.\tJe pense que vous mentez.\nI think you're ready.\tJe pense que tu es prêt.\nI think you're ready.\tJe pense que tu es prête.\nI think you're ready.\tJe pense que vous êtes prêt.\nI think you're ready.\tJe pense que vous êtes prête.\nI think you're ready.\tJe pense que vous êtes prêts.\nI think you're ready.\tJe pense que vous êtes prêtes.\nI think you're right.\tJe crois que tu as raison.\nI think you're right.\tJe crois que vous avez raison.\nI think you're right.\tJe pense que vous avez raison.\nI think you're right.\tJe pense que tu as raison.\nI think you're wrong.\tJe pense que tu te trompes.\nI think you're wrong.\tJe pense que tu as tort.\nI think you're wrong.\tJe pense que vous avez tort.\nI thought I knew you.\tJe pensais te connaître.\nI thought I knew you.\tJe pensais vous connaître.\nI thought I was cool.\tJ'ai pensé que c'était peinard.\nI thought I was cool.\tJe pensais que c'était sympa.\nI thought it was Tom.\tJe pensais que c'était Tom.\nI thought you'd left.\tJe pensais que tu étais parti.\nI thought you'd left.\tJe pensais que tu étais partie.\nI thought you'd left.\tJe pensais que vous étiez parti.\nI thought you'd left.\tJe pensais que vous étiez partie.\nI thought you'd left.\tJe pensais que vous étiez partis.\nI thought you'd left.\tJe pensais que vous étiez parties.\nI took the wrong bus.\tJ'ai pris le mauvais bus.\nI totally understand.\tJe comprends complètement.\nI touched the bottom.\tJ'ai touché le fond.\nI traveled by myself.\tJe voyageai seul.\nI traveled by myself.\tJ'ai voyagé seul.\nI tried not to stare.\tJ'ai essayé de ne pas regarder avec insistance.\nI tried to kiss Mary.\tJ'ai essayé d'embrasser Mary.\nI tried to kiss Mary.\tJ'essayai d'embrasser Mary.\nI trusted my teacher.\tJ'ai fait confiance à ma professeure.\nI trusted my teacher.\tJ'ai fait confiance à mon professeur.\nI trusted my teacher.\tJ'ai fait confiance à mon maître.\nI trusted my teacher.\tJ'ai fait confiance à ma maîtresse.\nI turned off the tap.\tJ'ai fermé le robinet.\nI turned on the lamp.\tJ'ai allumé la lampe.\nI underestimated you.\tJe t'ai sous-estimé.\nI underestimated you.\tJe t'ai sous-estimée.\nI used to drink beer.\tJ'avais pour habitude de boire de la bière.\nI used to have a dog.\tJ'avais un chien.\nI waited three hours.\tJ'ai attendu trois heures.\nI want a new kitchen.\tJe veux une nouvelle cuisine.\nI want an MP3 player!\tJe veux un lecteur MP3 !\nI want my money back.\tJe veux récupérer mon argent.\nI want some of those.\tJe veux quelques-uns de ceux-ci.\nI want some of those.\tJe veux quelques-unes de celles-ci.\nI want some potatoes.\tJ'aimerais quelques pommes de terre.\nI want the other one.\tJe veux l'autre.\nI want them all shot.\tJe veux qu'ils soient tous fusillés.\nI want them all shot.\tJe veux qu'elles soient toutes fusillées.\nI want them all shot.\tJe veux qu'ils soient tous flingués.\nI want them all shot.\tJe veux qu'elles soient toutes flinguées.\nI want them all shot.\tJe veux qu'elles soient toutes descendues.\nI want them all shot.\tJe veux qu'ils soient tous descendus.\nI want to be a nurse.\tJe veux être infirmière.\nI want to be at home.\tJe veux être chez moi.\nI want to be at home.\tJe veux être à la maison.\nI want to be careful.\tJe veux être prudente.\nI want to be careful.\tJe veux être prudent.\nI want to be invited.\tJe veux être invitée.\nI want to be invited.\tJe veux être invité.\nI want to be noticed.\tJe veux être remarquée.\nI want to be noticed.\tJe veux être remarqué.\nI want to buy a book.\tJe veux acheter un livre.\nI want to go fishing.\tJe veux aller pêcher.\nI want to go to Mars.\tJe veux me rendre sur Mars.\nI want to go to town.\tJe veux aller en ville.\nI want to play cards.\tJe veux jouer aux cartes.\nI want to please you.\tJe veux te faire plaisir.\nI want to please you.\tJe veux vous plaire.\nI want to please you.\tJe veux te plaire.\nI want to please you.\tJe veux vous faire plaisir.\nI want to rent a car.\tJe veux louer une voiture.\nI want to see Boston.\tJe veux voir Boston.\nI want to see a show.\tJe veux voir un spectacle.\nI want to start over.\tJe veux recommencer.\nI want to start over.\tQuant à moi, je veux recommencer.\nI want to stay alive.\tJe veux rester en vie.\nI want to stay alive.\tQuant à moi, je veux rester en vie.\nI want to take notes.\tJe veux prendre des notes.\nI want to watch this.\tJe veux regarder ceci.\nI want to watch this.\tJe veux regarder ça.\nI want what you want.\tJe veux ce que vous voulez.\nI want what you want.\tJe veux ce que tu veux.\nI want you back here.\tJe veux que vous reveniez ici.\nI want you back here.\tJe veux que tu reviennes ici.\nI want you to try it.\tJe veux que tu l'essayes.\nI want you to try it.\tJe veux que vous l'essayiez.\nI wanted to go there.\tJe voulais y aller.\nI wanted to go there.\tJe voulais m'y rendre.\nI wanted to help you.\tJe voulais t'aider.\nI wanted to remember.\tJe voulais me souvenir.\nI wanted to share it.\tJe voulais le partager.\nI wanted to tell you.\tJe voulais te le dire.\nI wanted to tell you.\tJe voulais vous le dire.\nI was afraid of that.\tJe le craignais.\nI was bored to death.\tJe m'ennuyais à mourir.\nI was born on a ship.\tJe suis né sur un bateau.\nI was born on a ship.\tJe suis née sur un bateau.\nI was busy this week.\tJ'étais occupé cette semaine.\nI was busy yesterday.\tJ'étais occupé hier.\nI was home all night.\tJ'étais chez moi toute la nuit.\nI was hurt and upset.\tJ'étais blessé et énervé.\nI was in bed already.\tJ'étais déjà au lit.\nI was jealous of you.\tJ'étais jaloux de vous.\nI was jealous of you.\tJ'étais jaloux de toi.\nI was jealous of you.\tJ'étais jalouse de vous.\nI was jealous of you.\tJ'étais jalouse de toi.\nI was looking at her.\tJe la regardais.\nI was planning on it.\tJe m'y attendais.\nI was playing tennis.\tJe jouais au tennis.\nI was pretty relaxed.\tJ'étais assez détendu.\nI was pretty relaxed.\tJ'étais assez détendue.\nI was reading a book.\tJe lisais un livre.\nI was ready to do it.\tJ'étais prêt à le faire.\nI was ready to do it.\tJ'étais prête à le faire.\nI was really curious.\tJ'étais vraiment curieux.\nI was really curious.\tJ'étais vraiment curieuse.\nI was somewhere else.\tJ'étais ailleurs.\nI was stung by a bee.\tJ'ai été piquée par une abeille.\nI was stung by a bee.\tJe fus piqué par une abeille.\nI was stung by a bee.\tJe fus piquée par une abeille.\nI was the only woman.\tJ'étais la seule femme.\nI was very confident.\tJ'étais très confiant.\nI was very flattered.\tJ'ai été très flatté.\nI was very flattered.\tJ'ai été très flattée.\nI was very flattered.\tJe fus très flatté.\nI was very flattered.\tJe fus très flattée.\nI was very reluctant.\tJ'étais très réticent.\nI was very reluctant.\tJ'étais très réticente.\nI was very reluctant.\tJ'étais fort réticent.\nI wasn't fast enough.\tJe n'ai pas été assez rapide.\nI wasn't fast enough.\tJe n'étais pas assez rapide.\nI wasn't good enough.\tJe n'étais pas assez bon.\nI wasn't good enough.\tJe n'étais pas assez bonne.\nI wasn't responsible.\tJe n'étais pas responsable.\nI went into the army.\tJe suis rentré dans l'armée.\nI went to the market.\tJe suis allé au marché.\nI went to the market.\tJe me suis rendu au marché.\nI will come with you.\tJe vais vous accompagner.\nI will do as you say.\tJe vais le faire comme tu l'as dit.\nI will give it a try.\tJ'essaierai.\nI will give it a try.\tJe ferai un essai.\nI will have him come.\tJe le ferai venir.\nI will make some tea.\tJe ferai du thé.\nI will never see him.\tJe ne le verrai jamais.\nI will show you some.\tJe vais vous en montrer quelques-uns.\nI will try next week.\tJ'essaierai la semaine prochaine.\nI wish I was kidding.\tJ'aimerais avoir plaisanté.\nI wish I were a bird.\tJ'aurais aimé être un oiseau.\nI wish I were a bird.\tJe souhaiterais être un oiseau.\nI wish I were clever.\tJ'aurais aimé être intelligent.\nI wish I were taller.\tJ'aurais aimé être plus grand.\nI wish you good luck.\tJe vous souhaite bonne chance.\nI wish you good luck.\tJe te souhaite bonne chance.\nI wish you happiness.\tJe te souhaite du bonheur.\nI wish you happiness.\tJe vous souhaite du bonheur.\nI wish you were here.\tJ'aimerais que tu sois là.\nI wish you were here.\tJ'aimerais que vous soyez là.\nI woke up at sunrise.\tJe me suis réveillé au lever du soleil.\nI woke up at sunrise.\tJe me suis réveillée au lever du soleil.\nI woke up at sunrise.\tJe me réveillai au lever du soleil.\nI won't be gone long.\tJe ne serai pas parti longtemps.\nI won't let you down.\tJe ne te laisserai pas tomber.\nI won't say anything.\tJe ne dirai rien.\nI won't say it again.\tJe ne vais pas le redire.\nI won't say it again.\tJe ne vais pas le dire encore une fois.\nI won't say it again.\tJe ne vais pas le dire à nouveau.\nI won't say it again.\tJe ne le dirai plus.\nI won't tell anybody.\tJe ne le dirai à personne.\nI wonder who took it.\tJe me demande qui l'a pris.\nI wonder who took it.\tJe me demande qui l'a prise.\nI work in a hospital.\tJe travaille dans un hôpital.\nI worried, of course.\tJe me suis fait du souci, bien sûr.\nI would like to draw.\tJ'aimerais dessiner.\nI wouldn't bet on it.\tJe ne parierais pas là-dessus.\nI'd be happy to help.\tJe serais heureux d'aider.\nI'd like to be alone.\tJ'aimerais être seule.\nI'd like to be alone.\tJ'aimerais être seul.\nI'd like to help you.\tJ'aimerais vous aider.\nI'd like to help you.\tJ'aimerais t'aider.\nI'd like to join you.\tJ'aimerais vous rejoindre.\nI'd like to join you.\tJ'aimerais te rejoindre.\nI'd like to kiss you.\tJ'aimerais vous embrasser.\nI'd like to kiss you.\tJ'aimerais t'embrasser.\nI'd like to see that.\tJ'aimerais voir ça.\nI'd like to try this.\tJ'aimerais l'essayer.\nI'd like to try this.\tJ'aimerais essayer ceci.\nI'd like to watch TV.\tJ'aimerais regarder la télévision.\nI'd love to meet him.\tJ'adorerais le rencontrer.\nI'd rather not do it.\tJe préférerais ne pas le faire.\nI'd say you did well.\tJe dirais que vous vous en êtes bien sorti.\nI'd say you did well.\tJe dirais que vous vous en êtes bien sorties.\nI'd say you did well.\tJe dirais que vous vous en êtes bien sortie.\nI'd say you did well.\tJe dirais que vous vous en êtes bien sortis.\nI'd say you did well.\tJe dirais que tu t'en es bien sorti.\nI'd say you did well.\tJe dirais que tu t'en es bien sortie.\nI'll admit I'm wrong.\tJ'admets que j'ai tort.\nI'll allow you to go.\tJe te permettrai d'y aller.\nI'll allow you to go.\tJe vous permettrai d'y aller.\nI'll apologize later.\tJe présenterai plus tard mes excuses.\nI'll be back tonight.\tJe serai de retour ce soir.\nI'll be back tonight.\tJe rentrerai ce soir.\nI'll be glad to come.\tJe serais content de venir.\nI'll be in my office.\tJe serai à mon bureau.\nI'll be in my office.\tJe me trouverai à mon bureau.\nI'll be in the truck.\tJe serai dans le camion.\nI'll be in the truck.\tJe me trouverai dans le camion.\nI'll be very careful.\tJe serai très prudent.\nI'll be watching you.\tJe vais te surveiller.\nI'll be watching you.\tJe vais vous surveiller.\nI'll be watching you.\tJe vous surveillerai.\nI'll be watching you.\tJe te surveillerai.\nI'll be your teacher.\tJe serai ton maître.\nI'll be your teacher.\tJe serai ton professeur.\nI'll be your teacher.\tJe serai ton instituteur.\nI'll be your teacher.\tJe vais être votre instituteur.\nI'll be your teacher.\tJe vais être votre professeur.\nI'll be your teacher.\tJe vais être votre institutrice.\nI'll become stronger.\tJe deviendrai plus fort.\nI'll buy you a drink.\tJe vais te payer à boire.\nI'll come back later.\tJe reviens après.\nI'll do that for Tom.\tJe ferai cela pour Tom.\nI'll do what you ask.\tJe ferai ce que vous demandez.\nI'll do what you ask.\tJe ferai ce que tu demandes.\nI'll dream about you.\tJe rêverai de toi.\nI'll dream about you.\tJe rêverai de vous.\nI'll eat standing up.\tJe mangerai debout.\nI'll finish it later.\tJe le finirai plus tard.\nI'll get back to you.\tJe te reviendrai.\nI'll get back to you.\tJe vous reviendrai.\nI'll get rid of them.\tJe m'en débarrasserai.\nI'll get rid of them.\tJe me débarrasserai d'eux.\nI'll get rid of them.\tJe me débarrasserai d'elles.\nI'll get you a towel.\tJe vais te chercher une serviette de toilette.\nI'll get you a towel.\tJe vais vous chercher une serviette de toilette.\nI'll get you a towel.\tJe vais vous trouver une serviette.\nI'll get you a towel.\tJe vais te trouver une serviette.\nI'll give him a buzz.\tJe le sonnerai.\nI'll give you a book.\tJe te donnerai un livre.\nI'll give you a call.\tJe te passerai un coup de fil.\nI'll give you a call.\tJe vous passerai un coup de fil.\nI'll give you a hand.\tJe t'assisterai.\nI'll give you a hand.\tJe te prêterai assistance.\nI'll give you a lift.\tJe te conduirai.\nI'll give you a ride.\tJe t'amène.\nI'll give you a ride.\tJe te dépose.\nI'll give you a shot.\tJe vais vous faire une injection.\nI'll handle the rest.\tJe me chargerai du reste.\nI'll keep it in mind.\tJe garderai cela à l'esprit.\nI'll keep my promise.\tJe tiendrai ma promesse.\nI'll keep you posted.\tJe vous tiens au courant.\nI'll keep you posted.\tJe te tiens au courant.\nI'll leave Tom alone.\tJe laisserai Tom seul.\nI'll leave Tom alone.\tJe laisserai Tom tranquille.\nI'll leave you to it.\tJe te laisse t'en occuper.\nI'll live on welfare.\tJe vivrai de l'aide sociale.\nI'll live on welfare.\tJe vivrai des aides sociales.\nI'll make some calls.\tJe donnerai quelques coups de fil.\nI'll make some calls.\tJe passerai quelques appels.\nI'll never come back.\tJe ne reviendrai jamais.\nI'll never leave you.\tJe ne te quitterai jamais.\nI'll paint the house.\tJe peindrai la maison.\nI'll phone you later.\tJe te rappellerai plus tard.\nI'll prove it to you.\tJe te le prouverai.\nI'll prove it to you.\tJe vous le prouverai.\nI'll see if he is in.\tJe vais voir s'il est là.\nI'll take you to Tom.\tJe t'amène chez Tom.\nI'll wait in the car.\tJe vais attendre dans la voiture.\nI'll wash the dishes.\tJe vais laver les plats.\nI'm a French citizen.\tJe suis un citoyen français.\nI'm a French citizen.\tJe suis citoyenne française.\nI'm a Windows person.\tJe suis branché Windows.\nI'm a complete idiot.\tJe suis un idiot complet.\nI'm a natural blonde.\tJe suis d'un blond naturel.\nI'm a very lucky man.\tJe suis un homme très chanceux.\nI'm afraid of flying.\tJ'ai peur de voler.\nI'm against the bill.\tJe suis contre ce projet de loi.\nI'm all out of ideas.\tJe suis dépourvu d'idées.\nI'm all out of ideas.\tJe suis dépourvue d'idées.\nI'm allergic to cats.\tJe suis allergique aux chats.\nI'm allergic to corn.\tJe suis allergique au maïs.\nI'm allergic to dogs.\tJe suis allergique aux chiens.\nI'm as tall as he is.\tJe suis aussi grand que lui.\nI'm at your disposal.\tJe suis à ta disposition.\nI'm at your disposal.\tJe suis à votre disposition.\nI'm attracted to him.\tJe suis attirée par lui.\nI'm back in business.\tJ'ai repris le business.\nI'm calling for help.\tJ'appelle de l'aide.\nI'm calling security.\tJ'appelle la sécurité.\nI'm calling the cops.\tJ'appelle les flics.\nI'm checking options.\tJe vérifie les possibilités.\nI'm closing the door.\tJe suis en train de fermer la porte.\nI'm depending on you.\tJe dépends de toi.\nI'm doing the dishes.\tJe suis en train de faire la vaisselle.\nI'm dying for a beer!\tMa vie pour une bière !\nI'm dying to see him.\tJe désespère de le voir !\nI'm dying to see you.\tJe désespère de te voir !\nI'm dying to see you.\tJe désespère de vous voir !\nI'm expecting a call.\tJ'attends un appel.\nI'm expecting a call.\tJ'attends un coup de fil.\nI'm feeling confused.\tJe me sens confus.\nI'm feeling confused.\tJe me sens confuse.\nI'm feeling fine now.\tJe vais bien maintenant.\nI'm feeling fine now.\tMaintenant je me sens bien.\nI'm feeling stressed.\tJe me sens stressé.\nI'm feeling stressed.\tJe me sens stressée.\nI'm fixing something.\tJe répare quelque chose.\nI'm friends with him.\tJe suis ami avec lui.\nI'm from out of town.\tJe viens de l'extérieur de la ville.\nI'm glad I hired you.\tJe suis content de t'avoir engagé.\nI'm glad I hired you.\tJe suis heureux de vous avoir engagés.\nI'm glad I hired you.\tJe suis content de t'avoir engagée.\nI'm glad I'm not Tom.\tJe suis content de ne pas être Tom.\nI'm glad he liked it.\tJe suis heureux qu'il l'ait apprécié.\nI'm glad he liked it.\tJe suis heureuse qu'il l'ait apprécié.\nI'm glad to meet you.\tJe suis content de vous voir.\nI'm glad we did that.\tJe me réjouis que nous l'ayons fait.\nI'm glad you met Tom.\tJe suis heureuse que tu aies rencontré Tom.\nI'm glad you're here.\tJe suis content que vous soyez là.\nI'm glad you're here.\tJe suis content que tu sois là.\nI'm glad you're here.\tJe suis contente que vous soyez là.\nI'm glad you're here.\tJe suis contente que tu sois là.\nI'm going to be late.\tJe serai en retard.\nI'm going to be sick.\tJe vais être malade.\nI'm going to college.\tJe vais à l'Université.\nI'm going to see Tom.\tJe vais voir Tom.\nI'm good at Japanese.\tJe parle bien japonais.\nI'm happy to be back.\tJe suis heureux d'être de retour.\nI'm happy to be back.\tJe suis heureuse d'être revenue.\nI'm happy to be back.\tJe suis heureux d'être rentré.\nI'm happy to see you.\tJe suis heureux de vous voir.\nI'm hardly ever home.\tJe ne suis pratiquement jamais chez moi.\nI'm here every night.\tJe suis ici tous les soirs.\nI'm here to help you.\tJe suis là pour vous aider.\nI'm here to help you.\tJe suis là pour t'aider.\nI'm here to help you.\tJe suis ici pour t'aider.\nI'm here to help you.\tJe suis ici pour vous aider.\nI'm here to save you.\tJe suis ici pour te sauver.\nI'm here to save you.\tJe suis là pour vous sauver.\nI'm highly motivated.\tVous m'avez bien motivé.\nI'm hitting the road.\tJe me casse.\nI'm in a hurry today.\tJe suis pressé aujourd'hui.\nI'm in love with you.\tJe suis amoureux de toi.\nI'm in love with you.\tJe suis amoureux de vous.\nI'm in love with you.\tJe suis amoureuse de toi.\nI'm in the same boat.\tJe suis dans la même galère.\nI'm incredibly tired.\tJe suis incroyablement fatigué.\nI'm just another man.\tJe suis juste un autre homme.\nI'm just helping out.\tJe ne fais que donner un coup de main.\nI'm just watching TV.\tJe suis en train de regarder la télévision.\nI'm listening to you.\tJe vous écoute.\nI'm living in a town.\tJe vis dans une ville.\nI'm looking for work.\tJe cherche du travail.\nI'm making a snowman.\tJe fais un bonhomme de neige.\nI'm no longer hungry.\tJe n'ai plus faim.\nI'm no longer sleepy.\tJe n'ai plus sommeil.\nI'm no match for Tom.\tJe ne fais pas le poids face à Tom.\nI'm no match for you.\tJe ne suis pas de taille à rivaliser avec vous.\nI'm no match for you.\tJe ne suis pas de taille à rivaliser avec toi.\nI'm no use to anyone.\tJe ne suis d'aucune utilité à qui que ce soit.\nI'm not a cat person.\tLes chats ne sont pas mon truc.\nI'm not a vegetarian.\tJe ne suis pas végétarien.\nI'm not a vegetarian.\tJe ne suis pas végétarienne.\nI'm not an alcoholic.\tJe ne suis pas alcoolique.\nI'm not as happy now.\tJe suis moins heureux maintenant.\nI'm not at all tired.\tJe ne suis pas fatiguée du tout.\nI'm not at all tired.\tJe ne suis pas fatigué du tout.\nI'm not at all tired.\tJe ne suis pas du tout fatigué.\nI'm not avoiding you.\tJe ne suis pas en train de t'éviter.\nI'm not busy anymore.\tJe ne suis plus occupé.\nI'm not busy anymore.\tJe ne suis plus occupée.\nI'm not denying that.\tJe ne démens pas cela.\nI'm not exactly sure.\tJe n'en suis pas tout à fait sûr.\nI'm not exactly sure.\tJe n'en suis pas tout à fait sûre.\nI'm not feeling well.\tJe ne me sens pas bien.\nI'm not finished yet.\tJe n'en ai pas encore fini.\nI'm not finished yet.\tJe n'en ai pas encore terminé.\nI'm not going to die.\tJe ne vais pas mourir.\nI'm not going to lie.\tJe ne vais pas mentir.\nI'm not good at this.\tJe ne suis pas bon à ça.\nI'm not good at this.\tJe ne suis pas bon là-dedans.\nI'm not good-looking.\tJe ne suis pas beau.\nI'm not good-looking.\tJe ne suis pas belle.\nI'm not here for you.\tJe ne suis pas là pour toi.\nI'm not here for you.\tJe ne suis pas là pour vous.\nI'm not ignoring you.\tJe ne suis pas en train de t'ignorer.\nI'm not ignoring you.\tJe ne suis pas en train de vous ignorer.\nI'm not making it up.\tJe ne l'invente pas.\nI'm not marrying you.\tJe ne vais pas t'épouser.\nI'm not marrying you.\tJe ne vais pas vous épouser.\nI'm not quitting now.\tJe ne vais pas abandonner maintenant.\nI'm not ready to die.\tJe ne suis pas prêt à mourir.\nI'm not ready to die.\tJe ne suis pas prête à mourir.\nI'm not really angry.\tJe ne suis pas vraiment en colère.\nI'm not running away.\tJe ne m'enfuis pas.\nI'm not safe in here.\tJe ne suis pas en sécurité, là-dedans.\nI'm not sitting here.\tJe ne vais pas m'asseoir ici.\nI'm not so convinced.\tJe n'en suis pas si convaincu.\nI'm not so convinced.\tJe n'en suis pas si convaincue.\nI'm not staying here.\tJe ne vais pas rester ici.\nI'm not stopping you.\tJe ne t'en empêche pas.\nI'm not stopping you.\tJe ne vous en empêche pas.\nI'm not sure I agree.\tJe ne suis pas sûr d'être d'accord.\nI'm not sure I agree.\tJe ne suis pas sûre d'être d'accord.\nI'm not sure anymore.\tJe n'en suis plus sûr.\nI'm not sure anymore.\tJe n'en suis plus sûre.\nI'm not taking sides.\tJe ne vais pas prendre parti.\nI'm not that cynical.\tJe ne suis pas cynique à ce point-là.\nI'm not that worried.\tJe ne suis pas si préoccupé.\nI'm not that worried.\tJe ne suis pas si préoccupée.\nI'm not tired at all.\tJe ne suis pas fatigué du tout.\nI'm not tired at all.\tJe ne suis pas du tout fatigué.\nI'm not turning back.\tJe ne vais pas faire demi-tour.\nI'm not very patient.\tJe ne suis pas très patient.\nI'm not very patient.\tJe ne suis pas très patiente.\nI'm not wearing this.\tJe ne vais pas porter ça.\nI'm not your brother.\tJe ne suis pas ton frère.\nI'm not your brother.\tJe ne suis pas votre frère.\nI'm not your servant.\tJe ne suis pas ton serviteur.\nI'm not your servant.\tJe ne suis pas ta servante.\nI'm not your teacher.\tJe ne suis pas ton professeur.\nI'm often in trouble.\tJe suis souvent en difficulté.\nI'm pressing charges.\tJ'engage des poursuites.\nI'm pressing charges.\tJe suis en train d'engager des poursuites.\nI'm proud of you all.\tJe suis fière de vous tous.\nI'm proud of you all.\tJe suis fière de vous toutes.\nI'm proud of you all.\tJe suis fier de vous tous.\nI'm proud of you all.\tJe suis fier de vous toutes.\nI'm ready if you are.\tJe suis prêt si tu l'es.\nI'm ready if you are.\tJe suis prête si tu l'es.\nI'm ready if you are.\tJe suis prêt si vous l'êtes.\nI'm ready if you are.\tJe suis prête si vous l'êtes.\nI'm really busy, Tom.\tJe suis très occupée, Tom.\nI'm really busy, Tom.\tJe suis très occupé, Tom.\nI'm right behind him.\tJe suis juste derrière lui.\nI'm right behind him.\tJe me trouve juste derrière lui.\nI'm right behind you.\tJe suis juste derrière toi.\nI'm right behind you.\tJe suis juste derrière vous.\nI'm right behind you.\tJe me trouve juste derrière toi.\nI'm right behind you.\tJe me trouve juste derrière vous.\nI'm right beside you.\tJe suis juste à ton côté.\nI'm shorter than him.\tJe suis plus petit que lui.\nI'm shorter than you.\tJe suis plus petit que toi.\nI'm shorter than you.\tJe suis plus petite que vous.\nI'm shorter than you.\tJe suis plus petit que vous.\nI'm sick of fighting.\tJe n'en peux plus de me battre.\nI'm sick of fighting.\tJe n'en peux plus de combattre.\nI'm sick of this war.\tJ'en ai marre de cette guerre.\nI'm smarter than you.\tJe suis plus intelligent que toi.\nI'm smarter than you.\tJe suis plus intelligente que toi.\nI'm smarter than you.\tJe suis plus intelligent que vous.\nI'm smarter than you.\tJe suis plus intelligente que vous.\nI'm smarter than you.\tJe suis plus élégant que toi.\nI'm smarter than you.\tJe suis plus élégante que toi.\nI'm smarter than you.\tJe suis plus élégant que vous.\nI'm smarter than you.\tJe suis plus élégante que vous.\nI'm smarter than you.\tJe suis plus dégourdi que toi.\nI'm smarter than you.\tJe suis plus dégourdie que toi.\nI'm smarter than you.\tJe suis plus dégourdi que vous.\nI'm smarter than you.\tJe suis plus dégourdie que vous.\nI'm smarter than you.\tJe suis plus vif que toi.\nI'm smarter than you.\tJe suis plus vif que vous.\nI'm smarter than you.\tJe suis plus vive que toi.\nI'm smarter than you.\tJe suis plus vive que vous.\nI'm smarter than you.\tJe suis plus astucieux que vous.\nI'm smarter than you.\tJe suis plus astucieuse que vous.\nI'm smarter than you.\tJe suis plus astucieux que toi.\nI'm smarter than you.\tJe suis plus astucieuse que toi.\nI'm sorry I hurt Tom.\tJe suis désolé d'avoir blessé Tom.\nI'm sorry I hurt you.\tJe suis désolé de t'avoir blessé.\nI'm sorry I hurt you.\tJe suis désolée de t'avoir blessé.\nI'm sorry I hurt you.\tJe suis désolée de t'avoir blessée.\nI'm sorry I hurt you.\tJe suis désolé de t'avoir blessée.\nI'm sorry I hurt you.\tJe suis désolé de vous avoir blessée.\nI'm sorry I hurt you.\tJe suis désolé de vous avoir blessé.\nI'm sorry I hurt you.\tJe suis désolée de vous avoir blessé.\nI'm sorry I hurt you.\tJe suis désolée de vous avoir blessée.\nI'm sorry I hurt you.\tJe suis désolé de vous avoir blessés.\nI'm sorry I hurt you.\tJe suis désolée de vous avoir blessés.\nI'm sorry I hurt you.\tJe suis désolée de vous avoir blessées.\nI'm sorry I hurt you.\tJe suis désolé de vous avoir blessées.\nI'm sorry I shot you.\tJe suis désolé de t'avoir tiré dessus.\nI'm sorry I shot you.\tJe suis désolée de vous avoir tiré dessus.\nI'm sorry to hear it.\tJe suis désolé d'entendre ça.\nI'm staying with you.\tJe reste avec toi.\nI'm still mad at her.\tJe suis toujours furieux après elle.\nI'm studying English.\tJ'étudie l'anglais.\nI'm sure they'll win.\tJe suis sûr qu'ils vont gagner.\nI'm sure they'll win.\tJe suis sûr qu'elles vont gagner.\nI'm terrible at math.\tJe suis épouvantable en math.\nI'm tired of arguing.\tJ'en ai assez de me disputer.\nI'm tired of dancing.\tJe suis fatigué de danser.\nI'm tired of dancing.\tJe suis fatiguée de danser.\nI'm tired of waiting.\tJ'en ai assez d'attendre.\nI'm tired of writing.\tJe suis fatiguée d'écrire.\nI'm too old for this.\tJe suis trop vieux pour ça.\nI'm too old for this.\tJe suis trop vieille pour ça.\nI'm totally confused.\tJe suis complètement embrouillé.\nI'm totally confused.\tJe suis complètement embrouillée.\nI'm unnecessary here.\tJe ne suis pas utile ici.\nI'm very comfortable.\tJe suis très à l'aise.\nI'm very lonely here.\tJe suis très seul ici.\nI'm watching a movie.\tJe regarde un film.\nI'm worried about it.\tCela m'inquiète.\nI'm writing a letter.\tJ'écris une lettre.\nI'm your best friend.\tJe suis ton meilleur ami.\nI'm your best friend.\tJe suis votre meilleur ami.\nI'm your biggest fan.\tJe suis votre plus grand fan.\nI'm your biggest fan.\tJe suis ton plus grand fan.\nI've already read it.\tJe l'ai déjà lu.\nI've already read it.\tJe l'ai déjà lue.\nI've already said no.\tJ'ai déjà dit non.\nI've been there once.\tJ'y ai été une fois.\nI've brought it back.\tJe l'ai ramené.\nI've changed clothes.\tJ'ai changé de vêtements.\nI've come a long way.\tJe me suis beaucoup amélioré.\nI've come a long way.\tJe me suis beaucoup améliorée.\nI've done everything.\tJ'ai tout fait.\nI've enjoyed my stay.\tJ'ai apprécié mon séjour.\nI've finished eating.\tJ'ai fini de manger.\nI've got a good idea.\tJ'ai une bonne idée.\nI've got a pacemaker.\tJ'ai un stimulateur cardiaque.\nI've got a toothache.\tJ'ai mal aux dents.\nI've got to get home.\tIl me faut aller à la maison.\nI've got to get home.\tJe dois me rendre chez moi.\nI've got to get home.\tIl me faut aller chez moi.\nI've had a busy week.\tJ'ai eu une semaine chargée.\nI've heard about you.\tJ'ai entendu parler de vous.\nI've heard it before.\tJe l'ai entendu auparavant.\nI've heard the rumor.\tJ'ai entendu la rumeur.\nI've learned to cook.\tJ'ai appris à cuisiner.\nI've lost my car key.\tJ'ai perdu ma clé de voiture.\nI've lost my dignity.\tJ'ai perdu ma dignité.\nI've lost my filling.\tJ'ai perdu mon plombage.\nI've lost my glasses.\tJ'ai perdu mes lunettes.\nI've made a decision.\tJe me suis décidé.\nI've made up my mind.\tJe me suis décidé.\nI've nothing to give.\tJe n'ai rien à donner.\nI've received it too.\tJe l'ai également reçu.\nI've received it too.\tJe l'ai également reçue.\nI've told the police.\tJe l'ai dit à la police.\nI've won first prize!\tJ'ai gagné le premier prix !\nI've worked with Tom.\tJ'ai travaillé avec Tom.\nIf only he had known!\tSi seulement il avait su !\nIgnore Tom's request.\tIgnore la demande de Tom.\nIgnore Tom's request.\tIgnorez la requête de Tom.\nIs Tom a good kisser?\tEst-ce que Tom embrasse bien ?\nIs Tom about to sing?\tTom est-il sur le point de chanter ?\nIs Tom still playing?\tTom joue encore ?\nIs anybody listening?\tQuiconque écoute-t-il ?\nIs anyone else going?\tQuelqu'un d'autre vient-il ?\nIs anyone else going?\tQui que ce soit d'autre s'y rend-il ?\nIs flight 23 on time?\tEst-ce que le vol 23 est à l'heure ?\nIs his pulse regular?\tSon pouls est-il régulier ?\nIs it OK if we begin?\tPouvons-nous commencer ?\nIs it difficult work?\tEst-ce un travail difficile ?\nIs it hot over there?\tEst-ce qu'il fait chaud là-bas ?\nIs it money you need?\tEst-ce d'argent dont tu as besoin ?\nIs it money you need?\tEst-ce d'argent dont vous avez besoin ?\nIs my answer correct?\tMa réponse est-elle correcte ?\nIs my answer correct?\tMa réponse est-elle juste ?\nIs my answer correct?\tMa réponse est-elle bonne ?\nIs she a pretty girl?\tEst-elle jolie fille ?\nIs she making a doll?\tConfectionne-t-elle une poupée ?\nIs that a bus or car?\tEst-ce un bus ou une voiture ?\nIs that another joke?\tC'est une blague de plus ?\nIs that your bicycle?\tEst-ce là votre vélo ?\nIs the cat all right?\tLe chat se porte-t-il bien ?\nIs the cat all right?\tLe chat va-t-il bien ?\nIs there a timetable?\tY a-t-il un horaire ?\nIs there a timetable?\tY a-t-il un programme ?\nIs there anyone else?\tQuelqu'un d'autre est-il là ?\nIs there anyone else?\tY a-t-il quelqu'un d'autre ?\nIs there anyone here?\tQuiconque est-il ici ?\nIs there anyone here?\tQuiconque se trouve-t-il ici ?\nIs this a compliment?\tEst-ce un compliment ?\nIs this a compliment?\tS'agit-il d'un compliment ?\nIs this all for real?\tTout cela est-il réel ?\nIs this all for real?\tTout ceci est-il réel ?\nIs this all there is?\tEst-ce tout ce qu'il y a ?\nIs this beef or pork?\tEst-ce du bœuf ou du porc ?\nIs this enough money?\tEst-ce là suffisamment d'argent ?\nIs this good English?\tEst-ce là du bon anglais ?\nIs this pencil yours?\tCe crayon est-il le tien ?\nIs this pencil yours?\tCe crayon est-il le vôtre ?\nIs this your bicycle?\tEst-ce que c'est votre vélo ?\nIs this your bicycle?\tEst-ce votre vélo ?\nIs this your bicycle?\tEst-ce votre bicyclette ?\nIs this your bicycle?\tEst-ce ton vélo ?\nIs this your bicycle?\tEst-ce ta bicyclette ?\nIs this your bicycle?\tEst-ce que c'est ta bicyclette ?\nIs this your opinion?\tEst-ce ton opinion ?\nIs your trunk locked?\tEst-ce que ton coffre est fermé à clé ?\nIsn't he a bit young?\tN'est-il pas un peu jeune ?\nIsn't it infuriating?\tN'est-ce pas horripilant ?\nIsn't it infuriating?\tN'est-ce pas exaspérant ?\nIsn't that Tom's hat?\tN'est-ce pas le chapeau de Tom ?\nIsn't this wonderful?\tN'est-ce pas merveilleux ?\nIsn't this wonderful?\tCeci n'est-il pas merveilleux ?\nIt affects all of us.\tÇa nous affecte tous.\nIt affects all of us.\tÇa affecte l'ensemble d'entre nous.\nIt belongs to me now.\tIl m'appartient désormais.\nIt feels really good.\tC'est une sensation vraiment bonne.\nIt felt like a dream.\tC'était comme un rêve.\nIt glows in the dark.\tÇa luit dans l'obscurité.\nIt has to be removed.\tÇa devait être enlevé.\nIt is a payday today.\tAujourd'hui c'est jour de paie.\nIt is already eleven.\tIl est déjà onze heures.\nIt is hardly raining.\tIl pleut à peine.\nIt is in the kitchen.\tIl est dans la cuisine.\nIt is in the kitchen.\tElle est dans la cuisine.\nIt is kind of pretty.\tC'est en quelque sorte joli.\nIt is no good to you.\tÇa ne te fait pas du bien.\nIt is no good to you.\tÇa ne vous fait pas du bien.\nIt is no good to you.\tÇa ne te fait pas de bien.\nIt is no good to you.\tÇa ne vous fait pas de bien.\nIt is of great value.\tC'est de grande valeur.\nIt is out of fashion.\tC'est démodé.\nIt is to be expected.\tOn doit s'y attendre.\nIt is very cold here.\tIl fait très froid ici.\nIt is very hot today.\tAujourd'hui, il fait très chaud.\nIt is wrong to steal.\tVoler est mal.\nIt looks fascinating.\tCela a l'air fascinant.\nIt looks good on you.\tÇa te va bien.\nIt looks like an egg.\tÇa ressemble à un œuf.\nIt looks really good.\tÇa a l'air vraiment bien.\nIt looks really good.\tÇa a l'air vraiment bon.\nIt looks really good.\tÇa paraît vraiment bien.\nIt looks really good.\tÇa paraît vraiment bon.\nIt makes me so happy.\tCela me rend si heureux.\nIt makes me so happy.\tCela me rend si heureuse.\nIt may rain tomorrow.\tIl pourrait pleuvoir demain.\nIt means a lot to me.\tÇa veut dire beaucoup de choses pour moi.\nIt no longer matters.\tÇa n'a plus d'importance.\nIt only costs $10.00!\tC'est seulement 10 dollars !\nIt pays to be polite.\tÇa paie d'être poli.\nIt rained for a week.\tIl a plu pendant une semaine.\nIt really did happen.\tCela s'est vraiment passé.\nIt seems interesting.\tÇa semble intéressant.\nIt seems interesting.\tÇa a l'air intéressant.\nIt seems safe enough.\tÇa semble assez sécurisant.\nIt sounds good to me.\tÇa me convient.\nIt sounds good to me.\tÇa me semble bon.\nIt tastes just right.\tC'est parfait.\nIt tastes just right.\tLe goût est parfait.\nIt took half an hour.\tÇa a pris une demi-heure.\nIt was a false alarm.\tC'était une fausse alarme.\nIt was a good answer.\tC'était une bonne réponse.\nIt was a long letter.\tC'était une longue lettre.\nIt was a quiet night.\tC'était une nuit calme.\nIt was a stupid idea.\tCe fut une idée stupide.\nIt was a stupid idea.\tÇa a été une idée stupide.\nIt was a tedious job.\tC'était un travail fastidieux.\nIt was all a big lie.\tTout ça était un gros mensonge.\nIt was an awful week.\tCe fut une semaine atroce.\nIt was an awful week.\tÇa a été une semaine atroce.\nIt was awfully funny.\tC'était terriblement amusant.\nIt was disappointing.\tC'était décevant.\nIt was heart-warming.\tC'était réconfortant.\nIt was his best time.\tCe fut son meilleur temps.\nIt was his best time.\tÇa a été son meilleur temps.\nIt was his own fault.\tC'était de sa propre faute.\nIt was kind of weird.\tC'était plutôt bizarre.\nIt was time to leave.\tIl était temps de partir.\nIt went off smoothly.\tÇa s'est passé comme prévu.\nIt went off smoothly.\tÇa s'est déroulé sans problème.\nIt will be dark soon.\tIl fera bientôt sombre.\nIt would be too easy.\tÇa serait trop facile.\nIt'll cost me my job.\tÇa va me coûter mon poste.\nIt's 99.9% effective.\tC'est efficace à quatre-vingt-dix-neuf virgule neuf pour cent.\nIt's 99.9% effective.\tC'est efficace à nonante-neuf virgule neuf pour cent.\nIt's a beautiful day!\tC'est une belle journée !\nIt's a beautiful day.\tC'est une belle journée.\nIt's a beautiful job.\tC'est un beau travail.\nIt's a complete sham.\tC'est une totale imposture.\nIt's a dead giveaway.\tC'est un indice très révélateur.\nIt's a good question.\tBonne question.\nIt's a monster storm.\tIl s'agit d'une tempête géante.\nIt's a piece of cake.\tC'est de la tarte.\nIt's a piece of cake.\tC'est du gâteau.\nIt's a piece of cake.\tComme dans du beurre.\nIt's a small problem.\tC'est un petit problème.\nIt's a waste of time.\tC'est une perte de temps.\nIt's against the law.\tC'est contraire à la loi.\nIt's all Greek to me.\tC'est du chinois.\nIt's all about money.\tTout est question d'argent.\nIt's all custom made.\tC'est tout fait sur mesure.\nIt's all over for us.\tC'est plié pour nous.\nIt's all over for us.\tC'est terminé pour nous.\nIt's all over for us.\tPour nous, tout est fini.\nIt's all so hopeless.\tTout est si désespéré.\nIt's all very simple.\tTout est très simple.\nIt's an easy victory.\tC'est une victoire facile.\nIt's an extreme case.\tC'est un cas extrême.\nIt's an extreme case.\tC'est une affaire extrême.\nIt's as easy as that.\tC'est aussi simple que ça.\nIt's been a good day.\tÇa a été une bonne journée.\nIt's best not to ask.\tLe mieux est de ne pas demander.\nIt's common courtesy.\tC'est de la simple politesse.\nIt's easier this way.\tC'est plus facile ainsi.\nIt's easier this way.\tC'est plus facile de cette manière.\nIt's easy if you try.\tC'est facile, si vous essayez.\nIt's easy if you try.\tC'est facile, si tu essayes.\nIt's easy to see why.\tC'est facile de voir pourquoi.\nIt's easy to see why.\tIl est facile de voir pourquoi.\nIt's good to be home.\tC'est bon d'être chez soi.\nIt's good to be home.\tC'est bon d'être à la maison.\nIt's hard to believe.\tC'est difficile à croire.\nIt's made of leather.\tC'est en cuir.\nIt's made of leather.\tC'est fait de cuir.\nIt's noisy next door.\tC'est bruyant à la porte d'à côté.\nIt's not a bad thing.\tCe n'est pas une mauvaise chose.\nIt's not a classroom.\tCe n'est pas une salle de classe.\nIt's not about money.\tIl ne s'agit pas d'argent.\nIt's not always easy.\tCe n'est pas toujours facile.\nIt's not evening yet.\tCe n'est pas encore le soir.\nIt's not fair at all.\tCe n'est pas juste du tout.\nIt's not fair to you.\tCe n'est pas juste envers vous.\nIt's not fair to you.\tCe n'est pas juste envers toi.\nIt's not good enough.\tCe n'est pas assez bien.\nIt's not just a game.\tCe n'est pas qu'un jeu.\nIt's not my birthday.\tCe n'est pas mon anniversaire.\nIt's not my business.\tCe n'est pas mon affaire.\nIt's not on the menu.\tÇa ne figure pas sur le menu.\nIt's not predictable.\tCe n'est pas prévisible.\nIt's not raining yet.\tIl ne pleut pas encore.\nIt's not their fault.\tCe n’est pas leur faute.\nIt's not time to die.\tCe n'est pas l'heure de mourir.\nIt's nothing special.\tÇa n'a rien de spécial.\nIt's older than that.\tC'est plus vieux que ça.\nIt's only a painting.\tCe n'est qu'un tableau.\nIt's over between us.\tC'est fini entre nous.\nIt's over now, right?\tC'est désormais fini, non ?\nIt's perfectly legal.\tC'est parfaitement légal.\nIt's really horrible.\tC'est vraiment horrible.\nIt's right above you.\tC'est juste au-dessus de vous.\nIt's right above you.\tC'est juste au-dessus de toi.\nIt's right next door.\tC’est juste à côté.\nIt's sort of strange.\tC'est en quelque sorte étrange.\nIt's still not ready.\tÇa n'est toujours pas prêt.\nIt's still not ready.\tCe n'est toujours pas prêt.\nIt's still not right.\tC'est encore erroné.\nIt's still not right.\tÇa n'est toujours pas correct.\nIt's still too early.\tIl est encore trop tôt.\nIt's time for dinner.\tC'est l'heure du dîner.\nIt's time for school.\tC'est l'heure de l'école.\nIt's time to go home.\tIl est temps d'aller à la maison.\nIt's too late anyway.\tC'est trop tard, de toutes les façons.\nIt's too late for me.\tC'est trop tard pour moi.\nIt's very surprising.\tC'est très surprenant.\nIt's what I would do.\tC'est ce que je ferais.\nIt's what he painted.\tC'est ce qu'il a peint.\nItaly is a peninsula.\tL'Italie est une péninsule.\nJust close your eyes.\tFermez simplement les yeux.\nJust close your eyes.\tFerme simplement les yeux.\nJust get out of here.\tDégage simplement d'ici !\nJust get out of here.\tDégagez simplement d'ici !\nJustice will prevail.\tLa justice prévaudra.\nKeep the door closed.\tGarde la porte fermée.\nKeep the door closed.\tLaissez la porte fermée !\nKeep the door closed.\tLaisse la porte fermée !\nKeep the door locked.\tGardez la porte verrouillée.\nKeep the kids inside.\tGarde les enfants à l'intérieur !\nKeep the kids inside.\tGardez les enfants à l'intérieur !\nKeep your eye on him.\tGarde l'œil sur lui.\nKeep your eye on him.\tGardez l'œil sur lui.\nKeep your nose clean.\tTe fourre pas dans les ennuis !\nKeep your nose clean.\tNe vous fourrez pas dans les ennuis !\nLeave my stuff alone.\tLaisse mes trucs tranquilles.\nLet go of the bottle.\tLâchez la bouteille !\nLet go of the bottle.\tLâche la bouteille !\nLet go of the handle.\tLâche la poignée !\nLet go of the handle.\tLâchez la poignée !\nLet me call you back.\tPermets-moi de te rappeler !\nLet me call you back.\tPermettez-moi de vous rappeler !\nLet me deal with him.\tLaisse-moi traiter avec lui.\nLet me deal with him.\tLaissez-moi traiter avec lui.\nLet me deal with him.\tLaisse-moi me charger de lui.\nLet me deal with him.\tLaissez-moi me charger de lui.\nLet me get my wallet.\tLaisse-moi attraper mon portefeuille !\nLet me get my wallet.\tLaisse-moi aller chercher mon portefeuille !\nLet me get my wallet.\tLaissez-moi attraper mon portefeuille !\nLet me get my wallet.\tLaissez-moi aller chercher mon portefeuille !\nLet me see that list.\tLaisse-moi voir cette liste !\nLet me see that list.\tLaissez-moi voir cette liste !\nLet me take a gander.\tLaisse-moi jeter un œil.\nLet me take a gander.\tLaissez-moi jeter un œil.\nLet me try something.\tPermettez-moi d'essayer quelque chose.\nLet's clean our room.\tNettoyons notre chambre.\nLet's discuss it now.\tDiscutons-en maintenant.\nLet's do it your way.\tFaisons-le à ta façon.\nLet's face the facts!\tRegardons la réalité !\nLet's finish the job.\tFinissons le boulot !\nLet's get on the bus.\tMontons dans le bus.\nLet's get some sleep.\tPrenons un peu de sommeil !\nLet's go by taxi, OK?\tAllons-y en taxi, d'accord ?\nLet's have breakfast.\tPrenons le petit-déjeuner !\nLet's hope she comes.\tPourvu qu'elle vienne.\nLet's meet on Sunday.\tRencontrons-nous dimanche.\nLet's not be enemies.\tNe soyons pas ennemis.\nLet's not be enemies.\tNe soyons pas ennemies.\nLet's not exaggerate.\tN'exagérons pas.\nLet's not waste time.\tNe perdons pas notre temps.\nLet's take a picture.\tPrenons une photo.\nLet's take our seats.\tAsseyons-nous.\nLet's try once again.\tEssayons encore une fois.\nLies beget more lies.\tLe mensonge entraîne le mensonge.\nLife seems so unfair.\tLa vie semble si injuste.\nLincoln died in 1865.\tLincoln est mort en 1865.\nListen to me, please.\tÉcoutez-moi, s'il vous plaît.\nLook at that big dog.\tRegarde ce gros chien.\nLook at that big dog.\tRegardez ce gros chien.\nLook at that picture.\tRegardez cette image.\nLook at that picture.\tRegarde ce tableau.\nLook at that picture.\tRegardez cette photo.\nLook at that picture.\tRegarde cette photo.\nLook at that picture.\tRegarde cette image.\nLook at the dog jump.\tRegarde le chien sauter !\nLook at the dog jump.\tRegardez le chien sauter !\nLook at this picture.\tRegarde ce tableau.\nLook at this picture.\tRegardez cette photo.\nLook before you leap.\tRegarde avant de sauter.\nLook before you leap.\tRegardez avant de sauter.\nLook forward, please.\tRegardez devant vous, je vous prie.\nLook in front of you.\tRegarde devant toi !\nLook in front of you.\tRegardez devant vous !\nLove is blinding you.\tL'amour te rend aveugle.\nLove knows no limits.\tL'amour ne connaît pas de limites.\nLove me, love my dog.\tQui m'aime, aime aussi mon chien.\nMake him work for it.\tFais-le travailler pour !\nMake him work for it.\tFaites-le travailler pour !\nMany lives were lost.\tDe nombreuses vies furent perdues.\nMany men died at sea.\tBeaucoup d'hommes sont morts en mer.\nMany trees fell down.\tDe nombreux arbres churent.\nMary did it for free.\tMarie l'a fait gratuitement.\nMary hugged her doll.\tMary serra sa poupée.\nMary hugged her doll.\tMary a fait un câlin à sa poupée.\nMary is Tom's cousin.\tMary est la cousine de Tom.\nMary is Tom's mother.\tMarie est la mère de Tom.\nMary is a brave girl.\tMarie est une brave fille.\nMay I ask a question?\tPuis-je poser une question ?\nMay I borrow a ruler?\tPuis-je emprunter une règle ?\nMay I eat this apple?\tPuis-je manger cette pomme ?\nMay I eat this apple?\tJe peux manger cette pomme ?\nMay I go out to play?\tPuis-je aller jouer dehors ?\nMay I have a program?\tPuis-je avoir un programme ?\nMay I have a receipt?\tJe peux avoir un reçu ?\nMay I have this book?\tJe peux avoir ce livre ?\nMay I take a message?\tPuis-je prendre un message ?\nMay I take your coat?\tPuis-je prendre ton manteau ?\nMay I use the toilet?\tPuis-je utiliser la salle de bain ?\nMay I use your phone?\tPuis-je utiliser votre téléphone ?\nMay I use your phone?\tPuis-je utiliser votre téléphone ?\nMay I use your phone?\tPuis-je utiliser ton téléphone ?\nMaybe I can show you.\tPeut-être puis-je te le montrer.\nMaybe I can show you.\tPeut-être puis-je vous le montrer.\nMaybe I deserve this.\tPeut-être est-ce que je le mérite.\nMaybe I should do it.\tPeut-être devrais-je le faire.\nMaybe I'm just crazy.\tPeut-être que je suis simplement dingue.\nMaybe Tom is in love.\tTom est peut-être amoureux.\nMaybe he's not young.\tPeut-être n'est-il pas jeune.\nMaybe it was obvious.\tPeut-être était-ce évident.\nMaybe she won't come.\tPeut-être qu'elle ne viendra pas.\nMaybe we should pray.\tPeut-être devrions-nous prier.\nMaybe we should talk.\tPeut-être devrions-nous parler.\nMaybe you were right.\tTu avais peut-être raison.\nMaybe you were right.\tVous aviez peut-être raison.\nMaybe you'll succeed.\tTu réussiras peut-être.\nMeet me in the lobby.\tRejoins-moi dans le hall.\nMeeting boys is hard.\tRencontrer des garçons est difficile.\nMen are all the same.\tLes hommes sont tous les mêmes.\nMilk makes us strong.\tLe lait nous rend fort.\nMisery loves company.\tLe malheur ne vient jamais seul.\nMom is making a cake.\tMaman est en train de faire un gâteau.\nMost people think so.\tLa plupart des gens pensent ça.\nMy apartment is near.\tMon appartement est à proximité.\nMy bag is very heavy.\tMon sac est très lourd.\nMy brother is stupid.\tMon frère est stupide.\nMy car is out of gas.\tMa voiture n'a plus d'essence.\nMy car needs washing.\tMa voiture a besoin d'être lavée.\nMy dad works all day.\tMon papa travaille toute la journée.\nMy eyes are watering.\tMes yeux sont en larmes.\nMy eyes keep burning.\tLes yeux continuent à me brûler.\nMy father grows rice.\tMon père cultive du riz.\nMy father is at home.\tMon père est à la maison.\nMy father isn't home.\tMon père n’est pas à la maison.\nMy father works here.\tMon père travaille ici.\nMy foot really hurts.\tMon pied me fait vraiment mal.\nMy head really aches.\tMa tête me fait vraiment mal.\nMy headache has gone.\tJe n'ai plus mal à la tête.\nMy hobby is shopping.\tMon passe-temps est de faire les magasins.\nMy home is your home.\tMa maison est ta maison.\nMy home is your home.\tMa maison est la tienne.\nMy house burned down.\tMa maison a complètement brûlé.\nMy house was on fire.\tMa maison était en feu.\nMy left hand is numb.\tMa main gauche est engourdie.\nMy life is in danger.\tMa vie est en danger.\nMy mother can't come.\tMa mère ne peut pas venir.\nMy mother cooks well.\tMa mère cuisine bien.\nMy mother was crying.\tMa mère pleurait.\nMy parents are crazy.\tMes parents sont cinglés.\nMy pen is out of ink.\tMon stylo est à court d'encre.\nMy plan was rejected.\tMon projet a été rejeté.\nMy school has a band.\tMon école a un groupe de musique.\nMy sister is married.\tMa sœur est mariée.\nMy skirt is too long.\tMa jupe est trop longue.\nMy son can tell time.\tMon fils sait lire l'heure.\nMy son loves rockets.\tMon fils adore les fusées.\nMy sons are soldiers.\tMes fils sont soldats.\nMy study is upstairs.\tMon bureau est en haut.\nMy turn finally came.\tMon tour vint enfin.\nMy watch is accurate.\tMa montre est à l'heure exacte.\nNeither is beautiful.\tAucune des deux n'est belle.\nNeither is beautiful.\tAucun des deux n'est beau.\nNo man escapes death.\tAucun homme n'échappe à la mort.\nNo news is good news.\tPas de nouvelles, bonnes nouvelles.\nNo one can deny that.\tPersonne ne peut dire le contraire.\nNo one else knows it.\tPersonne d'autre ne le sait.\nNo one escaped alive.\tPersonne n'en a réchappé vivant.\nNo one escaped alive.\tPersonne n'en réchappa vivant.\nNo one has been here.\tPersonne n'a été ici.\nNo one is asking you.\tPersonne ne vous le demande.\nNo one is asking you.\tPersonne ne te le demande.\nNo one is downstairs.\tPersonne ne se trouve en bas.\nNo one is expendable.\tPersonne n'est superflu.\nNo one is unbeatable.\tPersonne n'est imbattable.\nNo one said anything.\tPersonne n'a rien dit.\nNo one said anything.\tPersonne ne dit rien.\nNo one seems to care.\tTout le monde à l'air de s'en foutre.\nNo one seems to care.\tPersonne ne semble y prêter attention.\nNo one's judging you.\tPersonne ne vous juge.\nNo one's judging you.\tPersonne ne te juge.\nNo one's watching me.\tPersonne ne me regarde.\nNobody deserves that.\tPersonne ne mérite ça.\nNobody deserves that.\tPersonne ne mérite cela.\nNobody owns the moon.\tPersonne ne possède la Lune.\nNobody saw it coming.\tPersonne ne l'a vu venir.\nNobody saw it coming.\tPersonne ne le vit venir.\nNobody spoke with me.\tPersonne n'a parlé avec moi.\nNobody wants to work.\tPersonne ne veut travailler.\nNobody will help you.\tPersonne ne t'aidera.\nNobody will help you.\tPersonne ne vous aidera.\nNone of this is good.\tRien de cela n'est bon.\nNone of us want that.\tAucun d'entre nous ne le veut.\nNone of us want that.\tAucune d'entre nous ne le veut.\nNot everyone noticed.\tTout le monde n'a pas remarqué.\nNot much has changed.\tPas grand-chose n'a changé.\nNothing I did helped.\tRien de ce que j'ai fait n'a aidé.\nNothing can stop him.\tRien ne peut l'arrêter.\nNothing is happening.\tRien ne se passe.\nNothing is happening.\tRien n'a lieu.\nNothing is happening.\tRien ne se produit.\nOK, I think I get it.\tD'accord, je pense que je capte.\nOK, I think I get it.\tD'accord, je pense que je pige.\nOK, I think I got it.\tD'accord, je pense que j'ai capté.\nOK, I think I got it.\tD'accord, je pense que j'ai pigé.\nOne of them is a spy.\tL'un d'eux est un espion.\nOne of them is a spy.\tL'un d'entre eux est un espion.\nOne of them is a spy.\tL'une d'elles est une espionne.\nOne of them is a spy.\tL'une d'entre elles est une espionne.\nOops, I did it again.\tEt zut, j'ai recommencé !\nOpen your mouth wide.\tOuvrez grand la bouche.\nOur dog seldom bites.\tNotre chien mord rarement.\nOur dreams came true.\tNos rêves se sont réalisés.\nOur marriage is over.\tNotre mariage a pris fin.\nPeople were watching.\tLes gens regardaient.\nPerhaps he will come.\tIl viendra peut-être.\nPerhaps he will come.\tPeut-être viendra-t-il.\nPhew! That was close!\tOuf ! Il était grand temps !\nPlay that song again.\tRejoue cette chanson !\nPlay that song again.\tRejouez cette chanson !\nPlaying cards is fun.\tJouer aux cartes est amusant.\nPlease air the futon.\tAère le futon, s'il te plaît !\nPlease air the futon.\tVeuillez aérer le futon !\nPlease choose wisely.\tVeuillez choisir judicieusement.\nPlease choose wisely.\tMerci de faire un choix judicieux.\nPlease choose wisely.\tChoisissez judicieusement, s'il vous plaît.\nPlease come this way.\tVenez par ici s'il vous plaît.\nPlease come this way.\tPar ici, s'il vous plait.\nPlease come this way.\tPar ici, je vous prie.\nPlease deal the card.\tDistribuez les cartes, s'il vous plaît.\nPlease do it quickly.\tFais-le rapidement s'il te plaît.\nPlease do it quickly.\tFaites-le rapidement s'il vous plaît.\nPlease do not buy it.\tNe l'achetez pas, je vous prie !\nPlease do not buy it.\tNe l'achète pas, je te prie !\nPlease don't be late.\tNe sois pas en retard, s'il te plaît.\nPlease don't be late.\tNe soyez pas en retard, s'il vous plaît.\nPlease don't go away.\tS'il te plaît, ne t'en va pas.\nPlease don't go away.\tS'il te plaît, ne pars pas.\nPlease don't go away.\tS'il vous plaît, ne vous en allez pas.\nPlease don't go away.\tS'il vous plaît, ne partez pas.\nPlease don't go home.\tNe va pas chez toi, je te prie.\nPlease don't go home.\tN'allez pas chez vous, je vous prie.\nPlease don't go home.\tN'allez pas chez vous, je vous en prie.\nPlease don't go home.\tNe va pas chez toi, je t'en prie.\nPlease don't hang up.\tNe raccrochez pas s'il vous plait.\nPlease don't hurt me.\tVeuillez ne pas me blesser.\nPlease don't hurt me.\tNe me blesse pas, je te prie.\nPlease eat some cake.\tS'il te plaît, mange un peu de gâteau !\nPlease eat some cake.\tS'il vous plaît, mangez un peu de gâteau !\nPlease eat something.\tMangez quelque chose, je vous en prie.\nPlease help yourself.\tServez-vous s'il vous plaît.\nPlease help yourself.\tJe vous en prie, servez-vous.\nPlease insert a coin.\tVeuillez insérer une pièce.\nPlease keep in touch.\tVeuillez garder le contact.\nPlease keep in touch.\tVeuillez rester en contact.\nPlease keep in touch.\tReste en contact, s'il te plait.\nPlease lock the safe.\tVerrouille le coffre-fort, je te prie.\nPlease open the door.\tOuvrez la porte, s'il vous plaît.\nPlease open the door.\tVeuillez ouvrir la porte.\nPlease open your bag.\tS'il vous plait, ouvrez votre sac.\nPlease pay attention.\tFaites attention s'il vous plait.\nPlease pull the rope.\tVeuillez tirer sur la corde.\nPlease pull the rope.\tTire sur la corde, je te prie.\nPlease read after me.\tMerci de bien vouloir lire après moi.\nPlease remain seated.\tVeuillez rester assis.\nPlease remain seated.\tVeuillez rester assise.\nPlease remain seated.\tVeuillez rester assises.\nPlease save my place.\tGardez ma place, s'il vous plaît.\nPlease stop laughing.\tArrête de rire, s'il te plaît.\nPlease stop laughing.\tArrêtez de rire, s'il vous plaît.\nPlease telephone him.\tVeuillez lui téléphoner.\nPlease telephone him.\tTéléphone-lui, je te prie.\nPlease think it over.\tVeuillez y réfléchir.\nPlease think it over.\tRéfléchis-y, je te prie.\nPlease think it over.\tRéfléchis-y, s'il te plaît.\nPlease wait a moment.\tVeuillez patienter un instant.\nPlease write it down.\tPouvez-vous l'écrire s'il vous plait ?\nPlease write it down.\tVeuillez en prendre note.\nPlease write it down.\tVeuillez le noter.\nPress the bell twice.\tSonnez deux fois.\nPrice isn't an issue.\tLe prix n'est pas un problème.\nProceed with caution.\tProcède avec prudence.\nProceed with caution.\tProcédez avec prudence.\nPut away your wallet.\tRange ton portefeuille.\nPut down your pencil.\tPosez vos crayons.\nPut it on my account.\tMettez-le sur mon compte !\nPut it on my account.\tMets-le sur mon compte !\nPut the scalpel down.\tPose le scalpel.\nPut the scalpel down.\tPosez le scalpel.\nPut your hat back on.\tRemets ton chapeau.\nPut your hat back on.\tRemettez votre chapeau.\nQuit wasting my time.\tArrête de me faire perdre mon temps.\nQuit wasting my time.\tArrêtez de me faire perdre mon temps.\nRaise your left hand.\tLève la main gauche.\nRemember these rules.\tRappelle-toi ces règles.\nRemember these rules.\tSouviens-toi de ces règles.\nRemember these rules.\tRappelez-vous ces règles.\nRemember these rules.\tSouvenez-vous de ces règles.\nRoll down the window.\tAbaisse la fenêtre !\nRoll down the window.\tAbaissez la fenêtre !\nSee you all tomorrow.\tJe vous verrai tous demain.\nSee you all tomorrow.\tJe vous verrai toutes demain.\nSee you all tomorrow.\tNous vous verrons tous demain.\nSee you all tomorrow.\tNous vous verrons toutes demain.\nSend the kids to bed.\tDis aux enfants d'aller se coucher.\nSend the kids to bed.\tEnvoie les gosses au lit !\nSend the kids to bed.\tEnvoyez les gosses au lit !\nShake hands with him.\tSerrez-lui la main.\nShall we take a taxi?\tOn prend un taxi ?\nShape up or ship out!\tRéformez ou démissionnez !\nShape up or ship out!\tRéforme ou casse-toi !\nShape up or ship out!\tRéforme ou dégage !\nShe acted as a guide.\tElle fit office de guide.\nShe acted as a guide.\tElle a fait office de guide.\nShe always buys milk.\tElle achète toujours du lait.\nShe arrived in a car.\tElle est arrivée en voiture.\nShe bought a chicken.\tElle a acheté un poulet.\nShe bought a new car.\tElle a acheté une nouvelle voiture.\nShe bought a tea set.\tElle a acheté un service à thé.\nShe bought a tea set.\tElle a fait l'acquisition d'un service à thé.\nShe bought him a car.\tElle lui a acheté une voiture.\nShe broke into tears.\tElle a éclaté en sanglots.\nShe broke into tears.\tElle éclata en larmes.\nShe broke into tears.\tElle a éclaté en larmes.\nShe burst into tears.\tElle éclata en sanglots.\nShe burst into tears.\tElle éclata en larmes.\nShe burst into tears.\tElle a éclaté en larmes.\nShe can hardly speak.\tElle sait à peine parler.\nShe can hardly speak.\tElle peut à peine parler.\nShe can speak French.\tElle sait parler français.\nShe did it carefully.\tElle le fit soigneusement.\nShe did it carefully.\tElle l'a fait soigneusement.\nShe drives very fast.\tElle conduit très vite.\nShe failed to appear.\tElle ne s'est pas montrée.\nShe fell on her face.\tElle est tombée face au sol.\nShe felt a bit tired.\tElle se sentit un peu fatiguée.\nShe felt like crying.\tElle avait envie de pleurer.\nShe fixed us a snack.\tElle nous a préparé un en-cas.\nShe found him a seat.\tElle lui a trouvé une chaise.\nShe gave him a watch.\tElle lui a donné une montre.\nShe gave him the car.\tElle lui donna la voiture.\nShe got him to drive.\tElle l'a fait conduire.\nShe got what he said.\tElle a obtenu ce qu'il avait dit.\nShe grabbed a shower.\tElle a foncé prendre une douche.\nShe has a big family.\tElle a une grande famille.\nShe has a funny face.\tElle a un drôle de visage.\nShe has a hot temper.\tElle est susceptible.\nShe has a kind heart.\tElle a bon cœur.\nShe has a pure heart.\tElle a le cœur pur.\nShe has a round face.\tElle a un visage rond.\nShe has ten children.\tElle a dix enfants.\nShe held up her head.\tElle dressa la tête.\nShe ironed her shirt.\tElle a repassé sa chemise.\nShe is a blonde girl.\tC'est une fille blonde.\nShe is a good dancer.\tC'est une bonne danseuse.\nShe is a good writer.\tElle est bon écrivain.\nShe is a pretty girl.\tC'est une fille mignonne.\nShe is a quiet woman.\tC'est une femme tranquille.\nShe is a real beauty.\tElle est une vrai beauté.\nShe is a real beauty.\tC'est une vraie beauté.\nShe is able to skate.\tElle est capable de patiner.\nShe is angry with me.\tElle est en colère après moi.\nShe is bad at sports.\tElle n'est pas bonne en sport.\nShe is first in line.\tElle est au premier rang.\nShe is hostile to me.\tElle m'est hostile.\nShe is in a bad mood.\tElle est de mauvaise humeur.\nShe is living abroad.\tElle vit actuellement à l'étranger.\nShe is making dinner.\tElle prépare le souper.\nShe is making dinner.\tElle prépare le dîner.\nShe is making dinner.\tElle prépare le déjeuner.\nShe is my dream girl.\tC'est la fille de mes rêves.\nShe is my girlfriend.\tC'est ma copine.\nShe is never on time.\tElle n'est jamais à l'heure.\nShe is out of danger.\tElle est hors de danger.\nShe is skipping rope.\tElle saute à la corde.\nShe is wearing a hat.\tElle porte un chapeau.\nShe isn't lonely now.\tElle n'est plus seule maintenant.\nShe knows everything.\tElle sait tout.\nShe likes these cats.\tElle aime bien ces chats.\nShe likes word games.\tElle aime les jeux de mots.\nShe lives in comfort.\tElle vit dans le confort.\nShe looked up at him.\tElle le regarda d'en bas.\nShe looks like a boy.\tElle a l'air d'un garçon.\nShe looks very happy.\tElle semble très contente.\nShe looks very happy.\tElle a l'air très heureuse.\nShe looks very young.\tElle paraît très jeune.\nShe married a sailor.\tElle s'est mariée à un marin.\nShe married a sailor.\tElle a épousé un marin.\nShe married a sailor.\tElle épousa un marin.\nShe married a sailor.\tElle se maria à un marin.\nShe may have said so.\tIl se peut qu'elle l'ait dit.\nShe mended her socks.\tElle répara ses chaussettes.\nShe missed him a lot.\tIl lui manquait beaucoup.\nShe moved my clothes.\tElle bougea mes vêtements.\nShe moved my clothes.\tElle déplaça mes vêtements.\nShe must be well off.\tElle doit être fortunée.\nShe often comes late.\tElle arrive souvent en retard.\nShe plays the guitar.\tElle joue de la guitare.\nShe raised her hands.\tElle leva les mains.\nShe raised her hands.\tElle a levé les mains.\nShe raised her voice.\tElle éleva la voix.\nShe ran for the door.\tElle a couru vers la porte.\nShe ran out of paper.\tElle n'avait plus de papier.\nShe sang pretty well.\tElle chantait assez bien.\nShe seems to be sick.\tElle a l'air d'être malade.\nShe sells vegetables.\tElle vend des légumes.\nShe sent me a letter.\tElle m'a envoyé une lettre.\nShe served me coffee.\tElle m'a servi un café.\nShe slapped his face.\tElle le gifla.\nShe spoke impolitely.\tElle parla impoliment.\nShe spoke impolitely.\tElle a parlé impoliment.\nShe spoke up for him.\tElle a parlé en sa faveur.\nShe stole my clothes!\tElle m'a volé mes vêtements !\nShe told him to stop.\tElle lui a dit d'arrêter.\nShe told him to stop.\tElle lui a dit de cesser.\nShe took pity on him.\tElle a eu pitié de lui.\nShe turned on the TV.\tElle a allumé la télé.\nShe used to date him.\tElle sortait avec lui.\nShe used to hate him.\tElle le détestait.\nShe used to love him.\tElle l'aimait.\nShe wanted to travel.\tElle voulait voyager.\nShe wants to hug him.\tElle veut le prendre dans ses bras.\nShe wants to kill me.\tElle veut me tuer.\nShe was hit by a car.\tElle fut heurtée par une voiture.\nShe was very excited.\tElle était très excitée.\nShe went on a picnic.\tElle est partie en pique-nique.\nShe went on speaking.\tElle continua à parler.\nShe went on speaking.\tElle a continué à parler.\nShe won't be pleased.\tÇa ne va pas lui plaire.\nShe wore a red dress.\tElle portait une robe rouge.\nShe's a belly dancer.\tElle est danseuse du ventre.\nShe's a quiet person.\tElle est d'un naturel calme.\nShe's an honest girl.\tC'est une fille honnête.\nShe's as busy as Tom.\tElle est aussi occupée que Tom.\nShe's eating for two.\tElle mange comme deux.\nShe's going to Ooita.\tElle va à Ooita.\nShe's gone on a trip.\tElle est partie en voyage.\nShe's good at tennis.\tElle est bonne en tennis.\nShe's got more books.\tElle a plus de livres.\nShe's not a bad girl.\tCe n'est pas une mauvaise fille.\nShe's older than Tom.\tElle est plus âgée que Tom.\nShe's older than him.\tElle est plus vieille que lui.\nShe's scared of dogs.\tElle a peur des chiens.\nShe's very beautiful.\tElle est très belle.\nShe's very emotional.\tElle est très émotive.\nShe’s a doctor now.\tElle est désormais médecin.\nShould I ask her out?\tDevrais-je l'inviter à sortir ?\nShould I ask him out?\tDevrais-je l'inviter à sortir ?\nShould we be worried?\tDevrions-nous être inquiets ?\nShould we be worried?\tDevrions-nous être inquiètes ?\nShould we run for it?\tDevrions-nous nous y porter candidats ?\nShouldn't we ask Tom?\tNe devrions nous pas demander à Tom ?\nShow me a better one.\tMontrez-m'en un meilleur.\nShow me how it works.\tMontre-moi comment ça fonctionne.\nShow me how to do it.\tMontre-moi comment faire.\nShow me some respect.\tMontre-moi du respect !\nShow me some respect.\tMontrez-moi du respect !\nShow us the solution.\tMontre-nous la solution.\nSit down and shut up.\tAsseyez-vous et taisez-vous !\nSit down and shut up.\tAssieds-toi et tais-toi !\nSit down and shut up.\tAssois-toi et tais-toi !\nSit down and shut up.\tAssoyez-vous et taisez-vous !\nSize does not matter.\tCe n'est pas la taille qui compte.\nSmog hung over Tokyo.\tLa pollution recouvrait Tokyo.\nSmoking is permitted.\tIl est permis de fumer.\nSnow covered the bus.\tLa neige a couvert l’autobus.\nSo much is happening.\tIl se passe tellement de choses.\nSo what do we do now?\tEt maintenant, que fait-on ?\nSo what does it mean?\tEt qu'est-ce que ça signifie ?\nSo, what do you mean?\tDonc, qu'est-ce que tu veux dire ?\nSo, what do you mean?\tAlors, que voulez-vous dire ?\nSo, why are you here?\tAlors, pourquoi êtes-vous ici ?\nSo, why are you here?\tAlors, pourquoi es-tu ici ?\nSo, why are you here?\tAlors, pourquoi es-tu là ?\nSome people are evil.\tCertaines personnes sont mauvaises.\nSomebody just called.\tQuelqu'un vient d'appeler.\nSomeone attacked Tom.\tQuelqu'un a attaqué Tom.\nSomeone attacked Tom.\tQuelqu'un attaqua Tom.\nSomeone cut the rope.\tQuelqu'un a coupé la corde.\nSomeone has to do it.\tQuelqu'un doit le faire.\nSomeone might see us.\tQuelqu'un pourrait nous voir.\nSomeone stole my bag.\tQuelqu'un m'a volé mon sac.\nSomeone told me that.\tQuelqu'un me l'a dit.\nSomething is missing.\tQuelque chose manque.\nSoon it will be gone.\tÇa sera bientôt parti.\nSoon it will be gone.\tIl n'y paraîtra bientôt plus.\nSoon it'll be winter.\tCe sera bientôt l'hiver.\nSorry about the mess.\tDésolé pour le bordel !\nSorry about the mess.\tDésolée pour le bordel !\nSorry about the mess.\tDésolé pour la pagaille !\nSorry about the mess.\tDésolée pour la pagaille !\nSorry for being late.\tDésolé d'être en retard.\nSorry for being late.\tDésolée d'être en retard.\nSorry, we are closed.\tDésolé, nous sommes fermés.\nSorry, we are closed.\tDésolé, on est fermé.\nSpare me the details.\tEpargne-moi les détails.\nSpeak louder, please.\tParlez plus fort, s'il vous plait.\nSpeak louder, please.\tParle plus fort, s'il te plait.\nSpeak slowly, please.\tParlez lentement, je vous prie.\nSpeak slowly, please.\tParle lentement, je te prie.\nStay a little longer.\tReste encore un peu.\nStay out of the rain.\tNe reste pas sous la pluie.\nStay out of the rain.\tNe restez pas sous la pluie.\nStock prices dropped.\tLe cours des actions a baissé.\nStop hitting the cat!\tArrête de frapper le chat !\nStop hitting the cat!\tCesse de frapper le chat !\nStop hitting the cat!\tArrêtez de frapper le chat !\nStop hitting the cat!\tCessez de frapper le chat !\nStop pulling my hair!\tArrête de me tirer les cheveux !\nStop pulling my hair!\tArrêtez de me tirer les cheveux !\nTake it, or leave it.\tÀ prendre ou à laisser.\nTake it, or leave it.\tC'est à prendre ou à laisser.\nTake the garbage out.\tSortez les ordures.\nTake the garbage out.\tSortez les déchets.\nTake the garbage out.\tSortez les détritus.\nTake the garbage out.\tSors les ordures.\nTake the garbage out.\tSors les détritus.\nTake the garbage out.\tSors les déchets.\nTake this table away.\tEmportez cette table.\nTell Mary I love her.\tDis à Mary que je l'aime.\nTell me a true story.\tRaconte-moi une histoire vraie.\nTell me what you saw.\tDites-moi ce que vous avez vu !\nTell me what you saw.\tDis-moi ce que tu as vu !\nTell me what you see.\tDis-moi ce que tu vois !\nTell me what you see.\tDites-moi ce que vous voyez !\nTell me when to stop.\tDis-moi quand m'arrêter.\nTell me when to stop.\tDis-moi quand arrêter.\nTell me where Tom is.\tDites-moi où est Tom.\nTell us all about it.\tParle-nous-en !\nTell us all about it.\tParlez-nous-en !\nThank you for coming.\tMerci d'être venu.\nThank you in advance.\tMerci d'avance.\nThank you in advance.\tD'avance, merci.\nThanks for having me.\tMerci de me recevoir.\nThanks for saving me.\tMerci de m'avoir sauvé.\nThanks for saving me.\tMerci de m'avoir sauvée.\nThanks for the drink.\tMerci pour le verre !\nThanks for your help.\tMerci pour ton aide.\nThanks for your help.\tMerci pour votre aide.\nThanks to all of you.\tMerci à vous tous.\nThanks to all of you.\tMerci à vous toutes.\nThat can't be denied.\tOn ne peut pas dire le contraire.\nThat can't be helped.\tOn n'y peut rien.\nThat changes nothing.\tCela ne change rien.\nThat could take days.\tCela pourrait prendre des jours.\nThat could've hit me.\tÇa aurait pu me toucher.\nThat did occur to me.\tÇa m'est arrivé.\nThat door won't open.\tCette porte ne veut pas s'ouvrir.\nThat door won't open.\tCette porte refuse de s'ouvrir.\nThat door won't open.\tCette porte ne s'ouvrira pas.\nThat feels very nice.\tC'est très agréable.\nThat feels very nice.\tLa sensation en est très agréable.\nThat guy is a bandit.\tCe type est un bandit.\nThat hat becomes you.\tCe chapeau te va bien.\nThat house is famous.\tCette maison est célèbre.\nThat is a blue house.\tC'est une maison bleue.\nThat isn't Tom's car.\tCe n'est pas la voiture de Tom.\nThat looks expensive.\tÇa a l'air cher.\nThat meat is chicken.\tCette viande, c'est du poulet.\nThat narrows it down.\tÇa diminue les possibilités.\nThat one's all yours.\tCelui-ci est tout à toi.\nThat one's all yours.\tCelui-ci est tout à vous.\nThat sounds exciting.\tÇa a l'air excitant.\nThat sounds familiar.\tÇa me semble familier.\nThat sounds familiar.\tÇa m'évoque quelque chose de familier.\nThat sounds horrible.\tÇa a l'air horrible.\nThat stuff is poison.\tCe truc, c'est du poison.\nThat tastes terrible.\tC'est dégoutant.\nThat tastes terrible.\tÇa a un goût affreux.\nThat tastes terrible.\tÇa a un goût terrible.\nThat was a close one.\tC'était moins une.\nThat was a close one.\tIl s'en est fallu de peu.\nThat was naive of me.\tCe fut naïf de ma part.\nThat was naive of me.\tÇa a été naïf de ma part.\nThat was no accident.\tCe n'était pas un accident.\nThat was really nice.\tC'était vraiment sympa.\nThat will not change.\tÇa ne changera pas.\nThat woman is strong.\tCette femme est forte.\nThat would be unfair.\tÇa serait injuste.\nThat's a big fat lie.\tC'est un énorme mensonge.\nThat's a bit extreme.\tC'est un peu extrême.\nThat's a blatant lie.\tC'est un mensonge flagrant.\nThat's a bright idea.\tC'est une brillante idée.\nThat's a cheap store.\tC'est un magasin bon marché.\nThat's a clever idea.\tC'est une idée intelligente.\nThat's a coincidence.\tC'est une coïncidence.\nThat's a good excuse.\tC'est une bonne excuse.\nThat's a good reason.\tC'est une bonne raison.\nThat's a good school.\tC'est une bonne école.\nThat's a huge relief.\tC'est un immense soulagement.\nThat's a lame excuse.\tC'est une piètre excuse.\nThat's a lot of cash.\tC'est beaucoup de liquide.\nThat's a lot of cash.\tC'est beaucoup d'argent liquide.\nThat's a lot of food.\tC'est beaucoup de nourriture.\nThat's a lot of work.\tC'est beaucoup de boulot.\nThat's a pretty girl.\tC'est une jolie fille.\nThat's a pretty name.\tC'est un joli nom.\nThat's a pretty name.\tC'est un joli petit nom.\nThat's a stupid idea.\tC'est une idée stupide.\nThat's a stupid name.\tC'est un nom idiot.\nThat's a stupid rule.\tC'est une règle stupide.\nThat's a wise choice.\tC'est un choix sage.\nThat's a woman's job.\tC'est un boulot de femme.\nThat's all I can ask.\tC'est tout ce que je peux demander.\nThat's all I can ask.\tC'est tout ce que je puis demander.\nThat's all I can say.\tC'est tout ce que je peux dire.\nThat's all I do here.\tC'est tout ce que je fais ici.\nThat's all for today.\tC'est tout pour aujourd'hui.\nThat's all she wrote.\tEt puis c'est tout.\nThat's all there was.\tC'est tout ce qu'il y avait.\nThat's all we needed.\tC'est tout ce dont nous avions besoin.\nThat's enough for me.\tC'en est assez pour moi.\nThat's hardly likely.\tC'est très improbable.\nThat's her boyfriend.\tC'est son Jules.\nThat's his specialty.\tC'est sa spécialité.\nThat's just how I am.\tJe suis comme ça, un point c'est tout.\nThat's just nonsense.\tCe ne sont que des balivernes.\nThat's kind of vague.\tC'est plutôt vague.\nThat's my best guess.\tC'est ma meilleure hypothèse.\nThat's my dictionary.\tC'est mon dictionnaire.\nThat's not an answer.\tCe n'est pas une réponse.\nThat's not an option.\tÇa ne constitue pas une option.\nThat's not happening.\tCe n'est pas en train d'arriver.\nThat's not how it is.\tCe n'est pas ainsi.\nThat's not our fault.\tCe n'est pas de notre faute.\nThat's not the issue.\tCe n'est pas le problème.\nThat's not the point.\tCe n'est pas la question.\nThat's not the point.\tCe n'est pas le sujet.\nThat's not very good.\tCe n'est pas très bon.\nThat's not very nice.\tCe n'est pas très sympa.\nThat's our best hope.\tC'est notre meilleur espoir.\nThat's probably true.\tCela est probablement vrai.\nThat's pseudoscience.\tC'est de la pseudo-science.\nThat's quite a story.\tC'est une sacrée histoire.\nThat's really stupid.\tC'est vraiment bête.\nThat's reason enough.\tC'est une raison suffisante.\nThat's so depressing.\tC'est si déprimant.\nThat's the main gate.\tC'est la porte de devant.\nThat's the main gate.\tC'est la porte principale.\nThat's the way it is.\tC'est comme ça.\nThat's the way it is.\tC'est ainsi.\nThat's too expensive.\tC'est trop cher.\nThat's very possible.\tC'est très possible.\nThat's very touching.\tC’est très touchant.\nThat's what I wanted.\tC'est ce que je voulais.\nThat's what I'd want.\tC'est ce que je voudrais.\nThat's what she said.\tC'est ce qu'elle a dit.\nThat's your business.\tCe sont tes oignons.\nThat's your decision.\tC’est ton choix.\nThe baby fell asleep.\tLe bébé s'est endormi.\nThe baby is crawling.\tLe bébé rampe.\nThe baby is crawling.\tLe bébé marche à quatre pattes.\nThe baby is crawling.\tLe bébé est en train de ramper.\nThe baby is crawling.\tLe bébé est en train de marcher à quatre pattes.\nThe baby is sleeping.\tLe bébé est en train de dormir.\nThe baby is sleeping.\tLe bébé dort.\nThe basket was empty.\tLe panier était vide.\nThe bathtub is dirty.\tLa baignoire est sale.\nThe beer's very cold.\tLa bière est glacée.\nThe boy began to cry.\tLe garçon se mit à pleurer.\nThe boy came running.\tL'enfant arriva en courant.\nThe boy stayed quiet.\tLe garçon resta tranquille.\nThe boys are excited.\tLes garçons sont enthousiastes.\nThe boys are thirsty.\tLes garçons ont soif.\nThe boys worked hard.\tLes garçons travaillaient dur.\nThe bridge is closed.\tLe pont est fermé.\nThe car is very fast.\tLa voiture est très rapide.\nThe cat is very cute.\tLe chat est très mignon.\nThe clock is ticking.\tL'heure tourne.\nThe clock is ticking.\tL'horloge tictaque.\nThe clock struck ten.\tLa pendule sonna les dix coups.\nThe coal bin is full.\tLe seau à charbon est plein.\nThe coat is not mine.\tCe manteau n'est pas le mien.\nThe curse was broken.\tLa malédiction a été brisée.\nThe curse was broken.\tLa malédiction fut brisée.\nThe dog is beautiful.\tLe chien est beau.\nThe dog looks hungry.\tLe chien a l'air d'avoir faim.\nThe dog nipped at me.\tLe chien m'a donné un coup de dent.\nThe door won't close.\tLa porte ne se fermera pas.\nThe feeling's mutual.\tLe sentiment est partagé.\nThe food is terrible.\tLa nourriture est dégueulasse.\nThe food is terrible.\tLa nourriture est infecte.\nThe game is not over.\tLa partie n'est pas terminée.\nThe game is not over.\tLa manche n'est pas terminée.\nThe gang is all here.\tToute la bande est là.\nThe ground seems wet.\tLe sol a l'air mouillé.\nThe heater is broken.\tLe chauffage est cassé.\nThe horse is thirsty.\tLe cheval a soif.\nThe house is haunted.\tLa maison est hantée.\nThe house is on fire!\tLa maison brûle !\nThe house was ablaze.\tLa maison était en flammes.\nThe house went cheap.\tLa maison est partie pour une bouchée de pain.\nThe job is half done.\tLe travail est à moitié fait.\nThe light bulb burst.\tL'ampoule lumineuse éclata.\nThe lights aren't on.\tLes phares ne sont pas allumés.\nThe maid made my bed.\tLa femme de ménage a fait mon lit.\nThe maid made my bed.\tLa bonne a fait mon lit.\nThe maid made my bed.\tLa femme de ménage fit mon lit.\nThe maid made my bed.\tLa bonne fit mon lit.\nThe mail has arrived.\tLe courrier est arrivé.\nThe man looked at me.\tL'homme me regarda.\nThe man looked at me.\tL'homme m'a regardé.\nThe man looked at me.\tL'homme m'a regardée.\nThe men followed him.\tLes hommes le suivirent.\nThe milk turned sour.\tLe lait a tourné.\nThe monkey came down.\tLe singe descendit.\nThe more, the better.\tLe plus sera le mieux.\nThe old man sat down.\tLe vieil homme s'est assis.\nThe old man sat down.\tLe vieil homme s'assit.\nThe old system works.\tL'ancien système fonctionne.\nThe party was a flop.\tLa fête a été un fiasco.\nThe past is the past.\tLe passé est le passé.\nThe pie is delicious.\tCette tourte est délicieuse.\nThe place was packed.\tL'endroit était bondé.\nThe plates are dirty.\tLes assiettes sont sales.\nThe pleasure is mine.\tEnchanté.\nThe pleasure is mine.\tLe plaisir est pour moi.\nThe pleasure is mine.\tEnchantée.\nThe problem is worse.\tLe problème est pire.\nThe professor smiled.\tLe professeur sourit.\nThe proof is trivial.\tLa démonstration est triviale.\nThe reason is simple.\tLa raison en est très simple.\nThe red skirt is new.\tLa jupe rouge est neuve.\nThe roads were empty.\tLes routes étaient désertes.\nThe rumors were true.\tLes rumeurs étaient vraies.\nThe school is closed.\tL'école est fermée.\nThe shotgun went off.\tLe fusil s'est déchargé.\nThe shower is broken.\tLa douche est cassée.\nThe shower is broken.\tLa douche ne fonctionne pas.\nThe soldiers laughed.\tLes soldats rirent.\nThe soul is immortal.\tL'âme est immortelle.\nThe sound woke me up.\tLe bruit m'a réveillé.\nThe speaker is young.\tL'orateur est jeune.\nThe speaker is young.\tL'oratrice est jeune.\nThe stakes were high.\tLes enjeux étaient élevés.\nThe students like it.\tLes étudiants l'apprécient.\nThe students like it.\tLes étudiantes l'apprécient.\nThe taxi has arrived.\tLe taxi est arrivé.\nThe tiger was killed.\tLe tigre fut tué.\nThe tiger was killed.\tLe tigre a été tué.\nThe towels are dirty.\tLes serviettes sont sales.\nThe water pipe burst.\tLa canalisation d'eau a explosé.\nThe wind calmed down.\tLe vent s'est calmé.\nThe wind calmed down.\tLe vent s'apaisa.\nThe wind was howling.\tLe vent hurlait.\nThe windows are open.\tLes fenêtres sont ouvertes.\nTheir feet are dirty.\tElles ont les pieds sales.\nThere are books here.\tIl y a des livres ici.\nThere are exceptions.\tIl y a des exceptions.\nThere are many rooms.\tIl y a beaucoup de pièces.\nThere is a gold coin.\tIl y a une pièce d'or.\nThere is another way.\tIl y a une autre façon.\nThere is no antidote.\tIl n'y a pas d'antidote.\nThere is no solution.\tIl n'y a aucune solution.\nThere isn't any hope.\tIl n'y a aucun espoir.\nThere was no warning.\tIl n'y a pas eu d'avertissement.\nThere were no knives.\tIl n'y avait pas de couteaux.\nThere were survivors.\tIl y avait des survivants.\nThere were survivors.\tIl y avait des survivantes.\nThere were two cakes.\tIl y avait deux gâteaux.\nThere's a car coming.\tVoici une voiture qui arrive.\nThere's a car coming.\tUne voiture arrive.\nThere's an emergency.\tIl y a une urgence.\nThere's no food left.\tIl ne reste pas de nourriture.\nThere's no food left.\tIl ne reste aucune nourriture.\nThere's no harm done.\tIl n'y a pas de mal.\nThere's no more salt.\tIl n'y a plus de sel.\nThere's no more time.\tLe temps est écoulé.\nThere's no wind here.\tIl n'y a pas de vent, ici.\nThere's not a chance.\tIl n'y a aucune chance.\nThere's nothing here.\tIl n’y a rien ici.\nThese apples are big.\tCes pommes sont grosses.\nThese aren't my keys.\tCe ne sont pas mes clés.\nThese books are mine.\tCes livres sont miens.\nThese books are ours.\tCes livres sont les nôtres.\nThese logs are heavy.\tCes journaux sont gros.\nThese logs are heavy.\tCes bûches sont lourdes.\nThese plums are ripe.\tCes prunes sont mûres.\nThese shoes are hers.\tCes chaussures sont les siennes.\nThey all have drinks.\tIls ont tous des boissons.\nThey all have drinks.\tElles ont toutes des boissons.\nThey always complain.\tIls se plaignent toujours.\nThey always complain.\tIls se plaignent constamment.\nThey are approaching.\tIls approchent.\nThey are approaching.\tElles approchent.\nThey are five in all.\tIls sont cinq en tout.\nThey are five in all.\tElles sont cinq en tout.\nThey are good people.\tCe sont de bonnes gens.\nThey are not sisters.\tElles ne sont pas sœurs.\nThey are running now.\tIls courent maintenant.\nThey began this year.\tIls ont commencé cette année.\nThey cannot be saved.\tIls ne peuvent être sauvés.\nThey cannot be saved.\tElles ne peuvent être sauvées.\nThey deserve respect.\tIls méritent le respect.\nThey deserve respect.\tElles méritent le respect.\nThey didn't ask that.\tIls n'ont pas demandé ça.\nThey do it each week.\tElles le font chaque semaine.\nThey formed a circle.\tIls formèrent un cercle.\nThey formed a circle.\tIls se mirent en cercle.\nThey grow fruit here.\tIls cultivent des fruits par ici.\nThey had a good hunt.\tIls ont fait une bonne chasse.\nThey had an argument.\tIls ont eu une dispute.\nThey had an argument.\tIls se sont querellés.\nThey had fun with us.\tIls se sont amusés avec nous.\nThey had fun with us.\tElles se sont amusées avec nous.\nThey handled it well.\tIls s'en sont bien débrouillés.\nThey handled it well.\tElles s'en sont bien débrouillées.\nThey handled it well.\tIls l'ont bien géré.\nThey handled it well.\tElles l'ont bien géré.\nThey handled it well.\tIls s'en sont bien sortis.\nThey handled it well.\tElles s'en sont bien sorties.\nThey handled it well.\tElles s'y sont bien prises.\nThey handled it well.\tIls s'y sont bien pris.\nThey handled it well.\tIls s'en sont bien occupé.\nThey handled it well.\tElles s'en sont bien occupé.\nThey have black hair.\tIls sont bruns.\nThey have explosives.\tIls ont des explosifs.\nThey have lost a lot.\tElles ont perdu beaucoup.\nThey have lost a lot.\tIls ont beaucoup perdu.\nThey know we're cops.\tIls savent que nous sommes des flics.\nThey know we're cops.\tElles savent que nous sommes des flics.\nThey know we're here.\tIls savent que nous sommes ici.\nThey know we're here.\tElles savent que nous sommes ici.\nThey left without me.\tElles sont parties sans moi.\nThey left without me.\tIls sont partis sans moi.\nThey live downstairs.\tIls vivent en-dessous.\nThey live downstairs.\tElles vivent en-dessous.\nThey live downstairs.\tIls vivent au-dessous.\nThey live downstairs.\tElles vivent au-dessous.\nThey live downstairs.\tIls vivent en bas.\nThey live downstairs.\tElles vivent en bas.\nThey live in a house.\tIls vivent dans une maison.\nThey live in a house.\tIls habitent dans une maison.\nThey looked relieved.\tIls semblaient soulagés.\nThey looked relieved.\tElles avaient l'air soulagées.\nThey lost everything.\tIls ont tout perdu.\nThey lost everything.\tElles ont tout perdu.\nThey love their kids.\tIls aiment leurs enfants.\nThey love their kids.\tIls adorent leurs enfants.\nThey love their kids.\tElles adorent leurs enfants.\nThey opened the door.\tIls ouvrirent la porte.\nThey paid separately.\tIls payèrent séparément.\nThey paid separately.\tIls ont payé séparément.\nThey paid separately.\tElles payèrent séparément.\nThey paid separately.\tElles ont payé séparément.\nThey robbed me blind.\tIls m'ont dépouillé.\nThey robbed me blind.\tIls m'ont dépouillée.\nThey robbed me blind.\tElles m'ont dépouillé.\nThey robbed me blind.\tElles m'ont dépouillée.\nThey sat in a circle.\tIls s'assirent en cercle.\nThey sat in a circle.\tElles s'assirent en cercle.\nThey sat in a circle.\tIls se sont assis en cercle.\nThey sat in a circle.\tElles se sont assises en cercle.\nThey should have one.\tIls devraient en avoir une.\nThey should have one.\tElles devraient en avoir un.\nThey should have one.\tElles devraient en avoir une.\nThey should have one.\tIls devraient en avoir un.\nThey should thank me.\tIls devraient me remercier.\nThey should thank me.\tElles devraient me remercier.\nThey started dancing.\tIls commencèrent à danser.\nThey started dancing.\tElles commencèrent à danser.\nThey started dancing.\tIls ont commencé à danser.\nThey started dancing.\tElles ont commencé à danser.\nThey stopped talking.\tIls ont cessé de parler.\nThey stopped talking.\tElles ont cessé de parler.\nThey stopped to talk.\tIls cessèrent de parler.\nThey took a big risk.\tIls ont pris un gros risque.\nThey took a big risk.\tElles ont pris un gros risque.\nThey took a big risk.\tIls prirent un gros risque.\nThey took a big risk.\tElles prirent un gros risque.\nThey tried to escape.\tIls cherchaient à s'enfuir.\nThey walked together.\tIls ont marché ensemble.\nThey walked together.\tIls marchèrent ensemble.\nThey walked upstairs.\tElles montèrent des escaliers.\nThey walked upstairs.\tIls montèrent des escaliers.\nThey walked upstairs.\tElles ont monté des escaliers.\nThey walked upstairs.\tIls ont monté des escaliers.\nThey want more space.\tIls veulent plus d'espace.\nThey want more space.\tElles veulent plus d'espace.\nThey want to kill me.\tElles veulent me tuer.\nThey want to kill me.\tIls veulent me tuer.\nThey went to the zoo.\tIls sont allés au zoo.\nThey went to the zoo.\tElles sont allées au zoo.\nThey were all scared.\tIls étaient tous effrayés.\nThey were all scared.\tElles étaient toutes effrayées.\nThey were both drunk.\tIls étaient tous deux saouls.\nThey were both drunk.\tElles étaient toutes deux saoules.\nThey were both drunk.\tIls étaient saouls tous les deux.\nThey were both drunk.\tElles étaient saoules toutes les deux.\nThey were not amused.\tÇa ne les a pas fait rire.\nThey were victorious.\tIls furent victorieux.\nThey were victorious.\tElles furent victorieuses.\nThey were victorious.\tIls ont été victorieux.\nThey were victorious.\tElles ont été victorieuses.\nThey weren't invited.\tElles n'ont pas été invitées.\nThey weren't invited.\tIls n'ont pas été invités.\nThey won't wait long.\tIls n'attendront pas longtemps.\nThey'll be all right.\tÇa ira très bien pour eux.\nThey'll be all right.\tÇa ira très bien pour elles.\nThey'll be back soon.\tIls vont bientôt revenir.\nThey'll have a blast.\tIls vont s'éclater.\nThey'll have a blast.\tElles vont s'éclater.\nThey'll have to wait.\tIls devront attendre.\nThey'll have to wait.\tElles devront attendre.\nThey'll take me away.\tIls m'emmèneront.\nThey'll take me away.\tElles m'emmèneront.\nThey're able to sing.\tIls peuvent chanter.\nThey're able to sing.\tIls sont capables de chanter.\nThey're afraid of me.\tElles ont peur de moi.\nThey're afraid of me.\tIls ont peur de moi.\nThey're afraid of us.\tElles ont peur de nous.\nThey're all in there.\tIls sont tous là-dedans.\nThey're all in there.\tElles sont toutes là-dedans.\nThey're all the same.\tIls sont tous les mêmes.\nThey're all the same.\tElles sont toutes les mêmes.\nThey're all tourists.\tCe sont tous des touristes.\nThey're all tourists.\tCe sont toutes des touristes.\nThey're going to try.\tIls vont essayer.\nThey're going to try.\tElles vont essayer.\nThey're going to try.\tIls vont le tenter.\nThey're going to try.\tElles vont le tenter.\nThey're hard to find.\tIls sont durs à trouver.\nThey're hard to find.\tElles sont dures à trouver.\nThey're just for you.\tIls sont juste pour toi.\nThey're just for you.\tElles sont juste pour toi.\nThey're just for you.\tIls sont juste pour vous.\nThey're just for you.\tElles sont juste pour vous.\nThey're not a threat.\tIls ne constituent pas une menace.\nThey're not a threat.\tElles ne constituent pas une menace.\nThey're not all busy.\tIls ne sont pas tous occupés.\nThey're not all busy.\tElles ne sont pas toutes occupées.\nThey're not here yet.\tElles ne sont pas encore là.\nThey're not home yet.\tIls ne sont pas encore chez eux.\nThey're not home yet.\tElles ne sont pas encore chez elles.\nThey're not home yet.\tIls ne sont pas encore à la maison.\nThey're not home yet.\tElles ne sont pas encore à la maison.\nThey're not my rules.\tCe ne sont pas mes règles.\nThey're really tight.\tIls sont vraiment intimes.\nThey're really tight.\tIls sont vraiment serrés.\nThey're really tight.\tIls sont vraiment radins.\nThey're sending help.\tIls envoient de l'aide.\nThey've lost so much.\tElles ont tant perdu !\nThey've lost so much.\tIls ont tant perdu !\nThings are improving.\tLes choses s'améliorent.\nThink of your family.\tPense à ta famille !\nThink of your family.\tPensez à votre famille !\nThink of your future.\tPense à ton futur.\nThis bed looks solid.\tCe lit semble solide.\nThis bed looks solid.\tCe lit a l'air solide.\nThis bicycle is mine.\tCette bicyclette m'appartient.\nThis bicycle is mine.\tCe vélo m'appartient.\nThis bird cannot fly.\tCet oiseau ne peut pas voler.\nThis bird cannot fly.\tCet oiseau ne sait pas voler.\nThis book is for you.\tCe livre est pour toi.\nThis book is smaller.\tCe livre est plus petit.\nThis breaks my heart.\tÇa me brise le cœur.\nThis breaks my heart.\tÇa me fend le cœur.\nThis button is loose.\tCe bouton pendouille.\nThis button is loose.\tCe bouton se détache.\nThis camera is Tom's.\tC'est l'appareil photo de Tom.\nThis camera is cheap.\tCet appareil-photo-ci est bon marché.\nThis car is like new.\tCette voiture est comme neuve.\nThis car won't start.\tCette voiture ne démarrera pas.\nThis chair is broken.\tCette chaise est cassée.\nThis changes nothing.\tCela ne change rien.\nThis changes nothing.\tÇa ne change rien.\nThis diamond is fake.\tCe diamant est faux.\nThis essay is my own.\tCette composition est la mienne.\nThis feels like silk.\tOn dirait de la soie.\nThis feels like silk.\tÇa a le toucher de la soie.\nThis fish smells bad.\tCe poisson sent mauvais.\nThis game is so hard.\tCe jeu est tellement difficile.\nThis game is so hard.\tCette partie est tellement difficile.\nThis game is so hard.\tCette manche est tellement difficile.\nThis gift is for you.\tC'est un cadeau pour toi.\nThis gift is for you.\tC'est un cadeau pour vous.\nThis handbag is mine.\tCe sac à main est à moi.\nThis house is creepy.\tCette maison est sinistre.\nThis house is famous.\tCette maison est célèbre.\nThis is Chinese food.\tC'est de la cuisine chinoise.\nThis is Tom's locker.\tC'est le casier de Tom.\nThis is a great book.\tC'est un grand ouvrage.\nThis is a great book.\tC'est un livre célèbre.\nThis is a nice place.\tC'est un chouette endroit.\nThis is a rental car.\tC'est une voiture de location.\nThis is a small book.\tC'est un petit livre.\nThis is all I can do.\tC'est tout ce que je peux faire.\nThis is child's play.\tC'est un jeu d'enfant.\nThis is for you, Tom.\tC'est pour toi, Tom.\nThis is for you, Tom.\tC'est pour vous, Tom.\nThis is good to know.\tC'est bon à savoir.\nThis is how I did it.\tVoilà comment j'ai fait.\nThis is how I did it.\tVoici comment je l'ai fait.\nThis is how I did it.\tVoici comment je le fis.\nThis is how I did it.\tC'est ainsi que je l'ai fait.\nThis is how I did it.\tC'est ainsi que je le fis.\nThis is mind blowing.\tC'est hallucinant.\nThis is my I.D. card.\tC'est ma carte d'identité.\nThis is my brother's.\tC'est celui de mon frère.\nThis is my brother's.\tC'est à mon frère.\nThis is my dream job.\tC'est le boulot de mes rêves.\nThis is my first day.\tC'est mon premier jour.\nThis is preposterous.\tC'est absurde.\nThis is preposterous.\tC'est grotesque.\nThis is serious, Tom.\tC'est sérieux, Tom.\nThis is unacceptable.\tC'est inacceptable.\nThis is unbelievable.\tC'est incroyable.\nThis is what he said.\tC'est ce qu'il a dit.\nThis isn't a new car.\tCe n'est pas une nouvelle voiture.\nThis job doesn't pay.\tCe boulot ne paie pas.\nThis laptop is light.\tCet ordinateur portable est léger.\nThis meat is chicken.\tCette viande, c'est du poulet.\nThis meat smells bad.\tCette viande sent mauvais.\nThis milk tastes odd.\tCe lait a un goût bizarre.\nThis must be changed.\tIl faut changer ça.\nThis must be for you.\tCeci doit être pour vous.\nThis must be for you.\tÇa doit être pour toi.\nThis needs to change.\tIl faut que ça change.\nThis novel is boring.\tCe roman est ennuyeux.\nThis one is prettier.\tCelui-ci est plus joli.\nThis one is prettier.\tCelle-ci est plus jolie.\nThis one's all yours.\tCelui-ci est tout à toi.\nThis one's all yours.\tCelui-ci est tout à vous.\nThis one's all yours.\tCelui-ci est entièrement à toi.\nThis one's all yours.\tCelui-ci est entièrement à vous.\nThis pen has run dry.\tCe stylo n'a plus d'encre.\nThis place is creepy.\tCet endroit est glauque.\nThis room is too big.\tCette pièce-ci est trop grande.\nThis room is too big.\tCette pièce est trop grande.\nThis sounds familiar.\tÇa me semble familier.\nThis sounds familiar.\tÇa m'évoque quelque chose de familier.\nThis sweater is warm.\tCe chandail est chaud.\nThis tastes like tea.\tÇa a goût de thé.\nThis tastes like tea.\tÇa a le goût du thé.\nThis tastes like tea.\tÇa goûte le thé.\nThis tea is very hot.\tCe thé est brûlant.\nThis tea is very hot.\tCe thé est très chaud.\nThis tea smells good.\tCe thé sent bon.\nThis tea smells nice.\tCe thé sent bon.\nThis tea smells nice.\tCe thé embaume.\nThis video is boring.\tCette vidéo est ennuyeuse.\nThis wall feels cold.\tCe mur est froid.\nThis was on the list.\tÇa figurait sur la liste.\nThis will cost €30.\tÇa va faire 30 euros.\nThis won't take long.\tÇa ne sera pas long.\nThis wood won't burn.\tCe bois ne veut pas brûler.\nThis'll be different.\tÇa sera différent.\nThose apples are big.\tCes pommes sont grosses.\nThose books are mine.\tCes livres sont miens.\nThose houses are big.\tCes maisons sont grandes.\nThose houses are big.\tCes maisons sont massives.\nTiming is everything.\tLe chronométrage est tout ce qui compte.\nToday didn't go well.\tAujourd'hui, ça ne s'est pas bien passé.\nToday is my birthday.\tAujourd'hui c'est mon anniversaire.\nToday is not so cold.\tIl ne fait pas si froid aujourd'hui.\nTom accepted the job.\tTom accepta le travail.\nTom accepted the job.\tTom a accepté le travail.\nTom allowed me to go.\tTom m'autorisa à y aller.\nTom allowed me to go.\tTom m'a permis de partir.\nTom and Mary laughed.\tTom et Marie ont ri.\nTom borrowed my bike.\tTom a emprunté mon vélo.\nTom can be relied on.\tOn peut faire confiance à Tom.\nTom can speak French.\tTom peut parler français.\nTom can speak French.\tTom parle français.\nTom can't do the job.\tTom ne peut pas faire le travail.\nTom can't do the job.\tTom ne peut pas faire le boulot.\nTom can't do the job.\tTom ne peut pas faire le job.\nTom changed his diet.\tTom a changé son régime.\nTom changed his diet.\tTom a changé son alimentation.\nTom changed his diet.\tTom changea son alimentation.\nTom changed his diet.\tTom changea son régime.\nTom checked the date.\tTom vérifia la date.\nTom checked the date.\tTom a vérifié la date.\nTom could've changed.\tTom aurait pu changer.\nTom couldn't find it.\tTom ne pouvait pas le trouver.\nTom couldn't find it.\tTom n'a pas pu le trouver.\nTom denied any guilt.\tTom a nié toute culpabilité.\nTom denied any guilt.\tTom nia toute culpabilité.\nTom didn't know Mary.\tTom ne connaissait pas Mary.\nTom didn't like Mary.\tTom n'aimait pas Marie.\nTom doesn't trust us.\tTom ne nous fait pas confiance.\nTom failed miserably.\tTom a échoué lamentablement.\nTom felt responsible.\tTom se sentit responsable.\nTom fixed everything.\tTom a tout réparé.\nTom fixed everything.\tTom a tout arrangé.\nTom forgot to salute.\tTom a oublié de saluer.\nTom forgot to salute.\tTom oublia de saluer.\nTom found my bicycle.\tTom a trouvé mon vélo.\nTom got his hair cut.\tTom s'est fait couper les cheveux.\nTom got into the cab.\tTom est monté dans le taxi.\nTom grabbed his coat.\tTom attrapa son manteau.\nTom has a girlfriend.\tTom a une copine.\nTom has a point here.\tSur ce point, Tom a raison.\nTom has a soft voice.\tTom a une voix douce.\nTom has enough money.\tTom a assez d'argent.\nTom has his own room.\tTom a sa propre chambre.\nTom has no insurance.\tTom n'a pas d'assurance.\nTom has no insurance.\tTom ne possède aucune assurance.\nTom has no insurance.\tTom n'a aucune assurance.\nTom has only one leg.\tTom n'a qu'une jambe.\nTom hasn't called me.\tTom ne m'a pas appelé.\nTom hated his mother.\tTom détestait sa mère.\nTom hates raw onions.\tTom déteste les oignons crus.\nTom heard some shots.\tTom a entendu des tirs.\nTom heard some shots.\tTom entendit des coups de feu.\nTom hoped to succeed.\tTom espérait réussir.\nTom hung up his coat.\tTom suspendit son manteau.\nTom is a Red Sox fan.\tTom est un fan des Red Sox.\nTom is a bit strange.\tTom est un peu bizarre.\nTom is a businessman.\tTom est un homme d'affaires.\nTom is a common name.\tTom est un prénom courant.\nTom is a good kisser.\tTom embrasse bien.\nTom is a great actor.\tTom est un grand acteur.\nTom is a lazy person.\tTom est paresseux.\nTom is a slow walker.\tTom marche lentement.\nTom is about my size.\tTom est environ de ma taille.\nTom is afraid of you.\tTom a peur de toi.\nTom is afraid of you.\tTom a peur de vous.\nTom is always joking.\tTom plaisante tout le temps.\nTom is angry with us.\tTom est en colère contre nous.\nTom is chopping wood.\tTom coupe du bois.\nTom is chopping wood.\tTom est en train de fendre du bois.\nTom is getting bored.\tTom commence à s'ennuyer.\nTom is grilling meat.\tTom grille de la viande.\nTom is heavily armed.\tTom est lourdement armé.\nTom is in the morgue.\tTom est dans la morgue.\nTom is in the shower.\tTom est sous la douche.\nTom is irresponsible.\tTom est irresponsable.\nTom is just like you.\tTom est tout simplement comme toi.\nTom is not religious.\tTom n'est pas religieux.\nTom is now in danger.\tTom est maintenant en danger.\nTom is now in danger.\tTom est désormais en danger.\nTom is older than me.\tTom est plus vieux que moi.\nTom is older than me.\tTom est plus âgé que moi.\nTom is out of danger.\tTom est hors de danger.\nTom is overemotional.\tTom est hyperémotif.\nTom is really clever.\tTom est très intelligent.\nTom is sad, isn't he?\tTom est triste, n'est-ce pas ?\nTom is schizophrenic.\tTom est schizophrène.\nTom is short and fat.\tTom est petit et gros.\nTom is still outside.\tTom est toujours dehors.\nTom is taking a walk.\tTom fait une promenade.\nTom is the strongest.\tTom est le plus fort.\nTom is there already.\tTom est déjà là.\nTom is very gullible.\tTom est très crédule.\nTom is very handsome.\tTom est très beau.\nTom is very stubborn.\tTom est très têtu.\nTom is watching golf.\tTom regarde du golf.\nTom is watching golf.\tTom est en train de regarder du golf.\nTom is wiser than me.\tTom est plus sage que moi.\nTom isn't my brother.\tTom n'est pas mon frère.\nTom isn't overweight.\tTom n'est pas en surpoids.\nTom isn't very funny.\tTom n'est pas très drôle.\nTom joined our group.\tTom a rejoint notre groupe.\nTom just got married.\tTom vient de se marier.\nTom knew where to go.\tTom savait où aller.\nTom knows a shortcut.\tTom connaît un raccourci.\nTom knows he's right.\tTom sait qu'il a raison.\nTom knows who we are.\tTom sait qui nous sommes.\nTom left Mary a note.\tTom laissa une note pour Marie.\nTom lied to the cops.\tTom a menti aux policiers.\nTom looks bewildered.\tTom a l'air ahuri.\nTom looks interested.\tTom semble intéressé.\nTom looks interested.\tTom a l'air intéressé.\nTom looks very happy.\tTom a l'air très content.\nTom lost his balance.\tTom perdit l'équilibre.\nTom lost his balance.\tTom a perdu l'équilibre.\nTom lost his friends.\tTom a perdu ses amis.\nTom lost his friends.\tTom a perdu ses amies.\nTom lost his hearing.\tTom a perdu l'ouïe.\nTom may be a traitor.\tTom peut être un traître.\nTom may not be wrong.\tTom n'a peut-être pas tort.\nTom missed the train.\tTom a raté le train.\nTom needed something.\tTom avait besoin de quelque chose.\nTom never apologized.\tTom ne s'est jamais excusé.\nTom never got better.\tTom ne s'est jamais amélioré.\nTom never got caught.\tTom ne s'est jamais fait prendre.\nTom never wears pink.\tTom ne porte jamais de rose.\nTom often comes here.\tTom vient souvent ici.\nTom often cuts class.\tTom fait souvent l'école buissonnière.\nTom often helps Mary.\tTom aide souvent Marie.\nTom peeled the apple.\tTom a épluché la pomme.\nTom reloaded his gun.\tTom rechargea son arme.\nTom removed his coat.\tTom enleva son manteau.\nTom rinsed his mouth.\tTom s'est rincé la bouche.\nTom said he was busy.\tTom a dit qu'il était occupé.\nTom said that was OK.\tTom a dit que c'était bon.\nTom says he was busy.\tTom dit qu'il était occupé.\nTom scares everybody.\tTom fait peur à tout le monde.\nTom scares everybody.\tTom effraie tout le monde.\nTom sent Mary a gift.\tTom a envoyé un cadeau à Mary.\nTom should know that.\tTom devrait savoir cela.\nTom sounds exhausted.\tTom semble épuisé.\nTom started climbing.\tTom commença à grimper.\nTom started climbing.\tTom a commencé l'escalade.\nTom started climbing.\tTom a commencé à grimper.\nTom still loves Mary.\tTom aime toujours Marie.\nTom thanked the chef.\tTom a remercié le chef.\nTom took another sip.\tTom prit une autre gorgée.\nTom took another sip.\tTom a pris une autre gorgée.\nTom tried not to cry.\tTom essaya de ne pas pleurer.\nTom turned on the TV.\tTom alluma la télévision.\nTom wanted a divorce.\tTom voulait divorcer.\nTom wants to be rich.\tTom veut être riche.\nTom wants to meet me.\tTom veut me rencontrer.\nTom was a competitor.\tTom était un concurrent.\nTom was all worn out.\tTom était complètement épuisé.\nTom was very patient.\tTom a été très patient.\nTom was very patient.\tTom fut très patient.\nTom was very patient.\tTom était très patient.\nTom won't believe it.\tTom n'y croira pas.\nTom won't come today.\tTom ne viendra pas aujourd'hui.\nTom won't let you go.\tTom ne te laissera pas partir.\nTom works for me now.\tTom travaille pour moi maintenant.\nTom worries too much.\tTom s'inquiète de trop.\nTom worries too much.\tTom se fait un sang d'encre.\nTom would be jealous.\tTom serait jaloux.\nTom wouldn't say yes.\tTom n'accepterait pas.\nTom writes very well.\tTom écrit très bien.\nTom wrote the report.\tTom a écrit le rapport.\nTom's car is on fire.\tLa voiture de Tom brûle.\nTom's feet were cold.\tLes pieds de Tom étaient froids.\nTom's leg is healing.\tLa jambe de Tom est en voie de guérison.\nTom's making his bed.\tTom fait son lit.\nTom's not a nice guy.\tTom n'est pas un type sympa.\nTom's not a nice guy.\tTom n'est pas un bon gars.\nTom, can you hear me?\tTom, pouvez-vous m'entendre ?\nTom, can you hear me?\tTom, peux-tu m'entendre ?\nTom, you're a genius.\tTom, tu es un génie.\nTonight is the night.\tCette nuit est la bonne.\nTonight is the night.\tCette soirée est la bonne.\nTonight we celebrate.\tCe soir, nous faisons la fête.\nToo much is at stake.\tL'enjeu est capital.\nTry to act naturally.\tSoyez naturel.\nTry to open the door.\tEssaie d'ouvrir la porte !\nTry to open the door.\tEssayez d'ouvrir la porte !\nTurn down the volume.\tBaisse le volume.\nTurn down the volume.\tBaissez le volume.\nTurn on the ignition.\tAllume le contact !\nTurn on the ignition.\tMets le contact !\nTurn on the ignition.\tMettez le contact !\nTurtles are reptiles.\tLes tortues sont des reptiles.\nUnemployment is high.\tLe chômage est élevé.\nWait a little longer.\tAttends encore un peu !\nWait a little longer.\tAttendez encore un peu !\nWas anybody in there?\tQuiconque s'y trouvait-il ?\nWas anybody in there?\tY avait-il là qui que ce soit ?\nWas anybody in there?\tQuiconque se trouvait-il là ?\nWas anybody with you?\tQuiconque était-il avec toi ?\nWas anybody with you?\tQuiconque était-il avec vous ?\nWas that all you saw?\tEst-ce tout ce que tu as vu ?\nWas that all you saw?\tEst-ce tout ce que vous avez vu ?\nWas there an autopsy?\tY a-t-il eu autopsie ?\nWas there an autopsy?\tY a-t-il eu une autopsie ?\nWas there an autopsy?\tA-t-on pratiqué une autopsie ?\nWash your hands well.\tLave bien tes mains.\nWatch your step, Tom.\tFaites attention où vous marchez, Tom.\nWatch your step, Tom.\tFais attention où tu mets les pieds, Tom.\nWe agreed on a price.\tNous nous accordâmes sur un prix.\nWe agreed on a price.\tNous nous sommes accordés sur un prix.\nWe agreed on a price.\tNous nous sommes accordées sur un prix.\nWe all deserve to go.\tNous méritons tous d'y aller.\nWe all make mistakes.\tNous commettons tous des erreurs.\nWe all make mistakes.\tNous commettons toutes des erreurs.\nWe all speak English.\tNous parlons tous anglais.\nWe all want you back.\tNous voulons toutes ton retour.\nWe all want you back.\tNous voulons tous ton retour.\nWe all want you back.\tNous voulons toutes votre retour.\nWe all want you back.\tNous voulons tous votre retour.\nWe all work too hard.\tNous travaillons tous trop dur.\nWe all work too hard.\tNous travaillons toutes trop dur.\nWe are boiling water.\tNous sommes en train de bouillir de l'eau.\nWe are eleven in all.\tNous sommes onze, en tout.\nWe are out of danger.\tNous sommes hors de danger.\nWe are to eat at six.\tNous mangerons à 6 heures.\nWe are two of a kind.\tNous sommes du même tonneau.\nWe baked it together.\tNous l'avons cuit ensemble.\nWe baked it together.\tNous l'avons cuite ensemble.\nWe baked it together.\tNous la cuisîmes ensemble.\nWe baked it together.\tNous le cuisîmes ensemble.\nWe can all walk home.\tNous pouvons tous marcher jusqu'à chez nous.\nWe can all walk home.\tNous pouvons toutes marcher jusqu'à chez nous.\nWe can all walk home.\tNous pouvons tous marcher jusqu'à la maison.\nWe can all walk home.\tNous pouvons toutes marcher jusqu'à la maison.\nWe can seat you soon.\tNous allons vous trouver une place bientôt.\nWe can't afford that.\tNous ne pouvons nous le permettre.\nWe can't afford that.\tNous ne pouvons pas nous permettre cela.\nWe can't afford this.\tNous n'en avons pas les moyens.\nWe can't afford this.\tNous ne pouvons pas nous permettre ceci.\nWe can't give up now.\tNous ne pouvons pas abandonner maintenant.\nWe can't tell anyone.\tNous ne pouvons le dire à quiconque.\nWe canoed downstream.\tNous avons descendu au fil du courant, en canoë.\nWe did nothing wrong.\tNous n'avons rien fait de mal.\nWe didn't do a thing.\tNous n'avons rien fait.\nWe don't have a pool.\tNous n'avons pas de piscine.\nWe elected her mayor.\tNous l'avons élu maire.\nWe elected him mayor.\tNous l'avons élu maire.\nWe expect rain today.\tNous attentons de la pluie pour aujourd'hui.\nWe got to be friends.\tNous sommes devenus des amis.\nWe had fun with them.\tNous nous sommes amusés avec eux.\nWe had fun with them.\tNous nous sommes amusées avec eux.\nWe had fun with them.\tNous nous sommes amusés avec elles.\nWe had fun with them.\tNous nous sommes amusées avec elles.\nWe have an agreement.\tNous avons un accord.\nWe have been friends.\tNous avons été amis.\nWe have enough money.\tNous disposons de suffisamment d'argent.\nWe have enough money.\tNous avons assez d'argent.\nWe have enough water.\tNous avons assez d'eau.\nWe have enough water.\tNous disposons d'assez d'eau.\nWe have enough water.\tNous disposons de suffisamment d'eau.\nWe have faith in Tom.\tNous avons foi en Tom.\nWe have to do better.\tNous devons mieux faire.\nWe have to do better.\tIl nous faut mieux faire.\nWe have to do better.\tIl faut que nous fassions mieux.\nWe have to slow down.\tNous devons ralentir.\nWe have to warn them.\tNous devons les avertir.\nWe have to warn them.\tIl faut que nous les avertissions.\nWe have two children.\tNous avons deux enfants.\nWe hugged each other.\tNous nous sommes embrassés.\nWe hugged each other.\tNous nous sommes embrassées.\nWe just fed the baby.\tNous venons de donner à manger au bébé.\nWe kissed each other.\tNous nous embrassâmes.\nWe know our problems.\tNous connaissons nos problèmes.\nWe know this is real.\tNous savons que c'est réel.\nWe leave immediately.\tNous partons immédiatement.\nWe looked ridiculous.\tNous avons eu l'air ridicule.\nWe lost sight of him.\tNous l'avons perdu de vue.\nWe made quite a team.\tNous formions une sacrée équipe.\nWe make a great team.\tNous formons une grande équipe.\nWe may not have time.\tIl se peut que nous n'ayons pas le temps.\nWe meet once a month.\tNous nous rencontrons une fois par mois.\nWe met last Thursday.\tNous nous sommes rencontrés jeudi dernier.\nWe met last Thursday.\tNous nous sommes rencontrées jeudi dernier.\nWe miss Tom terribly.\tTom nous manque terriblement.\nWe must abandon ship.\tIl nous faut abandonner le navire.\nWe must do something.\tIl nous faut faire quelque chose.\nWe must go to school.\tNous devons aller à l'école.\nWe need instructions.\tIl nous faut des instructions.\nWe need to cut costs.\tNous devons réduire les coûts.\nWe need to cut costs.\tNous devons sabrer dans les coûts.\nWe need to get going.\tIl nous faut nous y mettre.\nWe need to get going.\tIl nous faut démarrer.\nWe need your support.\tNous avons besoin de votre soutien.\nWe packed everything.\tNous avons tout empaqueté.\nWe ran down the hill.\tNous avons déscendu la colline en courant.\nWe really are hungry.\tNous avons très faim.\nWe really don't know.\tNous ne savons vraiment pas.\nWe respect Tom a lot.\tNous respectons beaucoup Tom.\nWe see him every day.\tNous le voyons tous les jours.\nWe shared everything.\tNous avons tout partagé.\nWe should set a trap.\tNous devrions monter un piège.\nWe talk all the time.\tNous parlons tout le temps.\nWe traveled together.\tNous avons voyagé ensemble.\nWe traveled together.\tNous voyageâmes ensemble.\nWe walked to my room.\tNous marchâmes jusqu'à ma chambre.\nWe walked to my room.\tNous avons marché jusqu'à ma chambre.\nWe want a new carpet.\tNous voulons un nouveau tapis.\nWe want to live here.\tNous voulons vivre ici.\nWe want to negotiate.\tNous voulons négocier.\nWe went to the beach.\tNous nous rendîmes à la plage.\nWe went to the beach.\tNous nous sommes rendus à la plage.\nWe went to the beach.\tNous nous sommes rendues à la plage.\nWe went to the river.\tNous nous rendîmes à la rivière.\nWe were disappointed.\tNous étions déçues.\nWe were going steady.\tNous filions le parfait amour.\nWe were just playing.\tNous étions seulement en train de jouer.\nWe were one too many.\tNous étions un de trop.\nWe were very careful.\tNous avons été très prudents.\nWe were very careful.\tNous avons été très prudentes.\nWe were very excited.\tNous étions très excités.\nWe were very excited.\tNous étions très excitées.\nWe were younger then.\tÀ cette époque, nous étions plus jeunes.\nWe won't forgive you.\tNous ne vous pardonnerons pas.\nWe work in a factory.\tNous travaillons dans une usine.\nWe'll be eating soon.\tNous mangerons bientôt.\nWe'll do it together.\tNous le ferons ensemble.\nWe'll do it tomorrow.\tNous le ferons demain.\nWe'll eat on the way.\tNous mangerons sur la route.\nWe'll eat on the way.\tOn mangera sur le chemin.\nWe'll talk soon, Tom.\tNous parlerons bientôt, Tom.\nWe're all devastated.\tNous sommes tous anéantis.\nWe're all devastated.\tNous sommes toutes anéanties.\nWe're all going home.\tNous allons tous chez nous.\nWe're all going home.\tNous allons toutes chez nous.\nWe're all going home.\tNous allons tous à la maison.\nWe're all going home.\tNous allons toutes à la maison.\nWe're all vulnerable.\tNous sommes tous vulnérables.\nWe're always careful.\tNous sommes toujours prudents.\nWe're always careful.\tNous sommes toujours prudentes.\nWe're being attacked.\tNous sommes attaqués.\nWe're being attacked.\tNous sommes attaquées.\nWe're blood brothers.\tNous sommes frères de sang.\nWe're both witnesses.\tNous sommes tous deux témoins.\nWe're both witnesses.\tNous sommes toutes deux témoins.\nWe're claustrophobic.\tNous sommes claustrophobes.\nWe're getting closer.\tNous nous approchons.\nWe're getting closer.\tNous nous rapprochons.\nWe're getting closer.\tNous devenons plus intimes.\nWe're getting warmer.\tNous nous réchauffons.\nWe're going in first.\tNous entrons en premier.\nWe're going shopping.\tNous allons faire des courses.\nWe're going shopping.\tNous allons faire des emplettes.\nWe're going to begin.\tNous allons commencer.\nWe're going to fight.\tNous combattrons.\nWe're going upstairs.\tNous montons.\nWe're having a blast.\tOn s'éclate.\nWe're having a blast.\tNous subissons une rafale de vent.\nWe're having a blast.\tNous subissons un coup de tabac.\nWe're having company.\tNous avons de la visite.\nWe're in a recession.\tNous sommes en récession.\nWe're just beginning.\tNous ne faisons que commencer.\nWe're not barbarians.\tNous ne sommes pas des barbares.\nWe're not being sued.\tOn ne nous poursuit pas.\nWe're not evacuating.\tNous ne sommes pas en train d'évacuer.\nWe're not going home.\tNous n'allons pas à la maison.\nWe're not interested.\tNous ne sommes pas intéressés.\nWe're not interested.\tNous ne sommes pas intéressées.\nWe're not terrorists.\tNous ne sommes pas des terroristes.\nWe're not that close.\tNous ne sommes pas si proches.\nWe're not used to it.\tNous n'y sommes pas habitués.\nWe're not used to it.\tNous n'y sommes pas habituées.\nWe're not your enemy.\tNous ne sommes pas tes ennemis.\nWe're not your enemy.\tNous ne sommes pas vos ennemis.\nWe're not your enemy.\tNous ne sommes pas tes ennemies.\nWe're not your enemy.\tNous ne sommes pas vos ennemies.\nWe're out of bullets.\tNous sommes à court de balles.\nWe're out of options.\tNous sommes à court de possibilités.\nWe're perfectly safe.\tNous sommes parfaitement en sécurité.\nWe're protecting you.\tNous vous protégeons.\nWe're ready for this.\tNous y sommes prêts.\nWe're ready for this.\tNous y sommes prêtes.\nWe're really married.\tNous sommes vraiment mariés.\nWe're really married.\tNous sommes vraiment mariées.\nWe're still involved.\tNous sommes toujours impliqués.\nWe're still involved.\tNous sommes toujours impliquées.\nWe're still involved.\tNous sommes toujours engagés.\nWe're still involved.\tNous sommes toujours engagées.\nWe're still not sure.\tNous ne sommes pas encore sûrs.\nWe're still not sure.\tNous ne sommes pas encore sûres.\nWe're still not sure.\tNous ne sommes toujours pas sûrs.\nWe're still not sure.\tNous ne sommes toujours pas sûres.\nWe're still underage.\tNous sommes encore mineurs.\nWe're still underage.\tNous sommes encore mineures.\nWe're too vulnerable.\tNous sommes trop vulnérables.\nWe're very different.\tNous sommes très différents.\nWe're very different.\tNous sommes très différentes.\nWe're your last hope.\tNous sommes ton dernier espoir.\nWe're your last hope.\tNous sommes votre dernier espoir.\nWe've all been there.\tNous en avons tous été là.\nWe've all been there.\tNous y avons tous été.\nWe've already chosen.\tNous avons déjà choisi.\nWe've got each other.\tNous avons l'un l'autre.\nWell, are you coming?\tEh bien, tu viens ?\nWell, are you coming?\tEh bien, vous venez ?\nWere you blindfolded?\tAvais-tu les yeux bandés ?\nWere you one of them?\tÉtiez-vous l'un d'entre eux ?\nWere you one of them?\tÉtiez-vous l'une d'entre elles ?\nWere you one of them?\tÉtais-tu l'un d'entre eux ?\nWere you one of them?\tÉtais-tu l'une d'entre elles ?\nWere you with anyone?\tÉtais-tu avec quiconque ?\nWere you with anyone?\tÉtais-tu avec qui que ce soit ?\nWere you with anyone?\tÉtiez-vous avec qui que ce soit ?\nWhat I did was wrong.\tCe que j'ai fait était incorrect.\nWhat I did was wrong.\tCe que j'ai fait était mal.\nWhat a big boy he is!\tQuel grand garçon il est !\nWhat a big boy he is!\tQuel grand garçon !\nWhat a nice surprise!\tQuelle chouette surprise !\nWhat a perfect night!\tQuelle nuit merveilleuse !\nWhat a selfish woman!\tQuelle femme égoïste !\nWhat a strange story!\tQuelle étrange histoire !\nWhat a strange story!\tQuelle drôle d'histoire !\nWhat a strange woman!\tQuelle femme étrange !\nWhat a waste of time!\tQuel gâchis de temps !\nWhat a waste of time!\tQuelle perte de temps !\nWhat about your wife?\tQu'en est-il de votre épouse ?\nWhat am I doing here?\tQue fais-je ici ?\nWhat am I to do next?\tQue suis-je censé faire ensuite ?\nWhat am I up against?\tÀ quoi suis-je confronté ?\nWhat am I up against?\tÀ quoi suis-je confrontée ?\nWhat an awful mother!\tQuelle horrible mère !\nWhat are friends for?\tÀ quoi servent les amis ?\nWhat are our chances?\tQuels sont nos chances ?\nWhat are you cooking?\tQue cuisines-tu ?\nWhat are you cooking?\tQu'est-ce que tu cuisines ?\nWhat are you cooking?\tQue cuisinez-vous ?\nWhat are you cooking?\tQu'est-ce que tu mijotes ?\nWhat are you good at?\tÀ quoi es-tu bon ?\nWhat are you good at?\tÀ quoi êtes-vous bon ?\nWhat are you good at?\tÀ quoi es-tu bonne ?\nWhat are you good at?\tÀ quoi êtes-vous bonne ?\nWhat are you good at?\tÀ quoi êtes-vous bons ?\nWhat are you good at?\tÀ quoi êtes-vous bonnes ?\nWhat are you reading?\tQue lis-tu ?\nWhat are you reading?\tQue lis-tu ?\nWhat are you reading?\tQu’est-ce que tu lis ?\nWhat are you reading?\tTu lis quoi ?\nWhat are you wearing?\tQue portez-vous ?\nWhat are you wearing?\tQue portes-tu ?\nWhat are you writing?\tQu'écris-tu ?\nWhat are you writing?\tQu'es-tu en train d'écrire ?\nWhat are you writing?\tQu'écrivez-vous ?\nWhat are you writing?\tQu'êtes-vous en train d'écrire ?\nWhat are your duties?\tQuels sont vos devoirs ?\nWhat are your duties?\tQuelles sont vos obligations ?\nWhat are your orders?\tQuels sont vos ordres ?\nWhat brings you here?\tQu'est-ce qui t'amène ici ?\nWhat brings you here?\tQu'est-ce qui vous amène ici ?\nWhat can you give me?\tQue pouvez-vous me donner ?\nWhat can you give me?\tQue peux-tu me donner ?\nWhat could be easier?\tQu'est-ce qui pourrait être plus facile ?\nWhat day is it today?\tQuel jour sommes-nous aujourd'hui ?\nWhat day is it today?\tQuel jour sommes-nous aujourd'hui ?\nWhat did I say wrong?\tQu'ai-je dit de travers ?\nWhat did I trip over?\tSur quoi ai-je buté ?\nWhat did it all mean?\tQu'est-ce que tout ça signifiait ?\nWhat did the boy say?\tQu'a dit le garçon ?\nWhat did the boy say?\tQue dit le garçon ?\nWhat did they expect?\tÀ quoi s'attendaient-ils ?\nWhat did they expect?\tÀ quoi s'attendaient-elles ?\nWhat did you call me?\tComment m'as-tu appelé ?\nWhat did you call me?\tComment m'avez-vous appelé ?\nWhat did you call me?\tComment m'as-tu appelée ?\nWhat did you call me?\tComment m'avez-vous appelée ?\nWhat did you do then?\tQu'est ce que tu as fait ensuite ?\nWhat did you do then?\tQue fis-tu alors ?\nWhat did you do then?\tQu'as-tu fait, ensuite ?\nWhat did you do then?\tQu'avez-vous fait, ensuite ?\nWhat did you do then?\tQu'as-tu fait, alors ?\nWhat did you do then?\tQu'avez-vous fait, alors ?\nWhat did you turn up?\tSur quoi avez-vous mis la main ?\nWhat did you turn up?\tSur quoi as-tu mis la main ?\nWhat do we have here?\tQu'avons-nous ici ?\nWhat do you remember?\tQue vous rappelez-vous ?\nWhat do you remember?\tQue te rappelles-tu ?\nWhat do you remember?\tDe quoi vous souvenez-vous ?\nWhat do you remember?\tDe quoi te souviens-tu ?\nWhat do you want now?\tQue veux-tu maintenant ?\nWhat do you want now?\tQue voulez-vous maintenant ?\nWhat do you want now?\tQue voulez-vous encore ?\nWhat does it contain?\tQu'est-ce que ça contient ?\nWhat does it contain?\tQue contient-il ?\nWhat does it contain?\tQue contient-elle ?\nWhat does it involve?\tQu'est-ce que cela implique ?\nWhat does that prove?\tQu'est-ce que cela prouve ?\nWhat else can you do?\tQue pouvez-vous faire d'autre ?\nWhat else can you do?\tQue peux-tu faire d'autre ?\nWhat exactly is that?\tQu'est-ce exactement ?\nWhat exactly is that?\tDe quoi s'agit-il, exactement ?\nWhat exactly is this?\tQu'est-ce, exactement ?\nWhat goes on in here?\tQu'est-ce qui se passe, là-dedans ?\nWhat happened to you?\tQue t'arrive-t-il ?\nWhat if you're wrong?\tEt si tu as tort ?\nWhat if you're wrong?\tEt si vous avez tort ?\nWhat is a think tank?\tQu'est un cercle de réflexion ?\nWhat is he aiming at?\tQuel est son but ?\nWhat is his business?\tQuelle est son occupation ?\nWhat is it this time?\tQu'y a-t-il, cette fois ?\nWhat is it this time?\tDe quoi s'agit-il, cette fois ?\nWhat is today's date?\tQuelle est la date aujourd'hui?\nWhat is today's date?\tQuel jour sommes-nous aujourd'hui ?\nWhat is your problem?\tC'est quoi ton problème ?\nWhat is your problem?\tOù réside le problème, avec toi ?\nWhat is your problem?\tQuel est ton problème ?\nWhat is your problem?\tQuel est votre problème ?\nWhat keeps you going?\tQu'est-ce qui te fait tenir ?\nWhat keeps you going?\tQu'est-ce qui vous fait tenir ?\nWhat made her so sad?\tQu'est-ce qui l'a rendue si triste ?\nWhat makes you happy?\tQu'est-ce qui vous rend heureux ?\nWhat makes you happy?\tQu'est-ce qui vous rend heureuse ?\nWhat makes you happy?\tQu'est-ce qui vous rend heureuses ?\nWhat makes you happy?\tQu'est-ce qui te rend heureux ?\nWhat makes you happy?\tQu'est-ce qui te rend heureuse ?\nWhat makes you smile?\tQu'est-ce qui vous fait sourire ?\nWhat makes you smile?\tQu'est-ce qui te fait sourire ?\nWhat must you do now?\tQu'est-ce que tu dois faire maintenant ?\nWhat shall I do next?\tQue devrai-je faire ensuite ?\nWhat should I do now?\tQue devrais-je faire maintenant ?\nWhat time is sunrise?\tÀ quelle heure est le lever du soleil ?\nWhat was the outcome?\tQuel en a été le résultat ?\nWhat was the outcome?\tQuelle en fut l'issue ?\nWhat was the outcome?\tQuelle en a été l'issue ?\nWhat was the outcome?\tQuel en fut le résultat ?\nWhat was the problem?\tQuel était le problème ?\nWhat we need is help.\tC'est l'aide dont nous avons besoin.\nWhat you say is true.\tCe que tu dis est vrai.\nWhat're you drinking?\tQu'es-tu en train de boire ?\nWhat're you drinking?\tQu'êtes-vous en train de boire ?\nWhat're you thinking?\tÀ quoi penses-tu ?\nWhat's Tom afraid of?\tDe quoi Tom a-t-il peur ?\nWhat's Tom's address?\tQuelle est l'adresse de Tom ?\nWhat's Tom's problem?\tQuel est le problème de Tom ?\nWhat's all the hurry?\tQuelle est toute cette précipitation ?\nWhat's going on here?\tQue se passe-t-il ici ?\nWhat's going on here?\tQue se passe-t-il ici ?\nWhat's in the bottle?\tQu'y a-t'il dans la bouteille ?\nWhat's in the bucket?\tQu'y a-t-il dans le seau ?\nWhat's it smell like?\tComment cela sent-il ?\nWhat's it sound like?\tQuel son cela fait-il ?\nWhat's it sound like?\tQuel son cela produit-il ?\nWhat's that building?\tQuel est ce bâtiment ?\nWhat's the big hurry?\tQuelle est cette urgence ?\nWhat's the commotion?\tQu'est-ce que c'est que ce barouf ?\nWhat's the commotion?\tQuel est ce tumulte ?\nWhat's the deal here?\tQu'est-ce qui se passe, ici ?\nWhat's the emergency?\tQuelle est cette urgence ?\nWhat's the emergency?\tQuelle en est l'urgence ?\nWhat's the next stop?\tQuel est le prochain arrêt ?\nWhat's the plan, Tom?\tQuel est le plan, Tom ?\nWhat's their purpose?\tQuel est leur but ?\nWhat's troubling you?\tQu'est-ce qui te trouble ?\nWhat's troubling you?\tQu'est-ce qui vous trouble ?\nWhat's wrong with it?\tQu'est-ce qui ne va pas avec ça ?\nWhen can I visit you?\tQuand puis-je te rendre visite ?\nWhen can I visit you?\tQuand puis-je vous rendre visite ?\nWhen did he get back?\tQuand est-il revenu ?\nWhen did that happen?\tQuand cela s'est-il produit ?\nWhen did that happen?\tQuand est-ce arrivé ?\nWhen did that happen?\tQuand est-ce survenu ?\nWhen did that happen?\tQuand cela a-t-il eu lieu ?\nWhen did you see him?\tQuand l'as-tu vu ?\nWhen do they need me?\tQuand ont-ils besoin de moi ?\nWhen do they need me?\tQuand ont-elles besoin de moi ?\nWhen does that start?\tQuand est-ce que ça commence ?\nWhen is good for you?\tQuand cela vous convient-il ?\nWhen is good for you?\tQuand cela te convient-il ?\nWhen was it finished?\tQuand cela s'est-il terminé ?\nWhen was it finished?\tQuand est-ce que ça a fini ?\nWhen will he be busy?\tQuand sera-t-il occupé ?\nWhen will he go home?\tQuand ira-t-il à la maison ?\nWhen will that occur?\tQuand cela surviendra-t-il ?\nWhen will we go home?\tQuand allons-nous à la maison ?\nWhen will you arrive?\tQuand vas-tu arriver ?\nWhen will you return?\tTu rentres quand ?\nWhen's dinner served?\tQuand le déjeuner est-il servi ?\nWhen's dinner served?\tQuand le dîner est-il servi ?\nWhen's dinner served?\tQuand le souper est-il servi ?\nWhere are Tom's keys?\tOù sont les clefs de Tom ?\nWhere are my clothes?\tOù sont mes vêtements ?\nWhere are my glasses?\tOù sont mes lunettes ?\nWhere are my parents?\tOù sont mes parents ?\nWhere are the apples?\tOù sont les pommes ?\nWhere are the dishes?\tOù est la vaisselle ?\nWhere are the guards?\tOù sont les gardes ?\nWhere are the knives?\tOù sont les couteaux ?\nWhere are the meters?\tOù sont les parcmètres ?\nWhere are the others?\tOù sont les autres ?\nWhere are the others?\tOù les autres sont-ils ?\nWhere are the others?\tOù les autres sont-elles ?\nWhere are they going?\tOù vont-ils ?\nWhere are we exactly?\tOù sommes-nous exactement ?\nWhere are you headed?\tOù te diriges-tu ?\nWhere are you headed?\tOù vous dirigez-vous ?\nWhere are you living?\tOù vis-tu ?\nWhere can I buy silk?\tOù puis-je acheter de la soie ?\nWhere did you get it?\tOù as-tu obtenu ceci ?\nWhere have they gone?\tOù sont-ils allés ?\nWhere is he standing?\tOù se tient-il ?\nWhere is the library?\tOù se trouve la bibliothèque ?\nWhere is the mistake?\tOù est l'erreur ?\nWhere is the problem?\tOù est le problème ?\nWhere is the station?\tOù se trouve la gare ?\nWhere is your father?\tOù est votre père ?\nWhere is your father?\tOù se trouve votre père ?\nWhere is your father?\tOù se trouve ton père ?\nWhere is your school?\tOù se trouve ton école ?\nWhere is your school?\tOù est ton école ?\nWhere is your sister?\tOù est votre sœur ?\nWhere shall we begin?\tOù devons-nous commencer ?\nWhere should we hide?\tOù devrions-nous nous cacher ?\nWhere's Tom's office?\tOù est le bureau de Tom ?\nWhere's the bathroom?\tOù sont les toilettes ?\nWhere's the director?\tOù est le directeur ?\nWhere's the entrance?\tOù se trouve l'entrée ?\nWhere's the hospital?\tOù est l'hôpital ?\nWhere's the mail box?\tOù est la boîte aux lettres ?\nWhere's the pharmacy?\tOù est la pharmacie ?\nWhere's the pharmacy?\tOù se trouve la pharmacie ?\nWhere's the pharmacy?\tOù se situe la pharmacie ?\nWhere's the restroom?\tOù sont les toilettes ?\nWhere's the restroom?\tOù se trouvent les toilettes ?\nWhere's the washroom?\tOù est la salle de bain ?\nWhere's your captain?\tOù se trouve votre capitaine ?\nWhich book is better?\tQuel livre est le meilleur ?\nWhich is your guitar?\tLaquelle est votre guitare ?\nWhich is your target?\tQuelle est ta cible ?\nWhich is your target?\tQuel est ton objectif ?\nWhich is your target?\tQuelle est votre cible ?\nWhich is your target?\tQuel est votre objectif ?\nWhich of you will go?\tLequel d'entre vous ira ?\nWhich of you will go?\tLaquelle d'entre vous ira ?\nWho am I speaking to?\tÀ qui ai-je l'honneur ?\nWho are these people?\tQui sont ces gens ?\nWho are those people?\tQui sont ces gens ?\nWho are you to judge?\tQui es-tu pour juger ?\nWho are you to judge?\tQui êtes-vous pour juger ?\nWho are your parents?\tQui sont tes parents ?\nWho are your parents?\tQui sont vos parents ?\nWho broke the window?\tQui a cassé la fenêtre ?\nWho broke the window?\tQui a brisé la vitre ?\nWho coaches the team?\tQui entraîne l'équipe ?\nWho deleted the file?\tQui a supprimé le fichier ?\nWho deleted the file?\tQui a effacé le fichier ?\nWho did you vote for?\tPour qui as-tu voté ?\nWho did you vote for?\tPour qui avez-vous voté ?\nWho do you know here?\tQui connais-tu ici ?\nWho do you know here?\tQui connaissez-vous ici ?\nWho do you know here?\tQui est-ce que tu connais ici ?\nWho do you know here?\tQui est-ce que vous connaissez ici ?\nWho do you live with?\tAvec qui est-ce que tu vis ?\nWho do you live with?\tAvec qui vis-tu ?\nWho do you live with?\tAvec qui vivez-vous ?\nWho doesn't think so?\tQui ne pense pas de même ?\nWho else do you miss?\tQui d'autre te manque ?\nWho else do you miss?\tQui d'autre vous manque ?\nWho else is with you?\tQui d'autre est avec vous ?\nWho else is with you?\tQui d'autre est avec toi ?\nWho gave the command?\tQui donna l'ordre ?\nWho gave the command?\tQui a donné l'ordre ?\nWho invited you guys?\tQui vous a invités, les gars ?\nWho invited you here?\tQui vous a invité ici ?\nWho invited you here?\tQui t'a invité ici ?\nWho is he talking to?\tAvec qui parle-t-il ?\nWho is the boss here?\tQui est le chef, ici ?\nWho let the dogs out?\tQui a laissé sortir les chiens ?\nWho planted the tree?\tQui a planté l'arbre ?\nWho planted the tree?\tQui a planté l'arbre ?\nWho said I had a gun?\tQui a dit que je détenais une arme ?\nWho should I believe?\tQui devrais-je croire ?\nWho took care of you?\tQui a pris soin de vous ?\nWho took care of you?\tQui a pris soin de toi ?\nWho took the picture?\tQui a fait la photo ?\nWho unplugged the TV?\tQui a débranché la télé ?\nWho was sitting here?\tQui était assis ici ?\nWho wrote the letter?\tQui a écrit la lettre ?\nWho's Tom looking at?\tQui est-ce que Tom regarde ?\nWho's coming with me?\tQui vient avec moi ?\nWho's going to drive?\tQui va conduire?\nWho's ready for more?\tQui est prêt pour davantage ?\nWho's ready to order?\tQui est prêt à commander ?\nWho's your boyfriend?\tQui est ton petit copain ?\nWho's your boyfriend?\tQui est ton petit ami ?\nWho's your boyfriend?\tQui est ton jules ?\nWhose camera is this?\tÀ qui est cet appareil photo ?\nWhose friend are you?\tDe qui es-tu l'ami ?\nWhose guitar is this?\tÀ qui est cette guitare ?\nWhose guitar is this?\tÀ qui appartient cette guitare ?\nWhose office is this?\tÀ qui est ce bureau ?\nWhose pencil is this?\tÀ qui est ce crayon ?\nWhy am I still alive?\tPourquoi suis-je toujours en vie ?\nWhy are you all here?\tPourquoi êtes-vous tous là ?\nWhy are you all here?\tPourquoi êtes-vous toutes là ?\nWhy are you all here?\tPourquoi êtes-vous tous ici ?\nWhy are you all here?\tPourquoi êtes-vous toutes ici ?\nWhy are you bleeding?\tPourquoi saignes-tu ?\nWhy are you so angry?\tPourquoi es-tu si en colère ?\nWhy are you so angry?\tPourquoi êtes-vous si en colère ?\nWhy are you so happy?\tPourquoi es-tu si heureux ?\nWhy are you so happy?\tPourquoi êtes-vous si heureux ?\nWhy are you so happy?\tPourquoi êtes-vous si heureuse ?\nWhy are you so happy?\tPourquoi êtes-vous si heureuses ?\nWhy are you so happy?\tPourquoi es-tu si heureuse ?\nWhy are you so tired?\tPourquoi es-tu si fatigué ?\nWhy are you so tired?\tPourquoi êtes-vous si fatigué ?\nWhy are you so tired?\tPourquoi êtes-vous si fatigués ?\nWhy are you so tired?\tPourquoi êtes-vous si fatiguée ?\nWhy are you so tired?\tPourquoi êtes-vous si fatiguées ?\nWhy are you studying?\tPourquoi étudies-tu ?\nWhy aren't you ready?\tPourquoi n'es-tu pas prête ?\nWhy bother fixing it?\tA quoi bon le réparer ?\nWhy can't we do that?\tPourquoi ne pouvons-nous pas faire ça ?\nWhy did Tom call you?\tPourquoi Tom t'a-t-il appelé ?\nWhy did Tom call you?\tPourquoi est-ce que Tom t'a appelé ?\nWhy did he come here?\tPourquoi est-il venu ici ?\nWhy did they do that?\tPourquoi ils ont fait ça ?\nWhy did they do that?\tPourquoi elles ont fait ça ?\nWhy did you ditch me?\tPourquoi m'as-tu largué ?\nWhy did you ditch me?\tPourquoi m'as-tu larguée ?\nWhy did you shoot me?\tPourquoi m'avez-vous tiré dessus ?\nWhy didn't you do it?\tPourquoi ne l'as-tu pas fait ?\nWhy didn't you do it?\tPourquoi ne l'avez-vous pas fait ?\nWhy do I believe you?\tPourquoi est-ce que je te crois ?\nWhy do I believe you?\tPourquoi est-ce que je vous crois ?\nWhy do stars twinkle?\tPourquoi les étoiles brillent-elles ?\nWhy do you ignore me?\tPourquoi tu m'ignores ?\nWhy do you need them?\tPourquoi as-tu besoin d'eux ?\nWhy do you need them?\tPourquoi avez-vous besoin d'eux ?\nWhy do you permit it?\tPourquoi le tolérez-vous ?\nWhy do you permit it?\tPourquoi le tolères-tu ?\nWhy don't I call you?\tPourquoi est-ce que je ne t'appelle pas ?\nWhy don't we all run?\tPourquoi ne courons-nous pas tous ?\nWhy don't we all run?\tPourquoi ne courons-nous pas toutes ?\nWhy don't we go home?\tEt si nous retournions à la maison ?\nWhy don't you answer?\tPourquoi ne réponds-tu pas ?\nWhy don't you answer?\tPourquoi ne répondez-vous pas ?\nWhy don't you listen?\tPourquoi n'écoutez-vous pas ?\nWhy don't you listen?\tPourquoi n'écoutes-tu pas ?\nWhy haven't we begun?\tPourquoi n'avons-nous pas commencé ?\nWhy is he doing this?\tPourquoi fait-il cela ?\nWhy is he so popular?\tPourquoi est-il si populaire ?\nWhy is she so silent?\tPourquoi est-elle si silencieuse ?\nWhy is that so funny?\tPourquoi est-ce si drôle ?\nWhy not come with me?\tPourquoi ne pas venir avec moi ?\nWhy wasn't Tom there?\tPourquoi Tom n'était-il pas là ?\nWhy's Tom still here?\tPourquoi Tom est encore ici ?\nWill he be here soon?\tSera-t-il bientôt ici ?\nWill it snow tonight?\tNeigera-t-il ce soir ?\nWill surgery help it?\tEst-ce que la chirurgie aidera ?\nWill surgery help it?\tLa chirurgie y pourvoira-t-elle ?\nWill the police come?\tLa Police viendra-t-elle ?\nWill you come or not?\tViens-tu ou non ?\nWill you wait for me?\tM'attendras-tu ?\nWipe your face clean.\tEssuie ton visage.\nWould you like a dog?\tAimerais-tu un chien ?\nWould you like to go?\tVeux-tu t'en aller ?\nWould you step aside?\tVous retireriez-vous ?\nWould you step aside?\tTe retirerais-tu ?\nWould you step aside?\tVoudriez-vous vous mettre de côté ?\nWould you step aside?\tVoudrais-tu te mettre de côté ?\nWrite down each word.\tÉcris chaque mot !\nWrite down each word.\tÉcrivez chaque mot !\nWrite your full name.\tÉcrivez votre nom complet !\nWrite your full name.\tÉcris ton nom complet !\nYesterday was Sunday.\tHier, c'était dimanche.\nYou are a bad person.\tTu es un être mauvais.\nYou are a bad person.\tVous êtes un être mauvais.\nYou are a workaholic.\tTu es un maniaque du travail.\nYou are new students.\tVous êtes de nouveaux étudiants.\nYou are not Japanese.\tTu n'es pas japonais.\nYou are not Japanese.\tTu n'es pas japonaise.\nYou are not Japanese.\tVous n'êtes pas japonais.\nYou are not Japanese.\tVous n'êtes pas japonaise.\nYou are not Japanese.\tVous n'êtes pas japonaises.\nYou are not a coward.\tTu n'es pas un lâche.\nYou are not a coward.\tVous n'êtes pas un lâche.\nYou are not a doctor.\tVous n’êtes pas un médecin.\nYou are now an adult.\tTu es désormais un adulte.\nYou are under arrest.\tVous êtes en état d'arrestation.\nYou are welcome here.\tTu es le bienvenue.\nYou are welcome here.\tVous êtes bienvenue ici.\nYou are what you eat.\tVous êtes ce que vous mangez.\nYou aren't my mother.\tTu n'es pas ma mère.\nYou aren't my mother.\tVous n'êtes pas ma mère.\nYou can bank on that.\tTu peux compter là-dessus.\nYou can come with us.\tTu peux venir avec nous.\nYou can count on Tom.\tTu peux compter sur Tom.\nYou can count on her.\tOn peut compter sur elle.\nYou can count on him.\tTu peux compter sur lui.\nYou can count on him.\tVous pouvez compter sur lui.\nYou can depend on it.\tTu peux t'y fier.\nYou can depend on it.\tVous pouvez vous y fier.\nYou can fix all this.\tVous pouvez corriger tout ceci.\nYou can fix all this.\tTu peux réparer tout ça.\nYou can fix all this.\tTu peux corriger tout ceci.\nYou can sit down now.\tVous pouvez vous asseoir maintenant.\nYou can sit down now.\tTu peux t'asseoir maintenant.\nYou can't be serious.\tTu ne peux pas être sérieux.\nYou can't be serious.\tC'est pas vrai.\nYou can't be serious.\tPas vrai !\nYou can't be so sure.\tVous ne pouvez pas en être certain.\nYou can't change Tom.\tTu ne peux pas changer Tom.\nYou can't change Tom.\tVous ne pouvez pas changer Tom.\nYou can't control me.\tTu ne peux me contrôler.\nYou can't control me.\tVous ne pouvez me contrôler.\nYou can't go outside.\tTu ne peux pas aller dehors.\nYou can't go outside.\tVous ne pouvez pas aller dehors.\nYou can't prove that.\tTu ne peux pas prouver ça.\nYou can't smoke here.\tVous ne pouvez pas fumer ici.\nYou can't smoke here.\tTu ne peux pas fumer ici.\nYou cannot swim here.\tVous ne pouvez pas nager ici.\nYou crossed the line.\tVous avez franchi la ligne.\nYou crossed the line.\tTu as franchi la ligne.\nYou don't have to go.\tVous n'êtes pas forcé d'y aller.\nYou don't have to go.\tVous n'êtes pas forcée d'y aller.\nYou don't have to go.\tVous n'êtes pas forcés d'y aller.\nYou don't have to go.\tVous n'êtes pas forcées d'y aller.\nYou don't have to go.\tTu n'es pas forcé d'y aller.\nYou don't have to go.\tTu n'es pas forcée d'y aller.\nYou don't have to go.\tTu n'es pas forcé de t'en aller.\nYou don't have to go.\tTu n'es pas forcée de t'en aller.\nYou don't have to go.\tVous n'êtes pas forcé de vous en aller.\nYou don't have to go.\tVous n'êtes pas forcée de vous en aller.\nYou don't have to go.\tVous n'êtes pas forcés de vous en aller.\nYou don't have to go.\tVous n'êtes pas forcées de vous en aller.\nYou don't impress me.\tTu ne m’impressionne pas.\nYou don't need a lot.\tIl t'en faut peu.\nYou don't understand.\tTu ne comprends pas.\nYou don't understand.\tVous ne comprenez pas.\nYou forgot your coat.\tVous avez oublié votre manteau.\nYou go on without me.\tVous continuez sans moi.\nYou go on without me.\tTu continues sans moi.\nYou got it all wrong.\tTu as tout compris de travers.\nYou got it all wrong.\tVous avez tout compris de travers.\nYou have been warned.\tOn t'a prévenu.\nYou have been warned.\tOn t'a prévenue.\nYou have been warned.\tOn vous a prévenu.\nYou have been warned.\tOn vous a prévenue.\nYou have been warned.\tVous avez été prévenu.\nYou have been warned.\tVous avez été prévenue.\nYou have been warned.\tVous avez été prévenus.\nYou have been warned.\tVous avez été prévenues.\nYou have been warned.\tOn vous a prévenus.\nYou have been warned.\tOn vous a prévenues.\nYou have been warned.\tTu as été prévenu.\nYou have been warned.\tTu as été prévenue.\nYou have betrayed us.\tTu nous as trahies.\nYou have no evidence.\tTu n'as pas de preuve.\nYou have no evidence.\tVous n'avez pas de preuve.\nYou have no messages.\tVous n'avez pas de messages.\nYou have no messages.\tTu n'as pas de messages.\nYou have not seen it.\tVous ne l'avez pas vu.\nYou have our respect.\tTu as notre respect.\nYou have our respect.\tVous avez notre respect.\nYou have to hurry up.\tIl faut se dépêcher.\nYou have to keep fit.\tVous devez garder la forme.\nYou have to stay fit.\tVous devez rester en forme.\nYou have to stay fit.\tTu dois rester en forme.\nYou have to stay fit.\tVous devez garder la forme.\nYou have to stay fit.\tTu dois garder la forme.\nYou have to trust me.\tTu dois me faire confiance.\nYou have to trust me.\tVous devez me faire confiance.\nYou hurt my feelings.\tTu blesses mes sentiments.\nYou hurt my feelings.\tVous blessez mes sentiments.\nYou keep out of this.\tReste en dehors de ça.\nYou killed my father.\tTu as tué mon père.\nYou killed my mother.\tTu as tué ma mère.\nYou killed my mother.\tVous avez tué ma mère.\nYou knew, didn't you?\tTu savais, n'est-ce pas ?\nYou knew, didn't you?\tVous saviez, n'est-ce pas ?\nYou lack imagination.\tVous manquez d'imagination.\nYou lack imagination.\tTu manques d'imagination.\nYou live in my heart.\tTu vis dans mon cœur.\nYou look happy today.\tTu as l'air heureux, aujourd'hui !\nYou look happy today.\tTu as l'air heureuse, aujourd'hui !\nYou look happy today.\tVous avez l'air heureux, aujourd'hui !\nYou look happy today.\tVous avez l'air heureuse, aujourd'hui !\nYou look happy today.\tVous avez l'air heureuses, aujourd'hui !\nYou look like a girl.\tVous avez l'air d'une fille.\nYou look like a girl.\tTu as l'air d'une fille.\nYou look really good.\tTu as l'air vraiment en forme.\nYou look really good.\tVous avez l'air vraiment en forme.\nYou look so handsome.\tTu as l'air si beau.\nYou look so handsome.\tVous avez l'air si beau.\nYou look so handsome.\tVous avez l'air si beaux.\nYou looked exhausted.\tTu as l'air épuisé.\nYou lost, didn't you?\tTu as perdu, n'est-ce pas ?\nYou lost, didn't you?\tVous avez perdu, n'est-ce pas ?\nYou made it possible.\tTu l'as rendu possible.\nYou made it possible.\tVous l'avez rendu possible.\nYou may speak to him.\tVous pouvez lui parler.\nYou may use this car.\tVous pouvez utiliser ce véhicule.\nYou mean a lot to me.\tTu comptes beaucoup pour moi.\nYou might be correct.\tIl se pourrait que vous ayez raison.\nYou might be correct.\tIl se pourrait que tu aies raison.\nYou must be cautious.\tTu dois être prudent.\nYou must be cautious.\tVous devez être prudent.\nYou must be cautious.\tTu dois être prudente.\nYou must be cautious.\tVous devez être prudente.\nYou must be cautious.\tVous devez être prudents.\nYou must be cautious.\tVous devez être prudentes.\nYou must be cautious.\tIl vous faut être prudent.\nYou must be cautious.\tIl vous faut être prudente.\nYou must be cautious.\tIl vous faut être prudents.\nYou must be cautious.\tIl vous faut être prudentes.\nYou must be cautious.\tIl te faut être prudent.\nYou must be cautious.\tIl te faut être prudente.\nYou must be starving.\tVous devez mourir de faim.\nYou must be starving.\tTu dois mourir de faim.\nYou must do as I say.\tTu dois faire comme je dis.\nYou must do as I say.\tVous devez faire comme je dis.\nYou must not give up.\tIl ne faut pas que vous abandonniez.\nYou must not give up.\tIl ne faut pas que tu abandonnes.\nYou need to fix this.\tIl vous faut réparer ça.\nYou need to fix this.\tIl te faut réparer ça.\nYou need to sober up.\tIl te faut dessoûler.\nYou need to sober up.\tIl vous faut dessoûler.\nYou overestimate him.\tTu le surestimes.\nYou overestimate him.\tVous le surestimez.\nYou owe me something.\tTu me dois quelque chose.\nYou owe me something.\tVous me devez quelque chose.\nYou pay me very well.\tVous me payez très bien.\nYou said it yourself.\tTu l'as dit toi-même.\nYou said it yourself.\tVous l'avez dit vous-même.\nYou said it yourself.\tVous l'avez dit vous-mêmes.\nYou seem happy today.\tTu as l'air heureux aujourd'hui.\nYou should apologize.\tTu devrais t'excuser.\nYou should apologize.\tTu devrais présenter tes excuses.\nYou should apologize.\tVous devriez vous excuser.\nYou should apologize.\tVous devriez présenter vos excuses.\nYou should go to bed.\tTu ferais mieux de dormir.\nYou should go to bed.\tTu devrais aller au lit.\nYou should go to bed.\tVous devriez aller au lit.\nYou should not sleep.\tTu ne devrais pas dormir.\nYou should not sleep.\tVous ne devriez pas dormir.\nYou should stop that.\tVous devriez arrêter ça.\nYou should thank him.\tVous devriez le remercier.\nYou should try it on.\tTu devrais l'essayer !\nYou should try it on.\tVous devriez l'essayer !\nYou should work hard.\tTu devrais travailler dur.\nYou should've called.\tTu aurais dû téléphoner.\nYou should've phoned.\tTu aurais dû téléphoner.\nYou snooze, you lose.\tQui va à la chasse perd sa place.\nYou snooze, you lose.\tSi on ne saisit pas l'occasion tout de suite, elle ne se représente pas.\nYou talk really fast.\tVous parlez vraiment vite.\nYou talk really fast.\tTu parles vraiment vite.\nYou touched my heart.\tTu m'as touché au cœur.\nYou touched my heart.\tVous m'avez touché au cœur.\nYou touched my heart.\tTu m'as touchée au cœur.\nYou touched my heart.\tVous m'avez touchée au cœur.\nYou were great today.\tTu as été génial aujourd'hui.\nYou were great today.\tTu étais merveilleuse aujourd'hui.\nYou were great today.\tVous avez été géniaux aujourd'hui.\nYou will regret this.\tTu le regretteras.\nYou will regret this.\tVous le regretterez.\nYou won't believe it.\tTu ne vas pas le croire.\nYou won't believe it.\tTu ne le croiras pas.\nYou won't believe it.\tVous ne le croirez pas.\nYou won't need those.\tTu n'en auras pas besoin.\nYou won't need those.\tVous n'en aurez pas besoin.\nYou'd better come in.\tVous feriez mieux d'entrer.\nYou'd better go home.\tVous feriez mieux de rentrer chez vous.\nYou'd better go home.\tTu ferais mieux de rentrer chez toi.\nYou'd better go home.\tTu ferais mieux de rentrer chez nous.\nYou'd better go home.\tTu ferais mieux de rentrer à la maison.\nYou'll be in trouble.\tVous aurez des ennuis.\nYou'll be in trouble.\tTu auras des ennuis.\nYou'll get over this.\tTu t'en remettras.\nYou'll get over this.\tVous vous en remettrez.\nYou'll have to drive.\tTu devras conduire.\nYou'll have to drive.\tVous devrez conduire.\nYou're German, right?\tTu es allemand, n'est-ce pas ?\nYou're a filthy liar!\tTu es un sale menteur !\nYou're a filthy liar!\tTu es une sale menteuse !\nYou're a filthy liar!\tVous êtes un sale menteur !\nYou're a filthy liar!\tVous êtes une sale menteuse !\nYou're a little late.\tTu es un peu en retard.\nYou're a little liar.\tTu es un petit menteur.\nYou're a little liar.\tTu es une petite menteuse.\nYou're a little liar.\tVous êtes un petit menteur.\nYou're a total wreck.\tTu es une vraie loque.\nYou're a total wreck.\tVous êtes une vraie loque.\nYou're a true friend.\tTu es un véritable ami.\nYou're a true friend.\tTu es une véritable amie.\nYou're being watched.\tOn te regarde.\nYou're conscientious.\tTu es consciencieux.\nYou're conscientious.\tVous êtes consciencieux.\nYou're conscientious.\tTu es consciencieuse.\nYou're conscientious.\tVous êtes consciencieuse.\nYou're conscientious.\tVous êtes consciencieuses.\nYou're double-parked.\tVous êtes garé en double file.\nYou're double-parked.\tVous êtes garés en double file.\nYou're double-parked.\tVous êtes garées en double file.\nYou're double-parked.\tVous êtes garée en double file.\nYou're double-parked.\tTu es garé en double file.\nYou're double-parked.\tTu es garée en double file.\nYou're going to lose.\tTu vas perdre.\nYou're going to lose.\tVous allez perdre.\nYou're going too far.\tTu vas trop loin.\nYou're just a coward.\tTu n'es qu'un lâche.\nYou're never at home.\tTu n'es jamais chez toi.\nYou're never at home.\tVous n'êtes jamais chez vous.\nYou're not a suspect.\tTu ne comptes pas au nombre des suspects.\nYou're not a suspect.\tVous ne comptez pas au nombre des suspects.\nYou're not in charge.\tCe n'est pas toi qui dirige.\nYou're not in charge.\tCe n'est pas vous qui dirigez.\nYou're not listening!\tVous n'écoutez pas !\nYou're not listening!\tTu n'écoutes pas !\nYou're not my friend.\tVous n'êtes pas mon ami.\nYou're not my friend.\tVous n'êtes pas mon amie.\nYou're not my friend.\tTu n'es pas mon ami.\nYou're not my friend.\tTu n'es pas mon amie.\nYou're not my mother.\tTu n'es pas ma mère.\nYou're not my mother.\tVous n'êtes pas ma mère.\nYou're not one of us.\tTu n'es pas des nôtres.\nYou're not one of us.\tVous n'êtes pas des nôtres.\nYou're not safe here.\tVous n'y êtes pas en sécurité.\nYou're not safe here.\tTu n'y es pas en sécurité.\nYou're not safe here.\tTu n'es pas en sécurité, ici.\nYou're not safe here.\tVous n'êtes pas en sécurité, ici.\nYou're not the first.\tTu n'es pas le premier.\nYou're not the first.\tTu n'es pas la première.\nYou're not the first.\tVous n'êtes pas le premier.\nYou're not the first.\tVous n'êtes pas la première.\nYou're not very good.\tVous n'êtes pas très bon.\nYou're not very good.\tVous n'êtes pas très bons.\nYou're not very good.\tVous n'êtes pas très bonne.\nYou're not very good.\tVous n'êtes pas très bonnes.\nYou're not very tidy.\tVous n'êtes pas très ordonné.\nYou're not very tidy.\tVous n'êtes pas très ordonnée.\nYou're not very tidy.\tVous n'êtes pas très ordonnés.\nYou're not very tidy.\tVous n'êtes pas très ordonnées.\nYou're opportunistic.\tTu es un opportuniste.\nYou're opportunistic.\tTu es une opportuniste.\nYou're opportunistic.\tVous êtes un opportuniste.\nYou're opportunistic.\tVous êtes une opportuniste.\nYou're opportunistic.\tVous êtes des opportunistes.\nYou're overconfident.\tTu as trop confiance en toi.\nYou're overemotional.\tTu te laisses trop dominer par tes émotions.\nYou're overemotional.\tVous vous laissez trop dominer par vos émotions.\nYou're putting me on.\tTu te fous de moi.\nYou're putting me on.\tVous vous foutez de moi.\nYou're still growing.\tTu es encore en train de grandir.\nYou're still growing.\tVous êtes encore en train de grandir.\nYou're such an idiot!\tTu es un de ces idiots !\nYou're such an idiot!\tQuel imbécile vous êtes !\nYou're such an idiot!\tQuel imbécile tu es !\nYou're such an idiot!\tQuel idiot tu es !\nYou're such an idiot!\tQuelle idiote tu es !\nYou're such an idiot!\tQuel idiot vous êtes !\nYou're such an idiot!\tQuelle idiote vous êtes !\nYou're such an idiot!\tTu es tellement idiot !\nYou're such an idiot!\tTu es tellement idiote !\nYou're temperamental.\tTu es lunatique.\nYou're temperamental.\tVous êtes lunatique.\nYou're temperamental.\tVous êtes lunatiques.\nYou're temperamental.\tVous êtes fantasque.\nYou're temperamental.\tVous êtes fantasques.\nYou're temperamental.\tTu es fantasque.\nYou're the scapegoat.\tVous êtes le bouc émissaire.\nYou're the scapegoat.\tTu es le bouc émissaire.\nYou're totally right.\tTu as parfaitement raison.\nYou're totally right.\tVous avez parfaitement raison.\nYou're unforgettable.\tTu es inoubliable.\nYou're unforgettable.\tVous êtes inoubliable.\nYou're unforgettable.\tVous êtes inoubliables.\nYou're very flexible.\tTu es très flexible.\nYou're very flexible.\tVous êtes très flexible.\nYou're very flexible.\tVous êtes très flexibles.\nYou're very generous.\tTu es très généreux.\nYou're very generous.\tTu es très généreuse.\nYou're very generous.\tTu es fort généreux.\nYou're very generous.\tTu es fort généreuse.\nYou're very generous.\tVous êtes fort généreux.\nYou're very generous.\tVous êtes fort généreuse.\nYou're very generous.\tVous êtes fort généreuses.\nYou're very generous.\tVous êtes très généreuse.\nYou're very generous.\tVous êtes très généreux.\nYou're very generous.\tVous êtes très généreuses.\nYou're very talented.\tVous êtes très talentueux.\nYou're very talented.\tVous êtes très talentueuse.\nYou're very talented.\tVous êtes très talentueuses.\nYou're very talented.\tVous êtes fort talentueuse.\nYou're very talented.\tVous êtes fort talentueuses.\nYou're very talented.\tVous êtes fort talentueux.\nYou're very talented.\tTu es fort talentueux.\nYou're very talented.\tTu es très talentueux.\nYou're very talented.\tTu es fort talentueuse.\nYou're very talented.\tTu es très talentueuse.\nYou're very talented.\tTu es plein de talent.\nYou're very talented.\tTu es pleine de talent.\nYou're very talented.\tVous êtes plein de talent.\nYou're very talented.\tVous êtes pleine de talent.\nYou're wasting water.\tVous gaspillez de l'eau.\nYou're wasting water.\tTu gaspilles de l'eau.\nYou've been infected.\tVous avez été infecté.\nYou've been infected.\tVous avez été infectés.\nYou've been infected.\tVous avez été infectée.\nYou've been infected.\tVous avez été infectées.\nYou've been infected.\tTu as été infecté.\nYou've been infected.\tTu as été infectée.\nYou've been selected.\tVous avez été sélectionné.\nYou've been selected.\tTu as été sélectionné.\nYou've been selected.\tTu as été sélectionnée.\nYou've been selected.\tVous avez été sélectionnée.\nYou've been selected.\tVous avez été sélectionnés.\nYou've been selected.\tVous avez été sélectionnées.\nYou've got my helmet.\tTu as mon casque.\nYou've grown up, Tom.\tTu as grandi, Tom.\nYou've grown up, Tom.\tVous avez grandi, Tom.\nYou've hurt me a lot.\tTu m'as fait beaucoup de mal.\nYou've misunderstood.\tTu as compris de travers.\nYou've misunderstood.\tVous avez compris de travers.\nYou've risked enough.\tVous avez pris assez de risques.\nYou've risked enough.\tVous avez pris suffisamment de risques.\nYou've risked enough.\tTu as pris assez de risques.\nYou've risked enough.\tTu as pris suffisamment de risques.\nYour answer is right.\tTa réponse est juste.\nYour answer is right.\tVotre réponse est juste.\nYour answer is wrong.\tVotre réponse est erronée.\nYour answer is wrong.\tTa réponse est erronée.\nYour answer is wrong.\tTa réponse est fausse.\nYour answer is wrong.\tVotre réponse est fausse.\nYour answer is wrong.\tTa réponse est incorrecte.\nYour answer is wrong.\tVotre réponse est incorrecte.\nYour dog is very big.\tTon chien est très gros.\nYour dog is very big.\tVotre chien est très gros.\nYour dog is very fat.\tTon chien est très gros.\nYour mother loves me.\tTa mère m'aime.\nYour mother loves me.\tVotre mère m'aime.\nYour mother loves me.\tVotre mère m'adore.\nYour mother loves me.\tTa mère m'adore.\nYour nose is running.\tTon nez coule.\nYour phone's ringing.\tVotre téléphone sonne.\nYour phone's ringing.\tTon téléphone sonne.\nYour pulse is normal.\tTon pouls est normal.\nYour son is a genius.\tTon fils est un génie.\n\"Says who?\" \"Says me.\"\t« Qui le dit ? » « Je le dis. »\n\"Says who?\" \"Says me.\"\t« Qui le dit ? » « Moi. »\n\"Says who?\" \"Says me.\"\t« Dixit qui ? » « Dixit moi. »\n\"Says who?\" \"Says me.\"\t« Qui dit ça ? » « Je le dis. »\n\"Says who?\" \"Says me.\"\t« Qui dit ça ? » « Moi. »\nA dolphin is a mammal.\tLe dauphin est un mammifère.\nA dolphin is a mammal.\tUn dauphin est un mammifère.\nA guard's been killed.\tUn garde a été tué.\nA little bird told me.\tUn petit oiseau me l'a dit.\nA table has four legs.\tUne table a quatre pieds.\nA week has seven days.\tUne semaine compte sept jours.\nAbove all, be patient.\tSurtout, soyez patient.\nAccidents will happen.\tLes accidents sont inévitables.\nAccidents will happen.\tDes accidents auront lieu.\nAccidents will happen.\tLes accidents arrivent.\nAfghanistan is at war.\tL'Afghanistan est en guerre.\nAll lawyers are liars.\tTous les avocats sont des menteurs.\nAll of them were gone.\tIls étaient tous partis.\nAll of us were silent.\tNous étions tous silencieux.\nAll our money is gone.\tTout notre argent est parti.\nAll right, I'll do it.\tD'accord, je le ferai.\nAll the boys ran away.\tTous les garçons sont partis en courant.\nAll the eggs went bad.\tTous les œufs se gâtèrent.\nAll the food was gone.\tToute la nourriture avait disparu.\nAll the money is gone.\tTout l'argent a disparu.\nAll three of us agree.\tNous sommes tous trois d'accord.\nAll three of us agree.\tNous sommes toutes trois d'accord.\nAll we can do is hope.\tTout ce que nous pouvons faire, c'est espérer.\nAll we can do is wait.\tTout ce que nous pouvons faire, c'est attendre.\nAlways arrive on time.\tArrive toujours à l'heure.\nAlways arrive on time.\tArrivez toujours à l'heure.\nAm I cleared for duty?\tSuis-je apte au service ?\nAm I talking too fast?\tEst-ce que je parle trop vite ?\nAm I that transparent?\tSuis-je aussi transparente ?\nAm I that transparent?\tSuis-je aussi transparent ?\nAnd now, it's my turn!\tEt maintenant, c'est mon tour !\nAny child can do that.\tN'importe quel enfant peut faire cela.\nAny time will suit me.\tN'importe quel moment me conviendra.\nAnybody could do this.\tN'importe qui pourrait le faire.\nAnybody could do this.\tQuiconque pourrait le faire.\nAnything could happen.\tN'importe quoi pouvait arriver.\nAnything could happen.\tN'importe quoi pourrait arriver.\nAnything will be fine.\tTout va bien se passer.\nAnyway, I did my best.\tQuoi qu'il en soit, j'ai fait de mon mieux.\nAre there any bananas?\tY a-t-il des bananes ?\nAre these your things?\tCes choses sont-elles les vôtres ?\nAre these your things?\tCes choses sont-elles les tiennes ?\nAre these your things?\tCes choses sont-elles à vous ?\nAre these your things?\tCes choses sont-elles à toi ?\nAre they all the same?\tSont-ils tous identiques ?\nAre they all the same?\tSont-ils tous les mêmes ?\nAre they still in bed?\tSont-ils encore au lit ?\nAre they still in bed?\tSont-ils toujours au lit ?\nAre they still in bed?\tSont-elles encore au lit ?\nAre things going well?\tLes choses se déroulent-elles bien ?\nAre things going well?\tLes choses se passent-elles bien ?\nAre those my earrings?\tSont-ce mes boucles d'oreille ?\nAre those my earrings?\tSont-ce là mes boucles d'oreille ?\nAre we disturbing you?\tEst-ce que nous vous dérangeons ?\nAre we disturbing you?\tEst-ce que nous te dérangeons ?\nAre you a law student?\tÊtes-vous étudiant en droit ?\nAre you a law student?\tÊtes-vous étudiante en droit ?\nAre you a team player?\tÊtes-vous un joueur d'équipe ?\nAre you all right now?\tTu vas mieux maintenant ?\nAre you allowed to go?\tVous est-il permis d'y aller ?\nAre you allowed to go?\tVous est-il permis de vous y rendre ?\nAre you allowed to go?\tT'est-il permis d'y aller ?\nAre you allowed to go?\tT'est-il permis de t'y rendre ?\nAre you an only child?\tÊtes-vous un enfant unique ?\nAre you an only child?\tÊtes-vous une enfant unique ?\nAre you an only child?\tEs-tu un enfant unique ?\nAre you an only child?\tEs-tu une enfant unique ?\nAre you as tall as me?\tEs-tu aussi grand que moi ?\nAre you as tall as me?\tEs-tu aussi grande que moi ?\nAre you as tall as me?\tÊtes-vous aussi grand que moi ?\nAre you as tall as me?\tÊtes-vous aussi grande que moi ?\nAre you as tall as me?\tÊtes-vous aussi grands que moi ?\nAre you as tall as me?\tÊtes-vous aussi grandes que moi ?\nAre you ashamed of me?\tAs-tu honte de moi ?\nAre you being serious?\tTu es sérieux ?\nAre you being serious?\tVous êtes sérieux ?\nAre you coming or not?\tViens-tu ou non ?\nAre you coming or not?\tViens-tu ou pas ?\nAre you coming or not?\tVenez-vous ou non ?\nAre you coming or not?\tVenez-vous ou pas ?\nAre you dating anyone?\tSortez-vous avec qui que ce soit ?\nAre you dating anyone?\tSors-tu avec quelqu'un ?\nAre you dating anyone?\tSortez-vous avec quelqu'un ?\nAre you dating anyone?\tSors-tu avec qui que ce soit ?\nAre you enjoying this?\tCeci t'amuse-t-il ?\nAre you enjoying this?\tCeci vous amuse-t-il ?\nAre you fond of music?\tEst-ce que tu aimes la musique ?\nAre you free tomorrow?\tEs-tu libre demain ?\nAre you free tomorrow?\tTu es libre, demain ?\nAre you getting tired?\tCommences-tu à être fatigué ?\nAre you getting tired?\tCommences-tu à être fatiguée ?\nAre you getting tired?\tCommencez-vous à être fatigué ?\nAre you getting tired?\tCommencez-vous à être fatiguée ?\nAre you getting tired?\tCommencez-vous à être fatigués ?\nAre you getting tired?\tCommencez-vous à être fatiguées ?\nAre you having dinner?\tEs-tu en train de déjeuner ?\nAre you having dinner?\tEs-tu en train de dîner ?\nAre you having dinner?\tÊtes-vous en train de déjeuner ?\nAre you having dinner?\tÊtes-vous en train de dîner ?\nAre you hungry at all?\tAs-tu la moindre faim ?\nAre you hurt anywhere?\tÊtes-vous blessé où que ce soit ?\nAre you hurt anywhere?\tÊtes-vous blessés où que ce soit ?\nAre you hurt anywhere?\tÊtes-vous blessée où que ce soit ?\nAre you hurt anywhere?\tÊtes-vous blessées où que ce soit ?\nAre you hurt anywhere?\tEs-tu blessé où que ce soit ?\nAre you hurt anywhere?\tEs-tu blessée où que ce soit ?\nAre you in a bad mood?\tÊtes-vous de mauvaise humeur ?\nAre you in a bad mood?\tEs-tu de mauvaise humeur ?\nAre you looking at me?\tEs-tu en train de me regarder ?\nAre you looking at me?\tÊtes-vous en train de me regarder ?\nAre you losing weight?\tPerdez-vous du poids ?\nAre you losing weight?\tPerds-tu du poids ?\nAre you picking on me?\tTu me harcèles ?\nAre you picking on me?\tVous me harcelez ?\nAre you seeing anyone?\tVois-tu qui que ce soit ?\nAre you seeing anyone?\tVoyez-vous qui que ce soit ?\nAre you seriously ill?\tÊtes-vous sérieusement malade ?\nAre you seriously ill?\tEs-tu sérieusement malade ?\nAre you still at home?\tEs-tu encore chez toi ?\nAre you still at home?\tÊtes-vous encore chez vous ?\nAre you still at work?\tÊtes-vous encore au bureau ?\nAre you still jealous?\tÊtes-vous encore jaloux ?\nAre you still jealous?\tÊtes-vous encore jalouses ?\nAre you still jealous?\tÊtes-vous encore jalouse ?\nAre you still jealous?\tEs-tu encore jaloux ?\nAre you still jealous?\tEs-tu encore jalouse ?\nAre you still married?\tEs-tu toujours marié ?\nAre you still married?\tEs-tu toujours mariée ?\nAre you still married?\tÊtes-vous toujours marié ?\nAre you still married?\tÊtes-vous toujours mariée ?\nAre you still married?\tÊtes-vous toujours mariés ?\nAre you still married?\tÊtes-vous toujours mariées ?\nAre you talking to me?\tC'est à moi que tu parles ?\nAre you talking to me?\tC'est à moi que vous parlez ?\nAre you working today?\tTravailles-tu, aujourd'hui ?\nAre your parents home?\tTes parents, sont-ils à la maison ?\nAre your parents home?\tEst-ce que tes parents sont à la maison ?\nAsk Tom to explain it.\tDemande à Tom de l'expliquer.\nAsk Tom to explain it.\tDemandez à Tom de l'expliquer.\nAsk Tom where Mary is.\tDemande à Tom où se trouve Mary.\nAsk for what you want!\tDemande ce que tu veux !\nAt last, my turn came.\tEnfin mon tour est venu.\nAutumn is almost here.\tL’automne est déjà sur le point d’arriver.\nBad news travels fast.\tLes mauvaises nouvelles ont des ailes.\nBad news travels fast.\tLes mauvaises nouvelles vont vite.\nBe kind to old people.\tSois gentil envers les aînées.\nBe kind to old people.\tSoyez respectueux envers les personnes âgées.\nBe kind to old people.\tSoyez gentil envers les personnes âgées.\nBe polite to everyone.\tSois poli avec tout le monde !\nBe polite to everyone.\tSoyez poli avec tout le monde !\nBe polite to everyone.\tSoyez polis avec tout le monde !\nBe polite to everyone.\tSoyez polie avec tout le monde !\nBe polite to everyone.\tSoyez polies avec tout le monde !\nBe polite to everyone.\tSois polie avec tout le monde !\nBe quiet for a moment.\tCalmez-vous pendant un moment.\nBe quiet for a moment.\tRestez un moment tranquille.\nBears can climb trees.\tLes ours peuvent grimper aux arbres.\nBelieve what you want.\tCrois ce que tu veux.\nBelieve what you want.\tCroyez ce que vous voulez.\nBeware of pickpockets.\tAttention aux pickpockets.\nBeware of pickpockets.\tPrenez garde aux pickpockets.\nBirds have sharp eyes.\tLes oiseaux ont les yeux perçants.\nBoth men were rescued.\tLes deux hommes ont été sauvés.\nBoth of you are wrong.\tVous avez tous deux tort.\nBoth of you are wrong.\tVous avez toutes deux tort.\nBring your student ID!\tPrends ta carte d'étudiant !\nBring your student ID!\tApporte ta carte d'étudiant !\nBring your student ID!\tAmène ta carte d'étudiant !\nBusiness is improving.\tLes affaires s'améliorent.\nBuy it for me, please.\tAchetez-le-moi, s'il vous plaît.\nCall me at the office.\tAppelez-moi l'agence du coin.\nCan I borrow your car?\tPuis-je emprunter votre voiture ?\nCan I get you a drink?\tPuis-je aller vous chercher une boisson ?\nCan I get you a drink?\tPuis-je aller te chercher une boisson ?\nCan I get you a drink?\tPuis-je vous amener une boisson ?\nCan I get you a drink?\tPuis-je t'amener une boisson ?\nCan I give you a ride?\tJe peux vous amener ?\nCan I have this dance?\tPuis-je avoir cette danse ?\nCan I open the window?\tPuis-je ouvrir la fenêtre ?\nCan I sit next to you?\tEst-ce que je peux m'asseoir à côté de toi ?\nCan I turn off the TV?\tPuis-je éteindre la télé ?\nCan I use your pencil?\tPuis-je utiliser votre crayon ?\nCan I use your pencil?\tPuis-je utiliser ton crayon ?\nCan Tom come tomorrow?\tTom pourra venir, demain ?\nCan he speak Japanese?\tSait-il parler le japonais ?\nCan his story be true?\tSon histoire peut-elle être vraie ?\nCan somebody get that?\tQuelqu'un peut-il prendre cet appel ?\nCan the rumor be true?\tSe peut-il que la rumeur soit fondée ?\nCan this news be true?\tCes nouvelles peuvent-elles être vraies ?\nCan we close the door?\tPeut-on fermer la porte ?\nCan we close the door?\tPouvons-nous fermer la porte ?\nCan we get on with it?\tPouvons-nous nous y mettre ?\nCan you drive me home?\tPouvez-vous me conduire chez moi ?\nCan you drive me home?\tPeux-tu me conduire chez moi ?\nCan you get a day off?\tPouvez-vous prendre un jour de congé ?\nCan you hear anything?\tEntends-tu quelque chose ?\nCan you identify them?\tPouvez-vous les identifier ?\nCan you identify them?\tPeux-tu les identifier ?\nCan you keep a secret?\tPeux-tu garder un secret ?\nCan you keep a secret?\tPouvez-vous garder un secret ?\nCan you keep a secret?\tSais-tu garder un secret ?\nCan you keep a secret?\tSavez-vous garder un secret ?\nCan you light the way?\tPeux-tu éclairer le chemin ?\nCan you light the way?\tPeux-tu éclairer le passage ?\nCan you light the way?\tPouvez-vous éclairer le chemin ?\nCan you loan me a pen?\tPouvez-vous me prêter un stylo ?\nCan you loan me a pen?\tPeux-tu me prêter un stylo ?\nCan you show it to me?\tPeux-tu me le montrer ?\nCan you show it to me?\tPouvez-vous me le montrer ?\nCan you sing the song?\tPeux-tu chanter la chanson ?\nCan you speak English?\tSavez-vous parler anglais ?\nCan you wait a minute?\tPeux-tu attendre une minute ?\nCan you wait a minute?\tPouvez-vous attendre une minute ?\nCan you write Braille?\tSais-tu écrire en Braille ?\nCan't we discuss this?\tNe pouvons-nous pas discuter de ceci ?\nCan't you move faster?\tNe peux-tu pas bouger plus vite ?\nCan't you move faster?\tNe pouvez-vous pas bouger plus vite ?\nCats don't like water.\tLes chats n'aiment pas l'eau.\nChange was in the air.\tLes choses étaient en train de changer.\nChange was in the air.\tUn changement s'annonçait.\nChildren need to play.\tLes enfants ont besoin de jouer.\nChildren need to play.\tLes enfants doivent jouer.\nChildren watch adults.\tLes enfants observent les adultes.\nClose all the windows.\tFerme toutes les fenêtres !\nClose all the windows.\tFermez toutes les fenêtres !\nClose your eyes again.\tFermez les yeux à nouveau.\nClose your eyes again.\tFerme les yeux à nouveau.\nCome downtown with us.\tVenez en ville avec nous !\nCome downtown with us.\tViens en ville avec nous !\nCome here and help me.\tViens ici et aide-moi.\nCome here, all of you.\tVenez ici, tous tant que vous êtes !\nCome here, all of you.\tVenez ici, toutes tant que vous êtes !\nCome here, all of you.\tVenez ici, vous tous !\nCome here, all of you.\tVenez ici, vous toutes !\nCome home before dark.\tViens avant qu'il ne fasse sombre.\nCome on, let's try it.\tAllez, essayons !\nCome on, let's try it.\tAllez, tentons-le !\nCome over to my place.\tViens chez moi !\nCome over to my place.\tVenez chez moi !\nCome to lunch with us.\tVenez déjeuner avec nous.\nCome tomorrow morning.\tVenez demain matin.\nComplete the sentence.\tComplétez la phrase.\nControl is everything.\tLe contrôle, ça fait tout.\nCotton sucks up water.\tLe coton absorbe l'eau.\nCould I have a tissue?\tPourrais-je avoir un mouchoir ?\nCould I use the phone?\tPourrais-je utiliser votre téléphone ?\nCould I use the phone?\tPourrais-je utiliser ton téléphone ?\nCould I use your desk?\tPuis-je utiliser votre bureau ?\nCould we discuss this?\tPourrions-nous en discuter ?\nCould we have a spoon?\tPourrions-nous avoir une cuillère ?\nCould you drop me off?\tPourriez-vous me déposer ?\nCould you drop me off?\tPourrais-tu me déposer ?\nCould you let him out?\tPourriez-vous le laisser sortir ?\nCould you repeat that?\tPeux-tu répéter ça ?\nCount from one to ten.\tCompte de un à dix.\nDeath before dishonor!\tLa mort plutôt que le déshonneur !\nDid I really say that?\tAi-je vraiment dit cela ?\nDid I ruin your plans?\tAi-je fait capoter tes projets ?\nDid I ruin your plans?\tAi-je fait capoter vos projets ?\nDid Tom forget to pay?\tTom a-t-il oublié de payer ?\nDid Tom listen to you?\tEst-ce que Tom t'a écouté ?\nDid anyone call me up?\tEst-ce que quelqu'un m'a appelé ?\nDid he do such things?\tA-t-il fait de telles choses ?\nDid he propose to you?\tT'a-t-il demandée en mariage ?\nDid he stay very long?\tEst-il resté très longtemps ?\nDid it make you angry?\tCela t'a-t-il mis en colère ?\nDid it make you angry?\tCela vous a-t-il mis en colère ?\nDid somebody get hurt?\tQuelqu'un a-t-il eu mal ?\nDid you ask the price?\tAs-tu demandé le prix ?\nDid you ask the price?\tAvez-vous demandé le prix ?\nDid you buy a new car?\tAvez-vous acheté une voiture neuve ?\nDid you buy a new car?\tAs-tu acheté une voiture neuve ?\nDid you buy this book?\tAs-tu acheté ce livre ?\nDid you find anything?\tAs-tu trouvé quoi que ce soit ?\nDid you find anything?\tAvez-vous trouvé quoi que ce soit ?\nDid you get the check?\tAs-tu reçu le chèque ?\nDid you get the check?\tAs-tu reçu la note ?\nDid you get the check?\tAvez-vous reçu le chèque ?\nDid you get the check?\tAvez-vous reçu la note ?\nDid you have any luck?\tAs-tu réussi ?\nDid you have any luck?\tAvez-vous réussi ?\nDid you hear all that?\tAs-tu tout entendu ?\nDid you hear all that?\tAvez-vous tout entendu ?\nDid you hear the news?\tVous écoutez les informations ?\nDid you hear the news?\tAvez-vous entendu les nouvelles ?\nDid you hurt yourself?\tTu t'es fait mal ?\nDid you hurt yourself?\tVous êtes-vous fait mal ?\nDid you hurt yourself?\tT'es-tu fait mal ?\nDid you know him well?\tLe connaissiez-vous bien ?\nDid you know him well?\tLe connaissais-tu bien ?\nDid you know him well?\tL'as-tu bien connu ?\nDid you know him well?\tL'avez-vous bien connu ?\nDid you not know that?\tNe le saviez-vous pas ?\nDid you not know that?\tNe le savais-tu pas ?\nDid you question them?\tLes avez-vous remis en question ?\nDid you question them?\tLes as-tu remis en question ?\nDid you recognize Tom?\tAs-tu reconnu Tom ?\nDid you say something?\tDisais-tu quelque chose ?\nDid you say something?\tAs-tu dit quelque chose ?\nDid you say something?\tTu disais quelque chose ?\nDid you say something?\tAs-tu dit quelque chose ?\nDid you say something?\tAvez-vous dit quelque chose ?\nDid you say yes or no?\tAs-tu dit oui ou non ?\nDid you see my camera?\tAs-tu vu mon appareil photo ?\nDid you sleep all day?\tAs-tu dormi toute la journée ?\nDid you sleep all day?\tAvez-vous dormi toute la journée ?\nDid you take him home?\tL'as-tu emmené chez toi ?\nDid you take him home?\tL'avez-vous emmené chez vous ?\nDid you talk about me?\tAs-tu parlé de moi ?\nDid you talk about me?\tAvez-vous parlé de moi ?\nDid you telephone him?\tLui avez-vous téléphoné ?\nDid you telephone him?\tLui as-tu téléphoné ?\nDid you think of that?\tY avais-tu pensé ?\nDid you think of that?\tY avais-tu songé ?\nDid you think of that?\tY aviez-vous pensé ?\nDid you think of that?\tY aviez-vous songé ?\nDid you understand me?\tM'avez-vous compris ?\nDid you understand me?\tM'as-tu compris ?\nDid you understand me?\tM'avez-vous compris ?\nDid you understand me?\tM'avez-vous comprise ?\nDid you understand me?\tM'as-tu compris ?\nDid you understand me?\tM'as-tu comprise ?\nDid you use my camera?\tAvez-vous utilisé mon appareil photo ?\nDidn't I mention that?\tN'en ai-je pas fait mention ?\nDidn't I mention that?\tN'ai-je pas mentionné cela ?\nDo I look busy to you?\tAi-je l'air occupé, selon toi ?\nDo I look busy to you?\tAi-je l'air occupée, selon toi ?\nDo I look busy to you?\tAi-je l'air occupé, selon vous ?\nDo I look busy to you?\tAi-je l'air occupée, selon vous ?\nDo I look dead to you?\tAi-je l'air mort, selon vous ?\nDo I look dead to you?\tAi-je l'air mort, selon toi ?\nDo I look dead to you?\tAi-je l'air morte, selon vous ?\nDo I look dead to you?\tAi-je l'air morte, selon toi ?\nDo I look like I care?\tAi-je l'air de m'en soucier ?\nDo I look pale to you?\tEst-ce que je vous parais pâle?\nDo I look presentable?\tAi-je l'air présentable ?\nDo I need to say more?\tAi-je besoin d’en dire plus ?\nDo I need to transfer?\tY a-t-il une correspondance ?\nDo it any way you can.\tFais-le selon les possibilités.\nDo not be so critical.\tNe sois pas si critique !\nDo not be so critical.\tNe soyez pas si critique !\nDo not be so critical.\tNe soyez pas si critiques !\nDo not open your book.\tN'ouvre pas ton livre.\nDo not open your book.\tN'ouvre pas ton livre !\nDo not open your book.\tN'ouvrez pas votre livre !\nDo they know about us?\tOnt-ils connaissance de notre existence ?\nDo they learn English?\tEst-ce qu'ils étudient l'anglais ?\nDo turtles have teeth?\tLes tortues ont-elles des dents ?\nDo we have any chance?\tAvons-nous la moindre chance ?\nDo we know each other?\tNous connaissons-nous ?\nDo you agree with Tom?\tEs-tu d'accord avec Tom ?\nDo you also like jazz?\tAimez-vous aussi le jazz ?\nDo you believe in God?\tCroyez-vous en Dieu ?\nDo you believe in God?\tCrois-tu en Dieu ?\nDo you believe me now?\tMe croyez-vous, maintenant ?\nDo you believe me now?\tMe crois-tu, maintenant ?\nDo you carry a weapon?\tPortes-tu une arme ?\nDo you carry a weapon?\tPortez-vous une arme ?\nDo you enjoy studying?\tAimes-tu étudier ?\nDo you enjoy studying?\tAimez-vous étudier ?\nDo you enjoy studying?\tAimes-tu étudier?\nDo you feel all right?\tTe sens-tu bien ?\nDo you feel all right?\tVous sentez-vous bien ?\nDo you fly frequently?\tPrenez-vous souvent l'avion ?\nDo you fly frequently?\tVoyagez-vous souvent en avion ?\nDo you fly frequently?\tPrends-tu souvent l'avion ?\nDo you fly frequently?\tVoyages-tu souvent en avion ?\nDo you go there often?\tY vas-tu souvent ?\nDo you go there often?\tY vas-tu fréquemment ?\nDo you have a bicycle?\tAvez-vous un vélo ?\nDo you have a bicycle?\tAvez-vous une bicyclette ?\nDo you have a few CDs?\tAs-tu quelques CDs ?\nDo you have a husband?\tAs-tu un époux ?\nDo you have a lighter?\tAvez-vous un briquet ?\nDo you have a problem?\tTu as un problème ?\nDo you have a problem?\tEst-ce que tu as un problème ?\nDo you have a problem?\tAvez-vous un problème ?\nDo you have a problem?\tVous avez un problème ?\nDo you have a receipt?\tAs-tu un reçu ?\nDo you have a receipt?\tAvez-vous un reçu ?\nDo you have a vacancy?\tEst-ce que vous avez des chambres de libre ?\nDo you have any money?\tAs-tu de l'argent ?\nDo you have any money?\tDisposez-vous d'un quelconque argent ?\nDo you have any money?\tAs-tu un quelconque argent ?\nDo you have any water?\tAvez-vous la moindre eau ?\nDo you have any water?\tAs-tu la moindre eau ?\nDo you have some milk?\tAvez-vous un peu de lait ?\nDo you have some wine?\tAs-tu du vin ?\nDo you have some wine?\tAvez-vous du vin ?\nDo you have to go now?\tDois-tu partir maintenant ?\nDo you have to go now?\tDevez-vous partir maintenant ?\nDo you have to go now?\tDois-tu y aller maintenant ?\nDo you have to go now?\tDevez-vous y aller maintenant ?\nDo you have your keys?\tAs-tu tes clefs?\nDo you hear any sound?\tTu entends n'importe quel son ?\nDo you hear any sound?\tTu entends bien ?\nDo you know this lady?\tTu connais cette dame ?\nDo you know this song?\tTu connais cette chanson ?\nDo you know who he is?\tSavez-vous qui c'est ?\nDo you know who he is?\tSavez-vous qui il est ?\nDo you know your size?\tConnaissez-vous votre taille ?\nDo you like anchovies?\tAimez-vous les anchois ?\nDo you like her songs?\tAimes-tu ses chansons ?\nDo you like her songs?\tAimez-vous ses chansons ?\nDo you like his songs?\tAimes-tu ses chansons ?\nDo you like his songs?\tAimez-vous ses chansons ?\nDo you like surprises?\tAimes-tu les surprises ?\nDo you like surprises?\tAimez-vous les surprises ?\nDo you like the piano?\tAimez-vous le piano ?\nDo you like to travel?\tAimez-vous voyager ?\nDo you like to travel?\tAimes-tu voyager ?\nDo you live in Turkey?\tHabites-tu en Turquie ?\nDo you meet him often?\tLe rencontres-tu souvent ?\nDo you miss your kids?\tEst-ce que tes enfants te manquent ?\nDo you need a deposit?\tAs-tu besoin d'un dépôt ?\nDo you need a deposit?\tAvez-vous besoin d'une caution ?\nDo you need the phone?\tAs-tu besoin du téléphone ?\nDo you need the phone?\tAvez-vous besoin du téléphone ?\nDo you need this book?\tAs-tu besoin de ce livre ?\nDo you not like girls?\tN'aimez-vous pas les filles ?\nDo you not like girls?\tN'aimes-tu pas les filles ?\nDo you own a computer?\tPossèdes-tu un ordinateur ?\nDo you own a computer?\tPossédez-vous un ordinateur ?\nDo you plan on moving?\tEnvisagez-vous de déménager ?\nDo you play in a band?\tJouez-vous dans un groupe ?\nDo you play in a band?\tJouez-vous dans une fanfare ?\nDo you play in a band?\tJouez-vous dans un orchestre ?\nDo you play in a band?\tJoues-tu dans un groupe ?\nDo you play in a band?\tJoues-tu dans une fanfare ?\nDo you play in a band?\tJouez-vous dans un ensemble ?\nDo you play in a band?\tJoues-tu dans un ensemble ?\nDo you really love me?\tTu m’aimes vraiment ?\nDo you really mean it?\tLe penses-tu réellement ?\nDo you really mean it?\tEs-tu vraiment sincère ?\nDo you really want it?\tLe veux-tu vraiment ?\nDo you recognize them?\tLes reconnaissez-vous ?\nDo you recognize them?\tLes reconnais-tu ?\nDo you speak Japanese?\tParles-tu japonais ?\nDo you speak Japanese?\tParlez-vous japonais ?\nDo you still love him?\tL'aimes-tu encore ?\nDo you still love him?\tL'aimez-vous encore ?\nDo you still need tea?\tAs-tu encore besoin de thé ?\nDo you think I did it?\tPensez-vous que je l'aie fait ?\nDo you think I did it?\tPenses-tu que je l'aie fait ?\nDo you think I'm ugly?\tMe trouves-tu laid ?\nDo you think I'm ugly?\tMe trouves-tu laide ?\nDo you think I'm ugly?\tTrouves-tu que je sois laid ?\nDo you think I'm ugly?\tTrouves-tu que je sois laide ?\nDo you think I'm ugly?\tTrouvez-vous que je sois laid ?\nDo you think I'm ugly?\tTrouvez-vous que je sois laide ?\nDo you think it works?\tPenses-tu que ça marche ?\nDo you think it works?\tPensez-vous que ça marche ?\nDo you understand her?\tLa comprends-tu ?\nDo you understand her?\tLa comprenez-vous ?\nDo you use aftershave?\tUtilisez-vous un après-rasage ?\nDo you use aftershave?\tUtilises-tu un après-rasage ?\nDo you walk to school?\tMarchez-vous jusqu'à l'école ?\nDo you want in or not?\tVoulez-vous entrer ou pas ?\nDo you want in or not?\tVeux-tu entrer ou pas ?\nDo you want some help?\tVeux-tu de l'aide ?\nDo you want some help?\tVous voulez de l'aide ?\nDo you want some help?\tTu veux de l'aide ?\nDo you want some help?\tVoulez-vous de l'aide ?\nDo you want some wine?\tVoulez-vous du vin ?\nDo you want some wine?\tVeux-tu du vin ?\nDo you want something?\tTu veux quelque chose ?\nDo you want something?\tVeux-tu quelque chose ?\nDo you want something?\tVoulez-vous quelque chose ?\nDo you want something?\tVeux-tu quelque chose ?\nDo you want to resign?\tVoudrais-tu démissionner ?\nDo you want to resign?\tVoulez-vous démissionner ?\nDo you want to try it?\tVeux-tu essayer ?\nDo you want to try it?\tVoulez-vous essayer ?\nDo you want to try it?\tVeux-tu t'y essayer ?\nDo you want to try it?\tVoulez-vous vous y essayer ?\nDoes Tom dye his hair?\tTom se teint-il les cheveux ?\nDoes Tom have a beard?\tTom a-t-il une barbe ?\nDoes Tom like his job?\tTom aime-t-il son travail ?\nDoes Tom like to swim?\tTom aime-t-il nager ?\nDoes Tom want to rest?\tTom veut-il se reposer ?\nDoes anybody know him?\tEst-ce que quelqu'un le connaît ?\nDoes anyone feel sick?\tQuiconque se sent-il malade ?\nDoes he do any sports?\tPratique-t-il un sport quelconque ?\nDoes he speak English?\tParle-t-il anglais ?\nDoes it hurt anywhere?\tCela fait-il mal où que ce soit ?\nDoes it matter to you?\tCela vous importe-t-il ?\nDoes it matter to you?\tEst-ce important pour toi ?\nDoes it really matter?\tCela importe-t-il vraiment ?\nDoes she have a hobby?\tA-t-elle un passe-temps ?\nDoes she like oranges?\tAime-t-elle les oranges ?\nDoes she speak French?\tParle-t-elle français ?\nDoes that satisfy you?\tCela vous satisfait-il ?\nDoes that satisfy you?\tCela te satisfait-il ?\nDoes that trouble you?\tEst-ce que ça te dérange ?\nDoes that trouble you?\tEst-ce que ça vous dérange ?\nDoes that trouble you?\tCela vous dérange-t-il ?\nDoes that window open?\tCette fenêtre s'ouvre-t-elle ?\nDoes the hat fit well?\tLe chapeau est-il à la bonne taille ?\nDoes this ring a bell?\tCela t'évoque-t-il quelque chose ?\nDoes this ring a bell?\tÇa t'évoque quelque chose ?\nDoes this ring a bell?\tÇa vous évoque quelque chose ?\nDoes this ring a bell?\tCela vous évoque-t-il quelque chose ?\nDogs often bury bones.\tLes chiens enterrent souvent des os.\nDon't be so impatient.\tNe sois pas si impatient !\nDon't be so impatient.\tNe sois pas tellement impatient !\nDon't be so impatient.\tNe soyez pas si impatient !\nDon't be so impatient.\tNe soyez pas tellement impatient !\nDon't be so impatient.\tNe soyez pas tellement impatiente !\nDon't be so impatient.\tNe soyez pas si impatiente !\nDon't be so impatient.\tNe soyez pas si impatients !\nDon't be so impatient.\tNe soyez pas si impatientes !\nDon't be so impatient.\tNe soyez pas tellement impatientes !\nDon't be so impatient.\tNe soyez pas tellement impatients !\nDon't be so impatient.\tNe sois pas si impatiente !\nDon't be so impatient.\tNe sois pas tellement impatiente !\nDon't be unreasonable.\tNe sois pas déraisonnable.\nDon't bite your nails.\tNe ronge pas tes ongles.\nDon't blame it on her.\tNe l'en rends pas responsable.\nDon't blame it on her.\tNe le lui reproche pas.\nDon't blame the guide.\tNe blâmez pas le guide.\nDon't burst my bubble.\tNe crève pas ma bulle !\nDon't burst my bubble.\tNe crevez pas ma bulle !\nDon't call me anymore.\tNe m'appelle plus.\nDon't call me anymore.\tNe m'appelez plus.\nDon't call the police.\tN'appelle pas la police.\nDon't call the police.\tN'appelez pas la police.\nDon't close your eyes.\tNe ferme pas les yeux !\nDon't come any closer.\tNe t'approche pas davantage.\nDon't come any closer.\tNe vous approchez pas davantage.\nDon't commit yourself.\tNe t'engage pas.\nDon't confuse the two.\tNe confonds pas les deux.\nDon't confuse the two.\tNe confondez pas les deux.\nDon't cut your finger.\tNe te coupe pas le doigt.\nDon't cut your finger.\tNe vous coupez pas le doigt.\nDon't drink and drive.\tNe conduis pas sous l'influence de l'alcool.\nDon't drink the water.\tNe bois pas l'eau.\nDon't drink the water.\tNe buvez pas l'eau.\nDon't eat the oysters.\tNe mange pas les huîtres.\nDon't eat the oysters.\tNe mangez pas les huîtres.\nDon't even talk to me.\tNe me parle même pas.\nDon't even talk to me.\tNe me parlez même pas.\nDon't expect overtime.\tN'espère pas d'heures supplémentaires !\nDon't expect overtime.\tN'espérez pas d'heures supplémentaires !\nDon't expect too much.\tN'attends pas trop.\nDon't forget about me.\tNe m'oublie pas.\nDon't forget about me.\tNe m'oubliez pas.\nDon't forget about us!\tNe nous oublie pas !\nDon't forget to floss.\tN'oublie pas de te passer le fil dentaire.\nDon't forget to floss.\tN'oubliez pas de vous passer le fil dentaire.\nDon't forget your bag.\tN'oubliez pas votre sac !\nDon't forget your bag.\tN'oublie pas ton sac !\nDon't get discouraged.\tNe te décourage pas.\nDon't get discouraged.\tNe vous découragez pas.\nDon't get sidetracked.\tNe te laisse pas divertir.\nDon't get too excited.\tNe t'excite pas tant !\nDon't get too excited.\tNe vous excitez pas tant !\nDon't give up halfway.\tN'abandonne pas en chemin.\nDon't go near the dog.\tN'approchez pas du chien.\nDon't go near the dog.\tNe t'approche pas du chien.\nDon't go near the dog.\tNe vous approchez pas du chien.\nDon't keep me waiting.\tNe me fais pas attendre !\nDon't keep me waiting.\tNe me faites pas attendre !\nDon't leave me behind!\tNe me laissez pas en arrière!\nDon't leave me behind!\tNe me laisse pas à la traîne !\nDon't leave me behind!\tNe me laissez pas à la traîne !\nDon't leave the TV on.\tNe laisse pas la télévision allumée !\nDon't let Tom do that.\tNe laisse pas Tom faire ça.\nDon't let Tom do that.\tNe laissez pas Tom faire cela.\nDon't let me die here.\tNe me laissez pas mourir ici.\nDon't let that dog go.\tNe lâche pas le chien.\nDon't look so shocked.\tN'ayez pas l'air si choqué !\nDon't look so shocked.\tN'ayez pas l'air si choquée !\nDon't look so shocked.\tN'ayez pas l'air si choqués !\nDon't look so shocked.\tN'ayez pas l'air si choquées !\nDon't look so shocked.\tN'aie pas l'air si choqué !\nDon't look so shocked.\tN'aie pas l'air si choquée !\nDon't lose your purse.\tNe perds pas ton porte-monnaie.\nDon't lose your purse.\tNe perdez pas votre porte-monnaie.\nDon't make me do this.\tNe me fais pas faire ça !\nDon't make me do this.\tNe me faites pas faire ça !\nDon't make me do this.\tNe m'oblige pas à faire ça.\nDon't make me do this.\tNe m'obligez pas à faire ça.\nDon't open it, please.\tNe l'ouvre pas, s'il te plaît.\nDon't open it, please.\tNe l'ouvrez pas, s'il vous plaît.\nDon't open the window.\tN'ouvrez pas la fenêtre.\nDon't open your books.\tN'ouvrez pas vos livres !\nDon't open your mouth.\tN'ouvre pas la bouche !\nDon't read my journal.\tNe lis pas mon journal !\nDon't read my journal.\tNe lisez pas mon journal !\nDon't read my journal.\tNe lis pas ma revue !\nDon't read my journal.\tNe lisez pas ma revue !\nDon't respond to that.\tN'y réponds pas !\nDon't respond to that.\tN'y répondez pas !\nDon't say such things.\tNe dites pas de telles choses !\nDon't say such things.\tNe dis pas de telles choses !\nDon't stand in my way.\tNe te mets pas dans mon chemin.\nDon't stand too close.\tNe te tiens pas trop près !\nDon't stand too close.\tNe vous tenez pas trop près !\nDon't step on my toes.\tNe me marche pas sur les orteils !\nDon't step on my toes.\tNe me marchez pas sur les orteils !\nDon't swear in public.\tNe jurez pas en public.\nDon't swear in public.\tNe jure pas en public.\nDon't throw that away.\tNe le jetez pas !\nDon't throw that away.\tNe le jette pas !\nDon't touch my camera.\tNe touche pas à mon appareil photo.\nDon't touch that dial.\tNe touche pas à ce cadran !\nDon't touch that dial.\tNe touchez pas à ce cadran !\nDon't touch the glass.\tNe touchez pas la vitre.\nDon't touch the glass.\tNe touche pas la vitre.\nDon't touch the stove.\tNe touche pas le poêle.\nDon't touch the stove.\tNe touche pas la cuisinière.\nDon't touch the stove.\tNe touchez pas la cuisinière.\nDon't touch the stove.\tNe touchez pas le poêle.\nDon't try my patience.\tNe joue pas avec ma patience.\nDon't try to trick us.\tN'essayez pas de nous arnaquer !\nDon't try to trick us.\tN'essaye pas de nous arnaquer !\nDon't waste your time.\tNe gaspillez pas votre temps !\nDon't waste your time.\tNe gaspille pas ton temps !\nDon't you feel guilty?\tNe te sens-tu pas coupable ?\nDon't you feel guilty?\tNe vous sentez-vous pas coupable ?\nDon't you play tennis?\tVous ne jouez pas au tennis ?\nDon't you play tennis?\tTu ne joues pas au tennis ?\nDon't you remember us?\tNe te rappelles-tu pas de nous ?\nDouble-click the icon.\tDouble-cliquez sur l'icône.\nDrinking was his ruin.\tBoire fut sa perte.\nEat whatever you like.\tMange ce qui te plaît.\nEat whatever you like.\tMange tout ce que tu veux.\nEat whatever you like.\tMange ce qui te chante.\nEat whatever you like.\tMangez ce qui vous chante.\nEat your soup, please.\tMange ta soupe, s'il te plaît.\nEvery dog has his day.\tLa chance tourne.\nEvery dog has his day.\tChaque chien a son jour.\nEverybody believes it.\tTout le monde le croit.\nEverybody has secrets.\tTout le monde a des secrets.\nEverybody is sleeping.\tTout le monde dort.\nEverybody likes money.\tTout le monde apprécie l'argent.\nEverybody likes money.\tTout le monde aime l'argent.\nEverybody looked sick.\tTout le monde avait l'air malade.\nEverybody loves music.\tTout le monde aime la musique.\nEverybody ran outside.\tTout le monde courut dehors.\nEverybody ran outside.\tTout le monde a couru dehors.\nEverybody was stunned.\tTout le monde fut stupéfait.\nEverybody was stunned.\tTout le monde fut abasourdi.\nEverybody was stunned.\tTout le monde a été abasourdi.\nEverybody's a suspect.\tTout le monde est suspect.\nEveryone is different.\tTout le monde est différent.\nEveryone is exhausted.\tTout le monde est épuisé.\nEveryone is suffering.\tTout le monde souffre.\nEveryone kept talking.\tTout le monde a continué à parler.\nEveryone kept talking.\tTout le monde continua à parler.\nEveryone quieted down.\tTout le monde se calma.\nEveryone quieted down.\tTout le monde s'est calmé.\nEveryone was doing it.\tTout le monde le faisait.\nEveryone was drinking.\tTout le monde était en train de boire.\nEverything is working.\tTout fonctionne.\nEverything was stolen.\tTout a été volé.\nEverything went black.\tTout devint noir.\nEverything went black.\tTout est devenu noir.\nEverything went wrong.\tTout est allé de travers.\nFasten your seat belt.\tAttachez votre ceinture.\nFasten your seat belt.\tAttachez votre ceinture de sécurité.\nFasten your seatbelts.\tAttachez-vos ceintures !\nFill this out, please.\tRemplissez ceci, je vous prie !\nFill this out, please.\tRemplis ceci, je te prie !\nFind out where Tom is.\tCherche où est Tom.\nFood will be included.\tLa nourriture sera incluse.\nFortune smiled on him.\tLa fortune lui sourit.\nFortune smiled on him.\tLa chance lui a souri.\nForty people attended.\tQuarante personnes étaient présentes.\nFrankly, I don't care.\tFranchement, je m'en fiche.\nGet me another lawyer.\tDégote-moi un autre avocat !\nGet me another lawyer.\tDégotez-moi un autre avocat !\nGet out of my kitchen.\tSors de ma cuisine !\nGet out of my kitchen.\tSortez de ma cuisine !\nGet out while you can.\tSors, tant que tu le peux !\nGet out while you can.\tSortez, tant que vous le pouvez !\nGet your hands off me.\tBas les pattes !\nGet your hands off me.\tEnlève tes pattes de moi !\nGet your hands off me.\tEnlevez vos pattes de moi !\nGive him a day or two.\tDonne-lui un jour ou deux.\nGive it to me, please.\tDonnez-le-moi, s'il vous plait.\nGive it to me, please.\tDonnez-moi cela, je vous prie.\nGive me just a little.\tDonnez-m'en juste un peu.\nGive me some more tea.\tDonnez-moi un peu plus de thé.\nGive me your car keys.\tDonne-moi tes clés de voiture !\nGive me your car keys.\tDonnez-moi vos clés de voiture !\nGive this book to Tom.\tDonne ce livre à Tom.\nGlad to see you again.\tRavie de te revoir.\nGlad to see you again.\tRavi de vous revoir.\nGo ahead and take one.\tVas-y et prends en un !\nGo ahead and take one.\tAllez-y et prenez-en un !\nGo and see the doctor.\tVa voir le médecin.\nGo back to your seats.\tRetournez vous asseoir.\nGo through the market.\tTraverse le marché.\nGo with your instinct.\tSuis ton instinct.\nGod created the world.\tDieu créa le monde.\nGod made the universe.\tDieu créa l'univers.\nGod, you're beautiful.\tDieu que tu es belle !\nGod, you're beautiful.\tDieu que vous êtes belle !\nGood luck on the test!\tBonne chance pour l'examen !\nGoodbye till tomorrow.\tAu revoir et à demain.\nHad you been drinking?\tAs-tu bu ?\nHad you been drinking?\tAvez-vous bu ?\nHad you been drinking?\tEst-ce que tu as bu ?\nHad you been drinking?\tTu as bu ?\nHad you been drinking?\tEst-ce que vous avez bu ?\nHad you been drinking?\tVous avez bu ?\nHappy Valentine's Day.\tJoyeuse Saint-Valentin.\nHas Tom been arrested?\tTom a-t-il été arrêté ?\nHas the baby woken up?\tLe bébé s'est-il réveillé ?\nHave a good Christmas.\tPasse un joyeux Noël !\nHave a good Christmas.\tPassez un joyeux Noël !\nHave a little dignity.\tAie un peu de dignité !\nHave a little dignity.\tAyez un peu de dignité !\nHave something to eat.\tPrends quelque chose à manger.\nHave something to eat.\tPrenez quelque chose à manger.\nHave they arrived yet?\tSont-ils déjà arrivés ?\nHave they arrived yet?\tSont-elles déjà arrivées ?\nHave they spotted you?\tVous ont-ils repéré ?\nHave they spotted you?\tVous ont-ils repérée ?\nHave they spotted you?\tVous ont-elles repéré ?\nHave they spotted you?\tVous ont-elles repérée ?\nHave they spotted you?\tT'ont-elles repéré ?\nHave they spotted you?\tT'ont-elles repérée ?\nHave they spotted you?\tT'ont-ils repéré ?\nHave they spotted you?\tT'ont-ils repérée ?\nHave they spotted you?\tVous ont-ils repérés ?\nHave they spotted you?\tVous ont-elles repérés ?\nHave they spotted you?\tVous ont-ils repérées ?\nHave they spotted you?\tVous ont-elles repérées ?\nHave you all gone mad?\tVous avez tous perdu la tête ?\nHave you been smoking?\tAs-tu fumé ?\nHave you been smoking?\tAvez-vous fumé ?\nHave you confirmed it?\tL'avez-vous confirmé ?\nHave you confirmed it?\tL'as-tu confirmé ?\nHave you finished yet?\tAvez-vous déjà fini ?\nHave you read the FAQ?\tAvez-vous lu les questions fréquemment posées ?\nHave you read the FAQ?\tAvez-vous lu les QFP ?\nHave you read the FAQ?\tAs-tu lu les QFP ?\nHave you seen my coat?\tAvez-vous vu mon manteau ?\nHave you seen my keys?\tAs-tu vu mes clés?\nHave you seen my keys?\tT’as pas vu mes clés ?\nHave you seen my wife?\tAs-tu vu ma femme ?\nHave you told anybody?\tL'as-tu dit à quiconque ?\nHave you told anybody?\tL'avez-vous dit à quiconque ?\nHave yourself a drink.\tSers-toi une boisson !\nHave yourself a drink.\tServez-vous une boisson !\nHave yourself a drink.\tSers-toi un verre !\nHave yourself a drink.\tServez-vous un verre !\nHaven't we met before?\tNe nous sommes-nous pas rencontrés auparavant ?\nHaven't you eaten yet?\tN'avez-vous pas encore mangé ?\nHaven't you eaten yet?\tN'as-tu pas encore mangé ?\nHe abandoned all hope.\tIl abandonna tout espoir.\nHe accepted our offer.\tIl a accepté notre proposition.\nHe acted as our guide.\tIl nous fit office de guide.\nHe admitted his guilt.\tIl a confessé sa culpabilité.\nHe admitted his guilt.\tIl reconnut sa culpabilité.\nHe adopted the orphan.\tIl a adopté l'orphelin.\nHe also speaks French.\tIl parle aussi le français.\nHe also speaks French.\tIl parle également français.\nHe and I are teachers.\tLui et moi sommes professeurs.\nHe and I are teachers.\tLui et moi sommes instituteurs.\nHe and I are teachers.\tLui et moi sommes enseignants.\nHe asked me who I was.\tIl me demanda qui j'étais.\nHe avenged his father.\tIl a vengé son père.\nHe became a policeman.\tIl est devenu policier.\nHe bowed to the Queen.\tIl s'inclina devant la reine.\nHe bowed to the Queen.\tIl s'est incliné devant la reine.\nHe broke into a house.\tIl s'introduisit dans une maison.\nHe called at my house.\tIl est venu chez moi.\nHe came into the room.\tIl est entré dans la chambre.\nHe came into the room.\tIl entra dans la chambre.\nHe came late as usual.\tIl est arrivé en retard comme toujours.\nHe came several times.\tIl est venu plusieurs fois.\nHe came to pick me up.\tIl est venu pour me prendre.\nHe came to pick me up.\tIl vint me prendre.\nHe can leave tomorrow.\tIl peut partir demain.\nHe can no longer wait.\tIl ne peut pas attendre plus longtemps.\nHe can read and write.\tIl sait lire et écrire.\nHe can't come with us.\tIl ne peut venir avec nous.\nHe can't come with us.\tIl ne peut pas venir avec nous.\nHe can't find his hat.\tIl ne retrouve pas son chapeau.\nHe can't see nor hear.\tIl ne voit ni n'entend.\nHe cannot play guitar.\tIl ne sait pas jouer de la guitare.\nHe certainly is smart.\tIl est certainement intelligent.\nHe cleared his throat.\tIl s'est éclairci la voix.\nHe comes from England.\tIl vient d'Angleterre.\nHe continued doing it.\tIl a continué à le faire.\nHe could speak French.\tIl savait parler français.\nHe crawled out of bed.\tIl rampa hors du lit.\nHe cried out for help.\tIl cria à l'aide.\nHe crossed the street.\tIl traversait la rue.\nHe crossed the street.\tIl a traversé la rue.\nHe deals in furniture.\tIl fait le commerce de meubles.\nHe deals in used cars.\tIl fait commerce de voitures d'occasion.\nHe defeated his enemy.\tIl a vaincu son ennemi.\nHe delivered a speech.\tIl prononça un discours.\nHe delivered a speech.\tIl a prononcé un discours.\nHe deserves the prize.\tIl mérite le prix.\nHe did not mention it.\tIl ne l'a pas mentionné.\nHe didn't like school.\tIl n'aimait pas l'école.\nHe didn't like school.\tIl n'aima pas l'école.\nHe didn't see a thing.\tIl n'a rien vu.\nHe didn't see a thing.\tIl ne vit rien.\nHe died from overwork.\tIl est mort du fait du surmenage.\nHe does not like cats.\tIl n'aime pas les chats.\nHe doesn't look happy.\tIl n'a pas l'air heureux.\nHe drinks like a fish.\tIl boit comme un poisson.\nHe drives his own car.\tIl conduit sa propre voiture.\nHe dropped her a line.\tIl lui laissa un mot.\nHe earns a great deal.\tIl gagne gros.\nHe fell from the tree.\tIl est tombé de l'arbre.\nHe fell off the horse.\tIl est tombé de cheval.\nHe felt a sudden pain.\tIl ressentit une douleur soudaine.\nHe finally made money.\tIl a fini par faire de l'argent.\nHe gave it a new name.\tIl lui a donné un nouveau nom.\nHe gave me 10,000 yen.\tIl m'a donné dix mille yen.\nHe gave me an example.\tIl m'a donné un exemple.\nHe gave me an example.\tIl m'a fourni un exemple.\nHe gave me some money.\tIl me donna un peu d'argent.\nHe got 90% in English.\tIl a eu une note de 90 sur 100 en anglais.\nHe got what he wanted.\tIl a obtenu ce qu'il voulait.\nHe got what he wanted.\tIl obtint ce qu'il voulait.\nHe had a strong alibi.\tIl avait un alibi solide.\nHe had the last laugh.\tIl a ri le dernier.\nHe had the right idea.\tIl eut la bonne idée.\nHe had the right idea.\tIl a eu la bonne idée.\nHe has a Japanese car.\tIl a une voiture japonaise.\nHe has a drug allergy.\tIl fait une allergie aux médicaments.\nHe has a drug allergy.\tIl est sujet à une allergie aux médicaments.\nHe has a large family.\tIl a une grande famille.\nHe has a little money.\tIl a un peu d'argent.\nHe has a lot of money.\tIl possède beaucoup d'argent.\nHe has a lot of money.\tIl dispose de beaucoup d'argent.\nHe has a lot of poise.\tIl a beaucoup d'assurance.\nHe has a sharp tongue.\tIl a une langue de vipère.\nHe has absolute power.\tIl a un pouvoir absolu.\nHe has been to France.\tIl est allé en France.\nHe has been to France.\tIl a été en France.\nHe has done it before.\tIl l'a fait auparavant.\nHe has just come back.\tIl vient juste de rentrer.\nHe has just left home.\tIl vient de quitter la maison.\nHe has just left home.\tIl vient de partir de chez lui.\nHe has three children.\tIl a trois fils.\nHe has to stay in bed.\tIl doit rester au lit.\nHe has too many books.\tIl a trop de livres.\nHe has too much pride.\tIl a trop de fierté.\nHe hasn't arrived yet.\tIl n'est pas encore arrivé.\nHe himself went there.\tIl y est allé en personne.\nHe hit me in the face.\tIl me frappa au visage.\nHe hit me on the head.\tIl m’a frappé à la tête.\nHe hopes to go abroad.\tIl espère aller à l'étranger.\nHe hung on to his job.\tIl s'accrocha à son travail.\nHe ignored her advice.\tIl a ignoré son conseil.\nHe interpreted for me.\tIl interpréta pour moi.\nHe is a big prankster.\tC'est un grand farceur.\nHe is a famous artist.\tC'est un artiste célèbre.\nHe is a heroin addict.\tIl est héroïno-dépendant.\nHe is a heroin addict.\tIl est dépendant à l'héroïne.\nHe is a living fossil!\tC'est un fossile vivant !\nHe is a man of reason.\tC'est un homme de raison.\nHe is a man of vision.\tIl est un homme de vision.\nHe is a man of wealth.\tC'est un homme riche.\nHe is a man of wisdom.\tC'est un homme sage.\nHe is a sharp-shooter.\tC'est un tireur d'élite.\nHe is a spoiled child.\tC'est un enfant gâté.\nHe is a spoiled child.\tC'est un enfant pourri gâté.\nHe is a tennis player.\tC'est un joueur de tennis.\nHe is above suspicion.\tIl est au-dessus de tout soupçon.\nHe is afraid of death.\tIl a peur de la mort.\nHe is afraid of death.\tIl craint la mort.\nHe is always laughing.\tIl est toujours en train de rire.\nHe is always prepared.\tIl est toujours prêt.\nHe is always studying.\tIl étudie tout le temps.\nHe is an army officer.\tIl est officier de l'armée.\nHe is as good as dead.\tIl est comme mort.\nHe is away on holiday.\tIl est parti en vacances.\nHe is blinded by love.\tIl est aveuglé par l'amour.\nHe is eager to please.\tIl cherche à plaire.\nHe is good at cooking.\tIl est bon cuisinier.\nHe is good at driving.\tC'est un bon conducteur.\nHe is good at driving.\tIl est bon conducteur.\nHe is good at singing.\tIl est bon chanteur.\nHe is good at singing.\tIl chante bien.\nHe is in the bathroom.\tIl est dans la salle de bain.\nHe is in the bathroom.\tIl est aux toilettes.\nHe is just an amateur.\tIl n'est qu'un amateur.\nHe is lost in thought.\tIl est perdu dans ses pensées.\nHe is mad about music.\tC'est un fondu de musique.\nHe is mad about music.\tC'est un fou de musique.\nHe is my close friend.\tC'est un ami très proche.\nHe is my close friend.\tC'est mon ami intime.\nHe is no ordinary man.\tCe n'est pas un homme ordinaire.\nHe is not always late.\tIl n'est pas toujours en retard.\nHe is not an American.\tIl n'est pas américain.\nHe is not kind to her.\tIl n'est pas gentil avec elle.\nHe is not kind to her.\tIl n'est pas gentil à son égard.\nHe is not what he was.\tIl n'est plus ce qu'il était.\nHe is on another line.\tIl est sur une autre ligne.\nHe is poor, but happy.\tIl est pauvre, mais heureux.\nHe is said to be rich.\tOn dit qu'il est riche.\nHe is such a show off.\tC'est un tel frimeur !\nHe is sure of success.\tIl est sûr de réussir.\nHe is sure of success.\tIl est sûr de son succès.\nHe is sure to succeed.\tIl est sûr de réussir.\nHe is sure to succeed.\tIl est sûr de son succès.\nHe is tall and strong.\tIl est grand et fort.\nHe is the tallest boy.\tC'est le garçon le plus grand.\nHe is unable to do it.\tIl est incapable de le faire.\nHe is very mean to me.\tIl est très méchant avec moi.\nHe is washing his car.\tIl lave sa voiture.\nHe is washing the car.\tIl est en train de laver la voiture.\nHe is watching TV now.\tMaintenant il regarde la télé.\nHe is wearing glasses.\tIl porte des lunettes.\nHe is writing a novel.\tIl est en train d'écrire un roman.\nHe isn't happy at all.\tIl n'est pas du tout satisfait.\nHe isn't happy at all.\tIl n'est pas du tout content.\nHe kept pace with her.\tIl alla à la même vitesse qu'elle.\nHe kept staring at me.\tIl n'arrêtait pas de me regarder.\nHe kept staring at me.\tIl continua à me regarder.\nHe kept staring at me.\tIl a continué à me regarder.\nHe knows us very well.\tIl nous connaît très bien.\nHe knows who they are.\tIl sait qui ils sont.\nHe lacks common sense.\tIl est dépourvu de sens commun.\nHe landed a big trout.\tIl remonta une grosse truite.\nHe landed a big trout.\tIl sortit une grosse truite de l'eau.\nHe left her all alone.\tIl l'a laissée toute seule.\nHe left the door open.\tIl a laissé la porte ouverte.\nHe let go of the rope.\tIl a lâché la corde.\nHe let go of the rope.\tIl lâcha la corde.\nHe licked his fingers.\tIl se lécha les doigts.\nHe licked his fingers.\tIl s'est léché les doigts.\nHe lied about his age.\tIl a menti sur son âge.\nHe likes Italian food.\tIl aime la nourriture italienne.\nHe likes soccer a lot.\tIl adore le foot.\nHe likes taking walks.\tIl aime faire des promenades.\nHe likes taking walks.\tIl aime effectuer des promenades.\nHe lived a happy life.\tIl passa une vie heureuse.\nHe lived a happy life.\tIl vivait une vie heureuse.\nHe lives in a village.\tIl habite dans un village.\nHe lives off the grid.\tIl vit en marge de la société.\nHe looked for the key.\tIl a cherché la clé.\nHe looks kind of pale.\tIl a l'air pâlot.\nHe looks like a horse.\tIl ressemble à un cheval.\nHe looks very worried.\tIl a l'air très inquiet.\nHe looks very worried.\tIl a l'air fort inquiet.\nHe lost his new watch.\tIl a perdu sa nouvelle montre.\nHe loves taking trips.\tIl adore voyager.\nHe loves taking trips.\tIl adore entreprendre des voyages.\nHe made me a new suit.\tIl m'a confectionné un nouveau costume.\nHe made up that story.\tIl a inventé l'histoire.\nHe made up that story.\tIl inventa cette histoire.\nHe may be sick in bed.\tIl est peut-être souffrant.\nHe may be sick in bed.\tIl est peut-être alité.\nHe might not be happy.\tIl pourrait ne pas être content.\nHe moved close to her.\tIl s'approcha d'elle.\nHe moved close to her.\tIl s'est approché d'elle.\nHe must be a good boy.\tC'est sûrement un bon garçon.\nHe must be over fifty.\tIl doit avoir passé les cinquante ans.\nHe must be over fifty.\tIl doit avoir la cinquantaine passée.\nHe must be over sixty.\tIl doit avoir plus de 60 ans.\nHe must be very happy.\tIl doit être très heureux.\nHe must have been ill.\tIl doit avoir été malade.\nHe never speaks to me.\tIl ne me parle jamais.\nHe never touched wine.\tIl ne buvait jamais de vin.\nHe often plays guitar.\tIl joue souvent de la guitare.\nHe owns a lot of land.\tIl possède beaucoup de terre.\nHe picked up the book.\tIl a ramassé le livre.\nHe practices medicine.\tIl pratique la médecine.\nHe presented his card.\tIl présenta sa carte.\nHe proved to be a spy.\tIl s'est révélé être un espion.\nHe put the phone down.\tIl reposa le téléphone.\nHe ran away from home.\tIl s'est enfui de chez lui.\nHe reads a great deal.\tIl lit énormément.\nHe rejected our offer.\tIl a rejeté notre offre.\nHe rejected our offer.\tIl a rejeté notre proposition.\nHe rejected our offer.\tIl rejeta notre proposition.\nHe rested for a while.\tIl s'est reposé un moment.\nHe robbed an old lady.\tIl a volé une vieille dame.\nHe sat in front of me.\tIl s'est assis devant moi.\nHe sat reading a book.\tIl était assis à lire un livre.\nHe scratched his head.\tIl se gratta la tête.\nHe scratched his head.\tIl s'est gratté la tête.\nHe seems to be asleep.\tOn dirait qu'il est endormi.\nHe seems to be honest.\tIl semble honnête.\nHe showed her the way.\tIl lui indiqua le chemin.\nHe showed her the way.\tIl lui a indiqué le chemin.\nHe slipped on the ice.\tIl a glissé sur la glace.\nHe speaks really well.\tIl parle vraiment bien.\nHe sprained his ankle.\tIl s'est foulé la cheville.\nHe started a new life.\tIl commença une nouvelle vie.\nHe swims in the river.\tIl nage dans la rivière.\nHe talked about music.\tIl parla de musique.\nHe teaches us English.\tIl nous enseigne l'anglais.\nHe teaches us history.\tIl nous enseigne l'histoire.\nHe tends to tell lies.\tIl a tendance à raconter des mensonges.\nHe thinks I'm jealous.\tIl pense que je suis jaloux.\nHe thinks I'm jealous.\tIl pense que je suis jalouse.\nHe threw in the towel.\tIl a jeté l'éponge.\nHe threw me the apple.\tIl m'a lancé la pomme.\nHe told a funny story.\tIl a raconté une histoire drôle.\nHe told me everything.\tIl m'a tout dit.\nHe took a deep breath.\tIl prit une profonde inspiration.\nHe took us to the zoo.\tIl nous a emmenés au zoo.\nHe tried to choke him.\tIl a essayé de l'étrangler.\nHe turned a blind eye.\tIl refusa de le voir.\nHe turned a blind eye.\tIl a refusé de le voir.\nHe turned over in bed.\tIl se retourna dans le lit.\nHe unbuckled his belt.\tIl déboucla sa ceinture.\nHe unbuckled his belt.\tIl a débouclé sa ceinture.\nHe used to read a lot.\tIl lisait beaucoup.\nHe walked with a limp.\tIl marchait en boitant.\nHe wanted to meet you.\tIl voulut te rencontrer.\nHe wanted to meet you.\tIl voulut vous rencontrer.\nHe wanted to meet you.\tIl a voulu te rencontrer.\nHe wanted to meet you.\tIl a voulu vous rencontrer.\nHe was a rugby player.\tC'était un joueur de rugby.\nHe was a rugby player.\tIl était joueur de rugby.\nHe was about to speak.\tIl allait parler.\nHe was almost drowned.\tIl était presque noyé.\nHe was awfully skinny.\tIl était horriblement maigre.\nHe was born in Africa.\tIl est né en Afrique.\nHe was chosen captain.\tOn l'a fait capitaine.\nHe was chosen captain.\tIl a été choisi pour capitaine.\nHe was chosen captain.\tIl a été choisi comme capitaine.\nHe was eager for news.\tIl attendait les nouvelles avec impatience.\nHe was excommunicated.\tIl fut excommunié.\nHe was excommunicated.\tIl a été excommunié.\nHe was given the sack.\tIl fut viré.\nHe was hard to please.\tIl était difficile à satisfaire.\nHe was just behind me.\tIl était juste derrière moi.\nHe was my best friend.\tIl fut mon meilleur ami.\nHe was my best friend.\tIl a été mon meilleur ami.\nHe was my best friend.\tIl était mon meilleur ami.\nHe was nearly drowned.\tIl a manqué être noyé.\nHe was nearly drowned.\tIl a failli se noyer.\nHe was painfully thin.\tIl était atrocement mince.\nHe was sent to prison.\tIl a été envoyé en prison.\nHe was sick last week.\tIl était malade la semaine dernière.\nHe was staring at her.\tIl la fixait.\nHe was unable to move.\tIl était incapable de bouger.\nHe was unable to move.\tIl était incapable de se mouvoir.\nHe went back to Japan.\tIl est retourné au Japon.\nHe went down the hill.\tIl descendit de la colline.\nHe went into teaching.\tIl est allé dans l'enseignement.\nHe went into the bank.\tIl pénétra dans la banque.\nHe will be here today.\tIl sera là aujourd'hui.\nHe will come tomorrow.\tIl viendra demain.\nHe will get back soon.\tIl reviendra bientôt.\nHe will join us later.\tIl nous rejoindra plus tard.\nHe will never make it.\tIl n'y arrivera jamais.\nHe will never make it.\tIl n'y parviendra jamais.\nHe will run for mayor.\tIl va se présenter pour être maire.\nHe won a bronze medal.\tIl a gagné une médaille de bronze.\nHe won the race again.\tIl a encore gagné la course.\nHe wrote it hurriedly.\tIl l'a écrit à la hâte.\nHe'll be safe with me.\tIl sera en sécurité avec moi.\nHe'll rip my head off.\tIl m'arrachera la tête.\nHe's a fine young lad.\tC'est un bon gars.\nHe's a notorious liar.\tC'est un menteur notoire.\nHe's afraid of snakes.\tIl a peur des serpents.\nHe's allergic to cats.\tIl est allergique aux chats.\nHe's allergic to cats.\tIl a une allergie aux chats.\nHe's an absolute fool.\tIl est complètement fou.\nHe's an oceanographer.\tIl est océanographe.\nHe's away on business.\tIl est parti pour affaires.\nHe's away on vacation.\tIl est absent en congés.\nHe's done this before.\tIl l'a fait auparavant.\nHe's eating lunch now.\tIl est en train de prendre son déjeuner, à l'heure actuelle.\nHe's enjoying himself.\tIl s'amuse.\nHe's gone into hiding.\tIl est parti au maquis.\nHe's gone into hiding.\tIl se planque.\nHe's gone into hiding.\tIl se cache.\nHe's hungry for power.\tIl a soif de pouvoir.\nHe's just buying time.\tIl est juste en train de gagner du temps.\nHe's just kidding you.\tIl se moque juste de toi.\nHe's kind of handsome.\tIl est plutôt beau.\nHe's learning Chinese.\tIl apprend le chinois.\nHe's my older brother.\tC'est mon frère aîné.\nHe's not always happy.\tIl n'est pas toujours heureux.\nHe's not in our group.\tIl n'est pas dans notre groupe.\nHe's not in our group.\tIl ne fait pas partie de notre groupe.\nHe's on his last legs.\tIl est au bout de ses forces.\nHe's on his last legs.\tIl est à bout de force.\nHe's our only suspect.\tIl est notre unique suspect.\nHe's right behind you.\tIl se trouve juste derrière vous.\nHe's right behind you.\tIl se trouve juste derrière toi.\nHe's right behind you.\tIl est juste derrière vous.\nHe's right behind you.\tIl est juste derrière toi.\nHe's stronger than me.\tIl est plus fort que moi.\nHe's such a cold fish.\tIl est si distant.\nHe's such a great guy.\tC'est un type tellement sympa !\nHe's their only child.\tC'est leur unique enfant.\nHe's very experienced.\tIl a beaucoup d'expérience.\nHe's very intelligent.\tIl est très intelligent.\nHe's washing your car.\tIl lave votre voiture.\nHe's with his parents.\tIl est avec ses parents.\nHe's young and single.\tIl est jeune et célibataire.\nHello, how's business?\tSalut, comment marche ton affaire ?\nHelp yourself, please.\tServez-vous s'il vous plaît.\nHer anger was genuine.\tSa colère était sincère.\nHer face turned white.\tSon visage vira au blanc.\nHer life is in danger.\tSa vie est en danger.\nHer talent is amazing.\tSon talent est incroyable.\nHere comes the waiter.\tVoici le serveur !\nHere's a photo of her.\tVoici une photo d'elle.\nHere's a photo of her.\tVoilà une photo d'elle.\nHere's some deodorant.\tVoici un peu de déodorant.\nHere's to your health!\tÀ votre santé !\nHey, I got you a beer.\tHey, je t'ai pris une bière.\nHi. How are you doing?\tSalut. Comment vas-tu ?\nHis dad calls him Tom.\tSon père l'appelle \"Tom\".\nHis face turned white.\tSon visage pâlit.\nHis hobby is painting.\tSon passe-temps est la peinture.\nHis house is for sale.\tSa maison est en vente.\nHis ideas sound crazy.\tSes idées semblent folles.\nHis life is in danger.\tSa vie est en danger.\nHis story was made up.\tSon histoire était inventée.\nHold the line, please.\tNe raccrochez pas et attendez un moment s'il vous plait.\nHold the racket tight.\tTiens fermement la raquette.\nHow about your father?\tEt ton père ?\nHow am I doing so far?\tComment je m'en sors jusqu'à présent ?\nHow are you all doing?\tComment allez-vous tous ?\nHow are you all doing?\tComment allez-vous toutes ?\nHow are you connected?\tComment êtes-vous reliés ?\nHow are you connected?\tComment êtes-vous reliées ?\nHow are you connected?\tComment êtes-vous en relation ?\nHow are you connected?\tComment êtes-vous raccordé ?\nHow are you connected?\tComment es-tu raccordé ?\nHow are you connected?\tComment êtes-vous raccordés ?\nHow are you connected?\tComment êtes-vous raccordée ?\nHow are you connected?\tComment êtes-vous raccordées ?\nHow are you connected?\tComment es-tu raccordée ?\nHow are you taking it?\tComment le prenez-vous ?\nHow are you taking it?\tComment le prends-tu ?\nHow are you two doing?\tComment allez-vous tous les deux ?\nHow bad is the damage?\tDe quel niveau sont les dommages ?\nHow big is your house?\tQuelle taille a ta maison ?\nHow big is your house?\tQuelle taille a votre maison ?\nHow big is your house?\tDe quelle taille est votre maison ?\nHow big is your house?\tDe quelle taille est ta maison ?\nHow can I become rich?\tComment puis-je m'enrichir ?\nHow can we prove that?\tComment pouvons-nous le prouver ?\nHow can you know that?\tComment pouvez-vous savoir cela ?\nHow can you know that?\tComment peux-tu savoir cela ?\nHow could that happen?\tComment cela pourrait-il survenir ?\nHow could that happen?\tComment cela pourrait-il arriver ?\nHow could you do that?\tComment avez-vous pu faire ça ?\nHow could you do that?\tComment as-tu pu faire ça ?\nHow could you do that?\tComment pourriez-vous faire ça ?\nHow could you do that?\tComment pourrais-tu faire ça ?\nHow could you help me?\tComment pourrais-tu m'aider ?\nHow could you help me?\tComment pourriez-vous m'aider ?\nHow deep are the cuts?\tDe quelle profondeur sont les plaies ?\nHow deep is Lake Biwa?\tQuelle est la profondeur du lac Biwa ?\nHow deep is this well?\tQuelle est la profondeur de ce puits ?\nHow did last night go?\tComment s'est passé la nuit dernière ?\nHow did they find out?\tComment l'ont-elles découvert ?\nHow did they find out?\tComment l'ont-ils découvert ?\nHow did we not see it?\tComment ne l'avons-nous pas vu ?\nHow did we not see it?\tComment avons-nous fait notre compte pour ne pas le voir ?\nHow did you get those?\tComment as-tu obtenu ceux-ci ?\nHow did you get those?\tComment avez-vous obtenu ceux-ci ?\nHow do I explain this?\tComment est-ce que j'explique ça ?\nHow do I look tonight?\tDe quoi ai-je l'air, ce soir ?\nHow do you explain it?\tComment l'expliques-tu ?\nHow do you explain it?\tComment l'expliquez-vous ?\nHow do you feel today?\tComment allez-vous aujourd'hui ?\nHow do you like Japan?\tComment trouves-tu le Japon ?\nHow do you make a box?\tComment réalises-tu une boîte ?\nHow do you make a box?\tComment confectionnez-vous une boîte ?\nHow do you prove that?\tComment le prouver ?\nHow does he know that?\tComment sait-il cela ?\nHow does he know that?\tComment sait-il ça ?\nHow does the film end?\tComment le film se termine-t-il ?\nHow high can you jump?\tÀ quelle hauteur peux-tu sauter ?\nHow high can you jump?\tÀ quelle hauteur pouvez-vous sauter ?\nHow high can you jump?\tÀ quelle hauteur peux-tu sauter ?\nHow is that different?\tEn quoi est-ce différent ?\nHow is your new class?\tComment est ta nouvelle classe ?\nHow is your new class?\tComment est votre nouvelle classe ?\nHow long ago was that?\tC'était il y a combien de temps ?\nHow long ago was that?\tDe quand cela date-t-il ?\nHow long ago was that?\tCombien de temps cela fait-il ?\nHow long did you stay?\tCombien de temps es-tu restée ?\nHow long did you stay?\tCombien de temps y avez-vous séjourné ?\nHow long did you stay?\tCombien de temps es-tu resté ?\nHow long did you stay?\tCombien de temps êtes-vous restée ?\nHow long did you stay?\tCombien de temps êtes-vous resté ?\nHow long did you stay?\tCombien de temps êtes-vous restées ?\nHow long did you stay?\tCombien de temps êtes-vous restés ?\nHow long did you stay?\tCombien de temps y as-tu séjourné ?\nHow long does it last?\tCombien de temps cela dure-t-il ?\nHow long does it last?\tCombien de temps ça dure ?\nHow long does it take?\tCombien de temps ça prend ?\nHow long does it take?\tCombien de temps est-ce que ça prend ?\nHow long does it take?\tCombien de temps cela prend-il ?\nHow long will it take?\tCombien de temps faudra-t-il ?\nHow long will it take?\tCombien de temps cela prendra-t-il ?\nHow long will that be?\tCombien de temps cela durera-t-il ?\nHow many did you take?\tCombien en as-tu pris ?\nHow many did you take?\tCombien en avez-vous pris ?\nHow many did you want?\tCombien en vouliez-vous ?\nHow many did you want?\tCombien en voulais-tu ?\nHow many does he want?\tCombien veut-il ?\nHow many does he want?\tCombien en veut-il ?\nHow many have you had?\tCombien en as-tu eues ?\nHow many have you had?\tCombien en as-tu eus ?\nHow many were wounded?\tCombien ont été blessés ?\nHow many were wounded?\tCombien furent blessés ?\nHow much are we short?\tCombien nous manque-t-il ?\nHow much do I owe you?\tCombien vous dois-je ?\nHow much do eggs cost?\tCombien coûtent les œufs ?\nHow much does it cost?\tCombien est-ce que ça coûte ?\nHow much is this ball?\tCombien coûte cette balle ?\nHow much is this ring?\tCombien coûte cette bague ?\nHow much is this sofa?\tCombien coûte ce canapé ?\nHow much will it cost?\tCombien cela coûtera-t-il ?\nHow much will you get?\tCombien obtiendras-tu ?\nHow much will you get?\tCombien obtiendrez-vous ?\nHow old are your kids?\tQuels âges ont vos enfants ?\nHow old are your kids?\tDe quels âges sont vos enfants ?\nHow old are your kids?\tQuels âges ont tes enfants ?\nHow old are your kids?\tDe quels âges sont tes enfants ?\nHow old is this stuff?\tQuel âge a ce truc ?\nHow old is your uncle?\tQuel âge a votre oncle ?\nHow was the math test?\tComment s'est passé l'examen de mathématiques ?\nHow was your birthday?\tComment s'est passé votre anniversaire ?\nHow was your birthday?\tComment s'est passé ton anniversaire ?\nHow're you holding up?\tComment y arrives-tu ?\nHow're you holding up?\tComment résistes-tu ?\nHow're you holding up?\tComment résistez-vous ?\nHow's everybody doing?\tComment va tout le monde ?\nHow's the party going?\tComment la fête se déroule-t-elle ?\nHow's your wife doing?\tComment va ta femme ?\nI accept your apology.\tJ'accepte vos excuses.\nI accept your apology.\tJ'accepte tes excuses.\nI acted on his advice.\tJ'ai agi conformément à son conseil.\nI actually don't know.\tEn réalité, je ne sais pas.\nI actually don't know.\tEn réalité, je l'ignore.\nI admire your bravery.\tJ'admire votre bravoure.\nI admire your bravery.\tJ'admire ta bravoure.\nI admire your courage.\tJ'admire votre courage.\nI agree with Tom, too.\tJe suis aussi d'accord avec Tom.\nI agree with everyone.\tJe suis d'accord avec tout le monde.\nI agree with his idea.\tJe suis d'accord avec son idée.\nI already feel better.\tJe me sens déjà mieux.\nI also wanted to know.\tJe voulais aussi savoir.\nI always keep my word.\tJe tiens toujours parole.\nI am an office worker.\tJ'ai un emploi de bureau.\nI am folding my dress.\tJe plie ma robe.\nI am glad to help you.\tJe suis content de t'aider.\nI am glad to help you.\tJe suis ravi de t'aider.\nI am glad to help you.\tJe suis contente de t'aider.\nI am glad to help you.\tJe suis ravie de t'aider.\nI am glad to help you.\tJe suis content de vous aider.\nI am glad to help you.\tJe suis ravie de vous aider.\nI am glad to help you.\tJe suis ravi de vous aider.\nI am glad to help you.\tJe suis contente de vous aider.\nI am grateful to them.\tJe leur suis reconnaissant.\nI am harvesting wheat.\tJe suis en train de récolter du blé.\nI am here on business.\tJe suis ici pour affaires.\nI am in the classroom.\tJe suis en salle de classe.\nI am near the station.\tJe me trouve près de la gare.\nI am no match for him.\tJe ne peux pas me comparer à lui.\nI am no match for him.\tJe ne suis pas de taille à me mesurer à lui.\nI am not studying now.\tEn ce moment je n'étudie pas.\nI am poor at swimming.\tJe ne sais pas bien nager.\nI am reading a letter.\tJe lis une lettre.\nI am reading a letter.\tJe suis en train de lire une lettre.\nI am shorter than you.\tJe suis plus petit que toi.\nI am shorter than you.\tJe suis plus petite que vous.\nI am shorter than you.\tJe suis plus petit que vous.\nI am tired of reading.\tJe suis fatigué de lire.\nI am too tired to run.\tJe suis trop fatigué pour courir.\nI am totally confused.\tJe suis complètement confus.\nI am totally confused.\tJe suis complètement confuse.\nI am writing a letter.\tJ'écris une lettre.\nI anticipated trouble.\tJ'avais prévu des ennuis.\nI anticipated trouble.\tJ'avais vu venir les ennuis.\nI appreciate the help.\tJe suis reconnaissant pour votre aide.\nI appreciate the help.\tJe suis reconnaissant pour leur aide.\nI appreciate the help.\tJe suis reconnaissant pour son aide.\nI assume you're angry.\tJe suppose que tu es en colère.\nI assume you're angry.\tJe suppose que vous êtes en colère.\nI assumed it was free.\tJ'ai supposé que c'était gratuit.\nI ate with my parents.\tJ'ai mangé avec mes parents.\nI believe love exists.\tJe crois que l'amour existe.\nI bet he will get mad.\tJe parie qu'il va s'énerver.\nI blew the candle out.\tJe soufflai la bougie.\nI bought it last week.\tJe l'ai acheté la semaine passée.\nI bought it yesterday.\tJe l'ai acheté hier.\nI bought nine flowers.\tJ'ai acheté neuf fleurs.\nI broke my fingernail.\tJe me suis cassé un ongle.\nI broke my leg skiing.\tJe me suis cassé la jambe en skiant.\nI call her very often.\tJe l'appelle souvent.\nI came back home late.\tJe suis rentré tard chez moi.\nI came back home late.\tJe rentrai tard chez moi.\nI came here yesterday.\tJe suis venu ici hier.\nI can ask Tom to help.\tJe peux demander à Tom d'aider.\nI can do it by myself!\tJe peux le faire moi-même !\nI can do this all day.\tJe peux le faire toute la journée.\nI can hardly hear him.\tJe peux à peine l'entendre.\nI can hardly hear you.\tJe peux à peine vous entendre.\nI can hardly hear you.\tJe peux à peine t'entendre.\nI can open the window.\tJe suis capable d'ouvrir la fenêtre.\nI can open the window.\tJe peux ouvrir la fenêtre.\nI can play the guitar.\tJe sais jouer de la guitare.\nI can prove it to you.\tJe peux te le prouver.\nI can prove it to you.\tJ'arrive à te le prouver.\nI can prove it to you.\tJe peux vous le prouver.\nI can prove it to you.\tJ'arrive à vous le prouver.\nI can prove it to you.\tJe parviens à te le prouver.\nI can prove it to you.\tJe parviens à vous le prouver.\nI can smell the ocean.\tJe peux flairer l'océan.\nI can walk no farther.\tJe ne peux marcher plus loin.\nI can write very fast.\tJe peux écrire très rapidement.\nI can't believe I won.\tJe n'arrive pas à croire que j'ai gagné.\nI can't come with you.\tJe ne peux pas venir avec toi.\nI can't come with you.\tJe ne peux venir avec vous.\nI can't do it justice.\tJe ne peux pas le juger à sa juste valeur.\nI can't do that again.\tJe n'arrive pas à le refaire.\nI can't do this again.\tJe n'arrive pas à refaire ça.\nI can't do this alone.\tJe n'arrive pas à faire ça tout seul.\nI can't do this alone.\tJe n'arrive pas à faire ça toute seule.\nI can't do this alone.\tJe ne peux pas faire ça tout seul.\nI can't do this alone.\tJe ne peux pas faire ça toute seule.\nI can't do this alone.\tJe n'arrive pas à le faire par mes propres moyens.\nI can't drink alcohol.\tJe ne peux pas boire d'alcool.\nI can't feel anything.\tJe ne sens rien.\nI can't find anything.\tJe n'arrive pas à trouver quoi que ce soit.\nI can't find anything.\tJe ne parviens pas à trouver quoi que ce soit.\nI can't find my purse.\tJe n'arrive pas à trouver mon sac à main.\nI can't hear you well.\tJe n'arrive pas à bien vous entendre.\nI can't hear you well.\tJe n'arrive pas à bien t'entendre.\nI can't help you, Tom.\tJe ne peux pas t'aider, Tom.\nI can't let him alone.\tJe ne peux pas le laisser seul.\nI can't make promises.\tJe ne peux faire de promesses.\nI can't open this jar.\tJe ne parviens pas à ouvrir ce bocal.\nI can't say I'm sorry.\tJe ne peux pas dire que je sois désolé.\nI can't say I'm sorry.\tJe ne peux pas dire que je sois désolée.\nI can't see the movie.\tJe ne peux pas voir le film.\nI can't see the movie.\tJe n'arrive pas à voir le film.\nI can't see the movie.\tJe ne parviens pas à voir le film.\nI can't stand cowards.\tJe ne supporte pas les lâches.\nI can't stand fishing.\tJe ne supporte pas la pêche.\nI can't stay for long.\tJe ne peux pas rester longtemps.\nI can't stop coughing.\tJe ne peux pas m'arrêter de tousser.\nI can't stop sneezing.\tJe n'arrive pas à m'arrêter d'éternuer.\nI can't stop watching.\tJe n'arrive pas à m'arrêter de regarder.\nI can't talk to girls.\tJe ne peux pas parler aux filles.\nI can't trust anybody.\tJe ne peux faire confiance à personne.\nI can't trust anybody.\tJe n'arrive à faire confiance à personne.\nI can't understand it.\tJe ne peux le comprendre.\nI can't wait any more.\tJe ne peux plus attendre.\nI can't wait to leave.\tJ'ai hâte de partir.\nI can't work with Tom.\tJe ne peux pas travailler avec Tom.\nI can't. It's too big.\tJe n'y arrive pas. C'est trop gros.\nI can't. It's too big.\tJe ne peux pas. C'est trop grand.\nI cannot speak German.\tJe ne sais pas parler allemand.\nI caught Tom cheating.\tJ'ai pris Tom en train de tricher.\nI caught the last bus.\tJ'ai attrapé le dernier bus.\nI chopped a tree down.\tJ'ai abattu un arbre.\nI come here every day.\tJe viens ici chaque jour.\nI could never do that.\tJe ne pourrais jamais faire ça.\nI could never do that.\tJe ne pourrais jamais faire cela.\nI couldn't lie to you.\tJe ne pouvais pas te mentir.\nI couldn't lie to you.\tJe ne pouvais pas vous mentir.\nI couldn't lie to you.\tJe ne pourrais pas te mentir.\nI couldn't lie to you.\tJe ne pourrais te mentir.\nI couldn't lie to you.\tJe ne pourrais pas vous mentir.\nI couldn't lie to you.\tJe ne pourrais vous mentir.\nI demand satisfaction.\tJ'exige d'être satisfait.\nI demand satisfaction.\tJ'exige d'être satisfaite.\nI did not meet anyone.\tJe n'ai rencontré personne.\nI did nothing all day.\tJe n'ai rien fait de toute la journée.\nI did nothing illegal.\tJe n'ai rien fait d'illégal.\nI did something wrong.\tJ'ai fait quelque chose de travers.\nI did the right thing.\tJ'ai fait ce qu'il fallait faire.\nI did the right thing.\tJ'ai fait ce qu'il fallait.\nI did the right thing.\tJ'ai fait ce qui convenait.\nI did try to warn you.\tJ'ai bien essayé de te prévenir.\nI did try to warn you.\tJ'ai bien essayé de vous prévenir.\nI did what I was told.\tJe fis ce qu'on me dit.\nI did what I was told.\tJ'ai fait ce qu'on m'a dit.\nI didn't ask for help.\tJe n'ai pas demandé d'aide.\nI didn't ask for this.\tJe n'ai pas demandé ça.\nI didn't ask you that.\tJe ne vous ai pas demandé ça.\nI didn't ask you that.\tJe ne t'ai pas demandé ça.\nI didn't find a thing.\tJe n'ai rien trouvé.\nI didn't get the joke.\tJe n'ai pas compris la blague.\nI didn't move a thing.\tJe n'ai rien bougé.\nI didn't order dinner.\tJe n'ai pas commandé le dîner.\nI didn't order dinner.\tJe n'ai pas commandé de dîner.\nI didn't say anything.\tJe n'ai rien dit.\nI didn't see anything.\tJe n'ai rien vu.\nI didn't shoot anyone.\tJe n'ai tiré sur personne.\nI didn't shoot anyone.\tJe n'ai descendu personne.\nI didn't sleep a wink.\tJe n'ai pas fermé l'œil.\nI didn't study at all.\tJe n'ai absolument rien étudié.\nI didn't tell anybody.\tJe ne l'ai dit à personne.\nI didn't want to know.\tJe ne voulais pas savoir.\nI disagree completely.\tJe suis en total désaccord.\nI disagree completely.\tJe suis en désaccord complet.\nI dislike all of them.\tJe les déteste tous.\nI dislike all of them.\tJe les déteste toutes.\nI dislike being alone.\tJe déteste rester seul.\nI dislike being alone.\tJe n'aime pas être seul.\nI dislike being alone.\tJe n'aime pas être seule.\nI do feel pretty good.\tJe me sens en effet assez bien.\nI do have one request.\tJ'ai effectivement une requête.\nI do have one request.\tJ'ai effectivement une demande.\nI do not drink coffee.\tJe ne bois pas de café.\nI do not know exactly.\tJe ne sais pas exactement.\nI do not like science.\tJe n'aime pas les sciences.\nI do what is required.\tJe fais ce qui est requis.\nI don't care for wine.\tLe vin m'est indifférent.\nI don't drink alcohol.\tJe ne bois pas d'alcool.\nI don't drink anymore.\tJe ne bois plus.\nI don't eat breakfast.\tJe ne prends pas de petit déjeuner.\nI don't enjoy riddles.\tJe n'aime pas les devinettes.\nI don't even have one.\tJe n'en ai même pas.\nI don't even have one.\tJe n'en ai même pas un seul.\nI don't even have one.\tJe n'en ai même pas une seule.\nI don't even know why.\tJe ne sais même pas pourquoi.\nI don't even know why.\tJ'ignore même pourquoi.\nI don't even know you.\tJe ne vous connais même pas.\nI don't even know you.\tJe ne te connais même pas.\nI don't even like you.\tJe ne vous apprécie même pas.\nI don't even like you.\tJe ne t'apprécie même pas.\nI don't feel so great.\tJe ne me sens pas si bien.\nI don't feel so smart.\tJe ne me sens pas si intelligent.\nI don't feel so smart.\tJe ne me sens pas si intelligente.\nI don't feel so smart.\tJe ne me sens pas si élégant.\nI don't get much mail.\tJe ne reçois pas beaucoup de courrier.\nI don't get much mail.\tJe reçois peu de courrier.\nI don't get the point.\tJe ne saisis pas l'argument.\nI don't have a choice.\tJe n'ai pas le choix.\nI don't have a curfew.\tJe n'ai pas de couvre-feu.\nI don't have a family.\tJe n'ai pas de famille.\nI don't have a pencil.\tJe n'ai pas de crayon.\nI don't have a sister.\tJe n'ai pas de sœurs.\nI don't have a system.\tJe n'ai pas de système.\nI don't have a tattoo.\tJe n'ai pas de tatouage.\nI don't have a ticket.\tJe n'ai pas de ticket.\nI don't have a ticket.\tJe n'ai pas de billet.\nI don't have a weapon.\tJe n'ai pas d'arme.\nI don't have a weapon.\tJe ne dispose pas d'une arme.\nI don't have an alibi.\tJe n'ai pas d'alibi.\nI don't have any kids.\tJe n'ai aucun enfant.\nI don't have any pens.\tJe n'ai aucun stylo.\nI don't have my purse.\tJe n'ai pas mon porte-monnaie.\nI don't have my purse.\tJe n'ai pas mon sac-à-main.\nI don't have the ball.\tJe n'ai pas la balle.\nI don't have the time.\tJe n'en ai pas le temps.\nI don't have them yet.\tJe ne les ai pas encore.\nI don't have them yet.\tJe n'en dispose pas encore.\nI don't have your wit.\tJe n'ai pas votre esprit.\nI don't have your wit.\tJe n'ai pas ton esprit.\nI don't kiss and tell.\tJe ne fais pas de confessions sur l'oreiller.\nI don't know anything.\tJe ne sais rien.\nI don't know his name.\tJ'ignore son nom.\nI don't know how long.\tJe ne sais pas pendant combien de temps.\nI don't know how long.\tJ'ignore pendant combien de temps.\nI don't know how long.\tJe ne sais pas pour combien de temps.\nI don't know how long.\tJ'ignore pour combien de temps.\nI don't know that yet.\tJe ne le sais pas encore.\nI don't know who I am.\tJe ne sais pas qui je suis.\nI don't like anything.\tJe n'aime rien.\nI don't like bad boys.\tJe n'aime pas un voyou.\nI don't like big dogs.\tJe n'aime pas les molosses.\nI don't like big dogs.\tJe n'aime pas les gros chiens.\nI don't like drinking.\tJe n'aime pas boire.\nI don't like her face.\tJe n'aime pas son visage.\nI don't like homework.\tJe n'aime pas les devoirs.\nI don't like homework.\tJe n'aime pas les devoirs à la maison.\nI don't like hot tubs.\tJe n'aime pas les baquets à eau chaude.\nI don't like studying.\tJe n'aime pas apprendre.\nI don't like studying.\tMoi, j’aime pas étudier.\nI don't like that one.\tJe n'aime pas celui-là.\nI don't like the dark.\tJe n'aime pas l'obscurité.\nI don't like this hat.\tJe n'aime pas ce chapeau.\nI don't like this one.\tJe n'aime pas celui-ci.\nI don't like to clean.\tJe n'aime pas nettoyer.\nI don't like to drive.\tJe n'aime pas conduire.\nI don't like to guess.\tJe n'aime pas deviner.\nI don't like to paint.\tJe n'aime pas peindre.\nI don't live with Tom.\tJe ne vis pas avec Tom.\nI don't live with Tom.\tJe n'habite pas avec Tom.\nI don't make mistakes.\tJe ne commets pas d'erreurs.\nI don't mind standing.\tÇa m'est égal de rester debout.\nI don't mind the food.\tLa nourriture ne me dérange pas.\nI don't need a doctor.\tJe n'ai pas besoin de médecin.\nI don't need a lawyer.\tJe n'ai pas besoin d'avocat.\nI don't need a new TV.\tJe n'ai pas besoin d'une nouvelle télévision.\nI don't need a reason.\tJe n'ai pas besoin d'une raison.\nI don't need advisers.\tJe n'ai pas besoin de conseillers.\nI don't need any help.\tJe n'ai besoin d'aucune aide.\nI don't need any rest.\tJe n'ai pas besoin de quelconque repos.\nI don't need anything.\tJe n'ai besoin de rien.\nI don't need your job.\tJe n'ai pas besoin de votre boulot.\nI don't need your job.\tJe n'ai pas besoin de ton boulot.\nI don't really recall.\tJe ne me le rappelle pas vraiment.\nI don't see a problem.\tJe ne vois pas où est le problème.\nI don't see any blood.\tJe ne vois pas de sang.\nI don't see the point.\tJe n'en vois pas l'objet.\nI don't shave my legs.\tJe ne me rase pas les jambes.\nI don't sleep anymore.\tJe ne dors plus.\nI don't speak Catalan.\tJe ne parle pas le catalan.\nI don't speak Chinese.\tJe ne parle pas chinois.\nI don't speak English.\tJe ne parle pas l'anglais.\nI don't speak English.\tJe ne parle pas anglais.\nI don't speak Spanish.\tJe ne parle pas l'espagnol.\nI don't trust anybody.\tJe ne me fie à personne.\nI don't understand it.\tJe ne le comprends pas.\nI don't want any more.\tJe n'en veux pas plus.\nI don't want any more.\tJe ne veux plus.\nI don't want to dance.\tJe ne veux pas danser.\nI don't want to share.\tJe ne veux pas partager.\nI don't want to sleep.\tJe ne veux pas dormir.\nI don't want your job.\tJe ne veux pas de ton boulot.\nI don't want your job.\tJe ne veux pas ton boulot.\nI don't work tomorrow.\tJe ne travaille pas demain.\nI doubt if it'll rain.\tJe doute qu'il pleuvra.\nI doubt if it'll snow.\tJe doute qu'il neigera.\nI dove into the river.\tJe plongeai dans la rivière.\nI dove into the river.\tJe plongeai dans le fleuve.\nI drank tea yesterday.\tJ'ai bu du thé hier.\nI enjoy salsa dancing.\tJ'aime danser la salsa.\nI explained it to him.\tJe lui ai expliqué.\nI explained it to him.\tJe le lui ai expliqué.\nI extended my holiday.\tJ'ai prolongé mes vacances.\nI feed meat to my dog.\tJ'ai donné de la viande au chien.\nI feel a little woozy.\tJe me sens un peu dans les vapes.\nI feel bad about that.\tJe me sens mal à ce sujet.\nI feel better already.\tJe me sens déjà mieux.\nI feel kind of hungry.\tJ'ai assez faim.\nI feel kind of hungry.\tJ'ai plus ou moins faim.\nI feel like I'm ready.\tJe me sens pour ainsi dire prêt.\nI feel like I'm ready.\tJe me sens pour ainsi dire prête.\nI feel like a new man.\tJe me sens comme un homme nouveau.\nI feel like going out.\tJ'ai envie de sortir.\nI feel much safer now.\tJe me sens beaucoup plus en sécurité, maintenant.\nI feel much safer now.\tJe me sens bien davantage en sécurité, maintenant.\nI feel much safer now.\tJe me sens bien plus en sécurité, maintenant.\nI feel perfectly fine.\tJe me sens parfaitement bien.\nI feel so embarrassed.\tJe me sens tellement gêné !\nI feel so embarrassed.\tJe me sens tellement gênée !\nI feel so much better.\tJe me sens tellement mieux.\nI feel very confident.\tJe me sens très en confiance.\nI fell into the water.\tJe suis tombé dans l'eau.\nI fell into the water.\tJe suis tombée dans l'eau.\nI felt a drop of rain.\tJe sentis une goutte de pluie.\nI felt a drop of rain.\tJ'ai senti une goutte de pluie.\nI felt a little dizzy.\tJe me sentis un peu prise de vertige.\nI felt a little dizzy.\tJe me suis sentie un peu prise de vertige.\nI felt a little dizzy.\tJe me sentis un peu pris de vertige.\nI felt a little dizzy.\tJe me suis senti un peu pris de vertige.\nI felt a little stiff.\tJe me suis sentie un peu raide.\nI felt a little stiff.\tJe me suis senti un peu raide.\nI felt a little stiff.\tJe me sentis un peu raide.\nI felt bad afterwards.\tJe me suis senti mal après coup.\nI felt bad afterwards.\tJe me suis sentie mal après coup.\nI find him intriguing.\tJe le trouve intrigant.\nI find that offensive.\tJe trouve ça offensant.\nI find that offensive.\tJe trouve ça inapproprié.\nI find that offensive.\tJe trouve ça déplaisant.\nI find you attractive.\tJe te trouve attirant.\nI find you attractive.\tJe te trouve attirante.\nI find you attractive.\tJe vous trouve attirant.\nI find you attractive.\tJe vous trouve attirante.\nI find you attractive.\tJe vous trouve attirants.\nI find you attractive.\tJe vous trouve attirantes.\nI find you intriguing.\tJe te trouve intrigante.\nI find you intriguing.\tJe te trouve intrigant.\nI followed the recipe.\tJ'ai suivi la recette.\nI followed the recipe.\tJe suivis la recette.\nI forgave his mistake.\tJ'ai pardonné son erreur.\nI forgot all about it.\tJ'ai tout oublié à ce sujet.\nI forgot my briefcase.\tJ'ai oublié ma mallette.\nI forgot to tell them.\tJ'ai oublié de leur dire.\nI forgot to tell them.\tJ'ai oublié de le leur dire.\nI forgot to tell them.\tJ'ai oublié de leur raconter.\nI found out something.\tJ'ai découvert quelque chose.\nI found out something.\tJe découvris quelque chose.\nI found the book easy.\tJ'ai trouvé ce livre facile.\nI found the book easy.\tJe trouvais le livre facile.\nI found the box empty.\tJe trouvai la boîte vide.\nI found the empty box.\tJe trouvai la boîte vide.\nI found the game easy.\tJ'ai trouvé le jeu facile.\nI gave him my address.\tJe lui donnai mon adresse.\nI gave him my address.\tJe lui ai donné mon adresse.\nI gave him my address.\tJe lui ai remis mon adresse.\nI get anything I want.\tJ'obtiens tout ce que je veux.\nI get motion sickness.\tJe suis malade en déplacement.\nI get the picture now.\tJe m'en fais désormais une idée.\nI get up around seven.\tJe me lève vers sept heures.\nI glanced at my watch.\tJ'ai jeté un coup d'œil à ma montre.\nI go there every year.\tJ'y vais tous les ans.\nI go to bed about ten.\tJe me couche vers 10 heures.\nI go to school by bus.\tJe vais en cours en bus.\nI go to school by bus.\tJe vais à l'école en bus.\nI got my ears pierced.\tJe me suis fait percer les oreilles.\nI got out of the taxi.\tJe sortis du taxi.\nI got soap in my eyes.\tJe me suis pris du savon dans les yeux.\nI got what I came for.\tJ'ai obtenu ce pourquoi je suis venu.\nI got what I came for.\tJ'ai obtenu ce pourquoi je suis venue.\nI got what you needed.\tJ'ai obtenu ce dont vous aviez besoin.\nI got what you needed.\tJ'ai obtenu ce dont tu avais besoin.\nI got what you wanted.\tJ'ai obtenu ce que vous vouliez.\nI got what you wanted.\tJ'ai obtenu ce que tu voulais.\nI grew up around here.\tJ'ai grandi par ici.\nI grew up around here.\tJ'ai grandi dans les environs.\nI guess I fell asleep.\tJe suppose que je me suis endormi.\nI guess I fell asleep.\tJe suppose que je me suis endormie.\nI guess it's possible.\tJ'imagine que c'est possible.\nI guess the dog bites.\tOn dirait que le chien mord.\nI guess the dog bites.\tJe crois que le chien mord.\nI guess we were happy.\tJe suppose que nous étions heureux.\nI guess we were happy.\tJe suppose que nous étions heureuses.\nI guess you are right.\tJe suppose que tu as raison.\nI guess you are right.\tJe suppose que vous avez raison.\nI had a bad day today.\tJ'ai eu une mauvaise journée, aujourd'hui.\nI had a narrow escape.\tJe l'ai échappé belle.\nI had a race with him.\tJ'ai concouru avec lui.\nI had a strange dream.\tJ'ai fait un drôle de rêve.\nI had my ears checked.\tJ'ai fait contrôler mon audition.\nI had my eyes checked.\tJ'ai fait contrôler ma vision.\nI had my money stolen.\tOn m'a volé mon argent.\nI had my room cleaned.\tJ'ai fait nettoyer ma chambre.\nI had my shoes shined.\tJ'ai fait cirer mes chaussures.\nI had my watch stolen.\tMa montre a été volée.\nI had no other choice.\tJe n'avais pas d'autre choix.\nI had nothing to hide.\tJe n'avais rien à cacher.\nI had second thoughts.\tJ'ai reconsidéré la question.\nI had to do something.\tIl me fallait faire quelque chose.\nI had to do something.\tIl fallait que je fasse quelque chose.\nI had to go back home.\tIl m'a fallu retourner chez moi.\nI had to go back home.\tJ'ai dû retourner chez moi.\nI had to leave my job.\tJ'ai dû quitter mon boulot.\nI handed a map to him.\tJe lui tendis une carte.\nI hate guys like that.\tJe déteste les gars comme ça.\nI hate the way I look.\tJe déteste l'air que j'ai.\nI hate this apartment.\tJe déteste cet appartement.\nI hated history class.\tJe détestais les cours d'histoire.\nI hated history class.\tJ'ai détesté les cours d'histoire.\nI have a Japanese car.\tJ'ai une voiture japonaise.\nI have a favor to ask.\tJ'ai une faveur à requérir.\nI have a little fever.\tJ'ai un peu de fièvre.\nI have a little money.\tJ'ai un peu d'argent.\nI have a lot of books.\tJ'ai beaucoup de livres.\nI have a lot of money.\tJe dispose de beaucoup d'argent.\nI have a lot to learn.\tJ'ai beaucoup à apprendre.\nI have a student visa.\tJ'ai un visa étudiant.\nI have a tourist visa.\tJ'ai un visa de tourisme.\nI have an appointment.\tJ'ai un rendez-vous.\nI have an old bicycle.\tJ'ai un vieux vélo.\nI have another sister.\tJ'ai une autre sœur.\nI have been to London.\tJe suis déjà allé à Londres.\nI have borrowed a car.\tJ'ai emprunté une voiture.\nI have done it before.\tJe l'ai fait auparavant.\nI have errands to run.\tJ'ai des courses à faire.\nI have errands to run.\tJ'ai des commissions à faire.\nI have homework to do.\tJ'ai des devoirs à faire.\nI have just come here.\tJe viens juste d'arriver ici.\nI have kidney trouble.\tJ'ai des problèmes rénaux.\nI have life insurance.\tJ'ai une assurance-vie.\nI have lost my camera.\tJ'ai perdu mon appareil photo.\nI have lost my pencil.\tJ'ai perdu mon crayon.\nI have lost my wallet.\tJ'ai perdu mon portefeuille.\nI have made him angry.\tJe l'ai mis en colère.\nI have met her before.\tJe l'ai déjà rencontrée.\nI have met him before.\tJe l'ai rencontré avant.\nI have my own reasons.\tJ'ai mes propres raisons.\nI have no explanation.\tJe n'ai pas d'explication.\nI have no money on me.\tJe n’ai pas de monnaie sur moi.\nI have no self-esteem.\tJe n'ai pas d'amour-propre.\nI have nothing to say.\tJe n'ai rien à dire.\nI have nothing to say.\tJe n'ai rien à dire.\nI have plenty of time.\tJ'ai tout mon temps devant moi.\nI have serious doubts.\tJ'ai de sérieux doutes.\nI have so much to say.\tJ'ai tant à dire.\nI have terrible pains.\tJ'ai d'affreuses douleurs.\nI have the dictionary.\tJ'ai le dictionnaire.\nI have three children.\tJ'ai trois enfants.\nI have to be punished.\tJe dois être puni.\nI have to be punished.\tJe dois être punie.\nI have to do it again.\tJe dois le refaire.\nI have to do it again.\tIl faut que je le refasse.\nI have to feed my cat.\tJe dois nourrir mon chat.\nI have to go shopping.\tJe dois aller faire les courses.\nI have to go to sleep.\tJe dois aller dormir.\nI have to keep trying.\tJe dois continuer d'essayer.\nI haven't heard of it.\tJe n'en ai pas entendu parler.\nI haven't told anyone.\tJe ne l'ai dit à personne.\nI hear someone coming.\tJ'entends quelqu'un venir.\nI heard a funny noise.\tJ'ai entendu un drôle de bruit.\nI heard my phone ring.\tJ'ai entendu mon téléphone sonner.\nI heard the door open.\tJ'ai entendu la porte s'ouvrir.\nI heard what happened.\tJ'ai entendu ce qu'il s'est passé.\nI helped fix the leak.\tJ'ai aidé à réparer la fuite.\nI hid behind the tree.\tJe me cachai derrière l'arbre.\nI hid under the table.\tJe me suis caché sous la table.\nI hid under the table.\tJe me cachai sous la table.\nI hired someone today.\tJ'ai engagé quelqu'un aujourd'hui.\nI hit him on the chin.\tJe l'ai frappé au menton.\nI honestly don't care.\tFranchement, je m'en fiche.\nI hope I see it again.\tJ'espère le revoir.\nI hope he's all right.\tJ'espère qu'il se porte bien.\nI hope he's all right.\tJ'espère que tout va bien pour lui.\nI hope it will change.\tJ'espère que cela changera.\nI hope to return soon.\tJ'espère revenir bientôt.\nI hope you don't mind.\tJ'espère que ça ne vous dérange pas.\nI hope you don't mind.\tJ'espère que ça ne te dérange pas.\nI hope you don't mind.\tJ'espère que ça ne vous ennuie pas.\nI hope you don't mind.\tJ'espère que ça ne t'ennuie pas.\nI hope you enjoyed it.\tJ'espère que tu y as pris plaisir.\nI hope you enjoyed it.\tJ'espère que vous y avez pris plaisir.\nI hope you understand.\tJ'espère que tu comprendras.\nI hope you won't mind.\tJ'espère que vous n'y voyez pas d'inconvénient.\nI hope you won't mind.\tJ'espère que tu n'y vois pas d'inconvénient.\nI hope you'll join us.\tJ'espère que vous serez des nôtres.\nI hope you'll like it.\tJ'espère que vous l'aimerez.\nI just can't remember.\tJe ne me le rappelle simplement pas.\nI just can't remember.\tJe ne m'en souviens simplement pas.\nI just don't remember.\tJe ne m'en souviens pas, un point c'est tout.\nI just don't remember.\tJe ne m'en souviens tout simplement pas.\nI just got your email.\tJe viens de recevoir ton courriel.\nI just got your email.\tJe viens de recevoir votre courriel.\nI just hope Tom is OK.\tJ'espère seulement que Tom va bien.\nI just started crying.\tJe me suis simplement mis à pleurer.\nI just started crying.\tJe me suis simplement mise à pleurer.\nI just stubbed my toe.\tJe viens de me cogner l'orteil.\nI just want the truth.\tJe veux simplement la vérité.\nI just want your love.\tJe veux juste ton amour.\nI just want your love.\tJe veux juste votre amour.\nI just want your love.\tJe ne veux que ton amour.\nI just want your love.\tJe ne veux que votre amour.\nI just wanted to talk.\tJe voulais simplement discuter.\nI knew I wasn't crazy.\tJe savais que je n'étais pas fou.\nI knew Tom personally.\tJe connaissais Tom personnellement.\nI knew all about that.\tJ'en savais tout.\nI knew everyone there.\tJ'y connaissais tout le monde.\nI knew it was serious.\tJe savais que c'était sérieux.\nI knew what Tom meant.\tJe savais ce que Tom voulait dire.\nI knew what you meant.\tJe savais ce que vous vouliez dire.\nI knew what you meant.\tJe savais ce que tu voulais dire.\nI know Tom quite well.\tJe connais très bien Tom.\nI know Tom will agree.\tJe sais que Tom sera d'accord.\nI know a lot about it.\tJ'en sais long là-dessus.\nI know a lot about it.\tJ'en sais beaucoup à ce sujet.\nI know everybody here.\tJe connais tout le monde, ici.\nI know how this works.\tJe sais comment cela fonctionne.\nI know it well enough.\tJe le sais suffisamment bien.\nI know that Tom knows.\tJe sais que Tom sait.\nI know these students.\tJe connais ces étudiants.\nI know this will work.\tJe sais que ça fonctionnera.\nI know this will work.\tJe sais que ça marchera.\nI know what they mean.\tJe sais ce qu'ils veulent dire.\nI know what they mean.\tJe sais ce qu'elles veulent dire.\nI know what they mean.\tJe sais ce qu'ils insinuent.\nI know what they mean.\tJe sais ce qu'elles insinuent.\nI know what they said.\tJe sais ce qu'ils ont dit.\nI know what they said.\tJe sais ce qu'elles ont dit.\nI know what to expect.\tJe sais à quoi m'attendre.\nI know what to expect.\tJe sais quoi espérer.\nI know what to ignore.\tJe sais quoi ignorer.\nI know what we can do.\tJe sais ce que nous pouvons faire.\nI know what we can do.\tJe sais ce que nous parvenons à faire.\nI know what we can do.\tJe sais ce que nous arrivons à faire.\nI know where he lives.\tJe sais où il habite.\nI know where he lives.\tJe sais où il vit.\nI know where you live.\tJe sais où tu habites.\nI know where you live.\tJe sais où tu vis.\nI know why you did it.\tJe sais pourquoi tu l'as fait.\nI know why you did it.\tJe sais pourquoi vous l'avez fait.\nI know you are clever.\tJe sais que tu es intelligent.\nI know you can see it.\tJe sais que tu peux le voir.\nI know you helped Tom.\tJe sais que tu as aidé Tom.\nI know you helped Tom.\tJe sais que vous avez aidé Tom.\nI laughed at his joke.\tJ'ai ri à sa blague.\nI learned a new trick.\tJ'ai appris un nouveau tour.\nI learned it from you.\tJe l'ai appris de toi.\nI left in the morning.\tJe suis parti au matin.\nI lent him a magazine.\tJe lui ai prêté une revue.\nI like English better.\tJe préfère l'anglais.\nI like French cooking.\tJ'apprécie la cuisine française.\nI like Japanese girls.\tJ'aime les Japonaises.\nI like all my classes.\tJ'apprécie tous mes cours.\nI like being with you.\tJ'aime être en ta compagnie.\nI like being with you.\tJ'aime être en votre compagnie.\nI like being with you.\tJ'aime être avec vous.\nI like being with you.\tJ'aime me trouver en ta compagnie.\nI like being with you.\tJ'aime me trouver en votre compagnie.\nI like cats very much.\tJ'aime beaucoup les chats.\nI like dark chocolate.\tJ'aime le chocolat noir.\nI like dogs very much.\tJ'aime vraiment les chiens.\nI like dogs very much.\tJ'aime beaucoup les chiens.\nI like the color blue.\tJ'aime la couleur bleue.\nI like their pictures.\tJ'aime leurs photos.\nI like their pictures.\tJ'aime leurs tableaux.\nI like to be prepared.\tJ'aime être préparé.\nI like to be thorough.\tJ'aime être minutieux.\nI like to be thorough.\tJ'aime être minutieuse.\nI like to be thorough.\tJ'aime être consciencieux.\nI like to be thorough.\tJ'aime être consciencieuse.\nI like to write poems.\tJ'aime écrire des poèmes.\nI like your frankness.\tJ'apprécie votre franchise.\nI live in the country.\tJ'habite à la campagne.\nI lost a lot of blood.\tJ’ai perdu beaucoup de sang.\nI lost a lot of money.\tJ'ai perdu beaucoup d'argent.\nI lost my credit card.\tJ'ai perdu ma carte de crédit.\nI lost my inspiration.\tJ'ai perdu mon inspiration.\nI love a happy ending.\tJ'adore les fins heureuses.\nI love buying on eBay.\tJ'adore acheter sur eBay.\nI love playing Chopin.\tJ'adore jouer Chopin.\nI love playing Chopin.\tJ'adore jouer du Chopin.\nI love romance novels.\tJ'aime les romans d'amour.\nI love talking to you.\tJ'adore m'entretenir avec toi.\nI love talking to you.\tJ'adore m'entretenir avec vous.\nI love talking to you.\tJ'adore parler avec toi.\nI love talking to you.\tJ'adore parler avec vous.\nI love to help others.\tJ'adore aider les autres.\nI love you like a son.\tJe vous aime comme un fils.\nI love you like a son.\tJe t'aime comme un fils.\nI love your apartment.\tJ'adore ton appartement.\nI love your apartment.\tJ'adore votre appartement.\nI made a bad decision.\tJ'ai pris une mauvaise décision.\nI made a bad decision.\tJe pris une mauvaise décision.\nI made a couple calls.\tJ'ai passé quelques appels.\nI made a couple calls.\tJ'ai passé quelques coups de fil.\nI made a couple calls.\tJe passai quelques appels.\nI made a couple calls.\tJe passai quelques coups de fil.\nI made a huge mistake.\tJ'ai commis une énorme erreur.\nI made a lot of money.\tJ'ai fait beaucoup d'argent.\nI made a mess of that.\tJ'ai foiré ça.\nI made tea last night.\tJ'ai préparé le dîner hier soir.\nI may need to move on.\tIl se peut qu'il faille que je parte.\nI may need to move on.\tIl se peut qu'il faille que je passe à autre chose.\nI may need to move on.\tIl se peut qu'il faille que je me remette en route.\nI may try again later.\tIl se peut que j'essaye à nouveau plus tard.\nI meant no disrespect.\tJe ne voulais pas vous manquer de respect.\nI meant to look it up.\tJ'avais l'intention d'en faire la recherche.\nI met her an hour ago.\tJe l'ai rencontrée il y a une heure.\nI met her by accident.\tJe l'ai rencontrée accidentellement.\nI might not come back.\tIl se pourrait que je ne revienne pas.\nI misspelled the word.\tJ'ai épelé le mot de travers.\nI misspelled the word.\tJ'ai mal épelé le mot.\nI must be leaving now.\tIl faut que j'y aille maintenant.\nI must help my mother.\tJe dois aider ma mère.\nI must hurry to class.\tJe dois me dépêcher d'aller en classe.\nI must know the truth.\tIl faut que je sache la vérité.\nI must learn Japanese.\tJe dois apprendre le japonais.\nI must repay the debt.\tJe dois rembourser la dette.\nI must ride a bicycle.\tJe dois faire du vélo.\nI need an interpreter.\tJ'ai besoin d'une interprète.\nI need it by tomorrow.\tJ'en ai besoin pour demain.\nI need it immediately.\tJ'en ai besoin immédiatement.\nI need it immediately.\tJ'en ai besoin sur-le-champ.\nI need some help here.\tJ'ai besoin d'un peu d'aide ici.\nI need something else.\tJ'ai besoin de quelque chose d'autre.\nI need something else.\tIl me faut quelque chose d'autre.\nI need to be prepared.\tIl me faut être préparé.\nI need to be prepared.\tIl me faut être préparée.\nI need to get a stamp.\tJ'ai besoin d'un timbre.\nI need to go shopping.\tIl me faut aller faire des courses.\nI need to go to sleep.\tJe dois aller dormir.\nI need to keep moving.\tJe dois continuer à avancer.\nI need to pay my rent.\tIl faut que je paie mon loyer.\nI need to see Tom now.\tJ'ai besoin de voir Tom maintenant.\nI need to talk to him.\tIl me faut lui parler.\nI need to warn my mom.\tJe dois prévenir ma mère.\nI need to warn my mom.\tJe dois prévenir ma maman.\nI need to warn my mom.\tIl faut que je prévienne ma maman.\nI need to warn my mom.\tIl faut que je prévienne ma mère.\nI need you in my life.\tJ'ai besoin de toi dans ma vie.\nI need you in my life.\tJ'ai besoin de vous dans ma vie.\nI need you on my side.\tJ'ai besoin de toi à mes côtés.\nI need you to go home.\tJ'ai besoin que tu ailles à la maison.\nI need you to go home.\tJ'ai besoin que vous alliez à la maison.\nI needed it yesterday.\tJ'en ai eu besoin hier.\nI never found out why.\tJe n'ai jamais découvert pourquoi.\nI never read the book.\tJe n'ai jamais lu ce livre.\nI never saw Tom again.\tJe n’ai jamais revu Tom.\nI never saw her again.\tJe ne la revis jamais.\nI never saw him again.\tJe ne l'ai jamais revu.\nI never saw him again.\tJe ne le revis jamais.\nI never told Tom that.\tJe n’ai jamais dit ça à Tom.\nI never went to sleep.\tJe n'ai jamais été dormir.\nI no longer live here.\tJe n’habite plus ici.\nI no longer want that.\tJe n'en veux plus.\nI no longer want that.\tJe ne le veux plus.\nI no longer work here.\tJe ne travaille plus ici.\nI often feel homesick.\tJ'ai souvent le mal du pays.\nI often get the blues.\tJ'ai souvent le cafard.\nI often make mistakes.\tJe commets souvent des fautes.\nI only have ten books.\tJe n'ai que dix livres.\nI only need one thing.\tIl ne me faut qu'une chose.\nI ordered you a drink.\tJe vous ai commandé un verre.\nI ordered you a drink.\tJe t'ai commandé un verre.\nI overslept yesterday.\tJe n'ai pas entendu le réveil, hier.\nI owe you a breakfast.\tJe te dois un petit-déjeuner.\nI owe you a breakfast.\tJe vous dois un petit-déjeuner.\nI paid about 50 bucks.\tJ'ai payé dans les 50 balles.\nI paid for it already.\tJe l'ai déjà payé.\nI paid for the damage.\tJ'ai payé pour les dégâts.\nI paid for the drinks.\tJ'ai payé les boissons.\nI pigged out on pizza.\tJe me suis goinfré de pizza.\nI plan on being early.\tJe prévois d'être en avance.\nI play a little piano.\tJe joue un peu de piano.\nI postponed the event.\tJe remis la manifestation.\nI prefer cats to dogs.\tJe préfère les chats aux chiens.\nI prefer dogs to cats.\tJe préfère les chiens aux chats.\nI prefer this version.\tJe préfère cette version.\nI prefer to eat alone.\tJe préfère manger seul.\nI prefer to eat alone.\tJe préfère manger seule.\nI promise not to sing.\tJe promets de ne pas chanter.\nI put it in your room.\tJe l'ai mis dans votre chambre.\nI put it in your room.\tJe l'ai mise dans votre chambre.\nI put it in your room.\tJe l'ai mis dans ta chambre.\nI put it in your room.\tJe l'ai mise dans ta chambre.\nI put it on your desk.\tJe l'ai mis sur votre bureau.\nI put it on your desk.\tJe l'ai mise sur votre bureau.\nI put it on your desk.\tJe l'ai mis sur ton bureau.\nI put it on your desk.\tJe l'ai mise sur ton bureau.\nI ran away in a hurry.\tJ'ai déguerpi dare-dare.\nI ran away in a hurry.\tJe suis parti en courant en toute hâte.\nI ran away in a hurry.\tJe suis parti en courant précipitamment.\nI really am very busy.\tJe suis vraiment très occupé.\nI really am very busy.\tJe suis vraiment très occupée.\nI really enjoyed that.\tJ'y ai vraiment pris plaisir.\nI really have no idea.\tJe n'ai vraiment aucune idée.\nI really like it, too.\tJe l'aime également beaucoup.\nI really like puppies.\tJ'aime vraiment les chiots.\nI really like puppies.\tJ'aime beaucoup les chiots.\nI really like seafood.\tJ'aime beaucoup les fruits de mer.\nI really love my work.\tJ'adore vraiment mon travail.\nI really miss you all.\tVous me manquez vraiment tous.\nI really miss you all.\tVous me manquez vraiment toutes.\nI really need a drink.\tJ'ai vraiment besoin d'un verre.\nI really want to stay.\tJe veux vraiment rester.\nI really wanted to go.\tJe voulais vraiment y aller.\nI really wanted to go.\tJe voulais vraiment partir.\nI recognized his face.\tJ'ai reconnu son visage.\nI recognized his face.\tJe reconnus son visage.\nI recognized the name.\tJ'ai reconnu le nom.\nI recognized the name.\tJe reconnus le nom.\nI recommend it highly.\tJe le recommande chaudement.\nI recommend it highly.\tJe le recommande vivement.\nI recommend it highly.\tJe la recommande vivement.\nI recommend it highly.\tJe la recommande chaudement.\nI refuse to accept it.\tJe refuse de l'accepter.\nI remember everything.\tJe me souviens de tout.\nI remember it vividly.\tJ'en garde un souvenir très vivace.\nI remember seeing her.\tJe me rappelle l'avoir vue.\nI remember seeing him.\tJe me souviens l'avoir vu.\nI remember seeing him.\tJe me rappelle l'avoir vu.\nI remember the letter.\tJe me souviens de cette lettre.\nI remember this music.\tJe me souviens de cette musique.\nI remember this music.\tJe me rappelle cette musique.\nI remember those days.\tJe me souviens de ces jours.\nI remember those days.\tJe me souviens de ce temps-là.\nI remember what I saw.\tJe me rappelle ce que j'ai vu.\nI remember what I saw.\tJe me souviens de ce que j'ai vu.\nI require your advice.\tJe requiers vos conseils.\nI require your advice.\tJe requiers tes conseils.\nI require your advice.\tJ'ai besoin de vos conseils.\nI require your advice.\tJ'ai besoin de tes conseils.\nI respect the elderly.\tJe respecte les personnes âgées.\nI respect your talent.\tJe respecte votre talent.\nI respect your talent.\tJe respecte ton talent.\nI ride a bike to work.\tJe vais au travail à vélo.\nI run my own business.\tJe fais tourner ma propre affaire.\nI said leave it alone.\tJ'ai dit de laisser tomber.\nI saw Tom in the park.\tJ'ai vu Tom dans le parc.\nI saw him in the park.\tJe l'ai vu dans le parc.\nI saw him in the park.\tJe le vis dans le parc.\nI saw my sister there.\tJe vis là ma sœur.\nI saw my sister there.\tJ'y vis ma sœur.\nI share your feelings.\tJe partage tes sentiments.\nI share your feelings.\tJe partage vos sentiments.\nI shave every morning.\tJe me rase tous les matins.\nI should be in charge.\tJe devrais être aux commandes.\nI should do something.\tJe devrais faire quelque chose.\nI should've gone home.\tJ'aurais dû aller à la maison.\nI should've gone home.\tJ'aurais dû rentrer chez moi.\nI sincerely apologize.\tJe présente mes sincères excuses.\nI stayed home all day.\tJe suis resté à la maison toute la journée.\nI stayed home all day.\tJe suis restée à la maison toute la journée.\nI stayed home to rest.\tJe restai à la maison pour me reposer.\nI stayed home to rest.\tJe restai à la maison afin de me reposer.\nI stayed home to rest.\tJe suis resté à la maison afin de me reposer.\nI stayed home to rest.\tJe suis restée à la maison afin de me reposer.\nI stayed up all night.\tJe suis resté debout toute la nuit.\nI stayed up all night.\tJe suis restée debout toute la nuit.\nI still don't like it.\tJe ne l'aime toujours pas.\nI still make mistakes.\tJe fais encore des erreurs.\nI suggest we continue.\tJe suggère que nous continuions.\nI suggest you go west.\tJe vous suggère d'aller à l'ouest.\nI suggest you go west.\tJe te suggère d'aller à l'ouest.\nI suppose that's true.\tJe suppose que c'est vrai.\nI suppose that's true.\tJe dirai que c'est vrai.\nI suppose you like it.\tJe suppose que vous l'aimez.\nI talked to everybody.\tJ'ai parlé avec tout le monde.\nI talked to everybody.\tJe parlai avec tout le monde.\nI talked to everybody.\tJe me suis entretenu avec tout le monde.\nI talked to everybody.\tJe me suis entretenue avec tout le monde.\nI talked to everybody.\tJ'ai discuté avec tout le monde.\nI tend to catch colds.\tJ'ai tendance à attraper froid.\nI tend to catch colds.\tJ'ai une propension à contracter des rhumes.\nI think Tom is insane.\tJe pense que Tom est fou.\nI think Tom is scared.\tJe pense que Tom a peur.\nI think he won't come.\tJe pense qu'il ne viendra pas.\nI think it's reliable.\tJe pense que c'est fiable.\nI think it's too late.\tJe pense que c'est trop tard.\nI think she will come.\tJe pense qu'elle viendra.\nI think that's better.\tJe pense que c'est mieux.\nI think that's enough.\tJe pense que c'est assez.\nI think they know you.\tJe pense qu'ils vous connaissent.\nI think they like you.\tJe crois qu'ils vous aiment.\nI think they like you.\tJe pense qu'elles vous apprécient.\nI think they like you.\tJe pense qu'elles t'apprécient.\nI think they like you.\tJe pense qu'ils vous apprécient.\nI think they like you.\tJe pense qu'ils t'apprécient.\nI think they're happy.\tJe pense qu'ils sont heureux.\nI think they're lying.\tJe pense qu'ils mentent.\nI think they're lying.\tJe pense qu'elles mentent.\nI think they're ready.\tJe pense qu'ils sont prêts.\nI think they're ready.\tJe pense qu'elles sont prêtes.\nI think this is funny.\tJe pense que c'est drôle.\nI think this is yours.\tJe pense que c'est le vôtre.\nI think this is yours.\tJe pense que c'est le tien.\nI think this is yours.\tJe pense que c'est la tienne.\nI think we can manage.\tJe pense que nous pouvons gérer.\nI think we need those.\tJe pense que nous avons besoin de ceux-là.\nI think we need those.\tJe pense que nous avons besoin de celles-là.\nI think we should run.\tJe pense que nous devrions courir.\nI think we were lucky.\tJe pense que nous avons eu de la chance.\nI think we're related.\tJe pense que nous sommes apparentés.\nI think we're related.\tJe pense que nous sommes apparentées.\nI think you did great.\tJe pense que vous avez excellé.\nI think you did great.\tJe pense que tu as excellé.\nI think you know that.\tJe pense que tu sais cela.\nI think you know that.\tJe pense que vous savez cela.\nI think you look fine.\tJe pense que tu as l'air au poil.\nI think you look fine.\tJe pense que vous avez l'air au poil.\nI think you need help.\tJe pense que tu as besoin d'aide.\nI think you need help.\tJe pense que vous avez besoin d'aide.\nI think you need this.\tJe pense que tu as besoin de ceci.\nI think you need this.\tJe pense que vous avez besoin de ceci.\nI think you should go.\tJe pense que tu devrais y aller.\nI think you should go.\tJe pense que vous devriez y aller.\nI thought I heard you.\tJe pensais t'avoir entendu.\nI thought I heard you.\tJe pensais t'avoir entendue.\nI thought I heard you.\tJe pensais vous avoir entendu.\nI thought I heard you.\tJe pensais vous avoir entendue.\nI thought I heard you.\tJe pensais vous avoir entendues.\nI thought I heard you.\tJe pensais vous avoir entendus.\nI thought I heard you.\tJe pensais que je vous avais entendu.\nI thought I heard you.\tJe pensais que je vous avais entendue.\nI thought I heard you.\tJe pensais que je vous avais entendus.\nI thought I heard you.\tJe pensais que je vous avais entendues.\nI thought I heard you.\tJe pensais que je t'avais entendu.\nI thought I heard you.\tJe pensais que je t'avais entendue.\nI thought I was alone.\tJe pensais être seul.\nI thought I was alone.\tJe pensais être seule.\nI thought I was alone.\tJe pensais que j'étais seul.\nI thought I was alone.\tJe pensais que j'étais seule.\nI thought I was happy.\tJe pensais que j'étais heureux.\nI thought I was happy.\tJe pensais être heureux.\nI thought I was happy.\tJe pensais que j'étais heureuse.\nI thought I was happy.\tJe pensais être heureuse.\nI thought he had died.\tJe pensais qu'il avait décédé.\nI thought he had died.\tJe pensais qu'il avait péri.\nI thought he was here.\tJe pensais qu'il était là.\nI thought he was rich.\tJe pensais qu'il était riche.\nI thought it was cool.\tJ'ai pensé que c'était sympa.\nI thought it was good.\tJe pensais que c'était bon.\nI thought it was true.\tJe croyais que c'était vrai.\nI thought so at first.\tJ'y ai pensé au premier abord.\nI thought you'd agree.\tJe pensais que vous seriez d'accord.\nI thought you'd agree.\tJe pensais que tu serais d'accord.\nI told her what to do.\tJe lui ai dit quoi faire.\nI told her what to do.\tJe lui dis quoi faire.\nI told him everything.\tJe lui ai tout dit.\nI told him what to do.\tJe lui ai dit quoi faire.\nI told you to call me.\tJe vous ai dit de m'appeler.\nI told you to call me.\tJe t'ai dit de m'appeler.\nI totally believe you.\tJe vous crois totalement.\nI totally believe you.\tJe te crois totalement.\nI totally freaked out.\tJ'ai complètement flippé.\nI turned off my phone.\tJ'ai éteint mon téléphone.\nI turned on the radio.\tJ'ai allumé la radio.\nI used my imagination.\tJ'ai utilisé mon imagination.\nI used my imagination.\tJ'ai employé mon imagination.\nI used my imagination.\tJe me suis servi de mon imagination.\nI used to be like you.\tJ'étais comme toi.\nI used to be like you.\tJ'étais comme vous.\nI used to be your age.\tJ'avais ton âge.\nI used to be your age.\tJ'avais votre âge.\nI used to be your age.\tJ'ai eu ton âge.\nI used to be your age.\tJ'ai eu votre âge.\nI used to not do that.\tJe ne le faisais pas.\nI used to play tennis.\tJe jouais au tennis.\nI used to respect you.\tAutrefois, je te respectais.\nI usually get up at 8.\tJe me lève habituellement vers 8 heures.\nI walked about a mile.\tJ'ai marché environ 1 mile.\nI want a book to read.\tJe veux un livre pour lire.\nI want a piece of pie.\tJe veux une part de tarte.\nI want an explanation.\tJe veux une explication.\nI want another chance.\tJe veux une autre chance.\nI want my hammer back.\tJe veux qu'on me rende mon marteau.\nI want my hammer back.\tJe veux que tu me rendes mon marteau.\nI want my hammer back.\tJe veux que vous me rendiez mon marteau.\nI want something more.\tJe veux quelque chose de plus.\nI want to be an actor.\tJe veux être acteur.\nI want to be an actor.\tJe veux être actrice.\nI want to be involved.\tJe veux être impliquée.\nI want to be involved.\tJe veux être impliqué.\nI want to be pampered.\tJe veux être choyée.\nI want to be pampered.\tJe veux être choyé.\nI want to be pampered.\tJe veux qu'on me choie.\nI want to be with Tom.\tJe veux être avec Tom.\nI want to be with you.\tJe veux être avec toi.\nI want to be with you.\tJe veux être avec vous.\nI want to become rich.\tJe veux devenir riche.\nI want to believe you.\tJe veux vous croire.\nI want to believe you.\tJe veux te croire.\nI want to do it right.\tJe veux le faire correctement.\nI want to eat a steak.\tJe veux manger un steak.\nI want to go home now.\tJe veux aller chez moi maintenant.\nI want to go to Tokyo.\tJe veux aller à Tokyo.\nI want to go with you.\tJe veux t'accompagner.\nI want to go with you.\tJe veux y aller avec toi.\nI want to leave Paris.\tJe veux quitter Paris.\nI want to lose weight.\tJe veux perdre du poids.\nI want to participate.\tJe veux participer.\nI want to say goodbye.\tJe veux dire au revoir.\nI want to settle down.\tJe veux me calmer.\nI want to settle down.\tJe veux m'installer.\nI want to sing a song.\tJe veux chanter une chanson.\nI want to take a walk.\tJe voudrais me promener.\nI want to visit Korea.\tJe veux visiter la Corée.\nI want you back today.\tJe veux que vous soyez revenu aujourd'hui.\nI want you back today.\tJe veux que vous soyez revenue aujourd'hui.\nI want you back today.\tJe veux que vous soyez revenus aujourd'hui.\nI want you back today.\tJe veux que vous soyez revenues aujourd'hui.\nI want you back today.\tJe veux que tu sois revenu aujourd'hui.\nI want you back today.\tJe veux que tu sois revenue aujourd'hui.\nI want you to be here.\tJe veux que tu sois ici.\nI want you to be safe.\tJe veux que tu sois en sécurité.\nI want you to be safe.\tJe veux que vous soyez en sécurité.\nI want you to do this.\tJe veux que tu le fasses.\nI want you to do this.\tJe veux que vous le fassiez.\nI want you to drop it.\tJe veux que tu le laisses tomber.\nI want you to drop it.\tJe veux que vous le laissiez tomber.\nI want you to go back.\tJe veux que tu t'en retournes.\nI want you to go back.\tJe veux que vous vous en retourniez.\nI want you to go home.\tJe veux que tu ailles chez toi.\nI want you to go home.\tJe veux que tu ailles chez nous.\nI want you to go home.\tJe veux que vous alliez chez vous.\nI want you to go home.\tJe veux que vous alliez chez nous.\nI want you to grow up.\tJe veux que tu grandisses.\nI want you to kiss me.\tJe veux que tu m'embrasses.\nI want you to want me.\tJe veux que tu me désires.\nI want you to want me.\tJe veux que vous me désiriez.\nI wanted to marry him.\tJe voulais l'épouser.\nI wanted your opinion.\tJe voulais votre opinion.\nI was a bit emotional.\tJ'ai été un peu émotionnel.\nI was a healthy child.\tJ'étais un enfant en bonne santé.\nI was a little afraid.\tJ'avais un peu peur.\nI was angry at myself.\tJ'étais en colère après moi-même.\nI was angry at myself.\tJ'étais en colère contre moi.\nI was born in America.\tJe suis né en Amérique.\nI was born in October.\tJe suis né en octobre.\nI was choked by smoke.\tLa fumée m'étouffait.\nI was deceived by him.\tIl m'a trompé.\nI was falsely accused.\tJ'ai été accusé à tort.\nI was falsely accused.\tJ'ai été accusé injustement.\nI was fired last week.\tJ'ai été viré la semaine dernière.\nI was fired last week.\tJ'ai été renvoyé la semaine dernière.\nI was forced to do it.\tJ'ai été forcée à le faire.\nI was happy yesterday.\tHier, j'étais heureux.\nI was in good spirits.\tJ'étais de bonne humeur.\nI was never told that.\tOn ne me l'a jamais dit.\nI was not a bit tired.\tJe n'étais pas fatigué le moins du monde.\nI was quite surprised.\tJ'étais très surpris.\nI was right all along.\tJ'avais raison depuis le début.\nI was so disappointed.\tJ'étais tellement déçu.\nI was so disappointed.\tJ'étais tellement déçue.\nI was very busy today.\tJ'étais très occupé aujourd'hui.\nI wasn't always happy.\tJe n'étais pas toujours heureux.\nI watch TV off and on.\tJe regarde la télévision de temps en temps.\nI went home and cried.\tJe suis allé chez moi et j'ai pleuré.\nI went out by bicycle.\tJe suis sorti en vélo.\nI went out by bicycle.\tJe suis sortie en vélo.\nI went to Europe once.\tJe suis déjà allé en Europe une fois.\nI went to the station.\tJe suis allé à la gare.\nI went to the station.\tJe suis allée à la gare.\nI went to your school.\tJe suis allé à ton école.\nI went to your school.\tJe suis allée à ton école.\nI went to your school.\tJe suis allé à votre école.\nI went to your school.\tJe suis allée à votre école.\nI went to your school.\tJ'allais à ton école.\nI went to your school.\tJ'allais à votre école.\nI will drive you home.\tJe te conduirai chez toi.\nI will drive you home.\tJe te ramènerai chez toi.\nI will get it for you.\tJe l'aurai pour toi.\nI will give it to you.\tJe te le donnerai.\nI will go if you come.\tSi vous y allez, j'y vais.\nI will make her happy.\tJe la rendrai heureuse.\nI will make you happy.\tJe vous rendrai heureux.\nI will make you happy.\tJe vous rendrai heureuse.\nI will need your help.\tJ'aurai besoin de votre aide.\nI will need your help.\tJ'aurai besoin de ton aide.\nI wish I had a camera.\tJ'aimerais avoir un appareil photo.\nI wish I had a camera.\tJ'aimerais disposer d'un appareil photo.\nI wish I had seen her.\tJ'aurais voulu la voir.\nI wish I had your job.\tJ'aimerais avoir ton boulot.\nI wish I had your job.\tJ'aimerais avoir votre boulot.\nI wish I were a stone.\tJe voudrais être une pierre.\nI wish I were younger.\tJ'aimerais être plus jeune.\nI wish to be a doctor.\tJe souhaite être docteur.\nI wish you'd trust me.\tJ'aimerais que vous me fassiez confiance.\nI wish you'd trust me.\tJ'aimerais que tu me fasses confiance.\nI won't come tomorrow.\tJe ne viendrai pas demain.\nI won't do that again.\tJe ne referai plus cela.\nI won't lose anything.\tJe ne perdrai rien.\nI won't touch a thing.\tJe ne toucherai à rien.\nI wonder where Tom is.\tJe me demande où est Tom.\nI wonder who did that.\tJe me demande qui a fait ça.\nI wonder who they are.\tJe me demande qui ils sont.\nI wonder why Tom left.\tJe me demande pourquoi Tom est parti.\nI work even on Sunday.\tJe travaille même le dimanche.\nI work for McDonald's.\tJe travaille chez McDonald's.\nI work for a hospital.\tJe travaille dans un hôpital.\nI work in the morning.\tJe travaille le matin.\nI worked this morning.\tJ'ai travaillé ce matin.\nI worked this morning.\tJe travaillai ce matin.\nI would rather go out.\tJe ferais mieux de sortir.\nI would rather not go.\tJe ferais mieux de ne pas partir.\nI would rather not go.\tJ'aimerais autant ne pas y aller.\nI would've liked that.\tJ'aurais aimé cela.\nI wouldn't be so sure.\tJe n'en serais pas si sûr.\nI wouldn't be so sure.\tJe n'en serais pas si sûre.\nI'd bet my life on it.\tJe parierais ma vie là-dessus.\nI'd like another beer.\tJe voudrais une autre bière.\nI'd like orange juice.\tJe voudrais du jus d'orange.\nI'd like to apologize.\tJ'aimerais présenter mes excuses.\nI'd like to buy a map.\tJ'aimerais acheter une carte.\nI'd like to go faster.\tJ'aimerais aller plus vite.\nI'd like to hear that.\tJ'aurais aimé entendre ça.\nI'd like to try it on.\tJ'aimerais l'essayer.\nI'd like you to drive.\tJe voudrais que tu conduises.\nI'd like you to drive.\tJe voudrais que ce soit toi qui conduises.\nI'd love to know that.\tJ'aimerais bien savoir ça.\nI'd never dream of it.\tJe n'en rêverais jamais.\nI'd rather be at home.\tJe préférerais être chez moi.\nI'll be busy tomorrow.\tJe serai occupé demain.\nI'll be right outside.\tJe me trouverai juste à l'extérieur.\nI'll be very discreet.\tJe serai très discrète.\nI'll be very discreet.\tJe serai très discret.\nI'll bring sandwiches.\tJ'amènerai des tartines.\nI'll bring sandwiches.\tJ'amènerai des casse-croûtes.\nI'll call him tonight.\tJe l'appellerai ce soir.\nI'll call you tonight.\tJe t'appellerai ce soir.\nI'll come and get you.\tJe viendrai te chercher.\nI'll come and get you.\tJe viendrai vous chercher.\nI'll come on May 23rd.\tJe viendrai le 23 mai.\nI'll do as you advise.\tJe ferai comme tu m'as conseillé.\nI'll do no such thing.\tJe ne ferai rien de tel.\nI'll drive to Detroit.\tJe vais conduire jusqu'à Detroit.\nI'll find another job.\tJe trouverai un autre boulot.\nI'll go get the broom.\tJe vais chercher le balai.\nI'll go get the pizza.\tJ'irai chercher la pizza.\nI'll go if you insist.\tJ'irai, si vous insistez.\nI'll go if you insist.\tJ'irai, si tu insistes.\nI'll go meet her soon.\tJe vais bientôt la retrouver.\nI'll keep your secret.\tJe garderai votre secret.\nI'll keep your secret.\tJe garderai ton secret.\nI'll make a few calls.\tJe vais passer quelques coups de fil.\nI'll make some coffee.\tJe vais faire un peu de café.\nI'll make some coffee.\tJe vais préparer du café.\nI'll make some coffee.\tJe vais préparer un peu de café.\nI'll make some coffee.\tJe ferai un peu de café.\nI'll make tea for you.\tJe vais te faire du thé.\nI'll meet you outside.\tJe te rejoindrai dehors.\nI'll meet you outside.\tJe vous rejoindrai dehors.\nI'll meet you outside.\tJe te rejoindrai à l'extérieur.\nI'll meet you outside.\tJe vous rejoindrai à l'extérieur.\nI'll miss you so much.\tTu vas tellement me manquer.\nI'll never forget you.\tJe ne t'oublierai jamais.\nI'll never forget you.\tJe ne vous oublierai jamais.\nI'll never understand.\tJe ne comprendrai jamais.\nI'll order that later.\tJe le commanderai plus tard.\nI'll permit you to go.\tJe te permettrai d'y aller.\nI'll permit you to go.\tJe vous permettrai d'y aller.\nI'll see Tom tomorrow.\tJe verrai Tom demain.\nI'll see you in court.\tOn se verra au tribunal.\nI'll see you tomorrow.\tOn se voit demain.\nI'll see you tomorrow.\tJe te verrai demain.\nI'll see you tomorrow.\tJe vous verrai demain.\nI'll show that to Tom.\tJe montrerai ça à Tom.\nI'll stay if it rains.\tJe resterai, s'il pleut.\nI'll take care of you.\tJe prendrai soin de toi.\nI'll take care of you.\tJe prendrai soin de vous.\nI'll tell you a story.\tJe vais te raconter une histoire.\nI'll tell you a story.\tJe vous raconterai une histoire.\nI'll tell you a story.\tJe te raconterai une histoire.\nI'll watch television.\tJe vais regarder la télé.\nI'll water the garden.\tJ'arroserai le jardin.\nI'm a big fan of golf.\tJ'adore le golf.\nI'm a football player.\tJe suis un joueur de foot.\nI'm a little confused.\tJe suis un peu perplexe.\nI'm a little confused.\tJe suis un peu désorienté.\nI'm a married man now.\tJe suis un homme marié maintenant.\nI'm a terrible dancer.\tJe suis un piètre danseur.\nI'm a terrible writer.\tJe suis un épouvantable écrivain.\nI'm afraid of heights.\tJe souffre de vertige.\nI'm afraid of nothing.\tJe n'ai peur de rien.\nI'm afraid of spiders.\tJ'ai peur des araignées.\nI'm all out of tricks.\tJe suis à court d'expédients.\nI'm almost sure of it.\tJ'en suis presque sûr.\nI'm almost sure of it.\tJ'en suis presque sûre.\nI'm ashamed of myself.\tJ'ai honte de moi-même.\nI'm at the restaurant.\tJe suis au restaurant.\nI'm aware of all that.\tJe suis conscient de tout cela.\nI'm being blackmailed.\tOn me fait chanter.\nI'm busy all the time.\tJe suis toujours occupé.\nI'm coming right away.\tJ'arrive tout de suite.\nI'm coming right away.\tJ'arrive immédiatement.\nI'm coming right home.\tJ'arrive juste chez moi.\nI'm coming right home.\tJ'arrive juste chez nous.\nI'm doing my homework.\tJe fais mes devoirs.\nI'm doing my homework.\tJe suis en train de faire mes devoirs.\nI'm doing pretty well.\tJe vais assez bien.\nI'm dreading the exam.\tJe crains l'examen.\nI'm dreading the exam.\tJe redoute l'examen.\nI'm dreading the exam.\tJ'appréhende l'examen.\nI'm eating a sandwich.\tJe mange un sandwich.\nI'm failing at my job.\tJ'échoue dans mon travail.\nI'm finished with you.\tJ'en ai fini avec toi.\nI'm finished with you.\tJ'en ai fini avec vous.\nI'm from Tokyo, Japan.\tJe viens de Tokyo, Japon.\nI'm getting undressed.\tJe me déshabille.\nI'm glad to hear that.\tJe suis heureux d'entendre cela.\nI'm glad to hear that.\tC'est bien.\nI'm glad to hear that.\tJe me réjouis de l'entendre.\nI'm glad you liked it.\tJe suis heureux que tu l'aies aimé.\nI'm glad you liked it.\tJe suis heureux que tu l'aies apprécié.\nI'm glad you liked it.\tJe suis heureuse que tu l'aies apprécié.\nI'm glad you liked it.\tJe suis heureux que vous l'ayez apprécié.\nI'm glad you liked it.\tJe suis heureuse que vous l'ayez apprécié.\nI'm glad you're early.\tJe suis content que tu sois en avance.\nI'm glad you're early.\tJe suis contente que vous soyez en avance.\nI'm going back inside.\tJe retourne à l'intérieur.\nI'm going there alone.\tJ’y vais seul.\nI'm going to be on TV.\tJe vais passer à la télévision.\nI'm going to hurt you.\tJe vais te blesser.\nI'm going to miss you.\tTu vas me manquer.\nI'm going to miss you.\tVous allez me manquer.\nI'm going to the bank.\tJe vais à la banque.\nI'm going to watch TV.\tJe vais regarder la télé.\nI'm happy you're here.\tJe suis heureux que tu sois là.\nI'm happy you're here.\tJe suis heureuse que tu sois là.\nI'm happy you're here.\tJe suis heureux que vous soyez là.\nI'm happy you're here.\tJe suis heureuse que vous soyez là.\nI'm here as a tourist.\tJe suis ici en tant que touriste.\nI'm here to apologize.\tJe suis ici pour présenter mes excuses.\nI'm home all the time.\tJe suis à la maison tout le temps.\nI'm joking, of course.\tJe plaisante, bien sûr.\nI'm just a normal guy.\tJe suis juste un type normal.\nI'm just being honest.\tJe suis simplement franc.\nI'm just being honest.\tJe suis simplement franche.\nI'm just doing my job.\tJe ne fais que mon travail.\nI'm late for practice.\tJe suis en retard pour l'entraînement.\nI'm leaving it to you.\tJe te le laisse.\nI'm leaving it to you.\tJe vous laisse ça.\nI'm leaving on Sunday.\tJe pars dimanche.\nI'm looking for a job.\tJe cherche du travail.\nI'm looking for a job.\tJe cherche un emploi.\nI'm not a disbeliever.\tJe ne suis pas incroyant.\nI'm not a drug addict.\tJe ne suis pas un drogué.\nI'm not a drug addict.\tJe ne suis pas une droguée.\nI'm not a drug addict.\tJe ne suis pas un toxico.\nI'm not a drug addict.\tJe ne suis pas une toxico.\nI'm not a kid anymore.\tJe ne suis plus un enfant.\nI'm not a millionaire.\tJe ne suis pas millionnaire.\nI'm not afraid at all.\tJe n'ai absolument pas peur.\nI'm not afraid of you.\tJe n'ai pas peur de vous.\nI'm not afraid to die.\tJe n'ai pas peur de mourir.\nI'm not afraid to try.\tJe n'ai pas peur d'essayer.\nI'm not all that busy.\tJe ne suis pas si occupé que ça.\nI'm not all that busy.\tJe ne suis pas si occupée que ça.\nI'm not an only child.\tJe ne suis pas un enfant unique.\nI'm not an only child.\tJe ne suis pas une enfant unique.\nI'm not angry anymore.\tJe n'ai plus faim.\nI'm not at all afraid.\tJe n'ai pas peur du tout.\nI'm not at all hungry.\tJe n'ai pas faim du tout.\nI'm not done with you.\tJe n'en ai pas fini avec toi.\nI'm not done with you.\tJe n'en ai pas fini avec vous.\nI'm not done with you.\tMoi je n'en ai pas fini avec toi.\nI'm not done with you.\tMoi je n'en ai pas fini avec vous.\nI'm not entirely sure.\tJe ne suis pas entièrement sûr.\nI'm not entirely sure.\tJe ne suis pas entièrement sûre.\nI'm not entirely sure.\tJe n'en suis pas entièrement sûr.\nI'm not entirely sure.\tJe n'en suis pas entièrement sûre.\nI'm not following you.\tJe ne te suis pas.\nI'm not giving up yet.\tJe ne vais pas encore abandonner.\nI'm not going outside.\tJe ne sors pas.\nI'm not going to look.\tJe ne vais pas regarder.\nI'm not going to lose.\tJe ne vais pas perdre.\nI'm not going to stop.\tJe ne vais pas m'arrêter.\nI'm not going to talk.\tJe ne vais pas discuter.\nI'm not going to wait.\tJe ne vais pas attendre.\nI'm not going to work.\tJe ne vais pas travailler.\nI'm not here to fight.\tJe ne suis pas là pour me bagarrer.\nI'm not here to fight.\tJe ne suis pas là pour me battre.\nI'm not hungry anyway.\tJe n'ai pas faim, de toutes manières.\nI'm not hungry at all.\tJe n'ai pas faim du tout.\nI'm not hungry either.\tJe n'ai pas faim non plus.\nI'm not in any danger.\tJe ne cours pas le moindre danger.\nI'm not in good shape.\tJe ne suis pas en forme.\nI'm not narrow-minded.\tJe ne suis pas étroit d'esprit.\nI'm not narrow-minded.\tJe ne suis pas étroite d'esprit.\nI'm not on duty today.\tJe ne suis pas en service aujourd'hui.\nI'm not one to gossip.\tJe ne suis pas une commère.\nI'm not proud of that.\tJe n'en suis pas fier.\nI'm not proud of that.\tJe n'en suis pas fière.\nI'm not really hungry.\tJe n'ai pas vraiment faim.\nI'm not scared to die.\tJe ne crains pas de mourir.\nI'm not sleeping well.\tJe ne dors pas bien.\nI'm not sure about it.\tJe n'en suis pas sûr.\nI'm not sure about it.\tJe n'en suis pas sûre.\nI'm not too convinced.\tJe n'en suis pas trop convaincu.\nI'm not too convinced.\tJe n'en suis pas trop convaincue.\nI'm not uncomfortable.\tJe ne me sens pas mal à l'aise.\nI'm not unsympathetic.\tJe n'y suis pas hostile.\nI'm not very athletic.\tJe ne suis pas très athlétique.\nI'm not wearing socks.\tJe ne porte pas de chaussettes.\nI'm not young anymore.\tJe ne suis plus tout jeune.\nI'm not young anymore.\tJe ne suis plus toute jeune.\nI'm not your daughter.\tJe ne suis pas ta fille.\nI'm not your daughter.\tJe ne suis pas votre fille.\nI'm on my lunch break.\tJe suis en pause déjeuner.\nI'm on my way to work.\tJe suis sur le chemin du travail.\nI'm on my way to work.\tJe suis en chemin pour mon travail.\nI'm out of place here.\tJe ne suis pas à ma place, ici.\nI'm playing a TV game.\tJe joue à un jeu télévisé.\nI'm playing a TV game.\tJe joue à un jeu sur console.\nI'm proud of you guys.\tJe suis fier de vous, les mecs.\nI'm proud of you guys.\tJe suis fier de vous, les gars.\nI'm proud of you guys.\tJe suis fière de vous, les mecs.\nI'm rarely this angry.\tJe suis rarement autant en colère.\nI'm ready for a break.\tJe suis prêt pour une pause.\nI'm really not hungry.\tJe n'ai vraiment pas faim.\nI'm scared of heights.\tJ'ai peur de la hauteur.\nI'm sick of this game.\tJ'en ai marre de ce jeu.\nI'm sorry I'm so late.\tJe suis désolé d'être en retard.\nI'm staying out of it.\tJe ne veux pas m'en mêler.\nI'm still your friend.\tJe suis toujours ton ami.\nI'm still your friend.\tJe suis toujours ton amie.\nI'm still your friend.\tJe suis toujours votre ami.\nI'm still your friend.\tJe suis toujours votre amie.\nI'm sure I'll be fine.\tJe suis sûr que ça ira bien pour moi.\nI'm sure I'll be fine.\tJe suis sûre que ça ira bien pour moi.\nI'm sure that's wrong.\tJe suis sûre que c'est faux.\nI'm sure that's wrong.\tJe suis sûr que que c'est mal.\nI'm sure that's wrong.\tJe suis sûr que c'est faux.\nI'm sure we all agree.\tJe suis sûr que nous sommes tous d'accord.\nI'm sure we all agree.\tJe suis sûre que nous sommes toutes d'accord.\nI'm swamped with work.\tJe suis submergé de travail.\nI'm taking a vacation.\tJe prends des vacances.\nI'm taking care of it.\tJe m'en occupe.\nI'm terrible at chess.\tJe suis mauvais aux échecs.\nI'm thinking of going.\tJe songe à y aller.\nI'm three blocks away.\tJ'habite à trois pâtés de maison d'ici.\nI'm to blame, not you.\tC'est ma faute, pas la tienne.\nI'm too sleepy to eat.\tJ'ai trop sommeil pour manger.\nI'm too tired to walk.\tJe suis trop fatigué pour marcher.\nI'm trying not to cry.\tJ'essaye de ne pas pleurer.\nI'm used to the noise.\tJe suis habitué au bruit.\nI'm very drawn to you.\tVous m'attirez beaucoup.\nI'm very drawn to you.\tJe suis très attirée par toi.\nI'm very drawn to you.\tJe suis très attirée par vous.\nI'm waiting for lunch.\tJ'attends le déjeuner.\nI'm worried about him.\tJe suis inquiet pour lui.\nI'm worried about you.\tJe m'inquiète pour toi.\nI've already paid you.\tJe vous ai déjà payé.\nI've already paid you.\tJe t'ai déjà payé.\nI've already paid you.\tJe vous ai déjà payée.\nI've already paid you.\tJe vous ai déjà payés.\nI've already paid you.\tJe vous ai déjà payées.\nI've already paid you.\tJe t'ai déjà payée.\nI've always been here.\tJ'ai toujours été là.\nI've always loved you.\tJe t'ai toujours aimé.\nI've always loved you.\tJe t'ai toujours aimée.\nI've always loved you.\tJe vous ai toujours aimé.\nI've always loved you.\tJe vous ai toujours aimée.\nI've always loved you.\tJe vous ai toujours aimés.\nI've always loved you.\tJe vous ai toujours aimées.\nI've been out of town.\tJe n'étais pas en ville.\nI've been there a lot.\tJ'y ai beaucoup été.\nI've been to the mall.\tJ'ai été à la galerie commerciale.\nI've done this before.\tJ'ai fait ça auparavant.\nI've done this before.\tJ'ai déjà fait ça.\nI've given up smoking.\tJ'ai arrêté de fumer.\nI've given up smoking.\tJ'ai cessé de fumer.\nI've got places to go.\tJ'ai des endroits où aller.\nI've got things to do.\tJ'ai des choses à faire.\nI've got to get going.\tIl faut que j'y aille.\nI've got to get going.\tIl me faut y aller.\nI've got to get going.\tIl me faut m'en aller.\nI've got to get going.\tIl faut que je m'en aille.\nI've got to get going.\tIl faut que je me mette en route.\nI've got two brothers.\tJ'ai deux frères.\nI've had a good sleep.\tJ'ai bien dormi.\nI've had a good sleep.\tJ'ai passé une bonne nuit.\nI've had a tough year.\tJ'ai eu une année difficile.\nI've heard everything.\tJ'ai tout entendu.\nI've lost my strength.\tJ'ai perdu ma force.\nI've made my decision.\tJe me suis décidé.\nI've never been there.\tJe n'y ai jamais été.\nI've run out of money.\tJe suis tombé à court d'argent.\nI've seen this before.\tJ'ai vu ça auparavant.\nI've seen this before.\tJe l'ai vu auparavant.\nI've started bleeding.\tJe commençai à saigner.\nI've started bleeding.\tJ'ai commencé à saigner.\nI've taken care of it.\tJe m'en suis occupé.\nI've tried everything.\tJ'ai tout essayé.\nI've tried everything.\tJ'ai tout tenté.\nI've worked very hard.\tJ'ai travaillé très dur.\nIf not now, then when?\tSi pas maintenant, alors quand ?\nIf you wish, I'll ask.\tSi tu veux, je poserai la question.\nIf you're tired, rest.\tSi tu es fatigué, repose-toi !\nIf you're tired, rest.\tSi tu es fatiguée, repose-toi !\nIf you're tired, rest.\tSi vous êtes fatigué, reposez-vous !\nIf you're tired, rest.\tSi vous êtes fatiguée, reposez-vous !\nIf you're tired, rest.\tSi vous êtes fatigués, reposez-vous !\nIf you're tired, rest.\tSi vous êtes fatiguées, reposez-vous !\nIn fact, he loves her.\tEn fait, il l'aime.\nIs Mary a real blonde?\tEst-ce que Marie est une vraie blonde?\nIs Okayama a big city?\tEst-ce qu'Okayama est une grande ville ?\nIs Tom ready for this?\tTom est-il prêt pour ça ?\nIs Tom ready for this?\tTom est-il prêt pour ceci ?\nIs Tom very mad at me?\tTom est-il très en colère contre moi ?\nIs all this necessary?\tTout ceci est-il nécessaire ?\nIs anything happening?\tQuoi que ce soit est-il en train d'avoir lieu ?\nIs anything happening?\tQuoi que ce soit est-il en train de se passer ?\nIs anything happening?\tQuoi que ce soit est-il en train de se produire ?\nIs everybody on board?\tTout le monde est-il à bord ?\nIs everyone all right?\tTout le monde va-t-il bien ?\nIs he afraid of death?\tA-t-il peur de la mort ?\nIs it OK if I hug you?\tPuis-je vous enlacer ?\nIs it Tuesday already?\tSommes-nous déjà mardi ?\nIs it a boy or a girl?\tUn garçon ou une fille ?\nIs it a boy or a girl?\tEst-ce un garçon ou une fille ?\nIs it a direct flight?\tEst-ce un vol direct ?\nIs it an action movie?\tC'est un film d'action ?\nIs it an action movie?\tEst-ce un film d'action ?\nIs it an action movie?\tS'agit-il d'un film d'action ?\nIs it really all over?\tTout est vraiment fini ?\nIs it really possible?\tEst-ce vraiment possible ?\nIs it really worth it?\tCela en vaut-il vraiment la peine ?\nIs it too far to walk?\tEst-ce trop loin pour marcher ?\nIs it worth it or not?\tCela vaut-il le coup ou non ?\nIs it your helicopter?\tC'est votre hélicoptère ?\nIs someone meeting us?\tQuelqu'un va-t-il nous rencontrer ?\nIs someone meeting us?\tQuelqu'un doit-il nous rencontrer ?\nIs sugar cane a fruit?\tEst-ce-que la canne à sucre est un fruit ?\nIs that a bullet hole?\tEst-ce un trou causé par une balle ?\nIs that bothering you?\tCela vous tracasse-t-il ?\nIs that bothering you?\tCela te tracasse-t-il ?\nIs that clock working?\tCette montre fonctionne-t-elle ?\nIs that so hard to do?\tEst-ce si difficile à faire?\nIs that still my room?\tEst-ce encore là ma chambre ?\nIs that thing working?\tEst-ce que ce truc fonctionne ?\nIs that thing working?\tEst-ce que cette chose marche ?\nIs that what he wants?\tEst-ce là ce qu'il veut ?\nIs that what you said?\tEst-ce ce que tu as dit ?\nIs that what you said?\tEst-ce ce que vous avez dit ?\nIs that what you want?\tEst-ce là ce que tu veux ?\nIs that what you want?\tEst-ce là ce que vous voulez ?\nIs that why they died?\tEst-ce là pourquoi ils sont morts ?\nIs that why they died?\tEst-ce là pourquoi elles sont mortes ?\nIs that why they died?\tEst-ce là la raison de leurs morts ?\nIs that your own idea?\tEst-ce là ta propre idée ?\nIs that your own idea?\tCette idée est-elle la vôtre ?\nIs that your umbrella?\tEst-ce là votre parapluie ?\nIs that your umbrella?\tEst-ce là ton parapluie ?\nIs there a difference?\tY a-t-il une différence ?\nIs there a school bus?\tY a-t-il un bus scolaire ?\nIs there anybody left?\tReste-t-il qui que ce soit ?\nIs there enough gravy?\tY a-t-il suffisamment de sauce ?\nIs there life on Mars?\tY a-t-il de la vie sur Mars ?\nIs there no other way?\tN'y a-t-il pas d'autre manière ?\nIs there some ketchup?\tY a-t-il du ketchup ?\nIs there someone else?\tY-a-t'il quelqu'un d'autre?\nIs this a coincidence?\tEst-ce une simple coïncidence?\nIs this a gift for me?\tEst-ce un cadeau pour moi ?\nIs this what you want?\tEst-ce là ce que vous voulez ?\nIs this what you want?\tEst-ce là ce que tu veux ?\nIs this what you want?\tEst-ce là ce que vous voulez ?\nIs this your umbrella?\tEst-ce ton parapluie ?\nIs tomorrow a holiday?\tDemain est-il un jour férié ?\nIs tomorrow a holiday?\tC'est férié, demain ?\nIs your baby sleeping?\tEst-ce que votre bébé dort ?\nIs your baby sleeping?\tVotre bébé dort-il ?\nIs your daughter here?\tVotre fille est-elle là ?\nIs your daughter here?\tTa fille est-elle là ?\nIs your headache gone?\tTa migraine est passée ?\nIs your watch correct?\tVotre montre est-elle exacte ?\nIs your watch correct?\tTa montre est-elle exacte ?\nIsn't it your day off?\tC'est pas ton jour de repos ?\nIsn't life just great?\tLa vie n'est-elle pas simplement fantastique ?\nIsn't life just great?\tLa vie n'est-elle pas simplement formidable ?\nIsn't that irritating?\tN'est-ce pas agaçant?\nIt all depends on Tom.\tTout dépend de Tom.\nIt came as a surprise.\tC'est arrivé par surprise.\nIt can be frustrating.\tÇa peut être frustrant.\nIt could be dangerous.\tÇa pourrait être dangereux.\nIt could be dangerous.\tCela pourrait être dangereux.\nIt could have been me.\tÇa aurait pu être moi.\nIt could rain tonight.\tIl se pourrait qu'il pleuve ce soir.\nIt didn't hurt at all.\tÇa n'a pas fait mal du tout.\nIt didn't really hurt.\tÇa n'a pas vraiment fait mal.\nIt doesn't look right.\tÇa n'a pas l'air juste.\nIt doesn't look right.\tÇa n'a pas l'air correct.\nIt feels like a dream.\tOn dirait un rêve.\nIt feels like a dream.\tOn se croit dans un rêve.\nIt feels like a dream.\tOn se sent comme dans un rêve.\nIt frosted last night.\tIl a gelé la nuit dernière.\nIt gave me the creeps.\tCela me donne la chair de poule.\nIt gave me the creeps.\tÇa m'a foutu les jetons.\nIt happened very fast.\tÇa s'est passé très vite.\nIt happened very fast.\tÇa s'est produit très rapidement.\nIt happened very fast.\tC'est survenu très rapidement.\nIt happened very fast.\tC'est arrivé très vite.\nIt has been confirmed.\tCela a été confirmé.\nIt has been wonderful.\tÇa a été merveilleux.\nIt is a luxury cruise.\tC'est une croisière de luxe.\nIt is a very sad tale.\tC'est une bien triste histoire.\nIt is a very sad tale.\tC'est une histoire très triste.\nIt is beyond my power.\tCeci est en dehors de mon pouvoir.\nIt is good to see you.\tC'est bon de te voir.\nIt is good to see you.\tC'est bon de vous voir.\nIt is still too early.\tIl est encore trop tôt.\nIt is too hot to work.\tIl fait trop chaud pour travailler.\nIt is too late for me.\tC'est trop tard pour moi.\nIt is true in a sense.\tC'est vrai, en un sens.\nIt is true in a sense.\tEn un sens, c'est vrai.\nIt is under the chair.\tIl est sous la chaise.\nIt is under the chair.\tElle est sous la chaise.\nIt is very cold today.\tIl fait très froid aujourd'hui.\nIt is what I would do.\tC'est ce que je ferais.\nIt just doesn't count.\tÇa ne compte pas.\nIt just doesn't count.\tÇa ne compte tout simplement pas.\nIt looks great so far.\tÇa a l'air très bien jusqu'à présent.\nIt made me very happy.\tÇa m'a rendu très heureux.\nIt made me very happy.\tÇa m'a rendue très heureuse.\nIt may not be a dream.\tIl se peut que ce ne soit pas un rêve.\nIt might prove useful.\tÇa peut se révéler utile.\nIt might snow tonight.\tIl va peut-être neiger ce soir.\nIt reminded me of you.\tÇa m'a rappelé toi.\nIt reminded me of you.\tÇa m'a rappelé vous.\nIt reminded me of you.\tÇa m'a fait penser à toi.\nIt reminded me of you.\tÇa m'a fait penser à vous.\nIt reminded me of you.\tÇa m'a fait me souvenir de toi.\nIt reminded me of you.\tÇa m'a fait me souvenir de vous.\nIt scared me, too, OK?\tMoi aussi, j'ai eu peur. D'accord ?\nIt seemed appropriate.\tÇa semblait approprié.\nIt seemed appropriate.\tÇa paraissait approprié.\nIt seems quiet enough.\tÇa a l'air assez calme.\nIt seems warm outside.\tIl a l'air de faire bon dehors.\nIt serves our purpose.\tÇa sert notre objectif.\nIt smells like bleach.\tÇa sent comme la javel.\nIt started as a hobby.\tÇa a commencé comme un passe-temps.\nIt started as a hobby.\tÇa commença comme un passe-temps.\nIt tastes really good.\tC'est très bon.\nIt was Saturday night.\tC'était samedi soir.\nIt was a church event.\tC'était un événement religieux.\nIt was a forced smile.\tC'était un sourire emprunté.\nIt was a forced smile.\tC'était un sourire forcé.\nIt was a huge project.\tC'était un gros projet.\nIt was a huge success.\tCe fut un immense succès.\nIt was a huge success.\tÇa a été un immense succès.\nIt was a terrible day.\tCe fut un jour terrible.\nIt was cold yesterday.\tIl faisait froid hier.\nIt was extremely cold.\tIl faisait extrêmement froid.\nIt was hot last night.\tIl faisait chaud la nuit dernière.\nIt was no one's fault.\tCe n'était la faute de personne.\nIt was not conclusive.\tCe ne fut pas concluant.\nIt was not conclusive.\tÇa n'a pas été concluant.\nIt was not unexpected.\tCe n'était pas inattendu.\nIt was pretty obvious.\tC'était assez évident.\nIt was quite pleasant.\tCe fut assez agréable.\nIt was quite pleasant.\tÇa a été assez agréable.\nIt was real hard work.\tC'était vraiment un travail difficile.\nIt was three days ago.\tC'était il y a trois jours.\nIt was time for lunch.\tC'était l'heure du déjeuner.\nIt was time for lunch.\tC'était l'heure de déjeuner.\nIt was very beautiful.\tC'était très beau.\nIt was very beautiful.\tC'était fort beau.\nIt was very beautiful.\tCe fut très beau.\nIt was very beautiful.\tCe fut fort beau.\nIt was very difficult.\tC'était très difficile.\nIt wasn't an accident.\tCe n'était pas un accident.\nIt wasn't an accident.\tCe ne fut pas un accident.\nIt wasn't an accident.\tÇa n'a pas été un accident.\nIt will be ready soon.\tBientôt prêt.\nIt will clear up soon.\tÇa va bientôt s'éclaircir.\nIt will probably rain.\tIl pleuvra probablement.\nIt won't be that hard.\tCe ne sera pas si difficile.\nIt won't be that hard.\tCe ne sera pas si dur.\nIt won't happen again.\tÇa n'arrivera plus.\nIt won't happen again.\tÇa ne se produira plus.\nIt won't stop raining.\tIl pleut sans arrêt.\nIt won't take so long.\tÇa ne prendra pas tellement de temps.\nIt'll definitely rain.\tIl va certainement pleuvoir.\nIt'll definitely rain.\tIl va sûrement pleuvoir.\nIt'll definitely rain.\tIl pleuvra assurément.\nIt's Claudine's house.\tC'est la maison de Claudine.\nIt's Tom on the phone.\tC'est Tom au téléphone.\nIt's a common mistake.\tC'est une erreur commune.\nIt's a common mistake.\tC'est une erreur classique.\nIt's a cultural thing.\tC'est quelque chose de culturel.\nIt's a matter of time.\tC'est une question de temps.\nIt's a necessary evil.\tC'est un mal nécessaire.\nIt's a nice day today.\tC'est une belle journée, aujourd'hui.\nIt's a one-time offer.\tC'est une proposition inédite.\nIt's a quarter to two.\tIl est treize heures quarante-cinq.\nIt's a social problem.\tC'est un problème de société.\nIt's a social problem.\tC'est un problème social.\nIt's a very sad story.\tC'est une fort triste histoire.\nIt's about five miles.\tÇa fait à peu près 5 miles.\nIt's about to explode!\tC'est sur le point d'exploser !\nIt's all been written.\tTout a été écrit.\nIt's all in my report.\tTout est dans mon rapport.\nIt's all in your head.\tTout ça est dans ta tête.\nIt's all in your head.\tTout ça est dans votre tête.\nIt's all quite simple.\tTout est assez simple.\nIt's all so senseless.\tTout est si dépourvu de sens.\nIt's all that matters.\tC'est tout ce qui compte.\nIt's all work-related.\tTout est lié au travail.\nIt's almost Christmas.\tC'est bientôt Noël.\nIt's already too late.\tC'est déjà trop tard.\nIt's bad for business.\tC'est mauvais pour les affaires.\nIt's beautifully made.\tC'est de belle facture.\nIt's been a long time.\tÇa fait un bail.\nIt's cold around here.\tIl fait froid par ici.\nIt's driving me crazy.\tÇa me rend dingue.\nIt's easy to remember.\tC'est facile à retenir.\nIt's easy to remember.\tC'est facile de s'en souvenir.\nIt's extremely unfair.\tC'est extrêmement injuste.\nIt's for the children.\tC'est pour les enfants.\nIt's freezing in here.\tÇa pèle, là-dedans !\nIt's freezing in here.\tÇa caille, là-dedans !\nIt's freezing outside.\tIl gèle dehors.\nIt's going to be fine.\tÇa va aller.\nIt's going to explode!\tÇa va exploser !\nIt's insanely complex.\tC'est à y perdre son latin.\nIt's insanely complex.\tC'est d'une complexité délirante.\nIt's just a formality.\tCe n'est qu'une formalité.\nIt's just a formality.\tC'est juste une formalité.\nIt's my favorite food.\tC'est ma nourriture préférée.\nIt's nice to meet you.\tJe suis heureuse de vous rencontrer.\nIt's not a fair fight.\tCe n'est pas un combat loyal.\nIt's not an emergency.\tIl ne s'agit pas d'une urgence.\nIt's not for everyone.\tCe n'est pas pour tout le monde.\nIt's not hard to find.\tCe n'est pas difficile à trouver.\nIt's not looking good.\tÇa ne se présente pas bien.\nIt's not quite normal.\tCe n'est pas tout à fait normal.\nIt's not that strange.\tCe n'est pas si étrange.\nIt's not what we want.\tCe n'est pas ce que nous voulons.\nIt's not why I'm here.\tCe n'est pas pour cela que je suis là.\nIt's not why I'm here.\tCe n'est pas ma raison d'être ici.\nIt's nothing personal.\tÇa n'a rien de personnel.\nIt's one of our rules.\tC'est l'une de nos règles.\nIt's our duty to help.\tIl est de notre devoir d'aider.\nIt's really cool here.\tC'est vraiment relaxant, ici.\nIt's really cool here.\tC'est vraiment détendu, ici.\nIt's really cool here.\tC'est vraiment frais, ici.\nIt's really hot there.\tIl y fait vraiment chaud.\nIt's really hot there.\tIl fait vraiment chaud, là-bas.\nIt's really hot today.\tIl fait vraiment chaud aujourd'hui.\nIt's really stressful.\tC'est vraiment stressant.\nIt's self-explanatory.\tÇa tombe sous le sens.\nIt's self-explanatory.\tÇa se passe d'explications.\nIt's so different now.\tC'est tellement différent, maintenant.\nIt's starting to snow.\tIl se met à neiger.\nIt's starting to snow.\tIl commence à neiger.\nIt's the best we have.\tC'est le meilleur que nous avons.\nIt's the best we have.\tC'est la meilleure que nous avons.\nIt's the perfect size.\tC'est la taille idéale.\nIt's time for a break.\tIl est temps de faire une pause.\nIt's up to you and me.\tC'est à toi et moi de voir.\nIt's up to you and me.\tCela dépend de toi et moi.\nIt's up to you and me.\tC'est comme nous voulons toi et moi.\nIt's very easy to use.\tC'est très facile à employer.\nIt's very easy to use.\tC'est très facile à utiliser.\nIt's very easy to use.\tC'est très facile d'emploi.\nIt's very interesting.\tC'est très intéressant.\nIt's very interesting.\tC'est fort intéressant.\nIt's very kind of you.\tC'est très gentil de ta part.\nIt's very kind of you.\tC'est très gentil de votre part.\nIt's very kind of you.\tC'est fort gentil de votre part.\nIt's what we expected.\tC'est ce à quoi nous nous attendions.\nIt's what you deserve.\tC'est ce que tu mérites.\nIt's what you deserve.\tC'est ce que vous méritez.\nIt's your only chance.\tC'est votre unique occasion.\nIt's your only chance.\tC'est ton unique occasion.\nIt's your only chance.\tC'est ta seule chance.\nJupiter is very large.\tJupiter est très grand.\nJust a moment, please.\tAttendez un moment s'il vous plait.\nJust do what you want.\tFais ce que tu veux.\nJust do what you want.\tFaites ce que vous voulez.\nJust get back to work.\tRetournez juste au travail !\nJust get back to work.\tRetourne juste au travail !\nJust let me walk away.\tLaisse-moi m'en aller !\nJust turn this handle.\tTourne juste cette poignée !\nJust turn this handle.\tTournez juste cette poignée !\nJust use mine for now.\tUtilise simplement le mien, pour le moment !\nJust use mine for now.\tUtilisez simplement le mien, pour le moment !\nKeep in touch with me.\tRestez en contact avec moi.\nKeep it together, Tom.\tTiens le coup, Tom.\nKeep it together, Tom.\tNe craque pas, Tom.\nKeep it together, Tom.\tGarde ton calme, Tom.\nKeep next Sunday free.\tGarde dimanche prochain de libre.\nKeep up the good work.\tContinuez le bon boulot.\nKeep up the good work.\tContinue le bon boulot.\nKeep your eyes peeled!\tOuvre grands les yeux !\nKeep your hands clean.\tGarde les mains propres.\nKeep your hands clean.\tGardez les mains propres.\nKeep your hands still.\tNe bouge pas les mains.\nKids do stupid things.\tLes enfants font des choses stupides.\nKids do stupid things.\tLes enfants font des trucs stupides.\nLast night I threw up.\tLa nuit dernière, j'ai vomi.\nLawyers are all liars.\tLes avocats sont tous des menteurs.\nLawyers are all liars.\tTous les avocats sont des menteurs.\nLay down on the couch.\tAllonge-toi sur le canapé !\nLay down on the couch.\tAllongez-vous sur le canapé !\nLeave my camera alone.\tLaisse mon appareil photo tranquille.\nLeave my family alone.\tLaissez ma famille tranquille !\nLeave my family alone.\tLaisse ma famille tranquille !\nLeave my things alone.\tLaisse mes affaires tranquilles.\nLet in some fresh air.\tFaites entrer un peu d'air frais.\nLet me call my lawyer.\tLaissez-moi appeler mon avocat !\nLet me call my lawyer.\tLaisse-moi appeler mon avocat !\nLet me deal with this.\tLaisse-moi m'en charger !\nLet me deal with this.\tLaissez-moi m'en charger !\nLet me do the cooking.\tLaissez-moi faire la cuisine.\nLet me do the talking.\tLaisse-moi parler.\nLet me do the talking.\tLaisse-moi palabrer.\nLet me give you a hug.\tLaisse-moi te serrer dans mes bras.\nLet me give you a hug.\tLaissez-moi vous serrer dans mes bras.\nLet me think a minute.\tLaissez-moi réfléchir une minute !\nLet me think a minute.\tLaisse-moi réfléchir une minute !\nLet me think about it.\tLaisse-moi y réfléchir.\nLet sleeping dogs lie.\tIl ne faut pas réveiller le chien qui dort.\nLet some fresh air in.\tLaisse entrer un peu d'air frais.\nLet the children play.\tLaissons les enfants jouer.\nLet them do their job.\tLaissez-les faire leur travail !\nLet them do their job.\tLaissez-les faire leur boulot !\nLet's ask the teacher.\tDemandons au professeur.\nLet's ask the teacher.\tDemandons à l'institutrice.\nLet's ask the teacher.\tDemandons à l'instituteur.\nLet's build something.\tConstruisons quelque chose !\nLet's dance, shall we?\tDansons, voulez-vous ?\nLet's dance, shall we?\tDansons, veux-tu ?\nLet's drink some beer.\tBuvons de la bière.\nLet's eat out tonight.\tCe soir, mangeons dehors.\nLet's escape together.\tÉvadons-nous ensemble !\nLet's get off the bus.\tDescendons du bus.\nLet's go in my office.\tAllons dans mon bureau.\nLet's go to the beach.\tAllons à la plage.\nLet's have lunch here.\tDéjeunons ici.\nLet's help each other.\tAidons-nous les uns les autres !\nLet's hit the showers.\tAllons prendre une douche.\nLet's hit the showers.\tAllons nous doucher.\nLet's hope this works.\tEspérons que ceci marche.\nLet's leave her alone.\tLaissons-la tranquille.\nLet's meet again soon.\tRevoyons-nous bientôt.\nLet's meet on Tuesday.\tVoyons-nous mardi.\nLet's not do the work.\tNe faisons pas le travail.\nLet's not do the work.\tN'effectuons pas le travail.\nLet's not forget that.\tNe l'oublions pas !\nLet's not talk to her.\tNe lui parlons pas.\nLet's open the window.\tOuvrons la fenêtre !\nLet's play a new game.\tJouons à un nouveau jeu.\nLet's play dodge ball.\tJouons à la balle au prisonnier.\nLet's play volleyball.\tJouons au volley.\nLet's review Lesson 5.\tRévisons la leçon 5.\nLet's share the money.\tPartageons l'argent !\nLet's start the party.\tQue la fête commence.\nLet's start with beer.\tCommençons par de la bière !\nLet's talk man to man.\tParlons d'homme à homme.\nLet's travel together.\tVoyageons ensemble.\nLife could be so easy.\tLa vie pourrait être tellement facile.\nLife is unpredictable.\tLa vie est imprévisible.\nLike father, like son.\tTel père, tel fils.\nLike father, like son.\tTel père, tel fils !\nListen to your mother.\tÉcoute ta mère !\nListen to your mother.\tÉcoutez votre mère !\nLook at that building.\tRegarde ce bâtiment.\nLook at that mountain.\tRegarde cette montagne.\nLook at that mountain.\tRegardez cette montagne.\nLook at the next page.\tRegardez la page suivante.\nLook, I'm really busy.\tÉcoute, je suis très occupé.\nMake up your own mind.\tDécide-toi par toi-même !\nMake up your own mind.\tDécidez-vous par vous-même !\nMake yourself at home.\tFaites comme chez vous.\nMake yourself at home.\tFais comme chez toi.\nMany people are upset.\tDe nombreuses personnes sont fâchées.\nMany people are upset.\tDe nombreuses personnes sont contrariées.\nMarriage is a lottery.\tLe mariage est une loterie.\nMary has her problems.\tMarie a ses propres problèmes.\nMary isn't Tom's wife.\tMarie n'est pas la femme de Tom.\nMay I borrow this pen?\tPuis-je emprunter ce stylo ?\nMay I borrow your car?\tPourrais-je emprunter votre voiture ?\nMay I do it right now?\tPuis-je le faire sur-le-champ ?\nMay I do it right now?\tPuis-je le faire immédiatement ?\nMay I do it right now?\tPuis-je le faire sans attendre ?\nMay I escort you home?\tPuis-je vous raccompagner chez vous ?\nMay I have a road map?\tPuis-je avoir une carte routière ?\nMay I have this dance?\tM'accordez-vous cette danse ?\nMay I lie on the sofa?\tEst-ce que je peux m'allonger sur le sofa ?\nMay I open the window?\tPuis-je ouvrir la fenêtre ?\nMay I sit next to you?\tPuis-je m'asseoir près de vous ?\nMay I sit next to you?\tPuis-je m'asseoir auprès de vous ?\nMay I sit next to you?\tPuis-je m'asseoir près de toi ?\nMay I sit next to you?\tPuis-je m'asseoir auprès de toi ?\nMay I sit next to you?\tPuis-je m'asseoir à ton côté ?\nMay I sit next to you?\tPuis-je m'asseoir à votre côté ?\nMay I use this pencil?\tPuis-je utiliser ce crayon ?\nMay I use your toilet?\tPuis-je utiliser vos toilettes ?\nMay I use your toilet?\tPuis-je utiliser tes toilettes ?\nMay comes after April.\tMai se trouve après avril.\nMay comes after April.\tMai vient après avril.\nMaybe I need a lawyer.\tPeut-être ai-je besoin d'un avocat.\nMaybe we can fix this.\tNous pouvons peut-être réparer ceci.\nMaybe we can fix this.\tNous pouvons peut-être corriger ceci.\nMaybe we should start.\tPeut-être devrions-nous commencer.\nMaybe we should start.\tPeut-être devrions-nous démarrer.\nMaybe you can help us.\tPeut-être pouvez-vous nous aider.\nMaybe you can help us.\tPeut-être peux-tu nous aider.\nMeeting girls is hard.\tRencontrer des filles est difficile.\nMight I ask your name?\tPuis-je vous demander votre nom ?\nMom didn't mention it.\tMaman ne l'avait pas mentionné.\nMoney opens all doors.\tL'argent ouvre toutes les portes.\nMoney rules the world.\tL'argent régit le monde.\nMy back is killing me.\tJ'ai un mal de dos épouvantable.\nMy baggage is missing.\tMes bagages manquent.\nMy baggage is missing.\tMes bagages sont manquants.\nMy bicycle has a flat.\tMa bicyclette a un pneu à plat.\nMy bicycle has a flat.\tMon vélo a un pneu à plat.\nMy bicycle was stolen.\tMon vélo a été volé.\nMy brother is healthy.\tMon frère est en bonne santé.\nMy car is not running.\tMa voiture ne fonctionne pas.\nMy car isn't for sale.\tMa voiture n'est pas à vendre.\nMy car ran out of gas.\tMa voiture était à court d'essence.\nMy cat died yesterday.\tMon chat est mort hier soir.\nMy cat died yesterday.\tMon chat est mort hier.\nMy cat will love this.\tMon chat adorera ça.\nMy class was canceled.\tMon cours a été annulé.\nMy class was canceled.\tMon cours fut annulé.\nMy college has a dorm.\tMon université a un dortoir.\nMy college has a dorm.\tMon école dispose d'un dortoir.\nMy dad is very strict.\tMon père est très strict.\nMy father is a doctor.\tMon père est médecin.\nMy father is a doctor.\tMon père est toubib.\nMy father is a doctor.\tMon père est docteur.\nMy father loves pizza.\tMon père aime la pizza.\nMy house is on a hill.\tMa maison se tient sur une colline.\nMy instinct was right.\tMon instinct se révéla juste.\nMy left arm is asleep.\tMon bras gauche est engourdi.\nMy left arm is asleep.\tMon bras gauche est ankylosé.\nMy life was in danger.\tMa vie était en danger.\nMy mother is a lawyer.\tMa mère est avocat.\nMy mother is well off.\tMa mère est riche.\nMy mother is well off.\tMa mère est aisée.\nMy mother makes cakes.\tMa mère fait des gâteaux.\nMy mother makes cakes.\tMa mère confectionne des gâteaux.\nMy mother was furious.\tMa mère était furieuse.\nMy name's on the door.\tMon nom est sur la porte.\nMy nickname is \"Itch.\"\tMon surnom est « Itch ».\nMy nose is stuffed up.\tJ'ai le nez bouché.\nMy parents are asleep.\tMes parents sont endormis.\nMy parents don't know.\tMes parents l'ignorent.\nMy phone doesn't work.\tMon téléphone ne fonctionne pas.\nMy phone is vibrating.\tMon téléphone est en train de vibrer.\nMy right hand is numb.\tMa main droite est ankylosée.\nMy room is just below.\tMa chambre est juste au-dessous.\nMy room is very small.\tMa chambre est très petite.\nMy shoes are worn out.\tMes chaussures sont usées.\nMy sister got engaged.\tMa sœur s'est fiancée.\nMy sister has a piano.\tMa sœur possède un piano.\nMy sister has a piano.\tMa sœur a un piano.\nMy sister often cries.\tMa sœur pleure souvent.\nMy suitcase is broken.\tMa valise est cassée.\nMy toe began to bleed.\tMon doigt de pied s'est mis à saigner.\nMy uncle plays guitar.\tMon oncle joue de la guitare.\nMy uncle runs a hotel.\tMon oncle tient un hôtel.\nMy whole body is sore.\tTout mon corps me fait mal.\nMy whole body is sore.\tTout mon corps est douloureux.\nMy whole body is sore.\tTout mon corps est endolori.\nMy wife is very upset.\tMa femme est très contrariée.\nMy wife is very upset.\tMa femme est très fâchée.\nNail the windows shut.\tClouez les fenêtres !\nNail the windows shut.\tCloue les fenêtres !\nNo doubt he will come.\tIl viendra, c'est sûr.\nNo one agreed with me.\tPersonne n'a été d'accord avec moi.\nNo one agreed with me.\tPersonne ne fut d'accord avec moi.\nNo one cares about us.\tPersonne ne se soucie de nous.\nNo one encouraged her.\tPersonne ne l'a encouragée.\nNo one heard anything.\tPersonne n'a rien entendu.\nNo one heard anything.\tPersonne n'a entendu quoi que ce soit.\nNo one here has a car.\tPersonne ici n'a de voiture.\nNo one here has a car.\tPersonne ici ne dispose de voiture.\nNo one is in the room.\tPersonne ne se trouve dans la pièce.\nNo one knew who I was.\tTout le monde ignorait qui j'étais.\nNo one knew who I was.\tPersonne ne savait qui j'étais.\nNo one knows anything.\tPersonne ne sait quoi que ce soit.\nNo one knows her name.\tPersonne ne sait son nom.\nNo one knows her name.\tPersonne ne connaît son nom.\nNo one knows his name.\tPersonne ne sait son nom.\nNo one knows his name.\tPersonne ne connaît son nom.\nNo one knows the fact.\tPersonne n'est au fait.\nNo one knows the fact.\tPersonne n'est au courant.\nNo one listened to me.\tPersonne ne m'a écouté.\nNo one listened to me.\tPersonne ne m'a écoutée.\nNo one seemed to hear.\tPersonne ne semblait entendre.\nNo one speaks with me.\tPersonne ne me parle.\nNo one wants to fight.\tPersonne ne veut se battre.\nNo one wants to speak.\tPersonne ne veut parler.\nNo one was in the car.\tPersonne ne se trouvait dans la voiture.\nNo tickets are needed.\tAucun ticket n'est nécessaire.\nNobody appreciates me.\tPersonne ne me rend grâce.\nNobody can control us.\tPersonne ne peut nous contrôler.\nNobody cares about me.\tPersonne ne se soucie de moi.\nNobody cares about me.\tPersonne ne se préoccupe de moi.\nNobody does it better.\tPersonne ne le fait mieux.\nNobody encouraged her.\tPersonne ne l'a encouragée.\nNobody encouraged her.\tPersonne ne l'encouragea.\nNobody knows his name.\tPersonne ne sait son nom.\nNobody knows his name.\tPersonne ne connaît son nom.\nNobody likes that guy.\tPersonne n'aime ce type.\nNobody listened to me.\tPersonne ne m'a écouté.\nNobody should've died.\tPersonne n'aurait dû mourir.\nNobody understands it.\tPersonne ne le comprend.\nNobody understands me.\tPersonne ne me comprend.\nNobody wants to do it?\tPersonne ne veut le faire ?\nNobody was interested.\tPersonne n'était intéressé.\nNone of them is alive.\tAucun d'eux n'est en vie.\nNone of us is perfect.\tAucune d'entre nous n'est parfaite.\nNone of us is perfect.\tAucun d'entre nous n'est parfait.\nNone of your business.\tCe ne sont pas tes oignons.\nNot a sound was heard.\tPas un son ne pouvait être entendu.\nNot all birds can fly.\tTous les oiseaux ne peuvent pas voler.\nNot all change is bad.\tTous les changements ne sont pas mauvais.\nNot all change is bad.\tTout changement n'est pas mauvais.\nNot all experts agree.\tTous les experts ne s'accordent pas.\nNothing is ever right.\tRien n'est jamais bien.\nNothing lasts forever.\tRien ne dure pour toujours.\nNothing lasts forever.\tRien ne dure pour l'éternité.\nNuclear power is safe.\tL'énergie nucléaire est sans risque.\nObviously he is wrong.\tIl a tort, à l'évidence.\nObviously, she's sick.\tManifestement, elle est malade.\nOne of my teeth hurts.\tL'une de mes dents me fait mal.\nOnly one man survived.\tUn seul homme a survécu.\nOnly one man survived.\tUn seul homme survécut.\nOpen the door, please.\tOuvrez la porte, s'il vous plaît.\nOpen the door, please.\tVeuillez ouvrir la porte.\nOpen the door, please.\tOuvrez la porte, je vous prie !\nOpen the door, please.\tOuvre la porte, je te prie !\nOur dog has gone away.\tNotre chien est parti.\nOur team won the game.\tNotre équipe a gagné la partie.\nOur water pipes burst.\tNotre canalisation d'eau a explosé.\nPeople laughed at him.\tLes gens se sont moqués de lui.\nPlaying tennis is fun.\tJouer au tennis est amusant.\nPlease allow me to go.\tVeuillez me permettre d'y aller.\nPlease allow me to go.\tPermets-moi d'y aller, je te prie.\nPlease close the door.\tFermez la porte, s'il vous plaît.\nPlease close the door.\tVeuillez fermer la porte.\nPlease close the door.\tFerme la porte, je te prie.\nPlease close the door.\tFerme la porte, s'il te plait.\nPlease close the door.\tJe vous prie de fermer la porte.\nPlease copy this page.\tRecopie cette page s'il te plait.\nPlease copy this page.\tVeuillez copier cette page.\nPlease do it this way.\tFaites comme cela, s'il vous plait.\nPlease do not kill me.\tS'il vous plait, ne me tuez pas.\nPlease do not kill me.\tS'il te plait, ne me tue pas.\nPlease do not kill me.\tJe vous prie de ne pas me tuer.\nPlease give me a call.\tAppelle-moi s'il te plaît.\nPlease give me a hand.\tS'il vous plaît donnez-moi un coup de main.\nPlease go to the bank.\tS'il te plait, va à la banque.\nPlease go to the bank.\tMerci d'aller à la banque.\nPlease go to the bank.\tVeuillez vous rendre à la banque.\nPlease heat the water.\tChauffe l'eau, s'il te plaît !\nPlease heat the water.\tChauffez l'eau, s'il vous plaît !\nPlease leave me alone.\tS'il vous plaît, laissez-moi tranquille.\nPlease let me explain.\tVeuillez me laisser m'expliquer, je vous prie.\nPlease let me explain.\tLaisse-moi m'expliquer, je te prie.\nPlease let me go home.\tS'il vous plait, laissez-moi rentrer chez moi !\nPlease light a candle.\tAllume une bougie, je te prie !\nPlease light a candle.\tAllumez un cierge, je vous prie !\nPlease stop whistling.\tArrête de siffler, je te prie !\nPlease stop whistling.\tArrêtez de siffler, je vous prie !\nPlease take my advice.\tS'il vous plaît, suivez mon conseil.\nPlease think about it.\tPenses-y.\nPlease throw the ball.\tLance la balle, s'il te plait.\nPlease turn on the TV.\tAllume la télévision s'il te plaît.\nPoverty is everywhere.\tLa pauvreté règne partout.\nPrice is not an issue.\tLe prix n'est pas un problème.\nPrices have gone down.\tLes prix ont baissé.\nProper ID is required.\tUne carte d'identité en règle est requise.\nPut down your weapons!\tBas les armes !\nPut it onto the table.\tMets-le sur la table.\nPut it where you like.\tPosez-le où vous voulez.\nPut the baby to sleep.\tAllez coucher le bébé, s'il vous plaît.\nPut them on the table.\tPose-les sur la table.\nPut your coat back on.\tRemets ton manteau.\nRabbits breed quickly.\tLes lapins se reproduisent comme des lapins.\nRed is out of fashion.\tLe rouge n'est plus à la mode.\nRemain seated, please.\tVeuillez rester assis.\nRemain seated, please.\tVeuillez rester assise.\nRemain seated, please.\tVeuillez rester assises.\nRemain seated, please.\tReste assis, je te prie.\nRemain seated, please.\tReste assise, je te prie.\nRemain seated, please.\tRestez assis, je vous prie.\nRemain seated, please.\tRestez assise, je vous prie.\nRemain seated, please.\tRestez assises, je vous prie.\nRemember your promise.\tSouviens-toi de ta promesse !\nRoll down your window.\tBaisse ta fenêtre !\nRoll down your window.\tBaissez votre fenêtre !\nRoll down your window.\tAbaisse ta fenêtre !\nRoll down your window.\tAbaissez votre fenêtre !\nSay it in another way.\tDis-le autrement.\nSay you understand me.\tDis-moi que tu me comprends.\nSchool begins at nine.\tL'école débute à neuf heures.\nSchool starts at 8:40.\tL'école commence à 8:40.\nSend me a new catalog.\tEnvoyez-moi un nouveau catalogue.\nSewing is manual work.\tCoudre, c'est du travail manuel.\nShall I check the oil?\tJe vérifie l'huile ?\nShe accepted his gift.\tElle accepta son cadeau.\nShe achieved her goal.\tElle atteignit son objectif.\nShe achieved her goal.\tElle a atteint son objectif.\nShe acted in the play.\tElle a joué dans la pièce.\nShe acted in the play.\tElle joua dans la pièce.\nShe agreed to my idea.\tElle a accepté mon idée.\nShe almost passed out.\tElle est presque tombée dans les pommes.\nShe almost passed out.\tElle s'est presque évanouie.\nShe altered her plans.\tElle changea ses plans.\nShe altered her plans.\tElle a modifié ses plans.\nShe and I get on well.\tElle et moi nous entendons bien.\nShe answered in tears.\tElle répondit en larmes.\nShe asked me for help.\tElle m'a demandé de l'aide.\nShe attempted suicide.\tElle a essayé de se suicider.\nShe attempted suicide.\tElle a tenté de se suicider.\nShe beat him to death.\tElle le battit à mort.\nShe beat him to death.\tElle l'a battu à mort.\nShe called him a fool.\tElle l'a traité d'idiot.\nShe called him a liar.\tElle l'a traité de menteur.\nShe came out of there.\tElle est venue de là.\nShe can play the drum.\tElle sait jouer de la batterie.\nShe can sew very well.\tElle sait très bien coudre.\nShe caught her breath.\tElle a repris son souffle.\nShe committed a crime.\tElle a commis un crime.\nShe decided not to go.\tElle décida de ne pas y aller.\nShe decided not to go.\tElle décida de ne pas s'y rendre.\nShe decided not to go.\tElle décida de ne pas partir.\nShe decided not to go.\tElle a décidé de ne pas y aller.\nShe decided not to go.\tElle a décidé de ne pas partir.\nShe decided not to go.\tElle a décidé de ne pas s'y rendre.\nShe does not like him.\tElle ne l'apprécie pas.\nShe does not like him.\tElle ne l'aime pas.\nShe felt like dancing.\tElle avait envie de danser.\nShe felt like dancing.\tElle eut envie de danser.\nShe followed him home.\tElle le suivit à la maison.\nShe gave me a present.\tElle m'a donné un cadeau.\nShe gave me a present.\tElle me donna un cadeau.\nShe gave us a present.\tElle nous donna un présent.\nShe got brushed aside.\tElle s'est fait écarter.\nShe got him a new hat.\tElle lui dégota un nouveau chapeau.\nShe got home at seven.\tElle est arrivée chez elle à sept heures.\nShe got me a tiny toy.\tElle m'a acheté un petit jouet.\nShe handed him a book.\tElle lui tendit un livre.\nShe has a good figure.\tElle a une ligne superbe.\nShe has a good figure.\tElle est bien faite.\nShe has a pretty doll.\tElle a une jolie poupée.\nShe has a pretty face.\tElle a un joli visage.\nShe has a small house.\tElle a une petite maison.\nShe has abundant hair.\tElle a une chevelure abondante.\nShe has been to Paris.\tElle a été à Paris.\nShe has gone shopping.\tElle est allée faire les courses.\nShe has gone shopping.\tElle est partie faire des courses.\nShe has gone shopping.\tElle est partie faire des emplettes.\nShe has gone to Italy.\tElle est partie pour l'Italie.\nShe has two daughters.\tElle a deux filles.\nShe hated him so much.\tElle le détestait tant.\nShe helped cook lunch.\tElle aida à préparer le déjeuner.\nShe helped cook lunch.\tElle donna un coup de main pour le repas de midi.\nShe hit the ball hard.\tElle frappa la balle avec force.\nShe ironed his shirts.\tElle repassait ses chemises.\nShe is a good swimmer.\tElle est bonne nageuse.\nShe is a good swimmer.\tC'est une bonne nageuse.\nShe is about to leave.\tElle est sur le point de partir.\nShe is afraid of cats.\tElle a peur des chats.\nShe is afraid of dogs.\tElle a peur des chiens.\nShe is always smoking.\tElle est toujours à fumer.\nShe is as tall as you.\tElle est aussi grande que toi.\nShe is engaged to him.\tC'est sa fiancée.\nShe is gaining weight.\tElle prend du poids.\nShe is good at skiing.\tElle est bonne en ski.\nShe is likely to come.\tElle a l'air de venir.\nShe is related to him.\tElle lui est apparentée.\nShe is sewing a dress.\tElle coud une robe.\nShe is very beautiful.\tElle est très belle.\nShe is weak by nature.\tElle est d'une nature faible.\nShe isn't kind to him.\tElle n'est pas gentille avec lui.\nShe just wrote a book.\tElle vient d'écrire un livre.\nShe left her children.\tElle a abandonné ses enfants.\nShe left her children.\tElle abandonna ses enfants.\nShe likes Russian pop.\tElle aime le pop russe.\nShe lived a long life.\tElle vécut une longue vie.\nShe lives in New York.\tElle vit à New York.\nShe lives in New York.\tElle habite à New York.\nShe looked all around.\tElle regarda tout autour.\nShe looks very afraid.\tElle semble avoir très peur.\nShe misses her father.\tSon père lui manque.\nShe needs to help him.\tIl lui faut l'aider.\nShe never wears green.\tElle ne s'habille jamais en vert.\nShe never wears green.\tElle ne porte jamais de vert.\nShe picked up a stone.\tElle ramassa une pierre.\nShe played the violin.\tElle joua du violon.\nShe played the violin.\tElle a joué du violon.\nShe put it in the box.\tElle l'a mise dans la boîte.\nShe put it in the box.\tElle le mit dans la boîte.\nShe put it in the box.\tElle la mit dans la boîte.\nShe refused his offer.\tElle refusa sa proposition.\nShe returned his kiss.\tElle lui retourna son baiser.\nShe returned to Japan.\tElle retourna au Japon.\nShe returned to Japan.\tElle est retournée au Japon.\nShe said with a smile.\tElle le dit avec un sourire.\nShe screamed for help.\tElle cria à l'aide.\nShe screamed for help.\tElle hurla à l'aide.\nShe seems to be happy.\tElle semble être heureuse.\nShe sings out of tune.\tElle chante faux.\nShe stayed at a hotel.\tElle est restée à l'hôtel.\nShe talked childishly.\tElle parla puérilement.\nShe taught us singing.\tElle nous enseigna à chanter.\nShe teaches us French.\tElle nous apprend le français.\nShe told him to study.\tElle lui enjoignit d'étudier.\nShe took off her coat.\tElle retira son manteau.\nShe took up his offer.\tElle accepta sa proposition.\nShe understands music.\tElle comprend la musique.\nShe wants to kiss him.\tElle veut l'embrasser.\nShe was fully clothed.\tElle était entièrement vêtue.\nShe was fully clothed.\tElle était entièrement habillée.\nShe was kissed by him.\tElle a été embrassée par lui.\nShe was unkind to him.\tElle était méchante envers lui.\nShe watched him dance.\tElle le regarda danser.\nShe watched him dance.\tElle l'a regardé danser.\nShe weeded the garden.\tElle débarrassa le jardin des mauvaises herbes.\nShe weighs 120 pounds.\tElle pèse 120 livres.\nShe went in to get it.\tElle est entrée pour se le procurer.\nShe went to bed early.\tElle s'est couchée de bonne heure.\nShe wept with emotion.\tElle a pleuré d'émotion.\nShe wore a pretty hat.\tElle portait un joli chapeau.\nShe wore a red blouse.\tElle portait un chemisier rouge.\nShe wriggled her toes.\tElle remua les orteils.\nShe wriggled her toes.\tElle a remué les orteils.\nShe's a jealous woman.\tC'est une femme jalouse.\nShe's a single mother.\tElle est mère célibataire.\nShe's had a hard life.\tElle a eu une vie difficile.\nShe's missed the boat.\tElle a loupé le coche.\nShe's my older sister.\tC'est ma sœur aînée.\nShe's not at home now.\tElle n'est pas chez elle, actuellement.\nShe's not in the mood.\tElle n'est pas d'humeur.\nShe's rather clueless.\tElle est plutôt conne.\nShe's smarter than me.\tElle est plus intelligent que moi.\nShe's smartly dressed.\tElle est habillée élégamment.\nShe's still under age.\tElle est encore mineure.\nShe's sure to succeed.\tElle est sûre de réussir.\nShe's taller than him.\tElle est plus grande que lui.\nShe's too old for you.\tElle est trop vieille pour toi.\nShe's too old for you.\tElle est trop vieille pour vous.\nShe's too old for you.\tElle est trop âgée pour toi.\nShe's under the chair.\tElle est sous la chaise.\nShe's upset right now.\tElle est fâchée, là.\nShould we get a table?\tDevrions-nous prendre une table ?\nShouldn't you go home?\tNe devrais-tu pas te rendre chez toi ?\nShouldn't you go home?\tNe devrais-tu pas aller chez toi ?\nShouldn't you go home?\tNe devriez-vous pas vous rendre chez vous ?\nShouldn't you go home?\tNe devriez-vous pas aller chez vous ?\nShow me another watch.\tMontre-moi une autre montre.\nShow me another watch.\tMontrez-moi une autre montre.\nShow me another watch.\tFaites-moi voir une autre montre.\nShow me another watch.\tFais-moi voir une autre montre.\nShow me your passport.\tMontre-moi ton passeport !\nShow me your passport.\tMontrez-moi votre passeport !\nShut the door, please.\tFermez la porte, s'il vous plaît.\nShut the door, please.\tVeuillez fermer la porte.\nShut the door, please.\tFerme la porte, je te prie.\nShut the door, please.\tFerme la porte, s'il te plait.\nShut the door, please.\tJe vous prie de fermer la porte.\nShut the door, please.\tVeuillez fermer la porte !\nShut the door, please.\tFermez la porte, je vous prie !\nShut the door, please.\tFerme la porte, je te prie !\nShut the door, please.\tJe te prie de fermer la porte !\nSit wherever you like.\tAssieds-toi où tu veux !\nSit wherever you like.\tAsseyez-vous où vous voulez !\nSit wherever you like.\tAsseyez-vous où ça vous chante !\nSit wherever you like.\tAsseyez-vous où bon vous semble !\nSmoking is prohibited.\tIl est interdit de fumer.\nSo what're you saying?\tAlors qu'es-tu en train de dire ?\nSo what're you saying?\tAlors qu'êtes-vous en train de dire ?\nSo you give up, right?\tAlors tu as abandonné n'est-ce pas ?\nSomebody poisoned Tom.\tQuelqu'un a empoisonné Tom.\nSomebody stole my car.\tQuelqu'un a volé ma voiture.\nSomebody stole my car.\tQuelqu'un a dérobé ma voiture.\nSomeone asked for you.\tQuelqu'un a demandé après vous.\nSomeone took my place.\tQuelqu'un a pris ma place.\nSomething is odd here.\tIl y a quelque chose de bizarre ici.\nSomething isn't right.\tQuelque chose n'est pas correct.\nSomething smells good.\tQuelque chose sent bon.\nSomething's not right.\tQuelque chose cloche.\nSorry, I've got to go.\tDésolé, je dois partir.\nSpeak a little louder.\tParle un peu plus fort.\nSpeak a little louder.\tParlez un peu plus fort.\nSpeak a little louder.\tParle un tantinet plus fort.\nSpring is coming soon.\tLe printemps approche à grands pas.\nStand the book on end.\tMets le livre à la verticale !\nStay absolutely still.\tReste absolument immobile !\nStay absolutely still.\tRestez absolument immobile !\nStay out of the water.\tRestez en dehors de l'eau !\nStay out of the water.\tReste en dehors de l'eau !\nStick out your tongue.\tMontrez-moi votre langue.\nStick out your tongue.\tTire la langue !\nStill waters run deep.\tLes eaux calmes sont profondes.\nStocks hit a new high.\tLes actions ont atteint un nouveau pic.\nStocks hit a new high.\tLes actions ont atteint un nouveau sommet.\nStop being so curious.\tArrête d'être aussi fouineur.\nStop being so curious.\tArrête d'être aussi fouineuse.\nStop flirting with me.\tArrêtez de me draguer !\nStop flirting with me.\tArrête de me draguer !\nStudy these sentences.\tÉtudie ces phrases.\nStudy these sentences.\tÉtudiez ces phrases.\nSummer has just begun.\tL'été a juste commencé.\nSummer is almost over.\tL'été est bientôt fini.\nSummer is almost over.\tL'été est presque terminé.\nTadpoles become frogs.\tLes têtards deviennent des grenouilles.\nTake a walk every day.\tPromène-toi chaque jour.\nTake a walk every day.\tPromène-toi quotidiennement.\nTake care of yourself.\tPrends soin de toi.\nTake care of yourself.\tPrenez soin de vous.\nTake hold of the rope.\tSaisissez la corde !\nTake hold of the rope.\tSaisis la corde !\nTake me to your place.\tEmmenez-moi chez vous !\nTake me to your place.\tEmmène-moi chez toi !\nTake off your clothes.\tDéfais-toi !\nTake off your clothes.\tDéfaites-vous !\nTake off your clothes.\tRetire tes vêtements !\nTake off your clothes.\tRetirez vos vêtements !\nTake off your clothes.\tÔte tes vêtements !\nTake off your clothes.\tÔtez vos vêtements !\nTears filled her eyes.\tSes yeux se remplirent de larmes.\nTell Tom I'll be back.\tDis à Tom que je vais revenir.\nTell Tom I'll be back.\tDites à Tom que je reviendrai.\nTell Tom I'm not home.\tDites à Tom que je ne suis pas chez moi.\nTell Tom I'm not home.\tDis à Tom que je ne suis pas à la maison.\nTell me how he got it.\tDis-moi comment il l'a eu.\nTell me it's not true.\tDis-moi que ce n'est pas vrai !\nTell me it's not true.\tDites-moi que ce n'est pas vrai !\nTell me what Tom said.\tDites-moi ce que Tom a dit.\nTell me what Tom said.\tDis-moi ce que Tom a dit.\nTell me what happened.\tDis-moi ce qui est arrivé.\nTell me what to think.\tDites-moi que penser !\nTell me what to think.\tDis-moi que penser !\nTell me what you want.\tDis-moi ce que tu veux.\nTell me what you want.\tDites-moi ce que vous voulez.\nTell me when to start.\tDis-moi quand commencer.\nTell me. I'm all ears.\tRaconte-moi, je suis tout ouïe.\nTell the truth to Tom.\tDis la vérité à Tom.\nTell the truth to Tom.\tDites la vérité à Tom.\nTell us the truth now.\tDis-nous la vérité maintenant.\nTests start next week.\tLes testes débutent la semaine prochaine.\nThank you all so much.\tMerci à tous, tellement.\nThank you for calling.\tMerci d'avoir appelé.\nThank you for waiting.\tMerci d'avoir attendu.\nThanks for joining us.\tMerci de te joindre à nous.\nThanks for joining us.\tMerci de vous joindre à nous.\nThanks for the advice.\tMerci pour le conseil !\nThanks to both of you.\tMerci à vous deux.\nThanks, but no thanks.\tNon merci.\nThat can be a problem.\tCela peut être un problème.\nThat can be a problem.\tÇa peut être un problème.\nThat cannot be denied.\tOn ne peut pas dire le contraire.\nThat car is quite new.\tLa voiture est assez neuve.\nThat cost him his job.\tCela lui coûta son poste.\nThat could be helpful.\tÇa pourrait être utile.\nThat didn't take long.\tÇa n'a pas duré longtemps.\nThat dog is so stupid.\tCe chien est tellement idiot.\nThat game was awesome.\tCette partie était géniale.\nThat gave Tom an idea.\tCela donné une idée à Tom.\nThat guy is an outlaw.\tCe type est un bandit.\nThat house is haunted.\tCette maison est hantée.\nThat is an old camera.\tC'est un vieil appareil photo.\nThat is an old castle.\tC'est un vieux château.\nThat is my dictionary.\tC'est mon dictionnaire.\nThat is my own affair.\tC'est mon affaire à moi.\nThat is very exciting.\tC'est très excitant.\nThat joke isn't funny.\tCette blague n'est pas drôle.\nThat kiss was amazing.\tCe baiser était fantastique.\nThat kiss was amazing.\tCe baiser était incroyable.\nThat made me very sad.\tCela me rendit très triste.\nThat made me very sad.\tÇa me rendit très triste.\nThat made me very sad.\tCela m'a rendu très triste.\nThat made me very sad.\tCela m'a rendue très triste.\nThat made me very sad.\tÇa m'a rendu très triste.\nThat made me very sad.\tÇa m'a rendue très triste.\nThat makes more sense.\tÇa a davantage de sens.\nThat man is a soldier.\tL'homme est soldat.\nThat man is a soldier.\tCet homme est soldat.\nThat man is dangerous.\tCet homme est dangereux.\nThat might be serious.\tIl se pourrait que ce soit sérieux.\nThat noise woke me up.\tCe bruit me réveilla.\nThat noise woke me up.\tCe bruit m'a réveillé.\nThat one is all yours.\tCelui-ci est tout à toi.\nThat one is all yours.\tCelui-ci est tout à vous.\nThat really scares me.\tÇa me fait vraiment peur.\nThat seems like a lot.\tÇa semble être beaucoup.\nThat should be enough.\tÇa devrait le faire.\nThat should be enough.\tÇa devrait suffire.\nThat was a cheap shot.\tCe fut une bassesse.\nThat was a cheap shot.\tC'était une bassesse.\nThat was a close call.\tOn l'a échappée belle.\nThat was a funny joke.\tC'était une blague drôle.\nThat was a lot of fun.\tC'était très marrant.\nThat was great advice.\tCe furent d'excellents conseils.\nThat was kind of mean.\tC'était plutôt méchant.\nThat was kind of rude.\tC'était plutôt grossier.\nThat was unbelievable.\tC'était incroyable.\nThat wasn't very nice.\tCe n'était pas très sympa.\nThat water pipe leaks.\tLe tuyau d'eau fuit.\nThat wouldn't help me.\tÇa ne m'aiderait pas.\nThat's a lot of money.\tC'est beaucoup d'argent.\nThat's all I remember.\tC'est tout ce dont je me souviens.\nThat's all I remember.\tC'est tout ce que je me rappelle.\nThat's all we can ask.\tC'est tout ce que nous pouvons demander.\nThat's all we do here.\tC'est tout ce que nous faisons ici.\nThat's all you can do.\tC'est tout ce que tu peux faire.\nThat's all you can do.\tC'est tout ce que vous pouvez faire.\nThat's enough for now.\tC'en est assez pour le moment.\nThat's fantastic news.\tC'est super.\nThat's fantastic news.\tC'est une bonne nouvelle.\nThat's good, isn't it?\tC'est bien, non ?\nThat's how I feel now.\tC'est ainsi que je me sens actuellement.\nThat's how it started.\tC'est ainsi que ça commença.\nThat's how it started.\tC'est ainsi que ça a commencé.\nThat's just not right.\tC'est simplement incorrect.\nThat's my final offer.\tC'est ma dernière offre.\nThat's not acceptable.\tCe n'est pas acceptable.\nThat's not big enough.\tCe n'est pas assez grand.\nThat's not even funny.\tCe n'est même pas drôle.\nThat's not how I feel.\tCe n'est pas ce que je ressens.\nThat's not my concern.\tCe n'est pas mon problème.\nThat's not my opinion.\tCe n'est pas mon opinion.\nThat's not quite true.\tCe n'est pas tout à fait vrai.\nThat's not reasonable.\tCe n'est pas raisonnable.\nThat's not surprising.\tCe n'est pas surprenant.\nThat's not the answer.\tCe n'est pas la réponse.\nThat's not very funny.\tCe n'est pas très drôle.\nThat's not what I saw.\tCe n'est pas ce que j'ai vu.\nThat's not your fault.\tCe n'est pas de ta faute.\nThat's not your fault.\tCe n'est pas de votre faute.\nThat's open to debate.\tC'est ouvert au débat.\nThat's rather amusing.\tC'est plutôt amusant.\nThat's really awesome.\tC'est vraiment génial.\nThat's the last straw!\tC'est la goutte qui fait déborder le vase !\nThat's the tough part.\tC'est la partie difficile.\nThat's their strategy.\tC'est leur stratégie.\nThat's very good news.\tCe sont d'excellentes nouvelles.\nThat's very good news.\tCe sont là d'excellentes nouvelles.\nThat's what I believe.\tC'est ce que je crois.\nThat's what I figured.\tC'est ce que je me suis imaginé.\nThat's what I thought.\tC'est ce que je pensais.\nThat's what you think.\tC'est ce que tu penses.\nThat's where we'll go.\tC'est là que nous irons.\nThat's why I love you.\tC'est pour ça que je t'aime.\nThat's why I was late.\tC'est pourquoi je suis en retard.\nThat's why I'm so fat.\tC'est pourquoi je suis si gros.\nThat's why we're here.\tC'est pourquoi nous sommes ici.\nThe airport is closed.\tL'aéroport est fermé.\nThe baby smiled at me.\tLe bébé me sourit.\nThe beach was crowded.\tLa plage était bondée.\nThe birds are singing.\tLes oiseaux chantent.\nThe black one is mine.\tLe noir est à moi.\nThe bookstore is open.\tLa librairie est ouverte.\nThe boy was shirtless.\tLe garçon était torse nu.\nThe boys built a raft.\tLes garçons construisirent un radeau.\nThe boys built a raft.\tLes garçons ont construit un radeau.\nThe boys were injured.\tLes garçons ont été blessés.\nThe brake didn't work.\tLe frein n'a pas fonctionné.\nThe cake is delicious.\tLe gâteau est délicieux.\nThe candle burned out.\tLa chandelle s'est consumée.\nThe candle burned out.\tLa bougie s'est consumée.\nThe car doesn't start.\tLa voiture ne démarre pas.\nThe cat is in the box.\tLe chat est dans la caisse.\nThe children are cold.\tLes enfants ont froid.\nThe children are safe.\tLes enfants sont en sécurité.\nThe circus is in town.\tLe cirque est en ville.\nThe clock has stopped.\tL'horloge s'est arrêtée.\nThe danger is minimal.\tLe danger est minimum.\nThe door clicked shut.\tLa porte se ferma en cliquetant.\nThe door doesn't lock.\tLa porte ne se ferme pas.\nThe door was unlocked.\tLa porte était déverrouillée.\nThe doors were closed.\tLes portes étaient fermées.\nThe doors were closed.\tLes portes étaient closes.\nThe drawer won't open.\tLe tiroir ne veut pas s'ouvrir.\nThe feeling is mutual.\tLe sentiment est réciproque.\nThe files are missing.\tLes dossiers sont manquants.\nThe files are missing.\tLes fichiers sont manquants.\nThe food is delicious.\tLa nourriture est délicieuse.\nThe girls are excited.\tLes filles sont enthousiastes.\nThe girls are excited.\tLes filles sont excitées.\nThe goldfish is alive.\tLe poisson rouge est vivant.\nThe hotel burned down.\tL'hôtel a été réduit en cendres.\nThe hotel burned down.\tL'hôtel fut réduit en cendres.\nThe house caught fire.\tLa maison prit feu.\nThe house caught fire.\tLa maison a pris feu.\nThe hunter shot a fox.\tLe chasseur a tué un renard.\nThe ice is very thick.\tLa glace est très épaisse.\nThe kettle is boiling.\tLa bouilloire est en ébullition.\nThe knife isn't sharp.\tLe couteau n'est pas aiguisé.\nThe man lost all hope.\tL'homme perdit tout espoir.\nThe man lost all hope.\tL'homme a perdu tout espoir.\nThe meat is expensive.\tLa viande est chère.\nThe meeting went well.\tLa réunion s'est bien passée.\nThe mistakes are mine.\tAu temps pour moi.\nThe moon has come out.\tLa lune est apparue.\nThe moon has come out.\tLa lune a fait son apparition.\nThe mountain is green.\tLa montagne est verte.\nThe news made her sad.\tLa nouvelle l'a rendue triste.\nThe old man looks sad.\tLe vieil homme a l'air triste.\nThe old man looks sad.\tLe vieil homme semble triste.\nThe pain is agonizing.\tLa douleur est insoutenable.\nThe pizza tasted good.\tLa pizza était bonne.\nThe pond has dried up.\tL'étang s'est asséché.\nThe pond is very deep.\tL'étang est très profond.\nThe problem is solved.\tLe problème est réglé.\nThe radio is too loud.\tLa radio est trop forte.\nThe rain is wonderful.\tLa pluie est merveilleuse.\nThe rain made me late.\tLa pluie m'a mis en retard.\nThe rent is very high.\tLe loyer est très élevé.\nThe risk is too great.\tLe risque est trop grand.\nThe risk is too great.\tLe risque est trop élevé.\nThe risk is too great.\tLe risque en est trop élevé.\nThe room is too small.\tLa chambre est trop petite.\nThe rumors were false.\tLes rumeurs ne s'avérèrent pas.\nThe rumors were false.\tLes rumeurs étaient fausses.\nThe same applies here.\tIl en va de même ici.\nThe same goes for Tom.\tIl en va de même pour Tom.\nThe sky's clear today.\tAujourd'hui, le ciel est clair.\nThe soap hurt my eyes.\tLe savon me piqua les yeux.\nThe soap hurt my eyes.\tLe savon m'a piqué les yeux.\nThe soldiers are dead.\tLes soldats sont morts.\nThe streets are clean.\tLes rues sont propres.\nThe sun has gone down.\tLe soleil s'est couché.\nThe sun is in the sky.\tLe Soleil est dans le ciel.\nThe sun is rising now.\tLe soleil se lève à présent.\nThe sun will set soon.\tLe soleil va bientôt se coucher.\nThe sun will soon set.\tLe soleil va bientôt se coucher.\nThe thief ran quickly.\tLe voleur courait rapidement.\nThe tide is coming in.\tLa marée monte.\nThe town is beautiful.\tLa bourgade est belle.\nThe town was deserted.\tLa ville était déserte.\nThe town was deserted.\tLa ville était désertée.\nThe train has arrived.\tLe train est arrivé.\nThe tubes are clogged.\tLes tubes sont bouchés.\nThe two brothers died.\tLes deux frères sont morts.\nThe vote is unanimous.\tLe vote est unanime.\nThe war ended in 1954.\tLa guerre a fini en 1954.\nThe water is lukewarm.\tL'eau est tiède.\nThe weather was ideal.\tLe temps était idéal.\nThe wind blew all day.\tLe vent souffla tout le jour.\nThe wind blew all day.\tLe vent a soufflé toute la journée.\nThe women are working.\tLes femmes sont au travail.\nThe women are working.\tLes femmes travaillent.\nThe world has changed.\tLe monde a changé.\nThe young girl sighed.\tLa jeune fille poussa un soupir.\nTheir car passed ours.\tLeur voiture a doublé la nôtre.\nTheir son grew bigger.\tLeur fils a grandi.\nThere are no problems.\tIl n'y a pas de problème.\nThere are no problems.\tIl n'y a aucun problème.\nThere are three of us.\tNous sommes trois.\nThere is no milk left.\tIl n'y a plus de lait.\nThere is no milk left.\tIl ne reste plus de lait.\nThere is no one there.\tIl n'y a personne.\nThere is no one there.\tIl n'y a personne, là.\nThere is no other way.\tIl n'y a pas d'autre moyen.\nThere is no other way.\tIl n'y a pas d'autre possibilité.\nThere is no salt left.\tIl n'y a plus de sel.\nThere is nothing here.\tIl n'y a rien ici.\nThere isn't much time.\tIl n'y a pas beaucoup de temps.\nThere was another one.\tIl y en avait un autre.\nThere was another one.\tIl y en avait une autre.\nThere was another one.\tIl y en a eu un autre.\nThere was another one.\tIl y en a eu une autre.\nThere was no bathroom.\tIl n'y avait pas de salle-de-bain.\nThere was no one home.\tIl n'y avait personne à la maison.\nThere was no response.\tIl n'y eut pas de réponse.\nThere was no response.\tIl n'y a pas eu de réponse.\nThere'll be a problem.\tIl y aura un problème.\nThere's a yellow rose.\tVoici une rose jaune.\nThere's no danger now.\tIl n'y a plus de danger maintenant.\nThere's no difference.\tIl n'y a pas de différence.\nThere's no free lunch.\tOn ne rase pas gratis.\nThere's no way to win.\tIl n'y a pas moyen de gagner.\nThere's no wind today.\tIl n'y a pas de vent aujourd'hui.\nThere's nothing there.\tIl n'y a rien ici.\nThere's nothing there.\tIl n'y a rien là.\nThese aren't my ideas.\tCe ne sont pas mes idées.\nThese books are heavy.\tCes livres sont lourds.\nThese boxes are heavy.\tCes boîtes sont lourdes.\nThese boxes are heavy.\tCes caisses sont lourdes.\nThey all looked happy.\tIls avaient l'air tous contents.\nThey all looked happy.\tIls avaient l'air tous satisfaits.\nThey all looked happy.\tElles avaient l'air toutes contentes.\nThey all looked happy.\tElles avaient l'air toutes satisfaites.\nThey are all the same.\tIls sont tous les mêmes.\nThey are out shopping.\tIls sont sortis faire les magasins.\nThey are out shopping.\tElles sont sorties faire les magasins.\nThey are the same age.\tIls sont du même âge.\nThey are the same age.\tIls ont le même âge.\nThey arrived too soon.\tIls sont arrivés trop tôt.\nThey arrived too soon.\tElles sont arrivées trop tôt.\nThey arrived too soon.\tIls arrivèrent trop tôt.\nThey arrived too soon.\tElles arrivèrent trop tôt.\nThey ate marshmallows.\tElles ont mangé des guimauves.\nThey can't all be bad.\tIls ne peuvent pas tous être mauvais.\nThey can't all be bad.\tElles ne peuvent pas toutes être mauvaises.\nThey can't be ignored.\tIls ne peuvent être ignorés.\nThey can't be ignored.\tElles ne peuvent pas être ignorées.\nThey can't believe it.\tIls n'arrivent pas à y croire.\nThey can't believe it.\tElles n'arrivent pas à y croire.\nThey couldn't help us.\tIls ne pouvaient pas nous aider.\nThey couldn't help us.\tElles ne pouvaient pas nous aider.\nThey couldn't help us.\tIls ne pourraient pas nous aider.\nThey couldn't help us.\tElles ne pourraient pas nous aider.\nThey did not go there.\tElles ne s'y sont pas rendues.\nThey don't have a car.\tIls n'ont pas de voiture.\nThey don't have a car.\tElles n'ont pas de voiture.\nThey don't have a car.\tIls ne disposent pas de voiture.\nThey don't have a car.\tElles ne disposent pas de voiture.\nThey found each other.\tIls se sont trouvés.\nThey found each other.\tElles se sont trouvées.\nThey found each other.\tIls se trouvèrent.\nThey found each other.\tElles se trouvèrent.\nThey found him guilty.\tElles l'ont jugé coupable.\nThey found him guilty.\tIls l'ont trouvé coupable.\nThey ganged up on him.\tIls se liguèrent contre lui.\nThey ganged up on him.\tIls se sont ligués contre lui.\nThey hated each other.\tIls se haïssaient l'un l'autre.\nThey hated each other.\tIls se détestaient.\nThey huddled together.\tIls se blottirent les uns contre les autres.\nThey huddled together.\tIls se blottirent l'un contre l'autre.\nThey huddled together.\tElles se blottirent les unes contre les autres.\nThey huddled together.\tElles se blottirent l'une contre l'autre.\nThey huddled together.\tIls se sont blottis l'un contre l'autre.\nThey huddled together.\tElles se sont blotties les unes contre les autres.\nThey huddled together.\tElles se sont blotties l'une contre l'autre.\nThey huddled together.\tIls se sont blottis les uns contre les autres.\nThey lie all the time.\tIls mentent tout le temps.\nThey lie all the time.\tElles mentent tout le temps.\nThey loaded the truck.\tIls ont chargé le camion.\nThey loaded the truck.\tElles ont chargé le camion.\nThey made me go there.\tIls m'ont fait aller là.\nThey made me go there.\tIls m'y ont fait aller.\nThey made me go there.\tIls me forcèrent à y aller.\nThey made me go there.\tIls m'ont forcé à y aller.\nThey made me go there.\tIls m'y firent aller.\nThey meet once a week.\tIls se rencontrent une fois par semaine.\nThey meet once a week.\tIls se voient une fois par semaine.\nThey missed the train.\tIls manquèrent le train.\nThey must be replaced.\tIls doivent être remplacés.\nThey must be replaced.\tIl faut les remplacer.\nThey never drink beer.\tIls ne boivent jamais de la bière.\nThey never tell a lie.\tIls ne mentent jamais.\nThey sat side by side.\tIls s'assirent côte à côte.\nThey sat under a tree.\tIls s'assirent sous un arbre.\nThey sat up all night.\tIls sont restés assis toute la nuit.\nThey saw us yesterday.\tIls nous ont vus hier.\nThey saw us yesterday.\tIls nous ont vues hier.\nThey saw us yesterday.\tElles nous ont vus hier.\nThey saw us yesterday.\tElles nous ont vues hier.\nThey shared the money.\tIls partagèrent l'argent.\nThey shared the money.\tElles partagèrent l'argent.\nThey shared the money.\tIls ont partagé l'argent.\nThey shared the money.\tElles ont partagé l'argent.\nThey shouted for help.\tElles hurlèrent au secours.\nThey shouted for help.\tIls crièrent à l'aide.\nThey stopped laughing.\tIls arrêtèrent de rire.\nThey stopped laughing.\tIls se sont arrêtés de rigoler.\nThey talked all night.\tIls parlèrent toute la nuit.\nThey talked all night.\tIls ont parlé toute la nuit.\nThey think it's a toy.\tIls pensent que c'est un jouet.\nThey told me about it.\tIls me l'ont dit.\nThey told me about it.\tIls m'en ont parlé.\nThey told me about it.\tElles m'en ont parlé.\nThey told me about it.\tElles me l'ont dit.\nThey told me about it.\tIls m'en parlèrent.\nThey told me about it.\tElles m'en parlèrent.\nThey used truth serum.\tIls ont employé du sérum de vérité.\nThey used truth serum.\tIls employèrent du sérum de vérité.\nThey used truth serum.\tElles ont employé du sérum de vérité.\nThey used truth serum.\tElles employèrent du sérum de vérité.\nThey wash their hands.\tElles se lavent les mains.\nThey went to bed late.\tElles se sont couchées tard.\nThey were all friends.\tIls étaient tous amis.\nThey were all friends.\tElles étaient toutes amies.\nThey were all smiling.\tIls souriaient tous.\nThey were all smiling.\tElles souriaient toutes.\nThey were not pleased.\tIls ne furent pas contents.\nThey were not pleased.\tElles ne furent pas contentes.\nThey were unimpressed.\tIls n'ont pas été impressionnés.\nThey were unimpressed.\tIls ne furent pas impressionnés.\nThey were unimpressed.\tElles n'ont pas été impressionnées.\nThey were unimpressed.\tElles ne furent pas impressionnées.\nThey will never agree.\tIls ne tomberont jamais d'accord.\nThey worked like bees.\tElles travaillaient comme des abeilles.\nThey worked like bees.\tIls travaillaient comme des abeilles.\nThey'll never make it.\tIls n'y parviendront jamais.\nThey'll never make it.\tIls n'y arriveront jamais.\nThey'll never make it.\tElles n'y parviendront jamais.\nThey'll understand us.\tElles nous comprendront.\nThey're able students.\tCe sont des étudiants capables.\nThey're afraid of him.\tElles ont peur de lui.\nThey're afraid of him.\tIls ont peur de lui.\nThey're all terrified.\tIls sont tous terrifiés.\nThey're all terrified.\tElles sont toutes terrifiées.\nThey're coming for me.\tIls viennent pour moi.\nThey're coming for me.\tElles viennent pour moi.\nThey're coming for us.\tIls viennent nous chercher.\nThey're coming for us.\tElles viennent nous chercher.\nThey're in the garden.\tIls sont au jardin.\nThey're in the garden.\tElles sont au jardin.\nThey're in the shower.\tIls sont dans la douche.\nThey're in the shower.\tElles sont dans la douche.\nThey're in the shower.\tElles sont sous la douche.\nThey're in the shower.\tIls sont sous la douche.\nThey're just students.\tCe sont juste des étudiants.\nThey're just students.\tCe ne sont que des étudiants.\nThey're just students.\tCe ne sont que des étudiantes.\nThey're just students.\tCe sont juste des étudiantes.\nThey're not criminals.\tCe ne sont pas des criminels.\nThey're not criminals.\tCe ne sont pas des criminelles.\nThey're not expensive.\tIls ne sont pas chers.\nThey're not expensive.\tElles ne sont pas chères.\nThey're not expensive.\tElles ne sont pas onéreuses.\nThey're not following.\tIls ne sont pas en train de suivre.\nThey're not following.\tElles ne sont pas en train de suivre.\nThey're playing chess.\tIls jouent aux échecs.\nThey're up to no good.\tIls ne mijotent rien de bon.\nThey're up to no good.\tIls vont faire des conneries.\nThey're up to no good.\tIls préparent un mauvais tour.\nThey're up to no good.\tIls font des affaires pas correctes.\nThink of your brother.\tPensez à votre frère !\nThink of your brother.\tPense à ton frère !\nThink outside the box.\tSortez du cadre !\nThink outside the box.\tSors du cadre !\nThirty isn't that old.\tTrente ans, ce n'est pas si vieux.\nThis banana is rotten.\tCette banane est pourrie.\nThis blouse is cotton.\tCe chemisier est en coton.\nThis car handles well.\tCette voiture se manie bien.\nThis chair is plastic.\tCette chaise est en plastique.\nThis could be serious.\tÇa pourrait être sérieux.\nThis data is outdated.\tCes données sont obsolètes.\nThis dog is a mongrel.\tCe chien est un bâtard.\nThis food is terrible.\tCette nourriture est infecte.\nThis guy is an outlaw.\tCe type est un bandit.\nThis heater burns gas.\tLe radiateur fonctionne à l'essence.\nThis house is haunted.\tCette maison est hantée.\nThis is a Chinese fan.\tC'est un éventail chinois.\nThis is a big problem.\tC'est un gros problème.\nThis is a big project.\tC'est un gros projet.\nThis is a big project.\tIl s'agit d'un gros projet.\nThis is a coincidence.\tC'est une coïncidence.\nThis is a company car.\tC'est une voiture de fonction.\nThis is a dirty movie.\tC'est un film dégueulasse.\nThis is a free ticket.\tC'est un ticket gratuit.\nThis is a good system.\tC'est un bon système.\nThis is a spotted dog.\tC'est un chien tacheté.\nThis is all a mistake.\tTout est une erreur.\nThis is all our fault.\tTout est de notre faute.\nThis is an apple tree.\tC'est un pommier.\nThis is an apple, too.\tÇa aussi c'est une pomme.\nThis is an epic novel.\tC'est un roman épique.\nThis is an old letter.\tC'est une vieille lettre.\nThis is based on fact.\tÇa se base sur des faits.\nThis is for everybody.\tC'est pour tout le monde.\nThis is for my friend.\tCeci est pour mon ami.\nThis is for my friend.\tC'est pour mon ami.\nThis is for my friend.\tC'est pour mon amie.\nThis is for my friend.\tCeci est pour mon amie.\nThis is how I made it.\tVoici comment je l'ai fait.\nThis is how I made it.\tVoici comment je le fis.\nThis is how I made it.\tC'est comme ça que je le fis.\nThis is how I made it.\tC'est comme ça que je l'ai fait.\nThis is how I made it.\tVoici comment je l'ai confectionné.\nThis is how I made it.\tC'est comme ça que je le confectionnai.\nThis is inappropriate.\tC'est inapproprié.\nThis is my dictionary.\tC'est mon dictionnaire.\nThis is my first time.\tC'est, pour moi, la première fois.\nThis is my last offer.\tC'est ma dernière offre.\nThis is my last offer.\tC'est mon ultime offre.\nThis is not happening.\tÇa ne se produit pas.\nThis is not my ticket.\tCe n'est pas mon ticket.\nThis is not true love.\tCe n'est pas du véritable amour.\nThis is our main goal.\tCeci est notre objectif principal.\nThis is our only hope.\tC'est notre seul espoir.\nThis is our only hope.\tC'est notre unique espoir.\nThis is so depressing.\tC'est tellement déprimant.\nThis is something new.\tC'est quelque chose de nouveau.\nThis is the last game.\tC'est la dernière manche.\nThis is the last game.\tC'est la dernière partie.\nThis is the last game.\tC'est le dernier jeu.\nThis is the last time.\tC'est la dernière fois.\nThis is truly amazing.\tC'est vraiment incroyable.\nThis is very exciting.\tC'est très excitant.\nThis isn't my problem.\tCe n'est pas mon problème.\nThis made me very sad.\tCela me rendit très triste.\nThis made me very sad.\tÇa me rendit très triste.\nThis made me very sad.\tCela m'a rendu très triste.\nThis made me very sad.\tCela m'a rendue très triste.\nThis made me very sad.\tÇa m'a rendu très triste.\nThis made me very sad.\tÇa m'a rendue très triste.\nThis makes me curious.\tÇa excite ma curiosité.\nThis makes me curious.\tÇa éveille ma curiosité.\nThis mink cost $3,000.\tCe vison coûte 3000 dollars.\nThis movie is rated R.\tCe film est classé X.\nThis news is official.\tCette nouvelle est officielle.\nThis one is all yours.\tCelui-ci est tout à toi.\nThis one is all yours.\tCelui-ci est tout à vous.\nThis one is all yours.\tCelui-ci est entièrement à toi.\nThis one is all yours.\tCelui-ci est entièrement à vous.\nThis party is awesome.\tCette fête est géniale.\nThis pear smells nice.\tCette poire sent bon.\nThis road is terrible.\tCette route est redoutable.\nThis room is for VIPs.\tCette pièce est pour les personnalités.\nThis room is for rent.\tCette chambre est à louer.\nThis should be plenty.\tÇa devrait être amplement suffisant.\nThis should be plenty.\tÇa devrait largement suffire.\nThis spoon is for tea.\tCette cuillère est pour le thé.\nThis string is strong.\tCette corde est solide.\nThis stuff is amazing.\tCe truc est stupéfiant.\nThis sure tastes good!\tÇa a vraiment bon goût !\nThis tea is very good.\tCe thé est très bon.\nThis textbook is good.\tCe manuel est bon.\nThis was a great idea.\tC'était une brillante idée.\nThis was a great idea.\tCe fut une brillante idée.\nThis was not the deal.\tÇa n'était pas le contrat.\nThis work doesn't pay.\tCe travail ne paie pas.\nThis work doesn't pay.\tCe boulot ne paie pas.\nThose are empty words.\tCe sont des mots vides de sens.\nThose are my trousers.\tC'est mon pantalon.\nThose photos are hers.\tCes photos-là sont les siennes.\nTime cures all things.\tLe temps guérit toutes les plaies.\nTime heals all wounds.\tLe temps guérit toutes les plaies.\nTime heals all wounds.\tLe temps soulage toutes les plaies.\nTime waits for no one.\tLe temps file et n'attend personne.\nTips are not accepted.\tLes pourboires ne sont pas acceptés.\nToday is October 11th.\tNous sommes aujourd'hui le onze octobre.\nToday is my lucky day.\tAujourd'hui est mon jour de chance.\nToday is not your day.\tCe n'est pas ton jour.\nTom always works hard.\tTom travaille toujours d'arrache-pied.\nTom and I are buddies.\tTom et moi sommes copains.\nTom and I are buddies.\tTom et moi sommes potes.\nTom asked for a raise.\tTom a demandé une augmentation.\nTom became a minister.\tTom est devenu ministre.\nTom boarded the plane.\tTom monta à bord de l'avion.\nTom boiled some water.\tTom a fait bouillir un peu d'eau.\nTom borrowed my ruler.\tTom a emprunté ma règle.\nTom bought a used car.\tTom a acheté une voiture d'occasion.\nTom brought Mary here.\tTom amena Marie ici.\nTom brought a blanket.\tTom a apporté une couverture.\nTom buttoned his coat.\tTom boutonna son manteau.\nTom buttoned his coat.\tTom a boutonné son manteau.\nTom can count on Mary.\tTom peut compter sur Mary.\nTom can't be far away.\tTom ne doit pas être bien loin.\nTom can't play tennis.\tTom ne sait pas jouer au tennis.\nTom can't ride a bike.\tTom ne sait pas faire du vélo.\nTom caught a big fish.\tTom a attrapé un gros poisson.\nTom collects antiques.\tTom collectionne les antiquités.\nTom comes from Boston.\tTom vient de Boston.\nTom corrected himself.\tTom s’est corrigé tout seul.\nTom corrected himself.\tTom s’est corrigé lui-même\nTom could barely walk.\tTom pouvait à peine marcher.\nTom cried all morning.\tTom a pleuré toute la matinée.\nTom cried all morning.\tTom pleura toute la matinée.\nTom didn't drink much.\tTom n'a pas beaucoup bu.\nTom didn't feel tired.\tTom ne s'est pas senti fatigué.\nTom didn't get caught.\tTom ne s'est pas fait prendre.\nTom didn't trust Mary.\tTom n'a pas fait confiance à Mary.\nTom does it very well.\tTom le fait très bien.\nTom doesn't like beef.\tTom n'aime pas la viande de bœuf.\nTom doesn't live here.\tTom ne vit pas ici.\nTom doesn't live here.\tTom n'habite pas ici.\nTom doesn't play golf.\tTom ne joue pas au golf.\nTom doesn't seem busy.\tTom n'a pas l'air d'être occupé.\nTom doesn't want kids.\tTom ne veut pas d'enfants.\nTom eats very quickly.\tTom mange très vite.\nTom folded his sheets.\tTom a plié ses draps.\nTom folded his shirts.\tTom plia ses chemises.\nTom folded his shirts.\tTom a plié ses chemises.\nTom found the problem.\tTom trouva le problème.\nTom found the problem.\tTom a trouvé le problème.\nTom gave me this book.\tTom me donna ce livre.\nTom gave me this book.\tTom m'a donné ce livre.\nTom gets on my nerves.\tTom me tape sur les nerfs.\nTom got a lucky break.\tTom a eu de la chance.\nTom greeted us warmly.\tTom nous accueillit chaleureusement.\nTom grew up in Boston.\tTom a vécu à Boston.\nTom has a loose tooth.\tTom a une dent qui bouge.\nTom has a plan, right?\tTom a un plan, n'est-ce pas ?\nTom has a thick beard.\tTom a une barbe touffue.\nTom has back problems.\tTom a des problèmes de dos.\nTom has gained weight.\tTom a pris du poids.\nTom has just resigned.\tTom vient de démissionner.\nTom has lots of money.\tTom a beaucoup d'argent.\nTom has three sisters.\tTom a trois sœurs.\nTom hasn't apologized.\tTom ne s'est pas excusé.\nTom hid behind a tree.\tTom se cacha derrière un arbre.\nTom hid behind a tree.\tTom s'est caché derrière un arbre.\nTom is Mary's fiancé.\tTom est le fiancé de Marie.\nTom is Mary's stepson.\tTom est le beau-fils de Mary.\nTom is a bit paranoid.\tTom est un peu paranoïaque.\nTom is a fast learner.\tTom apprend vite.\nTom is a good student.\tTom est un bon étudiant.\nTom is a handsome guy.\tTom est un beau mec.\nTom is a handsome man.\tTom est un bel homme.\nTom is a sheep farmer.\tTom est un éleveur de moutons.\nTom is a very shy boy.\tTom est un garçon très timide.\nTom is also an artist.\tTom est aussi artiste.\nTom is always working.\tTom travaille toujours.\nTom is always working.\tTom travaille tout le temps.\nTom is as old as Mary.\tTom est aussi âgé que Marie.\nTom is average height.\tTom a une taille moyenne.\nTom is claustrophobic.\tTom est claustrophobe.\nTom is dreaming again.\tTom est encore en train de rêver.\nTom is falling asleep.\tTom tombe de sommeil.\nTom is falling asleep.\tTom s'endort.\nTom is from Australia.\tTom vient d'Australie.\nTom is getting better.\tTom va mieux.\nTom is good at diving.\tTom est bon en plongée.\nTom is in big trouble.\tTom a de gros ennuis.\nTom is in big trouble.\tTom est en grande difficulté.\nTom is in college now.\tTom est désormais à l'université.\nTom is in danger, too.\tTom est également en danger.\nTom is in there alone.\tTom est là-dedans tout seul.\nTom is kind of creepy.\tTom est un peu effrayant.\nTom is kind of creepy.\tTom est un peu glauque.\nTom is not a criminal.\tTom n'est pas un criminel.\nTom is still in shock.\tTom est toujours en état de choc.\nTom is too old for me.\tTom est trop vieux pour moi.\nTom is trying to quit.\tTom essaye de démissionner.\nTom is very efficient.\tTom est très efficace.\nTom is writing a book.\tTom écrit un livre.\nTom is writing a book.\tTom rédige un ouvrage.\nTom isn't cooperative.\tTom n'est pas coopératif.\nTom isn't on Facebook.\tTom n'est pas sur Facebook.\nTom kissed his cousin.\tTom a embrassé sa cousine.\nTom kissed his cousin.\tTom a embrassé son cousin.\nTom kissed his cousin.\tTom embrassa son cousin.\nTom kissed his cousin.\tTom embrassa sa cousine.\nTom knocked Mary down.\tTom frappa Mary, l'envoyant au sol.\nTom knows how to dive.\tTom sait comment plonger.\nTom left the building.\tTom a quitté le bâtiment.\nTom liked what he saw.\tTom a aimé ce qu'il a vu.\nTom liked what he saw.\tTom aima ce qu'il vit.\nTom likes skiing, too.\tTom aussi aime skier.\nTom likes watching TV.\tTom aime regarder la télé.\nTom looked interested.\tTom avait l'air intéressé.\nTom looks like a girl.\tTom ressemble à une fille.\nTom lost 30 kilograms.\tTom a perdu trente kilogrammes.\nTom lost 30 kilograms.\tTom perdit trente kilogrammes.\nTom lost his umbrella.\tTom a perdu son parapluie.\nTom lowered his sword.\tTom abaissa son épée.\nTom lowered his sword.\tTom a abaissé son épée.\nTom made a pilgrimage.\tTom a fait un pèlerinage.\nTom made an exception.\tTom fit une exception.\nTom made that himself.\tTom a fait cela lui-même.\nTom made three errors.\tTom a fait trois erreurs.\nTom must be tired now.\tTom doit être fatigué maintenant.\nTom needed a good job.\tTom avait besoin d'un bon boulot.\nTom often tells jokes.\tTom raconte souvent des blagues.\nTom painted the fence.\tTom a peint la clôture.\nTom plugged in the TV.\tTom a branché la télé.\nTom ran at full speed.\tTom courut à pleine vitesse.\nTom said he knew Mary.\tTom a dit qu'il connaissait Mary.\nTom said he would try.\tTom a dit qu'il essayerait.\nTom says he knows you.\tTom dit qu'il vous connaît.\nTom says that's a lie.\tTom dit que c'est un mensonge.\nTom scrubbed his feet.\tTom nettoya ses pieds.\nTom seemed distracted.\tTom semblait distrait.\nTom set the bird free.\tTom libéra l'oiseau.\nTom sipped his coffee.\tTom sirotait son café.\nTom still despises me.\tTom me méprise encore.\nTom taught me to sing.\tTom m'a appris à chanter.\nTom teaches us French.\tTom nous enseigne le français.\nTom teaches us French.\tTom nous apprend le français.\nTom thinks I'm stupid.\tTom pense que je suis stupide.\nTom took Mary's money.\tTom a pris l'argent de Mary.\nTom took Mary's money.\tTom prit l'argent de Mary.\nTom took another bite.\tTom a pris une autre bouchée.\nTom took another bite.\tTom prit une autre bouchée.\nTom took off his belt.\tTom retira sa ceinture.\nTom took off his belt.\tTom a retiré sa ceinture.\nTom tried to hit Mary.\tTom a essayé de frapper Mary.\nTom tried to hit Mary.\tTom essaya de toucher Mary.\nTom underwent surgery.\tTom a subi une intervention chirurgicale.\nTom wanted to be sure.\tTom voulait être sûr.\nTom wants answers now.\tTom veut des réponses maintenant.\nTom wants to help out.\tTom veut aider.\nTom wants to know why.\tTom veut savoir pourquoi.\nTom was an accountant.\tTom était comptable.\nTom was brokenhearted.\tTom avait le cœur brisé.\nTom was given a medal.\tTom a reçu une médaille.\nTom was given a medal.\tOn a donné une médaille à Tom.\nTom was great tonight.\tTom était génial ce soir.\nTom was in good shape.\tTom était en forme.\nTom was in the shower.\tTom était sous la douche.\nTom was late for work.\tTom arriva en retard au travail.\nTom went home at 6:30.\tTom rentra à la maison à 18h30.\nTom went home at 6:30.\tTom est rentré chez lui à 6h30.\nTom went skiing alone.\tTom est allé skier seul.\nTom will never change.\tTom ne changera jamais.\nTom will probably win.\tTom gagnera probablement.\nTom will stay with us.\tTom restera avec nous.\nTom won't be arrested.\tTom ne sera pas arrêté.\nTom wrote to a friend.\tTom a écrit à un ami.\nTom's dog is very big.\tLe chien de Tom est très gros.\nTom's good at his job.\tTom est bon dans son travail.\nTom's leg is bleeding.\tLa jambe de Tom saigne.\nTomorrow is Christmas.\tDemain, c'est Noël.\nTomorrow is a holiday.\tDemain est un jour férié.\nTomorrow's my day off.\tDemain est mon jour de congé.\nTurn in your homework.\tRemettez vos devoirs !\nTurn in your homework.\tRemets ton devoir !\nTwo seats were vacant.\tDeux sièges étaient libres.\nTwo women are singing.\tDeux femmes chantent.\nTyranny is everywhere.\tLa tyrannie règne partout.\nWait here for a while.\tAttendez ici un moment.\nWar is not inevitable.\tLa guerre n'est pas inévitable.\nWas anybody else hurt?\tQuelqu'un d'autre a-t-il été blessé ?\nWas there much damage?\tY eut-il beaucoup de dégâts ?\nWas there much damage?\tY a-t-il eu beaucoup de dégâts ?\nWe accepted his offer.\tNous avons accepté son offre.\nWe agreed to the plan.\tNous nous sommes accordés sur le projet.\nWe agreed to the plan.\tNous tombâmes d'accord sur le projet.\nWe all agree with you.\tNous sommes tous d'accord avec toi.\nWe all agree with you.\tNous sommes tous d'accord avec vous.\nWe all got distracted.\tNous avons tous été distraits.\nWe all got distracted.\tNous avons toutes été distraites.\nWe all got in the car.\tNous montâmes tous dans la voiture.\nWe all have our flaws.\tNous avons tous nos défauts.\nWe all sang in unison.\tNous chantâmes tous à l'unisson.\nWe all sang in unison.\tNous chantâmes toutes à l'unisson.\nWe all sang in unison.\tNous avons tous chanté à l'unisson.\nWe all sang in unison.\tNous avons toutes chanté à l'unisson.\nWe are short of money.\tNous sommes à court d'argent.\nWe are the new owners.\tNous sommes les nouveaux propriétaires.\nWe can live with that.\tNous pouvons vivre avec ça.\nWe can't back out now.\tNous ne pouvons nous retirer maintenant.\nWe can't go right now.\tNous ne pouvons partir à l'instant.\nWe can't help Tom now.\tNous ne pouvons pas aider Tom maintenant.\nWe can't see anything.\tOn n'arrive à rien voir.\nWe can't see anything.\tNous ne pouvons rien voir.\nWe can't see anything.\tNous n'arrivons à rien voir.\nWe can't see anything.\tNous ne parvenons à rien voir.\nWe can't tell anybody.\tNous ne pouvons le dire à quiconque.\nWe can't tell anybody.\tNous ne pouvons le raconter à quiconque.\nWe can't tow this car.\tNous ne pouvons pas tracter cette voiture.\nWe certainly hope not.\tNous ne l'espérons certainement pas.\nWe could go there now.\tNous pourrions y aller maintenant.\nWe did that yesterday.\tNous avons fait ça hier.\nWe did that yesterday.\tNous l'avons fait hier.\nWe didn't see anybody.\tNous n'avons pas vu âme.\nWe didn't see anybody.\tNous n'avons vu personne.\nWe do not accept tips.\tNous n'acceptons pas les pourboires.\nWe don't always agree.\tNous ne sommes pas toujours d'accord.\nWe don't have secrets.\tNous n'avons pas de secrets.\nWe don't want to know.\tNous ne voulons pas savoir.\nWe don't want to know.\tOn veut pas savoir.\nWe gave it to the man.\tNous l'avons donné au monsieur.\nWe got along famously.\tNous nous entendîmes à merveille.\nWe had a little water.\tNous disposions d'un peu d'eau.\nWe had fun, didn't we?\tNous nous sommes amusés, pas vrai ?\nWe had fun, didn't we?\tNous nous sommes amusées, pas vrai ?\nWe had fun, didn't we?\tOn s'est marrés, pas vrai ?\nWe had fun, didn't we?\tOn s'est marrées, pas vrai ?\nWe have a lot of time.\tNous avons beaucoup de temps.\nWe have a lot of time.\tNous disposons de beaucoup de temps.\nWe have a reservation.\tNous avons une réservation.\nWe have no complaints.\tNous n'enregistrons pas de plaintes.\nWe have no complaints.\tNous n'enregistrons aucune plainte.\nWe have time to spare.\tNous avons le temps qu'il faut.\nWe have time to spare.\tNous disposons de suffisamment de temps.\nWe have to be careful.\tNous devons être prudents.\nWe have two daughters.\tNous avons deux filles.\nWe just have to do it.\tIl nous faut juste le faire.\nWe knelt down to pray.\tNous nous agenouillâmes pour prier.\nWe know all about you.\tNous savons tout sur vous.\nWe know all about you.\tNous savons tout sur toi.\nWe know all about you.\tNous savons tout à votre propos.\nWe know all about you.\tNous savons tout à ton propos.\nWe left the door open.\tNous avons laissé la porte ouverte.\nWe live in a big city.\tNous vivons dans une grande ville.\nWe lost a lot of time.\tNous avons perdu beaucoup de temps.\nWe love our customers.\tNous adorons nos clients.\nWe met at summer camp.\tNous nous sommes rencontrés en colonie de vacances.\nWe met at summer camp.\tNous nous sommes rencontrées en colonie de vacances.\nWe miss you very much.\tTu nous manques beaucoup.\nWe miss you very much.\tVous nous manquez beaucoup.\nWe miss you very much.\tTu nous manque beaucoup.\nWe must do it quickly.\tIl nous faut le faire rapidement.\nWe must do it quickly.\tNous devons le faire vite.\nWe must start at once.\tNous devons commencer immédiatement.\nWe must start at once.\tNous devons commencer tout de suite.\nWe must study English.\tNous devons étudier l'anglais.\nWe need authorization.\tIl nous faut une autorisation.\nWe need to study more.\tIl nous faut étudier davantage.\nWe need to study more.\tIl faut qu’on étudie plus.\nWe needed information.\tNous avions besoin d'information.\nWe often eat fish raw.\tNous mangeons souvent du poisson cru.\nWe often eat raw fish.\tNous mangeons souvent du poisson cru.\nWe ought to do better.\tNous devrions faire mieux.\nWe ought to do better.\tNous devrions mieux faire.\nWe ran short of money.\tL'argent vint à nous manquer.\nWe really need to win.\tIl nous faut vraiment l'emporter.\nWe really want to win.\tNous voulons vraiment gagner.\nWe respect each other.\tNous nous respectons les uns les autres.\nWe saw it on the news.\tNous l'avons vu aux nouvelles.\nWe saw it on the news.\tOn l'a vu aux nouvelles.\nWe saw it on the news.\tOn l'a vu aux informations.\nWe saw it on the news.\tNous l'avons vu aux informations.\nWe should do our best.\tNous devons faire de notre mieux.\nWe should get married.\tNous devrions nous marier.\nWe should go to sleep.\tNous devrions aller dormir.\nWe should probably go.\tNous devrions probablement y aller.\nWe should work faster.\tNous devons travailler plus rapidement.\nWe sometimes see them.\tNous les voyons parfois.\nWe stood face to face.\tNous nous tenions face à face.\nWe talked about music.\tNous avons parlé de musique.\nWe took turns driving.\tNous nous sommes relayés pour conduire.\nWe tried to stop them.\tNous avons essayé de les arrêter.\nWe want something new.\tNous voulons quelque chose de nouveau.\nWe wear the same size.\tNous portons la même taille.\nWe were all concerned.\tNous nous faisions tous du souci.\nWe were all concerned.\tNous nous faisions toutes du souci.\nWe were kids together.\tNous avons passé notre enfance ensemble.\nWe were playing chess.\tNous jouions aux échecs.\nWe will not surrender.\tNous ne nous rendrons pas.\nWe will soon take off.\tNous allons bientôt décoller.\nWe work to earn money.\tNous travaillons pour gagner de l'argent.\nWe'd better get going.\tNous ferions mieux d'y aller !\nWe'll all be together.\tNous resterons ensemble.\nWe'll be here all day.\tNous serons ici toute la journée.\nWe'll begin work soon.\tNous commencerons le travail bientôt.\nWe'll get another one.\tOn en obtiendra un autre.\nWe'll get another one.\tNous en aurons un autre.\nWe'll never catch Tom.\tNous n'attraperons jamais Tom.\nWe're behind schedule.\tNous sommes en retard.\nWe're closed tomorrow.\tNous serons fermés demain.\nWe're completely lost.\tNous sommes complètement égarés.\nWe're completely lost.\tNous sommes complètement égarées.\nWe're dealing with it.\tNous nous en occupons.\nWe're getting married.\tNous nous marions.\nWe're getting nowhere.\tNous n'aboutissons nulle part.\nWe're just practicing.\tNous ne faisons que nous exercer.\nWe're leaving tonight.\tNous partons ce soir.\nWe're nearly finished.\tNous en avons presque terminé.\nWe're nearly finished.\tNous en avons presque fini.\nWe're not going there.\tNous n'y allons pas.\nWe're not proud of it.\tNous n'en sommes pas fiers.\nWe're not really sure.\tNous ne sommes pas vraiment sûrs.\nWe're not really sure.\tNous ne sommes pas vraiment sûres.\nWe're not responsible.\tNous ne sommes pas responsables.\nWe're not through yet.\tNous n'en avons pas encore terminé.\nWe're on our way home.\tNous sommes sur le chemin de la maison.\nWe're so proud of you!\tNous sommes tellement fières de toi !\nWe're so proud of you!\tNous sommes tellement fières de vous !\nWe're so proud of you!\tNous sommes tellement fiers de toi !\nWe're so proud of you!\tNous sommes tellement fiers de vous !\nWe've done all we can.\tNous avons fait tout ce que nous pouvions.\nWe've got to find Tom.\tNous devons trouver Tom.\nWe've got to get help.\tIl nous faut de l'aide.\nWe've missed the boat.\tNous avons loupé le coche.\nWe've run out of beer.\tNous sommes à court de bière.\nWe've run out of food.\tNous avons épuisé nos vivres.\nWe've run out of food.\tNous avons épuisé notre nourriture.\nWeigh your words well.\tPèse bien tes mots !\nWeigh your words well.\tPesez bien vos mots !\nWell, I must be going.\tBien, je dois partir.\nWell, I must be going.\tBien, il faut que j'y aille.\nWere you even tempted?\tAvez-vous même été tenté ?\nWere you even tempted?\tAvez-vous même été tentée ?\nWere you even tempted?\tAvez-vous même été tentées ?\nWere you even tempted?\tAvez-vous même été tentés ?\nWere you even tempted?\tAs-tu même été tenté ?\nWere you even tempted?\tAs-tu même été tentée ?\nWere you spying on me?\tM'espionniez-vous ?\nWere you spying on me?\tM'espionnais-tu ?\nWhat I can do for you?\tQue puis-je faire pour vous ?\nWhat I can do for you?\tQu'est-ce que je peux faire pour toi ?\nWhat I need is a beer.\tCe dont j'ai besoin, c'est d'une bière.\nWhat a beautiful baby!\tQuel beau bébé !\nWhat a beautiful city!\tQuelle belle ville !\nWhat a beautiful town!\tQuelle belle ville !\nWhat a beautiful town!\tQuelle belle bourgade !\nWhat a beautiful view!\tQuelle superbe vue !\nWhat a disappointment!\tQuelle déception !\nWhat a fool I've been!\tQuel idiot j'ai été !\nWhat a fool I've been!\tQuelle idiote j'ai été !\nWhat a stroke of luck!\tQuel coup de chance !\nWhat a waste of water!\tQuel gaspillage d'eau !\nWhat a wonderful gift!\tQuel merveilleux cadeau !\nWhat a wonderful idea!\tQuelle merveilleuse idée !\nWhat a wonderful town!\tQuelle ville merveilleuse !\nWhat am I agreeing to?\tÀ quoi est-ce que je donne mon accord ?\nWhat am I going to do?\tQue vais-je faire ?\nWhat an exciting game!\tQuel jeu excitant !\nWhat are the symptoms?\tQuels sont les symptômes ?\nWhat are they made of?\tDe quoi sont-ils faits ?\nWhat are they made of?\tDe quoi sont-elles faites ?\nWhat are we afraid of?\tDe quoi avons-nous peur ?\nWhat are we all doing?\tQue sommes-nous tous en train de faire ?\nWhat are we all doing?\tQue sommes-nous toutes en train de faire ?\nWhat are you doing up?\tQu'est-ce que tu empaquettes ?\nWhat are you drinking?\tQue buvez-vous ?\nWhat are you drinking?\tQue bois-tu ?\nWhat are you drinking?\tQu'es-tu en train de boire ?\nWhat are you drinking?\tQu'êtes-vous en train de boire ?\nWhat are you here for?\tPourquoi es-tu ici ?\nWhat are you here for?\tDans quel but êtes-vous ici ?\nWhat are you implying?\tQu'insinues-tu ?\nWhat are you implying?\tQu'insinuez-vous ?\nWhat are you watching?\tQu'es-tu en train de regarder ?\nWhat are you watching?\tQu'êtes-vous en train de regarder ?\nWhat book did you buy?\tQuel livre as-tu acheté ?\nWhat book did you buy?\tQuel ouvrage as-tu acquis ?\nWhat book did you buy?\tDe quel ouvrage as-tu fait l'acquisition ?\nWhat can I do for you?\tQue puis-je faire pour vous ?\nWhat can I do for you?\tQue puis-je faire pour toi ?\nWhat can I get rid of?\tDe quoi puis-je me débarrasser ?\nWhat can you make out?\tQue parviens-tu à distinguer ?\nWhat can you make out?\tQue parvenez-vous à distinguer ?\nWhat can you teach me?\tQue peux-tu m'enseigner ?\nWhat can you teach me?\tQue pouvez-vous m'enseigner ?\nWhat did Tom do wrong?\tQu'est-ce que Tom a fait de mal?\nWhat did Tom show you?\tQu'est-ce que t'a montré Tom ?\nWhat did he do to you?\tQue t'a-t-il fait ?\nWhat did he look like?\tDe quoi avait-il l'air ?\nWhat did he say again?\tQu'est-ce qu'il a dit déjà ?\nWhat did his wife say?\tQu'a dit sa femme ?\nWhat did it feel like?\tQu'as-tu ressenti ?\nWhat did it feel like?\tQu'avez-vous ressenti ?\nWhat did it feel like?\tQue ressentait-on ?\nWhat did it look like?\tÀ quoi ressemblait-il ?\nWhat did it look like?\tÀ quoi ressemblait-elle ?\nWhat did it look like?\tÀ quoi ça ressemblait ?\nWhat did you do to it?\tQu'y as-tu fait ?\nWhat did you do to it?\tQu'y avez-vous fait ?\nWhat did you find out?\tQu'avez-vous découvert ?\nWhat did you find out?\tQu'as-tu découvert ?\nWhat did you just say?\tQu'as-tu dit à l'instant ?\nWhat did you just say?\tQu'avez-vous dit à l'instant ?\nWhat did you just say?\tQue viens-tu de dire ?\nWhat did you just say?\tQue venez-vous de dire ?\nWhat did you see next?\tQu'avez-vous vu ensuite ?\nWhat did you see next?\tQu'as-tu vu ensuite ?\nWhat did your mom say?\tQu'a dit ta mère ?\nWhat did your mom say?\tQu'a dit votre mère ?\nWhat do I mean to you?\tQue suis-je pour toi ?\nWhat do I mean to you?\tQue suis-je pour vous ?\nWhat do announcers do?\tQue font les présentateurs ?\nWhat do we have to do?\tQue devons-nous faire ?\nWhat do you call that?\tComment nommez-vous cela ?\nWhat do you call that?\tComment nommes-tu cela ?\nWhat do you call this?\tComment appelles-tu ceci ?\nWhat do you call this?\tComment appelez-vous ceci ?\nWhat do you think now?\tQue pensez-vous maintenant ?\nWhat do you think now?\tQue pensez-vous désormais ?\nWhat do you think now?\tQue penses-tu maintenant ?\nWhat do you think now?\tQue penses-tu désormais ?\nWhat do you want then?\tQue désirez-vous alors ?\nWhat does your son do?\tQue fait votre fils ?\nWhat does your son do?\tQue fait ton fils ?\nWhat else did Tom say?\tQu'est-ce que Tom a dit d'autre ?\nWhat else did you eat?\tQu'avez-vous mangé d'autre?\nWhat else do you have?\tQu'as-tu d'autre ?\nWhat else do you have?\tQu'avez-vous d'autre ?\nWhat else do you know?\tQue savez-vous d'autre ?\nWhat else do you need?\tDe quoi d'autre as-tu besoin ?\nWhat else do you need?\tDe quoi d'autre avez-vous besoin ?\nWhat else do you want?\tQue voulez-vous encore ?\nWhat exactly happened?\tQue s'est-il passé, exactement ?\nWhat exactly happened?\tQue s'est-il produit, exactement ?\nWhat exactly happened?\tQu'est-il arrivé, exactement ?\nWhat exactly happened?\tQu'est-ce qui a eu lieu, exactement ?\nWhat floats your boat?\tQu'est-ce qui te chante ?\nWhat floats your boat?\tQu'est-ce qui vous chante ?\nWhat grade are you in?\tEn quelle classe es-tu ?\nWhat happened exactly?\tQue s'est-il passé, exactement ?\nWhat happened exactly?\tQue s'est-il produit, exactement ?\nWhat happened exactly?\tQu'est-il arrivé, exactement ?\nWhat happened exactly?\tQu'est-ce qui a eu lieu, exactement ?\nWhat happened in here?\tQue s'est-il passé, ici ?\nWhat happened in here?\tQue s'est-il passé, là-dedans ?\nWhat happens tomorrow?\tQue va-t-il se passer demain ?\nWhat horrible weather!\tQuel temps horrible !\nWhat if I'm not lucky?\tEt si je n'ai pas de chance ?\nWhat if Tom finds out?\tEt si Tom le découvre ?\nWhat if it's too late?\tEt si c'est trop tard ?\nWhat if they're wrong?\tEt s'ils ont tort ?\nWhat if they're wrong?\tEt si elles ont tort ?\nWhat is going on here?\tQue se passe-t-il ici ?\nWhat is his shoe size?\tQuelle est sa pointure ?\nWhat is on Channel 10?\tQu'y a-t-il sur la dixième chaîne ?\nWhat is the cat up to?\tQu'est-ce que le chat a en tête ?\nWhat is the cat up to?\tQu'est-ce que le chat manigance ?\nWhat is the emergency?\tQuelle est cette urgence ?\nWhat is the emergency?\tQuelle en est l'urgence ?\nWhat is the next stop?\tQuel est le prochain arrêt ?\nWhat is this nonsense?\tQu’est ce que c’est que cette bêtise ?\nWhat is your decision?\tQuelle est ta décision ?\nWhat is your decision?\tQuelle est votre décision ?\nWhat made her do that?\tQu'est-ce qui lui a fait faire ça ?\nWhat more do you need?\tDe quoi as-tu besoin de plus ?\nWhat more do you need?\tDe quoi avez-vous besoin de plus ?\nWhat more do you want?\tQue veux-tu de plus ?\nWhat more do you want?\tQue voulez-vous de plus ?\nWhat ship were you on?\tSur quel bateau vous trouviez-vous ?\nWhat ship were you on?\tSur quel bateau te trouvais-tu ?\nWhat should I do next?\tQue devrais-je faire ensuite ?\nWhat should I name it?\tComment devrais-je l'appeler ?\nWhat time did you eat?\tÀ quelle heure as-tu mangé ?\nWhat took you so long?\tQu'est-ce qui t'a pris tant de temps ?\nWhat took you so long?\tQu'est-ce qui vous a pris tant de temps ?\nWhat will it all cost?\tCombien cela coûtera-t-il en tout ?\nWhat would cause that?\tQu'est-ce qui causerait ça ?\nWhat would cause that?\tQu'est-ce qui causerait cela ?\nWhat would cause this?\tQu'est-ce qui le causerait ?\nWhat'd the doctor say?\tQue dirait le médecin ?\nWhat's Tom doing here?\tQu'est-ce que Tom fait ici ?\nWhat's all that about?\tÀ propos de quoi est tout ceci ?\nWhat's all the ruckus?\tC'est quoi tout ce bordel ?\nWhat's all this noise?\tQu'est tout ce bruit ?\nWhat's all this noise?\tQu'est donc tout ce bruit ?\nWhat's all this noise?\tQuel est tout ce bruit ?\nWhat's all this noise?\tQuel est donc tout ce bruit ?\nWhat's all this stuff?\tC'est quoi, tous ces trucs ?\nWhat's all this stuff?\tQue sont tous ces trucs ?\nWhat's happened to us?\tQue nous est-il arrivé ?\nWhat's happening here?\tQue se passe-t-il ici ?\nWhat's he doing there?\tQu'est-il en train d'y faire ?\nWhat's her name again?\tQuel est son nom, déjà ?\nWhat's his first name?\tQuel est son prénom ?\nWhat's in that bottle?\tQu'y a-t-il dans cette bouteille?\nWhat's in the package?\tQu'y a-t-il dans le paquet ?\nWhat's it going to be?\tQu'est-ce que ça va être ?\nWhat's my room number?\tQuel est le numéro de ma chambre ?\nWhat's my room number?\tQuel est mon numéro de chambre ?\nWhat's my room number?\tLequel est le numéro de ma chambre ?\nWhat's taking so long?\tQu'est-ce qui prend tellement de temps ?\nWhat's that scar from?\tD'où provient cette cicatrice ?\nWhat's the daily rate?\tQuel est le tarif journalier ?\nWhat's the date today?\tQuelle est la date aujourd’hui ?\nWhat's the date today?\tLe quantième sommes-nous ?\nWhat's the difference?\tQuelle est la différence ?\nWhat's the magic word?\tQuel est le mot magique ?\nWhat's the text about?\tDe quoi traite le texte ?\nWhat's this all about?\tDe quoi s'agit tout ceci ?\nWhat's this all about?\tQu'est-ce que tout ceci ?\nWhat's with everybody?\tQu'est-ce qui vous arrive à tous ?\nWhat's wrong with him?\tQu'est-ce qui ne va pas avec lui ?\nWhat's wrong with him?\tQu'est-ce qui cloche avec lui ?\nWhat's wrong with you?\tQu'est-ce qui ne va pas avec toi ?\nWhat's wrong with you?\tT'as un problème ?\nWhat's wrong with you?\tVous avez un problème ?\nWhat's wrong with you?\tQu'est-ce qui cloche avec toi ?\nWhat's wrong with you?\tQu'est-ce qui cloche avec vous ?\nWhat's wrong with you?\tC'est quoi ton problème ?\nWhat's wrong with you?\tC'est quoi votre problème ?\nWhat's your full name?\tQuel est votre nom complet ?\nWhat's your full name?\tQuel est ton nom complet ?\nWhat's your last name?\tQuel est votre nom de famille ?\nWhat's your real name?\tQuel est ton véritable nom ?\nWhat's your shoe size?\tQuelle pointure faites-vous ?\nWhat's your shoe size?\tQuelle pointure fais-tu ?\nWhatever he says goes.\tQuoi qu'il dise conviendra.\nWhen did Tom say that?\tQuand est-ce que Tom a dit ça ?\nWhen did you find out?\tQuand l'as-tu découvert ?\nWhen did you find out?\tQuand as-tu trouvé ?\nWhen did you find out?\tQuand as-tu deviné ?\nWhen did you find out?\tQuand avez-vous deviné ?\nWhen did you find out?\tQuand avez-vous trouvé ?\nWhen did you find out?\tQuand l'avez-vous découvert ?\nWhen did you get this?\tQuand as-tu reçu ceci ?\nWhen did you get this?\tQuand avez-vous reçu ceci ?\nWhen did you meet her?\tQuand l'as-tu rencontrée ?\nWhen did you say that?\tQuand avez-vous dit ça ?\nWhen did you say that?\tQuand avez-vous dit cela ?\nWhen did you say that?\tQuand as-tu dit ça ?\nWhen did you say that?\tQuand as-tu dit cela ?\nWhen is the paper due?\tQuand l'article est-il attendu ?\nWhen is your birthday?\tQuand ton anniversaire a-t-il lieu ?\nWhen will he be freed?\tQuand sera-t-il libéré ?\nWhen will you be back?\tQuand reviendras-tu ?\nWhen will you be back?\tTu rentres quand ?\nWhen will you be free?\tQuand seras-tu libre ?\nWhere are my slippers?\tOù sont mes pantoufles ?\nWhere are my slippers?\tOù sont mes savates ?\nWhere are our friends?\tOù sont nos amis ?\nWhere are the showers?\tOù sont les douches ?\nWhere are the toilets?\tOù sont les toilettes ?\nWhere are you staying?\tOù séjournes-tu ?\nWhere are you staying?\tOù séjournez-vous ?\nWhere are you working?\tOù travailles-tu ?\nWhere are your people?\tOù sont vos proches ?\nWhere are your things?\tOù sont tes affaires ?\nWhere are your things?\tOù sont vos affaires ?\nWhere can I reach you?\tOù puis-je te joindre ?\nWhere can I reach you?\tOù puis-je vous joindre ?\nWhere did you grow up?\tOù avez-vous grandi ?\nWhere did you grow up?\tOù as-tu grandi ?\nWhere did you guys go?\tOù êtes-vous allés, les mecs ?\nWhere did you hide it?\tOù l'avez-vous caché ?\nWhere did you hide it?\tOù l'avez-vous cachée ?\nWhere did you hide it?\tOù l'as-tu caché ?\nWhere did you hide it?\tOù l'as-tu cachée ?\nWhere did you see her?\tOù l'avez-vous vue ?\nWhere do you all live?\tOù vivez-vous tous ?\nWhere do you live now?\tOù habites-tu maintenant ?\nWhere do you work now?\tOù travailles-tu maintenant ?\nWhere do you work now?\tOù travaillez-vous maintenant ?\nWhere exactly are you?\tOù êtes-vous, exactement ?\nWhere exactly are you?\tOù es-tu, exactement ?\nWhere is my newspaper?\tOù se trouve mon journal ?\nWhere is my newspaper?\tOù est mon journal ?\nWhere is the bathroom?\tOù sont les toilettes ?\nWhere is the bathroom?\tOù est la salle de bain ?\nWhere is the bathroom?\tOù est la salle de bain ?\nWhere is the bus stop?\tOù se trouve l'arrêt de bus ?\nWhere is the elevator?\tOù se trouve l'ascenseur ?\nWhere is the elevator?\tOù est l'ascenseur ?\nWhere should I put it?\tOù devrais-je le mettre ?\nWhere should I put it?\tOù devrais-je le poser ?\nWhere should I put it?\tOù devrais-je le déposer ?\nWhere were all of you?\tOù étiez-vous tous ?\nWhere were all of you?\tOù étiez-vous toutes ?\nWhere were the police?\tOù se trouvait la police ?\nWhere're Tom's things?\tOù sont les affaires de Tom ?\nWhere's everyone else?\tOù sont tous les autres ?\nWhere's everyone else?\tOù sont toutes les autres ?\nWhere's the Red Cross?\tLa Croix Rouge, où est-elle ?\nWhere's the Red Cross?\tOù est la Croix Rouge ?\nWhere's the newspaper?\tOù est le journal ?\nWhere's your daughter?\tOù se trouve votre fille ?\nWhere's your daughter?\tOù se trouve ta fille ?\nWhere's your suitcase?\tOù est ta valise ?\nWhich is your luggage?\tQuelle est votre valise ?\nWhich is your luggage?\tQuelle est ta valise ?\nWhich team are you on?\tDe quelle équipe fais-tu partie ?\nWho am I talking with?\tJe parle avec qui ?\nWho are you afraid of?\tQui crains-tu ?\nWho are you to decide?\tQui es-tu pour en décider ?\nWho are you to decide?\tQui êtes-vous pour en décider ?\nWho broke this window?\tQui a cassé cette fenêtre ?\nWho built the snowman?\tQui a fait le bonhomme de neige ?\nWho can speak English?\tQui sait parler anglais ?\nWho cares about facts?\tQui se soucie des faits ?\nWho crashed the party?\tQui s'est introduit dans la fête ?\nWho did you come with?\tAvec qui es-tu venu ?\nWho did you talk with?\tAvec qui parlais-tu ?\nWho do you think I am?\tTu me prends pour qui ?!\nWho does he look like?\tÀ qui ressemble-t-il ?\nWho else is out there?\tQui d'autre est là ?\nWho has a better idea?\tQui a une meilleure idée ?\nWho helps your mother?\tQui aide votre mère ?\nWho helps your mother?\tQui aide ta mère ?\nWho is standing there?\tQui se tient là ?\nWho is that gentleman?\tQui est ce monsieur ?\nWho is that old woman?\tQui est cette vieille femme ?\nWho planned that trip?\tQui a organisé ce voyage ?\nWho should we believe?\tQui devons-nous croire?\nWho takes care of you?\tQui prend soin de vous ?\nWho takes care of you?\tQui prend soin de toi ?\nWho told you all that?\tQui vous a dit tout cela ?\nWho told you all that?\tQui t'a dit tout cela ?\nWho told you the news?\tQui t'a conté les nouvelles ?\nWho told you the news?\tQui vous a conté les nouvelles ?\nWho tried to kill Tom?\tQui a essayé de tuer Tom ?\nWho wants to go first?\tQui veut y aller en premier ?\nWho will come with me?\tQui m'accompagnera ?\nWho wrote this letter?\tQui a écrit cette lettre ?\nWho's working tonight?\tQui travaille ce soir ?\nWho's your girlfriend?\tQui est ta petite amie ?\nWho's your girlfriend?\tQui est ta copine ?\nWho's your girlfriend?\tQui est ta petite copine ?\nWho's your girlfriend?\tQui est ta nana ?\nWhose bicycle is that?\tÀ qui est cette bicyclette ?\nWhose bicycle is that?\tÀ qui est ce vélo ?\nWhose bicycle is that?\tC’est à qui, ce vélo ?\nWhose bicycle is this?\tÀ qui est cette bicyclette ?\nWhose bicycle is this?\tÀ qui est ce vélo ?\nWhose bicycle is this?\tC’est à qui, ce vélo ?\nWhose books are these?\tÀ qui sont ces livres ?\nWhose books are those?\tÀ qui sont ces livres ?\nWhose handbag is this?\tÀ qui est ce sac à main ?\nWhose is this bicycle?\tÀ qui est cette bicyclette ?\nWhose is this bicycle?\tÀ qui est ce vélo ?\nWhose is this bicycle?\tC’est à qui, ce vélo ?\nWhose shoes are these?\tÀ qui sont ces chaussures ?\nWhose side are you on?\tDe quel côté êtes-vous ?\nWhose side are you on?\tDe quel côté es-tu ?\nWhose turn is it next?\tÀ qui le tour ?\nWhose turn is it next?\tÀ qui est-ce le tour ?\nWhy are they fighting?\tPourquoi se battent-ils ?\nWhy are they fighting?\tPourquoi se battent-elles ?\nWhy are we doing this?\tPourquoi faisons-nous cela ?\nWhy are you even here?\tPourquoi es-tu même ici ?\nWhy are you even here?\tPourquoi êtes-vous même ici ?\nWhy are you flinching?\tPourquoi tressailles-tu ?\nWhy are you flinching?\tPourquoi flanches-tu ?\nWhy are you flinching?\tPourquoi te dérobes-tu ?\nWhy are you flinching?\tPourquoi vous dérobez-vous ?\nWhy are you flinching?\tPourquoi tressaillez-vous ?\nWhy are you flinching?\tPourquoi flanchez-vous ?\nWhy are you flinching?\tPourquoi es-tu en train de te dérober ?\nWhy are you flinching?\tPourquoi êtes-vous en train de vous dérober ?\nWhy are you irritated?\tPourquoi êtes-vous énervé ?\nWhy did they hire you?\tPourquoi vous ont-ils recruté ?\nWhy did they hire you?\tPourquoi vous ont-elles recruté ?\nWhy did they hire you?\tPourquoi vous ont-ils recrutée ?\nWhy did they hire you?\tPourquoi vous ont-elles recrutée ?\nWhy did they hire you?\tPourquoi vous ont-elles recrutés ?\nWhy did they hire you?\tPourquoi vous ont-elles recrutées ?\nWhy did they hire you?\tPourquoi vous ont-ils recrutées ?\nWhy did they hire you?\tPourquoi vous ont-ils recrutés ?\nWhy did they hire you?\tPourquoi t'ont-ils recrutée ?\nWhy did they hire you?\tPourquoi t'ont-elles recrutée ?\nWhy did they hire you?\tPourquoi t'ont-ils recruté ?\nWhy did they hire you?\tPourquoi t'ont-elles recruté ?\nWhy did you back away?\tPourquoi avez-vous cédé ?\nWhy did you back away?\tPourquoi as-tu cédé ?\nWhy did you lie to me?\tPourquoi est-ce que tu m'as menti ?\nWhy did you lie to me?\tPourquoi m'as-tu menti ?\nWhy did you marry him?\tPourquoi l'as-tu épousé ?\nWhy did you marry him?\tPourquoi l'avez-vous épousé ?\nWhy do we have dreams?\tPourquoi rêvons-nous ?\nWhy do you want a dog?\tPourquoi veux-tu un chien ?\nWhy do you want a dog?\tPourquoi voulez-vous un chien ?\nWhy don't I drive you?\tPourquoi ne te conduirais-je pas ?\nWhy don't I drive you?\tPourquoi ne vous conduirais-je pas ?\nWhy don't you come in?\tPourquoi n'entrez-vous pas ?\nWhy don't you come in?\tPourquoi n'entres-tu pas ?\nWhy don't you grow up?\tPourquoi ne grandis-tu pas ?\nWhy don't you grow up?\tPourquoi ne grandissez-vous pas ?\nWhy don't you help us?\tPourquoi ne nous aides-tu pas ?\nWhy don't you help us?\tPourquoi ne nous aidez-vous pas ?\nWhy don't you join me?\tPourquoi ne te joins-tu pas à moi ?\nWhy don't you join me?\tPourquoi ne vous joignez-vous pas à moi ?\nWhy don't you join us?\tPourquoi ne te joins-tu pas à nous ?\nWhy don't you join us?\tPourquoi ne vous joignez-vous pas à nous ?\nWhy don't you love me?\tPourquoi ne m'aimez-vous pas ?\nWhy don't you love me?\tEt si vous m'aimiez ?\nWhy don't you love me?\tEt si tu m'aimais ?\nWhy don't you love me?\tPourquoi ne m'aimes-tu pas ?\nWhy don't you love me?\tPourquoi ne pas m'aimer ?\nWhy don't you shut up?\tPourquoi ne te tais-tu pas?\nWhy is Tom still here?\tPourquoi Tom est encore ici ?\nWhy is she doing this?\tPourquoi fait-elle cela ?\nWhy is she so popular?\tPourquoi est-elle si populaire ?\nWhy is the train late?\tPourquoi le train est-il en retard ?\nWhy is this happening?\tPourquoi cela survient-il ?\nWhy is this happening?\tPourquoi cela arrive-t-il ?\nWhy not just tell Tom?\tPourquoi ne pas simplement le dire à Tom ?\nWhy should anyone pay?\tPourquoi quiconque devrait-il payer ?\nWhy shouldn't I do it?\tPourquoi ne devrais-je pas le faire ?\nWhy would I know that?\tPourquoi saurais-je cela ?\nWhy would I know that?\tPourquoi le saurais-je ?\nWhy would Tom be here?\tPourquoi est-ce que Tom serait là ?\nWhy would you want me?\tPourquoi me voudriez-vous ?\nWhy would you want me?\tPourquoi me voudrais-tu ?\nWhy's Tom always here?\tPourquoi Tom est-il toujours ici ?\nWill he come tomorrow?\tViendra-t-il demain ?\nWill it clear up soon?\tCela va-t-il bientôt s'éclaircir ?\nWill it rain tomorrow?\tPleuvra-t-il demain ?\nWill it rain tomorrow?\tEst-ce qu'il pleuvra demain?\nWill it rain tomorrow?\tPleut-il demain ?\nWill this satisfy you?\tCela te satisfera-t-il ?\nWill this satisfy you?\tCela vous satisfera-t-il ?\nWill you accompany me?\tM'accompagneras-tu ?\nWill you accompany me?\tM'accompagnerez-vous ?\nWill you take me home?\tTu me ramène, s'il te plaît ?\nWill you take the job?\tVas-tu prendre le poste ?\nWill you take the job?\tAllez-vous prendre le poste ?\nWinter is coming soon.\tL'hiver arrive bientôt.\nWisdom comes with age.\tLa sagesse vient avec l'âge.\nWould you care to bet?\tVoudriez-vous parier ?\nWould you care to bet?\tVoudrais-tu parier ?\nWrite me sometime, OK?\tÉcris-moi à l'occasion, d'accord ?\nYou all did good work.\tVous avez tous fait du bon travail.\nYou all did good work.\tVous avez toutes fait du bon travail.\nYou alone can help me.\tToi seul peut m'aider.\nYou are a good person.\tTu es un mec bien.\nYou are a good person.\tVous êtes un mec bien.\nYou are a good person.\tTu es une chouette gonzesse.\nYou are a good person.\tVous êtes une chouette gonzesse.\nYou are a good person.\tVous êtes un chic type.\nYou are a good person.\tT'es un chic type.\nYou are a good person.\tT'es une bonne fille.\nYou are a good person.\tVous êtes une bonne fille.\nYou are a good person.\tT'es une chouette gonzesse.\nYou are a good person.\tT'es un mec bien.\nYou are a mean person.\tVous êtes quelqu'un de méchant.\nYou are her daughters.\tVous êtes ses filles.\nYou are not a student.\tTu n'es pas un étudiant.\nYou are seriously ill.\tTu es un grand malade.\nYou are seriously ill.\tVous êtes un grand malade.\nYou can make your own.\tTu peux faire le tien.\nYou can make your own.\tVous pouvez faire le vôtre.\nYou can make your own.\tTu peux t'en faire un à toi.\nYou can make your own.\tVous pouvez vous en faire un à vous.\nYou can rely upon him.\tTu peux compter sur lui.\nYou can start anytime.\tTu peux commencer à tout moment.\nYou can start anytime.\tVous pouvez commencer à tout moment.\nYou can't buy respect.\tOn n'achète pas le respect.\nYou can't give up now.\tTu ne peux pas abandonner maintenant.\nYou can't give up now.\tVous ne pouvez pas abandonner maintenant.\nYou can't kill us all.\tTu ne peux pas tous nous tuer.\nYou can't kill us all.\tVous ne pouvez pas tous nous tuer.\nYou can't pull it off.\tOn ne peut pas l'arracher.\nYou cannot be serious.\tTu ne peux pas être sérieux.\nYou cannot be serious.\tC'est pas vrai.\nYou cannot be serious.\tTu plaisantes !\nYou cannot be serious.\tVous plaisantez !\nYou cannot be serious.\tPas vrai !\nYou deserve a present.\tTu mérites un cadeau.\nYou deserve a present.\tVous méritez un cadeau.\nYou deserve the prize.\tTu mérites le prix.\nYou deserve the prize.\tVous méritez le prix.\nYou did nothing wrong.\tTu n'as rien fait de mal.\nYou did nothing wrong.\tVous n'avez rien fait de mal.\nYou don't belong here.\tTu n'as rien à faire là.\nYou don't belong here.\tVous n'avez rien à faire là.\nYou don't belong here.\tVous n'appartenez pas à cette société.\nYou don't belong here.\tTu n'appartiens pas à cette société.\nYou don't belong here.\tCe n'est pas ton monde.\nYou don't belong here.\tCe n'est pas votre monde.\nYou don't fit in here.\tVous n'êtes pas dans votre élément, ici.\nYou don't fit in here.\tTu n'es pas dans ton élément, ici.\nYou don't frighten me.\tVous ne me faites pas peur.\nYou don't frighten me.\tVous me faites pas peur.\nYou don't have a clue.\tTu n'en as pas la moindre idée.\nYou don't have a clue.\tVous n'en avez pas la moindre idée.\nYou don't have to lie.\tVous n'êtes pas obligé de mentir.\nYou don't have to lie.\tVous n'êtes pas obligés de mentir.\nYou don't have to lie.\tVous n'êtes pas obligée de mentir.\nYou don't have to lie.\tVous n'êtes pas obligées de mentir.\nYou don't have to lie.\tTu n'es pas obligé de mentir.\nYou don't have to lie.\tTu n'es pas obligée de mentir.\nYou don't have to lie.\tTu n'es pas forcé de mentir.\nYou don't have to lie.\tTu n'es pas forcée de mentir.\nYou don't have to lie.\tVous n'êtes pas forcé de mentir.\nYou don't have to lie.\tVous n'êtes pas forcée de mentir.\nYou don't have to lie.\tVous n'êtes pas forcées de mentir.\nYou don't have to lie.\tVous n'êtes pas forcés de mentir.\nYou don't have to pay.\tIls ne font pas payer.\nYou don't need a list.\tVous n'avez pas besoin d'une liste.\nYou don't need a list.\tTu n'as pas besoin d'une liste.\nYou dropped something.\tVous avez fait tomber quelque chose.\nYou dropped something.\tVous avez laissé tomber quelque chose.\nYou dropped something.\tVous avez laissé choir quelque chose.\nYou dropped something.\tTu as fait tomber quelque chose.\nYou dropped something.\tTu as laissé tomber quelque chose.\nYou dropped something.\tTu as laissé choir quelque chose.\nYou gave me your word.\tTu m'as donné ta parole.\nYou gave me your word.\tVous m'avez donné votre parole.\nYou had better go now.\tTu ferais mieux d'y aller maintenant.\nYou had better go now.\tVous feriez mieux d'y aller maintenant.\nYou have gone too far.\tVous êtes allé trop loin.\nYou have gone too far.\tVous êtes allée trop loin.\nYou have gone too far.\tVous êtes allés trop loin.\nYou have gone too far.\tVous êtes allées trop loin.\nYou have gone too far.\tTu es allé trop loin.\nYou have gone too far.\tTu es allée trop loin.\nYou have many friends.\tTu as beaucoup d'amis.\nYou have many friends.\tTu as beaucoup d'amies.\nYou have not seen him.\tVous ne l'avez pas vu.\nYou have to be strong.\tIl te faut être fort.\nYou have to be strong.\tIl vous faut être fort.\nYou have to disappear.\tTu dois disparaître.\nYou have to disappear.\tVous devez disparaître.\nYou have to hold back.\tIl vous faut vous retenir.\nYou have to hold back.\tIl te faut te retenir.\nYou have to pay taxes.\tTu dois payer des impôts.\nYou have to pay taxes.\tVous devez payer des impôts.\nYou have to try again.\tTu dois encore essayer.\nYou have to try again.\tVous devez essayer à nouveau.\nYou have to use tools.\tTu dois faire usage d'outils.\nYou have to use tools.\tVous devez employer des outils.\nYou have to use tools.\tVous devez utiliser des outils.\nYou heard your mother.\tVous avez entendu votre mère.\nYou heard your mother.\tTu as entendu ta mère.\nYou know I have to go.\tTu sais que je dois y aller.\nYou know I have to go.\tTu sais que je dois partir.\nYou know I have to go.\tVous savez que je dois y aller.\nYou know I have to go.\tVous savez que je dois partir.\nYou live too far away.\tVous vivez trop loin.\nYou look disappointed.\tVous avez l'air déçu.\nYou look disappointed.\tTu as l'air déçu.\nYou look kind of down.\tTu as l'air déprimé.\nYou look so beautiful.\tTu as l'air si beau.\nYou look so beautiful.\tTu as l'air si belle.\nYou look so beautiful.\tVous avez l'air si beau.\nYou look so beautiful.\tVous avez l'air si beaux.\nYou look so beautiful.\tVous avez l'air si belle.\nYou look so beautiful.\tVous avez l'air si belles.\nYou make it look easy.\tVous faites en sorte que ça ait l'air facile.\nYou make it look easy.\tTu fais en sorte que ça ait l'air facile.\nYou make it look easy.\tOn dirait que c'est facile, en te regardant.\nYou make it look easy.\tÇa semble tellement simple avec toi.\nYou may take the book.\tTu peux prendre le livre.\nYou may take the book.\tVous pouvez prendre le livre.\nYou might not find it.\tIl est possible que vous ne le trouviez pas.\nYou must be exhausted.\tTu dois être épuisé.\nYou must be exhausted.\tVous devez être épuisé.\nYou must be exhausted.\tVous devez être épuisée.\nYou must be exhausted.\tVous devez être épuisés.\nYou must be exhausted.\tVous devez être épuisées.\nYou must be exhausted.\tTu dois être épuisée.\nYou must come with me.\tVous devez venir avec moi.\nYou must come with me.\tTu dois venir avec moi.\nYou must do your best.\tVous devez faire de votre mieux.\nYou must go to school.\tIl vous faut aller à l'école.\nYou must go to school.\tIl te faut aller à l'école.\nYou must go to school.\tVous devez aller à l'école.\nYou must go to school.\tTu dois aller à l'école.\nYou need an ambulance.\tTu as besoin d'une ambulance.\nYou need an ambulance.\tVous avez besoin d'une ambulance.\nYou need not go there.\tTu n'as pas besoin de t'y rendre.\nYou need to follow me.\tVous devez me suivre.\nYou need to work fast.\tIl vous faut travailler vite.\nYou need to work fast.\tIl te faut travailler vite.\nYou owe him the truth.\tTu dois lui dire la vérité.\nYou reap what you sow.\tComme tu auras semé tu moissonneras.\nYou reap what you sow.\tOn récolte ce que l'on sème.\nYou reap what you sow.\tOn récolte ce que l'on a semé.\nYou recovered quickly.\tTu t'es rapidement remis sur pieds.\nYou ruined everything.\tT'as tout foutu en l'air.\nYou ruined everything.\tTu as tout foutu en l'air.\nYou ruined everything.\tVous avez tout foutu en l'air.\nYou ruined everything.\tT'as tout fait foirer.\nYou ruined everything.\tTu as tout fait foirer.\nYou ruined everything.\tVous avez tout fait foirer.\nYou should be careful.\tTu devrais faire attention.\nYou should be careful.\tVous devriez faire attention.\nYou should leave, Tom.\tTu devrais partir, Tom.\nYou should leave, Tom.\tVous devriez partir, Tom.\nYou should smoke less.\tTu devrais moins fumer.\nYou understand, right?\tVous comprenez, n'est-ce pas ?\nYou understand, right?\tTu comprends, n'est-ce pas ?\nYou will stay at home.\tTu resteras chez toi.\nYou won't regret this.\tVous n'allez pas le regretter.\nYou won't regret this.\tTu ne vas pas le regretter.\nYou'd better back off.\tTu ferais mieux de reculer.\nYou'd better hurry up.\tTu ferais mieux de te dépêcher.\nYou'd better sit here.\tTu ferais mieux de t'asseoir ici.\nYou'd better sit here.\tVous feriez mieux de vous asseoir ici.\nYou'll be better soon.\tTu iras mieux bientôt.\nYou'll get used to it.\tVous vous y habituerez.\nYou'll never be alone.\tTu ne seras jamais seul.\nYou'll never be alone.\tTu ne seras jamais seule.\nYou'll never be alone.\tVous ne serez jamais seul.\nYou'll never be alone.\tVous ne serez jamais seuls.\nYou'll never be alone.\tVous ne serez jamais seules.\nYou'll never be alone.\tVous ne serez jamais seule.\nYou're all against me.\tVous êtes tous contre moi.\nYou're all against me.\tVous êtes toutes contre moi.\nYou're always singing.\tTu chantes tout le temps.\nYou're always singing.\tVous chantez tout le temps.\nYou're always singing.\tTu es tout le temps en train de chanter.\nYou're always singing.\tVous êtes tout le temps en train de chanter.\nYou're being paranoid.\tTu es paranoïaque.\nYou're being paranoid.\tVous êtes paranoïaque.\nYou're being paranoid.\tVous êtes paranoïaques.\nYou're doing it right.\tTu le fais correctement.\nYou're doing it right.\tVous le faites correctement.\nYou're doing it right.\tTu le fais comme il faut.\nYou're doing it right.\tVous le faites comme il faut.\nYou're doing it wrong!\tTu le fais de travers !\nYou're getting closer.\tTu t'approches.\nYou're getting closer.\tVous vous approchez.\nYou're going to be OK.\tVous allez être sur pieds.\nYou're going to be OK.\tVous allez vous remettre.\nYou're going to be OK.\tTu vas te remettre.\nYou're going to be OK.\tTu vas être sur pieds.\nYou're going to laugh.\tTu vas rire.\nYou're going to laugh.\tVous allez rire.\nYou're going too fast.\tTu vas trop vite.\nYou're going too fast.\tVous allez trop vite.\nYou're good with kids.\tVous êtes bon avec les enfants.\nYou're in big trouble.\tTu as de gros problèmes.\nYou're in big trouble.\tVous avez de gros problèmes.\nYou're in big trouble.\tTu es dans la merde.\nYou're in big trouble.\tVous êtes dans la merde.\nYou're in danger, Tom.\tTu es en danger, Tom.\nYou're in danger, Tom.\tVous êtes en danger, Tom.\nYou're my best friend.\tTu es mon meilleur ami.\nYou're my kind of gal.\tT'es mon type de gonzesse.\nYou're not being fair.\tTu n'es pas juste.\nYou're not being fair.\tVous n'êtes pas juste.\nYou're not helping me.\tTu ne m'aides pas.\nYou're not helping me.\tVous ne m'aidez pas.\nYou're not safe there.\tVous n'y êtes pas en sécurité.\nYou're not safe there.\tTu n'y es pas en sécurité.\nYou're not that crazy.\tTu n'es pas si folle.\nYou're not that crazy.\tTu n'es pas si fou.\nYou're not that smart.\tTu n'es pas si malin.\nYou're not that smart.\tTu n'es pas si maline.\nYou're not very funny.\tTu n'es pas très amusant.\nYou're not very funny.\tTu n'es pas très amusante.\nYou're not very funny.\tVous n'êtes pas très amusant.\nYou're not very funny.\tVous n'êtes pas très amusante.\nYou're not very funny.\tVous n'êtes pas très amusantes.\nYou're not very funny.\tVous n'êtes pas très amusants.\nYou're out of control.\tTu es hors de contrôle.\nYou're out of control.\tVous êtes hors de contrôle.\nYou're out of excuses.\tTu n'as plus d'excuses.\nYou're out of excuses.\tVous n'avez plus d'excuses.\nYou're over-analyzing.\tVous analysez trop.\nYou're over-analyzing.\tTu analyses trop.\nYou're probably right.\tVous avez probablement raison.\nYou're probably tired.\tTu es probablement fatigué.\nYou're probably tired.\tTu es probablement fatiguée.\nYou're probably tired.\tVous êtes probablement fatigué.\nYou're probably tired.\tVous êtes probablement fatiguée.\nYou're probably tired.\tVous êtes probablement fatigués.\nYou're probably tired.\tVous êtes probablement fatiguées.\nYou're pulling my leg.\tTu me fais marcher.\nYou're pulling my leg.\tVous me faites marcher.\nYou're really awesome.\tTu es vraiment génial.\nYou're really awesome.\tTu es vraiment géniale.\nYou're really awesome.\tVous êtes vraiment génial.\nYou're really awesome.\tVous êtes vraiment géniale.\nYou're really awesome.\tVous êtes vraiment géniales.\nYou're really awesome.\tVous êtes vraiment géniaux.\nYou're really selfish.\tTu es vraiment égoïste.\nYou're really selfish.\tVous êtes vraiment égoïste.\nYou're really selfish.\tVous êtes vraiment égoïstes.\nYou're right, I think.\tJe pense que vous avez raison.\nYou're right, I think.\tJe pense que tu as raison.\nYou're right, I think.\tTu as raison, je pense.\nYou're so predictable.\tTu es tellement prévisible !\nYou're so predictable.\tVous êtes tellement prévisible !\nYou're so predictable.\tVous êtes tellement prévisibles !\nYou're taller than me.\tTu es plus grand que moi.\nYou're taller than me.\tTu es plus grande que moi.\nYou're taller than me.\tVous êtes plus grand que moi.\nYou're taller than me.\tVous êtes plus grande que moi.\nYou're taller than me.\tVous êtes plus grands que moi.\nYou're taller than me.\tVous êtes plus grandes que moi.\nYou're too old for me.\tTu es trop vieux pour moi.\nYou're too old for me.\tTu es trop vieille pour moi.\nYou're too old for me.\tVous êtes trop vieux pour moi.\nYou're too old for me.\tVous êtes trop vieille pour moi.\nYou're too old for me.\tVous êtes trop vieilles pour moi.\nYou're turning thirty.\tTu entres dans la trentaine.\nYou're turning thirty.\tVous entrez dans la trentaine.\nYou're very beautiful.\tVous êtes très belle.\nYou're very efficient.\tTu es très efficace.\nYou're very efficient.\tTu es fort efficace.\nYou're very efficient.\tVous êtes très efficace.\nYou're very efficient.\tVous êtes très efficaces.\nYou're very efficient.\tVous êtes fort efficace.\nYou're very efficient.\tVous êtes fort efficaces.\nYou're very emotional.\tVous êtes très émotives.\nYou're very emotional.\tVous êtes fort émotives.\nYou're very emotional.\tVous êtes très émotifs.\nYou're very emotional.\tVous êtes très émotive.\nYou're very emotional.\tVous êtes très émotif.\nYou're very emotional.\tVous êtes fort émotive.\nYou're very emotional.\tVous êtes fort émotifs.\nYou're very emotional.\tVous êtes fort émotif.\nYou're very emotional.\tTu es fort émotive.\nYou're very emotional.\tTu es très émotive.\nYou're very emotional.\tTu es fort émotif.\nYou're very emotional.\tTu es très émotif.\nYou're very fortunate.\tTu as vraiment beaucoup de chance.\nYou're very fortunate.\tVous avez vraiment beaucoup de chance.\nYou're very kind, Tom.\tTu es très gentil, Tom.\nYou're very kind, Tom.\tVous êtes très gentil, Tom.\nYou're very observant.\tTu es très observateur.\nYou're very observant.\tTu es très observatrice.\nYou're very observant.\tVous êtes très observateur.\nYou're very observant.\tVous êtes très observateurs.\nYou're very observant.\tVous êtes très observatrice.\nYou're very observant.\tVous êtes très observatrices.\nYou're very skeptical.\tVous êtes très sceptique.\nYou're very skeptical.\tVous êtes fort sceptique.\nYou're very skeptical.\tVous êtes très sceptiques.\nYou're very skeptical.\tVous êtes fort sceptiques.\nYou're very skeptical.\tTu es fort sceptique.\nYou're very skeptical.\tTu es très sceptique.\nYou're worse than Tom.\tTu es pire que Tom.\nYou're worse than Tom.\tVous êtes pire que Tom.\nYou've been suspended.\tTu as été suspendue.\nYou've been suspended.\tTu as été suspendu.\nYou've been suspended.\tVous avez été suspendue.\nYou've been suspended.\tVous avez été suspendu.\nYou've been suspended.\tVous avez été suspendues.\nYou've been suspended.\tVous avez été suspendus.\nYou've come too early.\tTu es venu trop tôt.\nYou've come too early.\tVous êtes venu trop tôt.\nYou've come too early.\tVous êtes venue trop tôt.\nYou've come too early.\tVous êtes venues trop tôt.\nYou've come too early.\tVous êtes venus trop tôt.\nYou've come too early.\tTu es venue trop tôt.\nYou've done well here.\tVous avez fait du bon travail.\nYou've got some nerve.\tTu as du culot.\nYou've got to be bold!\tTu dois être hardi !\nYou've got to be bold!\tTu dois être audacieux !\nYou've got to be bold!\tTu dois être audacieuse !\nYou've got to be bold!\tTu dois être hardie !\nYou've got to be bold!\tVous devez être hardi !\nYou've got to be bold!\tVous devez être hardie !\nYou've got to be bold!\tVous devez être hardis !\nYou've got to be bold!\tVous devez être hardies !\nYou've got to be bold!\tVous devez être audacieux !\nYou've got to be bold!\tVous devez être audacieuse !\nYou've got to be bold!\tVous devez être audacieuses !\nYou've got to be bold!\tVous devez être intrépide !\nYou've got to be bold!\tVous devez être intrépides !\nYou've got to be bold!\tTu dois être intrépide !\nYou've got to wake up.\tTu dois te réveiller.\nYou've got to wake up.\tVous devez vous réveiller.\nYour boots are ruined.\tTes bottes sont abimées.\nYour cat will survive.\tVotre chat survivra.\nYour cat will survive.\tVotre chatte survivra.\nYour cat will survive.\tTon chat survivra.\nYour cat will survive.\tTa chatte survivra.\nYour cough worries me.\tTa toux m'inquiète.\nYour cough worries me.\tVotre toux m'inquiète.\nYour friends are late.\tTes amis sont en retard.\nYour friends are late.\tTes amies sont en retard.\nYour friends are late.\tVos amis sont en retard.\nYour friends are late.\tVos amies sont en retard.\nYour hair is too long.\tTes cheveux sont trop longs.\nYour hair is too long.\tVos cheveux sont trop longs.\nYour life's in danger.\tVotre vie est en danger.\nYour life's in danger.\tTa vie est en danger.\nYour nose is bleeding.\tVous saignez du nez.\nYour nose is bleeding.\tTu saignes du nez.\nYour parents are cool.\tTes parents sont sympas.\nYour plan didn't work.\tVotre projet n'a pas fonctionné.\nYour plan didn't work.\tVotre plan n'a pas fonctionné.\nYour plan didn't work.\tTon projet n'a pas fonctionné.\nYour plan didn't work.\tTon plan n'a pas fonctionné.\nYour room is very big.\tVotre chambre est très grande.\nYour shoes are untied.\tTes chaussures sont délacées.\nZero comes before one.\tLe zéro est avant le un.\nZero comes before one.\tZéro vient avant un.\n\"Who is it?\" \"It's me.\"\t\"Qui est-ce ?\" \"C'est moi.\"\nA child needs a mother.\tUn enfant a besoin d'une mère.\nA dust storm is coming.\tUne tempête de poussière s'approche.\nA fox is a wild animal.\tLe renard est un animal sauvage.\nA lot of fish perished.\tBeaucoup de poissons ont péri.\nA lot of fish perished.\tDe nombreux poissons sont morts.\nA lot of fish perished.\tDe nombreux poissons périrent.\nA magnet attracts iron.\tUn aimant attire le fer.\nA mosquito just bit me.\tUn moustique vient de me piquer.\nA password is required.\tUn mot de passe est requis.\nA rabbit has long ears.\tLes lapins ont de grandes oreilles.\nA sponge absorbs water.\tUne éponge absorbe l'eau.\nA stone does not float.\tUne pierre ne flotte pas.\nA wolf cannot be tamed.\tUn loup ne peut être apprivoisé.\nActually, you're right.\tEn fait, tu as raison.\nActually, you're right.\tEn fait, vous avez raison.\nActually, you're right.\tEn vérité, vous avez raison.\nActually, you're right.\tEn vérité, tu as raison.\nAh, that's much better.\tAh, c'est bien meilleur.\nAll I want is your cat.\tTout ce que je veux, c'est ton chat.\nAll I want is your cat.\tTout ce que je veux, c'est votre chat.\nAll of them went there.\tIls sont tous allés là-bas.\nAll of them went there.\tTous y sont allés.\nAll of us speak French.\tNous parlons tous français.\nAll roads lead to Rome.\tTous les chemins mènent à Rome.\nAll roads lead to Rome.\tToutes les routes mènent à Rome.\nAll seats are reserved.\tTous les sièges sont réservés.\nAll the buses are full.\tTous les bus sont pleins.\nAll the girls love Tom.\tToutes les filles aiment Tom.\nAll the lights were on.\tToutes les lumières étaient allumées.\nAll the money was gone.\tTout l'argent avait disparu.\nAll you do is complain!\tTout ce que tu fais c'est de te plaindre !\nAll you do is complain!\tTout ce que vous faites c'est de vous plaindre !\nAllow us to do our job.\tLaissez-nous faire notre boulot !\nAm I on the right road?\tSuis-je sur la bonne route ?\nAn idea occurred to me.\tUne idée me vint à l'esprit.\nAny other bright ideas?\tEncore une quelconque brillante idée ?\nAnything is OK with me.\tTout me convient.\nApparently I'm adopted.\tApparemment, je suis adopté.\nApparently I'm adopted.\tApparemment, je suis adoptée.\nAre these all the same?\tSont-ce toutes les mêmes ?\nAre these all the same?\tSont-ce tous les mêmes ?\nAre these bananas ripe?\tCes bananes sont-elles mûres ?\nAre they collaborators?\tSont-ils collaborateurs ?\nAre they ready to talk?\tSont-ils prêts à discuter ?\nAre they ready to talk?\tSont-elles prêtes à discuter ?\nAre things OK with you?\tLes choses vont-elles bien pour toi ?\nAre things OK with you?\tLes choses vont-elles bien pour vous ?\nAre things OK with you?\tÇa se passe bien pour vous ?\nAre things OK with you?\tÇa se passe bien pour toi ?\nAre we on speakerphone?\tSommes-nous sur haut-parleur ?\nAre you a student here?\tÊtes-vous élève, ici ?\nAre you a student here?\tEs-tu élève, ici ?\nAre you afraid of dogs?\tCraignez-vous les chiens ?\nAre you afraid of dogs?\tCrains-tu les chiens ?\nAre you afraid of that?\tEn as-tu peur ?\nAre you afraid of that?\tEn avez-vous peur ?\nAre you afraid of that?\tAvez-vous peur de ça ?\nAre you afraid of that?\tAs-tu peur de ça ?\nAre you all doing well?\tAllez-vous tous bien ?\nAre you all doing well?\tAllez-vous toutes bien ?\nAre you angry with Tom?\tTu es fâchée contre Tom ?\nAre you being punished?\tEs-tu puni?\nAre you blowing me off?\tT'es en train de me laisser tomber ?\nAre you blowing me off?\tTu me laisses en plan ?\nAre you blowing me off?\tÊtes-vous en train de me laisser en plan ?\nAre you busy right now?\tEs-tu occupé actuellement ?\nAre you coming with me?\tTu viens avec moi ?\nAre you coming with us?\tVenez-vous avec nous ?\nAre you coming with us?\tViens-tu avec nous ?\nAre you dating anybody?\tSors-tu avec quiconque ?\nAre you dating anybody?\tSortez-vous avec qui que ce soit ?\nAre you dating anybody?\tSors-tu avec qui que ce soit ?\nAre you falling for me?\tEs-tu en train de tomber amoureux de moi ?\nAre you falling for me?\tEs-tu en train de tomber amoureuse de moi ?\nAre you falling for me?\tÊtes-vous en train de tomber amoureuse de moi ?\nAre you falling for me?\tÊtes-vous en train de tomber amoureux de moi ?\nAre you falling for me?\tÊtes-vous en train de tomber amoureuses de moi ?\nAre you free for lunch?\tEs-tu libre pour le déjeuner ?\nAre you free for lunch?\tÊtes-vous libre pour le déjeuner ?\nAre you free for lunch?\tÊtes-vous libres pour le déjeuner ?\nAre you going to be OK?\tEst-ce que ça va aller ?\nAre you going to be OK?\tEst-ce que ça va aller ?\nAre you going to leave?\tAllez-vous partir ?\nAre you going to leave?\tVas-tu partir ?\nAre you good at tennis?\tEst-ce que tu joues bien au tennis ?\nAre you good at tennis?\tÊtes-vous bon au tennis ?\nAre you good at tennis?\tEs-tu bonne au tennis ?\nAre you good at tennis?\tEs-tu bon au tennis ?\nAre you good at tennis?\tJoues-tu bien au tennis ?\nAre you guys all right?\tAllez-vous bien, les garçons ?\nAre you guys all right?\tÇa va, les mecs ?\nAre you in a good mood?\tÊtes-vous de bonne humeur ?\nAre you laughing at me?\tEst-ce de moi que vous riez ?\nAre you laughing at me?\tTu ris de moi ?\nAre you looking for me?\tTu me cherches ?\nAre you looking for me?\tMe cherchez-vous ?\nAre you looking for me?\tEst-ce moi que vous cherchez ?\nAre you looking for us?\tNous cherches-tu ?\nAre you looking for us?\tNous cherchez-vous ?\nAre you pointing at me?\tEst-ce moi que tu désignes ?\nAre you pointing at me?\tEst-ce moi que vous désignez ?\nAre you pulling my leg?\tTu joues avec mes pieds ?\nAre you ready to begin?\tEs-tu prêt à commencer ?\nAre you ready to begin?\tEs-tu prête à commencer ?\nAre you ready to begin?\tÊtes-vous prêt à commencer ?\nAre you ready to begin?\tÊtes-vous prête à commencer ?\nAre you ready to begin?\tÊtes-vous prêtes à commencer ?\nAre you ready to begin?\tÊtes-vous prêts à commencer ?\nAre you ready to begin?\tEs-tu prêt à t'y mettre ?\nAre you ready to begin?\tEs-tu prête à t'y mettre ?\nAre you ready to begin?\tÊtes-vous prêts à vous y mettre ?\nAre you ready to begin?\tÊtes-vous prêtes à vous y mettre ?\nAre you ready to begin?\tÊtes-vous prêt à vous y mettre ?\nAre you ready to begin?\tÊtes-vous prête à vous y mettre ?\nAre you ready to order?\tÊtes-vous prêt à commander ?\nAre you ready to order?\tÊtes-vous prêtes à commander ?\nAre you ready to party?\tÊtes-vous prêts à faire la fête ?\nAre you ready to party?\tÊtes-vous prêtes à faire la fête ?\nAre you ready to party?\tÊtes-vous prête à faire la fête ?\nAre you ready to party?\tÊtes-vous prêt à faire la fête ?\nAre you ready to party?\tEs-tu prêt à faire la fête ?\nAre you ready to party?\tEs-tu prête à faire la fête ?\nAre you recording this?\tEnregistres-tu ceci ?\nAre you recording this?\tEnregistrez-vous ceci ?\nAre you seeing anybody?\tVois-tu qui que ce soit ?\nAre you seeing anybody?\tVoyez-vous qui que ce soit ?\nAre you seeing anybody?\tSors-tu avec quiconque ?\nAre you seeing someone?\tVois-tu quelqu'un ?\nAre you seeing someone?\tVoyez-vous quelqu'un ?\nAre you speaking to me?\tC'est à moi que tu parles ?\nAre you speaking to me?\tC'est à moi que vous parlez ?\nAre you speaking to me?\tMe parlez-vous ?\nAre you speaking to me?\tMe parles-tu ?\nAre you threatening me?\tÊtes-vous en train de me menacer ?\nAre you threatening me?\tEs-tu en train de me menacer ?\nAre you up to the task?\tEs-tu à la hauteur de la tâche ?\nAre you up to the task?\tÊtes-vous à la hauteur de la tâche ?\nAren't there any risks?\tN'y a-t-il aucun risque ?\nAren't they Englishmen?\tNe sont-ils pas Anglais ?\nAren't you dressed yet?\tN'es-tu pas encore habillé ?\nAren't you dressed yet?\tN'es-tu pas encore habillée ?\nAren't you dressed yet?\tN'êtes-vous pas encore habillé ?\nAren't you dressed yet?\tN'êtes-vous pas encore habillés ?\nAren't you dressed yet?\tN'êtes-vous pas encore habillée ?\nAren't you dressed yet?\tN'êtes-vous pas encore habillées ?\nAren't you embarrassed?\tN'es-tu pas gêné ?\nAren't you embarrassed?\tN'es-tu pas gênée ?\nAren't you embarrassed?\tN'êtes-vous pas gêné ?\nAren't you embarrassed?\tN'êtes-vous pas gênée ?\nAren't you embarrassed?\tN'êtes-vous pas gênées ?\nAren't you embarrassed?\tN'êtes-vous pas gênés ?\nAren't you guys sleepy?\tN'avez-vous pas sommeil, les mecs ?\nAren't you hungry, Tom?\tN'as-tu pas faim, Tom ?\nBadgers dig deep holes.\tLes blaireaux creusent de profonds trous.\nBe careful not to fall.\tFaites attention de ne pas tomber !\nBe careful not to fall.\tFais attention de ne pas tomber !\nBe careful not to slip.\tFais attention de ne pas glisser !\nBe careful not to slip.\tFaites attention de ne pas glisser !\nBetter late than never.\tMieux vaut tard que jamais.\nBetter safe than sorry.\tMieux vaut prévenir que guérir.\nBring me a moist towel.\tApporte-moi une serviette humide.\nBring me the newspaper.\tApporte-moi le journal.\nBring me the newspaper.\tApportez-moi le journal.\nBring me today's paper.\tRapporte-moi le journal du jour.\nBusiness is looking up.\tLes affaires ont l'air de croître.\nBusiness is quite slow.\tLes affaires sont assez faibles.\nBuy a book and read it.\tAchetez un livre et lisez-le.\nBuy the dress you want.\tAchète la robe que tu veux.\nCall me at this number.\tAppelle-moi à ce numéro.\nCall me at this number.\tAppelez-moi à ce numéro.\nCall me when it's done.\tAppelle-moi quand c'est fait.\nCall me when it's done.\tAppelez-moi quand c'est fait.\nCall up Tom right away.\tAppelle Tom tout de suite.\nCan I continue my trip?\tPuis-je poursuivre mon voyage ?\nCan I get you anything?\tPuis-je aller vous chercher quoi que ce soit ?\nCan I get you anything?\tPuis-je aller te chercher quoi que ce soit ?\nCan I have this orange?\tPuis-je avoir cette orange ?\nCan I make you a drink?\tPuis-je te servir un verre ?\nCan I make you a drink?\tPuis-je vous servir un verre ?\nCan I open my eyes now?\tJe peux ouvrir les yeux maintenant ?\nCan I open the windows?\tPuis-je ouvrir les fenêtres ?\nCan I park my car here?\tEst-ce que je peux garer ma voiture ici ?\nCan I see you a moment?\tPuis-je te voir un moment ?\nCan I see you a moment?\tPuis-je vous voir un moment ?\nCan I see you a second?\tPuis-je vous voir une seconde ?\nCan I see you a second?\tPuis-je te voir une seconde ?\nCan I see you tomorrow?\tPuis-je te voir demain ?\nCan I see you tomorrow?\tPuis-je vous voir demain ?\nCan I take a break now?\tPuis-je prendre une pause maintenant ?\nCan I touch your beard?\tPuis-je toucher votre barbe ?\nCan anyone believe you?\tEst-ce que quelqu'un vous croit ?\nCan anyone believe you?\tQuiconque peut-il vous croire ?\nCan anyone believe you?\tQuiconque peut-il te croire ?\nCan anyone verify that?\tQuiconque peut-il vérifier cela ?\nCan she ride a bicycle?\tSait-elle faire du vélo ?\nCan we afford all this?\tAvons-nous les moyens de tout ceci ?\nCan we get started now?\tPeut-on commencer maintenant ?\nCan we get started now?\tPouvons-nous commencer maintenant ?\nCan we save the planet?\tPouvons-nous sauver la planète ?\nCan we talk in private?\tOn peut parler en privé ?\nCan we talk in private?\tPouvons-nous parler en privé ?\nCan you call me a taxi?\tPouvez-vous m'appeler un taxi ?\nCan you climb the tree?\tPouvez-vous grimper à l'arbre ?\nCan you close the door?\tPeux-tu fermer la porte ?\nCan you close the door?\tPouvez-vous fermer la porte ?\nCan you do a headstand?\tSais-tu te tenir sur la tête ?\nCan you do a headstand?\tSavez-vous vous tenir sur la tête ?\nCan you do bookkeeping?\tPouvez-vous tenir la comptabilité ?\nCan you do it tomorrow?\tPeux-tu le faire demain?\nCan you give me a ride?\tPeux-tu me déposer ?\nCan you give me a sign?\tPeux-tu me donner un signe?\nCan you leave me alone?\tPeux-tu me laisser seule ?\nCan you leave me alone?\tPeux-tu me laisser tranquille ?\nCan you leave me alone?\tPeux-tu me laisser seul ?\nCan you play the organ?\tSavez-vous jouer de l'orgue ?\nCan you play the piano?\tSavez-vous jouer du piano ?\nCan you please shut up?\tPeux-tu la fermer, je te prie ?\nCan you ride a bicycle?\tSais-tu faire du vélo ?\nCan you ride a bicycle?\tSavez-vous faire du vélo ?\nCan you say that again?\tPeux-tu répéter cela ?\nCan you say that again?\tPouvez-vous répéter cela ?\nCan you say that again?\tPeux-tu redire cela ?\nCan you sing this song?\tPeux-tu chanter cette chanson ?\nCan you turn that down?\tTu peux mettre moins fort?\nCan you turn that down?\tTu peux baisser le son?\nCan you use a computer?\tSais-tu utiliser un ordinateur ?\nCan you use a computer?\tSavez-vous utiliser un ordinateur ?\nCan you walk on stilts?\tSais-tu marcher sur des échasses ?\nCan you walk on stilts?\tSavez-vous marcher sur des échasses ?\nCan you watch the kids?\tPeux-tu surveiller les enfants ?\nCan you watch the kids?\tPouvez-vous surveiller les enfants ?\nCan't you see I'm busy?\tNe peux-tu voir que je suis occupé ?\nCan't you see I'm busy?\tNe peux-tu voir que je suis occupée ?\nCan't you see I'm busy?\tNe pouvez-vous voir que je suis occupé ?\nCan't you see I'm busy?\tNe pouvez-vous voir que je suis occupée ?\nCan't you see I'm busy?\tNe vois-tu pas que je suis occupé ?\nCan't you see I'm busy?\tNe vois-tu pas que je suis occupée ?\nCats have pointed ears.\tLes chats ont les oreilles pointues.\nCats usually hate dogs.\tEn général, les chats détestent les chiens.\nCharge this bill to me.\tImputez-moi cette note.\nCharge this bill to me.\tMettez cette note sur mon compte.\nCharity begins at home.\tCharité bien ordonnée commence par soi-même.\nChoose between the two.\tChoisis entre les deux.\nChoose books carefully.\tChoisis des livres avec soin.\nChoose books carefully.\tChoisis les livres avec soin.\nChoose books carefully.\tChoisissez des livres avec soin.\nChoose books carefully.\tChoisissez les livres avec soin.\nClose the door, please.\tFermez la porte, s'il vous plaît.\nClose the door, please.\tVeuillez fermer la porte.\nClose the door, please.\tFerme la porte, je te prie.\nClose the door, please.\tFerme la porte, s'il te plait.\nClose the door, please.\tJe vous prie de fermer la porte.\nClose the door, please.\tVeuillez fermer la porte !\nClose the door, please.\tFermez la porte, je vous prie !\nClose the door, please.\tFerme la porte, je te prie !\nClose the door, please.\tJe te prie de fermer la porte !\nCome and dance with me.\tViens et danse avec moi.\nCome back to the party.\tReviens à la fête.\nCome here and sit down.\tViens ici et assieds-toi.\nCome on! We'll be late.\tAllez ! Nous serons en retard.\nCome over to our table.\tJoins-toi à notre table !\nCome over to our table.\tJoignez-vous à notre table !\nCome whenever you like.\tViens quand tu veux.\nCome whenever you like.\tVenez quand vous voulez.\nCome whenever you want.\tViens quand tu veux.\nCome whenever you want.\tVenez quand vous voulez.\nCome whenever you want.\tPasse quand tu veux.\nCome with me, will you?\tViens avec moi, veux-tu ?\nCooking is interesting.\tLa cuisine, c'est intéressant.\nCould I have the check?\tPourrais-je avoir la note ?\nCould I use your phone?\tPourrais-je utiliser votre téléphone ?\nCould I use your phone?\tPourrais-je utiliser ton téléphone ?\nCould I work part-time?\tPourrais-je travailler à temps partiel ?\nCould you gift wrap it?\tPourriez-vous l'emballer ?\nCould you gift wrap it?\tPourrais-tu l'emballer ?\nCould you kill someone?\tSeriez-vous capable de tuer quelqu'un ?\nCould you kill someone?\tSerais-tu capable de tuer quelqu'un ?\nCould you leave me one?\tPourrais-tu m'en laisser un ?\nCould you leave me one?\tPourrais-tu m'en laisser une ?\nCould you leave me one?\tPourriez-vous m'en laisser un ?\nCould you leave me one?\tPourriez-vous m'en laisser une ?\nCould you show me that?\tPourriez-vous me montrer cela ?\nCould you stop, please?\tPourrais-tu cesser, je te prie ?\nCould you stop, please?\tPourriez-vous cesser, je vous prie ?\nCould you turn it down?\tPourrais-tu baisser le son ?\nCould you turn it down?\tPourrais-tu le refuser ?\nCould you turn it down?\tPourriez-vous le refuser ?\nCould you turn it down?\tPourriez-vous baisser le son ?\nDancing is not a crime.\tDanser n'est pas un crime.\nDead men tell no tales.\tLes morts ne racontent pas d'histoires.\nDead men tell no tales.\tLes morts ne parlent pas.\nDefend her from danger.\tProtégez-la du danger.\nDid I ask your opinion?\tVous ai-je demandé votre opinion ?\nDid I ask your opinion?\tT'ai-je demandé ton opinion ?\nDid I not mention that?\tN'en ai-je pas fait mention ?\nDid I not mention that?\tNe l'ai-je pas mentionné ?\nDid anybody take notes?\tQuelqu'un a-t-il pris des notes ?\nDid it snow last night?\tA-t-il neigé cette nuit?\nDid the phone wake you?\tLe téléphone vous a-t-il réveillé ?\nDid the phone wake you?\tLe téléphone t'a-t-il réveillé ?\nDid they find anything?\tOnt-ils trouvé quoi que ce soit ?\nDid they find anything?\tOnt-elles trouvé quoi que ce soit ?\nDid we forget anything?\tAvons-nous oublié quelque chose ?\nDid you agree to do it?\tAvez-vous accepté de le faire ?\nDid you agree to do it?\tAs-tu accepté de le faire ?\nDid you bring a weapon?\tAvez-vous apporté une arme ?\nDid you bring a weapon?\tAs-tu apporté une arme ?\nDid you bring the book?\tAvez-vous apporté le livre ?\nDid you bring the book?\tAs-tu apporté le livre ?\nDid you enjoy the film?\tAs-tu aimé le film ?\nDid you enjoy the game?\tAs-tu apprécié la partie ?\nDid you enjoy the game?\tAvez-vous apprécié la partie ?\nDid you enjoy the show?\tAs-tu apprécié le spectacle ?\nDid you enjoy the show?\tAvez-vous apprécié le spectacle ?\nDid you enjoy the tour?\tAs-tu apprécié la visite ?\nDid you enjoy the tour?\tAvez-vous apprécié la visite ?\nDid you enjoy your run?\tAvez-vous eu plaisir à courir ?\nDid you enjoy your run?\tAs-tu eu plaisir à courir ?\nDid you enjoy yourself?\tEst-ce que tu t'apprécies ?\nDid you enjoy yourself?\tT'es-tu amusé ?\nDid you enjoy yourself?\tT'es-tu amusée ?\nDid you enjoy yourself?\tVous êtes-vous amusé ?\nDid you enjoy yourself?\tVous êtes-vous amusée ?\nDid you enjoy yourself?\tVous êtes-vous amusées ?\nDid you enjoy yourself?\tVous êtes-vous amusés ?\nDid you find your keys?\tAs-tu trouvé tes clefs ?\nDid you find your keys?\tAvez-vous trouvé vos clefs ?\nDid you finish the job?\tAvez-vous terminé le travail ?\nDid you get good marks?\tAs-tu obtenu de bons résultats ?\nDid you get her letter?\tAs-tu reçu sa lettre ?\nDid you get her letter?\tAvez-vous reçu sa lettre ?\nDid you get his letter?\tAs-tu reçu sa lettre ?\nDid you get his letter?\tAvez-vous reçu sa lettre ?\nDid you have breakfast?\tAs-tu petit-déjeuné ?\nDid you hear the noise?\tAs-tu entendu ce bruit ?\nDid you just insult me?\tViens-tu de m'insulter ?\nDid you like the movie?\tAs-tu aimé le film ?\nDid you like the movie?\tAvez-vous aimé le film ?\nDid you like the movie?\tLe film vous a-t-il plu ?\nDid you order any food?\tAvez-vous commandé la moindre nourriture ?\nDid you order the book?\tAs-tu commandé le livre ?\nDid you read all of it?\tAvez-vous tout lu ?\nDid you read it at all?\tAvez-vous tout lu ?\nDid you read it at all?\tTu l'as lu en entier ?\nDid you really do that?\tL'avez-vous vraiment fait ?\nDid you really do that?\tL'as-tu vraiment fait ?\nDid you see a bag here?\tAs-tu vu un sac ici ?\nDid you see him go out?\tL'avez-vous vu sortir ?\nDid you see what I did?\tAs-tu vu ce que j'ai fait ?\nDid you see what I did?\tAvez-vous vu ce que j'ai fait ?\nDid you see who it was?\tAs-tu vu qui c'était ?\nDid you steal that car?\tAvez-vous volé cette voiture ?\nDid you steal that car?\tAvez-vous dérobé cette voiture ?\nDid you steal that car?\tAs-tu volé cette voiture ?\nDid you think about it?\tY avez-vous pensé ?\nDid you think about it?\tY as-tu pensé ?\nDid you watch the game?\tAs-tu regardé le match ?\nDid you watch the game?\tAvez-vous regardé la partie ?\nDid you win the trophy?\tAs-tu remporté le trophée ?\nDid you win the trophy?\tAvez-vous remporté le trophée ?\nDid you work yesterday?\tAvez-vous travaillé hier ?\nDidn't anyone tell you?\tPersonne ne te l'a-t-il dit ?\nDidn't anyone tell you?\tPersonne ne vous l'a-t-il dit ?\nDinner is almost ready.\tLe déjeuner est presque prêt.\nDinner is almost ready.\tLe dîner est presque prêt.\nDinner is almost ready.\tLe souper est presque prêt.\nDo I look happy to you?\tAi-je l'air heureux, selon vous ?\nDo I look happy to you?\tAi-je l'air heureuse, selon vous ?\nDo I look happy to you?\tAi-je l'air heureux, selon toi ?\nDo I look happy to you?\tAi-je l'air heureuse, selon toi ?\nDo I make myself clear?\tMe fais-je bien comprendre ?\nDo ghosts really exist?\tLes fantômes existent-ils vraiment ?\nDo not call him master.\tNe l'appelez pas maître.\nDo one thing at a time.\tFais une seule chose à la fois.\nDo those insects sting?\tCes insectes piquent-ils ?\nDo we have a deal here?\tAffaire conclue ?\nDo we have enough food?\tAvons-nous assez de nourriture ?\nDo we have enough food?\tDisposons-nous de suffisamment de nourriture ?\nDo what you have to do.\tFais ce que tu as à faire.\nDo what you have to do.\tFaites ce que vous avez à faire.\nDo you agree with this?\tEst-ce que tu es d'accord avec ça ?\nDo you agree with this?\tEs-tu d'accord avec ceci ?\nDo you agree with this?\tÊtes-vous d'accord avec ceci ?\nDo you believe in UFOs?\tCroyez-vous aux OVNI ?\nDo you believe in UFOs?\tCrois-tu aux OVNIs  ?\nDo you believe in UFOs?\tCrois-tu aux OVNIs ?\nDo you believe in UFOs?\tCroyez-vous aux OVNIs ?\nDo you come here often?\tTu viens souvent ici ?\nDo you come here often?\tVenez-vous souvent ici ?\nDo you come here often?\tViens-tu souvent ici ?\nDo you drink green tea?\tBois-tu du thé vert ?\nDo you drink green tea?\tBuvez-vous du thé vert ?\nDo you feel any better?\tVous sentez-vous mieux ?\nDo you feel any better?\tTe sens-tu mieux ?\nDo you give to charity?\tDonnes-tu aux œuvres ?\nDo you give to charity?\tFais-tu la charité ?\nDo you have a daughter?\tAs-tu une fille ?\nDo you have a passport?\tDisposez-vous d'un passeport ?\nDo you have a passport?\tDisposes-tu d'un passeport ?\nDo you have a question?\tEst-ce que vous avez des questions ?\nDo you have a question?\tAs-tu une question ?\nDo you have a shoehorn?\tAvez-vous un chausse-pied ?\nDo you have a shoehorn?\tDisposez-vous d'un chausse-pied ?\nDo you have a shoehorn?\tAs-tu un chausse-pied ?\nDo you have a shoehorn?\tDisposes-tu d'un chausse-pied ?\nDo you have a solution?\tAs-tu une solution ?\nDo you have an opinion?\tVous avez une opinion ?\nDo you have an opinion?\tTu as une opinion ?\nDo you have an opinion?\tAvez-vous une opinion ?\nDo you have an opinion?\tAs-tu une opinion ?\nDo you have any drinks?\tAvez-vous des boissons ici ?\nDo you have any others?\tVous en avez d'autres ?\nDo you have everything?\tAvez-vous tout ?\nDo you have everything?\tAs-tu tout ?\nDo you have nightmares?\tFais-tu des cauchemars ?\nDo you have nightmares?\tFaites-vous des cauchemars ?\nDo you have some money?\tAs-tu un peu d'argent ?\nDo you have some money?\tAs-tu quelque argent ?\nDo you have some money?\tDisposez-vous d'un peu d'argent ?\nDo you have some money?\tAvez-vous un peu d'argent ?\nDo you know Noah's ark?\tConnais-tu l'arche de Noé ?\nDo you know about that?\tEs-tu au courant de cela ?\nDo you know about that?\tÊtes-vous au courant de cela ?\nDo you know her at all?\tLa connaissez-vous vraiment ?\nDo you know him at all?\tLe connais-tu le moins du monde ?\nDo you know him at all?\tLe connaissez-vous le moins du monde ?\nDo you know his father?\tConnais-tu son père ?\nDo you know his father?\tConnaissez-vous son père ?\nDo you know that hotel?\tConnais-tu cet hôtel ?\nDo you know the answer?\tTu connais la réponse ?\nDo you know the answer?\tConnais-tu la réponse ?\nDo you know the answer?\tConnaissez-vous la réponse ?\nDo you know the family?\tConnaissez-vous la famille ?\nDo you know the family?\tConnais-tu la famille ?\nDo you know the reason?\tConnaissez-vous la raison ?\nDo you know the reason?\tConnais-tu la raison ?\nDo you know who he was?\tSais-tu qui il était ?\nDo you know who he was?\tSavez-vous qui il était ?\nDo you know who she is?\tSais-tu qui elle est ?\nDo you know who she is?\tSais-tu qui elle est ?\nDo you like black cats?\tAimez-vous les chats noirs ?\nDo you like my T-shirt?\tMon maillot te plaît-il ?\nDo you like this color?\tEst-ce que cette couleur vous plaît ?\nDo you like this color?\tAimes-tu cette couleur ?\nDo you like this music?\tAimes-tu cette musique?\nDo you like white wine?\tAimez-vous le vin blanc ?\nDo you like white wine?\tAimes-tu le vin blanc ?\nDo you mind if I smoke?\tEst-ce que ça vous dérange si je fume ?\nDo you mind if I smoke?\tÇa te dérange si je fume ?\nDo you mind if I smoke?\tVoyez-vous un inconvénient à ce que je fume ?\nDo you mind if I smoke?\tVois-tu un inconvénient à ce que je fume ?\nDo you need much money?\tAs-tu besoin de beaucoup d'argent ?\nDo you need much money?\tTe faut-il beaucoup d'argent ?\nDo you need some water?\tVous faut-il de l'eau ?\nDo you need some water?\tTe faut-il de l'eau ?\nDo you play any sports?\tPratiques-tu quelque sport ?\nDo you play any sports?\tPratiquez-vous quelque sport ?\nDo you play any sports?\tPratiques-tu le moindre sport ?\nDo you play any sports?\tPratiquez-vous le moindre sport ?\nDo you really not know?\tNe le savez-vous vraiment pas ?\nDo you really not know?\tNe le sais-tu vraiment pas ?\nDo you see much of him?\tLe vois-tu souvent ?\nDo you see what I mean?\tTu comprends ce que je veux dire ?\nDo you see what I mean?\tVois-tu ce que je veux dire ?\nDo you see what I mean?\tVoyez-vous ce que je veux dire ?\nDo you smell something?\tSens-tu quelque chose ?\nDo you smell something?\tSentez-vous quelque chose ?\nDo you speak Bulgarian?\tParles-tu bulgare ?\nDo you speak Bulgarian?\tEst-ce que tu parles bulgare ?\nDo you speak Esperanto?\tParlez-vous espéranto ?\nDo you study every day?\tÉtudies-tu chaque jour ?\nDo you study every day?\tÉtudiez-vous chaque jour ?\nDo you study every day?\tÉtudies-tu quotidiennement ?\nDo you think I'm crazy?\tPenses-tu que je sois fou ?\nDo you think I'm crazy?\tPensez-vous que je sois fou ?\nDo you think I'm crazy?\tPenses-tu que je sois folle ?\nDo you think I'm crazy?\tPensez-vous que je sois folle ?\nDo you think I'm right?\tPenses-tu que j'ai raison ?\nDo you think I'm right?\tPensez-vous que j'ai raison ?\nDo you think in German?\tPenses-tu en allemand ?\nDo you think it'll fit?\tPenses-tu que ce sera la bonne taille ?\nDo you think it'll fit?\tPensez-vous que ce sera la bonne taille ?\nDo you understand that?\tLe comprenez-vous ?\nDo you understand that?\tComprenez-vous ça ?\nDo you understand that?\tComprends-tu ça ?\nDo you understand that?\tLe comprends-tu ?\nDo you want me to wait?\tVeux-tu que j'attende ?\nDo you want me to wait?\tVoulez-vous que j'attende ?\nDo you want some water?\tVous voulez un peu d'eau ?\nDo you want some water?\tVous voulez de l'eau ?\nDo you want some water?\tTu veux de l'eau ?\nDo you want some water?\tVoulez-vous de l'eau ?\nDo you want this shirt?\tEst-ce que vous voulez cette chemise ?\nDo you want this shirt?\tVeux-tu cette chemise ?\nDo you want to be rich?\tVoulez-vous devenir riches ?\nDo you want to be rich?\tVoulez-vous être riche ?\nDo you want to come in?\tVeux-tu entrer ?\nDo you want to come in?\tVoulez-vous entrer ?\nDo you want to do this?\tVeux-tu le faire ?\nDo you want to do this?\tVoulez-vous le faire ?\nDo you want to give up?\tVeux-tu abandonner ?\nDoes he live near here?\tEst-ce qu'il vit près d'ici ?\nDoes that make you sad?\tCela vous rend-il triste ?\nDoes that make you sad?\tCela te rend-il triste ?\nDoes that surprise you?\tEst-ce que ça te surprend ?\nDoes that surprise you?\tCela vous surprend-il ?\nDoes that work for you?\tCela fonctionne-t-il pour vous ?\nDoes that work for you?\tCela fonctionne-t-il pour toi ?\nDoes the coat fit well?\tLa veste lui va bien ?\nDogs are loyal animals.\tLes chiens sont des animaux loyaux.\nDon't approach the dog.\tN'approchez pas du chien.\nDon't approach the dog.\tNe t'approche pas du chien.\nDon't approach the dog.\tNe vous approchez pas du chien.\nDon't approach the dog.\tN'approche pas du chien.\nDon't ask me for money.\tNe me demandez pas d'argent.\nDon't ask me for money.\tNe me demande pas d'argent.\nDon't be so hard on me.\tNe soyez pas si dure envers moi.\nDon't beat yourself up.\tNe te torture pas !\nDon't beat yourself up.\tNe vous torturez pas !\nDon't blame the victim.\tN'accuse pas la victime !\nDon't blame the victim.\tN'accusez pas la victime !\nDon't change your mind.\tNe change pas d'avis.\nDon't feed the animals.\tNe nourrissez pas les animaux.\nDon't feed the animals.\tNe donnez pas à manger aux animaux.\nDon't forget your coat.\tN'oublie pas ton manteau.\nDon't forget your coat.\tN'oubliez pas votre manteau.\nDon't get cute with me.\tNe la jouez pas fine avec moi.\nDon't get mad, promise.\tNe te mets pas en colère, promets !\nDon't get mad, promise.\tNe vous mettez pas en colère, promettez !\nDon't go back to sleep!\tNe retourne pas dormir !\nDon't go without a hat.\tN'y va pas sans chapeau.\nDon't go without a hat.\tN'y allez pas sans chapeau.\nDon't go without a hat.\tNe vous y rendez pas sans chapeau.\nDon't go without a hat.\tNe vous y rendez pas tête nue.\nDon't go without a hat.\tN'y va pas tête nue.\nDon't go without a hat.\tNe t'y rends pas tête nue.\nDon't just stand there.\tNe restez pas plantée là !\nDon't just stand there.\tNe restez pas plantées là !\nDon't just stand there.\tNe restez pas plantés là !\nDon't just stand there.\tNe restez pas planté là !\nDon't just stand there.\tNe reste pas plantée là !\nDon't just stand there.\tNe reste pas planté là !\nDon't leave them alone.\tNe les laissez pas seuls.\nDon't leave them alone.\tNe les laisse pas seuls.\nDon't leave them alone.\tNe les laisse pas seules.\nDon't leave them alone.\tNe les laissez pas seules.\nDon't let him approach.\tNe le laisse pas s'approcher !\nDon't let him get away.\tNe le laisse pas s'échapper.\nDon't light the candle.\tN'allume pas la bougie !\nDon't light the candle.\tN'allumez pas la bougie !\nDon't make fun of them.\tNe te moque pas d'eux.\nDon't make me hurt you.\tNe m'obligez pas à vous faire mal !\nDon't make me hurt you.\tNe m'oblige pas à te faire mal !\nDon't make me kill you.\tNe me force pas à te tuer !\nDon't make me kill you.\tNe me forcez pas à vous tuer !\nDon't make me kill you.\tNe m'obligez pas à vous tuer !\nDon't make me kill you.\tNe m'oblige pas à te tuer !\nDon't open the box yet.\tN'ouvrez pas encore la boîte !\nDon't open the box yet.\tN'ouvre pas encore la boîte !\nDon't raise your voice.\tN'élevez pas la voix !\nDon't raise your voice.\tN'élève pas la voix !\nDon't release that dog.\tNe lâche pas le chien.\nDon't say a word to me.\tNe me dis pas un mot !\nDon't say a word to me.\tNe me dites pas un mot !\nDon't say another word.\tNe dis pas un mot de plus !\nDon't say another word.\tNe dites pas un mot de plus !\nDon't say such a thing.\tNe dis pas une chose pareille.\nDon't sit on the floor.\tNe vous asseyez pas par terre.\nDon't sleep too deeply.\tNe dors pas trop profondément !\nDon't spoil your child.\tNe gâte pas ton enfant.\nDon't spoil your child.\tNe gâtez pas votre enfant.\nDon't take any chances.\tNe prends pas de risques !\nDon't take any chances.\tNe prenez pas de risques !\nDon't take any chances.\tNe prends aucun risque !\nDon't take any chances.\tNe prenez aucun risque !\nDon't take it personal.\tNe le prends pas personnellement.\nDon't take it to heart.\tNe le prends pas trop à cœur.\nDon't tell anyone this.\tNe dis cela à personne !\nDon't tell anyone this.\tNe dites cela à personne.\nDon't tell anyone this.\tN'en fais part à personne.\nDon't tell me to relax.\tNe me dites pas de me détendre !\nDon't tell me to relax.\tNe me dis pas de me détendre !\nDon't tell your mother.\tNe le dites pas à votre mère.\nDon't tell your mother.\tNe le dis pas à ta mère.\nDon't touch the button.\tNe touche pas au bouton.\nDon't toy with me, Tom.\tNe jouez pas avec moi, Tom.\nDon't toy with me, Tom.\tNe joue pas avec moi, Tom.\nDon't try this at home.\tN'essaye pas ça chez toi.\nDon't try this at home.\tN'essaie pas ça chez toi.\nDon't try this at home.\tN'essayez pas ça chez vous.\nDon't try this at home.\tN'essaye pas ça à la maison.\nDon't try this at home.\tN'essaie pas ça à la maison.\nDon't try this at home.\tN'essayez pas ça à la maison.\nDon't try to be a hero.\tNe joue pas les héros !\nDon't try to be a hero.\tNe tente pas le diable !\nDon't try to be a hero.\tNe jouez pas les héros !\nDon't try to be a hero.\tNe tentez pas le diable !\nDon't underestimate us.\tNe nous sous-estime pas.\nDon't waste your money.\tNe jette pas ton argent par les fenêtres.\nDon't worry about that.\tNe t'en fais pas à propos de ça.\nDon't worry about that.\tNe t'inquiète pas pour ça.\nDon't worry. It's easy.\tNe t'en fais pas ! C'est facile.\nDon't worry. It's easy.\tNe vous en faites pas ! C'est facile.\nDon't write in red ink.\tNe pas écrire à l'encre rouge.\nDon't write in red ink.\tN'écrivez pas à l'encre rouge.\nDon't you speak French?\tVous ne parlez pas français ?\nDon't you want to help?\tNe veux-tu pas donner de l'aide?\nDon't you want to help?\tNe voulez-vous pas prêter assistance ?\nDon't you want to know?\tNe veux-tu pas savoir ?\nDon't you want to know?\tNe voulez-vous pas savoir ?\nDreaming costs nothing.\tRêver ne coute rien.\nDry wood burns quickly.\tLe bois sec brûle vite.\nEaster is near at hand.\tPâques est à portée de main.\nElves have pointy ears.\tLes Elfes ont les oreilles en pointes.\nEnjoy it while you can.\tProfites-en tant que tu peux !\nEnjoy it while you can.\tProfitez-en tant que vous pouvez !\nEven Tom was surprised.\tMême Tom était surpris.\nEven a child can do it.\tMême un enfant peut le faire.\nEverybody calls me Tom.\tTout le monde m'appelle Tom.\nEverybody puts me down.\tTout le monde me dévalorise.\nEverybody was startled.\tTout le monde fut surpris.\nEverybody was startled.\tTout le monde a été surpris.\nEverybody was startled.\tTout le monde fut arrêté.\nEverybody was startled.\tTout le monde a été arrêté.\nEveryone called me Tom.\tTout le monde m'a appelé Tom.\nEveryone can do better.\tTout le monde peut faire mieux.\nEveryone is against me.\tTout le monde est contre moi.\nEveryone is not honest.\tTout le monde n'est pas honnête.\nEveryone knew the song.\tTout le monde savait la chanson.\nEveryone knows the law.\tChacun connaît la loi.\nEveryone looks worried.\tTout le monde a l'air soucieux.\nEveryone needs friends.\tTout le monde a besoin d'amis.\nEveryone was horrified.\tTout le monde a été horrifié.\nEveryone was horrified.\tTout le monde fut horrifié.\nEveryone was screaming.\tTout le monde criait.\nEveryone was surprised.\tTout le monde fut surpris.\nEveryone was surprised.\tTout le monde a été surpris.\nEveryone will be happy.\tTout le monde sera content.\nEveryone will be happy.\tTout le monde sera heureux.\nEveryone's in position.\tTout le monde est en position.\nEverything has a price.\tTout a un prix.\nEverything is possible.\tTout est possible.\nEverything looked nice.\tTout avait l'air joli.\nEverything looked nice.\tTout avait l'air agréable.\nEverything worked fine.\tTout a parfaitement fonctionné.\nExcuse me for a moment.\tVeuillez m'excuser un moment.\nExcuse us for a minute.\tExcusez-nous un moment.\nFasten your seat belts.\tAttachez vos ceintures.\nFather is still in bed.\tPère est encore au lit.\nFigure it out yourself.\tDébrouille-toi tout seul.\nFinally, I found a job.\tJ'ai enfin trouvé du travail.\nFinally, the bell rang.\tFinalement, la sonnette retentit.\nFlowers make her happy.\tLes fleurs la réjouissent.\nFor me, it's important.\tPour moi, c'est important.\nForget I said anything.\tOublie que j'ai dit quoi que ce fut.\nForget I said anything.\tOubliez que j'ai dit quoi que ce fut.\nForget I said anything.\tOublie que j'ai dit quoi que ce soit.\nForget I said anything.\tOubliez que j'ai dit quoi que ce soit.\nForget I said anything.\tOublie que j'ai dit la moindre chose.\nForget I said anything.\tOubliez que j'ai dit la moindre chose.\nGet a hold of yourself.\tRessaisissez-vous !\nGet a hold of yourself.\tRessaisis-toi !\nGet a hold of yourself.\tReprenez-vous !\nGet a hold of yourself.\tReprends-toi !\nGet back into your car.\tRetourne dans ta voiture !\nGet back into your car.\tRetournez dans votre voiture !\nGet me a chair, please.\tMerci de m'apporter une chaise.\nGet me a glass of milk.\tPrends-moi un verre de lait.\nGet me a glass of milk.\tVa me chercher un verre de lait.\nGet me out of here now.\tSors-moi de là maintenant !\nGet me out of here now.\tSortez-moi de là maintenant !\nGet the door, will you?\tPrends la porte, veux-tu ?\nGet the door, will you?\tPrenez la porte, voulez-vous ?\nGive Tom what he wants.\tDonne à Tom ce qu'il veut.\nGive Tom what he wants.\tDonnez à Tom ce qu'il désire.\nGive it to me straight.\tDonne-le-moi immédiatement.\nGive it to me straight.\tDonnez-le-moi immédiatement.\nGive it your best shot.\tFais de ton mieux.\nGive me a final answer.\tDonne-moi une réponse définitive.\nGive me a little money.\tDonnez-moi un peu d'argent.\nGive me another chance.\tDonnez-moi une autre chance.\nGive me back my pencil.\tRends-moi mon crayon.\nGive me back my pencil.\tRendez-moi mon crayon.\nGive me the microphone.\tDonne-moi le micro !\nGive me the microphone.\tDonnez-moi le micro !\nGive me thirty seconds.\tDonne-moi trente secondes.\nGive me thirty seconds.\tDonnez-moi trente secondes.\nGive the devil his due.\tDonne au diable ce qui lui revient.\nGive this book to Ramu.\tDonne ce livre à Ramu.\nGive this book to Ramu.\tDonnez ce livre à Ramu.\nGo get me another beer.\tVa me chercher une autre bière.\nGo home. Get some rest.\tRentre chez toi ! Prends du repos !\nGo home. Get some rest.\tRentrez chez vous ! Prenez du repos !\nGod has a plan for you.\tDieu a un projet pour toi.\nGod has a plan for you.\tDieu a un projet pour vous.\nGood evening, everyone.\tBonsoir, tout le monde !\nHand over your weapons.\tRemets les armes !\nHand over your weapons.\tRemettez les armes !\nHand over your weapons.\tRemettez vos armes !\nHand over your weapons.\tRemets tes armes !\nHas Flight 123 arrived?\tLe vol cent vingt trois est-il arrivé ?\nHas Tom eaten anything?\tTom a-t-il mangé quelque chose ?\nHas he arrived already?\tEst-il déjà arrivé ?\nHas prison changed him?\tLa prison l'a-t-il changé?\nHas something happened?\tEst-il arrivé quelque chose?\nHas something happened?\tQuelque chose s'est-il produit ?\nHas something happened?\tQuelque chose s'est-il passé ?\nHas the world gone mad?\tLe monde est-il devenu fou ?\nHasn't Tom arrived yet?\tIl est pas encore arrivé, Tom ?\nHave I missed anything?\tAi-je loupé quoi que ce soit ?\nHave a seat, won't you?\tPrenez place, voulez-vous ?\nHave a seat, won't you?\tPrends place, veux-tu ?\nHave you already eaten?\tEst-ce que vous avez déjà mangé ?\nHave you already eaten?\tEst-ce que tu as déjà mangé ?\nHave you already eaten?\tAvez-vous déjà mangé ?\nHave you already voted?\tAvez-vous déjà voté ?\nHave you been drinking?\tAs-tu bu ?\nHave you been drinking?\tAvez-vous bu ?\nHave you been to Cairo?\tAs-tu jamais été au Caire ?\nHave you been to Cairo?\tAvez-vous jamais été au Caire ?\nHave you been to Kyoto?\tÊtes-vous déjà allé à Kyoto ?\nHave you ever been fat?\tAvez-vous jamais été grosse ?\nHave you ever seen her?\tEst-ce que tu l'as déjà vue ?\nHave you ever seen her?\tL'as-tu jamais vue ?\nHave you ever tried it?\tL'avez-vous jamais tenté ?\nHave you ever tried it?\tL'as-tu jamais tenté ?\nHave you got any plans?\tAs-tu des projets ?\nHave you put on weight?\tAvez-vous pris du poids ?\nHave you put on weight?\tAs-tu pris du poids ?\nHave you read this yet?\tAs-tu déjà lu ceci ?\nHave you seen my purse?\tAvez-vous vu mon porte-monnaie ?\nHave you seen my purse?\tAs-tu vu mon porte-monnaie ?\nHave you seen my watch?\tAs-tu vu ma montre ?\nHave you seen this man?\tAvez-vous vu cet homme?\nHave you seen this yet?\tAs-tu déjà vu ceci ?\nHave you spoken to Tom?\tAs-tu parlé à Tom ?\nHave you spoken to Tom?\tAvez-vous parlé à Tom ?\nHave you told your mom?\tL'as-tu dit à ta mère ?\nHave you told your mom?\tL'avez-vous dit à votre mère ?\nHe accepted my present.\tIl a accepté mon cadeau.\nHe acted like a madman.\tIl a été frappé de démence.\nHe admitted his defeat.\tIl admit sa défaite.\nHe admitted his defeat.\tIl a admis sa défaite.\nHe always studies hard.\tIl étudie toujours avec application.\nHe approached the door.\tIl s'est approché de la porte.\nHe asked a favor of me.\tIl m'a demandé une faveur.\nHe asked for my advice.\tIl m'a demandé conseil.\nHe asked for the money.\tIl demanda l'argent.\nHe asked for the money.\tIl a demandé l'argent.\nHe ate the whole apple.\tIl mangea toute la pomme.\nHe became world famous.\tIl est devenu célèbre dans le monde entier.\nHe began to cry loudly.\tIl se mit à pleurer tout fort.\nHe begged for his life.\tIl supplia qu'on épargne sa vie.\nHe begged for his life.\tIl a supplié qu'on épargne sa vie.\nHe bought a dozen eggs.\tIl a acheté une douzaine d'œufs.\nHe broke out into rage.\tSa colère éclata.\nHe broke the door open.\tIl entra en brisant la porte.\nHe brought us sad news.\tIl nous apporta de tristes nouvelles.\nHe burst into laughter.\tIl éclata de rire.\nHe called off the trip.\tIl annula le voyage.\nHe called off the trip.\tIl a annulé le voyage.\nHe called out for help.\tIl a appelé à l'aide.\nHe came after you left.\tIl est venu après que vous êtes parti.\nHe came after you left.\tIl est venu après que vous êtes partis.\nHe came home very late.\tIl est rentré à la maison très tard.\nHe came home very late.\tIl rentra chez lui fort tard.\nHe came home very late.\tIl rentra fort tard à la maison.\nHe came when I was out.\tIl est venu alors que j'étais parti.\nHe can play the guitar.\tIl sait jouer de la guitare.\nHe can talk to spirits.\tIl sait parler aux esprits.\nHe can't have been ill.\tIl n'a pas pu être malade.\nHe can't speak English.\tIl ne sait pas parler anglais.\nHe can't stop laughing.\tIl n'arrive pas à arrêter de rire.\nHe can't walk any more.\tIl ne peut plus marcher.\nHe cannot have said so.\tIl ne peut pas avoir dit cela.\nHe changed his address.\tIl a changé d'adresse.\nHe climbs trees easily.\tIl grimpe facilement aux arbres.\nHe comes from Hangzhou.\tIl vient de Hangzhou.\nHe confessed his guilt.\tIl a confessé sa culpabilité.\nHe confessed his guilt.\tIl reconnut sa culpabilité.\nHe delivers newspapers.\tIl livre les journaux.\nHe delivers newspapers.\tIl distribue des journaux.\nHe demanded better pay.\tIl exigea une augmentation.\nHe deserves punishment.\tIl mérite une punition.\nHe did all the legwork.\tIl a fait tout le travail de recherche.\nHe did all the legwork.\tIl a effectué tout le travail de recherche.\nHe did all the legwork.\tIl a procédé à tout le travail préliminaire.\nHe did all the legwork.\tIl a fait tout le travail de fond.\nHe did all the legwork.\tIl a fait tout le travail d'enquête.\nHe did it just for fun.\tIl l'a fait juste pour le plaisir.\nHe did nothing but cry.\tIl ne faisait que pleurer.\nHe did the right thing.\tIl fit ce qu'il fallait.\nHe did the right thing.\tIl a fait ce qu'il fallait.\nHe did the unthinkable.\tIl a commis l'impensable.\nHe didn't come on time.\tIl n'arriva pas à l'heure.\nHe didn't get her joke.\tIl n'a pas compris sa blague.\nHe didn't get the joke.\tIl n'a pas saisi la blague.\nHe didn't get the joke.\tIl n'a pas compris la vanne.\nHe didn't say anything.\tIl n'a rien dit.\nHe didn't see anything.\tIl n'a rien vu.\nHe didn't see anything.\tIl ne vit rien.\nHe didn't study at all.\tIl n'a pas étudié du tout.\nHe died of lung cancer.\tIl est mort d'un cancer du poumon.\nHe doctored his report.\tIl trafiqua son rapport.\nHe does not wear a hat.\tIl ne porte pas de chapeau.\nHe doesn't like coffee.\tIl n'aime pas le café.\nHe doesn't mince words.\tIl ne mâche pas ses mots.\nHe dressed like a girl.\tIl s'est habillé comme une fille.\nHe dyed his hair black.\tIl teignit ses cheveux en noir.\nHe earns a good salary.\tIl reçoit un bon salaire.\nHe enjoys his position.\tIl apprécie sa situation.\nHe escaped from prison.\tIl s'est évadé de prison.\nHe fell into the ditch.\tIl est tombé dans le fossé.\nHe fell into the river.\tIl est tombé dans la rivière.\nHe found me a good job.\tIl m'a trouvé un bon travail.\nHe found me a nice tie.\tIl m'a trouvé une jolie cravate.\nHe gave a vague answer.\tIl m'a répondu vaguement.\nHe gave me a ride home.\tIl m'a raccompagné chez moi en voiture.\nHe gave me a ride home.\tIl m'a raccompagnée chez moi en voiture.\nHe gave me a ride home.\tIl me raccompagna chez moi en voiture.\nHe gave me some stamps.\tIl m'a donné des timbres.\nHe gave the dog a bone.\tIl donna un os au chien.\nHe gets tough at times.\tIl était dur de temps en temps.\nHe got his watch fixed.\tIl a fait réparer sa montre.\nHe got the first prize.\tIl obtint le premier prix.\nHe got the first prize.\tIl a obtenu le premier prix.\nHe got the first prize.\tIl a décroché le premier prix.\nHe got the first prize.\tIl décrocha le premier prix.\nHe greeted his parents.\tIl a salué ses parents.\nHe had a loving family.\tIl avait une famille aimante.\nHe had a new suit made.\tIl s'est fait faire un nouveau costume.\nHe had a new suit made.\tIl se fit faire un nouveau costume.\nHe had a new suit made.\tIl se fit faire un nouveau complet.\nHe handed in his paper.\tIl remit son journal.\nHe handles horses well.\tIl manie bien les chevaux.\nHe handles horses well.\tIl dirige bien les chevaux.\nHe has a beautiful tan.\tIl a un beau bronzage.\nHe has a beautiful tan.\tIl a un beau teint hâlé.\nHe has a bright future.\tIl a un avenir brillant.\nHe has a good appetite.\tIl a un bon appétit.\nHe has a grip of steel.\tIl a une poigne de fer.\nHe has a heart of gold.\tIl a un cœur d'or.\nHe has broad shoulders.\tIl a de larges épaules.\nHe has broad shoulders.\tIl est doté de larges épaules.\nHe has come a long way.\tIl s'est beaucoup amélioré.\nHe has gone to America.\tIl est parti en Amérique.\nHe has gone to Britain.\tIl est parti en Grande-Bretagne.\nHe has left his family.\tIl a quitté sa famille.\nHe has no common sense.\tIl est dépourvu de sens commun.\nHe has no common sense.\tIl n'a aucun sens commun.\nHe has no moral values.\tIl n'a aucune valeur morale.\nHe has no real friends.\tIl n'a pas de véritables amis.\nHe has no real friends.\tIl n'a aucun véritable ami.\nHe has no specific aim.\tIl n'a pas de but particulier.\nHe hasn't appeared yet.\tIl ne s'est pas encore montré.\nHe hasn't returned yet.\tIl n'est pas encore revenu.\nHe hid behind the door.\tIl se cacha derrière la porte.\nHe hid behind the tree.\tIl se cacha derrière l'arbre.\nHe hid behind the tree.\tIl s'est caché derrière l'arbre.\nHe ignores my problems.\tIl ignore mes problèmes.\nHe inherited the house.\tIl hérita de la maison.\nHe inherited the house.\tIl a hérité de la maison.\nHe instantly denied it.\tIl le nia immédiatement.\nHe is Italian by birth.\tIl est Italien de naissance.\nHe is a capable lawyer.\tC'est un avocat compétent.\nHe is a complete idiot.\tIl est complètement idiot.\nHe is a good carpenter.\tIl est bon charpentier.\nHe is a lovable person.\tC'est une personne adorable.\nHe is a man of ability.\tC'est un homme habile.\nHe is a true gentleman.\tC'est un vrai gentilhomme.\nHe is a very smart boy.\tC'est un garçon très intelligent.\nHe is afraid of Father.\tIl a peur de père.\nHe is afraid of snakes.\tIl a peur des serpents.\nHe is an office worker.\tC'est un employé de bureau.\nHe is blind in one eye.\tIl ne voit pas d'un œil.\nHe is blind in one eye.\tIl est borgne.\nHe is crazy about jazz.\tIl est dingue de jazz.\nHe is eager to succeed.\tIl est motivé pour réussir.\nHe is equal to the job.\tIl est à la hauteur de la tâche.\nHe is far from perfect.\tIl est loin d'être parfait.\nHe is fond of painting.\tIl adore la peinture.\nHe is fond of swimming.\tIl aime la natation.\nHe is full of ambition.\tIl est plein d'ambition.\nHe is good for nothing.\tIl n'est bon à rien.\nHe is good for nothing.\tC'est un bon à rien.\nHe is guilty of murder.\tIl est coupable de meurtre.\nHe is having lunch now.\tIl est en train de déjeuner à l'heure actuelle.\nHe is in love with her.\tIl est amoureux d'elle.\nHe is in need of money.\tIl a besoin d'argent.\nHe is playing outdoors.\tIl joue dehors.\nHe is popular among us.\tIl est populaire parmi nous.\nHe is quite an odd man.\tC'est un homme assez étrange.\nHe is riding a bicycle.\tIl fait du vélo.\nHe is riding a bicycle.\tIl est à vélo.\nHe is speaking English.\tIl parle anglais.\nHe is thick as a brick.\tIl est vraiment lourd.\nHe is thinking it over.\tIl est en train d'y réfléchir.\nHe is thirty years old.\tIl a trente ans.\nHe is tired of reading.\tIl est fatigué de lire.\nHe is used to the work.\tIl est habitué au travail.\nHe isn't afraid to die.\tIl ne craint pas de mourir.\nHe isn't alone anymore.\tIl n'est plus seul.\nHe jumped on the train.\tIl sauta dans le train.\nHe jumped over a ditch.\tIl sauta par-dessus un fossé.\nHe keeps surprising me.\tIl ne cesse de me surprendre.\nHe kept reading a book.\tIl continua de lire un livre.\nHe kept silent all day.\tIl resta silencieux toute la journée.\nHe knocked on the door.\tIl a frappé à la porte.\nHe knows ten languages.\tIl connaît dix langues.\nHe knows that you know.\tIl sait que tu sais.\nHe knows that you know.\tIl sait que vous savez.\nHe knows the city well.\tIl connaît bien la ville.\nHe laughed off my idea.\tIl a tourné mon idée en dérision.\nHe lay down on the bed.\tIl s'est allongé sur le lit.\nHe leads a hectic life.\tIl mène une vie trépidante.\nHe learned how to swim.\tIl a appris à nager.\nHe left Japan for good.\tIl a quitté le Japon pour de bon.\nHe left three days ago.\tIl est parti il y a trois jours.\nHe likes country music.\tIl aime la musique country.\nHe likes reading books.\tIl aime lire des livres.\nHe likes to play rough.\tIl aime jouer avec brutalité.\nHe likes to read books.\tIl lit volontiers des livres.\nHe likes to read books.\tIl aime lire des livres.\nHe lives near my house.\tIl habite près de chez moi.\nHe looked at his watch.\tIl a regardé sa montre.\nHe looked into the box.\tIl regarda dans la boîte.\nHe looked pretty tired.\tIl semblait assez fatigué.\nHe looks like a monkey.\tIl a l'air d'un singe.\nHe loved her very much.\tIl l'aimait vraiment beaucoup.\nHe loves you very much.\tIl t'aime vraiment très fort.\nHe made a bad decision.\tIl a pris une mauvaise décision.\nHe made a bad decision.\tIl prit une mauvaise décision.\nHe made a lot of money.\tIl fit beaucoup d'argent.\nHe made a lot of money.\tIl a fait beaucoup d'argent.\nHe married a rich girl.\tIl a épousé une fille riche.\nHe may have been right.\tIl se peut qu'il ait eu raison.\nHe may have told a lie.\tIl a peut-être menti.\nHe may have told a lie.\tPeut-être a-t-il menti.\nHe might come tomorrow.\tIl se peut qu'il vienne demain.\nHe missed the deadline.\tIl a manqué la date limite.\nHe missed the deadline.\tIl a raté la date limite.\nHe missed the deadline.\tIl a loupé la date limite.\nHe must be about forty.\tIl doit avoir environ 40 ans.\nHe never got a holiday.\tIl n'a jamais eu de vacances.\nHe never said it again.\tIl ne le dit plus jamais à nouveau.\nHe often appears on TV.\tIl apparaît souvent à la télé.\nHe often falls in love.\tIl tombe souvent amoureux.\nHe often goes to Tokyo.\tIl va souvent à Tokyo.\nHe often quotes Milton.\tIl cite souvent Milton.\nHe often uses a subway.\tIl emprunte souvent le métro.\nHe ordered a chop suey.\tIl a commandé un chop-suey.\nHe paid the money back.\tIl a rendu l'argent.\nHe paid the money back.\tIl rendit l'argent.\nHe picked up the phone.\tIl a décroché le téléphone.\nHe pretends to be deaf.\tIl prétend être sourd.\nHe quit without notice.\tIl a démissionné sans préavis.\nHe regrets his mistake.\tIl regrette son erreur.\nHe regrets what he did.\tIl regrette ce qu'il a fait.\nHe remains sick in bed.\tIl est malade et alité.\nHe repairs his own car.\tIl répare sa propre voiture.\nHe respects his father.\tIl respecte son père.\nHe retires next spring.\tIl prend sa retraite au printemps prochain.\nHe returned from China.\tIl revint de Chine.\nHe returned to America.\tIl retourna aux États-Unis.\nHe runs as fast as you.\tIl court aussi vite que toi.\nHe said he could do it.\tIl dit qu'il pouvait le faire.\nHe said that I must go.\tIl dit que je dois partir.\nHe sang some old songs.\tIl a chanté des vieilles chansons.\nHe sang some old songs.\tIl chanta de vieilles chansons.\nHe sat down by my side.\tIl s'est assis à côté de moi.\nHe seemed to like that.\tIl semblait l'apprécier.\nHe seemed to like that.\tIl sembla l'apprécier.\nHe seemed to like that.\tIl a semblé l'apprécier.\nHe seemed to like that.\tIl a eu l'air de l'apprécier.\nHe seemed to like that.\tIl eut l'air de l'apprécier.\nHe seems very pleasant.\tIl semble très agréable.\nHe seems very pleasant.\tIl semble fort agréable.\nHe shook hands with me.\tIl m'a serré la main.\nHe should be in charge.\tIl devrait être en charge.\nHe showed me the ropes.\tIl m'a appris les ficelles.\nHe speaks English well.\tIl parle bien anglais.\nHe speaks English well.\tIl est doué en anglais.\nHe speaks in his sleep.\tIl parle en dormant.\nHe spoke highly of you.\tIl a été élogieux à votre sujet.\nHe spoke highly of you.\tIl a été élogieux à ton sujet.\nHe spoke highly of you.\tIl a été dithyrambique à votre sujet.\nHe spoke highly of you.\tIl a été dithyrambique à ton sujet.\nHe stayed in the hotel.\tIl est resté à l'hôtel.\nHe still wants to come.\tIl veut toujours venir.\nHe stopped for a smoke.\tIl s'arrêta pour fumer.\nHe swallowed his pride.\tIl ravala sa fierté.\nHe swallowed his pride.\tIl a ravalé sa fierté.\nHe told me where to go.\tIl m'a dit où aller.\nHe took a notebook out.\tIl a sorti un calepin.\nHe took a step forward.\tIl fit un pas en avant.\nHe took a step forward.\tIl a fait un pas en avant.\nHe took me by the hand.\tIl m'a pris par la main.\nHe took out some coins.\tIl retira quelques pièces.\nHe touched my shoulder.\tIl toucha mon épaule.\nHe touched my shoulder.\tIl a touché mon épaule.\nHe touched my shoulder.\tIl me toucha l'épaule.\nHe touched my shoulder.\tIl m'a touché l'épaule.\nHe turned a somersault.\tIl effectua un saut périlleux.\nHe turned on the radio.\tIl alluma la radio.\nHe turned on the radio.\tIl a allumé la radio.\nHe uncorked the bottle.\tIl débouchonna la bouteille.\nHe uncorked the bottle.\tIl a débouchonné la bouteille.\nHe understands physics.\tIl comprend la physique.\nHe used a lot of honey.\tIl employait beaucoup de miel.\nHe used the dictionary.\tIl a utilisé le dictionnaire.\nHe used the dictionary.\tIl utilisa le dictionnaire.\nHe wanted to go to sea.\tIl voulait prendre la mer.\nHe wants only the best.\tIl ne veut que le meilleur.\nHe was a brave soldier.\tCe fut un brave soldat.\nHe was a brave soldier.\tC'était un brave soldat.\nHe was a brave soldier.\tIl fut un brave soldat.\nHe was a real drunkard.\tC'était un vrai poivrot.\nHe was a real drunkard.\tC'était un vrai soiffard.\nHe was a real drunkard.\tC'était un vrai ivrogne.\nHe was a wonderful man.\tC'était un homme merveilleux.\nHe was accused falsely.\tIl a été accusé à tort.\nHe was accused falsely.\tIl fut accusé à tort.\nHe was assigned a task.\tOn lui a assigné une tâche.\nHe was declared guilty.\tIl a été déclaré coupable.\nHe was dressed in blue.\tIl était vêtu de bleu.\nHe was drunk and angry.\tIl était soûl et en colère.\nHe was drunk and angry.\tIl était en état d'ébriété et en colère.\nHe was frozen to death.\tIl était mortellement gelé.\nHe was going to school.\tIl se rendait à l'école.\nHe was happily married.\tIl a eu un mariage heureux.\nHe was in good spirits.\tIl avait le moral.\nHe was in the hot seat.\tIl était sur la sellette.\nHe was learning a poem.\tIl apprenait un poème.\nHe was petting the dog.\tIl était en train de caresser le chien.\nHe was right after all.\tIl avait raison, après tout.\nHe was scared to do it.\tIl avait peur de le faire.\nHe was shorter than me.\tIl était plus petit que moi.\nHe was sick of his job.\tIl en avait assez de son travail.\nHe was slain in battle.\tIl est mort à la guerre.\nHe was slain in battle.\tIl fut massacré sur le champ de bataille.\nHe was too old to swim.\tIl était trop vieux pour nager.\nHe was visibly nervous.\tIl était visiblement nerveux.\nHe was voted prom king.\tIl a été élu roi du bal de fin d'année.\nHe was voted prom king.\tIl fut élu roi du bal de fin d'année.\nHe was wearing glasses.\tIl portait des lunettes.\nHe wears thick glasses.\tIl porte des verres épais.\nHe went for the doctor.\tIl est allé chercher le médecin.\nHe went home yesterday.\tIl est allé à la maison hier.\nHe went in place of me.\tIl s'y rendit à ma place.\nHe went in place of me.\tIl est allé à ma place.\nHe went off in a hurry.\tIl partit en trombe.\nHe went out the window.\tIl sortit par la fenêtre.\nHe went out the window.\tIl est sorti par la fenêtre.\nHe went to the dentist.\tIl se rendit chez le dentiste.\nHe went to the library.\tIl alla à la bibliothèque.\nHe went to the library.\tIl se rendit à la bibliothèque.\nHe went to the library.\tIl s'est rendu à la bibliothèque.\nHe went to the library.\tIl est allé à la bibliothèque.\nHe will come after all.\tIl viendra finalement.\nHe will come back soon.\tIl reviendra bientôt.\nHe will come down soon.\tIl va bientôt descendre.\nHe will end up in jail.\tIl finira en prison.\nHe will soon come back.\tIl reviendra bientôt.\nHe won the race easily.\tIl a facilement gagné la course.\nHe won the third prize.\tIl a remporté le troisième prix.\nHe wore a dark sweater.\tIl portait un chandail foncé.\nHe works like a maniac.\tIl travaille comme un dingue.\nHe wouldn't believe us.\tIl a refusé de nous croire.\nHe wouldn't believe us.\tIl refusait de nous croire.\nHe zipped his bag shut.\tIl ferma la fermeture à glissière de son sac.\nHe zipped open his bag.\tIl a ouvert la fermeture-éclair de son sac.\nHe'll never forgive me.\tJamais il ne me pardonnera.\nHe'll never forgive me.\tIl ne me pardonnera jamais.\nHe'll succeed for sure.\tIl est certain qu'il réussira.\nHe's a junior employee.\tC'est un employé subalterne.\nHe's a man of his word.\tC'est un homme de parole.\nHe's a man of his word.\tC'est un homme qui tient toujours ses promesses.\nHe's a talented writer.\tC'est un écrivain de talent.\nHe's a talented writer.\tC'est un écrivain talentueux.\nHe's a weak-willed man.\tC'est un homme de faible volonté.\nHe's acting on his own.\tIl agit de son propre chef.\nHe's addicted to drugs.\tIl est accroché aux médicaments.\nHe's afraid of the sea.\tIl a peur de la mer.\nHe's ahead in the race.\tIl est en tête de la course.\nHe's an Asian-American.\tC'est un Américain d'origine asiatique.\nHe's as blind as a bat.\tIl est myope comme une taupe.\nHe's buying an old hat.\tIl achète un vieux chapeau.\nHe's getting cold feet.\tIl commence à avoir les jetons.\nHe's getting cold feet.\tIl commence à avoir les foies.\nHe's going to sit here.\tIl va s'asseoir ici.\nHe's here to spy on us.\tIl est ici pour nous espionner.\nHe's incredibly stupid.\tIl est incroyablement idiot.\nHe's leaning on a cane.\tIl s'appuie sur une canne.\nHe's likely to be late.\tIl est probable qu'il soit en retard.\nHe's looking for a job.\tIl est à la recherche d'un emploi.\nHe's not a team player.\tIl ne sait pas jouer en équipe.\nHe's not worthy of you.\tIl n'est pas digne de toi.\nHe's not worthy of you.\tIl n'est pas digne de vous.\nHe's not young anymore.\tIl n'est plus tout jeune.\nHe's open and trusting.\tIl est ouvert et confiant.\nHe's out taking a walk.\tIl est dehors en train de se promener.\nHe's probably sleeping.\tIl dort, probablement.\nHe's rich and powerful.\tIl est riche et puissant.\nHe's stalling for time.\tIl gagne du temps.\nHe's still sick in bed.\tIl est toujours cloué au lit.\nHe's stronger than you.\tIl est plus fort que toi.\nHe's stronger than you.\tIl est plus fort que vous.\nHe's such a sweetheart.\tIl est tellement adorable !\nHe's the one, isn't he?\tC'est lui, n'est-ce pas ?\nHe's writing his diary.\tIl écrit son journal.\nHe's young and healthy.\tIl est jeune et en bonne santé.\nHealth is above wealth.\tLa santé prime sur la richesse.\nHealth is above wealth.\tLa santé est au-dessus de la richesse.\nHelp me out, would you?\tAide-moi, veux-tu ?\nHelp me out, would you?\tAidez-moi, voulez-vous ?\nHer English is perfect.\tSa version anglaise est parfaite.\nHer actions disturb me.\tSes actions me troublent.\nHer friend is a singer.\tSon ami est un chanteur.\nHer hair is very short.\tElle a les cheveux très courts.\nHer hair is very short.\tSes cheveux sont très courts.\nHer sister looks young.\tSa sœur semble jeune.\nHer sister looks young.\tSa sœur a l'air jeune.\nHere comes our teacher.\tVoilà notre professeur.\nHere's my phone number.\tVoici mon numéro de téléphone.\nHere's the tricky part.\tVoilà le rôle difficile.\nHere's the tricky part.\tVoilà la partie délicate.\nHey, don't forget this.\tEh ! N'oublie pas ça !\nHey, it's just a story.\tEh ! Ce n'est qu'une histoire.\nHis English is perfect.\tSa version anglaise est parfaite.\nHis car is really cool.\tSa voiture est vraiment chouette.\nHis child behaves well.\tSon enfant se conduit bien.\nHis idea wasn't usable.\tSon idée n'était pas exploitable.\nHis money was all gone.\tTout son argent était parti.\nHis music is too noisy.\tSa musique est trop bruyante.\nHis name was forgotten.\tSon nom fut oublié.\nHis plan was discarded.\tSon plan fut rejeté.\nHis reply was negative.\tSa réponse fut négative.\nHis reply was negative.\tSa réponse était négative.\nHis sister looks young.\tSa sœur semble jeune.\nHis sister looks young.\tSa sœur a l'air jeune.\nHis son died last year.\tSon fils est mort l'année dernière.\nHis story must be true.\tSon histoire doit être vraie.\nHis words came to mind.\tSes paroles nous vinrent à l'esprit.\nHis words gave me hope.\tSes paroles m'ont donné de l'espoir.\nHis words gave me hope.\tSes paroles me donnèrent de l'espoir.\nHis words surprised me.\tSes mots m'ont surpris.\nHis words surprised me.\tSes paroles me surprirent.\nHistory repeats itself.\tL'histoire se répète.\nHold the elevator, Tom.\tRetiens l'ascenseur, Tom.\nHold the elevator, Tom.\tRetenez l'ascenseur, Tom.\nHope is not a strategy.\tL'espoir n'est pas une stratégie.\nHow about a cup of tea?\tQue pensez-vous d'une tasse de thé ?\nHow are things at home?\tComment vont les choses, à la maison ?\nHow are things at work?\tComment vont les choses, au travail ?\nHow are things at work?\tComment ça se passe, au travail ?\nHow are you getting on?\tComment t'en sors-tu ?\nHow are you holding up?\tComment résistes-tu ?\nHow are you holding up?\tComment résistez-vous ?\nHow are you holding up?\tComment fais-tu face ?\nHow are you holding up?\tComment faites-vous face ?\nHow can you be so sure?\tComment peux-tu en être tellement sûr ?\nHow can you be so sure?\tComment peux-tu en être tellement sûre ?\nHow can you be so sure?\tComment pouvez-vous en être tellement sûr ?\nHow can you be so sure?\tComment pouvez-vous en être tellement sûre ?\nHow can you be so sure?\tComment pouvez-vous en être tellement sûrs ?\nHow can you be so sure?\tComment pouvez-vous en être tellement sûres ?\nHow could I forget you?\tComment pourrais-je vous oublier ?\nHow could I forget you?\tComment pourrais-je t'oublier ?\nHow could I lie to you?\tComment pourrais-je vous mentir ?\nHow could I lie to you?\tComment pourrais-je te mentir ?\nHow could you not know?\tComment pouvais-tu l'ignorer ?\nHow could you not know?\tComment pouviez-vous l'ignorer ?\nHow could you say that?\tComment pourrais-tu dire cela ?\nHow could you say that?\tComment pourriez-vous dire cela ?\nHow could you say that?\tComment as-tu pu dire cela ?\nHow could you say that?\tComment avez-vous pu dire cela ?\nHow did you answer Tom?\tComment as-tu répondu à Tom ?\nHow did you answer Tom?\tComment avez-vous répondu à Tom ?\nHow did you get caught?\tComment t'es-tu fait prendre ?\nHow did you get caught?\tComment vous êtes-vous fait prendre ?\nHow did you get caught?\tComment t'es-tu fait attraper ?\nHow did you get caught?\tComment vous êtes-vous fait attraper ?\nHow did your speech go?\tComment s'est déroulé ton discours ?\nHow did your speech go?\tComment s'est déroulé votre discours ?\nHow do I open the hood?\tComment est-ce que je déploie la capote ?\nHow do I turn this off?\tComment est-ce que j'éteins ça ?\nHow do we explain this?\tComment expliquer ça ?\nHow do you want to die?\tComment voulez-vous mourir ?\nHow fast can you do it?\tÀ quelle vitesse peux-tu le faire ?\nHow fast can you do it?\tÀ quelle vitesse parviens-tu à le faire ?\nHow fast can you do it?\tÀ quelle vitesse pouvez-vous le faire ?\nHow fast can you do it?\tÀ quelle vitesse parvenez-vous à le faire ?\nHow long did that take?\tCombien de temps ça a pris ?\nHow long did this take?\tCombien de temps ça a pris ?\nHow long is the bridge?\tDe quelle longueur est ce pont ?\nHow long is the flight?\tCombien de temps dure le vol ?\nHow long were you gone?\tCombien de temps êtes-vous parti ?\nHow long were you gone?\tCombien de temps êtes-vous partie ?\nHow long were you gone?\tCombien de temps êtes-vous partis ?\nHow long were you gone?\tCombien de temps êtes-vous parties ?\nHow long were you gone?\tCombien de temps es-tu parti ?\nHow long were you gone?\tCombien de temps es-tu partie ?\nHow long were you sick?\tCombien de temps as-tu été malade ?\nHow much are the pears?\tCombien coûtent les poires ?\nHow much did that cost?\tCombien cela a-t-il coûté ?\nHow much did you bring?\tCombien as-tu apporté ?\nHow much did you bring?\tCombien avez-vous apporté ?\nHow much farther is it?\tDe combien plus loin est-ce ?\nHow much is it per box?\tCombien est-ce par boîte ?\nHow much is the ticket?\tCombien coûte le billet ?\nHow much is there left?\tCombien reste-t-il ?\nHow much is this dress?\tCombien coûte cette robe ?\nHow often do you shave?\tTu te rases tous les combien de temps ?\nHow often do you shave?\tTous les combien de temps te rases-tu ?\nHow often do you shave?\tÀ quelle fréquence te rases-tu ?\nHow old is this church?\tDe quand date cette église ?\nHow old is your father?\tQuel âge a votre père ?\nHow soon can you start?\tQuand pouvez-vous démarrer au plus tôt ?\nHow thick is the board?\tQuelle est l'épaisseur de la planche ?\nHow thick is the board?\tQuelle est l'épaisseur du tableau ?\nHow was the roast beef?\tComment était le rôti de bœuf ?\nHow was your afternoon?\tComment était votre après-midi ?\nHow was your afternoon?\tComment était ton après-midi ?\nHow well can you dance?\tJusqu'à quel point es-tu bon danseur ?\nHow well can you dance?\tJusqu'à quel point es-tu bonne danseuse ?\nHow well can you dance?\tJusqu'à quel point êtes-vous bon danseur ?\nHow well can you dance?\tJusqu'à quel point êtes-vous bonne danseuse ?\nHow's everything going?\tComment tout se déroule-t-il ?\nI actually have to run.\tIl me faut courir, en vérité.\nI actually saw a ghost.\tJ'ai vraiment vu un fantôme.\nI almost never met her.\tJe ne l'ai presque jamais rencontrée.\nI always get up at six.\tJe me lève toujours à 6 heures.\nI am afraid of heights.\tJe souffre de vertige.\nI am ashamed of myself.\tJ'ai honte de moi-même.\nI am brushing my teeth.\tJe me brosse les dents.\nI am doing my homework.\tJe fais mes devoirs.\nI am doing my homework.\tJe suis en train de faire mes devoirs.\nI am eating a sandwich.\tJe suis en train de manger un sandwich.\nI am happy to meet you.\tJe suis heureux de te voir.\nI am leaving next week.\tJe pars la semaine prochaine.\nI am moving next month.\tJe déménage le mois prochain.\nI am moving next month.\tJe m'en vais le mois prochain.\nI am no longer a child.\tJe ne suis plus un enfant.\nI am not proud of this.\tJe n'en suis pas fier.\nI am not proud of this.\tJe ne suis pas fier de ça.\nI am off duty tomorrow.\tJe suis libre demain.\nI am off duty tomorrow.\tJe ne suis pas de garde, demain.\nI am ready to help you.\tJe suis prêt à t'aider.\nI am sixteen years old.\tJ'ai seize ans.\nI am swamped with work.\tJe suis submergé de travail.\nI am taking a bath now.\tJe suis actuellement en train de prendre un bain.\nI am tired of homework.\tJe suis fatigué des devoirs.\nI am tired of homework.\tJe suis fatiguée des devoirs.\nI am worried about him.\tJe me fais du souci pour lui.\nI apologized profusely.\tJe me suis confondu en excuses.\nI apologized profusely.\tJe me suis confondue en excuses.\nI apologized profusely.\tJe me confondis en excuses.\nI appreciate your time.\tJe te suis reconnaissant pour ton temps.\nI appreciate your time.\tJe vous suis reconnaissant pour votre temps.\nI appreciate your work.\tJe te suis reconnaissant pour ton travail.\nI appreciate your work.\tJe vous suis reconnaissant pour votre travail.\nI approve of your plan.\tJ'approuve votre plan.\nI approve of your plan.\tJ'approuve ton plan.\nI ask your forgiveness.\tJe te demande pardon.\nI ask your forgiveness.\tJe demande votre pardon.\nI asked Tom for advice.\tJ'ai demandé conseil à Tom.\nI asked a favor of him.\tJe lui ai demandé une faveur.\nI asked her for a date.\tJe lui ai demandé un rendez-vous.\nI asked him a question.\tJe lui ai posé une question.\nI asked him to do that.\tJe lui ai demandé de faire ça.\nI asked what was wrong.\tJe demandai ce qui n'allait pas.\nI asked what was wrong.\tJ'ai demandé ce qui n'allait pas.\nI asked you last night.\tJe t'ai demandé hier soir.\nI assemble car engines.\tJ'assemble des moteurs automobiles.\nI ate lunch in a hurry.\tJ'ai déjeuné en hâte.\nI attended his funeral.\tJ'assistai à ses funérailles.\nI bared my soul to her.\tJe lui ai dévoilé mon âme.\nI begged her not to go.\tJe l'ai suppliée de ne pas y aller.\nI begin this afternoon.\tJe commence cet après-midi.\nI begin this afternoon.\tJe commence cette après-midi.\nI believe Tom is right.\tJe crois que Tom a raison.\nI believe this is mine.\tJe crois que c'est la mienne.\nI believe this is mine.\tJe crois que c'est le mien.\nI believe this is mine.\tJe crois que ceci m'appartient.\nI believe what he says.\tJe crois à ce qu'il dit.\nI bought Tom a hot dog.\tJ'ai acheté un hot dog à Tom.\nI bought a dog for him.\tJe lui ai acheté un chien.\nI bought a good camera.\tJ'ai acheté un bon appareil photo.\nI bought a new handbag.\tJ'ai fait l'acquisition d'un nouveau sac-à-main.\nI bought a new handbag.\tJ'achetai un nouveau sac-à-main.\nI bought her a new car.\tJe lui ai acheté une nouvelle voiture.\nI bought lots of books.\tJ'ai acheté une quantité de livres.\nI bought lots of books.\tJ'ai acheté plein de livres.\nI bought you a present.\tJe t'ai acheté un cadeau.\nI bought you a present.\tJe vous ai acheté un cadeau.\nI came with my friends.\tJe suis venu avec mes amis.\nI came with my friends.\tJe suis venue avec mes amis.\nI came with my friends.\tJe suis venue avec mes amies.\nI came with my friends.\tJe vins avec mes amis.\nI came with my friends.\tJe vins avec mes amies.\nI can come if you want.\tJe peux venir, si vous voulez.\nI can come if you want.\tJe peux venir, si tu veux.\nI can do it all myself.\tJe peux le faire tout seul.\nI can do it all myself.\tJe peux le faire par mes propres moyens.\nI can do the job right!\tJe peux faire le travail correctement.\nI can handle it myself.\tJe m'en tirerai tout seul.\nI can't agree with you.\tJe ne peux être d'accord avec vous.\nI can't agree with you.\tJe ne peux pas être d'accord avec toi.\nI can't be without you.\tJe ne peux pas être sans toi.\nI can't be without you.\tJe ne peux pas être sans vous.\nI can't believe we won.\tJe n'arrive pas à croire que nous ayons gagné.\nI can't believe we won.\tJe n'arrive pas à croire que nous l'ayons emporté.\nI can't come right now.\tJe ne peux pas venir à l'instant.\nI can't control myself.\tJe n'arrive pas à me contrôler.\nI can't deal with this.\tJe ne peux pas supporter ça !\nI can't do that either.\tJe ne peux pas le faire non plus.\nI can't do that either.\tJe ne peux pas faire cela non plus.\nI can't do that either.\tJe ne peux pas faire ça non plus.\nI can't do this myself.\tJe ne peux pas le faire par moi-même.\nI can't do this myself.\tJe n'arrive pas à le faire moi-même.\nI can't drink any more.\tJe ne peux boire davantage.\nI can't find my gloves.\tJe ne retrouve pas mes gants.\nI can't find my wallet.\tJe n'arrive pas à trouver mon portefeuille.\nI can't find my wallet.\tJe ne parviens pas à trouver mon portefeuille.\nI can't find my wallet.\tJe ne trouve pas mon portefeuille.\nI can't find the hotel.\tJe ne parviens pas à trouver l'hôtel.\nI can't go any farther.\tJe ne peux pas aller plus loin.\nI can't go any further.\tJe ne peux pas aller plus loin.\nI can't go to the cops.\tJe ne peux pas aller voir les flics.\nI can't go to the mall.\tJe ne peux pas me rendre à la galerie commerciale.\nI can't hear very well.\tJ'ai du mal à entendre.\nI can't judge distance.\tJe ne peux pas jauger les distances.\nI can't just stay here.\tJe ne me résous pas à juste rester ici.\nI can't just stay here.\tJe ne peux pas juste rester ici.\nI can't just walk away.\tJe n'arrive pas à simplement m'en aller.\nI can't pick this lock.\tJe ne parviens pas à crocheter cette serrure.\nI can't put up with it.\tJe ne peux pas le supporter.\nI can't read your mind.\tJe ne peux pas savoir ce que tu penses.\nI can't really do that.\tJe ne peux pas vraiment faire ça.\nI can't see him either.\tJe n'arrive pas non plus à le voir.\nI can't sleep at night.\tJe ne peux pas dormir la nuit.\nI can't stand reptiles.\tJe déteste les reptiles.\nI can't stand that guy.\tJe ne supporte pas ce type.\nI can't stand the cold.\tJe ne supporte pas le froid.\nI can't stand violence.\tJe ne supporte pas la violence.\nI can't tell my family.\tJe ne peux pas le dire à ma famille.\nI can't think straight.\tJe n'arrive pas à réfléchir correctement.\nI can't think straight.\tJe n'arrive pas à mettre mes idées en place.\nI can't wait that long.\tJe ne peux pas attendre aussi longtemps.\nI can't wait to eat it.\tJe suis impatient de le manger.\nI can't wait to eat it.\tJe suis impatiente de le manger.\nI can't wait to shower.\tJe hâte de me doucher.\nI caught an awful cold.\tJ'ai attrapé un horrible rhume.\nI change my mind a lot.\tJe change beaucoup d'avis.\nI changed my hairstyle.\tJ'ai changé de coiffure.\nI changed my hairstyle.\tJ'ai changé de style de coiffure.\nI chose him a nice tie.\tJe lui ai choisi une belle cravate.\nI completely forgot it.\tJe l'oublie complètement.\nI considered not going.\tJ'ai songé à ne pas m'y rendre.\nI considered not going.\tJ'ai songé à ne pas y aller.\nI could never harm you.\tJe ne pourrais jamais te faire de mal.\nI could never harm you.\tJe ne pourrais jamais vous faire de mal.\nI could never hurt you.\tJe ne pourrais jamais te faire de mal.\nI could never hurt you.\tJe ne pourrais jamais vous faire de mal.\nI could see it was you.\tJe pouvais voir que c'était toi.\nI could see it was you.\tJe pouvais voir que c'était vous.\nI could use some sleep.\tJe ne refuserai pas un petit roupillon.\nI could use some sleep.\tUn peu de sommeil ne serait pas du luxe.\nI could've married Tom.\tJ'aurais pu épouser Tom.\nI could've married Tom.\tJ'aurais pu me marier avec Tom.\nI couldn't do anything.\tJe ne pouvais rien faire.\nI couldn't see a thing.\tJe ne pouvais rien voir.\nI couldn't stop crying.\tJe ne pouvais cesser de pleurer.\nI couldn't stop crying.\tJe ne pourrais cesser de pleurer.\nI couldn't stop myself.\tJe ne pouvais pas m'arrêter.\nI couldn't stop myself.\tJe n'ai pas pu m'arrêter.\nI cried all night long.\tJ'ai pleuré toute la nuit.\nI dare say he is right.\tJ'ose dire qu'il a raison.\nI decided to buy a car.\tJ'ai décidé d'acheter une voiture.\nI decided to try again.\tJ'ai décidé d'essayer encore.\nI destroyed everything.\tJ'ai tout détruit.\nI did do some checking.\tJ'ai procédé à quelques vérifications.\nI did everything right.\tJ'ai tout fait correctement.\nI did it all by myself.\tJ'ai tout fait par moi-même.\nI did not see the sign.\tJe n'ai pas vu le panneau.\nI did nothing unlawful.\tJe n'ai rien fait d'illégal.\nI did something stupid.\tJ'ai fait une bêtise.\nI did what I had to do.\tJe fis ce que j'avais à faire.\nI did what I had to do.\tJ'ai fait ce que j'avais à faire.\nI did what I was asked.\tJ'ai fait ce qu'on m'a demandé.\nI didn't do it for you.\tJe ne l'ai pas fait pour toi.\nI didn't do it for you.\tJe ne l'ai pas fait pour vous.\nI didn't find anything.\tJe n'ai rien trouvé.\nI didn't get your name.\tJe n'ai pas retenu ton nom.\nI didn't have a choice.\tJe n'avais pas le choix.\nI didn't hear a splash.\tJe n'ai pas entendu de plouf.\nI didn't know anything.\tJe ne savais rien.\nI didn't know you then.\tJe ne vous connaissais pas, alors.\nI didn't know you then.\tJe ne te connaissais pas, alors.\nI didn't know you then.\tJe ne vous connaissais alors pas.\nI didn't know you then.\tJe ne te connaissais alors pas.\nI didn't pay attention.\tJe n'ai pas prêté attention.\nI didn't read the book.\tJe n'ai pas lu le livre.\nI didn't see it happen.\tJe ne l'ai pas vu arriver.\nI didn't take anything.\tJe n'ai rien pris.\nI didn't take anything.\tJe ne pris rien.\nI didn't want anything.\tJe ne voulais rien.\nI didn't want that job.\tJe ne voulais pas ce métier.\nI dislike cold weather.\tJe n'aime pas le froid.\nI do have one question.\tJ'ai effectivement une question.\nI do that all the time.\tJe le fais tout le temps.\nI do this all the time!\tJe le fais tout le temps !\nI do this for a living.\tJe fais ça pour vivre.\nI do this for a living.\tJe fais ça comme moyen de subsistance.\nI don't agree with him.\tJe ne suis pas d'accord avec lui.\nI don't agree with you.\tJe ne suis pas d'accord avec toi.\nI don't believe in God.\tJe ne crois pas en Dieu.\nI don't condone murder.\tJe n'approuve pas le meurtre.\nI don't drink or smoke.\tJe ne bois ni ne fume.\nI don't even like fish.\tJe n'aime même pas le poisson.\nI don't even like fish.\tMême le poisson, je ne l'aime pas.\nI don't feel safe here.\tJe ne me sens pas en sécurité, ici.\nI don't feel very good.\tJe ne me sens pas très bien.\nI don't feel very well.\tJe ne me sens pas très bien.\nI don't have a bedtime.\tJe n'ai pas d'heure pour me coucher.\nI don't have a bicycle.\tJe n'ai pas de bicyclette.\nI don't have a bicycle.\tJe n'ai pas de vélo.\nI don't have all night.\tJe n'ai pas toute la nuit.\nI don't have an answer.\tJe n'ai pas de réponse.\nI don't have any money.\tJe n'ai pas une thune.\nI don't have any money.\tJe n'ai aucune oseille.\nI don't have any money.\tJe n'ai pas un kopeck.\nI don't have any money.\tJe n'ai pas un fifrelin.\nI don't have any money.\tJe n'ai pas un sou vaillant.\nI don't have any money.\tJe n'ai aucun blé.\nI don't have any money.\tJe n'ai aucun argent.\nI don't have much time.\tJe n'ai pas de beaucoup de temps.\nI don't have the money.\tJe ne dispose pas de l'argent.\nI don't know everybody.\tJe ne connais pas tout le monde.\nI don't know much else.\tJe ne sais pas grand-chose d'autre.\nI don't know that word.\tJe ne connais pas ce mot.\nI don't know that word.\tJ'ignore ce mot.\nI don't know the facts.\tJe ne connais pas les faits.\nI don't know the truth.\tJ'ignore la vérité.\nI don't know this game.\tJe ne connais pas ce jeu.\nI don't know this game.\tJ'ignore ce jeu.\nI don't know who he is.\tJe ne sais pas qui il est.\nI don't know who knows.\tJe ne sais pas qui le sait.\nI don't know your name.\tJ'ignore votre nom.\nI don't know your name.\tJ'ignore ton nom.\nI don't know your name.\tJe ne connais pas votre nom.\nI don't know your name.\tJe ne connais pas ton nom.\nI don't like chocolate.\tJe n'aime pas le chocolat.\nI don't like chocolate.\tJe n'apprécie pas le chocolat.\nI don't like it at all.\tJe n'aime pas ça du tout.\nI don't like profanity.\tJe n'aime pas les obscénités.\nI don't like shellfish.\tJe n'aime pas les coquillages.\nI don't like that name.\tJe n'aime pas ce nom.\nI don't like that name.\tJe n'apprécie pas ce nom.\nI don't like the beach.\tJe n'aime pas la plage.\nI don't like the ocean.\tJe n'aime pas l'océan.\nI don't like this book.\tJe n'aime pas ce livre.\nI don't like this game.\tJe n'apprécie pas ce jeu.\nI don't like this idea.\tJe n'aime pas cette idée.\nI don't like your boss.\tJe n'aime pas votre patron.\nI don't like your boss.\tJe n'aime pas votre patronne.\nI don't like your boss.\tJe n'aime pas ton patron.\nI don't like your boss.\tJe n'aime pas ta patronne.\nI don't like your name.\tJe n'aime pas ton prénom.\nI don't like your tone.\tJe n'apprécie pas votre ton.\nI don't like your tone.\tJe n'apprécie pas ton ton.\nI don't look like that.\tJe n'ai pas cette apparence.\nI don't make the rules.\tCe n'est pas moi qui écris les règles.\nI don't need a haircut.\tJe n'ai pas besoin de me faire couper les cheveux.\nI don't need a lecture.\tJe n'ai pas besoin d'une leçon.\nI don't need an excuse.\tJe n'ai pas besoin d'excuse.\nI don't need an office.\tJe n'ai pas besoin de bureau.\nI don't need your help.\tJe n'ai pas besoin de ton aide.\nI don't need your help.\tJe n'ai pas besoin de votre aide.\nI don't plan on losing.\tJe ne prévois pas de perdre.\nI don't play that game.\tJe ne joue pas à ce jeu.\nI don't quite know yet.\tJe ne sais pas encore tout à fait.\nI don't regret a thing.\tJe ne regrette rien.\nI don't see any damage.\tJe ne vois aucun dommage.\nI don't see the appeal.\tJe ne vois pas l'attrait.\nI don't see the appeal.\tJe ne vois pas l'intérêt.\nI don't see your point.\tJe ne comprends pas ton point de vue.\nI don't speak Japanese.\tJe ne parle pas japonais.\nI don't speak Japanese.\tJe ne parle pas le japonais.\nI don't talk like that.\tJe ne parle pas ainsi.\nI don't think it's odd.\tJe ne pense pas que ce soit bizarre.\nI don't understand art.\tJe ne comprends pas l'art.\nI don't want any fruit.\tJe ne veux pas de fruit.\nI don't want to see it.\tJe ne veux pas le voir.\nI don't want to see it.\tJe ne veux pas la voir.\nI don't want your gold.\tJe ne veux pas de votre or.\nI don't want your gold.\tJe ne veux pas de ton or.\nI don't wear chapstick.\tJe ne mets pas de baume pour les lèvres.\nI don't work like that.\tJe ne travaille pas ainsi.\nI eat a lot of carrots.\tJe mange plein de carottes.\nI enjoy being with you.\tJ'apprécie votre compagnie.\nI enjoy being with you.\tJ'apprécie ta compagnie.\nI enjoyed it very much.\tJ'y ai pris beaucoup plaisir.\nI enjoyed it very much.\tJ'y ai pris beaucoup de plaisir.\nI enjoyed it very much.\tJ'y ai trouvé beaucoup de plaisir.\nI enjoyed it very much.\tÇa m'a beaucoup plu.\nI enjoyed your company.\tJ'ai pris plaisir à votre compagnie.\nI enjoyed your company.\tJ'ai pris plaisir à être avec toi.\nI even work on Sundays.\tJe travaille même le dimanche.\nI feel a lot safer now.\tJe me sens désormais beaucoup plus en sécurité.\nI feel a sense of duty.\tJe ressens la conscience du devoir.\nI feel different today.\tJe me sens différent, aujourd'hui.\nI feel different today.\tJe me sens différente, aujourd'hui.\nI feel great right now.\tJe me sens bien maintenant.\nI feel like I know you.\tIl me semble que je vous connais.\nI feel like I know you.\tIl me semble que je te connais.\nI feel like I know you.\tJ'ai le sentiment de vous connaître.\nI feel like I know you.\tJ'ai le sentiment de te connaître.\nI feel like seeing you.\tJ'ai envie de te voir.\nI feel like seeing you.\tJ'ai envie de vous voir.\nI feel secure with him.\tJe me sens en sécurité avec lui.\nI fell asleep in class.\tJe me suis endormi en classe.\nI fell down the stairs.\tJe suis tombé dans les escaliers.\nI fell down the stairs.\tJe suis tombée dans les escaliers.\nI felt guilty about it.\tJe m'en sentis coupable.\nI felt guilty about it.\tJe m'en suis senti coupable.\nI felt guilty about it.\tJe m'en suis sentie coupable.\nI felt like I was dead.\tJ'avais l'impression d'être mort.\nI felt the floor shake.\tJe sentis le sol trembler.\nI felt the house shake.\tJ'ai senti la maison bouger.\nI figured it out alone.\tJe me suis débrouillé seul.\nI filled in the blanks.\tJ'ai complété les blancs.\nI finished my sandwich.\tJ'ai fini mon sandwich.\nI found a real bargain.\tJ'ai mis la main sur une vraiment bonne affaire.\nI found my car missing.\tJ'ai vu que ma voiture n'était plus là.\nI gather you were hurt.\tJe conclus que vous avez été blessé.\nI gather you were hurt.\tJe conclus que vous avez été blessée.\nI gather you were hurt.\tJe conclus que vous avez été blessés.\nI gather you were hurt.\tJe conclus que vous avez été blessées.\nI gather you were hurt.\tJe conclus que tu as été blessé.\nI gather you were hurt.\tJe conclus que tu as été blessée.\nI gave Tom my car keys.\tJ'ai donné les clés de ma voiture à Tom.\nI gave him a few books.\tJe lui ai donné quelques livres.\nI gave it my best shot.\tJ'ai fait de mon mieux.\nI go as often as I can.\tJ'y vais aussi souvent que possible.\nI go skiing very often.\tJe vais très souvent skier.\nI go to bed very early.\tJe me couche très tôt.\nI go to school on foot.\tJe vais à l'école à pied.\nI got a traffic ticket.\tJ'ai reçu une contravention.\nI got an A on my essay.\tJ'ai obtenu un A à ma dissertation.\nI got dealt a bad hand.\tOn m'a distribué une mauvaise main.\nI got dealt a bad hand.\tC'est à moi qu'on a distribué une mauvaise main.\nI got it for Christmas.\tJe l'ai eu pour Noël.\nI got it for Christmas.\tJe l'ai eue pour Noël.\nI got lost in the snow.\tJe me suis perdu dans la neige.\nI got lost three times.\tJe me suis perdu trois fois.\nI got on the wrong bus.\tJ'ai pris le mauvais bus.\nI got the engine going.\tJ'ai fait démarrer le moteur.\nI got tired of waiting.\tJ'en ai eu assez d'attendre.\nI got what I asked for.\tJ'ai obtenu ce que j'ai demandé.\nI grew up in Australia.\tJ'ai grandi en Australie.\nI grew up near a river.\tJ'ai grandi près d'une rivière.\nI guess I was mistaken.\tJe suppose que je me suis trompé.\nI guess I was mistaken.\tJe suppose que je me suis trompée.\nI guess I was mistaken.\tJe suppose que j'ai confondu.\nI guess I was mistaken.\tJe suppose que j'ai fait erreur.\nI guess that she is 40.\tJe pense qu'elle a 40 ans.\nI guess we're finished.\tJe suppose que nous en avons terminé.\nI guess we're finished.\tJe suppose que nous avons terminé.\nI guess we're finished.\tJe suppose que nous avons fini.\nI had a busy afternoon.\tJ'ai eu une après-midi chargée.\nI had a fantastic time.\tJ'ai passé du très bon temps.\nI had a good time, too.\tJ'ai également pris du bon temps.\nI had a good time, too.\tMoi aussi j'ai passé du bon temps.\nI had a late breakfast.\tJ'ai pris un petit-déjeuner tardif.\nI had a terrible dream.\tJ’ai fait un rêve horrible.\nI had a very good time.\tJ'ai passé du très bon temps.\nI had a very nice time.\tJ'ai passé un très bon moment.\nI had a wonderful time.\tJ'ai passé un moment merveilleux.\nI had an asthma attack.\tJ'ai eu une crise d'asthme.\nI had him fix my watch.\tJe lui ai fait réparer ma montre.\nI had him wash the car.\tJe lui ai fait laver la voiture.\nI had my camera stolen.\tJe me suis fait voler mon caméscope.\nI had my hat blown off.\tMon chapeau s'est envolé.\nI had my shoes cleaned.\tJe me suis fait nettoyer les chaussures.\nI had my wallet stolen.\tOn m'a volé mon portefeuille.\nI had the same thought.\tJe me suis fait la même réflexion.\nI had to defend myself.\tIl m'a fallu me défendre.\nI had to defend myself.\tJ'ai dû me défendre.\nI had to do this today.\tJ'ai dû le faire aujourd'hui.\nI had to do this today.\tJe devais le faire aujourd'hui.\nI had to do this today.\tIl m'a fallu le faire aujourd'hui.\nI had to do this today.\tIl me fallait le faire aujourd'hui.\nI had to do what I did.\tJ'ai dû faire ce que j'ai fait.\nI had to do what I did.\tIl m'a fallu faire ce que j'ai fait.\nI had to get back home.\tIl m'a fallu retourner chez moi.\nI had to get back home.\tJ'ai dû retourner chez moi.\nI had to get some help.\tJ'ai dû obtenir de l'aide.\nI had to get some help.\tIl m'a fallu obtenir de l'aide.\nI had to give it a try.\tJ'ai dû en faire un essai.\nI had to give it a try.\tIl m'a fallu en faire un essai.\nI had to go to America.\tJe dus me rendre en Amérique.\nI had to see you again.\tIl me fallait vous revoir.\nI had to see you again.\tIl me fallait te revoir.\nI had to see you again.\tIl m'a fallu vous revoir.\nI had to see you again.\tIl m'a fallu te revoir.\nI had to see you again.\tJe devais vous revoir.\nI had to see you again.\tJe devais te revoir.\nI had to study English.\tJe devais étudier l'anglais.\nI had to tell somebody.\tIl me fallait le dire à quelqu'un.\nI hate these new boots.\tJe déteste ces nouvelles bottes.\nI have a bad pain here.\tJ'ai une vache de douleur ici.\nI have a bad toothache.\tJ'ai un violent mal de dents.\nI have a business visa.\tJ'ai un visa de travail.\nI have a heart problem.\tJ'ai un problème cardiaque.\nI have a lot of dreams.\tJ'ai beaucoup de rêves.\nI have a loving family.\tJ'ai une famille aimante.\nI have a poor appetite.\tJ'ai peu d'appétit.\nI have a right to know.\tJ'ai le droit de savoir.\nI have a terrible pain.\tJ'ai une affreuse douleur.\nI have a test tomorrow.\tDemain j'ai un examen.\nI have already done it.\tJe l'ai déjà fait.\nI have an announcement.\tJ'ai quelque chose à annoncer.\nI have another job now.\tJ'ai désormais un autre boulot.\nI have another job now.\tJ'ai désormais un autre emploi.\nI have been busy today.\tJ'ai eu beaucoup à faire aujourd'hui.\nI have done it already.\tJe l'ai déjà fait.\nI have heard the story.\tJ'ai entendu l'histoire.\nI have lots of friends.\tJ'ai de nombreux amis.\nI have lots of friends.\tJe dispose de nombreux amis.\nI have many model cars.\tJ'ai de nombreuses voitures miniatures.\nI have many model cars.\tJ'ai de nombreuses petites voitures.\nI have many model cars.\tJ'ai de nombreux modèles réduits de voitures.\nI have no energy today.\tJe n'ai pas d'énergie, aujourd'hui.\nI have no energy today.\tJe n'ai, aujourd'hui, aucune énergie.\nI have nothing to lose.\tJe n'ai rien à perdre.\nI have often been here.\tJ'ai souvent été ici.\nI have only just begun.\tJ'ai juste commencé.\nI have only just begun.\tJe viens juste de commencer.\nI have only one sister.\tJe n'ai qu'une sœur.\nI have plenty of ideas.\tJ'ai plein d'idées.\nI have plenty of money.\tJe dispose de beaucoup d'argent.\nI have seen her before.\tJe l'ai déjà vue.\nI have seen her before.\tJe l'ai vue auparavant.\nI have someplace to go.\tJe dois aller quelque part.\nI have to change tires.\tJe dois changer de pneus.\nI have to comb my hair.\tIl faut que je me coiffe.\nI have to do it myself.\tIl me faut le faire moi-même.\nI have to do it myself.\tJe dois le faire moi-même.\nI have to get up early.\tJe dois me réveiller tôt.\nI have to leave school.\tIl me faut quitter l'école.\nI have to open my shop.\tJe dois ouvrir mon magasin.\nI have to open my shop.\tIl faut que j'ouvre ma boutique.\nI have to open my shop.\tIl faut que j'ouvre mon magasin.\nI have to open my shop.\tJe dois ouvrir ma boutique.\nI have to take an exam.\tJe dois passer un examen.\nI have to tell someone.\tIl me faut le dire à quelqu'un.\nI haven't given up yet.\tJe n'ai pas encore abandonné.\nI haven't got a chance.\tJe n'ai aucune chance.\nI haven't got a chance.\tJe n'en ai aucune chance.\nI haven't said yes yet.\tJe n'ai pas encore dit oui.\nI hear someone singing.\tJ'entends quelqu'un chanter.\nI heard a woman scream.\tJ'entendis une femme crier.\nI heard a woman scream.\tJ'ai entendu crier une femme.\nI heard my name called.\tJ'ai entendu que l'on m'appelait.\nI heard someone scream.\tJ'ai entendu quelqu'un crier.\nI heard that he'd died.\tJ'ai entendu qu'il était décédé.\nI heard that he'd died.\tJ'ai entendu qu'il était mort.\nI heard the door close.\tJ'ai entendu la porte se fermer.\nI helped him yesterday.\tJe l'ai aidé hier.\nI hit him in the belly.\tJe l'ai frappé au ventre.\nI hope everyone agrees.\tJ'espère que tout le monde est d'accord.\nI hope it was worth it.\tJ'espère que ça en valait la peine.\nI hope it was worth it.\tJ'espère que ça en valait la chandelle.\nI hope that it'll work.\tJ'espère que cela marchera.\nI hope that it'll work.\tJ'espère que ça marchera.\nI hope that's not true.\tJ'espère que ce n'est pas vrai.\nI hope to see it again.\tJ'espère le revoir.\nI hope to see you soon.\tJ'espère te voir bientôt.\nI hope we achieve that.\tJ'espère que nous finirons cela.\nI inherited his estate.\tJ'ai hérité de sa propriété.\nI inherited his estate.\tJ'ai hérité de son domaine.\nI just came from there.\tJe viens d'en arriver.\nI just couldn't say no.\tJe ne pouvais simplement pas dire non.\nI just didn't know how.\tJe n'ai simplement pas su comment.\nI just didn't know how.\tJe ne savais simplement pas comment.\nI just got a new phone.\tJe viens d'avoir un nouveau téléphone.\nI just got a promotion.\tJe viens d'avoir une promotion.\nI just got out of jail.\tJe viens de sortir de prison.\nI just had a bad dream.\tJe viens de faire un mauvais rêve.\nI just needed some air.\tJ'avais seulement besoin d'air.\nI just want a vacation.\tJe veux simplement des vacances.\nI just want a vacation.\tJe veux des vacances, un point c'est tout.\nI just want to be sure.\tJe veux tout simplement en être certain.\nI just want to be sure.\tJe veux en être certain, un point c'est tout.\nI just want to go home.\tJe veux juste rentrer chez moi.\nI knew before you knew.\tJ'ai su avant toi.\nI knew before you knew.\tJ'ai su avant vous.\nI knew he would accept.\tJe savais qu'il accepterait.\nI knew it would happen.\tJe savais que ça arriverait.\nI knew what Tom wanted.\tJe savais ce que Tom voulait.\nI knew you could do it.\tJe savais que tu pouvais le faire.\nI knew you'd be caught.\tJe savais que tu te ferais attrapé.\nI know Tom understands.\tJe sais que Tom comprend.\nI know a little French.\tJe connais un peu de français.\nI know all the details.\tJe connais tous les détails.\nI know each one of you.\tJe connais chacun d'entre vous.\nI know how old you are.\tJe connais ton âge.\nI know how they did it.\tJe sais comment elles l'ont fait.\nI know how they did it.\tJe sais comment ils l'ont fait.\nI know how women think.\tJe sais comme les femmes pensent.\nI know neither of them.\tJe ne connais aucune d'elles.\nI know she is sleeping.\tJe sais qu'elle est en train de dormir.\nI know that's not true.\tJe sais que ce n'est pas vrai.\nI know what not to eat.\tJe sais quoi ne pas manger.\nI know where Tom lives.\tJe sais où vit Tom.\nI know where Tom lives.\tJe sais où Tom vit.\nI know where she lives.\tJe sais où elle vit.\nI know who my enemy is.\tJe sais qui est mon ennemi.\nI know who that is now.\tJe sais de qui il s'agit, maintenant.\nI know who that is now.\tJe sais qui c'est, maintenant.\nI know why you're here.\tJe sais pourquoi vous êtes ici.\nI know why you're here.\tJe sais pourquoi tu es ici.\nI know you can make it.\tJe sais que tu peux y arriver.\nI know you feel lonely.\tJe sais que tu te sens seul.\nI know you feel lonely.\tJe sais que tu te sens seule.\nI know you feel lonely.\tJe sais que vous vous sentez seule.\nI know you feel lonely.\tJe sais que vous vous sentez seuls.\nI know you feel lonely.\tJe sais que vous vous sentez seules.\nI know you feel lonely.\tJe sais que vous vous sentez seul.\nI learned it in school.\tJe l'ai appris à l'école.\nI leave in the morning.\tJe partirai le matin.\nI leave this afternoon.\tJe pars cet après-midi.\nI leave this afternoon.\tJe pars cette après-midi.\nI left it on the table.\tJe l'ai laissé sur la table.\nI left it on the table.\tJe l'ai laissée sur la table.\nI left my card at home.\tJ'ai oublié ma carte de crédit à la maison.\nI left the window open.\tJ'ai laissé la fenêtre ouverte.\nI like being a teacher.\tJ'apprécie d'être enseignant.\nI like being on my own.\tJ'apprécie d'être seul.\nI like being on my own.\tJ'apprécie d'être seule.\nI like classical music.\tJ'aime la musique classique.\nI like dark red better.\tJe préfère le rouge foncé.\nI like music very much.\tJ'aime beaucoup la musique.\nI like my steak medium.\tUn steak à point, s’il vous plaît.\nI like neither of them.\tJe n'aime aucun d'entre eux.\nI like neither of them.\tJe n'aime aucune d'elles.\nI like neither of them.\tJe n'aime aucune d'entre elles.\nI like solving puzzles.\tJ'aime résoudre des énigmes.\nI like spring the best.\tC'est le printemps que je préfère.\nI like summer the best.\tCe que je préfère, c'est l'été.\nI like that it is soft.\tJ'aime que ce soit doux.\nI like that it is soft.\tJ'apprécie que ce soit doux.\nI like that one better.\tJe préfère celui-là.\nI like that one better.\tJe préfère celle-là.\nI like the black shoes.\tJ'aime les chaussures noires.\nI like the color green.\tJ'aime la couleur verte.\nI like to grow flowers.\tJ'aime faire pousser des fleurs.\nI like to travel alone.\tJ'aime voyager seul.\nI like to travel alone.\tJ’aime voyager seul.\nI like to travel alone.\tJ’aime voyager seule.\nI like watching people.\tJ'aime regarder les gens.\nI like you as a friend.\tJe vous apprécie en tant qu'ami.\nI like you as a friend.\tJe vous apprécie en tant qu'amie.\nI like you as a friend.\tJe t'apprécie en tant qu'ami.\nI like you as a friend.\tJe t'apprécie en tant qu'amie.\nI live across the hall.\tJe vis de l'autre côté du couloir.\nI live in a rural area.\tJe vis en zone rurale.\nI live in a rural area.\tJe vis dans une zone rurale.\nI live in an apartment.\tJ'habite dans un appartement.\nI live in an apartment.\tJ'habite en appartement.\nI live there by myself.\tJ'y vis seul.\nI live there by myself.\tJ'y vis seule.\nI looked in the window.\tJ'ai regardé par la fenêtre.\nI looked in the window.\tJe regardai à travers la fenêtre.\nI looked in the window.\tJ'ai regardé à travers la fenêtre.\nI looked in the window.\tJ'ai regardé dans la vitrine.\nI looked the other way.\tJ'ai regardé dans l'autre direction.\nI lost a bunch of keys.\tJ'ai égaré un trousseau de clés.\nI lost my favorite pen.\tJ'ai perdu mon stylo préféré.\nI lost my trust in him.\tJ'ai perdu ma confiance en lui.\nI lost three kilograms.\tJ'ai perdu trois kilos.\nI lost three kilograms.\tJe perdis trois kilos.\nI love American movies.\tJ'aime le cinéma étasunien.\nI love American movies.\tJ'adore les films étasuniens.\nI love Christmas music.\tJ'aime la musique de Noël.\nI love Christmas songs.\tJ'aime les chants de Noël.\nI love being a teacher.\tJ'adore être enseignant.\nI love being a teacher.\tJ'adore être enseignante.\nI love men with beards.\tJ'adore les hommes qui portent la barbe.\nI love that commercial.\tJ'adore cette publicité.\nI love to eat scallops.\tJ'adore manger des coquilles Saint-Jacques.\nI love traveling alone.\tJ’aime voyager seul.\nI love visiting Boston.\tJ'aime visiter Boston.\nI made Tom laugh today.\tJ'ai fait rire Tom aujourd'hui.\nI made a judgment call.\tJ'ai prononcé une décision.\nI made my dog lie down.\tJ'ai fait s'allonger mon chien.\nI made my dog lie down.\tJe fis se coucher mon chien.\nI made the woman angry.\tJ'ai mis la femme en colère.\nI make lunch every day.\tJe prépare le déjeuner tous les jours.\nI may win if I'm lucky.\tJe peux gagner si j'ai de la chance.\nI meet him at the club.\tJe le rencontre au club.\nI meet him at the club.\tJe le rencontre au cercle.\nI met an American girl.\tJ'ai rencontré une Américaine.\nI met him in the crowd.\tJe l'ai rencontré dans la foule.\nI moved here yesterday.\tJ'ai emménagé ici hier.\nI must open the window.\tIl me faut ouvrir la fenêtre.\nI must return his call.\tJe dois le rappeler.\nI need a few more days.\tIl me faut quelques jours de plus.\nI need a few more days.\tJ'ai encore besoin de quelques jours.\nI need a new USB cable.\tJ'ai besoin d'un nouveau câble USB.\nI need an extra pillow.\tJ'ai besoin d'un oreiller dur.\nI need colored pencils.\tJ'ai besoin de crayons de couleurs.\nI need some volunteers.\tJ'ai besoin de volontaires.\nI need to end this now.\tIl me faut en finir maintenant.\nI need to find Tom now.\tJ'ai besoin de trouver Tom maintenant.\nI need to go into town.\tJ'ai besoin d'aller en ville.\nI need to go into town.\tIl me faut me rendre en ville.\nI need you to fix this.\tJ'ai besoin que tu répares ceci.\nI need you to fix this.\tJ'ai besoin que vous corrigiez ceci.\nI need you to see this.\tJ'ai besoin que tu le voies.\nI need you to see this.\tJ'ai besoin que vous le voyez.\nI never agree with him.\tJe ne suis jamais d'accord avec lui.\nI never knew my father.\tJe n'ai jamais connu mon père.\nI never knew my father.\tJe ne connus jamais mon père.\nI never read that book.\tJe n'ai jamais lu ce livre.\nI never think about it.\tJe n’y pense jamais.\nI no longer believe it.\tJe ne le crois plus.\nI no longer believe it.\tJe n’y crois plus.\nI only eat kosher food.\tJe ne mange que de la nourriture câchère.\nI only have one sister.\tJ'ai seulement une sœur.\nI only have one sister.\tJe n'ai qu'une sœur.\nI only have one so far.\tJe n'en ai qu'une, jusqu'à présent.\nI only have one so far.\tJe n'en ai qu'un, jusqu'à présent.\nI only have one so far.\tJe n'en ai qu'une, pour l'instant.\nI only have one so far.\tJe n'en ai qu'un, pour l'instant.\nI only slept two hours.\tJe n'ai dormi que deux heures.\nI ordered Chinese food.\tJ'ai commandé des plats chinois.\nI play a little guitar.\tJe joue un peu de guitare.\nI prefer coffee to tea.\tJe préfère le café au thé.\nI prefer tea to coffee.\tJe préfère le thé au café.\nI prefer the black one.\tJe préfère le noir.\nI prefer to work alone.\tJe préfère travailler seul.\nI prefer to work alone.\tJe préfère travailler seule.\nI promise I won't bite.\tJe promets que je ne mordrai pas.\nI promise I won't tell.\tJe promets que je ne le dirai pas.\nI promise to work hard.\tJe promets de travailler assidument.\nI promised not to tell.\tJ'ai promis de ne rien dire.\nI promised not to tell.\tJe promis de ne rien dire.\nI quit a long time ago.\tJ'ai arrêté il y a longtemps.\nI quite agree with you.\tJe suis entièrement d'accord avec vous.\nI quite agree with you.\tJe suis assez d'accord avec vous.\nI quite agree with you.\tJe suis tout à fait d'accord avec toi.\nI ran all the way home.\tJ'ai couru tout le long du chemin jusqu'à chez moi.\nI ran out of the house.\tJe courus hors de la maison.\nI read a lot of novels.\tJe lis de nombreux romans.\nI read a lot of novels.\tJe lus de nombreux romans.\nI read a lot of novels.\tJ'ai lu de nombreux romans.\nI read it to my family.\tJe l'ai lu à ma famille.\nI read it to my family.\tJe l'ai lue à ma famille.\nI read the entire book.\tJ'ai lu le livre jusqu'à la fin.\nI really am interested.\tJe suis vraiment intéressé.\nI really am interested.\tJe suis vraiment intéressée.\nI really appreciate it.\tJ'apprécie vraiment cela.\nI really can't be late.\tJe ne peux vraiment pas être en retard.\nI really can't do that.\tJe ne peux vraiment pas faire ça.\nI really do have to go.\tIl me faut vraiment y aller.\nI really do have to go.\tIl me faut vraiment m'en aller.\nI really don't get you.\tJe ne vous saisis vraiment pas.\nI really don't get you.\tJe ne te saisis vraiment pas.\nI really like that car.\tJ'aime beaucoup cette voiture.\nI really like that guy.\tJ'aime vraiment ce garçon.\nI really like that guy.\tJ'apprécie vraiment ce garçon.\nI really like this car.\tJ'aime beaucoup cette voiture.\nI really like this one.\tJ'apprécie vraiment celui-ci.\nI really like this one.\tJ'aime vraiment celui-ci.\nI really misjudged you.\tJe vous ai vraiment mal jugé.\nI really misjudged you.\tJe vous ai vraiment mal jugée.\nI really misjudged you.\tJe vous ai vraiment mal jugées.\nI really misjudged you.\tJe vous ai vraiment mal jugés.\nI really misjudged you.\tJe t'ai vraiment mal jugé.\nI really misjudged you.\tJe t'ai vraiment mal jugée.\nI really must be going.\tJe dois vraiment y aller.\nI really must be going.\tJe dois vraiment m'en aller.\nI recently had surgery.\tJ'ai récemment subi une opération chirurgicale.\nI refuse to allow this.\tJe refuse de permettre ça.\nI regret that decision.\tJe regrette cette décision.\nI remember both of you.\tJe me souviens de vous deux.\nI remember many things.\tJe me rappelle beaucoup de choses.\nI remember many things.\tJe me souviens de beaucoup de choses.\nI remember saying that.\tJe me souviens avoir dit ça.\nI remember saying that.\tJe me rappelle avoir dit ça.\nI remember that speech.\tJe me souviens de ce discours.\nI remember that speech.\tJe me rappelle ce discours.\nI remember your father.\tJe me rappelle de ton père.\nI remember your father.\tJe me rappelle de votre père.\nI remembered everybody.\tJe me souvins de tout le monde.\nI respect your opinion.\tJe respecte votre opinion.\nI respect your opinion.\tJe respecte ton opinion.\nI ride my bike to work.\tJe vais au travail à bicyclette.\nI run a small business.\tJe fais tourner une petite entreprise.\nI run five miles a day.\tJe cours huit kilomètres par jour.\nI sat down next to him.\tJe m'assis à son côté.\nI sat down next to him.\tJe me suis assise à côté de lui.\nI sat down next to him.\tJe m'assis près de lui.\nI sat down next to him.\tJe m'assis auprès de lui.\nI sat down next to him.\tJe m'assis à côté de lui.\nI sat down next to him.\tJe me suis assis auprès de lui.\nI sat down next to him.\tJe me suis assise auprès de lui.\nI sat down next to him.\tJe me suis assis près de lui.\nI sat down next to him.\tJe me suis assise près de lui.\nI saw Tom a minute ago.\tJ'ai vu Tom il y a un instant.\nI saw Tom hitting Mary.\tJ'ai vu Tom frapper Mary.\nI saw Tom hitting Mary.\tJ'ai vu Tom frapper Marie.\nI saw a beautiful bird.\tJ'ai vu un oiseau magnifique.\nI saw a flock of sheep.\tJe vis un troupeau de moutons.\nI saw a flock of sheep.\tJ'ai vu un troupeau de moutons.\nI saw a light far away.\tJ'ai vu une lumière lointaine.\nI saw a woman in black.\tJ'ai vu une femme en noir.\nI saw fear in his eyes.\tJ'ai vu la peur dans ses yeux.\nI saw fear in his eyes.\tJe vis la peur dans ses yeux.\nI saw him wash the car.\tJe l'ai vu laver la voiture.\nI see how you did that.\tJe vois comment vous l'avez fait.\nI see how you did that.\tJe vois comment tu l'as fait.\nI seem to have a fever.\tIl semble que j'aie de la fièvre.\nI seem to have a fever.\tIl semble que j'ai de la fièvre.\nI seldom make mistakes.\tJe commets rarement des erreurs.\nI sell clothing online.\tJe vends des vêtements en ligne.\nI sent an email to you.\tJe t'ai envoyé un courrier électronique.\nI shook hands with Tom.\tJ'ai serré la main de Tom.\nI should get back home.\tJe devrais retourner chez moi.\nI should get some rest.\tJe devrais prendre du repos.\nI should read the book.\tJ'aurais dû lire le livre.\nI should've known this.\tJ'aurais dû savoir ceci.\nI should've warned you.\tJ'aurais dû te prévenir.\nI should've warned you.\tJ'aurais dû vous prévenir.\nI should've worn a hat.\tJ'aurais dû porter un chapeau.\nI slept just two hours.\tJ'ai dormi à peine deux heures.\nI speak for all people.\tJe parle au nom de tous les gens.\nI speak for all people.\tJe suis celui qui parle au nom de tous les gens.\nI speak only the truth.\tJe ne dis que la vérité.\nI speak only the truth.\tJe n'exprime que la vérité.\nI spoke with Tom today.\tJ'ai parlé avec Tom aujourd'hui.\nI spoke with my family.\tJ'ai parlé avec ma famille.\nI studied for one hour.\tJ'ai étudié pendant une heure.\nI study French at home.\tJ'étudie le français chez moi.\nI study at the library.\tJ'étudie à la bibliothèque.\nI study hard at school.\tJ'étudie très sérieusement à l'école.\nI support the proposal.\tJe soutiens la proposition.\nI suppose you like her.\tJe suppose que vous l'aimez.\nI suppose you like him.\tJe suppose que vous l'aimez.\nI suppose you love her.\tJe suppose que vous l'aimez.\nI suppose you love him.\tJe suppose que vous l'aimez.\nI suppose you're right.\tJe suppose que tu as raison.\nI suppose you're right.\tJe suppose que vous avez raison.\nI sure miss my friends.\tIl est certain que mes amis me manquent.\nI sure miss my friends.\tIl est certain que mes amies me manquent.\nI suspect you're right.\tJe soupçonne que tu as raison.\nI suspect you're right.\tJe soupçonne que vous avez raison.\nI suspect you're wrong.\tJe soupçonne que tu as tort.\nI suspect you're wrong.\tJe soupçonne que vous avez tort.\nI take everything back.\tJe reprends tout.\nI taught myself French.\tJ'ai appris le français par moi-même.\nI think God is a woman.\tJe pense que Dieu est une femme.\nI think I broke my leg.\tJe pense que je me suis cassé la jambe.\nI think I can fix this.\tJe pense que je peux réparer ça.\nI think I can fix this.\tJe pense que je peux arranger ça.\nI think I can help Tom.\tJe crois que je peux aider Tom.\nI think I can prove it.\tJe pense que je peux le prouver.\nI think I can prove it.\tJe pense pouvoir le prouver.\nI think I have an idea.\tJe pense avoir une idée.\nI think I lost my keys.\tJe pense que j'ai perdu mes clés.\nI think I lost my keys.\tJe pense que j'ai paumé mes clefs.\nI think I'll go skiing.\tJe pense que je vais aller skier.\nI think I'm in trouble.\tJe pense que j'ai des ennuis.\nI think Tom got scared.\tJe pense que Tom a pris peur.\nI think Tom has a plan.\tJe pense que Tom a un plan.\nI think Tom is in love.\tJe pense que Tom est tombé amoureux.\nI think Tom is nervous.\tJe pense que Tom est nerveux.\nI think Tom is serious.\tJe pense que Tom est sérieux.\nI think Tom is unlucky.\tJe pense que Tom est malchanceux.\nI think Tom loves Mary.\tJe pense que Tom aime Marie.\nI think Tom wants more.\tJe pense que Tom en veut davantage.\nI think about it often.\tJ'y pense souvent.\nI think he is a doctor.\tJe pense qu'il est docteur.\nI think he's competent.\tJe pense qu'il est compétent.\nI think he's too young.\tJe pense qu'il est trop jeune.\nI think it's dangerous.\tJe pense que c'est dangereux.\nI think it's too risky.\tJe pense que c'est trop risqué.\nI think it's very nice.\tJe pense que c'est très agréable.\nI think it's wonderful.\tJe pense que c'est merveilleux.\nI think she'll succeed.\tJe pense qu'elle réussira.\nI think she's innocent.\tJe pense qu'elle est innocente.\nI think that went well.\tJe pense que ça s'est bien passé.\nI think this will work.\tJe pense que cela va marcher.\nI think we can do that.\tJe pense que nous pouvons faire cela.\nI think we can do that.\tJe pense que nous pouvons le faire.\nI think we should quit.\tJe pense que nous devrions démissionner.\nI think we should quit.\tJe pense que nous devrions abandonner.\nI think we should quit.\tJe pense que nous devrions arrêter.\nI think we should talk.\tJe pense que nous devrions discuter.\nI think we should talk.\tJe pense que nous devrions nous entretenir.\nI think we should wait.\tJe pense que nous devrions attendre.\nI think we're too late.\tJe pense que nous arrivons trop tard.\nI think you lied to me.\tJe pense que vous m'avez menti.\nI think you lied to me.\tJe pense que tu m'as menti.\nI think you look great.\tJe pense que tu as l'air super.\nI think you look great.\tJe pense que vous avez l'air super.\nI think you were right.\tJe pense que tu avais raison.\nI think you were right.\tJe pense que vous aviez raison.\nI think you're jealous.\tJe pense que vous êtes jaloux.\nI think you're jealous.\tJe pense que vous êtes jalouse.\nI think you're jealous.\tJe pense que vous êtes jalouses.\nI think you're jealous.\tJe pense que tu es jaloux.\nI think you're jealous.\tJe pense que tu es jalouse.\nI thought I got it all.\tJe pensais que j'avais tout.\nI thought I'd lost you.\tJe pensais que je t'avais perdu.\nI thought I'd lost you.\tJe pensais que je vous avais perdu.\nI thought I'd lost you.\tJe pensais que je t'avais perdue.\nI thought I'd lost you.\tJe pensais que je vous avais perdue.\nI thought I'd lost you.\tJe pensais que je vous avais perdus.\nI thought I'd lost you.\tJe pensais que je vous avais perdues.\nI thought Tom was sick.\tJe pensais que Tom était malade.\nI thought it was funny.\tJe pensais que c'était drôle.\nI thought she was cute.\tJe pensais qu'elle était mignonne.\nI thought she was sick.\tJe la pensais malade.\nI thought she was sick.\tJe pensais qu'elle était malade.\nI thought you hated me.\tJe croyais que tu me détestais.\nI thought you hated me.\tJe pensais que vous me détestiez.\nI thought you hated me.\tC'est moi qui pensais que tu me détestais.\nI thought you hated me.\tC'est moi qui pensais que vous me détestiez.\nI thought you liked me.\tJe pensais que tu m'appréciais.\nI thought you liked me.\tJe pensais que vous m'appréciiez.\nI told Tom I loved him.\tJ'ai dit à Tom que je l'aimais.\nI told Tom not to come.\tJ'ai dit à Tom de ne pas venir.\nI told them everything.\tJe leur ai tout dit.\nI took a trip to Tokyo.\tJ'ai voyagé à Tokyo.\nI tried to act natural.\tJ'essaie d'agir de manière naturelle.\nI tried to protect you.\tJ'ai essayé de te protéger.\nI tried to protect you.\tJ'ai essayé de vous protéger.\nI trust him completely.\tJe lui fais totalement confiance.\nI trust him completely.\tJe lui fais entièrement confiance.\nI try to be aggressive.\tJ'essaie d'être agressif.\nI try to do what I can.\tJ'essaie de faire ce que je peux.\nI turned off the radio.\tJ’ai éteint la radio.\nI turned on the lights.\tJ'ai allumé la lumière.\nI turned on the lights.\tJ'ai allumé les phares.\nI understand perfectly.\tJe comprends parfaitement.\nI understand the risks.\tJe comprends les risques.\nI used to keep a diary.\tJ'avais l'habitude de tenir un journal.\nI used to wear glasses.\tJe portais des lunettes.\nI value our friendship.\tJ'accorde de la valeur à notre amitié.\nI value their opinions.\tLeurs avis comptent beaucoup pour moi.\nI wake up at 7 o'clock.\tJe me lève à 7 heures.\nI wake up at 7 o'clock.\tJe me réveille à sept heures.\nI want a piece of cake.\tJe veux un morceau de gâteau.\nI want a quart of milk.\tJe veux un quart de lait.\nI want a status report.\tJe veux un rapport de situation.\nI want a word with you.\tJe veux avoir un mot avec vous.\nI want a word with you.\tJe veux avoir un mot avec toi.\nI want my bicycle back.\tJe veux qu'on me rende mon vélo.\nI want my bicycle back.\tJe veux que tu me rendes mon vélo.\nI want my bicycle back.\tJe veux que vous me rendiez mon vélo.\nI want something sweet.\tJe veux quelque chose de doux.\nI want something sweet.\tJe veux une douceur.\nI want something sweet.\tJe veux quelque chose de sucré.\nI want this one myself.\tMoi je veux celle-ci !\nI want this one myself.\tMoi je veux celui-ci !\nI want this to be over.\tJe veux que ce soit terminé.\nI want to be a teacher.\tJe veux être enseignant.\nI want to be a teacher.\tJe veux être enseignante.\nI want to be an artist.\tJe veux être artiste.\nI want to buy them all.\tJe veux les acheter tous.\nI want to buy them all.\tJe veux tous les acheter.\nI want to buy them all.\tJe veux les acheter toutes.\nI want to buy them all.\tJe veux toutes les acheter.\nI want to check it out.\tJe veux le vérifier.\nI want to cook for you.\tJe veux cuisiner pour vous.\nI want to cook for you.\tJe veux cuisiner pour toi.\nI want to do it myself.\tJe veux le faire moi-même.\nI want to do it myself.\tJe veux le faire par moi-même.\nI want to go into town.\tJe veux aller en ville.\nI want to go right now.\tJe veux y aller tout de suite.\nI want to go to Sweden.\tJe veux aller en Suède.\nI want to hear who won.\tJe veux entendre qui l'a emporté.\nI want to hear who won.\tJe veux entendre qui a gagné.\nI want to learn French.\tJe veux apprendre le français.\nI want to learn Hebrew.\tJ'ai envie d'apprendre l'hébreu.\nI want to learn Korean.\tJe veux apprendre le coréen.\nI want to learn karate.\tJe veux apprendre le karaté.\nI want to live forever.\tJe veux vivre pour toujours.\nI want to ride a horse.\tJe veux monter à cheval.\nI want to stay outside.\tJe veux rester dehors.\nI want to stay outside.\tQuant à moi, je veux rester dehors.\nI want to study French.\tJe veux étudier le français.\nI want to study German.\tJe veux étudier l'allemand.\nI want to study German.\tJe veux apprendre l'allemand.\nI want to surprise him.\tJe veux le surprendre.\nI want to write a book.\tJe veux écrire un livre.\nI want to write to Tom.\tJe veux écrire à Tom.\nI want you out of here.\tJe vous veux hors d'ici.\nI want you out of here.\tJe te veux hors d'ici.\nI want you to be quiet.\tJe veux que vous soyez silencieux.\nI want you to be quiet.\tJe veux que vous soyez silencieuses.\nI want you to be quiet.\tJe veux que vous soyez silencieuse.\nI want you to be quiet.\tJe veux que tu sois silencieux.\nI want you to be quiet.\tJe veux que tu sois silencieuse.\nI want you to find out.\tJe veux que vous le découvriez.\nI want you to find out.\tJe veux que tu le découvres.\nI want you to find out.\tJe veux que tu le démasques.\nI want you to find out.\tJe veux que vous le démasquiez.\nI want you to see this.\tJe veux que tu voies ceci.\nI want you to see this.\tJe veux que vous voyiez ceci.\nI wanted to rent a bus.\tJe voulais louer un car.\nI was able to help her.\tJe fus en mesure de l'aider.\nI was absolutely right.\tJ'avais parfaitement raison.\nI was following orders.\tJe suivais les ordres.\nI was happy to see him.\tJ'étais content de le voir.\nI was happy to see him.\tJ'étais contente de le voir.\nI was hungry and angry.\tJ'étais affamé et irrité.\nI was incredibly bored.\tJe me suis incroyablement ennuyé.\nI was invited to lunch.\tJ'étais invité à déjeuner.\nI was just making sure.\tJe voulais simplement m'en assurer.\nI was no match for him.\tJe ne pouvais me mesurer à lui.\nI was not feeling well.\tJe ne me sentais pas bien.\nI was really emotional.\tJ'ai été vraiment émotionnel.\nI was right behind Tom.\tJ'étais juste derrière Tom.\nI was the last to know.\tJ'étais le dernier à savoir.\nI was there a year ago.\tJ'étais là il y a un an.\nI was there last night.\tJ'y étais la nuit dernière.\nI was thrown off guard.\tJ'ai été pris par surprise.\nI was very tired today.\tJ'étais très fatigué aujourd'hui.\nI was very, very lucky.\tJ'ai été très, très chanceux.\nI was watching TV then.\tÀ ce moment, je regardais la télé.\nI was wrong about that.\tJ'avais tort à propos de cela.\nI was wrong about that.\tJ'avais tort à propos de ça.\nI was young and stupid.\tJ'étais jeune et idiot.\nI was young and stupid.\tJ'étais jeune et idiote.\nI wasn't aware of that.\tJe n'en avais pas conscience.\nI wasn't fired. I quit.\tJe n'ai pas été viré. J'ai démissionné.\nI wasn't scared at all.\tJe n'étais pas du tout effrayé.\nI wasn't scared at all.\tJe n'étais pas du tout effrayée.\nI wasn't strong enough.\tJe n'étais pas assez fort.\nI watch lots of movies.\tJe regarde beaucoup de films.\nI weigh about 60 kilos.\tJe pèse environ 60 kilos.\nI went a different way.\tJe suis venu par un autre chemin.\nI went over the report.\tJ'ai parcouru le rapport.\nI went straight to bed.\tJe suis allé directement au lit.\nI went straight to bed.\tJe suis allée directement au lit.\nI went straight to bed.\tJ'allai directement au lit.\nI went there yesterday.\tJe suis allé là hier.\nI went there yesterday.\tJ'y suis allé hier.\nI went there yesterday.\tJe m'y suis rendu hier.\nI went to the hospital.\tJ'allai à l'hôpital.\nI wholeheartedly agree.\tJe n'ai aucune réserve.\nI wholeheartedly agree.\tJ'y consens de tout cœur.\nI wholeheartedly agree.\tJe suis complètement d'accord.\nI will be more careful.\tJe serai plus prudent.\nI will be very careful.\tJe serai très prudent.\nI will do it right now.\tJe vais le faire maintenant.\nI will gladly help you.\tJe t'aiderai volontiers.\nI will gladly help you.\tJ'aurai plaisir à t'aider.\nI will gladly help you.\tJ'aurai plaisir à vous aider.\nI will not be defeated.\tJe ne serai pas vaincu.\nI will not be defeated.\tJe ne serai pas défait.\nI will not do it again.\tPas une seconde fois.\nI will not do it again.\tJe ne voudrai pas le refaire.\nI will wait for a week.\tJ'attendrai pendant une semaine.\nI wish I could see you.\tJ'aimerais pouvoir vous voir.\nI wish I could see you.\tJ'aimerais pouvoir te voir.\nI wish Tom would hurry.\tJ'aimerais que Tom se dépêche.\nI won't close the door.\tJe ne fermerai pas la porte.\nI won't disappoint you.\tJe ne te décevrai pas.\nI won't fail this time.\tJe n'échouerai pas cette fois.\nI wonder what happened.\tJe me demande ce qui s'est passé.\nI work as a consultant.\tJe travaille en tant qu'expert.\nI worked all this week.\tCette semaine j'ai travaillé tout le temps.\nI would like this book.\tJe voudrais ce livre.\nI would like to see it.\tJe voudrais le voir.\nI would never go there.\tJamais je ne m'y rendrais.\nI wouldn't count on it.\tJe n'y compterais pas.\nI wouldn't go that far.\tJe n'irais pas jusque là.\nI wouldn't think of it.\tJe n'y songerais pas.\nI wrote him to ask why.\tJe lui ai écrit pour demander pourquoi.\nI'd like to be friends.\tJ'aimerais que nous soyons amis.\nI'd like to be friends.\tJ'aimerais que nous soyons amies.\nI'd like to come along.\tJ'aimerais me joindre.\nI'd like to come along.\tJ'aimerais venir.\nI'd like to go cycling.\tJ'aimerais aller faire du vélo.\nI'd like to have a cat.\tJe voudrais avoir un chat.\nI'd like to rent a car.\tJ'aimerais louer une voiture.\nI'd like to rent a car.\tJ'aimerais louer une voiture, s'il vous plaît.\nI'd like to replace it.\tJ'aimerais le dédommager.\nI'd say you're jealous.\tJe dirais que tu es jaloux.\nI'd say you're jealous.\tJe dirais que tu es jalouse.\nI'd say you're jealous.\tJe dirais que vous êtes jaloux.\nI'd say you're jealous.\tJe dirais que vous êtes jalouse.\nI'll accept your offer.\tJe vais accepter votre offre.\nI'll accept your offer.\tJe vais accepter ton offre.\nI'll be around all day.\tJe serai dans les parages toute la journée.\nI'll be busy next week.\tJe serai occupé la semaine prochaine.\nI'll be going with you.\tJ'irai avec toi.\nI'll be going with you.\tJ'irai avec vous.\nI'll be there in a sec.\tJe serai là dans une seconde.\nI'll be there tomorrow.\tJe serai là-bas demain.\nI'll bear that in mind.\tJe garderai ça en tête.\nI'll bring the glasses.\tJ'apporte des verres.\nI'll call Tom tomorrow.\tJ'appellerai Tom demain.\nI'll call Tom tomorrow.\tJe téléphonerai à Tom demain.\nI'll call you at seven.\tJe t'appelle à sept heures.\nI'll call you at seven.\tJe t'appellerai à sept heures.\nI'll check your vision.\tJe vais contrôler votre vue.\nI'll come back for you.\tJe reviendrai pour toi.\nI'll come back for you.\tJe reviendrai pour vous.\nI'll come if necessary.\tJe viendrai si nécessaire.\nI'll cut your head off!\tJe te couperai la tête !\nI'll cut your head off!\tJe vous couperai la tête !\nI'll do the best I can.\tJe ferai de mon mieux.\nI'll do the best I can.\tJe ferai du mieux que je peux.\nI'll fill you in later.\tJe te mettrai au courant plus tard.\nI'll go back to Boston.\tJe retournerai à Boston.\nI'll handle everything.\tJe gèrerai tout.\nI'll have to work hard.\tJe vais devoir travailler dur.\nI'll keep my eyes shut.\tJe garderai les yeux fermés.\nI'll keep that in mind.\tJe vais garder cela à l'esprit.\nI'll leave that to you.\tJe te le laisse.\nI'll leave that to you.\tJe te la laisse.\nI'll leave that to you.\tJe vous la laisse.\nI'll leave that to you.\tJe vous le laisse.\nI'll make a phone call.\tJe vais passer un appel téléphonique.\nI'll meet him tomorrow.\tJe vais le rencontrer demain.\nI'll miss your cooking.\tVotre cuisine va me manquer.\nI'll miss your cooking.\tTa cuisine me manquera.\nI'll never forgive him.\tJe ne lui pardonnerai jamais.\nI'll never forgive you.\tJe ne te pardonnerai jamais.\nI'll never forgive you.\tJe ne vous pardonnerai jamais.\nI'll never forgive you.\tJamais je ne vous pardonnerai.\nI'll never forgive you.\tJamais je ne te pardonnerai.\nI'll rip your head off!\tJe t'arracherai la tête !\nI'll rip your head off!\tJe vous arracherai la tête !\nI'll see you later, OK?\tJe te verrai plus tard, d'accord ?\nI'll see you later, OK?\tJe vous verrai plus tard, d'accord ?\nI'll send you the link.\tJe t'enverrai le lien.\nI'll shoot both of you.\tJe vous descendrai toutes les deux.\nI'll shoot both of you.\tJe vous descendrai tous les deux.\nI'll start with a beer.\tJe vais commencer avec une bière.\nI'll start with a beer.\tJe vais commencer par une bière.\nI'll study your report.\tJe vais étudier ton rapport.\nI'll study your report.\tJ'étudierai votre rapport.\nI'll study your report.\tJ'étudierai ton rapport.\nI'll study your report.\tJe vais étudier votre rapport.\nI'll take a stab at it.\tJe vais l'essayer.\nI'll take care of that.\tJ’en prendrai soin.\nI'll take care of that.\tJe m'en occuperai.\nI'll take care of this.\tJ’en prendrai soin.\nI'll take the next bus.\tJe prendrai le prochain bus.\nI'll take the next bus.\tJe vais prendre le prochain bus.\nI'll talk to you later.\tJe te parlerai plus tard.\nI'll talk to you later.\tJe vous parlerai plus tard.\nI'll tell you a secret.\tJe vais te dire un secret.\nI'll tell you a secret.\tJe vais te dévoiler un secret.\nI'll tell you my story.\tJe te dirai mon histoire.\nI'll tell you my story.\tJe vous dirai mon histoire.\nI'll wait here for you.\tJe vais t'attendre ici.\nI'll walk out with you.\tJe vous conduis à la porte.\nI'm a Japanese teacher.\tJe suis un professeur de japonais.\nI'm a Japanese teacher.\tJe suis enseignant en japonais.\nI'm a few minutes late.\tJe suis en retard de quelques minutes.\nI'm a good taxi driver.\tJe suis un bon chauffeur de taxi.\nI'm a little bit tired.\tJe suis un peu fatigué.\nI'm a little skeptical.\tJe suis un peu sceptique.\nI'm above telling lies.\tJe ne suis pas homme à dire des mensonges.\nI'm accustomed to this.\tJ'y suis habitué.\nI'm accustomed to this.\tJ'en suis familier.\nI'm afraid of drowning.\tJ'ai peur de me noyer.\nI'm afraid of the dark.\tJ'ai peur du noir.\nI'm afraid of the dark.\tJ'ai peur de l'obscurité.\nI'm allergic to gluten.\tJe suis allergique au gluten.\nI'm allowing you to go.\tJe t'autorise à y aller.\nI'm allowing you to go.\tJe vous autorise à y aller.\nI'm already in trouble.\tJ'ai déjà des ennuis.\nI'm anxious to see you.\tJe suis impatient de te voir.\nI'm anxious to see you.\tJe suis impatient de vous voir.\nI'm ashamed of my body.\tJ'ai honte de mon corps.\nI'm ashamed of my past.\tJ'ai honte de mon passé.\nI'm at an office party.\tJe suis à un pot, au boulot.\nI'm at the airport now.\tJe suis maintenant à l'aéroport.\nI'm aware of the facts.\tJe suis consciente des faits.\nI'm aware of the facts.\tJe suis conscient des faits.\nI'm aware of the risks.\tJe suis consciente des risques.\nI'm aware of the risks.\tJe suis conscient des risques.\nI'm being held hostage.\tJe suis retenu en otage.\nI'm being held hostage.\tJe suis retenue en otage.\nI'm busy at the moment.\tJe suis occupé pour le moment.\nI'm completely wrecked.\tJe suis complètement en vrac.\nI'm completely wrecked.\tJe suis complètement pété.\nI'm concerned about it.\tCela me préoccupe.\nI'm doing this for him.\tJe le fais pour lui.\nI'm doing this for you.\tJe le fais pour toi.\nI'm doing this for you.\tJe le fais pour vous.\nI'm done with all that.\tJ'en ai fini avec tout ça.\nI'm fascinated by cats.\tJe suis fasciné par les chats.\nI'm fascinated by cats.\tJe suis fascinée par les chats.\nI'm getting used to it.\tJe m'y habitue.\nI'm glad I invited you.\tJe suis heureux de t'avoir invité.\nI'm glad I invited you.\tJe suis heureux de t'avoir invitée.\nI'm glad I invited you.\tJe suis heureux de vous avoir invité.\nI'm glad I invited you.\tJe suis heureux de vous avoir invitée.\nI'm glad I invited you.\tJe suis heureux de vous avoir invités.\nI'm glad I invited you.\tJe suis heureux de vous avoir invitées.\nI'm glad I invited you.\tJe suis heureuse de t'avoir invité.\nI'm glad I invited you.\tJe suis heureuse de t'avoir invitée.\nI'm glad I invited you.\tJe suis heureuse de vous avoir invité.\nI'm glad I invited you.\tJe suis heureuse de vous avoir invitée.\nI'm glad I invited you.\tJe suis heureuse de vous avoir invités.\nI'm glad I invited you.\tJe suis heureuse de vous avoir invitées.\nI'm glad I left Boston.\tJe suis content d'être parti de Boston.\nI'm glad I left Boston.\tJe suis contente d'être partie de Boston.\nI'm glad I'm not a dog.\tJe suis ravi de ne pas être un chien.\nI'm glad you came over.\tJe me réjouis que vous soyez venus.\nI'm glad you came over.\tJe me réjouis que vous soyez venu.\nI'm glad you came over.\tJe me réjouis que vous soyez venue.\nI'm glad you came over.\tJe me réjouis que tu sois venue.\nI'm glad you came over.\tJe me réjouis que tu sois venu.\nI'm glad you're coming.\tJe suis heureux que vous veniez.\nI'm glad you're coming.\tJe suis heureux que tu viennes.\nI'm glad you're coming.\tJe suis heureuse que tu viennes.\nI'm glad you're coming.\tJe suis heureuse que vous veniez.\nI'm going to Australia.\tJe vais en Australie.\nI'm happy for you both.\tJe suis heureux pour vous deux.\nI'm happy for you both.\tJe suis heureuse pour vous deux.\nI'm happy you liked it.\tJe suis heureux que tu l'aies aimé.\nI'm happy you liked it.\tJe suis heureux que vous l'ayez aimé.\nI'm happy you liked it.\tJe suis heureuse que tu l'aies aimé.\nI'm happy you liked it.\tJe suis heureuse que vous l'ayez aimé.\nI'm honored to be here.\tJe suis honoré d'être ici.\nI'm horrible with kids.\tJe suis terrible avec les enfants.\nI'm horrible with kids.\tJe suis horrible avec les gamins.\nI'm hungry and thirsty.\tJ'ai faim et soif.\nI'm hungry and thirsty.\tJe suis affamé et assoiffé.\nI'm in the tennis club.\tJe suis membre de ce club de tennis.\nI'm in the tennis club.\tJe fais partie du club de tennis.\nI'm just not very busy.\tJe ne suis simplement pas très occupé.\nI'm just not very busy.\tJe ne suis simplement pas très occupée.\nI'm kind of sick today.\tJe suis un peu malade aujourd'hui.\nI'm listening to music.\tJe suis en train d'écouter de la musique.\nI'm living in the city.\tJe vis en ville.\nI'm longing to see him.\tJ'ai hâte de le voir.\nI'm looking for my key.\tJe cherche ma clé.\nI'm lying on the grass.\tJe suis allongé dans l'herbe.\nI'm lying on the grass.\tJe suis allongée dans l'herbe.\nI'm more than a friend.\tJe suis plus qu'un ami.\nI'm more than a friend.\tJe suis plus qu'une amie.\nI'm no friend of yours.\tJe ne suis pas ton ami.\nI'm no friend of yours.\tJe ne suis pas ton amie.\nI'm no friend of yours.\tJe ne suis pas votre ami.\nI'm no friend of yours.\tJe ne suis pas votre amie.\nI'm no friend of yours.\tJe ne compte pas au nombre de tes amis.\nI'm no friend of yours.\tJe ne compte pas au nombre de vos amis.\nI'm no friend of yours.\tJe ne compte pas au nombre de tes amies.\nI'm no friend of yours.\tJe ne compte pas au nombre de vos amies.\nI'm not a professional.\tJe ne suis pas un professionnel.\nI'm not a professional.\tJe ne suis pas une professionnelle.\nI'm not all that drunk.\tJe ne suis pas saoul à ce point.\nI'm not all that smart.\tJe ne suis pas si malin.\nI'm not all that smart.\tJe ne suis pas si maligne.\nI'm not an early riser.\tJe me lève tard le matin.\nI'm not answering that.\tJe ne suis pas en train de répondre à cela.\nI'm not answering that.\tJe ne vais pas y répondre.\nI'm not as busy as Tom.\tJe ne suis pas aussi occupé que Tom.\nI'm not as busy as Tom.\tJe ne suis pas aussi occupée que Tom.\nI'm not busy right now.\tJe ne suis pas occupé pour le moment.\nI'm not busy right now.\tJe ne suis pas occupée, à l'instant.\nI'm not disputing that.\tJe ne conteste pas cela.\nI'm not going anywhere.\tJe ne vais nulle part.\nI'm not going anywhere.\tJe ne me rends nulle part.\nI'm not happy about it.\tJe n'en suis pas content.\nI'm not happy about it.\tJe n'en suis pas contente.\nI'm not hitting on you.\tJe ne te drague pas.\nI'm not hitting on you.\tJe ne vous drague pas.\nI'm not home right now.\tJe ne suis pas chez moi à l'heure actuelle.\nI'm not hungry anymore.\tJe n'ai plus faim.\nI'm not letting you go.\tPas question que je te laisse y aller.\nI'm not making that up.\tJe ne l'invente pas.\nI'm not ready to fight.\tJe ne suis pas prêt à me battre.\nI'm not ready to fight.\tJe ne suis pas prête à me battre.\nI'm not really worried.\tJe ne suis pas vraiment inquiet.\nI'm not really worried.\tJe ne suis pas vraiment inquiète.\nI'm not sure I'm ready.\tJe ne suis pas sûr d'être prêt.\nI'm not sure I'm ready.\tJe ne suis pas sûre d'être prête.\nI'm not talking to Tom.\tJe ne parle pas avec Tom.\nI'm not talking to you.\tJe ne parle pas avec toi.\nI'm not talking to you.\tJe ne parle pas avec vous.\nI'm not totally stupid.\tJe ne suis pas complètement bête !\nI'm not very confident.\tJe n'ai pas trop confiance.\nI'm not very organized.\tJe ne suis pas très organisé.\nI'm not very organized.\tJe ne suis pas très organisée.\nI'm not your boyfriend.\tJe ne suis pas ton petit-ami.\nI'm on a paid vacation.\tJe suis en congés payés.\nI'm only doing my duty.\tJe ne fais que mon devoir.\nI'm pleased to see you.\tJe suis ravi de te voir.\nI'm pleased to see you.\tJe suis ravi de vous voir.\nI'm proud of my father.\tJe suis fière de mon père.\nI'm proud of my father.\tJe suis fier de mon père.\nI'm proud of my school.\tJe suis fier de mon école.\nI'm quite sure of that.\tJ'en suis quasiment certain.\nI'm rather proud of it.\tJe suis plutôt fier de ça.\nI'm ready for tomorrow.\tJe suis prêt pour demain.\nI'm ready for tomorrow.\tJe suis prête pour demain.\nI'm ready to leave now.\tJe suis prêt à partir maintenant.\nI'm ready when you are.\tJe suis prêt quand tu l'es.\nI'm ready when you are.\tJe suis prêt quand vous l'êtes.\nI'm really embarrassed.\tJe suis vraiment embarrassé.\nI'm really embarrassed.\tJe suis vraiment embarrassée.\nI'm really proud of it.\tJ'en suis vraiment fier.\nI'm really proud of it.\tJ'en suis réellement fière.\nI'm really tired today.\tJe suis vraiment très fatigué aujourd'hui.\nI'm reporting for duty.\tAu rapport.\nI'm sick of being sick.\tJ'en ai marre d'être malade.\nI'm sick of hearing it.\tJ'en ai assez de l'entendre.\nI'm sick of hearing it.\tJ'en ai marre de l'entendre.\nI'm so bored right now.\tJe m'ennuie tellement en ce moment.\nI'm sorry, I really am.\tJe suis désolé, vraiment.\nI'm studying very hard.\tJ'étudie avec beaucoup d'assiduité.\nI'm studying very hard.\tJ'étudie très consciencieusement.\nI'm terrible at tennis.\tJe suis nulle au tennis.\nI'm the youngest child.\tJe suis le plus jeune enfant.\nI'm the youngest child.\tJe suis la plus jeune enfant.\nI'm thinking about you.\tJe pense à vous.\nI'm too tired to argue.\tJe suis trop fatigué pour me disputer.\nI'm too tired to argue.\tJe suis trop fatiguée pour me disputer.\nI'm too tired to drive.\tJe suis trop fatigué pour conduire.\nI'm too tired to think.\tJe suis trop fatigué pour réfléchir.\nI'm too tired to think.\tJe suis trop fatiguée pour réfléchir.\nI'm too tired to think.\tJe suis trop fatigué pour penser.\nI'm too tired to think.\tJe suis trop fatiguée pour penser.\nI'm trying to remember.\tJ'essaie de me rappeler.\nI'm using the computer.\tJe suis en train d'utiliser l'ordinateur.\nI'm walking beside her.\tJe marche à son côté.\nI'm wearing sunglasses.\tJe porte des lunettes de soleil.\nI'm well aware of that.\tJe suis bien conscient de ça.\nI'm working on his car.\tJe travaille sur sa voiture.\nI'm worried about them.\tJe me fais du souci pour elles.\nI'm worried about them.\tJe me fais du souci pour eux.\nI'm worried about them.\tJe me fais du souci à leur sujet.\nI've been kind of busy.\tJ'ai été plutôt occupé.\nI've been kind of busy.\tJ'ai été plutôt occupée.\nI've been there before.\tJ'y ai été auparavant.\nI've broken my glasses.\tJ'ai cassé mes lunettes.\nI've broken my glasses.\tJ'ai brisé mes lunettes.\nI've caught a bad cold.\tJ'ai contracté un mauvais rhume.\nI've come to apologize.\tJe suis venu m'excuser.\nI've found another job.\tJ'ai trouvé un autre travail.\nI've got a few friends.\tJ'ai quelques amis.\nI've got a plastic cup.\tJ'ai une tasse en plastique.\nI've got a plastic cup.\tJ'ai un verre en plastique.\nI've got a sweet tooth.\tJ'ai un bec sucré.\nI've got a sweet tooth.\tJe suis un sucré.\nI've got a sweet tooth.\tJe suis une sucrée.\nI've got it all sorted.\tJ'ai tout débrouillé.\nI've got it right here.\tC'est tout ce que je possède.\nI've got nowhere to go.\tJe n'ai nulle part où aller.\nI've got plans for you.\tJ'ai des projets pour vous.\nI've got plans for you.\tJ'ai des projets pour toi.\nI've got some problems.\tJ'ai des problèmes.\nI've got things to say.\tJ'ai des choses à dire.\nI've got to leave soon.\tJe dois bientôt partir.\nI've got to make lunch.\tJe dois faire à déjeuner.\nI've looked everywhere.\tJ'ai regardé partout.\nI've lost all my money.\tJ'ai perdu tout mon argent.\nI've never been abroad.\tJe n'ai jamais été à l'étranger.\nI've never been abroad.\tJe ne me suis jamais rendu à l'étranger.\nI've never been better.\tJe n'ai jamais été aussi bien.\nI've never been better.\tJe ne me suis jamais si bien porté.\nI've never been better.\tJe ne me suis jamais si bien portée.\nI've never lied to you.\tJe ne t'ai jamais menti.\nI've never lied to you.\tJe ne vous ai jamais menti.\nI've never lost to Tom.\tJe n'ai jamais perdu contre Tom.\nI've never told anyone.\tJe ne l'ai jamais dit à personne.\nI've only got one left.\tIl ne m'en reste qu'un.\nI've only got one left.\tJe n'en ai qu'un de reste.\nI've only seen it once.\tJe ne l'ai vu qu'une fois.\nI've only used it once.\tJe l'ai utilisé seulement une fois.\nI've really missed you.\tTu me manquais vraiment.\nI've removed the comma.\tJ'ai enlevé la virgule.\nI've removed the comma.\tJ'ai retiré la virgule.\nI've removed the comma.\tJ'ai soustrait la virgule.\nI've ruined everything.\tJ'ai tout gâché.\nI've ruined everything.\tJ'ai tout foiré.\nIn a sense, it is true.\tEn un sens, c'est vrai.\nIn brief, he was wrong.\tPour faire court, il a eu tort.\nIn that case, let's go.\tDans ce cas, allons-y.\nIn this case, let's go.\tDans ce cas, allons-y.\nInsects are arthropods.\tLes insectes sont des arthropodes.\nIron is a useful metal.\tLe fer est un métal utile.\nIs Tom out of his mind?\tTom a-t-il perdu l'esprit ?\nIs Tom related to Mary?\tTom est-il de la même famille que Mary ?\nIs Tom related to Mary?\tTom et Mary sont-ils parents ?\nIs Tom related to Mary?\tTom a-t-il un lien de parenté avec Mary ?\nIs Tom still at school?\tTom est-il encore à l'école ?\nIs anybody else scared?\tQui que ce soit d'autre a-t-il peur ?\nIs anyone absent today?\tQuelqu'un est-il absent aujourd'hui ?\nIs anyone absent today?\tQuiconque est-il absent, aujourd'hui ?\nIs anyone else bidding?\tQui que ce soit d'autre fait-il une offre ?\nIs anyone else excited?\tQuelqu'un d'autre est-il enthousiasmé ?\nIs anything the matter?\tQuelque chose ne va pas ?\nIs anything the matter?\tQuelque chose qui cloche ?\nIs eating people wrong?\tManger des êtres humains est-il mal ?\nIs everybody all right?\tEst-ce que tout le monde va bien ?\nIs everybody happy now?\tEst-ce que tout le monde est content maintenant ?\nIs everybody happy now?\tEst-ce que tout le monde est heureux maintenant ?\nIs everybody listening?\tTout le monde écoute-t-il ?\nIs everyone recovering?\tTout le monde se remet-il ?\nIs everything prepared?\tTout est-il préparé ?\nIs he any better today?\tVa-t-il mieux aujourd'hui ?\nIs he going to help us?\tVa-t-il nous aider ?\nIs he interested in me?\tS'intéresse-t-il à moi ?\nIs he still interested?\tEst-il toujours intéressé ?\nIs her father a doctor?\tSon père est-il médecin ?\nIs his father a doctor?\tSon père est-il médecin ?\nIs it OK if I kiss you?\tVois-tu un inconvénient à ce que je t'embrasse ?\nIs it OK if I kiss you?\tVoyez-vous un inconvénient à ce que je vous embrasse ?\nIs it OK if I sit here?\tEst-ce que ça va, si je m'assois ici ?\nIs it a recent picture?\tEst-ce une photo récente ?\nIs it a social problem?\tEst-ce un problème social ?\nIs it a social problem?\tEst-ce un problème de société ?\nIs it always like this?\tEst-ce toujours ainsi ?\nIs it always this cold?\tFait-il toujours froid comme ça ?\nIs it hard to fool you?\tEst-ce difficile de te piéger ?\nIs it only about money?\tS'agit-il seulement d'argent ?\nIs something different?\tQuelque chose est-il différent ?\nIs something happening?\tQuelque chose se produit-il ?\nIs something happening?\tQuelque chose a-t-il lieu ?\nIs that seat available?\tCe siège est-il libre ?\nIs that what Tom meant?\tEst-ce ce que Tom voulait dire ?\nIs that why you called?\tEst-ce pourquoi tu as appelé ?\nIs that why you called?\tEst-ce pourquoi vous avez appelé ?\nIs that your real name?\tEst-ce là votre véritable nom ?\nIs that your real name?\tEst-ce là ton véritable nom ?\nIs the wound very deep?\tLa blessure est-elle très profonde ?\nIs there a parking lot?\tY a-t-il un parking ?\nIs there any more beer?\tY a-t-il encore de la bière ?\nIs there any salt left?\tReste-t-il du sel ?\nIs there any salt left?\tReste-t-il du sel ?\nIs there anybody there?\tQuiconque est-il là ?\nIs there water on Mars?\tY a-t-il de l'eau sur Mars ?\nIs this time different?\tCe temps est-il différent ?\nIs this time different?\tCette fois est-elle différente ?\nIs this time different?\tEn va-t-il différemment cette fois ?\nIs this where you live?\tEst-ce là que vous vivez ?\nIs this where you live?\tEst-ce là que tu vis ?\nIs this your briefcase?\tEst-ce votre porte-documents ?\nIs today your birthday?\tEst-ce votre anniversaire aujourd'hui ?\nIs today your birthday?\tEst-ce ton anniversaire aujourd'hui ?\nIs your daughter blind?\tVotre fille est-elle aveugle ?\nIs your daughter blind?\tTa fille est-elle aveugle ?\nIs your mother at home?\tVotre mère est-elle chez elle ?\nIs your mother at home?\tTa mère est-elle à la maison ?\nIs your mother at home?\tTa mère est-elle chez elle ?\nIs your mother at home?\tTa mère est-elle à la maison ?\nIs your mother at home?\tTa mère est-elle chez elle ?\nIs your sister married?\tEst-ce que ta sœur est mariée ?\nIsn't that what I said?\tN'est-ce pas ce que j'ai dit ?\nIsn't this place great?\tCet endroit n'est il pas génial ?\nIsn't this place great?\tCet endroit n'est il pas terrible ?\nIt all makes sense now.\tTout s'éclaire, maintenant.\nIt brings me great joy.\tCela me cause une grande joie.\nIt can't possibly work.\tIl est impossible que cela fonctionne.\nIt didn't go very well.\tCela ne s'est pas très bien passé.\nIt doesn't hurt at all.\tÇa ne fait pas du tout mal.\nIt doesn't hurt at all.\tÇa ne fait pas mal du tout.\nIt doesn't matter much.\tPeu importe.\nIt doesn't ring a bell.\tÇa ne me dit rien.\nIt doesn't ring a bell.\tÇa ne m'évoque rien.\nIt doesn't surprise me.\tCela ne me surprend pas.\nIt gives me the creeps.\tCela me donne la chair de poule.\nIt had started to rain.\tIl avait commencé à pleuvoir.\nIt happened in a flash.\tC'est arrivé en un éclair.\nIt happened so quickly.\tC'est arrivé si vite.\nIt has happened before.\tC'est arrivé auparavant.\nIt has happened before.\tÇa s'est produit auparavant.\nIt has stopped raining.\tIl s'est arrêté de pleuvoir.\nIt hasn't happened yet.\tCela ne s'est pas encore produit.\nIt is finally all over.\tC'est finalement terminé.\nIt is me that is wrong.\tC'est moi qui ai faux.\nIt is me that is wrong.\tC'est moi qui suis en tort.\nIt is not his business.\tCe n'est pas son affaire.\nIt is raining hard now.\tIl pleut beaucoup maintenant.\nIt is their last movie.\tC'est leur dernier film.\nIt is time I left here.\tIl est temps que je parte.\nIt is to his advantage.\tC'est à son avantage.\nIt isn't just for show.\tCe n'est pas que pour la frime.\nIt isn't just for show.\tCe n'est pas que pour parader.\nIt isn't much of a car.\tÇa n'a pas grand-chose d'une voiture.\nIt just makes no sense.\tÇa n'a simplement aucun sens.\nIt looks good on paper.\tSur le papier, ça a l'air bien.\nIt looks like an apple.\tÇa ressemble à une pomme.\nIt makes me feel dirty.\tÇa me donne l'impression d'être sale.\nIt makes me feel dirty.\tÇa me fait me sentir sale.\nIt may rain any minute.\tIl peut pleuvoir à tout moment.\nIt means nothing to me.\tÇa ne signifie rien pour moi.\nIt might not be enough.\tÇa pourrait ne pas suffire.\nIt might not be enough.\tÇa pourrait ne pas être suffisant.\nIt might not even work.\tIl se pourrait même que ça ne fonctionne pas.\nIt might rain tomorrow.\tIl pourrait pleuvoir demain.\nIt really is difficult.\tC'est vraiment difficile.\nIt seems logical to me.\tCela me semble logique.\nIt seems to be serious.\tÇa a l'air sérieux.\nIt seems to be working.\tÇa a l'air de marcher.\nIt should be like this.\tÇa devrait être ainsi.\nIt sounds like a dream.\tÇa ressemble à un rêve.\nIt tastes like chicken.\tÇa a goût de poulet.\nIt tastes like chicken.\tÇa goûte le poulet.\nIt tastes like chicken.\tÇa a le même goût que le poulet.\nIt varies a great deal.\tÇa varie terriblement.\nIt was a bold decision.\tCe fut une décision hardie.\nIt was a bold decision.\tCe fut une décision audacieuse.\nIt was a judgment call.\tCe fut une décision à prendre.\nIt was a judgment call.\tCela a été une question de jugement.\nIt was a very big room.\tC'était une très grande pièce.\nIt was a waste of time.\tCe fut une perte de temps.\nIt was a waste of time.\tÇa a été une perte de temps.\nIt was a weird feeling.\tC'était un sentiment bizarre.\nIt was a weird feeling.\tC'était une sensation bizarre.\nIt was a wise decision.\tCe fut une sage décision.\nIt was all for nothing.\tCe fut entièrement pour rien.\nIt was as hard as rock.\tC'était aussi dur que de la pierre.\nIt was beginner's luck.\tC'était la chance du débutant.\nIt was chilly that day.\tIl faisait frisquet ce jour-là.\nIt was extremely funny.\tC'était extrêmement amusant.\nIt was extremely funny.\tCe fut extrêmement amusant.\nIt was extremely weird.\tC'était extrêmement étrange.\nIt was hard to believe.\tC'était difficile à croire.\nIt was hard to believe.\tCe fut difficile à croire.\nIt was hard to believe.\tÇa a été difficile à croire.\nIt was hot in the room.\tIl faisait chaud dans la chambre.\nIt was never like that.\tÇa n'a jamais été ainsi.\nIt was not an accident.\tCe n'était pas un accident.\nIt was not an accident.\tCe ne fut pas un accident.\nIt was not an accident.\tÇa n'a pas été un accident.\nIt was raining quietly.\tIl pleuvait doucement.\nIt was such a nice day.\tC'était un si beau jour.\nIt was sunny yesterday.\tIl y avait du soleil hier.\nIt was sunny yesterday.\tLe temps était ensoleillé hier.\nIt was truly a miracle.\tC'était vraiment un miracle.\nIt was truly a miracle.\tC'était un vrai miracle.\nIt was your own choice.\tC'était votre choix.\nIt was your own choice.\tCe fut votre choix.\nIt was your own choice.\tCe fut ton choix.\nIt wasn't a permission.\tCe n'était pas une permission.\nIt wasn't all my fault.\tTout n'était pas de ma faute.\nIt wasn't all that bad.\tTout n'était pas si mauvais.\nIt wasn't at all funny.\tCe n'était pas du tout amusant.\nIt wasn't funny at all.\tCe n'était pas drôle du tout.\nIt wasn't made of wood.\tCe n'était pas fait de bois.\nIt won't stop bleeding.\tÇa ne s'arrête pas de saigner.\nIt'll be different now.\tÇa sera différent, désormais.\nIt'll be too late then.\tCe sera alors trop tard.\nIt's October the third.\tNous sommes le trois octobre.\nIt's a Chinese company.\tC'est une société chinoise.\nIt's a beautiful story.\tC'est une belle histoire.\nIt's a bit further way.\tC'est un peu plus loin.\nIt's a cautionary tale.\tC'est un conte moral.\nIt's a cautionary tale.\tIl s'agit d'un conte moral.\nIt's a dangerous world.\tC'est un monde dangereux.\nIt's a hard, dirty job.\tC'est un travail difficile et sale.\nIt's a matter of pride.\tQuestion de fierté.\nIt's a matter of pride.\tC'est une question de fierté.\nIt's a matter of taste.\tC'est une question de goût.\nIt's a matter of taste.\tLes goûts et les couleurs...\nIt's a personal matter.\tIl s'agit d'une affaire personnelle.\nIt's a personal matter.\tC'est une affaire personnelle.\nIt's a present for you.\tC'est un cadeau pour toi.\nIt's a present for you.\tC'est un cadeau pour vous.\nIt's a serious illness.\tC'est une maladie sérieuse.\nIt's a tremendous deal.\tC'est un contrat énorme.\nIt's a very quiet room.\tC'est une chambre très calme.\nIt's across the street.\tC'est de l'autre côté de la rue.\nIt's against my morals.\tÇa va à l'encontre de mes valeurs morales.\nIt's against the rules.\tC'est contraire aux règles.\nIt's against the rules.\tC'est en infraction avec les règles.\nIt's ahead of schedule.\tC'est en avance sur l'horaire.\nIt's all right with me.\tJe vais bien.\nIt's almost impossible.\tC'est presque impossible.\nIt's almost time to go.\tIl est presque l'heure d'y aller.\nIt's already 7 o'clock.\tIl est déjà 7 heures.\nIt's already been done.\tÇa a déjà été fait.\nIt's an abuse of power.\tC'est un abus de pouvoir.\nIt's an acquired taste.\tC'est un goût qui s'apprend.\nIt's an ambitious plan.\tC'est un plan ambitieux.\nIt's an excellent wine.\tC'est un excellent vin.\nIt's an important step.\tC'est un pas important.\nIt's as simple as that.\tC'est aussi simple que ça.\nIt's awfully expensive.\tC'est horriblement cher.\nIt's bad for the heart.\tC'est mauvais pour le cœur.\nIt's been a long night.\tLa nuit a été longue.\nIt's business as usual.\tC'est le train-train.\nIt's business as usual.\tC'est toujours la même chose.\nIt's close to my house.\tC'est près de ma maison.\nIt's completely normal.\tC'est parfaitement normal.\nIt's fairly warm today.\tIl fait assez chaud, aujourd'hui.\nIt's for you to decide.\tC'est à toi de décider.\nIt's for you to decide.\tC'est à toi d'en décider.\nIt's for you to decide.\tC'est à vous de décider.\nIt's for you to decide.\tC'est à vous d'en décider.\nIt's for you to decide.\tLa décision est entre tes mains.\nIt's for you to decide.\tLa décision est entre vos mains.\nIt's getting cold here.\tIl commence à faire froid ici.\nIt's going really well.\tÇa se déroule vraiment très bien.\nIt's going really well.\tÇa se passe vraiment très bien.\nIt's going to be close.\tÇa va être serré.\nIt's going to be close.\tÇa va être juste.\nIt's going to get ugly.\tÇa ne va pas être beau à voir.\nIt's great to meet you.\tC'est super de te rencontrer.\nIt's great to meet you.\tC'est super de vous rencontrer.\nIt's impolite to point.\tC'est impoli de montrer les autres du doigt.\nIt's incredibly boring.\tC'est incroyablement ennuyeux.\nIt's just not worth it.\tÇa n'en vaut juste pas la peine.\nIt's just pepper spray.\tCe n'est que du gaz lacrymogène.\nIt's kind of important.\tC'est plutôt important.\nIt's like one of those.\tC'est similaire à l'un de ceux-là.\nIt's like one of those.\tC'est similaire à l'une de celles-là.\nIt's like one of those.\tC'est comme l'un de ceux-là.\nIt's like one of those.\tC'est comme l'une de celles-là.\nIt's making me nervous.\tÇa me rend nerveux.\nIt's morally repugnant.\tC'est moralement répugnant.\nIt's nearly impossible.\tC'est presque impossible.\nIt's nearly impossible.\tC'est pratiquement impossible.\nIt's no trouble at all.\tCela ne pose aucun problème.\nIt's no trouble at all.\tCe n'est pas du tout un problème.\nIt's not an easy sport.\tCe n'est pas un sport facile.\nIt's not brain surgery.\tCe n'est pas de la neurochirurgie.\nIt's not far to Boston.\tCe n'est pas loin de Boston.\nIt's not for everybody.\tCe n'est pas pour tout le monde.\nIt's not for everybody.\tÇa ne s'adresse pas à tout le monde.\nIt's not for everybody.\tCe n'est pas tout public.\nIt's not for everybody.\tCe n'est pas destiné à tout le monde.\nIt's not getting worse.\tÇa n'empire pas.\nIt's not just a theory.\tCe n'est pas qu'une théorie.\nIt's not my cup of tea.\tCe n'est pas ma spécialité.\nIt's not us who did it.\tCe n'est pas nous qui l'avons fait.\nIt's not without risks.\tCe n'est pas sans risques.\nIt's now fairly common.\tC'est maintenant assez commun.\nIt's past your bedtime.\tL'heure d'aller te coucher est passée.\nIt's pretty incredible.\tC'est assez incroyable.\nIt's pretty incredible.\tC'est plutôt incroyable.\nIt's rather impressive.\tC'est plutôt impressionnant.\nIt's really cold today.\tIl fait vraiment froid aujourd'hui.\nIt's routine procedure.\tC'est une procédure de routine.\nIt's snowing in Boston.\tIl neige à Boston.\nIt's still my birthday.\tC'est quand même mon anniversaire.\nIt's still not working.\tÇa ne fonctionne toujours pas.\nIt's ten o'clock sharp.\tIl est juste dix heures.\nIt's the ultimate test.\tC'est l'examen ultime.\nIt's there to the left.\tC'est là sur la gauche.\nIt's time for us to go.\tIl est temps pour nous d'y aller.\nIt's time for us to go.\tIl est l'heure pour nous de partir.\nIt's time to eat lunch.\tC'est l'heure de déjeuner.\nIt's time to go to bed.\tC'est l'heure d'aller au lit.\nIt's time we went home.\tC'est l'heure où nous sommes rentrés à la maison.\nIt's too early to know.\tIl est trop tôt pour le savoir.\nIt's too late for them.\tC'est trop tard pour eux.\nIt's too late for them.\tC'est trop tard pour elles.\nIt's very entertaining.\tC'est très divertissant.\nIt's what I want to do.\tC'est ce que je veux faire.\nIt's worth every penny.\tÇa vaut son pesant d'or.\nIt's your duty to vote.\tC'est votre devoir de voter.\nIt's your duty to vote.\tC'est ton devoir de voter.\nIt's your turn to sing.\tC'est à toi de chanter.\nIt's your turn to sing.\tC'est à ton tour de chanter.\nJust be glad you're OK.\tContente-toi juste d'être sain et sauf.\nJust be glad you're OK.\tContente-toi juste d'être saine et sauve.\nJust be glad you're OK.\tContentez-vous juste d'être sain et sauf.\nJust be glad you're OK.\tContentez-vous juste d'être sains et saufs.\nJust be glad you're OK.\tContentez-vous juste d'être saine et sauve.\nJust be glad you're OK.\tContentez-vous juste d'être saines et sauves.\nJust don't forget this.\tN'oublie juste pas cela.\nJust don't forget this.\tN'oubliez juste pas cela.\nJust follow your heart.\tSuis juste ton cœur.\nJust follow your heart.\tSuivez juste votre cœur !\nJust get off the stage.\tDescendez simplement de la scène !\nJust get off the stage.\tDescends simplement de la scène !\nJust tell us the truth.\tDis-nous simplement la vérité.\nJust tell us the truth.\tDites-nous simplement la vérité.\nKeep away from the dog.\tReste éloigné du chien.\nKeep away from the dog.\tRestez éloigné du chien.\nKeep away from the dog.\tRestez éloignée du chien.\nKeep away from the dog.\tRestez éloignés du chien.\nKeep away from the dog.\tRestez éloignées du chien.\nKeep it secret, please.\tGarde-le secret, je te prie.\nKeep the meter running.\tLaisse tourner le compteur.\nKeep the meter running.\tLaissez tourner le compteur.\nKeep the window closed.\tGardez la fenêtre fermée.\nKeep the window closed.\tLaisse la fenêtre fermée !\nKeep up with the times.\tRestez dans le coup.\nKeep up with the times.\tReste dans le coup.\nKeep your hands off me.\tBas les pattes !\nLaughter is infectious.\tLe rire est contagieux.\nLet bygones be bygones.\tCe qui est fait est fait.\nLet bygones be bygones.\tOublions le passé.\nLet me buy you a drink.\tLaisse-moi te payer une boisson.\nLet me check my wallet.\tLaissez-moi vérifier mon portefeuille !\nLet me check my wallet.\tLaisse-moi vérifier mon portefeuille !\nLet me do this for you.\tLaisse-moi le faire à ta place !\nLet me do this for you.\tLaissez-moi le faire à votre place !\nLet me get back to you.\tLaisse-moi revenir vers toi !\nLet me get back to you.\tLaissez-moi revenir vers vous !\nLet me get you the key.\tLaisse-moi te dégoter la clé.\nLet me get you the key.\tLaissez-moi vous dégoter la clé.\nLet me join your cause.\tLaissez-moi rejoindre votre mouvement.\nLet me see your tongue.\tMontrez-moi votre langue.\nLet me think this over.\tLaissez-moi y réfléchir !\nLet me think this over.\tLaisse-moi y réfléchir !\nLet me write that down.\tLaisse-moi noter ça !\nLet me write that down.\tLaissez-moi noter ça !\nLet them do their jobs.\tLaissez-les faire leurs boulots !\nLet us finish our work.\tLaissez-nous finir notre travail.\nLet's be clear on this.\tSoyons clairs quant à ceci !\nLet's begin on page 30.\tCommençons en page trente.\nLet's begin on page 30.\tCommençons à la page trente.\nLet's cross the street.\tTraversons la rue.\nLet's do this properly.\tFaisons-le correctement.\nLet's do this properly.\tFaisons ça correctement.\nLet's do this properly.\tFaisons cela convenablement !\nLet's eat before we go.\tMangeons avant de partir.\nLet's get back to work.\tRetournons au travail !\nLet's get back to work.\tRemettons-nous au travail !\nLet's get it over with.\tFinissons-en !\nLet's go ahead and eat.\tAllons en avant et mangeons.\nLet's go to the picnic.\tAllons au pique-nique.\nLet's not be too hasty.\tNe nous précipitons pas !\nLet's not discuss this.\tN'en discutons pas.\nLet's not tell anybody.\tNe le disons à personne !\nLet's plug up the hole.\tBouchons le trou.\nLet's put it to a vote.\tSoumettons-le au vote.\nLet's say you're right.\tDisons que vous avez raison.\nLet's see what happens.\tVoyons ce qu'il advient.\nLet's see what happens.\tVoyons ce qui se passe.\nLet's see what happens.\tVoyons voir ce qui se passe.\nLet's see what happens.\tVoyons ce qui arrive.\nLet's see what happens.\tVoyons voir ce qui arrive.\nLet's see what it does.\tVoyons ce que ça fait !\nLet's share this money.\tPartageons cet argent.\nLet's sit on the bench.\tAsseyons-nous sur le banc.\nLet's sit on the grass.\tAsseyons-nous sur l'herbe.\nLet's speak in English.\tParlons anglais.\nLet's start right away.\tPartons tout de suite.\nLet's take a rest here.\tReposons-nous ici.\nLet's take a short cut.\tPrenons un raccourci.\nLet's take a short cut.\tPrenons un raccourci !\nLet's take a tea break.\tFaisons une pause thé.\nLet's take a tea break.\tFaisons une pause-thé !\nLie on your right side.\tÉtendez-vous sur le côté droit.\nLife is like a journey.\tLa vie est comme un voyage.\nLife isn't fair, is it?\tLa vie n'est pas juste, si ?\nListen to me carefully.\tÉcoute-moi attentivement.\nListen to me carefully.\tÉcoute-moi bien.\nLiving here isn't easy.\tVivre ici n'est pas facile.\nLook at the blackboard.\tRegarde le tableau.\nLook at the blackboard.\tRegardez le tableau.\nLook in the phone book.\tRegarde dans l'annuaire.\nLook out of the window.\tRegarde par la fenêtre.\nLook out of the window.\tRegarde par la fenêtre !\nLook out of the window.\tRegardez par la fenêtre !\nLook, there's a rabbit!\tRegarde, il y a un lapin !\nLook, there's a rabbit!\tRegardez, il y a un lapin !\nLove is hard to define.\tL'amour est difficile à définir.\nLuckily nobody drowned.\tHeureusement, personne ne se noya.\nLuckily nobody drowned.\tPar chance, personne ne s'est noyé.\nLuckily nobody got wet.\tHeureusement, personne n'a été trempé.\nLunch will be provided.\tLe déjeuner sera fourni.\nMake the new guy do it.\tFaites-le faire au nouveau type.\nMary is Tom's fiancée.\tMarie est la fiancée de Tom.\nMary is my half-sister.\tMarie est ma demi-sœur.\nMary likes watching TV.\tMary aime regarder la télévision.\nMary oiled her bicycle.\tMarie a mis de l'huile à son vélo.\nMary's husband is rich.\tLe mari de Marie est riche.\nMay I be of assistance?\tPuis-je vous être d'une aide quelconque ?\nMay I borrow this book?\tPuis-je emprunter ce livre ?\nMay I have a signature?\tPuis-je avoir une signature ?\nMay I have a timetable?\tPuis-je disposer d'un horaire ?\nMay I introduce myself?\tPuis-je me présenter ?\nMay I look at the menu?\tPuis-je jeter un coup d'œil au menu ?\nMay I look at the menu?\tPourrais-je regarder le menu ?\nMay I put it down here?\tPuis-je le mettre ici ?\nMay I see you tomorrow?\tPuis-je te voir demain ?\nMay I see you tomorrow?\tPuis-je vous voir demain ?\nMay I start eating now?\tPuis-je commencer à manger maintenant ?\nMay I turn down the TV?\tPuis-je baisser le son du téléviseur ?\nMay I turn down the TV?\tPuis-je baisser le son du poste de télévision ?\nMay I use the bathroom?\tPuis-je utiliser vos toilettes ?\nMaybe I drink too much.\tJe bois peut-être trop.\nMeet me in the hot tub.\tRejoins-moi dans le baquet d'eau chaude.\nMeet me in the hot tub.\tRejoignez-moi dans le baquet d'eau chaude.\nMind your own business!\tMêle-toi de tes affaires.\nMind your own business!\tOccupe-toi de tes propre affaires !\nMind your own business!\tOccupez-vous de vos propres affaires !\nMind your own business.\tMêlez-vous de vos affaires.\nMind your own business.\tMêle-toi de tes propres affaires !\nMoney isn't everything.\tL'argent n'est pas tout.\nMy GPS works very well.\tMon GPS fonctionne très bien.\nMy GPS works very well.\tMon système de géo-localisation fonctionne très bien.\nMy TV has quit working.\tMon téléviseur a cessé de fonctionner.\nMy TV has quit working.\tMon poste de télévision a cessé de fonctionner.\nMy body aches all over.\tJ'ai mal partout.\nMy brother is an idiot.\tMon frère est un imbécile.\nMy brother is an idiot.\tMon frère est un idiot.\nMy cat is following me.\tMon chat me suit.\nMy cat is following me.\tMa chatte me suit.\nMy cat is really smart.\tMon chat est vraiment malin.\nMy cats will love this.\tMes chats adoreront ça.\nMy cholesterol is high.\tMon taux de cholestérol est élevé.\nMy computer has frozen.\tMon ordinateur s'est figé.\nMy conscience is clear.\tJ'ai la conscience tranquille.\nMy dad bought me books.\tPapa m’a acheté des livres.\nMy dad gave up alcohol.\tMon père arrêta l'alcool.\nMy dad gave up alcohol.\tMon père a arrêté l'alcool.\nMy daughter has braces.\tMa fille a les dents baguées.\nMy daughter's your age.\tMa fille est de votre âge.\nMy daughter's your age.\tMa fille est de ton âge.\nMy dog has a long tail.\tMon chien a une longue queue.\nMy door is always open.\tMa porte est toujours ouverte.\nMy dream has come true.\tMon rêve s'est réalisé.\nMy family are all well.\tToute ma famille va bien.\nMy father is a teacher.\tMon père est enseignant.\nMy father is very nice.\tMon père est très gentil.\nMy father was an actor.\tMon père était un comédien.\nMy father was an actor.\tMon père était un acteur.\nMy father will kill me.\tMon père me tuera.\nMy father's car is new.\tLa voiture de mon père est nouvelle.\nMy feet are killing me.\tMes pieds me sont une torture.\nMy foot's asleep again!\tMon pied est encore ankylosé !\nMy friend is beside me.\tMon ami se trouve à mon côté.\nMy friend is beside me.\tMon amie se trouve à mon côté.\nMy friend is bilingual.\tMon ami est bilingue.\nMy friend is bilingual.\tMon amie est bilingue.\nMy friends call me Tom.\tMes amis m'appellent Tom.\nMy friends call me Tom.\tMes amies m'appellent Tom.\nMy heart began to race.\tMon cœur commença à battre la chamade.\nMy house faces the sea.\tMa maison se trouve en face de la mer.\nMy house is like yours.\tMa maison est comme la vôtre.\nMy house is your house.\tMa demeure est la vôtre.\nMy house is your house.\tMa demeure est la tienne.\nMy life is almost over.\tMa vie est presque terminée.\nMy life is almost over.\tMa vie est presque achevée.\nMy life is almost over.\tJ'arrive au terme de ma vie.\nMy life is such a mess.\tMa vie est un tel bordel !\nMy mother cooks for me.\tMa mère cuisine pour moi.\nMy mother cut the cake.\tMa mère a coupé le gâteau.\nMy mother feels better.\tMa mère se sent mieux.\nMy mother is a teacher.\tMa mère est professeur.\nMy mother is on a diet.\tMa mère suit un régime.\nMy mother was in tears.\tMa mère était en larmes.\nMy nails are too short.\tMes ongles sont trop courts.\nMy nose was very runny.\tMon nez coulait beaucoup.\nMy passport was stolen.\tOn m'a volé mon passeport.\nMy room is number five.\tMa chambre est la numéro cinq.\nMy shift's almost over.\tMon service est presque terminé.\nMy shirt isn't dry yet.\tMa chemise n'est pas encore sèche.\nMy shoes are too tight.\tMes chaussures sont trop serrées.\nMy son can't count yet.\tMon fils ne sait pas encore compter.\nMy son is a journalist.\tMon fils est journaliste.\nMy time is running out.\tJe manque de temps.\nMy uncle drives a Ford.\tMon oncle conduit une voiture Ford.\nMy watch is waterproof.\tMa montre est étanche.\nMy wife died of cancer.\tMa femme est morte d'un cancer.\nMy wife stayed at home.\tMa femme est restée à la maison.\nNever tell a lie again.\tNe dites plus jamais de mensonge.\nNew York is a big city.\tNew York est une grande ville.\nNice of you to drop by.\tC'est sympa de passer.\nNo one agreed with him.\tPersonne ne fut d'accord avec lui.\nNo one agreed with him.\tPersonne n'a été d'accord avec lui.\nNo one agreed with him.\tPersonne n'était d'accord avec lui.\nNo one can go in there.\tPersonne ne peut pénétrer ici.\nNo one can replace you.\tPersonne ne peut te remplacer.\nNo one could deny this.\tPersonne ne pouvait disputer cela.\nNo one could deny this.\tPersonne ne pourrait disputer cela.\nNo one could deny this.\tPersonne ne pourrait nier cela.\nNo one could deny this.\tPersonne ne pourrait le nier.\nNo one could deny this.\tPersonne ne pouvait le nier.\nNo one else knows this.\tPersonne d'autre ne le sait.\nNo one ever comes here.\tPersonne ne vient jamais ici.\nNo one is invulnerable.\tPersonne n'est invulnérable.\nNo one knew what to do.\tPersonne ne savait quoi faire.\nNo one knew what to do.\tTout le monde ignorait quoi faire.\nNo one knew who did it.\tPersonne ne savait qui l'avait fait.\nNo one knew who did it.\tPersonne ne savait qui l'avait commis.\nNo one knew who did it.\tTout le monde ignorait qui l'avait fait.\nNo one knew who did it.\tTout le monde ignorait qui l'avait commis.\nNo one knows the cause.\tPersonne n'en connaît la cause.\nNo one listens anymore.\tPersonne n'écoute plus.\nNo one understands you.\tPersonne ne te comprend.\nNo one understands you.\tPersonne ne vous comprend.\nNo one was in the park.\tPersonne n'était au parc.\nNo one was in the park.\tPersonne ne se trouvait dans le parc.\nNo one was in the room.\tPersonne n'était dans la pièce.\nNo one was in the room.\tPersonne ne se trouvait dans la pièce.\nNo one will believe me.\tPersonne ne me croira.\nNo one will believe us.\tPersonne ne nous croira.\nNobody came to help me.\tPersonne n'est venu m'aider.\nNobody came to help me.\tPersonne ne vint m'aider.\nNobody can surpass him.\tPersonne ne le surpasse.\nNobody knows it but me.\tPersonne ne le sait, sauf moi.\nNobody knows it but me.\tPersonne ne le sait, à part moi.\nNobody knows the truth.\tPersonne ne connaît la vérité.\nNobody showed up today.\tPersonne n'est venu aujourd'hui.\nNobody showed up today.\tPersonne n'a montré son nez aujourd'hui.\nNobody understands you.\tPersonne ne te comprend.\nNot everyone got along.\tTout le monde ne s'est pas joint.\nNot everyone is honest.\tTout le monde n'est pas honnête.\nNothing could stop him.\tRien ne pourrait l'arrêter.\nNothing really matters.\tRien n'a vraiment d'importance.\nNothing seemed to work.\tRien ne semblait fonctionner.\nNothing seemed to work.\tRien n'avait l'air de fonctionner.\nNothing's been changed.\tRien n'a été changé.\nNow, this is a problem.\tMaintenant c'est un problème.\nObviously, he is lying.\tÀ l'évidence, il ment.\nOf course, he is right.\tÉvidemment, il a raison.\nOf course, he is right.\tBien sûr qu'il a raison.\nOh, I'm terribly sorry.\tJe suis vraiment désolé.\nOh, don't be like that.\tOh, ne soyez pas comme ça !\nOh, don't be like that.\tOh, ne sois pas comme ça !\nOh, don't be so modest.\tOh, ne sois pas si modeste !\nOh, don't be so modest.\tOh, ne soyez pas si modeste !\nOh, don't be so modest.\tOh, ne soyez pas si modestes !\nOnce bitten, twice shy.\tChat échaudé craint l'eau froide.\nOpinions are not facts.\tLes opinions ne sont pas des faits.\nOur TV is out of order.\tNotre téléviseur est cassé.\nOur TV is out of order.\tNotre téléviseur est hors-service.\nOur TV is out of order.\tNotre téléviseur est en panne.\nOur school burned down.\tNotre école a brûlé.\nOur team did very well.\tNotre équipe s'est très bien débrouillée.\nPass the sugar, please.\tPasse-moi le sucre s'il te plaît.\nPeople are complicated.\tLes gens sont compliqués.\nPick up your briefcase.\tRamasse ta mallette.\nPlease add up the bill.\tMettez ça sur la note.\nPlease add up the bill.\tMets ça sur la note.\nPlease correct my bill.\tVeuillez corriger ma note.\nPlease don't overdo it.\tS'il te plait, n'en fais pas trop.\nPlease don't overdo it.\tS'il vous plait, n'en faites pas trop.\nPlease give him a call.\tTéléphone-lui, je te prie.\nPlease give him a call.\tVeuillez lui téléphoner, je vous prie.\nPlease give me a break.\tLâche-moi, s'il te plait.\nPlease give me a break.\tFiche-moi la paix, s'il te plait.\nPlease keep me updated.\tTiens-moi informé, je te prie.\nPlease leave a message.\tVeuillez laisser un message.\nPlease open the bottle.\tOuvrez la bouteille, s'il vous plait.\nPlease open the window.\tS'il vous plaît, ouvrez la fenêtre.\nPlease open the window.\tVeuillez ouvrir la fenêtre !\nPlease open the window.\tOuvre la fenêtre, je te prie !\nPlease pay the cashier.\tS'il te plait, paie la caissière.\nPlease turn off the TV.\tÉteins la télé, s'il te plaît.\nPlease write back soon.\tÉcris bientôt en retour, s'il te plaît.\nPlease write this down.\tVeuillez prendre note de cela !\nPractice makes perfect.\tLa pratique conduit à la perfection.\nPut it there, not here.\tMets-le là, pas ici !\nPut it there, not here.\tMettez-le là et non ici !\nPut it there, not here.\tMets-le là et non ici !\nPut your room in order.\tMets ta chambre en ordre.\nQuit talking, will you?\tArrête de parler, veux-tu ?\nQuit talking, will you?\tArrêtez de parler, voulez-vous ?\nRabbits have long ears.\tLes lapins ont de grandes oreilles.\nRabbits have long ears.\tLes lapins ont de longues oreilles.\nRead whatever you like.\tLis ce que tu veux.\nReading makes me happy.\tLire me rend heureux.\nRun as fast as you can.\tCours aussi vite que possible.\nSave me some ice cream.\tGarde-moi un peu de glace.\nSave me some ice cream.\tGarde-moi un peu de crème glacée.\nSay that again, please.\tDis-le encore une fois, s'il te plaît.\nSchool begins in April.\tL'école commence en avril.\nSchool begins tomorrow.\tLa rentrée scolaire a lieu demain.\nSee things as they are.\tVois les choses telles qu'elles sont.\nSee things as they are.\tVoyez les choses telles qu'elles sont.\nSee things as they are.\tVois les choses comme elles sont.\nSee you in the morning.\tÀ demain matin !\nSelling cars is my job.\tVendre des voitures est mon métier.\nShall I carry your bag?\tVeux-tu que je porte ton sac ?\nShall I cut it in half?\tDois-je le couper en deux ?\nShall we walk or drive?\tNous y allons à pied ou en voiture ?\nShe abandoned her sons.\tElle a abandonné ses fils.\nShe accepted his offer.\tElle a accepté sa proposition.\nShe also speaks French.\tElle parle aussi le français.\nShe also speaks French.\tElle parle également français.\nShe always believes me.\tElle me croit toujours.\nShe always stood by me.\tElle s'est toujours tenue à mon côté.\nShe always stood by me.\tElle s'est toujours tenue de mon côté.\nShe asked him for help.\tElle lui a demandé de l'aide.\nShe asked us to dinner.\tElle nous a invités à dîner.\nShe begged him to stay.\tElle le supplia de rester.\nShe bowed deeply to me.\tElle s'est profondément inclinée devant moi.\nShe broke the cup, too.\tElle a brisé la tasse en plus.\nShe came into the room.\tElle est entrée dans la pièce.\nShe came into the room.\tElle entra dans la pièce.\nShe came late as usual.\tElle arriva en retard comme d'habitude.\nShe can leave tomorrow.\tElle peut partir demain.\nShe can play the piano.\tElle sait jouer du piano.\nShe can sing very well.\tElle sait fort bien chanter.\nShe can speak Japanese.\tElle sait parler japonais.\nShe can't find her hat.\tElle n'arrive pas à trouver son chapeau.\nShe can't find her hat.\tElle ne parvient pas à trouver son chapeau.\nShe can't have said so.\tElle ne peut pas avoir dit ça.\nShe couldn't afford it.\tElle ne pouvait pas se le permettre.\nShe couldn't afford it.\tElle n'en avait pas les moyens.\nShe crossed the street.\tElle traversa la rue.\nShe doesn't like sushi.\tElle n'aime pas les sushis.\nShe doesn't seem happy.\tElle ne semble pas heureuse.\nShe dressed like a boy.\tElle s'est habillée comme un garçon.\nShe fell from the tree.\tElle est tombée de l'arbre.\nShe found him handsome.\tElle le trouvait beau.\nShe gave him a massage.\tElle lui fit un massage.\nShe gave him a massage.\tElle lui a fait un massage.\nShe gave him a present.\tElle lui donna un cadeau.\nShe gave him a sweater.\tElle lui donna un chandail.\nShe gave him some food.\tElle lui donna de la nourriture.\nShe gets tired quickly.\tElle se fatigue rapidement.\nShe got engaged to him.\tElle se fiança avec lui.\nShe got engaged to him.\tElle s'est fiancée avec lui.\nShe got engaged to him.\tElle s'est fiancée à lui.\nShe got married to him.\tElle l'a épousé.\nShe got married to him.\tElle l'épousa.\nShe had a crush on him.\tElle eut le béguin pour lui.\nShe had a crush on him.\tElle a eu le béguin pour lui.\nShe had a little money.\tElle avait un peu d'argent.\nShe had her dress made.\tElle a fait faire sa robe.\nShe had white shoes on.\tElle portait des chaussures blanches.\nShe handed him the key.\tElle lui tendit la clé.\nShe has a little bread.\tElle a un peu de pain.\nShe has a sharp tongue.\tElle a une langue de vipère.\nShe has never seen him.\tElle ne l'a jamais vu.\nShe has no self-esteem.\tElle n'a pas d'amour-propre.\nShe has three children.\tElle a trois enfants.\nShe herself helped him.\tElle l'a aidé en personne.\nShe hung up in silence.\tElle raccrocha en silence.\nShe is a famous singer.\tC'est une célèbre chanteuse.\nShe is a gifted artist.\tElle est une artiste-née.\nShe is already married.\tElle est déjà mariée.\nShe is as poor as ever.\tElle est toujours aussi pauvre.\nShe is cooking for him.\tElle est en train de cuisiner pour lui.\nShe is fit for the job.\tElle est apte pour le poste.\nShe is fond of animals.\tElle adore les animaux.\nShe is great at skiing.\tElle est très bonne en ski.\nShe is guilty of fraud.\tElle est coupable de fraude.\nShe is guilty of theft.\tElle est coupable de vol.\nShe is habitually late.\tElle est habituellement en retard.\nShe is his real mother.\tElle est sa véritable mère.\nShe is in need of help.\tElle a besoin d'aide.\nShe is no match for me.\tElle n'est pas de taille avec moi.\nShe is no match for me.\tElle ne fait pas le poids avec moi.\nShe is used to cooking.\tElle a l'habitude de faire la cuisine.\nShe is used to sitting.\tElle est habituée à se tenir assise.\nShe is very kind to us.\tElle est très gentille avec nous.\nShe is very photogenic.\tElle est très photogénique.\nShe is wiser than I am.\tElle est plus sage que je ne le suis.\nShe kissed me, not him.\tElle m'embrassa moi et non lui.\nShe knit him a sweater.\tElle lui a tricoté un chandail.\nShe knit him a sweater.\tElle lui tricota un chandail.\nShe knows herself well.\tElle se connaît bien.\nShe let the secret out.\tElle a divulgué le secret.\nShe lied about her age.\tElle a menti quant à son âge.\nShe lied about her age.\tElle a menti sur son âge.\nShe likes Chinese food.\tElle aime la cuisine chinoise.\nShe likes birdwatching.\tElle aime observer les oiseaux.\nShe likes blue dresses.\tElle aime les robes bleues.\nShe likes short skirts.\tElle aime les jupes courtes.\nShe lived a happy life.\tElle a eu une vie heureuse.\nShe lived a happy life.\tElle a vécu une vie heureuse.\nShe lived to be ninety.\tElle a vécu jusqu'à nonante ans.\nShe lost her new watch.\tElle a perdu sa nouvelle montre.\nShe loves her children.\tElle aime ses enfants.\nShe loves her children.\tElle adore ses enfants.\nShe majored in history.\tElle s'est spécialisée en histoire.\nShe married a musician.\tElle a épousé un musicien.\nShe married a musician.\tElle épousa un musicien.\nShe married a rich man.\tElle épousa un homme riche.\nShe may be our teacher.\tIl se peut qu'elle soit notre institutrice.\nShe must be very happy.\tElle doit être très heureuse.\nShe picked me an apple.\tElle m'a cueilli une pomme.\nShe put in for a raise.\tElle sollicita une augmentation.\nShe put on her sweater.\tElle a mis son pull-over.\nShe put on her sweater.\tElle a mis son chandail.\nShe really wants to go.\tElle veut vraiment y aller.\nShe really wants to go.\tElle veut vraiment partir.\nShe resembles her aunt.\tElle ressemble à sa tante.\nShe said she was happy.\tElle dit qu'elle était heureuse.\nShe sang as she walked.\tElle chantait en marchant.\nShe says she will come.\tElle dit qu'elle viendra.\nShe sent him a message.\tElle lui envoya un message.\nShe sent him a message.\tElle lui a envoyé un message.\nShe showed me her room.\tElle m'a montré sa chambre.\nShe smiled at her baby.\tElle sourit à son bébé.\nShe started at the top.\tElle débuta au sommet.\nShe stood bolt upright.\tElle se tenait droit comme un i.\nShe stood close to him.\tElle se tenait près de lui.\nShe stood close to him.\tElle se tint près de lui.\nShe suddenly kissed me.\tElle m'embrassa subitement.\nShe suddenly kissed me.\tElle m'a soudainement embrassé.\nShe suddenly kissed me.\tElle m'a soudainement embrassée.\nShe told me everything.\tElle m'a tout dit.\nShe told me her secret.\tElle m'a dit son secret.\nShe took a deep breath.\tElle prit une profonde respiration.\nShe tried a third time.\tElle a essayé une troisième fois.\nShe tried a third time.\tElle essaya une troisième fois.\nShe used to drink beer.\tElle avait l'habitude de boire de la bière.\nShe wanted to be alone.\tElle voulait être seule.\nShe was about to leave.\tElle était sur le point de partir.\nShe was born last year.\tElle est née l'année dernière.\nShe was breathing hard.\tElle respirait avec force.\nShe was dressed in red.\tElle était vêtue de rouge.\nShe was painfully thin.\tElle était atrocement mince.\nShe was pale with fear.\tElle était pâle de frayeur.\nShe wears heavy makeup.\tElle est maquillée comme un camion volé.\nShe went into teaching.\tElle est allée dans l'enseignement.\nShe went there to swim.\tElle s'y rendit pour nager.\nShe went there to swim.\tElle s'y est rendue pour nager.\nShe will get well soon.\tElle ira bientôt mieux.\nShe will get well soon.\tElle ira bien bientôt.\nShe woke up on her own.\tElle se réveilla elle-même.\nShe wore a white dress.\tElle portait une robe blanche.\nShe writes beautifully.\tElle écrit magnifiquement.\nShe'll lend you a book.\tElle te prêtera un livre.\nShe'll lend you a book.\tElle te prêtera un ouvrage.\nShe's a glamorous girl.\tC'est une fille séduisante.\nShe's a powerful witch.\tC'est une puissante sorcière.\nShe's a very nice girl.\tC'est une très gentille fille.\nShe's a very nice girl.\tC'est une très chouette fille.\nShe's a very nice girl.\tC'est une fille très chouette.\nShe's a very nice girl.\tC'est une fille très gentille.\nShe's always grumbling.\tElle râle tout le temps.\nShe's always grumbling.\tElle n'arrête pas de râler.\nShe's always on the go.\tElle est toujours en mouvement.\nShe's at the hotel now.\tElle est maintenant à l'hôtel.\nShe's at the hotel now.\tElle se trouve maintenant à l'hôtel.\nShe's being nice to me.\tElle est sympa avec moi.\nShe's lost her car key.\tElle a perdu sa clé de voiture.\nShe's lost her car key.\tElle a perdu la clé de sa voiture.\nShe's one tough cookie.\tC'est une dure-à-cuire.\nShe's playing Monopoly.\tElle joue à Monopoly.\nShe's rolling in money.\tElle est toute cousue d'or.\nShe's smarter than him.\tElle est plus maligne que lui.\nShe's younger than him.\tElle est plus jeune que lui.\nShould I go to college?\tDois-je aller au lycée ?\nShould we wait for Tom?\tDevrions-nous attendre Tom ?\nShow me how to do that.\tMontre-moi comment le faire !\nShow me how to do that.\tMontrez-moi comment le faire !\nShow me how to do that.\tMontre-moi comment faire ça !\nShow me how to do that.\tMontrez-moi comment faire ça !\nShow me how to do this.\tMontre-moi comment faire !\nShow me how to do this.\tMontrez-moi comment faire !\nShow me how to do this.\tMontre-moi comment le faire !\nShow me how to do this.\tMontrez-moi comment le faire !\nShow me how to do this.\tMontre-moi comment faire ça !\nShow me how to do this.\tMontrez-moi comment faire ça !\nSimplicity is a virtue.\tLa simplicité est une vertu.\nSing us a song, please.\tChante-nous une chanson, s'il te plaît.\nSmoking is a bad habit.\tFumer est une mauvaise habitude.\nSo how did the date go?\tAlors, comment s'est passé le rendez-vous ?\nSo what do you suggest?\tAlors que suggérez-vous ?\nSo what do you suggest?\tAlors que suggères-tu ?\nSo what's the plan now?\tAlors, quel est le programme maintenant ?\nSo what's the plan now?\tEt quel est le plan maintenant ?\nSo what's your problem?\tDonc quel est ton problème ?\nSo what's your problem?\tAlors quel est ton problème ?\nSo, how did he like it?\tAlors, ça lui a plu ?\nSomebody swiped my bag.\tQuelqu'un m'a volé mon sac.\nSomeone is at the door.\tIl y a quelqu'un à la porte.\nSomeone is calling you.\tQuelqu'un t’appelle.\nSomeone is watching us.\tQuelqu'un nous observe.\nSomeone might get hurt.\tQuelqu'un pourrait se blesser.\nSomeone please help me.\tQue quelqu'un veuille bien m'aider !\nSomeone stole my stuff.\tQuelqu'un m'a volé mes affaires.\nSomething has happened.\tIl est arrivé quelque chose.\nSomething is different.\tQuelque chose est différent.\nSomething is not right.\tQuelque chose cloche.\nSomething is not right.\tQuelque chose ne va pas.\nSomething must be done!\tIl faut faire quelque chose !\nSomething wasn't right.\tQuelque chose n'allait pas.\nSomething wasn't right.\tQuelque chose ne collait pas.\nSomething wasn't right.\tQuelque chose clochait.\nSomething's wrong here.\tQuelque chose ne va pas ici.\nSorry to interrupt you.\tDésolé de t'interrompre.\nSport knows no borders.\tLe sport n'a pas de frontière.\nStay out of my kitchen.\tReste en dehors de ma cuisine !\nStay out of my kitchen.\tRestez en dehors de ma cuisine !\nStaying home isn't fun.\tRester chez soi n'a rien d'amusant.\nStaying home isn't fun.\tRester chez soi n'est pas marrant.\nStop biting your nails.\tArrête de ronger tes ongles.\nStop deluding yourself.\tArrête de te mentir à toi-même !\nStop deluding yourself.\tArrêtez de vous mentir à vous-même !\nStop deluding yourself.\tArrêtez de vous mentir à vous-mêmes !\nStop playing with that.\tArrête de jouer avec ça.\nStop spending my money.\tArrête de dépenser mon argent.\nStop talking about Tom.\tArrête de parler de Tom.\nStop talking about Tom.\tArrêtez de parler de Tom.\nStop what you're doing.\tArrête ce que tu fais !\nStop what you're doing.\tArrêtez ce que vous faites !\nStop worrying about it.\tArrête de t'en soucier !\nStop worrying about it.\tArrêtez de vous en soucier !\nStop worrying about it.\tCesse de t'en soucier !\nStop worrying about it.\tCessez de vous en soucier !\nTake aim at the target.\tVise la cible.\nTake anything you want.\tPrenez ce que vous voulez.\nTake anything you want.\tPrends ce que tu veux.\nTake anything you want.\tPrends ce qui te chante.\nTake anything you want.\tPrenez ce qui vous chante.\nTake me to your leader.\tConduisez-moi à votre chef.\nTake me to your leader.\tConduis-moi à ton chef.\nTake the bags upstairs.\tEmmenez les bagages à l'étage.\nTake the bags upstairs.\tEmmenez les bagages dans les étages.\nTake the money and run.\tPrends le fric et tire-toi !\nTake the money and run.\tPrenez le fric et tirez-vous !\nTake the money and run.\tPrends l'oseille et tire-toi !\nTake whatever you want.\tPrends ce qui te chante !\nTake whatever you want.\tPrenez ce qui vous chante !\nTalk to me if you want.\tParle-moi si tu veux.\nTeach me how you do it.\tApprends-moi comment on fait.\nTell Tom I'm on my way.\tDis à Tom que j'arrive.\nTell Tom what you mean.\tDis à Tom ce que tu veux dire.\nTell Tom what you mean.\tDites à Tom ce que vous voulez dire.\nTell me how you did it.\tDis-moi comment tu l'as fait !\nTell me how you did it.\tDites-moi comment vous l'avez fait !\nTell me what you think.\tDites-moi ce que vous pensez.\nTell me where you went.\tDis-moi où tu es allé.\nTell me where you went.\tDis-moi où tu es allée.\nTell me where you went.\tDis-moi où vous êtes allés.\nTell me where you went.\tDis-moi où vous êtes allées.\nTell me where you went.\tDites-moi où vous êtes allés.\nTell me where you went.\tDites-moi où vous êtes allées.\nTell me where you went.\tDites-moi où vous êtes allé.\nTell me where you went.\tDites-moi où vous êtes allée.\nTell me which you want.\tDis-moi lequel tu veux.\nTell me which you want.\tDites-moi lequel vous voulez.\nTell me you're kidding.\tDis-moi que tu plaisantes !\nTell me you're kidding.\tDites-moi que vous plaisantez !\nTell me you're kidding.\tDis-moi que vous plaisantez !\nTell us all the gossip.\tRaconte-nous tous les commérages !\nTell us all the gossip.\tRacontez-nous tous les commérages !\nTen years have gone by.\tDix ans se sont écoulés.\nTennis is loads of fun.\tLe tennis est extrêmement divertissant.\nThank you ever so much.\tGrand merci.\nThank you ever so much.\tUn grand merci.\nThank you for the link.\tMerci pour le lien.\nThank you for watching.\tMerci d'avoir regardé.\nThanks for helping out.\tC'est gentil de me filer un coup de main.\nThanks for stopping by.\tMerci d'être passé.\nThanks for stopping by.\tMerci d'être passée.\nThanks for stopping by.\tMerci d'être passées.\nThanks for stopping by.\tMerci d'être passés.\nThanks for the updates.\tMerci pour les mises à jour.\nThat better not be Tom.\tCela vaudrait mieux que ce ne soit pas Tom.\nThat bicycle isn't his.\tCe vélo n'est pas le sien.\nThat boy is really shy.\tCe garçon est vraiment timide.\nThat bridge isn't long.\tCe pont n'est pas long.\nThat cost me a fortune.\tÇa m'a coûté une fortune.\nThat could be anything.\tÇa pouvait être n'importe quoi.\nThat could be anything.\tÇa pourrait être n'importe quoi.\nThat girl looks boyish.\tCette fille ressemble à un garçon.\nThat girl looks boyish.\tCette fille, on dirait un garçon manqué.\nThat girl looks boyish.\tCette fille a l'air d'un garçon.\nThat happens sometimes.\tÇa arrive parfois.\nThat hardly seems fair.\tÇa semble difficilement juste.\nThat house is for rent.\tCette maison est à louer.\nThat house is for sale.\tCette maison est en vente.\nThat is a leather belt.\tC'est une ceinture en cuir.\nThat is almost correct.\tC'est presque correct.\nThat is an actual fact.\tC'est un fait réel.\nThat is another matter.\tC'est un autre problème.\nThat is another matter.\tC'est une autre affaire.\nThat is not your knife.\tCe n'est pas ton couteau.\nThat is very expensive!\tC'est très cher !\nThat is very expensive!\tC'est fort cher !\nThat is very expensive!\tC'est très onéreux !\nThat isn't much, is it?\tCe n'est pas beaucoup, si ?\nThat looks good on you.\tÇa te va bien !\nThat looks kind of fun.\tÇa a l'air assez amusant.\nThat massage felt good.\tCe massage était agréable.\nThat might be possible.\tIl se pourrait que ce soit possible.\nThat movie is exciting.\tCe film est passionnant.\nThat movie was amusing.\tCe film était amusant.\nThat no longer matters.\tÇa n'a plus d'importance.\nThat person is like me.\tCette personne est comme moi.\nThat plane is enormous!\tCet avion est énorme !\nThat really bothers me.\tÇa me dérange vraiment.\nThat really made sense.\tCela fait vraiment sens.\nThat sound is annoying.\tCe bruit est agaçant.\nThat sound is annoying.\tCe bruit est énervant.\nThat sounds depressing.\tÀ l'entendre, c'est déprimant.\nThat sounds outrageous.\tÇa a l'air insensé.\nThat sounds outrageous.\tÇa a l'air grotesque.\nThat sounds really bad.\tCela semble très mauvais.\nThat sounds reasonable.\tÇa semble raisonnable.\nThat sounds reasonable.\tCela semble raisonnable.\nThat took real courage.\tCela a demandé un véritable courage.\nThat umbrella is Tom's.\tCe parapluie est à Tom.\nThat umbrella is Tom's.\tCe parapluie est celui de Tom.\nThat was a great movie.\tC'était un super film.\nThat was a great party.\tC'était une superbe fête.\nThat was a great party.\tCe fut une superbe fête.\nThat was a nice speech.\tC'était un chouette discours.\nThat was really unfair.\tC'était très injuste.\nThat would be very sad.\tCe serait très triste.\nThat would seem likely.\tÇa semblerait probable.\nThat wouldn't be smart.\tCela n'aurait pas été très futé.\nThat'll be all for now.\tCe sera tout pour l'instant.\nThat'll be all for now.\tCe sera tout pour le moment.\nThat's a good approach.\tC'est une bonne approche.\nThat's a little unfair.\tC'est un peu injuste.\nThat's a trivial error.\tC'est une erreur banale.\nThat's a very bad idea.\tC'est une très mauvaise idée.\nThat's a wise decision.\tC'est une sage décision.\nThat's against the law.\tC'est contraire à la loi.\nThat's all I have left.\tC'est tout ce qui me reste.\nThat's all changed now.\tTout est changé, désormais.\nThat's also a bad idea.\tC'est aussi une mauvaise idée.\nThat's cheap, isn't it?\tC'est bon marché, n'est-ce pas ?\nThat's cheap, isn't it?\tCe n'est pas cher, pas vrai ?\nThat's good news to me.\tC'est une bonne nouvelle pour moi.\nThat's how he likes it.\tC'est ainsi qu'il l'apprécie.\nThat's how he likes it.\tC'est comme ça qu'il l'aime.\nThat's just my opinion.\tCe n'est que mon opinion.\nThat's just not enough.\tC'est simplement insuffisant.\nThat's my CD, isn't it?\tC'est mon CD, n'est-ce pas ?\nThat's my final answer.\tC'est mon dernier mot.\nThat's no exaggeration.\tCe n'est pas exagéré.\nThat's not a bad guess.\tCe n'est pas une mauvaise hypothèse.\nThat's not a bad start.\tCe n'est pas un mauvais départ.\nThat's not a bad thing.\tCe n'est pas une mauvaise chose.\nThat's not in the file.\tCe n'est pas dans le dossier.\nThat's not interesting.\tCe n'est pas intéressant.\nThat's not my decision.\tCe n'est pas ma décision.\nThat's not quite right.\tCe n'est pas tout à fait exact.\nThat's not really true.\tCe n'est pas vraiment vrai.\nThat's not the problem.\tCe n'est pas le problème.\nThat's not what I hear.\tJe n'entends pas cela.\nThat's not what I said.\tCe n’est pas ce que j’ai dit.\nThat's not what I want.\tCe n'est pas ce que je veux.\nThat's quite a problem.\tC'est vraiment un problème.\nThat's really pathetic.\tC'est vraiment pathétique.\nThat's right, isn't it?\tC'est vrai, n'est-ce pas ?\nThat's simply not true.\tCe n'est simplement pas vrai.\nThat's the whole story.\tVoilà toute l'histoire.\nThat's totally awesome.\tC'est complètement super.\nThat's totally awesome.\tC'est complètement effarant.\nThat's very impressive.\tC'est très impressionnant.\nThat's very reassuring.\tC'est très rassurant.\nThat's very thoughtful.\tC'est très attentionné.\nThat's weird, isn't it?\tC'est bizarre, non ?\nThat's what I told her.\tC'est ce que je lui ai dit.\nThat's what I told him.\tC'est ce que je lui ai dit.\nThat's what I told him.\tCe fut ce que je lui dis.\nThat's what people say.\tC'est ce que disent les gens.\nThat's why I came late.\tC'est pourquoi je suis venu en retard.\nThat's why I trust you.\tC'est pourquoi je me fie à toi.\nThat's why I trust you.\tC'est pourquoi je me fie à vous.\nThat's why we want you.\tC'est pourquoi nous te voulons.\nThat's why we want you.\tC'est pourquoi nous vous voulons.\nThat's why we want you.\tC'est pourquoi c'est vous que nous voulons.\nThat's why we want you.\tC'est pourquoi c'est toi que nous voulons.\nThat's your department.\tC’est ta spécialité.\nThat’s what we heard.\tC'est ce que nous avons entendu.\nThe apprentice is lazy.\tL'apprenti est paresseux.\nThe baby is growing up.\tLe bébé grandit.\nThe barbells are heavy.\tLes haltères sont lourds.\nThe boss is very upset.\tLe patron est très fâché.\nThe boss is very upset.\tLe patron est très contrarié.\nThe boy almost drowned.\tLe garçon s'est presque noyé.\nThe boy almost drowned.\tLe garçon se noya presque.\nThe boy is very honest.\tLe garçon est très honnête.\nThe boy is very honest.\tC'est un garçon très honnête.\nThe boy sat on a chair.\tLe garçon était assis sur une chaise.\nThe bus will come soon.\tLe bus va bientôt arriver.\nThe car wouldn't start.\tLa voiture ne veut pas démarrer.\nThe cat caught a mouse.\tLe chat a attrapé la souris.\nThe cat is in the well.\tLe chat est dans le puits.\nThe cat is on the roof.\tLe chat est sur le toit.\nThe cat ruined my sofa.\tLe chat a détruit mon canapé.\nThe cat ruined my sofa.\tLa chatte a détruit mon canapé.\nThe cat ruined my sofa.\tLe chat détruisit mon canapé.\nThe cat ruined my sofa.\tLa chatte détruisit mon canapé.\nThe cat sat on the mat.\tLe chat s'assit sur le tapis.\nThe cat sat on the mat.\tLe chat s'est assis sur le tapis.\nThe cat sat on the mat.\tLa chatte s'assit sur le tapis.\nThe cat sat on the mat.\tLa chatte s'est assise sur le tapis.\nThe clock is defective.\tL'horloge est défectueuse.\nThe clouds hid the sun.\tLes nuages cachèrent le soleil.\nThe day is almost over.\tLa journée est presque passée.\nThe day is almost over.\tLa journée est presque écoulée.\nThe day is almost over.\tLa journée est presque finie.\nThe day is almost over.\tLa journée est presque terminée.\nThe day is almost over.\tLa journée est presque envolée.\nThe day is almost over.\tLa journée tire à sa fin.\nThe day isn't over yet.\tLa journée n'est pas finie.\nThe day was exhausting.\tLa journée fut épuisante.\nThe day was exhausting.\tLa journée a été épuisante.\nThe dog must be hungry.\tLe chien doit avoir faim.\nThe dog ran towards me.\tLe chien courait vers moi.\nThe door may be locked.\tIl se peut que la porte soit verrouillée.\nThe door opened slowly.\tLa porte s'ouvrit lentement.\nThe door was wide open.\tLa porte était grande ouverte.\nThe door will not open.\tCette porte ne veut pas s'ouvrir.\nThe eggs are still hot.\tLes œufs sont encore chauds.\nThe first time is free.\tLa première fois est gratuite.\nThe food was wonderful.\tLa nourriture était délicieuse.\nThe game's almost over.\tLa partie est presque terminée.\nThe game's almost over.\tLa manche est presque terminée.\nThe girl has no mother.\tCette fille n'a pas de mère.\nThe girl has no mother.\tLa fille n'a pas de mère.\nThe hours are terrible.\tLa durée du travail est horriblement longue.\nThe house is beautiful.\tLa maison est belle.\nThe house was deserted.\tLa maison était déserte.\nThe houses are burning.\tLes maisons sont en train de brûler.\nThe hunter shot a bear.\tLe chasseur abattit un ours.\nThe hunter shot a bear.\tLe chasseur a abattu un ours.\nThe job is almost done.\tLe travail est presque terminé.\nThe job is almost done.\tLe boulot est presque terminé.\nThe job is almost done.\tLe travail est presque fait.\nThe job is almost done.\tLe boulot est presque fait.\nThe knife is not sharp.\tLe couteau n'est pas aiguisé.\nThe light doesn't work.\tLa lumière ne fonctionne pas.\nThe light turned green.\tLe feu passa au vert.\nThe light turned green.\tLe feu est passé au vert.\nThe lights are all off.\tLes lumières sont toutes éteintes.\nThe line is busy again.\tLa ligne est de nouveau occupée.\nThe man died of cancer.\tL'homme est mort d'un cancer.\nThe man robbed her bag.\tL'homme lui déroba son sac.\nThe man robbed her bag.\tL'homme lui a volé son sac.\nThe matter was settled.\tL'affaire a été réglée.\nThe meeting isn't over.\tLa réunion n'est pas terminée.\nThe meeting was closed.\tLa réunion fut clôturée.\nThe microphone is dead.\tLe microphone est mort.\nThe mission was simple.\tLa mission était simple.\nThe nation was growing.\tLa nation grandissait.\nThe news can't be true.\tLes nouvelles ne peuvent pas être vraies.\nThe news made me happy.\tLes nouvelles m'ont rendu heureux.\nThe old book was moldy.\tLe vieil ouvrage était moisi.\nThe pain was agonizing.\tLa douleur était insoutenable.\nThe pain was agonizing.\tLa douleur fut insoutenable.\nThe painter died young.\tLe peintre mourut jeune.\nThe piano is expensive.\tLe piano est cher.\nThe pizza's on the way.\tLa pizza est en route.\nThe plan was a success.\tLe plan était un succès.\nThe plants are growing.\tLes plantes grandissent.\nThe police accused him.\tLa police le mit en cause.\nThe price includes tax.\tLe prix comprend la TVA.\nThe problem isn't that.\tCe n'est pas le problème.\nThe prophecy came true.\tLa prophétie s'est avérée.\nThe prophecy came true.\tLa prophétie s'avéra.\nThe radio doesn't work.\tLa radio ne fonctionne pas.\nThe rain began to fall.\tLa pluie commença à tomber.\nThe rain lasted a week.\tLa pluie dura une semaine.\nThe real heroes are us.\tC'est nous qui sommes les véritables héros.\nThe real heroes are us.\tLes vrais héros, c'est nous !\nThe reverse seems true.\tL'inverse semble vrai.\nThe river is deep here.\tLa rivière est profonde, ici.\nThe rumor was baseless.\tLa rumeur ne reposait pas sur des faits.\nThe shoes are worn out.\tLes chaussures sont usées.\nThe situation is grave.\tLa situation est grave.\nThe situation worsened.\tLa situation a empiré.\nThe situation worsened.\tLa situation empira.\nThe snow was knee deep.\tLa neige montait jusqu'au genou.\nThe sooner, the better.\tLe plus tôt sera le mieux.\nThe statue has no head.\tLa statue est sans tête.\nThe statue has no head.\tLa statue n'a pas de tête.\nThe statue has no head.\tLa statue est dépourvue de tête.\nThe steak is well done.\tLe steak est bien cuit.\nThe story ends happily.\tL'histoire se finit bien.\nThe streets were empty.\tLes rues étaient vides.\nThe students snickered.\tLes élèves pouffèrent.\nThe tea is boiling hot.\tLe thé est brûlant.\nThe tea is boiling hot.\tLe thé est bouillant.\nThe teacher is Chinese.\tLe professeur est chinois.\nThe toilet is upstairs.\tLes toilettes sont au-dessus.\nThe toilet is upstairs.\tLa toilette est au-dessus.\nThe train came on time.\tLe train arriva à l'heure.\nThe train left on time.\tLe train partit à l'heure.\nThe weather stayed bad.\tLe temps est demeuré mauvais.\nThe weather stayed bad.\tLe temps demeura mauvais.\nThe weather turned bad.\tLe temps devint mauvais.\nThe wind has died down.\tLe vent s'est calmé.\nThe wind is cold today.\tLe vent est froid aujourd'hui.\nThe wine was excellent.\tLe vin était excellent.\nThe world is dangerous.\tLe monde est dangereux.\nThe world is dangerous.\tLe monde est périlleux.\nTheir loss is our gain.\tLeur perte est notre gain.\nThere are no customers.\tIl n'y a pas de clients.\nThere are similarities.\tIl y a des similitudes.\nThere is no dress code.\tIl n'y a pas de code vestimentaire.\nThere is no going back.\tUn retour en arrière est exclu.\nThere is no going back.\tIl n'y a pas de retour possible.\nThere is no sugar here.\tIl n'y a pas de sucre ici.\nThere is no wind today.\tIl n'y a pas de vent aujourd'hui.\nThere is no wind today.\tIl ne souffle aucun vent aujourd'hui.\nThere is not much hope.\tIl y a peu d'espoir.\nThere was no one about.\tIl n'y avait personne alentour.\nThere was nobody there.\tIl n'y avait là personne.\nThere was nobody there.\tPersonne ne se trouvait là.\nThere was nobody there.\tLà, il n'y avait personne.\nThere were no problems.\tIl n'y eut pas de problèmes.\nThere were no problems.\tIl n'y a pas eu de problèmes.\nThere're no guarantees.\tIl n'y a pas de garantie.\nThere's a storm coming.\tUn orage arrive.\nThere's a way to do it.\tIl y a une manière de le faire.\nThere's another reason.\tIl y a une autre raison.\nThere's no class today.\tIl n'y a pas cours aujourd'hui.\nThere's no way to know.\tIl n'y a aucun moyen de savoir.\nThere's no way to tell.\tIl n'y a aucun moyen de le dire.\nThese all belong to me.\tCelles-ci sont toutes à moi.\nThese all belong to me.\tCeux-ci sont tous à moi.\nThese are marshmallows.\tCe sont des guimauves.\nThese are my suitcases.\tCe sont mes valises.\nThese clothes suit you.\tCes habits te vont bien.\nThese pearls look real.\tCes perles ont l'air véritables.\nThey admire each other.\tIls s'admirent l'un l'autre.\nThey agreed on a price.\tIls s'accordèrent sur un prix.\nThey agreed on a price.\tElles s'accordèrent sur un prix.\nThey all look the same.\tIls paraissent tous semblables.\nThey all look the same.\tElles paraissent toutes semblables.\nThey are great friends.\tIls sont de grands amis.\nThey are great friends.\tElles sont de grandes amies.\nThey are jealous of us.\tIls sont jaloux de nous.\nThey are jealous of us.\tElles sont jalouses de nous.\nThey are my classmates.\tCe sont mes camarades de classe.\nThey are playing chess.\tIls jouent aux échecs.\nThey are very cheerful.\tIls sont très joyeux.\nThey are very cheerful.\tElles sont très joyeuses.\nThey are very cheerful.\tIls sont fort joyeux.\nThey are very cheerful.\tElles sont fort joyeuses.\nThey basked in the sun.\tElles se dorèrent au soleil.\nThey basked in the sun.\tElles se sont dorées au soleil.\nThey basked in the sun.\tElles ont pris un bain de soleil.\nThey basked in the sun.\tIls ont pris un bain de soleil.\nThey basked in the sun.\tIls se sont dorés au soleil.\nThey can't all be full.\tIls ne peuvent pas être tous pleins.\nThey can't all be full.\tElles ne peuvent pas être toutes pleines.\nThey chose me for that.\tOn m'a choisi pour ça.\nThey could only listen.\tIls ne pouvaient qu'écouter.\nThey cut down the tree.\tIls coupèrent l'arbre.\nThey don't despise you.\tIls ne te méprisent pas.\nThey don't despise you.\tElles ne te méprisent pas.\nThey don't despise you.\tIls ne vous méprisent pas.\nThey don't despise you.\tElles ne vous méprisent pas.\nThey don't really care.\tIls ne s'en soucient pas vraiment.\nThey don't really care.\tElles ne s'en soucient pas vraiment.\nThey don't really care.\tIls n'en ont pas grand-chose à faire.\nThey don't really care.\tElles n'en ont pas grand-chose à faire.\nThey don't talk at all.\tIls ne parlent pas du tout.\nThey don't talk at all.\tElles ne parlent pas du tout.\nThey failed both times.\tIls échouèrent les deux fois.\nThey followed you here.\tIls vous y ont suivi.\nThey followed you here.\tElles vous y ont suivi.\nThey followed you here.\tIls t'y ont suivie.\nThey followed you here.\tElles t'y ont suivie.\nThey followed you here.\tElles t'y ont suivi.\nThey followed you here.\tIls t'y ont suivi.\nThey followed you here.\tElles vous y ont suivie.\nThey followed you here.\tIls vous y ont suivie.\nThey got into the boat.\tElles ont embarqué sur le bateau.\nThey had no money left.\tIl ne leur restait plus d'argent.\nThey had no money left.\tIls n'avaient plus d'argent.\nThey had no money left.\tElles n'avaient plus d'argent.\nThey have an extra bed.\tIls disposent d'un lit supplémentaire.\nThey have an extra bed.\tElles disposent d'un lit supplémentaire.\nThey have enough money.\tIls disposent de suffisamment d'argent.\nThey have enough money.\tIls disposent d'assez d'argent.\nThey have enough money.\tElles disposent de suffisamment d'argent.\nThey have enough money.\tElles disposent d'assez d'argent.\nThey have just arrived.\tIls viennent juste d'arriver.\nThey have many friends.\tIls ont beaucoup d'amis.\nThey have many friends.\tIls ont beaucoup d'amies.\nThey have many friends.\tElles ont beaucoup d'amis.\nThey have many friends.\tElles ont beaucoup d'amies.\nThey have no more wine.\tIls n'ont plus de vin.\nThey have nothing left.\tIl ne leur reste plus rien.\nThey hid in the cellar.\tIls se cachèrent dans la cave.\nThey hid in the cellar.\tElles se cachèrent dans la cave.\nThey hid in the cellar.\tIls se sont cachés dans la cave.\nThey hid in the cellar.\tElles se sont cachées dans la cave.\nThey kissed each other.\tIls se sont embrassés.\nThey launched a rocket.\tIls ont lancé une fusée.\nThey left him for dead.\tIls le laissèrent pour mort.\nThey let her marry him.\tIls l'ont laissée l’épouser.\nThey live in a commune.\tIls vivent en communauté.\nThey live in a mansion.\tIls vivent dans un manoir.\nThey live in a mansion.\tElles vivent dans un manoir.\nThey live in this town.\tIls vivent dans cette ville.\nThey looked everywhere.\tIls ont cherché partout.\nThey looked very happy.\tIls avaient l'air très heureux.\nThey looked very happy.\tElles avaient l'air très heureuses.\nThey looked very happy.\tElles ont eu l'air très heureuses.\nThey looked very happy.\tIls ont eu l'air très heureux.\nThey make a great team.\tIls constituent une grande équipe.\nThey make a great team.\tIls forment une grande équipe.\nThey make a great team.\tElles constituent une grande équipe.\nThey make a great team.\tElles forment une grande équipe.\nThey must be Americans.\tIls doivent être américains.\nThey rejected our idea.\tIls ont rejeté notre idée.\nThey rejected our idea.\tElles ont rejeté notre idée.\nThey say love is blind.\tOn dit que l'amour est aveugle.\nThey say love is blind.\tComme on dit, l'amour est aveugle.\nThey seem to trust you.\tIls ont l''air de te faire confiance.\nThey talk all the time.\tElles parlent tout le temps.\nThey wanted protection.\tIls voulaient de la protection.\nThey went to the beach.\tIls sont allés à la plage.\nThey went to the beach.\tElles sont allées à la plage.\nThey were all teachers.\tIls étaient tous enseignants.\nThey were all teachers.\tElles étaient toutes enseignantes.\nThey were mostly women.\tC'était principalement des femmes.\nThey were so different.\tIls étaient si différents.\nThey were very excited.\tElles étaient fort excitées.\nThey were very excited.\tIls étaient très excités.\nThey were very excited.\tIls étaient fort excités.\nThey will be very glad.\tIls seront très heureux.\nThey will be very glad.\tElles seront très heureuses.\nThey're about to leave.\tIls sont sur le point de partir.\nThey're about to leave.\tElles sont sur le point de partir.\nThey're all against me.\tElles sont toutes contre moi.\nThey're all against me.\tIls sont tous contre moi.\nThey're doing it right.\tIls le font correctement.\nThey're doing it right.\tElles le font correctement.\nThey're doing it right.\tIls le font comme il faut.\nThey're doing it right.\tElles le font comme il faut.\nThey're in the hot tub.\tIls sont dans le baquet d'eau chaude.\nThey're in the hot tub.\tElles sont dans le baquet d'eau chaude.\nThey're not my friends.\tCe ne sont pas mes amis.\nThey're out to get you.\tIls sont à vos trousses.\nThey're out to get you.\tIls sont à tes trousses.\nThey're out to get you.\tElles sont à vos trousses.\nThey're out to get you.\tElles sont à tes trousses.\nThey're still not safe.\tIls ne sont toujours pas en sécurité.\nThey're still not safe.\tElles ne sont toujours pas en sécurité.\nThey're still together.\tIls sont toujours ensemble.\nThey're still together.\tElles sont toujours ensemble.\nThey're waiting for us.\tIls nous attendent.\nThey've all gone crazy.\tIls sont tous devenus fous.\nThey've all gone crazy.\tElles sont toutes devenues folles.\nThey've all moved away.\tIls ont tous déménagé ailleurs.\nThey've all moved away.\tElles ont toutes déménagé ailleurs.\nThey've done it before.\tIls l'ont fait auparavant.\nThey've done it before.\tElles l'ont fait auparavant.\nThings got out of hand.\tLes choses échappèrent à tout contrôle.\nThings got out of hand.\tLes choses ont échappé à tout contrôle.\nThink before you speak.\tRéfléchis avant de parler.\nThis CD belongs to her.\tCe CD lui appartient.\nThis apple tastes sour.\tCette pomme a un goût amer.\nThis boat is seaworthy.\tLe navire est en état de naviguer.\nThis car needs washing.\tCette voiture a besoin d'être lavée.\nThis carpet feels nice.\tCe tapis est agréable au toucher.\nThis clock is accurate.\tCette horloge est à l'heure.\nThis clock is electric.\tCette montre est électrique.\nThis coat fits me well.\tCe manteau me va bien.\nThis coat is rainproof.\tCe manteau est imperméable.\nThis data is incorrect.\tCes données sont fausses.\nThis decision is final.\tCette décision est irrévocable.\nThis decision is final.\tCette décision est définitive.\nThis doesn't look good.\tÇa n'a pas l'air bon.\nThis doll has big eyes.\tCette poupée a de grands yeux.\nThis engine works well.\tCe moteur fonctionne bien.\nThis exam is very easy.\tCet examen est très facile.\nThis file is encrypted.\tCe fichier est crypté.\nThis file is encrypted.\tCe fichier est chiffré.\nThis food is too salty.\tCette nourriture est trop salée.\nThis food is unhealthy.\tCette nourriture est insalubre.\nThis guy is really hot.\tCe type est vraiment sexy.\nThis house is for rent.\tCette maison est à louer.\nThis is Tom's computer.\tC'est l'ordinateur de Tom.\nThis is a good bargain.\tC'est une bonne affaire.\nThis is a great theory.\tC'est une magnifique théorie.\nThis is a great theory.\tC'est une superbe théorie.\nThis is a major crisis.\tC'est une crise majeure.\nThis is a public beach.\tC'est une plage publique.\nThis is a wooden table.\tCelle-ci est une table de bois.\nThis is all so strange.\tTout est si étrange.\nThis is all your fault.\tTout ça est de ta faute.\nThis is all your fault.\tTout ça est de votre faute.\nThis is an abomination.\tC'est une abomination.\nThis is an ancient law.\tC'est une ancienne loi.\nThis is excellent wine.\tC'est un excellent vin.\nThis is extremely hard.\tC'est extrêmement dur.\nThis is highly illegal.\tC'est hautement illégal.\nThis is highly unusual.\tC'est très inhabituel.\nThis is kind of boring.\tC'est plutôt ennuyeux.\nThis is my final offer.\tC'est ma dernière offre.\nThis is my final offer.\tC'est ma proposition ultime.\nThis is my final offer.\tC'est mon ultime proposition.\nThis is my old bicycle.\tCeci est mon vieux vélo.\nThis is my old bicycle.\tCeci est mon ancien vélo.\nThis is no one's fault.\tCe n'est la faute de personne.\nThis is non-negotiable.\tC'est non-négociable.\nThis is not Disneyland.\tCe n'est pas la foire du Trône.\nThis is not a hospital.\tCe n'est pas un hôpital.\nThis is not a sentence.\tCe n'est pas une phrase.\nThis is not acceptable.\tCe n'est pas acceptable.\nThis is not negotiable.\tCe n'est pas négociable.\nThis is out of control.\tC'est hors de contrôle.\nThis is pretty extreme.\tC'est plutôt extrême.\nThis is quite shocking.\tC'est assez choquant.\nThis is simply amazing.\tC'est tout simplement stupéfiant.\nThis is so frustrating.\tC'est tellement contrariant.\nThis is taking forever.\tÇa prend des heures.\nThis is taking forever.\tÇa prend une éternité.\nThis is taking forever.\tÇa prend des plombes.\nThis is the last straw.\tC'est la goutte d'eau qui fait déborder le vase.\nThis is the last train.\tC'est le dernier train.\nThis is the real world.\tC'est le monde réel.\nThis is the real world.\tC'est ici le monde réel.\nThis is totally insane.\tC'est complètement dingue.\nThis is unsatisfactory.\tCe n'est pas satisfaisant.\nThis is very dangerous.\tC'est très dangereux.\nThis is very ingenious.\tC'est très ingénieux.\nThis is what'll happen.\tC'est ce qui arrivera.\nThis is what'll happen.\tC'est ce qui se passera.\nThis is what'll happen.\tC'est ce qui aura lieu.\nThis is what'll happen.\tC'est ce qui surviendra.\nThis is where he lives.\tC'est ici qu'il vit.\nThis is why I hate him.\tC'est pourquoi je le déteste.\nThis is your community.\tC'est ta communauté.\nThis is your community.\tC'est votre communauté.\nThis is your lucky day.\tC'est votre jour de chance.\nThis is your lucky day.\tC'est ton jour de chance.\nThis isn't a bad thing.\tCe n'est pas une mauvaise chose.\nThis job has no future.\tCe métier n'a pas d'avenir.\nThis job is killing me.\tCe boulot me tue.\nThis joke is not funny.\tCette blague n'est pas drôle.\nThis land is your land.\tCe pays est le tien.\nThis looks like a trap.\tÇa ressemble à un piège.\nThis meat has gone bad.\tCette viande s'est avariée.\nThis meat has gone bad.\tCette viande s'est gâtée.\nThis music is terrible.\tCette musique est épouvantable.\nThis must be a mistake.\tÇa doit être une erreur.\nThis newspaper is free.\tCe journal est gratuit.\nThis newspaper is free.\tC'est un journal gratuit.\nThis no longer matters.\tÇa n'a plus d'importance.\nThis noise is annoying.\tCe bruit est gênant.\nThis pen belongs to me.\tCe stylo m'appartient.\nThis plan has no flaws.\tCe plan n'a pas de faille.\nThis plan has no flaws.\tCe plan est infaillible.\nThis reminds me of Tom.\tÇa me rappelle Tom.\nThis reminds me of you.\tÇa me fait penser à toi.\nThis reminds me of you.\tÇa me fait penser à vous.\nThis road is dangerous.\tCette route est dangereuse.\nThis room is very warm.\tCette chambre est très chaude.\nThis room smells musty.\tCette pièce a une odeur de moisi.\nThis rose is beautiful.\tCette rose est jolie.\nThis shoe fits me well.\tCette chaussure me va bien.\nThis smell disgusts me.\tCette odeur m'écœure.\nThis soup is too spicy.\tCette soupe est trop épicée.\nThis spoon is for soup.\tCette cuillère est pour la soupe.\nThis tape isn't sticky.\tCe scotch ne colle pas.\nThis tape isn't sticky.\tCe ruban adhésif ne colle pas.\nThis tape isn't sticky.\tCe ruban adhésif n'adhère pas.\nThis tea is too bitter.\tCe thé est trop amer.\nThis tea is too bitter.\tCe thé est par trop amer.\nThis thin book is mine.\tCe mince livre est le mien.\nThis was a long letter.\tC'était une longue lettre.\nThis water tastes good.\tCette eau a bon goût.\nThis window won't open.\tCette fenêtre refuse de s'ouvrir.\nThis won't hurt at all.\tÇa ne fera aucun mal.\nThose are your options.\tCelles-là sont tes options.\nThose are your options.\tCe sont vos options.\nThose are your options.\tCe sont tes options.\nThose glasses suit you.\tCes lunettes te vont bien.\nThose keys aren't mine.\tCes clés ne sont pas à moi.\nTime is of the essence.\tLe temps est un facteur clé.\nTo me, it is important.\tC'est important pour moi.\nToday is September 1st.\tAujourd'hui, nous sommes le 1er septembre.\nToday is extremely hot.\tAujourd'hui est une journée extrêmement chaude.\nToday is extremely hot.\tAujourd'hui il fait extrêmement chaud.\nToday's Tom's birthday.\tAujourd'hui c'est l'anniversaire de Tom.\nToday's dinner is fish.\tLe plat du jour est du poisson.\nToday's your lucky day.\tAujourd'hui est ton jour de chance.\nTom almost caught Mary.\tTom attrapa presque Mary.\nTom also has a brother.\tTom a aussi un frère.\nTom amazes me at times.\tTom m'épate parfois.\nTom amazes me at times.\tTom me surprend par moment.\nTom and Mary have gone.\tTom et Mary sont partis.\nTom and Mary have gone.\tTom et Mary ont disparu.\nTom and Mary were busy.\tThomas et Marie étaient occupés.\nTom backed up his data.\tTom a sauvegardé ses données.\nTom became an engineer.\tTom est devenu ingénieur.\nTom burst out laughing.\tTom éclata de rire.\nTom burst out laughing.\tTom a éclaté de rire.\nTom can swim, can't he?\tTom peut nager, n'est-ce pas ?\nTom can't help himself.\tTom ne peut pas s'en empêcher.\nTom can't help you now.\tTom ne peut pas vous aider maintenant.\nTom can't help you now.\tTom ne peut pas t'aider maintenant.\nTom collects old coins.\tTom collectionne des vieilles pièces.\nTom could go to prison.\tTom pourrait aller en prison.\nTom couldn't find Mary.\tTom n'a pas pu trouver Marie.\nTom couldn't find work.\tTom n'a pas pu trouver de travail.\nTom crossed the street.\tTom traversa la rue.\nTom did twenty pushups.\tTom a fait vingt pompes.\nTom didn't die in vain.\tTom n'est pas mort en vain.\nTom didn't kill anyone.\tTom n'a tué personne.\nTom didn't tell me why.\tTom ne m'a pas dit pourquoi.\nTom didn't wear a suit.\tTom n'a pas porté de costume.\nTom doesn't believe it.\tTom ne le croit pas.\nTom doesn't have a cat.\tTom n'a pas de chat.\nTom doesn't have a dad.\tTom n'a pas de père.\nTom doesn't have a job.\tTom n'a pas de travail.\nTom doesn't like chess.\tTom n'aime pas les échecs.\nTom doesn't need to go.\tTom n'a pas besoin d'y aller.\nTom doesn't sleep much.\tTom ne dort pas beaucoup.\nTom dyed his hair blue.\tTom s'est teint les cheveux en bleu.\nTom fell off the chair.\tTom est tombé de la chaise.\nTom folded the blanket.\tTom a plié la couverture.\nTom forgot his glasses.\tTom a oublié ses lunettes.\nTom gave me this watch.\tTom m'a donné cette montre.\nTom gave me this watch.\tTom me donna cette montre.\nTom had a blue coat on.\tTom portait un manteau bleu.\nTom had a panic attack.\tTom a eu une crise de panique.\nTom had loving parents.\tTom avait des parents aimants.\nTom had nothing to say.\tTom n'avait rien à dire.\nTom had to make a fire.\tTom a dû faire un feu.\nTom has a lot of money.\tTom a beaucoup d’argent.\nTom has never met Mary.\tTom n'a jamais rencontré Marie.\nTom has three brothers.\tTom a trois frères.\nTom has written a book.\tTom a écrit un livre.\nTom hasn't arrived yet.\tTom n'est pas encore arrivé.\nTom ignored our advice.\tTom a ignoré notre conseil.\nTom ignored our advice.\tTom ignora notre conseil.\nTom ignored our advice.\tTom a ignoré nos conseils.\nTom ignored our advice.\tTom ignora nos conseils.\nTom insisted that I go.\tTom insista pour que j'y aille.\nTom introduced himself.\tTom s'était présenté.\nTom is a Boston native.\tTom est natif de Boston.\nTom is a perfectionist.\tTom est un perfectionniste.\nTom is already waiting.\tTom attend déjà.\nTom is already waiting.\tTom est déjà en train d'attendre.\nTom is always cheerful.\tTom est toujours joyeux.\nTom is always sleeping.\tTom dort toujours.\nTom is an avid cyclist.\tTom est un cycliste passionné.\nTom is an octogenarian.\tTom est octogénaire.\nTom is as tall as Mary.\tTom est aussi grand que Marie.\nTom is close to thirty.\tTom a environ trente ans.\nTom is doing great now.\tTom va bien maintenant.\nTom is doing just fine.\tTom se porte bien.\nTom is fighting cancer.\tTom combat le cancer.\nTom is good at biology.\tTom est bon en biologie.\nTom is good at writing.\tTom est bon en écriture.\nTom is in great danger.\tTom est en grand danger.\nTom is lucky, isn't he?\tTom est chanceux, n'est-ce pas ?\nTom is making progress.\tTom fait des progrès.\nTom is married to Mary.\tTom est marié à Mary.\nTom is my son's friend.\tTom est l'ami de mon fils.\nTom is no ordinary man.\tTom n'est pas un homme ordinaire.\nTom is obese, isn't he?\tTom est obèse, n'est-ce pas ?\nTom is obviously tired.\tTom est bien sûr fatigué.\nTom is older than I am.\tTom est plus vieux que moi.\nTom is older than Mary.\tTom est plus vieux que Mary.\nTom is older than Mary.\tTom est plus âgé que Mary.\nTom is on life support.\tTom est médicalement assisté.\nTom is our best player.\tTom est notre meilleur joueur.\nTom is our team leader.\tTom est notre chef d'équipe.\nTom is perfect for you.\tTom est parfait pour vous.\nTom is perfect for you.\tTom est parfait pour toi.\nTom is pretty decisive.\tTom est plutôt catégorique.\nTom is quite different.\tTom est assez différent.\nTom is someone I trust.\tTom est quelqu'un à qui je fais confiance.\nTom is still dangerous.\tTom est toujours dangereux.\nTom is very kind to us.\tTom est très gentil avec nous.\nTom is waiting for you.\tTom t'attend.\nTom is waiting for you.\tTom vous attend.\nTom is walking his dog.\tTom promène son chien.\nTom is wiser than I am.\tTom est plus sage que moi.\nTom is yelling at Mary.\tTom hurle sur Marie.\nTom isn't a lazy child.\tTom n'est pas un enfant paresseux.\nTom isn't a lazy child.\tTom n'est pas un enfant fainéant.\nTom isn't bothering me.\tTom ne me dérange pas.\nTom isn't conservative.\tTom n'est pas conservateur.\nTom isn't good-looking.\tTom n'est pas beau.\nTom isn't happy at all.\tTom n'est pas du tout content.\nTom isn't your brother.\tTom n'est pas ton frère.\nTom isn't your brother.\tTom n'est pas votre frère.\nTom just turned thirty.\tTom vient juste d'avoir trente ans.\nTom knows what you did.\tTom sait ce que tu as fait.\nTom knows what you did.\tTom sait ce que vous avez fait.\nTom knows what's wrong.\tTom sait ce qui ne va pas.\nTom led the discussion.\tTom mena la discussion.\nTom looked embarrassed.\tTom avait l'air embarrassé.\nTom looks very anxious.\tTom semble très anxieux.\nTom looks very anxious.\tTom a l'air inquiet.\nTom looks very worried.\tTom a l'air très inquiet.\nTom loved his children.\tTom aimait ses enfants.\nTom made many mistakes.\tTom a fait beaucoup de fautes.\nTom makes me feel safe.\tTom me fait sentir en sécurité.\nTom makes me feel safe.\tTom me fait sentir en sûreté.\nTom means what he says.\tTom pense ce qu'il dit.\nTom met John in prison.\tTom a rencontré John en prison.\nTom met John in prison.\tTom rencontra John en prison.\nTom might be a traitor.\tTom pourrait être un traître.\nTom needs his medicine.\tTom a besoin de son médicament.\nTom never did it again.\tTom ne l'a jamais refait.\nTom never trusted Mary.\tTom n'a jamais fait confiance à Mary.\nTom never trusted Mary.\tTom n'a jamais eu confiance en Mary.\nTom often goes fishing.\tTom va souvent pêcher.\nTom plays the trombone.\tTom joue du trombone.\nTom pulled out his gun.\tTom sortit son arme.\nTom pulled out his gun.\tTom a sorti son flingue.\nTom pulled out his gun.\tTom dégaina son pistolet.\nTom regrets doing that.\tTom regrette d'avoir fait ça.\nTom said he enjoyed it.\tTom a dit qu'il a apprécié.\nTom said he was afraid.\tTom a dit qu'il était effrayé.\nTom says he has a plan.\tTom dit qu'il a un plan.\nTom says he won't vote.\tTom dit qu'il ne votera pas.\nTom sharpened a pencil.\tTom a taillé un crayon.\nTom should've said yes.\tTom aurait dû dire oui.\nTom sipped some coffee.\tTom sirota du café.\nTom slept on the train.\tTom a dormi dans le train.\nTom split up with Mary.\tTom se sépara de Marie.\nTom split up with Mary.\tTom a laissé Marie.\nTom split up with Mary.\tTom s'est séparé de Marie.\nTom stared at his feet.\tTom fixa ses pieds.\nTom stole Mary's watch.\tTom a volé la montre de Marie.\nTom stole Mary's watch.\tTom vola la montre de Marie.\nTom stopped the engine.\tTom arrêta la machine.\nTom studies at Harvard.\tTom étudie à Harvard.\nTom thinks it's stupid.\tTom pense que c'est stupide.\nTom thinks it's stupid.\tTom trouve que c'est stupide.\nTom tightened the knot.\tTom resserra le nœud.\nTom tightened the knot.\tTom a resserré le nœud.\nTom told me about Mary.\tTom m'a dit à propos de Mary.\nTom told us everything.\tTom nous a tout dit.\nTom took a cold shower.\tTom a pris une douche froide.\nTom took a cold shower.\tTom prit une douche froide.\nTom took off his shirt.\tTom retira sa chemise.\nTom took off his shirt.\tTom a retiré sa chemise.\nTom took the wrong bus.\tTom a pris le mauvais bus.\nTom tried to keep calm.\tTom essaya de rester calme.\nTom tried to save Mary.\tTom a essayé de sauver Mary.\nTom wants to be famous.\tTom veut devenir célèbre.\nTom wants to say hello.\tTom a envie de dire bonjour.\nTom was killed by Mary.\tTom a été tué par Mary.\nTom was kissed by Mary.\tTom a été embrassé par Mary.\nTom was kissed by Mary.\tTom fut embrassé par Marie.\nTom was like a brother.\tTom était comme un frère.\nTom was reading a book.\tTom lisait un livre.\nTom wasn't complaining.\tTom ne se plaignait pas.\nTom wasn't in his room.\tTom n'était pas dans sa chambre.\nTom wasn’t born rich.\tTom n'est pas né riche.\nTom watched Mary dance.\tTom regarda Mary danser.\nTom watched Mary dance.\tTom a regardé Mary danser.\nTom watched admiringly.\tTom regardait avec admiration.\nTom will never give up.\tTom n'abandonnera jamais.\nTom will never make it.\tTom n'y arrivera jamais.\nTom won't go to prison.\tTom n'ira pas en prison.\nTom won't let you down.\tTom ne te laissera pas tomber.\nTom's wife is Canadian.\tLa femme de Tom est Canadienne.\nTomorrow is my day off.\tDemain est mon jour de congé.\nTomorrow's my birthday.\tDemain, c'est mon anniversaire.\nTransplants save lives.\tLes transplantations sauvent des vies.\nTry as hard as you can.\tEssaie de toutes tes forces !\nTry as hard as you can.\tEssayez de toutes vos forces !\nTry not to be so tense.\tEssaye de ne pas être si tendu.\nTry not to be so tense.\tEssaye de ne pas être si tendue.\nTry not to be so tense.\tEssayez de ne pas être si tendue.\nTry not to be so tense.\tEssayez de ne pas être si tendu.\nTry not to be so tense.\tEssayez de ne pas être si tendus.\nTry not to be so tense.\tEssayez de ne pas être si tendues.\nTurn toward me, please.\tTournez-vous vers moi, je vous prie.\nTurn toward me, please.\tTourne-toi vers moi, je te prie.\nTwo ice creams, please.\tDeux glaces, s'il te plaît.\nUnemployment is rising.\tLe chômage augmente.\nWait for me in the car.\tAttends-moi dans la voiture.\nWaiter, I need a spoon.\tGarçon, j'ai besoin d'une cuillère.\nWas Tom asked to leave?\tEst-ce qu'on a demandé à Tom de partir ?\nWas anybody else there?\tQui que ce soit d'autre se trouvait-il là ?\nWas anybody else there?\tQui que ce soit d'autre était-il là ?\nWas anybody else there?\tQui que ce soit d'autre s'y trouvait-il ?\nWas anybody else there?\tQui que ce soit d'autre y était-il ?\nWas anyone in the room?\tQuiconque se trouvait-il dans la pièce ?\nWas anyone in the room?\tY avait-il qui que ce soit dans la pièce ?\nWas it a hard decision?\tÉtait-ce une décision difficile ?\nWas that a coincidence?\tÉtait-ce une coïncidence ?\nWas that weird for you?\tCela vous a-t-il semblé bizarre ?\nWas that weird for you?\tCela t'a-t-il semblé bizarre ?\nWas there enough money?\tY avait-il suffisamment d'argent ?\nWatch out for that man.\tCherche cet homme-là.\nWatch out for that man.\tOccupe-toi de cet homme-là.\nWatch out for that man.\tGuette cet homme-là.\nWatch out for that man.\tGare à cet homme-là.\nWatch out for that man.\tFais attention à cet homme-là.\nWatch out for that man.\tPrends garde à cet homme-là.\nWe acted in good faith.\tNous avons agi en toute confiance.\nWe acted in good faith.\tNous avons agi en toute bonne foi.\nWe acted in good faith.\tNous avons agi de bonne foi.\nWe agree on this point.\tNous sommes d'accord sur ce point.\nWe all became soldiers.\tNous sommes tous devenus soldats.\nWe all deserve respect.\tNous méritons tous le respect.\nWe all deserve respect.\tNous méritons toutes le respect.\nWe all had a good time.\tNous avons tous passé du bon temps.\nWe all have jobs to do.\tNous avons tous des boulots à effectuer.\nWe all have missed you.\tTu nous as tous manqué.\nWe all have missed you.\tTu nous as toutes manqué.\nWe all have our orders.\tNous avons tous nos ordres.\nWe all have our orders.\tNous avons toutes nos ordres.\nWe all want to go home.\tNous voulons tous aller chez nous.\nWe all want to go home.\tNous voulons tous aller à la maison.\nWe are making progress.\tNous faisons des progrès.\nWe are on the way home.\tNous sommes sur le chemin de la maison.\nWe are to meet at noon.\tNous avons rendez-vous à midi.\nWe aren't always right.\tNous n'avons pas toujours raison.\nWe became best friends.\tNous sommes devenus les meilleurs amis du monde.\nWe became best friends.\tNous sommes devenues les meilleures amies du monde.\nWe became good friends.\tNous devînmes bons amis.\nWe became good friends.\tNous devînmes bonnes amies.\nWe became good friends.\tNous sommes devenus bons amis.\nWe became good friends.\tNous sommes devenues bonnes amies.\nWe can be a lot better.\tNous pouvons être bien meilleurs.\nWe can do a lot better.\tNous pouvons faire beaucoup mieux.\nWe can do it right now.\tNous pouvons le faire immédiatement.\nWe can do it right now.\tNous pouvons le faire sur-le-champ.\nWe can do so much more.\tNous pouvons faire tellement plus.\nWe can make some money.\tNous pouvons nous faire de l'argent.\nWe can travel together.\tNous pouvons voyager ensemble.\nWe can't do everything.\tNous ne pouvons pas tout faire.\nWe can't do this again.\tNous ne pouvons le refaire.\nWe can't do this again.\tNous ne pouvons pas le refaire.\nWe can't do this again.\tNous ne parvenons pas à le refaire.\nWe can't go back there.\tNous ne pouvons y retourner.\nWe can't just sit here.\tNous ne pouvons pas simplement rester assis là.\nWe can't save everyone.\tNous ne pouvons pas sauver tout le monde.\nWe can't take the risk.\tNous ne pouvons pas risquer cela.\nWe can't turn back now.\tNous ne pouvons pas retourner en arrière maintenant.\nWe can't turn back now.\tNous ne pouvons pas faire machine arrière maintenant.\nWe consider Tom honest.\tNous considérons Tom comme un honnête homme.\nWe could be happy here.\tNous pourrions être heureux ici.\nWe could sing together.\tNous pourrions chanter ensemble.\nWe danced to the music.\tNous dansâmes au son de la musique.\nWe debated the problem.\tNous débattîmes du problème.\nWe debated the problem.\tNous avons débattu du problème.\nWe did all we could do.\tNous avons fait tout ce que nous avons pu.\nWe do need your advice.\tIl nous faut écouter vos conseils.\nWe do need your advice.\tIl nous faut entendre vos conseils.\nWe do need your advice.\tIl nous faut écouter tes conseils.\nWe do need your advice.\tIl nous faut entendre tes conseils.\nWe don't have a garden.\tNous n'avons pas de jardin.\nWe don't have the time.\tNous n'avons pas le temps.\nWe don't like the rain.\tNous n'aimons pas la pluie.\nWe don't like the rain.\tNous ne goûtons pas la pluie.\nWe don't like violence.\tNous n'aimons pas la violence.\nWe don't make mistakes.\tNous ne commettons pas d'erreurs.\nWe enjoy reading books.\tOn adore lire des livres.\nWe enjoyed watching TV.\tNous avions plaisir à regarder la télévision.\nWe exchanged greetings.\tNous échangeâmes des formules de bienvenue.\nWe exchanged greetings.\tNous échangeâmes des salutations.\nWe expect good results.\tNous attendons de bons résultats.\nWe gave the car a push.\tNous avons poussé la voiture.\nWe go to school by bus.\tNous prenons le bus pour aller en cours.\nWe go to school by bus.\tNous allons en cours en bus.\nWe got lost in the fog.\tNous nous égarâmes dans le brouillard.\nWe got lost in the fog.\tNous nous sommes égarés dans le brouillard.\nWe got lost in the fog.\tNous nous sommes égarées dans le brouillard.\nWe had a narrow escape.\tNous nous sommes échappés de justesse.\nWe had a very busy day.\tNous avons eu une journée très chargée.\nWe had some good times.\tNous avons passé du bon temps.\nWe have an appointment.\tNous avons rendez-vous.\nWe have an orange tree.\tNous avons un oranger.\nWe have finished lunch.\tNous avons terminé de déjeuner.\nWe have finished lunch.\tNous avons fini de déjeuner.\nWe have finished lunch.\tNous avons terminé de dîner.\nWe have finished lunch.\tNous avons fini de dîner.\nWe have mutual friends.\tNous avons des amis communs.\nWe have mutual friends.\tNous avons des amies communes.\nWe have no extra money.\tNous n'avons pas d'argent supplémentaire.\nWe have plenty of time.\tNous avons largement le temps.\nWe have plenty of wine.\tNous avons plein de vin.\nWe have run out of gas.\tNous avons une panne d'essence.\nWe have to act quickly.\tIl nous faut agir vite.\nWe have to be cautious.\tNous devons être prudents.\nWe have to be cautious.\tNous devons être prudentes.\nWe have to do our best.\tNous devons faire de notre mieux.\nWe have to go shopping.\tIl faut que nous allions faire des courses.\nWe have to go shopping.\tIl nous faut aller faire des courses.\nWe haven't seen anyone.\tNous n'avons vu personne.\nWe haven't seen it yet.\tNous ne l'avons pas encore vu.\nWe haven't seen it yet.\tNous ne l'avons pas encore vue.\nWe heard the door shut.\tNous avons entendu la porte se fermer.\nWe heard the door shut.\tNous avons entendu la fermeture de la porte.\nWe heard the door shut.\tNous entendîmes la porte se fermer.\nWe just don't know why.\tNous ne savons simplement pas pourquoi.\nWe know all about that.\tDe cela, nous savons tout.\nWe like playing soccer.\tNous aimons jouer au football.\nWe live in the suburbs.\tNous vivons en banlieue.\nWe make sake from rice.\tOn fait le saké à partir du riz.\nWe may still get lucky.\tOn pourrait encore avoir de la chance.\nWe met her by accident.\tNous l'avons rencontrée par hasard.\nWe met on a blind date.\tNous nous sommes rencontrés à une rencontre surprise.\nWe missed the deadline.\tNous avons manqué la date limite.\nWe missed the deadline.\tNous avons loupé la date limite.\nWe missed the deadline.\tNous avons raté la date limite.\nWe must obey the rules.\tNous devons nous plier aux règles.\nWe must stick together.\tOn doit rester ensemble et s'entraider.\nWe must talk privately.\tIl faut qu'on parle entre nous.\nWe need some help here.\tNous avons besoin d'aide ici.\nWe need to be prepared.\tIl nous faut être préparés.\nWe need to be prepared.\tIl nous faut être préparées.\nWe need to go shopping.\tIl nous faut aller faire des courses.\nWe plan to stay a week.\tNous envisageons de rester une semaine.\nWe play games together.\tNous jouons à des jeux ensemble.\nWe played on the beach.\tNous jouâmes sur la plage.\nWe played on the beach.\tNous avons joué sur la plage.\nWe postponed the event.\tNous remîmes l'événement à plus tard.\nWe postponed the event.\tNous décalâmes l'événement.\nWe prefer to stay here.\tNous préférons rester ici.\nWe ran after the thief.\tNous courûmes après le voleur.\nWe ran around the park.\tNous courûmes autour du parc.\nWe ran around the park.\tNous courions autour du parc.\nWe saw nothing strange.\tNous ne vîmes rien d'étrange.\nWe saw nothing strange.\tNous n'avons rien vu d'étrange.\nWe searched everywhere.\tNous avons cherché partout.\nWe searched everywhere.\tNous avons fouillé partout.\nWe share the housework.\tNous nous répartissons les tâches domestiques.\nWe shouldn't lose hope.\tNous ne devrions pas perdre espoir.\nWe shouldn't stay here.\tOn ne devrait pas rester ici.\nWe sometimes meet them.\tNous les rencontrons de temps en temps.\nWe sometimes meet them.\tNous les rencontrons de temps à autre.\nWe thank you very much!\tNous vous remercions beaucoup !\nWe value our customers.\tNous accordons de la valeur à nos clients.\nWe value our customers.\tNous accordons de l'importance à nos clients.\nWe walked to the river.\tNous avons marché jusqu'à la rivière.\nWe want our money back.\tNous voulons récupérer notre argent.\nWe want to be the best.\tNous voulons être les meilleurs.\nWe want to be the best.\tNous voulons être les meilleures.\nWe want to have a baby.\tNous voulons avoir un enfant.\nWe want to talk to Tom.\tNous voulons parler avec Tom.\nWe want to talk to Tom.\tNous voulons parler à Tom.\nWe want to talk to you.\tNous voulons te parler.\nWe want to talk to you.\tNous voulons vous parler.\nWe want you to take it.\tNous voulons que tu le prennes.\nWe want you to take it.\tNous voulons que vous la preniez.\nWe want you to take it.\tNous voulons que tu la prennes.\nWe want you to take it.\tNous voulons que vous le preniez.\nWe waste a lot of time.\tNous perdons beaucoup de temps.\nWe waste a lot of time.\tNous gâchons beaucoup de temps.\nWe were all devastated.\tNous étions tous anéantis.\nWe were all devastated.\tNous étions toutes anéanties.\nWe were all on the bus.\tNous étions tous dans le bus.\nWe were all on the bus.\tNous étions toutes dans le bus.\nWe were really excited.\tNous étions très excités.\nWe were really excited.\tNous étions vraiment excitées.\nWe will make it public.\tNous allons le rendre public.\nWe will win the battle.\tNous gagnerons la bataille.\nWe would like to leave.\tNous aimerions partir.\nWe'd better hurry then.\tAlors nous ferions mieux de nous dépêcher.\nWe'll be together soon.\tNous serons bientôt ensemble.\nWe'll decide by voting.\tFaisons un vote.\nWe'll discuss it later.\tNous en parlerons plus tard.\nWe'll join you shortly.\tNous vous rejoindrons dans peu de temps.\nWe'll put a stop to it.\tNous y mettrons un terme.\nWe'll soon be together.\tNous serons bientôt ensemble.\nWe're a married couple.\tNous sommes mariés.\nWe're all disappointed.\tNous sommes tous déçus.\nWe're all having lunch.\tNous sommes tous en train de déjeuner.\nWe're all having lunch.\tNous sommes tous en train de dîner.\nWe're all in agreement.\tNous sommes tous d'accord.\nWe're all in agreement.\tNous sommes toutes d'accord.\nWe're all out of booze.\tNous sommes tous à court de carburant.\nWe're all sure of that.\tNous en sommes tous certains.\nWe're all sure of that.\tNous en sommes toutes certaines.\nWe're all wasting time.\tNous perdons tous du temps.\nWe're all wasting time.\tNous perdons toutes du temps.\nWe're all working hard.\tNous travaillons tous dur.\nWe're all working hard.\tNous travaillons toutes dur.\nWe're also out of eggs.\tNous sommes également à court d'œufs.\nWe're doing all we can.\tNous faisons tout ce que nous pouvons.\nWe're finished already.\tNous en avons déjà terminé.\nWe're getting divorced.\tNous sommes en train de divorcer.\nWe're glad you're here.\tNous sommes contents que tu sois là.\nWe're glad you're here.\tNous sommes contents que vous soyez là.\nWe're having breakfast.\tNous sommes en train de prendre le petit-déjeuner.\nWe're imagining things.\tNous nous faisons des idées.\nWe're in the same boat.\tNous sommes dans le même bateau.\nWe're investigating it.\tNous enquêtons à ce sujet.\nWe're just hanging out.\tOn ne fait que sortir ensemble.\nWe're learning Chinese.\tNous apprenons le chinois.\nWe're leaving tomorrow.\tNous partirons demain.\nWe're not all teachers.\tNous ne sommes pas tous enseignants.\nWe're not all teachers.\tNous ne sommes pas toutes enseignantes.\nWe're not going ashore.\tNous n'allons pas accoster.\nWe're not turning back.\tNous n'allons pas faire demi-tour.\nWe're not your parents.\tNous ne sommes pas tes parents.\nWe're on the same side.\tNous sommes du même côté.\nWe're pretty confident.\tNous sommes assez confiants.\nWe're still vulnerable.\tNous sommes encore vulnérables.\nWe're studying Chinese.\tNous étudions le chinois.\nWe're tired of waiting.\tNous en avons assez d'attendre.\nWe've been here before.\tNous avons été ici auparavant.\nWe've run out of water.\tNous sommes à court d'eau.\nWear whatever you want.\tPorte ce que tu veux.\nWear whatever you want.\tPortez ce que vous voulez.\nWeddings are expensive.\tLes mariages sont chers.\nWell, I have to go now.\tBien, je dois y aller, maintenant.\nWell, have you decided?\tAlors, vous êtes-vous décidé ?\nWell, have you decided?\tAlors, vous êtes-vous décidés ?\nWell, have you decided?\tAlors, as-tu décidé ?\nWell, have you decided?\tEh bien, avez-vous décidé ?\nWell, it's complicated.\tEh bien, c'est compliqué.\nWell, that's upsetting.\tEh bien, c'est embêtant.\nWere you conscientious?\tAs-tu été consciencieux ?\nWere you conscientious?\tAs-tu été consciencieuse ?\nWere you disrespectful?\tLeur avez-vous manqué de respect ?\nWere you disrespectful?\tLui avez-vous manqué de respect ?\nWhat a beautiful dress!\tQuelle belle robe !\nWhat a beautiful house!\tQuelle belle maison !\nWhat a beautiful night!\tQuelle belle nuit !\nWhat a beautiful scene!\tQuelle belle scène !\nWhat a beautiful scene!\tQuel beau décor !\nWhat a beautiful scene!\tQuel beau tableau !\nWhat a big supermarket!\tQuel grand supermarché !\nWhat a bunch of idiots!\tQuelle bande d'idiots !\nWhat a stupid question!\tEn voilà une question idiote !\nWhat a waste of energy!\tQuel gâchis d'énergie !\nWhat a wonderful night!\tQuelle nuit formidable !\nWhat a wonderful party!\tQuelle merveilleuse fête !\nWhat actually happened?\tQue s'est-il produit, en réalité ?\nWhat actually happened?\tQue s'est-il passé, en réalité ?\nWhat actually happened?\tQu'est-il vraiment arrivé ?\nWhat an excellent idea!\tQuelle excellente idée !\nWhat are you afraid of?\tDe quoi as-tu peur ?\nWhat are you afraid of?\tDe quoi avez-vous peur ?\nWhat are you all doing?\tQu'êtes-vous tous en train de faire ?\nWhat are you all doing?\tQu'êtes-vous toutes en train de faire ?\nWhat are you inferring?\tQue veux-tu dire par là?\nWhat are you preparing?\tQue préparez-vous ?\nWhat are you two doing?\tQue faites-vous tous les deux ?\nWhat beautiful weather!\tQuel beau temps !\nWhat can I do for them?\tQue puis-je faire pour eux ?\nWhat can all that mean?\tQue peut signifier tout cela ?\nWhat can we do for Tom?\tQue pouvons-nous faire pour Tom ?\nWhat choice did I have?\tDe quel choix est-ce que je disposais ?\nWhat choice do we have?\tQuel choix avons-nous ?\nWhat choice do we have?\tDe quel choix disposons-nous ?\nWhat color do you like?\tQuelle couleur aimes-tu ?\nWhat color do you like?\tQuelle couleur aimez-vous ?\nWhat could it all mean?\tQu'est-ce que tout ça pourrait signifier ?\nWhat did I do that for?\tPourquoi ai-je fait cela ?\nWhat did Tom offer you?\tQue vous a offert Tom ?\nWhat did Tom offer you?\tQu'est-ce que Tom t'a offert ?\nWhat did she do to you?\tQue t'a-t-elle fait ?\nWhat did she do to you?\tQue vous a-t-elle fait ?\nWhat did they bring me?\tQue m'ont-ils apporté ?\nWhat did they bring me?\tQue m'ont-elles apporté ?\nWhat did you try to do?\tQu’as-tu essayé de faire ?\nWhat did your wife say?\tQu'a dit ta femme ?\nWhat did your wife say?\tQu'a dit votre femme ?\nWhat do I have to lose?\tQu'ai-je à perdre ?\nWhat do I need to know?\tQu'ai-je besoin de savoir ?\nWhat do you do for fun?\tQue fais-tu pour t'amuser ?\nWhat do you do for fun?\tQue faites-vous pour vous amuser ?\nWhat do you have to do?\tQue te faut-il faire ?\nWhat do you have to do?\tQue vous faut-il faire ?\nWhat do you like to do?\tQu'aimes-tu faire ?\nWhat do you like to do?\tQu'aimez-vous faire ?\nWhat do you mean by it?\tQue voulez-vous dire par là ?\nWhat do you mean by it?\tQue veux-tu dire par là ?\nWhat do you mean by it?\tQue voulez-vous ainsi signifier ?\nWhat do you mean by it?\tQue veux-tu ainsi signifier ?\nWhat do you plan to do?\tQue prévois-tu de faire ?\nWhat do you plan to do?\tQue prévoyez-vous de faire ?\nWhat do you see in him?\tQue lui trouves-tu ?\nWhat do you see in him?\tQue lui trouvez-vous ?\nWhat do you want to be?\tQue veux-tu être ?\nWhat do you want to be?\tQue voulez-vous être ?\nWhat do you want to do?\tQue veux-tu faire ?\nWhat does it feel like?\tQue ressens-tu ?\nWhat does it feel like?\tQue ressentez-vous ?\nWhat does it look like?\tDe quoi cela a-t-il l'air ?\nWhat does it look like?\tDe quoi ça a l'air ?\nWhat does it look like?\tÀ quoi ça ressemble ?\nWhat does that tell us?\tQue cela nous indique-t-il ?\nWhat does the cat want?\tQue veut le chat ?\nWhat else can go wrong?\tQuoi d'autre peut-il aller de travers ?\nWhat else can go wrong?\tQuoi d'autre peut-il foirer ?\nWhat good will that do?\tQu'est-ce que ça peut bien faire de bon ?\nWhat has become of him?\tQu'est-ce qu'il devient?\nWhat have I done wrong?\tQu'ai-je fait de mal ?\nWhat have I misspelled?\tQu'ai-je épelé de travers ?\nWhat if he should fail?\tQue se passerait-il s'il devait échouer ?\nWhat if there's a leak?\tQue se passera-t-il s'il y a une fuite ?\nWhat if we should fail?\tQue se passera-t-il si nous devions échouer ?\nWhat illness do I have?\tQuelle maladie ai-je ?\nWhat is all that stuff?\tC'est quoi, tous ces trucs ?\nWhat is all this stuff?\tC'est quoi, tous ces trucs ?\nWhat is butter made of?\tDe quoi est fait le beurre ?\nWhat is it you kids do?\tQue faites-vous, les enfants ?\nWhat is microeconomics?\tQu'est-ce que la microéconomie ?\nWhat is my room number?\tQuel est le numéro de ma chambre ?\nWhat is my room number?\tQuel est mon numéro de chambre ?\nWhat is my room number?\tLequel est le numéro de ma chambre ?\nWhat is the book about?\tDe quoi parle ce livre ?\nWhat is the book about?\tDe quoi parle le livre ?\nWhat is this thing for?\tÀ quoi sert cette chose ?\nWhat is wrong with her?\tQu'est-ce qui ne va pas avec elle ?\nWhat is wrong with him?\tQu'est-ce qui ne va pas avec lui ?\nWhat is your emergency?\tQuelle est votre urgence ?\nWhat is your name, sir?\tQuel est votre nom, Monsieur ?\nWhat is your specialty?\tQuelle est ta spécialité ?\nWhat is your specialty?\tQuelle est votre spécialité ?\nWhat made you so angry?\tQu'est-ce qui t'a mis si en colère ?\nWhat movie did you see?\tQuel film as-tu vu?\nWhat relieves the pain?\tQu'est-ce qui soulage la douleur ?\nWhat she said is wrong.\tCe qu'elle a dit n'est pas bien.\nWhat she said is wrong.\tCe qu'elle a dit est faux.\nWhat should I be doing?\tQue devrais-je faire ?\nWhat should I look for?\tQue devrais-je chercher ?\nWhat time can you come?\tÀ quelle heure pouvez-vous venir ?\nWhat time do you close?\tÀ quelle heure fermes-tu ?\nWhat time does it open?\tÇa ouvre à quelle heure ?\nWhat time does it open?\tÀ quelle heure est-ce que ça ouvre ?\nWhat time does it open?\tÀ quelle heure cela ouvre-t-il ?\nWhat tripped the alarm?\tQu'est-ce qui a déclanché l'alarme ?\nWhat was he doing here?\tQue faisait-il ici ?\nWhat was he doing here?\tQu'était-il en train de faire ici ?\nWhat was in it for you?\tQu'y avait-il là pour vous ?\nWhat was in it for you?\tQu'y avait-il là pour toi ?\nWhat was in it for you?\tQu'y trouviez-vous ?\nWhat was in it for you?\tQu'y trouvais-tu ?\nWhat was your question?\tQuelle était ta question ?\nWhat was your question?\tQuelle était votre question ?\nWhat were we afraid of?\tDe quoi avions-nous peur ?\nWhat were you thinking?\tÀ quoi pensais-tu ?\nWhat were you thinking?\tÀ quoi pensiez-vous ?\nWhat will become of me?\tQu'adviendra-t-il de moi ?\nWhat will become of me?\tQu'en sera-t-il de moi ?\nWhat will that achieve?\tQu'est-ce que ça produira ?\nWhat wonderful weather!\tQuel temps merveilleux !\nWhat you did was wrong.\tCe que tu as fait était incorrect.\nWhat you did was wrong.\tCe que tu as fait était mal.\nWhat're we looking for?\tQue cherchons-nous ?\nWhat're we looking for?\tQue cherche-t-on ?\nWhat're we looking for?\tQue recherchons-nous ?\nWhat're we looking for?\tQue recherche-t-on ?\nWhat're we waiting for?\tQu'attendons-nous ?\nWhat're you doing here?\tQue faites-vous là ?\nWhat're you doing here?\tQue fais-tu ici ?\nWhat's Tom's real name?\tQuel est le vrai nom de Tom ?\nWhat's all that racket?\tC'est quoi tout ce raffut ?\nWhat's all that racket?\tC'est quoi tout ce trafic ?\nWhat's behind the door?\tQu'y a-t-il derrière la porte ?\nWhat's going to happen?\tQue va-t-il se passer ?\nWhat's going to happen?\tQue va-t-il se produire ?\nWhat's going to happen?\tQue va-t-il arriver ?\nWhat's in front of you?\tQu'est-ce qu'il y a devant toi?\nWhat's in front of you?\tQu'y a-t-il devant vous ?\nWhat's in front of you?\tQu'y a-t-il devant toi ?\nWhat's our destination?\tQuelle est notre destination ?\nWhat's the alternative?\tQuelle est l'alternative ?\nWhat's the bottom line?\tQuel est le facteur décisif ?\nWhat's the final count?\tQuel est le décompte final ?\nWhat's the fun in that?\tOù est le plaisir ?\nWhat's the temperature?\tQuelle est la température ?\nWhat's the whole story?\tQuelle est toute l'histoire ?\nWhat's this book about?\tDe quoi traite ce livre ?\nWhat's this dog's name?\tQuel est le nom de ce chien ?\nWhat's this doing here?\tQu'est-ce que ceci fait ici ?\nWhat's wrong with that?\tQu'y a-t-il de mal à ça ?\nWhat's wrong with that?\tQu'y a-t-il de mal à cela ?\nWhat's wrong with them?\tQu'est-ce qui cloche avec eux ?\nWhat's wrong with them?\tQu'est-ce qui cloche avec elles ?\nWhat's wrong with them?\tQu'est-ce qui ne va pas avec elles ?\nWhat's wrong with them?\tQu'est-ce qui ne va pas avec eux ?\nWhat's wrong with this?\tQu'y a-t-il de mal à ça ?\nWhat's your best price?\tQuel est ton meilleur prix ?\nWhat's your best price?\tQuel est votre meilleur prix ?\nWhat's your blood type?\tQuel est ton groupe sanguin ?\nWhat's your blood type?\tQuel est votre groupe sanguin ?\nWhat's your dad's name?\tQuel est le nom de ton père ?\nWhat's your dad's name?\tComment s'appelle votre père ?\nWhat's your dad's name?\tQuel est le nom de votre père ?\nWhat's your first name?\tQuel est votre prénom ?\nWhat's your name again?\tQuel est encore votre nom ?\nWhat's your name again?\tQuel est encore ton nom ?\nWhat's your son's name?\tQuel est le nom de ton fils ?\nWhat's your son's name?\tComment s'appelle ton fils ?\nWhat's your speciality?\tQuelle est ta spécialité ?\nWhat's your speciality?\tQuelle est votre spécialité ?\nWhen did you finish it?\tQuand l'avez-vous terminé ?\nWhen did you get there?\tQuand y êtes-vous parvenu ?\nWhen did you get there?\tQuand y êtes-vous parvenue ?\nWhen did you get there?\tQuand y êtes-vous parvenus ?\nWhen did you get there?\tQuand y êtes-vous parvenues ?\nWhen did you get there?\tQuand y es-tu parvenu ?\nWhen did you get there?\tQuand y es-tu parvenue ?\nWhen is he coming back?\tQuand revient-il ?\nWhen is he coming back?\tQuand est-ce qu'il revient ?\nWhen will we get there?\tQuand y arriverons-nous ?\nWhen will we get there?\tQuand y parviendrons-nous ?\nWhere are the car keys?\tOù sont les clés de voiture ?\nWhere are your manners?\tQu'as-tu fait de tes bonnes manières ?\nWhere are your manners?\tQu'avez-vous fait de vos bonnes manières ?\nWhere are your parents?\tOù sont tes parents ?\nWhere are your parents?\tOù sont vos parents ?\nWhere can I buy bricks?\tOù puis-je acheter des briques ?\nWhere can I buy snacks?\tOù puis-je acheter des collations ?\nWhere can I buy stamps?\tOù puis-je acheter des timbres ?\nWhere can I get a taxi?\tOù puis-je prendre un taxi ?\nWhere can I rent a car?\tOù puis-je louer une voiture ?\nWhere could the cat be?\tOù le chat pourrait-il se trouver ?\nWhere did everybody go?\tOù tout le monde est-il parti ?\nWhere did everybody go?\tOù est parti tout le monde ?\nWhere did everybody go?\tOù tout le monde est-il allé ?\nWhere did everybody go?\tOù est allé tout le monde ?\nWhere did everybody go?\tOù tout le monde s'en est-il allé ?\nWhere did it come from?\tD'où est-ce venu ?\nWhere did the money go?\tOù est passé l'argent ?\nWhere did the money go?\tDans quoi est passé l'argent ?\nWhere did you get that?\tOù as-tu dégoté ça ?\nWhere did you get that?\tOù as-tu obtenu ça ?\nWhere did you get that?\tOù avez-vous dégoté ça ?\nWhere did you get that?\tOù avez-vous obtenu ça ?\nWhere do we even begin?\tOù même commençons-nous ?\nWhere do you come from?\tTu viens d'où ?\nWhere do you come from?\tD'où viens-tu ?\nWhere do you come from?\tD'où venez-vous ?\nWhere do you have pain?\tOù as-tu mal ?\nWhere does that bus go?\tOù va ce bus ?\nWhere is the Red Cross?\tLa Croix Rouge, où est-elle ?\nWhere is the Red Cross?\tOù est la Croix Rouge ?\nWhere is the newspaper?\tOù est le journal ?\nWhere is today's paper?\tOù est le journal du jour ?\nWhere is your homework?\tOù sont tes devoirs ?\nWhere was the princess?\tOù était la princesse ?\nWhere were you on 9/11?\tOù étiez-vous le onze septembre ?\nWhere were you on 9/11?\tOù étais-tu le onze septembre ?\nWhere's everybody else?\tOù sont tous les autres ?\nWhere's everybody else?\tOù sont toutes les autres ?\nWhere's everyone going?\tOù est-ce que tout le monde se rend ?\nWhere's everyone going?\tOù est-ce que tout le monde va ?\nWhere's the dining car?\tOù se trouve le wagon-restaurant ?\nWhere's the toothpaste?\tOù est le dentifrice ?\nWhere's your boyfriend?\tOù est ton petit ami ?\nWhich book do you need?\tDe quel livre avez-vous besoin ?\nWhich book do you need?\tDe quel livre as-tu besoin ?\nWhich film did you see?\tQuel film as-tu vu ?\nWhich film did you see?\tQuel film avez-vous vu ?\nWhich is your suitcase?\tLaquelle est ta valise ?\nWhich is your suitcase?\tQuelle est ta valise ?\nWhich one should I use?\tLequel devrais-je utiliser ?\nWhich one should I use?\tLaquelle devrais-je utiliser ?\nWhich student went out?\tQuel étudiant est-il sorti ?\nWhich student went out?\tQuel étudiant est sorti ?\nWhich way is the beach?\tPar où est la plage ?\nWhich way is the beach?\tDans quelle direction est la plage ?\nWhich way should we go?\tDe quel côté devrions-nous nous diriger ?\nWho are we working for?\tPour qui travaillons-nous ?\nWho are we working for?\tPour qui travaille-t-on ?\nWho are you going with?\tAvec qui vas-tu ?\nWho are you going with?\tAvec qui y vas-tu ?\nWho are you going with?\tAvec qui allez-vous ?\nWho are you going with?\tAvec qui y allez-vous ?\nWho are you talking to?\tÀ qui parles-tu ?\nWho are you talking to?\tÀ qui parlez-vous ?\nWho are you there with?\tAvec qui vous y trouvez-vous ?\nWho are you there with?\tAvec qui y es-tu ?\nWho are you there with?\tAvec qui t'y trouves-tu ?\nWho are you there with?\tAvec qui y êtes-vous ?\nWho are you voting for?\tPour qui votes-tu ?\nWho ate the last donut?\tQui a mangé le dernier beignet ?\nWho did you give it to?\tÀ qui l'as-tu donné ?\nWho did you meet there?\tQui y as-tu rencontré ?\nWho did you meet there?\tQui y avez-vous rencontré ?\nWho did you speak with?\tAvec qui parlais-tu ?\nWho discovered America?\tQui a découvert l'Amérique ?\nWho do we owe money to?\tÀ qui devons-nous de l'argent ?\nWho do you think he is?\tQui pensez-vous qu'il soit ?\nWho invented the piano?\tQui a inventé le piano ?\nWho is calling, please?\tPardonnez-moi, qui est à l'appareil ?\nWho is she speaking to?\tÀ qui parle-t-elle ?\nWho left the door open?\tQui a laissé la porte ouverte ?\nWho teaches you French?\tQui vous enseigne le français ?\nWho told you the story?\tQui vous a raconté l'histoire ?\nWho told you the story?\tQui vous a conté l'histoire ?\nWho told you the story?\tQui t'a conté l'histoire ?\nWho will foot the bill?\tQui va payer l'addition ?\nWho'd want to hire Tom?\tQui voudrait embaucher Tom ?\nWho're you calling now?\tQui appelez-vous maintenant ?\nWho're you calling now?\tQui es-tu en train d'appeler ?\nWho're you looking for?\tQui cherchez-vous ?\nWho're you looking for?\tQui cherches-tu ?\nWhose computer is this?\tA qui est cet ordinateur ?\nWhose notebook is that?\tÀ qui est cet ordinateur portatif ?\nWhose suitcase is that?\tÀ qui est cette valise ?\nWhose umbrella is this?\tÀ qui est ce parapluie ?\nWhy am I not surprised?\tPourquoi cela ne me surprend-il pas ?\nWhy are we helping Tom?\tPourquoi aidons-nous Tom ?\nWhy are we helping Tom?\tPourquoi est-ce qu'on aide Tom ?\nWhy are you busy today?\tPourquoi êtes-vous occupé aujourd'hui ?\nWhy are you busy today?\tPourquoi êtes-vous occupée aujourd'hui ?\nWhy are you busy today?\tPourquoi êtes-vous occupés aujourd'hui ?\nWhy are you busy today?\tPourquoi êtes-vous occupées aujourd'hui ?\nWhy are you busy today?\tPourquoi es-tu occupée aujourd'hui ?\nWhy are you doing this?\tPourquoi fais-tu cela ?\nWhy are you doing this?\tPourquoi faites-vous cela ?\nWhy are you doing this?\tPourquoi faites-vous ça ?\nWhy are you doing this?\tPourquoi fais-tu ça ?\nWhy are you helping me?\tPourquoi m'aidez-vous ?\nWhy are you helping me?\tPourquoi m'aides-tu ?\nWhy are you interested?\tPourquoi es-tu intéressé ?\nWhy are you interested?\tPourquoi es-tu intéressée ?\nWhy are you interested?\tPourquoi êtes-vous intéressé ?\nWhy are you interested?\tPourquoi êtes-vous intéressés ?\nWhy are you interested?\tPourquoi êtes-vous intéressées ?\nWhy are you interested?\tPourquoi êtes-vous intéressée ?\nWhy are you still here?\tPourquoi es-tu encore là ?\nWhy are you still here?\tPourquoi êtes-vous encore là ?\nWhy aren't you married?\tPourquoi n'es-tu pas marié ?\nWhy did you come early?\tPourquoi es-tu venu tôt ?\nWhy did you come early?\tPourquoi es-tu venue tôt ?\nWhy did you come early?\tPourquoi êtes-vous venu tôt ?\nWhy did you come early?\tPourquoi êtes-vous venue tôt ?\nWhy did you come early?\tPourquoi êtes-vous venus tôt ?\nWhy did you come early?\tPourquoi êtes-vous venues tôt ?\nWhy did you let Tom go?\tPourquoi as-tu laissé Tom y aller ?\nWhy did you let Tom go?\tPourquoi avez-vous laissé Tom partir ?\nWhy didn't she tell me?\tPourquoi ne me l'a-t-elle pas dit ?\nWhy didn't you do that?\tPourquoi ne l'as-tu pas fait ?\nWhy didn't you do that?\tPourquoi ne l'avez-vous pas fait ?\nWhy didn't you tell me?\tPourquoi tu me l’as pas dit ?\nWhy didn't you tell me?\tPourquoi ne me l'avez-vous pas dit ?\nWhy didn't you tell me?\tPourquoi ne pas me l'avoir dit ?\nWhy didn't you tell me?\tPourquoi ne me l'as-tu pas dit ?\nWhy do you need change?\tPourquoi as-tu besoin de changement ?\nWhy do you need change?\tPourquoi as-tu besoin de monnaie ?\nWhy do you want stamps?\tPourquoi veux-tu des timbres ?\nWhy do you want to die?\tPourquoi désirez-vous mourir ?\nWhy do you want to die?\tPourquoi désires-tu mourir ?\nWhy does nobody answer?\tPourquoi personne ne répond ?\nWhy don't you call Tom?\tPourquoi n'appelles-tu pas Tom ?\nWhy don't you go ahead?\tPourquoi ne pars-tu pas en avant ?\nWhy don't you go ahead?\tPourquoi n'allez-vous pas de l'avant ?\nWhy don't you remember?\tPourquoi ne vous le rappelez-vous pas ?\nWhy don't you remember?\tPourquoi ne vous en souvenez-vous pas ?\nWhy don't you remember?\tPourquoi ne t'en souviens-tu pas ?\nWhy don't you remember?\tPourquoi ne te le rappelles-tu pas ?\nWhy don't you sit down?\tPourquoi ne vous asseyez-vous pas ?\nWhy don't you sit down?\tPourquoi ne t'assieds-tu pas ?\nWhy don't you sit here?\tPourquoi ne t'assieds-tu pas ici ?\nWhy don't you sit here?\tPourquoi ne vous asseyez-vous pas ici ?\nWhy don't you take off?\tPourquoi ne prenez-vous pas congé ?\nWhy don't you take off?\tPourquoi ne prends-tu pas congé ?\nWhy don't you trust me?\tPourquoi ne me faites-vous pas confiance ?\nWhy don't you trust me?\tPourquoi ne me fais-tu pas confiance ?\nWhy give them anything?\tPourquoi leur donner quoi que ce soit ?\nWhy is everyone crying?\tPourquoi tout le monde pleure-t-il ?\nWhy not see the doctor?\tPourquoi ne pas consulter le médecin ?\nWhy should I even care?\tPourquoi devrais-je même m'en soucier ?\nWhy should I interfere?\tPourquoi devrais-je m'en mêler ?\nWhy should we harm you?\tPourquoi vous ferions-nous du mal ?\nWhy should we harm you?\tPourquoi te ferions-nous du mal ?\nWhy wait for Christmas?\tPourquoi attendre Noël ?\nWhy was I not informed?\tPourquoi n'ai-je pas été informé ?\nWhy was I not informed?\tPourquoi n'ai-je pas été informée ?\nWhy were you in prison?\tPourquoi étais-tu en prison ?\nWhy were you in prison?\tPourquoi étiez-vous en prison ?\nWhy would I be nervous?\tPourquoi serais-je nerveux ?\nWhy would I be nervous?\tPourquoi serais-je nerveuse ?\nWhy would you ask that?\tPourquoi demanderais-tu cela ?\nWhy would you ask that?\tPourquoi demanderiez-vous cela ?\nWhy would you say that?\tPourquoi dirais-tu cela ?\nWhy would you say that?\tPourquoi diriez-vous cela ?\nWhy would you say that?\tPourquoi voudrais-tu dire cela ?\nWhy would you say that?\tPourquoi voudriez-vous dire cela ?\nWill he ever come back?\tReviendra-t-il jamais ?\nWill she get well soon?\tSe remettra-t-elle bientôt ?\nWill we arrive in time?\tArriverons-nous à l'heure ?\nWill we arrive on time?\tArriverons-nous à l'heure ?\nWill you dance with me?\tVeux-tu danser avec moi ?\nWill you dance with me?\tDanseras-tu avec moi ?\nWill you dance with me?\tVoulez-vous danser avec moi ?\nWill you dance with me?\tDanserez-vous avec moi ?\nWill you do me a favor?\tMe feras-tu une faveur ?\nWill you do me a favor?\tMe ferez-vous une faveur ?\nWill you drive me home?\tMe conduirez-vous chez moi ?\nWill you drive me home?\tMe conduiras-tu chez moi ?\nWill you give it to me?\tMe le donnerez-vous ?\nWill you give it to me?\tMe le donneras-tu ?\nWill you join our club?\tVous joindrez-vous à notre club ?\nWill you join our club?\tRejoindras-tu notre club ?\nWill you join our club?\tRejoindras-tu notre cercle ?\nWill you join our club?\tVous joindrez-vous à notre cercle ?\nWill you open the door?\tOuvres-tu la porte ?\nWill you take me there?\tM'y emmèneras-tu ?\nWill you take me there?\tM'y emmènerez-vous ?\nWine helps digest food.\tLe vin aide à la digestion.\nWine helps digest food.\tLe vin favorise la digestion.\nWomen are all the same.\tLes femmes sont toutes les mêmes.\nWon't you come with me?\tNe viendras-tu pas avec moi ?\nWon't you take a chair?\tVous ne voulez pas prendre une chaise ?\nWords express thoughts.\tLes pensées s'expriment par des mots.\nWords express thoughts.\tLes mots expriment des idées.\nWould you come with us?\tViendriez-vous avec nous ?\nWould you come with us?\tViendrais-tu avec nous ?\nWould you hand me that?\tPourrais-tu me passer ça ?\nWould you hand me that?\tPourriez-vous me passer ça ?\nWould you just shut up?\tVoudrais-tu bien simplement la fermer ?\nWould you just shut up?\tVoudriez-vous bien simplement la fermer ?\nWould you like a drink?\tVous voulez prendre un verre ?\nWould you like a drink?\tTu veux prendre un verre ?\nWould you like a drink?\tVous buvez quelque chose ?\nWould you like a drink?\tTu bois quelque chose ?\nWould you like a taste?\tVoulez-vous goûter ?\nWould you like to come?\tAimerais-tu venir ?\nWould you like to sing?\tAimeriez-vous chanter ?\nWould you like to sing?\tAimerais-tu chanter ?\nWould you play with me?\tOn joue ensemble ?\nWould you play with me?\tVoudrais-tu jouer avec moi ?\nWould you play with me?\tVoudriez-vous jouer avec moi ?\nYes, I'm a student too.\tOui, je suis aussi étudiant.\nYesterday was Thursday.\tHier, c'était jeudi.\nYou are a good student.\tTu es un bon étudiant.\nYou are a troublemaker.\tTu es un fouteur de merde.\nYou are a troublemaker.\tVous êtes un fauteur de trouble.\nYou are free to go out.\tTu es libre de sortir.\nYou are hearing things.\tVous entendez des choses.\nYou are hearing things.\tTu entends des choses.\nYou are my best friend.\tTu es mon meilleur ami.\nYou are not consistent.\tTu n'es pas cohérent.\nYou are not our friend.\tTu n'es pas notre ami.\nYou are not our friend.\tTu n'es pas notre amie.\nYou are probably wrong.\tTu as probablement tort.\nYou are probably wrong.\tVous avez probablement tort.\nYou are right in a way.\tEn un sens, tu as raison.\nYou are right in a way.\tEn un sens, vous avez raison.\nYou are taller than me.\tTu es plus grand que moi.\nYou are taller than me.\tTu es plus grande que moi.\nYou are taller than me.\tVous êtes plus grand que moi.\nYou are taller than me.\tVous êtes plus grande que moi.\nYou are taller than me.\tVous êtes plus grands que moi.\nYou are taller than me.\tVous êtes plus grandes que moi.\nYou are the chosen one.\tTu es l'élu.\nYou are the chosen one.\tTu es l'élue.\nYou are the chosen one.\tVous êtes l'élu.\nYou are the chosen one.\tVous êtes l'élue.\nYou are very beautiful.\tVous êtes très belle.\nYou aren't replaceable.\tTu n'es pas remplaçable.\nYou aren't replaceable.\tVous n'êtes pas remplaçable.\nYou can go back to bed.\tTu peux retourner au lit.\nYou can go back to bed.\tVous pouvez retourner au lit.\nYou can read this book.\tTu peux lire ce livre.\nYou can read this book.\tVous pouvez lire ce livre.\nYou can take your time.\tTu peux prendre ton temps.\nYou can use my bicycle.\tTu peux utiliser mon vélo.\nYou can use my bicycle.\tVous pouvez utiliser mon vélo.\nYou can use my bicycle.\tVous pouvez utiliser ma bicyclette.\nYou can't believe that.\tTu ne peux pas y croire.\nYou can't believe that.\tVous ne pouvez pas y croire.\nYou can't come with us.\tVous ne pouvez pas venir avec nous.\nYou can't come with us.\tTu ne peux pas venir avec nous.\nYou can't do that here.\tTu ne peux pas faire ça ici.\nYou can't do that here.\tVous ne pouvez pas faire cela ici.\nYou can't go out there.\tTu ne peux pas aller là-dehors.\nYou can't go right now.\tTu ne peux pas y aller maintenant.\nYou can't go right now.\tVous ne pouvez pas y aller maintenant.\nYou can't hate the guy.\tOn ne peut pas détester le type.\nYou can't have the job.\tTu ne peux pas avoir le poste.\nYou can't have the job.\tVous ne pouvez pas avoir le poste.\nYou can't have the job.\tTu ne peux pas avoir la place.\nYou can't have the job.\tVous ne pouvez pas avoir la place.\nYou can't hide forever.\tVous ne pouvez pas vous cacher pour toujours.\nYou can't hypnotize me.\tTu ne peux pas m'hypnotiser.\nYou can't hypnotize me.\tTu ne parviendras pas à m'hypnotiser.\nYou can't hypnotize me.\tVous ne parviendrez pas à m'hypnotiser.\nYou can't hypnotize me.\tVous ne pouvez pas m'hypnotiser.\nYou can't keep me here.\tTu ne peux pas me garder ici.\nYou can't keep me here.\tVous ne pouvez pas me garder ici.\nYou can't keep us here.\tTu ne peux pas nous garder ici.\nYou can't keep us here.\tVous ne pouvez pas nous garder ici.\nYou can't kill us both.\tVous ne pouvez pas nous tuer tous les deux.\nYou can't make us stop.\tTu ne peux pas nous faire nous arrêter.\nYou can't make us stop.\tVous ne pouvez pas nous faire nous arrêter.\nYou can't ride a horse.\tVous ne savez pas monter à cheval.\nYou can't trust anyone.\tOn ne peut se fier à personne.\nYou can't win them all.\tOn ne peut pas l'emporter à chaque fois.\nYou could have drowned.\tVous auriez pu vous noyer !\nYou could have told me.\tTu aurais pu me le dire.\nYou could have told me.\tVous auriez pu me le dire.\nYou could've been hurt.\tTu aurais pu être blessé.\nYou could've been hurt.\tTu aurais pu être blessée.\nYou could've been hurt.\tVous auriez pu être blessée.\nYou could've been hurt.\tVous auriez pu être blessées.\nYou could've been hurt.\tVous auriez pu être blessé.\nYou could've been hurt.\tVous auriez pu être blessés.\nYou deserve to succeed.\tVous méritez de réussir.\nYou didn't have to ask.\tIl n'était pas nécessaire que tu demandes.\nYou didn't have to ask.\tIl n'était pas nécessaire que vous demandiez.\nYou didn't have to lie.\tIl n'était pas nécessaire que tu mentes.\nYou didn't have to lie.\tIl n'était pas nécessaire que vous mentiez.\nYou don't have a fever.\tTu n'as pas de fièvre.\nYou don't have a fever.\tVous n'avez pas de fièvre.\nYou don't have to come.\tTu n'es pas obligée de venir.\nYou don't have to come.\tTu n'es pas obligé de venir.\nYou don't have to come.\tVous n'êtes pas obligée de venir.\nYou don't have to come.\tVous n'êtes pas obligées de venir.\nYou don't have to come.\tVous n'êtes pas obligés de venir.\nYou don't have to come.\tVous n'êtes pas obligé de venir.\nYou don't have to come.\tVous n'êtes pas forcé de venir.\nYou don't have to come.\tVous n'êtes pas forcée de venir.\nYou don't have to come.\tVous n'êtes pas forcées de venir.\nYou don't have to come.\tVous n'êtes pas forcés de venir.\nYou don't have to come.\tTu n'es pas forcée de venir.\nYou don't have to come.\tTu n'es pas forcé de venir.\nYou don't have to sing.\tVous n'êtes pas obligé de chanter.\nYou don't have to sing.\tVous n'êtes pas obligés de chanter.\nYou don't have to sing.\tVous n'êtes pas obligée de chanter.\nYou don't have to sing.\tVous n'êtes pas obligées de chanter.\nYou don't have to sing.\tTu n'es pas obligé de chanter.\nYou don't have to sing.\tTu n'es pas obligée de chanter.\nYou don't have to talk.\tVous n'avez pas besoin de parler.\nYou don't have to talk.\tTu n'as pas besoin de parler.\nYou don't look so well.\tTu n'as pas l'air si bien que ça.\nYou don't look so well.\tVous n'avez pas l'air si bien que ça.\nYou don't need my help.\tVous n'avez pas besoin de mon aide.\nYou don't need my help.\tTu n'as pas besoin de mon aide.\nYou don't need one now.\tVous n'en avez pas besoin d'une, maintenant.\nYou don't need one now.\tTu n'en as pas besoin d'une, maintenant.\nYou don't need to know.\tVous n'avez pas besoin de le savoir.\nYou don't need to know.\tTu n'as pas besoin de le savoir.\nYou don't need to wait.\tIl n'est pas nécessaire que tu attendes.\nYou don't need to wait.\tIl n'est pas nécessaire que vous attendiez.\nYou don't need to wait.\tIl n'est pas nécessaire que tu serves.\nYou don't need to wait.\tIl n'est pas nécessaire que vous serviez.\nYou don't seem so busy.\tVous ne semblez pas si occupés.\nYou don't seem so busy.\tTu n'as pas l'air si occupé.\nYou don't seem so busy.\tVous n'avez pas l'air si occupée.\nYou don't seem so busy.\tTu ne sembles pas si occupée.\nYou don't seem so busy.\tVous ne semblez pas si occupé.\nYou don't seem so busy.\tVous ne semblez pas si occupées.\nYou don't want to know.\tTu ne veux pas savoir.\nYou don't want to know.\tVous ne voulez pas savoir.\nYou don't want to know.\tTu ne veux pas le savoir.\nYou don't want to know.\tVous ne voulez pas le savoir.\nYou have a good memory.\tTu as une bonne mémoire.\nYou have a point there.\tTu tiens là un argument.\nYou have a point there.\tVous tenez là un argument.\nYou have changed a lot.\tTu as beaucoup changé.\nYou have my sympathies.\tVous avez toute ma sympathie.\nYou have my sympathies.\tTu as ma sympathie.\nYou have my sympathies.\tVous avez ma sympathie.\nYou have to be careful.\tIl faut que tu sois prudent.\nYou have to be patient.\tTu dois être patient.\nYou have to be patient.\tVous devez vous montrer patient.\nYou haven't aged a day.\tTu n'a pas pris une ride.\nYou haven't even tried.\tTu n'as même pas essayé.\nYou haven't even tried.\tVous n'avez même pas essayé.\nYou knew I was married.\tTu savais que j'étais mariée.\nYou knew I was married.\tTu savais que j'étais marié.\nYou knew I was married.\tVous saviez que j'étais mariée.\nYou knew I was married.\tVous saviez que j'étais marié.\nYou know I don't dance.\tVous savez que je ne danse pas.\nYou know I don't dance.\tTu sais que je ne danse pas.\nYou know what they say.\tTu sais ce qu'ils disent.\nYou know what they say.\tTu sais ce qu'elles disent.\nYou know what they say.\tTu sais ce qu'on dit.\nYou know what they say.\tVous savez ce qu'ils disent.\nYou know what they say.\tVous savez ce qu'elles disent.\nYou leave me no choice.\tTu ne me laisses aucun choix.\nYou leave me no choice.\tVous ne me laissez aucun choix.\nYou like it, don't you?\tTu aimes cela, n'est-ce pas ?\nYou like it, don't you?\tVous aimez cela, n'est-ce pas ?\nYou look just like him.\tTu lui ressembles exactement.\nYou look just like him.\tTu lui ressembles comme à une goutte d'eau.\nYou look like a baboon.\tTu ressembles à un babouin.\nYou look like your dad.\tTu ressembles à ton père.\nYou made a big mistake.\tTu as commis une grosse erreur.\nYou made a big mistake.\tVous avez commis une grosse erreur.\nYou made a wise choice.\tVous avez fait un choix judicieux.\nYou made a wise choice.\tTu as fait un choix judicieux.\nYou may kiss the bride.\tTu peux embrasser la mariée.\nYou may kiss the bride.\tVous pouvez embrasser la mariée.\nYou may or may not win.\tTu peux gagner ou pas.\nYou may or may not win.\tVous pouvez gagner ou pas.\nYou may use my new car.\tVous pouvez utiliser ma nouvelle voiture.\nYou may use my new car.\tTu peux utiliser ma nouvelle voiture.\nYou might have told me.\tTu aurais pu me le dire.\nYou mind if I join you?\tCela vous dérange-t-il que je me joigne à vous ?\nYou missed the meeting.\tTu as raté la réunion.\nYou missed the meeting.\tTu as loupé le meeting.\nYou must do it at once.\tTu dois le faire immédiatement.\nYou must do it at once.\tVous devez le faire immédiatement.\nYou must do it quickly.\tVous devez le faire vite.\nYou must do it quickly.\tTu dois le faire vite.\nYou must do it quickly.\tIl te faut le faire rapidement.\nYou must do it quickly.\tIl vous faut le faire rapidement.\nYou must do this alone.\tTu dois faire ceci tout seul.\nYou must do this alone.\tTu dois faire ceci seule.\nYou must do this alone.\tVous devez faire ceci toute seule.\nYou must do this alone.\tVous devez faire ceci seul.\nYou must go to bed now.\tTu dois aller au lit maintenant.\nYou must meet with her.\tIl faut que tu la rencontres.\nYou must meet with him.\tIl faut que tu le rencontres.\nYou must quit drinking.\tTu dois arrêter de boire.\nYou must quit drinking.\tTu dois cesser de boire.\nYou must quit drinking.\tVous devez cesser de boire.\nYou must start at once.\tTu dois commencer immédiatement.\nYou must start at once.\tVous devez commencer sur-le-champ.\nYou must work together.\tVous devez travailler ensemble.\nYou need to be careful.\tIl vous faut être prudent.\nYou need to be careful.\tIl vous faut être prudente.\nYou need to be careful.\tIl vous faut être prudents.\nYou need to be careful.\tIl vous faut être prudentes.\nYou need to be careful.\tIl te faut être prudent.\nYou need to be careful.\tIl te faut être prudente.\nYou need to be careful.\tIl faut que tu sois prudent.\nYou need to be careful.\tIl faut que vous soyez prudent.\nYou need to be careful.\tIl faut que vous soyez prudente.\nYou need to be careful.\tIl faut que vous soyez prudents.\nYou need to be careful.\tIl faut que vous soyez prudentes.\nYou need to be careful.\tIl faut que tu sois prudente.\nYou need to study more.\tTu as besoin de plus étudier.\nYou need to study more.\tVous avez besoin de plus étudier.\nYou never get my jokes.\tTu ne comprends jamais mes blagues.\nYou never get my jokes.\tVous ne comprenez jamais mes plaisanteries.\nYou never get my jokes.\tTu ne saisis jamais mes plaisanteries.\nYou never stop, do you?\tVous n'arrêtez jamais, n'est-ce pas ?\nYou never stop, do you?\tTu n'arrêtes jamais, n'est-ce pas ?\nYou never told me that.\tTu ne me l'as jamais dit.\nYou never told me that.\tTu ne m'as jamais dit ça.\nYou never told me that.\tTu ne m'as jamais dit cela.\nYou never told me that.\tVous ne m'avez jamais dit cela.\nYou ought to thank him.\tVous devriez le remercier.\nYou owe Tom an apology.\tTu dois des excuses à Tom.\nYou owe Tom an apology.\tVous devez des excuses à Tom.\nYou people are amazing.\tVous êtes incroyables.\nYou people are amazing.\tVous êtes des gens étonnants.\nYou should be a writer.\tTu devrais être écrivain.\nYou should be a writer.\tVous devriez être écrivain.\nYou should go home now.\tTu devrais aller chez toi, maintenant.\nYou should go home now.\tTu devrais aller chez nous, maintenant.\nYou should go home now.\tVous devriez aller chez vous, maintenant.\nYou should go home now.\tTu devrais aller à la maison, maintenant.\nYou should go home now.\tVous devriez aller à la maison, maintenant.\nYou should know better.\tTu devrais réfléchir.\nYou should know better.\tTu devrais être plus avisé.\nYou should know better.\tTu devrais être plus avisée.\nYou should relax a bit.\tTu devrais te détendre un peu.\nYou should relax a bit.\tVous devriez vous détendre un peu.\nYou should stay in bed.\tTu devrais rester au lit.\nYou should stay in bed.\tVous devriez rester au lit.\nYou should talk to Tom.\tTu devrais parler à Tom.\nYou should visit Kyoto.\tTu devrais visiter Kyoto.\nYou shouldn't be angry.\tTu ne devrais pas être en colère.\nYou shouldn't eat here.\tTu ne devrais pas manger ici.\nYou sound really angry.\tTu as l'air très en colère.\nYou speak good English.\tVous parlez bien anglais.\nYou stay away from her.\tTiens-toi éloignée d'elle !\nYou think you're funny?\tVous pensez être drôle ?\nYou think you're funny?\tVous pensez être drôles ?\nYou think you're funny?\tTu penses être drôle ?\nYou took the wrong key.\tVous vous êtes trompé de clé.\nYou were late for work.\tVous étiez en retard au travail.\nYou were late for work.\tTu étais en retard au travail.\nYou weren't even there.\tTu n'étais même pas là.\nYou weren't even there.\tVous n'étiez même pas là.\nYou weren't even there.\tVous n'y étiez même pas.\nYou weren't even there.\tTu n'y étais même pas.\nYou will soon get well.\tTu seras bientôt sur pieds.\nYou will soon get well.\tVous serez bientôt sur pieds.\nYou won't be the first.\tTu ne seras pas le premier.\nYou won't be the first.\tTu ne seras pas la première.\nYou won't be the first.\tVous ne serez pas le premier.\nYou won't be the first.\tVous ne serez pas la première.\nYou won't believe this.\tTu ne vas pas le croire.\nYou won't believe this.\tTu ne le croiras pas.\nYou won't believe this.\tVous ne le croirez pas.\nYou won't feel a thing.\tVous ne sentirez rien.\nYou won't feel a thing.\tTu ne sentiras rien.\nYou won't go, will you?\tVous ne vous en irez pas, si ?\nYou won't go, will you?\tTu ne t'en iras pas, si ?\nYou won't go, will you?\tVous n'irez pas, si ?\nYou won't go, will you?\tTu n'iras pas, si ?\nYou'd better go by bus.\tTu devrais plutôt aller en bus.\nYou'd better go to bed.\tTu ferais mieux d'aller au lit.\nYou'd better go to bed.\tVous feriez mieux d'aller vous coucher.\nYou'd better leave now.\tVous feriez mieux de partir.\nYou'd better leave now.\tMaintenant, vous feriez mieux de partir.\nYou'd better not do it.\tTu ferais mieux de ne pas le faire.\nYou'd better not do it.\tVous feriez mieux de ne pas le faire.\nYou'd better start now.\tTu ferais mieux de commencer maintenant.\nYou'll be dead someday.\tTu seras mort, un jour.\nYou'll feel better now.\tTu te sentiras mieux maintenant.\nYou'll feel better now.\tVous vous sentirez mieux maintenant.\nYou'll ruin everything.\tTu vas tout foutre en l'air.\nYou'll ruin everything.\tVous allez tout foutre en l'air.\nYou're a nervous wreck.\tTu es nerveusement usé.\nYou're a nervous wreck.\tTu es nerveusement usée.\nYou're a nervous wreck.\tVous êtes nerveusement usé.\nYou're a nervous wreck.\tVous êtes nerveusement usée.\nYou're a wonderful guy.\tTu es une personne merveilleuse.\nYou're a wonderful guy.\tVous êtes une personne merveilleuse.\nYou're a wonderful guy.\tTu es un type génial.\nYou're being malicious.\tTu es médisant.\nYou're cuter than Mary.\tVous êtes plus jolie que Mary.\nYou're cuter than Mary.\tTu es plus mignonne que Mary.\nYou're cuter than Mary.\tTu es plus jolie que Mary.\nYou're driving me nuts.\tTu me rends dingue.\nYou're driving me nuts.\tVous me rendez fou.\nYou're embarrassing me.\tVous me gênez.\nYou're embarrassing me.\tVous me mettez mal à l'aise.\nYou're embarrassing me.\tTu me gênes.\nYou're embarrassing me.\tTu me mets mal à l'aise.\nYou're in grave danger.\tTu es en grand danger.\nYou're in grave danger.\tVous êtes en grand danger.\nYou're making me blush.\tTu me fais rougir.\nYou're making me blush.\tVous me faites rougir.\nYou're not cooperating.\tVous ne coopérez pas.\nYou're not cooperating.\tTu ne coopères pas.\nYou're not fast enough.\tTu n'es pas assez rapide.\nYou're not fast enough.\tVous n'êtes pas assez rapide.\nYou're not fast enough.\tVous n'êtes pas assez rapides.\nYou're not wanted here.\tOn ne veut pas de vous ici.\nYou're not wanted here.\tOn ne veut pas de toi ici.\nYou're on to something.\tVous êtes au courant de quelque chose.\nYou're on to something.\tTu es au courant de quelque chose.\nYou're perfectly right.\tTu as parfaitement raison.\nYou're really annoying.\tTu es vraiment embêtant.\nYou're really annoying.\tVous êtes vraiment embêtant.\nYou're really annoying.\tTu es vraiment embêtante.\nYou're really annoying.\tVous êtes vraiment embêtante.\nYou're really annoying.\tVous êtes vraiment embêtants.\nYou're really annoying.\tVous êtes vraiment embêtantes.\nYou're really gorgeous.\tTu es vraiment magnifique.\nYou're really gorgeous.\tVous êtes vraiment splendides.\nYou're really gorgeous.\tVous êtes vraiment magnifique.\nYou're shy, aren't you?\tTu es timide, n'est-ce pas ?\nYou're shy, aren't you?\tVous êtes timide, n'est-ce pas ?\nYou're smarter than me.\tTu es plus intelligent que moi.\nYou're smarter than me.\tTu es plus intelligente que moi.\nYou're smarter than me.\tVous êtes plus intelligent que moi.\nYou're smarter than me.\tVous êtes plus intelligente que moi.\nYou're smarter than me.\tVous êtes plus intelligents que moi.\nYou're smarter than me.\tVous êtes plus intelligentes que moi.\nYou're such a cute boy.\tTu es un garçon tellement mignon !\nYou're such a mean man.\tTu es un homme si méchant.\nYou're such a pack rat.\tT'es un vrai thésauriseur.\nYou're up to something.\tTu manigances quelque chose.\nYou're very attractive.\tVous êtes très attirant.\nYou're very attractive.\tVous êtes fort attirant.\nYou're very attractive.\tVous êtes très attirante.\nYou're very attractive.\tVous êtes très attirants.\nYou're very attractive.\tVous êtes très attirantes.\nYou're very attractive.\tVous êtes fort attirante.\nYou're very attractive.\tVous êtes fort attirants.\nYou're very attractive.\tVous êtes fort attirantes.\nYou're very attractive.\tTu es fort attirant.\nYou're very attractive.\tTu es fort attirante.\nYou're very attractive.\tTu es très attirant.\nYou're very attractive.\tTu es très attirante.\nYou're very perceptive.\tTu es très perspicace.\nYou're very perceptive.\tVous êtes très perspicace.\nYou're very perceptive.\tVous êtes très perspicaces.\nYou're wasting my time.\tTu gaspilles mon temps.\nYou're wasting my time.\tVous gaspillez mon temps.\nYou're wasting my time.\tTu es en train de gaspiller mon temps.\nYou're wasting my time.\tVous êtes en train de gaspiller mon temps.\nYou've got a black eye.\tTu as un œil au beurre noir.\nYou've got three weeks.\tVous avez trois semaines.\nYou've got three weeks.\tTu as trois semaines.\nYou've got to try this.\tIl faut que tu essaies ça.\nYou've got to try this.\tIl faut que vous essayiez cela.\nYou've made that clear.\tVous avez été clair.\nYou've made your point.\tTu as exprimé ton point de vue.\nYou've made your point.\tVous avez exprimé votre point de vue.\nYou've missed the boat.\tT'as loupé le coche.\nYou've missed the boat.\tVous avez loupé le coche.\nYou've run out of time.\tVotre temps est écoulé.\nYou've run out of time.\tTon temps est écoulé.\nYou've suffered enough.\tTu as assez souffert.\nYou've suffered enough.\tVous avez assez souffert.\nYour French is perfect.\tTon français est parfait.\nYour French is perfect.\tVotre français est parfait.\nYour O's look like A's.\tTes O ressemblent à des A.\nYour answer is correct.\tTa réponse est juste.\nYour answer is correct.\tVotre réponse est juste.\nYour bag is on my desk.\tTon sac à dos est sur mon bureau.\nYour cake is delicious.\tTon gâteau est délicieux.\nYour cat is overweight.\tTa chatte est en surpoids.\nYour cat is overweight.\tVotre chatte est en surpoids.\nYour cat is overweight.\tTon chat est en surpoids.\nYour cat is overweight.\tVotre chat est en surpoids.\nYour hair is beautiful.\tTes cheveux sont beaux.\nYour hair is beautiful.\tVos cheveux sont beaux.\nYour life is in danger.\tVotre vie est en danger.\nYour life is in danger.\tTa vie est en danger.\nYour o's look like a's.\tTes « o » ressemblent à des « a ».\nYour plan sounds great.\tVotre plan semble excellent.\nYour plan sounds great.\tTon plan semble excellent.\nYour socks don't match.\tVos chaussettes sont dépareillées.\nYour socks don't match.\tTes chaussettes sont dépareillées.\n\"Ah\" is an interjection.\t\"Ah\" est une interjection.\n\"Shut up,\" he whispered.\t\"Tais-toi\" murmura-t-il.\nA bear can climb a tree.\tUn ours peut grimper à un arbre.\nA cold wind was blowing.\tUn vent froid soufflait.\nA cup of coffee, please.\tUne tasse de café, s'il vous plaît.\nA fire broke out nearby.\tUn incendie s'est déclaré à proximité.\nA girl can dream, right?\tUne fille a le droit de rêver, non ?\nA good idea came to him.\tIl lui vint une bonne idée.\nA horse passed my house.\tUn cheval passa devant chez moi.\nA horse passed my house.\tUn cheval est passé devant chez moi.\nA little louder, please.\tUn peu plus fort, s'il te plait.\nA little louder, please.\tUn peu plus fort, s'il vous plait.\nA lot of people do that.\tBeaucoup de gens font ça.\nA lot of people do this.\tBeaucoup de gens font ça.\nA mirror reflects light.\tUn miroir reflète la lumière.\nA permanent costs extra.\tUne permanente coûte un supplément.\nA pony is a small horse.\tUn poney est un petit cheval.\nA promise is not enough.\tUne promesse ne suffit pas.\nA square has four sides.\tUn carré a quatre côtés.\nAlcoholism is incurable.\tL'alcoolisme est incurable.\nAll I want is your love.\tTout ce que je veux, c'est ton amour.\nAll I want is your love.\tTout ce que je veux, c'est ton affection.\nAll I want is your love.\tTout ce que je veux, c'est votre amour.\nAll I want is your love.\tTout ce que je veux, c'est votre affection.\nAll my friends like Tom.\tTous mes amis aiment Tom.\nAll my friends say that.\tTous mes amis disent ça.\nAll my friends say that.\tToutes mes amies disent ça.\nAll my friends say that.\tTous mes amis le disent.\nAll my friends say that.\tToutes mes amies le disent.\nAll my homework is done.\tTous mes devoirs sont faits.\nAll of the cake is gone.\tTout le gâteau est parti.\nAll of us know him well.\tOn le connaît tous bien.\nAll of us stared at her.\tNous la fixions tous.\nAll of us stared at her.\tNous la fixions toutes.\nAll of us stared at her.\tNous l'avons toutes fixée.\nAll of us stared at her.\tNous l'avons tous fixée.\nAll of us were homesick.\tTout le monde parmi nous avait le mal du pays.\nAll of you look healthy.\tVous avez tous l'air en bonne santé.\nAll of you look healthy.\tVous avez toutes l'air en bonne santé.\nAll our attempts failed.\tToutes nos tentatives ont échoué.\nAll our food was rotten.\tToute notre nourriture était pourrie.\nAll right. I'll take it.\tTrès bien. Je vais le prendre.\nAll the boxes are empty.\tToutes les caisses sont vides.\nAll the lights went out.\tToutes les lumières s'éteignirent.\nAll the rooms are taken.\tToutes les chambres sont prises.\nAll the rooms are taken.\tToutes les chambres sont occupées.\nAm I being unreasonable?\tSuis-je déraisonnable ?\nAm I on the right track?\tSuis-je sur la bonne voie ?\nAn amputation is needed.\tUne amputation est nécessaire.\nAnimals act on instinct.\tLes animaux sont mus par leur instinct.\nAny child could do that.\tN'importe quel enfant pourrait faire cela.\nAny improvement is good.\tToute amélioration est bonne à prendre.\nAnybody can participate.\tN'importe qui peut participer.\nAnybody can participate.\tTout le monde peut participer.\nApples are red or green.\tLes pommes sont rouges ou vertes.\nAre there any questions?\tY a-t-il des questions ?\nAre there any questions?\tY a-t-il la moindre question ?\nAre there enough chairs?\tY a-t-il suffisamment de chaises ?\nAre these your children?\tSont-ils vos enfants ?\nAre these your children?\tEst-ce que ce sont tes enfants ?\nAre they open on Sunday?\tSont-ils ouverts le dimanche ?\nAre they really friends?\tSont-ils vraiment amis ?\nAre we all going to die?\tAllons-nous toutes mourir ?\nAre we all going to die?\tAllons-nous tous mourir ?\nAre we going for a walk?\tAllons-nous faire une promenade ?\nAre you afraid of death?\tAs-tu peur de la mort ?\nAre you afraid of death?\tAvez-vous peur de la mort ?\nAre you already married?\tEs-tu déjà marié ?\nAre you already married?\tÊtes-vous déjà mariée ?\nAre you already married?\tÊtes-vous déjà mariés ?\nAre you already married?\tEs-tu déjà mariée ?\nAre you already married?\tÊtes-vous déjà mariées ?\nAre you blackmailing me?\tMe fais-tu du chantage ?\nAre you blackmailing me?\tMe faites-vous du chantage ?\nAre you blackmailing me?\tExercez-vous un chantage à mon égard ?\nAre you blackmailing me?\tExerces-tu un chantage à mon égard ?\nAre you blackmailing me?\tÊtes-vous en train de me faire du chantage ?\nAre you blackmailing me?\tEs-tu en train de me faire du chantage ?\nAre you bringing anyone?\tEmmènes-tu qui que ce soit ?\nAre you bringing anyone?\tEmmenez-vous qui que ce soit ?\nAre you doing all right?\tVous portez-vous bien ?\nAre you doing all right?\tTe portes-tu bien ?\nAre you doing all right?\tVas-tu bien ?\nAre you free on Tuesday?\tEs-tu libre le mardi ?\nAre you fully recovered?\tÊtes-vous complètement remis ?\nAre you fully recovered?\tÊtes-vous complètement remise ?\nAre you fully recovered?\tÊtes-vous complètement remises ?\nAre you fully recovered?\tEs-tu complètement remis ?\nAre you fully recovered?\tEs-tu complètement remise ?\nAre you going to school?\tVas-tu à l’école ?\nAre you good at cooking?\tEs-tu bon en cuisine ?\nAre you good at cooking?\tEs-tu bonne en cuisine ?\nAre you good at cooking?\tÊtes-vous bon en cuisine ?\nAre you good at cooking?\tÊtes-vous bons en cuisine ?\nAre you good at cooking?\tÊtes-vous bonne en cuisine ?\nAre you good at cooking?\tÊtes-vous bonnes en cuisine ?\nAre you growing a beard?\tVous laissez-vous pousser la barbe ?\nAre you growing a beard?\tTe laisses-tu pousser la barbe ?\nAre you happy right now?\tEs-tu heureux en ce moment ?\nAre you happy right now?\tEs-tu heureuse en ce moment ?\nAre you happy right now?\tÊtes-vous heureux en ce moment ?\nAre you happy right now?\tÊtes-vous heureuse en ce moment ?\nAre you happy right now?\tÊtes-vous heureuses en ce moment ?\nAre you happy with that?\tEn es-tu content ?\nAre you happy with that?\tEn es-tu contente ?\nAre you happy with that?\tEn êtes-vous content ?\nAre you happy with that?\tEn êtes-vous contente ?\nAre you happy with that?\tEn êtes-vous contents ?\nAre you happy with that?\tEn êtes-vous contentes ?\nAre you here on holiday?\tÊtes-vous ici en vacances ?\nAre you here on holiday?\tEs-tu ici en vacances ?\nAre you here to help us?\tEst-ce que tu es là pour nous aider ?\nAre you here to help us?\tEs-tu ici pour nous aider ?\nAre you here to help us?\tÊtes-vous ici pour nous aider ?\nAre you listening to me?\tEst-ce que tu m'écoutes ?\nAre you listening to me?\tM'écoutes-tu ?\nAre you listening to me?\tEst-ce que vous m'écoutez ?\nAre you listening to me?\tM'écoutez-vous ?\nAre you off your rocker?\tAs-tu pété une durite ?\nAre you off your rocker?\tAvez-vous pété une durite ?\nAre you ready to go out?\tEs-tu prêt à sortir ?\nAre you ready to go out?\tEs-tu prête à sortir ?\nAre you ready to go out?\tÊtes-vous prêt à sortir ?\nAre you ready to go out?\tÊtes-vous prête à sortir ?\nAre you ready to go out?\tÊtes-vous prêts à sortir ?\nAre you ready to go out?\tÊtes-vous prêtes à sortir ?\nAre you referring to me?\tEst-ce que tu parles de moi ?\nAre you referring to me?\tVous faites allusion à moi ?\nAre you referring to me?\tTu fais allusion à moi ?\nAre you still mad at me?\tEs-tu encore en colère après moi ?\nAre you still mad at me?\tÊtes-vous encore en colère après moi ?\nAre you sure about that?\tEn es-tu sûre ?\nAre you sure about that?\tEn êtes-vous sûr ?\nAre you sure about that?\tEn êtes-vous sûres ?\nAre you sure about that?\tEn êtes-vous sûre ?\nAre you sure about that?\tEn es-tu sûr ?\nAre you sure about that?\tEn êtes-vous sûrs ?\nAre you sure about this?\tEs-tu sûr de cela ?\nAre you sure about this?\tEn es-tu sûre ?\nAre you sure about this?\tEn êtes-vous sûr ?\nAre you sure about this?\tEn êtes-vous sûres ?\nAre you sure about this?\tÊtes-vous sûrs de cela ?\nAre you sure about this?\tÊtes-vous sûre de cela ?\nAre you the new teacher?\tÊtes-vous le nouvel enseignant ?\nAre you tired of living?\tEs-tu fatigué de vivre ?\nAre you tired of living?\tÊtes-vous fatigué de vivre ?\nAre you tired of living?\tÊtes-vous fatigués de vivre ?\nAre you tired of living?\tÊtes-vous fatiguée de vivre ?\nAre you tired of living?\tÊtes-vous fatiguées de vivre ?\nAre you tired of living?\tEs-tu fatiguée de vivre ?\nAre you waiting for Tom?\tAttends-tu Tom ?\nAre you waiting for Tom?\tAttendez-vous Tom ?\nAre your parents in now?\tTes parents sont là en ce moment ?\nAren't you feeling well?\tTu ne te sens pas bien ?\nAsk her what she bought.\tDemande-lui ce qu'elle a acheté.\nAsk her what she bought.\tDemandez-lui ce qu'elle a acheté.\nAsk me again in October.\tRedemande-moi ça en octobre.\nAsk me again in October.\tRepose-moi la question en octobre.\nAsk me something easier.\tDemandez-moi quelque chose de plus simple.\nAt least I'll die happy.\tAu moins, je mourrai heureux.\nAtoms are in everything.\tLes atomes sont dans tout.\nAttendance is mandatory.\tLa présence est obligatoire.\nBacteria are everywhere.\tLes bactéries sont partout.\nBe kind to the children.\tSoyez gentils avec les enfants.\nBe nicer to your sister.\tSois plus gentil avec ta sœur.\nBe nicer to your sister.\tSois plus gentille avec ta sœur.\nBe nicer to your sister.\tSoyez plus gentils avec votre sœur.\nBe nicer to your sister.\tSoyez plus gentil avec votre sœur.\nBe nicer to your sister.\tSoyez plus gentille avec votre sœur.\nBe nicer to your sister.\tSoyez plus gentilles avec votre sœur.\nBeautiful day, isn't it?\tIl fait un temps magnifique, n'est-ce pas ?\nBeautiful day, isn't it?\tMagnifique journée, n'est-ce pas ?\nBeauty is but skin deep.\tLa beauté n'est que superficielle.\nBlack cats are bad luck.\tLes chats noirs portent malheur.\nBlame it on the weather.\tRends-en la météo responsable !\nBlame it on the weather.\tRendez-en la météo responsable !\nBoth teams are unbeaten.\tLes deux équipes sont invaincues.\nBring along your friend.\tAmène ton ami.\nBring along your friend.\tAmène ton amie.\nBring along your friend.\tAmenez votre ami.\nBring along your friend.\tAmenez votre amie.\nBring me the dictionary.\tApportez-moi ce dictionnaire s'il vous plaît.\nBring me the phone, Tom.\tApporte-moi le téléphone, Tom.\nBring me the phone, Tom.\tDonne-moi le téléphone, Tom.\nCan I ask you something?\tPuis-je te demander quelque chose ?\nCan I drive the tractor?\tPuis-je conduire le tracteur?\nCan I eat my lunch here?\tPuis-je prendre ici mon déjeuner ?\nCan I get my phone back?\tPuis-je récupérer mon téléphone ?\nCan I get you something?\tPuis-je te ramener quelque chose ?\nCan I get you something?\tPuis-je vous ramener quelque chose ?\nCan I offer you a drink?\tPuis-je vous offrir un verre?\nCan I stay here tonight?\tJe peux rester ici cette nuit ?\nCan I take my shirt off?\tPuis-je ôter ma chemise ?\nCan I take your picture?\tPuis-je vous prendre en photo ?\nCan I take your picture?\tPuis-je te prendre en photo ?\nCan I talk to you a sec?\tPuis-je te parler une seconde ?\nCan I talk to you a sec?\tPuis-je vous parler une seconde ?\nCan I turn on the radio?\tPuis-je allumer la radio ?\nCan I use a credit card?\tPuis-je utiliser une carte de crédit ?\nCan I use a credit card?\tPuis-je faire usage d'une carte de crédit ?\nCan I write it that way?\tOn peut écrire comme ça ?\nCan I write it that way?\tPeut-on écrire comme cela ?\nCan anybody else answer?\tQuelqu'un d'autre peut-il répondre ?\nCan she play the guitar?\tSait-elle jouer de la guitare ?\nCan we afford a new car?\tPouvons-nous nous offrir une nouvelle voiture ?\nCan you do this problem?\tPouvez-vous résoudre ce problème ?\nCan you eat raw oysters?\tPeux-tu manger des huîtres crues ?\nCan you eat raw oysters?\tEs-tu capable de manger des huîtres crues ?\nCan you guess the price?\tDevine le prix ?\nCan you guess the price?\tPouvez-vous deviner le prix?\nCan you help me find it?\tPeux-tu m'aider à le trouver ?\nCan you help me find it?\tPouvez-vous m'aider à le trouver ?\nCan you help me, please?\tPouvez-vous m'aider, s'il vous plait ?\nCan you lend me 500 yen?\tPeux-tu me prêter cinq cents yens ?\nCan you lift this stone?\tPouvez-vous soulever cette pierre ?\nCan you lower the price?\tPouvez-vous baisser le prix ?\nCan you make it on time?\tPeux-tu le faire à temps ?\nCan you make it on time?\tPouvez-vous le faire à temps ?\nCan you open the window?\tPouvez-vous ouvrir la fenêtre ?\nCan you open the window?\tParviens-tu à ouvrir la fenêtre ?\nCan you play the violin?\tSavez-vous jouer du violon ?\nCan you read this kanji?\tPeux-tu lire ce caractère chinois ?\nCan you read this kanji?\tPeux-tu lire ce kanji ?\nCan you read this kanji?\tPouvez-vous lire ce kanji ?\nCan you really not swim?\tNe savez-vous vraiment pas nager ?\nCan you see the picture?\tPouvez-vous voir l'image ?\nCan you stay for dinner?\tPouvez-vous rester pour dîner ?\nCan you swim underwater?\tPeux-tu nager sous l'eau ?\nCan you take on the job?\tPeux-tu te charger du travail ?\nCan't he ride a bicycle?\tNe sait-il pas faire de vélo ?\nCan't you speak English?\tNe pouvez-vous pas parler anglais ?\nCarry on with your work.\tContinuez votre travail.\nCarry the bags upstairs.\tPorte les sacs à l'étage.\nCats don't need collars.\tLes chats n'ont pas besoin de colliers.\nCharge it to my account.\tMettez-le sur mon compte !\nCharge it to my account.\tMets-le sur mon compte !\nChildren are our future.\tLes enfants sont notre avenir.\nChildren play with toys.\tLes enfants jouent avec les jouets.\nChina is a huge country.\tLa Chine est un immense pays.\nChoose a dress you like.\tChoisissez une robe qui vous plaît.\nChoose the one you like.\tChoisis celui qui te plaît.\nClasses start on Monday.\tLes cours commencent lundi.\nClose your eyes, please.\tFermez les yeux, s'il vous plaît.\nCome down from the tree.\tDescends de l'arbre !\nCome down from the tree.\tDescendez de l'arbre !\nCome on in and sit down.\tEntrez et asseyez-vous.\nCome on, answer quickly.\tAllez ! réponds rapidement.\nCorrect me if I'm wrong.\tCorrigez-moi si je me trompe.\nCorrect me if I'm wrong.\tCorrige-moi si je me trompe.\nCould I borrow your car?\tPourrais-je emprunter votre voiture ?\nCould I borrow your car?\tPuis-je emprunter ta voiture ?\nCould I have some water?\tPourrais-je avoir de l'eau ?\nCould I see you tonight?\tPourrais-je te voir ce soir ?\nCould I see you tonight?\tPourrais-je vous voir ce soir ?\nCould I use your pencil?\tPuis-je utiliser votre crayon ?\nCould we meet privately?\tPourrait-on se parler en privé ?\nCould you call me later?\tPourriez-vous m'appeler plus tard ?\nCould you do me a favor?\tPourriez-vous me rendre un service ?\nCould you do me a favor?\tPeux-tu me rendre un service ?\nCould you do me a favor?\tPeux-tu m'accorder une faveur ?\nCould you do me a favor?\tPouvez-vous m'accorder une faveur ?\nCould you pass the salt?\tPouvez-vous me passer le sel ?\nCould you pass the salt?\tPeux-tu me passer le sel ?\nCut the pie into slices.\tCoupe la tarte en parts.\nDays are getting longer.\tLes jours s'allongent.\nDid I ask for your help?\tAi-je demandé ton aide ?\nDid I ask for your help?\tAi-je demandé votre aide ?\nDid I hurt his feelings?\tL'ai-je blessé ?\nDid Tom know what to do?\tTom savait-il quoi faire ?\nDid anybody else see it?\tQui que ce soit d'autre l'a-t-il vu ?\nDid anybody notice this?\tQuiconque l'a-t-il remarqué ?\nDid anyone say anything?\tQuiconque a-t-il dit quoi que ce soit ?\nDid everybody hear that?\tTout le monde a-t-il entendu ça ?\nDid she look in her bag?\tA-t-elle regardé dans son sac ?\nDid they write a letter?\tOnt-ils écrit une lettre ?\nDid you actually see it?\tL'as-tu réellement vu ?\nDid you actually see it?\tL'avez-vous réellement vu ?\nDid you already do that?\tT'as déjà fait ça ?\nDid you buy a new phone?\tAs-tu acheté un nouveau téléphone ?\nDid you clean your room?\tAvais-tu nettoyé la salle ?\nDid you come here alone?\tÊtes-vous venu seul ici ?\nDid you come here alone?\tEs-tu venue seule ici ?\nDid you come here alone?\tÊtes-vous venus seuls ici ?\nDid you come here alone?\tEs-tu venu seul ici ?\nDid you do what I asked?\tAvez-vous fait ce que j'ai demandé ?\nDid you do what I asked?\tAs-tu fait ce que j'ai demandé ?\nDid you enjoy the movie?\tLe film t'a-t-il plu ?\nDid you enjoy the movie?\tLe film vous a-t-il plu ?\nDid you enjoy your meal?\tTon repas t'a-t-il plu ?\nDid you enjoy your meal?\tVotre repas vous a-t-il plu ?\nDid you find your purse?\tAs-tu trouvé ton sac-à-main ?\nDid you find your purse?\tAvez-vous trouvé votre sac-à-main ?\nDid you hear that sound?\tAs-tu entendu ce bruit ?\nDid you hear that sound?\tAvez-vous entendu ce son ?\nDid you mention my book?\tAs-tu parlé de mon livre ?\nDid you mention my book?\tAs-tu mentionné mon livre ?\nDid you mention my book?\tAvez-vous mentionné mon livre ?\nDid you pack any snacks?\tAs-tu emporté le moindre casse-croûte ?\nDid you pack any snacks?\tAvez-vous emporté le moindre casse-croûte ?\nDid you settle the bill?\tAs-tu réglé la note ?\nDid you settle the bill?\tAvez-vous réglé la note ?\nDid you sleep all right?\tAs-tu bien dormi ?\nDid you sleep all right?\tAvez-vous bien dormi ?\nDid you study yesterday?\tAs-tu étudié hier ?\nDid you study yesterday?\tAvez-vous étudié hier ?\nDid you wash your hands?\tEst-ce que tu t'es lavé les mains ?\nDid you write this book?\tTu as écrit ce livre ?\nDid you write this book?\tVous avez écrit ce livre ?\nDid you write this book?\tAvez-vous écrit ce livre ?\nDid you write your name?\tAvez-vous écrit votre nom ?\nDid you write your name?\tAs-tu écrit ton nom ?\nDid your wish come true?\tTon vœu fut-il exaucé ?\nDinner is ready, Father.\tLe dîner est prêt, père.\nDinner smells delicious.\tLe déjeuner a une odeur délicieuse.\nDo I look like I'm busy?\tAi-je l'air d'être occupé ?\nDo I look like I'm busy?\tAi-je l'air d'être occupée ?\nDo I really look so sad?\tAi-je vraiment l'air si triste ?\nDo me a favor, will you?\tRends-moi un service, veux-tu ?\nDo me a favor, will you?\tRendez-moi un service, voulez-vous ?\nDo they have a computer?\tOnt-ils un ordinateur ?\nDo they have a computer?\tDisposent-ils d'un ordinateur ?\nDo you accept Visa card?\tAcceptez-vous les cartes Visa ?\nDo you feel like eating?\tAs-tu envie de manger ?\nDo you feel like eating?\tAvez-vous envie de manger ?\nDo you guys need a lift?\tAvez-vous besoin d'un chauffeur, les mecs ?\nDo you guys need a ride?\tAvez-vous besoin d'un chauffeur, les mecs ?\nDo you have a boyfriend?\tAs-tu un petit ami ?\nDo you have a boyfriend?\tAvez-vous un petit ami ?\nDo you have a cellphone?\tAs-tu un natel ?\nDo you have a cellphone?\tAvez-vous un natel ?\nDo you have a cellphone?\tAs-tu un portable ?\nDo you have a cellphone?\tAvez-vous un portable ?\nDo you have a cellphone?\tAs-tu un GSM ?\nDo you have a cellphone?\tAvez-vous un GSM ?\nDo you have a cellphone?\tAs-tu un téléphone mobile ?\nDo you have a cellphone?\tAvez-vous un téléphone mobile ?\nDo you have a timetable?\tAvez-vous un programme ?\nDo you have any aspirin?\tAvez-vous de l'aspirine ?\nDo you have any aspirin?\tAs-tu de l'aspirine ?\nDo you have any in blue?\tEn avez-vous en bleu ?\nDo you have any pencils?\tAs-tu des crayons ?\nDo you have any pencils?\tAvez-vous des crayons ?\nDo you have any sisters?\tAvez-vous des sœurs ?\nDo you have any tattoos?\tAs-tu le moindre tatouage ?\nDo you have enough time?\tDisposez-vous de suffisamment de temps ?\nDo you have enough time?\tAs-tu assez de temps ?\nDo you have the vaccine?\tDisposez-vous du vaccin ?\nDo you know Tom Jackson?\tConnais-tu Tom Jackson ?\nDo you know Tom Jackson?\tConnaissez-vous Tom Jackson ?\nDo you know Tom Jackson?\tEst-ce que vous connaissez Tom Jackson ?\nDo you know Tom Jackson?\tEst-ce que tu connais Tom Jackson ?\nDo you know anyone here?\tConnaissez-vous quiconque, ici ?\nDo you know anyone here?\tConnais-tu quiconque, ici ?\nDo you know anyone here?\tConnais-tu qui que ce soit, ici ?\nDo you know anyone here?\tConnaissez-vous qui que ce soit, ici ?\nDo you know his brother?\tConnais-tu son frère ?\nDo you know his brother?\tConnaissez-vous son frère ?\nDo you know what I mean?\tComprenez-vous ce que je veux dire ?\nDo you know what I mean?\tVous voyez ce que je veux dire ?\nDo you know what I mean?\tVoyez-vous ce que je veux dire ?\nDo you know who made it?\tSavez-vous qui l'a fait ?\nDo you like French wine?\tAimes-tu le vin français ?\nDo you like French wine?\tAimez-vous le vin français ?\nDo you like the corsage?\tAimes-tu le chemisier?\nDo you like this blouse?\tAimez-vous ce chemisier ?\nDo you like this garden?\tVous aimez ce jardin ?\nDo you like this garden?\tAimez-vous ce jardin ?\nDo you like to be alone?\tAimez-vous être seul ?\nDo you like to be alone?\tAimes-tu être seul ?\nDo you live around here?\tVis-tu dans le coin ?\nDo you live around here?\tVivez-vous dans les environs ?\nDo you live in the city?\tHabites-tu dans la ville ?\nDo you live in the city?\tRésides-tu en ville ?\nDo you live in the city?\tHabites-tu en ville ?\nDo you love your mother?\tAimes-tu ta mère ?\nDo you love your mother?\tEst-ce que tu aimes ta mère ?\nDo you love your mother?\tEst-ce que vous aimez votre mère ?\nDo you need a ride home?\tTe faut-il un chauffeur pour rentrer chez toi ?\nDo you need a ride home?\tVous faut-il un chauffeur pour rentrer chez vous ?\nDo you play tennis well?\tEst-ce que tu joues bien au tennis ?\nDo you play tennis well?\tJoues-tu bien au tennis ?\nDo you play tennis well?\tJouez-vous bien au tennis ?\nDo you really mean that?\tVeux-tu vraiment dire ça ?\nDo you really mean that?\tVous voulez vraiment dire cela ?\nDo you recognize anyone?\tReconnaissez-vous quiconque ?\nDo you recognize anyone?\tReconnaissez-vous qui que ce soit ?\nDo you recognize anyone?\tReconnais-tu quiconque ?\nDo you recognize anyone?\tReconnais-tu qui que ce soit ?\nDo you sell sport shoes?\tVendez-vous des chaussures de sport ?\nDo you shower every day?\tTe douches-tu quotidiennement ?\nDo you shower every day?\tVous douchez-vous quotidiennement ?\nDo you talk to your dog?\tParlez-vous à votre chien ?\nDo you talk to your dog?\tParles-tu à ton chien ?\nDo you think I'm joking?\tPenses-tu que je plaisante ?\nDo you think I'm joking?\tCroyez-vous que je plaisante ?\nDo you think I'm pretty?\tMe trouves-tu mignon ?\nDo you think I'm pretty?\tMe trouves-tu mignonne ?\nDo you think I'm pretty?\tPensez-vous que je sois mignon ?\nDo you think I'm pretty?\tPensez-vous que je sois mignonne ?\nDo you think I'm stupid?\tVous me prenez pour un idiot ?\nDo you think I'm stupid?\tPenses-tu que je sois idiot ?\nDo you think I'm stupid?\tPensez-vous que je sois idiot ?\nDo you think Tom saw us?\tPenses-tu que Tom nous a vus ?\nDo you think Tom saw us?\tPensez-vous que Tom nous a vus ?\nDo you translate lyrics?\tTraduis-tu des paroles de chansons ?\nDo you want fruit juice?\tTu veux un jus de fruit ?\nDo you want me to drive?\tVeux-tu que je conduise ?\nDo you want me to leave?\tVeux-tu que je parte ?\nDo you want me to leave?\tVoulez-vous que je parte ?\nDo you want some coffee?\tVoulez-vous du café ?\nDo you want some coffee?\tVeux-tu du café ?\nDo you want to buy this?\tVeux-tu acheter ceci ?\nDo you want to buy this?\tVoulez-vous acheter ceci ?\nDo you want to go first?\tVeux-tu y aller en premier ?\nDo you want to go first?\tVoulez-vous y aller en premier ?\nDo you want to see more?\tVoulez-vous en voir davantage ?\nDo you want to see more?\tVeux-tu en voir davantage ?\nDo you want to sit down?\tVoulez-vous vous asseoir ?\nDo you want to sit down?\tVeux-tu t'asseoir ?\nDo you want to touch it?\tVeux-tu le toucher ?\nDo you want to touch it?\tVoulez-vous le toucher ?\nDo you want to use mine?\tVeux-tu utiliser le mien ?\nDo you want to use mine?\tVeux-tu utiliser la mienne ?\nDo you want to use mine?\tVoulez-vous utiliser le mien ?\nDo you want to use mine?\tVoulez-vous utiliser la mienne ?\nDo you want to watch TV?\tVeux-tu regarder la télévision ?\nDo you want to watch TV?\tVoulez-vous regarder la télévision ?\nDo you watch television?\tRegardez-vous la télévision ?\nDoes Tom believe in God?\tTom croit-il en Dieu ?\nDoes Tom want something?\tEst-ce que Tom veut quelque chose ?\nDoes anyone want a beer?\tQuiconque veut-il une bière ?\nDoes he have many books?\tA-t-il beaucoup de livres ?\nDoes she like chocolate?\tAime-t-elle le chocolat ?\nDoes she play the piano?\tJoue-t-elle du piano ?\nDon't ask any questions.\tNe pose aucune question.\nDon't ask any questions.\tNe posez aucune question.\nDon't ask me that again.\tNe me le redemande pas.\nDon't ask me to do that.\tNe me demande pas de faire ça.\nDon't ask me to do that.\tNe me demandez pas de faire ça.\nDon't ask me to do this.\tNe me demande pas de faire ça.\nDon't ask me to do this.\tNe me demandez pas de faire ça.\nDon't be so pessimistic.\tNe sois pas si pessimiste !\nDon't be so pessimistic.\tNe soyez pas si pessimiste !\nDon't be too hard on me.\tNe sois pas trop dur avec moi.\nDon't be too hard on me.\tNe soyez pas trop dur avec moi.\nDon't bother getting up.\tNe t'embête pas à te lever.\nDon't bother getting up.\tNe vous embêtez pas à vous lever.\nDon't bother to call me.\tNe t'embête pas à m'appeler.\nDon't climb up the wall.\tNe grimpe pas au mur.\nDon't come into my room.\tNe rentrez pas dans ma chambre.\nDon't count on his help.\tNe compte pas sur son aide.\nDon't cross this bridge.\tNe traverse pas ce pont.\nDon't cross this bridge.\tNe traversez pas ce pont.\nDon't do anything silly.\tNe faites rien de stupide.\nDon't drag me into this.\tNe m'entraîne pas là-dedans.\nDon't drag me into this.\tNe m'entraînez pas là-dedans.\nDon't drink any alcohol.\tNe buvez aucun alcool !\nDon't drink any alcohol.\tNe bois aucun alcool !\nDon't eat between meals.\tNe mange pas entre les repas.\nDon't ever say her name.\tNe prononce jamais son nom.\nDon't ever say her name.\tNe prononcez jamais son nom.\nDon't forget the drinks.\tN'oubliez pas les boissons !\nDon't forget the drinks.\tN'oublie pas les boissons !\nDon't forget the ticket.\tN'oublie pas le billet.\nDon't forget to call me.\tN'oublie pas de m'appeler.\nDon't forget your money.\tN'oubliez pas votre argent.\nDon't forget your phone.\tN'oubliez pas votre téléphone !\nDon't forget your phone.\tN'oublie pas ton téléphone !\nDon't forget your stuff.\tN'oublie pas tes trucs.\nDon't forget your stuff.\tN'oublie pas tes affaires.\nDon't forget your stuff.\tN'oubliez pas vos trucs.\nDon't forget your stuff.\tN'oubliez pas vos affaires.\nDon't give me that look.\tNe me jette pas ce regard !\nDon't give me that look.\tNe me jetez pas ce regard !\nDon't give up the fight.\tNe lâche pas !\nDon't give up the fight.\tN'abandonne pas le combat !\nDon't give up the fight.\tN'abandonnez pas le combat !\nDon't go out after dark.\tN'y va pas après la nuit tombée.\nDon't hurt anybody else.\tNe fais de mal à personne d'autre !\nDon't hurt anybody else.\tNe faites de mal à personne d'autre !\nDon't let him read this.\tNe le laisse pas lire ça.\nDon't let it get to you.\tNe le laissez pas vous approcher !\nDon't let it get to you.\tNe le laisse pas t'approcher !\nDon't look into the box.\tNe regarde pas dans la boîte.\nDon't look into the box.\tNe regardez pas dans la boîte.\nDon't make abrupt moves.\tNe fais pas de mouvements brusques.\nDon't make me shoot you.\tNe m'oblige pas à te tirer dessus.\nDon't make me shoot you.\tNe m'obligez pas à vous tirer dessus.\nDon't make me wait long.\tNe me fais pas attendre longtemps.\nDon't make me wait long.\tNe me faites pas attendre longtemps.\nDon't make stupid jokes.\tNe fais pas de plaisanteries stupides !\nDon't make stupid jokes.\tNe faites pas de plaisanteries stupides !\nDon't mess up my system.\tNe fiche pas mon système en l'air !\nDon't mess up my system.\tNe fichez pas mon système en l'air !\nDon't pull the plug yet.\tNe retirez pas encore la prise !\nDon't pull the plug yet.\tNe retire pas encore la prise !\nDon't put it on my desk.\tNe le mets pas sur mon bureau.\nDon't put it on my desk.\tPas sur mon bureau !\nDon't read in this room.\tNe lis pas dans cette chambre.\nDon't read in this room.\tNe lis pas dans cette pièce.\nDon't read in this room.\tNe lisez pas dans cette pièce.\nDon't sit on that bench.\tNe vous asseyez pas sur ce banc.\nDon't speak in Japanese.\tNe parle pas japonais.\nDon't state the obvious.\tN'assénez pas des évidences !\nDon't state the obvious.\tN'assène pas des évidences !\nDon't stay up all night.\tNe restez pas debout toute la nuit !\nDon't stay up all night.\tNe reste pas debout toute la nuit !\nDon't take it out on me.\tNe t'en prends pas à moi.\nDon't take it out on me.\tNe vous en prenez pas à moi.\nDon't talk during class.\tNe parlez pas en cours !\nDon't talk during class.\tNe parle pas en cours !\nDon't tell Tom anything.\tNe dites rien à Tom.\nDon't tell Tom anything.\tNe dis rien à Tom.\nDon't tell her about it.\tNe lui en parle pas.\nDon't tell her about it.\tNe lui dis rien à ce propos.\nDon't tell her about it.\tNe lui en dis rien.\nDon't tell me he's dead.\tNe me dis pas qu'il est mort.\nDon't touch me, you pig!\tNe me touchez pas, espèce de porc !\nDon't touch me, you pig!\tNe me touche pas, espèce de porc !\nDon't touch that button!\tNe touche pas à ce bouton !\nDon't touch that button!\tNe touchez pas à ce bouton !\nDon't touch the flowers.\tNe touchez pas les fleurs.\nDon't try to get up yet.\tNe tente pas encore de te lever !\nDon't try to get up yet.\tNe tentez pas encore de vous lever !\nDon't use his real name.\tN'utilise pas son vrai nom.\nDon't use his real name.\tN'utilisez pas son vrai nom.\nDon't walk on the grass.\tNe marchez pas sur la pelouse.\nDon't waste your breath.\tNe gaspille pas ta salive.\nDon't waste your breath.\tNe gaspillez pas votre salive.\nDon't watch too much TV.\tNe regardez pas trop la télé !\nDon't watch too much TV.\tNe regarde pas trop la télé !\nDon't worry. I'll do it.\tNe t'inquiète pas. Je le ferai.\nDon't worry. I'll do it.\tNe vous inquiétez pas. Je m'en charge.\nDon't you do this to me.\tNe me fais pas ça !\nDon't you do this to me.\tNe me faites pas ça !\nDon't you ever call Tom?\tN'appelles-tu jamais Tom ?\nDon't you feel anything?\tNe sens-tu rien ?\nDon't you hang up on me.\tNe me raccrochez pas au nez !\nDon't you hang up on me.\tNe me raccroche pas au nez !\nDon't you know his name?\tNe connais-tu pas son nom ?\nDon't you know his name?\tNe sais-tu pas son nom ?\nDon't you know his name?\tNe savez-vous pas son nom ?\nDon't you know his name?\tNe connaissez-vous pas son nom ?\nDon't you know who I am?\tNe sais-tu pas qui je suis ?\nDon't you know who I am?\tNe savez-vous pas qui je suis ?\nDon't you like baseball?\tN'aimez-vous pas le baseball ?\nDon't you like swimming?\tN'aimes-tu pas nager ?\nDon't you like swimming?\tN'aimez-vous pas nager ?\nDon't you pay attention?\tTu ne peux pas faire attention?\nDraw a line from A to B.\tTracez une ligne de A à B.\nDraw a line from A to B.\tTrace une ligne de A à B.\nEat up all your spinach!\tMange tous tes épinards.\nEurope is not a country.\tL'Europe n'est pas un pays.\nEven I don't understand.\tMême moi je ne comprends pas.\nEven a child knows that.\tMême un enfant sait cela.\nEven children know that.\tMême les enfants savent cela.\nEvery client has rights.\tTout client a des droits.\nEvery man has his price.\tTout le monde s'achète.\nEvery man has his price.\tChaque homme a son prix.\nEverybody here knows me.\tTout le monde ici me connaît.\nEverybody needs a hobby.\tTout le monde a besoin d'un passe-temps.\nEverybody's in position.\tTout le monde est en place.\nEverybody's still there.\tTout le monde est encore là.\nEveryone knows everyone.\tTout le monde connaît tout le monde.\nEveryone knows his name.\tTout le monde connaît son nom.\nEveryone looked puzzled.\tTout le monde eut l'air perplexe.\nEveryone looked puzzled.\tTout le monde a eu l'air perplexe.\nEveryone looked shocked.\tTout le monde avait l'air choqué.\nEveryone looked unhappy.\tTout le monde avait l'air mécontent.\nEveryone looks confused.\tTout le monde a l'air désorienté.\nEveryone makes mistakes.\tTout le monde commet des fautes.\nEveryone makes mistakes.\tTout le monde commet des erreurs.\nEveryone seems to agree.\tTout le monde semble être d'accord.\nEveryone seems to agree.\tTout le monde semble s'accorder.\nEveryone smiled but Tom.\tTout le monde sourit sauf Tom.\nEveryone smiled but Tom.\tTout le monde a souri sauf Tom.\nEveryone was speechless.\tTout le monde était sans voix.\nEveryone's still asleep.\tTout le monde est encore endormi.\nEverything here is mine.\tTout ce qu'il y a là est à moi.\nEverything is connected.\tTout est connecté.\nEverything's very cheap.\tTout est très bon marché.\nEverything's very cheap.\tTout n'est vraiment pas cher.\nExcuse me. May I get by?\tExcusez-moi. Puis-je passer ?\nExperience is important.\tL'expérience est importante.\nFashions change quickly.\tLes modes changent rapidement.\nFather has gone fishing.\tPère est allé à la pêche.\nFather is angry with me.\tPère est en colère contre moi.\nFather is having a bath.\tPapa prend un bain.\nFather is in his office.\tLe père est dans son bureau.\nFather stopped drinking.\tPère a arrêté de boire.\nFill the tires with air.\tRemplis les pneumatiques d'air.\nForewarned is forearmed.\tUn homme averti en vaut deux.\nFresh food is wonderful.\tLa nourriture fraîche est merveilleuse.\nGet control of yourself.\tPrends le contrôle de toi-même !\nGet it out of the house.\tExtirpe-le de la maison !\nGet it out of the house.\tExtirpez-le de la maison !\nGet me something to eat.\tTrouve-moi quelque chose à manger.\nGet me something to eat.\tTrouvez-moi quelque chose à manger.\nGet me something to eat.\tDégote-moi quelque chose à manger.\nGet me something to eat.\tDégotez-moi quelque chose à manger.\nGet me something to eat.\tProcurez-moi quelque chose à manger.\nGet me something to eat.\tProcure-moi quelque chose à manger.\nGet out of here quickly!\tVite, sors d'ici !\nGet out of here quickly!\tVite, sortez d'ici !\nGet some help, will you?\tVa quérir de l'aide, veux-tu ?\nGet some help, will you?\tAllez quérir de l'aide, voulez-vous ?\nGet some help, will you?\tFais-toi aider, veux-tu ?\nGet some help, will you?\tFaites-vous aider, voulez-vous ?\nGive Tom back his money.\tRends son argent à Tom.\nGive me a cup of coffee.\tDonne-moi une tasse de café.\nGive me a cup of coffee.\tDonnez-moi une tasse de café.\nGive me a drink, please.\tDonnez-moi quelque chose à boire, je vous prie !\nGive me a drink, please.\tDonne-moi quelque chose à boire, je te prie !\nGive me a glass of milk.\tDonnez-moi un verre de lait.\nGive me a ring tomorrow.\tTéléphone-moi demain.\nGive me a second chance.\tDonne-moi une seconde chance.\nGive me all the details.\tDonnez-moi tous les détails.\nGive me another example.\tDonnez-moi un autre exemple.\nGive me back my glasses.\tRedonne-moi mes lunettes.\nGive me one good reason.\tDonne-moi une bonne raison.\nGive me one good reason.\tDonnez-moi une bonne raison.\nGive me one good reason.\tFournis-moi une bonne raison.\nGive me one good reason.\tFournissez-moi une bonne raison.\nGive us a ride downtown.\tConduis-nous en ville.\nGive us a ride downtown.\tConduisez-nous en ville.\nGlass is made from sand.\tLe verre est fait à partir de sable.\nGo and get me some milk.\tVa me prendre du lait !\nGo and get me some wine.\tVa me chercher du vin.\nGo get a drink of water.\tVa chercher un verre d'eau.\nGood morning, everybody.\tBonjour tout le monde.\nGoodbyes are always sad.\tLes adieux sont toujours tristes.\nGreat minds think alike.\tLes grands esprits se rencontrent.\nGreat weather, isn't it?\tTemps magnifique, n'est-ce pas ?\nGreat weather, isn't it?\tUn temps magnifique, n'est-ce pas ?\nGuess what that cost me.\tDevine combien ça m'a coûté?\nHas Tom always been fat?\tTom a-t'il toujours été gros ?\nHas Tom always been fat?\tTom a-t'il toujours été gras ?\nHas anyone asked for me?\tOn m'a demandé ?\nHas the climate changed?\tLe climat a-t-il changé ?\nHas the fever gone down?\tEst-ce que la fièvre est tombée ?\nHave I kept you waiting?\tVous ai-je fait attendre ?\nHave I kept you waiting?\tT'ai-je fait attendre ?\nHave something to drink.\tPrenez quelque chose à boire !\nHave something to drink.\tPrends quelque chose à boire !\nHave they made progress?\tElles ont fait des progrès ?\nHave they made progress?\tOnt-elles fait des progrès ?\nHave we ever met before?\tNous sommes-nous déjà rencontrés auparavant ?\nHave you already chosen?\tAvez-vous déjà choisi ?\nHave you been to Boston?\tAs-tu été à Boston ?\nHave you been to Boston?\tAvez-vous été à Boston ?\nHave you been waited on?\tS'est-on occupé de vous ?\nHave you called her yet?\tL'as-tu déjà appelée ?\nHave you called her yet?\tL'avez-vous déjà appelée ?\nHave you called him yet?\tL'as-tu déjà appelé ?\nHave you called him yet?\tL'avez-vous déjà appelé ?\nHave you chosen a topic?\tAs-tu choisi un thème ?\nHave you chosen a topic?\tAs-tu choisi un sujet ?\nHave you got some money?\tAvez-vous un peu d'argent ?\nHave you heard from her?\tAs-tu entendu parler d'elle ?\nHave you heard from him?\tAs-tu eu de ses nouvelles ?\nHave you heard from him?\tAvez-vous eu de ses nouvelles ?\nHave you lost your mind?\tAs-tu perdu l'esprit ?\nHave you lost your mind?\tAvez-vous perdu l'esprit ?\nHave you met anyone yet?\tAs-tu déjà rencontré qui que ce soit ?\nHave you met anyone yet?\tAvez-vous déjà rencontré qui que ce soit ?\nHave you seen my camera?\tAs-tu vu mon appareil photo ?\nHave you written a book?\tAvez-vous écrit un livre ?\nHaven't you eaten lunch?\tN'avez-vous pas déjeuné ?\nHaven't you eaten lunch?\tN'avez-vous pas dîné ?\nHawks are birds of prey.\tLes faucons sont des oiseaux de proie.\nHe abandoned his family.\tIl a abandonné sa famille.\nHe abused my confidence.\tIl a abusé de ma confiance.\nHe abuses his authority.\tIl abuse de son autorité.\nHe accepted reluctantly.\tIl a accepté à contrecœur.\nHe acted like a lunatic.\tIl a été frappé de démence.\nHe added to his savings.\tIl a augmenté son épargne.\nHe and I are classmates.\tLui et moi sommes camarades de classe.\nHe apologized profusely.\tIl se confondit en excuses.\nHe apologized profusely.\tIl s'est confondu en excuses.\nHe asked for more money.\tIl demanda plus d'argent.\nHe asked for more money.\tIl a demandé plus d'argent.\nHe asked for some money.\tIl demanda un peu d'argent.\nHe asked us to help him.\tIl nous a demandé de l'aider.\nHe ate all of the apple.\tIl mangea toute la pomme.\nHe barely escaped death.\tIl a échappé à la mort de justesse.\nHe behaved like a child.\tIl s'est comporté comme un enfant.\nHe behaved like a child.\tIl s'est conduit comme un enfant.\nHe behaved like a child.\tIl s'est conduit comme un gamin.\nHe behaves like a child.\tIl se comporte comme un enfant.\nHe betrayed his country.\tIl trahit son pays.\nHe bought her a sweater.\tIl lui a acheté un chandail.\nHe bought himself a dog.\tIl s'est acheté un chien.\nHe bowed to his teacher.\tIl s'inclina devant son professeur.\nHe broke his leg skiing.\tIl s'est cassé la jambe en skiant.\nHe burned himself badly.\tIl s'est gravement brulé.\nHe called her bad names.\tIl l'a injuriée.\nHe came back after dark.\tIl est revenu après le crépuscule.\nHe came back from China.\tIl est revenu de Chine.\nHe came back from China.\tIl revint de Chine.\nHe came back from China.\tIl est rentré de Chine.\nHe came here to help me.\tIl est venu ici pour m'aider.\nHe came out of the room.\tIl sortit de la chambre.\nHe can swim like a fish.\tIl est capable de nager comme un poisson.\nHe can swim like a fish.\tIl sait nager comme un poisson.\nHe can't cook very well.\tIl ne sait pas très bien cuisiner.\nHe can't know the truth.\tIl ne peut pas connaître la vérité.\nHe carried out his plan.\tIl a mis son plan à exécution.\nHe caught a large trout.\tIl captura une grosse truite.\nHe caught a large trout.\tIl attrapa une grosse truite.\nHe caught a large trout.\tIl a capturé une grosse truite.\nHe caught a large trout.\tIl a attrapé une grosse truite.\nHe caught me by the arm.\tIl me prit par le bras.\nHe chose them at random.\tIl les a choisis au hasard.\nHe cleared out his desk.\tIl a fait du vide sur son bureau.\nHe concentrated on that.\tIl se concentra là dessus.\nHe continued to mock me.\tIl continua à se moquer de moi.\nHe couldn't get the job.\tIl n'a pas pu avoir le poste.\nHe cut down on drinking.\tIl a diminué la boisson.\nHe decided to marry her.\tIl décida de l'épouser.\nHe did it for the money.\tIl a fait cela pour l'argent.\nHe did it for the money.\tIl l'a fait pour l'argent.\nHe did it for the money.\tIl l'a fait pour le fric.\nHe did it in good faith.\tIl l'a fait de bonne foi.\nHe did not get up early.\tIl ne s'est pas levé tôt.\nHe did not sleep a wink.\tIl n'a pas fermé l'œil.\nHe did not speak at all.\tIl n'a pas parlé du tout.\nHe did not speak at all.\tIl n'a absolument rien dit.\nHe did what he was told.\tIl fit ce qu'on lui dit.\nHe did what he was told.\tIl a fait ce qu'on lui a dit.\nHe didn't keep his word.\tIl n'a pas tenu sa parole.\nHe didn't keep his word.\tIl n'a pas tenu parole.\nHe didn't want to do it.\tIl ne voulut pas le faire.\nHe didn't want to do it.\tIl n'a pas voulu le faire.\nHe didn't want to leave.\tIl ne voulait pas partir.\nHe does not like tennis.\tIl n'aime pas le tennis.\nHe does nothing but cry.\tIl ne fait que pleurer.\nHe does well in physics.\tIl est bon en physique.\nHe doesn't drink coffee.\tIl ne boit pas de café.\nHe doesn't eat raw fish.\tIl ne mange pas de poisson cru.\nHe doesn't have to know.\tIl n'est pas nécessaire qu'il sache.\nHe doesn't know English.\tIl ne sait pas l'anglais.\nHe doesn't like oranges.\tIl n'aime pas les oranges.\nHe doesn't like to lose.\tIl n'aime pas perdre.\nHe doesn't listen to me.\tIl ne m'écoute pas.\nHe doesn't look his age.\tIl ne fait pas son âge.\nHe doesn't need to know.\tIl n'est pas nécessaire qu'il sache.\nHe doesn't need to work.\tIl n'a pas besoin de travailler.\nHe doesn't seem to care.\tIl ne semble pas s'en soucier.\nHe draws straight lines.\tIl trace des lignes droites.\nHe drinks too much beer.\tIl boit trop de bière.\nHe dropped to his knees.\tIl est tombé à genoux.\nHe drowned in the river.\tIl s'est noyé dans la rivière.\nHe earns a lot of money.\tIl gagne beaucoup d'argent.\nHe enjoyed those visits.\tIl prenait plaisir à ces visites.\nHe finally got his wish.\tIl a finalement obtenu ce qu'il voulait.\nHe fought until the end.\tIl se battit jusqu'à la fin.\nHe fought until the end.\tIl se battit jusqu'au bout.\nHe fought until the end.\tIl s'est battu jusqu'à la fin.\nHe fought until the end.\tIl s'est battu jusqu'au bout.\nHe found out the secret.\tIl découvrit le secret.\nHe found out the secret.\tIl a découvert le secret.\nHe gave me a stern look.\tIl me jeta un regard sévère.\nHe gave the child a toy.\tIl a donné un jouet à l'enfant.\nHe goes there every day.\tIl va là-bas tous les jours.\nHe got across the river.\tIl a traversé la rivière.\nHe got across the river.\tIl a passé la rivière.\nHe got across the river.\tIl traversa le fleuve.\nHe got lost in the city.\tIl s'est perdu en ville.\nHe got tired of reading.\tIl est fatigué de lire.\nHe got tired of reading.\tIl commence à en avoir assez de lire.\nHe got what he deserved.\tIl n'a que ce qu'il mérite.\nHe had a blue jacket on.\tIl portait une veste bleue.\nHe had to carry the bag.\tIl dut porter le sac.\nHe happened to be there.\tIl est arrivé là par hasard.\nHe has a lot of hobbies.\tIl a de nombreux passe-temps.\nHe has a pleasant voice.\tIl a une voix agréable.\nHe has a sense of humor.\tIl a le sens de l'humour.\nHe has a test next week.\tIl a un examen la semaine prochaine.\nHe has a tight schedule.\tIl a un horaire chargé.\nHe has already gone out.\tIl est déjà sorti.\nHe has already said yes.\tIl a déjà dit oui.\nHe has bought a new car.\tIl a acheté une nouvelle voiture.\nHe has come from Boston.\tIl est venu de Boston.\nHe has enough willpower.\tIl dispose de suffisamment de volonté.\nHe has gone to Hokkaido.\tIl est allé à Hokkaïdo.\nHe has no eye for women.\tIl n'a pas d'yeux pour les femmes.\nHe has no more strength.\tIl n'a plus de force.\nHe has seen better days.\tIl a vu de meilleurs jours.\nHe has to speak English.\tIl doit parler anglais.\nHe has written a letter.\tIl a écrit une lettre.\nHe hasn't done anything.\tIl n'a rien fait.\nHe is Japanese by birth.\tIl est japonais de naissance.\nHe is a bit of a coward.\tIl est quand même un peu timide.\nHe is a famous composer.\tC'est un célèbre compositeur.\nHe is a friendly person.\tC'est une personne sympathique.\nHe is a great scientist.\tC'est un grand scientifique.\nHe is a highly paid man.\tC'est un homme très bien payé.\nHe is a man of his word.\tC'est un homme de parole.\nHe is a man of his word.\tC'est un homme qui tient toujours ses promesses.\nHe is a medical student.\tIl est étudiant en médecine.\nHe is a sort of painter.\tC'est une sorte de peintre.\nHe is a tennis champion.\tC'est un champion de tennis.\nHe is at home in France.\tIl est chez lui en France.\nHe is boiling with rage.\tIl bout de colère.\nHe is doing a super job.\tIl fait un super boulot.\nHe is drawing a picture.\tIl est en train de dessiner une image.\nHe is eager to go there.\tIl désire ardemment s'y rendre.\nHe is eager to go there.\tIl est impatient de s'y rendre.\nHe is eager to go there.\tIl désire ardemment y aller.\nHe is eager to go there.\tIl est impatient d'y aller.\nHe is equal to the task.\tIl est à la hauteur de la tâche.\nHe is fluent in Chinese.\tIl parle couramment le chinois.\nHe is fluent in English.\tIl parle anglais couramment.\nHe is fond of adventure.\tIl aime l'aventure.\nHe is full of new ideas.\tIl est plein de nouvelles idées.\nHe is hated by everyone.\tIl est détesté de tous.\nHe is having coffee now.\tÀ l'instant, il est en train de boire du café.\nHe is known to everyone.\tIl est connu de tous.\nHe is looking for a job.\tIl est à la recherche d'un emploi.\nHe is lying on the sofa.\tIl est allongé sur le canapé.\nHe is lying on the sofa.\tIl est étendu sur le canapé.\nHe is no friend of mine.\tIl ne compte pas au nombre de mes amis.\nHe is no friend of mine.\tCe n'est pas un ami à moi.\nHe is no friend of mine.\tCe n'est pas un de mes amis.\nHe is no longer a child.\tCe n'est plus un enfant.\nHe is not himself today.\tIl n'est pas lui-même aujourd'hui.\nHe is not honest at all.\tIl n'est pas honnête du tout.\nHe is not honest at all.\tIl n'est pas du tout honnête.\nHe is not like he seems.\tIl n'est pas tel qu'il paraît.\nHe is not wearing a hat.\tIl ne porte pas de chapeau.\nHe is not what he seems.\tIl n'est pas ce qu'il semble.\nHe is on board the ship.\tIl est à bord du bateau.\nHe is out of the office.\tIl n'est pas au bureau.\nHe is poor at chemistry.\tIl est faible en chimie.\nHe is putting on weight.\tIl grossit.\nHe is quite a gentleman.\tC'est un gentleman.\nHe is rather optimistic.\tIl est plutôt optimiste.\nHe is respected by them.\tIl a leur respect.\nHe is said to have died.\tOn le dit mort.\nHe is said to have died.\tOn le dit décédé.\nHe is short, but strong.\tIl est petit mais fort.\nHe is smelling the soup.\tIl hume la soupe.\nHe is still on his back.\tIl est toujours alité.\nHe is strong as a horse.\tIl est fort comme un cheval.\nHe is tall and handsome.\tIl est à la fois grand et beau.\nHe is used to traveling.\tIl est accoutumé à voyager.\nHe is very good-looking.\tIl est très séduisant.\nHe isn't at home, is he?\tIl n'est pas à la maison, n'est-ce pas ?\nHe isn't coming, either.\tIl ne vient pas non plus.\nHe just wants attention.\tIl veut juste attirer l'attention.\nHe keeps his room clean.\tIl garde sa chambre propre.\nHe kept on telling lies.\tIl a continué à mentir.\nHe left the window open.\tIl a laissé la fenêtre ouverte.\nHe likes anything sweet.\tIl aime tout ce qui est sucré.\nHe lives here all alone.\tIl vit ici tout seul.\nHe lives in a big house.\tIl vit dans une grande maison.\nHe lives in a port town.\tIl habite une ville portuaire.\nHe lives near the beach.\tIl vit près de la plage.\nHe lives on this street.\tIl vit dans cette rue.\nHe looked me in the eye.\tIl me regarda dans les yeux.\nHe looked up at the sky.\tIl regarda le ciel.\nHe looked up at the sky.\tIl leva les yeux vers le ciel.\nHe made a grave mistake.\tIl a fait une erreur grave.\nHe made a joke about it.\tIl fit une blague à ce propos.\nHe made a joke about it.\tIl a fait une blague à ce propos.\nHe made her a bookshelf.\tIl lui a confectionné une étagère.\nHe mailed a letter home.\tIl a envoyé une lettre chez lui.\nHe mailed a letter home.\tIl a envoyé une lettre chez nous.\nHe married a local girl.\tIl a épousé une fille du coin.\nHe married a local girl.\tIl épousa une fille du coin.\nHe married a stewardess.\tIl a épousé une hôtesse.\nHe met a nice young man.\tIl a rencontré un gentil jeune homme.\nHe neglected his duties.\tIl négligea ses devoirs.\nHe neglects his studies.\tIl néglige ses études.\nHe never drinks alcohol.\tIl ne boit jamais d'alcool.\nHe never keeps his word.\tIl ne tient jamais ses promesses.\nHe never loses his head.\tIl ne perd jamais la tête.\nHe never stops to think.\tIl ne cesse jamais de réfléchir.\nHe no longer lives here.\tIl n'habite plus ici.\nHe no longer lives here.\tIl ne vit plus ici.\nHe no longer works here.\tIl ne travaille plus ici.\nHe nodded encouragingly.\tIl opina de manière encourageante.\nHe objected to our plan.\tIl s'est opposé à notre plan.\nHe plays the piano well.\tIl joue bien du piano.\nHe plugged in the radio.\tIl brancha la radio.\nHe promised not to tell.\tIl a promis de ne pas le dire.\nHe publicly insulted me.\tIl m'a insulté publiquement.\nHe pulled open the door.\tIl ouvrit la porte.\nHe pulled open the door.\tIl a ouvert la porte.\nHe put air in his tires.\tIl a gonflé ses pneus.\nHe put the luggage down.\tIl posa les bagages.\nHe reached for the book.\tIl étendit la main vers le livre.\nHe really ticked me off.\tIl m'a vraiment énervé.\nHe runs a lot of hotels.\tIl dirige beaucoup d'hôtels.\nHe saved a lot of money.\tIl a économisé beaucoup d'argent.\nHe saved me from danger.\tIl m'a sauvé du danger.\nHe saved me from danger.\tIl m'a sauvée du danger.\nHe saw a light far away.\tIl a vu une lumière au loin.\nHe seems to be friendly.\tIl a l'air amical.\nHe seems to be rich now.\tOn dirait qu'il est riche.\nHe seems unable to swim.\tIl semble incapable de nager.\nHe sometimes loses hope.\tIl perd parfois espoir.\nHe sometimes watches TV.\tIl regarde parfois la télé.\nHe sounds very immature.\tÀ l'entendre, il semble très immature.\nHe speaks Japanese well.\tIl parle bien le japonais.\nHe speaks broken French.\tIl parle un français approximatif.\nHe speaks broken French.\tIl écorche le français.\nHe speaks ten languages.\tIl parle dix langues.\nHe squashed my hat flat.\tIl a aplati mon chapeau.\nHe stamped out the fire.\tIl étouffa le feu en le piétinant.\nHe stamped out the fire.\tIl a étouffé le feu du pied.\nHe stood all by himself.\tIl se tenait tout seul.\nHe stuck to his promise.\tIl a été fidèle à sa promesse.\nHe stuck to his promise.\tIl tint sa promesse.\nHe stuck to his promise.\tIl a tenu sa promesse.\nHe thinks he knows best.\tIl pense qu'il sait tout mieux que les autres.\nHe thinks he's a genius.\tIl pense être un génie.\nHe thinks he's so great.\tIl pense qu'il est tellement important.\nHe thinks he's so great.\tIl pense qu'il est tellement génial.\nHe thinks that's normal.\tIl pense que c'est normal.\nHe thought up an excuse.\tIl a inventé une excuse.\nHe thought up an excuse.\tIl s'inventa une excuse.\nHe took advantage of me.\tIl a profité de moi.\nHe took her by the hand.\tIl l'a prise par la main.\nHe took off his clothes.\tIl retira ses vêtements.\nHe took off his clothes.\tIl ôta ses vêtements.\nHe took off his clothes.\tIl a retiré ses vêtements.\nHe took off his clothes.\tIl a ôté ses vêtements.\nHe took off his glasses.\tIl retira ses lunettes.\nHe took off his glasses.\tIl a retiré ses lunettes.\nHe took the first prize.\tIl a touché le premier prix.\nHe traveled on business.\tIl a voyagé pour affaires.\nHe turned off the light.\tIl éteignit la lumière.\nHe turned off the light.\tIl a éteint la lumière.\nHe twirled his mustache.\tIl tournicota sa moustache.\nHe unbuttoned his shirt.\tIl déboutonna sa chemise.\nHe unbuttoned his shirt.\tIl a déboutonné sa chemise.\nHe used to get up early.\tD'habitude il se levait tôt.\nHe wanted to buy a book.\tIl voulait acheter un livre.\nHe wants something more.\tIl veut quelque chose de plus.\nHe wants to talk to you.\tIl veut te parler.\nHe wants to talk to you.\tIl veut vous parler.\nHe was a Roman Catholic.\tIl était catholique romain.\nHe was a great musician.\tC'était un grand musicien.\nHe was a trusted friend.\tIl était un ami de confiance.\nHe was accused of theft.\tIl fut accusé de vol.\nHe was accused of theft.\tIl a été accusé de vol.\nHe was acting on orders.\tIl agissait selon des ordres.\nHe was born in Nagasaki.\tIl est né à Nagasaki.\nHe was brought to tears.\tOn l'a fait pleurer.\nHe was checking you out.\tIl te matait.\nHe was checking you out.\tIl vous matait.\nHe was checking you out.\tC'est lui qui t'a encaissé.\nHe was checking you out.\tC'est lui qui vous a encaissé.\nHe was covered with mud.\tIl était couvert de boue.\nHe was crushed to death.\tIl fut écrasé.\nHe was crushed to death.\tIl a été écrasé.\nHe was elected chairman.\tIl a été élu président.\nHe was guilty of murder.\tIl était coupable de meurtre.\nHe was knee deep in mud.\tIl était dans la boue jusqu'aux genoux.\nHe was lying on the bed.\tIl était étendu sur le lit.\nHe was more than a king.\tIl était plus qu'un roi.\nHe was more than a king.\tIl fut plus qu'un roi.\nHe was not feeling well.\tIl ne se sentait pas bien.\nHe was painfully skinny.\tIl était atrocement maigre.\nHe was re-elected mayor.\tIl a été réélu maire.\nHe was re-elected mayor.\tIl a été réélu bourgmestre.\nHe was re-elected mayor.\tIl a été réélu mayeur.\nHe was seized with fear.\tIl fut pris d'un accès de peur.\nHe was sent into combat.\tIl fut envoyé au combat.\nHe was supposed to come.\tIl était supposé venir.\nHe was talking nonsense.\tIl déraisonnait.\nHe was visibly bothered.\tIl était visiblement inquiet.\nHe went out in the rain.\tIl est sorti sous la pluie.\nHe went out of the room.\tIl sortit de la pièce.\nHe went there in person.\tIl y est allé en personne.\nHe went there in person.\tIl s'y rendit en personne.\nHe whistled for his dog.\tIl siffla son chien.\nHe will always be there.\tIl sera toujours là.\nHe will always love her.\tIl l'aimera toujours.\nHe will be back shortly.\tIl sera de retour sous peu.\nHe witnessed the murder.\tIl a été témoin du meurtre.\nHe won't leave me alone.\tIl refuse de me laisser en paix.\nHe won't leave us alone.\tIl ne va pas nous foutre la paix.\nHe won't leave us alone.\tIl ne va pas nous ficher la paix.\nHe'll be a good husband.\tIl sera un bon mari.\nHe'll be here real soon.\tIl sera là d'un instant à l'autre.\nHe'll lend you his book.\tIl te prêtera sûrement son livre.\nHe'll take care of that.\tIl s'en occupera.\nHe's a Chinese-American.\tC'est un Étasunien d'origine chinoise.\nHe's a cheat and a liar.\tC'est un tricheur et un menteur.\nHe's a community leader.\tC'est un chef de file de sa communauté.\nHe's a lovely young man.\tC'est un adorable jeune homme.\nHe's a lovely young man.\tC'est un jeune homme adorable.\nHe's a lovely young man.\tC'est un charmant jeune homme.\nHe's a short order cook.\tIl cuisine à la demande.\nHe's a very hard worker.\tC'est un employé très travailleur.\nHe's addicted to heroin.\tIl est accro à l'héroïne.\nHe's addicted to heroin.\tIl est accro à l'héro.\nHe's addicted to heroin.\tIl est héroïno-dépendant.\nHe's addicted to heroin.\tIl a une assuétude à l'héroïne.\nHe's addicted to heroin.\tIl est dépendant à l'héroïne.\nHe's an Italian teacher.\tIl est professeur d'italien.\nHe's angry at the world.\tIl est en colère après le monde.\nHe's been drinking beer.\tIl a été boire une bière.\nHe's certain to succeed.\tC'est sûr qu'il réussira.\nHe's cleaning his rifle.\tIl nettoie son fusil.\nHe's cleaning his rifle.\tIl nettoie sa carabine.\nHe's dating my daughter.\tIl sort avec ma fille.\nHe's everybody's friend.\tIl est l'ami de tout le monde.\nHe's feeling really low.\tIl a le moral très bas.\nHe's fluent in Japanese.\tIl parle couramment le japonais.\nHe's going to get fired.\tIl va se faire virer.\nHe's going to love this.\tIl va adorer ça.\nHe's good at arithmetic.\tIl est bon en calcul.\nHe's highly intelligent.\tIl est doté d'une grande intelligence.\nHe's hopelessly in love.\tIl est désespérément amoureux.\nHe's hungry and thirsty.\tIl a faim et soif.\nHe's mumbling something.\tIl rumine quelque chose.\nHe's my younger brother.\tIl est mon frère cadet.\nHe's now short of money.\tIl est maintenant à court d'argent.\nHe's on the dance floor.\tIl est sur la piste de danse.\nHe's painting his house.\tIl est en train de peindre sa maison.\nHe's really into soccer.\tIl est vraiment fondu de foot.\nHe's sketching an apple.\tIl est en train de dessiner une pomme.\nHe's the same age as me.\tIl a le même âge que moi.\nHe's too young to drink.\tIl est trop jeune pour boire.\nHe's very understanding.\tIl est très compréhensif.\nHe's very upset by this.\tIl est très contrarié par cela.\nHe's wearing a new coat.\tIl porte un nouveau manteau.\nHealth means everything.\tLa santé, c'est tout.\nHer daughter is a nurse.\tSa fille est infirmière.\nHer kindness touched me.\tSa gentillesse m'a ému.\nHer story can't be true.\tSon histoire ne peut pas être vraie.\nHer teacher praised her.\tSon professeur a fait son éloge.\nHer voice doesn't carry.\tSa voix ne porte pas.\nHere is my phone number.\tVoici mon numéro de téléphone.\nHere's my email address.\tVoilà mon adresse électronique.\nHere's my return ticket.\tVoilà mon billet de retour.\nHis behavior puzzled me.\tSa conduite m'étonna.\nHis birthday is May 5th.\tSon anniversaire est le cinq mai.\nHis childhood was harsh.\tSon enfance était dure.\nHis daughter is a nurse.\tSa fille est infirmière.\nHis eyesight is failing.\tSa vue baisse.\nHis heart beated slowly.\tSon cœur battait lentement.\nHis life is in my hands.\tSa vie est entre mes mains.\nHis mother was a singer.\tSa mère était chanteuse.\nHis name is known to me.\tSon nom m'est connu.\nHis students adored him.\tLes étudiants l’adoraient.\nHold it with both hands.\tTiens-le à deux mains.\nHold it with both hands.\tTiens-la à deux mains.\nHold it with both hands.\tTenez-la à deux mains.\nHold it with both hands.\tTenez-le à deux mains.\nHow about taking a walk?\tQue dis-tu de marcher ?\nHow about taking a walk?\tQue dites-vous de marcher ?\nHow can I get to heaven?\tComment pourrai-je aller au ciel ?\nHow can I make him stop?\tComment puis-je faire en sorte qu'il s'arrête ?\nHow can I make him stop?\tComment puis-je faire en sorte qu'il cesse ?\nHow can I make him stop?\tComment puis-je faire qu'il s'arrête ?\nHow can I make him stop?\tComment puis-je faire qu'il cesse ?\nHow can I quit this job?\tComment puis-je quitter ce travail ?\nHow can you be so cruel?\tComment pouvez-vous être si cruel ?\nHow can you be so cruel?\tComment pouvez-vous être si cruelle ?\nHow can you be so cruel?\tComment pouvez-vous être si cruels ?\nHow can you be so cruel?\tComment pouvez-vous être si cruelles ?\nHow can you be so cruel?\tComment peux-tu être si cruelle ?\nHow can you be so cruel?\tComment peux-tu être si cruel ?\nHow can you concentrate?\tComment arrives-tu à te concentrer ?\nHow can you concentrate?\tComment parviens-tu à te concentrer ?\nHow can you concentrate?\tComment arrivez-vous à vous concentrer ?\nHow can you concentrate?\tComment parvenez-vous à vous concentrer ?\nHow could it not matter?\tComment cela pourrait-il ne pas avoir d'importance ?\nHow could they not know?\tComment pouvaient-ils l'ignorer ?\nHow could they not know?\tComment pouvaient-elles l'ignorer ?\nHow did I get into this?\tComment me suis-je fourré là-dedans ?\nHow did I get into this?\tComment me suis-je fourrée là-dedans ?\nHow did I not know that?\tComment l'ignorais-je ?\nHow did it all work out?\tComment tout cela s'est-il résolu ?\nHow did things turn out?\tComment les choses ont-elles tourné ?\nHow did you end up here?\tComment as-tu fini ici ?\nHow did you end up here?\tComment avez-vous fini ici ?\nHow did you get in here?\tComment as-tu pénétré ici ?\nHow did you get in here?\tComment avez-vous pénétré ici ?\nHow do I get reimbursed?\tComment puis-je me faire rembourser ?\nHow do I report a theft?\tComment est-ce que je déclare un vol ?\nHow do they seem to you?\tComment vous semblent-elles ?\nHow do they seem to you?\tComment te semblent-elles ?\nHow do they seem to you?\tComment vous semblent-ils ?\nHow do they seem to you?\tComment te semblent-ils ?\nHow do you always do it?\tComment le faites-vous toujours ?\nHow do you deal with it?\tComment t'en sors-tu ?\nHow do you deal with it?\tComment vous en sortez-vous ?\nHow do you deal with it?\tComment le gérez-vous ?\nHow do you deal with it?\tComment le gères-tu ?\nHow do you go to school?\tComment allez-vous à l'école ?\nHow do you think I feel?\tComment penses-tu que je me sente ?\nHow do you think I feel?\tComment pensez-vous que je me sente ?\nHow do you think I felt?\tQue penses-tu que j'aie ressenti ?\nHow do you think I felt?\tQue pensez-vous que j'aie ressenti ?\nHow far is it from here?\tÀ combien est-ce, d'ici ?\nHow is the family doing?\tComment va la famille ?\nHow late may I call you?\tJusqu'à quelle heure puis-je vous appeler ?\nHow long do dreams last?\tCombien de temps durent les rêves ?\nHow long is this bridge?\tQuelle longueur fait ce pont ?\nHow long were you there?\tCombien de temps y as-tu été ?\nHow long were you there?\tCombien de temps y avez-vous été ?\nHow long will this take?\tCombien de temps cela prendra-t-il ?\nHow many do you see now?\tCombien en voyez-vous, maintenant ?\nHow many do you see now?\tCombien en vois-tu, maintenant ?\nHow many hours are left?\tCombien d'heures reste-t'il ?\nHow many more are there?\tCombien y en a-t-il de plus ?\nHow many more are there?\tCombien y en a-t-il en plus ?\nHow much are the lilies?\tCombien coûtent les lys ?\nHow much did it cost us?\tCombien ça nous a coûté ?\nHow much did it cost us?\tCombien cela nous a-t-il coûté ?\nHow much does that cost?\tCombien cela coûte-t-il ?\nHow much does this cost?\tÇa coûte combien ?\nHow much does this cost?\tCombien ça coûte ?\nHow much does this cost?\tCombien est-ce que ça coûte ?\nHow much does this cost?\tCombien ça coûte ?\nHow much is the express?\tCombien pour l'express ?\nHow much is this camera?\tCombien coûte cet appareil photo ?\nHow often do you shower?\tÀ quelle fréquence te douches-tu ?\nHow often do you shower?\tÀ quelle fréquence vous douchez-vous ?\nHow old is the universe?\tQuel âge a l'univers ?\nHow old is the universe?\tQuel est l'âge de l'univers ?\nHow old is your brother?\tQuel âge a ton frère ?\nHow soon do you need it?\tÀ partir de quand en as-tu besoin ?\nHow will I pay my debts?\tComment payerai-je mes dettes ?\nHow's the project going?\tComment se déroule le projet ?\nHow's the project going?\tComment va le projet ?\nHow's the weather there?\tQuel temps fait-il là-bas ?\nHow's your married life?\tComment est ta vie d'homme marié ?\nHow's your married life?\tComment est ta vie de femme mariée ?\nHow's your morning been?\tComment s'est passée votre matinée ?\nHow's your morning been?\tComment votre matinée s'est-elle passée ?\nHow's your morning been?\tComment s'est passée ta matinée ?\nHow's your morning been?\tComment ta matinée s'est-elle passée ?\nHurry up! We'll be late.\tDépêchons ! Nous allons être en retard.\nI accept your challenge.\tJe relève votre défi.\nI accept your challenge.\tJe relève ton défi.\nI actually enjoyed that.\tJ'y ai vraiment pris plaisir.\nI admit I was surprised.\tJ'admets avoir été surpris.\nI admit I was surprised.\tJ'admets avoir été surprise.\nI almost never watch TV.\tJe ne regarde quasiment jamais la télévision.\nI already gave you half.\tJe t'ai déjà donné la moitié.\nI already gave you half.\tJe vous ai déjà donné la moitié.\nI always walk to school.\tJe marche toujours pour me rendre à l'école.\nI am an English teacher.\tJe suis professeur d'anglais.\nI am disgusted with him.\tIl me dégoute.\nI am eighteen years old.\tJ'ai dix-huit ans.\nI am following that car.\tJe suis cette voiture.\nI am loved by my mother.\tJe suis aimé de ma mère.\nI am loved by my mother.\tMa mère m'aime.\nI am not going anywhere.\tJe ne vais nulle part.\nI am not going anywhere.\tJe ne me rends nulle part.\nI am reading a magazine.\tJe lis un magazine.\nI am the fastest runner.\tJe suis le coureur le plus rapide.\nI am too tired to climb.\tJe suis trop fatigué pour grimper.\nI am very happy with it.\tÇa me plaît beaucoup.\nI am your friend, right?\tJe suis bien ton ami, non ?\nI answered the question.\tJe répondis à la question.\nI appreciate the effort.\tJe te suis reconnaissant pour tes efforts.\nI appreciate the effort.\tJe vous suis reconnaissant pour vos efforts.\nI asked him to make tea.\tJe lui demandais de faire du thé.\nI asked where she lived.\tJ'ai demandé où elle habitait.\nI ate a salad for lunch.\tJ'ai mangé une salade pour le déjeuner.\nI ate a salad for lunch.\tJ'ai mangé une salade pour le dîner.\nI ate a salad for lunch.\tJ'ai mangé une salade pour déjeuner.\nI ate a salad for lunch.\tJ'ai mangé une salade pour dîner.\nI ate a turkey sandwich.\tJ'ai mangé un sandwich à la dinde.\nI baked it this morning.\tJe l'ai cuit ce matin.\nI baked it this morning.\tJe l'ai cuite ce matin.\nI believe in friendship.\tJe crois en l'amitié.\nI believe it to be true.\tJe crois que c'est vrai.\nI bought this yesterday.\tJ'ai acheté ceci hier.\nI brought you a present.\tJe t'ai amené un cadeau.\nI brought you a present.\tJe vous ai amené un cadeau.\nI brought you red roses.\tJe t'ai amené des roses rouges.\nI brought you red roses.\tJe vous ai amené des roses rouges.\nI call her pretty often.\tJe lui téléphone assez souvent.\nI came back to help you.\tJe suis revenu t'aider.\nI came to give you this.\tJe suis venu te donner ceci.\nI came to give you this.\tJe suis venue vous donner ceci.\nI can do this all night.\tJe peux le faire toute la nuit.\nI can hardly believe it.\tJ'arrive à peine à le croire.\nI can make this go away.\tJe peux le faire s'évanouir.\nI can ride a horse, too.\tMoi aussi, je peux monter un cheval.\nI can tell you're angry.\tJe peux dire que tu es énervé.\nI can tell you're angry.\tJe peux dire que vous êtes en colère.\nI can't believe I cried.\tJe n'arrive pas à croire que j'ai pleuré.\nI can't believe my ears.\tJe ne peux en croire mes oreilles.\nI can't believe my eyes.\tJe n'en crois pas mes yeux.\nI can't break this code.\tJe n'arrive pas à casser ce code.\nI can't break this code.\tJe n'arrive pas à déchiffrer ce code.\nI can't catch my breath.\tJe n'arrive pas à reprendre mon souffle.\nI can't change who I am.\tJe ne peux pas changer ce que je suis.\nI can't do it right now.\tJe ne peux pas le faire maintenant.\nI can't do this anymore.\tJe ne peux plus faire ça.\nI can't do this anymore.\tJe ne parviens plus à faire ça.\nI can't do this anymore.\tJe n'arrive plus à faire ça.\nI can't do what they do.\tJe ne peux pas faire ce qu'ils font.\nI can't figure this out.\tJe n'arrive pas à le résoudre.\nI can't figure this out.\tJe ne parviens pas à le résoudre.\nI can't figure this out.\tJe n'arrive pas à le déchiffrer.\nI can't figure this out.\tJe ne parviens pas à le déchiffrer.\nI can't figure this out.\tJe ne parviens pas à déchiffrer ceci.\nI can't find my luggage.\tJe ne trouve pas mes bagages.\nI can't go on with this.\tJe ne peux pas continuer ça.\nI can't go on with this.\tJe ne peux pas continuer comme ça.\nI can't help doing that.\tJe ne peux m’empêcher de faire cela.\nI can't help how I look.\tJe ne suis pas responsable de mon apparence.\nI can't just do nothing.\tJe ne peux pas juste ne rien faire.\nI can't keep doing this.\tJe ne peux pas continuer à faire ça.\nI can't let you do that.\tJe ne peux pas vous permettre de faire ça.\nI can't let you do that.\tJe ne peux pas te permettre de faire ça.\nI can't let you do that.\tJe ne peux pas vous laisser faire ça.\nI can't let you do that.\tJe ne peux pas te laisser faire ça.\nI can't live without TV.\tJe ne peux pas vivre sans télé.\nI can't put up with him.\tJe ne peux pas le supporter.\nI can't really complain.\tJe ne peux pas vraiment me plaindre.\nI can't really remember.\tJe ne parviens pas vraiment à me rappeler.\nI can't really remember.\tJe ne parviens pas vraiment à me le rappeler.\nI can't really remember.\tJe n'arrive pas vraiment à me rappeler.\nI can't really remember.\tJe n'arrive pas vraiment à me le rappeler.\nI can't really remember.\tJe n'arrive pas vraiment à me souvenir.\nI can't really remember.\tJe n'arrive pas vraiment à m'en souvenir.\nI can't really remember.\tJe ne parviens pas vraiment à m'en souvenir.\nI can't really remember.\tJe ne parviens pas vraiment à me souvenir.\nI can't say I'm shocked.\tJe ne peux pas dire que je sois choquée.\nI can't say I'm shocked.\tJe ne peux pas dire que je sois choqué.\nI can't stand hospitals.\tJe ne peux pas supporter les hôpitaux.\nI can't stand the noise.\tJe ne peux pas supporter le bruit.\nI can't stand this heat.\tJe ne peux pas supporter cette chaleur.\nI can't stay for dinner.\tJe ne peux pas rester pour déjeuner.\nI can't stay for dinner.\tJe ne peux pas rester pour dîner.\nI can't take it anymore.\tJe n'en peux plus.\nI can't talk about that.\tJe ne peux pas en parler.\nI can't tell what it is.\tJe ne peux pas dire ce qu'il est.\nI can't untie this knot.\tJe ne parviens pas à défaire ce nœud.\nI can't wait any longer.\tJe ne peux pas attendre plus longtemps.\nI can't wait any longer.\tJe ne peux plus attendre davantage.\nI can't wait to hear it.\tJ'ai hâte de l'entendre.\nI can't wait to hug you.\tJ'ai hâte de te serrer dans mes bras.\nI can't wait to see you.\tJ'ai hâte de te voir.\nI care about all of you.\tJe me soucie de vous tous.\nI care about all of you.\tJe me soucie de vous toutes.\nI care about all of you.\tJe prends soin de vous tous.\nI care about all of you.\tJe prends soin de vous toutes.\nI caught him by the arm.\tJe l'ai attrapé par le bras.\nI caught him in the act.\tJe l'ai attrapé la main dans le sac.\nI caught him in the act.\tJe l'ai pris sur le fait.\nI could do that for you.\tJe pourrais le faire pour toi.\nI could do that for you.\tJe pourrais le faire pour vous.\nI could do this all day.\tJe pourrais faire ça toute la journée.\nI could do this all day.\tJe pouvais faire ça toute la journée.\nI could hardly hear him.\tJe pouvais à peine l'entendre.\nI could hear everything.\tJe pus tout entendre.\nI could hear everything.\tJ'ai pu tout entendre.\nI could hear everything.\tJe pouvais tout entendre.\nI could hear everything.\tJe pourrais tout entendre.\nI could use some advice.\tUn conseil ne serait pas de refus.\nI couldn't do otherwise.\tJe n'ai eu d'autre choix que de le faire.\nI couldn't find anybody.\tJe n'ai pas pu trouver qui que ce soit.\nI couldn't find anybody.\tJe ne pus trouver personne.\nI couldn't help yawning.\tJe ne pouvais pas m'empêcher de bâiller.\nI couldn't tell you why.\tJe ne pourrais te dire pourquoi.\nI couldn't tell you why.\tJe ne pouvais te dire pourquoi.\nI couldn't tell you why.\tJe ne pourrais vous dire pourquoi.\nI couldn't tell you why.\tJe ne pouvais vous dire pourquoi.\nI cried on his shoulder.\tJe pleurai sur son épaule.\nI cried on his shoulder.\tJ'ai pleuré sur son épaule.\nI danced all night long.\tJ'ai dansé toute la nuit.\nI danced all night long.\tJe dansai toute la nuit.\nI did a little research.\tJ'ai effectué quelques recherches.\nI did something similar.\tJ'ai fait quelque chose de semblable.\nI didn't change a thing.\tJe n'ai rien changé.\nI didn't do this, did I?\tJe n'ai pas fait cela, si ?\nI didn't have much time.\tJe n'avais pas beaucoup de temps.\nI didn't have much time.\tJe n'ai pas eu beaucoup de temps.\nI didn't have much time.\tJe ne disposais pas de beaucoup de temps.\nI didn't have much time.\tJe n'ai pas disposé de beaucoup de temps.\nI didn't know it before.\tJe l'ignorais, auparavant.\nI didn't lose much time.\tJe n'ai pas perdu beaucoup de temps.\nI didn't make the rules.\tJe n'ai pas fait les règles.\nI didn't mean any of it.\tJe n'en avais pas la moindre intention.\nI didn't need your help.\tJe n'avais pas besoin de ton aide.\nI didn't need your help.\tJe n'avais pas besoin de votre aide.\nI didn't need your help.\tJe n'ai pas eu besoin de ton aide.\nI didn't need your help.\tJe n'ai pas eu besoin de votre aide.\nI didn't rescue anybody.\tJe n'ai sauvé personne.\nI didn't say I liked it.\tJe n'ai pas dit que j'aimais ça.\nI didn't say I liked it.\tJe n'ai pas dit que j'appréciais ça.\nI didn't say I liked it.\tJe n'ai pas dit que je l'appréciais.\nI didn't see any tigers.\tJe n'ai vu aucun tigre.\nI didn't see any tigers.\tJe n'ai pas vu de tigres.\nI didn't speak for long.\tJe n'ai pas parlé longtemps.\nI didn't spend anything.\tJe n'ai rien dépensé.\nI didn't start all this.\tCe n'est pas moi qui ai commencé tout ceci.\nI didn't touch anything.\tJe n'ai rien touché.\nI didn't work yesterday.\tJe ne travaillais pas hier.\nI didn't write anything.\tJe n'ai rien écrit.\nI didn't write anything.\tJe n'ai pas écrit quoi que ce soit.\nI do not like the house.\tLa maison ne me plaît pas.\nI do not like this song.\tJe n'aime pas cette chanson.\nI do not like this song.\tJe n'apprécie pas cette chanson.\nI do not need money now.\tJe n'ai pas besoin d'argent tout de suite.\nI do not understand her.\tJe ne la comprends pas.\nI do not understand you.\tJe ne vous comprends pas.\nI do not want any money.\tJe ne veux pas d'argent.\nI do think I understand.\tJe pense vraiment que je comprends.\nI don't agree with this.\tJe ne suis pas d'accord avec ça.\nI don't believe in fate.\tJe ne crois pas au destin.\nI don't believe in luck.\tJe ne crois pas à la chance.\nI don't believe my eyes.\tJe n'en crois pas mes yeux.\nI don't care for coffee.\tJe ne cours pas après le café.\nI don't drink much beer.\tJe ne bois pas beaucoup de bière.\nI don't drink much wine.\tJe ne bois pas beaucoup de vin.\nI don't even know where.\tJe ne sais même pas où.\nI don't even know where.\tJe ne sais pas même où.\nI don't feel so special.\tJe ne me sens pas si spécial.\nI don't feel so special.\tJe ne me sens pas si spéciale.\nI don't feel very happy.\tJe ne me sens pas très heureux.\nI don't feel very happy.\tJe ne me sens pas très heureuse.\nI don't find that funny.\tJe ne trouve pas ça amusant.\nI don't find that funny.\tJe ne trouve pas ça drôle.\nI don't get modern jazz.\tJe ne comprends pas le jazz moderne.\nI don't have a computer.\tJe n'ai pas d'ordinateur.\nI don't have a passport.\tJe n'ai pas de passeport.\nI don't have a passport.\tJe ne dispose pas d'un passeport.\nI don't have any choice.\tJe n'ai aucun choix.\nI don't have any choice.\tJe ne dispose d'aucun choix.\nI don't have enough RAM.\tJe n'ai pas assez de mémoire RAM.\nI don't have enough RAM.\tJe n'ai pas assez de mémoire vive.\nI don't have my glasses.\tJe n'ai pas mes lunettes.\nI don't have the answer.\tJe ne dispose pas de la réponse.\nI don't have the energy.\tJe n'ai pas l'énergie.\nI don't have the number.\tJe n'ai pas le numéro.\nI don't have the number.\tJe n'en ai pas le numéro.\nI don't have the option.\tJe n'en ai pas la possibilité.\nI don't have the option.\tJe ne dispose pas de l'option.\nI don't have to be here.\tJe ne suis pas obligé d'être là.\nI don't have to be here.\tJe ne suis pas obligée d'être là.\nI don't hear any voices.\tJe n'entends aucune voix.\nI don't know about that.\tJe n'en sais rien.\nI don't know him at all.\tJe ne le connais pas du tout.\nI don't know how I know.\tJ'ignore d'où je le sais.\nI don't know how I know.\tJ'ignore d'où je le tiens.\nI don't know how I know.\tJ'ignore comment je le sais.\nI don't know what it is.\tJe ne sais pas ce que c'est.\nI don't know what it is.\tJe ne sais pas ce que c’est.\nI don't know what it is.\tJ'ignore ce que c'est.\nI don't know what it is.\tJ'ignore ce dont il s'agit.\nI don't know what to do.\tJe ne sais que faire.\nI don't know what to do.\tJe ne sais pas quoi faire.\nI don't know who did it.\tJe ne sais pas qui l'a fait.\nI don't like fried fish.\tJe n'aime pas le poisson frit.\nI don't like hot places.\tJe n'aime pas les endroits chauds.\nI don't like it, either.\tJe ne l'aime pas non plus.\nI don't like loose ends.\tJe n'aime pas les détails.\nI don't like sad movies.\tJe n'aime pas les films tristes.\nI don't like that woman.\tJe n'aime pas cette femme.\nI don't like that woman.\tJe n'apprécie pas cette femme.\nI don't like the coffee.\tJe n'aime pas le café.\nI don't like this place.\tJe n'aime pas cet endroit.\nI don't like you at all.\tJe ne t'aime pas du tout.\nI don't like you at all.\tJe ne vous aime pas du tout.\nI don't like you either.\tJe ne t'aime pas non plus.\nI don't like you either.\tJe ne vous aime pas non plus.\nI don't like your smile.\tJe n'aime pas ton sourire.\nI don't like your smile.\tJe n'aime pas votre sourire.\nI don't like your smile.\tJe n'apprécie pas ton sourire.\nI don't need it anymore.\tJe n'en ai plus besoin.\nI don't need your money.\tJe n'ai pas besoin de votre argent.\nI don't need your money.\tJe n'ai pas besoin de ton argent.\nI don't really know why.\tJe ne sais pas vraiment pourquoi.\nI don't really know you.\tJe ne vous connais pas vraiment.\nI don't really know you.\tJe ne te connais pas vraiment.\nI don't really like him.\tJe ne l'aime pas vraiment.\nI don't really like him.\tJe ne l'apprécie pas vraiment.\nI don't really like you.\tJe ne vous aime pas vraiment.\nI don't really like you.\tJe ne t'aime pas vraiment.\nI don't really like you.\tJe ne vous apprécie pas vraiment.\nI don't really like you.\tJe ne t'apprécie pas vraiment.\nI don't really think so.\tJe ne le crois pas vraiment.\nI don't see any bruises.\tJe ne vois aucune ecchymose.\nI don't see any options.\tJe ne vois aucune option.\nI don't see any problem.\tJe ne vois aucun problème.\nI don't see it that way.\tJe ne le vois pas de cette façon.\nI don't see much choice.\tJe ne vois guère de choix.\nI don't see much of him.\tJe ne le vois guère.\nI don't see the problem.\tJe ne vois pas le problème.\nI don't sound like that.\tJe ne fais pas ce bruit.\nI don't think about you.\tJe ne pense pas à vous.\nI don't think about you.\tJe ne pense pas à toi.\nI don't think it's true.\tJe ne pense pas que ce soit vrai.\nI don't trust his story.\tJe ne crois pas à son histoire.\nI don't trust strangers.\tJe ne me fie pas aux étrangers.\nI don't understand this.\tJe ne le comprends pas.\nI don't want it anymore.\tJe n'en veux plus.\nI don't want this shirt.\tJe ne veux pas cette chemise.\nI don't want this shirt.\tJe ne veux pas de cette chemise.\nI don't want this shirt.\tJe n'ai pas envie de cette chemise.\nI don't want to be rich.\tJe ne veux pas être riche.\nI don't want to give up.\tJe ne veux pas abandonner.\nI don't want to grow up.\tJe ne veux pas grandir.\nI don't want to hear it.\tJe ne veux pas entendre ça.\nI don't want to see you.\tJe ne veux pas te voir.\nI don't want to see you.\tJe ne veux pas vous voir.\nI don't watch that show.\tJe ne regarde pas ce spectacle.\nI don't watch that show.\tJe ne regarde pas cette émission.\nI don't work for anyone.\tJe ne travaille pour personne.\nI don't work on Mondays.\tLe lundi je ne travaille pas.\nI don't write the rules.\tCe n'est pas moi qui écris les règles.\nI doubt if he is honest.\tJe doute qu'il soit honnête.\nI doubt if he will come.\tJe doute qu'il vienne.\nI eat dinner after work.\tJe dîne après le travail.\nI eat here all the time.\tJe mange ici tout le temps.\nI eat there every night.\tJ'y mange tous les soirs.\nI eat there every night.\tJ'y mange chaque soir.\nI enjoy being a teacher.\tJ'apprécie d'être enseignant.\nI enjoy being a teacher.\tJ'apprécie d'être enseignante.\nI enjoy eating with you.\tJ'ai plaisir à manger avec vous.\nI enjoy eating with you.\tJ'ai plaisir à manger avec toi.\nI enjoy taking pictures.\tJ'aime prendre des photos.\nI enjoyed the attention.\tJ'ai apprécié l'attention.\nI envy your good health.\tJe vous envie votre bonne santé.\nI envy your good health.\tJ'envie ta bonne santé.\nI expect him to help me.\tJ'attends qu'il m'aide.\nI expect him to help me.\tJ'attends de lui qu'il m'aide.\nI feel a little awkward.\tJe me sens un peu maladroit.\nI feel a little awkward.\tJe me sens un peu maladroite.\nI feel a little awkward.\tJe me sens quelque peu maladroit.\nI feel a little awkward.\tJe me sens quelque peu maladroite.\nI feel a lot better now.\tJe me sens bien mieux maintenant.\nI feel awful about that.\tJe me sens affreusement mal à ce sujet.\nI feel bad for that guy.\tJe me sens mal pour ce type.\nI feel bad for that guy.\tJe compatis avec ce type.\nI feel itchy everywhere.\tÇa me gratte de partout.\nI feel kind of nauseous.\tJ'ai comme la nausée.\nI feel kind of nauseous.\tJe suis comme pris de nausée.\nI feel kind of nauseous.\tJe suis comme prise de nausée.\nI feel like I could cry.\tJ'ai le sentiment que je pourrais pleurer.\nI feel like I could cry.\tJe sens que je pourrais pleurer.\nI feel like an impostor.\tJ'ai l'impression d'être un imposteur.\nI feel like an outsider.\tJe me sens comme une pièce rapportée.\nI feel like an outsider.\tJe me sens comme un étranger.\nI feel like being alone.\tJ'ai envie d'être seul.\nI feel like being alone.\tJ'ai envie d'être seule.\nI feel like celebrating.\tJ'ai envie de faire la fête.\nI feel like such a fool.\tJ'ai l'impression d'être un tel idiot.\nI feel like such a fool.\tJ'ai l'impression d'être une telle idiote.\nI feel like throwing up.\tJ'ai envie de vomir.\nI feel like throwing up.\tJ'ai envie de rendre.\nI feel like throwing up.\tJ'ai envie de dégueuler.\nI feel lost without you.\tJe me sens perdu, sans toi.\nI feel lost without you.\tJe me sens perdue, sans toi.\nI feel lost without you.\tJe me sens perdu, sans vous.\nI feel lost without you.\tJe me sens perdue, sans vous.\nI feel relaxed with you.\tJe me sens détendu avec toi.\nI feel relaxed with you.\tJe me sens détendu avec vous.\nI fell in love with her.\tJe suis tombé amoureux d'elle.\nI fell in love with you.\tJe suis tombé amoureux de toi.\nI fell in love with you.\tJe suis tombé amoureuse de toi.\nI felt like I would die.\tJ'ai cru que j'allais mourir.\nI felt myself lifted up.\tJe me suis senti soulevé.\nI felt myself lifted up.\tJe me sentis soulevé.\nI felt myself lifted up.\tJe me suis senti soulevée.\nI felt myself lifted up.\tJe me sentis soulevée.\nI figured you'd be here.\tJe pensais que tu serais ici.\nI figured you'd be here.\tJe pensais que vous seriez ici.\nI finally found my keys.\tJ'ai finalement trouvé mes clés.\nI find that fascinating.\tJe trouve ça passionnant.\nI find that fascinating.\tJe trouve ça fascinant.\nI find that fascinating.\tJe trouve ça captivant.\nI find you irresistible.\tJe vous trouve irresistible.\nI find you irresistible.\tJe te trouve irresistible.\nI flunked out of school.\tJ'ai été viré de l'école.\nI flunked out of school.\tJ'ai été virée de l'école.\nI folded all the towels.\tJ'ai plié toutes les serviettes.\nI forgot all about that.\tJ'ai tout oublié à ce sujet.\nI forgot my medications.\tJ'ai oublié mes medicaments.\nI forgot the PIN number.\tJ'ai oublié le numéro d'identification.\nI found a place to live.\tJ'ai trouvé un endroit où vivre.\nI found it in the attic.\tJe l'ai trouvé au grenier.\nI found it in the attic.\tJe l'ai trouvée au grenier.\nI found my bicycle gone.\tJ'ai vu que mon vélo avait disparu.\nI found the book boring.\tJ'ai trouvé le livre ennuyeux.\nI gave my sister a doll.\tJ'ai donné une poupée à ma sœur.\nI gave you fair warning.\tJe t'ai bien assez averti.\nI gave you fair warning.\tJe vous ai suffisamment averti.\nI gave you fair warning.\tJe vous ai suffisamment avertie.\nI gave you fair warning.\tJe vous ai suffisamment avertis.\nI gave you fair warning.\tJe vous ai suffisamment averties.\nI gave you fair warning.\tJe t'ai suffisamment averti.\nI gave you fair warning.\tJe t'ai suffisamment avertie.\nI gave you fair warning.\tJe vous ai bien assez averti.\nI gave you fair warning.\tJe vous ai bien assez avertie.\nI gave you fair warning.\tJe vous ai bien assez avertis.\nI gave you fair warning.\tJe vous ai bien assez averties.\nI gave you fair warning.\tJe t'ai bien assez avertie.\nI go to school with him.\tJe vais à l'école avec lui.\nI go to work by bicycle.\tJe me rends au travail en vélo.\nI got a letter from her.\tJ'ai reçu une lettre d'elle.\nI got lost in the woods.\tJe me suis perdu dans les bois.\nI got lost in the woods.\tJe me suis perdue dans les bois.\nI got my hair cut today.\tJe me suis fait couper les cheveux aujourd'hui.\nI got one for Christmas.\tJ'en ai eu un pour Noël.\nI got one for Christmas.\tJ'en ai eu une pour Noël.\nI got tickets yesterday.\tJ'ai récupéré des tickets hier.\nI got tickets yesterday.\tJ'ai obtenu des tickets hier.\nI got up early as usual.\tJe me suis levé tôt, comme d'habitude.\nI grew up in this house.\tJ'ai grandi dans cette maison.\nI guess it won't matter.\tJe suppose que ça n'aura pas d'importance.\nI guess that's possible.\tJe suppose que c'est possible.\nI had a bad stomachache.\tJ'ai eu d'affreux maux d'estomac.\nI had a bad stomachache.\tJ'eus d'affreux maux d'estomac.\nI had a dream about him.\tJ'eus un rêve à son sujet.\nI had a great time here.\tJ'ai passé un bon moment ici.\nI had a happy childhood.\tJ'ai eu une enfance heureuse.\nI had a nosebleed today.\tAujourd'hui j'ai saigné du nez.\nI had a promise to keep.\tJ'avais une promesse à tenir.\nI had a quick breakfast.\tJ'ai déjeuné rapidement.\nI had a quick breakfast.\tJ'ai petit-déjeuné sur le pouce.\nI had a run of bad luck.\tJ'ai eu une série de malchances.\nI had a very high fever.\tJ'avais une très forte fièvre.\nI had my bicycle stolen.\tOn m'a volé mon vélo.\nI had my bicycle stolen.\tMon vélo a été volé.\nI had my bicycle stolen.\tMon vélo s'est fait voler.\nI had no one to talk to.\tJe n'avais personne à qui parler.\nI had no one to turn to.\tJe n'avais personne vers qui me tourner.\nI had no visitors today.\tJe n'ai pas eu de visiteurs aujourd'hui.\nI had no work yesterday.\tJe n'avais aucun travail hier.\nI had some things to do.\tJ'ai eu des choses à faire.\nI had something planned.\tJ'ai prévu quelque chose.\nI had something planned.\tJ'avais prévu quelque chose.\nI had the door repaired.\tJ'ai fait réparer la porte.\nI had to get some money.\tJ'ai dû obtenir de l'argent.\nI had to get some money.\tIl m'a fallu obtenir de l'argent.\nI had to give it a shot.\tJ'ai dû l'essayer.\nI had to give it a shot.\tIl m'a fallu l'essayer.\nI had to keep my secret.\tIl fallait que je garde mon secret.\nI had to keep my secret.\tJ'ai dû garder mon secret.\nI had to keep my secret.\tIl a fallu que je garde mon secret.\nI had to look after you.\tJ'ai dû m'occuper de vous.\nI had to look after you.\tJ'ai dû m'occuper de toi.\nI had to look after you.\tIl m'a fallu m'occuper de vous.\nI had to look after you.\tIl m'a fallu m'occuper de toi.\nI had to work on Sunday.\tJe dus travailler dimanche.\nI hate Mary's boyfriend.\tJe déteste le petit ami de Mary.\nI hate math most of all.\tJe déteste surtout les maths.\nI hate my mother-in-law.\tJe déteste ma belle-mère.\nI hate myself sometimes.\tJe me déteste parfois.\nI hate surprise parties.\tJe déteste les sauteries.\nI hate the weather here.\tJe déteste le temps qu'il fait ici.\nI hate to be a nuisance.\tJe suis désolée de te déranger.\nI hate to be a nuisance.\tJe suis désolé de vous déranger.\nI hate to be a nuisance.\tJe suis désolée de vous déranger.\nI hate to waste my time.\tJe déteste gaspiller mon temps.\nI hate to waste my time.\tJ'ai horreur de gaspiller mon temps.\nI hate what I've become.\tJe déteste ce que je suis devenu.\nI hate what I've become.\tJe déteste ce que je suis devenue.\nI have a bath every day.\tJe prends un bain tous les jours.\nI have a lot of friends.\tJe dispose de nombreux amis.\nI have a place to sleep.\tJe dispose d'un endroit où dormir.\nI have a tight schedule.\tJ'ai un horaire chargé.\nI have a very old stamp.\tJ'ai un très vieux timbre.\nI have a weird neighbor.\tJ'ai un voisin bizarre.\nI have a weird neighbor.\tJ'ai une voisine bizarre.\nI have an ear infection.\tJ'ai une infection à l'oreille.\nI have an exam tomorrow.\tDemain j'ai un examen.\nI have an older brother.\tJ'ai un frère aîné.\nI have another question.\tJ'ai une autre question.\nI have backstage passes.\tJ'ai des badges d'entrée pour les coulisses.\nI have backstage passes.\tJ'ai des cartes d'accès aux coulisses.\nI have bad news for you.\tJ'ai de mauvaises nouvelles pour toi.\nI have bad news for you.\tJ'ai de mauvaises nouvelles pour vous.\nI have come to kill you.\tJe suis venu pour vous tuer.\nI have done my homework.\tJ'ai fait mes devoirs.\nI have finished my work.\tJ'ai terminé mon travail.\nI have just eaten lunch.\tJe viens juste de finir de déjeuner.\nI have little money now.\tJ'ai peu d'argent à l'heure actuelle.\nI have lost my umbrella.\tJ'ai égaré mon parapluie.\nI have no beef with him.\tJe n'ai pas à me plaindre de lui.\nI have no books to read.\tJe n'ai aucun livre à lire.\nI have no choice at all.\tJe n'ai aucun choix.\nI have no desire to try.\tJe n'ai aucune envie d'essayer.\nI have no proof of that.\tJe n'en ai aucune preuve.\nI have no time tomorrow.\tJe n'ai pas le temps demain.\nI have often been there.\tJ'y suis souvent allé.\nI have responsibilities.\tJ'ai des responsabilités.\nI have the ace of clubs.\tJ'ai l'as de trèfle.\nI have to clean my room.\tJe dois ranger ma chambre.\nI have to clean that up.\tIl me faut nettoyer cela.\nI have to do this alone.\tIl me faut le faire seul.\nI have to do this alone.\tIl me faut le faire seule.\nI have to iron my shirt.\tJe dois repasser ma chemise.\nI have to take a shower.\tIl faut que je prenne une douche.\nI have to take medicine.\tJe dois prendre des médicaments.\nI have to work tomorrow.\tJe dois travailler, demain.\nI have tried everything.\tJ'ai tout essayé.\nI have tried everything.\tJ'ai tout tenté.\nI have two big brothers.\tJ'ai deux frères ainés.\nI haven't eaten all day.\tJe n'ai pas mangé de toute la journée.\nI haven't talked to Tom.\tJe n'ai pas parlé à Tom.\nI heard a noise outside.\tJ'ai entendu un bruit dehors.\nI heard a strange sound.\tJ'ai entendu un son étrange.\nI heard her sing a song.\tJe l'ai entendue chanter.\nI heard someone whistle.\tJ'ai entendu quelqu'un siffler.\nI helped them yesterday.\tJe les ai aidés hier.\nI hope I'm not too late.\tJ'espère ne pas être trop en retard.\nI hope it stops raining.\tJ'espère qu'il va arrêter de pleuvoir.\nI hope that I can do it.\tJ'espère pouvoir le faire.\nI hope they're friendly.\tJ'espère qu'ils sont amicaux.\nI hope they're friendly.\tJ'espère qu'elles sont amicales.\nI hope this is worth it.\tJ'espère que ça vaut le coup.\nI hope to hear from you.\tJ'espère avoir de tes nouvelles.\nI hope to hear from you.\tJ'espère avoir de vos nouvelles.\nI hope to pass my exams.\tJ'espère réussir mes examens.\nI hope to see you again.\tJ'espère te voir encore.\nI hope to see you again.\tJ'espère que je te reverrai.\nI hope to see you again.\tJ'espère vous revoir.\nI hope you are all well.\tJ'espère que vous allez tous bien.\nI hope you'll come back.\tJ'espère que tu reviendras.\nI hope you're not alone.\tJ'espère que vous n'êtes pas seul.\nI hope you're not alone.\tJ'espère que vous n'êtes pas seule.\nI hope you're not alone.\tJ'espère que vous n'êtes pas seuls.\nI hope you're not alone.\tJ'espère que vous n'êtes pas seules.\nI hope you're not alone.\tJ'espère que tu n'es pas seul.\nI hope you're not alone.\tJ'espère que tu n'es pas seule.\nI hope you're well paid.\tJ'espère que tu es bien payé.\nI hope you're well paid.\tJ'espère que tu es bien payée.\nI hope you're well paid.\tJ'espère que vous êtes bien payé.\nI hope you're well paid.\tJ'espère que vous êtes bien payée.\nI hope you're well paid.\tJ'espère que vous êtes bien payés.\nI hope you're well paid.\tJ'espère que vous êtes bien payées.\nI just do what I can do.\tJe ne fais que ce que je peux.\nI just do what I'm told.\tJe ne fais que ce qu'on me dit.\nI just don't believe it.\tJe n'y crois simplement pas.\nI just don't understand.\tJe ne comprends pas, un point c'est tout.\nI just don't understand.\tJe ne comprends tout simplement pas.\nI just feel so helpless.\tJe me sens juste si impuissant.\nI just feel so helpless.\tJe me sens juste si impuissante.\nI just feel so helpless.\tJe me sens juste si désarmé.\nI just feel so helpless.\tJe me sens juste si désarmée.\nI just got back in town.\tJe viens de revenir en ville.\nI just got your message.\tJe viens d'avoir votre message.\nI just got your message.\tJe viens d'avoir ton message.\nI just got your message.\tJe viens de recevoir votre message.\nI just got your message.\tJe viens de recevoir ton message.\nI just like to daydream.\tJ'aime faire des rêves éveillés.\nI just need to be alone.\tJ'ai simplement besoin d'être seul.\nI just need to be alone.\tJ'ai simplement besoin d'être seule.\nI just want to be alone.\tJe veux simplement être seule.\nI just want to be alone.\tJe veux simplement être seul.\nI just want to be alone.\tJe veux simplement me trouver seule.\nI just want to be alone.\tJe veux simplement me retrouver seule.\nI just want to be clear.\tJe veux simplement être clair.\nI just want to be clear.\tJe veux simplement être claire.\nI just want to be clear.\tMoi, je veux simplement être clair.\nI just want to be clear.\tMoi, je veux simplement être claire.\nI just want to be clear.\tJe veux être clair, un point c'est tout.\nI just want to be clear.\tJe veux être claire, un point c'est tout.\nI just want to be loved.\tJe veux simplement être aimé.\nI just want to be loved.\tJe veux simplement être aimée.\nI just want to be loved.\tJe veux être aimé, un point c'est tout.\nI just want to be loved.\tJe veux être aimée, un point c'est tout.\nI just want to have fun.\tJe veux simplement m'amuser.\nI just want to have fun.\tJe veux juste m'amuser.\nI just want to help you.\tJe veux juste t'aider.\nI just want to help you.\tJe veux juste vous aider.\nI just want to know why.\tJe veux juste savoir pourquoi.\nI just want to know why.\tJe veux simplement savoir pourquoi.\nI just want you to come.\tJe veux seulement que tu viennes.\nI knew it was unhealthy.\tJe savais que ce n'était pas sain.\nI knew it wouldn't last.\tJe savais que ça ne durerait pas.\nI knew it wouldn't work.\tJe savais que ça ne fonctionnerait pas.\nI knew something was up.\tJe savais que quelque chose se tramait.\nI knew they were coming.\tJe savais qu'ils venaient.\nI knew they were coming.\tJe savais qu'elles venaient.\nI knew we would find it.\tJe savais que nous le trouverions.\nI know I made a mistake.\tJe sais que j'ai fait une erreur.\nI know I'm not dreaming.\tJe sais que je ne suis pas en train de rêver.\nI know Tom and his wife.\tJe connais Tom et sa femme.\nI know Tom isn't guilty.\tJe sais que Tom n'est pas coupable.\nI know a little Spanish.\tJe parle un peu espagnol.\nI know his brother well.\tJe connais bien son frère.\nI know how busy you are.\tJe sais combien tu es occupé.\nI know how busy you are.\tJe sais combien tu es occupée.\nI know how busy you are.\tJe sais combien vous êtes occupé.\nI know how busy you are.\tJe sais combien vous êtes occupées.\nI know how busy you are.\tJe sais combien vous êtes occupée.\nI know how busy you are.\tJe sais combien vous êtes occupés.\nI know myself very well.\tJe me connais très bien.\nI know nothing about it.\tJe n'en sais rien.\nI know nothing but this.\tJe ne sais rien d'autre.\nI know someone was here.\tJe sais que quelqu'un était là.\nI know that he can draw.\tJe sais qu'il sait dessiner.\nI know that she is cute.\tJe sais qu'elle est mignonne.\nI know when to say when.\tJe sais quand dire stop.\nI know you want to help.\tJe sais que tu veux aider.\nI know you want to help.\tJe sais que vous voulez aider.\nI know you're busy, too.\tJe sais que vous êtes également occupé.\nI know you're busy, too.\tJe sais que tu es également occupé.\nI know you're busy, too.\tJe sais que vous êtes également occupées.\nI know you're busy, too.\tJe sais que vous êtes également occupée.\nI know you're busy, too.\tJe sais que vous êtes également occupés.\nI know you're busy, too.\tJe sais que tu es également occupée.\nI know you're not lying.\tJe sais que vous ne mentez pas.\nI know you've been busy.\tJe sais que tu as été occupé.\nI know you've been busy.\tJe sais que vous avez été occupé.\nI know you've been busy.\tJe sais que vous avez été occupée.\nI know you've been busy.\tJe sais que vous avez été occupés.\nI know you've been busy.\tJe sais que vous avez été occupées.\nI know you've been busy.\tJe sais que tu as été occupée.\nI know you've got a gun.\tJe sais que vous avez une arme.\nI know you've got a gun.\tJe sais que tu as une arme.\nI learned from the best.\tJ'ai appris des meilleurs.\nI learned from the best.\tJ'ai appris par les meilleurs.\nI learned to milk a cow.\tJ'ai appris à traire une vache.\nI learned to milk a cow.\tJ'appris à traire une vache.\nI left everything there.\tJ'ai tout laissé là-bas.\nI left my watch at home.\tJ'ai laissé ma montre à la maison.\nI lent my pencil to Tom.\tJ'ai prêté mon crayon à Tom.\nI let my teammates down.\tJ'ai laissé tomber mes coéquipiers.\nI like hanging out here.\tJ'aime traîner par ici.\nI like it more and more.\tJe l'aime de plus en plus.\nI like it when it's hot.\tJ'aime qu'il fasse très chaud.\nI like my job just fine.\tJ'apprécie bien mon travail.\nI like playing baseball.\tJ'aime jouer au base-ball.\nI like shopping on Ebay.\tJ'aime faire des achats sur eBay.\nI like singing with Tom.\tJ'aime bien chanter avec Tom.\nI like skiing very much.\tJ'adore le ski.\nI like tennis very much.\tJ'aime beaucoup le tennis.\nI like the way you look.\tJ'aime ton style.\nI like the way you look.\tJ'aime votre style.\nI like the way you look.\tJ'aime ton apparence.\nI like the way you sing.\tJ'aime ta manière de chanter.\nI like the way you talk.\tJ'aime ta manière de parler.\nI like the way you talk.\tJ'aime votre manière de parler.\nI like the way you walk.\tJ'aime ta manière de marcher.\nI like to clean my room.\tJ'aime nettoyer ma chambre.\nI like to draw pictures.\tJ'aime dessiner.\nI like to study English.\tJ'aime apprendre l'anglais.\nI like working with you.\tJ'apprécie de travailler avec toi.\nI like working with you.\tJ'apprécie de travailler avec vous.\nI like working with you.\tJ'aime travailler avec toi.\nI like working with you.\tJ'aime travailler avec vous.\nI like you a great deal.\tJe t'aime fort.\nI like you a great deal.\tJe vous aime fort.\nI like your personality.\tJ'aime votre personnalité.\nI like your personality.\tJ'aime ta personnalité.\nI listened to her story.\tJ'ai écouté son histoire.\nI listened to his story.\tJ'ai écouté son histoire.\nI live here with my dog.\tJe vis ici avec mon chien.\nI live just up the road.\tJe vis juste au haut de la route.\nI live three doors down.\tJe vis trois portes plus bas.\nI locked the front door.\tJ'ai verrouillé la porte de devant.\nI locked the front door.\tJe verrouillai la porte de devant.\nI looked at the picture.\tJe regardais l'image.\nI looked out the window.\tJ'ai regardé par la fenêtre.\nI lost everything I had.\tJe perdis tout ce que j'avais.\nI lost everything I had.\tJ'ai perdu tout ce que j'avais.\nI lost my job on Monday.\tJ'ai perdu, lundi, mon boulot.\nI lost my way in Boston.\tJe me suis perdu dans Boston.\nI love being around him.\tJ'adore tourner autour de lui.\nI love hard-boiled eggs.\tJ'adore les œufs durs.\nI love the way you kiss.\tJ'adore la manière que vous avez d'embrasser.\nI love the way you kiss.\tJ'adore la manière que tu as d'embrasser.\nI love the way you kiss.\tJ'adore la façon que vous avez d'embrasser.\nI love the way you kiss.\tJ'adore la façon que tu as d'embrasser.\nI love the way you kiss.\tJ'adore la manière dont tu embrasses.\nI love the way you kiss.\tJ'adore la manière dont vous embrassez.\nI love the way you kiss.\tJ'adore votre façon d'embrasser.\nI love the way you kiss.\tJ'adore ta façon d'embrasser.\nI love the way you talk.\tJ'adore votre façon de parler.\nI love the way you talk.\tJ'adore ta façon de parler.\nI love the way you talk.\tJ'adore la manière dont vous parlez.\nI love the way you talk.\tJ'adore la manière dont tu parles.\nI love the way you talk.\tJ'adore la manière que vous avez de parler.\nI love the way you talk.\tJ'adore la manière que tu as de parler.\nI love the way you walk.\tJ'adore votre manière de marcher.\nI love the way you walk.\tJ'adore ta manière de marcher.\nI love the way you walk.\tJ'adore votre façon de marcher.\nI love the way you walk.\tJ'adore ta façon de marcher.\nI love to see you laugh.\tJ'adore te voir rire.\nI love to see you laugh.\tJ'adore vous voir rire.\nI love to see you smile.\tJ'adore te voir sourire.\nI love to see you smile.\tJ'adore vous voir sourire.\nI love to take pictures.\tJ'adore prendre des photos.\nI made a fool of myself.\tJe me suis ridiculisé.\nI made a fool of myself.\tJe me suis ridiculisée.\nI majored in psychology.\tJe me suis spécialisé en psychologie.\nI majored in psychology.\tJe me suis spécialisée en psychologie.\nI may swim in the river.\tJe peux nager dans la rivière.\nI met him several times.\tJe l'ai rencontré plusieurs fois.\nI missed the school bus!\tJ'ai raté mon bus scolaire !\nI must be getting close.\tJe dois m'approcher.\nI must be getting close.\tJe dois m'en approcher.\nI must do that, I think.\tJe dois faire cela, je pense.\nI must've been dreaming.\tJ'ai dû rêver.\nI need an extra blanket.\tJ'ai besoin d'une couverture supplémentaire.\nI need political asylum.\tJ'ai besoin de l'asile politique.\nI need some good advice.\tJ'ai besoin de bons conseils.\nI need something to eat.\tJ'ai besoin de manger quelque chose.\nI need something to eat.\tIl me faut quelque chose à manger.\nI need to be left alone.\tIl faut qu'on me laisse seul.\nI need to be left alone.\tIl faut qu'on me laisse seule.\nI need to get a haircut.\tJ'ai besoin de me faire couper les cheveux.\nI need to get something.\tIl me faut aller chercher quelque chose.\nI need to get something.\tIl me faut aller quérir quelque chose.\nI need to take a shower.\tJ'ai besoin de prendre une douche.\nI need to talk with you.\tJ'ai besoin de te parler.\nI need to talk with you.\tJ'ai besoin de vous parler.\nI need to wash my hands.\tJ'ai besoin de me laver les mains.\nI need you to leave now.\tIl faut que vous vous en alliez, maintenant.\nI need you to leave now.\tJ'ai besoin que tu partes, maintenant.\nI need you to leave now.\tJ'ai besoin que vous partiez, maintenant.\nI need your cooperation.\tJ'ai besoin de ta coopération.\nI need your cooperation.\tJ'ai besoin de votre coopération.\nI needed Tom to do that.\tJ'avais besoin que Tom fasse cela.\nI needed to talk to you.\tJ'avais besoin de te parler.\nI never do any exercise.\tJe ne fais jamais d'exercice.\nI never really knew Tom.\tJe n’ai jamais vraiment connu Tom.\nI never thought of that.\tJe n'ai jamais pensé à ça.\nI never told you to lie.\tJe ne t'ai jamais dit de mentir.\nI never told you to lie.\tJe ne vous ai jamais dit de mentir.\nI never visit my sister.\tJe ne rends jamais visite à ma sœur.\nI no longer need a loan.\tJe n'ai plus besoin d'un prêt.\nI often have bad dreams.\tJe fais souvent de mauvais rêves.\nI often have nightmares.\tJe fais souvent des cauchemars.\nI only want to help you.\tJe veux seulement t'aider.\nI only want to help you.\tJe veux seulement vous aider.\nI only went inside once.\tJe ne suis allé qu'une seule fois à l'intérieur.\nI only went inside once.\tJe ne suis allée qu'une seule fois à l'intérieur.\nI ordered new furniture.\tJ'ai commandé de nouveaux meubles.\nI owe my success to him.\tJe lui dois mon succès.\nI owe my success to you.\tJe te dois tout mon succès.\nI owe my success to you.\tJe vous dois tout mon succès.\nI owe you a big apology.\tJe vous dois de plates excuses.\nI owe you a big apology.\tJe te dois de plates excuses.\nI paid him five dollars.\tJe lui ai donné 5 dollars en paiement.\nI painted the gate blue.\tJ'ai peint le portail en bleu.\nI passed by four houses.\tJe suis passé devant quatre maisons.\nI play volleyball a lot.\tJe joue beaucoup au volley.\nI play volleyball often.\tJe joue souvent au volley-ball.\nI prefer mutton to beef.\tJe préfère le mouton au bœuf.\nI prefer spring to fall.\tJe préfère le printemps à l'automne.\nI prefer warmer weather.\tJe préfère un temps plus chaud.\nI promise I'll be quiet.\tJe promets que je serai calme.\nI put it here somewhere.\tJe l'ai mis quelque part ici.\nI put it here somewhere.\tJe l'ai mise quelque part ici.\nI question your choices.\tJe mets vos choix en doute.\nI question your choices.\tJe mets tes choix en doute.\nI question your loyalty.\tJe mets votre loyauté en doute.\nI question your loyalty.\tJe mets ta loyauté en doute.\nI reacted instinctively.\tJ'ai réagi de manière instinctive.\nI read it in a magazine.\tJe l'ai lu dans un magazine.\nI read one of his works.\tJ'ai lu une de ses œuvres.\nI really didn't do much.\tJe n'ai vraiment pas fait grand-chose.\nI really don't envy you.\tJe ne vous envie vraiment pas.\nI really don't envy you.\tJe ne t'envie vraiment pas.\nI really don't think so.\tJe ne le pense vraiment pas.\nI really enjoyed myself.\tJe me suis vraiment bien amusé.\nI really enjoyed myself.\tJe me suis vraiment bien amusée.\nI really have to go now.\tIl me faut vraiment y aller maintenant.\nI really like city life.\tJ'apprécie vraiment la vie urbaine.\nI really like that girl.\tJ'aime vraiment cette fille.\nI really like that girl.\tJ'apprécie vraiment cette fille.\nI really like you a lot.\tJe vous apprécie vraiment beaucoup.\nI really like you a lot.\tJe t'apprécie vraiment beaucoup.\nI really like your work.\tJ'apprécie vraiment votre travail.\nI really like your work.\tJ'apprécie vraiment ton travail.\nI really miss you a lot.\tVous me manquez vraiment beaucoup.\nI really need the money.\tJ'ai vraiment besoin de l'argent.\nI really need your help.\tJ'ai vraiment besoin de ton aide.\nI really need your help.\tJ'ai vraiment besoin de votre aide.\nI received your message.\tJ'ai reçu votre message.\nI received your message.\tJ'ai reçu ton message.\nI refrain from drinking.\tJe me retiens de boire.\nI refrain from drinking.\tJe m'abstiens de boire.\nI refuse to accept that.\tJe refuse d'accepter ça.\nI refuse to accept that.\tJe refuse d'accepter cela.\nI refuse to accept that.\tJe refuse de l'accepter.\nI refuse to answer that.\tJe refuse de répondre à ça.\nI refused to believe it.\tJe refusai de le croire.\nI refused to believe it.\tJ'ai refusé de le croire.\nI refused to believe it.\tJe me suis refusé à le croire.\nI refused to believe it.\tJe me refusai à le croire.\nI regret having said so.\tJe regrette d'avoir dit cela.\nI remember that feeling.\tJe me souviens de ce sentiment.\nI remember that feeling.\tJe me rappelle ce sentiment.\nI sacrificed everything.\tJ'ai tout sacrifié.\nI said I would help you.\tJ'ai dit que je t'aiderais.\nI said it was all right.\tJ'ai dit que tout allait bien.\nI saw him looking at me.\tJe l'ai vu me regarder.\nI saw him play baseball.\tJe l'ai vu jouer au baseball.\nI saw him sawing a tree.\tJe l'ai vu en train de scier un arbre.\nI saw somebody kiss Tom.\tJ'ai vu quelqu'un embrasser Tom.\nI saw tears in her eyes.\tJe vis des larmes dans ses yeux.\nI saw tears in her eyes.\tJ'ai vu des larmes dans ses yeux.\nI saw tears in his eyes.\tJe vis des larmes dans ses yeux.\nI saw tears in his eyes.\tJ'ai vu des larmes dans ses yeux.\nI saw the cake you made.\tJ'ai vu le gâteau que tu as fait.\nI saw the car hit a man.\tJ'ai vu la voiture heurter un homme.\nI saw what your dog did.\tJ'ai vu ce que votre chien a fait.\nI saw what your dog did.\tJ'ai vu ce que ton chien a fait.\nI scarcely slept a wink.\tJ'ai à peine fermé l'œil.\nI sent a message to Tom.\tJ'ai envoyé un message à Tom.\nI share a room with Tom.\tJe partage une chambre avec Tom.\nI should've expected it.\tJ'aurais dû m'y attendre.\nI should've worn a coat.\tJ'aurai dû mettre un manteau.\nI shouldn't be laughing.\tJe ne devrais pas rire.\nI showed him who's boss.\tJe lui ai montré qui était le patron.\nI showed my room to Tom.\tJ'ai montré ma chambre à Tom.\nI showed my room to him.\tJe lui ai montré ma chambre.\nI shrugged my shoulders.\tJ'ai haussé les épaules.\nI slept aboard the ship.\tJ'ai dormi à bord du navire.\nI slept well last night.\tJ'ai bien dormi cette nuit.\nI sold my books cheaply.\tJ'ai vendu mes livres à bas prix.\nI sold my books cheaply.\tJ'ai vendu mes livres à prix modique.\nI speak a few languages.\tJe parle quelques langues.\nI speak a little German.\tJe parle un peu allemand.\nI speak from experience.\tJe parle d'expérience.\nI speak from experience.\tJe parle sur la base d'expérience.\nI speak from experience.\tJe parle par expérience.\nI stared at the ceiling.\tJ'ai fixé le plafond.\nI stared at the ceiling.\tJe fixai le plafond.\nI still believe in love.\tJe crois encore en l'amour.\nI still don't feel safe.\tJe ne me sens toujours pas en sécurité.\nI stretched out my legs.\tJ'ai étendu les jambes.\nI stretched out my legs.\tJ'étendis les jambes.\nI studied before supper.\tJ’ai étudié avant de dîner.\nI studied it thoroughly.\tJe l'ai étudié à fond.\nI study English at home.\tJ'étudie l'anglais chez moi.\nI suddenly became dizzy.\tJ'ai soudain été pris de vertiges.\nI suddenly became dizzy.\tJ'ai soudain été prise de vertiges.\nI suddenly became dizzy.\tMa tête s'est tout à coup mise à tourner.\nI suddenly became dizzy.\tMa tête s'est tout à coup mise à me tourner.\nI suggest we get moving.\tJe suggère que nous nous mettions en marche.\nI suggest you cooperate.\tJe vous suggère de coopérer.\nI suggest you cooperate.\tJe te suggère de coopérer.\nI suggest you get going.\tJe suggère que vous vous mettiez en train.\nI suggest you get going.\tJe suggère que tu te mettes en train.\nI suppose it might work.\tJe suppose que ça pourrait fonctionner.\nI suppose it's my fault.\tJe suppose que c'est ma faute.\nI suppose it's possible.\tJe suppose que c'est possible.\nI suppose we could walk.\tJe suppose que nous pourrions marcher.\nI suppose you are right.\tJe suppose que tu as raison.\nI suppose you are right.\tJe suppose que vous avez raison.\nI suppose you are right.\tC'est moi qui suppose que vous avez raison.\nI suppose you are right.\tC'est moi qui suppose que tu as raison.\nI suppose you're hungry.\tJe présume que tu as faim.\nI suppose you're hungry.\tJe présume que vous avez faim.\nI suppose you're hungry.\tJ’imagine que tu as faim.\nI swim almost every day.\tJe nage presque tous les jours.\nI take a bath every day.\tJe me baigne quotidiennement.\nI take a bath every day.\tJe me baigne tous les jours.\nI take a bath every day.\tJe prends un bain chaque jour.\nI take back what I said.\tJe retire ce que j’ai dit.\nI think I am overworked.\tJe pense que je suis surmené.\nI think I am overworked.\tJe pense que je suis surmenée.\nI think I can do better.\tJe pense que je peux faire mieux.\nI think I can do better.\tJe pense pouvoir faire mieux.\nI think I have a cavity.\tJe pense que j'ai une carie.\nI think I see something.\tJe crois que je vois quelque chose.\nI think I see something.\tJe pense que je vois quelque chose.\nI think I understand it.\tJe pense que le comprends.\nI think I'd rather walk.\tJe pense que je préférerais marcher.\nI think I'm going crazy.\tJe pense que je deviens fou.\nI think Tom believed me.\tJe pense que Tom m'a cru.\nI think Tom can do that.\tJe pense que Tom peut faire cela.\nI think Tom is a coward.\tJe crois que Tom est un lâche.\nI think Tom is cheating.\tJe pense que Tom triche.\nI think Tom is generous.\tJe pense que Tom est généreux.\nI think Tom is impolite.\tJe pense que Tom est impoli.\nI think Tom is reliable.\tJe pense que Tom est fiable.\nI think Tom is sleeping.\tJe pense que Tom dort.\nI think Tom may be dead.\tJe crois que Tom est peut-être mort.\nI think Tom may be hurt.\tJe pense qu'il se peut que Tom soit blessé.\nI think Tom may be sick.\tJe pense qu'il se peut que Tom soit malade.\nI think Tom needs to go.\tJe crois que Tom doit partir.\nI think about Tom often.\tJe pense souvent à Tom.\nI think about her a lot.\tJe pense beaucoup à elle.\nI think about her a lot.\tJe pense fort à elle.\nI think about her often.\tJe pense souvent à elle.\nI think about him often.\tJe pense souvent à lui.\nI think about you often.\tJe pense souvent à vous.\nI think about you often.\tJe pense souvent à toi.\nI think he will succeed.\tJe pense qu'il va réussir.\nI think it's going well.\tJe pense que ça va bien.\nI think my parents know.\tJe pense que mes parents savent.\nI think that's horrible.\tJe pense que c'est affreux.\nI think this is perfect.\tJe pense que c'est parfait.\nI think we need to talk.\tJe pense qu'il nous faut parler.\nI think we need to talk.\tJe pense qu'il nous faut discuter.\nI think we were lied to.\tJe pense qu'on nous a menti.\nI think we're all right.\tJe pense que tout va bien pour nous.\nI think we're neighbors.\tJe pense que nous sommes voisins.\nI think we're neighbors.\tJe pense qu'on est voisins.\nI think we're safe here.\tJe pense que nous sommes en sécurité, ici.\nI think we're too young.\tJe pense que nous sommes trop jeunes.\nI think you should quit.\tJe pense que tu devrais démissionner.\nI think you should quit.\tJe pense que vous devriez démissionner.\nI think you should swim.\tJe pense que tu devrais nager.\nI think you should swim.\tJe pense que vous devriez nager.\nI think you'd better go.\tJe pense que tu ferais mieux de t'en aller.\nI think you'd better go.\tJe pense que vous feriez mieux de vous en aller.\nI think you'd better go.\tJe pense que tu ferais mieux d'y aller.\nI think you'd better go.\tJe pense que vous feriez mieux d'y aller.\nI think you're an idiot.\tJe pense que tu es un idiot.\nI think you're bluffing.\tJe pense que tu bluffes.\nI thought I heard music.\tJe pensais avoir entendu de la musique.\nI thought I heard music.\tJe pensais entendre de la musique.\nI thought I saw a ghost.\tJe pensais avoir vu un fantôme.\nI thought I saw a ghost.\tJe pensais voir un fantôme.\nI thought I was on time.\tJe pensais être à l'heure.\nI thought everyone knew.\tJe pensais que tout le monde savait.\nI thought he might come.\tJ'ai pensé qu'il pourrait venir.\nI thought he was honest.\tJe pensais qu'il était honnête.\nI thought he was honest.\tJ'ai pensé qu'il était honnête.\nI thought he would come.\tJe pensais qu'il viendrait.\nI thought it was a joke.\tJe pensais que c'était une blague.\nI thought it was a joke.\tJe pensais qu'il s'agissait d'une blague.\nI thought it was stupid.\tJ'ai pensé que c'était stupide.\nI thought it was stupid.\tJe pensai que c'était stupide.\nI thought nothing of it.\tJe n'en ai rien pensé.\nI thought this was mine.\tJe pensais que c'était la mienne.\nI thought this was mine.\tJe pensais que c'était le mien.\nI thought we could talk.\tJe pensais que nous pouvions parler.\nI thought we could talk.\tJe pensais que nous pourrions parler.\nI thought we could talk.\tJe pensais que nous pouvions discuter.\nI thought we could talk.\tJe pensais que nous pourrions discuter.\nI thought we could talk.\tJe pensais que nous pouvions nous entretenir.\nI thought we could talk.\tJe pensais que nous pourrions nous entretenir.\nI thought we had a deal.\tJe pensais que nous avions un accord.\nI thought we were happy.\tJe pensais que nous étions heureux.\nI thought we were happy.\tJe pensais que nous étions heureuses.\nI thought you went home.\tJe pensais que tu étais allé chez toi.\nI thought you went home.\tJe pensais que vous étiez allé chez vous.\nI thought you went home.\tJe pensais que vous étiez allés chez vous.\nI thought you went home.\tJe pensais que vous étiez allée chez vous.\nI thought you went home.\tJe pensais que vous étiez allées chez vous.\nI thought you went home.\tJe pensais que tu étais allée chez toi.\nI thought you were dead.\tJe pensais que tu étais mort.\nI thought you'd be here.\tJe pensais que vous seriez ici.\nI thought you'd be here.\tJ'ai pensé que tu serais ici.\nI thought you'd changed.\tJe pensais que tu avais changé.\nI thought you'd changed.\tJe pensais que vous aviez changé.\nI thought you'd like it.\tJe pensais que tu l'apprécierais.\nI thought you'd like it.\tJe pensais que vous l'apprécieriez.\nI told Tom to ignore it.\tJ'ai dit à Tom de l'ignorer.\nI told everyone to duck.\tJ'ai dit à tout le monde de se baisser.\nI took a picture of her.\tJe l'ai prise en photo.\nI tried again and again.\tJ'ai essayé encore et encore.\nI tried to cheer him up.\tJ'ai essayé de le remonter.\nI tried to cheer him up.\tJ'essayai de le remonter.\nI tried to cheer him up.\tJ'ai essayé de lui remonter le moral.\nI tried to cheer him up.\tJ'essayai de lui remonter le moral.\nI trust we're all alone.\tJ'espère que nous sommes tout seuls.\nI trust we're all alone.\tJ'espère que nous sommes toutes seules.\nI turned the lights out.\tJ'ai éteint la lumière.\nI understand completely.\tJe comprends parfaitement.\nI understand completely.\tJe comprends tout à fait.\nI understand it all now.\tJe comprends tout, désormais.\nI use this all the time.\tJ'utilise ceci tout le temps.\nI used to love swimming.\tJ'adorais nager.\nI usually do the dishes.\tD'habitude je fais la vaisselle.\nI usually get up at six.\tJe me lève d'habitude à six heures.\nI usually get up at six.\tJe me lève usuellement à six heures.\nI want Tom to come back.\tJe veux que Tom revienne.\nI want Tom to read this.\tJe veux que Tom lise ceci.\nI want a piece of candy.\tJe veux un bonbon.\nI want more information.\tJe veux davantage d'information.\nI want some information.\tJe veux des informations.\nI want something better.\tJe veux quelque chose de mieux.\nI want something better.\tJe veux quelque chose de meilleur.\nI want something to eat.\tJe veux manger quelque chose.\nI want something to eat.\tJe veux manger un truc.\nI want this room sealed.\tJe veux que cette pièce soit scellée.\nI want this to be yours.\tJe veux que ce soit le vôtre.\nI want this to be yours.\tJe veux que ce soit le tien.\nI want to be a magician.\tJe veux devenir magicien.\nI want to be left alone.\tJe veux qu'on me laisse seule.\nI want to be left alone.\tJe veux qu'on me laisse seul.\nI want to buy ski boots.\tJe veux acheter des chaussures de ski.\nI want to check out now.\tJe veux régler ma note, maintenant.\nI want to check out now.\tJe veux vérifier, maintenant.\nI want to do it for you.\tJe veux le faire pour vous.\nI want to do it for you.\tJe veux le faire pour toi.\nI want to do it tonight.\tJe veux le faire ce soir.\nI want to do this alone.\tJe veux faire ça seule.\nI want to do this alone.\tJe veux faire ça seul.\nI want to do this later.\tJe veux faire ça plus tard.\nI want to do this right.\tJe veux faire ça correctement.\nI want to eat something.\tJe veux manger quelque chose.\nI want to eat something.\tJe voudrais manger quelque chose.\nI want to eat something.\tJe veux manger un truc.\nI want to focus on that.\tJe veux me concentrer sur ça.\nI want to get rid of it.\tJe veux m'en débarrasser.\nI want to get this done.\tJe veux que ce soit fait.\nI want to go to Seattle.\tJe veux aller à Seattle.\nI want to go to college.\tJe veux aller à la fac.\nI want to go to the zoo.\tJe veux aller au zoo.\nI want to hear from you.\tJe veux entendre de tes nouvelles.\nI want to hear from you.\tJe veux entendre de vos nouvelles.\nI want to help if I can.\tJe veux aider, si je peux.\nI want to help you, Tom.\tJe veux t'aider, Tom.\nI want to help you, Tom.\tJe veux vous aider, Tom.\nI want to learn English.\tJe veux apprendre l'anglais.\nI want to live in Italy.\tJe veux vivre en Italie.\nI want to live in Tampa.\tJe veux vivre à Tampa.\nI want to look like her.\tJe veux lui ressembler.\nI want to look like her.\tJe veux paraître comme elle.\nI want to look like her.\tJe veux avoir le même air qu'elle.\nI want to make it right.\tJe veux le faire bien.\nI want to press charges.\tJe veux engager des poursuites.\nI want to read the book.\tJe veux lire le livre.\nI want to say I'm sorry.\tJe veux dire que je suis désolé.\nI want to say I'm sorry.\tJe veux dire que je suis désolée.\nI want to see a volcano.\tJe veux voir un volcan !\nI want to see the world.\tJe veux voir le monde.\nI want to see you first.\tJe veux vous voir en premier.\nI want to see you first.\tJe veux te voir en premier.\nI want to see you laugh.\tJe veux te voir rire.\nI want to see you laugh.\tJe veux vous voir rire.\nI want to see you smile.\tJe veux te voir sourire.\nI want to see you smile.\tJe veux vous voir sourire.\nI want to see your boss.\tJe veux voir ton patron.\nI want to see your boss.\tJe veux voir ta patronne.\nI want to see your boss.\tJe veux voir votre patron.\nI want to see your boss.\tJe veux voir votre patronne.\nI want to stay with you.\tJe veux rester avec vous.\nI want to stay with you.\tJe veux rester avec toi.\nI want to stay with you.\tQuant à moi, je veux rester avec vous.\nI want to stay with you.\tQuant à moi, je veux rester avec toi.\nI want to study English.\tJe veux étudier l'anglais.\nI want to study history.\tJe veux étudier l'histoire.\nI want to study history.\tJe veux étudier l'Histoire.\nI want to take it apart.\tJe veux le prendre à part.\nI want to talk with you.\tJe veux m'entretenir avec toi.\nI want to talk with you.\tJe veux m'entretenir avec vous.\nI want to talk with you.\tJe veux vous parler.\nI want to wash up first.\tJe veux d'abord laver la vaisselle.\nI want to work with you.\tJe veux travailler avec vous.\nI want to work with you.\tJe veux travailler avec toi.\nI want you to come back.\tJe veux que vous reveniez.\nI want you to come back.\tJe veux que tu reviennes.\nI want you to handle it.\tJe veux que tu t'en charges.\nI want you to handle it.\tJe veux que vous vous en chargiez.\nI want you to handle it.\tJe veux que vous le traitiez.\nI want you to handle it.\tJe veux que tu le traites.\nI want you to have this.\tJe veux que tu aies ceci.\nI want you to have this.\tJe veux que vous ayez ceci.\nI want you to let me go.\tJe veux que tu me laisses partir.\nI want you to let me go.\tJe veux que vous me laissiez partir.\nI wanted Tom to help me.\tJe voulais que Tom m'aide.\nI wanted to ask Tom why.\tJe voulais demander à Tom pourquoi.\nI wanted to go swimming.\tJe voulais aller nager.\nI wanted to go to China.\tJe voulais aller en Chine.\nI wanted to impress you.\tJe voulais t'impressionner.\nI wanted to impress you.\tJe voulais vous impressionner.\nI wanted to protect you.\tJe voulais te protéger.\nI wanted to read a book.\tJe voulais lire un livre.\nI wanted to slap myself.\tJ'avais envie de me gifler.\nI was chosen to do that.\tJ'ai été choisi pour faire ça.\nI was feeling confident.\tJe me sentais confiant.\nI was feeling nostalgic.\tJe me sentais nostalgique.\nI was happy to help you.\tJ'étais heureux de vous aider.\nI was happy to help you.\tJ'étais heureux de t'aider.\nI was hoping you'd know.\tJ'espérais que tu saurais.\nI was hoping you'd know.\tJ'espérais que vous sauriez.\nI was lost in the crowd.\tJ'étais perdu dans la foule.\nI was not studying then.\tJe n'étais pas en train d'étudier à ce moment-là.\nI was really mad at Tom.\tJ'étais vraiment en colère contre Tom.\nI was really very happy.\tJ'étais vraiment très heureux.\nI was scared, of course.\tJ'étais terrifié, bien sûr.\nI was scared, of course.\tJ'étais terrifiée, bien sûr.\nI was shocked to see it.\tJe fus choquée de voir ça.\nI was speaking with Tom.\tJe parlais avec Tom.\nI was taken by surprise.\tJ'ai été pris par surprise.\nI was terribly offended.\tJ'étais profondément offusqué.\nI was worried about you.\tJe me suis inquiété pour toi.\nI was young at the time.\tJ'étais jeune, à l'époque.\nI wasn't able to escape.\tJe n'ai pas pu m'échapper.\nI wasn't born yesterday.\tJe ne suis pas née d'hier.\nI wasn't busy last week.\tJe n'étais pas occupé la semaine dernière.\nI wasn't looking at you.\tJe ne vous regardais pas.\nI wasn't looking at you.\tJe ne te regardais pas.\nI wasn't talking to you.\tJe ne te parlais pas.\nI wasn't talking to you.\tJe ne vous parlais pas.\nI watch TV now and then.\tJe regarde la télévision de temps en temps.\nI watched it on YouTube.\tJe l'ai regardé sur YouTube.\nI went fishing with Tom.\tJe suis allé pêcher avec Tom.\nI went stag to the prom.\tJe me suis rendu seul au bal.\nI went to Kobe by train.\tJ'ai été à Kobe en train.\nI will always love Mary.\tJe serai toujours amoureux de Mary.\nI will ask him tomorrow.\tJe lui demanderai demain.\nI will make some coffee.\tJe vais faire un peu de café.\nI will not let you pass.\tJe ne vous laisserai pas passer.\nI will not let you pass.\tJe ne te laisserai pas passer.\nI wish I could help you.\tJ'aurais aimé pouvoir t'aider.\nI wish I had eaten more.\tJ'aurais aimé avoir mangé davantage.\nI wish he were here now.\tJ'aimerais qu'il soit là maintenant.\nI wish to see my father.\tJe désire voir mon père.\nI wish we could do that.\tJ'aimerais que nous puissions le faire.\nI wish we had done more.\tJ'aurais voulu que nous en ayons fait plus.\nI wish we'd met earlier.\tJ'aurais aimé que nous nous soyons rencontrés plus tôt.\nI wish we'd met earlier.\tJ'aurais aimé que nous nous soyons rencontrées plus tôt.\nI wish you two the best.\tJe souhaite le meilleur à vous deux.\nI wish you'd talk to me.\tJ'aimerais que tu me parles.\nI wish you'd talk to me.\tJ'aimerais que vous me parliez.\nI won't be needing this.\tJe n'en aurai pas l'utilité.\nI won't be needing this.\tJe n'aurai pas besoin de ça.\nI won't come back again.\tJe ne reviendrai pas.\nI won't miss Tom at all.\tTom ne me manquera pas du tout.\nI won't see him anymore.\tJe ne le verrai plus.\nI won't stay here alone.\tJe ne resterai pas ici tout seul.\nI won't stay here alone.\tJe ne resterai pas ici seul.\nI wonder how that works.\tJe me demande comment cela fonctionne.\nI wonder if he likes me.\tJe me demande s'il m'apprécie.\nI wonder if he loves me.\tJe me demande s'il m'aime.\nI work during the night.\tJe travaille de nuit.\nI work in a flower shop.\tJe travaille chez un fleuriste.\nI work in this building.\tJe travaille dans ce bâtiment.\nI worry about my future.\tJe m'inquiète pour mon avenir.\nI would like to do more.\tJe voudrais faire davantage.\nI would like to eat now.\tJ'aimerais manger maintenant.\nI'd better be on my way.\tJe ferais mieux d'y aller.\nI'd better not eat that.\tJe ferais mieux de ne pas manger ça.\nI'd have waited for you.\tJe t'aurais attendu.\nI'd have waited for you.\tJe vous aurais attendu.\nI'd have waited for you.\tJe t'aurais attendue.\nI'd have waited for you.\tJe vous aurais attendue.\nI'd have waited for you.\tJe vous aurais attendus.\nI'd have waited for you.\tJe vous aurais attendues.\nI'd heard you'd changed.\tJ'avais entendu que vous aviez changé.\nI'd heard you'd changed.\tJ'avais entendu dire que vous aviez changé.\nI'd heard you'd changed.\tJ'avais entendu que tu avais changé.\nI'd heard you'd changed.\tJ'avais entendu dire que tu avais changé.\nI'd help you if I could.\tJe t'aiderais si je pouvais.\nI'd help you if I could.\tJe vous aiderais si je pouvais.\nI'd help you if I could.\tJe vous aiderais si je le pouvais.\nI'd help you if I could.\tJe t'aiderais si je le pouvais.\nI'd like my coffee weak.\tJ'aime mon café léger.\nI'd like three of these.\tJe veux trois de ceux-ci.\nI'd like to be in Paris.\tJ'aimerais être à Paris.\nI'd like to be with Tom.\tJe voudrais être avec Tom.\nI'd like to believe you.\tJ'aimerais te croire.\nI'd like to believe you.\tJ'aimerais vous croire.\nI'd like to borrow this.\tJ'aimerais emprunter ceci.\nI'd like to get married.\tJ'aimerais me marier.\nI'd like to get started.\tJ'aimerais commencer.\nI'd like to get started.\tJ'aimerais démarrer.\nI'd like to go home now.\tJ'aimerais me rendre maintenant à la maison.\nI'd like to go with you.\tJ'aimerais m'y rendre avec toi.\nI'd like to go with you.\tJ'aimerais y aller avec toi.\nI'd like to go with you.\tJ'aimerais m'y rendre avec vous.\nI'd like to go with you.\tJ'aimerais y aller avec vous.\nI'd like to pay in cash.\tJ'aimerais payer en liquide.\nI'd like to play tennis.\tJ'aimerais jouer au tennis.\nI'd like to sing a song.\tJ'aimerais chanter une chanson.\nI'd like to take a walk.\tJ'aimerais faire une promenade.\nI'd like to talk to you.\tJ'aimerais te parler.\nI'd like to talk to you.\tJ'aimerais vous parler.\nI'd love to talk to you.\tJe serais ravi de vous parler.\nI'd love to talk to you.\tJ'adorerais te parler.\nI'd rather be in Boston.\tJe préférais être à Boston.\nI'd rather not eat this.\tJe préférerais ne pas manger ça.\nI'd rather stay than go.\tJe préférerais rester plutôt que de m'en aller.\nI'll accept suggestions.\tJ'accepterai les suggestions.\nI'll act on your advice.\tJ'agirai suivant votre conseil.\nI'll be absent tomorrow.\tDemain je serai absent.\nI'll be back in a jiffy.\tJe serai de retour en moins de deux.\nI'll be back in an hour.\tJe reviens dans une heure.\nI'll be back right away.\tJe reviens de suite.\nI'll be checking on you.\tJe vous surveillerai.\nI'll be checking on you.\tJe te surveillerai.\nI'll be late for school!\tJe vais être en retard à l'école !\nI'll be praying for you.\tJe prierai pour toi.\nI'll be praying for you.\tJe prierai pour vous.\nI'll be ready next time.\tJe serai prêt la prochaine fois.\nI'll be ready next time.\tJe serai prête la prochaine fois.\nI'll buy a book for Tom.\tJe vais acheter un livre pour Tom.\nI'll certainly miss her.\tElle me manquera certainement.\nI'll certainly miss him.\tIl me manquera certainement.\nI'll come to your place.\tJe vais passer chez toi.\nI'll do all the talking.\tJe vais mener la discussion.\nI'll do all the talking.\tC'est moi qui vais parler.\nI'll do all the talking.\tC'est moi qui animerai toute la conversation.\nI'll do it by all means.\tJe le ferai quoi qu'il en coûte.\nI'll give you a present.\tJe te donnerai un cadeau.\nI'll have her come here.\tJe la ferai venir ici.\nI'll have you committed.\tJe te ferai enfermer.\nI'll keep an eye on Tom.\tJe vais garder un œil sur Tom.\nI'll keep my mouth shut.\tJe ne dirai rien.\nI'll leave it up to you.\tJe vous laisserai la décision.\nI'll leave it up to you.\tJe te laisse la décision.\nI'll leave it up to you.\tJe te laisserai la décision.\nI'll leave it up to you.\tJe te laisse en décider.\nI'll leave it up to you.\tJe vous laisse en décider.\nI'll leave it up to you.\tJe vous laisse la décision.\nI'll leave it up to you.\tJe vous en laisse la décision.\nI'll leave it up to you.\tJe t'en laisse la décision.\nI'll leave it up to you.\tJe vous en laisserai la décision.\nI'll leave it up to you.\tJe t'en laisserai la décision.\nI'll leave it up to you.\tJe te laisserai en décider.\nI'll leave it up to you.\tJe vous laisserai en décider.\nI'll let you know later.\tJe vous fais savoir plus tard.\nI'll never let you down.\tJe ne te laisserai jamais tomber.\nI'll never work for you.\tJe ne travaillerai jamais pour vous.\nI'll never work for you.\tJe ne travaillerai jamais pour toi.\nI'll put some coffee on.\tJe vais préparer du café.\nI'll put some coffee on.\tJe vais mettre un café en route.\nI'll see you next month.\tJe te verrai le mois prochain.\nI'll sleep on the floor.\tJe dormirai par terre.\nI'll sleep on the futon.\tJe dormirai sur le futon.\nI'll take care of these.\tJ'en prendrai soin.\nI'll take care of those.\tJe prendrai soin de ceux-là.\nI'll take care of those.\tJe prendrai soin de celles-là.\nI'll take that as a yes.\tJe prendrai ça comme un « Oui ».\nI'll take this umbrella.\tJe vais prendre ce parapluie.\nI'll try to contact Tom.\tJ'essaierai de contacter Tom.\nI'll try to contact Tom.\tJ'essayerai de contacter Tom.\nI'll visit him tomorrow.\tJe lui rendrai visite demain.\nI'm a little bit hungry.\tJ'ai un petit peu faim.\nI'm a married woman now.\tJe suis une femme mariée désormais.\nI'm acquainted with Tom.\tJe connais Tom.\nI'm afraid for his life.\tJe crains pour sa vie.\nI'm afraid it will rain.\tJ'ai peur qu'il pleuve.\nI'm allergic to seafood.\tJe suis allergique aux fruits de mer.\nI'm always very nervous.\tJe suis toujours très nerveux.\nI'm an American citizen.\tJe suis un citoyen américain.\nI'm an American citizen.\tJe suis une citoyenne américaine.\nI'm as hungry as a bear.\tJ'ai une faim de loup.\nI'm as hungry as a bear.\tJe suis aussi affamé qu'un ours.\nI'm at a friend's house.\tJe suis chez une amie.\nI'm at a friend's house.\tJe suis chez un ami.\nI'm at a loss for words.\tJe ne trouve pas les mots.\nI'm busy, so I can't go.\tJe suis occupé, je ne peux donc m'y rendre.\nI'm busy, so I can't go.\tJe suis occupé, je ne peux donc y aller.\nI'm busy, so I can't go.\tJe suis occupé, alors je ne peux pas m'y rendre.\nI'm busy, so I can't go.\tJe suis occupé, alors je ne peux pas y aller.\nI'm charmed to meet you.\tJe suis enchanté de vous rencontrer.\nI'm disappointed in you.\tTu me déçois.\nI'm disappointed in you.\tVous me décevez.\nI'm doing this for them.\tJe le fais pour eux.\nI'm doing this for them.\tJe le fais pour elles.\nI'm done with my chores.\tJ'en ai fini avec mes corvées.\nI'm dripping with sweat.\tJe dégouline de sueur.\nI'm emotionally drained.\tÉmotionnellement, je suis vidé.\nI'm emotionally drained.\tÉmotionnellement, je suis vidée.\nI'm faithful to my wife.\tJe suis fidèle envers ma femme.\nI'm fed up with English.\tJ'en ai assez de l'anglais.\nI'm fed up with English.\tJ'en ai marre de l'anglais.\nI'm fed up with English.\tJe n'en peux plus de l'anglais.\nI'm feeling much better.\tJe me sens bien mieux.\nI'm fine. How about you?\tJe vais bien, et toi ?\nI'm from the East Coast.\tJe suis de la côte Est.\nI'm from the West Coast.\tJe suis de la côte Ouest.\nI'm fully aware of that.\tJe m'en rends compte.\nI'm glad you enjoyed it.\tJe suis heureux que tu aies apprécié.\nI'm glad you invited me.\tJe suis content que tu m'aies invité.\nI'm going to do my best.\tJe vais faire de mon mieux.\nI'm going to start over.\tJe vais recommencer.\nI'm going to the police.\tJe vais voir la police.\nI'm happy and satisfied.\tJe suis heureux et content.\nI'm here to protect you.\tJe suis là pour te protéger.\nI'm here to protect you.\tJe suis là pour vous protéger.\nI'm in way over my head.\tJe ne sais pas quoi faire.\nI'm in way over my head.\tJe perds la tête.\nI'm in way over my head.\tJ'ai des ennuis jusqu'au cou.\nI'm in way over my head.\tJ'en crois pas mes yeux.\nI'm in way over my head.\tCela me dépasse complètement.\nI'm just a little bored.\tJe m'ennuie juste un peu.\nI'm just a little dizzy.\tJ'ai juste la tête qui tourne un peu.\nI'm just a little dizzy.\tJe suis juste un peu pris de vertiges.\nI'm just a poor student.\tJe ne suis qu'un pauvre étudiant.\nI'm just an average guy.\tJe suis juste un mec normal.\nI'm just looking around.\tJe ne fais que regarder.\nI'm just trying to help.\tJ'essaie juste d'aider.\nI'm looking for a house.\tJe recherche une maison.\nI'm looking for someone.\tJe cherche quelqu'un.\nI'm loved by my parents.\tMes parents m'adorent.\nI'm lucky to have a job.\tJe suis chanceux d'avoir un travail.\nI'm lucky to have a job.\tJe suis chanceuse d'avoir un travail.\nI'm nervous and excited.\tJe suis nerveux et excité.\nI'm nervous and excited.\tJe suis nerveuse et excitée.\nI'm no one's girlfriend.\tJe suis la petite amie de personne.\nI'm not a perfectionist.\tJe ne suis pas perfectionniste.\nI'm not advocating that.\tJe n'en suis pas partisan.\nI'm not advocating that.\tJe ne le prône pas.\nI'm not afraid of death.\tJe n'ai pas peur de la mort.\nI'm not afraid to fight.\tJe n'ai pas peur de me battre.\nI'm not as smart as you.\tJe ne suis pas aussi malin que toi.\nI'm not as smart as you.\tJe ne suis pas aussi malin que vous.\nI'm not as smart as you.\tJe ne suis pas aussi maligne que toi.\nI'm not as smart as you.\tJe ne suis pas aussi maligne que vous.\nI'm not easily offended.\tJe ne suis pas facilement offensé.\nI'm not easily offended.\tJe ne suis pas facilement offensée.\nI'm not from this world.\tJe n'appartiens pas à ce monde.\nI'm not good at fishing.\tJe ne suis pas un bon pêcheur.\nI'm not good with names.\tJ'ai du mal avec les noms.\nI'm not happy with this.\tJe n'en suis pas content.\nI'm not happy with this.\tJ'en suis mécontent.\nI'm not home on Sundays.\tJe ne suis pas à la maison le dimanche.\nI'm not home on Sundays.\tJe ne suis pas à la maison les dimanches.\nI'm not in a party mood.\tJe ne suis pas d'humeur à faire la fête.\nI'm not married anymore.\tJe ne suis plus marié.\nI'm not married anymore.\tJe ne suis plus mariée.\nI'm not paid to do that.\tJe ne suis pas payé pour faire cela.\nI'm not paid to do that.\tJe ne suis pas payée pour faire cela.\nI'm not paying for this.\tJe ne vais pas payer pour ça.\nI'm not quite done here.\tJe n'en ai pas tout à fait terminé ici.\nI'm not quite ready yet.\tJe ne suis pas encore tout à fait prêt.\nI'm not quite ready yet.\tJe ne suis pas encore tout à fait prête.\nI'm not ready to go yet.\tJe ne suis pas encore prêt à y aller.\nI'm not ready to go yet.\tJe ne suis pas encore prête à y aller.\nI'm not really that old.\tJe ne suis pas vraiment aussi vieux.\nI'm not really that old.\tJe ne suis pas vraiment aussi vieille.\nI'm not saying anything.\tJe ne dis rien.\nI'm not scared of dying.\tJe ne crains pas de mourir.\nI'm not so sure anymore.\tJe n'en suis plus aussi certain.\nI'm not so sure anymore.\tJe n'en suis plus aussi certaine.\nI'm not sure about that.\tJe n'en suis pas sûr.\nI'm not sure about that.\tJe n'en suis pas sûre.\nI'm not sure about this.\tJe ne suis pas sûr de ça.\nI'm not to be disturbed.\tQu'on ne me dérange pas !\nI'm not very good at it.\tJe n'y excelle pas.\nI'm not very good at it.\tJe n'y suis pas très bon.\nI'm not wasting my time.\tJe ne vais pas perdre mon temps.\nI'm not working for Tom.\tJe ne travaille pas pour Tom.\nI'm nothing without you.\tSans vous je ne suis rien.\nI'm old enough to drink.\tJe suis assez grand pour boire un coup.\nI'm open to suggestions.\tJe suis ouvert aux suggestions.\nI'm open to suggestions.\tJe suis ouvert aux propositions.\nI'm perfectly all right.\tJe suis parfaitement bien.\nI'm playing with my cat.\tJe suis en train de jouer avec mon chat.\nI'm playing with my cat.\tJe suis en train de jouer avec ma chatte.\nI'm pleased to meet you.\tEnchanté de faire votre connaissance.\nI'm pretty good at math.\tJe suis plutôt bon en maths.\nI'm proud of my brother.\tJe suis fier de mon frère.\nI'm proud of my brother.\tJe suis fière de mon frère.\nI'm ready for the fight.\tJe suis prêt pour le combat.\nI'm really disappointed.\tJe suis vraiment déçu.\nI'm really disappointed.\tJe suis vraiment déçue.\nI'm really proud of you.\tJe suis réellement fier de toi.\nI'm really proud of you.\tJe suis réellement fier de vous.\nI'm really proud of you.\tJe suis réellement fière de toi.\nI'm really proud of you.\tJe suis réellement fière de vous.\nI'm really stressed out.\tJe suis vraiment stressé.\nI'm seeing them tonight.\tJe vais les voir ce soir.\nI'm sick of her excuses.\tJ'en ai assez de ses excuses.\nI'm sorry I'm so stupid.\tDésolé d'être si stupide.\nI'm sorry to see Tom go.\tIl me désole de voir Tom partir.\nI'm still not buying it.\tJe ne le gobe toujours pas.\nI'm still not impressed.\tJe ne suis toujours pas impressionné.\nI'm still not impressed.\tJe ne suis toujours pas impressionnée.\nI'm still not ready yet.\tJe ne suis pas encore prêt.\nI'm still not ready yet.\tJe ne suis pas encore prête.\nI'm still not satisfied.\tJe ne suis toujours pas satisfait.\nI'm still working on it.\tJ'y travaille encore.\nI'm sure Tom can't swim.\tJe suis sûr que Tom ne sait pas nager.\nI'm sure Tom can't swim.\tJe suis sûre que Tom ne sait pas nager.\nI'm sure about his name.\tJe suis sûr de son nom.\nI'm taking it seriously.\tJe prends cela sérieusement.\nI'm the one who met him.\tJe suis celui qui l'a rencontré.\nI'm the one who met him.\tJe suis celle qui l'a rencontré.\nI'm tired of everything.\tJe suis fatigué de tout.\nI'm tired of everything.\tJe suis fatiguée de tout.\nI'm tired of pretending.\tJ'en ai assez de faire semblant.\nI'm too sleepy to drive.\tJe suis trop somnolent pour conduire.\nI'm too sleepy to drive.\tJ'ai trop sommeil pour conduire.\nI'm very busy this week.\tJe suis très occupé cette semaine.\nI'm waiting for a train.\tJ'attends un train.\nI'm waiting for the bus.\tJe suis en train d'attendre le bus.\nI'm willing to help him.\tJe suis disposé à l'aider.\nI'm younger than I look.\tJe suis plus jeune que j'en ai l'air.\nI'm younger than I look.\tJe suis plus jeune que je n'en ai l'air.\nI've always trusted Tom.\tJ'ai toujours eu confiance en Tom.\nI've been busy all week.\tJ'ai été occupé toute la semaine.\nI've been busy all week.\tJ'ai été occupée toute la semaine.\nI've been following you.\tJe t'ai suivi.\nI've been following you.\tJe t'ai suivie.\nI've been following you.\tJe vous ai suivi.\nI've been following you.\tJe vous ai suivis.\nI've been following you.\tJe vous ai suivie.\nI've been following you.\tJe vous ai suivies.\nI've been misunderstood.\tJ'ai été mal compris.\nI've been misunderstood.\tJ'ai été mal comprise.\nI've been misunderstood.\tJe fus mal compris.\nI've been misunderstood.\tJe fus mal comprise.\nI've been writing a lot.\tJ'ai beaucoup écrit.\nI've done no such thing.\tJe n'ai rien fait de tel.\nI've found a better way.\tJ'ai trouvé un meilleur moyen.\nI've found a better way.\tJ'ai trouvé une meilleure façon.\nI've got a bad hangover.\tJ'ai une énorme gueule de bois.\nI've got a wife at home.\tJ'ai une femme chez moi.\nI've got claustrophobia.\tJe suis claustrophobe.\nI've got nothing to say.\tJe n'ai rien à dire.\nI've got plenty of food.\tJe dispose de plein de nourriture.\nI've got plenty of room.\tJe dispose de beaucoup d'espace.\nI've got plenty of time.\tJe dispose de beaucoup de temps.\nI've got to get to work.\tIl me faut me mettre au travail.\nI've had enough of this.\tJ'en ai assez entendu.\nI've had enough of this.\tJ'en ai assez vu.\nI've just been punished.\tJe viens d'être puni.\nI've known it all along.\tJe le savais depuis le début.\nI've never forgiven Tom.\tJe n'ai jamais pardonné à Tom.\nI've never heard of him.\tJe n'ai jamais entendu parler de lui.\nI've never heard of you.\tJe n'ai jamais entendu parler de vous.\nI've never heard of you.\tJe n'ai jamais entendu parler de toi.\nI've only seen him once.\tJe ne l'ai vu qu'une fois.\nI've ordered you a beer.\tJe t'ai commandé une bière.\nI've read all about you.\tJ'ai tout lu à ton sujet.\nI've read all about you.\tJ'ai tout lu à votre sujet.\nI've worked all my life.\tJ'ai travaillé toute ma vie.\nIf you wish, you can go.\tSi vous voulez, vous pouvez y aller.\nInvite whoever you like.\tInvite qui tu veux !\nInvite whoever you like.\tInvitez qui vous voulez !\nIs Tom a French teacher?\tTom est-il professeur de français?\nIs Tom always like this?\tEst-ce que Tom est toujours comme ça ?\nIs Tom always like this?\tTom est-il toujours comme ça ?\nIs Tom living in Boston?\tEst-ce que Tom habite à Boston ?\nIs Tom still interested?\tTom est-il toujours intéressé ?\nIs Tom still interested?\tTom est-il encore intéressé ?\nIs everything all right?\tEst-ce que tout va bien ?\nIs he a friend of yours?\tEst-il l'un de vos amis ?\nIs he a friend of yours?\tEst-il l'un de tes amis ?\nIs he a friend of yours?\tEst-il de tes amis ?\nIs he a friend of yours?\tEst-il de vos amis ?\nIs he married or single?\tEst-il marié ou célibataire ?\nIs her father a teacher?\tSon père est-il enseignant ?\nIs it about ten o'clock?\tEst-il environ dix heures ?\nIs it all under control?\tTout est-il sous contrôle ?\nIs it any warmer inside?\tFait-il le moins du monde plus chaud à l'intérieur ?\nIs it any warmer inside?\tFait-il de quelque manière plus chaud à l'intérieur ?\nIs it not a bit extreme?\tN'est-ce pas un tantinet extrême ?\nIs it raining right now?\tPleut-il à l'heure actuelle ?\nIs it something serious?\tEst-ce quelque chose de sérieux ?\nIs my explanation clear?\tMon explication est-elle claire ?\nIs she interested in me?\tS'intéresse-t-elle à moi ?\nIs that a bottle opener?\tEst-ce un décapsuleur ?\nIs that a picture of me?\tEst-ce une image de moi ?\nIs that all you can say?\tEst-ce là tout ce que tu peux dire ?\nIs that all you can say?\tEst-ce là tout ce que vous pouvez dire ?\nIs that black bag yours?\tCe sac noir est-il à vous ?\nIs the fish still alive?\tLe poisson est-il encore vivant ?\nIs there another way in?\tY a-t-il un autre chemin d'accès ?\nIs there anyone in here?\tQuiconque est-il là-dedans ?\nIs this a tax-free shop?\tEst-ce un magasin détaxé ?\nIs this normal behavior?\tEst-ce un comportement normal ?\nIs this sterling silver?\tEst-ce de l'argent fin?\nIs this water drinkable?\tCette eau est-elle potable ?\nIs this what you wanted?\tC’est ce que tu voulais ?\nIs this your girlfriend?\tEst-ce ta petite amie ?\nIs this your girlfriend?\tEst-ce ta petite copine ?\nIs your car comfortable?\tTon auto est-elle confortable ?\nIs your father a doctor?\tVotre père est-il médecin ?\nIs your father a doctor?\tTon père est-il médecin ?\nIsn't he a little young?\tN'est-il pas un peu jeune ?\nIsn't one of you enough?\tL'un de vous ne suffit-il pas ?\nIsn't one of you enough?\tL'une de vous ne suffit-elle pas ?\nIt all happened quickly.\tTout s'est passé rapidement.\nIt all happened quickly.\tTout a eu lieu rapidement.\nIt all seems so strange.\tTout semble si étrange.\nIt can't be that simple.\tCela ne peut pas être aussi simple.\nIt could be big trouble.\tÇa pourrait poser de gros ennuis.\nIt feels like an orange.\tOn dirait une orange.\nIt gives me the shivers.\tIl me fout la chair de poule.\nIt happens all the time.\tÇa arrive tout le temps.\nIt happens to all of us.\tÇa nous arrive à tous.\nIt happens to all of us.\tÇa nous arrive à toutes.\nIt is I who am to blame.\tC'est moi qui suis à blâmer.\nIt is dark in that room.\tIl fait sombre dans cette pièce.\nIt is fun to play cards.\tC'est amusant de jouer aux cartes.\nIt is likely to be fine.\tIl est probable que ça ira bien.\nIt is not for beginners.\tCe n'est pas pour les débutants.\nIt is pretty cold today.\tIl fait assez froid aujourd'hui.\nIt is pretty warm today.\tIl fait vraiment chaud aujourd'hui.\nIt is rather warm today.\tIl fait assez chaud, aujourd'hui.\nIt is rather warm today.\tIl fait assez chaud aujourd'hui.\nIt is their only choice.\tC'est leur seul choix.\nIt is time to go to bed.\tC'est l'heure d'aller se coucher.\nIt isn't the same thing.\tCe n'est pas la même chose.\nIt keeps me up at night.\tÇa me garde éveillé, la nuit.\nIt looks a little heavy.\tÇa semble un peu lourd.\nIt may be our only hope.\tCe pourrait être notre seul espoir.\nIt may be the last time.\tC'est peut-être la dernière fois.\nIt may freeze next week.\tIl se peut qu'il gèle la semaine prochaine.\nIt may rain around noon.\tIl pourrait pleuvoir vers midi.\nIt may rain at any time.\tIl pourrait pleuvoir à tout moment.\nIt needs to be repaired.\tÇa a besoin d'être réparé.\nIt should be no problem.\tÇa ne devrait pas être un problème.\nIt snowed for four days.\tIl a neigé pendant quatre jours.\nIt took exactly an hour.\tCela prit exactement une heure.\nIt took exactly an hour.\tCela a pris exactement une heure.\nIt was Sunday yesterday.\tHier, c'était dimanche.\nIt was Tom who did that.\tC'est Tom qui a fait cela.\nIt was a fine sunny day.\tC’était une belle journée ensoleillée.\nIt was a miscalculation.\tC'était une erreur de calcul.\nIt was a perfect moment.\tCe fut un instant parfait.\nIt was a strange affair.\tC'était une étrange affaire.\nIt was an exciting game.\tC'était un jeu excitant.\nIt was cloudy yesterday.\tIl y avait des nuages, hier.\nIt was cloudy yesterday.\tLe temps était couvert hier.\nIt was dark in the room.\tLa pièce était sombre.\nIt was her that told me.\tC’était elle qui me l’avait dit.\nIt was her turn at last.\tC'était enfin à son tour.\nIt was not at all funny.\tCe n'était pas du tout amusant.\nIt was not my intention.\tCe n'était pas mon intention.\nIt was not my intention.\tCe n'était pas dans mon intention.\nIt was not my intention.\tCe n'était pas dans mes intentions.\nIt was not my intention.\tÇa n'était pas dans mon intention.\nIt was not my intention.\tÇa n'était pas mon intention.\nIt was not my intention.\tÇa n'était pas dans mes intentions.\nIt was obviously a joke.\tC'était à l'évidence une blague.\nIt was obviously a joke.\tC'était à l'évidence une plaisanterie.\nIt was out of his reach.\tC'était hors de sa portée.\nIt was quiet all around.\tTout autour, c'était silencieux.\nIt was truly depressing.\tC'était vraiment déprimant.\nIt went without a hitch.\tC'est passé comme une lettre à la Poste.\nIt will be hot tomorrow.\tIl fera chaud demain.\nIt won't take that long.\tÇa ne va pas durer aussi longtemps.\nIt wouldn't surprise me.\tÇa ne me surprendrait pas.\nIt's Tom I want to meet.\tC'est Tom que je veux rencontrer.\nIt's a bit intimidating.\tC'est un peu intimidant.\nIt's a fascinating read.\tC'est une lecture fascinante.\nIt's a legitimate worry.\tC'est une inquiétude justifiée.\nIt's a misunderstanding.\tC'est un quiproquo.\nIt's a misunderstanding.\tC'est une équivoque.\nIt's a misunderstanding.\tC'est une méprise.\nIt's a misunderstanding.\tC'est un malentendu.\nIt's a quarter to three.\tIl est trois heures moins le quart.\nIt's all behind you now.\tTout ça est désormais derrière toi.\nIt's all behind you now.\tTout ça est désormais derrière vous.\nIt's all total nonsense.\tRien de tout ça n'a aucun sens.\nIt's all your own fault.\tTout est de ta propre faute.\nIt's all your own fault.\tTout est de votre propre faute.\nIt's almost six o'clock.\tC'est presque six heures.\nIt's almost unbreakable.\tC'est presque incassable.\nIt's always worth a try.\tOn peut toujours essayer.\nIt's an ongoing process.\tLe processus est en cours.\nIt's awfully cold today.\tIl fait horriblement froid aujourd'hui.\nIt's awfully cold today.\tAujourd’hui, il fait horriblement froid.\nIt's back to square one.\tRetour à la case départ.\nIt's because I love him.\tC'est parce que je l'aime.\nIt's because I love you.\tC'est parce que je vous aime.\nIt's because I love you.\tC'est parce que je t'aime.\nIt's been so many years.\tÇa fait tellement d'années.\nIt's been taken care of.\tOn s'en est occupé.\nIt's completely natural.\tC'est complètement naturel.\nIt's computer-generated.\tC'est produit par ordinateur.\nIt's entirely up to you.\tC'est à toi de décider.\nIt's fun to play tennis.\tC'est sympa de jouer au tennis.\nIt's fun to play tennis.\tC'est amusant de jouer au tennis.\nIt's getting ridiculous.\tÇa devient ridicule.\nIt's going to be tricky.\tÇa va être coton.\nIt's great for families.\tC'est très bien pour les familles.\nIt's healthy and normal.\tC'est sain et normal.\nIt's just a scratch, OK?\tC'est juste une égratignure, d'accord ?\nIt's just an expression.\tC'est juste une expression.\nIt's just the two of us.\tCe n'est que nous deux.\nIt's kind of comforting.\tC'est plutôt réconfortant.\nIt's kind of disgusting.\tC'est plutôt dégoutant.\nIt's no concern of mine.\tCe n'est pas mon affaire.\nIt's no concern of mine.\tÇa ne me concerne pas.\nIt's no laughing matter.\tC'est pas un sujet de plaisanterie !\nIt's no use complaining.\tIl est inutile de se plaindre.\nIt's not at all typical.\tCe n'est pas du tout caractéristique.\nIt's not dinnertime yet.\tCe n'est pas encore l'heure de dîner.\nIt's not gonna bite you.\tÇa ne va pas vous mordre.\nIt's not gonna bite you.\tÇa ne va pas te mordre.\nIt's not in my contract.\tCe n'est pas dans mon contrat.\nIt's not like you think.\tCe n'est pas comme vous pensez.\nIt's not like you think.\tCe n'est pas comme tu penses.\nIt's not rocket science.\tIl faut pas sortir de polytechnique pour le comprendre.\nIt's not that different.\tCe n'est pas si différent.\nIt's not that difficult.\tCe n'est pas si difficile.\nIt's not the first time.\tCe n'est pas la première fois.\nIt's not the real thing.\tC'est pas du vrai.\nIt's not the same thing.\tCe n'est pas la même chose.\nIt's not what you think.\tCe n'est pas ce que vous pensez !\nIt's not worth the pain.\tÇa n'en vaut pas la peine.\nIt's popular with women.\tLes femmes en sont friandes.\nIt's possible, isn't it?\tC'est possible, n'est-ce pas ?\nIt's possible, isn't it?\tC'est possible, pas vrai ?\nIt's raining everywhere.\tIl pleut partout.\nIt's really infuriating.\tC'est vraiment énervant.\nIt's really windy today.\tIl y a vraiment du vent, aujourd'hui.\nIt's shocking, isn't it?\tC'est choquant, n'est-ce pas ?\nIt's the correct answer.\tC'est la bonne réponse.\nIt's the correct answer.\tC'est la réponse correcte.\nIt's time to plan ahead.\tIl est temps de planifier.\nIt's very hot, isn't it?\tIl fait très chaud, n'est-ce pas ?\nIt's worth a try, right?\tÇa vaut le coup d'essayer, non ?\nIt's worth checking out.\tÇa vaut le coup de vérifier.\nItalian isn't difficult.\tL'italien, c'est pas difficile.\nItalian isn't difficult.\tL'italien ça n'est pas difficile.\nJapan is a rich country.\tLe Japon est un pays riche.\nJump as high as you can.\tSaute le plus haut possible.\nJump as high as you can.\tSaute le plus haut que tu peux.\nJump as high as you can.\tSaute aussi haut que tu peux.\nJump as high as you can.\tSaute aussi haut que tu le peux.\nJust answer my question.\tRépondez seulement à ma question.\nJust let me handle this.\tLaisse-moi simplement traiter ceci.\nJust let me handle this.\tLaissez-moi simplement traiter ceci.\nJust shut up and listen.\tFerme-la juste et écoute !\nJust shut up and listen.\tFermez-la juste et écoutez !\nJust take a deep breath.\tPrends juste une profonde inspiration.\nJust take a deep breath.\tPrenez juste une profonde inspiration.\nJust tell him the truth.\tDis-lui simplement la vérité.\nJust tell him the truth.\tDites-lui simplement la vérité.\nJust tell me what to do.\tDis-moi juste quoi faire !\nJust tell me what to do.\tDites-moi juste quoi faire !\nKeep away from the fire.\tReste à distance du feu.\nKeep away from the fire.\tTiens-toi à distance du feu.\nKeep away from the fire.\tTenez-vous à distance du feu.\nKeep away from the fire.\tRestez à distance du feu.\nKeep this window closed.\tGardez cette fenêtre fermée !\nKeep this window closed.\tGarde cette fenêtre fermée !\nKennedy Airport, please.\tÀ l'aéroport Kennedy, s'il vous plaît.\nKick as hard as you can.\tDonne un coup de pied aussi fort que tu peux.\nKick as hard as you can.\tTape aussi fort que tu peux.\nKyoto is worth visiting.\tKyoto vaut la peine d'être visitée.\nLeave no stone unturned.\tRemue ciel et terre !\nLeave no stone unturned.\tRemuez ciel et terre !\nLeave the room as it is.\tQuitte la pièce dans l'état où elle se trouve.\nLeave the room as it is.\tLaisse la pièce telle qu'elle est.\nLeave the room as it is.\tLaisse la pièce en état.\nLeave the room as it is.\tLaisse la pièce telle quelle.\nLet me get that for you.\tLaisse-moi te l'obtenir.\nLet me get that for you.\tLaisse-moi t'obtenir ça.\nLet me get that for you.\tLaissez-moi vous l'obtenir.\nLet me get that for you.\tLaissez-moi vous obtenir ça.\nLet me get that for you.\tLaissez-moi aller vous le chercher.\nLet me get that for you.\tLaisse-moi aller te le chercher.\nLet me get you some ice.\tLaisse-moi aller te chercher de la glace.\nLet me get you some ice.\tLaissez-moi aller vous chercher de la glace.\nLet me introduce myself.\tLaissez-moi me présenter.\nLet me know how it goes.\tFais-moi savoir comment ça se déroule !\nLet me know how it goes.\tFaites-moi savoir comment ça se déroule !\nLet me take my coat off.\tLaisse-moi enlever mon manteau.\nLet me take my coat off.\tLaissez-moi retirer mon manteau.\nLet's drop by his house.\tPassons chez lui.\nLet's eat lunch outside.\tDéjeunons à l'extérieur !\nLet's get back on topic.\tRevenons à nos moutons.\nLet's go on a road trip.\tPrenons la route !\nLet's go say hi to them.\tAllons les saluer !\nLet's hope for the best.\tEspérons le meilleur.\nLet's keep this private.\tGardons cela en secret.\nLet's make a phone call.\tEffectuons un appel.\nLet's make a phone call.\tPassons un appel.\nLet's not argue anymore.\tCessons d’argumenter.\nLet's not kid ourselves.\tNe nous fourvoyons pas !\nLet's not talk about it.\tNe parlons pas de ça.\nLet's rest a little bit.\tReposons-nous un peu.\nLet's see if that works.\tVoyons si ça fonctionne !\nLet's sing a happy song.\tChantons une chanson gaie.\nLife is a great mystery.\tLa vie est un grand mystère.\nLike I said, I was busy.\tComme je l'ai dit : j'étais occupé.\nLike I said, I was busy.\tComme je l'ai dit : j'étais occupée.\nLike I said, no problem.\tComme je disais, pas de problème.\nLock the door behind me.\tVerrouillez la porte derrière moi.\nLock the door behind me.\tFerme la porte à clé derrière moi.\nLondon is on the Thames.\tLondres borde la Tamise.\nLook at all these boxes.\tRegarde toutes ces caisses !\nLook at all these boxes.\tRegardez toutes ces caisses !\nLook at that big hammer.\tRegarde ce grand marteau.\nLook at the setting sun.\tRegarde le soleil couchant.\nLook, I'm being serious.\tÉcoute, je suis sérieux.\nLook, I'm being serious.\tÉcoute, je suis sérieuse.\nLuck turned in my favor.\tLa chance tourna en ma faveur.\nLuck's on my side today.\tAujourd'hui, la chance est avec moi.\nLychees taste of grapes.\tLes litchis ont le goût de raisins.\nMaking cheese is an art.\tLa fabrication du fromage est un art.\nManpower was no problem.\tLa main-d'œuvre n'était pas un problème.\nMany of the people died.\tNombre des gens moururent.\nMany sailors can't swim.\tDe nombreux marins ne savent pas nager.\nMarriage changes people.\tLe mariage change les gens.\nMary dyed her hair blue.\tMarie s'est teint les cheveux en bleu.\nMary needs a dozen eggs.\tMarie a besoin d'une douzaine d'œufs.\nMary's parents hate Tom.\tLes parents de Mary détestent Tom.\nMay I ask you something?\tPuis-je te demander quelque chose ?\nMay I borrow your knife?\tPuis-je emprunter votre couteau ?\nMay I borrow your phone?\tPuis-je emprunter ton téléphone ?\nMay I borrow your phone?\tPuis-je emprunter votre téléphone ?\nMay I call on you today?\tPuis-je te requérir aujourd'hui ?\nMay I call you tomorrow?\tPuis-je t'appeler demain ?\nMay I call you tomorrow?\tPuis-je te téléphoner demain ?\nMay I call you tomorrow?\tPuis-je vous appeler demain ?\nMay I go out for a walk?\tPuis-je sortir me promener ?\nMay I offer you a drink?\tPuis-je vous offrir à boire ?\nMay I offer you a drink?\tPuis-je vous offrir un verre ?\nMay I see the wine list?\tPuis-je consulter la liste des vins ?\nMay I see your passport?\tPuis-je voir votre passeport ?\nMay I take your picture?\tPuis-je prendre votre photo ?\nMay I try on this dress?\tPuis-je essayer cette robe ?\nMay I use the telephone?\tPuis-je faire usage du téléphone ?\nMaybe he likes you, too.\tPeut-être t'apprécie-t-il aussi.\nMaybe he likes you, too.\tPeut-être t'apprécie-t-il également.\nMaybe he likes you, too.\tPeut-être vous apprécie-t-il aussi.\nMaybe he likes you, too.\tPeut-être vous apprécie-t-il également.\nMaybe he likes you, too.\tPeut-être vous apprécie-t-il de même.\nMaybe he likes you, too.\tPeut-être t'apprécie-t-il de même.\nMaybe it's not possible.\tPeut-être n'est-ce pas possible.\nMaybe that'll be enough.\tPeut-être que ce sera suffisant.\nMaybe that's the reason.\tPeut-être est-ce là la raison.\nMaybe that's the reason.\tPeut-être en est-ce la raison.\nMeasure twice, cut once.\tRéfléchir avant d'agir.\nMoney is not everything.\tL'argent n'est pas tout.\nMore research is needed.\tPlus de recherches sont nécessaires.\nMost boys know his name.\tLa plupart des garçons connaissent son nom.\nMost boys like baseball.\tLa plupart des garçons aiment le baseball.\nMost of the plants died.\tLa plupart des plantes sont mortes.\nMother approved my plan.\tMère approuva mon plan.\nMy arm is hurting badly.\tMon bras me fait affreusement mal.\nMy bedroom is too small.\tMa chambre est trop petite.\nMy bike has a flat tire.\tMon vélo a un pneu crevé.\nMy body itches all over.\tMon corps me démange de partout.\nMy boss was very strict.\tMon patron était très sévère.\nMy brother doesn't swim.\tMon frère ne nage pas.\nMy brother has no money.\tMon frère n'a pas d'argent.\nMy camera is waterproof.\tMon appareil photo est étanche.\nMy children like school.\tMes enfants aiment l'école.\nMy computer's acting up.\tMon ordinateur déconne.\nMy computer's acting up.\tMon ordinateur se conduit de manière bizarre.\nMy daughter was cheated.\tMa fille a été trompée.\nMy daughter was cheated.\tMa fille a été dupée.\nMy father drives safely.\tMon père conduit avec prudence.\nMy father gets up early.\tMon père se lève tôt.\nMy father is very tired.\tMon père est très fatigué.\nMy father isn't at home.\tMon père n’est pas à la maison.\nMy father quit drinking.\tMon père a arrêté de boire.\nMy father quit drinking.\tMon père arrêta de boire.\nMy father quit drinking.\tMon père cessa de boire.\nMy father quit drinking.\tMon père a cessé de boire.\nMy father quit drinking.\tC'est mon père qui a arrêté de boire.\nMy father seldom smokes.\tMon père fume rarement.\nMy father was a teacher.\tMon père était enseignant.\nMy girlfriend is crying.\tMa petite copine pleure.\nMy girlfriend is crying.\tMa copine pleure.\nMy girlfriend is crying.\tMa petite amie pleure.\nMy girlfriend is crying.\tMa petite amie est en train de pleurer.\nMy girlfriend is crying.\tMa petite copine est en train de pleurer.\nMy girlfriend is crying.\tMa copine est en train de pleurer.\nMy hair is getting long.\tMes cheveux deviennent longs.\nMy house is up the road.\tMa maison est en haut de la route.\nMy mother gets up early.\tMa mère se lève tôt.\nMy mother made me a bag.\tMa mère m'a confectionné un sac.\nMy mother made me study.\tMa mère m'a poussé à étudier.\nMy mother set the table.\tMa mère dressa la table.\nMy parents were furious.\tMes parents étaient furieux.\nMy right shoulder hurts.\tMon épaule droite me fait mal.\nMy room has two windows.\tMa chambre a deux fenêtres.\nMy room has two windows.\tMa chambre est pourvue de deux fenêtres.\nMy room is always clean.\tMa chambre est toujours propre.\nMy sister has long legs.\tMa sœur a de longues jambes.\nMy sister is bugging me.\tMa sœur m'ennuie.\nMy sister is bugging me.\tMa sœur m'embête.\nMy sister is bugging me.\tMa sœur me casse les pieds.\nMy strength is all gone.\tMa force s'en est allée.\nMy strength is all gone.\tToute ma force s'en est allée.\nMy toe started bleeding.\tMon doigt de pied s'est mis à saigner.\nMy uncle came to see me.\tMon oncle est venu me voir.\nMy uncle died of cancer.\tMon oncle est mort d'un cancer.\nMy uncle gave me a book.\tMon oncle m’a donné un livre.\nMy uncle made a fortune.\tMon oncle possède une fortune.\nMy uncle made a fortune.\tMon oncle a fait fortune.\nMy wife is a vegetarian.\tMa femme est végétarienne.\nMy wife just had a baby.\tMa femme vient d'avoir un bébé.\nMy wife loves apple pie.\tMa femme adore la tarte aux pommes.\nMy wife works part time.\tMa femme travaille à temps partiel.\nNara is as old as Kyoto.\tNara est aussi vieille que Kyoto.\nNew York is a huge city.\tNew York est une grande ville.\nNext year will be worse.\tL'année prochaine sera pire.\nNo one else was injured.\tPersonne d'autre n'a été blessé.\nNo one else was injured.\tPersonne d'autre ne fut blessé.\nNo one knows the answer.\tPersonne ne connaît la réponse.\nNo one knows the reason.\tPersonne n'en connaît la raison.\nNo one knows their name.\tPersonne ne sait leur nom.\nNo one knows their name.\tPersonne ne connaît leur nom.\nNo one knows what to do.\tPersonne ne sait quoi faire.\nNo one ran ahead of him.\tPersonne ne courait devant lui.\nNo one voted against it.\tPersonne ne vota contre.\nNo one will believe him.\tPersonne ne le croira.\nNo one will believe you.\tPersonne ne te croira.\nNo one will believe you.\tPersonne ne vous croira.\nNo one's that desperate.\tPersonne n'est si désespéré.\nNo proof was ever found.\tAucune preuve n'a jamais été trouvée.\nNo students were absent.\tPas un étudiant n'était absent.\nNo, thank you. I'm full.\tNon, merci. Je suis rassasié.\nNobody came to help him.\tPersonne n'est venu pour l'aider.\nNobody can escape death.\tPersonne n'échappe à la mort.\nNobody knew what to say.\tPersonne ne savait que dire.\nNobody knows how I feel.\tPersonne ne sait ce que je ressens.\nNobody knows the answer.\tPersonne ne connait la réponse.\nNobody wants to do that.\tPersonne ne veut faire ça !\nNobody wants to do that.\tPersonne ne veut le faire.\nNot every bird can sing.\tTous les oiseaux ne savent pas chanter.\nNot everybody graduates.\tTout le monde n'est pas reçu.\nNot everyone enjoyed it.\tTout le monde n'y a pas pris plaisir.\nNothing happened to Tom.\tIl n'est rien arrivé à Tom.\nNothing makes Tom happy.\tRien ne rend Tom heureux.\nNow I'm a little scared.\tJ'ai un peu peur maintenant !\nNow's the time to apply.\tC'est le moment de postuler.\nNow, who has a question?\tMaintenant, qui a une question ?\nOf course, I understand.\tBien sûr, je comprends.\nOh, didn't I mention it?\tOh, ne l'ai-je pas mentionné ?\nOh, didn't I mention it?\tOh, n'en ai-je pas fait mention ?\nOil and water don't mix.\tLe pétrole ne se mélange pas avec l'eau.\nOil will float on water.\tL'huile flottera sur l'eau.\nPaper is made from wood.\tLe papier est confectionné à partir de bois.\nPardon me for saying so.\tPardonnez-moi de le dire.\nPardon me for saying so.\tPardonne-moi de dire ça.\nPardon the interruption.\tPardonez l'interruption.\nPeel two of the bananas.\tÉpluchez deux des bananes.\nPeople are still scared.\tLes gens sont encore effrayés.\nPeople want to own land.\tLes gens veulent posséder de la terre.\nPerhaps you can beat me.\tPeut-être que tu peux me battre.\nPerhaps you can beat me.\tPeut-être pouvez-vous me battre.\nPlease answer the phone.\tRéponds au téléphone s'il te plait.\nPlease answer the phone.\tMerci de répondre au téléphone.\nPlease answer the phone.\tVeuillez répondre au téléphone.\nPlease ask Tom to leave.\tS'il te plait, demande à Tom de partir.\nPlease ask someone else.\tDemande à quelqu'un d'autre, je te prie.\nPlease ask someone else.\tVeuillez demander à quelqu'un d'autre.\nPlease bring me my bill.\tL'addition s'il vous plaît.\nPlease bring the others.\tEmmène les autres, je te prie.\nPlease bring the others.\tVeuillez emmener les autres.\nPlease call me a doctor.\tAppelez un médecin, s'il vous plaît.\nPlease close the window.\tVeuillez fermer la fenêtre.\nPlease come and help me.\tVenez m'aider, s'il vous plaît.\nPlease come to my house.\tVenez chez moi, je vous prie.\nPlease contact me later.\tRecontacte-moi plus tard, s'il te plaît.\nPlease keep it a secret.\tVeuillez le garder secret.\nPlease keep it a secret.\tGarde-le secret, s'il te plaît.\nPlease keep me informed.\tVeuillez me tenir informé.\nPlease keep me informed.\tTiens-moi informé, je te prie.\nPlease leave right away.\tVeuillez partir sans délai.\nPlease leave right away.\tPars sans délai, je te prie.\nPlease lend me your car.\tS'il te plaît, prête-moi ta voiture.\nPlease let go of my arm.\tLâche mon bras, je te prie.\nPlease let go of my arm.\tVeuillez lâcher mon bras.\nPlease lower the window.\tVeuillez abaisser la vitre !\nPlease lower the window.\tAbaissez la vitre, je vous prie !\nPlease open the package.\tVeuillez ouvrir le colis.\nPlease open the package.\tOuvre le colis, je te prie.\nPlease pass me the salt.\tPassez-moi le sel, s'il vous plaît.\nPlease say hello to her.\tDis-lui bonjour s'il te plait.\nPlease show me the menu.\tMontrez-moi le menu, s’il vous plait.\nPlease sum up your idea.\tVeuillez résumer votre idée.\nPlease sum up your idea.\tRésume s'il te plaît ton idée.\nPlease sum up your idea.\tS'il vous plaît, résumez vos idées.\nPlease tell him to wait.\tVeuillez lui dire d'attendre.\nPlease tell me about it.\tParles-en-moi, je te prie.\nPlease write with a pen.\tVeuillez écrire avec un stylo.\nPoland is a big country.\tLa Pologne est un grand pays.\nPolice arrested one man.\tLa police a arrêté un homme.\nPolice arrested one man.\tLa police arrêta un homme.\nPrices dropped suddenly.\tLes prix se sont brusquement effondrés.\nProgress is unavoidable.\tLe progrès est inévitable.\nPush the button, please.\tVeuillez appuyer sur le bouton.\nPut the garbage outside.\tSors les poubelles !\nQuit acting like a baby.\tArrêtez de vous conduire comme un bébé !\nQuit acting like a baby.\tCessez de vous conduire comme un bébé !\nQuit acting like a baby.\tArrêtez de vous conduire en bébé !\nQuit acting like a baby.\tCessez de vous conduire en bébé !\nQuit acting like a baby.\tArrête de te conduire en bébé !\nQuit acting like a baby.\tCesse de te conduire en bébé !\nQuit acting like a baby.\tArrête de te conduire comme un bébé !\nQuit acting like a baby.\tCesse de te conduire comme un bébé !\nRaise up your left hand.\tLève la main gauche.\nRaise up your left hand.\tLevez la main gauche.\nSchool's out for summer.\tL'école est fermée pour l'été.\nScorpions are dangerous.\tLes scorpions sont dangereux.\nShall I get you a chair?\tJe vais vous chercher une chaise ?\nShall I get you a chair?\tDevrais-je aller vous chercher une chaise ?\nShe aimed at the target.\tElle visa la cible.\nShe aimed at the target.\tElle a visé la cible.\nShe always got up early.\tElle se levait toujours tôt.\nShe always smiles at me.\tElle me sourit toujours.\nShe and I usually agree.\tD'habitude, je suis d'accord avec elle.\nShe and I usually agree.\tElle et moi nous entendons d'ordinaire.\nShe answered with a nod.\tElle répondit d'un hochement de tête.\nShe answered with a nod.\tElle a répondu d'un hochement de tête.\nShe asked him questions.\tElle lui posa des questions.\nShe asked him questions.\tElle lui a posé des questions.\nShe asked me a question.\tElle m'a posé une question.\nShe bought a dozen eggs.\tElle a acheté une douzaine d'œufs.\nShe bought him a camera.\tElle lui acheta un appareil photo.\nShe bought him a camera.\tElle lui a acheté un appareil photo.\nShe bought him a ticket.\tElle lui acheta un billet.\nShe burst into the room.\tElle a fait irruption dans la pièce.\nShe came here to see me.\tElle est venue pour me voir.\nShe came with good news.\tElle vint avec de bonnes nouvelles.\nShe can't find her keys.\tElle ne trouve pas ses clés.\nShe can't write or read.\tElle ne peut ni écrire ni lire.\nShe cut the cake in two.\tElle coupa le gâteau en deux.\nShe cut the cake in two.\tElle coupa en deux le gâteau.\nShe does not like sushi.\tElle n'aime pas les sushis.\nShe doesn't like soccer.\tElle n'aime pas le football.\nShe doesn't like soccer.\tElle n’aime pas le football.\nShe doesn't mince words.\tElle ne mâche pas ses mots.\nShe doesn't speak to me.\tElle ne me parle pas.\nShe drank a cup of milk.\tElle but une tasse de lait.\nShe easily catches cold.\tElle attrape facilement un rhume.\nShe forced him to do it.\tElle l'a forcé à le faire.\nShe forced him to do it.\tElle le força à le faire.\nShe forgot to write him.\tElle oublia de lui écrire.\nShe forgot to write him.\tElle a oublié de lui écrire.\nShe gave a vague answer.\tElle donna une réponse évasive.\nShe gave me a shy smile.\tElle me fit un sourire timide.\nShe gave me good advice.\tElle m'a donné de bons conseils.\nShe gave me good advice.\tElle m'a donné des conseils judicieux.\nShe gave us lots to eat.\tElle nous a donné beaucoup à manger.\nShe got wet to the skin.\tElle fut trempée jusqu'à l'os.\nShe had a narrow escape.\tElle l'a échappé belle.\nShe had a perfect alibi.\tElle disposait d'un alibi parfait.\nShe hardly ate anything.\tElle n'a presque rien mangé.\nShe hardly talks at all.\tElle parle à peine.\nShe has a beautiful tan.\tElle a un beau bronzage.\nShe has a beautiful tan.\tElle a un beau teint hâlé.\nShe has a large mansion.\tElle possède une grande propriété.\nShe has attractive eyes.\tElle a des yeux attirants.\nShe has snow-white skin.\tElle a la peau blanche comme neige.\nShe has to stop smoking.\tIl lui faut arrêter de fumer.\nShe hates country music.\tElle déteste la musique country.\nShe ignored him all day.\tElle l'ignora toute la journée.\nShe ignored him all day.\tElle l'a ignoré toute la journée.\nShe is a charming woman.\tC'est une femme charmante.\nShe is a cheerful giver.\tElle se réjouit de donner.\nShe is a friend of mine.\tC'est une amie à moi.\nShe is a selfish person.\tElle est une personne égoïste.\nShe is a stranger to me.\tElle m'est étrangère.\nShe is a very kind girl.\tC'est une gentille fille.\nShe is a wonderful wife.\tC'est une femme magnifique.\nShe is as busy as a bee.\tElle est très occupée.\nShe is as busy as a bee.\tElle est affairée comme une abeille.\nShe is as young as I am.\tElle est aussi jeune que moi.\nShe is blackmailing him.\tElle le fait chanter.\nShe is dressed in white.\tElle est vêtue de blanc.\nShe is eighteen at most.\tElle a dix-huit ans, au plus.\nShe is getting prettier.\tElle devient de plus en plus belle.\nShe is good at swimming.\tElle est bonne en natation.\nShe is his present wife.\tC'est son épouse du moment.\nShe is in a green dress.\tElle porte une robe verte.\nShe is in an awful mood.\tElle est d'une humeur massacrante.\nShe is in her hotel now.\tElle est à son hôtel, maintenant.\nShe is in her hotel now.\tElle est à son hôtel, à l'heure qu'il est.\nShe is in love with him.\tElle est amoureuse de lui.\nShe is knitting a scarf.\tElle tricote une écharpe.\nShe is listening to him.\tElle l'écoute.\nShe is not always happy.\tElle n'est pas toujours heureuse.\nShe is proud of her son.\tElle est fière de son fils.\nShe is shy of strangers.\tElle est intimidée par les étrangers.\nShe is very hardworking.\tElle est dure à la tâche.\nShe is very intelligent.\tElle est vraiment intelligente.\nShe is wearing a brooch.\tElle porte une broche.\nShe keeps her hair long.\tElle garde les cheveux longs.\nShe kept silent all day.\tElle garda le silence toute la journée.\nShe knocked on the door.\tElle frappa à la porte.\nShe knows many proverbs.\tElle connaît de nombreux proverbes.\nShe lay awake all night.\tÉtendue, elle était restée éveillée toute la nuit.\nShe led a solitary life.\tElle mène une vie solitaire.\nShe lent me her bicycle.\tElle m'a prêté son vélo.\nShe liked him right off.\tElle l'apprécia instantanément.\nShe likes to read books.\tElle aime lire des livres.\nShe lived a lonely life.\tElle a vécu une vie solitaire.\nShe looks like her aunt.\tElle ressemble à sa tante.\nShe made a bet with him.\tElle fit un pari avec lui.\nShe made a bet with him.\tElle a fait un pari avec lui.\nShe made him a new coat.\tElle lui confectionna un nouveau manteau.\nShe made him a new coat.\tElle lui a confectionné un nouveau manteau.\nShe made him a new suit.\tElle lui confectionna un nouveau costume.\nShe made him a new suit.\tElle lui a confectionné un nouveau costume.\nShe makes a good living.\tElle gagne bien sa vie.\nShe married a local boy.\tElle épousa un garçon du coin.\nShe married a local boy.\tElle a épousé un garçon du coin.\nShe may spill the beans.\tIl se peut qu'elle raconte tout.\nShe must be forty or so.\tElle doit avoir la quarantaine environ.\nShe must be over eighty.\tElle doit avoir plus de 80 ans.\nShe picked up the phone.\tElle décrocha le téléphone.\nShe picked up the phone.\tElle a décroché le téléphone.\nShe prefers quiet music.\tElle préfère la musique douce.\nShe really ate too much.\tElle mangeât vraiment sans limite.\nShe really looks pretty.\tElle a l'air vraiment jolie.\nShe resides in New York.\tElle réside à New York.\nShe runs a dance studio.\tElle dirige un studio de danse.\nShe runs a dance studio.\tElle gère un studio de danse.\nShe scared the cat away.\tElle a effrayé le chat, qui s'est enfuit.\nShe seemed uninterested.\tElle semblait indifférente.\nShe seemed uninterested.\tElle sembla indifférente.\nShe seemed uninterested.\tElle a semblé indifférente.\nShe sent him a postcard.\tElle lui a envoyé une carte postale.\nShe sent him a postcard.\tElle lui envoya une carte postale.\nShe showed me her album.\tElle m'a montré son album.\nShe showed me his album.\tElle m'a montré son album.\nShe shuddered with cold.\tElle frissonnait de froid.\nShe speaks Spanish well.\tElle parle bien espagnol.\nShe speaks good English.\tElle parle un bon anglais.\nShe spoke Japanese well.\tElle parlait bien le japonais.\nShe struggled to get up.\tElle eut du mal à se lever.\nShe struggled to get up.\tElle a eu du mal à se lever.\nShe struggled to get up.\tElle éprouva des difficultés à se lever.\nShe struggled to get up.\tElle a éprouvé des difficultés à se lever.\nShe studies mathematics.\tElle étudie les mathématiques.\nShe told me where to go.\tElle m'a dit où aller.\nShe took him to the zoo.\tElle l'emmena au zoo.\nShe took him to the zoo.\tElle l'a emmené au zoo.\nShe took me by surprise.\tElle m'a pris par surprise.\nShe took me by the hand.\tElle m'a pris par la main.\nShe wanted to help them.\tElle a voulu les aider.\nShe was about to go out.\tElle était sur le point de sortir.\nShe was about to go out.\tElle allait sortir.\nShe was aching all over.\tElle avait mal partout.\nShe was falsely accused.\tElle fut accusée à tort.\nShe was falsely accused.\tElle a été accusée à tort.\nShe was in a silk dress.\tElle portait une robe de soie.\nShe was only half alive.\tElle était seulement à moitié vivante.\nShe waved goodbye to me.\tElle me salua pour prendre congé.\nShe wore a simple dress.\tElle portait une robe simple.\nShe wouldn't let him in.\tElle ne voulait pas le laisser entrer.\nShe wouldn't let him in.\tElle ne voudrait pas le laisser entrer.\nShe'll love him forever.\tElle l'aimera à jamais.\nShe'll love him forever.\tElle l'aimera pour toujours.\nShe'll succeed for sure.\tIl est certain qu'elle y parviendra.\nShe'll try it once more.\tElle va essayer encore une fois.\nShe's a fine young lady.\tC'est une belle jeune fille.\nShe's a soccer champion.\tElle est une championne de football.\nShe's heating the water.\tElle fait réchauffer l’eau.\nShe's lost her car keys.\tElle a perdu ses clés de voiture.\nShe's lost her car keys.\tElle a perdu les clés de sa voiture.\nShe's much better today.\tElle va beaucoup mieux aujourd'hui.\nShe's no spring chicken.\tCe n'est pas un lapin de six semaines.\nShe's not young, is she?\tElle n'est pas jeune, n'est-ce pas ?\nShe's the teacher's pet.\tC'est la chouchoute de la prof.\nShe's the teacher's pet.\tC'est la chouchoute du prof.\nShe's unfit for the job.\tElle est inapte pour le poste.\nShoes are sold in pairs.\tLes chaussures se vendent par paires.\nShould I call you a cab?\tJe t'appelle un taxi ?\nShow him how to do this.\tMontre-lui comment faire !\nShow him how to do this.\tMontre-lui comment faire ça !\nShow him how to do this.\tMontre-lui comment le faire !\nShow him how to do this.\tMontrez-lui comment faire !\nShow him how to do this.\tMontrez-lui comment faire ça !\nShow him how to do this.\tMontrez-lui comment le faire !\nShow me another example.\tMontre-moi un autre exemple.\nShow me the way, please.\tVeuillez me montrer le chemin, je vous prie.\nShow me the way, please.\tIndiquez-moi le chemin, s'il vous plaît.\nShow me what you bought.\tMontre-moi ce que tu as acheté.\nShow me what you bought.\tMontrez-moi ce que vous avez acheté.\nShow us what you've got.\tMontrez-nous ce que vous avez.\nShow us what you've got.\tMontre-nous ce que tu as.\nShut the door, will you?\tPeux-tu fermer la porte ?\nSign on the dotted line.\tSignez sur la ligne pointillée.\nSomebody is watching me.\tQuelqu'un est en train de me regarder.\nSomebody made a mistake.\tQuelqu'un a commis une erreur.\nSomeone broke my camera.\tQuelqu'un a cassé mon appareil photo.\nSomeone is watching Tom.\tQuelqu'un est en train de regarder Tom.\nSomeone is watching you.\tQuelqu'un t'observe.\nSomeone is watching you.\tQuelqu'un vous observe.\nSomeone stole my wallet.\tOn m'a volé mon portefeuille.\nSomething is very wrong.\tIl y a quelque chose qui cloche vraiment.\nSometimes I get jealous.\tParfois, je me mets à être jaloux.\nSorry, I can't help you.\tDésolé, je ne peux pas t'aider.\nSorry, I can't help you.\tDésolée, je ne peux pas t'aider.\nSorry, I can't help you.\tDésolé, je ne peux pas vous aider.\nSorry, I can't help you.\tDésolée, je ne peux pas vous aider\nSorry, we're full today.\tDésolé, nous sommes complets aujourd'hui.\nSpell your name, please.\tÉpelez votre nom, s'il vous plaît.\nSpiders have eight legs.\tLes araignées ont huit pattes.\nState your case briefly.\tExposez brièvement votre cas.\nStay a while and listen.\tReste un peu et écoute !\nStay a while and listen.\tRestez un peu et écoutez !\nStay away from my woman.\tRestez à l'écart de ma femme !\nStay away from the fire.\tReste à distance du feu.\nStay away from the fire.\tRestez à distance du feu.\nStay out of my business.\tReste en dehors de mes affaires !\nStay out of my business.\tRestez en dehors de mes affaires !\nSteel traps are illegal.\tLes pièges d'acier sont illégaux.\nSteel traps are illegal.\tLes pièges en acier sont illégaux.\nStop acting like a baby.\tArrêtez de vous conduire comme un bébé !\nStop acting like a baby.\tCessez de vous conduire comme un bébé !\nStop acting like a baby.\tArrêtez de vous conduire en bébé !\nStop acting like a baby.\tCessez de vous conduire en bébé !\nStop acting like a baby.\tArrête de te conduire en bébé !\nStop acting like a baby.\tCesse de te conduire en bébé !\nStop acting like a baby.\tArrête de te conduire comme un bébé !\nStop acting like a baby.\tCesse de te conduire comme un bébé !\nStop acting like a jerk.\tArrête de faire le crétin.\nStop crying like a girl.\tArrête de pleurer comme une fille !\nStop crying like a girl.\tArrêtez de pleurer comme une fille !\nStop crying like a girl.\tCesse de pleurer comme une fille !\nStop crying like a girl.\tCessez de pleurer comme une fille !\nSummer vacation is soon.\tLes vacances d'été approchent.\nSunday follows Saturday.\tLe dimanche suit le samedi.\nSupper is a simple meal.\tLe souper est un repas simple.\nSwimming is easy for me.\tC'est facile pour moi de nager.\nSydney is far from here.\tSydney est loin d'ici.\nTake a book and read it.\tPrends un livre et lis-le !\nTake a look at this map.\tJette un coup d'œil à cette carte.\nTake a look at this map.\tJette un œil sur cette carte.\nTake care of yourselves!\tPrends soin de toi !\nTake care of yourselves!\tPrenez soin de vous !\nTake care of yourselves.\tPrenez soin de vous !\nTake heed of her advice.\tTiens compte de son conseil !\nTake heed of her advice.\tTenez compte de ses conseils !\nTake out your notebooks.\tSortez vos calepins !\nTake out your notebooks.\tSortez vos carnets de notes !\nTake out your notebooks.\tSortez vos blocs-notes !\nTake things as they are.\tPrends les choses comme elles viennent.\nTake whichever you like.\tPrends ce que tu aimes.\nTake whichever you want.\tPrends celui que tu veux.\nTake whichever you want.\tPrends celui qui te chante.\nTake whichever you want.\tPrenez celui que vous voulez.\nTake your seats, please.\tPrenez place, je vous prie !\nTell Tom that I'm angry.\tDis à Tom que je suis en colère.\nTell me a bedtime story.\tConte-moi une histoire pour m'endormir !\nTell me about your plan.\tParle-moi de ton plan.\nTell me about your plan.\tParlez-moi de votre plan.\nTell me about your wife.\tParlez-moi de votre épouse.\nTell me about your wife.\tParle-moi de ton épouse.\nTell me all the details.\tFaites-moi part de tous les détails !\nTell me all the details.\tFais-moi part de tous les détails !\nTell me that was a joke!\tDis-moi que c'était une blague !\nTell me that was a joke!\tDites-moi que c'était une blague !\nTell me what to do here.\tDis-moi quoi faire ici !\nTell me what to do here.\tDites-moi quoi faire ici !\nTell me what's going on.\tDis-moi ce qui se passe !\nTell me what's going on.\tDites-moi ce qui se passe !\nTell me where she lives.\tDites-moi où elle vit !\nTell me where she lives.\tDis-moi où elle vit !\nTell them what happened.\tContez-leur ce qui s'est produit !\nTell them what happened.\tDites-leur ce qui s'est passé !\nTextbooks are expensive.\tLes manuels sont chers.\nThank you all very much.\tMerci beaucoup à toutes.\nThank you for listening.\tMerci pour votre écoute.\nThank you for your gift.\tMerci pour le cadeau.\nThank you for your help.\tMerci de votre assistance.\nThank you for your help.\tMerci pour ton aide.\nThank you for your help.\tMerci pour votre aide.\nThank you for your time.\tMerci pour m'avoir accordé un peu de votre temps.\nThank you for your time.\tJe vous remercie pour votre temps.\nThank you for your time.\tJe te remercie pour ton temps.\nThank you just the same.\tMerci tout de même.\nThanks for all the fish.\tMerci pour tout le poisson !\nThanks for calling, Tom.\tMerci d'avoir appelé, Tom.\nThanks for reminding me.\tMerci de m'y faire penser.\nThanks for the heads-up.\tMerci de m'avoir averti.\nThanks for the memories.\tMerci pour les souvenirs.\nThanks. I appreciate it.\tMerci. J'y suis sensible.\nThat applies to him too.\tCela s'applique aussi à lui.\nThat applies to him too.\tC'est valable aussi pour lui.\nThat boy has black hair.\tCe garçon a les cheveux noirs.\nThat boy is his brother.\tCe garçon est son frère.\nThat boy is intelligent.\tCe garçon est intelligent.\nThat boy is very clever.\tCe garçon est très intelligent.\nThat boy is very clever.\tCe garçon est très habile.\nThat boy is very clever.\tCe garçon est très ingénieux.\nThat boy is very clever.\tCe garçon est très dégourdi.\nThat boy looks like Tom.\tCe garçon ressemble à Tom.\nThat boy showed no fear.\tCe garçon n'a montré aucune peur.\nThat boy showed no fear.\tCe garçon ne montra aucune peur.\nThat boy showed no fear.\tCe garçon ne témoigna d'aucune peur.\nThat boy showed no fear.\tCe garçon n'a témoigné d'aucune peur.\nThat coffee smells good.\tCe café sent bon.\nThat could be difficult.\tCela pourrait être difficile.\nThat couldn't be helped.\tOn n'y pouvait rien.\nThat couldn't be helped.\tOn n'y pourrait rien.\nThat dictionary is mine.\tCe dictionnaire est à moi.\nThat doesn't seem right.\tIl y a quelque chose qui cloche.\nThat doesn't sound good.\tÇa ne semble pas bon.\nThat dog is really ugly.\tCe chien est vraiment laid.\nThat dog runs very fast.\tCe chien court très vite.\nThat girl is really shy.\tCette fille est vraiment timide.\nThat idea is ridiculous.\tCette idée est ridicule.\nThat is an absolute lie.\tC'est un mensonge absolu.\nThat is how it happened.\tC'est comme ça que c'est arrivé.\nThat is of no use to me.\tÇa ne m'est d'aucune utilité.\nThat is simply not true.\tCe n'est simplement pas vrai.\nThat is so embarrassing.\tCela est tellement embarrassant.\nThat isn't to my liking.\tÇa ne me plaît pas.\nThat makes things clear.\tÇa clarifie les choses.\nThat man looks familiar.\tCet homme me dit quelque chose.\nThat man stole my purse.\tCet homme a volé mon sac à main.\nThat may not be so easy.\tÇa n'est peut-être pas aussi facile.\nThat may not be so easy.\tÇa n'est peut-être pas aussi aisé.\nThat might be difficult.\tÇa pourrait être difficile.\nThat never was an issue.\tÇa n'a jamais été un problème.\nThat painting is a copy.\tCette peinture est une copie.\nThat really isn't funny.\tCe n'est vraiment pas drôle.\nThat remains to be seen.\tÇa reste à voir.\nThat reminds me of home.\tÇa me rappelle chez moi.\nThat sounds interesting.\tÇa a l'air vraiment intéressant.\nThat sounds interesting.\tÇa a l'air intéressant.\nThat sounds interesting.\tCela semble fort intéressant.\nThat was fun, wasn't it?\tC'était amusant, n'est-ce pas ?\nThat was quite a speech.\tC'était un sacré discours.\nThat was really intense.\tÇa a été vraiment intense.\nThat was the basic idea.\tC'était l'idée de base.\nThat won't be a problem.\tÇa ne posera pas de problème.\nThat would be a mistake.\tÇa serait une erreur.\nThat would be all right.\tÇa irait très bien.\nThat would be fantastic.\tCe serait fantastique.\nThat would not be a lie.\tÇa ne serait pas un mensonge.\nThat would take all day.\tÇa prendrait toute la journée.\nThat'll be a lot of fun.\tOn va bien rigoler.\nThat'll be a lot of fun.\tOn va bien se marrer.\nThat's a bad day for me.\tC'est un mauvais jour pour moi.\nThat's a brilliant idea.\tC'est une brillante idée.\nThat's a generous offer.\tC'est une proposition généreuse.\nThat's a real long shot.\tC'est pas du tout gagné.\nThat's a real long shot.\tÇa a vraiment peu de chances de réussir.\nThat's a very good sign.\tC'est un très bon signe.\nThat's a very nice suit.\tC'est un très chouette costume.\nThat's a wonderful idea.\tC'est une idée merveilleuse.\nThat's absolutely right.\tC'est absolument vrai.\nThat's absolutely right.\tC'est tout à fait ça.\nThat's absolutely right.\tC'est tout à fait juste.\nThat's all I care about.\tC'est tout ce dont je me soucie.\nThat's all I care about.\tC'est tout ce dont je me préoccupe.\nThat's all I could find.\tC'est tout ce que j'ai pu trouver.\nThat's all I had to say.\tC'est tout ce que j'avais à dire.\nThat's all that matters.\tC'est tout ce qui compte.\nThat's all you ever say.\tC'est tout ce que tu dis toujours.\nThat's altogether wrong.\tC'est complètement faux.\nThat's beside the point.\tLà n'est pas la question.\nThat's better, isn't it?\tC'est mieux, n'est-ce pas ?\nThat's clearly not true.\tIl est clair que ce n'est pas vrai.\nThat's encouraging news.\tCe sont des nouvelles encourageantes.\nThat's enough for today.\tAssez pour aujourd'hui.\nThat's enough for today.\tC'est tout pour aujourd'hui.\nThat's enough for today.\tÇa suffit pour aujourd'hui.\nThat's exactly my point.\tC'est précisément ce que je dis.\nThat's exactly my point.\tC'est précisément ma thèse.\nThat's for me to decide.\tC'est à moi d'en décider.\nThat's how I planned it.\tC'est ainsi que je l'ai prévu.\nThat's how it should be.\tC'est tel que ça devrait être.\nThat's how it should be.\tC'est ainsi que ça devrait être.\nThat's just fascinating.\tC'est simplement fascinant.\nThat's just what I need.\tC'est précisément ce dont j'ai besoin.\nThat's just what I need.\tC'est précisément ce qu'il me faut.\nThat's not at all funny.\tCe n'est pas drôle du tout.\nThat's not exactly true.\tCe n'est pas tout à fait vrai.\nThat's not funny at all.\tCe n'est pas drôle du tout.\nThat's not how I see it.\tCe n'est pas ainsi que je le vois.\nThat's not my signature.\tCe n'est pas ma signature.\nThat's not so important.\tCe n'est pas très important.\nThat's not very elegant.\tCe n'est pas très élégant.\nThat's not what I heard.\tCe n'est pas ce que j'ai entendu.\nThat's not what I think.\tCe n'est pas ce que je pense.\nThat's not what he said.\tÇa n'est pas ce qu'il a dit.\nThat's not what he said.\tCe n'est pas ce qu'il a dit.\nThat's plenty for today.\tC'est beaucoup pour aujourd'hui.\nThat's real nice of you.\tC'est vraiment chouette de votre part.\nThat's real nice of you.\tC'est vraiment chouette de ta part.\nThat's really not funny.\tCe n'est vraiment pas amusant.\nThat's really not funny.\tC'est vraiment pas drôle.\nThat's so inappropriate.\tC'est tellement inapproprié.\nThat's useful, isn't it?\tC'est utile, n'est-ce pas ?\nThat's very good advice.\tCe sont de très bons conseils.\nThat's very kind of you.\tС’est vraiment gentil à vous.\nThat's what I told them.\tCe fut ce que je leur dis.\nThat's what I told them.\tC'est ce que je leur ai dit.\nThat's what I want most.\tC'est ce que je veux le plus.\nThat's what Tom told me.\tC'est ce que Tom m'a dit.\nThat's what we all want.\tC'est ce que nous voulons tous.\nThat's what we all want.\tC'est ce que nous voulons toutes.\nThat's what you all say.\tC'est ce que vous dites tous.\nThat's what you all say.\tC'est ce que vous dites toutes.\nThat's where I was born.\tC'est là que je suis né.\nThat's where I was born.\tC'est là que je naquis.\nThat's why I called you.\tC'est pourquoi je t'ai appelé.\nThat's why I called you.\tC'est pourquoi je vous ai appelé.\nThat's why he got angry.\tC'est pourquoi il s'est mis en colère.\nThe TV was on all night.\tLa télé est restée allumée toute la nuit.\nThe acting is very good.\tLe jeu des acteurs est très bon.\nThe author is Brazilian.\tL'auteur est brésilien.\nThe baby can't walk yet.\tLe bébé ne sait pas encore marcher.\nThe baby is fast asleep.\tLe bébé dort à poings fermés.\nThe baby is one day old.\tLe bébé a un jour.\nThe baby started to cry.\tLe bébé s'est mis à pleurer.\nThe baby stopped crying.\tLe bébé a arrêté de crier.\nThe baby's name was Tom.\tLe bébé s'appelait Tom.\nThe best is yet to come.\tLe meilleur est encore à venir.\nThe box has holes in it.\tIl y a des trous dans la boîte.\nThe box is almost empty.\tLa boîte est presque vide.\nThe box is made of wood.\tLa boîte est en bois.\nThe boy feared the dark.\tLe garçon avait peur des ténèbres.\nThe boy feared the dark.\tLe garçon avait peur du noir.\nThe boy remained silent.\tLe garçon resta silencieux.\nThe boy remained silent.\tLe garçon est resté silencieux.\nThe brown horse is fast.\tLe cheval alezan est rapide.\nThe car bumped the tree.\tLa voiture a heurté l'arbre.\nThe car cut to the left.\tLa voiture coupa à gauche.\nThe car ran into a tree.\tLa voiture a roulé contre un arbre.\nThe car ran into a tree.\tUne voiture est rentrée dans un arbre.\nThe cat arched its back.\tLe chat arqua le dos.\nThe cat arched its back.\tLe chat fit le gros dos.\nThe cat is on the table.\tLe chat est sur la table.\nThe cat ran up the tree.\tLe chat courut au haut de l'arbre.\nThe children are scared.\tLes enfants ont peur.\nThe climate is changing.\tLe climat change.\nThe contract was signed.\tLe contrat a été conclu.\nThe crops have withered.\tLes champs se sont asséchés.\nThe curtain caught fire.\tLe rideau prit feu.\nThe curtains are closed.\tLes rideaux sont tirés.\nThe dangers are obvious.\tLes dangers sont évidents.\nThe desk drawer is open.\tLe tiroir du bureau est ouvert.\nThe dog is on the chair.\tLe chien est sur la chaise.\nThe dog started barking.\tLe chien se mit à aboyer.\nThe dog started barking.\tLe chien s'est mis à aboyer.\nThe dog stopped barking.\tLe chien a arrêté d'aboyer.\nThe dog stopped barking.\tLe chien a cessé d'aboyer.\nThe dog walked backward.\tLe chien marcha en arrière.\nThe door would not open.\tLa porte ne s'ouvrait pas.\nThe doorbell is ringing.\tLa sonnerie de la porte retentit.\nThe engine doesn't work.\tLe moteur ne fonctionne pas.\nThe facts are not clear.\tLes faits ne sont pas clairs.\nThe funeral is tomorrow.\tL'enterrement est demain.\nThe furniture was dusty.\tLe mobilier était poussiéreux.\nThe game was called off.\tLa partie fut annulée.\nThe goods arrive by sea.\tLa marchandise arrive par mer.\nThe ground is still wet.\tLe sol est encore humide.\nThe guests are all gone.\tTous les invités sont partis.\nThe hawk caught a mouse.\tLe faucon attrapa une souris.\nThe heater doesn't work.\tLe chauffage ne fonctionne pas.\nThe holidays are coming.\tLes fêtes se rapprochent.\nThe hotel is down there.\tL'hôtel est là en bas.\nThe house has been sold.\tLa maison a été vendue.\nThe house is farther on.\tLa maison est plus loin.\nThe house was in flames.\tLa maison était en flammes.\nThe imposter was caught.\tL'imposteur a été capturé.\nThe jail is overcrowded.\tLa prison est surpeuplée.\nThe jail is overcrowded.\tLa maison d'arrêt est surpeuplée.\nThe key is on the table.\tLa clé est sur la table.\nThe lady is over eighty.\tLa dame a plus de quatre vingts ans.\nThe lock must be broken.\tLa serrure doit être brisée.\nThe lock must be broken.\tIl faut casser la serrure.\nThe machine's yours now.\tLa machine est à vous, maintenant.\nThe man is eating bread.\tL'homme est en train de manger du pain.\nThe meeting is all over.\tLa réunion est terminée.\nThe moon is already out.\tLa lune est déjà visible.\nThe negotiations failed.\tLes négociations ont échoué.\nThe news made her happy.\tCette nouvelle la rendit heureuse.\nThe news made her happy.\tLa nouvelle la rendit heureuse.\nThe news quickly spread.\tLes nouvelles se répandirent rapidement.\nThe night's still young.\tLa nuit ne fait que commencer.\nThe noise was deafening.\tLe bruit était assourdissant.\nThe old man looked wise.\tLe vieil homme avait l'air avisé.\nThe pain was unbearable.\tLa douleur était insupportable.\nThe party ended at nine.\tLa fête s'est terminée à neuf heures.\nThe party was a failure.\tLa fête était un échec.\nThe party was a success.\tLa fête a été un succès.\nThe pen is on the table.\tLe stylo est sur la table.\nThe pleasure's all mine.\tTout le plaisir est pour moi.\nThe police are after me.\tLa police me court après.\nThe radio is a bit loud.\tLe son de la radio est un peu fort.\nThe radio is a bit loud.\tLa radio est un peu forte.\nThe radio will not work.\tLa radio est cassée.\nThe report is incorrect.\tLe rapport est incorrect.\nThe restaurant is empty.\tLe restaurant est vide.\nThe restaurant is empty.\tLe restaurant est désert.\nThe risks are too great.\tLes risques sont trop élevés.\nThe road was very bumpy.\tLa route était pleine de cahots.\nThe room is quite small.\tLa chambre est assez petite.\nThe rooms are all clean.\tLes chambres sont toutes propres.\nThe rumor can't be true.\tLa rumeur ne peut être vraie.\nThe sheet is on the bed.\tLe drap est sur le lit.\nThe shower doesn't work.\tLa douche est cassée.\nThe shower doesn't work.\tLa douche ne fonctionne pas.\nThe snowstorm continued.\tLa tempête de neige se poursuivit.\nThe spoken word matters.\tLe mot que l'on prononce importe.\nThe storm has died down.\tLa tempête s'est apaisée.\nThe storm sank the boat.\tLa tempête a coulé le bateau.\nThe streets are flooded.\tLes rues sont inondées.\nThe sun is about to set.\tLe soleil est sur le point de se coucher.\nThe sun is about to set.\tLe soleil va bientôt se coucher.\nThe supermarket is open.\tLe supermarché est ouvert.\nThe tide is rising fast.\tLa marée monte vite.\nThe tree grew very tall.\tL'arbre devint très grand.\nThe trees were in a row.\tLes arbres se tenaient sur une ligne.\nThe universe is endless.\tL'univers est infini.\nThe water began to boil.\tL'eau se mit à bouillir.\nThe water is waist-deep.\tL'eau m'arrive jusqu'à la taille.\nThe water turned to ice.\tL'eau se mua en glace.\nThe water turned to ice.\tL'eau se changea en glace.\nThe water turned to ice.\tL'eau s'est muée en glace.\nThe water turned to ice.\tL'eau s'est changée en glace.\nThe water's really nice.\tL'eau est vraiment agréable.\nThe weather is terrible.\tLe temps est horrible.\nThe weather is very bad.\tIl fait très mauvais.\nThe weather is very hot.\tIl fait très chaud.\nThe weather was perfect.\tLe temps était parfait.\nThe wheel began to turn.\tLa roue commença à tourner.\nThe world isn't perfect.\tLe monde n'est pas parfait.\nTheir car overtook ours.\tLeur voiture a doublé la nôtre.\nTheir muscles are stiff.\tIls ont des courbatures.\nTheir sales are growing.\tLeurs ventes augmentent.\nThere are no drugs here.\tIl n'y a pas de drogues, ici.\nThere are no drugs here.\tIl n'y a pas de médicaments, ici.\nThere are several exits.\tIl y a plusieurs sorties.\nThere is a lot of money.\tIl y a beaucoup d'argent.\nThere is no breeze here.\tIl n'y a, ici, point de brise.\nThere is plenty of food.\tIl y a de la nourriture en abondance.\nThere must be a pattern.\tIl doit y avoir une récurrence.\nThere was a lot of wind.\tIl y avait beaucoup de vent.\nThere was only one left.\tIl n'en restait plus qu'un.\nThere was only one left.\tIl n'en restait qu'un seul.\nThere were 30 survivors.\tIl y a eu trente survivants.\nThere were 30 survivors.\tIl y eut trente survivants.\nThere were no railroads.\tIl n'y avait pas de voies ferrées.\nThere were no survivors.\tIl n'y eut pas de survivants.\nThere were no survivors.\tIl n'y a pas eu de survivants.\nThere were no survivors.\tIl n'y a pas eu de survivantes.\nThere were no survivors.\tIl n'y eut pas de survivantes.\nThere's a party tonight.\tIl y a une fête ce soir.\nThere's a party tonight.\tUne fête se tient ce soir.\nThere's another way out.\tIl y a une autre issue.\nThere's got to be a way.\tIl doit y avoir un moyen.\nThere's no other choice.\tIl n'y a pas d'autre choix.\nThere's no right answer.\tIl n'y a pas de réponse correcte.\nThere's no stopping now.\tOn ne peut pas l'arrêter, maintenant.\nThere's no toilet paper.\tIl n'y a pas de papier toilette.\nThere's no toilet paper.\tIl n'y a pas de papier hygiénique.\nThere's no turning back.\tIl n'y a pas de retour en arrière possible.\nThere's not enough food.\tIl n'y a pas suffisamment de nourriture.\nThere's not enough time.\tIl n'y a pas suffisamment de temps.\nThere's not much to say.\tIl n'y a pas grand-chose à dire.\nThere's not much to say.\tIl n'y a pas grand-chose à en dire.\nThere's nothing up here.\tIl n'y a rien par là-haut.\nThere's nowhere to hide.\tIl n'y a nulle part où se cacher.\nThere's only a day left.\tIl ne reste qu'un jour.\nThere's plenty of light.\tIl y a plein de lumière.\nThere's plenty of water.\tIl y a plein d'eau.\nThese apples are rotten.\tCes pommes sont pourries.\nThese are the originals.\tVoici les originaux.\nThese are the originals.\tEn voici les originaux.\nThese flowers are dying.\tCes fleurs se fanent.\nThese gifts are for you.\tCes cadeaux sont pour toi.\nThese gifts are for you.\tCes cadeaux sont pour vous.\nThese keys are not mine.\tCes clés ne sont pas à moi.\nThese pants fit me well.\tCe pantalon me va bien.\nThese shoes fit my feet.\tCes chaussures vont à mon pied.\nThey abandoned the plan.\tIls abandonnèrent le projet.\nThey abandoned the ship.\tIls abandonnèrent le navire.\nThey abandoned the ship.\tElles abandonnèrent le navire.\nThey abandoned the ship.\tIls ont abandonné le navire.\nThey abandoned the ship.\tElles ont abandonné le navire.\nThey adopted the orphan.\tIls adoptèrent l'orphelin.\nThey adopted the orphan.\tElles adoptèrent l'orphelin.\nThey adopted the orphan.\tElles adoptèrent l'orpheline.\nThey adopted the orphan.\tIls adoptèrent l'orpheline.\nThey all deserve to die.\tIls méritent tous de mourir.\nThey all deserve to die.\tElles méritent toutes de mourir.\nThey all need attention.\tIls ont tous besoin d'attention.\nThey all need attention.\tElles ont toutes besoin d'attention.\nThey are about to start.\tIls sont sur le point de commencer.\nThey are about to start.\tElles sont sur le point de commencer.\nThey are all very happy.\tIls sont tous très heureux.\nThey are all very happy.\tElles sont toutes très heureuses.\nThey are both unmarried.\tTous les deux sont célibataires.\nThey are gathering nuts.\tIls ramassent des noisettes.\nThey are going shopping.\tIls vont faire les courses.\nThey are making a salad.\tIls font une salade.\nThey are sensible girls.\tCe sont des jeunes filles sérieuses.\nThey are still children.\tElles sont encore des enfants.\nThey are still children.\tIls sont encore des enfants.\nThey arranged a meeting.\tIls arrangèrent une rencontre.\nThey arranged a meeting.\tIls organisèrent une rencontre.\nThey arranged a meeting.\tIls arrangèrent une réunion.\nThey ate and drank wine.\tIls mangèrent et burent du vin.\nThey ate and drank wine.\tElles mangèrent et burent du vin.\nThey ate and drank wine.\tIls ont mangé et bu du vin.\nThey ate and drank wine.\tElles ont mangé et bu du vin.\nThey attacked the enemy.\tIls ont attaqué l'ennemi.\nThey began a discussion.\tIls entamèrent une discussion.\nThey can't hurt you now.\tIls ne peuvent te faire de mal, maintenant.\nThey can't hurt you now.\tElles ne peuvent te faire de mal, maintenant.\nThey changed the system.\tIls changèrent le système.\nThey chased others away.\tIls en chassèrent d'autres.\nThey crossed the border.\tIls traversèrent la frontière.\nThey crossed the border.\tElles traversèrent la frontière.\nThey crossed the border.\tIls ont traversé la frontière.\nThey crossed the border.\tElles ont traversé la frontière.\nThey didn't act quickly.\tIls n'agirent pas rapidement.\nThey don't have to know.\tIl n'est pas nécessaire qu'ils sachent.\nThey don't have to know.\tIl n'est pas nécessaire qu'elles sachent.\nThey don't know my name.\tIls ne savent pas mon nom.\nThey don't know my name.\tIls ne savent pas mon prénom.\nThey don't listen to me.\tIls ne m'écoutent pas.\nThey don't listen to me.\tElles ne m'écoutent pas.\nThey drank way too much.\tIls ont beaucoup trop bu.\nThey enjoyed themselves.\tIls s'amusèrent.\nThey enjoyed themselves.\tIls se sont amusés.\nThey enjoyed themselves.\tElles se sont amusées.\nThey enjoyed themselves.\tElles s'amusèrent.\nThey formed a swim team.\tIls ont formé une équipe de nageurs.\nThey formed a swim team.\tElles ont formé une équipe de nageuses.\nThey formed a swim team.\tCe sont eux qui formèrent une équipe de nageurs.\nThey formed a swim team.\tCe sont elles qui formèrent une équipe de nageuses.\nThey formed a swim team.\tIls ont formé une équipe de natation.\nThey fought for freedom.\tIls se sont battus pour la liberté.\nThey gave us their word.\tIls nous ont donné leur parole.\nThey gave us their word.\tElles nous ont donné leur parole.\nThey gave us their word.\tIls nous donnèrent leur parole.\nThey gave us their word.\tElles nous donnèrent leur parole.\nThey go to work on foot.\tIls vont au travail à pied.\nThey got into the train.\tIls montèrent dans le train.\nThey got into the train.\tElles montèrent dans le train.\nThey got into the train.\tIls sont montés dans le train.\nThey got into the train.\tElles sont montées dans le train.\nThey had good chemistry.\tIls avaient des atomes crochus.\nThey had good chemistry.\tIl y avait une bonne alchimie entre eux.\nThey have a large house.\tIls ont une grande maison.\nThey have already begun.\tIls ont déjà commencé.\nThey have already begun.\tElles ont déjà commencé.\nThey have two daughters.\tIls ont deux filles.\nThey know what happened.\tIls savent ce qui s'est produit.\nThey know what happened.\tElles savent ce qui s'est produit.\nThey know what happened.\tElles savent ce qui est advenu.\nThey know what happened.\tIls savent ce qui est advenu.\nThey know what happened.\tIls savent ce qui a eu lieu.\nThey know what happened.\tElles savent ce qui a eu lieu.\nThey know what happened.\tElles savent ce qui s'est passé.\nThey know what happened.\tIls savent ce qui s'est passé.\nThey lived a happy life.\tIls vécurent une vie heureuse.\nThey may leave tomorrow.\tIl se peut qu'ils partent demain.\nThey may leave tomorrow.\tIl se peut qu'elles partent demain.\nThey may leave tomorrow.\tEux peuvent partir demain.\nThey may leave tomorrow.\tElles peuvent partir demain.\nThey met in high school.\tIls se sont rencontrés au collège.\nThey met in high school.\tIls se sont rencontrés au lycée.\nThey met in high school.\tElles se sont rencontrées au collège.\nThey met in high school.\tElles se sont rencontrées au lycée.\nThey reached their goal.\tIls ont atteint leur but.\nThey refused to help us.\tIls ont refusé de nous aider.\nThey rowed up the river.\tIls remontèrent la rivière à la rame.\nThey say he's very rich.\tOn dit qu'il est très riche.\nThey say he's very rich.\tOn le dit très riche.\nThey tried a third time.\tIls essayèrent une troisième fois.\nThey tried a third time.\tIls ont essayé une troisième fois.\nThey want you to resign.\tIls veulent que vous démissionniez.\nThey want you to resign.\tElles veulent que vous démissionniez.\nThey want you to resign.\tIls veulent que tu démissionnes.\nThey want you to resign.\tElles veulent que tu démissionnes.\nThey were afraid of you.\tElles avaient peur de vous.\nThey were afraid of you.\tElles avaient peur de toi.\nThey were afraid of you.\tIls avaient peur de vous.\nThey were afraid of you.\tIls avaient peur de toi.\nThey were in the shower.\tIls étaient dans la douche.\nThey were in the shower.\tElles étaient dans la douche.\nThey were not impressed.\tIls n'ont pas été impressionnés.\nThey were not impressed.\tIls ne furent pas impressionnés.\nThey were not impressed.\tElles n'ont pas été impressionnées.\nThey were not impressed.\tElles ne furent pas impressionnées.\nThey were put in prison.\tIls furent mis en prison.\nThey were very confused.\tElles étaient très perplexes.\nThey were very confused.\tIls étaient très perplexes.\nThey were very confused.\tIls étaient très troublés.\nThey were very confused.\tIls étaient fort perplexes.\nThey were very confused.\tElles étaient fort perplexes.\nThey will agree on that.\tIls seront d'accord là-dessus.\nThey will agree on that.\tElles seront d'accord là-dessus.\nThey work in the fields.\tIls travaillent aux champs.\nThey'll be here tonight.\tIls seront là ce soir.\nThey'll be here tonight.\tElles seront ici ce soir.\nThey'll know what to do.\tIls sauront quoi faire.\nThey'll know what to do.\tElles sauront quoi faire.\nThey're all on vacation.\tIls sont tous en vacances.\nThey're all on vacation.\tElles sont toutes en vacances.\nThey're all watching TV.\tIls sont tous en train de regarder la télé.\nThey're all watching TV.\tElles sont toutes en train de regarder la télé.\nThey're all watching us.\tIls nous regardent tous.\nThey're all watching us.\tElles sont toutes en train de nous regarder.\nThey're headed this way.\tIls vont dans cette direction.\nThey're headed this way.\tElles vont dans cette direction.\nThey're headed this way.\tIls se rendent dans cette direction.\nThey're headed this way.\tElles se rendent dans cette direction.\nThey're looking for Tom.\tIls cherchent Tom.\nThey're looking for Tom.\tElles cherchent Tom.\nThey're looking for you.\tIls te cherchent.\nThey're looking for you.\tIls vous cherchent.\nThey're looking for you.\tElles te cherchent.\nThey're looking for you.\tElles vous cherchent.\nThey're looking for you.\tIls sont en train de te chercher.\nThey're looking for you.\tElles sont en train de te chercher.\nThey're looking for you.\tElles sont en train de vous chercher.\nThey're looking for you.\tIls sont en train de vous chercher.\nThey're not coming back.\tIls ne vont pas revenir.\nThey're not coming back.\tElles ne vont pas revenir.\nThey're right behind me.\tElles se trouvent juste derrière moi.\nThey're right behind me.\tIls se trouvent juste derrière moi.\nThey're right behind me.\tIls sont juste derrière moi.\nThey're right behind me.\tElles sont juste derrière moi.\nThey're self sufficient.\tIls sont autosuffisants.\nThey're self sufficient.\tElles sont autosuffisantes.\nThey're speaking French.\tIls parlent en français.\nThey're speaking French.\tElles parlent en français.\nThey're waiting for you.\tIls t'attendent.\nThey're waiting for you.\tElles t'attendent.\nThey're waiting for you.\tIls vous attendent.\nThey're waiting for you.\tElles vous attendent.\nThey've missed the boat.\tIls ont loupé le coche.\nThey've suffered enough.\tIls ont assez souffert.\nThey've suffered enough.\tElles ont assez souffert.\nThings are looking good.\tLes choses se présentent bien.\nThink about your future.\tPense à ton avenir.\nThink about your future.\tPensez à votre avenir.\nThis animal is friendly.\tCet animal est amical.\nThis area is off-limits.\tCette zone est interdite.\nThis book is a whodunit.\tCe livre est un polar.\nThis book is really old.\tCe livre est vraiment vieux !\nThis book is very small.\tCe livre est très petit.\nThis can't happen again.\tÇa ne peut pas se reproduire.\nThis chair is too small.\tCette chaise est trop petite.\nThis changes everything.\tÇa change tout.\nThis could take a while.\tCeci pourrait prendre un moment.\nThis could take a while.\tCela pourrait prendre un moment.\nThis could take a while.\tÇa pourrait prendre un moment.\nThis cow is not branded.\tCette vache n'est pas marquée.\nThis dictionary is mine.\tCe dictionnaire est à moi.\nThis does not bode well.\tCela ne présage rien de bon.\nThis does not bode well.\tÇa n'est pas de bon augure.\nThis doesn't feel right.\tÇa ne semble pas correct.\nThis doesn't make sense.\tÇa n'a pas de sens.\nThis doesn't make sense.\tCeci n'a aucun sens.\nThis door will not open.\tCette porte ne veut pas s'ouvrir.\nThis door will not open.\tCette porte refuse de s'ouvrir.\nThis food smells rotten.\tCette nourriture a une odeur de pourri.\nThis hat doesn't fit me.\tCe chapeau ne me va pas.\nThis heat is unbearable.\tCette chaleur est insupportable.\nThis house is abandoned.\tCette maison est abandonnée.\nThis house is abandoned.\tCette demeure est abandonnée.\nThis house is fireproof.\tCette maison est à l'épreuve du feu.\nThis house is very good.\tCette maison est très bonne.\nThis is a Japanese doll.\tC'est une poupée japonaise.\nThis is a good textbook.\tC’est un bon manuel.\nThis is a good textbook.\tC'est une bonne méthode.\nThis is a great victory.\tC'est une grande victoire.\nThis is a kind of bread.\tC'est une sorte de pain.\nThis is a very good tea.\tCe thé est très bon.\nThis is against the law.\tC'est contraire à la loi.\nThis is all that's left.\tC'est tout ce qui reste.\nThis is all unnecessary.\tTout cela n'est pas nécessaire.\nThis is almost too easy.\tC'est presque trop facile.\nThis is by far the best.\tC'est de loin le meilleur.\nThis is getting awkward.\tCela devient pénible.\nThis is how I cook fish.\tC'est comme ça que je cuisine le poisson.\nThis is how it happened.\tC'est ainsi que ça s'est passé.\nThis is my brother, Tom.\tC'est mon frère, Tom.\nThis is my new tricycle.\tC'est mon nouveau tricycle.\nThis is not a good sign.\tCe n'est pas bon signe.\nThis is not about money.\tCe n'est pas une question d'argent.\nThis is not about money.\tIl ne s'agit pas d'argent.\nThis is not good at all.\tCe n'est pas bien du tout.\nThis is not our problem.\tCe n'est pas notre problème.\nThis is our last chance.\tC'est notre dernière chance.\nThis is perfectly legal.\tC'est parfaitement légal.\nThis is simply not true.\tÇa n'est tout simplement pas vrai.\nThis is the zoom button.\tC'est le bouton pour l'agrandissement.\nThis is very impressive.\tC'est très impressionnant.\nThis is very surprising.\tC'est très surprenant.\nThis is what he painted.\tC'est ce qu'il a peint.\nThis isn't a safe place.\tCet endroit n'est pas sûr.\nThis isn't good for Tom.\tCe n'est pas bon pour Tom.\nThis isn't so difficult.\tCe n'est pas si difficile.\nThis knot will not hold.\tCe noeud ne va pas tenir.\nThis looks kind of cute.\tÇa a l'air assez mignon.\nThis man is incompetent.\tCet homme est incompétent.\nThis might interest you.\tCeci peut peut-être vous intéresser.\nThis paragraph is vague.\tCe paragraphe est vague.\nThis place is all right.\tCet endroit est parfait.\nThis place isn't so bad.\tCette place n'est pas si mal.\nThis probably means war.\tCela signifie probablement la guerre.\nThis program is a rerun.\tCe programme est une rediffusion.\nThis reminds me of home.\tÇa me rappelle chez moi.\nThis river is beautiful.\tCette rivière est belle.\nThis room gets sunshine.\tCette pièce est éclairée par le soleil.\nThis room gets sunshine.\tCette pièce reçoit la lumière du soleil.\nThis smells like cheese.\tÇa sent le fromage.\nThis sounds about right.\tÇa semble à peu près juste.\nThis sounds interesting.\tÇa a l'air intéressant.\nThis sounds like a trap.\tÇa semble être un piège.\nThis steak is too tough.\tCe steak est trop dur.\nThis stuff tastes awful.\tÇa a mauvais goût.\nThis table isn't steady.\tCette table est bancale.\nThis time I will try it.\tCette fois, je vais l'essayer.\nThis time I will try it.\tCette fois, je vais essayer ça.\nThis used to be my room.\tC'était ma chambre avant.\nThis will keep you warm.\tÇa te gardera chaud.\nThis will keep you warm.\tÇa vous gardera chaud.\nThis won't happen again.\tÇa n'arrivera plus.\nThis would be a mistake.\tÇa serait une erreur.\nThis would be a mistake.\tÇa constituerait une erreur.\nThose are all important.\tCeux-là sont tous importants.\nThose are all important.\tCelles-là sont toutes importantes.\nThose pants are too big.\tCe pantalon est trop grand.\nTime travel is possible.\tLe voyage dans le temps est possible.\nToday's show is a rerun.\tLe programme d'aujourd'hui est une rediffusion.\nToday's special is fish.\tLe plat du jour est du poisson.\nTom abandoned that idea.\tTom abandonna cette idée.\nTom abandoned that idea.\tTom a abandonné cette idée.\nTom and I are separated.\tTom et moi sommes séparés.\nTom and I keep in touch.\tTom et moi sommes restés en contact.\nTom and I will help you.\tTom et moi t'aiderons.\nTom and Mary are asleep.\tTom et Mary sont endormis.\nTom and Mary are asleep.\tTom et Mary sont couchés.\nTom asked for my number.\tTom m'a demandé mon numéro de téléphone.\nTom asked me to be here.\tTom m'a demandé d'être ici.\nTom ate more than I did.\tTom mangea plus que moi.\nTom ate more than I did.\tTom a mangé plus que moi.\nTom bandaged Mary's arm.\tTom pansa le bras de Marie.\nTom beat Mary in tennis.\tTom a battu Mary au tennis.\nTom began fixing dinner.\tTom a commencé à préparer le dîner.\nTom began fixing dinner.\tTom commença à préparer le dîner.\nTom began to feel tired.\tTom commença à se sentir fatigué.\nTom bought me this book.\tTom m'a acheté ce livre.\nTom brushed Mary's hair.\tTom a brossé les cheveux de Marie.\nTom brushed Mary's hair.\tTom brossa les cheveux de Marie.\nTom built his own house.\tTom a construit sa propre maison.\nTom called in an expert.\tTom a fait appel à un expert.\nTom can do it, can't he?\tTom peut le faire, non ?\nTom can't be that naive.\tTom ne peut pas être si naïf.\nTom can't do this alone.\tTom ne peut pas faire ceci tout seul.\nTom certainly fooled me.\tTom m'a certainement trompé.\nTom could sell anything.\tTom pourrait vendre n'importe quoi.\nTom couldn't be happier.\tTom ne pouvait pas être plus heureux.\nTom couldn't find a job.\tTom ne pouvait pas trouver de travail.\nTom declined to comment.\tTom n'a pas fait de commentaire.\nTom deserves a vacation.\tTom mérite des vacances.\nTom did nothing illegal.\tTom n'a commis aucun acte illicite.\nTom didn't believe Mary.\tTom n'a pas cru Mary.\nTom didn't even tell me.\tTom ne me l'a même pas dit.\nTom didn't go to Boston.\tTom n'est pas allé à Boston.\nTom didn't have to hide.\tTom n'avait pas à se cacher.\nTom didn't make a sound.\tTom ne fit pas un bruit.\nTom didn't miss a thing.\tTom n'a rien manqué.\nTom didn't tell me this.\tTom ne m'a pas dit ceci.\nTom didn't want to sing.\tTom ne voulait pas chanter.\nTom didn't want to sing.\tTom n'a pas voulu chanter.\nTom died in Mary's arms.\tTom est mort dans les bras de Mary.\nTom died when he was 97.\tTom est mort à l'âge de quatre-vingt-dix-sept ans.\nTom died when he was 97.\tTom est mort à l'âge de nonante-sept ans.\nTom does volunteer work.\tTom fait du bénévolat.\nTom doesn't have a home.\tTom n'a pas de maison.\nTom doesn't like cheese.\tTom n’aime pas le fromage.\nTom doesn't mince words.\tTom ne mâche pas ses mots.\nTom doesn't smile often.\tTom ne sourit pas souvent.\nTom dove into the water.\tTom plongea dans l'eau.\nTom drank too much wine.\tTom a bu trop de vin.\nTom drank too much wine.\tTom but trop de vin.\nTom fired his secretary.\tTom a congédié sa secrétaire.\nTom forgot to buy bread.\tTom a oublié d'acheter du pain.\nTom found out the truth.\tTom a découvert la vérité.\nTom gave me 300 dollars.\tTom m'a donné trois cents dollars.\nTom got back in the car.\tTom est retourné dans la voiture.\nTom got back in the car.\tTom est remonté dans la voiture.\nTom got engaged to Mary.\tTom s'est fiancé avec Marie.\nTom got on the airplane.\tTom est monté dans l'avion.\nTom got up to help Mary.\tTom se leva pour aider Mary.\nTom got up to help Mary.\tTom s'est levé pour aider Mary.\nTom grabbed Mary's hand.\tTom attrapa la main de Mary.\nTom greeted me politely.\tTom me salua poliment.\nTom had a difficult job.\tTom avait un travail difficile.\nTom had a difficult job.\tTom a eu un travail difficile.\nTom had to do some work.\tTom avait du travail à faire.\nTom has a difficult job.\tTom a un travail compliqué.\nTom has a difficult job.\tTom a un boulot compliqué.\nTom has a difficult job.\tTom a un job compliqué.\nTom has a secret weapon.\tTom a une arme secrète.\nTom has been helping me.\tTom m'a aidé.\nTom has come to see you.\tTom est venu te voir.\nTom has his own bedroom.\tTom a sa propre chambre.\nTom has joined the army.\tTom a rejoint l'armée.\nTom has long blond hair.\tTom a de longs cheveux blonds.\nTom has made a decision.\tTom a pris une décision.\nTom has no common sense.\tTom n'a pas de bon sens.\nTom hid under the table.\tTom s’est caché sous la table.\nTom hid under the table.\tTom s'est caché sous la table.\nTom hid under the table.\tTom se cacha en dessous de la table.\nTom hid under the table.\tTom est caché sous la table.\nTom is a friend of mine.\tTom est un ami à moi.\nTom is a friend of mine.\tTom est un copain à moi.\nTom is a friend of mine.\tTom est l'un de mes amis.\nTom is a little nervous.\tTom est un peu nerveux.\nTom is a very good cook.\tTom est un très bon cuisinier.\nTom is allergic to dust.\tTom est allergique à la poussière.\nTom is allergic to eggs.\tTom est allergique aux œufs.\nTom is already sleeping.\tTom dort déjà.\nTom is already sleeping.\tTom est déjà en train de dormir.\nTom is an active person.\tTom est une personne active.\nTom is biting his nails.\tTom se ronge les ongles.\nTom is boring, isn't he?\tTom est ennuyeux, pas vrai ?\nTom is boring, isn't he?\tTom est ennuyeux, n'est-ce pas?\nTom is boring, isn't he?\tTom est ennuyeux, non ?\nTom is drunk as a skunk.\tTom est saoul comme un Polonais.\nTom is drunk as a skunk.\tTom est ivre mort.\nTom is full of ambition.\tTom est plein d'ambition.\nTom is hiding something.\tTom cache quelque chose.\nTom is hiding somewhere.\tTom se cache quelque part.\nTom is in an angry mood.\tTom est de mauvaise humeur.\nTom is in the ski lodge.\tTom est dans la loge de ski.\nTom is insanely jealous.\tTom est maladivement jaloux.\nTom is insanely jealous.\tTom est fou de jalousie.\nTom is learning to swim.\tTom apprend à nager.\nTom is living in Boston.\tTom habite à Boston.\nTom is living in Boston.\tTom vit à Boston.\nTom is looking for Mary.\tTom cherche Marie.\nTom is lying ill in bed.\tTom est malade et alité.\nTom is not fond of pets.\tTom n'aime pas les animaux de compagnie.\nTom is obviously a jerk.\tTom est clairement un abruti.\nTom is obviously a jerk.\tTom est clairement un imbécile.\nTom is preparing dinner.\tTom prépare le dîner.\nTom is preparing dinner.\tTom est en train de préparer le souper.\nTom is proud of his car.\tTom est fier de sa voiture.\nTom is proud of his son.\tTom est fier de son fils.\nTom is really ambitious.\tTom est très ambitieux.\nTom is really ambitious.\tTom est vraiment ambitieux.\nTom is really motivated.\tTom est vraiment motivé.\nTom is scared of ghosts.\tTom a peur des fantômes.\nTom is strong, isn't he?\tTom est fort, n'est-ce pas ?\nTom is thirty years old.\tTom a trente ans.\nTom is tidying his room.\tTom est en train de ranger sa chambre.\nTom isn't a boy anymore.\tTom n'est plus un garçon.\nTom isn't a good singer.\tTom n'est pas un bon chanteur.\nTom isn't afraid to die.\tTom n'a pas peur de mourir.\nTom isn't going to wait.\tTom ne va pas attendre.\nTom isn't his real name.\tTom n'est pas son vrai prénom.\nTom isn't very athletic.\tTom n'est pas très athlétique.\nTom kept silent all day.\tTom s'est tu toute la journée.\nTom knows Mary is right.\tTom sait que Mary a raison.\nTom knows it's hopeless.\tTom sait que c'est sans espoir.\nTom knows where we live.\tTom sait où nous habitons.\nTom likes the idea, too.\tTom aime l'idée, aussi.\nTom looked at the floor.\tTom regarda le sol.\nTom looked at the floor.\tTom a regardé le sol.\nTom looked really tired.\tTom semblait vraiment fatigué.\nTom looked really tired.\tTom avait l'air vraiment fatigué.\nTom looks happier today.\tTom a l'air plus heureux aujourd'hui.\nTom looks happier today.\tTom semble plus heureux aujourd'hui.\nTom lost a contact lens.\tTom a perdu une lentille de contact.\nTom loves sports events.\tTom adore les évènements sportifs.\nTom makes me feel young.\tTom me fait me sentir jeune.\nTom never makes his bed.\tTom ne fait jamais son lit.\nTom never saw her again.\tTom ne l'a jamais revue.\nTom never talks to Mary.\tTom ne parle jamais à Mary.\nTom never was ambitious.\tTom n'a jamais été ambitieux.\nTom opened the curtains.\tTom a ouvert les rideaux.\nTom poisoned Mary's dog.\tTom a empoisonné le chien de Mary.\nTom pounded on the door.\tTom tambourina à la porte.\nTom pulled out a pencil.\tTom sortit un crayon.\nTom put on his backpack.\tTom a mis son sac à dos.\nTom put on some clothes.\tTom s'habilla.\nTom ran out of the room.\tTom courut hors de la chambre.\nTom ran out of the room.\tTom est sorti de la pièce en courant.\nTom ran to the bathroom.\tTom courut à la salle de bain.\nTom really likes Chopin.\tTom aime beaucoup Chopin.\nTom really sounds upset.\tTom a vraiment l'air contrarié.\nTom regrets what he did.\tTom regrette ce qu'il a fait.\nTom rubbed his forehead.\tTom se frotta le front.\nTom rubbed his forehead.\tTom s'est frotté le front.\nTom said Mary was happy.\tTom a dit que Mary était heureuse.\nTom sat behind his desk.\tTom était assis à son bureau.\nTom sat in the darkness.\tTom s'est assis dans l'obscurité.\nTom says he saw nothing.\tTom dit qu'il n'a rien vu.\nTom sealed the envelope.\tTom ferma l’enveloppe.\nTom seemed disappointed.\tTom avait l'air déçu.\nTom seemed disappointed.\tTom semblait déçu.\nTom seemed fairly happy.\tTom semblait assez heureux.\nTom seemed very excited.\tTom semblait très excité.\nTom seemed very excited.\tTom avait l'air très excité.\nTom seems to be in love.\tTom semble être amoureux.\nTom seems to be in love.\tTom semble être tombé amoureux.\nTom seems to be nervous.\tTom semble être nerveux.\nTom seems to be seasick.\tTom a l'air d'avoir le mal de mer.\nTom seldom eats seafood.\tTom mange rarement des fruits de mer.\nTom signed the contract.\tTom signa le contrat.\nTom sliced the tomatoes.\tTom découpât les tomates.\nTom still lives at home.\tTom vit encore chez ses parents.\nTom still loves his job.\tTom aime encore son travail.\nTom swallowed his pride.\tTom ravala sa fierté.\nTom talked about Boston.\tTom parla de Boston.\nTom talked about Boston.\tTom a parlé de Boston.\nTom taught Mary to read.\tTom a appris à lire à Marie.\nTom taught Mary to read.\tTom a enseigné à lire à Marie.\nTom thinks I'm an idiot.\tTom pense que je suis un idiot.\nTom thinks you're lying.\tTom pense que tu mens.\nTom threw Mary the ball.\tTom jeta la balle à Mary.\nTom told me I was wrong.\tTom m'a dit que j'avais tort.\nTom told me you hit him.\tTom m'a dit que tu l'as frappé.\nTom took a quick shower.\tTom prit rapidement une douche.\nTom took a quick shower.\tTom prit une douche rapide.\nTom tried to stay quiet.\tTom essaya de rester silencieux.\nTom turned on the light.\tTom a allumé la lumière.\nTom unfolded his napkin.\tTom déplia sa serviette.\nTom unfolded his napkin.\tTom déroula sa serviette.\nTom used to play soccer.\tTom jouait au football.\nTom wanted to be famous.\tTom souhaitait être connu.\nTom wanted to call Mary.\tTom voulait appeler Mary.\nTom wanted to help Mary.\tTom voulait aider Mary.\nTom wants to marry Mary.\tTom veut se marier avec Marie.\nTom was a piano teacher.\tTom était professeur de piano.\nTom was bitten by a dog.\tTom a été mordu par un chien.\nTom was caught speeding.\tTom s'est fait attraper pour excès de vitesse.\nTom was dying of thirst.\tTom mourait de soif.\nTom was late for dinner.\tTom était en retard pour le dîner.\nTom was looking for you.\tTom te cherchait.\nTom was right after all.\tTom avait raison après tout.\nTom was scared to death.\tTom était mort de peur.\nTom was shot in the leg.\tTom a été blessé par balle à la jambe.\nTom was shot in the leg.\tTom a reçu une balle dans la jambe.\nTom was sure of himself.\tTom était sûr de lui.\nTom was talking to Mary.\tTom parlait à Mary.\nTom watches too much TV.\tTom regarde trop la télévision.\nTom watches too much TV.\tTom regarde trop la télé.\nTom went home with Mary.\tTom est allé chez lui avec Mary.\nTom went home with Mary.\tTom rentra chez lui avec Mary.\nTom will do a great job.\tTom fera un excellent travail.\nTom wishes he could fly.\tTom aimerait pouvoir voler.\nTom won't be successful.\tTom ne réussira pas.\nTom works at a pizzeria.\tTom travaille dans une pizzeria.\nTom wouldn't understand.\tTom ne voudrait pas comprendre.\nTom wrung out the towel.\tTom essora la serviette.\nTom's father is in jail.\tLe père de Thomas est en prison.\nTom's father is in jail.\tLe père de Thomas se trouve en prison.\nTom's house is very big.\tLa maison de Tom est très grande.\nTom's room wasn't clean.\tLa chambre de Tom n'était pas propre.\nTom, have you eaten yet?\tTom, tu as déjà mangé ?\nTomorrow is another day.\tDemain est un autre jour.\nTomorrow is my birthday.\tDemain, c'est mon anniversaire.\nTomorrow is my birthday.\tDemain est mon anniversaire.\nTonight would be better.\tCe soir serait mieux.\nToss your gun over here.\tJette ton arme par ici.\nTry to control yourself.\tEssayez de vous contrôler.\nTry to control yourself.\tEssaie de te contrôler.\nTry to control yourself.\tEssaye de te contrôler.\nTry to hold it together.\tEssaie de le maintenir !\nTry to hold it together.\tEssayez de le maintenir !\nTurn the flame down low.\tAbaisse la flamme.\nTurn the lights out now.\tÉteins les lumières, maintenant !\nTurn the lights out now.\tÉteignez les lumières, maintenant !\nUse the manual override.\tUtilise la conduite manuelle.\nVacation's already over.\tLes vacances sont déjà finies.\nWait until you see this.\tAttends de voir ça !\nWait until you see this.\tAttendez de voir ça !\nWas anyone else injured?\tQui que ce soit d'autre a-t-il été blessé ?\nWas that you in the car?\tEst-ce que c'était toi dans la voiture ?\nWater expands with heat.\tL'eau se dilate avec la chaleur.\nWe all deserve a chance.\tNous méritons tous une chance.\nWe all deserve a chance.\tNous méritons toutes une chance.\nWe all had a great time.\tNous avons tous passé du bon temps.\nWe all had a great time.\tNous avons toutes passé du bon temps.\nWe all have our secrets.\tNous avons tous nos secrets.\nWe all have our secrets.\tNous avons toutes nos secrets.\nWe all stood up at once.\tNous nous levâmes tous d'un seul homme.\nWe all stood up at once.\tNous nous sommes tous levés d'un seul homme.\nWe all stood up at once.\tNous nous sommes toutes levées en même temps.\nWe all wished for peace.\tNous souhaitions tous la paix.\nWe all wished for peace.\tNous souhaitions toutes la paix.\nWe appreciate your help.\tNous vous sommes reconnaissants pour votre aide.\nWe appreciate your help.\tNous apprécions ton aide.\nWe are a family of five.\tNous sommes cinq dans la famille.\nWe are a family of four.\tNous sommes une famille de quatre.\nWe are free from danger.\tNous sommes hors de danger.\nWe are glad to help you.\tNous sommes heureux de vous aider.\nWe are having breakfast.\tNous prenons notre petit-déjeuner.\nWe are having breakfast.\tNous petit-déjeunons.\nWe are studying Spanish.\tNous étudions l'espagnol.\nWe bought a round table.\tNous fîmes l'acquisition d'une table ronde.\nWe bought a round table.\tNous avons acheté une table ronde.\nWe bought a round table.\tNous avons acquis une table ronde.\nWe bought new furniture.\tNous avons acheté de nouveaux meubles.\nWe can open the windows.\tNous pouvons ouvrir les fenêtres.\nWe can rest after lunch.\tNous pouvons nous reposer après le déjeuner.\nWe can't all be perfect.\tNous ne pouvons pas tous être parfaits.\nWe can't guarantee that.\tNous ne pouvons garantir cela.\nWe can't guarantee that.\tNous ne pouvons pas garantir cela.\nWe could've done better.\tNous aurions pu faire mieux.\nWe could've done better.\tOn aurait pu faire mieux.\nWe depend on each other.\tNous dépendons l'un de l'autre.\nWe depend on each other.\tNous dépendons l'une de l'autre.\nWe depend on each other.\tNous dépendons les uns des autres.\nWe depend on each other.\tNous dépendons les unes des autres.\nWe depend on each other.\tNous sommes interdépendants.\nWe depend on each other.\tNous sommes interdépendantes.\nWe didn't think of that.\tNous n'y avons pas pensé.\nWe didn't think of that.\tNous n'y avons pas songé.\nWe dined at our uncle's.\tNous avons dîné chez notre oncle.\nWe discussed the matter.\tNous avons discuté du sujet.\nWe discussed what to do.\tNous avons discuté de ce que nous devrions faire.\nWe do this all the time.\tNous le faisons tout le temps.\nWe don't even need this.\tNous n'avons même pas besoin de ça.\nWe don't have a problem.\tNous n'avons pas de problème.\nWe don't have any money.\tNous ne disposons d'aucun argent.\nWe don't have any money.\tNous n'avons aucun argent.\nWe don't have any proof.\tNous ne disposons d'aucune preuve.\nWe don't have any proof.\tNous n'avons aucune preuve.\nWe don't have any sheep.\tNous n'avons aucun mouton.\nWe don't have the money.\tNous n'avons pas l'argent.\nWe don't live in Boston.\tNous ne vivons pas à Boston.\nWe don't lock our doors.\tNous ne verrouillons pas nos portes.\nWe drove into the night.\tNous conduisîmes dans la nuit.\nWe elected him chairman.\tNous l'avons élu président.\nWe felt the house shake.\tNous sentîmes la maison trembler.\nWe felt the house shake.\tNous avons senti la maison trembler.\nWe found Tom's umbrella.\tNous avons trouvé le parapluie de Tom.\nWe found Tom's umbrella.\tNous trouvâmes le parapluie de Tom.\nWe gave him up for dead.\tNous le laissâmes pour mort.\nWe gave him up for dead.\tNous l'avons laissé pour mort.\nWe got stuck in traffic.\tNous fûmes coincés dans la circulation.\nWe got stuck in traffic.\tNous fûmes coincées dans la circulation.\nWe got stuck in traffic.\tNous avons été coincés dans la circulation.\nWe got stuck in traffic.\tNous avons été coincées dans la circulation.\nWe had a large audience.\tNous avions un large public.\nWe had a large audience.\tNous disposions d'un large public.\nWe had a large audience.\tNous avions une assistance nombreuse.\nWe had a little problem.\tNous avons eu un petit problème.\nWe had a real good time.\tOn a vraiment passé un bon moment.\nWe had a secret meeting.\tNous eûmes une réunion secrète.\nWe had a secret meeting.\tNous tînmes une réunion secrète.\nWe had a secret meeting.\tNous avons tenu une réunion secrète.\nWe had a secret meeting.\tNous avons eu une réunion secrète.\nWe had a wonderful time.\tNous passâmes un merveilleux moment.\nWe had to react quickly.\tNous dûmes réagir rapidement.\nWe had to react quickly.\tNous avons dû réagir rapidement.\nWe have a holiday today.\tOn a un jour férié aujourd'hui.\nWe have a mutual friend.\tNous avons un ami commun.\nWe have a mutual friend.\tOn a un ami commun.\nWe have all the details.\tNous avons tous les détails.\nWe have come a long way.\tNous avons fait un long voyage.\nWe have come a long way.\tNous nous sommes beaucoup améliorés.\nWe have come a long way.\tNous nous sommes beaucoup améliorées.\nWe have dinner at seven.\tNous dînons à sept heures.\nWe have no alternatives.\tNous n'avons pas d'autre possibilité.\nWe have no other choice.\tNous n'avons pas d'autre choix.\nWe have no other option.\tNous n'avons pas d'autre choix.\nWe have no school today.\tNous n'avons pas cours aujourd'hui.\nWe have no school today.\tNous n'avons pas école aujourd'hui.\nWe have our differences.\tNous avons nos divergences.\nWe have seen three wars.\tNous avons connu trois guerres.\nWe have snow in January.\tChez nous, il neige en janvier.\nWe have three days left.\tIl nous reste trois jours.\nWe have to wait for him.\tNous devons l'attendre.\nWe haven't even started.\tNous n'avons même pas commencé.\nWe heard the door close.\tNous avons entendu la porte se fermer.\nWe improved the quality.\tNous avons amélioré la qualité.\nWe know how to find Tom.\tNous savons comment trouver Tom.\nWe left four days later.\tNous sommes partis quatre jours plus tard.\nWe left the movie early.\tNous quittâmes tôt la projection.\nWe live in an apartment.\tNous vivons en appartement.\nWe live near the border.\tNous vivons près de la frontière.\nWe looked at each other.\tNous nous regardâmes.\nWe looked at each other.\tNous nous sommes regardés.\nWe looked at each other.\tNous nous sommes regardées.\nWe lost, but we had fun.\tNous avons perdu mais nous nous sommes amusés.\nWe lost, but we had fun.\tNous avons perdu mais nous nous sommes amusées.\nWe made it out of there.\tNous réussîmes à nous extirper de là.\nWe made it out of there.\tNous avons réussi à nous extirper de là.\nWe may not win tomorrow.\tIl se peut que nous ne gagnions pas, demain.\nWe may not win tomorrow.\tIl se peut que nous ne l'emportions pas, demain.\nWe might find something.\tNous pourrions trouver quelque chose.\nWe must always be ready.\tNous devons toujours être prêts.\nWe must always be ready.\tNous devons toujours être prêtes.\nWe need some more water.\tIl nous faut davantage d'eau.\nWe need some volunteers.\tNous avons besoin de volontaires.\nWe need to call someone.\tIl faut que nous appelions quelqu'un.\nWe need to call someone.\tIl nous faut appeler quelqu'un.\nWe need your assistance.\tNous avons besoin de votre aide.\nWe need your assistance.\tNous avons besoin de ton aide.\nWe never got the chance.\tNous n'avons pas eu la moindre chance.\nWe never work on Sunday.\tNous ne travaillons jamais le dimanche.\nWe put sugar in our tea.\tNous mettons du sucre dans notre thé.\nWe sat in total silence.\tNous nous assîmes dans un silence complet.\nWe saw Tom on the beach.\tNous avons Tom sur la plage.\nWe should be on our way.\tNous devrions être partis.\nWe should do that again.\tNous devrions le refaire.\nWe should do this again.\tNous devrions le refaire.\nWe should hang out more.\tNous devrions davantage sortir ensemble.\nWe should hang out more.\tOn devrait plus traîner ensemble.\nWe should wait a little.\tNous devrions attendre un peu.\nWe skied down the slope.\tNous avons dévalé la pente à ski.\nWe still can’t see it.\tNous ne pouvons pas encore le voir.\nWe still need your help.\tNous avons encore besoin de votre aide.\nWe still need your help.\tNous avons encore besoin de ton aide.\nWe talked quite frankly.\tNous avons discuté tout à fait franchement.\nWe used to live in Kobe.\tOn a habité Kobe.\nWe used to live in Kobe.\tNous habitions Kobé.\nWe wasted a lot of time.\tNous gâchâmes beaucoup de temps.\nWe went as far as Kyoto.\tNous sommes allés jusqu'à Kyoto.\nWe were always together.\tNous étions toujours ensemble.\nWe were always together.\tNous fûmes toujours ensemble.\nWe were always together.\tNous avons toujours été ensemble.\nWe were fully satisfied.\tNous avons été pleinement satisfaits.\nWe were looking for Tom.\tNous cherchions Tom.\nWe will be back tonight.\tNous reviendrons au soir.\nWe will visit them soon.\tNous leur rendrons bientôt visite.\nWe won't have much time.\tNous n'aurons pas beaucoup de temps.\nWe'd appreciate a reply.\tNous apprécierions une réponse.\nWe'd better go help Tom.\tNous ferions mieux d'aller aider Tom.\nWe'd better go home now.\tNous ferions mieux de rentrer chez nous, maintenant.\nWe'll all work together.\tNous travaillerons ensemble.\nWe'll always be friends.\tNous serons toujours amis.\nWe'll be late for class.\tNous serons en retard au cours.\nWe'll do more than that.\tNous ferons plus que cela.\nWe'll have loads of fun.\tOn va bien se marrer.\nWe'll have loads of fun.\tNous allons bien nous marrer.\nWe'll talk in my office.\tNous parlerons dans mon bureau.\nWe'll try one more time.\tNous essayerons encore une fois.\nWe're being blackmailed.\tOn nous fait chanter.\nWe're closed on Mondays.\tNous sommes fermés le lundi.\nWe're here to help them.\tNous sommes ici pour les aider.\nWe're kind of busy here.\tNous sommes plutôt occupés, ici.\nWe're kind of busy here.\tNous sommes plutôt occupées, ici.\nWe're not convinced yet.\tNous n'en sommes pas encore convaincus.\nWe're not convinced yet.\tNous n'en sommes pas encore convaincues.\nWe're not desperate yet.\tNous ne sommes pas encore désespérés.\nWe're not desperate yet.\tNous ne sommes pas encore désespérées.\nWe're not entirely sure.\tNous n'en sommes pas entièrement sûrs.\nWe're not entirely sure.\tNous n'en sommes pas entièrement sûres.\nWe're not going, are we?\tNous n'y allons pas, si ?\nWe're not gonna make it.\tÇa va pas le faire.\nWe're not gonna make it.\tNous n'allons pas y arriver.\nWe're not gonna make it.\tNous n'allons pas y parvenir.\nWe're on speaking terms.\tNous nous parlons.\nWe're out of ammunition.\tNous sommes à court de munitions.\nWe're out of luck again.\tNous n'avons pas de chance une fois de plus.\nWe're smarter than that.\tNous sommes plus malins que ça.\nWe've all been laid off.\tNous avons tous été licenciés.\nWe've all read that one.\tNous avons tous lu celui-là.\nWe've all read that one.\tNous avons tous lu celle-là.\nWe've been disqualified.\tNous avons été disqualifiés.\nWe've been there before.\tNous y avons été auparavant.\nWe've said our goodbyes.\tNous nous sommes dit au revoir.\nWe've talked about that.\tNous en avons parlé.\nWell begun is half done.\tCommencer, c'est avoir à moitié fini.\nWell, let's talk turkey.\tBon, parlons franchement !\nWere the windows closed?\tLes fenêtres étaient-elles fermées ?\nWere there any problems?\tY avait-il le moindre problème ?\nWere there any problems?\tY a-t-il eu le moindre problème ?\nWere you at the concert?\tÉtais-tu au concert ?\nWere you busy yesterday?\tEst-ce que tu étais occupé hier ?\nWere you busy yesterday?\tÉtiez-vous occupé hier ?\nWere you here all night?\tÉtais-tu ici toute la nuit ?\nWere you here all night?\tÉtiez-vous ici toute la nuit ?\nWere you looking at him?\tLe regardais-tu ?\nWere you looking at him?\tLe regardiez-vous ?\nWere you out last night?\tEs-tu sorti hier soir ?\nWhat I need is a friend.\tCe dont j'ai besoin, c'est d'un ami.\nWhat I need is a friend.\tCe qu'il me faut, c'est un ami.\nWhat I wanted was water.\tCe que je voulais, c'était de l'eau.\nWhat Tom said was a lie.\tCe que Tom a dit n'était que mensonges.\nWhat a beautiful garden!\tQuel beau jardin.\nWhat a beautiful sunset!\tQuel beau coucher de soleil !\nWhat a beautiful sunset.\tQuel magnifique coucher de soleil.\nWhat a beautiful sunset.\tQuel beau coucher de soleil.\nWhat a cute little girl!\tQuelle jolie petite fille !\nWhat a lovely day it is!\tQuelle belle journée !\nWhat am I going to wear?\tQue vais-je porter ?\nWhat are the conditions?\tQuelles sont les conditions ?\nWhat are we going to do?\tQu'allons-nous faire ?\nWhat are we waiting for?\tQu'attendons-nous ?\nWhat are we waiting for?\tQu'est-ce que nous sommes en train d'attendre?\nWhat are you crying for?\tPourquoi pleures-tu ?\nWhat are you crying for?\tPourquoi pleurez-vous ?\nWhat are you doing here?\tQu’est ce que tu fais là ?\nWhat are you doing here?\tQue fais-tu ici ?\nWhat are you doing, Dad?\tQue fais-tu, papa ?\nWhat are you guys up to?\tQu'avez-vous en tête, les mecs ?\nWhat are you hinting at?\tÀ quoi fais-tu allusion ?\nWhat are you hinting at?\tÀ quoi faites-vous allusion ?\nWhat are you looking at?\tQue regardes-tu ?\nWhat are you looking at?\tQu'est-ce que tu regardes ?\nWhat are you smiling at?\tÀ quoi souris-tu ?\nWhat are you staring at?\tQu'est-ce que tu regardes ?\nWhat are you staring at?\tQue regardes-tu ?\nWhat are you staring at?\tQue regardez-vous ?\nWhat are you suggesting?\tÀ quoi fais-tu allusion ?\nWhat are you suggesting?\tÀ quoi faites-vous allusion ?\nWhat are you working on?\tSur quoi travaillez-vous ?\nWhat are you working on?\tSur quoi travailles-tu ?\nWhat are you working on?\tÀ quoi travaillez-vous ?\nWhat are you working on?\tÀ quoi travailles-tu ?\nWhat choices do we have?\tQuelles options avons-nous ?\nWhat choices do we have?\tDe quelles options disposons-nous ?\nWhat color is your hair?\tDe quelle couleur sont tes cheveux ?\nWhat color is your hair?\tDe quelle couleur sont ses cheveux ?\nWhat did I leave behind?\tQu'ai-je laissé derrière moi ?\nWhat did the doctor say?\tQu'a dit le médecin ?\nWhat did you buy it for?\tDans quel but l'as-tu acheté ?\nWhat did you buy it for?\tDans quel but l'avez-vous acheté ?\nWhat did you buy it for?\tÀ quel effet en avez-vous fait l'acquisition ?\nWhat did you do exactly?\tQu'as-tu fait, exactement ?\nWhat did you do exactly?\tQu'avez-vous fait, exactement ?\nWhat did you talk about?\tDe quoi parlais-tu ?\nWhat did you talk about?\tDe quoi parliez-vous ?\nWhat do I get in return?\tQu'est-ce que j'obtiens en échange ?\nWhat do I get out of it?\tQu'est-ce que j'en retire ?\nWhat do we have to lose?\tQu'avons-nous à perdre ?\nWhat do you believe now?\tQue croyez-vous à présent ?\nWhat do you do in Japan?\tQue faites-vous au Japon ?\nWhat do you like to eat?\tQu'aimes-tu manger ?\nWhat do you really mean?\tQue voulez-vous vraiment dire ?\nWhat do you really mean?\tQue veux-tu vraiment dire ?\nWhat do you regret most?\tQu'est-ce que tu regrettes le plus ?\nWhat do you regret most?\tQu'est-ce que vous regrettez le plus ?\nWhat do you think I did?\tQue pensez-vous que j'aie fait ?\nWhat do you think I did?\tQue penses-tu que j'aie fait ?\nWhat do you think of it?\tQu'en penses-tu ?\nWhat do you want it for?\tPourquoi le veux-tu ?\nWhat do you want it for?\tPourquoi le voulez-vous ?\nWhat do you want to eat?\tQue voulez-vous manger ?\nWhat do you want to say?\tQue veux-tu dire ?\nWhat does PTA stand for?\tQue signifie \"PTA\" ?\nWhat does USB stand for?\tQu'est-ce qu'USB veut dire ?\nWhat does USB stand for?\tQu'est-ce qu'USB signifie ?\nWhat does he see in her?\tQue lui trouve-t-il ?\nWhat does that sign say?\tQue dit ce panneau ?\nWhat else does Tom need?\tDe quoi d'autre Tom a-t-il besoin ?\nWhat exactly did you do?\tQu'as-tu fait, exactement ?\nWhat gate do I board at?\tÀ quelle porte dois-je embarquer ?\nWhat happened to my car?\tQu'est-il arrivé à ma voiture ?\nWhat happened to my car?\tQu'est-il arrivé à ma bagnole ?\nWhat happens if we fail?\tQue se passera-t-il si on échoue ?\nWhat has he done to you?\tQue vous a-t-il fait ?\nWhat has he done to you?\tQue t'a-t-il fait ?\nWhat if someone sees it?\tEt si quelqu'un le voit ?\nWhat if someone sees us?\tEt si quelqu'un nous voit ?\nWhat is aspirin made of?\tDe quoi se compose l'aspirine ?\nWhat is it really about?\tDe quoi s'agit-il, en fait ?\nWhat is the latest news?\tQuelles sont les dernières nouvelles ?\nWhat is the temperature?\tQuelle est la température ?\nWhat is your blood type?\tQuel est votre groupe sanguin ?\nWhat is your blood type?\tQuel est votre groupe sanguin ?\nWhat is your first name?\tQuel est votre prénom ?\nWhat kind of man was he?\tQuel genre d'homme était-il ?\nWhat made you come here?\tQu'est-ce qui t'a amené ici ?\nWhat makes you think so?\tQu'est-ce qui te fait croire ça ?\nWhat nationality is Tom?\tQuelle est la nationalité de Tom ?\nWhat shall I do with it?\tQu'est-ce que je dois faire avec ça ?\nWhat sort of play is it?\tQuel sorte de jeu est-ce ?\nWhat sports do you like?\tQuels sports aimez-vous ?\nWhat sports do you like?\tQuels sports aimes-tu ?\nWhat teams were playing?\tQuelles équipent jouaient-elles ?\nWhat time do you get up?\tÀ quelle heure te lèves-tu ?\nWhat time does it close?\tÀ quelle heure ça ferme ?\nWhat time does it start?\tÀ quelle heure ça commence ?\nWhat was Tom's reaction?\tQuelle a été la réaction de Tom ?\nWhat was all this about?\tÀ quoi rimait tout ça ?\nWhat was he doing there?\tQu'était-il en train d'y faire ?\nWhat was he doing there?\tQu'y faisait-il ?\nWhat was he doing there?\tQue faisait-il là ?\nWhat was the boy called?\tComment le garçon s'appelait-il ?\nWhat was this all about?\tÀ quoi rimait tout ça ?\nWhat we want is freedom.\tCe que nous voulons, c'est la liberté.\nWhat were you expecting?\tÀ quoi t'attendais-tu ?\nWhat were you two doing?\tQue faisiez-vous tous les deux ?\nWhat were you two doing?\tQue faisiez-vous toutes les deux ?\nWhat were you two doing?\tQue faisiez-vous, vous deux ?\nWhat will happen to her?\tQu'adviendra-t-il d'elle ?\nWhat will happen to her?\tQue lui arrivera-t-il ?\nWhat year were you born?\tEn quelle année es-tu né ?\nWhat year were you born?\tEn quelle année êtes-vous né ?\nWhat year were you born?\tEn quelle année êtes-vous nés ?\nWhat year were you born?\tEn quelle année es-tu née ?\nWhat year were you born?\tEn quelle année êtes-vous née ?\nWhat year were you born?\tEn quelle année êtes-vous nées ?\nWhat year were you born?\tEn quelle année es-tu né ?\nWhat year were you born?\tEn quelle année es-tu née ?\nWhat year were you born?\tEn quelle année êtes-vous né ?\nWhat year were you born?\tEn quelle année êtes-vous née ?\nWhat year were you born?\tEn quelle année êtes-vous nés ?\nWhat year were you born?\tEn quelle année êtes-vous nées ?\nWhat're you doing today?\tQue fais-tu aujourd'hui ?\nWhat're you doing today?\tQue faites-vous aujourd'hui ?\nWhat're you looking for?\tQue cherches-tu ?\nWhat're you looking for?\tQue cherchez-vous ?\nWhat's going on in here?\tQue se passe-t-il là-dedans ?\nWhat's going on tonight?\tQu'avez vous prévu ce soir ?\nWhat's he talking about?\tDe quoi il parle ?\nWhat's that bird called?\tComment s'appelle cet oiseau ?\nWhat's the weather like?\tQuel temps fait-il ?\nWhat's the weather like?\tComment est le temps ?\nWhat's the weather like?\tQuel temps fait-il ?\nWhat's with the luggage?\tQu'est-ce qui cloche avec les bagages ?\nWhat's your maiden name?\tQuel est ton nom de jeune fille ?\nWhen are you going home?\tÀ quelle heure est-ce que tu vas chez toi ?\nWhen did all this start?\tQuand tout ceci a-t-il commencé ?\nWhen did you go to work?\tQuand êtes-vous allé au travail ?\nWhen did you go to work?\tQuand êtes-vous allée au travail ?\nWhen did you go to work?\tQuand êtes-vous allés au travail ?\nWhen did you go to work?\tQuand êtes-vous allées au travail ?\nWhen did you go to work?\tQuand es-tu allé au travail ?\nWhen did you go to work?\tQuand es-tu allée au travail ?\nWhen do you play tennis?\tQuand jouez-vous au tennis ?\nWhen do you want to eat?\tQuand veux-tu manger ?\nWhen do you want to eat?\tQuand voulez-vous manger ?\nWhen should we tell Tom?\tQuand devrions-nous le dire à Tom ?\nWhen will you come back?\tTu rentres quand ?\nWhen will you come home?\tQuand viendras-tu à la maison ?\nWhere are my cigarettes?\tOù sont mes cigarettes ?\nWhere are our umbrellas?\tOù sont nos parapluies ?\nWhere are the lifeboats?\tOù sont les canots de sauvetage ?\nWhere are the paintings?\tOù sont les tableaux ?\nWhere are the prisoners?\tOù sont les prisonniers ?\nWhere are they going to?\tOù vont-ils ?\nWhere are they swimming?\tOù nagent-ils ?\nWhere are we going next?\tOù irons-nous après ?\nWhere are we going next?\tOù allons-nous après ?\nWhere are you all going?\tOù allez-vous tous ?\nWhere are you all going?\tOù allez-vous toutes ?\nWhere are your car keys?\tOù sont tes clés de voiture ?\nWhere are your car keys?\tOù sont vos clés de voiture ?\nWhere are your children?\tOù sont vos enfants ?\nWhere are your children?\tOù sont tes enfants ?\nWhere can I buy tickets?\tOù puis-je acheter des tickets ?\nWhere can I park my car?\tOù puis-je garer ma voiture ?\nWhere can I try this on?\tOù puis-je essayer cela ?\nWhere can one buy books?\tOù peut-on acheter des livres ?\nWhere can one buy books?\tOù peut-on acquérir des livres ?\nWhere can the kids play?\tOù est-ce que les enfants peuvent jouer ?\nWhere did I park my car?\tOù ai-je garé ma voiture ?\nWhere did I put my coat?\tOù ai-je mis mon manteau ?\nWhere did I put my coat?\tOù ai-je posé mon manteau ?\nWhere did I put my keys?\tOù ai-je mis mes clés ?\nWhere did I put my keys?\tOù ai-je mis mes clefs ?\nWhere did he learn this?\tOù a-t-il appris ça ?\nWhere did she buy books?\tOù a-t-elle acheté des livres ?\nWhere did you find this?\tOù as-tu trouvé ceci ?\nWhere did you find this?\tOù avez-vous trouvé ceci ?\nWhere did you guys meet?\tOù vous êtes-vous rencontrés, les mecs ?\nWhere did you hear that?\tOù as-tu entendu ça ?\nWhere did you hear that?\tOù as-tu entendu cela ?\nWhere did you hear that?\tOù avez-vous entendu ça ?\nWhere did you hear that?\tOù avez-vous entendu cela ?\nWhere do they come from?\tD'où est-ce qu'ils arrivent ?\nWhere do they come from?\tD'où viennent-ils ?\nWhere do they come from?\tD'où viennent-elles ?\nWhere do you want to go?\tOù veux-tu aller ?\nWhere do you want to go?\tOù voulez-vous aller ?\nWhere does he come from?\tD'où vient-il ?\nWhere does she live now?\tOù réside-t-elle maintenant ?\nWhere does this desk go?\tOù va ce bureau ?\nWhere else should we go?\tOù d'autre devrions-nous nous rendre ?\nWhere is he running now?\tOù court-il maintenant ?\nWhere is the difference?\tOù est la différence ?\nWhere is the toothpaste?\tOù est le dentifrice ?\nWhere was your daughter?\tOù se trouvait votre fille ?\nWhere was your daughter?\tOù se trouvait ta fille ?\nWhere's the book I need?\tOù se trouve le livre dont j'ai besoin ?\nWhere's your father now?\tOù ton père se trouve-t-il, désormais ?\nWhich are the best ones?\tQuels sont les meilleurs ?\nWhich is it going to be?\tLaquelle cela va-t-il être ?\nWhich is it going to be?\tLequel cela va-t-il être ?\nWhich platform is it on?\tÀ quel quai se trouve-t-il ?\nWhich shoes do you like?\tQuelles chaussures aimez-vous ?\nWhich shoes do you like?\tQuelles chaussures aimes-tu ?\nWhich skirt do you like?\tQuelle jupe aimes-tu ?\nWhich team won the game?\tQuelle équipe l'a emporté ?\nWhich way are you going?\tDe quel côté vas-tu ?\nWhich way are you going?\tPar quel chemin t'en vas-tu ?\nWho among us is perfect?\tQui d'entre nous est parfait ?\nWho are you laughing at?\tDe qui te moques-tu ?\nWho are you waiting for?\tQui attendez-vous ?\nWho are you waiting for?\tQui attends-tu ?\nWho are you waiting for?\tQui servez-vous ?\nWho are you waiting for?\tQui sers-tu ?\nWho ate all the cookies?\tQui a mangé tous les biscuits ?\nWho ate the last cookie?\tQui a mangé le dernier biscuit ?\nWho caused the accident?\tQui causa l'accident ?\nWho caused the accident?\tQui a causé l'accident ?\nWho did you think I was?\tQui croyiez-vous que j'étais ?\nWho did you think I was?\tQui croyais-tu que j'étais ?\nWho does this belong to?\tÀ qui est-ce ?\nWho else knows I'm here?\tQui d'autre sait que je suis ici ?\nWho is that pretty girl?\tQui est cette jolie fille ?\nWho is this letter from?\tDe qui est cette lettre ?\nWho moved the furniture?\tQui a déplacé les meubles ?\nWho taught you to write?\tQui t'as appris à écrire ?\nWho taught you to write?\tQui vous a enseigné à écrire ?\nWho told you to do that?\tQui t'a dit de faire ça ?\nWho wants hot chocolate?\tQui veut du chocolat chaud ?\nWho wants to go hunting?\tQui veut aller chasser ?\nWho were you talking to?\tÀ qui étais-tu en train de parler ?\nWho were you talking to?\tÀ qui étiez-vous en train de parler ?\nWho's coming for dinner?\tQui vient dîner ?\nWho's coming for dinner?\tQui vient déjeuner ?\nWho's that cute redhead?\tQui est cette mignonne rouquine ?\nWho's your date tonight?\tQui est ton rancard ce soir ?\nWhose glasses are these?\tÀ qui sont ces lunettes ?\nWhose glasses are these?\tÀ qui sont ces lunettes ?\nWhy are they doing this?\tPourquoi font-ils cela ?\nWhy are they doing this?\tPourquoi font-elles cela ?\nWhy are you all so busy?\tPourquoi êtes-vous tous si occupés ?\nWhy are you all so busy?\tPourquoi êtes-vous toutes si occupées ?\nWhy are you asking this?\tPourquoi tu demandes ça ?\nWhy are you asking this?\tPourquoi demandez-vous ça ?\nWhy are you being weird?\tPourquoi êtes-vous bizarre ?\nWhy are you being weird?\tPourquoi es-tu bizarre ?\nWhy are you calling Tom?\tPourquoi appelles-tu Tom ?\nWhy are you calling Tom?\tPourquoi appelez-vous Tom ?\nWhy are you ignoring me?\tPourquoi m'ignores-tu ?\nWhy are you so arrogant?\tPourquoi es-tu si arrogant ?\nWhy are you so arrogant?\tPourquoi êtes-vous si arrogant ?\nWhy are you so cheerful?\tPourquoi es-tu si joyeux ?\nWhy are you so insecure?\tPourquoi es-tu si anxieux ?\nWhy are you so insecure?\tPourquoi êtes-vous si anxieux ?\nWhy are you so insecure?\tPourquoi es-tu si anxieuse ?\nWhy are you so insecure?\tPourquoi êtes-vous si anxieuse ?\nWhy are you so insecure?\tPourquoi te sens-tu si peu sûr de toi ?\nWhy are you so insecure?\tPourquoi te sens-tu si peu sûre de toi ?\nWhy are you so insecure?\tPourquoi vous sentez-vous si peu sûr de vous ?\nWhy are you so insecure?\tPourquoi vous sentez-vous si peu sûre de vous ?\nWhy are you so insecure?\tPourquoi vous sentez-vous si peu sûrs de vous ?\nWhy are you so insecure?\tPourquoi vous sentez-vous si peu sûres de vous ?\nWhy are you visiting us?\tPourquoi nous rendez-vous visite ?\nWhy did I not know this?\tPourquoi l'ignorais-je ?\nWhy did he quit his job?\tPourquoi a-t-il quitté son poste ?\nWhy did he stop smoking?\tPourquoi a-t-il cessé de fumer ?\nWhy did it take so long?\tPourquoi cela a-t-il pris tant de temps ?\nWhy did you buy flowers?\tPourquoi as-tu acheté des fleurs ?\nWhy did you buy flowers?\tPourquoi avez-vous acheté des fleurs ?\nWhy did you do all this?\tPourquoi as-tu fait tout ceci ?\nWhy did you do all this?\tPourquoi avez-vous fait tout ceci ?\nWhy did you go to Tokyo?\tPourquoi es-tu allé à Tokyo ?\nWhy did you go to Tokyo?\tPourquoi t'es-tu rendu à Tokyo ?\nWhy didn't she help you?\tPourquoi ne t'a-t-elle pas aidé ?\nWhy didn't she help you?\tPourquoi ne t'a-t-elle pas aidée ?\nWhy didn't you stop Tom?\tPourquoi n'as-tu pas stoppé Tom ?\nWhy didn't you stop Tom?\tPourquoi n'avez-vous pas arrêté Tom ?\nWhy do you care so much?\tPourquoi t'en soucies-tu autant ?\nWhy do you care so much?\tPourquoi vous en souciez-vous autant ?\nWhy do you study French?\tPourquoi étudies-tu le français ?\nWhy do you want to know?\tPourquoi voulez-vous savoir ?\nWhy do you wear a watch?\tPourquoi portes-tu une montre ?\nWhy does he look grumpy?\tPourquoi a-t-il l'air grincheux ?\nWhy don't men hibernate?\tPourquoi les hommes n'hibernent-ils pas ?\nWhy don't we just leave?\tPourquoi ne partons-nous pas simplement ?\nWhy don't you ever cook?\tPourquoi ne cuisines-tu jamais ?\nWhy don't you ever cook?\tPourquoi ne cuisinez-vous jamais ?\nWhy don't you get a job?\tPourquoi ne prends-tu pas un emploi ?\nWhy don't you get a job?\tPourquoi ne prenez-vous pas un emploi ?\nWhy don't you let us go?\tPourquoi ne nous laissez-vous pas partir ?\nWhy don't you let us go?\tPourquoi ne nous laisses-tu pas partir ?\nWhy don't you loosen up?\tPourquoi ne vous laissez-vous pas aller ?\nWhy don't you loosen up?\tPourquoi ne te laisses-tu pas aller ?\nWhy don't you pull over?\tPourquoi ne pas vous ranger ?\nWhy don't you pull over?\tPourquoi ne pas te ranger ?\nWhy don't you pull over?\tPourquoi ne te ranges-tu pas ?\nWhy don't you pull over?\tPourquoi ne vous rangez-vous pas ?\nWhy don't you run along?\tPourquoi ne partez-vous pas ?\nWhy don't you run along?\tPourquoi ne pars-tu pas ?\nWhy don't you stay here?\tPourquoi ne restez-vous pas ici ?\nWhy don't you stay here?\tPourquoi ne restes-tu pas ici ?\nWhy don't you take over?\tPourquoi ne prenez-vous pas le contrôle ?\nWhy don't you take over?\tPourquoi ne prends-tu pas le contrôle ?\nWhy is he looking at me?\tPourquoi est-il en train de me regarder ?\nWhy is he staring at me?\tPourquoi me fixe-t-il ?\nWhy is that of interest?\tPourquoi est-ce que ça a un intérêt ?\nWhy leave the door open?\tPourquoi laisser la porte ouverte ?\nWhy not spend the night?\tPourquoi ne pas passer la nuit ?\nWhy would I tell anyone?\tPourquoi le dirais-je à qui que ce soit ?\nWhy would I tell anyone?\tPourquoi le dirais-je à quiconque ?\nWhy's it so hot in here?\tPourquoi fait-il si chaud ici ?\nWill he ever forgive me?\tMe pardonnera-t-il jamais ?\nWill he succeed or fail?\tY parviendra-t-il ou échouera-t-il ?\nWill he succeed or fail?\tCourt-il au succès ou à l'échec ?\nWill it be hot tomorrow?\tFera-t-il chaud, demain ?\nWill you be much longer?\tÇa va te prendre encore longtemps ?\nWill you light the fire?\tVeux-tu allumer le feu ?\nWill you light the fire?\tVoulez-vous allumer le feu ?\nWill you please help me?\tM'aiderez-vous, je vous prie ?\nWill you please help me?\tM'aideras-tu, je te prie ?\nWill you turn on the TV?\tPeux-tu me faire le plaisir d'allumer la télé ?\nWires carry electricity.\tLes câbles conduisent l'électricité.\nWon't you have some tea?\tNe voulez-vous pas du thé ?\nWon't you have some tea?\tNe veux-tu pas de thé ?\nWon't you have some tea?\tNe veux-tu pas du thé ?\nWon't you have some tea?\tNe voulez-vous pas de thé ?\nWords can't describe it.\tLes mots ne peuvent le décrire.\nWork is behind schedule.\tLe travail est en retard sur le calendrier.\nWould Tom agree to this?\tTom accepterait-il ceci ?\nWould that be all right?\tSerait-ce acceptable ?\nWould you do it with me?\tLe feriez-vous avec moi ?\nWould you do it with me?\tLe ferais-tu avec moi ?\nWould you do me a favor?\tMe rendriez-vous un service ?\nWould you do me a favor?\tMe rendrais-tu un service ?\nWould you draw me a map?\tPourriez-vous me dessiner un plan ?\nWould you like some tea?\tPréférerais-tu du thé ?\nWould you like to dance?\tVoudriez-vous danser ?\nWould you like to dance?\tVoudrais-tu danser ?\nWould you wait a second?\tAttendras-tu un peu ?\nWrite to him right away.\tÉcris-lui tout de suite.\nWrite your address here.\tInscris ici ton adresse.\nWrite your address here.\tInscrivez ici votre adresse.\nYou are a good customer.\tVous êtes un bon client.\nYou are blinded by love.\tTu es aveuglée par l'amour.\nYou are blinded by love.\tVous êtes aveuglée par l'amour.\nYou are blinded by love.\tTu es aveuglé par l'amour.\nYou are blinded by love.\tVous êtes aveuglées par l'amour.\nYou are blinded by love.\tVous êtes aveuglés par l'amour.\nYou are blinded by love.\tVous êtes aveuglé par l'amour.\nYou are free to go home.\tTu es libre de rentrer.\nYou are in a safe place.\tVous êtes en lieu sûr.\nYou are only young once.\tOn n'est jeune qu'une fois.\nYou are really annoying.\tTu es vraiment embêtante.\nYou are to come with me.\tVous devez venir avec moi.\nYou are to come with me.\tTu dois venir avec moi.\nYou are very courageous.\tVous êtes très courageux.\nYou are very dear to me.\tTu es mon obsession.\nYou can always text Tom.\tTu peux toujours envoyer un message à Tom.\nYou can always text Tom.\tVous pouvez toujours envoyer un message à Tom.\nYou can get dressed now.\tTu peux t'habiller, maintenant.\nYou can get dressed now.\tVous pouvez vous habiller, maintenant.\nYou can swim, can't you?\tTu sais nager, n'est-ce pas ?\nYou can swim, can't you?\tVous savez nager, n’est-ce pas ?\nYou can type, can't you?\tTu sais taper, non ?\nYou can't both be right.\tVous ne pouvez pas avoir tous les deux raison.\nYou can't both be right.\tVous ne pouvez pas avoir toutes les deux raison.\nYou can't come tomorrow.\tTu ne peux pas venir demain.\nYou can't come tomorrow.\tVous ne pouvez pas venir demain.\nYou can't do this alone.\tTu ne peux pas faire ça tout seul.\nYou can't do this alone.\tVous ne pouvez pas faire ça tout seul.\nYou can't do this to me.\tTu ne peux pas me faire ça.\nYou can't do this to me.\tVous ne pouvez pas me faire ça.\nYou can't do this to us.\tVous ne pouvez pas nous faire ça.\nYou can't do this to us.\tTu ne peux pas nous faire ça.\nYou can't get rid of it.\tVous ne pouvez pas vous en débarrasser.\nYou can't get rid of it.\tTu ne peux pas t'en débarrasser.\nYou can't get rid of me.\tVous ne pouvez pas vous débarrasser de moi.\nYou can't get rid of me.\tTu ne peux pas te débarrasser de moi.\nYou can't give Tom that.\tTu ne peux pas donner ça à Tom.\nYou can't give Tom that.\tVous ne pouvez pas donner cela à Tom.\nYou can't help yourself.\tTu ne peux pas t'en empêcher.\nYou can't help yourself.\tVous ne pouvez pas vous en empêcher.\nYou can't help yourself.\tC'est plus fort que toi.\nYou can't help yourself.\tC'est plus fort que vous.\nYou can't intimidate us.\tVous ne pouvez pas nous intimider.\nYou can't intimidate us.\tTu ne peux pas nous intimider.\nYou can't prove a thing.\tVous ne pouvez rien prouver.\nYou can't prove a thing.\tTu ne peux rien prouver.\nYou can't prove a thing.\tTu ne parviens à rien prouver.\nYou can't prove a thing.\tVous ne parvenez à rien prouver.\nYou can't smoke in here.\tOn ne peut pas fumer ici.\nYou can't smoke in here.\tVous ne pouvez pas fumer ici.\nYou can't stop progress.\tOn ne peut pas arrêter le progrès.\nYou caught me off-guard.\tTu m'as pris au dépourvu.\nYou caught me off-guard.\tVous m'avez pris au dépourvu.\nYou caught me off-guard.\tTu m'as prise au dépourvu.\nYou caught me off-guard.\tVous m'avez prise au dépourvu.\nYou could well be right.\tTu pourrais bien avoir raison.\nYou could well be right.\tVous pourriez bien avoir raison.\nYou did the right thing.\tVous avez fait ce qu'il fallait.\nYou did the right thing.\tTu as fait ce qu'il fallait.\nYou didn't get very far.\tTu n'es pas allé très loin.\nYou didn't get very far.\tTu n'es pas allée très loin.\nYou didn't get very far.\tVous n'êtes pas allé très loin.\nYou didn't get very far.\tVous n'êtes pas allés très loin.\nYou didn't get very far.\tVous n'êtes pas allée très loin.\nYou didn't get very far.\tVous n'êtes pas allées très loin.\nYou didn't miss a thing.\tVous n'avez rien manqué.\nYou didn't miss a thing.\tTu n'as rien manqué.\nYou didn't need to come.\tTu n'avais pas besoin de venir.\nYou didn't need to come.\tVous n'aviez pas besoin de venir.\nYou didn't scare me off.\tVous ne m'avez pas fait fuir.\nYou didn't scare me off.\tTu ne m'as pas fait fuir.\nYou don't care about me.\tTu ne me prêtes pas attention.\nYou don't care about me.\tVous ne me prêtez pas attention.\nYou don't even know how.\tVous ne savez même pas comment.\nYou don't even know how.\tVous ne savez même pas de quelle manière.\nYou don't even know how.\tTu ne sais même pas comment.\nYou don't even know how.\tTu ne sais même pas de quelle manière.\nYou don't have a choice.\tVous n'avez pas le choix.\nYou don't have a choice.\tTu n'as pas le choix.\nYou don't have the guts.\tVous n'en avez pas l'audace.\nYou don't have the guts.\tTu n'as pas les tripes.\nYou don't have the guts.\tTu n'en as pas les tripes.\nYou don't have the guts.\tVous n'avez pas les tripes.\nYou don't have the time.\tTu n'as pas le temps.\nYou don't have the time.\tVous n'avez pas le temps.\nYou don't have the time.\tTu ne disposes pas du temps.\nYou don't have the time.\tVous ne disposez pas du temps.\nYou don't have to hurry.\tTu n'as pas besoin de te dépêcher.\nYou don't have to hurry.\tTu n'as pas besoin de te presser.\nYou don't have to hurry.\tVous n'avez pas besoin de vous presser.\nYou don't have to hurry.\tVous n'avez pas besoin de vous dépêcher.\nYou don't have to speak.\tVous n'avez pas besoin de parler.\nYou don't have to speak.\tTu n'as pas besoin de parler.\nYou don't have to worry.\tIl ne faut pas vous faire de souci.\nYou don't have to worry.\tIl ne faut pas te faire de souci.\nYou don't know anything.\tTu ne sais rien.\nYou don't know anything.\tVous ne savez rien.\nYou don't know who I am.\tVous ne savez pas qui je suis.\nYou don't look Japanese.\tTu n'as pas l'air Japonais.\nYou don't look Japanese.\tTu n'as pas l'air Japonaise.\nYou don't look Japanese.\tVous n'avez pas l'air Japonais.\nYou don't look Japanese.\tVous n'avez pas l'air Japonaise.\nYou don't look Japanese.\tVous n'avez pas l'air Japonaises.\nYou don't look your age.\tTu ne fais pas ton âge.\nYou don't look your age.\tVous ne faites pas votre âge.\nYou don't need to hurry.\tTu n’as pas besoin de te presser.\nYou don't need to hurry.\tVous n’avez pas besoin de vous presser.\nYou don't seem so smart.\tTu ne sembles pas si malin.\nYou don't seem so smart.\tTu ne sembles pas si maligne.\nYou don't seem so smart.\tVous ne semblez pas si malin.\nYou don't seem so smart.\tVous ne semblez pas si malins.\nYou don't seem so smart.\tVous ne semblez pas si maligne.\nYou don't seem so smart.\tVous ne semblez pas si malignes.\nYou don't seem too sure.\tTu n'as pas l'air trop sûr.\nYou don't seem too sure.\tTu n'as pas l'air trop certain.\nYou don't seem too sure.\tTu n'as pas l'air trop sûre.\nYou don't seem too sure.\tTu n'as pas l'air trop certaine.\nYou don't seem too sure.\tVous n'avez pas l'air trop certain.\nYou don't seem too sure.\tVous n'avez pas l'air trop sûr.\nYou don't seem too sure.\tVous n'avez pas l'air trop certaine.\nYou don't seem too sure.\tVous n'avez pas l'air trop certains.\nYou don't seem too sure.\tVous n'avez pas l'air trop certaines.\nYou don't seem too sure.\tVous n'avez pas l'air trop sûre.\nYou don't seem too sure.\tVous n'avez pas l'air trop sûrs.\nYou don't seem too sure.\tVous n'avez pas l'air trop sûres.\nYou don't smoke, do you?\tTu ne fumes pas, n'est-ce pas ?\nYou dropped your pencil.\tTu as fait tomber ton crayon.\nYou dropped your pencil.\tVous avez fait tomber votre crayon.\nYou go there without me.\tTu iras là-bas sans moi.\nYou got what you wanted.\tTu as eu ce que tu voulais.\nYou hate Tom, don't you?\tVous détestez Tom, n'est-ce pas ?\nYou have a lot of books.\tTu as de nombreux livres.\nYou have a lot of books.\tVous avez beaucoup de livres.\nYou have a lot of books.\tTu as beaucoup de livres.\nYou have a lot of books.\tTu es pourvu de nombreux ouvrages.\nYou have a lot of nerve!\tVous en avez, du courage !\nYou have a lot of nerve!\tTu en as, du courage !\nYou have a lot of nerve!\tVous avez beaucoup de courage !\nYou have a lot of nerve!\tTu as beaucoup de courage !\nYou have a lot of nerve.\tVous avez beaucoup de courage.\nYou have a lot of nerve.\tTu as beaucoup de courage.\nYou have beautiful hair.\tTu as de beaux cheveux.\nYou have beautiful lips.\tVous avez de très belles lèvres.\nYou have done very well.\tTu t'es très bien débrouillé.\nYou have done very well.\tVous vous en êtes très bien sorti.\nYou have done very well.\tVous vous en êtes très bien sortis.\nYou have no alternative.\tVous ne disposez pas d'alternative.\nYou have no alternative.\tTu ne disposes pas d'alternative.\nYou have to do as I say.\tTu dois le faire comme je te le dis.\nYou have to do it again.\tTu dois le refaire.\nYou have to do it again.\tVous devez le refaire.\nYou have to do it again.\tIl faut que tu le refasses.\nYou have to do it again.\tIl faut que vous le refassiez.\nYou have to do it today.\tIl vous faut le faire aujourd'hui.\nYou have to do it today.\tIl te faut le faire aujourd'hui.\nYou have very nice lips.\tVous avez de très belles lèvres.\nYou have very sexy legs.\tVous avez des jambes très sexy.\nYou have very sexy legs.\tTu as des jambes très sexy.\nYou left your lights on.\tVous avez laissé vos phares allumés.\nYou left your lights on.\tTu as laissé tes phares allumés.\nYou like her, don't you?\tTu l'aimes, n'est-ce pas ?\nYou like him, don't you?\tTu l'aimes, n'est-ce pas ?\nYou look a little green.\tVous n'avez pas l'air dans votre assiette.\nYou look a little green.\tTu n'as pas l'air dans ton assiette.\nYou look very dignified.\tTu parais très digne.\nYou look very dignified.\tVous paraissez très digne.\nYou look very dignified.\tVous paraissez très dignes.\nYou make me laugh a lot.\tTu me fais beaucoup rire.\nYou make me laugh a lot.\tVous me faites beaucoup rire.\nYou may open the window.\tVous pouvez ouvrir la fenêtre.\nYou may open the window.\tTu peux ouvrir la fenêtre.\nYou may use his library.\tTu peux faire usage de sa bibliothèque.\nYou may use his library.\tVous pouvez faire usage de sa bibliothèque.\nYou might not like this.\tIl se pourrait que vous ne l'aimiez pas.\nYou might not like this.\tIl se pourrait que tu ne l'aimes pas.\nYou must be a good cook.\tTu dois être un bon cuisiner.\nYou must be a good cook.\tVous devez être un bon cuisiner.\nYou must be a good cook.\tTu dois être une bonne cuisinière.\nYou must be a good cook.\tVous devez être une bonne cuisinière.\nYou must do it yourself.\tTu dois le faire toi-même.\nYou must go up the hill.\tTu dois monter la colline.\nYou must go up the hill.\tVous devez monter la colline.\nYou must have lost them.\tTu as dû les perdre.\nYou must not tell a lie.\tTu ne dois pas dire de mensonge.\nYou must not tell a lie.\tVous ne devez pas dire de mensonge.\nYou must pay in advance.\tVous devez payer d'avance.\nYou must pay in advance.\tVous devez régler par avance.\nYou must pay in advance.\tVous devez régler d'avance.\nYou must pay in advance.\tIl faut payer d'avance.\nYou must pay in advance.\tTu dois payer d'avance.\nYou must read this book.\tIl faut que tu lises ce livre.\nYou nearly broke my jaw.\tTu m'as presque brisé la mâchoire.\nYou nearly broke my jaw.\tVous m'avez presque brisé la mâchoire.\nYou need a lot of water.\tOn a besoin de beaucoup d'eau.\nYou need to be prepared.\tIl te faut être préparé.\nYou need to be prepared.\tIl vous faut être préparé.\nYou need to be prepared.\tIl te faut être préparée.\nYou need to be prepared.\tIl vous faut être préparée.\nYou need to be prepared.\tIl vous faut être préparés.\nYou need to be prepared.\tIl vous faut être préparées.\nYou need to hit the gym.\tIl te faut aller à la gym.\nYou need to hit the gym.\tIl vous faut aller à la gym.\nYou need to lose weight.\tIl te faut perdre du poids.\nYou need to lose weight.\tIl vous faut perdre du poids.\nYou never know for sure.\tOn n'est jamais certain.\nYou never know for sure.\tOn n'en est jamais certain.\nYou or I will be chosen.\tOn choisira toi ou moi.\nYou ought to be ashamed.\tTu devrais avoir honte !\nYou ought to be ashamed.\tVous devriez avoir honte !\nYou owe me thirty bucks.\tTu me dois trente dollars.\nYou really are hopeless.\tTu es vraiment désespérant.\nYou really are hopeless.\tVous êtes vraiment désespérant.\nYou really are hopeless.\tVous êtes vraiment désespérants.\nYou really are pathetic.\tTu es vraiment pathétique.\nYou said you were happy.\tVous avez dit que vous étiez heureux.\nYou said you were happy.\tVous avez dit que vous étiez heureuse.\nYou said you were happy.\tTu as dit que tu étais heureux.\nYou said you were happy.\tTu as dit que tu étais heureuse.\nYou said you were happy.\tVous avez dit que vous étiez heureuses.\nYou said you were happy.\tTu as dit que vous étiez heureux.\nYou said you were happy.\tTu as dit que vous étiez heureuses.\nYou seemed to like that.\tVous avez eu l'air de l'apprécier.\nYou seemed to like that.\tVous avez semblé l'apprécier.\nYou seemed to like that.\tTu as semblé l'apprécier.\nYou seemed to like that.\tTu as eu l'air de l'apprécier.\nYou should do that soon.\tTu devrais faire ça bientôt.\nYou should do that soon.\tVous devriez faire ça bientôt.\nYou should get up early.\tTu devrais te lever tôt.\nYou should get up early.\tVous devriez vous lever tôt.\nYou should go on a diet.\tTu devrais te mettre au régime.\nYou should go on a diet.\tVous devriez vous mettre au régime.\nYou should have done so.\tTu aurais dû ainsi faire.\nYou should have done so.\tTu aurais dû faire comme ça.\nYou should have done so.\tVous auriez dû ainsi faire.\nYou should have seen it!\tTu aurais dû le voir.\nYou should have seen it!\tTu aurais dû la voir.\nYou should have seen it!\tVous auriez dû le voir.\nYou should have seen it!\tVous auriez dû la voir.\nYou should have seen it.\tTu aurais dû le voir.\nYou should have seen it.\tTu aurais dû la voir.\nYou should have seen it.\tVous auriez dû le voir.\nYou should have seen it.\tVous auriez dû la voir.\nYou should have seen me.\tT'aurais dû me voir !\nYou should have seen me.\tTu aurais dû me voir !\nYou should have seen me.\tVous auriez dû me voir !\nYou should have stopped.\tTu aurais dû arrêter.\nYou should have stopped.\tVous auriez dû arrêter.\nYou should listen to me.\tTu devrais m'écouter.\nYou should listen to me.\tVous devrez m'écouter.\nYou should not go alone.\tTu ne devrais pas y aller seul.\nYou should not go alone.\tTu ne devrais pas y aller seule.\nYou should not go alone.\tTu ne devrais pas t'y rendre seul.\nYou should not go alone.\tTu ne devrais pas t'y rendre seule.\nYou should not go alone.\tVous ne devriez pas vous y rendre seul.\nYou should not go alone.\tVous ne devriez pas y aller seul.\nYou should not go alone.\tVous ne devriez pas vous y rendre seule.\nYou should not go alone.\tVous ne devriez pas y aller seule.\nYou should not go alone.\tVous ne devriez pas y aller seules.\nYou should not go alone.\tVous ne devriez pas y aller seuls.\nYou should not go alone.\tVous ne devriez pas vous y rendre seules.\nYou should not go alone.\tVous ne devriez pas vous y rendre seuls.\nYou should not go there.\tVous ne devriez pas vous y rendre.\nYou should not go there.\tTu ne devrais pas y aller.\nYou should not go there.\tTu ne devrais pas t'y rendre.\nYou should quit smoking.\tTu devrais cesser de fumer.\nYou should quit smoking.\tTu devrais arrêter de fumer.\nYou should quit smoking.\tTu ferais mieux d'arrêter de fumer.\nYou should quit smoking.\tVous devriez arrêter de fumer.\nYou should see a doctor.\tTu devrais aller voir un médecin.\nYou should see a doctor.\tTu devrais voir un médecin.\nYou should see a doctor.\tVous devriez aller voir un médecin.\nYou should study harder.\tTu devrais étudier davantage.\nYou should've called me.\tT’aurais dû m’appeler.\nYou shouldn't trust Tom.\tTu ne devrais pas avoir confiance en Tom.\nYou shouldn't trust Tom.\tTu ne devrais pas faire confiance à Tom.\nYou shouldn't trust Tom.\tVous ne devriez pas faire confiance à Tom.\nYou speak French, right?\tVous parlez le français, n'est-ce pas ?\nYou speak French, right?\tTu parles le français, n'est-ce pas ?\nYou spilled your coffee.\tTu as renversé ton café.\nYou surprised everybody.\tTu as surpris tout le monde.\nYou take my breath away.\tVous me coupez le souffle.\nYou take my breath away.\tTu me coupes le souffle.\nYou think of everything.\tVous pensez à tout.\nYou think of everything.\tTu penses à tout.\nYou two are really kind.\tVous êtes tous les deux vraiment gentils.\nYou two are really kind.\tVous êtes vraiment gentils tous les deux.\nYou were all a big help.\tVous avez tous été d'une grande aide.\nYou were all a big help.\tVous avez toutes été d'une grande aide.\nYou were almost in time.\tTu as failli arriver à temps.\nYou will miss the train.\tVous allez rater le train.\nYou won't be interested.\tVous ne serez pas intéressé.\nYou won't be interested.\tVous ne serez pas intéressée.\nYou won't be interested.\tVous ne serez pas intéressés.\nYou won't be interested.\tVous ne serez pas intéressées.\nYou won't be interested.\tTu ne seras pas intéressé.\nYou won't be interested.\tTu ne seras pas intéressée.\nYou won't have a chance.\tTu n'auras aucune chance.\nYou won't have a chance.\tVous n'aurez aucune chance.\nYou won't have a choice.\tVous n'aurez pas le choix.\nYou won't have a choice.\tTu n'auras pas le choix.\nYou won't have your way.\tTu ne t'en sortiras pas.\nYou won't have your way.\tVous ne vous en sortirez pas.\nYou would be safe there.\tTu serais en sécurité là-bas.\nYou would be safe there.\tTu serais en sécurité là.\nYou would be safe there.\tVous seriez en sécurité là-bas.\nYou would be safe there.\tVous seriez en sécurité là.\nYou would be safe there.\tTu y serais en sécurité.\nYou would be safe there.\tVous y seriez en sécurité.\nYou wouldn't believe it.\tVous ne le croiriez pas.\nYou'd better believe it.\tC'est la vérité.\nYou'll be late for work.\tTu seras en retard au travail.\nYou'll be late for work.\tVous serez en retard au travail.\nYou'll be safe with him.\tTu seras en sécurité avec lui.\nYou'll be safe with him.\tVous serez en sécurité avec lui.\nYou'll change your mind.\tTu changeras d'avis.\nYou'll change your mind.\tVous changerez d'avis.\nYou'll come to like her.\tTu apprendras à l'aimer.\nYou'll get into trouble.\tTu vas te mettre dans les ennuis.\nYou'll get into trouble.\tVous allez vous mettre dans les ennuis.\nYou'll have a hard time.\tÇa va être dur pour toi.\nYou'll have a hard time.\tVous allez traverser une période difficile.\nYou'll have a hard time.\tTu auras une peine en quartier de haute sécurité.\nYou'll have a hard time.\tVous purgerez une peine en quartier de haute sécurité.\nYou'll know soon enough.\tTu le sauras bien assez tôt.\nYou're a teacher, right?\tTu es enseignant, n'est-ce pas ?\nYou're a very lucky man.\tTu as vraiment de la chance.\nYou're a very lucky man.\tVous avez vraiment de la chance.\nYou're absolutely right.\tVous avez tout à fait raison.\nYou're absolutely right.\tTu as parfaitement raison.\nYou're absolutely right.\tVous avez parfaitement raison.\nYou're all hypocritical.\tVous êtes tous hypocrites.\nYou're aren't one of us.\tVous n'êtes pas l'un des nôtres.\nYou're aren't one of us.\tTu n'es pas l'une des nôtres.\nYou're blocking my view.\tTu me bloques la vue.\nYou're blocking my view.\tVous me bloquez la vue.\nYou're completely right.\tTu as parfaitement raison.\nYou're driving too fast.\tTu conduis trop vite.\nYou're driving too fast.\tVous conduisez trop vite.\nYou're finished already.\tTu en as déjà fini.\nYou're finished already.\tVous en avez déjà fini.\nYou're hiding something.\tTu caches quelque chose.\nYou're hiding something.\tVous cachez quelque chose.\nYou're imagining things.\tTu imagines des choses.\nYou're imagining things.\tVous imaginez des choses.\nYou're my kid's teacher.\tTu es le prof de mon gamin.\nYou're my kid's teacher.\tTu es l'instituteur de mon enfant.\nYou're my kid's teacher.\tVous êtes l'institutrice de mon enfant.\nYou're my kid's teacher.\tVous êtes le professeur de mon enfant.\nYou're not easy to find.\tTu n'es pas facile à trouver.\nYou're not easy to find.\tVous n'êtes pas facile à trouver.\nYou're not easy to find.\tVous n'êtes pas faciles à trouver.\nYou're not good at this.\tÇa ne te réussit pas.\nYou're not good at this.\tÇa ne vous réussit pas.\nYou're not good at this.\tTu n'y es pas bon.\nYou're not good at this.\tTu n'y es pas bonne.\nYou're not good at this.\tVous n'y êtes pas bon.\nYou're not good at this.\tVous n'y êtes pas bons.\nYou're not good at this.\tVous n'y êtes pas bonne.\nYou're not good at this.\tVous n'y êtes pas bonnes.\nYou're not helping much.\tTu n'aides pas beaucoup.\nYou're not helping much.\tVous n'aidez pas beaucoup.\nYou're not helping, Tom.\tTu n'aides pas, Tom.\nYou're not helping, Tom.\tVous n'aidez pas, Tom.\nYou're not missing much.\tTu ne rates pas grand chose.\nYou're not missing much.\tVous ne ratez pas grand chose.\nYou're not the only one.\tTu n'es pas le seul.\nYou're not welcome here.\tTu n'es pas le bienvenu ici.\nYou're not welcome here.\tTu n'es pas la bienvenue ici.\nYou're not welcome here.\tVous n'êtes pas le bienvenu ici.\nYou're not welcome here.\tVous n'êtes pas la bienvenue ici.\nYou're not welcome here.\tVous n'êtes pas les bienvenus ici.\nYou're not welcome here.\tVous n'êtes pas les bienvenues ici.\nYou're probably thirsty.\tTu as probablement soif.\nYou're probably thirsty.\tVous avez probablement soif.\nYou're quite attractive.\tVous êtes tout à fait attirant.\nYou're quite attractive.\tVous êtes tout à fait attirante.\nYou're quite attractive.\tTu es tout à fait attirant.\nYou're quite attractive.\tTu es tout à fait attirante.\nYou're right about that.\tTu as raison à ce sujet.\nYou're right about that.\tVous avez raison à ce sujet.\nYou're right, of course.\tVous avez raison, bien sûr.\nYou're right, of course.\tTu as raison, bien sûr.\nYou're scaring the kids.\tTu es en train d'effrayer les enfants.\nYou're scaring the kids.\tTu effraies les enfants.\nYou're so cute together.\tVous êtes si mignons ensemble.\nYou're taller than I am.\tTu es plus grand que moi.\nYou're taller than I am.\tTu es plus grande que moi.\nYou're taller than I am.\tVous êtes plus grand que moi.\nYou're taller than I am.\tVous êtes plus grande que moi.\nYou're taller than I am.\tVous êtes plus grands que moi.\nYou're taller than I am.\tVous êtes plus grandes que moi.\nYou're three hours late.\tTu as trois heures de retard.\nYou're totally ignorant.\tVous êtes complètement ignorant.\nYou're totally ignorant.\tVous êtes complètement ignorante.\nYou're totally ignorant.\tVous êtes complètement ignorants.\nYou're totally ignorant.\tVous êtes complètement ignorantes.\nYou're totally ignorant.\tTu es complètement ignorant.\nYou're totally ignorant.\tTu es complètement ignorante.\nYou're trespassing here.\tVous êtes dans une propriété privée, ici.\nYou're trespassing here.\tTu es dans une propriété privée, ici.\nYou're very intelligent.\tTu es très intelligent.\nYou're very intelligent.\tTu es très intelligente.\nYou're very intelligent.\tVous êtes très intelligent.\nYou're very intelligent.\tVous êtes très intelligents.\nYou're very intelligent.\tVous êtes très intelligente.\nYou're very intelligent.\tVous êtes très intelligentes.\nYou're very resourceful.\tTu es plein de ressources.\nYou're very resourceful.\tTu es pleine de ressources.\nYou're very resourceful.\tVous êtes plein de ressources.\nYou're very resourceful.\tVous êtes pleins de ressources.\nYou're very resourceful.\tVous êtes pleine de ressources.\nYou're very resourceful.\tVous êtes pleines de ressources.\nYou're wasting our time.\tTu nous fais perdre notre temps.\nYou've done all you can.\tTu as fait tout ce que tu pouvais.\nYou've done all you can.\tVous avez fait tout ce que vous pouviez.\nYou've found a good man.\tTu as trouvé un chic type.\nYou've got paint on you.\tTu as, sur toi, de la peinture.\nYou've got paint on you.\tVous avez, sur vous, de la peinture.\nYou've gotta be kidding!\tTu dois plaisanter !\nYou've gotta be kidding!\tVous devez plaisanter !\nYou've never been happy.\tTu n'as jamais été heureux.\nYou've never been happy.\tVous n'avez jamais été heureux.\nYou've taken everything.\tVous avez tout pris.\nYou've taken everything.\tTu as tout pris.\nYour car handles easily.\tVotre voiture est maniable.\nYour car handles easily.\tTa voiture se manie facilement.\nYour friends sound nice.\tVos amis ont l'air gentil.\nYour friends sound nice.\tTes amis ont l'air gentil.\nYour friends sound nice.\tTes amies ont l'air gentil.\nYour friends sound nice.\tVos amies ont l'air gentil.\nYour hat's on backwards.\tTu as mis ton chapeau à l'envers.\nYour house is fantastic.\tVotre maison est fantastique.\nYour name was mentioned.\tTon nom a été mentionné.\nYour pants are unzipped.\tLa fermeture Éclair de ton pantalon est baissée.\nYour pants are unzipped.\tLa fermeture Éclair de votre pantalon est baissée.\nYour parents were right.\tTes parents avaient raison.\nYour parents were right.\tVos parents avaient raison.\n\"I forgot,\" she answered.\t\"J'ai oublié\", répondit-elle.\n\"Tom's crying.\" \"I know.\"\t« Tom pleure. » - « Je sais. »\nA baby has delicate skin.\tUn bébé a une peau délicate.\nA ball hit her right leg.\tUne balle atteignit sa jambe droite.\nA dog bit her on the leg.\tUn chien l'a mordue à la jambe.\nA gentle wind is blowing.\tIl souffle une douce brise.\nA glass of water, please.\tUn verre d'eau, sil vous plaît !\nA light bulb gives light.\tUne ampoule donne de la lumière.\nA light bulb gives light.\tUne ampoule fournit de la lumière.\nA light rain was falling.\tUne pluie légère tombait.\nA lot of time was wasted.\tBeaucoup de temps fut gaspillé.\nA lot of time was wasted.\tBeaucoup de temps fut gâché.\nA sponge absorbs liquids.\tUne éponge absorbe du liquide.\nA tea with lemon, please.\tUn thé au citron, s’il vous plaît.\nAccidents are inevitable.\tLes accidents sont inévitables.\nActually, I did write it.\tEn réalité, je l'ai écrit.\nAfter that, he went home.\tAprès quoi, il alla chez lui.\nAfter that, he went home.\tSur ce, il alla chez lui.\nAfter that, he went home.\tAprès cela, il alla chez lui.\nAll I think about is you.\tTout ce dont je pense, c'est toi.\nAll I think about is you.\tTout ce dont je pense, c'est vous.\nAll I think about is you.\tTout ce à quoi je pense, c'est toi.\nAll I think about is you.\tTout ce à quoi je pense, c'est vous.\nAll but one were present.\tTous sauf un étaient présents.\nAll my problems are over.\tTous mes problèmes sont derrière moi.\nAll of them are not poor.\tTous ne sont pas pauvres.\nAll of us play the piano.\tNous jouons tous du piano.\nAll of you did good work.\tVous avez tous fait du bon travail.\nAll our plans went wrong.\tTous nos plans sont tombés à l'eau.\nAll that has changed now.\tTout cela a désormais changé.\nAll that he says is true.\tTout ce qu'il dit est vrai.\nAll the boys looked down.\tTous les garçons regardèrent leurs pieds.\nAll the other kids do it.\tTous les autres enfants le font.\nAll the seats are booked.\tTous les fauteuils sont réservés.\nAll these books are mine.\tTous ces livres sont à moi.\nAll these books are mine.\tTous ces livres sont les miens.\nAll this has now changed.\tTout ceci a désormais changé.\nAll those books are mine.\tTous ces livres sont à moi.\nAll those books are mine.\tTous ces livres sont les miens.\nAlmost everyone was late.\tPresque tout le monde était en retard.\nAm I allowed to use this?\tSuis-je autorisé à utiliser ceci ?\nAm I allowed to use this?\tM'est-il permis d'utiliser ceci ?\nAm I allowed to use this?\tSuis-je autorisée à utiliser ceci ?\nAm I disturbing anything?\tEst-ce que je dérange quoi que ce soit ?\nAm I making myself clear?\tMe fais-je bien comprendre ?\nAm I my brother's keeper?\tSuis-je le gardien de mon frère ?\nAnger showed on his face.\tLa colère se traduisait sur son visage.\nAny clever boy can do it.\tIl peut le faire si c'est un enfant intelligent.\nAny comments are welcome.\tTous les commentaires sont bienvenus.\nAnyone can make mistakes.\tTout le monde peut se tromper.\nAnyone can make mistakes.\tN'importe qui peut commettre des erreurs.\nAre all the windows shut?\tToutes les fenêtres sont-elles fermées ?\nAre my socks dry already?\tMes chaussettes sont-elles déjà sèches ?\nAre these your daughters?\tSont-ce vos filles ?\nAre these your daughters?\tSont-ce là vos filles ?\nAre we in the same hotel?\tSommes-nous dans le même hôtel ?\nAre you a natural blonde?\tEs-tu une blonde naturelle ?\nAre you a natural blonde?\tÊtes-vous une blonde naturelle ?\nAre you a paleontologist?\tÊtes-vous paléontologue ?\nAre you all set to leave?\tÊtes-vous toutes prêtes à partir ?\nAre you all set to leave?\tÊtes-vous tous prêts à partir ?\nAre you always that busy?\tEs-tu toujours aussi occupé ?\nAre you coming in or not?\tEntrez-vous ou pas ?\nAre you coming in or not?\tEntres-tu ou pas ?\nAre you expecting anyone?\tAttends-tu qui que ce soit ?\nAre you expecting anyone?\tAttendez-vous qui que ce soit ?\nAre you flirting with me?\tEs-tu en train de me draguer ?\nAre you flirting with me?\tÊtes-vous en train de me draguer ?\nAre you fond of swimming?\tAimes-tu nager ?\nAre you from around here?\tEs-tu du coin ?\nAre you from around here?\tEs-tu des environs ?\nAre you from around here?\tÊtes-vous du coin ?\nAre you from around here?\tÊtes-vous des environs ?\nAre you going or staying?\tTu y vas ou tu restes ?\nAre you going to a movie?\tAllez-vous voir un film ?\nAre you going to a movie?\tAllez-vous assister à la projection d'un film ?\nAre you going to a movie?\tVas-tu voir un film ?\nAre you going to a movie?\tVas-tu assister à la projection d'un film ?\nAre you going to save us?\tAllez-vous nous sauver ?\nAre you going to save us?\tVas-tu nous sauver ?\nAre you here voluntarily?\tÊtes-vous ici de votre plein gré ?\nAre you here voluntarily?\tEs-tu ici de ton plein gré ?\nAre you here with anyone?\tÊtes-vous ici avec quelqu'un ?\nAre you here with anyone?\tEs-tu ici avec qui que ce soit ?\nAre you hiding something?\tEst-ce que tu caches quelque chose ?\nAre you interested in me?\tVous intéressez-vous à moi ?\nAre you interested in me?\tT'intéresses-tu à moi ?\nAre you listening to him?\tEst-ce que tu l'écoutes ?\nAre you looking for work?\tCherchez-vous du travail ?\nAre you looking for work?\tCherches-tu du travail ?\nAre you losing your mind?\tPerdez-vous la tête ?\nAre you making fun of me?\tEs-tu en train de te moquer de moi ?\nAre you making fun of me?\tÊtes-vous en train de vous moquer de moi ?\nAre you on the committee?\tFaites-vous partie du comité ?\nAre you on the committee?\tSièges-tu au comité ?\nAre you on your way home?\tEs-tu en route pour chez toi ?\nAre you on your way home?\tEs-tu en route pour la maison ?\nAre you on your way home?\tÊtes-vous en route pour chez vous ?\nAre you on your way home?\tÊtes-vous en route pour la maison ?\nAre you out of your mind?\tEs-tu fou ?\nAre you out of your mind?\tÊtes-vous fou ?\nAre you out of your mind?\tEs-tu folle ?\nAre you out of your mind?\tTu as un grain ?\nAre you out of your mind?\tVous avez un grain ?\nAre you out of your mind?\tAvez-vous perdu la tête ?\nAre you out of your mind?\tAs-tu perdu la tête ?\nAre you out of your mind?\tEs-tu tombé sur la tête ?\nAre you out of your mind?\tEs-tu tombée sur la tête ?\nAre you out of your mind?\tÊtes-vous tombé sur la tête ?\nAre you out of your mind?\tÊtes-vous tombée sur la tête ?\nAre you really not going?\tN'y vas-tu vraiment pas ?\nAre you really not going?\tN'y allez-vous vraiment pas ?\nAre you sleeping in here?\tEst-ce que vous dormez, là-dedans ?\nAre you speaking English?\tVous parlez en anglais ?\nAre you still in the job?\tÊtes-vous encore en poste ?\nAre you still in the job?\tEs-tu encore en poste ?\nAre you still interested?\tEs-tu toujours intéressé ?\nAre you still interested?\tEs-tu toujours intéressée ?\nAre you still interested?\tÊtes-vous toujours intéressé ?\nAre you still interested?\tÊtes-vous toujours intéressée ?\nAre you still interested?\tÊtes-vous toujours intéressés ?\nAre you still interested?\tÊtes-vous toujours intéressées ?\nAre you studying English?\tApprenez-vous l'anglais ?\nAre you studying English?\tÉtudies-tu l'anglais ?\nAre you sure that's safe?\tEs-tu sûr que c'est sûr ?\nAre you sure that's safe?\tEs-tu sûre que c'est sûr ?\nAre you sure that's safe?\tEs-tu certain que c'est sûr ?\nAre you sure that's safe?\tEs-tu certaine que c'est sûr ?\nAre you sure that's safe?\tÊtes-vous certain que c'est sûr ?\nAre you sure that's safe?\tÊtes-vous certaine que c'est sûr ?\nAre you sure that's safe?\tÊtes-vous certaines que c'est sûr ?\nAre you sure that's safe?\tÊtes-vous certains que c'est sûr ?\nAre you the group leader?\tÊtes-vous le meneur du groupe ?\nAre you the group leader?\tÊtes-vous la meneuse du groupe ?\nAre you the group leader?\tEs-tu le meneur du groupe ?\nAre you the group leader?\tEs-tu la meneuse du groupe ?\nAre you writing a letter?\tEs-tu en train d'écrire une lettre ?\nAre you writing a letter?\tÊtes-vous en train d'écrire une lettre ?\nAre you writing a letter?\tEs-tu en train d'écrire une lettre?\nAre you younger than him?\tEs-tu plus jeune que lui ?\nAren't you a little cold?\tN'as-tu pas un petit peu froid?\nAs a result, prices rose.\tConséquemment, les prix ont augmenté.\nAsians eat a lot of rice.\tLes asiatiques consomment beaucoup de riz.\nAsk her what her name is.\tDemande-lui quel est son nom.\nAsk her what her name is.\tDemandez-lui quel est son nom.\nAsk me anything you like.\tDemande-moi ce que tu veux.\nAsk me anything you like.\tDemandez-moi ce que vous voulez.\nAsk your dad to help you.\tDemande à ton père de t'aider.\nBad news travels quickly.\tLes mauvaises nouvelles vont vite.\nBarking dogs seldom bite.\tChien qui aboie ne mord pas.\nBarking dogs seldom bite.\tChien qui aboit ne mord pas.\nBarking dogs seldom bite.\tLes chiens qui aboient mordent rarement.\nBe nicer to your brother.\tSois plus gentil avec ton frère !\nBe nicer to your brother.\tSois plus gentille avec ton frère !\nBe nicer to your brother.\tSoyez plus gentils avec ton frère !\nBe nicer to your brother.\tSoyez plus gentil avec votre frère !\nBe nicer to your brother.\tSoyez plus gentille avec votre frère !\nBe nicer to your brother.\tSoyez plus gentils avec votre frère !\nBe nicer to your brother.\tSoyez plus gentilles avec votre frère !\nBeauty is only skin deep.\tLa beauté n'a que l'épaisseur de la peau.\nBirds fly long distances.\tLes oiseaux volent sur de longues distances.\nBoth were extremely rich.\tLes deux étaient extrêmement riches.\nBread is made from wheat.\tLe pain est fait à partir de blé.\nBread is made from wheat.\tLe pain est produit à partir de blé.\nBring me some cold water.\tApportez-moi de l'eau froide.\nBuffaloes have big horns.\tLes bisons ont de grandes cornes.\nBusiness before pleasure.\tLe travail d'abord, ensuite le réconfort.\nButter is made from milk.\tLe beurre est fait à partir de lait.\nCabbage can be eaten raw.\tOn peut manger le chou, cru.\nCall me at 9:00 tomorrow.\tAppelle-moi à 9h00 demain.\nCall me if you need help.\tAppelle-moi si tu as besoin d'aide.\nCall me if you need help.\tAppelez-moi si vous avez besoin d'aide.\nCan I ask you a question?\tPuis-je vous poser une question ?\nCan I ask you a question?\tPuis-je te demander quelque chose ?\nCan I at least get a hug?\tPuis-je au moins avoir un câlin ?\nCan I borrow an umbrella?\tPuis-je emprunter un parapluie ?\nCan I borrow your laptop?\tPuis-je emprunter ton portable?\nCan I change the channel?\tPuis-je changer de chaîne ?\nCan I have some more tea?\tPuis-je avoir encore du thé ?\nCan I pay by credit card?\tEst-ce que je peux payer avec une carte de crédit ?\nCan I show you something?\tPuis-je vous montrer quelque chose ?\nCan I show you something?\tPuis-je te montrer quelque chose ?\nCan I sleep on the couch?\tPuis-je dormir sur le canapé ?\nCan I take my jacket off?\tPuis-je ôter ma veste ?\nCan I take my jacket off?\tPuis-je tomber la veste ?\nCan I take pictures here?\tPuis-je prendre des photos ici ?\nCan I try on this jacket?\tPuis-je essayer cette veste ?\nCan I use my credit card?\tPuis-je utiliser ma carte de crédit ?\nCan I use your telephone?\tPuis-je utiliser votre téléphone ?\nCan I use your telephone?\tPuis-je utiliser ton téléphone ?\nCan I write it like that?\tOn peut écrire comme ça ?\nCan I write it like that?\tPeut-on écrire comme cela ?\nCan it wait another hour?\tEst-ce que ça peut attendre encore une heure ?\nCan this be all there is?\tCeci peut-il être tout ce qu'il y a ?\nCan we make one of those?\tPouvons-nous faire l'un de ceux-là ?\nCan we make one of those?\tPouvons-nous faire l'une de celles-là ?\nCan we say no to the USA?\tPouvons-nous dire non aux États-Unis d'Amérique ?\nCan you do it in one day?\tPouvez-vous le faire en une journée ?\nCan you explain it to me?\tPouvez-vous me l'expliquer ?\nCan you help me a little?\tPeux-tu m'aider un peu ?\nCan you help me a little?\tPouvez-vous m'aider un peu ?\nCan you keep it a secret?\tPeux-tu le garder secret ?\nCan you pass me the salt?\tPouvez-vous me passer le sel ?\nCan you pass me the salt?\tPeux-tu me passer le sel ?\nCan you pass me the salt?\tPouvez-vous me passer le sel ?\nCan you please stop that?\tPouvez-vous arrêter ça, je vous prie ?\nCan you please stop that?\tPeux-tu arrêter ça, je te prie ?\nCan you please walk away?\tPouvez-vous vous éloigner, s'il vous plaît ?\nCan you solve the puzzle?\tPeux-tu résoudre cette énigme ?\nCan you stay for a while?\tPeux-tu rester un moment ?\nCan you stay for a while?\tPouvez-vous rester un moment ?\nCan you stay for a while?\tVoulez-vous bien rester un moment ?\nCan you take us with you?\tPeux-tu nous prendre avec toi?\nCan you tell me about it?\tPeux-tu m'en parler ?\nCan you tell me about it?\tPouvez-vous m'en parler ?\nCan you tell me about it?\tPouvez-vous m'en faire part ?\nCan you tell me about it?\tPeux-tu m'en faire part ?\nCan you tell me the time?\tPouvez-vous me donner l'heure ?\nCan you tell us about it?\tPeux-tu nous en parler ?\nCan you tell us about it?\tPouvez-vous nous en parler ?\nCan you tell us about it?\tPouvez-vous nous en faire part ?\nCan you wait ten minutes?\tPeux-tu attendre dix minutes ?\nCan't you hear the sound?\tNe peux-tu pas entendre le son ?\nCan't you hear the sound?\tNe pouvez-vous pas entendre le son ?\nCan't you ride a bicycle?\tTu ne sais pas faire de la bicyclette ?\nCan't you ride a bicycle?\tNe savez-vous pas faire du vélo ?\nCan't you ride a bicycle?\tNe sais-tu pas faire du vélo ?\nCheese is made from milk.\tLe fromage est fait avec du lait.\nChoose any of these pens.\tChoisis n'importe lequel de ces stylos.\nChoose any of these pens.\tChoisissez n'importe lequel de ces stylos.\nChoose between these two.\tChoisis entre les deux.\nChristmas is approaching.\tNoël approche.\nChristmas is approaching.\tNoël se rapproche.\nChristmas is coming soon.\tNoël arrive bientôt.\nChristmas is coming soon.\tBientôt Noël.\nClearly you are mistaken.\tAssurément vous vous trompez.\nClearly you are mistaken.\tLà tu te trompes certainement.\nClearly you are mistaken.\tIl est clair que tu te trompes.\nClose the door after you.\tFermez la porte derrière vous.\nCome and keep me company.\tViens et tiens-moi un peu compagnie.\nCome and see me tomorrow.\tVenez me voir demain.\nCome and see me tomorrow.\tViens me voir demain.\nCome as soon as possible.\tViens aussi vite que possible.\nCome in, the door's open.\tEntre, la porte est ouverte.\nCome in, the door's open.\tEntrez, la porte est ouverte.\nCome on any day you like.\tVenez le jour qui vous convient.\nCongress passed the bill.\tLe parlement a entériné la loi.\nConsider it an emergency.\tConsidère-le comme une urgence.\nConsider it an emergency.\tConsidérez-le comme une urgence.\nCorrect me if I am wrong.\tCorrigez-moi si je me trompe.\nCould I get my ring back?\tPourrais-je récupérer ma bague ?\nCould I park my car here?\tPuis-je garer ma voiture ici ?\nCould Tom have done this?\tEst-ce que Tom pourrait avoir fait ça ?\nCould you give me a ride?\tPeux-tu m'y amener en voiture ?\nCould you give me a ride?\tPouvez-vous m'y amener en voiture ?\nCould you leave us alone?\tPourrais-tu nous laisser seuls ?\nCould you leave us alone?\tPourrais-tu nous laisser seules ?\nCould you leave us alone?\tPourriez-vous nous laisser seuls ?\nCould you leave us alone?\tPourriez-vous nous laisser seules ?\nCould you lend me a hand?\tPourrais-tu me prêter main forte ?\nCould you lend me a hand?\tPourriez-vous me prêter main forte ?\nCould you please help me?\tPourriez-vous m'aider s'il vous plaît ?\nCould you say that again?\tPourrais-tu répéter cela ?\nCould you say that again?\tPourriez-vous répéter cela ?\nCows supply us with milk.\tLes vaches nous fournissent leur lait.\nCrime is on the increase.\tLes crimes sont en augmentation.\nCuriosity killed the cat.\tLa curiosité est un vilain défaut.\nCuriosity killed the cat.\tLa curiosité des gens est ce qui cause leur perte.\nCut the cloth diagonally.\tCoupez le tissu en diagonale.\nCut the cloth diagonally.\tCoupez l'étoffe en diagonale.\nDarwin changed the world.\tDarwin changea le monde.\nDarwin changed the world.\tDarwin a changé le monde.\nDid I do something wrong?\tAi-je fait quelque chose d'incorrect ?\nDid I do something wrong?\tAi-je fait quelque chose de travers ?\nDid I hurt your feelings?\tT'ai-je blessé ?\nDid I hurt your feelings?\tT'ai-je blessée ?\nDid I hurt your feelings?\tVous ai-je blessé ?\nDid I hurt your feelings?\tVous ai-je blessée ?\nDid I hurt your feelings?\tVous ai-je blessés ?\nDid I hurt your feelings?\tVous ai-je blessées ?\nDid I interrupt anything?\tJe n'a rien interrompu, si ?\nDid I leave anything out?\tAi-je omis quoi que ce soit ?\nDid I say I was finished?\tAi-je dit que j'en avais fini ?\nDid I say I was finished?\tAi-je dit que j'avais terminé ?\nDid I say you could talk?\tAi-je dit que tu pouvais t'exprimer ?\nDid I say you could talk?\tAi-je dit que vous pouviez vous exprimer ?\nDid Tom ask you to do it?\tTom t'a-t-il demandé de le faire ?\nDid Tom ask you to do it?\tTom vous a-t-il demandé de le faire ?\nDid Tom break your heart?\tTom t'a-t-il brisé le cœur ?\nDid anybody eat with you?\tQui que ce soit a-t-il mangé avec toi ?\nDid anybody eat with you?\tQui que ce soit a-t-il mangé avec vous ?\nDid anybody see anything?\tQuiconque a-t-il vu quoi que ce soit ?\nDid anyone else help you?\tQui que ce soit d'autre t'a-t-il aidé ?\nDid anyone else help you?\tQui que ce soit d'autre vous a-t-il aidé ?\nDid anyone see it happen?\tQuiconque l'a-t-il vu se produire ?\nDid anyone see you there?\tQuiconque vous y a-t-il vu ?\nDid anyone see you there?\tQuiconque t'y a-t-il vu ?\nDid anyone see you there?\tQui que ce soit vous y a-t-il vu ?\nDid anyone see you there?\tQui que ce soit t'y a-t-il vu ?\nDid she have a hard time?\tA-t-elle eu du fil à retordre ?\nDid she hurt that kitten?\tA-t-elle fait mal à ce chaton ?\nDid you call anyone else?\tAs-tu appelé qui que ce soit d'autre ?\nDid you call anyone else?\tAvez-vous appelé qui que ce soit d'autre ?\nDid you close the window?\tAs-tu fermé la fenêtre?\nDid you do your homework?\tAs-tu fait tes devoirs ?\nDid you do your homework?\tAvez-vous fait vos devoirs ?\nDid you ever talk to him?\tLui aviez-vous déjà parlé ?\nDid you forget something?\tAs-tu oublié quelque chose ?\nDid you forget something?\tAvez-vous oublié quelque chose ?\nDid you get your receipt?\tT'as eu ton reçu ?\nDid you go to the doctor?\tT'es-tu rendu chez le médecin ?\nDid you have a rough day?\tAs-tu eu une journée chahutée ?\nDid you have a rough day?\tAvez-vous eu une journée chahutée ?\nDid you have any trouble?\tVous avez eu des problèmes ?\nDid you have any trouble?\tAvez-vous eu des problèmes ?\nDid you have any trouble?\tTu as eu des problèmes ?\nDid you have any trouble?\tAs-tu eu des problèmes ?\nDid you have fun tonight?\tT'es-tu amusé, ce soir ?\nDid you have fun tonight?\tT'es-tu amusée, ce soir ?\nDid you have fun tonight?\tVous êtes-vous amusé, ce soir ?\nDid you have fun tonight?\tVous êtes-vous amusée, ce soir ?\nDid you have fun tonight?\tVous êtes-vous amusés, ce soir ?\nDid you have fun tonight?\tVous êtes-vous amusées, ce soir ?\nDid you hear what I said?\tAvez-vous entendu ce que j'ai dit ?\nDid you hear what I said?\tAs-tu entendu ce que j'ai dit ?\nDid you live here before?\tAvez-vous vécu ici auparavant ?\nDid you live here before?\tAs-tu vécu ici auparavant ?\nDid you pay for the book?\tAs-tu payé pour le livre ?\nDid you pay for the book?\tAvez-vous payé pour le livre ?\nDid you plan it yourself?\tAs-tu planifié cela toi-même ?\nDid you put it somewhere?\tL'as-tu mis quelque part ?\nDid you put it somewhere?\tL'avez-vous mis quelque part ?\nDid you put on sunscreen?\tTu as mis de la crème solaire ?\nDid you read the article?\tAs-tu lu l'article ?\nDid you read the article?\tAvez-vous lu l'article ?\nDid you see anybody else?\tAs-tu vu qui que ce soit d'autre ?\nDid you see anybody else?\tAvez-vous vu qui que ce soit d'autre ?\nDid you see anyone leave?\tAvez-vous vu qui que ce soit partir ?\nDid you see anyone leave?\tAvez-vous vu qui que ce soit s'en aller ?\nDid you see anyone leave?\tAs-tu vu qui que ce soit s'en aller ?\nDid you see anyone leave?\tAs-tu vu qui que ce soit partir ?\nDid you sew this by hand?\tTu l'as cousu à la main ?\nDid you sew this by hand?\tAs-tu cousu ceci à la main ?\nDid you shoot this video?\tAs-tu filmé cette vidéo ?\nDid you speak to anybody?\tAs-tu parlé à quelqu'un ?\nDidn't you read the book?\tN'as-tu pas lu le livre ?\nDidn't you read the book?\tN'avez-vous pas lu le livre ?\nDo I have to do this now?\tDois-je le faire maintenant ?\nDo I look like a plumber?\tAi-je l'air d'un plombier ?\nDo I look like a plumber?\tEst-ce que je ressemble à un plombier ?\nDo it when you have time.\tFais-le quand tu auras du temps.\nDo it when you have time.\tFais-le lorsque tu en auras le temps.\nDo it when you have time.\tFaites-le lorsque vous en aurez le temps.\nDo not disobey the rules.\tNe contreviens pas aux règles.\nDo not disobey the rules.\tNe contrevenez pas aux règles.\nDo we need anything else?\tAvons-nous besoin de quoi que ce soit d'autre ?\nDo what you want with it.\tFais-en ce que tu veux.\nDo what you want with it.\tFaites-en ce que vous voulez.\nDo whatever he tells you.\tFais tout ce qu'il te dit.\nDo you all feel that way?\tAvez-vous tous le même sentiment ?\nDo you all feel that way?\tAvez-vous toutes le même sentiment ?\nDo you also want a shave?\tVoulez-vous également un rasage ?\nDo you believe in ghosts?\tCrois-tu aux fantômes ?\nDo you feel like a drink?\tAs-tu envie de prendre un verre ?\nDo you feel like a drink?\tAvez-vous envie de prendre un verre ?\nDo you feel like dancing?\tAvez-vous envie de danser ?\nDo you feel like dancing?\tAs-tu envie de danser ?\nDo you feel like resting?\tVeux-tu te reposer ?\nDo you feel like resting?\tÉprouvez-vous le besoin de vous reposer ?\nDo you get many visitors?\tAvez-vous beaucoup de visiteurs ?\nDo you have Saturday off?\tÊtes-vous en congé le samedi ?\nDo you have Saturday off?\tEs-tu en congé le samedi ?\nDo you have a big family?\tAs-tu une grande famille?\nDo you have a dictionary?\tAvez-vous un dictionnaire ?\nDo you have a dictionary?\tAs-tu un dictionnaire ?\nDo you have a girlfriend?\tAs-tu une petite amie ?\nDo you have a red pencil?\tAs-tu un stylo rouge ?\nDo you have any brothers?\tAs-tu des frères ?\nDo you have any children?\tAvez-vous des enfants ?\nDo you have dinner plans?\tAs-tu des projets pour le déjeuner ?\nDo you have dinner plans?\tAs-tu des projets pour le souper ?\nDo you have dinner plans?\tAvez-vous des projets pour le déjeuner ?\nDo you have dinner plans?\tAvez-vous des projets pour le souper ?\nDo you have enough money?\tDisposez-vous de suffisamment d'argent ?\nDo you have enough money?\tAs-tu assez d'argent ?\nDo you have enough money?\tDisposes-tu de suffisamment d'argent ?\nDo you have lucid dreams?\tFais-tu des rêves éveillés ?\nDo you have lucid dreams?\tFaites-vous des rêves éveillés ?\nDo you have many friends?\tAvez-vous beaucoup d'amis ?\nDo you have other family?\tAs-tu quelque autre parent ?\nDo you have other family?\tAvez-vous quelque autre parent ?\nDo you have small change?\tAvez-vous de la petite monnaie ?\nDo you have the painting?\tAvez-vous le tableau ?\nDo you have the painting?\tDétenez-vous le tableau ?\nDo you have the painting?\tDétiens-tu le tableau ?\nDo you hit your children?\tFrappez-vous vos enfants ?\nDo you hit your children?\tFrappes-tu tes enfants ?\nDo you know how old I am?\tConnais-tu mon âge ?\nDo you know how to dance?\tSais-tu danser ?\nDo you know how to do it?\tSais-tu comment le faire ?\nDo you know how to drive?\tSais-tu conduire ?\nDo you know how to drive?\tSavez-vous conduire ?\nDo you know what he said?\tSais-tu ce qu'il a dit ?\nDo you know what he said?\tSavez-vous ce qu'il a dit ?\nDo you know what love is?\tSais-tu ce qu'est l'amour ?\nDo you know what love is?\tSavez-vous ce qu'est l'amour ?\nDo you know what this is?\tSavez-vous ce que c'est ?\nDo you know where I live?\tSavez-vous où j'habite ?\nDo you know where I live?\tSavez-vous où j'habite ?\nDo you know where I live?\tEst-ce que tu sais où j'habite ?\nDo you know where I live?\tSais-tu où je vis ?\nDo you know where she is?\tEst-ce que tu sais où elle est ?\nDo you know where she is?\tSais-tu où elle est  ?\nDo you know who they are?\tSavez-vous qui ils sont ?\nDo you know who they are?\tSavez-vous qui elles sont ?\nDo you know who they are?\tSais-tu qui ils sont ?\nDo you know who they are?\tSais-tu qui elles sont ?\nDo you like French opera?\tAppréciez-vous l'opéra français ?\nDo you like French opera?\tApprécies-tu l'opéra français ?\nDo you like French wines?\tAimes-tu les vins français ?\nDo you like French wines?\tAimez-vous les vins français ?\nDo you live in this dorm?\tVis-tu dans cette cité universitaire ?\nDo you live in this dorm?\tVivez-vous dans cette cité universitaire ?\nDo you love your country?\tAimez-vous votre pays ?\nDo you love your country?\tAimes-tu ton pays ?\nDo you mean what you say?\tTu dis ça sérieusement ?\nDo you mind if I ask why?\tVois-tu un inconvénient à ce que je demande pourquoi ?\nDo you mind if I ask why?\tVoyez-vous un inconvénient à ce que je demande pourquoi ?\nDo you mind if I come in?\tVois-tu un inconvénient à ce que j'entre ?\nDo you mind if I come in?\tVoyez-vous un inconvénient à ce que j'entre ?\nDo you mind if I join in?\tVoyez-vous un inconvénient à ce que je me joigne à vous ?\nDo you need an ambulance?\tAvez-vous besoin d'une ambulance ?\nDo you need an ambulance?\tRequiers-tu une ambulance ?\nDo you not know who I am?\tNe sais-tu pas qui je suis ?\nDo you plan to go abroad?\tPrévois-tu d'aller à l'étranger ?\nDo you plan to go abroad?\tPrévoyez-vous de vous rendre à l'étranger ?\nDo you plan to stay long?\tComptes-tu rester longtemps ?\nDo you plan to stay long?\tComptez-vous rester longtemps ?\nDo you really think that?\tLe pensez-vous vraiment ?\nDo you really think that?\tLe penses-tu vraiment ?\nDo you remember anything?\tVous rappelez-vous quoi que ce soit ?\nDo you remember anything?\tVous souvenez-vous de quoi que ce soit ?\nDo you remember anything?\tTe rappelles-tu quoi que ce soit ?\nDo you remember anything?\tTe souviens-tu de quoi que ce soit ?\nDo you speak French well?\tParlez-vous bien le français ?\nDo you talk to your cats?\tParlez-vous à vos chats ?\nDo you talk to your cats?\tParles-tu à tes chats ?\nDo you think I'm healthy?\tPenses-tu que je sois en bonne santé ?\nDo you think I'm healthy?\tPensez-vous que je sois en bonne santé ?\nDo you think Tom is sick?\tPenses-tu que Tom soit malade ?\nDo you think Tom is sick?\tPensez-vous que Tom soit malade ?\nDo you understand French?\tComprends-tu le français ?\nDo you understand or not?\tComprends-tu ou pas ?\nDo you understand or not?\tComprenez-vous ou pas ?\nDo you want some of this?\tVoulez-vous de ceci ?\nDo you want some of this?\tVeux-tu de ceci ?\nDo you want to get drunk?\tVeux-tu te saouler ?\nDo you want to get drunk?\tVoulez-vous vous saouler ?\nDo you want to get drunk?\tVeux-tu t'enivrer ?\nDo you want to get drunk?\tVoulez-vous vous enivrer ?\nDo you want to join them?\tVeux-tu les rejoindre ?\nDo you want to join them?\tVoulez-vous vous joindre à eux ?\nDoes Tom have green eyes?\tTom a-t-il les yeux verts ?\nDoes she always go there?\tS'y rend-elle toujours ?\nDoes she have a big nose?\tA-t-elle un gros nez ?\nDoes that make any sense?\tCela a-t-il le moindre sens ?\nDoes that make you angry?\tCela te met-il en colère ?\nDoes that make you angry?\tCela vous met-il en colère ?\nDoes the soup taste good?\tEst-ce que la soupe est bonne ?\nDoes this not please you?\tCela ne vous plaît-il pas ?\nDoes this not please you?\tCela ne te plaît-il pas ?\nDoesn't that smell great?\tEst-ce que ça ne sens pas super bon ?\nDon't be in such a hurry.\tIl ne faut pas être si pressé.\nDon't be late for school.\tNe soyez pas en retard à l'école.\nDon't be late for school.\tNe sois pas en retard pour l'école.\nDon't call the cops, man.\tN'appelle pas les flics, mec !\nDon't change the subject.\tNe change pas de sujet.\nDon't change the subject.\tNe changez pas de sujet.\nDon't come in! I'm naked.\tN'entre pas ! Je suis nu.\nDon't come in! I'm naked.\tN'entre pas ! Je suis nue.\nDon't come in! I'm naked.\tN'entrez pas ! Je suis nu.\nDon't come in! I'm naked.\tN'entrez pas ! Je suis nue.\nDon't do anything stupid.\tNe fais rien de stupide.\nDon't do anything stupid.\tNe faites rien de stupide.\nDon't dodge the question.\tN'éludez pas la question !\nDon't dodge the question.\tN'élude pas la question !\nDon't drink so much beer.\tNe bois pas autant de bière.\nDon't even bother coming.\tNe prends même pas la peine de venir.\nDon't even bother coming.\tNe prenez même pas la peine de venir.\nDon't ever call me again.\tNe me rappelez plus jamais !\nDon't ever call me again.\tNe me rappelle plus jamais !\nDon't ever do that again.\tNe refais jamais ça !\nDon't ever do that again.\tNe refaites jamais ça !\nDon't fall into her trap.\tNe tombe pas dans son piège !\nDon't forget the receipt.\tN'oubliez pas le ticket de caisse.\nDon't forget to tell Tom.\tN'oublie pas d'en parler à Tom.\nDon't forget to write me.\tN'oublie pas de m'écrire.\nDon't forget who you are.\tN'oubliez-pas qui vous êtes.\nDon't forget your things.\tN'oublie pas tes affaires.\nDon't forget your things.\tN'oubliez pas vos affaires.\nDon't forget your ticket.\tN'oubliez pas votre ticket.\nDon't get the wrong idea.\tNe te fais pas une idée erronée.\nDon't get the wrong idea.\tNe vous faites pas une idée erronée.\nDon't give him any ideas.\tNe lui donne pas d'idées !\nDon't give him any ideas.\tNe lui donnez pas d'idées !\nDon't hide under the bed.\tNe te cache pas sous le lit.\nDon't kill the messenger.\tNe tuez pas le messager !\nDon't let Tom use my car.\tNe laisse pas Tom utiliser ma voiture.\nDon't let Tom use my car.\tNe laissez pas Tom utiliser ma voiture.\nDon't let go of the rope.\tNe lâche pas la corde.\nDon't let the dog inside.\tNe laissez pas entrer le chien.\nDon't lie about your age.\tNe mens pas sur ton âge.\nDon't listen to that man.\tN'écoute pas cet homme.\nDon't listen to that man.\tN'écoutez pas cet homme.\nDon't look so suspicious.\tN'aie pas l'air si suspicieux !\nDon't look so suspicious.\tN'aie pas l'air si suspicieuse !\nDon't look so suspicious.\tN'ayez pas l'air si suspicieux !\nDon't look so suspicious.\tN'ayez pas l'air si suspicieuse !\nDon't look so suspicious.\tN'ayez pas l'air si suspicieuses !\nDon't make fun of others.\tNe vous moquez pas des autres.\nDon't make fun of others.\tNe te moque pas des autres.\nDon't make me beg for it.\tNe me force pas à supplier !\nDon't make me beg for it.\tNe me forcez pas à supplier !\nDon't make so much noise.\tNe fais pas autant de bruit.\nDon't make so much noise.\tNe faites pas tant de bruit.\nDon't make such a racket!\tNe fais donc pas un tel vacarme !\nDon't make this personal.\tNe le prends pas personnellement !\nDon't make this personal.\tNe le prenez pas personnellement !\nDon't move or I'll shoot.\tNe bouge pas ou je tire.\nDon't move or I'll shoot.\tNe bougez pas ou je tire !\nDon't move or I'll shoot.\tNe bouge pas ou je tire !\nDon't play baseball here.\tNe jouez pas au base-ball ici.\nDon't play games with me.\tNe joue pas avec moi !\nDon't play games with me.\tNe jouez pas avec moi !\nDon't play in the street.\tNe joue pas dans la rue.\nDon't scare me like that!\tNe m'effraie pas comme ça !\nDon't smoke in this room.\tIl ne faut pas fumer dans cette pièce.\nDon't stay out all night.\tNe restez pas dehors toute la nuit !\nDon't stay out all night.\tNe reste pas dehors toute la nuit !\nDon't take any prisoners.\tNe faites aucun prisonnier.\nDon't take any prisoners.\tNe fais aucun prisonnier.\nDon't take it personally.\tNe le prends pas pour toi.\nDon't take it personally.\tNe le prends pas personnellement.\nDon't take it personally.\tNe le prenez pas personnellement.\nDon't take it personally.\tNe le prenez pas pour vous.\nDon't take it personally.\tNe le prenez pas à votre compte.\nDon't tell me to go home.\tNe me dites pas d'aller chez moi !\nDon't tell me to go home.\tNe me dis pas d'aller chez moi !\nDon't tell me to go home.\tNe me dites pas de m'en aller chez moi !\nDon't tell me to go home.\tNe me dis pas de m'en aller chez moi !\nDon't tell me to shut up.\tNe me dites pas de me taire !\nDon't tell me to shut up.\tNe me dis pas de me taire !\nDon't tell me what I saw.\tNe me dictez pas ce que j'ai vu !\nDon't tell me what I saw.\tNe me dicte pas ce que j'ai vu !\nDon't tell me what to do.\tNe me dis pas quoi faire !\nDon't tell me what to do.\tNe me dites pas quoi faire !\nDon't tell me who I like.\tNe me dictez pas qui je dois apprécier !\nDon't tell me who I like.\tNe me dicte pas qui je dois apprécier !\nDon't tell my girlfriend.\tNe dites rien à ma nana !\nDon't tell my girlfriend.\tNe dites rien à ma petite copine !\nDon't tell my girlfriend.\tNe dites rien à ma petite amie !\nDon't tell my girlfriend.\tNe dites rien à ma blonde !\nDon't tell my girlfriend.\tNe dis rien à ma nana !\nDon't tell my girlfriend.\tNe dis rien à ma petite amie !\nDon't tell my girlfriend.\tNe dis rien à ma petite copine !\nDon't they drive you mad?\tNe vous rendent-ils pas fou ?\nDon't they drive you mad?\tNe vous rendent-elles pas fou ?\nDon't they drive you mad?\tNe vous rendent-ils pas folle ?\nDon't they drive you mad?\tNe vous rendent-elles pas folle ?\nDon't they drive you mad?\tNe vous rendent-elles pas fous ?\nDon't they drive you mad?\tNe vous rendent-elles pas folles ?\nDon't they drive you mad?\tNe vous rendent-ils pas fous ?\nDon't they drive you mad?\tNe vous rendent-ils pas folles ?\nDon't they drive you mad?\tNe vous font-ils pas tourner bourrique ?\nDon't they drive you mad?\tNe vous font-elles pas tourner bourrique ?\nDon't they drive you mad?\tNe vous font-ils pas tourner bourriques ?\nDon't they drive you mad?\tNe vous font-elles pas tourner bourriques ?\nDon't trust what he says.\tNe te fie pas à ce qu'il dit !\nDon't trust what he says.\tNe vous fiez pas à ce qu'il dit !\nDon't try God's patience.\tN'éprouvez pas la patience de Dieu !\nDon't try anything funny.\tNe fais rien de bizarre.\nDon't try anything funny.\tPas de bêtises !\nDon't try to do too much.\tN'essayez pas d'en faire trop !\nDon't try to do too much.\tN'essaye pas d'en faire trop !\nDon't try to do too much.\tN'essaie pas d'en faire trop !\nDon't try to do too much.\tN'essayez pas de trop en faire !\nDon't try to do too much.\tN'essaye pas de trop en faire !\nDon't try to do too much.\tN'essaie pas de trop en faire !\nDon't turn off the light.\tN'éteins pas la lumière.\nDon't use too much water.\tN'utilisez pas trop d'eau.\nDon't use too much water.\tN'utilise pas trop d'eau.\nDon't use your real name.\tN'utilise pas ton vrai nom.\nDon't use your real name.\tN'utilisez pas votre vrai nom.\nDon't worry about it, OK?\tNe te fais pas de souci à ce sujet, d'accord ?\nDon't worry about it, OK?\tNe vous faites pas de souci à ce sujet, d'accord ?\nDon't worry about others.\tNe te fais pas de souci pour les autres.\nDon't worry about others.\tNe te fais pas de soucis pour les autres.\nDon't you ever come back.\tNe revenez jamais !\nDon't you ever come back.\tNe reviens jamais !\nDon't you have a bicycle?\tNe possèdes-tu pas de vélo ?\nDon't you have a bicycle?\tN'avez-vous pas de vélo ?\nDon't you know me at all?\tMe connais-tu le moins du monde ?\nDon't you know me at all?\tMe connaissez-vous le moins du monde ?\nDon't you recognize them?\tNe les reconnais-tu pas ?\nDon't you recognize them?\tNe les reconnaissez-vous pas ?\nDon't you tell me my job.\tNe me dites pas quel est mon boulot !\nDon't you tell me my job.\tNe me dis pas quel est mon boulot !\nDon't you want to go out?\tNe veux-tu pas aller dehors ?\nDon't you want to go out?\tNe voulez-vous pas aller dehors ?\nDouble-click on the icon.\tDouble-cliquez sur l'icône.\nDrugs can ruin your life.\tLa drogue peut foutre ta vie en l'air.\nDrugs can ruin your life.\tLa drogue peut détruire ta vie.\nEach of them sang a song.\tChacun d'entre eux a chanté une chanson.\nEither come in or go out.\tSoit tu rentres, soit tu sors.\nEither you or I am right.\tSoit tu as raison, soit c'est moi.\nEither you or I am wrong.\tL'un de nous deux a tort.\nEnthusiasm is contagious.\tL'enthousiasme est contagieux.\nEvery house had a garden.\tToutes les maisons avaient un jardin.\nEverybody knows his name.\tTout le monde connaît son nom.\nEverybody knows the news.\tTout le monde connaît la nouvelle.\nEverybody laughed at Tom.\tTout le monde se moqua de Tom.\nEverybody laughed at Tom.\tTout le monde a rit de Tom.\nEverybody looked nervous.\tTout le monde avait l'air nerveux.\nEverybody loves a winner.\tC'est dans le malheur qu'on reconnaît ses amis.\nEverybody makes mistakes.\tTout le monde commet des fautes.\nEverybody makes mistakes.\tTout le monde commet des erreurs.\nEveryone dies eventually.\tTout le monde meurt un jour.\nEveryone looked relieved.\tTout le monde eut l'air soulagé.\nEveryone looked relieved.\tTout le monde a eu l'air soulagé.\nEveryone looks exhausted.\tTout le monde a l'air crevé.\nEveryone looks exhausted.\tTout le monde a l'air épuisé.\nEveryone praises the boy.\tChacun loue le garçon.\nEveryone seeks happiness.\tTout le monde recherche le bonheur.\nEveryone started arguing.\tTout le monde commença à se disputer.\nEveryone started arguing.\tTout le monde a commencé à se disputer.\nEveryone started arguing.\tTout le monde se mit à se disputer.\nEveryone started arguing.\tTout le monde s'est mis à se disputer.\nEveryone stayed standing.\tTout le monde resta debout.\nEveryone stayed standing.\tTout le monde est resté debout.\nEveryone wants something.\tTout le monde veut quelque chose.\nEverything has a purpose.\tTout a une fin.\nEverything is negotiable.\tTout est négociable.\nEverything was very good.\tTout était très bon.\nEverything went smoothly.\tTout s'est déroulé en douceur.\nEverything went smoothly.\tTout se déroula en douceur.\nExcuse me for being late.\tJe suis désolé de venir en retard.\nExcuse me for one moment.\tExcusez-moi, un instant.\nFaith can move mountains.\tLa foi peut soulever des montagnes.\nFake it till you make it.\tFais semblant en attendant de le faire.\nFake it till you make it.\tFaites semblant en attendant de le faire.\nFather manages the store.\tPapa gère le magasin.\nFill the jars with water.\tEmplis d'eau les bocaux.\nFill the jars with water.\tEmplissez d'eau les bocaux.\nFinish your work quickly.\tTerminez vite votre travail.\nFire is always dangerous.\tLe feu sera toujours dangereux.\nFive plus three is eight.\tCinq plus trois égalent huit.\nFive plus three is eight.\tCinq et trois donnent huit.\nFive plus three is eight.\tCinq plus trois fait huit.\nFlour is made from wheat.\tLa farine est faite à partir du blé.\nFlour is made from wheat.\tLa farine est faite à partir de blé.\nFlour is made into bread.\tLa farine est transformée en pain.\nFlour is made into bread.\tÀ partir de la farine, on fait du pain.\nGerms can cause sickness.\tLes germes peuvent provoquer des maladies.\nGet down from your horse.\tDescends de ton cheval.\nGet off at the next stop.\tDescendez au prochain arrêt.\nGet out of the classroom.\tSors de la classe.\nGet out of the classroom.\tSortez de la classe.\nGet that thing off of me.\tEnlève cette chose de moi !\nGet that thing off of me.\tRetire-moi cette chose !\nGet that thing off of me.\tEnlevez cette chose de moi !\nGet that thing off of me.\tRetirez-moi cette chose !\nGet them out of my sight.\tRetire-les de ma vue !\nGet them out of my sight.\tRetirez-les de ma vue !\nGet your things together.\tRassemble tes affaires.\nGive him my best regards.\tTransmettez-lui mes bien sincères salutations.\nGive me a bottle of wine.\tDonne-moi une bouteille de vin.\nGive me a call later, OK?\tAppelle-moi plus tard, d'accord ?\nGive me a coffee, please.\tDonnez-moi un café, s'il vous plaît.\nGive me a coffee, please.\tDonne-moi un café, s'il te plait.\nGive me a coffee, please.\tDonnez-moi un café, s'il vous plait.\nGive me a coffee, please.\tDonnez-moi un café, je vous prie.\nGive me a glass of water.\tDonnez-moi un verre d'eau, s'il vous plaît.\nGive me a hand with this.\tDonne-moi un coup de main pour ça.\nGive me a hand with this.\tDonnez-moi un coup de main pour ceci.\nGive me a piece of chalk.\tDonnez-moi un morceau de craie.\nGive me a piece of paper.\tDonnez-moi un bout de papier !\nGive me a piece of paper.\tDonne-moi un bout de papier !\nGive me something to eat.\tDonne-moi quelque chose à manger.\nGive me the bill, please.\tJ'aimerais la note, je vous prie.\nGive me the salt, please.\tDonne-moi le sel, s'il te plaît.\nGive me the same, please.\tDonnez-moi la même chose, s'il vous plaît.\nGive the money to my son.\tDonne l'argent à mon fils.\nGive the money to my son.\tDonnez l'argent à mon fils.\nGo ahead with your story.\tPoursuis ton histoire.\nGo and help your brother.\tVa aider ton frère !\nGo and help your brother.\tAllez aider votre frère !\nGo and see him in person.\tAllez le voir en personne.\nGood luck convincing him.\tBonne chance pour le convaincre !\nGood luck to both of you.\tBonne chance à vous deux.\nGood students study hard.\tLes bons étudiants travaillent dur.\nGrab as much as you need.\tSers-t'en tant que tu en as besoin.\nGrab as much as you need.\tServez-vous-en tant que vous en avez besoin.\nGrab as much as you need.\tEmpoigne-s-en autant que tu en as besoin.\nGrab as much as you need.\tEmpoignez-en autant que vous en avez besoin.\nGrandpa bought it for me!\tGrand-père me l'a acheté !\nGreed is not always good.\tL'avidité n'est pas toujours bonne.\nHas Father come home yet?\tEst-ce que mon père est déjà rentré ?\nHas this happened before?\tEst-ce arrivé auparavant ?\nHave I changed that much?\tAi-je tant changé ?\nHave I left anything out?\tAi-je omis quoi que ce soit ?\nHave I made myself clear?\tMe suis-je fait comprendre ?\nHave you already met her?\tL'as-tu déjà rencontrée ?\nHave you already met him?\tL'as-tu déjà rencontrée ?\nHave you been here since?\tEs-tu venu ici depuis ?\nHave you been mistreated?\tAvez-vous été maltraité ?\nHave you been mistreated?\tAs-tu été maltraité ?\nHave you been out at all?\tEs-tu sorti le moins du monde ?\nHave you been out at all?\tÊtes-vous sorti le moins du monde ?\nHave you decided already?\tVous êtes-vous déjà décidé ?\nHave you eaten lunch yet?\tAs-tu déjà déjeuné ?\nHave you eaten lunch yet?\tAvez-vous déjà déjeuné ?\nHave you eaten lunch yet?\tAs-tu déjà dîné ?\nHave you eaten lunch yet?\tAvez-vous déjà dîné ?\nHave you ever been on TV?\tEs-tu jamais passé à la télévision ?\nHave you ever been on TV?\tÊtes-vous jamais passé à la télévision ?\nHave you ever been on TV?\tEs-tu jamais passée à la télévision ?\nHave you ever been on TV?\tÊtes-vous jamais passée à la télévision ?\nHave you ever been on TV?\tÊtes-vous jamais passés à la télévision ?\nHave you ever been on TV?\tÊtes-vous jamais passées à la télévision ?\nHave you ever been there?\tY as-tu jamais été ?\nHave you ever been there?\tY avez-vous jamais été ?\nHave you ever seen a UFO?\tAs-tu déjà vu un OVNI ?\nHave you ever sold a car?\tAs-tu déjà vendu une voiture ?\nHave you ever sold a car?\tAvez-vous déjà vendu une voiture ?\nHave you met him already?\tL'as-tu déjà rencontré ?\nHave you seen Tom lately?\tAvez-vous vu Tom dernièrement ?\nHave you seen Tom lately?\tAs-tu vu Tom dernièrement ?\nHave you seen him before?\tL'avez-vous vu auparavant ?\nHave you seen him before?\tL'as-tu vu auparavant ?\nHave you seen my new car?\tAs-tu vu ma nouvelle auto ?\nHave you told her mother?\tL'as-tu dit à sa mère ?\nHave you told her mother?\tL'avez-vous dit à sa mère ?\nHave you tried it before?\tL'as-tu essayé auparavant ?\nHave you tried it before?\tL'as-tu goûté auparavant ?\nHave you tried it before?\tL'avez-vous essayé auparavant ?\nHave you tried it before?\tL'avez-vous goûté auparavant ?\nHe acts like a rock star.\tIl se comporte en vedette du rock.\nHe admitted his mistakes.\tIl admit ses erreurs.\nHe admitted his mistakes.\tIl reconnut ses erreurs.\nHe and I walked together.\tLui et moi marchâmes de concert.\nHe appeared from nowhere.\tIl est apparu de nulle part.\nHe arrived late as usual.\tIl est arrivé en retard comme d'habitude.\nHe arrived shortly after.\tIl est arrivé un peu après.\nHe asked after my mother.\tIl a pris des nouvelles de ma mère.\nHe asked for a cigarette.\tIl a demandé une cigarette.\nHe asked for a pay raise.\tIl demanda une augmentation.\nHe asked for a pay raise.\tIl a demandé une augmentation.\nHe assigned me a new job.\tIl m'affecta à une autre tâche.\nHe barely speaks English.\tIl ne parle guère anglais.\nHe became a famous actor.\tIl est devenu un acteur célèbre.\nHe began to make excuses.\tIl commença à invoquer des prétextes.\nHe believed in the truth.\tIl croyait en la vérité.\nHe bought us some drinks.\tIl nous paya quelques verres.\nHe bought us some drinks.\tIl nous a payé quelques verres.\nHe came back last August.\tIl est revenu en août dernier.\nHe came down with a cold.\tIl a attrapé la grippe.\nHe came here before noon.\tIl est arrivé ici avant midi.\nHe can't be under thirty.\tIl ne peut pas avoir moins de 30 ans.\nHe can't control himself.\tIl n'arrive pas à se contrôler.\nHe can't have told a lie.\tIl n'a pu dire un mensonge.\nHe cannot have said that.\tIl ne peut pas avoir dit cela.\nHe caught her by the arm.\tIl l'attrapa par le bras.\nHe caught me by the hand.\tIl m'a attrapé par la main.\nHe caught me by the neck.\tIl m'a attrapé par le cou.\nHe consented on the spot.\tIl y a immédiatement consenti.\nHe couldn't help himself.\tIl ne pouvait pas s'en empêcher.\nHe couldn't help himself.\tIl ne pourrait pas s'en empêcher.\nHe cut the apple in half.\tIl partagea la pomme en deux.\nHe cut the envelope open.\tIl ouvrit l'enveloppe.\nHe danced all night long.\tIl a dansé toute la nuit.\nHe danced all night long.\tIl dansa toute la nuit.\nHe denied having done it.\tIl a nié l'avoir fait.\nHe denied having met her.\tIl nia l'avoir rencontrée.\nHe denied it immediately.\tIl le nia immédiatement.\nHe denied the accusation.\tIl nia l'accusation.\nHe denies having done it.\tIl nie avoir fait cela.\nHe denies having done it.\tIl nie l'avoir fait.\nHe did a pretty good job.\tIl a fait un assez bon boulot.\nHe did a pretty good job.\tIl fit un assez bon boulot.\nHe did it for his family.\tIl l'a fait pour sa famille.\nHe did not die of cancer.\tIl n'est pas mort d'un cancer.\nHe did not like children.\tIl n'aimait pas les enfants.\nHe did the best he could.\tIl fit du mieux qu'il pouvait.\nHe did the best he could.\tIl a fait du mieux qu'il pouvait.\nHe did what he had to do.\tIl fit ce qu'il avait à faire.\nHe did what he had to do.\tIl a fait ce qu'il avait à faire.\nHe didn't pass after all.\tIl a échoué, après tout.\nHe died a few days later.\tIl mourut quelques jours plus tard.\nHe died a few days later.\tIl est mort quelques jours plus tard.\nHe died at the age of 70.\tIl est mort à l'âge de 70 ans.\nHe died before I arrived.\tIl mourut avant que j'arrive.\nHe died before I arrived.\tIl est mort avant que j'arrive.\nHe disregarded my advice.\tIl ignora mon conseil.\nHe disregarded my advice.\tIl a ignoré mes conseils.\nHe does not get up early.\tIl ne se lève pas tôt.\nHe doesn't drink anymore.\tIl ne boit plus.\nHe doesn't have a family.\tIl n'a pas de famille.\nHe doesn't have a hat on.\tIl ne porte pas de chapeau.\nHe doesn't have a hat on.\tIl n'est pas coiffé.\nHe doesn't have a sister.\tIl n'a pas de sœur.\nHe doesn't live far away.\tIl n'habite pas loin.\nHe doesn't understand me.\tIl ne me comprend pas.\nHe drank a cup of coffee.\tIl a bu une tasse de café.\nHe drew a chair near her.\tIl déplaça une chaise à côté d'elle.\nHe drives a hard bargain.\tIl est dur à cuire.\nHe drives a pickup truck.\tIl conduit une camionnette.\nHe dropped the anchovies.\tIl a fait tomber les anchois.\nHe dwells in the country.\tIl habite à la campagne.\nHe extinguished the fire.\tIl éteignit le feu.\nHe fell and hurt his leg.\tIl est tombé et s'est fait mal à la jambe.\nHe fell in love with her.\tIl est tombé amoureux d'elle.\nHe fired most of his men.\tIl a licencié la plupart de ses hommes.\nHe found me a good place.\tIl m'a trouvé un bon endroit.\nHe found the door closed.\tIl trouva la porte fermée.\nHe found the door locked.\tIl trouva la porte verrouillée.\nHe gave a sigh of relief.\tIl poussa un soupir de soulagement.\nHe gave me all his money.\tIl me donna tout son argent.\nHe gave me what I needed.\tIl me donna ce dont j'avais besoin.\nHe got wonderful results.\tIl a obtenu de merveilleux résultats.\nHe grinned broadly at us.\tIl nous fit un large sourire.\nHe had a rough childhood.\tIl a eu une enfance rude.\nHe had a rough childhood.\tIl eut une enfance rude.\nHe had been there before.\tIl y avait été auparavant.\nHe had dinner by himself.\tIl dîna seul.\nHe had dinner by himself.\tIl a dîné seul.\nHe had his share of luck.\tIl a eu sa part de chance.\nHe had his wallet stolen.\tSon portefeuille était volé.\nHe had to clean his room.\tIl devait ranger sa chambre.\nHe had trouble breathing.\tIl éprouvait des difficultés à respirer.\nHe has a friendly nature.\tIl est de nature amicale.\nHe has a generous nature.\tIl est de nature généreuse.\nHe has a good reputation.\tIl a une bonne réputation.\nHe has a small advantage.\tIl a un petit avantage.\nHe has a very good voice.\tIl est doté d'une très belle voix.\nHe has already gone home.\tIl est déjà rentré à la maison.\nHe has already had lunch.\tIl a déjà déjeuné.\nHe has ants in his pants.\tIl bout d'impatience.\nHe has broken the record.\tIl a battu le record.\nHe has lots of new ideas.\tIl a beaucoup d'idées neuves.\nHe has lots of new ideas.\tIl a beaucoup de nouvelles idées.\nHe has made me what I am.\tIl a fait de moi ce que je suis.\nHe has never been abroad.\tIl n'est jamais allé à l'étranger.\nHe has never hurt anyone.\tIl n'a jamais fait de mal à qui que ce soit.\nHe has never played golf.\tIl n'a jamais joué au golf.\nHe has nobody to consult.\tIl n'a personne à consulter.\nHe has not yet succeeded.\tIl n'a pas encore réussi.\nHe has written two books.\tIl a écrit deux livres.\nHe heard his name called.\tIl a entendu qu'on appelait son nom.\nHe heard the dog barking.\tIl entendit le chien aboyer.\nHe insulted me in public.\tIl m'a insulté publiquement.\nHe intended to marry her.\tIl avait l'intention de l'épouser.\nHe invited me to a party.\tIl m'a invité à une fête.\nHe is a man of character.\tC’est un homme de caractère.\nHe is a man of few words.\tIl est homme de peu de mots.\nHe is a pretty great guy.\tC'est un type assez connu.\nHe is a typical Japanese.\tC'est un Japonais typique.\nHe is absent from school.\tIl est absent de l'école.\nHe is afraid of swimming.\tIl a peur de nager.\nHe is after a better job.\tIl est à la recherche d'un meilleur boulot.\nHe is always complaining.\tIl se plaint tout le temps.\nHe is an intelligent boy.\tC'est un garçon intelligent.\nHe is armed to the teeth.\tIl est armé jusqu'aux dents.\nHe is being very careful.\tIl est très prudent.\nHe is busy with his work.\tIl est occupé avec son travail.\nHe is by no means bright.\tIl n'est pas du tout brillant.\nHe is crazy about skiing.\tIl est fou de ski.\nHe is employed in a bank.\tIl est employé de banque.\nHe is fresh from college.\tIl vient de sortir de l'université.\nHe is fresh from college.\tIl est frais émoulu de l'école.\nHe is fresh from college.\tIl est frais émoulu de l'université.\nHe is good at gymnastics.\tIl est bon en gymnastique.\nHe is impossible to beat.\tIl est impossible de le battre.\nHe is known to everybody.\tIl est connu de tous.\nHe is liked by everybody.\tTout le monde l'aime.\nHe is liked by everybody.\tIl est aimé de tous.\nHe is not at all foolish.\tIl n'est vraiment pas fou.\nHe is opening the window.\tIl est en train d'ouvrir la fenêtre.\nHe is painting a picture.\tIl est en train de peindre un tableau.\nHe is seeking employment.\tIl cherche un emploi.\nHe is selfish and greedy.\tIl est égoïste et cupide.\nHe is stronger than ever.\tIl est plus fort que jamais.\nHe is such a lazy fellow.\tC'est une personne terriblement fainéante.\nHe is very fond of music.\tIl aime beaucoup la musique.\nHe isn't afraid of death.\tIl n'a pas peur de la mort.\nHe jumped into the water.\tIl sauta dans l'eau.\nHe jumped into the water.\tIl a sauté dans l'eau.\nHe jumped out the window.\tIl a sauté par la fenêtre.\nHe keeps this gun loaded.\tIl garde ce pistolet chargé.\nHe kept reading the book.\tIl a continué à lire le livre.\nHe knows a lot of people.\tIl connaît beaucoup de gens.\nHe knows what's going on.\tIl sait ce qui se passe.\nHe led us to the station.\tIl nous a emmenés à la gare.\nHe left Japan for Europe.\tIl a quitté le Japon pour l'Europe.\nHe let me leave the room.\tIl me laissa quitter la pièce.\nHe leveled his gun at me.\tIl pointa son arme vers moi.\nHe lifted her in the air.\tIl la souleva en l'air.\nHe lifted her in the air.\tIl l'a soulevée en l'air.\nHe likes games of chance.\tIl aime les jeux de hasard.\nHe likes music very much.\tIl aime beaucoup la musique.\nHe likes new experiences.\tIl aime les nouvelles expériences.\nHe likes to talk of love.\tIl aime parler d'amour.\nHe lived an unhappy life.\tIl vécut une vie malheureuse.\nHe lives in an apartment.\tIl vit dans un appartement.\nHe lives next door to us.\tIl habite à côté de chez nous.\nHe lives next door to us.\tIl habite à côté.\nHe lives with his mother.\tIl vit avec sa mère.\nHe longed for his mother.\tSa mère lui manquait.\nHe looked at her angrily.\tIl la regarda avec colère.\nHe looked me in the face.\tIl m'a regardé droit dans les yeux.\nHe looked over my report.\tIl parcourut mon rapport.\nHe looked over my report.\tIl a parcouru mon rapport.\nHe looks like his father.\tIl ressemble à son père.\nHe looks much better now.\tIl a l'air beaucoup mieux maintenant.\nHe looks old for his age.\tIl fait vieux pour son âge.\nHe looks old for his age.\tIl a l'air vieux pour son âge.\nHe lost all of his money.\tIl a perdu tout son argent.\nHe lost his movie ticket.\tIl a perdu son billet de cinéma.\nHe loves me for who I am.\tIl m'aime pour ce que je suis.\nHe made a will last year.\tIl a fait un testament l'année dernière.\nHe made friends with Tom.\tIl s'est lié d'amitié avec Tom.\nHe made fun of my accent.\tIl s'est moqué de mon accent.\nHe made fun of my accent.\tIl se moqua de mon accent.\nHe married a pretty girl.\tIl épousa une jolie fille.\nHe may have lost his way.\tIl a peut-être perdu son chemin.\nHe might change his mind.\tIl se pourrait qu'il change d'avis.\nHe missed the last train.\tIl a raté le dernier train.\nHe must be Tom's brother.\tIl doit être le frère de Tom.\nHe must be an honest man.\tCe doit être un homme honnête.\nHe must be the principal.\tIl doit être le principal.\nHe never breaks promises.\tIl ne rompt jamais ses promesses.\nHe never breaks promises.\tIl ne rompt jamais de promesses.\nHe never talked about it.\tIl n'en a jamais parlé.\nHe never talked about it.\tIl n'en parla jamais.\nHe noticed straight away.\tIl l'a tout de suite remarqué.\nHe noticed straight away.\tIl le remarqua immédiatement.\nHe nudged me to go ahead.\tIl me poussa du coude à poursuivre.\nHe often calls her names.\tIl lui adresse souvent des injures.\nHe often walks to school.\tIl se rend souvent à l'école à pied.\nHe opened his mouth wide.\tIl ouvrit grand sa bouche.\nHe owns a good few sheep.\tIl possède bon nombre de moutons.\nHe painted the door blue.\tIl a peint la porte en bleue.\nHe painted the door blue.\tIl peignit la porte en bleu.\nHe picked up a red stone.\tIl ramassa une pierre rouge.\nHe plays chess very well.\tIl joue très bien aux échecs.\nHe plays poker with them.\tIl joue au poker avec eux.\nHe plays the guitar well.\tIl joue bien de la guitare.\nHe promised to marry her.\tIl promit de se marier avec elle.\nHe promised to marry her.\tIl a promis de l’épouser.\nHe promised to marry her.\tIl promit de l'épouser.\nHe put on clean trousers.\tIl a mis un pantalon propre.\nHe put on the black coat.\tIl a mis le manteau noir.\nHe put on the red jacket.\tIl mit la veste rouge.\nHe quit school last week.\tIl a abandonné l'école, la semaine passée.\nHe really makes me angry.\tIl me met vraiment en colère.\nHe received me cordially.\tIl m'a reçu chaleureusement.\nHe repeated his question.\tIl répéta sa question.\nHe resigned as president.\tIl a démissionné de son poste de président.\nHe ripped his shirt open.\tIl arracha sa chemise.\nHe ripped his shirt open.\tIl a arraché sa chemise.\nHe runs well for his age.\tIl court bien pour son âge.\nHe saved himself somehow.\tIl s'en est sorti, d'une manière ou d'une autre.\nHe saw that he was wrong.\tIl se rendit compte qu'il avait tort.\nHe seemed really nervous.\tIl avait l'air vraiment nerveux.\nHe seemed really nervous.\tIl semblait vraiment nerveux.\nHe seldom goes to church.\tIl va rarement à l'église.\nHe set his house on fire.\tIl mit le feu à sa propre maison.\nHe set his house on fire.\tIl a mis le feu à sa maison.\nHe shooed the flies away.\tIl chassa les mouches.\nHe showed a lot of skill.\tIl a montré beaucoup d'habileté.\nHe showed a lot of skill.\tIl a fait preuve de beaucoup d'adresse.\nHe showed a lot of skill.\tIl a montré beaucoup de compétence.\nHe slammed his door shut.\tIl claqua sa porte.\nHe slammed his door shut.\tIl a claqué sa porte.\nHe slept well last night.\tIl a bien dormi cette nuit.\nHe slept well last night.\tIl a bien dormi la nuit dernière.\nHe speaks fluent English.\tIl parle couramment l'anglais.\nHe spends too much money.\tIl dépense trop d'argent.\nHe spoke well of her son.\tIl dit du bien de son fils.\nHe spoke well of her son.\tIl parla en bien de son fils.\nHe stole a kiss from her.\tIl lui a volé un baiser.\nHe studied for ten years.\tIl a étudié durant dix ans.\nHe succeeded in business.\tIl eut du succès en affaires.\nHe succeeded in business.\tIl a eu du succès en affaires.\nHe suffered great losses.\tIl a souffert de lourdes pertes.\nHe survived the accident.\tIl a survécu à l'accident.\nHe talks very cheerfully.\tIl parle très gaiement.\nHe taught himself French.\tIl s'est enseigné le français.\nHe taught me how to swim.\tIl m'a enseigné à nager.\nHe thanked me for coming.\tIl me remercia d'être venu.\nHe told me where to shop.\tIl m'a dit où faire les magasins.\nHe told us to keep quiet.\tIl nous dit de rester calme.\nHe took a taxi both ways.\tIl a pris un taxi à l'aller et au retour.\nHe took off his overcoat.\tIl retira son manteau.\nHe took off his overcoat.\tIl retira son pardessus.\nHe took on extra workers.\tIl embaucha de nouveaux ouvriers.\nHe took part in the race.\tIl a participé à la course.\nHe treats me as an adult.\tIl me traite comme un adulte.\nHe treats me as an adult.\tIl me traite en adulte.\nHe tried to kill himself.\tIl a tenté de se suicider.\nHe understands the risks.\tIl comprend les risques.\nHe used to read at night.\tIl avait l'habitude de lire la nuit.\nHe usually comes in time.\tIl vient d'ordinaire à l'heure.\nHe waited until she came.\tIl attendit jusqu'à ce qu'elle vienne.\nHe waited until she came.\tIl a attendu jusqu'à ce qu'elle vienne.\nHe walked in front of me.\tIl marchait devant moi.\nHe wanted to be a farmer.\tIl voulait être fermier.\nHe wants to be different.\tIl veut être différent.\nHe wants to see us again.\tIl veut nous revoir.\nHe was accused of murder.\tIl fut accusé de meurtre.\nHe was alone in the room.\tIl était seul dans la pièce.\nHe was alone in the room.\tIl était seul dans la salle.\nHe was beaten too easily.\tIl s'est fait battre trop facilement.\nHe was declared bankrupt.\tIl fut déclaré en faillite.\nHe was elected president.\tIl a été élu président.\nHe was every inch a king.\tIl avait tout d'un roi.\nHe was exposed to danger.\tIl a été exposé au danger.\nHe was given up for dead.\tIl a été laissé pour mort.\nHe was hanged for murder.\tIl a été pendu pour meurtre.\nHe was happy being a Jew.\tIl était heureux d'être juif.\nHe was held in captivity.\tIl était retenu en captivité.\nHe was humiliated by her.\tElle l'humilia.\nHe was humiliated by her.\tElle l'a humilié.\nHe was killed in the war.\tIl a été tué à la guerre.\nHe was killed in the war.\tIl fut tué à la guerre.\nHe was knee-deep in snow.\tIl était dans la neige jusqu'aux genoux.\nHe was lying on his back.\tIl était allongé sur le dos.\nHe was lying on his back.\tIl était couché sur le dos.\nHe was paralyzed by fear.\tIl était paralysé par la peur.\nHe was passive by nature.\tIl était de nature passive.\nHe was playing the piano.\tIl jouait du piano.\nHe was small, but strong.\tIl était petit mais fort.\nHe was sworn in as mayor.\tIl a prêté serment en tant que maire.\nHe was the last to leave.\tIl fut le dernier à partir.\nHe was the last to leave.\tIl a été le dernier à partir.\nHe was very busy all day.\tIl a été très occupé toute la journée.\nHe went aboard the plane.\tIl est monté à bord de l'avion.\nHe went aboard the plane.\tIl a embarqué dans l'avion.\nHe went there by himself.\tIl s'y rendit par ses propres moyens.\nHe went there by himself.\tIl est allé là-bas seul.\nHe went to Boston by car.\tIl est allé à Boston en voiture.\nHe whipped out his sword.\tIl tira son épée en un éclair.\nHe whipped out his sword.\tIl dégaina son épée en un éclair.\nHe who hesitates is lost.\tCelui qui hésite est perdu.\nHe will be busy tomorrow.\tIl sera occupé demain.\nHe will come in a moment.\tIl va venir dans un instant.\nHe will keep us informed.\tIl va nous tenir informés.\nHe will love her forever.\tIl l'aimera à jamais.\nHe will not listen to me.\tIl ne va pas m'écouter.\nHe will soon be a father.\tIl sera bientôt père.\nHe won many competitions.\tIl a gagné beaucoup de compétitions.\nHe wore a light blue tie.\tIl portait une cravate bleu clair.\nHe worked for a rich man.\tIl a travaillé pour un homme riche.\nHe worked for a rich man.\tIl travaillait pour un richard.\nHe worked for a rich man.\tIl travaillait pour un homme riche.\nHe works as a translator.\tIl travaille comme traducteur.\nHe works the night shift.\tIl travaille en équipe de nuit.\nHe would let me help him.\tIl me laisserait l'aider.\nHe would let me help him.\tIl me laissait l'aider.\nHe writes me once a week.\tIl m’écrit une fois par semaine.\nHe wrote to me yesterday.\tIl m'a écrit hier.\nHe'll be here any second.\tIl sera là à tout moment.\nHe's a bit of a drunkard.\tIl est un peu alcoolique.\nHe's a cold-hearted jerk.\tC'est un pauvre type sans cœur.\nHe's a powerful sorcerer.\tC'est un puissant sorcier.\nHe's a strange character.\tC'est un drôle de personnage.\nHe's a very talented man.\tC'est un homme très talentueux.\nHe's always dissatisfied.\tIl est constamment insatisfait.\nHe's an excellent kisser.\tIl embrasse sublimement.\nHe's ashamed of his body.\tIl a honte de son corps.\nHe's at church right now.\tIl est à l'église en ce moment.\nHe's been dead ten years.\tÇa fait dix ans qu'il est mort.\nHe's cruel and heartless.\tIl est cruel et sans cœur.\nHe's feeling much better.\tIl se sent beaucoup mieux.\nHe's greedy and ruthless.\tIl est avide et impitoyable.\nHe's here to protect you.\tIl est là pour te protéger.\nHe's here to protect you.\tIl est là pour vous protéger.\nHe's in a state of shock.\tIl est en état de choc.\nHe's in his late fifties.\tIl a la cinquantaine bien tassée.\nHe's incredibly talented.\tIl est doté d'un talent incroyable.\nHe's incredibly talented.\tIl est incroyablement talentueux.\nHe's likely to be chosen.\tIl est probable qu'il sera choisi.\nHe's mad at his daughter.\tIl est en colère après sa fille.\nHe's never hit me before.\tIl ne m'a jamais frappé auparavant.\nHe's not sure he's ready.\tIl n'est pas sûr d'être prêt.\nHe's not very good at it.\tIl n'y est pas très bon.\nHe's not very good at it.\tIl n'y excelle pas.\nHe's now aboard the ship.\tIl est maintenant à bord du bateau.\nHe's older, but no wiser.\tIl est plus vieux, mais pas plus sage.\nHe's playing with my cat.\tIl joue avec mon chat.\nHe's playing with my cat.\tIl joue avec ma chatte.\nHe's reading a novel now.\tIl est en train de lire un roman.\nHe's really good looking.\tIl est vraiment beau.\nHe's smart and ambitious.\tIl est intelligent et ambitieux.\nHe's the love of my life.\tC'est l'amour de ma vie.\nHe's very likely to come.\tIl est très probable qu'il vienne.\nHeat expands most things.\tLa chaleur dilate la plupart des choses.\nHeat is a form of energy.\tLa chaleur est une forme d'énergie.\nHello, Tom. Good morning.\tSalut, Tom. Bonjour.\nHelp me lift the package.\tAide-moi à soulever ce paquet.\nHelp yourself to a drink.\tSers-toi à boire !\nHelp yourself to a drink.\tServez-vous à boire !\nHer attitude disgusts me.\tSon attitude me dégoûte.\nHer car is two years old.\tSa voiture a deux ans.\nHer face beamed with joy.\tSon visage rayonna de joie.\nHer family is very large.\tSa famille est très grande.\nHer hair is turning gray.\tSes cheveux deviennent gris.\nHer house is very modern.\tSa maison est très moderne.\nHer name slipped my mind.\tSon nom m'a échappé.\nHer silence surprised me.\tSon silence m'a surprise.\nHer silence surprised me.\tSon silence m'a surpris.\nHer speech was excellent.\tSon discours était excellent.\nHer speech was excellent.\tSon discours fut excellent.\nHer viewpoint is limited.\tSon point de vue est étroit.\nHere is a letter for you.\tVoici une lettre pour vous.\nHere is a letter for you.\tVoilà une lettre pour toi.\nHere is a letter for you.\tVoici une lettre pour toi.\nHere's my account number.\tVoici mon numéro de compte.\nHis argument was logical.\tSon argument était logique.\nHis car is gaining on us.\tSa voiture nous rattrape.\nHis car is two years old.\tSa voiture a deux ans.\nHis clothes are worn out.\tSes vêtements sont usés.\nHis courage won him fame.\tSon courage lui valut la renommée.\nHis debts were piling up.\tSes dettes s'amoncelaient.\nHis family is very large.\tSa famille est très étendue.\nHis house is very modern.\tSa maison est très moderne.\nHis name sounds familiar.\tSon nom m'est familier.\nHis name sounds familiar.\tSon nom me semble familier.\nHis new car is wonderful.\tSa nouvelle voiture est merveilleuse.\nHis overcoat is worn out.\tSon pardessus est élimé.\nHis parents were furious.\tSes parents étaient furieux.\nHis patience is worn out.\tIl est à bout de patience.\nHis silence surprised me.\tSon silence m'a surprise.\nHis story sounds strange.\tSon récit semble étrange.\nHis work is washing cars.\tSon travail consiste à laver des voitures.\nHold on a minute, please.\tAttends une minute, s'il te plaît.\nHold your breath, please.\tVeuillez retenir votre respiration.\nHold your breath, please.\tRetiens ta respiration, s'il te plait.\nHorses sleep standing up.\tLes chevaux dorment debout.\nHow about going swimming?\tQue dis-tu d'aller nager ?\nHow about going swimming?\tQue dites-vous d'aller nager ?\nHow am I supposed to eat?\tComment suis-je supposé manger ?\nHow am I supposed to eat?\tComment suis-je supposée manger ?\nHow are things at school?\tComment ça se passe, à l'école ?\nHow are things at school?\tComment vont les choses, à l'école ?\nHow are we feeling today?\tComment nous sentons-nous, aujourd'hui ?\nHow are we feeling today?\tComment vous sentez-vous, aujourd'hui ?\nHow can I get rid of him?\tComment puis-je me débarrasser de lui ?\nHow can I protect myself?\tComment puis-je me protéger ?\nHow can this be possible?\tComment cela peut-il être possible ?\nHow can this be possible?\tComment cela se peut-il ?\nHow can you not like him?\tComment pouvez-vous ne pas l'aimer ?\nHow can you not like him?\tComment peux-tu ne pas l'apprécier ?\nHow can you not remember?\tComment pouvez-vous ne pas vous en souvenir ?\nHow can you not remember?\tComment peux-tu ne pas t'en souvenir ?\nHow can you not see that?\tComment peux-tu ne pas voir cela ?\nHow can you not see that?\tComment pouvez-vous ne pas voir cela ?\nHow come the sky is blue?\tComment se fait-il que le ciel soit bleu ?\nHow come we're different?\tComment se fait-il que nous soyons différents ?\nHow come we're different?\tComment se fait-il que nous soyons différentes ?\nHow come you're not dead?\tComment se fait-il que tu ne sois pas mort ?\nHow come you're not dead?\tComment se fait-il que vous ne soyez pas mort ?\nHow could you not notice?\tComment pouviez-vous ne pas le remarquer ?\nHow could you not notice?\tComment pouvais-tu ne pas le remarquer ?\nHow did Tom pay the rent?\tComment Tom a-t-il payé le loyer ?\nHow did it go last night?\tComment ça s'est passé, la nuit dernière ?\nHow did it go last night?\tComment ça s'est passé, cette nuit ?\nHow did they manage that?\tComment se sont-ils débrouillés pour faire ça ?\nHow did they manage that?\tComment se sont-elles débrouillées pour faire ça ?\nHow did you all get here?\tComment êtes-vous tous parvenus ici ?\nHow did you all get here?\tComment êtes-vous toutes parvenues ici ?\nHow did you know my name?\tD'où connaissais-tu mon nom ?\nHow did you know my name?\tD'où connaissiez-vous mon nom ?\nHow do these things work?\tComment ces choses fonctionnent-elles ?\nHow do we open this door?\tComment ouvrons-nous cette porte ?\nHow do you define normal?\tComment définis-tu la normalité ?\nHow do you define normal?\tComment définissez-vous la normalité ?\nHow do you feel about it?\tQu'est-ce que tu dis de cela ?\nHow do you feel about it?\tQuels sont tes sentiments à ce sujet ?\nHow do you get to school?\tComment te rends-tu à l'école ?\nHow do you handle stress?\tComment gères-tu le stress ?\nHow do you know all that?\tComment sais-tu tout cela ?\nHow do you know all that?\tComment savez-vous tout cela ?\nHow do you know for sure?\tComment en sont-ils sûrs ?\nHow do you know for sure?\tComment en sont-elles sûres ?\nHow do you know who I am?\tComment pouvez-vous savoir qui je suis ?\nHow do you like New York?\tEst-ce que New York te plaît ?\nHow do you remember that?\tComment vous en souvenez-vous ?\nHow do you remember that?\tComment t'en souviens-tu ?\nHow do you remember that?\tComment s'en souvenir ?\nHow do you remember that?\tComment se le rappeler ?\nHow do you talk to women?\tComment parlez-vous aux femmes ?\nHow do you talk to women?\tComment parles-tu aux femmes ?\nHow do you talk to women?\tComment parler aux femmes ?\nHow does he go to school?\tComment se rend-il à l'école ?\nHow does that strike you?\tQu'est-ce qui vous frappe, là-dedans ?\nHow does that strike you?\tQu'est-ce qui te frappe, là-dedans ?\nHow far do we have to go?\tÀ quelle distance devons-nous nous rendre ?\nHow is life treating you?\tComment ça va ?\nHow is the weather there?\tQuel temps fait-il là-bas ?\nHow is the weather today?\tComment est le temps aujourd'hui ?\nHow is your family doing?\tComment va votre famille ?\nHow long have you waited?\tCombien de temps as-tu attendu ?\nHow long have you waited?\tPendant combien de temps avez-vous attendu ?\nHow long have you waited?\tCombien de temps avez-vous attendu ?\nHow long may I keep this?\tCombien de temps puis-je garder ça ?\nHow lucky can one guy be?\tQuelle meilleure veine un type peut-il avoir ?\nHow many CDs do you have?\tCombien de CD as-tu ?\nHow many caps do you own?\tCombien de casquettes possèdes-tu ?\nHow many have you killed?\tCombien en avez-vous tué ?\nHow many have you killed?\tCombien en avez-vous tués ?\nHow many have you killed?\tCombien en avez-vous tuées ?\nHow many kinds are there?\tCombien y a-t-il de sortes ?\nHow many kinds are there?\tCombien y en a-t-il de sortes ?\nHow many men do you have?\tCombien de mecs as-tu ?\nHow many men do you have?\tCombien d'hommes avez-vous ?\nHow many of us are there?\tCombien d'entre nous sont là ?\nHow many plums are there?\tCombien y a-t-il de prunes ?\nHow many teams are there?\tCombien y a-t-il d'équipes ?\nHow many teams are there?\tCombien d'équipes y a-t-il ?\nHow many votes did I get?\tCombien de voix ai-je obtenu ?\nHow much TV do you watch?\tCombien de temps regardes-tu la télévision ?\nHow much TV do you watch?\tCombien de temps regardez-vous la télévision ?\nHow much am I paying you?\tCombien est-ce que je vous paie ?\nHow much am I paying you?\tCombien est-ce que je vous paye ?\nHow much am I paying you?\tCombien est-ce que je te paie ?\nHow much am I paying you?\tCombien est-ce que je te paye ?\nHow much are these shoes?\tCombien coûtent ces chaussures ?\nHow much are these shoes?\tQuel est le prix de ces chaussures ?\nHow much do you love Tom?\tÀ quel point tu aimes Tom ?\nHow much for half a kilo?\tCombien pour un demi kilo ?\nHow much for half a kilo?\tCombien pour une livre ?\nHow much should they get?\tCombien devraient-ils obtenir ?\nHow much should they get?\tCombien devraient-ils en obtenir ?\nHow much time do we have?\tCombien de temps avons-nous ?\nHow much will it cost me?\tÇa va me coûter combien ?\nHow often do you see him?\tVous le voyez tous les combien ?\nHow often do you see him?\tÀ quelle fréquence le voyez-vous ?\nHow old are the children?\tQuels âges ont les enfants ?\nHow old are the children?\tQuel âge ont les enfants ?\nHow old is that painting?\tQuel âge a cette peinture ?\nHow old is your daughter?\tQuel âge a votre fille ?\nHow was the French class?\tComment s'est passé le cours de français ?\nHow will I recognize you?\tComment te reconnaîtrai-je ?\nHow will I recognize you?\tComment vous reconnaîtrai-je ?\nHow will you change this?\tComment changeras-tu ceci ?\nHow will you change this?\tComment changerez-vous ceci ?\nHow's it going to happen?\tComment cela va-t-il se passer ?\nHow's married life going?\tComment va la vie de couple ?\nHow's married life going?\tComment va la vie d'homme marié ?\nHow's married life going?\tComment va la vie de femme mariée ?\nHow's that going for you?\tComment cela se passe-t-il pour toi ?\nHow's that going for you?\tComment cela se passe-t-il pour vous ?\nHow's your little sister?\tComment va ta petite sœur ?\nHow's your new apartment?\tComment est ton nouvel appartement ?\nHunger is the best sauce.\tLa faim est le meilleur des cuisiniers.\nI accept your conditions.\tJ'accepte vos conditions.\nI accept your conditions.\tJ'accepte tes conditions.\nI acted without thinking.\tJ'ai agi sans réfléchir.\nI admire their ingenuity.\tJ'admire leur ingéniosité.\nI admire your confidence.\tJ'admire votre confiance.\nI admire your confidence.\tJ'admire ta confiance.\nI admire your dedication.\tJ'admire votre dévouement.\nI admire your dedication.\tJ'admire ton dévouement.\nI admire your work ethic.\tJ'admire votre code de conduite au travail.\nI admit that I was wrong.\tJ'admets avoir eu tort.\nI admit that he is right.\tJ'admets qu'il a raison.\nI agree to your proposal.\tJ'acquiesce à votre proposition.\nI agreed to the proposal.\tJ'ai donné mon accord à la proposition.\nI almost dropped a plate.\tJ'ai failli faire tomber une assiette.\nI already gave it to Tom.\tJe l'ai déjà donné à Tom.\nI am able to drive a car.\tJe peux conduire une voiture.\nI am about to leave here.\tJe suis sur le point de quitter ici.\nI am afraid he will fail.\tJ'ai peur qu'il échoue.\nI am at a loss for words.\tJe cherche mes mots.\nI am content with my job.\tJe suis content de mon emploi.\nI am free this afternoon.\tJe suis libre cet après-midi.\nI am going to that place.\tJe vais à cet endroit.\nI am interested in music.\tJ'ai de l'intérêt pour la musique.\nI am just warming up now.\tPour l'instant je m'entraîne seulement.\nI am loved by my parents.\tMes parents m'adorent.\nI am not romantic at all.\tJe ne suis pas du tout romantique.\nI am only warming up now.\tPour l'instant je m'entraîne seulement.\nI am playing video games.\tJe joue à des jeux vidéo.\nI am quite all right now.\tJe vais tout à fait bien maintenant.\nI am ready to follow you.\tJe suis prêt à te suivre.\nI am ready to follow you.\tJe suis prête à te suivre.\nI am ready to follow you.\tJe suis prêt à vous suivre.\nI am ready to follow you.\tJe suis prête à vous suivre.\nI am sure of her success.\tJe suis sûr de son succès.\nI am sure of her success.\tJe suis certaine de son succès.\nI am sure of her success.\tJe tiens son succès pour certain.\nI am sure of his honesty.\tJe suis certaine de son honnêteté.\nI am sure of his success.\tJe suis sûre qu'il réussira.\nI am sure of his success.\tJe suis sûr de son succès.\nI am sure of his success.\tJe suis sûre de son succès.\nI am tired of hearing it.\tJe suis fatigué de l'entendre.\nI am very poor at sports.\tJe suis très médiocre en sport.\nI am willing to help you.\tJe suis désireux de t'aider.\nI am willing to help you.\tJe suis désireux de vous aider.\nI apologized immediately.\tJe me suis tout de suite excusé.\nI apologized immediately.\tJ'ai présenté mes excuses sur-le-champ.\nI appreciate all you did.\tJ'apprécie tout ce que vous avez fait.\nI appreciate all you did.\tJ'apprécie tout ce que tu as fait.\nI appreciate the support.\tJe suis reconnaissant pour ton soutien.\nI appreciate the support.\tJe suis reconnaissante pour ton soutien.\nI appreciate the support.\tJe suis reconnaissant pour votre soutien.\nI appreciate the support.\tJe suis reconnaissante pour votre soutien.\nI appreciate the thought.\tJ'apprécie la pensée.\nI appreciate your advice.\tJe te suis reconnaissant pour tes conseils.\nI appreciate your advice.\tJe te suis reconnaissante pour tes conseils.\nI appreciate your advice.\tJe vous suis reconnaissant pour vos conseils.\nI appreciate your advice.\tJe vous suis reconnaissante pour vos conseils.\nI arrived here yesterday.\tJe suis arrivé ici hier.\nI arrived here yesterday.\tJe suis arrivée ici hier.\nI asked Tom for his keys.\tJ'ai demandé ses clés à Tom.\nI assumed you were happy.\tJe pensais que tu étais heureuse.\nI assumed you would come.\tJe supposais que tu viendrais.\nI ate breakfast at eight.\tJ'ai pris mon petit-déjeuner à huit heures.\nI ate too much yesterday.\tJ'ai trop mangé hier.\nI beg to differ with you.\tPermettez-moi d'être d'un avis différent.\nI beg you to let me live.\tJe vous supplie de me laisser vivre !\nI began living by myself.\tJ'ai commencé à vivre seul.\nI believe that's correct.\tJe crois que c'est exact.\nI believe you are honest.\tJe te crois honnête.\nI bet he doesn't make it.\tJe parie qu'il ne s'en est pas sorti.\nI bought a pair of boots.\tJ'achetai une paire de bottes.\nI bought a pair of shoes.\tJ'ai acheté une paire de chaussures.\nI bought an electric car.\tJ'ai fait l'acquisition d'une voiture électrique.\nI bought an electric car.\tJ'ai acheté une voiture électrique.\nI bought her some drinks.\tJe lui payai quelques verres.\nI bought her some drinks.\tJe lui ai payé quelques verres.\nI brought reinforcements.\tJ'ai amené du renfort.\nI brought reinforcements.\tJ'ai apporté des renforts.\nI brought you some lunch.\tJe t'ai apporté un déjeuner.\nI brought you some lunch.\tJe vous ai apporté un déjeuner.\nI brought you some water.\tJe vous ai apporté de l'eau.\nI brought you some water.\tJe t'ai apporté de l'eau.\nI came down with measles.\tJ'ai chopé la rougeole.\nI came home empty handed.\tJe suis rentré chez moi les mains vides.\nI came to talk about Tom.\tJe suis venu parler de Tom.\nI can barely pay my rent.\tJe peux à peine payer mon loyer.\nI can do a lot of things.\tJe peux faire beaucoup de choses.\nI can run as fast as Tom.\tJe peux courir aussi vite que Tom.\nI can sing it in English.\tJe sais le chanter en anglais.\nI can solve this problem.\tJe peux résoudre ce problème.\nI can't accept this gift.\tJe ne peux pas accepter ce cadeau.\nI can't accept your gift.\tJe ne puis accepter ton cadeau.\nI can't afford a pay cut.\tJe ne peux pas me permettre une réduction de salaire.\nI can't afford a pay cut.\tJe ne peux pas me permettre de réduction de salaire.\nI can't be seen with you.\tJe ne peux être vu avec toi.\nI can't be seen with you.\tJe ne peux être vue avec toi.\nI can't be seen with you.\tJe ne peux être vu avec vous.\nI can't be seen with you.\tJe ne peux être vue avec vous.\nI can't be seen with you.\tJe ne peux être vu en ta compagnie.\nI can't be seen with you.\tJe ne peux être vue en ta compagnie.\nI can't be seen with you.\tJe ne peux être vu en votre compagnie.\nI can't be seen with you.\tJe ne peux être vue en votre compagnie.\nI can't believe I forgot.\tJe n'arrive pas à croire que j'ai oublié.\nI can't believe I'm here.\tJe n'arrive pas à croire que je sois ici.\nI can't believe I'm here.\tJe n'arrive pas à croire que je sois là.\nI can't do it right away.\tJe ne peux pas le faire de suite.\nI can't do it right away.\tJe ne peux pas le faire tout de suite.\nI can't do it right away.\tJe ne peux pas le faire immédiatement.\nI can't do it right away.\tJe ne parviens pas à le faire de suite.\nI can't do it right away.\tJe ne parviens pas à le faire tout de suite.\nI can't do it right away.\tJe ne parviens pas à le faire immédiatement.\nI can't do what Tom does.\tJe ne peux pas faire ce que Tom fait.\nI can't do what you want.\tJe n'arrive pas à faire ce que tu veux.\nI can't do what you want.\tJe n'arrive pas à faire ce que vous voulez.\nI can't drink this stuff.\tJe ne peux pas boire ce truc.\nI can't explain anything.\tJe ne peux rien expliquer.\nI can't find it anywhere.\tJe n'arrive à le trouver nulle part.\nI can't find my umbrella.\tJe ne retrouve pas mon parapluie.\nI can't find the keyhole.\tJe ne parviens pas à trouver la serrure.\nI can't find what I want.\tJe ne trouve pas ce que je veux.\nI can't give up my dream.\tJe ne peux abandonner mon rêve.\nI can't go to the police.\tJe ne peux pas aller à la police.\nI can't go to work today.\tJe ne peux pas aller au travail aujourd'hui.\nI can't go to work today.\tJe ne peux pas me rendre au travail aujourd'hui.\nI can't help you do that.\tJe ne peux pas t'aider à faire ça.\nI can't help you do that.\tJe ne peux pas vous aider à faire ça.\nI can't hide out forever.\tJe ne peux pas éternellement me cacher.\nI can't keep up with you.\tJe ne peux pas te suivre.\nI can't let you in there.\tJe ne peux pas vous autoriser à entrer là.\nI can't let you in there.\tJe ne peux pas t'autoriser à entrer là.\nI can't live without her.\tJe ne peux vivre sans elle.\nI can't live without him.\tJe n'arrive pas à vivre sans lui.\nI can't live without him.\tJe ne sais pas vivre sans lui.\nI can't live without you.\tJe ne peux pas vivre sans toi.\nI can't live without you.\tJe ne peux vivre sans toi.\nI can't promise anything.\tJe ne peux rien promettre.\nI can't remember exactly.\tJe ne parviens pas à me le rappeler exactement.\nI can't remember exactly.\tJe ne parviens pas à exactement m'en souvenir.\nI can't stand it anymore.\tJe ne peux plus supporter ça.\nI can't stand it anymore.\tJ'en peux plus !\nI can't stand it anymore.\tJe n'en peux plus !\nI can't stand it anymore.\tJe ne peux plus le supporter.\nI can't stand it anymore.\tJe n'arrive plus à le supporter.\nI can't stand it anymore.\tJe ne parviens plus à le supporter.\nI can't stand that noise.\tJe ne peux pas supporter ce bruit.\nI can't swim any further.\tJe ne peux pas nager plus loin.\nI can't take that chance.\tJe ne peux pas prendre ce risque.\nI can't take that chance.\tJe ne peux pas encourir ce risque.\nI can't thank him enough.\tJe ne saurais assez le remercier.\nI can't thank you enough.\tJe ne peux pas assez te remercier.\nI can't thank you enough.\tJe ne peux pas te remercier assez.\nI can't thank you enough.\tJe ne pourrais jamais assez vous remercier.\nI can't wait till summer.\tJe ne peux pas attendre jusqu'à l'été.\nI can't wait till summer.\tJe n'arrive pas à attendre jusqu'à l'été.\nI can't wait to meet him.\tJe suis impatient de le rencontrer.\nI can't wait to meet him.\tJe suis impatiente de le rencontrer.\nI can't walk any farther.\tJe ne peux pas marcher plus loin.\nI cannot lift this stone.\tJe ne suis pas capable de soulever cette pierre.\nI caught Tom by surprise.\tJ'ai pris Tom par surprise.\nI caught a carp in a net.\tJ'ai attrapé une carpe dans un filet.\nI caught her by the hand.\tJe l'ai attrapée par la main.\nI caught them in the act.\tJe les ai surpris la main dans le sac.\nI caught them in the act.\tJe les ai surprises la main dans le sac.\nI caught them in the act.\tJe les ai attrapés sur le fait.\nI caught them in the act.\tJe les ai attrapées sur le fait.\nI caught them in the act.\tJe les ai pris sur le fait.\nI caught them in the act.\tJe les ai prises sur le fait.\nI caught them in the act.\tJe les ai attrapés la main dans le sac.\nI caught them in the act.\tJe les ai attrapées la main dans le sac.\nI checked Tom's computer.\tJ'ai vérifié l'ordinateur de Tom.\nI come here every Monday.\tJ'y viens tous les lundis.\nI come here every Monday.\tJe viens là tous les lundis.\nI could find his address.\tJ'ai pu trouver son adresse.\nI could have been killed.\tJ'aurais pu être tué.\nI could keep it a secret.\tJe pourrais le garder secret.\nI could keep it a secret.\tJe pus le garder secret.\nI couldn't stop laughing.\tJe ne pouvais m'empêcher de rire.\nI couldn't stop laughing.\tJe n'ai pu m'empêcher de rire.\nI couldn't stop laughing.\tJe n'ai pu m'empêcher de rigoler.\nI couldn't stop laughing.\tJe ne pus m'empêcher de rire.\nI couldn't stop laughing.\tJe ne pus m'empêcher de rigoler.\nI cut down a cherry tree.\tJ'ai abattu un cerisier.\nI did everything I could.\tJ'ai fait tout ce que j'ai pu.\nI did everything for you.\tJ'ai fait tout pour toi.\nI did everything for you.\tJ'ai fait tout pour vous.\nI did it against my will.\tJ'ai fait cela contre ma volonté.\nI did it against my will.\tJe l'ai fait en dépit de ma volonté.\nI did that earlier today.\tJ'ai fait ça plus tôt dans la journée.\nI did what was necessary.\tJ'ai fait ce qui était nécessaire.\nI didn't change anything.\tJe n'ai rien changé.\nI didn't even notice you.\tJe ne vous ai même pas remarqué.\nI didn't even notice you.\tJe ne vous ai même pas remarquée.\nI didn't even notice you.\tJe ne vous ai même pas remarqués.\nI didn't even notice you.\tJe ne vous ai même pas remarquées.\nI didn't even notice you.\tJe ne t'ai même pas remarqué.\nI didn't even notice you.\tJe ne t'ai même pas remarquée.\nI didn't feel like going.\tJe n'avais pas le cœur à m'y rendre.\nI didn't feel like going.\tJe n'avais pas le cœur à y aller.\nI didn't get any of that.\tJe n'y ai rien compris.\nI didn't get any of that.\tJe n'en compris rien.\nI didn't get any of that.\tJe n'y ai rien capté.\nI didn't get discouraged.\tJe ne me suis pas découragé.\nI didn't get the meaning.\tJe n'ai pas compris ce que ça signifiait.\nI didn't hear her coming.\tJe ne l'ai pas entendue arriver.\nI didn't hear him coming.\tJe ne l'ai pas entendu arriver.\nI didn't know who he was.\tJe ne savais pas qui c'était.\nI didn't know who he was.\tJe ne savais qui il était.\nI didn't like my teacher.\tJe n'ai pas apprécié mon instituteur.\nI didn't like my teacher.\tJe n'ai pas apprécié mon institutrice.\nI didn't like my teacher.\tJe n'ai pas apprécié mon professeur.\nI didn't like my teacher.\tJe n'ai pas apprécié ma professeur.\nI didn't like my teacher.\tJe n'ai pas apprécié mon instructeur.\nI didn't like my teacher.\tJe n'ai pas apprécié mon instructrice.\nI didn't like the result.\tJe n'aime pas le résultat.\nI didn't like the result.\tLe résultat ne me convient pas.\nI didn't look at my feet.\tJe n'ai pas regardé mes pieds.\nI didn't mean to hit him.\tJe n'avais pas l'intention de le frapper.\nI didn't plan to hit Tom.\tJe n'avais pas prévu de frapper Tom.\nI didn't say I liked Tom.\tJe n'ai pas dit que j'aimais Tom.\nI didn't say it was easy.\tJe n'ai pas dit que c'était facile.\nI didn't say it was easy.\tJe n'ai pas dit que c'était aisé.\nI didn't see anyone else.\tJe n'ai vu personne d'autre.\nI didn't see their faces.\tJe n'ai pas vu leur visage.\nI didn't see you come in.\tJe ne vous ai pas vu entrer.\nI didn't see you come in.\tJe ne vous ai pas vue entrer.\nI didn't see you come in.\tJe ne vous ai pas vus entrer.\nI didn't see you come in.\tJe ne vous ai pas vues entrer.\nI didn't see you come in.\tJe ne t'ai pas vu entrer.\nI didn't see you come in.\tJe ne t'ai pas vue entrer.\nI didn't sleep all night.\tJe n'ai pas dormi de toute la nuit.\nI didn't take your money.\tJe n'ai pas pris ton argent.\nI didn't talk to anybody.\tJe n'ai parlé à personne.\nI didn't tell you to sit.\tJe ne vous ai pas dit de vous asseoir.\nI didn't tell you to sit.\tJe ne t'ai pas dit de t'asseoir.\nI didn't understand that.\tJe n'ai pas compris cela.\nI didn't vote for anyone.\tJe n'ai voté pour personne.\nI didn't walk for a year.\tJe n'ai pas marché pendant un an.\nI didn't want to be seen.\tJe ne voulais pas être vue.\nI didn't want to be seen.\tJe ne voulais pas être vu.\nI didn't want to bug you.\tJe n'ai pas voulu vous embêter.\nI didn't want to bug you.\tJe n'ai pas voulu vous tracasser.\nI didn't want to bug you.\tJe n'ai pas voulu t'embêter.\nI didn't want to bug you.\tJe n'ai pas voulu te tracasser.\nI didn't want to bug you.\tJe n'ai pas voulu vous casser les pieds.\nI didn't want to bug you.\tJe n'ai pas voulu te casser les pieds.\nI didn't want to intrude.\tJe craignais de vous déranger.\nI didn't want to intrude.\tJe ne voulais pas m'imposer.\nI dislocated my shoulder.\tJe me suis disloqué l'épaule.\nI dislocated my shoulder.\tC'est moi qui me suis disloqué l'épaule.\nI do hope you understand.\tJ'espère vraiment que vous comprenez.\nI do hope you'll succeed.\tJ'espère vraiment que vous réussirez.\nI do not like him either.\tJe ne l'aime pas non plus.\nI do not like him either.\tJe ne l'apprécie pas non plus.\nI do sympathize with you.\tJe partage vraiment vos sentiments.\nI do sympathize with you.\tJe partage vraiment tes sentiments.\nI do think it's possible.\tJe pense vraiment que c'est possible.\nI do want to go with you.\tJe veux en effet aller avec toi.\nI do want to go with you.\tJe veux en effet aller avec vous.\nI don't believe in banks.\tJe ne crois pas aux banques.\nI don't believe in karma.\tJe ne crois pas au karma.\nI don't believe in magic.\tJe ne crois pas à la magie.\nI don't care if it snows.\tPeu m'importe s'il neige.\nI don't care what you do.\tJe me fiche de ce que tu fais.\nI don't care what you do.\tJe me fiche de ce que vous faites.\nI don't care what you do.\tCe que tu fais m'est indifférent.\nI don't care what you do.\tCe que vous faites m'est indifférent.\nI don't do all that much.\tJe ne fais pas beaucoup tout ça.\nI don't even remember it.\tJe ne m'en souviens même pas.\nI don't even remember it.\tJe ne me le rappelle même pas.\nI don't feel like eating.\tJe n'ai pas envie de manger.\nI don't feel like eating.\tJe n'ai pas le cœur à manger.\nI don't feel like it now.\tJe n'en ai pas envie pour le moment.\nI don't feel like joking.\tJe n'ai pas le cœur à plaisanter.\nI don't feel like trying.\tJe n'ai pas le cœur à essayer.\nI don't feel like trying.\tJe n'ai pas envie d'essayer.\nI don't feel that guilty.\tJe ne me sens pas tant que ça coupable.\nI don't feel that guilty.\tJe ne me sens pas si coupable.\nI don't feel well at all.\tJe ne me sens pas bien du tout.\nI don't have a boyfriend.\tJe n'ai pas de petit ami.\nI don't have a boyfriend.\tJe n'ai pas de petit copain.\nI don't have a cellphone.\tJe n'ai pas de téléphone cellulaire.\nI don't have a cellphone.\tJe n'ai pas de téléphone mobile.\nI don't have any friends.\tJe n'ai pas d'amis.\nI don't have any friends.\tJe n'ai aucun ami.\nI don't have any friends.\tJe n'ai aucune amie.\nI don't have any friends.\tJe n'ai pas d'amies.\nI don't have any pencils.\tJe ne dispose d'aucun crayon.\nI don't have any pencils.\tJe n'ai aucun crayon.\nI don't have any sisters.\tJe n'ai pas de sœurs.\nI don't have much choice.\tJe n'ai pas beaucoup de choix.\nI don't have much longer.\tIl ne me reste pas beaucoup de temps.\nI don't have the results.\tJe ne dispose pas des résultats.\nI don't know anyone here.\tJe ne connais personne ici.\nI don't know either girl.\tJe ne connais aucune des deux filles.\nI don't know her address.\tJe ne connais pas son adresse.\nI don't know her address.\tJ'ignore son adresse.\nI don't know his address.\tJe ne connais pas son adresse.\nI don't know how to cook.\tJe ne sais pas cuisiner.\nI don't know how to swim.\tJe ne sais pas nager.\nI don't know them at all.\tEux, je ne les connais pas du tout.\nI don't know what I know.\tJ'ignore ce que je sais.\nI don't know what to say.\tJe ne sais quoi dire.\nI don't know what to say.\tJe ne sais pas quoi dire.\nI don't know what you do.\tJe ne sais pas ce que tu fais.\nI don't know what you do.\tJe ne sais pas ce que vous faites.\nI don't know what's real.\tJ'ignore ce qui est véridique.\nI don't know where it is.\tJe ne sais pas où c'est.\nI don't know where to go.\tJe ne sais pas où aller.\nI don't know who you are.\tJ'ignore qui vous êtes.\nI don't know who you are.\tJ'ignore qui tu es.\nI don't know you anymore.\tJe ne vous connais plus.\nI don't know you anymore.\tJe ne te connais plus.\nI don't like Tom so much.\tJe n'aime pas beaucoup Tom.\nI don't like any of them.\tJe n'en aime aucun.\nI don't like any of them.\tJe n'aime aucun d'entre eux.\nI don't like long drives.\tJe n'aime pas conduire sur de longues distances.\nI don't like that at all.\tJe n'aime pas ça du tout.\nI don't like that either.\tJe n'aime pas ça non plus.\nI don't like that either.\tMoi non plus, je n'aime pas ça.\nI don't like the traffic.\tJe n'aime pas la circulation.\nI don't like this camera.\tJe n'aime pas cet appareil photo.\nI don't like this jacket.\tJe n'aime pas cette veste.\nI don't like to be alone.\tJe n'aime pas être seul.\nI don't like you anymore.\tJe ne t'aime plus.\nI don't like you anymore.\tTu ne me plais plus.\nI don't live around here.\tJe ne vis pas par ici.\nI don't live around here.\tJe ne vis pas dans le coin.\nI don't love her anymore.\tJe ne l'aime plus.\nI don't love her anymore.\tJe ne l’aime plus.\nI don't love you anymore.\tJe ne t'aime plus.\nI don't mind hot weather.\tLe temps chaud ne me dérange pas.\nI don't mind if it's hot.\tÇa ne me dérange pas que ce soit chaud.\nI don't mind if it's hot.\tÇa ne me dérange pas qu'il fasse chaud.\nI don't need more advice.\tJe n'ai pas besoin de plus de conseils.\nI don't need your advice.\tJe n'ai pas besoin de tes conseils.\nI don't need your advice.\tJe n'ai pas besoin de vos conseils.\nI don't need your praise.\tJe n'ai pas besoin de vos éloges.\nI don't need your praise.\tJe n'ai pas besoin de tes éloges.\nI don't normally do that.\tJe ne fais pas cela, normalement.\nI don't normally do this.\tNormalement, je ne fais pas ça.\nI don't owe him anything.\tJe ne lui dois rien.\nI don't owe you anything.\tJe ne te dois rien.\nI don't owe you anything.\tJe ne vous dois rien.\nI don't own a television.\tJe ne possède pas de téléviseur.\nI don't own a television.\tJe ne possède pas de poste de télévision.\nI don't quite follow you.\tJe ne te suis pas très bien.\nI don't really cook much.\tJe ne cuisine pas vraiment beaucoup.\nI don't really feel sick.\tJe ne me sens pas vraiment malade.\nI don't really need this.\tJe n'ai pas vraiment besoin de ça.\nI don't remember a thing.\tJe ne me souviens de rien.\nI don't remember a thing.\tJe ne me rappelle rien.\nI don't think he'll come.\tJe ne pense pas qu'il viendra.\nI don't understand music.\tJe ne comprends pas la musique.\nI don't understand opera.\tJe ne comprends pas l'opéra.\nI don't understand women.\tJe ne comprends pas les femmes.\nI don't want a boyfriend.\tJe ne veux pas de petit ami.\nI don't want a boyfriend.\tJe ne veux pas de petit copain.\nI don't want to eat here.\tJe ne veux pas manger ici.\nI don't want to go alone.\tJe ne veux pas y aller seul.\nI don't want to hurt her.\tJe ne veux pas la blesser.\nI don't want to hurt you.\tJe ne veux pas te faire de mal.\nI don't want to kill you.\tJe ne veux pas te tuer.\nI don't want to tell him.\tJe ne veux pas le lui dire.\nI don't want to tell him.\tJe ne veux pas lui dire.\nI don't want you to lose.\tJe ne veux pas que vous perdiez.\nI don't want you to lose.\tJe ne veux pas que tu perdes.\nI don't worry about that.\tJe ne m'en soucie pas.\nI dropped out of college.\tJ'ai laissé tomber la fac.\nI eat because I'm hungry.\tJe mange parce que j'ai faim.\nI enjoy talking with you.\tJ'apprécie de parler avec vous.\nI enjoy talking with you.\tJ'apprécie de parler avec toi.\nI enjoyed talking to him.\tJ'appréciai de m'entretenir avec lui.\nI enjoyed talking to him.\tJ'ai apprécié de m'entretenir avec lui.\nI expected better of Tom.\tJe m'attendais à mieux de Tom.\nI expected better of him.\tJ'attendais mieux de lui.\nI expected better of you.\tJ'attendais mieux de toi.\nI expected better of you.\tJ'attendais mieux de vous.\nI feed my dog once a day.\tJe nourris mon chien une fois par jour.\nI feel a little insecure.\tJe ne me sens pas très en confiance.\nI feel better than I did.\tJe me sens mieux qu'auparavant.\nI feel cold this morning.\tJ'ai froid ce matin.\nI feel like I'm dreaming.\tJ'ai l'impression de rêver.\nI feel like another beer.\tJ'ai envie d'une autre bière.\nI feel like another beer.\tJ'ai bien envie d'une autre bière.\nI feel like playing, too.\tJ'ai, moi aussi, envie de jouer.\nI feel much better today.\tJe me sens beaucoup mieux aujourd'hui.\nI felt sorry for the boy.\tJe me sentis désolé pour le garçon.\nI finally bought the toy.\tJ'ai finalement acheté le jouet.\nI followed all the rules.\tJ'ai respecté toutes les règles.\nI followed all the rules.\tJe respectai toutes les règles.\nI forgot to do something.\tJ'ai oublié de faire quelque chose.\nI found her very amusing.\tC'est une personne très intéressante.\nI found his house easily.\tJ'ai facilement trouvé sa maison.\nI found that fascinating.\tJ'ai trouvé cela fascinant.\nI fully intend to return.\tJ'ai parfaitement l'intention d'y retourner.\nI gave in to her demands.\tJ'ai cédé à ses exigences.\nI gave up eating dessert.\tJ'ai arrêté de manger des desserts.\nI get depressed at times.\tParfois, je déprime.\nI go to a driving school.\tJe vais à une école de conduite.\nI go to church every day.\tJe me rends chaque jour à l'église.\nI go to church on Sunday.\tJe vais à l'église le dimanche.\nI go to school every day.\tJe me rends à l'école chaque jour.\nI go to school every day.\tJe vais quotidiennement à l'école.\nI got her to wash dishes.\tJe lui ai fait laver la vaisselle.\nI got lost in the forest.\tJe me suis perdu dans la forêt.\nI got lost in the forest.\tJe me suis perdue dans la forêt.\nI got on the wrong train.\tJe suis monté dans le mauvais train.\nI got up early yesterday.\tJe me suis levé tôt hier.\nI got what you asked for.\tJ'ai obtenu ce que tu as demandé.\nI got what you asked for.\tJ'ai obtenu ce que vous avez demandé.\nI grew up in the country.\tJ'ai grandi à la campagne.\nI guess I've been better.\tJe suppose que j'ai été meilleur.\nI guess I've been better.\tJe suppose que je me suis mieux porté.\nI guess I've gotten lazy.\tJe suppose que je suis devenu fainéant.\nI guess I've gotten lazy.\tJe suppose que je suis devenu paresseux.\nI guess I've gotten lazy.\tJe suppose que je suis devenue fainéante.\nI guess I've gotten lazy.\tJe suppose que je suis devenue paresseuse.\nI guess it's only a joke.\tJe suppose qu'il ne s'agit que d'une blague.\nI guess we'll never know.\tJe suppose que nous ne le saurons jamais.\nI had a cat named Cookie.\tJ'ai eu un chat dénommé Biscuit.\nI had a checklist I used.\tJe disposais d'une liste de contrôle, que j'ai utilisée.\nI had a dog named Cookie.\tJ'avais un chien dénommé Biscuit.\nI had a family emergency.\tJ'ai eu une urgence familiale.\nI had a mental breakdown.\tJ'ai fait une dépression.\nI had a mental breakdown.\tJe fis une dépression.\nI had a stroke last year.\tJ'ai eu une attaque l'année dernière.\nI had a stroke last year.\tJ'ai fait un infarctus l'année dernière.\nI had nowhere else to go.\tJe n'avais nulle autre part où aller.\nI had nowhere else to go.\tJe n'avais nulle autre part où me rendre.\nI had some time to think.\tJ'ai disposé de temps pour réfléchir.\nI had to change the plan.\tJe dus changer le plan.\nI had to change the plan.\tJ'ai dû altérer le plan.\nI had to change the plan.\tJ'ai dû changer le plan.\nI had to do it by myself.\tIl m'a fallu le faire moi-même.\nI had to do it by myself.\tIl m'a fallu le faire tout seul.\nI had to do it by myself.\tIl m'a fallu le faire toute seule.\nI had to face this alone.\tJ'ai dû y faire face seul.\nI had to face this alone.\tJ'ai dû y faire face seule.\nI had to make a decision.\tIl me fallut prendre une décision.\nI had to make a decision.\tJ'ai dû prendre une décision.\nI had to make a decision.\tIl m'a fallu prendre une décision.\nI had two cups of coffee.\tJ'ai pris deux tasses de café.\nI hadn't considered that.\tJe n'ai pas envisagé cela.\nI hadn't considered that.\tJe n'avais pas envisagé cela.\nI hadn't thought of that.\tJe n'avais pensé à cela.\nI hadn't thought of that.\tJe n'y avais pas songé.\nI handed the mike to him.\tJe lui ai donné le micro.\nI hardly see you anymore.\tJe ne te vois quasiment plus.\nI hardly see you anymore.\tJe ne vous vois presque plus.\nI hate the guy next door.\tJe déteste le type d'à côté.\nI hate this part of town.\tJe déteste cette partie de la ville.\nI hate to argue with you.\tJe déteste me disputer avec vous.\nI hate to argue with you.\tJe déteste me disputer avec toi.\nI hate waiting like this.\tJe déteste attendre ainsi.\nI hate when that happens.\tJe déteste lorsque ça arrive.\nI hate when that happens.\tJe déteste lorsque ça survient.\nI hate when this happens.\tJe déteste quand ça survient.\nI hate when this happens.\tJe déteste quand ça arrive.\nI have a book in my hand.\tJ'ai un livre à la main.\nI have a good dictionary.\tJ'ai un bon dictionnaire.\nI have a lot of homework.\tJ'ai beaucoup de devoirs.\nI have a lot to do today.\tJ'ai beaucoup de choses à faire aujourd'hui.\nI have a lot to do today.\tJ'ai beaucoup à faire aujourd'hui.\nI have a meeting at 2:30.\tJ'ai une réunion à 14h30.\nI have a serious problem.\tJ'ai un sérieux problème.\nI have a sharp pain here.\tJ'ai une douleur aiguë ici.\nI have a sharp pain here.\tJ'ai une douleur aiguë là.\nI have a slight headache.\tJ'ai un léger mal de tête.\nI have a stuffed-up nose.\tJ'ai le nez bouché.\nI have a thesis to write.\tJ'ai une thèse à écrire.\nI have an ache in my arm.\tJ'ai une douleur au bras.\nI have an audition today.\tJ'ai une audition aujourd'hui.\nI have an identical twin.\tJ'ai un vrai jumeau.\nI have another good idea.\tJ'ai une autre bonne idée.\nI have certain standards.\tJ'ai certains principes.\nI have confidence in him.\tJ'ai confiance en lui.\nI have drunk all my milk.\tJ'ai bu tout mon lait.\nI have everything I need.\tJe dispose de tout ce dont j'ai besoin.\nI have good news for you.\tJ'ai de bonnes nouvelles pour vous.\nI have just arrived here.\tJe viens juste d'arriver ici.\nI have just arrived here.\tJe viens d'arriver ici.\nI have many things to do.\tJ'ai beaucoup de choses à faire.\nI have no doubt about it.\tJe n'ai là-dessus aucun doute.\nI have no doubt about it.\tJe n'ai aucun doute à ce sujet.\nI have no homework today.\tJe n'ai pas de devoirs aujourd'hui.\nI have no idea who he is.\tJe n'ai aucune idée de qui c'est.\nI have no idea who he is.\tJe n'ai aucune idée de qui il est.\nI have no memory of that.\tJe n'en ai aucun souvenir.\nI have no one to help me.\tJe n'ai personne pour m'aider.\nI have no one to talk to.\tJe n'ai personne à qui parler.\nI have no one to talk to.\tJe n'ai personne avec qui parler.\nI have no plans whatever.\tJe n'ai aucun plan.\nI have no plans whatever.\tJe n'ai aucun plan, quel qu'il soit.\nI have no time for games.\tJe n'ai pas le temps de jouer.\nI have plenty of friends.\tJ'ai plein d'amis.\nI have plenty of friends.\tJ'ai plein d'amies.\nI have plenty of friends.\tJ'ai des tas d'amis.\nI have plenty of friends.\tJ'ai des tas d'amies.\nI have plenty of friends.\tJ'ai des amis, en veux-tu en voilà.\nI have plenty of friends.\tJ'ai des amies, en veux-tu en voilà.\nI have some news for you.\tJ'ai des nouvelles pour vous.\nI have some news for you.\tJ'ai des nouvelles pour toi.\nI have to brush my teeth.\tJe dois me brosser les dents.\nI have to change clothes.\tIl me faut changer de vêtements.\nI have to change clothes.\tIl faut que je change de vêtements.\nI have to change clothes.\tJe dois changer de vêtements.\nI have to come on Monday.\tJe dois venir le lundi.\nI have to cover his loss.\tJe dois couvrir sa perte.\nI have to do my homework.\tJe dois faire mes devoirs.\nI have to get some sleep.\tJe dois prendre un peu de sommeil.\nI have to go talk to Tom.\tJe dois aller parler à Tom.\nI have to go to the bank.\tJe dois me rendre à la banque.\nI have to go to the city.\tIl me faut me rendre en ville.\nI have to go to work now.\tIl me faut me rendre au travail, maintenant.\nI have to go to work now.\tIl faut que je me rende au travail, maintenant.\nI have to go to work now.\tJe dois me rendre au travail, maintenant.\nI have to help my mother.\tJe dois aider ma mère.\nI have to say I envy you.\tJe dois dire que je t'envie.\nI have to say I envy you.\tJe dois dire que je vous envie.\nI have to write a letter.\tJe dois écrire une lettre.\nI haven't eaten for days.\tJe n'ai pas mangé depuis des jours.\nI haven't got much money.\tJ'ai peu d'argent.\nI haven't had much sleep.\tJe n'ai pas eu beaucoup de sommeil.\nI haven't met him before.\tJe ne l'ai pas rencontré auparavant.\nI haven't slept for days.\tJe n'ai pas dormi depuis des jours.\nI haven't washed my hair.\tJe ne me suis pas lavé les cheveux.\nI haven't washed my hair.\tJe n'ai pas lavé mes cheveux.\nI hear footsteps outside.\tJ'entends des pas, dehors.\nI hear voices in my head.\tJ'entends des voix dans ma tête.\nI hear you were grounded.\tJ'ai entendu dire que vous n'avez pas pu vous envoler.\nI hear you were grounded.\tJ'ai entendu dire que tu n'as pas pu t'envoler.\nI hear you were grounded.\tJ'ai entendu dire que vous étiez échoué.\nI hear you were grounded.\tJ'ai entendu dire que vous étiez échouée.\nI hear you were grounded.\tJ'ai entendu dire que vous étiez échoués.\nI hear you were grounded.\tJ'ai entendu dire que vous étiez échouées.\nI hear you were grounded.\tJ'ai entendu dire que tu étais échoué.\nI hear you were grounded.\tJ'ai entendu dire que tu étais échouée.\nI hear you're moving out.\tOn me dit que vous déménagez.\nI hear you're moving out.\tOn me dit que tu déménages.\nI heard an unusual noise.\tJ'entendis un bruit inhabituel.\nI heard somebody talking.\tJ'ai entendu quelqu'un parler.\nI heard someone knocking.\tJ'ai entendu quelqu'un frapper.\nI heard someone shouting.\tJ'ai entendu quelqu'un crier.\nI heard the boys singing.\tJ'entendis les garçons chanter.\nI hope she will get well.\tJ'espère qu'elle ira mieux.\nI hope someone sees this.\tJ'espère que quelqu'un verra cela.\nI hope that I'll see her.\tJ'espère que je la verrai.\nI hope that I'll see her.\tJ'espère pouvoir la voir.\nI hope that won't happen.\tJ'espère que ça n'arrivera pas.\nI hope that you are good.\tJ'espère que tu vas bien.\nI hope you don't do that.\tJ'espère que tu ne fais pas cela.\nI hope you don't do that.\tJ'espère que vous ne faites pas cela.\nI hope you two are happy.\tJ'espère que vous êtes heureux tous les deux.\nI hope you two are happy.\tJ'espère que vous êtes heureuses toutes les deux.\nI hope you'll reconsider.\tJ'espère que vous changerez d'avis.\nI hope you're happy, too.\tJ'espère que vous êtes également heureux.\nI hope you're happy, too.\tJ'espère que vous êtes également heureuse.\nI hope you're happy, too.\tJ'espère que vous êtes également heureuses.\nI hope you're happy, too.\tJ'espère que tu es également heureux.\nI hope you're happy, too.\tJ'espère que tu es également heureuse.\nI hope you're having fun.\tJ'espère que vous vous amusez bien.\nI hope you're having fun.\tJ'espère que tu t'amuses bien.\nI invited all my friends.\tJ'ai invité tous mes amis.\nI invited her to a movie.\tJe l'ai invitée à aller voir un film.\nI just arrived yesterday.\tJe suis juste arrivé hier.\nI just can't help myself.\tJe ne peux simplement m'en empêcher.\nI just can't help myself.\tJe ne peux simplement pas m'en empêcher.\nI just can't stop crying.\tJe ne parviens simplement pas à m'arrêter de pleurer.\nI just didn't believe it.\tJe ne l'ai tout simplement pas cru.\nI just didn't sleep well.\tJe n'ai simplement pas bien dormi.\nI just don't believe you.\tJe ne vous crois simplement pas.\nI just don't believe you.\tJe ne vous crois tout simplement pas.\nI just don't believe you.\tJe ne te crois simplement pas.\nI just don't believe you.\tJe ne te crois tout simplement pas.\nI just don't care enough.\tC’est juste que ça m’importe pas assez.\nI just don't want to die.\tJe ne veux tout simplement pas mourir.\nI just don't want to die.\tJe ne veux pas mourir, un point c'est tout.\nI just have one question.\tJ'ai simplement une question.\nI just need to stay calm.\tJ'ai seulement besoin de rester calme.\nI just needed some water.\tIl me fallait juste de l'eau.\nI just needed some water.\tIl ne me fallait que de l'eau.\nI just needed some water.\tJ'avais juste besoin d'eau.\nI just want my life back.\tJe veux simplement retrouver le cours de ma vie.\nI just want some answers.\tJe veux juste des réponses.\nI just want to be normal.\tJe veux simplement être normal.\nI just want to be normal.\tJ'aspire seulement à la normalité.\nI just want to disappear.\tJe veux simplement disparaître.\nI just want to thank you.\tJe veux simplement te remercier.\nI just want to thank you.\tJe veux simplement vous remercier.\nI just want you to be OK.\tJe veux simplement que tu sois bien.\nI just want you to be OK.\tJe veux simplement que vous soyez bien.\nI keep a diary every day.\tJe tiens quotidiennement mon journal.\nI keep a rabbit as a pet.\tJ'ai un lapin comme animal de compagnie.\nI keep a rabbit as a pet.\tJ'ai un lapin, en guise d'animal de compagnie.\nI kiss with my eyes open.\tJ'embrasse les yeux ouverts.\nI knew I'd find you here.\tJe savais que je vous trouverais ici.\nI knew I'd find you here.\tJe savais que je te trouverais ici.\nI knew this would happen.\tJe savais que ça arriverait.\nI knew this would happen.\tJe savais que ça se produirait.\nI know I heard something.\tJe sais que j'ai entendu quelque chose.\nI know I'm alone on this.\tJe sais que je suis seul là-dessus.\nI know I'm alone on this.\tJe sais que je suis seule là-dessus.\nI know I'm alone on this.\tJe sais que je suis seul là-dedans.\nI know I'm alone on this.\tJe sais que je suis seule là-dedans.\nI know both of the girls.\tJe connais les deux filles.\nI know exactly who it is.\tJe sais précisément qui c'est.\nI know exactly who it is.\tJe sais précisément de qui il s'agit.\nI know it's not possible.\tJe sais que c'est impossible.\nI know nothing about her.\tJe ne sais rien d'elle.\nI know something's wrong.\tJe sais que quelque chose va de travers.\nI know that you are busy.\tJe sais que tu es occupé.\nI know that you love Tom.\tJe sais que tu aimes Tom.\nI know that you love Tom.\tJe sais que vous aimez Tom.\nI know the poem by heart.\tJe connais le poème par cœur.\nI know what I want to do.\tJe sais ce que je veux faire.\nI know what they're like.\tJe sais de quoi ils ont l'air.\nI know what they're like.\tJe sais de quoi elles ont l'air.\nI know what to watch for.\tJe sais quoi attendre.\nI know what you're doing.\tJe sais ce que vous êtes en train de faire.\nI know what you're doing.\tJe sais ce que tu es en train de faire.\nI know what your name is.\tJe sais quel est votre nom.\nI know what your name is.\tJe sais quel est ton nom.\nI know who you were with.\tJe sais avec qui tu étais.\nI know who you were with.\tJe sais avec qui vous étiez.\nI know you did your best.\tJe sais que vous avez fait de votre mieux.\nI know you don't like me.\tJe sais que vous ne m'aimez pas.\nI know you don't like me.\tJe sais que tu ne m'aimes pas.\nI know you don't love me.\tJe sais que tu ne m'aimes pas.\nI know you're not scared.\tJe sais que tu n'as pas peur.\nI know you're not scared.\tJe sais que vous n'avez pas peur.\nI learn French at school.\tJ'apprends le français à l'école.\nI learned a lot from Tom.\tJ'ai beaucoup appris de Tom.\nI learned a lot from you.\tJ'ai beaucoup appris de vous.\nI left a message for Tom.\tJ'ai laissé un message pour Tom.\nI left the door unlocked.\tJ'ai laissé la porte déverrouillée.\nI like English very much.\tJ'aime beaucoup la langue anglaise.\nI like Tom's personality.\tJ'aime la personnalité de Tom.\nI like being my own boss.\tJ'aime être mon propre patron.\nI like being my own boss.\tJ'aime être ma propre patronne.\nI like being on the team.\tJ'aime faire partie de l'équipe.\nI like it when it's cold.\tJ'aime qu'il fasse froid.\nI like music and English.\tJ’aime la musique et l’anglais.\nI like my life right now.\tJ'aime ma vie, en ce moment.\nI like playing the piano.\tJ'aime jouer du piano.\nI like talking to people.\tJ'aime discuter avec les gens.\nI like that tie of yours.\tJ'aime votre cravate.\nI like the sound of that.\tJ'en apprécie la sonorité.\nI like the way you smile.\tJ'aime ta façon de sourire.\nI like the way you think.\tJ'aime la manière avec laquelle tu penses.\nI like the way you think.\tJ'apprécie la manière que tu as de penser.\nI like the way you think.\tJ'aime la manière avec laquelle vous pensez.\nI like the way you think.\tJ'apprécie la manière que vous avez de penser.\nI like this neighborhood.\tJ'apprécie ce voisinage.\nI like to be spontaneous.\tJ'aime être spontané.\nI like to dress this way.\tJ'aime me vêtir ainsi.\nI like to dress this way.\tJ'aime m'habiller de cette manière.\nI like to dress this way.\tJ'aime m'habiller de cette façon.\nI like to play the piano.\tJ'aime jouer du piano.\nI like to ride on trains.\tJ'aime me déplacer en train.\nI like to try new things.\tJ'aime essayer de nouvelles choses.\nI like walking by myself.\tJ'aime marcher seul.\nI liked working with you.\tJ'ai apprécié de travailler avec vous.\nI liked working with you.\tJ'ai apprécié de travailler avec toi.\nI liked working with you.\tJ'appréciai de travailler avec vous.\nI liked working with you.\tJ'appréciai de travailler avec toi.\nI live across the street.\tJe vis de l'autre côté de la rue.\nI live three blocks away.\tJe vis à trois pâtés de maison.\nI looked down at the sea.\tJe regardai la mer en dessous.\nI looked him in the eyes.\tJe l'ai regardé dans les yeux.\nI lost my wife last year.\tJ'ai perdu ma femme l'an dernier.\nI lost track of the time.\tJ'ai perdu la notion du temps.\nI lost track of the time.\tJe perdis la notion du temps.\nI lost your phone number.\tJ'ai perdu votre numéro de téléphone.\nI lost your phone number.\tJ'ai perdu ton numéro de téléphone.\nI love my yellow sweater.\tJ'aime beaucoup mon pullover jaune.\nI love the way you laugh.\tJ'aime ta façon de rire.\nI love the way you think.\tJ'adore votre façon de penser.\nI love the way you think.\tJ'adore ta façon de penser.\nI love this time of year.\tJ'adore cette période de l'année.\nI love trying new things.\tJ'adore essayer de nouveaux trucs.\nI love watching you cook.\tJ'adore vous regarder cuisiner.\nI love watching you cook.\tJ'adore te regarder cuisiner.\nI made a lot of mistakes.\tJ'ai commis de nombreuses erreurs.\nI made a serious mistake.\tJ'ai commis un grave impair.\nI made him open the door.\tJe lui ai fait ouvrir la porte.\nI made my son a new suit.\tJ'ai confectionné un nouveau costume pour mon fils.\nI met Tom at the library.\tJ'ai rencontré Tom à la bibliothèque.\nI met a friend of Mary's.\tJ'ai rencontré un ami de Mary.\nI met him at the station.\tJe l'ai rencontré à la gare.\nI met him by pure chance.\tJe l'ai rencontré par pure coïncidence.\nI met him on my way home.\tJe l'ai rencontré en rentrant chez moi.\nI met him the day before.\tJe l'ai rencontré avant-hier.\nI met him the day before.\tJe l'ai rencontré le jour précédent.\nI met him the day before.\tJe l'ai rencontré le jour d'avant.\nI met the prince himself.\tJ'ai rencontré le prince en personne.\nI missed the competition.\tJ'ai raté la compétition.\nI must answer her letter.\tJe dois répondre à sa lettre.\nI must decide what to do.\tIl faut que je décide quoi faire.\nI must have it shortened.\tIl faut que je le raccourcisse.\nI must help these people.\tJe dois aider ces gens.\nI must renew my passport.\tJe dois faire renouveler mon passeport.\nI must renew my passport.\tJe dois renouveler mon passeport.\nI must say I'm flattered.\tJe dois dire que je suis flatté.\nI must say I'm flattered.\tJe dois dire que je suis flattée.\nI need a good dictionary.\tJ'ai besoin d'un bon dictionnaire.\nI need an extension cord.\tJ'ai besoin d'une rallonge.\nI need to find a way out.\tJe dois trouver une issue.\nI need to get some sleep.\tJe dois prendre un peu de sommeil.\nI need to learn Japanese.\tIl me faut apprendre le japonais.\nI need to sleep a little.\tJ'ai besoin de dormir un peu.\nI need you to believe me.\tJ'ai besoin que tu me croies.\nI never did get it right.\tJe n'y ai jamais réussi.\nI never learned to write.\tJe n'ai jamais appris à écrire.\nI never murdered anybody.\tJe n'ai jamais assassiné qui que ce soit.\nI never saw him in jeans.\tJe ne l'ai jamais vu en jeans.\nI never saw such a woman.\tJe n'ai jamais vu une telle femme.\nI never saw such a woman.\tJamais je n'ai vu pareille femme.\nI never thought about it.\tJe n'y ai jamais pensé.\nI never thought about it.\tJe n'y ai jamais songé.\nI never told you to quit.\tJe ne t'ai jamais dit d'arrêter.\nI never told you to quit.\tJe ne t'ai jamais dit de démissionner.\nI never told you to quit.\tJe ne vous ai jamais dit d'arrêter.\nI never told you to quit.\tJe ne vous ai jamais dit de démissionner.\nI never told you to quit.\tJe ne t'ai jamais dit d'abandonner.\nI never told you to quit.\tJe ne vous ai jamais dit d'abandonner.\nI never use this anymore.\tJe n'emploie jamais plus ceci.\nI never use this anymore.\tJe n'utilise jamais plus ceci.\nI never would've guessed.\tJe n'aurais jamais deviné.\nI no longer study French.\tJe n’étudie plus le français.\nI often go to the movies.\tJe vais souvent au cinéma.\nI often lie about my age.\tJe mens souvent sur mon âge.\nI only have eyes for you.\tJe n'ai d'yeux que pour toi.\nI only need two of these.\tJe n'en ai besoin que de deux.\nI opened the door slowly.\tJ'ai ouvert la porte lentement.\nI ordered two hamburgers.\tJ'ai commandé deux hamburgers.\nI ordered two hamburgers.\tJe commandais deux hamburgers.\nI owe somebody something.\tJe dois quelque chose à quelqu'un.\nI owe you an explanation.\tJe vous dois une explication.\nI owe you an explanation.\tJe te dois une explication.\nI paid for these tickets.\tJ'ai payé ces billets.\nI paid for these tickets.\tJ'ai payé ces amendes.\nI paid for these tickets.\tJ'ai payé ces contraventions.\nI paid for these tickets.\tJ'ai payé ces contredanses.\nI paid to have this done.\tJ'ai payé pour que ce soit fait.\nI plan to go there alone.\tJe prévois d'y aller seul.\nI played tennis with Tom.\tJ'ai joué au tennis avec Tom.\nI played with my brother.\tJ'ai joué avec mon frère.\nI prefer plain materials.\tJe préfère les matériaux simples.\nI prefer plain materials.\tJe préfère les matières simples.\nI prefer plain materials.\tJe préfère les matériaux épurés.\nI pretended to be asleep.\tJe faisais semblant de dormir.\nI promised no such thing.\tJe n'ai rien promis de tel.\nI put cream in my coffee.\tJe mets du lait dans mon café.\nI ran as fast as I could.\tJe courus aussi vite que je pouvais.\nI ran as fast as I could.\tJ'ai couru aussi vite que j'ai pu.\nI ran into an old friend.\tJ'ai croisé un vieil ami.\nI read an exciting story.\tJe lus une histoire passionnante.\nI realized I needed help.\tJe pris conscience que j'avais besoin d'aide.\nI realized I needed help.\tJ'ai pris conscience que j'avais besoin d'aide.\nI really am very thirsty.\tJ'ai vraiment très soif.\nI really appreciate this.\tJ'apprécie vraiment ça.\nI really did learn a lot.\tJ'ai vraiment beaucoup appris.\nI really don't feel good.\tJe ne me sens vraiment pas bien.\nI really don't feel well.\tJe ne me sens vraiment pas bien.\nI really had a good time.\tJ'ai vraiment passé un bon moment.\nI really have missed you.\tVous m'avez vraiment manqué.\nI really have missed you.\tTu m'as vraiment manqué.\nI really should be going.\tJe devrais vraiment y aller.\nI really should be going.\tJe devrais vraiment m'en aller.\nI really thought I'd win.\tJe pensais vraiment que je gagnerais.\nI really want to see you.\tJe veux vraiment vous voir.\nI really want to see you.\tJe veux vraiment te voir.\nI really want to see you.\tJ'ai vraiment envie de te voir.\nI received an invitation.\tJ'ai reçu une invitation.\nI recorded the interview.\tJ'ai enregistré l'entrevue.\nI regret having told you.\tJe regrette de te l'avoir dit.\nI regret that I told you.\tJe regrette de te l'avoir dit.\nI relied on his kindness.\tJe comptais sur sa gentillesse.\nI roll my own cigarettes.\tJe roule mes propres cigarettes.\nI rushed out of my house.\tJe me précipitai hors de la maison.\nI rushed out of my house.\tJe sortis précipitamment de ma maison.\nI said I didn't remember.\tJ'ai dit que je ne m'en souvenais pas.\nI saw Tom in the hallway.\tJ'ai vu Tom dans le couloir.\nI saw Tom standing there.\tJ'ai vu Tom se tenir là-bas.\nI saw Tom take your keys.\tJ'ai vu Tom prendre tes clés.\nI saw Tom take your keys.\tJ'ai vu Tom prendre vos clés.\nI saw a man with a child.\tJ'ai vu un homme avec un enfant.\nI saw a man with a child.\tJe vis un homme avec un enfant.\nI saw a whale tail today.\tJ'ai vu la queue d'une baleine, aujourd'hui.\nI saw her clean the room.\tJe l'ai vue ranger la chambre.\nI saw her play the piano.\tJe l'ai vue jouer du piano.\nI saw him cross the road.\tJe l'ai vu traverser la route.\nI saw him cross the road.\tJe l'ai vu traverser la rue.\nI saw him cross the road.\tJe le vis traverser la route.\nI saw him enter the room.\tJe l'ai vu entrer dans la pièce.\nI saw it from the window.\tJe l'ai vu par la fenêtre.\nI saw the movie on video.\tJ'ai vu le film en vidéo.\nI see a bird on the roof.\tJe vois un oiseau sur le toit.\nI see a book on the desk.\tJe vois un livre sur le bureau.\nI see tears in your eyes.\tJe vois des larmes dans tes yeux.\nI see what you did there.\tJe vois ce que tu as fait, là.\nI see what you did there.\tJe vois ce que vous avez fait, là.\nI should've just shut up.\tJ'aurais dû seulement la fermer.\nI should've just shut up.\tJ'aurais dû simplement me taire.\nI should've known better.\tJe n'aurais pas dû être aussi bête.\nI slept lying on my face.\tJ'ai dormi le nez dans l'oreiller.\nI slept only three hours.\tJe n'ai dormi que trois heures.\nI smell something rotten.\tJe sens quelque chose de pourri.\nI speak a little Spanish.\tJe parle un peu espagnol.\nI speak a little Spanish.\tJe parle un petit peu espagnol.\nI spoke to him yesterday.\tJe lui ai parlé hier.\nI stayed at a nice hotel.\tJe séjournai dans un chouette hôtel.\nI stayed at a nice hotel.\tJ'ai séjourné dans un chouette hôtel.\nI stayed at a nice hotel.\tJe séjournai dans un bel hôtel.\nI stayed at a nice hotel.\tJ'ai séjourné dans un bel hôtel.\nI stayed home for a week.\tJe suis resté une semaine à la maison.\nI still have some doubts.\tJ'ai encore quelques doutes.\nI study French at school.\tJ'étudie le français à l'école.\nI study Japanese history.\tJ'étudie l'histoire japonaise.\nI suppose that's allowed.\tJe suppose que c'est permis.\nI take a bath once a day.\tJe prends un bain par jour.\nI take my hat off to you.\tJe te tire mon chapeau.\nI take my hat off to you.\tJe vous tire mon chapeau.\nI taught him how to swim.\tJe lui ai appris à nager.\nI telephoned her at once.\tJe lui téléphonai immédiatement.\nI telephoned her at once.\tJe lui ai immédiatement téléphoné.\nI think I'll turn in now.\tJe pense que je vais aller me coucher maintenant.\nI think I'm getting sick.\tIl me semble que je commence à être malade.\nI think I've seen enough.\tJe pense que j'en ai vu assez.\nI think Tom is a student.\tJe pense que Tom est étudiant.\nI think Tom is dangerous.\tJe pense que Tom est dangereux.\nI think about them often.\tJe pense souvent à eux.\nI think about them often.\tJe pense souvent à elles.\nI think he is a good man.\tJe pense que c'est un homme bien.\nI think it's a good idea.\tJe pense que c'est une bonne idée.\nI think it's fascinating.\tJe pense que c'est fascinant.\nI think it's really ugly.\tJe pense que c'est très moche.\nI think it's worth a try.\tJe pense que ça vaut le coup d'essayer.\nI think my leg is broken.\tJe pense que j'ai la jambe cassée.\nI think that he is right.\tJe pense qu'il a raison.\nI think that he is right.\tJe crois qu'il a raison.\nI think that's a mistake.\tJe pense que c'est une erreur.\nI think that's a problem.\tJe pense que c'est un problème.\nI think that's the point.\tJe pense que c'est tout à fait l'idée.\nI think that's wonderful.\tJe pense que c'est merveilleux.\nI think they're students.\tJe pense que ce sont des étudiants.\nI think this one is good.\tJe pense que celui-ci est bien.\nI think this tastes good.\tJe pense que ça a bon goût.\nI think we can do better.\tJe pense que nous pouvons mieux faire.\nI think we can go faster.\tJe pense que nous pouvons aller plus vite.\nI think we can handle it.\tJe pense que nous pouvons y faire face.\nI think we can handle it.\tJe pense que nous pouvons nous en occuper.\nI think we can relax now.\tJe pense que nous pouvons maintenant nous détendre.\nI think we can trust Tom.\tJe pense que nous pouvons faire confiance à Tom.\nI think we need a doctor.\tJe pense qu'il nous faut un médecin.\nI think we need a doctor.\tJe pense que nous avons besoin d'un médecin.\nI think we need more ice.\tJe pense que nous avons besoin de plus de glace.\nI think we need more ice.\tJe pense qu'il nous faut davantage de glace.\nI think we should go now.\tJe pense que nous devrions y aller, maintenant.\nI think we're in trouble.\tJe pense que nous sommes dans la merde.\nI think we're out of gas.\tJe pense que nous sommes à court d'essence.\nI think we've met before.\tJe pense qu'on s'est déjà rencontrés.\nI think we've met before.\tJe pense que nous nous sommes déjà rencontrées.\nI think we've met before.\tJe pense que nous nous sommes déjà rencontrés.\nI think you are mistaken.\tJe pense que tu te trompes.\nI think you are mistaken.\tJe pense que vous vous trompez.\nI think you deserve this.\tJe pense que vous méritez ça.\nI think you deserve this.\tJe pense que tu mérites ça.\nI think you dropped this.\tJe pense que tu as fait tomber ceci.\nI think you dropped this.\tJe pense que vous avez fait tomber ceci.\nI think you should do it.\tJe pense que vous devriez le faire.\nI think you should do it.\tJe pense que tu devrais le faire.\nI think you should leave.\tJe pense que vous devriez partir.\nI think you should leave.\tJe pense que tu devrais partir.\nI think you went too far.\tJe pense que vous êtes allés trop loin.\nI think you went too far.\tJe pense que tu es allé trop loin.\nI think you're in danger.\tJe pense que vous êtes en danger.\nI think you're in danger.\tJe pense que tu es en danger.\nI think you're too picky.\tJe pense que vous êtes trop difficile.\nI think you're too picky.\tJe pense que vous êtes trop difficiles.\nI think you're too picky.\tJe pense que tu es trop difficile.\nI thought I heard voices.\tJ'ai pensé avoir entendu des voix.\nI thought I was dreaming.\tJe pensais que j'étais en train de rêver.\nI thought about it a lot.\tJ'y ai consacré beaucoup de réflexion.\nI thought about it a lot.\tJ'y ai beaucoup pensé.\nI thought it was a fluke.\tJ'ai pensé que c'était de la veine.\nI thought it was a fluke.\tJ'ai pensé que c'était un coup de chance.\nI thought she was pretty.\tJe pensais qu'elle était mignonne.\nI thought that went well.\tJ'ai pensé que ça c'était bien passé.\nI thought the same thing.\tJ'ai pensé la même chose.\nI thought we could do it.\tJ'ai pensé que nous pouvions le faire.\nI thought you might come.\tJe pensais que vous viendriez peut-être.\nI thought you might come.\tJe pensais que tu viendrais peut-être.\nI thought you might help.\tJe pensais que vous aideriez peut-être.\nI thought you might help.\tJe pensais que tu aiderais peut-être.\nI thought you trusted me.\tJe pensais que vous me faisiez confiance.\nI thought you trusted me.\tJe pensais que tu me faisais confiance.\nI thought you understood.\tJ'ai pensé que tu comprenais.\nI thought you understood.\tJ'ai pensé que vous compreniez.\nI thought you were broke.\tJe pensais que vous étiez fauché.\nI thought you were broke.\tJe pensais que vous étiez fauchée.\nI thought you were broke.\tJe pensais que vous étiez fauchés.\nI thought you were broke.\tJe pensais que vous étiez fauchées.\nI thought you were broke.\tJe pensais que vous étiez sans le sou.\nI thought you were broke.\tJe pensais que tu étais fauché.\nI thought you were broke.\tJe pensais que tu étais fauchée.\nI thought you were broke.\tJe pensais que tu étais sans le sou.\nI thought you were right.\tJ'ai pensé que tu avais raison.\nI thought you were right.\tJ'ai pensé que vous aviez raison.\nI thought you were smart.\tJe pensais que vous étiez intelligente.\nI thought you were smart.\tJe pensais que vous étiez intelligent.\nI thought you were smart.\tJe pensais que vous étiez intelligents.\nI thought you were smart.\tJe pensais que vous étiez intelligentes.\nI thought you were smart.\tJe pensais que tu étais intelligente.\nI thought you were smart.\tJe pensais que tu étais intelligent.\nI thought you would come.\tJe supposais que tu viendrais.\nI thought you'd ask that.\tJ'ai pensé que tu demanderais ça.\nI thought you'd ask that.\tJ'ai pensé que vous demanderiez ça.\nI thought you'd be alone.\tJ'ai pensé que tu serais seul.\nI thought you'd be alone.\tJ'ai pensé que tu serais seule.\nI thought you'd be alone.\tJ'ai pensé que vous seriez seul.\nI thought you'd be alone.\tJ'ai pensé que vous seriez seule.\nI thought you'd be alone.\tJ'ai pensé que vous seriez seuls.\nI thought you'd be alone.\tJ'ai pensé que vous seriez seules.\nI thought you'd be happy.\tJe pensais que vous seriez heureuses.\nI thought you'd be happy.\tJe pensais que vous seriez heureux.\nI thought you'd be happy.\tJe pensais que vous seriez heureuse.\nI thought you'd be happy.\tJe pensais que tu serais heureuse.\nI thought you'd be happy.\tJe pensais que tu serais heureux.\nI thought you'd be older.\tJe pensais que tu serais plus vieux.\nI thought you'd be older.\tJe pensais que tu serais plus vieille.\nI thought you'd be older.\tJe pensais que vous seriez plus vieux.\nI thought you'd be older.\tJe pensais que vous seriez plus vieille.\nI thought you'd be older.\tJe pensais que vous seriez plus vieilles.\nI thought you'd got lost.\tJe pensais que tu te serais perdu.\nI thought you'd got lost.\tJe pensais que tu te serais perdue.\nI thought you'd got lost.\tJe pensais que vous vous seriez perdu.\nI thought you'd got lost.\tJe pensais que vous vous seriez perdue.\nI thought you'd got lost.\tJe pensais que vous vous seriez perdus.\nI thought you'd got lost.\tJe pensais que vous vous seriez perdues.\nI thought you'd say that.\tJe pensais que tu dirais ça.\nI thought you'd say that.\tJe pensais que vous diriez ça.\nI told Tom about my past.\tJ'ai parlé de mon passé à Tom.\nI told you I'm not drunk.\tJe t'ai dit que je n'étais pas ivre.\nI told you I'm not drunk.\tJe vous ai dit que je n'étais pas ivre.\nI told you it would work.\tJe t'avais dit que cela marcherait.\nI took care of it myself.\tJe m'en suis occupé personnellement.\nI totally agree with you.\tJe suis totalement d'accord avec toi.\nI totally agree with you.\tJe suis totalement d'accord avec vous.\nI traveled around Europe.\tJ'ai voyagé à travers l'Europe.\nI tried to warn everyone.\tJ'ai essayé d'avertir tout le monde.\nI try to please everyone.\tJ'essaie de faire plaisir à tout le monde.\nI try to please everyone.\tJ'essaie de satisfaire tout le monde.\nI understand the problem.\tJe comprends le problème.\nI used to work in a bank.\tJe travaillais dans une banque.\nI usually agree with Tom.\tJe suis généralement d'accord avec Tom.\nI usually get up at 6:00.\tJe me lève d'habitude à 6 heures.\nI usually wake up at six.\tJe me réveille habituellement à six heures.\nI usually walk to school.\tJe vais généralement à l'école à pied.\nI usually walk to school.\tJe me rends d'habitude à pied à l'école.\nI visited her in Germany.\tJe lui rendis visite en Allemagne.\nI visited her in Germany.\tJe lui ai rendu visite en Allemagne.\nI waited for ten minutes.\tJ'ai attendu dix minutes.\nI walked across the park.\tJ'ai traversé le parc en marchant.\nI walked along the river.\tJe longeais la rivière.\nI walked along the river.\tJ'ai marché le long de la rivière.\nI walked toward the park.\tJ'ai marché en direction du parc.\nI want a cup of iced-tea.\tJe voudrais un verre de thé glacé.\nI want my money back now.\tJe veux que tu me rendes mon argent maintenant.\nI want my money back now.\tJe veux qu'on me rende mon argent maintenant.\nI want my money back now.\tJe veux que vous me rendiez mon argent maintenant.\nI want some orange juice.\tJe veux du jus d'orange.\nI want something to read.\tJe veux quelque chose à lire.\nI want this room cleaned.\tJe veux que cette pièce soit nettoyée.\nI want this suit cleaned.\tJe voudrais faire nettoyer ce costume.\nI want to find true love.\tJe veux trouver l'amour véritable.\nI want to find true love.\tJe veux trouver le véritable amour.\nI want to go out tonight.\tJe veux sortir ce soir.\nI want to hold your hand.\tJe veux tenir ta main.\nI want to hold your hand.\tJe veux tenir votre main.\nI want to join your team.\tJe veux rejoindre votre équipe.\nI want to join your team.\tJe veux rejoindre ton équipe.\nI want to join your team.\tJe veux me joindre à votre équipe.\nI want to join your team.\tJe veux me joindre à ton équipe.\nI want to know about you.\tJe veux savoir des choses à votre propos.\nI want to know about you.\tJe veux savoir des choses à ton propos.\nI want to look different.\tJe veux avoir l'air différent.\nI want to look different.\tJe veux avoir l'air différente.\nI want to make her happy.\tJe veux la rendre heureuse.\nI want to make you happy.\tJe veux vous rendre heureux.\nI want to make you happy.\tJe veux vous rendre heureuse.\nI want to make you happy.\tJe veux vous rendre heureuses.\nI want to make you happy.\tJe veux te rendre heureux.\nI want to make you happy.\tJe veux te rendre heureuse.\nI want to make you smile.\tJe veux te faire sourire.\nI want to read this book.\tJe veux lire ce livre.\nI want to see for myself.\tJe veux y regarder par moi-même.\nI want to see for myself.\tJe veux m'en rendre compte par moi-même.\nI want to see them again.\tJ'ai envie de les revoir.\nI want to see your house.\tJe veux voir votre maison.\nI want to see your house.\tJe veux voir ta maison.\nI want to test my limits.\tJe veux tester mes limites.\nI want to thank everyone.\tJe veux remercier tout le monde.\nI want to think about it.\tJe veux y réfléchir.\nI want to write a letter.\tJe veux écrire une lettre.\nI want you all to myself.\tJe vous veux tous pour moi.\nI want you all to myself.\tJe vous veux toutes pour moi.\nI want you to be with me.\tJe veux que tu sois avec moi.\nI want you to be with me.\tJe veux que vous soyez avec moi.\nI want you to talk to me.\tJe veux que tu me parles.\nI want you to talk to me.\tJe veux que vous me parliez.\nI wanted him to go there.\tJe voulais qu'il aille là.\nI wanted to see you, too.\tJe voulais te voir aussi.\nI wanted to see you, too.\tJe voulais vous voir aussi.\nI wanted to surprise Tom.\tJe voulais surprendre Tom.\nI wanted to surprise her.\tJe voulais la surprendre.\nI was a bit disappointed.\tJ'ai été un peu déçu.\nI was a bit disappointed.\tJ'ai été un peu déçue.\nI was a little surprised.\tJ'étais un peu surpris.\nI was abducted by aliens.\tJ'ai été kidnappé par des extra-terrestres.\nI was absolutely stunned.\tJ'ai été complètement abasourdi.\nI was absolutely stunned.\tJ'ai été absolument stupéfait.\nI was absolutely stunned.\tJ'ai été absolument stupéfaite.\nI was absolutely stunned.\tJ'ai été complètement abasourdie.\nI was afraid I'd be late.\tJ'avais peur d'être en retard.\nI was always the fastest.\tJ'étais toujours le plus rapide.\nI was always the fastest.\tJ'étais toujours la plus rapide.\nI was asked to wait here.\tOn m'a prié d'attendre ici.\nI was at a movie theater.\tJ'étais au cinéma.\nI was caught in a shower.\tJe fus pris sous une averse.\nI was caught in a shower.\tJ'ai été pris sous une averse.\nI was completely shocked.\tJ'étais totalement sous le choc.\nI was completely shocked.\tJ'étais totalement choqué.\nI was completely shocked.\tJ'étais totalement choquée.\nI was eating dinner then.\tJe prenais alors mon dîner.\nI was eating dinner then.\tJe prenais alors mon déjeuner.\nI was frozen to the bone.\tJ'étais gelé jusqu'aux os.\nI was in Tokyo yesterday.\tHier, j'étais à Tokyo.\nI was just going to work.\tJ'étais juste en train de me rendre au travail.\nI was just going to work.\tJ'étais juste sur le point de travailler.\nI was just going to work.\tJ'allais juste travailler.\nI was just in the shower.\tJ'étais juste sous la douche.\nI was late for the train.\tJ'ai raté le train.\nI was lonely without her.\tJ'étais seul sans elle.\nI was moved by his tears.\tJ'ai été ému par ses larmes.\nI was on a trip to India.\tJe faisais un voyage en Inde.\nI was on a trip to India.\tJ'étais en voyage en Inde.\nI was on the wrong track.\tJ'avais fait fausse route.\nI was on time for dinner.\tJ'étais à l'heure pour le dîner.\nI was really quite stiff.\tJ'étais vraiment tout à fait courbaturé.\nI was really quite stiff.\tJ'étais vraiment tout à fait courbaturée.\nI was scratched by a cat.\tUn chat m'a griffé.\nI was searching for food.\tJe cherchais de la nourriture.\nI was skeptical at first.\tJ'étais sceptique, au début.\nI was slightly surprised.\tJ'étais un peu surpris.\nI was slightly surprised.\tJ'étais quelque peu surprise.\nI was taken advantage of.\tJ'ai été exploité.\nI was taken advantage of.\tJ'ai été exploitée.\nI was thinking about you.\tJ'étais en train de penser à toi.\nI was too tired to go on.\tJ'étais trop fatigué pour continuer.\nI was trying to find Tom.\tJ'essayais de trouver Tom.\nI was unable to save Tom.\tJ'ai été incapable de sauver Tom.\nI was ushered to my seat.\tJe fus placé.\nI was ushered to my seat.\tJe fus conduit à ma place.\nI was waiting for a taxi.\tJ'attendais un taxi.\nI wash my hair every day.\tJe me lave les cheveux quotidiennement.\nI wasn't always this fat.\tJe n'ai pas toujours été aussi gros.\nI wasn't sure about that.\tJe n'en étais pas sûr.\nI wasn't sure about that.\tJe n'étais pas sûre de cela.\nI went there to meet him.\tJ'y suis allé pour le rencontrer.\nI went there to meet him.\tJe m'y suis rendu pour le rencontrer.\nI went to get vaccinated.\tJe suis allé me faire vacciner.\nI went to see my parents.\tJe suis allé voir mes parents.\nI went to see my parents.\tJe suis allée voir mes parents.\nI will be busy next week.\tJe devrais être occupé la semaine prochaine.\nI will be sixteen in May.\tJ'aurai seize ans en mai.\nI will call on you again.\tJe te requerrai à nouveau.\nI will come by all means.\tJe viendrai par tous les moyens.\nI will explain it to her.\tJe le lui expliquerai.\nI will explain it to her.\tJe la lui expliquerai.\nI will explain it to him.\tJe le lui expliquerai.\nI will explain it to him.\tJe la lui expliquerai.\nI will go to the meeting.\tJe me rendrai à la réunion.\nI will go, rain or shine.\tJ'irai, qu'il pleuve ou qu'il rayonne.\nI will have to help them.\tJe devrai les aider.\nI will have to help them.\tIl me faudra les aider.\nI will make a man of you.\tJe vais faire de toi un homme.\nI will never do it again.\tJe ne le referai jamais.\nI will never forget this.\tJe n'oublierai jamais ça.\nI will never forgive him.\tJe ne lui pardonnerai jamais.\nI will never forgive you.\tJe ne te pardonnerai jamais.\nI will never forgive you.\tJe ne vous pardonnerai jamais.\nI will never forgive you.\tJamais je ne vous pardonnerai.\nI will never forgive you.\tJamais je ne te pardonnerai.\nI will not let you do it.\tJe ne te le laisserai pas faire.\nI will not let you do it.\tJe ne vous le laisserai pas faire.\nI will not tolerate this.\tJe ne le tolérerai pas.\nI will write to you soon.\tJe t'écrirai bientôt.\nI wish I had married her.\tJ'aurais voulu l'épouser.\nI wish it were that easy.\tSi seulement c'était aussi simple.\nI wish this was all over.\tJ'aimerais que ce soit complètement terminé.\nI wish today were Friday.\tJ'aimerais qu'aujourd'hui soit vendredi.\nI wish you all good luck.\tJe vous souhaite à tous bonne chance.\nI wish you all good luck.\tJe vous souhaite à toutes bonne chance.\nI wish you every success.\tJe te souhaite du succès.\nI won't be able to sleep.\tJe ne pourrai pas dormir.\nI won't be wearing a tie.\tJe ne porterai pas de cravate.\nI won't give them to you.\tJe ne vous les donnerai pas.\nI won't give them to you.\tJe ne te les donnerai pas.\nI won't leave you behind.\tJe ne t'abandonne pas.\nI won't let you go there.\tJe ne te laisserai pas aller là-bas.\nI won't let you go there.\tJe ne vous laisserez pas y aller.\nI won't mention it again.\tJe ne le mentionnerai plus.\nI wonder if Tom can come.\tJe me demande si Tom peut venir.\nI wonder if he will come.\tJe me demande s'il viendra.\nI wonder if he's at home.\tJe me demande s'il est chez lui.\nI wonder if he's at home.\tJe me demande s'il est à la maison.\nI wonder if this is love.\tJe me demande si c'est de l'amour.\nI wonder what that means.\tJe me demande ce que ça signifie.\nI wonder what that means.\tJe me demande ce que cela signifie.\nI wonder where he is now.\tJe me demande où il est maintenant.\nI wonder where she lives.\tJe me demande où elle vit.\nI wonder who invented it.\tJe me demande qui l'inventa.\nI wonder who invented it.\tJe me demande qui a inventé cela.\nI wonder why he did that.\tJe me demande pourquoi il a fait ça.\nI would like to kiss you.\tJe voudrais t'embrasser.\nI would like to kiss you.\tJ'aimerais vous embrasser.\nI would like to meet you.\tJ'aimerais te rencontrer.\nI would like to meet you.\tJ'aimerais vous rencontrer.\nI would rather stay here.\tJe préférerais rester ici.\nI write almost every day.\tJ'écris quasiment tous les jours.\nI write almost every day.\tJ'écris presque quotidiennement.\nI wrote to you from Iraq.\tJe vous ai écrit d'Irak.\nI'd appreciate your help.\tJ'apprécierais votre aide.\nI'd be happy to help you.\tJe serais ravi de vous aider.\nI'd be happy to help you.\tJe serais ravi de t'aider.\nI'd better call you back.\tJe ferais mieux de vous rappeler.\nI'd better call you back.\tJe ferais mieux de te rappeler.\nI'd better get back home.\tJe ferais mieux de rentrer à la maison.\nI'd better go to bed now.\tJe ferais mieux d'aller au lit maintenant.\nI'd like Tom to be happy.\tJ'aimerais que Tom soit heureux.\nI'd like a glass of beer.\tJe prendrais bien un verre de bière.\nI'd like a word with Tom.\tJ'aimerais m'entretenir avec Tom.\nI'd like to be a teacher.\tJ'aimerais être professeur.\nI'd like to be alone now.\tJ'aimerais être seul, maintenant.\nI'd like to be alone now.\tJ'aimerais être seule, maintenant.\nI'd like to believe that.\tJ'aimerais bien y croire.\nI'd like to get a refund.\tJ'aimerais me faire rembourser.\nI'd like to go to France.\tJ'aimerais aller en France.\nI'd like to go to France.\tJ’aimerais aller en France.\nI'd like to go to Hawaii.\tJ’aimerais aller à Hawaii.\nI'd like to go to London.\tJ'aimerais aller à Londres.\nI'd like to pay by check.\tJe veux payer par chèque.\nI'd like to pay you back.\tJ'aimerais te rembourser.\nI'd like to pay you back.\tJ'aimerais vous rembourser.\nI'd like to see a doctor.\tJe voudrais consulter un médecin.\nI'd like to study French.\tJ'aimerais étudier le français.\nI'd like to study French.\tJe voudrais étudier le français.\nI'd like to visit London.\tJ'aimerais aller à Londres.\nI'd like to write a book.\tJ'aimerais écrire un livre.\nI'd like you to meet him.\tJ'aimerais que tu le rencontres.\nI'd like you to meet him.\tJ'aimerais que vous le rencontriez.\nI'd love to sing for you.\tJ'adorerais chanter pour toi.\nI'd love to sing for you.\tJ'adorerais chanter pour vous.\nI'd love to visit Boston.\tJ'adorerais visiter Boston.\nI'd prefer to talk later.\tJe préférerais parler plus tard.\nI'd rather do this alone.\tJe préférerais le faire seul.\nI'd rather do this alone.\tJe préférerais le faire seule.\nI'd rather do this alone.\tJe préférerais le faire toute seule.\nI'd rather not interfere.\tJe préférerais ne pas m'en mêler.\nI'll always remember you.\tJe me souviendrai toujours de toi.\nI'll always remember you.\tJe me souviendrai toujours de vous.\nI'll be back in a minute.\tJe reviens dans une minute.\nI'll be free next Sunday.\tJe serai libre dimanche prochain.\nI'll be glad to help him.\tJe serai ravi de l'aider.\nI'll be there in an hour.\tJe serai là dans une heure.\nI'll be there right away.\tJe serai là aussitôt.\nI'll be there right away.\tJe serai là sans tarder.\nI'll be there right away.\tJe serai là tout de suite.\nI'll call you back later.\tJe te rappellerai plus tard.\nI'll call you back later.\tJe vous rappellerai plus tard.\nI'll call you back later.\tJe vous rappelle plus tard.\nI'll call you back later.\tJe te rappelle plus tard.\nI'll cook bacon and eggs.\tJe vais cuire du bacon et des œufs.\nI'll do anything you ask.\tJe ferai tout ce que tu demandes.\nI'll do anything you ask.\tJe ferai tout ce que vous demandez.\nI'll do better next time.\tJe ferai mieux la prochaine fois.\nI'll do everything I can.\tJe ferai tout mon possible.\nI'll drive you somewhere.\tJe te conduirai quelque part.\nI'll drive you somewhere.\tJe vous conduirai quelque part.\nI'll eat something light.\tJe mangerai quelque chose de léger.\nI'll fix it up all right.\tJe vais arranger ça.\nI'll follow you anywhere.\tJe vous suivrai n'importe où.\nI'll follow you anywhere.\tJe te suivrai n'importe où.\nI'll give you this money.\tJe te donnerai cet argent.\nI'll give you this money.\tJe vous donnerai cet argent.\nI'll go and get you some.\tJ'irai et t'en prendrai.\nI'll just have one drink.\tJe ne prendrai qu'un verre.\nI'll leave this with you.\tJe te laisserai te débrouiller avec ça.\nI'll leave this with you.\tJe vous laisserai vous en débrouiller.\nI'll make this up to you.\tJe te revaudrai ça.\nI'll make this up to you.\tJe vous revaudrai ça.\nI'll make you a new suit.\tJe te ferai un nouveau costume.\nI'll make you a new suit.\tJe vous ferai un nouveau complet.\nI'll never do this again.\tJe ne le referai plus.\nI'll never see him again.\tJe ne le reverrai jamais.\nI'll never see you again.\tJe ne te reverrai jamais.\nI'll send you a postcard.\tJe t'enverrai une carte postale.\nI'll send you a postcard.\tJe vous enverrai une carte postale.\nI'll stay here until ten.\tJe reste ici jusqu'à 10 heures.\nI'll stay here until ten.\tJe resterai là jusqu'à dix heures.\nI'll stay here until ten.\tJe resterai là jusqu'à vingt-deux heures.\nI'll stay here until ten.\tJe resterai ici jusqu'à dix heures.\nI'll stay here until ten.\tJe resterai ici jusqu'à vingt-deux heures.\nI'll take responsibility.\tJ'assumerai la responsabilité.\nI'll take the yellow one.\tJe prendrais le jaune.\nI'll take what I can get.\tJe prendrai ce que je peux.\nI'll tell you afterwards.\tJe te le dirai après.\nI'll tell you afterwards.\tJe te le dirai après coup.\nI'll tell you afterwards.\tJe vous le dirai après.\nI'll tell you afterwards.\tJe vous le dirai après coup.\nI'll treat you to dinner.\tJe vous inviterai à dîner.\nI'll try to fix it later.\tJe tenterai de la réparer plus tard.\nI'll try to fix it later.\tJe tenterai de le réparer plus tard.\nI'll try to fix it later.\tJ'essaierai de la réparer plus tard.\nI'll try to fix it later.\tJ'essaierai de le réparer plus tard.\nI'm a little bit jealous.\tJe suis un tantinet jaloux.\nI'm a little bit jealous.\tJe suis un tantinet jalouse.\nI'm a long way from home.\tJe suis loin de chez moi.\nI'm a member of the team.\tJe suis membre de l'équipe.\nI'm a university student.\tJe suis étudiant à l'université.\nI'm afraid she will fail.\tJ'ai bien peur qu'elle va échouer.\nI'm also learning French.\tJ'apprends également le français.\nI'm also learning French.\tJ'apprends aussi le français.\nI'm as tall as my father.\tJe suis aussi grand que mon père.\nI'm at Tokyo Station now.\tJe suis à la gare de Tokyo en ce moment.\nI'm completely exhausted.\tJe suis complètement épuisé.\nI'm completely exhausted.\tJe suis complètement vanné.\nI'm crazy about football.\tJe suis dingue de football.\nI'm definitely impressed.\tJe suis fort impressionné.\nI'm definitely impressed.\tJe suis très impressionnée.\nI'm definitely impressed.\tJe suis fort impressionnée.\nI'm delighted to be here.\tJe suis ravi d'être ici.\nI'm delighted to be here.\tJe suis enchanté d'être ici.\nI'm delighted to be here.\tJe suis ravie d'être ici.\nI'm delighted to be here.\tJe suis enchantée d'être ici.\nI'm delighted to see you.\tJe suis ravie de vous voir.\nI'm doing the best I can.\tJe fais du mieux que je peux.\nI'm fed up with homework.\tJ'en ai marre des devoirs !\nI'm feeding the goldfish.\tJe nourris le poisson rouge.\nI'm getting sleepy again.\tJe commence à avoir à nouveau sommeil.\nI'm glad no one got hurt.\tJe suis heureux que personne n'ait été blessé.\nI'm glad no one got hurt.\tJe suis heureuse que personne n'ait été blessé.\nI'm glad someone told me.\tJe suis content que quelqu'un me l'ait dit.\nI'm glad someone told me.\tJe suis contente que quelqu'un m'en ait informé.\nI'm glad to see you back.\tJe suis content de te revoir.\nI'm glad to see you back.\tJe suis content de vous revoir.\nI'm glad to see you here.\tJe suis content de te voir ici.\nI'm glad to see you here.\tJe suis contente de te voir ici.\nI'm glad to see you here.\tJe suis contente de vous voir ici.\nI'm glad to see you here.\tJe suis content de vous voir ici.\nI'm glad to see you here.\tJe me réjouis de vous voir ici.\nI'm glad to see you here.\tJe me réjouis de te voir ici.\nI'm glad you're OK again.\tJe suis contente que tu ailles à nouveau bien.\nI'm glad you're OK again.\tJe suis content que tu ailles à nouveau bien.\nI'm glad you're OK again.\tJe suis contente que vous alliez à nouveau bien.\nI'm glad you're OK again.\tJe suis content que vous alliez à nouveau bien.\nI'm going to be a father.\tJe vais être papa.\nI'm going to be a lawyer.\tJe vais devenir avocat.\nI'm going to get married.\tJe vais me marier.\nI'm going to get married.\tJe vais être marié.\nI'm going to get married.\tJe vais être mariée.\nI'm going to hang up now.\tJe vais maintenant raccrocher.\nI'm going to hit the hay.\tJe vais me pieuter.\nI'm going to regret this.\tJe vais le regretter.\nI'm going to shut up now.\tJe vais désormais me taire.\nI'm going to sleep on it.\tJe vais y songer.\nI'm going to take a bath.\tJe vais me baigner.\nI'm going to take my car.\tJe vais prendre ma voiture.\nI'm going to take my car.\tJe vais prendre mon char.\nI'm going to the station.\tJe vais à la station.\nI'm in a better mood now.\tJe suis de meilleur humeur maintenant.\nI'm in a good mood today.\tJe suis de bonne humeur aujourd'hui.\nI'm in no hurry to leave.\tJe ne suis pas pressé de partir.\nI'm just an average girl.\tJe suis juste une fille normale.\nI'm just getting started.\tJe viens tout juste de commencer.\nI'm just not very hungry.\tJe n'ai simplement pas très faim.\nI'm kind of busy tonight.\tJe suis plutôt occupé, ce soir.\nI'm kind of busy tonight.\tJe suis plutôt occupée, ce soir.\nI'm leaving you tomorrow.\tJe te quitte demain.\nI'm looking after myself.\tJe prends soin de moi.\nI'm looking for a wallet.\tJe cherche un portefeuille.\nI'm making a documentary.\tJe réalise un documentaire.\nI'm not a baby, you know!\tJe ne suis plus un bébé !\nI'm not a morning person.\tJe ne suis pas du matin.\nI'm not a native speaker.\tJe ne suis pas un locuteur natif.\nI'm not a patient person.\tJe ne suis pas quelqu'un de patient.\nI'm not a violent person.\tJe ne suis pas quelqu'un de violent.\nI'm not a violent person.\tJe ne suis pas une personne violente.\nI'm not about to ask him.\tJe ne suis pas là de lui demander.\nI'm not afraid of anyone.\tJe ne crains personne.\nI'm not afraid of ghosts.\tJe n'ai pas peur des fantômes.\nI'm not afraid of snakes.\tJe ne crains pas les serpents.\nI'm not allowed to leave.\tOn ne m'autorise pas à partir.\nI'm not as rich as I was.\tJe ne suis pas aussi riche que je le fus.\nI'm not as rich as I was.\tJe ne suis pas aussi riche que je l'étais.\nI'm not asking for money.\tJe ne demande pas d'argent.\nI'm not at all surprised.\tJe ne suis pas du tout surpris.\nI'm not at all surprised.\tJe ne suis pas du tout surprise.\nI'm not breaking the law.\tJe n'enfreins pas la loi.\nI'm not cleaning that up.\tJe ne vais pas nettoyer ça.\nI'm not coming back here.\tJe ne reviens pas ici.\nI'm not coming back home.\tJe ne vais pas rentrer à la maison.\nI'm not completely naive.\tJe ne suis pas complètement naïve.\nI'm not completely naive.\tJe ne suis pas complètement naïf.\nI'm not convinced at all.\tJe ne suis pas du tout convaincu.\nI'm not convinced at all.\tJe ne suis pas du tout convaincue.\nI'm not doing it anymore.\tJe ne le fais plus.\nI'm not doing it anymore.\tJe ne vais plus le faire.\nI'm not doing that today.\tJe ne vais pas faire ça aujourd'hui.\nI'm not drinking tonight.\tJe ne bois pas, ce soir.\nI'm not driving anywhere.\tJe ne vais nulle part avec ma voiture.\nI'm not easily impressed.\tJe ne suis pas facilement impressionné.\nI'm not easily impressed.\tJe ne suis pas facilement impressionnée.\nI'm not eating this fish.\tJe ne vais pas manger ce poisson.\nI'm not expecting anyone.\tJe n'attends personne.\nI'm not feeling too well.\tJe ne me sens pas trop bien.\nI'm not from around here.\tJe ne suis pas du coin.\nI'm not gambling anymore.\tJe ne joue plus aux jeux de hasard.\nI'm not gambling anymore.\tJe ne parie plus.\nI'm not getting involved.\tJe ne m'implique pas.\nI'm not getting involved.\tJe ne vais pas m'impliquer.\nI'm not going to compete.\tJe n'entrerai pas en compétition.\nI'm not going to sell it.\tJe ne le vendrai pas.\nI'm not going to sell it.\tJe ne la vendrai pas.\nI'm not here on business.\tJe ne suis pas ici pour affaires.\nI'm not hungry right now.\tJe n'ai pas faim maintenant.\nI'm not inspired anymore.\tJe ne suis plus inspirée.\nI'm not leaving with you.\tJe ne vais pas partir avec toi.\nI'm not like most people.\tJe ne suis pas comme la plupart des gens.\nI'm not making any plans.\tJe ne fais pas le moindre projet.\nI'm not overly concerned.\tJe ne me fais pas de souci excessif.\nI'm not really an expert.\tJe ne suis pas vraiment un expert.\nI'm not selling anything.\tJe ne vends rien du tout.\nI'm not signing anything.\tJe ne signe rien du tout.\nI'm not sure I like this.\tJe ne suis pas sûr d'aimer ça.\nI'm not sure I like this.\tJe ne suis pas sûre d'aimer ça.\nI'm not sure of anything.\tJe ne suis sûre de rien.\nI'm not sure of anything.\tJe ne suis sûr de rien.\nI'm not that type of guy.\tJe ne suis pas ce genre de gars.\nI'm not the jealous type.\tJe ne suis pas du genre jaloux.\nI'm not thinking clearly.\tMes pensées ne sont pas claires.\nI'm not very eager to go.\tJe n'ai pas trop envie d'y aller.\nI'm one of your students.\tJe suis de vos élèves.\nI'm one of your students.\tJe suis l'un de vos élèves.\nI'm one of your students.\tJe suis l'une de vos élèves.\nI'm pretty proud of that.\tJe suis assez fier de cela.\nI'm proud of my children.\tJe suis fière de mes enfants.\nI'm proud of my children.\tJe suis fier de mes enfants.\nI'm ready to make amends.\tJe suis disposé à me repentir.\nI'm ready to make amends.\tJe suis disposée à me repentir.\nI'm really proud of this.\tJ'en suis vraiment fière.\nI'm really proud of this.\tJ'en suis vraiment fier.\nI'm running out of ideas.\tJe suis à court d'idées.\nI'm serious about my job.\tJe prends mon travail au sérieux.\nI'm sorry for being late.\tJe suis désolé d'être en retard.\nI'm sorry for being late.\tJe suis désolée d'être en retard.\nI'm sorry for everything.\tJe te demande pardon pour tout.\nI'm sorry for what I did.\tDésolé de ce que j'ai fait.\nI'm sorry for what I did.\tJe suis désolé pour ce que j'ai fait.\nI'm sorry for what I did.\tJe suis désolé de ce que j'ai fait.\nI'm sorry to trouble you.\tJe suis désolé de te poser des problèmes.\nI'm sort of an extrovert.\tJe suis en quelque sorte extraverti.\nI'm sort of an introvert.\tJe suis en quelque sorte introverti.\nI'm starting to like you.\tJe commence à vous apprécier.\nI'm starting to like you.\tJe me mets à t'apprécier.\nI'm still kind of hungry.\tJ'ai encore plutôt faim.\nI'm sure I can do better.\tJe suis certain de pouvoir faire mieux.\nI'm sure that he's happy.\tJe suis certain qu'il est heureux.\nI'm surprised to see you.\tJe suis étonné de vous voir.\nI'm surprised to see you.\tJe suis surpris de te voir.\nI'm surprised to see you.\tJe suis surprise de te voir.\nI'm surprised to see you.\tJe suis étonné de te voir.\nI'm surprised to see you.\tJe suis surpris de vous voir.\nI'm surprised to see you.\tJe suis surprise de vous voir.\nI'm surprised to see you.\tJe suis étonnée de vous voir.\nI'm surprised to see you.\tJe suis étonnée de te voir.\nI'm talking on the phone.\tJe suis en train de parler au téléphone.\nI'm the boss around here.\tC'est moi le patron, par ici.\nI'm the boss around here.\tC'est moi la patronne, par ici.\nI'm thinking of the plan.\tJe songe au projet.\nI'm tired of watching TV.\tJe suis fatigué de regarder la télé.\nI'm too busy to help her.\tJe suis trop occupé pour l'aider.\nI'm too busy to help him.\tJe suis trop occupé pour l'aider.\nI'm too drunk to do that.\tJ'ai trop bu pour faire ça.\nI'm trying something new.\tJ'essaye quelque chose de nouveau.\nI'm trying something new.\tJ'essaie quelque chose de nouveau.\nI'm trying to save money.\tJ'essaie d'économiser de l'argent.\nI'm very glad to see you.\tJe suis très heureux de vous voir.\nI'm very proud of my son.\tJe suis très fier de mon fils.\nI'm willing to apologize.\tJe veux présenter mes excuses.\nI'm willing to apologize.\tJe veux faire mes excuses.\nI'm willing to apologize.\tJe suis disposé à présenter mes excuses.\nI'm willing to apologize.\tJe suis disposé à faire mes excuses.\nI'm worth more than this.\tJe vaux mieux que ça.\nI've always liked soccer.\tJ'ai toujours aimé le football.\nI've been here all night.\tJe suis resté ici toute la nuit.\nI've been here all night.\tJe suis restée ici toute la nuit.\nI've been very impressed.\tJ'ai été très impressionné.\nI've been very impressed.\tJ'ai été très impressionnée.\nI've come to accept this.\tJ'ai fini par accepter cela.\nI've decided not to quit.\tJ'ai décidé de ne pas démissionner.\nI've dreamed of this day.\tJ'ai rêvé de ce jour.\nI've forgotten about her.\tJe l'ai oubliée.\nI've gone to Kyoto twice.\tJe suis allé à Kyoto deux fois.\nI've got a busy schedule.\tJ'ai un emploi du temps chargé.\nI've got nothing to lose.\tJe n'ai rien à perdre.\nI've got plenty of money.\tJe dispose de beaucoup d'argent.\nI've got someone with me.\tJ'ai quelqu'un avec moi.\nI've got something to do.\tJ'ai quelque chose à faire.\nI've got something to do.\tJ'ai une chose à faire.\nI've got to do my chores.\tIl me faut faire mes tâches ménagères.\nI've got to do my chores.\tJe dois faire mes tâches ménagères.\nI've got to do my chores.\tIl me faut faire mes corvées.\nI've got to do my chores.\tJe dois faire mes corvées.\nI've got to speak to you.\tIl me faut vous parler.\nI've got to speak to you.\tJe dois vous parler.\nI've got to speak to you.\tIl me faut te parler.\nI've got to speak to you.\tJe dois te parler.\nI've heard all about you.\tJ'ai tout entendu à ton sujet.\nI've heard all about you.\tJ'ai tout entendu à votre sujet.\nI've heard it all before.\tJe l'ai entendu en entier auparavant.\nI've just finished lunch.\tJ'ai juste fini de déjeuner.\nI've just finished lunch.\tJe viens de finir de déjeuner.\nI've known him for years.\tJe le connais depuis des années.\nI've lost about 80 cents.\tJ'ai perdu environ 80 cents.\nI've lost my best friend.\tJ'ai perdu mon meilleur ami.\nI've lost my best friend.\tJ'ai perdu ma meilleure amie.\nI've never been so proud.\tJe n'ai jamais été si fier.\nI've never been so proud.\tJe n'ai jamais été si fière.\nI've never considered it.\tJe ne l'ai jamais envisagé.\nI've never heard of that.\tJe n'en ai jamais entendu parler.\nI've never worn a tuxedo.\tJe n'ai jamais porté de smoking.\nI've only just come back.\tJe viens juste de rentrer.\nI've only just come back.\tJe viens seulement de rentrer.\nI've painted the ceiling.\tJ'ai peint le plafond.\nI've seen one many times.\tJ'en ai vu un plusieurs fois.\nI've spent all the money.\tJ'ai dépensé tout l'argent.\nI've thought of it a lot.\tJ'y ai beaucoup pensé.\nIf it's fun, I will stay.\tSi c'est marrant, je resterai.\nIf that happens, call me.\tSi ça se produit, appelle-moi !\nIf that happens, call me.\tSi ça se produit, appelez-moi !\nIf you can, come with us.\tSi vous pouvez, venez avec nous.\nIf you want to, we'll go.\tSi tu le veux, nous irons.\nIf you want to, we'll go.\tSi tu le veux, nous partirons.\nIf you want to, we'll go.\tSi vous le voulez, nous irons.\nIf you want to, we'll go.\tSi vous le voulez, nous partirons.\nIn a word, life is short.\tEn un mot, la vie est courte.\nIn a word, she is guilty.\tEn un mot, elle est coupable.\nInclude me in your plans.\tIntègre-moi dans tes plans.\nIron is harder than gold.\tLe fer est plus dur que l'or.\nIs a thousand yen enough?\tMille yens sont-ils suffisants ?\nIs all of that necessary?\tTout cela est-il nécessaire ?\nIs all this stuff stolen?\tTous ces trucs sont-ils volés ?\nIs it OK if I open a can?\tPuis-je ouvrir une boîte ?\nIs it OK if I open a can?\tPuis-je ouvrir une cannette ?\nIs it really so terrible?\tEst-ce vraiment si terrible ?\nIs it something pressing?\tEst-ce quelque chose d'urgent ?\nIs it this hot every day?\tFait-il aussi chaud chaque jour ?\nIs it your fault or ours?\tEst-ce de votre faute ou de la nôtre ?\nIs it your fault or ours?\tEst-ce de votre faute ou de la nôtre ?\nIs she single or married?\tEst-elle célibataire ou mariée ?\nIs that a trick question?\tEst-ce une question piège ?\nIs that a trick question?\tS'agit-il d'une question piège ?\nIs that really important?\tEst-ce vraiment important ?\nIs that unconstitutional?\tEst-ce inconstitutionnel ?\nIs that why you're upset?\tEst-ce pour cela que tu es fâché ?\nIs that why you're upset?\tEst-ce pour cela que vous êtes fâché ?\nIs that why you're upset?\tEst-ce pour cela que tu es fâchée ?\nIs that why you're upset?\tEst-ce pour cela que vous êtes fâchée ?\nIs that why you're upset?\tEst-ce pour cela que vous êtes fâchés ?\nIs that why you're upset?\tEst-ce pour cela que vous êtes fâchées ?\nIs the museum open today?\tLe musée est-il ouvert aujourd'hui ?\nIs the plane on schedule?\tL'avion est-il à l'heure ?\nIs the response positive?\tLa réponse est-elle positive ?\nIs there a drink minimum?\tY a-t-il un minimum à dépenser en boissons ?\nIs there a letter for me?\tY a-t-il une lettre pour moi ?\nIs there a zoo in Boston?\tY a-t-il un zoo à Boston ?\nIs there anything to eat?\tY a-t-il quoi que ce soit à manger ?\nIs there something there?\tY a-t-il quelque chose là-bas ?\nIs there something wrong?\tY a-t-il quelque chose qui cloche ?\nIs there still any sugar?\tY a-t-il encore du sucre ?\nIs this a duty-free shop?\tEst-ce là une boutique détaxée ?\nIs this a duty-free shop?\tEst-ce là un magasin détaxé ?\nIs this bag yours or his?\tCe sac est-il le tien ou le sien ?\nIs this bag yours or his?\tCe sac est-il le vôtre ou le sien ?\nIs this cage shark-proof?\tCette cage est-elle à l'épreuve des requins ?\nIs this fish still alive?\tCe poisson est-il encore vivant ?\nIs this fish still alive?\tEst-ce que ce poisson est encore vivant ?\nIs this fish still alive?\tLe poisson est-il encore vivant ?\nIs this price acceptable?\tCe prix est-il raisonnable ?\nIs this really happening?\tEst-ce vraiment en train d'arriver ?\nIs this really happening?\tEst-ce vraiment en train d'avoir lieu ?\nIs this really happening?\tEst-ce vraiment en train de se passer ?\nIs this really spaghetti?\tC’est vraiment des spaghettis ?\nIs this sentence correct?\tCette phrase est-elle correcte ?\nIs this typewriter yours?\tCette machine à écrire est-elle la vôtre ?\nIs this typewriter yours?\tCette machine à écrire est-elle la tienne ?\nIs your father a teacher?\tVotre père est-il enseignant ?\nIs your father a teacher?\tTon père est-il enseignant ?\nIs your name on the list?\tVotre nom se trouve-t-il sur la liste ?\nIs your name on the list?\tTon nom se trouve-t-il sur la liste ?\nIs your name on the list?\tVotre nom figure-t-il sur la liste ?\nIs your name on the list?\tTon nom figure-t-il sur la liste ?\nIsn't that what you said?\tN'est-ce pas ce que tu as dit ?\nIsn't that what you said?\tN'est-ce pas ce que vous avez dit ?\nIt appears to be working.\tÇa semble fonctionner.\nIt belongs to my brother.\tÇa appartient à mon frère.\nIt caught me by surprise.\tÇa m'a pris par surprise.\nIt could get complicated.\tÇa pourrait devenir compliqué.\nIt could have been worse.\tÇa aurait pu être pire.\nIt doesn't belong to you.\tElle ne t'appartient pas.\nIt doesn't belong to you.\tIl ne vous appartient pas.\nIt doesn't cost anything.\tÇa ne coûte rien.\nIt doesn't fit well here.\tCela ne convient pas bien ici.\nIt doesn't go far enough.\tÇa ne va pas assez loin.\nIt doesn't look that way.\tÇa n'en a pas l'air.\nIt doesn't look too hard.\tÇa ne semble pas trop difficile.\nIt doesn't look too hard.\tÇa n'a pas l'air trop difficile.\nIt doesn't look too hard.\tÇa ne semble pas trop dur.\nIt doesn't look too hard.\tÇa n'a pas l'air trop dur.\nIt doesn't matter, right?\tÇa n'a pas d'importance, pas vrai ?\nIt doesn't matter, right?\tÇa ne compte pas, pas vrai ?\nIt doesn't mean anything!\tÇa veut rien dire !\nIt doesn't really matter.\tÇa n'a pas vraiment d'importance.\nIt doesn't work, does it?\tCela ne marche pas, n'est-ce pas ?\nIt doesn't work, does it?\tCela ne fonctionne pas, n'est-ce pas ?\nIt feels good to be back.\tÇa fait du bien d'être à nouveau de retour.\nIt gave me quite a shock.\tÇa m'a fait un vrai choc.\nIt is almost ten o'clock.\tIl est presque dix heures.\nIt is cold outside today.\tIl fait froid dehors aujourd'hui.\nIt is going to rain soon.\tIl va pleuvoir bientôt.\nIt is he who is to blame.\tC'est lui le fautif.\nIt is next to impossible.\tC'est quasi-impossible.\nIt is no use complaining.\tIl ne sert à rien de se plaindre.\nIt is no use complaining.\tÇa ne sert à rien de se plaindre.\nIt is none the less true.\tC'est pourtant vrai.\nIt is none the less true.\tC'est néanmoins vrai.\nIt is none the less true.\tÇa n'en est pas moins vrai.\nIt is not a real mansion.\tCe n'est pas une véritable demeure.\nIt is not a real mansion.\tIl ne s'agit pas d'une véritable demeure.\nIt is not necessarily so.\tCe n'est pas nécessairement le cas.\nIt is really nice of you.\tC'est très gentil de ta part.\nIt is wrong to tell lies.\tC'est mal de dire un mensonge.\nIt is wrong to tell lies.\tC'est mal de mentir.\nIt makes no sense at all.\tÇa n'a pas le moindre sens.\nIt only works on Windows.\tÇa ne marche que sous Windows.\nIt only works on Windows.\tÇa ne fonctionne que sous Windows.\nIt rained hard yesterday.\tIl a plu à verse hier.\nIt seems that he is rich.\tIl semble être riche.\nIt seems that he's happy.\tOn dirait qu'il est heureux.\nIt shouldn't be a secret.\tÇa ne devrait pas être un secret.\nIt snowed hard yesterday.\tIl a beaucoup neigé hier.\nIt sounds like a fun job.\tÇa semble être un travail marrant.\nIt takes one to know one.\tToi-même.\nIt takes one to know one.\tVous-même.\nIt turned out to be true.\tCela se révéla vrai.\nIt turned out to be true.\tÇa se révéla vrai.\nIt turned out to be true.\tÇa s'est révélé vrai.\nIt was a beautiful night.\tC'était une belle nuit.\nIt was a big help for me.\tCela m'a été d'un grand secours.\nIt was a terrible affair.\tCe fut une effroyable affaire.\nIt was all a big mistake.\tTout ça était une grosse erreur.\nIt was an act of courage.\tCe fut un acte de courage.\nIt was just as I thought.\tC’était bien ce que je pensais.\nIt was only a hypothesis.\tCe n'était qu'une hypothèse.\nIt was probably not true.\tCe n'était probablement pas vrai.\nIt was raining yesterday.\tHier le temps était pluvieux.\nIt was really incredible.\tC'était vraiment incroyable.\nIt was worth every penny.\tÇa en valait chaque centime.\nIt wasn't all that funny.\tCe n'était pas si amusant.\nIt wasn't me. It was Tom.\tCe n'était pas moi. C'était Tom.\nIt wasn't much of a plan.\tC'était plutôt limité, comme plan.\nIt wasn't much of a view.\tC'était plutôt limité, comme point de vue.\nIt wasn't much of a yard.\tC'était à peine une cour.\nIt will not happen again.\tÇa ne se produira plus.\nIt won't cost you a dime.\tÇa ne te coûtera pas un centime.\nIt won't cost you a dime.\tÇa ne te coûtera pas un rond.\nIt won't cost you a dime.\tÇa ne te coûtera pas un kopeck.\nIt won't hurt, I promise.\tCela ne fera pas mal, promis.\nIt'll only take a minute.\tÇa ne prendra qu'une minute.\nIt's a basic human right.\tC'est un droit humain fondamental.\nIt's a bunch of nonsense.\tC'est un tas de balivernes.\nIt's a bunch of nonsense.\tC'est un paquet d'absurdités.\nIt's a complete disaster.\tC'est un désastre complet.\nIt's a fast growing city.\tC'est une ville à croissance rapide.\nIt's a quarter past nine.\tIl est neuf heures et quart.\nIt's a question of taste.\tAffaire de goût.\nIt's a risky proposition.\tC'est une proposition risquée.\nIt's a sign of the times.\tC'est un signe des temps.\nIt's a tough place to be.\tC'est un endroit dur.\nIt's about time to start.\tIl est l'heure de démarrer.\nIt's against my religion.\tC'est contre ma religion.\nIt's all about technique.\tTout est affaire de technique.\nIt's all in a day's work.\tÇa fait partie du travail.\nIt's all over between us.\tTout est fini entre nous.\nIt's an American company.\tC'est une société étasunienne.\nIt's an incredible sight.\tC'est une vision incroyable\nIt's another ball of wax.\tC'est une autre paire de manches.\nIt's as good as finished.\tC'est presque terminé.\nIt's because he loves me.\tC'est parce qu'il m'aime.\nIt's been a terrible day.\tÇa a été une journée horrible.\nIt's crowded again today.\tC'est de nouveau plein, aujourd'hui.\nIt's crowded again today.\tIl y a de nouveau foule aujourd'hui.\nIt's difficult, isn't it?\tC'est difficile, n'est-ce pas ?\nIt's excruciatingly slow.\tC'est horriblement lent.\nIt's extremely dangerous.\tC'est extrêmement dangereux.\nIt's for my personal use.\tC’est pour mon usage personnel.\nIt's for my personal use.\tC'est pour mon usage personnel.\nIt's for your own safety.\tC'est pour ta propre sécurité.\nIt's for your own safety.\tC'est pour votre propre sécurité.\nIt's good to talk to you.\tC'est bon de te parler.\nIt's good to talk to you.\tC'est bon de vous parler.\nIt's hot today, isn't it?\tIl fait chaud, aujourd'hui, n'est-ce pas ?\nIt's in my jacket pocket.\tC'est dans la poche de ma veste.\nIt's incredibly powerful.\tC'est incroyablement puissant.\nIt's junk. Throw it away.\tC'est de la merde. Jette-le.\nIt's just the right size.\tC'est juste la taille qu'il faut.\nIt's just the right size.\tC'est juste la taille qui convient.\nIt's kind of complicated.\tC'est plutôt compliqué.\nIt's my duty to help you.\tC'est mon devoir de t'aider.\nIt's my fault, not yours.\tC'est ma faute, pas la tienne.\nIt's my fault, not yours.\tC'est ma faute, pas la vôtre.\nIt's my fault, not yours.\tC'est de ma faute, pas de la vôtre.\nIt's my fault, not yours.\tC'est de ma faute, pas de la tienne.\nIt's no longer available.\tCe n'est plus disponible.\nIt's none of my business!\tCe ne sont pas mes affaires !\nIt's not anybody's fault.\tCe n'est la faute de personne.\nIt's not good to overeat.\tIl n'est pas bon de manger en excès.\nIt's not healthy for you.\tCe n'est pas sain pour toi.\nIt's not healthy for you.\tCe n'est pas sain pour vous.\nIt's not legally binding.\tCe n'est pas une obligation légale.\nIt's not like the movies.\tCe n'est pas comme au cinéma.\nIt's not our anniversary.\tCe n'est pas notre anniversaire.\nIt's not quite ready yet.\tCe n'est pas encore tout à fait prêt.\nIt's not that noticeable.\tCe n'est pas si visible.\nIt's not that ridiculous.\tCe n'est pas si ridicule.\nIt's not worth the money.\tÇa n'en vaut pas la dépense.\nIt's only getting bigger.\tÇa ne fait qu'empirer.\nIt's out of the question!\tC'est hors de question !\nIt's out of the question.\tC'est hors de question.\nIt's pitch black outside.\tIl fait noir comme du jais, dehors.\nIt's pitch black outside.\tIl fait noir comme dans un four, dehors.\nIt's really cold tonight.\tIl fait vraiment froid, ce soir.\nIt's really cold tonight.\tIl fait vraiment froid, cette nuit.\nIt's really embarrassing.\tC'est vraiment gênant.\nIt's really not that bad.\tCe n'est vraiment pas si mauvais.\nIt's really not that hot.\tIl ne fait vraiment pas si chaud.\nIt's right up your alley.\tC'est exactement dans tes cordes.\nIt's right up your alley.\tC'est exactement dans vos cordes.\nIt's six o'clock already.\tIl est déjà six heures.\nIt's technically illegal.\tC'est techniquement illégal.\nIt's the dry season here.\tC'est la saison sèche, ici.\nIt's the house specialty.\tC'est la spécialité de la maison.\nIt's time to get serious.\tIl faut se rendre à l'évidence.\nIt's time to get serious.\tOn passe aux choses sérieuses.\nIt's too early to get up.\tIl est trop tôt pour se lever.\nIt's too good to be true.\tC'est trop beau pour être vrai.\nIt's unlikely to be true.\tIl est peu probable que ce soit vrai.\nIt's warm enough to swim.\tIl fait assez chaud pour nager.\nIt's working as intended.\tÇa fonctionne comme prévu.\nIt's your responsibility.\tC'est votre responsabilité.\nJapan is in eastern Asia.\tLe Japon est en Asie orientale.\nJeans go with everything.\tLes jeans vont avec tout.\nJust about everyone came.\tPratiquement tout le monde est venu.\nJust answer the question.\tRéponds simplement à la question.\nJust answer the question.\tRépondez simplement à la question.\nJust give me what I want.\tDonne-moi simplement ce que je veux.\nJust give me what I want.\tDonne-moi juste ce que je veux.\nJust give me what I want.\tDonnez-moi simplement ce que je veux.\nJust give me what I want.\tDonnez-moi juste ce que je veux.\nJust take my word for it.\tIl suffit de me croire sur parole.\nJust take my word for it.\tCrois-moi juste sur parole.\nKeep an eye on the girls.\tGarde un œil sur les filles.\nKeep mum about this plan.\tPas un mot au sujet de ce plan.\nKeep these rules in mind.\tGarde ces règles en tête.\nKeep these rules in mind.\tGardez ces règles en tête.\nKeep this lesson in mind.\tGarde cette leçon en tête.\nKeep your cigarettes dry.\tGarde tes cigarettes au sec.\nLatin is a dead language.\tLe latin est une langue morte.\nLaughter filled the room.\tDes rires emplirent la salle.\nLeave your desk as it is.\tLaisse ton bureau tel qu'il est.\nLet me check my schedule.\tLaisse-moi vérifier dans mon planning.\nLet me check your ticket.\tLaissez-moi vérifier votre ticket.\nLet me check your ticket.\tLaisse-moi vérifier ton ticket.\nLet me explain the rules.\tLaisse-moi expliquer les règles.\nLet me explain the rules.\tLaissez-moi expliquer les règles.\nLet me get this straight.\tLaisse-moi clarifier ça.\nLet me get this straight.\tLaissez-moi clarifier ça.\nLet me have a look at it.\tLaissez-moi regarder !\nLet me have another look.\tLaisse-moi regarder à nouveau.\nLet me introduce my wife.\tLaissez-moi vous présenter ma femme.\nLet me know your address.\tFais-moi savoir ton adresse s'il te plaît.\nLet me open it by myself.\tLaisse-moi l'ouvrir en privé.\nLet me smell your breath.\tFais-moi sentir ton haleine !\nLet me smell your breath.\tFaites-moi sentir votre haleine !\nLet me tell you a secret.\tLaisse-moi te dire un secret.\nLet me use your computer.\tLaisse moi utiliser ton ordinateur.\nLet them know we're busy.\tFaites-leur savoir que nous sommes occupés.\nLet us agree to disagree.\tAccordons-nous sur un désaccord.\nLet us agree to disagree.\tAcceptons que nous ne sommes pas d'accord.\nLet's all just calm down.\tCalmons-nous tous simplement !\nLet's all just calm down.\tCalmons-nous toutes simplement !\nLet's ask a travel agent.\tDemandons à un voyagiste.\nLet's change the subject.\tChangeons de sujet.\nLet's clean up this mess.\tNettoyons cette pagaille.\nLet's clean up this mess.\tNettoyons ce bazar.\nLet's do it another time.\tFaisons cela une autre fois.\nLet's get this over with.\tTerminons-en.\nLet's get this over with.\tFinissons-en.\nLet's go and investigate.\tAllons enquêter.\nLet's go outside and eat.\tSortons manger !\nLet's go tell the others.\tAllons le dire aux autres.\nLet's go to eat together.\tAllons manger ensemble.\nLet's go to the hospital.\tAllons à l'hôpital.\nLet's leave it up to him.\tLaissons-le en décider.\nLet's listen to the tape.\tÉcoutons cette cassette.\nLet's not stay here long.\tNe restons pas ici trop longtemps.\nLet's not talk about Tom.\tNe parlons pas de Tom.\nLet's not worry about it.\tNe nous en soucions pas !\nLet's paint the town red.\tFaisons la bringue !\nLet's play hide and seek.\tJouons à cache-cache !\nLet's play some football.\tJouons au football.\nLet's play truth or dare.\tJouons à action ou vérité.\nLet's start with the why.\tCommençons par le pourquoi.\nLet's stop this argument.\tFinissons-en avec cette dispute.\nLet's stop this argument.\tArrêtons cette controverse.\nLet's take a short break.\tFaisons une courte pause.\nLet's take the short cut.\tPrenons le raccourci.\nLet's welcome our guests.\tSaluons nos invités.\nLightning hit that tower.\tLa foudre frappa cette tour.\nLook out for pickpockets.\tFais attention aux pickpockets.\nLook out for pickpockets.\tAttention aux pickpockets.\nLook out for pickpockets.\tPrenez garde aux pickpockets.\nLook out for rock slides.\tAttention aux chutes de pierres.\nLook what I made for Tom.\tRegarde ce que j'ai fait pour Tom.\nLook what I made for Tom.\tRegardez ce que j'ai fait pour Tom.\nLook, I'm not interested.\tÉcoute, ça ne m'intéresse pas.\nLooks are not everything.\tL'apparence n'est pas tout.\nLunch will be ready soon.\tLe déjeuner sera bientôt prêt.\nMany Americans are obese.\tBeaucoup d'Américains sont obèses.\nMany friends saw him off.\tDe nombreux amis vinrent lui faire leurs adieux.\nMary has stopped smoking.\tMary a arrêté de fumer.\nMary is Tom's stepmother.\tMary est la belle-mère de Tom.\nMay I ask a favor of you?\tPuis-je vous demander une faveur ?\nMay I ask a favor of you?\tPuis-je te demander une faveur ?\nMay I ask where you work?\tPuis-je savoir où vous travaillez ?\nMay I ask you a question?\tPuis-je vous poser une question ?\nMay I borrow your eraser?\tPuis-je vous emprunter votre gomme ?\nMay I eat a little of it?\tEst-ce que je peux en manger un peu ?\nMay I eat a little of it?\tPuis-je en manger un peu ?\nMay I go to the bathroom?\tPuis-je utiliser les toilettes ?\nMay I go to the bathroom?\tPuis-je aller aux toilettes ?\nMay I have a piece of it?\tPuis-je en avoir un morceau ?\nMay I offer you my chair?\tPuis-je vous offrir ma chaise ?\nMay I offer you my chair?\tPuis-je t'offrir ma chaise ?\nMay I see a menu, please?\tPuis-je jeter un coup d'œil au menu ?\nMay I show you something?\tPuis-je vous montrer quelque chose ?\nMay I show you something?\tPuis-je te montrer quelque chose ?\nMay I take pictures here?\tAi-je le droit de prendre des photos, ici ?\nMay I use this telephone?\tPuis-je utiliser ce téléphone ?\nMay I use your car today?\tPuis-je utiliser votre véhicule, aujourd'hui ?\nMay I use your car today?\tPuis-je utiliser ta bagnole, aujourd'hui ?\nMay I use your car today?\tPuis-je utiliser ta voiture, aujourd'hui ?\nMay I use your telephone?\tPuis-je utiliser votre téléphone ?\nMay I visit you tomorrow?\tJe peux te rendre visite demain ?\nMay I visit you tomorrow?\tJe peux vous rendre visite demain ?\nMay I visit you tomorrow?\tJe peux passer chez vous demain ?\nMay I visit you tomorrow?\tJe peux passer chez toi demain ?\nMaybe this was a mistake.\tPeut-être était-ce une erreur.\nMaybe we can make a deal.\tNous pouvons peut-être faire affaire.\nMeet me at the hotel bar.\tRejoins-moi au bar de l'hôtel !\nMeet me at the hotel bar.\tRejoignez-moi au bar de l'hôtel !\nMeet me at the hotel bar.\tOn se retrouve au bar de l'hôtel !\nMeet me at the hotel bar.\tRetrouvons-nous au bar de l'hôtel !\nMight I ask your address?\tPuis-je vous demander votre adresse ?\nMonday is my busiest day.\tC'est le lundi que je suis le plus occupé.\nMost of us were veterans.\tLa plupart d'entre nous était des vétérans.\nMost students study hard.\tLa plupart des étudiants étudient durement.\nMother decided otherwise.\tMère en a décidé autrement.\nMother is in the kitchen.\tMa mère est dans la cuisine.\nMother prepared us lunch.\tMère nous a préparé le déjeuner.\nMother prepared us lunch.\tMère nous prépara à déjeuner.\nMurder is a wicked crime.\tLe meurtre est un crime odieux.\nMusic is a gift from God.\tLa musique est un don de Dieu.\nMy aim is to be a doctor.\tMon but est de devenir médecin.\nMy approach is different.\tMon approche est différente.\nMy aunt gave me a camera.\tMa tante m'a donné une caméra.\nMy aunt gave me an album.\tMa tante m'a donné un album.\nMy birthday is coming up.\tC'est bientôt mon anniversaire.\nMy boys are all grown up.\tMes garçons sont tous adultes.\nMy brother is a freshman.\tMon frère est étudiant de première année.\nMy car is being repaired.\tMa voiture est en train d'être réparée.\nMy car is parked outside.\tMa voiture est garée à l'extérieur.\nMy career is on the line.\tMa carrière est en jeu.\nMy cholesterol went down.\tMon cholestérol a baissé.\nMy day ends at 5 o'clock.\tMa journée se termine à 5 heures.\nMy family had many debts.\tMa famille avait beaucoup de dettes.\nMy family is a large one.\tMa famille est nombreuse.\nMy fate is in your hands.\tMon sort est entre tes mains.\nMy fate is in your hands.\tMon sort est entre vos mains.\nMy father gave me a game.\tMon père m'a offert un jeu.\nMy father has many books.\tMon père a beaucoup de livres.\nMy father is in his room.\tMon père est dans sa chambre.\nMy father is in his room.\tMon père se trouve dans sa chambre.\nMy father is intelligent.\tMon père est intelligent.\nMy favorite color is red.\tMa couleur préférée est le rouge.\nMy fingertips are frozen.\tJ'ai le bout des doigts gelés.\nMy friend studies Korean.\tMon ami apprend le coréen.\nMy girlfriend is Chinese.\tMa petite copine est chinoise.\nMy girlfriend was crying.\tMa petite copine était en train de pleurer.\nMy girlfriend was crying.\tMa petite amie était en train de pleurer.\nMy girlfriend was crying.\tMa copine était en train de pleurer.\nMy girlfriend was crying.\tMa petite copine pleurait.\nMy girlfriend was crying.\tMa copine pleurait.\nMy girlfriend was crying.\tMa petite amie pleurait.\nMy hobby is playing golf.\tMa passion c'est le golf.\nMy husband is a good man.\tMon mari est un chic type.\nMy husband is a good man.\tMon époux est un chic type.\nMy life is in your hands.\tMa vie repose entre tes mains.\nMy life is in your hands.\tMa vie repose entre vos mains.\nMy mom is overprotective.\tMa mère me surprotège.\nMy mother is always busy.\tMa mère est toujours occupée.\nMy mother is sick in bed.\tMa mère est alitée.\nMy parents are both dead.\tMes parents sont tous les deux morts.\nMy parents know about it.\tMes parents le savent.\nMy parents know about it.\tMes parents sont au courant.\nMy printer is low on ink.\tMon imprimante est à court d'encre.\nMy robot's name is Multi.\tLe nom de mon robot est Multi.\nMy robot's name is Multi.\tMon robot s'appelle Multi.\nMy room's a little messy.\tMa chambre est un peu en désordre.\nMy shoelaces came undone.\tMes lacets se défirent.\nMy sister is so annoying.\tMa sœur est tellement pénible !\nMy sister is so annoying.\tMa sœur est tellement embêtante !\nMy sister started crying.\tMa sœur se mit à pleurer.\nMy son has a black beard.\tMon fils a la barbe noire.\nMy son is taller than me.\tMon fils est plus grand que moi.\nMy teacher drove me home.\tMon professeur m'a reconduit chez moi.\nMy throat's a little dry.\tJ'ai la gorge un peu sèche.\nMy uncle gave me his car.\tMon oncle me donna sa voiture.\nMy uncle gave me his car.\tMon oncle me confia sa voiture.\nMy uncle lives in London.\tMon oncle habite à Londres.\nMy uncles live in London.\tMes oncles vivent à Londres.\nMy university has a dorm.\tMon université a un dortoir.\nMy watch has been stolen.\tOn m'a volé ma montre.\nMy watch keeps good time.\tMa montre reste précise.\nMy wife is a poor driver.\tMon épouse est mauvaise conductrice.\nMy wife looked surprised.\tMa femme a semblé surprise.\nMy wife thinks I'm crazy.\tMa femme pense que je suis dingue.\nNever be this late again.\tNe sois plus jamais autant en retard.\nNever be this late again.\tNe soyez plus jamais autant en retard.\nNever mind what she says.\tNe fais pas attention à ce qu'elle dit.\nNever mind what she says.\tNe faites pas attention à ce qu'elle dit.\nNo one can figure it out.\tPersonne n'arrive à le comprendre.\nNo one can figure it out.\tPersonne ne parvient à le comprendre.\nNo one can get in or out.\tPersonne ne peut entrer ou sortir.\nNo one can get in or out.\tPersonne ne peut entrer ni sortir.\nNo one can help you, Tom.\tPersonne ne peut t'aider, Tom.\nNo one can help you, Tom.\tPersonne ne peut vous aider, Tom.\nNo one has ever seen God.\tPersonne n'a jamais vu Dieu.\nNo one knows what to say.\tPersonne ne sait que dire.\nNo one says that anymore.\tPersonne ne dit plus ça.\nNo one wants to go there.\tPersonne ne veut s'y rendre.\nNo one will believe them.\tPersonne ne les croira.\nNo one would've listened.\tPersonne n'aurait écouté.\nNobody answered the door.\tPersonne ne répondit à la porte.\nNobody answered the door.\tPersonne n'a répondu à la porte.\nNobody asked me anything.\tPersonne ne m'a demandé quoi que ce soit.\nNobody came to my rescue.\tPersonne n'est venu à mon secours.\nNobody came to the party.\tPersonne n'est venu à la fête.\nNobody else has a chance.\tPersonne d'autre n'a de chance.\nNobody knows what to say.\tPersonne ne sait que dire.\nNobody tells me anything.\tPersonne ne me dit quoi que ce soit.\nNobody wants to be hated.\tPersonne ne souhaite être détesté.\nNone of them are present.\tAucun d'entre eux n'est présent.\nNone of them know French.\tAucun d'entre eux ne connaît le français.\nNone of them know French.\tAucune d'entre elles ne connaît le français.\nNone of this makes sense.\tRien de ceci n'a de sens.\nNot all blondes are dumb.\tToutes les blondes ne sont pas bêtes.\nNot all of them are busy.\tTous ne sont pas occupés.\nNot all of them are busy.\tToutes ne sont pas occupées.\nNot all people like dogs.\tTous les gens n'aiment pas les chiens.\nNot all people like dogs.\tTous les gens n'apprécient pas les chiens.\nNot everyone is like you.\tTout le monde n'est pas comme toi.\nNothing has been decided.\tRien n'a été décidé.\nNothing will distract us.\tRien ne nous distraira.\nNow I am too old to walk.\tMaintenant je suis trop vieux pour marcher.\nNow let's begin the game.\tQue le match commence.\nNow this is more like it.\tMaintenant ça y ressemble davantage.\nOf course I remember you.\tBien sûr que je me souviens de vous.\nOf course I remember you.\tBien sûr que je me souviens de toi.\nOf course, I feel guilty.\tBien sûr que je me sens coupable.\nOld people wake up early.\tLes personnes âgées se lèvent tôt.\nOne of the dogs is alive.\tL'un des chiens est vivant.\nOne thing led to another.\tUne chose entraîna l'autre.\nOur class is a small one.\tNotre classe est une petite classe.\nOur dog is in the kennel.\tNotre chien est dans la niche.\nOur sales are decreasing.\tNos ventes décroissent.\nOur work is all over now.\tNotre tâche est désormais achevée.\nOwls are active at night.\tLes hiboux sont actifs la nuit.\nOwls are active at night.\tLes chouettes sont actives la nuit.\nOwls can see in the dark.\tLes hiboux peuvent voir dans le noir.\nPass me the salt, please.\tPasse-moi le sel, s'il te plaît.\nPass me the salt, please.\tPassez-moi le sel s'il vous plaît.\nPass me the wine, please.\tPassez-moi le vin s'il vous plaît.\nPay at the cash register.\tPayez à la caisse.\nPay very close attention.\tFaites bien attention !\nPeople are getting antsy.\tLes gens deviennent tendus.\nPeople are looking at us.\tLes gens nous regardent.\nPeople lived in villages.\tLes gens vivaient dans des villages.\nPerhaps you are mistaken.\tPeut-être que vous vous trompez.\nPlants die without water.\tSans eau, les plantes meurent.\nPlease be kind to others.\tSois gentil avec les autres !\nPlease choose one person.\tChoisissez une seule personne, s'il vous plaît.\nPlease choose one person.\tNe choisis qu'une personne, je te prie.\nPlease do not smoke here.\tMerci de ne pas fumer ici.\nPlease don't laugh at me.\tNe ris pas de moi s'il te plaît.\nPlease don't laugh at me.\tNe te moque pas de moi, je te prie.\nPlease don't tell anyone.\tVeuillez ne le dire à personne, je vous prie.\nPlease don't tell anyone.\tS'il te plaît, ne le dis à personne.\nPlease don't tell anyone.\tVeuillez ne le dire à personne !\nPlease don't tell anyone.\tNe le dites à personne, je vous prie !\nPlease don't tell anyone.\tNe le dis à personne, je te prie !\nPlease don't use my name.\tJe te prie de ne pas employer mon nom !\nPlease don't waste water.\tVeuillez ne pas gaspiller l'eau.\nPlease don't waste water.\tJe te prie de ne pas gaspiller l'eau.\nPlease give me this book.\tDonne-moi ce livre s'il te plaît.\nPlease make a right turn.\tVeuillez tourner à droite.\nPlease pass me the sugar.\tPasse-moi le sucre s'il te plaît.\nPlease put on your shoes.\tVeuillez mettre vos chaussures.\nPlease put on your shoes.\tMets tes chaussures, s'il te plaît.\nPlease refer to page ten.\tRéférez-vous à la page 10, s'il vous plaît.\nPlease say it in English.\tVeuillez le dire en anglais.\nPlease say it in English.\tDis-le en anglais, je te prie.\nPlease send an ambulance.\tS'il vous plaît, envoyez une ambulance.\nPlease sign this receipt.\tVeuillez signer ce reçu !\nPlease sign this receipt.\tSigne ce reçu, je te prie !\nPlease speak more slowly.\tS'il te plaît, parle moins vite.\nPlease speak more slowly.\tParlez un peu plus lentement, s'il vous plaît.\nPlease take note of that.\tVeuillez prendre note de cela !\nPlease take off your hat.\tVeuillez ôter votre chapeau.\nPlease take some of them.\tVeuillez en prendre quelques uns.\nPlease take some of them.\tVeuillez en prendre quelques unes.\nPlease tell me your name.\tS’il vous plaît, pouvez-vous me donner votre nom ?\nPlease throw me the ball.\tLance-moi la balle, s'il te plaît.\nPlease throw me the ball.\tLancez-moi la balle, s'il vous plaît.\nPlease turn on the light.\tMerci d'allumer la lumière.\nPlease turn on the radio.\tS’il te plaît, allume la radio.\nPlease turn on the radio.\tMets la radio, je te prie.\nPlease turn on the radio.\tVeuillez mettre la radio.\nPlease turn up the sound.\tMonte le son, je te prie.\nPlease turn up the sound.\tMontez le son, je vous prie.\nPlease wait five minutes.\tVeuillez attendre pendant cinq minutes.\nPlease wait half an hour.\tVeuillez attendre une demi-heure.\nPlease wait on him first.\tVeuillez le servir en premier.\nPlease water the flowers.\tS'il te plaît, arrose les fleurs.\nPolitics leaves him cold.\tLa politique le laisse froid.\nPoor men have no leisure.\tLes hommes pauvres n'ont pas de loisirs.\nPractice what you preach.\tApplique ce que tu prêches.\nPrices are lower in Kobe.\tLes prix sont moindres à Kobe.\nPrices continued to rise.\tLes prix continuaient de monter.\nPut the book on the desk.\tMets le livre sur le bureau.\nPut the gun on the table.\tPose ce pistolet sur la table.\nPut yourself in my place.\tMets-toi à ma place.\nPut yourself in my place.\tMettez-vous à ma place.\nQuit acting like a child.\tArrête de te comporter comme un enfant.\nQuit acting like a child.\tArrête de te conduire comme un enfant !\nQuit acting like a child.\tArrête de te conduire comme une enfant !\nQuit acting like a child.\tCesse de te conduire comme un enfant !\nQuit acting like a child.\tCesse de te conduire comme une enfant !\nQuit acting like a child.\tCessez de vous conduire comme un enfant !\nQuit acting like a child.\tCessez de vous conduire comme une enfant !\nQuit acting like a child.\tArrêtez de vous conduire comme une enfant !\nQuit acting like a child.\tArrêtez de vous conduire comme un enfant !\nQuit behaving like a kid.\tArrête de te conduire comme un enfant !\nQuit behaving like a kid.\tArrête de te conduire comme une enfant !\nQuit behaving like a kid.\tCesse de te conduire comme un enfant !\nQuit behaving like a kid.\tCesse de te conduire comme une enfant !\nQuit behaving like a kid.\tCessez de vous conduire comme un enfant !\nQuit behaving like a kid.\tCessez de vous conduire comme une enfant !\nQuit behaving like a kid.\tArrêtez de vous conduire comme une enfant !\nQuit behaving like a kid.\tArrêtez de vous conduire comme un enfant !\nRaisins are dried grapes.\tLes raisins secs sont des raisins secs.\nRead as much as possible.\tLis autant que possible !\nRead as much as possible.\tLisez autant que possible !\nRead the label carefully.\tLis attentivement l'étiquette.\nRead what's on the label.\tLis ce qui est porté sur l'étiquette !\nRead what's on the label.\tLis ce qui est mentionné sur l'étiquette !\nRead what's on the label.\tLisez ce qui est porté sur l'étiquette !\nRead what's on the label.\tLis ce qui figure sur l'étiquette !\nRead what's on the label.\tLisez ce qui figure sur l'étiquette !\nRugby is an outdoor game.\tLe rugby est un jeu de plein air.\nSafety is not guaranteed.\tLa sécurité n'est pas assurée.\nSay what you have to say.\tDis ce que tu as à dire.\nSay what you have to say.\tDites ce que vous avez à dire.\nSay which you would like.\tDis celui que tu aimerais.\nSay which you would like.\tDis celle que tu aimerais.\nSay which you would like.\tDites celui que vous aimeriez.\nSay which you would like.\tDites celle que vous aimeriez.\nScience is very exciting.\tLa science est très excitante.\nShall I close the window?\tDois-je fermer la fenêtre ?\nShe allegedly killed him.\tElle l'a prétendument tué.\nShe also likes chocolate.\tElle aime aussi le chocolat.\nShe asked me where to go.\tElle me demanda où aller.\nShe attended the meeting.\tElle était présente à la réunion.\nShe barely ate her lunch.\tElle a à peine mangé son déjeuner.\nShe began to gain weight.\tElle se mit à prendre du poids.\nShe bought him a sweater.\tElle lui a acheté un chandail.\nShe burned with jealousy.\tElle crevait de jalousie.\nShe called him bad names.\tElle l'a appelé de tous les noms.\nShe called off the party.\tElle annula la fête.\nShe came home after dark.\tElle arriva chez elle au crépuscule.\nShe can't be over thirty.\tElle ne peut avoir plus de trente ans.\nShe can't be over thirty.\tElle ne peut avoir plus de 30 ans.\nShe can't bear the noise.\tElle ne supporte pas le bruit.\nShe can't ride a bicycle.\tElle ne sait pas faire de la bicyclette.\nShe can't ride a bicycle.\tElle ne sait pas faire de vélo.\nShe caught me by the arm.\tElle m'a attrapé par le bras.\nShe cut the apple in two.\tElle coupa la pomme en deux.\nShe decided to marry him.\tElle décida de l'épouser.\nShe decided to marry him.\tElle a décidé de l'épouser.\nShe did not say anything.\tElle n'a rien dit du tout.\nShe didn't marry the man.\tElle n'a pas épousé l'homme.\nShe didn't read the book.\tElle n'a pas lu l'ouvrage.\nShe didn't visit anybody.\tElle ne rendit visite à personne.\nShe didn't visit anybody.\tElle n'a rendu visite à personne.\nShe disliked her husband.\tElle n'avait pas d'affinité avec son mari.\nShe divorced her husband.\tElle a divorcé de son mari.\nShe divorced her husband.\tElle a divorcé.\nShe divorced her husband.\tElle divorça d'avec son mari.\nShe divorced her husband.\tElle divorça de son mari.\nShe divorced her husband.\tElle divorça.\nShe doesn't drink coffee.\tElle ne boit pas de café.\nShe doesn't need to work.\tElle n'a pas besoin de travailler.\nShe dyed her hair blonde.\tElle teint ses cheveux en blond.\nShe dyed her hair blonde.\tElle a teint ses cheveux en blond.\nShe found me a good seat.\tElle m'a trouvé une bonne place.\nShe gave a cat some milk.\tElle a donné du lait à un chat.\nShe gave him a big smile.\tElle lui envoya un grand sourire.\nShe gave him a big smile.\tElle lui a envoyé un grand sourire.\nShe gives him the creeps.\tElle lui fait horreur.\nShe glanced shyly at him.\tElle lui jeta un coup d'œil timide.\nShe goes to night school.\tElle prend des cours du soir.\nShe got him into trouble.\tElle l'a mis dans les ennuis.\nShe got him into trouble.\tElle le mit dans les ennuis.\nShe grew up in Australia.\tElle a grandi en Australie.\nShe had a new dress made.\tElle s'est fait faire une nouvelle robe.\nShe had a pleasant dream.\tElle eut un rêve agréable.\nShe had a strange hat on.\tElle portait un chapeau étrange.\nShe had her tooth pulled.\tElle s'est fait arracher une dent.\nShe handed him the money.\tElle lui tendit l'argent.\nShe handed him the money.\tElle lui a tendu l'argent.\nShe handed me a postcard.\tElle me passa une carte postale.\nShe has good handwriting.\tElle a une belle écriture.\nShe has good handwriting.\tElle est dotée d'une belle écriture.\nShe has had to stay here.\tElle doit rester ici.\nShe has seen better days.\tElle a connu de meilleurs jours.\nShe is a child after all.\tC'est une enfant, après tout.\nShe is a reliable person.\tC'est une personne fiable.\nShe is a reliable person.\tOn peut compter sur elle.\nShe is a reliable person.\tC'est une personne de confiance.\nShe is a wonderful woman.\tC'est une femme magnifique.\nShe is all skin and bone.\tElle n'a que la peau sur les os.\nShe is an appalling cook.\tElle est affreusement mauvaise en cuisine.\nShe is an obstinate girl.\tC'est une fille obstinée.\nShe is at work right now.\tElle est au travail, actuellement.\nShe is brushing her hair.\tElle se brosse les cheveux.\nShe is deaf to my advice.\tElle est sourde à mes conseils.\nShe is everything to him.\tElle est tout pour lui.\nShe is expecting a child.\tElle attend un enfant.\nShe is hard up for money.\tElle est fauchée.\nShe is just a wallflower.\tElle est juste décorative.\nShe is known to everyone.\tElle est connue de tout le monde.\nShe is missing the point.\tElle est hors sujet.\nShe is no stranger to me.\tElle ne m'est pas étrangère.\nShe is not afraid to die.\tElle n'a pas peur de mourir.\nShe is not herself today.\tElle n'est pas elle-même aujourd'hui.\nShe is not quite content.\tElle n'est pas tout à fait satisfaite.\nShe is not very well off.\tElle n'est pas très riche.\nShe is one of my friends.\tC'est l'une de mes amies.\nShe is used to traveling.\tElle a l'habitude de voyager.\nShe kept her eyes closed.\tElle a gardé les yeux fermés.\nShe knows what to do now.\tElle sait quoi faire, maintenant.\nShe left here right away.\tElle est immédiatement partie d'ici.\nShe left the baby crying.\tElle a laissé crier le bébé.\nShe left the window open.\tElle laissa la fenêtre ouverte.\nShe lives in the country.\tElle vit dans le pays.\nShe lives in the village.\tElle vit dans ce village.\nShe lives near the beach.\tElle vit près de la plage.\nShe lives quite close by.\tElle vit assez près d'ici.\nShe lives two doors down.\tElle vit à deux portes en descendant.\nShe looked me in the eye.\tElle m'a regardé dans les yeux.\nShe looked up at the sky.\tElle regarda le ciel.\nShe looks like a teacher.\tElle a l'air d'une enseignante.\nShe loves chocolate, too.\tElle raffole également du chocolat.\nShe made me a nice dress.\tElle m'a confectionné une jolie robe.\nShe made the doll for me.\tElle a confectionné la poupée pour moi.\nShe majored in economics.\tElle est spécialisée en économie.\nShe means nothing to him.\tElle ne signifie rien pour lui.\nShe met him on the beach.\tElle le rencontra sur la plage.\nShe met him on the beach.\tElle l'a rencontré sur la plage.\nShe met him this morning.\tElle l'a rencontré ce matin.\nShe must have told a lie.\tElle doit avoir proféré un mensonge.\nShe must have told a lie.\tElle doit avoir dit un mensonge.\nShe ordered a cup of tea.\tElle a commandé une tasse de thé.\nShe ordered him to do it.\tElle lui ordonna de le faire.\nShe ordered him to do it.\tElle lui a ordonné de le faire.\nShe owns a large mansion.\tElle possède une grande propriété.\nShe painted the wall red.\tElle a peint le mur en rouge.\nShe performed her duties.\tElle a accompli ses devoirs.\nShe prefers beer to wine.\tElle préfère la bière au vin.\nShe pulled the door open.\tElle tira la porte pour l'ouvrir.\nShe pushed the door open.\tElle poussa la porte ouverte.\nShe pushed the door shut.\tElle ferma la porte en la poussant.\nShe read one poem to him.\tElle lui lut un poème.\nShe refused his proposal.\tElle refusa sa proposition.\nShe refused his proposal.\tElle a refusé sa proposition.\nShe rejected my proposal.\tElle rejeta ma proposition.\nShe rejected my proposal.\tElle a rejeté ma proposition.\nShe sang better than him.\tElle chanta mieux que lui.\nShe sat there in silence.\tElle s'assit là en silence.\nShe screamed with terror.\tElle cria de terreur.\nShe seems to be very ill.\tElle semble être vraiment malade.\nShe shook hands with him.\tElle lui serra la main.\nShe shook hands with him.\tElle lui a serré la main.\nShe showed him the photo.\tElle lui a montré la photo.\nShe showed him the photo.\tElle lui montra la photo.\nShe speaks ten languages.\tElle parle dix langues.\nShe stopped our fighting.\tElle a arrêté notre dispute.\nShe suddenly fell silent.\tElle se tut soudain.\nShe sued him for damages.\tElle l'a poursuivi en dommages et intérêts.\nShe thinks highly of him.\tElle pense beaucoup de bien de lui.\nShe told me she loved me.\tElle m'a dit qu'elle m'aimait.\nShe told me she loved me.\tElle me dit qu'elle m'aimait.\nShe took a trip to Paris.\tElle est partie en voyage à Paris.\nShe took him to the lake.\tElle l'emmena au lac.\nShe took him to the lake.\tElle l'a emmené au lac.\nShe took him to the lake.\tElle l'amena au lac.\nShe took him to the lake.\tElle l'a amené au lac.\nShe took the news calmly.\tElle prit la nouvelle calmement.\nShe tried on a new dress.\tElle essaya une nouvelle robe.\nShe turned down my offer.\tElle refusa mon offre.\nShe turned down my offer.\tElle déclina mon offre.\nShe turned down my offer.\tElle déclina ma proposition.\nShe turned her eyes away.\tElle détourna son regard.\nShe turned her eyes away.\tElle détourna le regard.\nShe turned off the radio.\tElle éteignit la radio.\nShe unbuttoned her shirt.\tElle déboutonna sa chemise.\nShe unbuttoned her shirt.\tElle a déboutonné sa chemise.\nShe wants to read a book.\tElle veut lire un livre.\nShe was a charming woman.\tC'était une femme charmante.\nShe was accused of lying.\tElle a été accusée d'avoir menti.\nShe was crying with pain.\tElle pleurait de douleur.\nShe was eager to go home.\tElle était impatiente de rentrer chez elle.\nShe was equal to the job.\tElle était à la hauteur du boulot.\nShe was fluent in French.\tElle parlait couramment français.\nShe was late for the bus.\tElle était en retard pour prendre le bus.\nShe was painfully skinny.\tElle était douloureusement maigre.\nShe was painfully skinny.\tElle était atrocement maigre.\nShe was very rude to him.\tElle fut très grossière à son endroit.\nShe was very rude to him.\tElle a été très grossière à son égard.\nShe was very rude to him.\tElle a été très grossière envers lui.\nShe was very rude to him.\tElle fut fort grossière envers lui.\nShe was voted prom queen.\tElle a été élue reine du bal de fin d'année.\nShe was voted prom queen.\tElle fut élue reine du bal de fin d'année.\nShe wasn't polite to him.\tElle ne fut pas polie à son endroit.\nShe wasn't polite to him.\tElle ne se montra pas polie à son endroit.\nShe wasn't polite to him.\tElle ne se montra pas polie envers lui.\nShe waved goodbye to him.\tElle lui fit un au revoir de la main.\nShe waved her hand to me.\tElle m'a salué de la main.\nShe waved her hand to me.\tElle m'a saluée de la main.\nShe waved her hand to us.\tElle nous fit signe de la main.\nShe waved her hand to us.\tElle nous a fait signe de la main.\nShe went there yesterday.\tElle s'y est rendue hier.\nShe went there yesterday.\tElle y est allée hier.\nShe will be back at five.\tElle sera de retour à 17h.\nShe will be here tonight.\tElle sera là ce soir.\nShe will be there by now.\tJe pense qu'elle doit être arrivée maintenant.\nShe will become a doctor.\tElle deviendra médecin.\nShe wiped away her tears.\tElle essuya ses larmes.\nShe won't give up easily.\tElle n'abandonnera pas facilement.\nShe works for a hospital.\tElle travaille pour un hôpital.\nShe writes me every week.\tElle m'écrit chaque semaine.\nShe's a determined woman.\tC'est une femme déterminée.\nShe's a really nice girl.\tC'est une très belle fille.\nShe's a very wise mother.\tElle est une mère très avisée.\nShe's afraid of the dark.\tElle a peur de la nuit.\nShe's at work, isn't she?\tElle est au travail, n'est-ce pas ?\nShe's busy with her work.\tElle est occupée par son travail.\nShe's busy with her work.\tElle est affairée.\nShe's drop-dead gorgeous.\tElle est bonne à tomber raide.\nShe's drop-dead gorgeous.\tElle est bonne à tomber.\nShe's fixing the machine.\tElle est en train de réparer la machine.\nShe's not as old as Mary.\tElle n'est pas aussi âgée que Marie.\nShe's such a lovely girl!\tC'est une fille si adorable !\nShe's teaching us French.\tElle nous apprend le français.\nShe's teaching us French.\tElle nous enseigne le français.\nShe's wearing a cool hat.\tElle porte un chapeau sympa.\nShe's wearing a nice hat.\tElle porte un chouette chapeau.\nShe's wearing eye shadow.\tElle porte de l'ombre à paupière.\nShe's wearing high heels.\tElle porte des talons hauts.\nShould I cancel the call?\tDois-je annuler l'appel ?\nShould I leave a message?\tDevrais-je laisser un message ?\nShut up and let me think.\tTais-toi et laisse-moi réfléchir.\nSkip the boring chapters.\tSaute les chapitres ennuyeux.\nSome dogs are very smart.\tCertains chiens sont très malins.\nSomeone broke the window.\tQuelqu'un a brisé la vitre.\nSomeone broke the window.\tQuelqu'un brisa la vitre.\nSomeone entered the room.\tQuelqu'un entra dans la pièce.\nSomeone entered the room.\tQuelqu'un a pénétré dans la pièce.\nSomeone scratched my car.\tQuelqu'un a éraflé ma voiture.\nSomeone spiked her drink.\tQuelqu'un a chargé son verre.\nSomeone spiked her drink.\tQuelqu'un a chargé sa boisson.\nSomeone stole my bicycle.\tQuelqu'un a volé mon vélo.\nSomeone stole my bicycle.\tQuelqu'un a fauché mon vélo.\nSomeone stole my bicycle.\tQuelqu'un a chipé mon vélo.\nSomeone stole my bicycle.\tQuelqu'un a dérobé mon vélo.\nSomeone tried to kill me.\tQuelqu'un a tenté de me tuer.\nSomeone tried to kill me.\tQuelqu'un a essayé de me tuer.\nSomeone will do that job.\tQuelqu'un fera ce travail.\nSomeone will do this job.\tQuelqu'un fera ce travail.\nSomething had to be done.\tIl fallait faire quelque chose.\nSomething had to be done.\tQuelque chose devait être fait.\nSomething has to be done.\tIl faut faire quelque chose.\nSomething has to be done.\tQuelque chose doit être fait.\nSorry, I didn't hear you.\tDésolé, je ne t'ai pas entendu.\nSorry, I didn't hear you.\tDésolée, je ne t'ai pas entendu.\nSorry, I didn't hear you.\tDésolé, je ne t'ai pas entendue.\nSorry, I didn't hear you.\tDésolée, je ne t'ai pas entendue.\nSorry, I didn't hear you.\tDésolée, je ne vous ai pas entendu.\nSorry, I didn't hear you.\tDésolée, je ne vous ai pas entendue.\nSorry, I didn't hear you.\tDésolée, je ne vous ai pas entendus.\nSorry, I didn't hear you.\tDésolée, je ne vous ai pas entendues.\nSorry, I didn't hear you.\tDésolé, je ne vous ai pas entendu.\nSorry, I didn't hear you.\tDésolé, je ne vous ai pas entendue.\nSorry, I didn't hear you.\tDésolé, je ne vous ai pas entendus.\nSorry, I didn't hear you.\tDésolé, je ne vous ai pas entendues.\nSorry. It's all my fault.\tDésolé ! Tout est de ma faute.\nSorry. It's all my fault.\tDésolée ! Tout est de ma faute.\nSouth Africa is far away.\tL'Afrique du Sud est loin.\nSpeak slowly and clearly.\tParlez lentement et distinctement.\nSpouses are also welcome.\tLes conjoints sont également les bienvenus.\nStay right where you are.\tReste juste là où tu es.\nStay right where you are.\tRestez juste là où vous êtes.\nStop acting like a child.\tArrête de te conduire comme un enfant !\nStop acting like a child.\tArrête de te conduire comme une enfant !\nStop acting like a child.\tCesse de te conduire comme un enfant !\nStop acting like a child.\tCesse de te conduire comme une enfant !\nStop acting like a child.\tCessez de vous conduire comme un enfant !\nStop acting like a child.\tCessez de vous conduire comme une enfant !\nStop acting like a child.\tArrêtez de vous conduire comme une enfant !\nStop acting like a child.\tArrêtez de vous conduire comme un enfant !\nStop acting like a child.\tArrêtez de vous conduire comme un bébé !\nStop being so nice to me.\tArrête d'être aussi gentil avec moi !\nStop being so nice to me.\tCesse d'être aussi gentil avec moi !\nStop being so nice to me.\tArrête d'être aussi gentille avec moi !\nStop being so nice to me.\tCesse d'être aussi gentille avec moi !\nStop being so nice to me.\tCessez d'être aussi gentil avec moi !\nStop being so nice to me.\tCessez d'être aussi gentille avec moi !\nStop being so nice to me.\tCessez d'être aussi gentils avec moi !\nStop being so nice to me.\tCessez d'être aussi gentilles avec moi !\nStop being so nice to me.\tArrêtez d'être aussi gentille avec moi !\nStop being so nice to me.\tArrêtez d'être aussi gentilles avec moi !\nStop being so nice to me.\tArrêtez d'être aussi gentil avec moi !\nStop by whenever you can.\tArrête-toi quand tu peux !\nStop by whenever you can.\tArrêtez-vous quand vous pouvez !\nStop playing hard to get.\tArrête de faire celui qui n'est pas intéressé !\nStop playing hard to get.\tArrête de faire celle qui n'est pas intéressée !\nStop playing hard to get.\tCesse de faire celui qui n'est pas intéressé !\nStop playing hard to get.\tCesse de faire celle qui n'est pas intéressée !\nStop playing hard to get.\tArrêtez de faire ceux qui ne sont pas intéressés !\nStop playing hard to get.\tArrêtez de faire celles qui ne sont pas intéressées !\nStop playing hard to get.\tCessez de faire ceux qui ne sont pas intéressés !\nStop playing hard to get.\tCessez de faire celles qui ne sont pas intéressées !\nStop playing hard to get.\tArrêtez de faire celle qui n'est pas intéressée !\nStop playing hard to get.\tCessez de faire celle qui n'est pas intéressée !\nStop playing hard to get.\tArrêtez de faire celui qui n'est pas intéressé !\nStop playing hard to get.\tCessez de faire celui qui n'est pas intéressé !\nStop right there, please.\tArrête-toi juste là, je te prie !\nStop right there, please.\tArrêtez juste là, je vous prie !\nStop speaking in riddles.\tArrête de parler en énigmes.\nStop whining like a baby.\tArrête de pleurer comme un bébé.\nStop worrying about that.\tArrête de t'inquiéter pour ça.\nStop worrying about that.\tArrêtez de vous inquiéter pour cela.\nStop! You're hurting her!\tArrête ! Tu la blesses !\nStop! You're hurting her!\tArrêtez ! Vous la blessez !\nStop! You're hurting him!\tArrête ! Tu lui fais mal !\nStop! You're hurting him!\tArrêtez ! Vous lui faites mal !\nStudy as hard as you can.\tÉtudiez aussi durement que vous pouvez.\nStudy harder from now on.\tÉtudie plus dur dorénavant.\nSugar dissolves in water.\tLe sucre fond dans l'eau.\nSugar dissolves in water.\tLe sucre se dissout dans l'eau.\nSupplies were no problem.\tLes approvisionnements ne posaient pas de problème.\nSupplies were no problem.\tLes approvisionnements ne posèrent pas de difficultés.\nTake as long as you need.\tPrends le temps dont tu as besoin !\nTake as long as you need.\tPrenez le temps dont vous avez besoin !\nTake as many as you want.\tPrends-en autant que tu veux.\nTake as much as you like.\tPrenez-en tant que vous en voulez !\nTake as much as you like.\tPrends-en autant que tu veux.\nTake as much as you like.\tPrenez-en autant que vous voulez.\nTake as much as you like.\tPrends-en tant que tu veux !\nTake as much as you want.\tPrends-en autant que tu veux.\nTake care of your health.\tPrends soin de ta santé.\nTake care of your health.\tPrenez soin de votre santé.\nTake this to your mother.\tApporte ceci à ta mère.\nTell her that I love her.\tDites-lui que je l'aime.\nTell her that I love her.\tDis-lui que je l'aime.\nTell me I'm not dreaming.\tDis-moi que je ne suis pas en train de rêver.\nTell me I'm not dreaming.\tDites-moi que je ne suis pas en train de rêver.\nTell me what I did wrong.\tDis-moi ce que j'ai fait de travers !\nTell me what I did wrong.\tDites-moi ce que j'ai fait de travers !\nTell me why you're upset.\tDis moi pourquoi tu es énervé.\nTen years is a long time.\tDix ans, c'est long.\nTensions were increasing.\tLes tensions montaient.\nThank you for helping me.\tMerci de m'aider.\nThanks for supporting me.\tMerci de me soutenir.\nThanks for your comments.\tMerci pour tes commentaires.\nThanks for your comments.\tMerci pour vos commentaires.\nThat assumption is wrong.\tCette hypothèse est fausse.\nThat boy's hair is black.\tLes cheveux de ce garçon sont noirs.\nThat car has a roof rack.\tCette voiture dispose d'une galerie.\nThat coin is counterfeit.\tCette pièce est fausse.\nThat cost a lot of money.\tÇa coûte beaucoup d'argent.\nThat could come in handy.\tÇa pourrait se révéler utile.\nThat doesn't surprise me.\tCela ne me surprend pas.\nThat doesn't work at all.\tÇa ne fonctionne pas du tout.\nThat gives me a headache!\tÇa me cause des maux de tête !\nThat gives me a headache!\tÇa me donne la migraine !\nThat goes without saying.\tPoint n'est besoin de le dire.\nThat guy drives me crazy.\tCe mec me rend dingue.\nThat guy is totally nuts!\tCe mec est complètement zinzin !\nThat hasn't happened yet.\tCe n'est pas encore arrivé.\nThat hasn't happened yet.\tCela ne s'est pas encore passé.\nThat house belongs to me.\tCette maison est à moi.\nThat house is very small.\tCette maison est très petite.\nThat house is very small.\tCette maison est toute petite.\nThat is all that he said.\tC'est tout ce qu'il a dit.\nThat is really good news.\tCe sont vraiment de bonnes nouvelles.\nThat looked like it hurt.\tOn aurait dit que ça faisait mal.\nThat looks like it hurts.\tOn dirait que ça fait mal.\nThat made Tom pretty mad.\tCela a mis Tom très en colère.\nThat made Tom pretty mad.\tCela a rendu Tom fou.\nThat makes no difference.\tÇa ne fait aucune différence.\nThat may not be possible.\tIl se peut que ce ne soit pas possible.\nThat might actually work.\tIl se pourrait que ça marche, en effet.\nThat might change things.\tÇa pourrait changer les choses.\nThat might not be so bad.\tIl se pourrait que ce ne soit pas si mauvais.\nThat might take too long.\tIl se pourrait que ça prenne trop de temps.\nThat only makes it worse.\tÇa ne fait que l'empirer.\nThat perfume smells good.\tCe parfum sent bon.\nThat seems to make sense.\tÇa semble être sensé.\nThat sounds like a train.\tOn dirait un train.\nThat sounds really great.\tÇa semble vraiment super.\nThat story can't be true.\tCette histoire ne peut être vraie.\nThat toy is made of wood.\tCe jouet est fait en bois.\nThat toy is made of wood.\tCe jouet est en bois.\nThat was all Greek to me.\tTout ça, c'était du chinois pour moi.\nThat was all Greek to me.\tÇa, c'était du javanais pour moi.\nThat was his catchphrase.\tC'était sa formule.\nThat was never an option.\tIl n'en a jamais été question.\nThat was not my question.\tCe n'était pas ma question.\nThat was only a year ago.\tC'était seulement il y a un an.\nThat was totally amazing.\tCe fut absolument merveilleux.\nThat was very reassuring.\tCe fut très rassurant.\nThat wasn't Tom's choice.\tCela n'était pas le choix de Tom.\nThat wasn't Tom's choice.\tCe n'était pas le choix de Tom.\nThat wasn't my intention.\tCe n'était pas mon intention.\nThat would embarrass Tom.\tCela embarrasserait Tom.\nThat wouldn't be any fun.\tÇa ne serait pas du tout amusant.\nThat'll take a long time.\tÇa prendra beaucoup de temps.\nThat's a beautiful dress.\tC'est une belle robe.\nThat's a different story.\tC'est une autre histoire.\nThat's a fair assumption.\tC'est une juste supposition.\nThat's a lot to consider.\tC'est beaucoup à prendre en compte.\nThat's a lot to remember.\tC'est beaucoup à se rappeler.\nThat's a lovely necklace.\tC'est un collier charmant.\nThat's a ridiculous idea.\tC'est une idée ridicule.\nThat's a very good point.\tC'est un excellent argument.\nThat's a very old saying.\tC'est un très vieil adage.\nThat's a very old saying.\tC'est un très vieux dicton.\nThat's absolute nonsense!\tC'est vraiment n'importe quoi !\nThat's absolute nonsense.\tC'est complètement insensé.\nThat's against the rules.\tC'est à l'encontre des règles.\nThat's all I can ask for.\tC'est tout ce que je peux demander.\nThat's all I can promise.\tC'est tout ce que je peux promettre.\nThat's all I ever wanted.\tC'est tout ce que j'ai toujours voulu.\nThat's all I have to say.\tC'est tout ce que j'ai à dire.\nThat's all I want to say.\tC'est tout ce que je veux dire.\nThat's all that happened.\tC'est tout ce qui s'est produit.\nThat's all we talk about.\tNous ne parlons que de ça.\nThat's already been done.\tÇa a déjà été fait.\nThat's an excellent idea.\tC'est une excellente idée.\nThat's completely unfair.\tC'est totalement injuste.\nThat's fairly reasonable.\tC'est assez raisonnable.\nThat's hardly believable.\tC'est à peine croyable.\nThat's him at the window.\tC'est lui, à la fenêtre.\nThat's how I like things.\tC'est ainsi que j'aime les choses.\nThat's how I would do it.\tC'est comme ça que je le ferais.\nThat's important to know.\tC'est important à savoir.\nThat's incredibly boring.\tC'est incroyablement ennuyeux.\nThat's just fine with me.\tÇa me convient parfaitement.\nThat's just what we need.\tC'est précisément ce dont nous avons besoin.\nThat's just what we need.\tC'est précisément ce qu'il nous faut.\nThat's kind of important.\tC'est, en quelque sorte, important.\nThat's my favorite chair.\tC'est ma chaise préférée.\nThat's not entirely true.\tCe n'est pas entièrement vrai.\nThat's not for me to say.\tCe n'est pas à moi de le dire.\nThat's not going to help.\tÇa ne va pas aider.\nThat's not important now.\tCe n'est pas important maintenant.\nThat's not my cup of tea.\tCe n'est pas ma tasse de thé.\nThat's not really enough.\tCe n'est pas vraiment suffisant.\nThat's not very original.\tCe n'est pas très original.\nThat's not very romantic.\tCe n'est pas très romantique.\nThat's not what happened.\tCe n'est pas ce qui s'est produit.\nThat's pretty impressive.\tC'est assez impressionnant.\nThat's probably not true.\tC'est probablement faux.\nThat's quite meaningless.\tÇa ne signifie vraiment rien.\nThat's really all I know.\tC'est vraiment tout ce que je sais.\nThat's really impressive.\tC'est très impressionnant.\nThat's really surprising.\tC'est vraiment surprenant !\nThat's the best I can do.\tC'est le mieux que je puisse faire.\nThat's the choice I made.\tC'est le choix que j'ai fait.\nThat's the way I like it.\tC'est ainsi que je l'aime.\nThat's the way I like it.\tC'est comme ça que je l'aime.\nThat's the way I like it.\tC'est ainsi que je l'apprécie.\nThat's the way I like it.\tC'est comme ça que je l'apprécie.\nThat's very sweet of you.\tC'est très gentil de ta part.\nThat's very sweet of you.\tC'est très gentil de votre part.\nThat's very sweet of you.\tC'est très gentil à vous.\nThat's what I always say.\tC'est ce que je dis toujours.\nThat's what I do all day.\tC'est ce que je fais toute la journée.\nThat's what I have to do.\tC'est ce que j'ai à faire.\nThat's what I like to do.\tC'est ce que j'aime faire.\nThat's what I need to do.\tC'est ce qu'il me faut faire.\nThat's what I usually do.\tC'est ce que je fais habituellement.\nThat's what I usually do.\tC'est ce que je fais d'ordinaire.\nThat's what I want to do.\tC'est ce que je veux faire.\nThat's what I'm here for.\tC'est pour ça que je suis ici.\nThat's what I'm thinking.\tC'est ce à quoi je suis en train de penser.\nThat's what Tom promised.\tC'est ce que Tom a promis.\nThat's what Tom promised.\tC'est ce que Tom promit.\nThat's what Tom would do.\tC'est ce que Tom ferait.\nThat's what interests me.\tC'est ce qui m'intéresse.\nThat's what terrifies me.\tC'est ce qui me terrifie.\nThat's what they all say.\tC'est ce qu'ils disent tous.\nThat's what they all say.\tC'est ce qu'elles disent toutes.\nThat's what we were told.\tC'est ce qu'on nous a dit.\nThat's worth remembering.\tCela vaut la peine que l'on s'en souvienne.\nThe Hilton Hotel, please.\tL'hôtel Hilton, s'il vous plaît.\nThe apples are delicious.\tLes pommes sont délicieuses.\nThe area is built up now.\tLa zone est maintenant en construction.\nThe arrow hit the target.\tLa flèche a atteint la cible.\nThe arrow hit the target.\tLa flèche atteignit la cible.\nThe baby cried all night.\tLe bébé pleura toute la nuit.\nThe baby cried all night.\tLe bébé a pleuré toute la nuit.\nThe baby is able to walk.\tLe bébé est capable de marcher.\nThe ball bounced up high.\tLa balle rebondit haut.\nThe bills keep piling up.\tLes factures continuent à s'entasser.\nThe blood test is normal.\tLes résultats de la prise de sang sont normaux.\nThe blood was bright red.\tLe sang était écarlate.\nThe boat sank in a flash.\tLe bateau sombra en un instant.\nThe book costs 4 dollars.\tLe livre coûte 4 dollars.\nThe book is on the table.\tLe livre est sur la table.\nThe book is on the table.\tLe livre se trouve sur la table.\nThe book is on the table.\tL'ouvrage est sur la table.\nThe book is on the table.\tL'ouvrage se trouve sur la table.\nThe book is out of print.\tL'ouvrage est épuisé.\nThe boy adjusted his cap.\tLe garçon ajusta sa casquette.\nThe boy fell off the bed.\tLe garçon tomba du lit.\nThe boys have gone north.\tLes garçons sont partis vers le Nord.\nThe bus stop is close by.\tL'arrêt de bus n'est pas loin.\nThe bus was almost empty.\tLe bus était presque vide.\nThe bus was very crowded.\tLe bus était bondé.\nThe car has a new engine.\tLa voiture est équipée d'un nouveau moteur.\nThe cat caught the mouse.\tLe chat a attrapé la souris.\nThe cat is in its basket.\tLe chat est dans son panier.\nThe cat sat on the table.\tLe chat s'assit sur la table.\nThe change was immediate.\tLe changement fut immédiat.\nThe change was immediate.\tLe changement a été immédiat.\nThe climate here is mild.\tLe climat ici est doux.\nThe coffeepot is boiling.\tLa cafetière bout.\nThe context is important.\tLe contexte est important.\nThe council agreed on it.\tLe conseil s'est mis d'accord là-dessus.\nThe council agreed on it.\tLe conseil y a donné son accord.\nThe crankshaft is broken.\tLe vilebrequin est cassé.\nThe damage has been done.\tLes dommages ont été faits.\nThe decision is not easy.\tLa décision n'est pas aisée.\nThe decision was put off.\tLa décision fut remise.\nThe desk is made of wood.\tLe bureau est en bois.\nThe desk is made of wood.\tLe bureau est composé de bois.\nThe doctor felt my pulse.\tLe docteur prit mon pouls.\nThe doctor took my pulse.\tLe docteur prit mon pouls.\nThe dog house is outside.\tLa niche se trouve dehors.\nThe dog seems to be sick.\tLe chien a l'air malade.\nThe dog was hit by a car.\tLe chien a été heurté par une voiture.\nThe dog was hit by a car.\tLe chien fut heurté par une voiture.\nThe door opened suddenly.\tLa porte s'ouvrit soudain.\nThe door remained closed.\tLa porte resta fermée.\nThe door remained closed.\tLa porte est restée fermée.\nThe door remained closed.\tLa porte resta close.\nThe door remained closed.\tLa porte est restée close.\nThe effect was immediate.\tL'effet fut immédiat.\nThe effect was immediate.\tL'effet était immédiat.\nThe engine started again.\tLe moteur repartit.\nThe first lesson is easy.\tLa première leçon est facile.\nThe food is on the table.\tLa nourriture est sur la table.\nThe fuel gauge is broken.\tLa jauge d'essence est cassée.\nThe fuel gauge is broken.\tLa jauge d'essence est pétée.\nThe game became exciting.\tLa partie devint palpitante.\nThe game became exciting.\tLa partie est devenue palpitante.\nThe girl let the bird go.\tLa fille laissa l'oiseau s'envoler.\nThe girl let the bird go.\tLa fille laissa partir l'oiseau.\nThe girls had a catfight.\tLes filles se crêpèrent le chignon.\nThe girls had a catfight.\tLes filles se sont crêpé le chignon.\nThe gown is made of silk.\tLa robe est faite de soie.\nThe heat is overwhelming.\tIl fait une chaleur écrasante.\nThe house belongs to him.\tLa maison lui appartient.\nThe house has burnt down.\tLa maison est réduite en cendres.\nThe house has burnt down.\tLa maison est calcinée.\nThe house has burnt down.\tLa maison est carbonisée.\nThe house is on the hill.\tLa maison est sur la colline.\nThe issue is not settled.\tLe problème n'est pas réglé.\nThe jury is deliberating.\tLe jury délibère.\nThe lake is deepest here.\tLe lac est ici à sa plus grande profondeur.\nThe law has been changed.\tLa loi a été modifiée.\nThe man committed murder.\tL'homme a commis un meurtre.\nThe meat's not ready yet.\tLa viande n'est pas encore prête.\nThe men are eating lunch.\tLes hommes sont en train de déjeuner.\nThe money's on the table.\tL'argent est sur la table.\nThe moon is full tonight.\tLa lune est pleine cette nuit.\nThe museum is closed now.\tLe musée est actuellement fermé.\nThe nail tore his jacket.\tLe clou déchira sa veste.\nThe news broke his heart.\tLa nouvelle lui a brisé le cœur.\nThe news made them happy.\tLes nouvelles les rendirent heureux.\nThe night is still young.\tLa nuit ne fait que commencer.\nThe nurses are very nice.\tLes infirmières sont très sympa.\nThe orchestra is playing.\tL'orchestre joue.\nThe paint is peeling off.\tLa peinture s'écaille.\nThe parking lot is empty.\tLe parking est vide.\nThe patient has no pulse.\tLe patient n'a pas de pouls.\nThe plan has worked well.\tLe plan a bien marché.\nThe plural of ox is oxen.\tLe pluriel de « bœuf » est « bœufs ».\nThe police are after you.\tLa police est à vos trousses.\nThe police are after you.\tLa police est à tes trousses.\nThe poor girl went blind.\tLa pauvre fille devint aveugle.\nThe rain stopped at last.\tLa pluie s'est arrêtée finalement.\nThe rent is due tomorrow.\tLe loyer est dû pour demain.\nThe rent is far too high.\tLe loyer est beaucoup trop élevé.\nThe restaurant was quiet.\tLe restaurant était silencieux.\nThe room has two windows.\tLa pièce a deux fenêtres.\nThe room has two windows.\tLa pièce est pourvue de deux fenêtres.\nThe rumor spread quickly.\tLa rumeur s'est répandue rapidement.\nThe server is down again.\tLe serveur est encore en panne.\nThe show will begin soon.\tLe spectacle va bientôt commencer.\nThe sky has become clear.\tLe ciel s'est éclairci.\nThe sky is full of stars.\tLe ciel est rempli d'étoiles.\nThe sky is full of stars.\tLe ciel est plein d'étoiles.\nThe smell was unbearable.\tL'odeur était insupportable.\nThe snow melts in spring.\tLa neige fond au printemps.\nThe snow stopped falling.\tLa neige cessa de tomber.\nThe soldiers opened fire.\tLes soldats ont ouvert le feu.\nThe soldiers opened fire.\tLes soldats ouvrèrent le feu.\nThe story cannot be true.\tCette histoire ne peut être vraie.\nThe students all laughed.\tTous les étudiants ont ri.\nThe students all laughed.\tTous les étudiants rirent.\nThe sun sets in the west.\tLe soleil se couche à l'ouest.\nThe tip of the key broke.\tLe museau de la clé s'est cassé.\nThe train gathered speed.\tLe train prit de la vitesse.\nThe train got in on time.\tLe train est arrivé à temps.\nThe train got in on time.\tLe train arriva à temps.\nThe train leaves at nine.\tLe train part à neuf heures.\nThe tree stopped growing.\tL'arbre a cessé de grandir.\nThe tree stopped growing.\tL'arbre a cessé de croître.\nThe two of them split up.\tLes deux se séparèrent.\nThe vacation is over now.\tLes vacances sont finies maintenant.\nThe war lasted two years.\tLa guerre dura deux ans.\nThe weather had been hot.\tIl avait fait chaud.\nThe weather has improved.\tLe temps s'est amélioré.\nThe weather was gorgeous.\tLe temps était superbe.\nThe weather was gorgeous.\tLe temps était splendide.\nThe weather's nice today.\tIl fait beau aujourd'hui.\nThe whole crew was saved.\tL'équipage entier fut sauvé.\nThe witch hunt has begun.\tLa chasse aux sorcières a commencé.\nThe women have umbrellas.\tLes femmes ont des parapluies.\nThe worst is yet to come.\tLe pire reste encore à venir.\nTheir cattle are all fat.\tLeurs bovins sont tous gras.\nTheir ship struck a rock.\tLeur bateau a heurté un rocher.\nThen what's your problem?\tAlors, quel est votre problème ?\nThere is a knife missing.\tIl manque un couteau.\nThere is a spoon missing.\tUne cuillère est manquante.\nThere is no other choice.\tIl n'y a pas d'autre choix.\nThere is no school today.\tIl n'y a pas école aujourd'hui.\nThere is no third choice.\tIl n'y a pas de troisième choix.\nThere is nothing to fear.\tIl n'y a pas de quoi avoir peur.\nThere is plenty of water.\tIl y a plein d'eau.\nThere isn't any solution.\tIl n'y a aucune solution.\nThere isn't anybody else.\tIl n'y a personne d'autre.\nThere isn't anybody here.\tPersonne n'est ici.\nThere's a secret passage.\tIl y a un passage secret.\nThere's been an accident.\tIl y a eu un accident.\nThere's no more ointment.\tIl n'y a plus d'onguent.\nThere's no need to hurry.\tIl n'est pas nécessaire de se dépêcher.\nThere's no need to hurry.\tIl n'est pas nécessaire de se presser.\nThere's no need to hurry.\tIl n'est pas nécessaire de nous presser.\nThere's no need to hurry.\tPoint n'est besoin de nous presser.\nThere's no need to hurry.\tPoint n'est besoin de se presser.\nThere's no need to hurry.\tPoint n'est besoin de se dépêcher.\nThere's no need to hurry.\tPoint n'est besoin de nous dépêcher.\nThere's no one else here.\tIl n'y a personne d'autre ici.\nThere's no time to argue.\tPas le temps de discuter.\nThere's no way to escape.\tIl n'y a pas moyen de s'échapper.\nThere's not enough water.\tIl n'y a pas assez d'eau.\nThere's not enough water.\tIl n'y a pas suffisamment d'eau.\nThere's nothing I can do.\tIl n'y a rien que je puisse faire.\nThese are not your forks.\tCe ne sont pas tes fourchettes.\nThese books are all mine.\tCes livres sont tous les miens.\nThese books belong to me.\tCes livres sont à moi.\nThese books belong to me.\tCes livres sont miens.\nThese socks do not match.\tCes chaussettes sont dépareillées.\nThese things aren't mine!\tCe ne sont pas mes affaires !\nThese trousers are dirty.\tCe pantalon est sale.\nThey accepted each other.\tIls s'admirent l'un l'autre.\nThey all looked relieved.\tIls ont tous eu l'air soulagé.\nThey all looked relieved.\tElles ont toutes eu l'air soulagé.\nThey already got married.\tIls sont déjà mariés.\nThey are afraid of death.\tIls ont peur de la mort.\nThey are all alike to me.\tIls sont tous semblables à moi.\nThey are all alike to me.\tElles sont toutes semblables à moi.\nThey are as strong as us.\tIls sont de notre force.\nThey are as strong as us.\tIls sont aussi forts que nous.\nThey are investing a lot.\tIls mettent le paquet.\nThey are very big apples.\tCe sont de très grosses pommes.\nThey are very compatible.\tIls sont très compatibles.\nThey are very compatible.\tElles sont très compatibles.\nThey ate up all the cake.\tIls ont mangé tout le gâteau.\nThey ate up all the cake.\tElles ont goinfré tout le gâteau.\nThey attained their goal.\tIls ont atteint leur but.\nThey attained their goal.\tElles ont atteint leur but.\nThey attempted to escape.\tIls tentèrent de s'enfuir.\nThey called him a coward.\tIls le traitèrent de lâche.\nThey camped on the beach.\tIls ont campé sur la plage.\nThey camped on the beach.\tElles ont campé sur la plage.\nThey camped on the beach.\tIls campèrent sur la plage.\nThey camped on the beach.\tElles campèrent sur la plage.\nThey can raise your rent.\tIls peuvent augmenter votre loyer.\nThey can raise your rent.\tElles sont capables d'augmenter votre loyer.\nThey caught a lion alive.\tIls attrapèrent un lion vivant.\nThey caught him stealing.\tIls le prirent en train de voler.\nThey could still be here.\tIls pourraient être toujours ici.\nThey could still be here.\tElles pourraient être encore ici.\nThey could've killed you.\tElles auraient pu te tuer.\nThey could've killed you.\tIls auraient pu te tuer.\nThey could've killed you.\tElles auraient pu vous tuer.\nThey could've killed you.\tIls auraient pu vous tuer.\nThey cultivated the land.\tIls ont cultivé la terre.\nThey did not clap for us.\tCe n'est pas nous qu'ils ont applaudis.\nThey did not clap for us.\tIls ne nous ont pas applaudis.\nThey did not clap for us.\tIl ne nous ont pas applaudis.\nThey did the right thing.\tElles firent ce qu'il fallait.\nThey did the right thing.\tElles ont fait ce qu'il fallait.\nThey did the right thing.\tIls firent ce qu'il fallait.\nThey did the right thing.\tIls ont fait ce qu'il fallait.\nThey didn't see anything.\tElles n'ont rien vu.\nThey didn't see anything.\tIls n'ont rien vu.\nThey didn't see anything.\tIls ne virent rien.\nThey didn't see anything.\tElles ne virent rien.\nThey don't even know why.\tIls ne savent même pas pourquoi.\nThey don't know me there.\tIls ne me connaissent pas, là.\nThey don't know me there.\tElles ne me connaissent pas, là.\nThey don't speak Spanish.\tIls ne parlent pas espagnol.\nThey eat fish on Fridays.\tIls mangent du poisson les vendredis.\nThey exchanged greetings.\tIls ont échangé des formules de bienvenue.\nThey exchanged greetings.\tElles ont échangé des formules de bienvenue.\nThey finished their meal.\tIls finirent leur repas.\nThey finished their meal.\tIls achevèrent leur repas.\nThey finished their meal.\tIls terminèrent leur repas.\nThey finished their meal.\tIls ont fini leur repas.\nThey finished their meal.\tIls ont terminé leur repas.\nThey finished their meal.\tIls ont achevé leur repas.\nThey found no such proof.\tIls ne trouvèrent pas une telle preuve.\nThey found no such proof.\tElles ne trouvèrent pas une telle preuve.\nThey had different ideas.\tIls avaient des idées différentes.\nThey have gone to Europe.\tIls sont allés en Europe.\nThey have nothing to eat.\tIls n'ont rien à manger.\nThey have nothing to eat.\tElles n'ont rien à manger.\nThey have plenty of time.\tIls disposent de plein de temps.\nThey have twin daughters.\tIls ont des jumelles.\nThey haven't arrived yet.\tIls ne sont pas encore arrivés.\nThey live near the beach.\tIls vivent près de la plage.\nThey live near the beach.\tElles vivent près de la plage.\nThey love their children.\tIls aiment leurs enfants.\nThey love their children.\tIls adorent leurs enfants.\nThey love their children.\tElles aiment leurs enfants.\nThey love their children.\tElles adorent leurs enfants.\nThey love their children.\tElles chérissent leurs enfants.\nThey love their children.\tIls chérissent leurs enfants.\nThey met on a blind date.\tIls se sont rencontrés à une rencontre surprise.\nThey met on a blind date.\tElles se sont rencontrées à une rencontre surprise.\nThey missed the deadline.\tIls ont raté la date limite.\nThey missed the deadline.\tElles ont raté la date limite.\nThey missed the deadline.\tIls ont loupé la date limite.\nThey missed the deadline.\tElles ont loupé la date limite.\nThey missed the deadline.\tElles ont manqué la date limite.\nThey missed the deadline.\tIls ont manqué la date limite.\nThey must really hate me.\tIls doivent vraiment me détester.\nThey must really hate me.\tElles doivent vraiment me détester.\nThey probably don't know.\tIls l'ignorent, probablement.\nThey probably don't know.\tElles l'ignorent, probablement.\nThey said you were fired.\tIls ont dit que tu étais viré.\nThey said you were fired.\tIls ont dit que tu étais virée.\nThey said you were fired.\tElles ont dit que tu étais viré.\nThey said you were fired.\tElles ont dit que tu étais virée.\nThey said you were fired.\tIls ont dit que vous étiez viré.\nThey said you were fired.\tIls ont dit que vous étiez virée.\nThey said you were fired.\tIls ont dit que vous étiez virés.\nThey said you were fired.\tIls ont dit que vous étiez virées.\nThey said you were fired.\tElles ont dit que vous étiez viré.\nThey said you were fired.\tElles ont dit que vous étiez virée.\nThey said you were fired.\tElles ont dit que vous étiez virées.\nThey said you were fired.\tElles ont dit que vous étiez virés.\nThey say he is very rich.\tIls disent qu'il est très riche.\nThey sent me to kill you.\tIls m'ont envoyé pour te tuer.\nThey set out on a picnic.\tIls partirent en pique-nique.\nThey set to work at once.\tIls se mirent immédiatement à travailler.\nThey stayed up all night.\tIls ont veillé toute la nuit.\nThey stayed up all night.\tElles ont veillé toute la nuit.\nThey want to become rich.\tIls veulent devenir riches.\nThey want to get married.\tIls veulent se marier.\nThey went whale watching.\tIls allèrent observer des baleines.\nThey went whale watching.\tElles allèrent observer des baleines.\nThey were all hysterical.\tElles étaient toutes hystériques.\nThey were all hysterical.\tIls étaient tous hystériques.\nThey were playing tennis.\tIls étaient en train de jouer au tennis.\nThey were playing tennis.\tIls jouaient au tennis.\nThey were seen to go out.\tOn les a vus sortir.\nThey were seen to go out.\tOn les a vues sortir.\nThey were spending money.\tIls dépensaient de l'argent.\nThey were taken prisoner.\tIls furent faits prisonniers.\nThey were taken prisoner.\tElles furent faites prisonnières.\nThey were taken prisoner.\tIls ont été faits prisonniers.\nThey were taken prisoner.\tElles ont été faites prisonnières.\nThey won't listen to you.\tIls ne t'écouteront pas.\nThey wouldn't understand.\tIls ne comprendraient pas.\nThey'll be here at three.\tIls seront ici à trois heures.\nThey're going to the war.\tIls vont à la guerre.\nThey're going to the war.\tElles vont à la guerre.\nThey're not always right.\tIls n'ont pas toujours raison.\nThey're not always right.\tElles n'ont pas toujours raison.\nThey're not following me.\tIls ne me suivent pas.\nThey're not my prisoners.\tCe ne sont pas mes prisonniers.\nThey're playing our song.\tIls jouent notre chanson.\nThey're playing our song.\tIls sont en train de jouer notre chanson.\nThey're right behind you.\tIls sont juste derrière vous.\nThey're right behind you.\tIls sont juste derrière toi.\nThey're right behind you.\tElles sont juste derrière vous.\nThey're right behind you.\tElles sont juste derrière toi.\nThey're right behind you.\tElles se trouvent juste derrière vous.\nThey're right behind you.\tElles se trouvent juste derrière toi.\nThey're right behind you.\tIls se trouvent juste derrière vous.\nThey're right behind you.\tIls se trouvent juste derrière toi.\nThey're right, of course.\tIls ont raison, bien sûr.\nThey're right, of course.\tElles ont raison, bien sûr.\nThey're terrified of you.\tVous les terrifiez.\nThey're terrified of you.\tTu les terrifies.\nThey're very fond of him.\tElles l'adorent.\nThey're very fond of him.\tIls l'adorent.\nThings are looking great.\tLes choses se présentent très bien.\nThings escalated quickly.\tLes choses se précipitèrent rapidement.\nThis amount includes tax.\tCette somme inclut les taxes.\nThis article is for sale.\tCet article est à vendre.\nThis book belongs to you.\tCe livre t'appartient.\nThis book is about stars.\tCe livre parle des étoiles.\nThis book is about stars.\tCet ouvrage traite des étoiles.\nThis book is about stars.\tCe livre traite des étoiles.\nThis book is interesting.\tCet ouvrage est intéressant.\nThis book is interesting.\tCe livre est intéressant.\nThis box contains apples.\tCette caisse contient des pommes.\nThis building is ancient.\tCe bâtiment est ancien.\nThis car is fully loaded.\tCette voiture est complètement chargée.\nThis car runs on alcohol.\tCette voiture fonctionne à l'alcool.\nThis carpet is beautiful.\tCe tapis est beau.\nThis carpet is beautiful.\tCette moquette est belle.\nThis castle is beautiful.\tCe château est magnifique.\nThis clock isn't working.\tCette montre ne fonctionne pas.\nThis clock isn't working.\tCette horloge ne fonctionne pas.\nThis clock isn't working.\tCette pendule ne fonctionne pas.\nThis coat doesn't fit me.\tCe manteau n'est pas à ma taille.\nThis coffee shop is cozy.\tCe café est confortable.\nThis coffee tastes great.\tCe café a un bon goût.\nThis coffee tastes great.\tCe café a bon goût.\nThis doesn't involve you.\tÇa ne te concerne pas.\nThis doesn't involve you.\tÇa ne t'implique pas.\nThis doesn't sound right.\tÇa ne semble pas correct.\nThis dog is almost human.\tCe chien est presque humain.\nThis dog will protect us.\tCe chien va nous protéger.\nThis door would not open.\tCette porte ne voulait pas s'ouvrir.\nThis food is gluten-free.\tCette nourriture est sans gluten.\nThis gate needs painting.\tCe portail a besoin d'un coup de peinture.\nThis happened to us, too.\tCela nous est arrivé aussi.\nThis has to be a mistake.\tÇa doit être une erreur.\nThis house has six rooms.\tCette maison a six pièces.\nThis house is very small.\tCette maison est très petite.\nThis is a dead-end alley.\tC'est un cul-de-sac.\nThis is a dead-end alley.\tC'est une impasse.\nThis is a friend of mine.\tC'est une amie à moi.\nThis is a friend of mine.\tC'est l'un de mes amis.\nThis is a funny sentence.\tC'est une phrase étrange.\nThis is a funny sentence.\tC'est une phrase amusante.\nThis is a happy occasion.\tC'est un heureux événement.\nThis is a popular artist.\tC'est un artiste populaire.\nThis is a private matter.\tIl s'agit d'une affaire privée.\nThis is a very tall tree.\tC'est un très grand arbre.\nThis is all a conspiracy.\tC'est tout un complot.\nThis is all he has to do.\tC'est tout ce qu'il a à faire.\nThis is an easy sentence.\tC'est une phrase facile.\nThis is as heavy as lead.\tC'est aussi lourd que du plomb.\nThis is driving me crazy.\tÇa me rend folle.\nThis is for internal use.\tC'est pour un usage interne.\nThis is going to be easy.\tÇa va être facile.\nThis is highly irregular.\tC'est tout à fait irrégulier.\nThis is most unfortunate.\tC'est très regrettable.\nThis is most unfortunate.\tC'est des plus regrettable.\nThis is my email address.\tVoilà mon adresse électronique.\nThis is my father's room.\tVoici la chambre de mon père.\nThis is my favorite spot.\tC'est mon endroit favori.\nThis is not my specialty.\tCe n'est pas ma spécialité.\nThis is not my specialty.\tCe n'est pas mon domaine.\nThis is not the entrance.\tCe n'est pas l'entrée.\nThis is not very stylish.\tCe n'est pas très élégant.\nThis is not very stylish.\tC'est pas la grande classe.\nThis is not what we want.\tCe n'est pas ce que nous voulons.\nThis is private property.\tC'est une propriété privée.\nThis is such a sad story.\tC’est une histoire tellement triste.\nThis is the lover's lane.\tC'est la ruelle des amoureux.\nThis is the lover's lane.\tC'est la ruelle aux amoureux.\nThis is the right answer.\tC'est la bonne réponse.\nThis is the right answer.\tC'est la réponse correcte.\nThis is the worst of all.\tC'est le pire de tout.\nThis is what you must do.\tC'est ce que tu dois faire.\nThis is what you must do.\tC'est ce que vous devez faire.\nThis is where I was born.\tC'est là que je suis né.\nThis is where I was born.\tC'est ici que je suis né.\nThis is your only chance.\tC'est votre unique occasion.\nThis just happened to me.\tÇa vient de m'arriver.\nThis just isn't like you.\tTu n'es pas toi-même.\nThis just isn't like you.\tCela ne te ressemble pas.\nThis knife is very sharp.\tCe couteau est très aiguisé.\nThis makes my blood boil.\tÇa me fait bouillir le sang.\nThis may not be possible.\tCeci pourrait ne pas être possible.\nThis might hurt a little.\tIl se peut que ça fasse un peu mal.\nThis noise is unbearable.\tCe bruit est insupportable.\nThis old coat has had it.\tCe vieux manteau a eu son temps.\nThis one is a lot easier.\tCelui-ci est beaucoup plus facile.\nThis one is a lot easier.\tCelle-ci est beaucoup plus facile.\nThis piece doesn't match.\tCette pièce ne correspond pas.\nThis place is disgusting.\tCet endroit est répugnant.\nThis price is reasonable.\tCe prix est raisonnable.\nThis question isn't easy.\tCette question n'est pas simple.\nThis really is something.\tÇa c'est quelque chose.\nThis room is comfortable.\tCette pièce est comfortable.\nThis room is very stuffy.\tCette pièce manque vraiment d'air.\nThis rule does not apply.\tCette règle ne s'applique pas.\nThis should do the trick.\tVoilà qui devrait aider.\nThis soup is really good.\tCette soupe est vraiment bonne.\nThis tea is really sweet.\tCe thé est vraiment sucré.\nThis tire needs some air.\tCe pneu a besoin d'être gonflé.\nThis was a gift from Tom.\tC'était un cadeau de Tom.\nThis was meant as a joke.\tC'était censé être une blague.\nThis was on the doorstep.\tC'était sur le pas de la porte.\nThis will be on the test.\tÇa sera en test.\nThis will do for a chair.\tCeci nous servira de chaise.\nThis will do for a chair.\tCeci nous fera office de chaise.\nTime flies like an arrow.\tLe temps file comme une flèche.\nTime flies like an arrow.\tChronomètre les mouches comme une flèche.\nTime flies like an arrow.\tLes mouches du temps aiment une flèche.\nTime passed very quickly.\tLe temps a passé très vite.\nTiming is very important.\tLe minutage est très important.\nToday is September first.\tAujourd'hui c'est le premier septembre.\nToday is Valentine's Day.\tAujourd'hui est la Saint-Valentin.\nToday is a beautiful day.\tAujourd'hui est un beau jour.\nToday is a beautiful day.\tAujourd'hui est une belle journée.\nToday was a terrible day.\tAujourd'hui était un jour terrible.\nTokyo is a very big city.\tTokyo est une très grande ville.\nTom abandoned his family.\tTom abandonna sa famille.\nTom abandoned his family.\tTom a abandonné sa famille.\nTom and Mary are worried.\tTom et Mary sont inquiets.\nTom arrived at the hotel.\tTom est arrivé à l'hôtel.\nTom arrived at the hotel.\tTom arriva à l'hôtel.\nTom asked for a discount.\tTom demanda une ristourne.\nTom asked us to sit down.\tTom nous demanda de nous asseoir.\nTom asked us to sit down.\tTom nous a demandé de nous asseoir.\nTom bet $300 on the game.\tTom a parié 300 dollars sur le jeu.\nTom calls me every night.\tTom m'appelle chaque nuit.\nTom came 30 minutes late.\tTom est arrivé trente minutes en retard.\nTom came here to help me.\tTom est venu ici m'aider.\nTom came here to help me.\tTom est venu ici pour m'aider.\nTom can be very charming.\tTom peut être très charmant.\nTom can sleep in my room.\tTom peut dormir dans ma chambre.\nTom can't touch his toes.\tTom ne peut pas toucher ses orteils.\nTom comes from Australia.\tTom vient d'Australie.\nTom contradicted himself.\tTom s'est contredit.\nTom could barely breathe.\tTom pouvait à peine respirer.\nTom could make you laugh.\tTom pourrait te faire rire.\nTom could make you laugh.\tTom pourrait vous faire rire.\nTom couldn't kill anyone.\tTom ne pouvait tuer personne.\nTom decided to cooperate.\tTom décida de coopérer.\nTom decided to cooperate.\tTom a décidé de coopérer.\nTom deserves a promotion.\tTom mérite une promotion.\nTom deserves much better.\tTom mérite beaucoup mieux.\nTom didn't stay for long.\tTom n'est pas resté longtemps.\nTom didn't take a shower.\tTom n'a pas pris de douche.\nTom didn't want anything.\tTom ne voulait rien.\nTom died a few years ago.\tTom est mort il y a quelques années.\nTom does not like cheese.\tTom n’aime pas le fromage.\nTom doesn't deserve this.\tTom ne mérite pas cela.\nTom doesn't drink coffee.\tTom ne boit pas de café.\nTom doesn't eat properly.\tTom ne mange pas proprement.\nTom doesn't even know me.\tTom ne me connait même pas.\nTom doesn't like to lose.\tTom n'aime pas perdre.\nTom doesn't look pleased.\tTom n'a pas l'air content.\nTom doesn't sound scared.\tTom n'a pas l'air effrayé.\nTom doesn't speak French.\tTom ne parle pas français.\nTom doesn't want to move.\tTom ne veut pas bouger.\nTom doesn't want to stop.\tTom ne veut pas arrêter.\nTom drank my apple juice.\tTom a bu mon jus de pomme.\nTom drove Mary to Boston.\tTom a conduit Marie à Boston.\nTom enjoys telling jokes.\tTom aime raconter des blagues.\nTom fell down the stairs.\tTom a dégringolé les escaliers.\nTom found out our secret.\tTom a découvert notre secret.\nTom got stuck in traffic.\tTom s'est retrouvé coincé dans les embouteillages.\nTom handed Mary a banana.\tTom donna une banane à Mary.\nTom has a lot of enemies.\tTom a beaucoup d'ennemis.\nTom has a prosthetic leg.\tTom a une prothèse de jambe.\nTom has a son named John.\tTom a un fils nommé John.\nTom has a very large ego.\tTom est imbu de lui-même.\nTom has narrow shoulders.\tTom a les épaules étroites.\nTom has no chance, right?\tTom n'a aucune chance, non ?\nTom has no close friends.\tTom n'a pas de proches amis.\nTom has to work tomorrow.\tTom doit travailler demain.\nTom has trouble sleeping.\tTom a du mal à dormir.\nTom helped Mary stand up.\tTom aida Marie à se lever.\nTom is a 33-year-old man.\tTom est un homme de trente-trois ans.\nTom is a 33-year-old man.\tTom est un homme de 33 ans.\nTom is a Native American.\tTom est un Amérindien.\nTom is a dancing teacher.\tTom est professeur de danse.\nTom is a dancing teacher.\tTom est prof de danse.\nTom is a football player.\tTom est un footballeur.\nTom is a really cool guy.\tTom est vraiment un type sympa.\nTom is an intriguing guy.\tTom est un gars fascinant.\nTom is at work, isn't he?\tTom est au travail, n'est-ce pas ?\nTom is extremely patient.\tTom est extrêmement patient.\nTom is hard up for money.\tTom est à court d'argent.\nTom is in intensive care.\tTom est en soins intensifs.\nTom is kind and generous.\tTom est aimable et généreux.\nTom is kind to everybody.\tTom est aimable avec tout le monde.\nTom is looking for a job.\tTom cherche du travail.\nTom is making me do this.\tTom me fait faire ceci.\nTom is nervous, isn't he?\tTom est nerveux, n'est-ce pas ?\nTom is obviously worried.\tTom est de toute évidence inquiet.\nTom is on the honor roll.\tTom est sur la liste des étudiants d'honneur.\nTom is proud of his sons.\tTom est fier de ses fils.\nTom is quite cooperative.\tTom est plutôt coopératif.\nTom is rather optimistic.\tTom est plutôt optimiste.\nTom is smarter than Mary.\tTom est plus intelligent que Mary.\nTom is taking care of me.\tTom s'occupe de moi.\nTom is taking care of me.\tTom prend soin de moi.\nTom is very good-looking.\tTom est très beau.\nTom isn't Mary's husband.\tTom n'est pas le mari de Mary.\nTom isn't a good swimmer.\tTom n'est pas un bon nageur.\nTom isn't a good teacher.\tTom n'est pas un bon enseignant.\nTom isn't busy right now.\tTom n'est pas occupé là maintenant.\nTom isn't doing anything.\tTom ne fait rien.\nTom isn't ready to leave.\tTom n'est pas prêt à partir.\nTom isn't really my type.\tTom n'est pas vraiment mon type.\nTom isn't serious, is he?\tTom n'est pas sérieux, n'est-ce pas ?\nTom isn't very ambitious.\tTom n'est pas très ambitieux.\nTom isn't very confident.\tTom n'est pas très confiant.\nTom knows a lot of songs.\tTom connaît beaucoup de chansons.\nTom left his dog at home.\tTom a laissé son chien à la maison.\nTom left his dog at home.\tTom laissa son chien à la maison.\nTom likes to play tennis.\tTom aime jouer au tennis.\nTom looked a bit puzzled.\tTom avait l'air un peu sceptique.\nTom looked at the ground.\tTom regarda le sol.\nTom looks extremely busy.\tTom semble très occupé.\nTom loves being outdoors.\tTom aime être à l'extérieur.\nTom loves being outdoors.\tTom adore être dehors.\nTom might be the traitor.\tTom pourrait être le traître.\nTom must be proud of you.\tTom doit être fier de toi.\nTom must be proud of you.\tTom doit être fier de vous.\nTom needs a prescription.\tTom a besoin d'une ordonnance.\nTom needs to do that now.\tTom a besoin de faire cela maintenant.\nTom needs to do that now.\tTom a besoin de faire ça maintenant.\nTom never went to school.\tTom n'est jamais allé à l'école.\nTom played poker with us.\tTom a joué au poker avec nous.\nTom played with his cats.\tTom jouais avec ses chats.\nTom pretended to be busy.\tTom fit semblant d'être occupé.\nTom pretended to be rich.\tTom a prétendu être riche.\nTom ran all the way home.\tTom a couru jusqu'à chez lui.\nTom said Mary would come.\tTom a dit que Mary viendrait.\nTom said he wants to die.\tTom a dit qu'il voulait mourir.\nTom said he was retiring.\tTom a dit qu'il prenait sa retraite.\nTom said he was starving.\tTom a dit qu'il était affamé.\nTom said he was starving.\tTom a dit qu'il mourait de faim.\nTom said he would buy it.\tTom a dit qu'il l'achèterait.\nTom said you were lonely.\tTom a dit que tu te sentais seul.\nTom said you were lonely.\tTom a dit que vous vous sentiez seule.\nTom said you were lonely.\tTom a dit que tu te sentais seule.\nTom sat down on the sofa.\tTom s'assit sur le canapé.\nTom says a lot of things.\tTom dit beaucoup de choses.\nTom says he didn't do it.\tTom dit qu'il ne l'a pas fait.\nTom says he doesn't know.\tTom dit qu'il ne sait pas.\nTom scrubbed the bathtub.\tTom nettoya la baignoire.\nTom seems pretty excited.\tTom semble assez enthousiasmé.\nTom should've eaten more.\tTom aurait dû manger plus.\nTom shouldn't trust Mary.\tTom ne devrait pas faire confiance à Mary.\nTom signed the documents.\tTom a signé les documents.\nTom signed the documents.\tTom signa les documents.\nTom smiled halfheartedly.\tTom sourit sans enthousiasme.\nTom sold his car to Mary.\tTom a vendu sa voiture à Marie.\nTom sounded really upset.\tTom avait l'air très contrarié.\nTom spent time with Mary.\tTom passa du temps avec Marie.\nTom still hasn't paid me.\tTom ne m'a toujours pas payé.\nTom thinks Mary is lying.\tThomas croit que Marie ment.\nTom told Mary to shut up.\tTom dit à Mary de se taire.\nTom told Mary to shut up.\tTom a dit à Mary de se la fermer.\nTom told me to wait here.\tTom m'a dit d'attendre ici.\nTom took out the garbage.\tTom sortit les poubelles.\nTom took the wrong train.\tTom prit le mauvais train.\nTom turned down the heat.\tTom baissa le chauffage.\nTom used to be a soldier.\tAvant, Tom était un soldat.\nTom used to be ambitious.\tTom était ambitieux.\nTom used to love his job.\tTom adorait son travail.\nTom visited Mary's grave.\tTom s'est rendu sur la tombe de Mary.\nTom wanted to play chess.\tTom voulait jouer aux échecs.\nTom wanted to play chess.\tTom a voulu jouer aux échecs.\nTom wants me to help him.\tTom veut que je l'aide.\nTom wants to go with you.\tTom veut partir avec toi.\nTom wants to sleep on it.\tTom veux y réfléchir d'ici demain.\nTom wants to stay single.\tTom veut rester célibataire.\nTom wants to talk to you.\tTom veut parler avec vous.\nTom wants to talk to you.\tTom veut parler avec toi.\nTom was a trusted friend.\tTom était un ami de confiance.\nTom was absent yesterday.\tTom était absent hier.\nTom was bleeding heavily.\tTom saignait abondamment.\nTom was dressed in black.\tTom était habillé en noir.\nTom was forced to resign.\tTom fut forcé de démissionner.\nTom was getting agitated.\tTom devenait agité.\nTom was going to help us.\tTom allait nous aider.\nTom was having a bad day.\tTom passait une mauvaise journée.\nTom was killed in Boston.\tTom a été tué à Boston.\nTom was like a son to me.\tTom était comme un fils pour moi.\nTom was nowhere in sight.\tTom était introuvable.\nTom was shot in the head.\tTom a reçu une balle dans la tête.\nTom wasn't badly injured.\tTom n'a pas été gravement blessé.\nTom watched TV yesterday.\tTom a regardé la télé hier.\nTom went straight to bed.\tTom est parti directement au lit.\nTom went to Mary's house.\tTom est allé chez Mary.\nTom will be here tonight.\tTom sera là cette nuit.\nTom will be here tonight.\tTom sera ici cette nuit.\nTom will be here tonight.\tTom sera là ce soir.\nTom will be here tonight.\tTom sera ici ce soir.\nTom will probably say no.\tTom dira probablement non.\nTom works in advertising.\tTom travaille dans la publicité.\nTom's family is powerful.\tLa famille de Tom est puissante.\nTom, it's not your fault.\tTom, ce n'est pas de ta faute.\nTom, it's not your fault.\tTom, ce n'est pas de votre faute.\nTom, you should see this.\tTom, tu devrais voir ceci.\nTom, you should see this.\tTom, vous devriez voir ceci.\nTomorrow is Mother's Day.\tDemain, c'est la fête des mères.\nTomorrow is her birthday.\tDemain a lieu son anniversaire.\nTry not to disappoint me.\tEssaie de ne pas me décevoir !\nTry not to disappoint me.\tEssayez de ne pas me décevoir !\nTry us again next Monday.\tRéessayez lundi prochain.\nTurn down the television.\tBaisse le son de la télé.\nTwelve is an even number.\tDouze est un nombre pair.\nUnfortunately, it's true.\tMalheureusement, c'est vrai.\nVandalism is on the rise.\tLe vandalisme est en augmentation.\nWait in the waiting room.\tAttendez dans la salle d'attente.\nWalk as fast as possible.\tMarche le plus vite possible.\nWas he lying on his back?\tÉtait-il allongé sur le dos ?\nWas it difficult to make?\tCela fut-il difficile à fabriquer ?\nWas it difficult to make?\tCela a-t-il été difficile à fabriquer ?\nWas that really worth it?\tEst-ce que ça en valait réellement la peine ?\nWas that really worth it?\tCela en valait-il vraiment la peine ?\nWas that you at the door?\tÉtait-ce toi à la porte ?\nWas the baby crying then?\tLe bébé pleurait-il à ce moment-là ?\nWas the book interesting?\tLe livre était-il intéressant ?\nWash your face and hands.\tLave-toi le visage et les mains.\nWasn't he your boyfriend?\tN'était-il pas ton petit ami ?\nWatch where you're going!\tRegarde où tu vas !\nWatch where you're going!\tRegardez où vous allez !\nWe all enjoyed the movie.\tLe film nous a tous plu.\nWe all had the same idea.\tNous avons tous eu la même idée.\nWe all had the same idea.\tNous avons toutes eu la même idée.\nWe all have our off days.\tOn a tous des jours sans.\nWe all have stomachaches.\tNous avons tous mal à l'estomac.\nWe all know you're smart.\tNous savons tous que tu es malin.\nWe all know you're smart.\tNous savons tous que tu es maligne.\nWe almost froze to death.\tNous gelâmes presque à mort.\nWe are all happy to help.\tNous sommes tous contents d'aider.\nWe are all happy to help.\tNous sommes toutes contentes d'aider.\nWe are going to the shop.\tNous nous rendons au magasin.\nWe are going to the shop.\tNous nous rendons à la boutique.\nWe are moving next month.\tNous déménageons le mois prochain.\nWe are not all that safe.\tNous ne sommes pas tant que ça en sécurité.\nWe are sold out of jeans.\tLes jeans sont en rupture de stock.\nWe are under his command.\tNous sommes sous son commandement.\nWe are worried about you.\tNous nous inquiétons pour toi.\nWe are worried about you.\tNous sommes inquiets à votre sujet.\nWe assumed you were dead.\tNous avons supposé que vous étiez mort.\nWe ate at the food court.\tNous avons mangé à la terrasse de la galerie commerciale.\nWe believe it's possible.\tNous croyons que c'est possible.\nWe bought a pound of tea.\tNous avons acheté une livre de thé.\nWe bought a pound of tea.\tNous achetâmes une livre de thé.\nWe bought bread and milk.\tNous avons acheté du pain et du lait.\nWe can leave after lunch.\tNous pouvons partir après le déjeuner.\nWe can talk this through.\tOn peut en faire le tour en discutant.\nWe can't be sure, can we?\tNous ne pouvons en être certains, si ?\nWe can't be sure, can we?\tNous ne pouvons en être certaines, si ?\nWe can't get out of this.\tNous n'arrivons pas à en sortir.\nWe can't get out of this.\tNous ne parvenons pas à en sortir.\nWe can't just stand here.\tNous ne pouvons pas simplement nous tenir là.\nWe can't keep doing this.\tNous ne pouvons pas continuer à faire ça.\nWe can't keep doing this.\tNous ne pouvons pas continuer à le faire.\nWe carried out that plan.\tNous exécutâmes ce plan.\nWe caught him red-handed.\tNous l'avons pris la main dans le sac.\nWe caught him red-handed.\tNous l'avons pris en flagrant délit.\nWe caught him red-handed.\tNous le prîmes la main dans le sac.\nWe caught him red-handed.\tNous le prîmes en flagrant délit.\nWe complement each other.\tNous nous complémentons.\nWe couldn't convince him.\tNous n'avons pas pu le convaincre.\nWe danced all night long.\tNous avons dansé toute la nuit.\nWe danced all night long.\tNous dansâmes toute la nuit.\nWe danced until midnight.\tOn a dansé jusqu'à minuit.\nWe did what we were told.\tNous avons fait ce qu'on nous a dit.\nWe did what we were told.\tNous fîmes ce qu'on nous avait dit.\nWe didn't learn anything.\tNous n'avons rien appris.\nWe didn't look very long.\tNous n'avons pas regardé très longtemps.\nWe discussed the problem.\tNous avons débattu sur le problème.\nWe do very good business.\tNous faisons de bonnes affaires.\nWe don't have a daughter.\tNous n'avons pas de fille.\nWe don't know each other.\tNous ne nous connaissons pas.\nWe don't need it anymore.\tNous n'en avons plus besoin.\nWe don't need it anymore.\tNous n'en avons plus l'usage.\nWe don't need your money.\tNous n'avons pas besoin de ton argent.\nWe don't really know Tom.\tNous ne connaissons pas vraiment Tom.\nWe don't trust strangers.\tNous ne nous fions pas à des étrangers.\nWe drove across the city.\tNous roulâmes à travers la ville.\nWe eat soup with a spoon.\tNous mangeons la soupe avec une cuillère.\nWe elected him president.\tNous l'avons élu président.\nWe elected him president.\tNous l'élûmes président.\nWe expect a lot from him.\tNous attendons beaucoup de lui.\nWe felt sympathy for her.\tNous éprouvions de la compassion à son endroit.\nWe felt sympathy for her.\tNous éprouvions de la compassion envers elle.\nWe go to school to learn.\tNous allons à l'école pour apprendre.\nWe go to the same school.\tNous allons à la même école.\nWe grew closer every day.\tNous nous approchâmes chaque jour.\nWe had a storm yesterday.\tNous avons essuyé une tempête, hier.\nWe had fun at Disneyland.\tNous nous sommes amusés à Disneyland.\nWe had no drinking water.\tNous n'avions pas d'eau potable.\nWe had no drinking water.\tNous ne disposions pas d'eau potable.\nWe had snow this morning.\tNous avons eu de la neige ce matin.\nWe had some chicken soup.\tNous avons pris un peu de soupe de poulet.\nWe have a little problem.\tNous avons un petit problème.\nWe have a tight schedule.\tNous avons un horaire serré.\nWe have medicine for you.\tNous avons un médicament pour vous.\nWe have medicine for you.\tNous avons un médicament pour toi.\nWe have no more in stock.\tNous n'en avons plus en stock.\nWe have no special plans.\tOn n'a rien de prévu de particulier.\nWe have run out of sugar.\tNous sommes tombés à court de sucre.\nWe have to do that today.\tNous devons le faire aujourd'hui.\nWe have to make a choice.\tNous devons faire un choix.\nWe have to start at once.\tNous devons commencer immédiatement.\nWe have tried everything.\tNous avons tout essayé.\nWe have tried everything.\tNous avons tout tenté.\nWe have very little time.\tOn a très peu de temps.\nWe haven't got much time.\tNous n'avons pas beaucoup de temps.\nWe hope to see you again.\tNous espérons vous revoir.\nWe hope to see you again.\tOn espère vous revoir.\nWe hope to see you again.\tOn espère te revoir.\nWe hope to see you again.\tNous espérons te revoir.\nWe import tea from India.\tNous importons le thé d'Inde.\nWe just want to be happy.\tOn veut juste être heureux.\nWe just want to have fun.\tOn veut juste s'amuser.\nWe leave in half an hour.\tOn part dans une demi-heure.\nWe live in a remote area.\tNous vivons dans une zone reculée.\nWe lost all of our money.\tNous avons perdu tout notre argent.\nWe love going on picnics.\tNous adorons aller à des pique-niques.\nWe made out like bandits.\tNous avons baisé comme des bandits.\nWe must follow the rules.\tNous devons suivre les règles.\nWe must leave right away.\tIl nous faut partir sur-le-champ.\nWe must phone the police.\tNous devons appeler la police.\nWe must water the flower.\tNous devons arroser la fleur.\nWe need not have hurried.\tNous n'avions pas besoin de nous presser.\nWe need something to eat.\tNous avons besoin de quelque chose à manger.\nWe need to do this right.\tNous avons besoin de faire cela bien.\nWe need to do this right.\tOn doit faire ça bien.\nWe need to remember that.\tNous avons besoin de nous rappeler de cela.\nWe now come to the point.\tNous en arrivons maintenant au fait.\nWe ran for 10 kilometers.\tNous courûmes dix kilomètres.\nWe rested on some stones.\tNous nous reposâmes sur quelques pierres.\nWe should cut our losses.\tNous devrions compenser nos pertes.\nWe should study together.\tNous devrions étudier ensemble.\nWe slept in the same bed.\tNous avons dormi dans le même lit.\nWe slept in the same bed.\tNous dormîmes dans le même lit.\nWe stayed at our uncle's.\tNous restâmes chez notre oncle.\nWe take a bath every day.\tNous prenons un bain tous les jours.\nWe tend to make mistakes.\tNous avons tendance à faire des erreurs.\nWe took lots of pictures.\tNous avons pris beaucoup de photos.\nWe tried to cheer him up.\tNous essayâmes de le remonter.\nWe tried to cheer him up.\tNous essayâmes de lui remonter le moral.\nWe tried to cheer him up.\tNous avons essayé de le remonter.\nWe tried to cheer him up.\tNous avons essayé de lui remonter le moral.\nWe understand each other.\tNous nous comprenons.\nWe walked along the road.\tNous avons longé la route.\nWe want to talk with Tom.\tNous voulons parler avec Tom.\nWe watched TV last night.\tHier soir, nous avons regardé la télévision.\nWe went aboard the plane.\tNous avons embarqué dans l'avion.\nWe went skiing in Canada.\tNous sommes allés skier au Canada.\nWe went there for a week.\tNous y allâmes pour une semaine.\nWe went there for a week.\tNous y sommes allés pour une semaine.\nWe went to Boston by bus.\tNous sommes allés à Boston en bus.\nWe were all so busy then.\tNous étions tous alors tellement occupés.\nWe were all so busy then.\tNous étions toutes alors tellement occupées.\nWe weren't all that busy.\tNous n'étions pas si occupés.\nWe weren't all that busy.\tNous n'étions pas si occupées.\nWe won't change anything.\tNous ne changerons rien.\nWe'd better do something.\tNous ferions mieux de faire quelque chose.\nWe'd make a perfect team.\tNous formerions une parfaite équipe.\nWe'll always be together.\tNous serons toujours ensemble.\nWe'll be late for dinner.\tNous serons en retard pour le dîner.\nWe'll eat at six o'clock.\tNous mangerons à dix-huit heures.\nWe'll visit you tomorrow.\tNous te rendrons visite demain.\nWe're a little busy here.\tNous sommes un peu occupés ici.\nWe're about the same age.\tNous sommes à peu près du même âge.\nWe're all agreed on that.\tNous en sommes toutes d'accord.\nWe're all agreed on that.\tNous en sommes tous d'accord.\nWe're almost out of time.\tNotre temps est presque écoulé.\nWe're deluding ourselves.\tNous nous berçons d'illusions.\nWe're deluding ourselves.\tNous nous leurrons.\nWe're enjoying ourselves.\tNous nous amusons.\nWe're in kind of a hurry.\tNous sommes assez pressés.\nWe're just going to talk.\tNous allons simplement discuter.\nWe're just going to talk.\tOn va simplement parler.\nWe're just like brothers.\tNous sommes juste comme des frères.\nWe're managing all right.\tNous nous en sortons très bien.\nWe're nearly out of time.\tIl ne nous reste presque plus de temps.\nWe're not doing anything.\tNous ne faisons rien.\nWe're not going anywhere.\tNous n'allons nulle part.\nWe're not going to do it.\tNous n'allons pas vous répondre.\nWe're not home right now.\tNous ne sommes pas chez nous, à l'heure actuelle.\nWe're not ready for this.\tNous n'y sommes pas prêts.\nWe're not ready for this.\tNous n'y sommes pas prêtes.\nWe're running out of gas.\tNous allons manquer de gaz.\nWe've all seen it before.\tNous l'avons tous déjà vu.\nWe've endured three wars.\tNous avons subi trois guerres.\nWe've endured three wars.\tNous avons enduré trois guerres.\nWe've had enough of that.\tNous en avons assez vu.\nWe've lost valuable time.\tNous avons perdu un temps précieux.\nWe've made good progress.\tNous avons réalisé des progrès sensibles.\nWe've solved the problem.\tNous avons résolu le problème.\nWelcome to your new home.\tBienvenue dans ta nouvelle maison!\nWere there any witnesses?\tY avait-il le moindre témoin ?\nWhat a beautiful picture!\tQuelle jolie photo !\nWhat a beautiful rainbow!\tQuel bel arc-en-ciel !\nWhat a beautiful sweater!\tQuel beau chandail !\nWhat a nice thing to say!\tComme c'est gentil de le dire !\nWhat a pleasant surprise!\tQuelle agréable surprise !\nWhat alleviates the pain?\tQu'est-ce qui soulage la douleur ?\nWhat am I supposed to do?\tQue suis-je supposé faire ?\nWhat an attractive woman!\tQuelle femme séduisante !\nWhat an interesting book!\tQuel livre intéressant !\nWhat are the rules again?\tQuelles sont les règles, déjà ?\nWhat are they doing here?\tQue font-ils ici ?\nWhat are they doing here?\tQu'est-ce qu'ils font ici ?\nWhat are you doing today?\tQue fais-tu aujourd'hui ?\nWhat are you doing today?\tQue faites-vous aujourd'hui ?\nWhat are you looking for?\tQue cherches-tu ?\nWhat are you looking for?\tQue cherchez-vous ?\nWhat are you looking for?\tQue cherches-tu ?\nWhat are you looking for?\tQue cherchez-vous ?\nWhat are you majoring in?\tEn quoi te spécialises-tu ?\nWhat are you majoring in?\tEn quoi vous spécialisez-vous ?\nWhat are you waiting for?\tQu'attends-tu ?\nWhat are you waiting for?\tQu'attendez-vous ?\nWhat are you waiting for?\tQu'es-tu en train d'attendre ?\nWhat are you waiting for?\tQu'êtes-vous en train d'attendre ?\nWhat are your conditions?\tQuelles sont vos conditions ?\nWhat are your intentions?\tQuelles sont vos intentions ?\nWhat are your intentions?\tQuelles sont tes intentions ?\nWhat are your pet peeves?\tQuels sont tes motifs d'irritation favoris ?\nWhat are your pet peeves?\tQuels sont vos motifs d'irritation favoris ?\nWhat color is your truck?\tDe quelle couleur est ton camion ?\nWhat did I forget to say?\tQu'ai-je oublié de dire ?\nWhat did I just tell you?\tQu'est-ce que je viens de vous dire ?\nWhat did I just tell you?\tQu'est-ce que je viens de te dire ?\nWhat did I say yesterday?\tQu'ai-je dit hier ?\nWhat did Tom really want?\tQue voulait vraiment Tom ?\nWhat did he do yesterday?\tQu'a-t-il fait, hier ?\nWhat did you do that for?\tPourquoi avez-vous fait cela ?\nWhat do you do on Sunday?\tQue fais-tu le dimanche ?\nWhat do you do on Sunday?\tQue fais-tu dimanche ?\nWhat do you do on Sunday?\tQue faites-vous dimanche ?\nWhat do you do on Sunday?\tQue faites-vous le dimanche ?\nWhat do you have in mind?\tQu'as-tu en tête ?\nWhat do you have in mind?\tQu'as-tu à l'esprit ?\nWhat do you have in mind?\tQu'avez-vous en tête ?\nWhat do you have in mind?\tQu'avez-vous à l'esprit ?\nWhat do you have to lose?\tQu'as-tu à perdre ?\nWhat do you have to lose?\tQu'avez-vous à perdre ?\nWhat do you intend to do?\tQu'as-tu l'intention de faire ?\nWhat do you intend to do?\tQu'avez-vous l'intention de faire ?\nWhat do you need exactly?\tDe quoi as-tu besoin exactement ?\nWhat do you need exactly?\tDe quoi avez-vous besoin exactement ?\nWhat do you need to know?\tQu'avez-vous besoin de savoir ?\nWhat do you need to know?\tQu'as-tu besoin de savoir ?\nWhat do you really think?\tQue penses-tu vraiment ?\nWhat do you really think?\tQue pensez-vous vraiment ?\nWhat do you think he did?\tQue crois-tu qu'il a fait ?\nWhat do you think he did?\tQue penses-tu qu'il a fait ?\nWhat do you think of him?\tQue penses-tu de lui ?\nWhat do you think of war?\tQue pensez-vous de la guerre ?\nWhat do you want to have?\tQue désirez-vous avoir ?\nWhat do you want to know?\tQue veux-tu savoir ?\nWhat do you want to know?\tQue voulez-vous savoir ?\nWhat does that even mean?\tQu'est-ce que ça veut même dire ?\nWhat does that even mean?\tQu'est-ce que ça signifie même ?\nWhat does that even mean?\tQu'est-ce que ça peut bien vouloir dire ?\nWhat does that word mean?\tQue signifie ce mot ?\nWhat does that word mean?\tQue signifie ce mot?\nWhat does this device do?\tQue fait cet appareil ?\nWhat does this note mean?\tQue veut dire ce billet ?\nWhat does this sign mean?\tQue veut dire ce signe ?\nWhat does this stand for?\tQu'est-ce que ça représente ?\nWhat does this stand for?\tQu'est-ce que cela symbolise ?\nWhat does this stand for?\tQue ceci symbolise-t-il ?\nWhat does this word mean?\tQue signifie ce mot ?\nWhat does this word mean?\tQue signifie ce mot?\nWhat does your father do?\tQue fait ton père ?\nWhat exactly did you say?\tQu'avez-vous dit, exactement ?\nWhat exactly did you say?\tQu'as-tu dit, exactement ?\nWhat happened after that?\tQu'est-ce qu'il s'est passé après cela ?\nWhat happened last night?\tQue s'est-il passé la nuit dernière ?\nWhat happened last night?\tQue s'est-il passé hier soir ?\nWhat happened on the bus?\tQue c'est-il passé dans le bus ?\nWhat have we gotten into?\tDans quoi on s'est embarqué?\nWhat he did wasn't wrong.\tCe qu'il fit n'était pas mauvais.\nWhat he said is not true.\tCe qu'il a dit n'est pas vrai.\nWhat is he running after?\tAprès quoi court-il ?\nWhat is it that you want?\tQue voulez-vous ?\nWhat is it that you want?\tQu'est-ce que tu veux ?\nWhat is it that you want?\tQue veux-tu ?\nWhat is it you want most?\tQue veux-tu le plus ?\nWhat is it you want most?\tQue voulez-vous le plus ?\nWhat is your destination?\tQuelle est votre destination ?\nWhat is your destination?\tQuelle est ta destination ?\nWhat kind of man are you?\tQuel genre d'homme es-tu ?\nWhat kind of man are you?\tQuel genre d'homme êtes-vous ?\nWhat more could you want?\tQue pourriez-vous vouloir de plus ?\nWhat more could you want?\tQue pourrais-tu vouloir de plus ?\nWhat should I say to Tom?\tQue devrais-je dire à Tom ?\nWhat should I write here?\tQue devrais-je écrire ici ?\nWhat time are you coming?\tÀ quelle heure viendras-tu ?\nWhat time are you coming?\tÀ quelle heure venez-vous ?\nWhat time did that occur?\tÀ quelle heure cela s'est-il produit ?\nWhat time do you go home?\tÀ quelle heure rentrez-vous à la maison ?\nWhat time do you go home?\tÀ quelle heure rentres-tu chez toi ?\nWhat time is the concert?\tÀ quelle heure est le concert?\nWhat time is your curfew?\tÀ quelle heure est ton couvre-feu ?\nWhat time is your curfew?\tÀ quelle heure est votre couvre-feu ?\nWhat time is your curfew?\tÀ quelle heure éteignez-vous les feux ?\nWhat time is your curfew?\tÀ quelle heure éteins-tu les feux ?\nWhat time will you leave?\tTu pars quand ?\nWhat time will you leave?\tÀ quelle heure pars-tu ?\nWhat was wrong with them?\tQu'est-ce qui n'allait pas avec eux ?\nWhat was wrong with them?\tQu'est-ce qui n'allait pas chez eux ?\nWhat were you doing then?\tQu'étiez-vous donc en train de faire à cet instant là ?\nWhat were you doing then?\tQue faisiez-vous au juste à ce moment-là ?\nWhat were you doing, Dad?\tQue faisais-tu, Papa ?\nWhat would we do instead?\tQue ferions-nous à la place ?\nWhat's causing the delay?\tQu'est-ce qui est responsable du délai ?\nWhat's causing the delay?\tQu'est-ce qui cause le délai ?\nWhat's going on out here?\tQue se passe-t-il par ici ?\nWhat's it doing out here?\tQu'est-ce que ça fout dehors ?\nWhat's making this sound?\tQu'est-ce qui produit ce bruit ?\nWhat's making this sound?\tQu'est-ce qui produit ce son ?\nWhat's that your wearing?\tC'est quoi, ce que tu portes ?\nWhat's that your wearing?\tC'est quoi, ce que vous portez ?\nWhat's the big emergency?\tQuelle est cette urgence ?\nWhat's the job this time?\tEn quoi consiste le boulot, cette fois-ci ?\nWhat's this really about?\tQu'en est-il vraiment ?\nWhat's your biggest fear?\tQuelle est votre plus grosse crainte ?\nWhat's your biggest fear?\tQuelle est ta plus grosse crainte ?\nWhat's your home address?\tQuelle est ton adresse personnelle ?\nWhat's your home address?\tQuelle est votre adresse personnelle ?\nWhat's your phone number?\tQuel est votre numéro de téléphone ?\nWhat's your phone number?\tQuel est ton numéro de téléphone ?\nWhat's your phone number?\tQuel est ton numéro de téléphone ?\nWhat's your problem, Tom?\tQuel est ton problème, Tom ?\nWhat's your real purpose?\tQuel est votre réel objectif ?\nWhat's your real purpose?\tQuelle est ta véritable intention ?\nWhen I run, I get sweaty.\tLorsque je cours, je transpire.\nWhen I run, I get sweaty.\tLorsque je cours, je me mets à transpirer.\nWhen are you coming back?\tQuand reviens-tu ?\nWhen can I see you again?\tQuand puis-je vous revoir ?\nWhen can I see you again?\tQuand puis-je te revoir ?\nWhen did I ever hurt you?\tQuand vous ai-je jamais fait du mal ?\nWhen did I ever hurt you?\tQuand t'ai-je jamais fait du mal ?\nWhen did I give you that?\tQuand vous ai-je donné cela ?\nWhen did I give you that?\tQuand t'ai-je donné cela ?\nWhen did I tell you that?\tQuand vous ai-je dit cela ?\nWhen did I tell you that?\tQuand t'ai-je dit cela ?\nWhen did all this happen?\tQuand tout cela est-il survenu ?\nWhen did all this happen?\tQuand tout cela s'est-il produit ?\nWhen did he go to Europe?\tQuand est-il allé en Europe ?\nWhen did he go to Europe?\tQuand s'est-il rendu en Europe ?\nWhen did the show finish?\tQuand le spectacle s'est-il terminé ?\nWhen did the show finish?\tQuand le spectacle a-t-il pris fin ?\nWhen did they build that?\tQuand ont-ils construit cela ?\nWhen did they build that?\tQuand ont-elles construit cela ?\nWhen did this come about?\tQuand est-ce arrivé ?\nWhen did this come about?\tQuand est-ce survenu ?\nWhen did you get married?\tQuand t'es-tu marié ?\nWhen did you get married?\tQuand vous êtes-vous marié ?\nWhen did you get married?\tQuand vous êtes-vous mariée ?\nWhen did you get married?\tQuand vous êtes-vous mariés ?\nWhen did you get married?\tQuand vous êtes-vous mariées ?\nWhen did you get married?\tQuand t'es-tu marié ?\nWhen did you get married?\tQuand t'es-tu mariée ?\nWhen did you notice that?\tQuand l'as-tu remarqué ?\nWhen did you notice that?\tQuand as-tu remarqué cela ?\nWhen did you notice that?\tQuand as-tu remarqué ça ?\nWhen did you notice that?\tQuand avez-vous remarqué cela ?\nWhen did you notice that?\tQuand avez-vous remarqué ça ?\nWhen did you notice that?\tQuand l'avez-vous remarqué ?\nWhen does the game begin?\tÀ quelle heure commence le jeu ?\nWhen does the show start?\tQuand commence le spectacle ?\nWhen is he expected back?\tQuand son retour est-il attendu ?\nWhen is the intermission?\tQuand est-ce qu'est l'entracte ?\nWhen should I come again?\tQuand devrais-je revenir?\nWhen was this car washed?\tQuand a été lavée cette voiture ?\nWhen was this car washed?\tQuand cette voiture a-t-elle été lavée ?\nWhen was your first love?\tQuand ton premier amour a-t-il eu lieu ?\nWhen was your first love?\tQuand votre premier amour a-t-il eu lieu ?\nWhen will I get to Tokyo?\tQuand arriverai-je à Tokyo ?\nWhen will I get to Tokyo?\tQuand est-ce que j'arriverai à Tokyo ?\nWhen will you ever learn?\tQuand apprendras-tu jamais ?\nWhen will you ever learn?\tQuand apprendrez-vous jamais ?\nWhere are all the others?\tOù sont tous les autres ?\nWhere are we going to go?\tOù allons-nous nous rendre ?\nWhere are you headed for?\tOù te diriges-tu ?\nWhere are you headed for?\tOù vous dirigez-vous ?\nWhere are you living now?\tOù vis-tu désormais ?\nWhere are you living now?\tOù vivez-vous désormais ?\nWhere are your suitcases?\tOù sont vos valises ?\nWhere are your suitcases?\tOù sont tes valises ?\nWhere can I buy a ticket?\tOù puis-je acheter un billet ?\nWhere can I buy a ticket?\tOù puis-je faire l'acquisition d'un billet ?\nWhere can I buy a ticket?\tOù puis-je acquérir un billet ?\nWhere can I get a ticket?\tOù puis-je obtenir un billet ?\nWhere can I get a ticket?\tOù puis-je acquérir un billet ?\nWhere did I put that box?\tOù ai-je mis cette caisse ?\nWhere did I put that box?\tOù ai-je mis cette boîte ?\nWhere did that come from?\tD'où est-ce venu ?\nWhere did they come from?\tD'où est-ce qu'ils venaient ?\nWhere did you learn that?\tOù as-tu appris ça ?\nWhere did you learn that?\tOù avez-vous appris cela ?\nWhere did you learn this?\tOù as-tu appris ça ?\nWhere did you learn this?\tOù avez-vous appris ça ?\nWhere do we go from here?\tOù allons-nous à partir de là ?\nWhere do you want to eat?\tOù voulez-vous manger ?\nWhere do you want to eat?\tOù veux-tu manger ?\nWhere does it leave from?\tD'où cela part-il ?\nWhere does this piece go?\tOù cette pièce va-t-elle ?\nWhere does this train go?\tOù se dirige ce train ?\nWhere does this train go?\tOù ce train va-t-il ?\nWhere exactly did you go?\tOù êtes-vous allé, exactement ?\nWhere exactly did you go?\tOù vous êtes-vous rendu, exactement ?\nWhere exactly did you go?\tOù êtes-vous allée, exactement ?\nWhere exactly did you go?\tOù êtes-vous allés, exactement ?\nWhere exactly did you go?\tOù êtes-vous allées, exactement ?\nWhere exactly did you go?\tOù vous êtes-vous rendue, exactement ?\nWhere exactly did you go?\tOù vous êtes-vous rendus, exactement ?\nWhere exactly did you go?\tOù vous êtes-vous rendues, exactement ?\nWhere exactly did you go?\tOù t'es-tu rendu, exactement ?\nWhere exactly did you go?\tOù t'es-tu rendue, exactement ?\nWhere exactly did you go?\tOù es-tu allé, exactement ?\nWhere exactly did you go?\tOù es-tu allée, exactement ?\nWhere is Tom working now?\tOù travaille Tom maintenant?\nWhere is Tom's classroom?\tOù est la classe de Tom ?\nWhere is the coffee shop?\tOù est le magasin de café ?\nWhere is the coffee shop?\tOù est le café ?\nWhere is the post office?\tOù se trouve la poste ?\nWhere is the post office?\tOù se trouve le bureau de poste ?\nWhere is the rubber duck?\tOù est le canard en caoutchouc ?\nWhere were you all night?\tOù étais-tu toute la nuit ?\nWhere were you all night?\tOù étiez-vous toute la nuit ?\nWhere were you stationed?\tOù étiez-vous affecté ?\nWhere were you yesterday?\tOù étiez-vous hier ?\nWhere were you yesterday?\tOù étais-tu hier ?\nWhere will your party be?\tOù se passera ta fête?\nWhere's that coming from?\tD'où cela vient-il ?\nWhere's the light switch?\tOù se trouve l'interrupteur ?\nWhere's this coming from?\tD'où ça vient ?\nWhere's your family, Tom?\tOù est ta famille, Tom ?\nWhere's your family, Tom?\tOù est votre famille, Tom ?\nWhich cup will he choose?\tQuelle tasse choisira-t-il ?\nWhich eye is hurting you?\tQuel œil te fait mal ?\nWhich eye is hurting you?\tQuel œil vous fait mal ?\nWhich one of them was it?\tLaquelle d'entre-elles était-ce ?\nWhich one of them was it?\tLequel d'entre-eux était-ce ?\nWhich one will he choose?\tLequel choisira-t-il ?\nWhich one will he choose?\tLaquelle choisira-t-il ?\nWhich one would you take?\tLequel prendrais-tu ?\nWhich one would you take?\tLequel prendriez-vous ?\nWhich road should I take?\tQuelle route dois-je prendre ?\nWhich sports do you like?\tQuels sports aimez-vous ?\nWhich way did you choose?\tQuel chemin as-tu choisi ?\nWho all knows about this?\tQui sait tout cela ?\nWho are you talking with?\tAvec qui parles-tu ?\nWho are you talking with?\tAvec qui parlez-vous ?\nWho could take his place?\tQui pourrait prendre sa place ?\nWho do you think you are?\tPour qui vous prenez-vous ?\nWho does your decorating?\tQui se charge de votre décoration ?\nWho does your decorating?\tQui est en charge de ta décoration ?\nWho has taken my handbag?\tQui a pris mon sac à main ?\nWho have you told so far?\tÀ qui en avez-vous parlé jusqu'à maintenant ?\nWho have you told so far?\tQui as-tu mis au courant jusqu'à maintenant ?\nWho is playing the piano?\tQui est en train de jouer du piano ?\nWho is playing the piano?\tQui est-ce qui joue du piano ?\nWho is playing the piano?\tQui joue là du piano ?\nWho left the window open?\tQui a laissé la fenêtre ouverte ?\nWho painted this picture?\tQui a peint ce tableau ?\nWho painted this picture?\tQui a peint cette toile ?\nWho put a frog in my bed?\tQui a mis une grenouille dans mon lit ?\nWho said you could speak?\tQui a dit que tu étais autorisé à parler ?\nWho turned off the light?\tQui a éteint la lumière ?\nWho wants to go shopping?\tQui veut aller faire les courses ?\nWho was there that night?\tQui était là cette nuit-là ?\nWho was there that night?\tQui y-avait-il cette nuit-là ?\nWho's your favorite poet?\tQuel est votre poète préféré?\nWhy are the windows open?\tPourquoi les fenêtres sont-elles ouvertes ?\nWhy are you all laughing?\tPourquoi êtes-vous tous en train de rire ?\nWhy are you all laughing?\tPourquoi êtes-vous toutes en train de rire ?\nWhy are you all so happy?\tPourquoi êtes-vous tous si contents ?\nWhy are you all so happy?\tPourquoi êtes-vous toutes si contentes ?\nWhy are you following me?\tPourquoi me suivez-vous ?\nWhy are you following me?\tPourquoi me suis-tu ?\nWhy are you freaking out?\tPourquoi flippes-tu?\nWhy are you so concerned?\tPourquoi es-tu si inquiet ?\nWhy are you so secretive?\tPourquoi es-tu aussi secret ?\nWhy are you so secretive?\tPourquoi es-tu aussi secrète ?\nWhy are you so secretive?\tPourquoi êtes-vous aussi secret ?\nWhy are you so secretive?\tPourquoi êtes-vous aussi secrète ?\nWhy are you so secretive?\tPourquoi êtes-vous aussi secrets ?\nWhy are you so secretive?\tPourquoi êtes-vous aussi secrètes ?\nWhy are you torturing me?\tPourquoi me torturez-vous ?\nWhy are you torturing me?\tPourquoi me tortures-tu ?\nWhy are you waiting here?\tPourquoi attends-tu ici ?\nWhy are you waiting here?\tPourquoi attendez-vous ici ?\nWhy are your eyes so big?\tPourquoi vos yeux sont-ils si grands ?\nWhy are your eyes so big?\tPourquoi tes yeux sont-ils si grands ?\nWhy aren't you listening?\tPourquoi n'écoutez-vous pas ?\nWhy can't we do this now?\tPourquoi ne pouvons-nous pas le faire maintenant ?\nWhy did I ever marry you?\tPourquoi mon Dieu, me suis-je marié avec toi ?\nWhy did I ever marry you?\tPourquoi mon Dieu, me suis-je marié avec vous ?\nWhy did Tom kill himself?\tPourquoi Tom s'est-il suicidé ?\nWhy did Tom quit his job?\tPourquoi Tom a-t-il démissionné ?\nWhy did it have to be me?\tPourquoi cela devait-il être moi ?\nWhy did it have to be us?\tPourquoi fallait-il que ce soit nous ?\nWhy did you buy a flower?\tPourquoi as-tu acheté une fleur ?\nWhy did you buy a flower?\tPourquoi avez-vous acheté une fleur ?\nWhy did you buy this car?\tPourquoi n'as-tu pas acheté ce véhicule ?\nWhy did you get so angry?\tPourquoi t'es-tu mis autant en colère ?\nWhy did you get so angry?\tPourquoi t'es-tu mise autant en colère ?\nWhy did you get so angry?\tPourquoi vous êtes-vous mis autant en colère ?\nWhy did you get so angry?\tPourquoi vous êtes-vous mise autant en colère ?\nWhy did you open the box?\tPourquoi as-tu ouvert la boîte ?\nWhy did you open the box?\tPourquoi avez-vous ouvert la boîte ?\nWhy do I have to do that?\tPourquoi est-ce que je dois faire cela ?\nWhy do you feel that way?\tPourquoi te sens-tu ainsi ?\nWhy do you feel that way?\tPourquoi vous sentez-vous ainsi ?\nWhy do you have to do it?\tPourquoi dois-tu le faire ?\nWhy do you have to do it?\tPourquoi devez-vous le faire ?\nWhy do you need a doctor?\tPourquoi as-tu besoin d'un docteur ?\nWhy do you need a doctor?\tPourquoi avez-vous besoin d'un docteur ?\nWhy do you need a doctor?\tPourquoi as-tu besoin d'un médecin ?\nWhy do you need a doctor?\tPourquoi avez-vous besoin d'un médecin ?\nWhy do you use this font?\tPourquoi employez-vous cette police de caractères ?\nWhy does my dog hate Tom?\tPourquoi mon chien déteste Tom ?\nWhy does she look so sad?\tPourquoi a-t-elle l'air si triste ?\nWhy doesn't Tom help you?\tPourquoi Tom ne vous aide-t-il pas ?\nWhy doesn't Tom help you?\tPourquoi Tom ne t'aide-t-il pas ?\nWhy doesn't he tell them?\tPourquoi ne leur dit-il pas ?\nWhy don't we go swimming?\tPourquoi n'allons-nous pas nager ?\nWhy don't we go together?\tPourquoi n'y allons-nous pas ensemble ?\nWhy don't we go together?\tPourquoi ne nous y rendons-nous pas ensemble ?\nWhy don't we order pizza?\tPourquoi ne pas commander des pizzas ?\nWhy don't we take a taxi?\tPourquoi ne prenons-nous pas un taxi ?\nWhy don't you believe me?\tPourquoi ne me croyez-vous pas ?\nWhy don't you believe me?\tPourquoi ne me crois-tu pas ?\nWhy don't you stay there?\tPourquoi ne restez-vous pas là ?\nWhy don't you stay there?\tPourquoi ne restes-tu pas là ?\nWhy don't you understand?\tPourquoi ne comprends-tu pas ?\nWhy don't you understand?\tPourquoi ne comprenez-vous pas ?\nWhy is life so difficult?\tPourquoi la vie est-elle si difficile ?\nWhy is love so difficult?\tPourquoi l'amour est-il si difficile ?\nWhy is my sister so mean?\tPourquoi ma sœur est-elle si méchante ?\nWhy is she looking at me?\tPourquoi me regarde-t-elle ?\nWhy is she looking at me?\tPourquoi est-elle en train de me regarder ?\nWhy is this so expensive?\tPourquoi est-ce si cher ?\nWhy not go to the movies?\tPourquoi ne pas aller au cinéma ?\nWhy won't you look at me?\tQue ne me regardes-tu ?\nWhy won't you look at me?\tQue ne me regardez-vous ?\nWhy's everybody so quiet?\tPourquoi tout le monde est-il si calme ?\nWhy's everybody so quiet?\tPourquoi tout le monde est-il si tranquille ?\nWill it be fine tomorrow?\tCela conviendra-t-il demain ?\nWill it be fine tomorrow?\tLe temps sera-t-il beau demain ?\nWill you ever forgive me?\tMe pardonnerez-vous jamais ?\nWill you ever forgive me?\tMe pardonneras-tu jamais ?\nWill you go out tomorrow?\tEst-ce que tu sortiras demain ?\nWill you please go there?\tVoudriez-vous allez là, je vous prie ?\nWill you please go there?\tVeux-tu aller là, je te prie ?\nWill you send it by mail?\tL'enverras-tu par la poste ?\nWill you take on the job?\tVas-tu prendre le poste ?\nWine is made from grapes.\tLe vin est fait à partir du raisin.\nWithout air we would die.\tSans air, nous mourrions.\nWithout you, I'm nothing.\tSans vous je ne suis rien.\nWon't you have some cake?\tNe veux-tu pas prendre de gâteau ?\nWon't you have some cake?\tNe voulez-vous pas prendre de gâteau ?\nWords cannot describe it.\tLes mots ne peuvent le décrire.\nWork is everything to me.\tLe travail est tout pour moi.\nWould you like it washed?\tVoudriez-vous qu'on vous le lave ?\nWould you like it washed?\tVoudriez-vous qu'il soit lavé ?\nWould you like it washed?\tVoudrais-tu qu'il soit lavé ?\nWould you like some help?\tVoudriez-vous de l'aide ?\nWould you like some help?\tVoudrais-tu de l'aide ?\nWould you like to see it?\tAimeriez-vous le voir ?\nWould you say that again?\tPourrais-tu répéter cela ?\nWould you say that again?\tPourriez-vous répéter cela ?\nWould you say they match?\tDiriez-vous qu'ils vont ensemble ?\nWould you say they match?\tDirais-tu qu'ils vont ensemble ?\nWould you say they match?\tDiriez-vous qu'ils se correspondent ?\nWould you say they match?\tDiriez-vous qu'elles se correspondent ?\nWould you say they match?\tDirais-tu qu'ils se correspondent ?\nWould you say they match?\tDirais-tu qu'elles se correspondent ?\nWrite at least 250 words.\tÉcris au moins 250 mots.\nWrite at least 250 words.\tÉcrivez au moins 250 mots.\nYeah, you could be right.\tOuais, tu pourrais avoir raison.\nYeah, you could be right.\tOui, vous pourriez avoir raison.\nYeast makes beer ferment.\tLa levure constitue le ferment de la bière.\nYesterday was a good day.\tHier était une bonne journée.\nYou always have a choice.\tTu as toujours le choix.\nYou and I made a bargain.\tToi et moi avons fait une affaire.\nYou are absolutely right.\tTu as parfaitement raison.\nYou are absolutely right.\tVous avez parfaitement raison.\nYou are completely wrong.\tTu as complètement tort.\nYou are entirely correct.\tVous avez entièrement raison.\nYou are everything to me.\tTu es tout pour moi.\nYou are imagining things.\tCe sont des idées que tu te fais.\nYou are incredibly naive.\tTu es incroyablement naïf.\nYou are my pride and joy.\tTu es ma fierté et ma joie.\nYou are not at all wrong.\tTu n'as pas tort du tout.\nYou are not at all wrong.\tVous n'avez pas tort du tout.\nYou are really very good.\tVous êtes vraiment très bons.\nYou are very insensitive.\tVous êtes très indélicats.\nYou are very insensitive.\tVous êtes très indélicates.\nYou are very insensitive.\tVous êtes très indélicat.\nYou are very insensitive.\tVous êtes très indélicate.\nYou are very insensitive.\tTu es très indélicat.\nYou are very insensitive.\tTu es très indélicate.\nYou can ask Tom for help.\tVous pouvez demander de l'aide à Tom.\nYou can come at any time.\tTu peux venir à tout moment.\nYou can dance, can't you?\tTu sais danser, n'est-ce pas ?\nYou can do it if you try.\tTu peux le faire si tu essayes.\nYou can eat all you want.\tVous pouvez manger tout ce que vous voulez.\nYou can eat all you want.\tTu peux manger tout ce que tu veux.\nYou can only use it once.\tOn ne peut l'utiliser qu'une fois.\nYou can only use it once.\tVous ne pouvez l'utiliser qu'une fois.\nYou can only use it once.\tTu ne peux l'utiliser qu'une fois.\nYou can stay at my place.\tTu peux rester à ma place.\nYou can stay at my place.\tVous pouvez rester à ma place.\nYou can stay if you like.\tVous pouvez rester, si vous voulez.\nYou can stay if you like.\tTu peux rester, si tu veux.\nYou can take either book.\tTu peux prendre l'un ou l'autre livre.\nYou can tell me anything.\tTu peux tout me dire.\nYou can tell me anything.\tVous pouvez tout me dire.\nYou can wait for me here.\tTu peux m'attendre ici.\nYou can wait for me here.\tVous pouvez m'attendre ici.\nYou can watch television.\tVous pouvez regarder la télévision.\nYou can't be too careful.\tOn ne saurait être trop prudent.\nYou can't be too careful.\tOn ne saurait être trop prudente.\nYou can't blame yourself.\tTu ne peux pas te faire de reproches.\nYou can't blame yourself.\tVous ne pouvez pas vous faire de reproches.\nYou can't bury the truth.\tVous ne pouvez pas enterrer la vérité.\nYou can't bury the truth.\tTu ne peux pas enterrer la vérité.\nYou can't bury the truth.\tOn ne peut pas enterrer la vérité.\nYou can't buy it anymore.\tOn ne peut plus l'acheter.\nYou can't dance, can you?\tTu ne sais pas danser, si ?\nYou can't dance, can you?\tVous ne savez pas danser, si ?\nYou can't do it too soon.\tOn ne saurait le faire trop tôt.\nYou can't do it, can you?\tTu ne peux pas le faire, si ?\nYou can't do it, can you?\tVous ne pouvez pas le faire, si ?\nYou can't erase the past.\tOn ne peut effacer le passé.\nYou can't erase the past.\tTu ne peux pas effacer le passé.\nYou can't erase the past.\tVous ne pouvez pas gommer le passé.\nYou can't give me orders.\tVous ne pouvez pas me donner d'ordres.\nYou can't live like this.\tVous ne pouvez pas vivre comme ceci.\nYou can't live like this.\tTu ne peux pas vivre ainsi.\nYou can't see everything.\tVous ne pouvez pas tout voir.\nYou can't win every time.\tOn ne peut pas gagner à chaque fois.\nYou can't win every time.\tTu ne peux pas gagner à chaque fois.\nYou can't win every time.\tVous ne pouvez pas gagner à chaque fois.\nYou cannot buy happiness.\tOn ne peut pas acheter le bonheur.\nYou control your destiny.\tVous contrôlez votre destin.\nYou control your destiny.\tTu contrôles ta destinée.\nYou could be one of them.\tTu pourrais être l'un d'eux.\nYou did an excellent job.\tVous avez fait un excellent travail.\nYou didn't have to leave.\tIl n'était pas nécessaire que tu partes.\nYou didn't have to leave.\tIl n'était pas nécessaire que vous partiez.\nYou didn't let me answer.\tTu ne m'as pas laissé répondre.\nYou didn't let me answer.\tVous ne m'avez pas laissé répondre.\nYou didn't let me finish.\tTu ne m'as pas laissé terminer.\nYou didn't let me finish.\tVous ne m'avez pas laissé terminer.\nYou didn't let me finish.\tVous ne m'avez pas laissée terminer.\nYou didn't let me finish.\tTu ne m'as pas laissée terminer.\nYou didn't make it clear.\tDans ta bouche, ça n'était pas clair.\nYou didn't make it clear.\tDans votre bouche, ça n'était pas clair.\nYou didn't need to hurry.\tTu n'avais pas besoin de te presser.\nYou don't get it, do you?\tTu ne comprends pas, si ?\nYou don't get it, do you?\tVous ne comprenez pas, si ?\nYou don't have any proof.\tTu n'as aucune preuve.\nYou don't have any proof.\tVous n'avez aucune preuve.\nYou don't have the nerve.\tVous n'avez pas le cran.\nYou don't have the nerve.\tTu n'as pas le cran.\nYou don't have the nerve.\tVous n'en avez pas le cran.\nYou don't have the nerve.\tTu n'en as pas le cran.\nYou don't have the right.\tVous n'avez pas le droit.\nYou don't have the right.\tTu n'as pas le droit.\nYou don't have the right.\tVous n'en avez pas le droit.\nYou don't have the right.\tTu n'en as pas le droit.\nYou don't have to answer.\tVous n'avez pas à répondre.\nYou don't have to answer.\tTu n'es pas obligé de répondre.\nYou don't have to answer.\tTu n'es pas obligée de répondre.\nYou don't have to answer.\tVous n'êtes pas obligé de répondre.\nYou don't have to answer.\tVous n'êtes pas obligés de répondre.\nYou don't have to answer.\tVous n'êtes pas obligée de répondre.\nYou don't have to answer.\tVous n'êtes pas obligées de répondre.\nYou don't have to answer.\tTu n'es pas forcé de répondre.\nYou don't have to answer.\tTu n'es pas forcée de répondre.\nYou don't have to answer.\tVous n'êtes pas forcé de répondre.\nYou don't have to answer.\tVous n'êtes pas forcée de répondre.\nYou don't have to answer.\tVous n'êtes pas forcés de répondre.\nYou don't have to answer.\tVous n'êtes pas forcées de répondre.\nYou don't have to eat it.\tTu n'es pas obligé de la manger.\nYou don't have to eat it.\tTu n'es pas obligé de le manger.\nYou don't have to eat it.\tTu n'es pas obligée de la manger.\nYou don't know the truth.\tTu ne connais pas la vérité.\nYou don't know the truth.\tVous ne connaissez pas la vérité.\nYou don't look that good.\tVous n'avez pas l'air aussi bon que ça.\nYou don't look that good.\tVous n'avez pas l'air aussi bons que ça.\nYou don't look that good.\tVous n'avez pas l'air aussi bonne que ça.\nYou don't look that good.\tVous n'avez pas l'air aussi bonnes que ça.\nYou don't look that good.\tTu n'as pas l'air aussi bon que ça.\nYou don't look that good.\tTu n'as pas l'air aussi bonne que ça.\nYou don't look that good.\tVous n'avez pas l'air aussi bien que ça.\nYou don't look that good.\tTu n'as pas l'air aussi bien que ça.\nYou don't look very good.\tTu n'as pas l'air très bon.\nYou don't look very good.\tTu n'as pas l'air très bonne.\nYou don't look very good.\tVous n'avez pas l'air très bon.\nYou don't look very good.\tVous n'avez pas l'air très bonne.\nYou don't look very good.\tVous n'avez pas l'air très bons.\nYou don't look very good.\tVous n'avez pas l'air très bonnes.\nYou don't seem convinced.\tVous n'avez pas l'air convaincu.\nYou don't seem convinced.\tVous n'avez pas l'air convaincus.\nYou don't seem convinced.\tVous n'avez pas l'air convaincue.\nYou don't seem convinced.\tVous n'avez pas l'air convaincues.\nYou don't seem convinced.\tTu n'as pas l'air convaincu.\nYou don't seem convinced.\tTu n'as pas l'air convaincue.\nYou don't seem very sure.\tVous ne semblez pas très sûr.\nYou don't seem very sure.\tVous ne semblez pas très sûre.\nYou don't seem very sure.\tVous ne semblez pas très sûrs.\nYou don't seem very sure.\tVous ne semblez pas très sûres.\nYou don't seem very sure.\tTu ne sembles pas très sûr.\nYou don't seem very sure.\tTu ne sembles pas très sûre.\nYou don't sound too sure.\tÀ vous entendre, vous n'êtes pas très sûr.\nYou don't sound too sure.\tÀ vous entendre, vous n'êtes pas très sûre.\nYou don't sound too sure.\tÀ vous entendre, vous n'êtes pas très sûrs.\nYou don't sound too sure.\tÀ vous entendre, vous n'êtes pas très sûres.\nYou don't sound too sure.\tÀ t'entendre, tu n'es pas très sûr.\nYou don't sound too sure.\tÀ t'entendre, tu n'es pas très sûre.\nYou don't stand a chance.\tTu n'as aucune chance.\nYou don't stand a chance.\tVous n'avez aucune chance.\nYou drive a hard bargain.\tT'es dur à cuire.\nYou drive a hard bargain.\tVous êtes dur à cuire.\nYou drive a hard bargain.\tVous êtes dur en affaires.\nYou drive a hard bargain.\tVous êtes durs en affaires.\nYou drive a hard bargain.\tVous êtes dure en affaires.\nYou drive a hard bargain.\tTu es dur en affaires.\nYou drive a hard bargain.\tTu es dure en affaires.\nYou get what you pay for.\tTu obtiens ce pour quoi tu paies.\nYou get what you pay for.\tTu n'obtiens que ce pour quoi tu paies.\nYou get what you pay for.\tOn obtient que ce pour quoi on paie.\nYou have a bright future.\tTu as un brillant avenir.\nYou have a gum infection.\tVos gencives sont infectées.\nYou have a regular pulse.\tVous avez un pouls régulier.\nYou have beautiful hands.\tTu as de belles mains.\nYou have my word on that.\tJe vous le promets.\nYou have nothing to fear.\tVous n'avez rien à craindre.\nYou have to come with me.\tVous devez venir avec moi.\nYou have to come with me.\tTu dois venir avec moi.\nYou have to wait in line.\tIl faut que vous fassiez la queue.\nYou know where I'm going.\tTu sais où je vais.\nYou know where I'm going.\tVous savez où je vais.\nYou like cats, don't you?\tTu aimes les chats, non ?\nYou like rain, don't you?\tTu aimes la pluie, n'est-ce pas ?\nYou like rain, don't you?\tVous aimez la pluie, pas vrai ?\nYou look a little shaken.\tTu as l'air un peu remué.\nYou look a little shaken.\tTu as l'air un peu remuée.\nYou look a little shaken.\tVous avez l'air un peu remué.\nYou look a little shaken.\tVous avez l'air un peu remuée.\nYou look a little shaken.\tVous avez l'air un peu remués.\nYou look a little shaken.\tVous avez l'air un peu remuées.\nYou made a good decision.\tVous avez pris une bonne décision.\nYou made me lose my mind.\tTu m'as fait perdre la tête.\nYou may change your mind.\tTu changeras peut-être d'avis.\nYou may change your mind.\tVous changerez peut-être d'avis.\nYou may come if you like.\tTu peux venir, si tu veux.\nYou may disagree with me.\tIl se peut que tu ne sois pas d'accord avec moi.\nYou may disagree with me.\tIl se peut que vous ne soyez pas d'accord avec moi.\nYou may go if you choose.\tTu peux y aller si c'est ce que tu souhaites.\nYou may still be in luck.\tPeut-être es-tu encore en veine.\nYou may still be in luck.\tPeut-être êtes-vous encore en veine.\nYou must be the Jacksons.\tVous devez être les Jackson.\nYou must be very special.\tTu dois être vraiment spécial.\nYou must be very special.\tTu dois être vraiment spéciale.\nYou must be very special.\tVous devez être vraiment spécial.\nYou must be very special.\tVous devez être vraiment spéciale.\nYou must be very special.\tVous devez être vraiment spéciales.\nYou must not stay in bed.\tTu ne dois pas rester au lit.\nYou must not stay in bed.\tVous ne devez pas rester au lit.\nYou need a change of air.\tTu as besoin d'un changement d'air.\nYou need a reality check.\tTu as besoin d'un examen de lucidité.\nYou need to go on a diet.\tVous devez vous mettre au régime.\nYou need to take a break.\tTu as besoin de faire une pause.\nYou need to take a break.\tVous avez besoin de faire une pause.\nYou never arrive on time.\tVous n'arrivez jamais à l'heure.\nYou never arrive on time.\tTu n'arrives jamais à temps.\nYou never have any money.\tTu ne disposes jamais d'aucun argent.\nYou ought not to miss it.\tTu ne dois pas le manquer.\nYou ought not to miss it.\tTu ne dois pas la manquer.\nYou ought not to miss it.\tTu ne dois pas manquer ça.\nYou ought not to miss it.\tVous ne devez pas le manquer.\nYou ought not to miss it.\tVous ne devez pas la manquer.\nYou ought not to miss it.\tVous ne devez pas manquer ça.\nYou really are something.\tVous êtes vraiment quelque chose.\nYou really are something.\tTu es vraiment quelque chose.\nYou said you didn't care.\tVous avez dit que vous ne vous en souciiez pas.\nYou said you didn't care.\tTu as dit que tu ne t'en souciais pas.\nYou said you didn't care.\tTu dis que tu ne t'en souciais pas.\nYou said you didn't care.\tVous dîtes que vous ne vous en souciiez pas.\nYou said you didn't care.\tVous avez dit que vous vous en fichiez.\nYou said you didn't care.\tVous dîtes que vous vous en fichiez.\nYou said you didn't care.\tTu dis que tu t'en fichais.\nYou said you didn't care.\tTu as dit que tu t'en fichais.\nYou should exercise more.\tTu devrais t'exercer davantage.\nYou should exercise more.\tTu devrais t'entraîner plus.\nYou should get some rest.\tTu devrais prendre un peu de repos.\nYou should get some rest.\tVous devriez prendre un peu de repos.\nYou should go home early.\tTu devrais rentrer tôt chez toi.\nYou should go home early.\tTu devrais rentrer tôt à la maison.\nYou should go home early.\tVous devriez rentrer tôt chez vous.\nYou should go home early.\tVous devriez rentrer tôt à la maison.\nYou should have seen him.\tTu aurais dû le voir !\nYou should have seen him.\tT'aurais dû le voir !\nYou should have seen him.\tVous auriez dû le voir !\nYou should have told him.\tVous auriez dû lui dire.\nYou should have told him.\tTu aurais dû lui dire.\nYou should have told him.\tVous auriez dû le lui dire.\nYou should have told him.\tTu aurais dû le lui dire.\nYou should know yourself.\tTu devrais te connaître.\nYou should stop drinking.\tVous devriez cesser de boire.\nYou should stop drinking.\tVous devriez arrêter de boire.\nYou should stop drinking.\tTu devrais cesser de boire.\nYou should try to see it.\tVous devriez essayer de le voir.\nYou should try to see it.\tTu devrais essayer de le voir.\nYou should use deodorant.\tVous devriez employer du déodorant.\nYou should use deodorant.\tTu devrais employer du déodorant.\nYou should write a novel.\tVous devriez écrire un roman.\nYou shouldn't be in here.\tTu ne devrais pas être là-dedans.\nYou shouldn't be in here.\tVous ne devriez pas être là-dedans.\nYou shouldn't be in here.\tTu ne devrais pas te trouver là-dedans.\nYou shouldn't be in here.\tVous ne devriez pas vous trouver là-dedans.\nYou speak fluent English.\tTu parles l'anglais couramment.\nYou swim well, don't you?\tTu nages bien, n'est-ce pas ?\nYou took advantage of me.\tTu as profité de moi.\nYou took advantage of me.\tVous avez profité de moi.\nYou were kind to help me.\tC'était gentil à vous de m'aider.\nYou were kind to help me.\tC'était gentil à toi de m'aider.\nYou were right after all.\tTu avais bon après tout.\nYou were right, you know.\tTu avais raison, tu sais.\nYou were right, you know.\tVous aviez raison, vous savez.\nYou will always be there.\tTu seras toujours là.\nYou will always be there.\tVous serez toujours là.\nYou will never defeat me!\tTu ne me battras jamais !\nYou will never defeat me!\tVous ne me vaincrez jamais !\nYou will never defeat me!\tVous ne me battrez jamais !\nYou won't bleed to death.\tVous ne saignerez pas à mort.\nYou won't bleed to death.\tTu ne saigneras pas à mort.\nYou won't bleed to death.\tVous ne saignerez pas jusqu'à ce que mort s'ensuive.\nYou won't bleed to death.\tTu ne saigneras pas jusqu'à ce que mort s'ensuive.\nYou won't catch anything.\tTu n'attraperas rien.\nYou won't catch anything.\tVous n'attraperez rien.\nYou won't stand a chance.\tTu n'auras pas une seule chance.\nYou won't stand a chance.\tVous n'aurez pas une seule chance.\nYou won't stay, will you?\tTu ne resteras pas, si ?\nYou won't stay, will you?\tVous ne resterez pas, si ?\nYou work here, don't you?\tVous travaillez ici, n'est-ce pas ?\nYou work here, don't you?\tTu travailles ici, n'est-ce pas ?\nYou'd be the one to know.\tTu serais celui qui est au courant.\nYou'd be the one to know.\tTu serais celui qui le saurait.\nYou'd be the one to know.\tVous seriez celui qui le saurait.\nYou'd be the one to know.\tVous seriez celle qui le saurait.\nYou'd be the one to know.\tVous seriez celui qui serait au courant.\nYou'd be the one to know.\tTu serais celle qui le saurait.\nYou'd be the one to know.\tTu serais celle qui est au courant.\nYou'd do the same for me.\tTu ferais la même chose pour moi.\nYou'd do the same for me.\tVous feriez la même chose pour moi.\nYou'll have a rough time.\tVous allez avoir du mal.\nYou'll have a rough time.\tTu vas avoir du mal.\nYou'll have a rough time.\tTu vas passer un sale quart d'heure.\nYou'll have a rough time.\tVous allez passer un sale quart d'heure.\nYou're a good journalist.\tVous êtes un bon journaliste.\nYou're a good journalist.\tTu es un bon journaliste.\nYou're a grown woman now.\tTu es une adulte maintenant.\nYou're a terrible dancer.\tVous êtes un horrible danseur.\nYou're a terrible dancer.\tTu es un danseur horrible.\nYou're a terrible person.\tVous êtes un horrible individu.\nYou're a terrible person.\tTu es un horrible individu.\nYou're a terrible person.\tVous êtes une personne exécrable.\nYou're a terrible person.\tTu es une personne exécrable.\nYou're a wonderful woman.\tTu es une femme formidable !\nYou're a wonderful woman.\tVous êtes une femme formidable !\nYou're alone, aren't you?\tVous êtes seule, n'est-ce pas ?\nYou're alone, aren't you?\tVous êtes seul, n'est-ce pas ?\nYou're alone, aren't you?\tVous êtes seules, n'est-ce pas ?\nYou're alone, aren't you?\tVous êtes seuls, n'est-ce pas ?\nYou're alone, aren't you?\tTu es seule, n'est-ce pas ?\nYou're alone, aren't you?\tTu es seul, n'est-ce pas ?\nYou're always nagging me.\tVous êtes toujours en train de me tarabuster.\nYou're always nagging me.\tTu es toujours en train de me tarabuster.\nYou're blocking my light.\tTu me fais de l'ombre.\nYou're blocking my light.\tVous me faites de l'ombre.\nYou're disobeying orders.\tTu désobéis aux ordres.\nYou're disobeying orders.\tVous désobéissez aux ordres.\nYou're doing all you can.\tVous faites tout ce que vous pouvez.\nYou're doing all you can.\tTu fais tout ce que tu peux.\nYou're free to leave now.\tTu est libre de partir maintenant.\nYou're full of surprises.\tVous êtes plein de surprises.\nYou're full of surprises.\tVous êtes pleine de surprises.\nYou're in over your head.\tTu es dedans jusqu'au cou.\nYou're in serious danger.\tTu es en grave danger.\nYou're in serious danger.\tVous êtes en grave danger.\nYou're joking, of course.\tVous plaisantez, bien sûr.\nYou're joking, of course.\tTu plaisantes, bien sûr.\nYou're looking very well.\tTu as l'air très bien.\nYou're looking very well.\tVous avez l'air très bien.\nYou're lying, aren't you?\tVous mentez, n'est-ce pas ?\nYou're lying, aren't you?\tTu mens, n'est-ce pas ?\nYou're missing the point.\tTu passes à côté.\nYou're missing the point.\tVous passez à côté.\nYou're missing the point.\tTu ne saisis pas.\nYou're missing the point.\tVous ne saisissez pas.\nYou're no friend of mine.\tVous n'êtes pas de mes amis.\nYou're no friend of mine.\tTu n'es pas de mes amis.\nYou're not a millionaire.\tTu n'es pas millionnaire.\nYou're not a millionaire.\tVous n'êtes pas millionnaire.\nYou're not alone anymore.\tTu n'es plus seul.\nYou're not alone anymore.\tTu n'es plus seule.\nYou're not alone anymore.\tVous n'êtes plus seules.\nYou're not alone anymore.\tVous n'êtes plus seuls.\nYou're not alone anymore.\tVous n'êtes plus seul.\nYou're not alone anymore.\tVous n'êtes plus seule.\nYou're not impressing me.\tTu ne m’impressionne pas.\nYou're not my girlfriend.\tTu n'es pas ma copine.\nYou're not that old, Tom.\tTu n'es pas si vieux, Tom.\nYou're not that old, Tom.\tVous n'êtes pas si vieux, Tom.\nYou're not young anymore.\tVous n'êtes plus jeunes.\nYou're on the wrong ship.\tTu es sur le mauvais bateau.\nYou're on the wrong ship.\tVous êtes sur le mauvais bateau.\nYou're picky, aren't you?\tVous êtes difficile, n'est-ce pas ?\nYou're picky, aren't you?\tTu es difficile, pas vrai ?\nYou're really incredible.\tTu es vraiment incroyable.\nYou're really incredible.\tVous êtes vraiment incroyables.\nYou're spoiling the mood.\tTu fous en l'air l'atmosphère.\nYou're spoiling the mood.\tVous gâchez l'atmosphère.\nYou're spoiling the mood.\tTu gâches l'atmosphère.\nYou're such a tattletale.\tQuelle commère tu fais.\nYou're such a tattletale.\tQuelle commère vous faites.\nYou're the best dad ever.\tTu es le meilleur papa de tous les temps.\nYou're the reason I came.\tC’est pour toi que je suis venu.\nYou're the reason I came.\tC’est pour vous que je suis venu.\nYou're the reason I came.\tC’est pour toi que je suis venue.\nYou're the reason I came.\tC’est pour vous que je suis venue.\nYou're twisting my words.\tTu déformes mes paroles.\nYou're twisting my words.\tVous déformez mes paroles.\nYou're wasting your time.\tTu perds ton temps.\nYou've already forgotten.\tTu as déjà oublié.\nYou've already forgotten.\tVous avez déjà oublié.\nYou've arrived too early.\tTu es arrivé trop tôt.\nYou've been a great help.\tTu as été d'une grande aide.\nYou've been very helpful.\tTu as été très utile.\nYou've done a superb job.\tTu as fait un excellent travail.\nYou've got a cute friend.\tT'as une amie canon.\nYou've got a cute friend.\tVous avez une amie canon.\nYou've got a lot of guts.\tToi, tu as vraiment des tripes.\nYou've got the wrong guy.\tLe type que vous tenez n'est pas le bon.\nYou've got to be kidding!\tTu dois plaisanter !\nYou've got to be kidding!\tVous devez plaisanter !\nYou've lost your marbles.\tTu es dérangé.\nYou've set a bad example.\tTu as montré un mauvais exemple.\nYou've set a bad example.\tVous avez montré le mauvais exemple.\nYour French is improving.\tTon français s'améliore.\nYour French is improving.\tVotre français s'améliore.\nYour book is on the desk.\tVotre livre se trouve sur le bureau.\nYour book is on the desk.\tTon livre est sur le bureau.\nYour criticism is unfair.\tVotre critique est injuste.\nYour criticism is unfair.\tTa critique est injuste.\nYour daughter's on drugs.\tTa fille est droguée.\nYour daughter's on drugs.\tVotre fille se drogue.\nYour daughter's on drugs.\tVotre fille consomme de la drogue.\nYour father won't buy it.\tVotre père ne l'achètera pas.\nYour hair will grow back.\tTes cheveux repousseront.\nYour hair will grow back.\tVos cheveux repousseront.\nYour shirt is inside out.\tTa chemise est à l'envers.\nYour shirt is inside out.\tVotre chemise est à l'envers.\nYour things are all here.\tVos affaires sont toutes ici.\nYour things are all here.\tTes affaires sont toutes ici.\nYours is not bad, either.\tLe tien n'est pas mal non plus.\nYours is not bad, either.\tLa tienne n'est pas mal non plus.\nYours is not bad, either.\tLe vôtre n'est pas mal non plus.\nYours is not bad, either.\tLa vôtre n'est pas mal non plus.\n1989 was a difficult year.\t1989 fut une année difficile.\nA burnt child dreads fire.\tUn enfant brûlé craint le feu.\nA button came off my coat.\tUn bouton s'est détaché de mon manteau.\nA cat can see in the dark.\tUn chat peut voir dans l'obscurité.\nA decision had to be made.\tIl fallait prendre une décision.\nA few days later, he came.\tIl vint quelques jours plus tard.\nA fork fell off the table.\tUne fourchette est tombée de la table.\nA girl appeared before me.\tUne fille apparut devant moi.\nA girl stood there crying.\tLà se tenait une fille en pleurs.\nA gun might come in handy.\tUn flingue serait bien utile.\nA horse can run very fast.\tUn cheval peut courir très vite.\nA is 5 times as long as B.\t\"A\" est cinq fois plus long que \"B\".\nA man began to follow Tom.\tUn homme commença à suivre Tom.\nA nail punctured the tire.\tUn clou a percé le pneu.\nA policeman came up to me.\tUn policier vint à moi.\nA policeman came up to me.\tUn policier est venu à moi.\nA rat ran across the road.\tUn rat traversa la route.\nA tear ran down her cheek.\tUne larme coula le long de sa joue.\nA watched pot never boils.\tTout vient à point à qui sait attendre.\nAdd 5 to 3 and you have 8.\tCinq plus trois égalent huit.\nAfter a while, he came to.\tAprès un moment, il revint à lui.\nAir is a mixture of gases.\tL'air est un mélange de gaz.\nAir is lighter than water.\tL'air est plus léger que l'eau.\nAll at once, he spoke out.\tIl prit tout à coup la parole.\nAll graduates are invited.\tTous les lauréats sont invités.\nAll graduates are invited.\tToues les lauréates sont invitées.\nAll knowledge is not good.\tToute connaissance n'est pas bonne.\nAll men are created equal.\tTous les hommes naissent égaux.\nAll men have equal rights.\tTous les hommes ont des droits égaux.\nAll of my things are gone.\tToutes mes affaires ont disparu.\nAll of them are connected.\tIls sont tous connectés.\nAll of them are connected.\tElles sont toutes connectées.\nAll the prisoners escaped.\tTous les prisonniers se sont échappés.\nAll the prisoners escaped.\tToutes les prisonnières se sont échappées.\nAll the stores are closed.\tTous les magasins sont fermés.\nAll the stores are closed.\tToutes les boutiques sont fermées.\nAll's well that ends well.\tTout est bien qui finit bien.\nAm I disturbing something?\tEst-ce que je trouble quelque chose ?\nAm I speaking too quickly?\tEst-ce que je parle trop vite ?\nAm I still your boyfriend?\tSuis-je encore ton petit ami ?\nAm I under suspicion here?\tSuis-je soupçonné, là ?\nAm I under suspicion here?\tSuis-je soupçonnée, là ?\nAnd then what will happen?\tEt ensuite, qu'est-ce qui va se passer ?\nAnd then, what did you do?\tEt alors, qu'as-tu fait ?\nAnd then, what did you do?\tEt alors, qu'avez-vous fait ?\nAnts work hard all summer.\tLes fourmis travaillent dur tout l'été.\nAny child can answer that.\tN'importe quel enfant peut répondre à ça.\nAny one of us could do it.\tN'importe lequel d'entre-nous pouvais le faire.\nAny one of us could do it.\tN'importe lequel d'entre-nous pourrais le faire.\nAnybody can become famous.\tN'importe qui peut devenir célèbre.\nAnyone can ask a question.\tN'importe qui peut poser une question.\nAnyone can make a mistake.\tTout le monde peut commettre une erreur.\nAppearances are deceiving.\tLes apparences sont trompeuses.\nApples were on sale today.\tLes pommes étaient en promotion aujourd'hui.\nAre all these books yours?\tTous ces livres t'appartiennent-ils ?\nAre all these books yours?\tTous ces livres sont-ils à toi ?\nAre all these books yours?\tTous ces livres vous appartiennent-ils ?\nAre all these books yours?\tTous ces livres sont-ils à vous ?\nAre they actually friends?\tSont-ils réellement amis ?\nAre they actually friends?\tSont-elles réellement amies ?\nAre they friends of yours?\tSont-ce de vos amis ?\nAre they friends of yours?\tSont-ils de vos amis ?\nAre they friends of yours?\tSont-ils de tes amis ?\nAre we still on for later?\tOn se voit toujours plus tard ?\nAre you afraid of silence?\tAvez-vous peur du silence ?\nAre you afraid of silence?\tAs-tu peur du silence ?\nAre you all finished here?\tEn avez-vous tous fini, ici ?\nAre you all finished here?\tEn avez-vous tous terminé, ici ?\nAre you all finished here?\tEn avez-vous toutes fini, ici ?\nAre you all finished here?\tEn avez-vous toutes terminé, ici ?\nAre you deaf or something?\tT'es devenu complètement sourde ou quoi?\nAre you enjoying the play?\tAs-tu plaisir à regarder la pièce ?\nAre you enjoying the play?\tAvez-vous plaisir à regarder la pièce ?\nAre you enjoying yourself?\tVous amusez-vous ?\nAre you enjoying yourself?\tT'amuses-tu ?\nAre you expecting someone?\tAttendez-vous quelqu'un ?\nAre you expecting someone?\tAttends-tu quelqu'un ?\nAre you flirting with him?\tEs-tu en train de le draguer ?\nAre you flirting with him?\tÊtes-vous en train de le draguer ?\nAre you free after school?\tEs-tu libre après l'école ?\nAre you free this weekend?\tÊtes-vous libre ce week-end ?\nAre you free this weekend?\tEs-tu libre ce week-end ?\nAre you going home by bus?\tRentres-tu chez toi en bus ?\nAre you going home by bus?\tRentrez-vous chez vous en bus ?\nAre you going to eat that?\tVas-tu manger ça ?\nAre you going to eat that?\tAllez-vous manger ça ?\nAre you going to warn Tom?\tAllez-vous avertir Tom?\nAre you here to arrest me?\tÊtes-vous ici pour m'arrêter ?\nAre you here to arrest me?\tEs-tu ici pour m'arrêter ?\nAre you looking for a job?\tCherchez-vous du travail ?\nAre you looking for a job?\tCherches-tu du travail ?\nAre you no longer in pain?\tN'as-tu plus mal ?\nAre you no longer in pain?\tN'avez-vous plus mal ?\nAre you out of your minds?\tAs-tu perdu l'esprit ?\nAre you out of your minds?\tAvez-vous perdu l'esprit ?\nAre you proud of yourself?\tEs-tu fière de toi ?\nAre you proud of yourself?\tEs-tu fier de toi ?\nAre you proud of yourself?\tÊtes-vous fière de vous ?\nAre you proud of yourself?\tÊtes-vous fières de vous ?\nAre you proud of yourself?\tÊtes-vous fier de vous ?\nAre you proud of yourself?\tÊtes-vous fiers de vous ?\nAre you really a princess?\tÊtes-vous vraiment une princesse ?\nAre you really a princess?\tEs-tu vraiment une princesse ?\nAre you trying to kill me?\tEssayez-vous de me tuer ?\nAre you trying to kill me?\tEssaies-tu de me tuer ?\nAren't those your parents?\tCes personnes ne sont-elles pas tes parents ?\nAren't you a little young?\tN'es-tu pas un peu jeune ?\nAren't you a little young?\tN'êtes-vous pas un peu jeune ?\nAs for me, I am satisfied.\tEn ce qui me concerne, je suis satisfait.\nAt first, it is difficult.\tAu début c'est difficile.\nAt last, it began to rain.\tIl a enfin commencé à pleuvoir.\nAt what hour was she born?\tÀ quelle heure est-elle née ?\nAt what time did he leave?\tÀ quelle heure est-il parti ?\nAthletes are no different.\tLes athlètes ne sont pas différents.\nBathe the baby, won't you?\tBaigne le bébé, veux-tu ?\nBe kind to little animals.\tSoyez bon pour les petits animaux.\nBe kind to little animals.\tSois bon envers les petits animaux.\nBe polite to your parents.\tSois poli avec tes parents.\nBe polite to your parents.\tSois polie avec tes parents.\nBe polite to your parents.\tSoyez poli avec vos parents.\nBe polite to your parents.\tSoyez polie avec vos parents.\nBe polite to your parents.\tSoyez polis avec vos parents.\nBe polite to your parents.\tSoyez polies avec vos parents.\nBe prepared for the worst.\tTiens-toi prêt au pire !\nBe quiet and listen to me.\tSoyez calme et écoutez-moi.\nBe quiet and listen to me.\tSois calme et écoute-moi.\nBe sure to drop me a line.\tN'oublie pas de m'écrire un mot.\nBears are quite dangerous.\tLes ours sont très dangereux.\nBeggars can't be choosers.\tÀ cheval donné, on ne regarde pas la bride.\nBlue is my favorite color.\tLe bleu est ma couleur préférée.\nBooks are my best friends.\tLes livres sont mes meilleurs amis.\nBoth Tom and Mary blushed.\tTom et Mary ont tous les deux rougi.\nBoth Tom and Mary blushed.\tTom et Mary rougirent tous les deux.\nBoth of us are from Tampa.\tNous sommes tous les deux de Tampa.\nBourbon is made from corn.\tLe bourbon est fait à partir de maïs.\nBring me a glass of water.\tApportez-moi un verre d'eau.\nBring me a piece of chalk.\tApporte-moi une craie.\nBring me something to eat.\tApporte-moi quelque chose à manger.\nBring me the menu, please.\tApportez le menu, je vous prie !\nBring me the menu, please.\tApportez-moi le menu, s'il vous plaît !\nBring the water to a boil.\tAmenez l'eau à ébullition.\nBring the water to a boil.\tFais bouillir l'eau.\nBring your children along.\tAmène tes enfants.\nBulgarian is like Russian.\tLe bulgare est très similaire au russe.\nBulgarian is like Russian.\tLe bulgare est proche du russe.\nBusiness is very good now.\tLes affaires sont très bonnes maintenant.\nButter is made from cream.\tOn fait le beurre avec de la crème.\nCall a doctor immediately.\tAppelle un médecin immédiatement.\nCall if you need anything.\tAppelle, si tu as besoin de quoi que ce soit !\nCall if you need anything.\tAppelez, si vous avez besoin de quoi que ce soit !\nCamels have three eyelids.\tLes chameaux ont trois paupières.\nCan I buy only the lenses?\tPuis-je acheter uniquement les lentilles ?\nCan I buy only the lenses?\tPuis-je n'acheter que les lentilles ?\nCan I go swimming, Mother?\tPuis-je aller nager, mère ?\nCan I take a picture here?\tPuis-je prendre une photo, ici ?\nCan I take your order now?\tPuis-je prendre votre commande maintenant ?\nCan I use your dictionary?\tPuis-je utiliser ton dictionnaire ?\nCan I use your dictionary?\tPuis-je utiliser votre dictionnaire ?\nCan anything else be done?\tQuelque chose d'autre peut-il être fait ?\nCan it really be this bad?\tCela peut-il être aussi mauvais ?\nCan someone open a window?\tQuelqu'un peut-il ouvrir une fenêtre ?\nCan we get this gate open?\tPouvons-nous faire ouvrir ce portail ?\nCan we go over my options?\tPouvons-nous revoir mes options ?\nCan we stay ahead of them?\tPouvons-nous continuer à les devancer ?\nCan you carve the chicken?\tPouvez-vous découper le poulet ?\nCan you carve the chicken?\tPeux-tu découper le poulet ?\nCan you cash these for me?\tPeux-tu encaisser ceux-ci pour moi ?\nCan you cash these for me?\tPouvez-vous encaisser ceux-ci pour moi ?\nCan you catch the chicken?\tPeux-tu attraper la poule ?\nCan you catch the chicken?\tPouvez-vous attraper la poule ?\nCan you come to the party?\tPeux-tu venir à la fête ?\nCan you crank up the heat?\tPeux-tu pousser le chauffage ?\nCan you crank up the heat?\tPouvez-vous pousser le chauffage ?\nCan you get my bill ready?\tVous pouvez préparer ma facture?\nCan you guess what I have?\tPouvez-vous deviner ce que j'ai ?\nCan you guess what I have?\tPeux-tu deviner ce que j'ai ?\nCan you make the deadline?\tPeux-tu tenir le délai ?\nCan you make the deadline?\tPouvez-vous tenir le délai ?\nCan you pay me in advance?\tPouvez-vous me payer à l'avance ?\nCan you pay me in advance?\tPeux-tu me payer à l'avance ?\nCan you remember anything?\tPeux-tu te rappeler quoi que ce soit ?\nCan you remember anything?\tPouvez-vous vous rappeler quoi que ce soit ?\nCan you remember his name?\tPouvez-vous vous rappeler son nom ?\nCan you remember his name?\tPeux-tu te rappeler son nom ?\nCan you spare some change?\tAvez-vous un peu de monnaie ?\nCan you speak French well?\tSavez-vous bien parler français ?\nCan you unclog the toilet?\tPeux-tu déboucher les toilettes ?\nCan you unclog the toilet?\tPouvez-vous déboucher les toilettes ?\nCan you unjam the printer?\tPeux-tu débloquer l'imprimante ?\nCanada is a large country.\tLe Canada est un grand pays.\nCharge this to my account.\tPortez cela sur mon compte.\nChildren can't drink wine.\tLes enfants ne peuvent pas boire de vin.\nChildren like fairy tales.\tLes enfants aiment les contes de fées.\nChoose any dress you like.\tChoisis la robe que tu veux.\nChoose whichever you like.\tChoisis celui qui te plait.\nChoose whichever you like.\tChoisissez celui qui vous plait.\nChoose whichever you like.\tChoisis celui qui te chante.\nChoose whichever you want.\tChoisis celui que tu veux.\nClose the door behind you.\tFermez la porte derrière vous.\nClose the door behind you.\tFerme la porte derrière toi.\nCome and have tea with me.\tVenez prendre le thé avec moi.\nCome and see me right now.\tViens me voir tout de suite.\nCome at any time you like.\tVenez quand vous voulez.\nCome at ten o'clock sharp.\tViens à dix heures précises.\nCome at ten o'clock sharp.\tViens à vingt-deux heures précises.\nCome at ten o'clock sharp.\tVenez à vingt-deux heures précises.\nCome at ten o'clock sharp.\tVenez à dix heures précises.\nCome in. The door is open.\tEntre. La porte est ouverte.\nCome in. The door is open.\tEntrez. La porte est ouverte.\nCome on! Give me a chance.\tAllez ! Donne-moi une chance.\nCome on, drinks are on me.\tAllez, les verres sont pour moi.\nCome whenever you want to.\tViens quand tu veux.\nCome whenever you want to.\tVenez quand vous voulez.\nCome whenever you want to.\tPasse quand tu veux.\nComing here was a mistake.\tVenir ici était une erreur.\nComing here was a mistake.\tVenir ici fut une erreur.\nCould you give an example?\tPourriez-vous donner un exemple ?\nCould you give an example?\tPourrais-tu donner un exemple ?\nCould you go to the store?\tPourriez-vous aller au magasin ?\nCould you please be quiet?\tPourriez-vous être silencieux ?\nCould you please be quiet?\tPourrais-tu être silencieux ?\nCould you please fix this?\tPourrais-tu réparer ça, s'il te plaît ?\nCould you please fix this?\tPourriez-vous réparer ceci, s'il vous plaît ?\nCould you turn off the TV?\tPourriez-vous éteindre le téléviseur ?\nCould you turn off the TV?\tPourrais-tu éteindre le téléviseur ?\nCows provide us with milk.\tLes vaches nous fournissent du lait.\nCut the cake with a knife.\tCoupe le gâteau avec un couteau.\nDad knows what he's doing.\tPapa sait ce qu'il fait.\nDarwin changed everything.\tDarwin a tout changé.\nDeath is similar to sleep.\tLa mort ressemble au sommeil.\nDid I do something stupid?\tAi-je fait quelque chose de stupide ?\nDid I interrupt something?\tAi-je interrompu quelque chose ?\nDid I mention that before?\tAi-je mentionné cela auparavant ?\nDid I not anticipate this?\tNe l'avais-je pas prévu ?\nDid I say something funny?\tAi-je dit quelque chose de drôle ?\nDid I say something wrong?\tAi-je dit quelque chose d'incorrect ?\nDid I say something wrong?\tAi-je dit quelque chose qu'il ne fallait pas ?\nDid I say your name right?\tAi-je bien prononcé votre nom ?\nDid anyone else feel that?\tQuelqu'un d'autre l'a-t-il ressenti ?\nDid he look like a doctor?\tEst-ce qu'il ressemblait à un docteur ?\nDid the police arrest Tom?\tEst-ce que la police a arrêté Tom?\nDid the police arrest Tom?\tLa police a-t-elle arrêté Tom?\nDid you complete the work?\tAvez-vous terminé le travail ?\nDid you find that helpful?\tAs-tu trouvé ça utile ?\nDid you find that helpful?\tAvez-vous trouvé ça utile ?\nDid you finish your paper?\tAvez-vous fini votre papier ?\nDid you finish your paper?\tAs-tu fini ton papier ?\nDid you go out last night?\tEs-tu sorti la nuit dernière ?\nDid you go out last night?\tÊtes-vous sorti la nuit dernière ?\nDid you go out last night?\tÊtes-vous sortis la nuit dernière ?\nDid you grow up in Boston?\tAvez-vous grandi à Boston ?\nDid you have a good sleep?\tAs-tu bien dormi ?\nDid you have a good sleep?\tAvez-vous bien dormi ?\nDid you just realize that?\tTu viens de t'en rendre compte ?\nDid you just realize that?\tVous venez de vous en rendre compte ?\nDid you make up your mind?\tVous êtes-vous décidé ?\nDid you meet someone else?\tAs-tu rencontré quelqu'un d'autre ?\nDid you meet someone else?\tAvez-vous rencontré quelqu'un d'autre ?\nDid you read what I wrote?\tAs-tu lu ce que j'ai écrit ?\nDid you read what I wrote?\tAvez-vous lu ce que j'ai écrit ?\nDid you rent an apartment?\tAvez-vous loué un appartement ?\nDid you see anybody there?\tAvez-vous vu quelqu'un par ici ?\nDid you sign the contract?\tAvez-vous signé le contrat ?\nDid you solve the problem?\tAvez-vous résolu le problème ?\nDid you solve the problem?\tAs-tu résolu le problème ?\nDid you study by yourself?\tAs-tu étudié par toi-même ?\nDid you talk to your wife?\tAs-tu parlé avec ta femme ?\nDid you talk to your wife?\tAvez-vous parlé avec votre femme ?\nDid you tape that concert?\tAvez-vous enregistré ce concert ?\nDidn't you get my message?\tTu n'as pas saisi mon message?\nDinner will be ready soon.\tLe dîner sera bientôt prêt.\nDo I have to go right now?\tDois-je maintenant aller à droite ?\nDo I need to go right now?\tDois-je partir à l'instant ?\nDo I need to go right now?\tDois-je y aller à l'instant ?\nDo Martians speak English?\tLes Martiens parlent-ils anglais ?\nDo a better job next time.\tFais mieux la prochaine fois.\nDo not read while walking.\tNe lis pas en marchant.\nDo not tell me what to do.\tNe me dis pas ce que je dois faire.\nDo not touch the exhibits.\tNe touchez pas les objets en vitrine.\nDo they know that we know?\tSavent-elles que nous savons ?\nDo they know that we know?\tSavent-ils que nous savons ?\nDo you actually like this?\tAimez-vous réellement ça ?\nDo you actually like this?\tAimes-tu réellement ça ?\nDo you actually live here?\tVivez-vous réellement ici ?\nDo you actually live here?\tVis-tu réellement ici ?\nDo you believe in fairies?\tCroyez-vous aux fées ?\nDo you deliver on Sundays?\tFaites-vous la livraison le dimanche ?\nDo you deliver on Sundays?\tLivrez-vous le dimanche ?\nDo you eat rice every day?\tMangez-vous du riz tous les jours ?\nDo you eat rice every day?\tManges-tu du riz tous les jours ?\nDo you have Time magazine?\tAvez-vous le « Time magazine » ?\nDo you have a better idea?\tAs-tu une meilleure idée ?\nDo you have a better idea?\tAvez-vous une meilleure idée ?\nDo you have a better idea?\tAs-tu une meilleure idée ?\nDo you have a credit card?\tAvez-vous une carte de crédit ?\nDo you have a credit card?\tDisposes-tu d'une carte de crédit ?\nDo you have a credit card?\tDisposez-vous d'une carte de crédit ?\nDo you have a few minutes?\tAvez-vous quelques minutes ?\nDo you have a larger size?\tAvez-vous une taille plus grande ?\nDo you have a lot of time?\tAs-tu beaucoup de temps ?\nDo you have a points card?\tAvez-vous une carte de fidélité ?\nDo you have a reservation?\tAvez-vous réservé ?\nDo you have a temperature?\tAs-tu de la température ?\nDo you have a temperature?\tAvez-vous de la température ?\nDo you have a twin sister?\tAs-tu une sœur jumelle ?\nDo you have a twin sister?\tAvez-vous une sœur jumelle ?\nDo you have any allergies?\tAvez-vous de quelconques allergies ?\nDo you have any allergies?\tAs-tu la moindre allergie ?\nDo you have any questions?\tAvez-vous des questions ?\nDo you have any questions?\tAs-tu des questions ?\nDo you have any questions?\tTu as des questions ?\nDo you have any vacancies?\tAvez-vous une quelconque chambre de libre ?\nDo you have enough energy?\tAs-tu assez d'énergie ?\nDo you have enough energy?\tAvez-vous assez d'énergie ?\nDo you have plans tonight?\tAs-tu des plans pour ce soir ?\nDo you have to work today?\tDois-tu travailler aujourd'hui ?\nDo you have to work today?\tDevez-vous travailler aujourd'hui ?\nDo you have two computers?\tAs-tu deux ordinateurs ?\nDo you have your passport?\tAvez-vous votre passeport ?\nDo you keep a dream diary?\tTenez-vous un journal de rêves ?\nDo you know how they knew?\tSais-tu comment ils ont su ?\nDo you know how they knew?\tSavez-vous comment elles ont su ?\nDo you know what happened?\tSais-tu ce qui est arrivé ?\nDo you know what she said?\tSais-tu ce qu'elle a dit ?\nDo you know what she said?\tSavez-vous ce qu'elle a dit ?\nDo you know where he went?\tSais-tu où il est allé ?\nDo you know where he went?\tSavez-vous où il est allé ?\nDo you know where we live?\tSavez-vous où nous vivons ?\nDo you know where we live?\tSais-tu où nous vivons ?\nDo you know who said that?\tSais-tu qui a dit ça ?\nDo you know who said that?\tSavez-vous qui a dit ça ?\nDo you like rock and roll?\tAimes-tu le rock and roll ?\nDo you like rock and roll?\tAimez-vous le rock and roll ?\nDo you like tea or coffee?\tPréfères-tu du thé ou du café ?\nDo you mind if I join you?\tVoyez-vous un inconvénient à ce que je me joigne à vous ?\nDo you mind if I join you?\tVois-tu un inconvénient à ce que je me joigne à toi ?\nDo you mind if we come in?\tVois-tu un inconvénient à ce que nous entrions ?\nDo you mind if we come in?\tVoyez-vous un inconvénient à ce que nous entrions ?\nDo you need a few minutes?\tAs-tu besoin de quelques minutes ?\nDo you need a few minutes?\tAvez-vous besoin de quelques minutes ?\nDo you need a few minutes?\tTe faut-il quelques minutes ?\nDo you need a few minutes?\tVous faut-il quelques minutes ?\nDo you need anything else?\tAs-tu besoin de quoi que ce soit d'autre ?\nDo you need anything else?\tAvez-vous besoin de quoi que ce soit d'autre ?\nDo you need to drink wine?\tAs-tu besoin de boire du vin ?\nDo you need to drink wine?\tAvez-vous besoin de boire du vin ?\nDo you need to drink wine?\tA-t-on besoin de boire du vin ?\nDo you really want to win?\tVeux-tu vraiment gagner ?\nDo you really want to win?\tVoulez-vous vraiment gagner ?\nDo you really want to win?\tVeux-tu vraiment l'emporter ?\nDo you really want to win?\tVoulez-vous vraiment l'emporter ?\nDo you recognize that man?\tReconnaissez-vous cet homme ?\nDo you recognize that man?\tReconnais-tu cet homme ?\nDo you speak Chinese well?\tParlez-vous bien chinois ?\nDo you still believe that?\tCrois-tu encore à cela ?\nDo you still believe that?\tCroyez-vous toujours cela ?\nDo you take me for a fool?\tTu me prends pour un imbécile ?\nDo you take me for a fool?\tMe prends-tu pour un idiot ?\nDo you take me for a fool?\tMe prends-tu pour un imbécile ?\nDo you take me for a fool?\tTu me prends pour un idiot ?\nDo you take me for a fool?\tVous me prenez pour un idiot ?\nDo you think I don't care?\tPensez-vous que je m'en fiche ?\nDo you think I don't care?\tPenses-tu que je m'en fiche ?\nDo you think I'm an idiot?\tVous me prenez pour un idiot ?\nDo you think I'm to blame?\tPenses-tu que je sois fautif ?\nDo you think I'm to blame?\tPensez-vous que je sois fautif ?\nDo you think I'm too tall?\tPenses-tu que je sois trop grand ?\nDo you think I'm too tall?\tPensez-vous que je sois trop grand ?\nDo you think Tom hates me?\tPenses-tu que Tom me déteste ?\nDo you think Tom hates me?\tPensez-vous que Tom me déteste ?\nDo you think she's pretty?\tPensez-vous qu'elle soit mignonne ?\nDo you think she's pretty?\tPenses-tu qu'elle soit mignonne ?\nDo you think this is real?\tPenses-tu que ce soit vrai ?\nDo you think this is real?\tPensez-vous que ce soit vrai ?\nDo you use all this stuff?\tUtilises-tu tous ces trucs ?\nDo you use all this stuff?\tUtilisez-vous tous ces trucs ?\nDo you want a little cake?\tVeux-tu un peu de gâteau ?\nDo you want a little cake?\tVeux-tu un petit gâteau?\nDo you want me to ask Tom?\tTu veux que je demande à Tom ?\nDo you want me to ask Tom?\tVous voulez que je demande à Tom ?\nDo you want me to ask Tom?\tVoulez-vous que je demande à Tom ?\nDo you want me to ask Tom?\tVeux-tu que je demande à Tom ?\nDo you want me to go home?\tVeux-tu que je rentre à la maison ?\nDo you want me to go home?\tVoulez-vous que je rentre chez moi ?\nDo you want to come along?\tNe veux-tu pas venir avec moi ?\nDo you want to go to jail?\tVeux-tu aller en prison ?\nDo you want to look at it?\tVeux-tu y jeter un œil ?\nDo you want to look at it?\tVoulez-vous y jeter un œil ?\nDo you want to look at it?\tVeux-tu le regarder ?\nDo you want to look at it?\tVoulez-vous le regarder ?\nDo you want to see my cat?\tVeux-tu voir mon chat ?\nDo you want to see my cat?\tVoulez-vous voir mon chat ?\nDoes anyone know Japanese?\tQuiconque connaît-il le japonais ?\nDoes anyone speak English?\tQuiconque parle-t-il anglais ?\nDoes everybody understand?\tTout le monde comprend-il ?\nDoes he have a girlfriend?\tA-t-il une copine ?\nDoes he have a girlfriend?\tA-t-il une petite copine ?\nDoes he have a girlfriend?\tA-t-il une petite amie ?\nDoes he have a girlfriend?\tA-t-il une nana ?\nDoes he have any brothers?\tA-t-il des frères ?\nDoes he have any children?\tA-t-il des enfants ?\nDoes he know how you feel?\tSait-il ce que tu ressens ?\nDoes he know how you feel?\tSait-il ce que vous ressentez ?\nDoes he know what you did?\tSait-il ce que tu as fait ?\nDoes he know what you did?\tEst-il au courant de ce que tu as fait ?\nDoes she have a boyfriend?\tA-t-elle un petit copain ?\nDoes she have a boyfriend?\tA-t-elle un petit ami ?\nDoes she have a boyfriend?\tA-t-elle un jules ?\nDoes that float your boat?\tCela te convient-il ?\nDoes that float your boat?\tEst-ce que ça te plaît ?\nDoes this look good on me?\tCeci me va-t-il ?\nDoes this look good on me?\tCeci me sied-il ?\nDoes this look good on me?\tCela me va-t-il ?\nDoes this look good on me?\tEst-ce que ça me va ?\nDogs are faithful animals.\tLe chien est un animal fidèle.\nDon't be cruel to animals.\tNe sois pas cruel envers les animaux.\nDon't be so noisy, please.\tNe faites pas autant de bruit, s'il vous plait.\nDon't blame the messenger.\tNe fais pas reproche au messager !\nDon't blame the messenger.\tNe faites pas reproche au messager !\nDon't cry over spilt milk.\tCe qui est fait est fait.\nDon't do something stupid.\tNe fais rien d'irréfléchi !\nDon't do something stupid.\tNe faites rien d'irréfléchi !\nDon't drink the tap water.\tNe bois pas l'eau du robinet.\nDon't drink the tap water.\tNe buvez pas l'eau du robinet.\nDon't eat my French fries.\tNe mange pas mes frites.\nDon't eat my French fries.\tNe mangez pas mes frites.\nDon't even get me started.\tNe commence même pas à me titiller !\nDon't even get me started.\tNe commencez même pas à me titiller !\nDon't even think about it.\tN'y pense même pas !\nDon't even think about it.\tN'y pensez même pas !\nDon't forget your costume.\tN'oublie pas ton maillot !\nDon't get so carried away.\tNe sois pas si excité.\nDon't get so carried away.\tNe soyez pas si excité.\nDon't get so carried away.\tNe soyez pas si excités.\nDon't get too comfortable.\tNe vous mettez pas trop à l'aise !\nDon't get too comfortable.\tNe te mets pas trop à l'aise !\nDon't get yourself killed.\tNe te fais pas tuer.\nDon't hold it upside down.\tNe le tenez pas à l'envers.\nDon't hold it upside down.\tNe le tiens pas à l'envers.\nDon't ignore her feelings.\tPrenez en compte ses sentiments.\nDon't jump to conclusions.\tNe tire pas de conclusions hâtives.\nDon't let him do it alone.\tNe le laisse pas le faire seul.\nDon't let him do it alone.\tNe le laissez pas le faire seul.\nDon't let that bother you.\tNe vous laissez pas tracasser par ça !\nDon't let that bother you.\tNe te laisse pas tracasser par ça !\nDon't let them get to you.\tNe les laissez pas vous approcher !\nDon't let them get to you.\tNe les laisse pas t'approcher !\nDon't lie. Tell the truth.\tNe mens pas ! Dis la vérité !\nDon't look at me that way.\tNe me regarde pas de cette façon.\nDon't look at me that way.\tNe me regardez pas comme ça.\nDon't look down on others.\tNe méprise pas les autres.\nDon't look down on others.\tNe méprisez pas les autres.\nDon't make me do it again.\tNe me faites pas le refaire !\nDon't make me do it again.\tNe me fais pas le refaire !\nDon't make me do it again.\tNe m'oblige pas à recommencer.\nDon't make me do it again.\tNe m'obligez pas à recommencer.\nDon't make me regret this.\tNe me le fais pas regretter.\nDon't make me regret this.\tNe me le faites pas regretter.\nDon't make such a mistake.\tNe commets pas une telle erreur.\nDon't sell yourself short.\tNe te déprécie pas.\nDon't speak ill of others.\tNe dis pas du mal des autres.\nDon't take me for granted.\tNe me prenez pas pour acquis !\nDon't take me for granted.\tNe me prends pas pour acquis !\nDon't tell me what I know.\tNe me dites pas ce que je sais !\nDon't tell me what I know.\tNe me dis pas ce que je sais !\nDon't tell me what to say.\tNe me dictez pas ce que je dois dire!\nDon't tell me what to say.\tNe me dicte pas ce que je dois dire!\nDon't tell the others, OK?\tNe dites rien aux autres, d'accord ?\nDon't tell the others, OK?\tNe dis rien aux autres, d'accord ?\nDon't thank me. Thank Tom.\tNe me remercie pas. Remercie Tom.\nDon't thank me. Thank Tom.\tNe me remerciez pas. Remerciez Tom.\nDon't touch the wet paint.\tNe touche pas à la peinture fraîche.\nDon't touch the wet paint.\tNe touchez pas à la peinture fraîche !\nDon't treat me like a dog.\tNe me traite pas comme un chien.\nDon't worry about a thing.\tNe te soucie de rien !\nDon't worry about a thing.\tNe vous souciez de rien !\nDon't worry. I can fix it.\tNe vous faites pas de souci ! Je peux le réparer.\nDon't worry. I can fix it.\tNe te fais pas de souci ! Je peux le réparer.\nDon't you have any change?\tN'avez-vous pas la moindre monnaie ?\nDon't you have any change?\tN'as-tu pas la moindre monnaie ?\nDon't you have work to do?\tN'as-tu pas de travail à faire ?\nDon't you have work to do?\tN'avez-vous pas de travail à faire ?\nDon't you have work today?\tN'avez-vous pas de travail, aujourd'hui ?\nDon't you have work today?\tN'as tu pas de travail, aujourd'hui ?\nDon't you know what it is?\tNe sais-tu pas ce que c'est ?\nDon't you know what it is?\tNe savez-vous pas ce que c'est ?\nDon't you love me anymore?\tTu ne m’aimes plus ?\nDon't you talk back to me.\tN'aie pas le front de me répondre !\nDon't you talk back to me.\tN'ayez pas le front de me répondre !\nDonkeys are tough animals.\tLes ânes sont des animaux résistants.\nDrink less and sleep more.\tBois moins et dors davantage.\nEach student has a locker.\tChaque étudiant dispose d'un casier.\nEither way's fine with me.\tÇa me va, d'une manière ou d'une autre.\nEnglish is hard, isn't it?\tL'anglais est dur, n'est-ce pas ?\nEven I can't believe that.\tMême moi je n'arrive pas à le croire.\nEvery movement is painful.\tChaque mouvement est douloureux.\nEvery season is different.\tChaque saison est différente.\nEvery word is significant.\tChaque mot est significatif.\nEverybody agrees with you.\tTout le monde est d'accord avec toi.\nEverybody breaks this law.\tTout le monde enfreint cette loi.\nEverybody had a good year.\tTout le monde a eu une bonne année.\nEverybody had a hard time.\tOn a tous mangé de la vache enragée.\nEverybody seeks happiness.\tTout le monde recherche le bonheur.\nEverybody seeks happiness.\tTout le monde poursuit le bonheur.\nEverybody tasted the food.\tTout le monde goûta la nourriture.\nEverybody thinks I'm dead.\tTout le monde pense que je suis mort.\nEveryone looked surprised.\tTout le monde eut l'air surpris.\nEveryone looked surprised.\tTout le monde a eu l'air surpris.\nEveryone loves that place.\tTout le monde aime cet endroit.\nEveryone needs to do this.\tTout le monde a besoin de faire ça.\nEveryone should know this.\tTout le monde devrait le savoir.\nEveryone should know this.\tTout le monde devrait savoir ça.\nEveryone started clapping.\tTout le monde s'est mis à applaudir.\nEveryone started clapping.\tTout le monde se mit à applaudir.\nEveryone started laughing.\tTout le monde se mit à rire.\nEveryone started laughing.\tTout le monde s'est mis à rire.\nEveryone was apprehensive.\tTout le monde était inquiet.\nEveryone worked very hard.\tTout le monde a travaillé très dur.\nEveryone's been contacted.\tTout le monde a été contacté.\nEveryone's been evacuated.\tTout le monde a été évacué.\nEveryone's laughing at us.\tTout le monde se moque de nous.\nEveryone's someplace else.\tTout le monde est autre part.\nEverything is on schedule.\tTout est planifié.\nEverything is on schedule.\tTout est dans les temps.\nExceptions prove the rule.\tL'exception confirme la règle.\nExpress your idea clearly.\tExprime ton idée clairement.\nFashions grow old and die.\tLa mode vieillit et passe.\nFather gave up cigarettes.\tMon père a arrêté de fumer.\nFor me, they are the best.\tPour moi, ce sont les meilleurs.\nFor me, time is not money.\tPour moi, le temps n'est pas de l'argent.\nForget it. It's too risky.\tOublie ! C'est trop risqué.\nForget it. It's too risky.\tOubliez ! C'est trop risqué.\nForget it. It's too risky.\tLaisse tomber ! C'est trop risqué.\nForget it. It's too risky.\tLaissez tomber ! C'est trop risqué.\nForgive me for being late.\tVeuillez m'excuser pour mon retard.\nForty people were present.\tQuarante personnes étaient présentes.\nFrançois has a good idea.\tFrançois a une bonne idée.\nFruits have seeds in them.\tLes fruits portent des graines.\nFurry rabbits are so cute.\tLes lapins à poil long sont tellement mignons !\nFurther testing is needed.\tDes examens plus poussés sont nécessaires.\nGasoline is used for fuel.\tL'essence est utilisée comme combustible.\nGermany borders on France.\tL'Allemagne a une frontière avec la France.\nGermany borders on France.\tL'Allemagne borde la France.\nGet ready for some action.\tPrépare-toi à baiser.\nGet ready for some action.\tPréparez-vous à baiser.\nGet that dog away from me.\tÉloigne ce chien de moi !\nGet that dog away from me.\tÉloignez ce chien de moi !\nGive me a definite answer.\tDonnez-moi une réponse définitive.\nGive me your phone number.\tDonne-moi ton numéro de téléphone.\nGive that book back to me.\tRends-moi ce livre !\nGive that book back to me.\tRendez-moi ce livre !\nGo and sit by your father.\tAssieds-toi près de ton père.\nGo on, Tom, I'm listening.\tVas-y, Tom, je t'écoute.\nGo over the choices again.\tReconsidère les options !\nGo over the choices again.\tReconsidérez les options !\nGod knows that it is true.\tDieu sait que c'est vrai.\nGold is heavier than iron.\tL'or est plus lourd que le fer.\nGood luck. You'll need it.\tBonne chance ! Vous en aurez besoin.\nGood luck. You'll need it.\tBonne chance ! Tu en auras besoin.\nGood results are expected.\tDe bons résultats sont attendus.\nGrab the end of this rope.\tAttrape le bout de cette corde !\nGrab the end of this rope.\tAttrapez le bout de cette corde !\nGreen doesn't go with red.\tLe vert ne va pas avec le rouge.\nGuess what I bought today.\tDevine ce que j'ai acheté aujourd'hui !\nGuess what I bought today.\tDevinez ce que j'ai acheté aujourd'hui !\nGuess what happened to me.\tDevine ce qui m'est arrivé !\nHalf of them are students.\tLa moitié d'entre eux sont étudiants.\nHalf of them are students.\tLa moitié d'entre elles sont étudiantes.\nHas the movie started yet?\tLe film a-t-il déjà commencé ?\nHave you already finished?\tAvez-vous déjà fini ?\nHave you already finished?\tAs-tu déjà fini ?\nHave you already finished?\tAs-tu déjà terminé ?\nHave you already finished?\tAvez-vous déjà terminé ?\nHave you done this before?\tAvez-vous fait cela auparavant ?\nHave you done this before?\tAs-tu fait cela auparavant ?\nHave you eaten supper yet?\tAs-tu déjà dîné ?\nHave you eaten supper yet?\tAvez-vous déjà soupé ?\nHave you ever been abroad?\tAs-tu déjà été à l'étranger ?\nHave you ever been abroad?\tVous êtes-vous déjà rendu à l'étranger ?\nHave you ever been kissed?\tAs-tu déjà été embrassé ?\nHave you ever been kissed?\tAvez-vous déjà été embrassée ?\nHave you ever been lonely?\tAs-tu jamais été seul ?\nHave you ever been lonely?\tAs-tu jamais été seule ?\nHave you ever been lonely?\tAvez-vous jamais été seul ?\nHave you ever been lonely?\tAvez-vous jamais été seule ?\nHave you ever been lonely?\tAvez-vous jamais été seuls ?\nHave you ever been lonely?\tAvez-vous jamais été seules ?\nHave you ever been mugged?\tAvez-vous jamais été agressé ?\nHave you ever been mugged?\tAvez-vous jamais été agressée ?\nHave you ever loved a man?\tAs-tu déjà aimé un homme ?\nHave you ever played golf?\tAvez-vous déjà joué au golf ?\nHave you finished talking?\tAs-tu fini de parler ?\nHave you lost your ticket?\tAvez-vous perdu votre billet ?\nHave you lost your ticket?\tAs-tu perdu ton billet ?\nHave you put on sunscreen?\tTu as mis de la crème solaire ?\nHave you put on sunscreen?\tAs-tu mis de la crème solaire ?\nHave you put on sunscreen?\tAvez-vous mis de la crème solaire ?\nHave you seen anyone else?\tAs-tu vu quelqu'un d'autre ?\nHave you seen anyone else?\tAvez-vous vu quelqu'un d'autre ?\nHave you seen my car keys?\tAs-tu vu mes clés de voiture ?\nHave you seen my car keys?\tAvez-vous vu mes clés de voitures ?\nHaven't you said too much?\tTu n'aurais pas trop parlé ?\nHe acknowledged his fault.\tIl a reconnu ses fautes.\nHe acted without thinking.\tIl a agi sans réfléchir.\nHe adores his grandfather.\tIl adore son grand-père.\nHe advised me to go there.\tIl m'a conseillé d'aller là-bas.\nHe always tells the truth.\tIl dit toujours la vérité.\nHe approached the station.\tIl s'approchait de la gare.\nHe arrived at the station.\tIl est arrivé à la gare.\nHe arrived safe and sound.\tIl est arrivé sain et sauf.\nHe asked me out on a date.\tIl m'a proposé de sortir avec lui.\nHe asked me out on a date.\tIl me proposa de sortir avec lui.\nHe asked me two questions.\tIl m'a posé deux questions.\nHe asked me what I needed.\tIl m'a demandé ce dont j'avais besoin.\nHe became a famous singer.\tIl devint un chanteur célèbre.\nHe became a famous singer.\tIl est devenu un chanteur célèbre.\nHe became a national hero.\tIl devint un héros national.\nHe became a national hero.\tIl est devenu un héros national.\nHe began to look for work.\tIl commença à chercher du travail.\nHe betrayed my confidence.\tIl a trahi ma confiance.\nHe bought a dress for her.\tIl a acheté une robe pour elle.\nHe broke the world record.\tIl a battu le record du monde.\nHe came back from America.\tIl revint d'Amérique.\nHe came back from America.\tIl est revenu des États-Unis.\nHe came down to breakfast.\tIl descendit prendre le petit déjeuner.\nHe can run as fast as you.\tIl peut courir aussi vite que toi.\nHe can run faster than me.\tIl sait courir plus vite que moi.\nHe can speak Russian, too.\tIl parle également russe.\nHe can't afford a new car.\tIl ne peut pas se permettre d'acheter une nouvelle voiture.\nHe can't be an honest man.\tCe ne doit pas être un homme honnête.\nHe can't handle the truth.\tIl ne peut faire face à la vérité.\nHe caught a terrible cold.\tIl contracta un terrible rhume.\nHe caught a terrible cold.\tIl a contracté un terrible rhume.\nHe caught hold of my hand.\tIl m'a pris la main.\nHe climbed over the fence.\tIl a escaladé la clôture.\nHe complains all the time.\tIl ne fait que se plaindre du matin au soir.\nHe cut down a cherry tree.\tIl a coupé un cerisier.\nHe denied himself nothing.\tIl ne se privait de rien.\nHe denies himself nothing.\tIl ne se prive de rien.\nHe did everything for her.\tIl a tout fait pour elle.\nHe did it out of kindness.\tIl l'a fait par gentillesse.\nHe did it with great zeal.\tIl le fit avec beaucoup d'ardeur.\nHe did not like to travel.\tIl n'aimait pas voyager.\nHe didn't get paid for it.\tIl n'a pas été payé pour ça.\nHe didn't get paid for it.\tIl ne fut pas payé pour ça.\nHe didn't help his father.\tIl n'a pas aidé son père.\nHe didn't like being poor.\tIl n'aimait pas être pauvre.\nHe died of a heart attack.\tIl est mort d'une crise cardiaque.\nHe died of natural causes.\tIl est mort de mort naturelle.\nHe dislikes the principal.\tElle déteste le principal.\nHe does it faster than me.\tIl le fait plus rapidement que moi.\nHe does this all the time.\tIl fait ça tout le temps.\nHe doesn't believe in God.\tIl ne croit pas en Dieu.\nHe doesn't have any proof.\tIl n'a pas la moindre preuve.\nHe doesn't have any proof.\tIl ne dispose pas de la moindre preuve.\nHe doesn't stand a chance.\tIl n'a aucune chance.\nHe doesn't take vacations.\tIl ne prend pas de vacances.\nHe doesn't take vacations.\tIl ne prend pas de congés.\nHe doesn't understand you.\tIl ne t'a pas compris.\nHe doesn't understand you.\tIl ne te comprend pas.\nHe doesn't understand you.\tIl ne vous comprend pas.\nHe donated a lot of money.\tIl a fait don de beaucoup d'argent.\nHe drank a bottle of wine.\tIl a bu une bouteille de vin.\nHe drank himself to death.\tIl s'est saoulé à mort.\nHe dreamed about his home.\tIl rêva de chez lui.\nHe explained it at length.\tIl l'expliqua longuement.\nHe explained it in detail.\tIl l'a expliqué en détail.\nHe extended his right arm.\tIl allongea son bras droit.\nHe failed to come on time.\tIl ne parvint pas à arriver à l'heure.\nHe fell asleep right away.\tIl s'endormit tout de suite.\nHe fell asleep right away.\tIl s'endormit aussitôt.\nHe fell asleep right away.\tIl s'est endormi immédiatement.\nHe fell asleep right away.\tIl s'endormit immédiatement.\nHe fell down on the floor.\tIl est tombé par terre.\nHe fell into a deep sleep.\tIl est tombé dans un profond sommeil.\nHe felt himself lifted up.\tIl se sentit soulevé de terre.\nHe felt perfectly content.\tIl se sentait parfaitement content.\nHe finally decided to try.\tIl décida finalement d'essayer.\nHe finally met my demands.\tIl a finalement satisfait à mes exigences.\nHe fixed the broken table.\tIl a réparé la table cassée.\nHe focused on his studies.\tIl se concentra sur ses études.\nHe forced her to sit down.\tIl la contraignit à s'asseoir.\nHe found her irresistible.\tIl la trouva irrésistible.\nHe found her irresistible.\tIl l'a trouvée irrésistible.\nHe gave me a vague answer.\tIl m'a répondu vaguement.\nHe goes abroad every year.\tIl se rend chaque année à l'étranger.\nHe goes to school on foot.\tIl marche vers l'école.\nHe got his tongue pierced.\tIl s'est fait percer la langue.\nHe got me some vegetables.\tIl m'a obtenu quelques légumes.\nHe got the job by a fluke.\tIl a obtenu le boulot sur un coup de chance.\nHe had a book in his hand.\tIl avait un livre dans la main.\nHe had a book in his hand.\tIl avait un livre en main.\nHe had a mad crush on you.\tIl était furieusement amouraché de toi.\nHe had a traffic accident.\tIl a eu un accident de la circulation.\nHe hammered at the window.\tIl tambourina à la fenêtre.\nHe hammered at the window.\tIl a tambouriné à la fenêtre.\nHe has a cat and two dogs.\tIl a un chat et deux chiens.\nHe has a dual personality.\tIl a une double personnalité.\nHe has a nice personality.\tIl a une forte constitution.\nHe has a rich imagination.\tIl a une imagination fertile.\nHe has all kinds of books.\tIl possède toutes sortes de livres.\nHe has excellent reflexes.\tIl a d'excellents réflexes.\nHe has many history books.\tIl possède de nombreux livres d'Histoire.\nHe has nothing against it.\tIl n'a rien contre.\nHe has two beautiful boys.\tIl a deux beaux garçons.\nHe helped me fix my watch.\tIl m'aida à réparer ma montre.\nHe helped me fix my watch.\tIl m'a aidé à réparer ma montre.\nHe hesitated for a moment.\tIl a hésité pendant un moment.\nHe hired some new workers.\tIl embaucha de nouveaux ouvriers.\nHe hired some new workers.\tIl embaucha quelques nouveaux ouvriers.\nHe hit on a splendid idea.\tUne idée brillante lui vint à l'esprit.\nHe hurried to the station.\tIl se précipita à la gare.\nHe hurried to the station.\tIl s'est précipité à la gare.\nHe is a danger to society.\tIl est un danger pour la société.\nHe is a little over forty.\tIl a un peu plus de quarante ans.\nHe is a methodical person.\tIl est méthodique.\nHe is a novelist and poet.\tIl est écrivain et poète.\nHe is addicted to cocaine.\tIl est dépendant à la cocaïne.\nHe is always day-dreaming.\tIl est toujours dans les nuages.\nHe is always day-dreaming.\tIl rêvasse toujours.\nHe is an environmentalist.\tC'est un écologiste.\nHe is anything but honest.\tIl est tout sauf honnête.\nHe is capable of doing it.\tIl est capable de le faire.\nHe is either drunk or mad.\tSoit il est saoul, soit il est fou.\nHe is engaged in teaching.\tIl est engagé dans l'enseignement.\nHe is handsome and clever.\tIl est beau et intelligent.\nHe is inclined to be lazy.\tIl tend à être paresseux.\nHe is inclined to get mad.\tIl a tendance à se mettre en colère.\nHe is interested in music.\tIl est intéressé par la musique.\nHe is like a father to me.\tIl est comme un père pour moi.\nHe is more clever than me.\tIl est plus intelligent que moi.\nHe is more clever than me.\tIl est plus malin que moi.\nHe is no good as a lawyer.\tIl n'est pas doué en tant qu'avocat.\nHe is no ordinary student.\tCe n'est pas un élève ordinaire.\nHe is nothing but a child.\tIl n'est rien d'autre qu'un enfant.\nHe is old enough to drink.\tIl est assez vieux pour boire.\nHe is old enough to drink.\tIl est assez âgé pour boire.\nHe is one of my neighbors.\tC'est l'un de mes voisins.\nHe is one of my neighbors.\tC'est un de mes voisins.\nHe is playing in his room.\tIl joue dans sa chambre.\nHe is playing in his room.\tIl est en train de jouer dans sa chambre.\nHe is proficient in Farsi.\tIl a une bonne maîtrise de la langue persane.\nHe is soon to be a father.\tIl sera bientôt père.\nHe is still having doubts.\tIl a encore des doutes.\nHe is tired from overwork.\tIl est fatigué à cause du surmenage.\nHe is unable to buy a car.\tIl est incapable d'acheter une voiture.\nHe is very afraid of dogs.\tIl a très peur des chiens.\nHe is very friendly to us.\tIl est très amical avec nous.\nHe is walking very slowly.\tIl marche très lentement.\nHe just wants to have fun.\tIl veut juste s'amuser.\nHe keeps his age a secret.\tIl garde secret son âge.\nHe kept the window closed.\tIl garda la fenêtre fermée.\nHe kissed me passionately.\tIl m'embrassa avec passion.\nHe knows many folk dances.\tIl connaît de nombreuses danses folkloriques.\nHe left the door unlocked.\tIl ne verrouilla pas la porte.\nHe left the motor running.\tIl a laissé le moteur tourner.\nHe left the water running.\tIl a laissé l'eau couler.\nHe likes his coffee black.\tIl aime son café noir.\nHe likes his school a lot.\tIl aime beaucoup son école.\nHe likes to live in Tokyo.\tIl aime vivre à Tokyo.\nHe likes to travel abroad.\tIl aime voyager à l'étranger.\nHe listened to my opinion.\tIl a écouté mon opinion.\nHe lived there by himself.\tIl vivait là seul.\nHe lives in a large house.\tIl vit dans une grande maison.\nHe lives in the next town.\tIl vit dans la ville d'à côté.\nHe lives with his parents.\tIl vit avec ses parents.\nHe lives within his means.\tIl vit selon ses moyens.\nHe looked like a rich man.\tIl semblait un homme riche.\nHe looks good for his age.\tIl a l'air bien pour son âge.\nHe lost sight of the bird.\tIl a perdu cet oiseau de vue.\nHe made a speedy recovery.\tIl se remit rapidement.\nHe made her his secretary.\tIl a fait d'elle sa secrétaire.\nHe made his parents happy.\tIl a rendu ses parents heureux.\nHe makes fun of everybody.\tIl se moque de tout le monde.\nHe married an air hostess.\tIl s'est marié à une hôtesse de l'air.\nHe must be from the South.\tIl doit venir du Sud.\nHe must like taking walks.\tIl doit apprécier les promenades.\nHe narrowly escaped death.\tIl a échappé de peu à la mort.\nHe needs to speak English.\tIl lui faut parler anglais.\nHe needs to speak English.\tIl lui faut parler l'anglais.\nHe often plays the guitar.\tIl joue souvent de la guitare.\nHe ordered me to go alone.\tIl m'a ordonné d'y aller tout seul.\nHe ordered me to stand up.\tIl m'ordonna de me lever.\nHe overslept this morning.\tIl ne s'est pas réveillé ce matin.\nHe owes me a lot of money.\tIl me doit beaucoup d'argent.\nHe passed the examination.\tIl passa l'examen avec succès.\nHe picked it up carefully.\tIl l'a ramassé avec précaution.\nHe plays tennis very well.\tIl joue très bien au tennis.\nHe pretended to be asleep.\tIl feignit d'être endormi.\nHe pretended to be asleep.\tIl a feint d'être endormi.\nHe promised not to say it.\tIl a promis de ne pas le dire.\nHe put milk in his coffee.\tIl mit du lait dans son café.\nHe ran into the classroom.\tIl courut dans la classe.\nHe ran the fastest of all.\tIl courut plus vite que tous les autres.\nHe rang me up at midnight.\tIl m'a téléphoné à minuit.\nHe receives a high salary.\tIl perçoit un salaire élevé.\nHe refused to shake hands.\tIl a refusé de me serrer la main.\nHe refused to shake hands.\tIl a refusé de leur serrer la main.\nHe refused to shake hands.\tIl a refusé de lui serrer la main.\nHe removed his sunglasses.\tIl retira ses lunettes de soleil.\nHe removed his sunglasses.\tIl ôta ses lunettes de soleil.\nHe removed his sunglasses.\tIl a retiré ses lunettes de soleil.\nHe removed his sunglasses.\tIl a ôté ses lunettes de soleil.\nHe sat next to the stream.\tIl s'assit au bord du ruisseau.\nHe seems interested in me.\tIl semble s'intéresser à moi.\nHe seems to have been ill.\tIl a l'air d'avoir été malade.\nHe seems to have been ill.\tIl semble avoir été malade.\nHe seldom comes to see me.\tIl vient rarement me voir.\nHe seldom, if ever, comes.\tIl vient rarement, voire pas du tout.\nHe shared in my happiness.\tIl a partagé ma joie.\nHe showed off his new car.\tIl exhiba sa nouvelle voiture.\nHe shrugged his shoulders.\tIl haussa les épaules.\nHe sold all that he owned.\tIl vendit tout ce qu'il possédait.\nHe sold all that he owned.\tIl a vendu tout ce qu'il possédait.\nHe spoke under his breath.\tIl parlait en chuchotant.\nHe stayed there some time.\tIl y a séjourné quelque temps.\nHe still hasn't responded.\tIl n'a toujours pas répondu.\nHe stood against the wall.\tIl se tenait contre le mur.\nHe strayed from his group.\tIl s'est éloigné du groupe.\nHe studied to be a doctor.\tIl a étudié pour être médecin.\nHe studied to be a doctor.\tIl étudia afin de devenir médecin.\nHe surprised his opponent.\tIl surprit son opposant.\nHe swims better than I do.\tIl nage mieux que moi.\nHe takes after his father.\tIl ressemble à son père.\nHe takes after his father.\tIl tient de son père.\nHe talked to the chairman.\tIl a parlé au président.\nHe taught me how to drive.\tIl m'a appris à conduire.\nHe tends to talk too much.\tIl a tendance à trop parler.\nHe thinks he can prove it.\tIl pense pouvoir le prouver.\nHe thinks he can prove it.\tIl pense qu'il peut le prouver.\nHe thought of a good idea.\tIl eut une bonne idée.\nHe thought of a good idea.\tIl a eu une bonne idée.\nHe tied the dog to a tree.\tIl attacha le chien à un arbre.\nHe took poison by mistake.\tIl a pris du poison par erreur.\nHe treats me like a child.\tIl me traite comme un enfant.\nHe treats me like a child.\tIl me traite en enfant.\nHe tried hard, but failed.\tIl a essayé fort mais il a échoué.\nHe tried it with a friend.\tIl l'a essayé avec une amie.\nHe tried it with a friend.\tIl l'a essayé avec un ami.\nHe tried opening the door.\tIl tenta d'ouvrir la porte.\nHe tried to open the door.\tIl tenta d'ouvrir la porte.\nHe used to be a quiet man.\tIl était un homme tranquille.\nHe voted for the proposal.\tIl a voté en faveur de la proposition.\nHe walked along the river.\tIl marchait le long de la rivière.\nHe walked along the shore.\tIl marcha le long du rivage.\nHe walked along the shore.\tIl a marché le long du rivage.\nHe walked at a quick pace.\tIl marchait à un rythme rapide.\nHe walked toward the door.\tIl a passé la porte.\nHe wanted to buy the book.\tIl voulait acheter le livre.\nHe wanted to buy the book.\tIl a voulu acheter le livre.\nHe wanted to come with us.\tIl voulait venir avec nous.\nHe wants to go to America.\tIl veut aller aux États-Unis d'Amérique.\nHe wants to go to America.\tIl veut se rendre en Amérique.\nHe wants to learn to swim.\tIl veut apprendre à nager.\nHe wants you to come home.\tIl veut que tu viennes à la maison.\nHe wants you to come home.\tIl veut que tu viennes chez toi.\nHe wants you to come home.\tIl veut que tu viennes chez lui.\nHe wants you to come home.\tIl veut que tu viennes chez nous.\nHe wants you to come home.\tIl veut que vous veniez à la maison.\nHe wants you to come home.\tIl veut que vous veniez chez vous.\nHe wants you to come home.\tIl veut que vous veniez chez lui.\nHe wants you to come home.\tIl veut que vous veniez chez nous.\nHe wants you to come home.\tIl veut que vous veniez chez moi.\nHe wants you to come home.\tIl veut que tu viennes chez moi.\nHe was afraid of his wife.\tIl avait peur de sa femme.\nHe was afraid of his wife.\tIl redoutait son épouse.\nHe was afraid of the dark.\tIl avait peur de l'obscurité.\nHe was alone in the house.\tIl était seul dans la maison.\nHe was among those chosen.\tIl faisait partie de ceux qui ont été choisis.\nHe was among those chosen.\tIl était parmi ceux qui furent choisis.\nHe was angry with himself.\tIl était en colère contre lui-même.\nHe was appointed chairman.\tIl a été nommé Président.\nHe was blazing with anger.\tIl était rouge de colère.\nHe was blue from the cold.\tIl était bleu de froid.\nHe was condemned to death.\tIl fut condamné à mort.\nHe was covered with sweat.\tIl était couvert de sueur.\nHe was educated at Oxford.\tIl a été éduqué à Oxford.\nHe was fired for stealing.\tIl a été renvoyé pour vol.\nHe was looking at the sky.\tIl était en train de regarder le ciel.\nHe was looking at the sky.\tIl regardait le ciel.\nHe was lying on the couch.\tIl était étendu sur le canapé.\nHe was lying on the grass.\tIl était étendu sur l'herbe.\nHe was more or less drunk.\tIl était plus ou moins saoul.\nHe was my first boyfriend.\tIl fut mon premier petit ami.\nHe was my first boyfriend.\tIl a été mon premier petit ami.\nHe was not a good speaker.\tIl n'a pas été un bon orateur.\nHe was not happy about it.\tIl n'en était pas heureux.\nHe was not happy about it.\tIl n'en a pas été heureux.\nHe was not happy about it.\tIl n'en fut pas heureux.\nHe was punished for lying.\tIl a été puni pour avoir menti.\nHe was quickly recaptured.\tIl a rapidement été à nouveau capturé.\nHe was regarded as a hero.\tIl était considéré comme un héros.\nHe was sentenced to death.\tIl fut condamné à mort.\nHe was sharpening a knife.\tIl aiguisait un couteau.\nHe was sitting next to me.\tIl était assis à mon côté.\nHe was thrown behind bars.\tIl a été mis derrière les barreaux.\nHe was too angry to speak.\tIl était trop en colère pour parler.\nHe was too shy to do that.\tIl était trop timide pour faire ça.\nHe was too tired to study.\tIl était trop fatigué pour étudier.\nHe was wounded in the war.\tIl a été blessé à la guerre.\nHe wasn't there last week.\tIl n'y était pas la semaine dernière.\nHe wasn't there last week.\tIl n'y était pas la semaine passée.\nHe wasn't there last week.\tIl ne s'y trouvait pas la semaine dernière.\nHe wasn't there last week.\tIl ne s'y trouvait pas la semaine passée.\nHe wears designer glasses.\tIl porte des lunettes de créateur.\nHe went back to the store.\tIl est retourné au magasin.\nHe went back to the store.\tIl est retourné à la boutique.\nHe went to London in 1970.\tIl alla à Londres en 1970.\nHe will be a good husband.\tIl sera un bon mari.\nHe will be a good teacher.\tIl sera un bon instituteur.\nHe will be a good teacher.\tIl sera un bon professeur.\nHe will be really pleased.\tIl sera vraiment satisfait.\nHe will make you eat dirt.\tIl vous fera mordre la poussière.\nHe will not agree with us.\tIl ne sera pas d'accord avec nous.\nHe will not do it anymore.\tIl ne le fera plus.\nHe won't live much longer.\tIl ne vivra plus longtemps.\nHe works as a gym teacher.\tIl travaille comme instructeur de gymnastique.\nHe works in a call center.\tIl travaille dans un centre d'appels.\nHe would often go fishing.\tIl allait souvent pêcher.\nHe wrote a lot of stories.\tIl a écrit beaucoup d'histoires.\nHe wrote me a love letter.\tIl m'a écrit une lettre d'amour.\nHe'll help you if you ask.\tSi tu lui demandes, il t'aidera.\nHe'll make a good husband.\tIl ferait un bon mari.\nHe's a university student.\tC'est un étudiant de l'université.\nHe's a very fine musician.\tC'est un très bon musicien.\nHe's a very fine musician.\tC'est un musicien de grande qualité.\nHe's agreed to do the job.\tIl a accepté de faire le travail.\nHe's almost as tall as me.\tIl est presque aussi grand que moi.\nHe's always chasing girls.\tIl court toujours après les filles.\nHe's as strong as a horse.\tIl est fort comme un cheval.\nHe's come to make trouble.\tIl est venu pour causer des ennuis.\nHe's fresh out of college.\tIl vient de sortir de l'université.\nHe's fresh out of college.\tIl est frais émoulu de l'école.\nHe's fresh out of college.\tIl est frais émoulu de l'université.\nHe's going to regret this.\tIl va le regretter.\nHe's good at what he does.\tIl est bon dans ce qu'il fait.\nHe's hiding in the closet.\tIl se cache dans le placard.\nHe's hiding in the closet.\tIl se cache dans la penderie.\nHe's like a brother to me.\tIl est comme un frère pour moi.\nHe's not breaking the law.\tIl n'enfreint pas la loi.\nHe's not stronger than me.\tIl n'est pas plus fort que moi.\nHe's really in good shape.\tIl est vraiment en bonne forme.\nHe's running for Congress.\tIl est candidat au Congrès.\nHe's scared to talk to me.\tIl a peur de me parler.\nHe's sleeping like a baby.\tIl dort comme un bébé.\nHe's very fond of reading.\tIl adore la lecture.\nHe's very fond of walking.\tIl adore marcher.\nHe's young and attractive.\tIl est jeune et attirant.\nHe, and he alone, must go.\tLui et lui seul doit y aller.\nHeat turns ice into water.\tLa chaleur transforme la glace en eau.\nHelp me for just a minute.\tAidez-moi rien que pour une minute !\nHelp me for just a minute.\tAide-moi rien que pour une minute !\nHelp yourself to the cake.\tServez-vous du gâteau !\nHelp yourself to the cake.\tSers-toi du gâteau !\nHer father is a policeman.\tSon père est policier.\nHer hobby is bodybuilding.\tSon passe-temps est sculpter son corps.\nHer name often escapes me.\tSon nom m'échappe souvent.\nHere is their photo album.\tVoici leur album de photos.\nHere's what you should do.\tVoilà ce que tu devrais faire.\nHey, can we get a move on?\tEh, on peut se bouger ?\nHey, don't touch anything!\tHé, ne touche à rien !\nHey, don't touch anything!\tHé, ne touchez à rien !\nHey, what's all the noise?\tEh, c'est quoi tout ce bruit ?\nHippopotamuses love water.\tLes hippopotames aiment l'eau.\nHippopotamuses love water.\tLes hippopotames aiment beaucoup l'eau.\nHis career is on the line.\tSa carrière est en jeu.\nHis concert was very good.\tSon concert était très bon.\nHis crime is unforgivable.\tSon crime est impardonnable.\nHis father is a physicist.\tSon père est physicien.\nHis hair has turned white.\tSes cheveux sont devenus blancs.\nHis house is easy to find.\tSa maison est facile à trouver.\nHis illness may be cancer.\tSa maladie pourrait être un cancer.\nHis mother speaks Italian.\tSa mère parle l'italien.\nHis mother speaks Italian.\tSa mère parle italien.\nHis mother speaks Italian.\tSa mère parle en italien.\nHis new record sells well.\tSon nouveau disque se vend bien.\nHis room was brightly lit.\tSa chambre était éclairée crûment.\nHis smile put her at ease.\tSon sourire la mit à l'aise.\nHis story amused everyone.\tSon histoire a amusé tout le monde.\nHis story may not be true.\tSon histoire n'est peut-être pas vraie.\nHis temperature is normal.\tSa température est normale.\nHis troubles are not over.\tSes ennuis ne sont pas terminés.\nHis view is quite logical.\tSon point de vue est assez logique.\nHis words are meaningless.\tSes paroles n'ont aucun sens.\nHis work is below average.\tSon travail est en dessous de la moyenne.\nHonesty is very important.\tL'honnêteté, c'est très important.\nHow about a cup of coffee?\tQue dites-vous d'une tasse de café ?\nHow about a cup of coffee?\tQue dis-tu d'une tasse de café ?\nHow are we doing for time?\tCombien de temps avons-nous ?\nHow are you feeling today?\tComment vas-tu aujourd'hui ?\nHow are you feeling today?\tComment te sens-tu aujourd'hui ?\nHow can you be so callous?\tComment pouvez-vous être aussi dur ?\nHow can you be so callous?\tComment pouvez-vous être aussi dure ?\nHow can you be so callous?\tComment pouvez-vous être aussi dures ?\nHow can you be so callous?\tComment pouvez-vous être aussi durs ?\nHow can you be so callous?\tComment pouvez-vous être aussi insensible ?\nHow can you be so callous?\tComment pouvez-vous être aussi insensibles ?\nHow can you be so callous?\tComment peux-tu être aussi insensible ?\nHow can you be so callous?\tComment peux-tu être aussi dur ?\nHow can you be so callous?\tComment peux-tu être aussi dure ?\nHow can you be so selfish?\tComment peux-tu être aussi égoïste ?\nHow can you be so selfish?\tComment pouvez-vous être aussi égoïste ?\nHow come you know so much?\tComment se fait-il que tu en saches autant ?\nHow come you know so much?\tComment se fait-il que vous en sachiez autant ?\nHow could you be so cruel?\tComment pourrais-tu être si cruelle ?\nHow could you be so cruel?\tComment pourrais-tu être si cruel ?\nHow could you be so cruel?\tComment pourriez-vous être si cruelle ?\nHow could you be so cruel?\tComment pourriez-vous être si cruelles ?\nHow could you be so cruel?\tComment pourriez-vous être si cruel ?\nHow could you be so cruel?\tComment pourriez-vous être si cruels ?\nHow did I let this happen?\tComment ai-je laissé ça arriver ?\nHow did I let this happen?\tComment ai-je laissé ça survenir ?\nHow did Tom and Mary meet?\tComment Tom et Mary se sont-ils rencontrés ?\nHow did you get so strong?\tComment es-tu devenu si fort ?\nHow did you get so strong?\tComment êtes-vous devenu si forte ?\nHow did you get so strong?\tComment es-tu devenu si forte ?\nHow did you hear about us?\tComment as-tu entendu parler de nous ?\nHow did you hear about us?\tComment avez-vous entendu parler de nous ?\nHow did you hear the news?\tComment avez-vous appris la nouvelle ?\nHow did you hurt your arm?\tD'où vient votre blessure au bras?\nHow did you know all that?\tComment savais-tu tout cela ?\nHow did you know all that?\tComment saviez-vous tout cela ?\nHow did you lose your arm?\tComment avez-vous perdu votre bras ?\nHow did you lose your arm?\tComment as-tu perdu ton bras ?\nHow do I delete this file?\tComment est-ce que je fais pour supprimer ce fichier ?\nHow do I get to Chinatown?\tComment puis-je me rendre dans le quartier chinois ?\nHow do I get to the beach?\tComment puis-je me rendre à la plage ?\nHow do I make you go away?\tComment te fais-je partir ?\nHow do you come to school?\tComment te rends-tu à l'école ?\nHow do you define success?\tComment définis-tu le succès ?\nHow do you define success?\tComment définissez-vous le succès ?\nHow do you even know that?\tComment le savez-vous, même ?\nHow do you even know that?\tComment le sais-tu, même ?\nHow do you heat the house?\tComment chauffez-vous la maison ?\nHow do you know it's real?\tComment sais-tu que c'est vrai ?\nHow do you know it's real?\tComment savez-vous que c'est vrai ?\nHow do you know it's true?\tComment sais-tu que c'est vrai ?\nHow do you know it's true?\tComment savez-vous que c'est vrai ?\nHow do you like this town?\tCette ville vous plaît-elle ?\nHow do you live like this?\tComment vivre ainsi ?\nHow do you live with that?\tComment vivez-vous avec ça ?\nHow do you live with that?\tComment vis-tu avec ça ?\nHow do you not understand?\tComment peux-tu ne pas comprendre ?\nHow do you not understand?\tComment pouvez-vous ne pas comprendre ?\nHow do you put up with it?\tComment le supportez-vous ?\nHow do you put up with it?\tComment le supportes-tu ?\nHow does this camera work?\tComment marche cet appareil photo ?\nHow does this concern you?\tEn quoi ça vous regarde?\nHow fast does this car go?\tÀ quelle vitesse va cette voiture ?\nHow high is that mountain?\tQuelle est l'altitude de cette montagne?\nHow late do you stay open?\tJusqu'à quelle heure restez-vous ouvert ?\nHow late do you stay open?\tJusqu'à quelle heure restes-tu ouvert ?\nHow long has he been dead?\tDepuis combien de temps est-il mort ?\nHow long will you be here?\tCombien de temps serez-vous ici ?\nHow many bags do you have?\tCombien de sacs avez-vous ?\nHow many bags do you have?\tCombien de sacs as-tu ?\nHow many cars do you have?\tCombien avez-vous de voitures ?\nHow many cats do you have?\tCombien de chats as-tu?\nHow many colors are there?\tCombien il y a-t-il de couleurs ?\nHow many kids do you have?\tCombien avez-vous d'enfants ?\nHow many kids do you have?\tCombien d'enfants avez-vous ?\nHow many kids do you have?\tCombien de gosses avez-vous ?\nHow many kids do you have?\tCombien d'enfants avez-vous ?\nHow many kids do you have?\tCombien d'enfants as-tu ?\nHow many of us were there?\tCombien d'entre-nous étaient-ils là ?\nHow many of us were there?\tCombien d'entre-nous étaient-elles là ?\nHow many of you are going?\tCombien d'entre-vous partent-ils ?\nHow many of you are going?\tCombien d'entre-vous partent-elles ?\nHow many of you are going?\tCombien d'entre-vous y vont-ils ?\nHow many of you are going?\tCombien d'entre-vous y vont-elles ?\nHow many of you are there?\tCombien d'entre vous sont là ?\nHow many of you live here?\tCombien d'entre-vous y vivent-ils ?\nHow many of you live here?\tCombien d'entre-vous y vivent-elles ?\nHow many pens do you have?\tCombien de crayons avez-vous ?\nHow many pens do you have?\tCombien de crayons as-tu ?\nHow many people have died?\tCombien de personnes sont mortes ?\nHow much does a beer cost?\tCombien coûte une bière ?\nHow much does the job pay?\tCombien le boulot paie-t-il ?\nHow much is it in dollars?\tCombien ça fait, en dollars ?\nHow much sugar do you use?\tQuelle quantité de sucre utilises-tu ?\nHow much time did we lose?\tCombien de temps avons-nous perdu ?\nHow much time did we lose?\tCombien de temps a-t-on perdu ?\nHow much were the glasses?\tÀ combien étaient ces lunettes ?\nHow much were the glasses?\tCombien ces lunettes ont-elles coûté ?\nHow old are your children?\tQuel âge ont vos enfants ?\nHow old do you think I am?\tQuel âge me donnez-vous ?\nHow old is the oldest one?\tQuel âge a l'aîné ?\nHow will he pay his debts?\tComment payera-t-il ses dettes ?\nHow will we pay our debts?\tComment payerons-nous nos dettes ?\nHow would you describe me?\tComment me décrirais-tu ?\nHow would you describe me?\tComment me décririez-vous ?\nHow'd you get that shiner?\tComment as-tu pris cet œil au beurre noir ?\nHow'd you get that shiner?\tComment as-tu pris ce maquereau ?\nHow's your business going?\tComment vont tes affaires ?\nHow's your old lady doing?\tComment va ta femme ?\nHow's your old lady doing?\tComment va ta vieille ?\nHow's your old lady doing?\tComment va ta mère ?\nHow's your old lady doing?\tComment va ta compagne ?\nHow's your old lady doing?\tComment ta mère se porte-t-elle ?\nHow's your old lady doing?\tComment ta femme se porte-t-elle ?\nHow's your old lady doing?\tComment ta compagne se porte-t-elle ?\nHow's your old lady doing?\tComment votre mère se porte-t-elle ?\nHow's your old lady doing?\tComment votre femme se porte-t-elle ?\nHow's your old lady doing?\tComment votre compagne se porte-t-elle ?\nHow's your old lady doing?\tComment va votre femme ?\nHow's your old lady doing?\tComment va votre compagne ?\nHow's your old lady doing?\tComment va votre mère ?\nI accepted her invitation.\tJ'ai accepté son invitation.\nI accepted his invitation.\tJ'ai accepté son invitation.\nI accused him of cheating.\tJe l'ai accusé de tricher.\nI accused him of cheating.\tJe l'accusai de tricher.\nI admire Tom's dedication.\tJ'admire le dévouement de Tom.\nI admit having done wrong.\tJ'admets que j'ai mal fait.\nI admit that it's strange.\tJ'admets que c'est étrange.\nI admit to being careless.\tJ'admets être négligent.\nI admit to being careless.\tJ'admets être négligente.\nI agree with that opinion.\tJe suis d'accord avec cette opinion.\nI agree with your opinion.\tJe suis d'accord avec votre opinion.\nI agree with your opinion.\tJe suis d'accord avec ton opinion.\nI almost missed the train.\tJ'ai failli rater le train.\nI already know who did it.\tJe sais déjà qui l'a fait.\nI already took care of it.\tJe m'en suis déjà occupé.\nI always keep my promises.\tJe tiens toujours mes promesses.\nI am a university student.\tJe suis étudiant.\nI am a university student.\tJe suis étudiant à l'université.\nI am acting for my father.\tJ'agis pour mon père.\nI am afraid it's too late.\tJe crains qu'il ne soit trop tard.\nI am bored out of my mind.\tJe m'ennuie tellement que je n'en peux plus.\nI am bored out of my mind.\tJe m'ennuie tellement.\nI am delighted to be here.\tJe suis ravi d'être ici.\nI am delighted to be here.\tJe suis enchanté d'être ici.\nI am delighted to be here.\tJe suis enchantée d'être ici.\nI am feeling sad about it.\tJe me sens triste à cause de ça.\nI am forever in your debt.\tJe suis pour toujours votre débiteur.\nI am forever in your debt.\tJe suis pour toujours ton débiteur.\nI am going to be fourteen.\tJe vais avoir quatorze ans.\nI am going to get dressed.\tJe vais m'habiller.\nI am hanging up my shirts.\tJe pends mes chemises.\nI am hers and she is mine.\tJe suis sienne et elle est mienne.\nI am hers and she is mine.\tJe suis à elle et elle est à moi.\nI am hers and she is mine.\tJe suis sien et elle est mienne.\nI am living with my uncle.\tJ'habite avec mon oncle.\nI am not a morning person.\tJe ne suis pas matinal.\nI am not getting involved.\tJe ne m'implique pas.\nI am not getting involved.\tJe ne vais pas m'impliquer.\nI am not on call tomorrow.\tJe ne suis pas de garde, demain.\nI am now in an old castle.\tJe suis à présent dans un vieux château.\nI am on holiday this week.\tJe suis en vacances cette semaine.\nI am on holiday this week.\tJe suis en congé cette semaine.\nI am ready to go with you.\tJe suis prêt à aller avec vous.\nI am sorry for what I did.\tDésolé de ce que j'ai fait.\nI am sorry to trouble you.\tJe suis désolée de te déranger.\nI am talking to my sister.\tJe suis en train de parler à ma sœur.\nI am through with my work.\tJ'en ai terminé avec mon travail.\nI am through with my work.\tJ'en ai fini avec mon travail.\nI am used to living alone.\tJe me suis habitué à vivre seul.\nI am used to living alone.\tJe suis habitué à vivre seul.\nI am used to living alone.\tJe suis habituée à vivre seule.\nI am using a new computer.\tJ'emploie un nouvel ordinateur.\nI am very busy these days.\tJe suis très occupé ces jours-ci.\nI am very glad to see you.\tJe suis très heureux de vous voir.\nI am very glad to see you.\tJe suis très heureux de te voir.\nI am watering the flowers.\tJe suis en train d'arroser les fleurs.\nI apologize for the delay.\tJe m'excuse pour le retard.\nI apologize for yesterday.\tJe m'excuse pour hier.\nI apologize to all of you.\tJe vous présente mes excuses à tous.\nI apologize to all of you.\tJe vous présente à tous mes excuses.\nI apologize to all of you.\tJe vous présente mes excuses à toutes.\nI apologize to all of you.\tJe vous présente à toutes mes excuses.\nI appreciate how you feel.\tJe sais ce que vous ressentez.\nI appreciate how you feel.\tJe sais ce que tu ressens.\nI appreciate the courtesy.\tJ'apprécie la politesse.\nI appreciate this so much.\tJe suis tellement reconnaissant pour ça.\nI appreciate this so much.\tJ'en suis tellement reconnaissant.\nI appreciate this so much.\tJe suis tellement reconnaissante pour ça.\nI appreciate this so much.\tJ'en suis tellement reconnaissante.\nI appreciate your concern.\tJe vous suis reconnaissant de votre préoccupation.\nI appreciate your concern.\tJe te suis reconnaissant de ta préoccupation.\nI appreciate your support.\tJe vous suis reconnaissant pour votre assistance.\nI appreciate your support.\tJe te suis reconnaissant pour ton assistance.\nI appreciate your support.\tJe vous suis reconnaissante pour votre assistance.\nI appreciate your support.\tJe te suis reconnaissante pour ton assistance.\nI arrived there too early.\tJe suis arrivé là-bas trop tôt.\nI asked her out on a date.\tJe lui demandai de sortir avec moi.\nI asked her out on a date.\tJe lui ai demandé de sortir avec moi.\nI ate a hot dog for lunch.\tJ'ai mangé un hot-dog au déjeuner.\nI ate too much last night.\tJ'ai trop mangé hier soir.\nI awoke from a long dream.\tJe me réveillai d'un long rêve.\nI believe I can trust you.\tJe pense que je peux te faire confiance.\nI believe I can trust you.\tJe pense que je peux vous faire confiance.\nI believe Tom can do that.\tJe pense que Tom peut faire cela.\nI believe he is competent.\tJe pense qu'il est compétent.\nI believe in my abilities.\tJe crois en mes aptitudes.\nI believe in my abilities.\tJ'ai foi en mes aptitudes.\nI believe that he's happy.\tJe crois qu'il est heureux.\nI blame you for this, Tom.\tJe vous blâme pour ceci, Tom.\nI blame you for this, Tom.\tJe vous reproche ceci, Tom.\nI blame you for this, Tom.\tJe te blâme pour ceci, Tom.\nI bookmarked this website.\tJ'ai créé des signets vers ce site.\nI bought a book yesterday.\tHier, j'ai acheté un livre.\nI bought a book yesterday.\tJ'ai acheté un livre hier.\nI bought a new television.\tJ'ai acheté un nouveau téléviseur.\nI bought a new television.\tJ'ai acheté une nouvelle télé.\nI bought a pair of gloves.\tJe me suis acheté une paire de gants.\nI bought this TV from Tom.\tJ'ai acheté ce téléviseur à Tom.\nI brought you some coffee.\tJe vous ai apporté un peu de café.\nI called him this morning.\tJe l'ai appelé ce matin.\nI can be there in an hour.\tJe peux être là-bas en une heure.\nI can be there in an hour.\tJe peux être là-bas dans l'heure.\nI can deliver that to Tom.\tJe peux livrer cela à Tom.\nI can do better than this.\tJe peux faire mieux que ça.\nI can do without his help.\tJ'y arriverai sans son aide.\nI can do without his help.\tJe peux le faire sans son aide.\nI can hardly believe this.\tJ'ai du mal à y croire.\nI can now die a happy man.\tJe peux désormais mourir heureux.\nI can put things in a box.\tJe peux mettre des choses dans une boîte.\nI can see it in your eyes.\tJe peux le voir dans tes yeux.\nI can see it in your eyes.\tJ'arrive à le voir dans tes yeux.\nI can see it in your eyes.\tJe parviens à le voir dans tes yeux.\nI can see it in your eyes.\tJe le perçois dans tes yeux.\nI can see it in your eyes.\tJ'arrive à le voir dans vos yeux.\nI can see it in your eyes.\tJe peux le voir dans vos yeux.\nI can see it in your eyes.\tJe parviens à le voir dans vos yeux.\nI can see it in your eyes.\tJe le perçois dans vos yeux.\nI can swim as well as you.\tJe sais nager aussi bien que toi.\nI can swim as well as you.\tJe sais nager aussi bien que vous.\nI can teach you something.\tJe peux t'apprendre quelque chose.\nI can't afford to do that.\tJe n'ai pas les moyens de faire ça.\nI can't believe it either.\tJe n'arrive pas à y croire non plus.\nI can't believe it's true.\tJe n'arrive pas à croire que ce soit vrai.\nI can't believe it's true.\tJe n'arrive pas à croire que ce soit véridique.\nI can't bend my right arm.\tJe n'arrive pas à plier mon bras droit.\nI can't catch up with Tom.\tJe ne peux pas rattraper Tom.\nI can't come over tonight.\tJe ne peux pas venir ce soir.\nI can't compete with this.\tJe ne peux pas rivaliser avec ceci.\nI can't do more than that.\tJe ne peux pas faire plus que cela.\nI can't do that on my own.\tJe n'arrive pas à le faire par moi-même.\nI can't do this by myself.\tJe ne peux pas le faire par moi-même.\nI can't do this by myself.\tJe n'arrive pas à le faire par moi-même.\nI can't do this by myself.\tJe ne parviens pas à le faire par moi-même.\nI can't do this by myself.\tJe n'arrive pas à le faire par mes propres moyens.\nI can't do this by myself.\tJe ne parviens pas à le faire par mes moyens propres.\nI can't do this job alone.\tJe n'arrive pas à faire ce travail tout seul.\nI can't do this job alone.\tJe n'arrive pas à faire ce travail toute seule.\nI can't do this on my own.\tJe n'arrive pas à faire ça par moi-même.\nI can't drive myself home.\tJe ne peux pas me conduire à la maison.\nI can't drive myself home.\tJe ne peux pas me conduire chez moi.\nI can't explain it either.\tJe ne peux pas l'expliquer non plus.\nI can't find Tom anywhere.\tJe ne trouve Tom nulle part.\nI can't get back to sleep.\tJe ne peux pas retourner dormir.\nI can't give you anything.\tJe ne peux te donner quoi que ce soit.\nI can't give you anything.\tJe ne peux vous donner quoi que ce soit.\nI can't go back to prison.\tJe ne peux pas retourner en prison.\nI can't just kick Tom out.\tJe ne peux pas virer Tom.\nI can't let them catch me.\tJe ne peux les laisser m'attraper.\nI can't live without a TV.\tJe ne peux pas vivre sans télé.\nI can't praise him enough.\tJe ne peux faire assez son éloge.\nI can't praise him enough.\tJe ne peux assez lui rendre grâce.\nI can't really understand.\tJe n'arrive pas vraiment à comprendre.\nI can't remember his name.\tJe ne peux pas me rappeler son nom.\nI can't remember his name.\tJe ne me souviens pas de son nom.\nI can't see what you mean.\tJe n'arrive pas à voir ce que vous voulez dire.\nI can't see what you mean.\tJe n'arrive pas à me figurer ce que tu veux dire.\nI can't shake off my cold.\tJe n'arrive pas à me débarrasser de mon rhume.\nI can't take another step.\tJe ne peux pas prendre une autre initiative.\nI can't take another step.\tJe ne peux faire un pas de plus.\nI can't think of his name.\tJe ne me rappelle plus son nom.\nI can't wait another week.\tJe ne peux pas attendre une semaine de plus.\nI can't wait to get there.\tJ'ai hâte d'y être.\nI cannot accept this gift.\tJe ne peux pas accepter ce cadeau.\nI cannot afford a holiday.\tJe ne peux pas me permettre de prendre des vacances.\nI cannot fix the computer.\tJe ne peux pas réparer l'ordinateur.\nI cannot stand this noise.\tJe ne peux pas supporter ce bruit.\nI caught a cold yesterday.\tJ'ai pris froid hier.\nI caught them by surprise.\tJe les ai pris par surprise.\nI could have you arrested.\tJe pourrais vous faire arrêter.\nI could not stop laughing.\tJe n'ai pu m'empêcher de rire.\nI could not stop laughing.\tJe n'ai pu m'empêcher de rigoler.\nI could not stop laughing.\tJe ne pus m'empêcher de rire.\nI could not stop laughing.\tJe ne pus m'empêcher de rigoler.\nI could've gone last week.\tJ'aurais pu y aller la semaine dernière.\nI could've gone last week.\tJ'aurais pu m'y rendre la semaine dernière.\nI couldn't do that either.\tJe ne suis pas non plus arrivé à le faire.\nI couldn't do that either.\tJe ne suis pas non plus arrivée à le faire.\nI couldn't do that either.\tJe ne suis pas non plus parvenu à le faire.\nI couldn't do that either.\tJe ne suis pas non plus parvenue à le faire.\nI couldn't find his house.\tJe ne pus trouver sa maison.\nI couldn't find his house.\tJe n'ai pas pu trouver sa maison.\nI couldn't get that lucky.\tJe ne pourrais pas être aussi chanceux.\nI couldn't get that lucky.\tJe ne pourrais pas être aussi chanceuse.\nI couldn't help but laugh.\tJe ne pouvais m'empêcher de rire.\nI couldn't live like that.\tJe ne pourrais pas vivre ainsi.\nI couldn't see Tom's face.\tJe n'ai pas pu voir le visage de Thomas.\nI couldn't stand the cold.\tJe ne pouvais pas supporter le froid.\nI cut myself with a knife.\tJe me suis coupé avec un couteau.\nI did all the work myself.\tJ'ai fait tout le travail moi-même.\nI did it out of curiosity.\tJe l'ai fait par curiosité.\nI did just like you asked.\tJ'ai fait exactement comme tu as demandé.\nI did just like you asked.\tJ'ai fait exactement comme vous avez demandé.\nI did nothing of the sort.\tJe n'ai rien fait de tel.\nI did nothing of the sort.\tJe n'ai rien fait de la sorte.\nI did think Tom might win.\tJ'ai cru en effet que Tom gagnerait peut-être.\nI didn't do it on purpose.\tJe ne l'ai pas fait exprès.\nI didn't get enough sleep.\tJe n'ai pas dormi assez.\nI didn't go to the market.\tJe n'ai pas été au marché.\nI didn't go to the market.\tJe ne me suis pas rendu au marché.\nI didn't go to the market.\tJe ne me suis pas rendue au marché.\nI didn't have lunch today.\tJe n'ai pas déjeuné aujourd'hui.\nI didn't hear you come in.\tJe ne t'ai pas entendu entrer.\nI didn't hear you come in.\tJe ne t'ai pas entendue entrer.\nI didn't hear you come in.\tJe ne vous ai pas entendu entrer.\nI didn't hear you come in.\tJe ne vous ai pas entendue entrer.\nI didn't hear you come in.\tJe ne vous ai pas entendus entrer.\nI didn't hear you come in.\tJe ne vous ai pas entendues entrer.\nI didn't know what to say.\tJe ne savais pas bien quoi dire.\nI didn't like the feeling.\tJe n'en aimais pas la sensation.\nI didn't mean to hurt you.\tJe ne voulais pas te blesser.\nI didn't mean to hurt you.\tJe ne comptais pas te blesser.\nI didn't mean to hurt you.\tJe n'avais pas l'intention de te faire de la peine.\nI didn't mean to kill him.\tJe n'avais pas l'intention de le tuer.\nI didn't pull the trigger.\tJe n'appuyai pas sur la gâchette.\nI didn't pull the trigger.\tJe n'ai pas appuyé sur la gâchette.\nI didn't say it like that.\tJe ne l'ai pas dit comme ça.\nI didn't say you did that.\tJe n'ai pas dit que tu l'as fait.\nI didn't say you did that.\tJe n'ai pas dit que vous l'avez fait.\nI didn't sign up for this.\tJe n'ai pas signé pour ça.\nI didn't sign up for this.\tJe ne me suis pas inscrit pour ça.\nI didn't sign up for this.\tJe ne me suis pas inscrite pour ça.\nI didn't sign up for this.\tJe ne me suis pas fait embaucher pour ça.\nI didn't suspect anything.\tJe ne soupçonnais rien.\nI didn't want any of that.\tJe ne voulais rien de tout ça.\nI didn't want any of that.\tJe ne voulus rien de tout ça.\nI didn't want any of that.\tJe n'ai pas voulu quoi que ce soit de tout ça.\nI didn't want to help Tom.\tJe ne voulais pas aider Tom.\nI didn't want to help Tom.\tJe n'avais pas envie d'aider Tom.\nI didn't want you to know.\tJe ne voulais pas que vous sachiez.\nI didn't want you to know.\tJe ne voulais pas que tu saches.\nI disposed of my old coat.\tJ'ai jeté mon vieux manteau.\nI do anything I feel like.\tJe fais tout ce que j'ai envie.\nI do it because I have to.\tJe le fais parce que je le dois.\nI do it because I want to.\tJe le fais car j'en ai envie.\nI do not love him anymore.\tJe ne l'aime plus.\nI do not mind what you do.\tCe que vous faites ne me dérange pas.\nI do not mind what you do.\tCe que tu fais ne me dérange pas.\nI do things in my own way.\tJe fais les choses à ma façon.\nI don't believe any of it.\tJe n'en crois rien.\nI don't believe in aliens.\tJe ne crois pas aux extra-terrestres.\nI don't believe in ghosts.\tJe ne crois pas aux fantômes.\nI don't believe we've met.\tJe ne crois pas que nous nous soyons rencontrés.\nI don't believe we've met.\tJe ne crois pas que nous nous soyons rencontrées.\nI don't care what he does.\tJe ne prête pas attention à ce qu'il fait.\nI don't care who's coming.\tJe me fiche de savoir qui vient.\nI don't drink before noon.\tJe ne bois plus avant midi.\nI don't even want to know.\tJe ne veux même pas savoir.\nI don't even want to know.\tJe ne veux même pas le savoir.\nI don't feel at ease here.\tJe ne me sens pas à l'aise ici.\nI don't feel like dancing.\tJe ne suis pas d'humeur à danser.\nI don't feel like dancing.\tJe n'ai pas le cœur à danser.\nI don't feel like dancing.\tJe n'ai pas envie de danser.\nI don't feel like playing.\tJe n'ai pas le cœur à jouer.\nI don't feel like playing.\tJe ne suis pas d'humeur à jouer.\nI don't feel like singing.\tJe n'ai pas le cœur à chanter.\nI don't feel like singing.\tJe ne suis pas d'humeur à chanter.\nI don't feel like smiling.\tJe n'ai pas le cœur à sourire.\nI don't feel like talking.\tJe n'ai pas envie de discuter.\nI don't feel like talking.\tJe n'ai pas envie de parler.\nI don't feel like talking.\tJe ne suis pas d'humeur à discuter.\nI don't feel like working.\tJe n'ai pas le cœur à travailler.\nI don't feel like working.\tJe n'ai pas envie de travailler.\nI don't find that helpful.\tJe ne trouve pas ça utile.\nI don't forget my friends.\tJe n'oublie pas mes amis.\nI don't get many visitors.\tJe ne reçois pas beaucoup de visiteurs.\nI don't get what you mean.\tJe ne comprends pas ce que vous voulez dire.\nI don't have a girlfriend.\tJe n'ai pas de petite amie.\nI don't have a girlfriend.\tJe n'ai pas de petite copine.\nI don't have a girlfriend.\tJe n'ai pas de nana.\nI don't have any brothers.\tJe n'ai pas de frères.\nI don't have any evidence.\tJe ne dispose d'aucune preuve.\nI don't have any evidence.\tJe n'ai aucune preuve.\nI don't have anything new.\tJe n'ai rien de neuf.\nI don't have many friends.\tJe n'ai pas beaucoup d'amis.\nI don't have many friends.\tJe n'ai pas beaucoup d'amies.\nI don't have much to lose.\tJe n'ai pas grand chose à perdre.\nI don't have strep throat.\tJe n'ai pas d'angine.\nI don't have time to read.\tJe n'ai pas le temps de lire.\nI don't have time to talk.\tJe n'ai pas le temps de discuter.\nI don't have your courage.\tJe n'ai pas votre courage.\nI don't have your courage.\tJe n'ai pas ton courage.\nI don't know anything yet.\tJe ne sais encore rien.\nI don't know anything yet.\tJe ne sais rien encore.\nI don't know how old I am.\tJe ne sais pas quel âge j'ai.\nI don't know how old I am.\tJ'ignore mon âge.\nI don't know how to do it.\tJ'ignore comment le faire.\nI don't know how to do it.\tJe ne sais pas comment le faire.\nI don't know how to drive.\tJe ne sais pas conduire.\nI don't know how to drive.\tJ'ignore comment conduire.\nI don't know my neighbors.\tJe ne connais pas mes voisins.\nI don't know the password.\tJe ne connais pas le mot de passe.\nI don't know the password.\tJ'ignore le mot de passe.\nI don't know those people.\tJe ne connais pas ces gens.\nI don't know what fear is.\tJ'ignore ce qu'est la peur.\nI don't know what that is.\tJe ne sais pas ce que c'est.\nI don't know what that is.\tJe ne sais pas ce que c’est.\nI don't know what that is.\tJ'ignore ce que c'est.\nI don't know what that is.\tJ'ignore ce dont il s'agit.\nI don't know what this is.\tJ'ignore ce que c'est.\nI don't know what to sing.\tJe ne sais pas quoi chanter.\nI don't know what's wrong.\tJ'ignore ce qui ne va pas.\nI don't know where Tom is.\tJe ne sais pas où est Tom.\nI don't know why I did it.\tJ'ignore pourquoi je l'ai fait.\nI don't like being inside.\tJe n'apprécie pas d'être à l'intérieur.\nI don't like being inside.\tJe n'aime pas être à l'intérieur.\nI don't like both of them.\tJe n'aime aucun des deux.\nI don't like men like him.\tJe n'aime pas les hommes comme lui.\nI don't like scary movies.\tJe n'aime pas les films d'horreur.\nI don't like sweet drinks.\tJe n'aime pas les boissons sucrées.\nI don't like this anymore.\tJe ne l'aime plus.\nI don't like this anymore.\tJe ne l'apprécie plus.\nI don't like this weather.\tJe n'aime pas ce temps.\nI don't like this weather.\tJe n'apprécie pas ce temps.\nI don't like those people.\tJe n'apprécie pas ces gens.\nI don't like those people.\tJe n'aime pas ces gens.\nI don't like your friends.\tJe n'aime pas tes amis.\nI don't like your friends.\tJe n'apprécie pas tes amis.\nI don't like your friends.\tJe n'apprécie pas tes amies.\nI don't like your friends.\tJe n'apprécie pas vos amis.\nI don't like your friends.\tJe n'apprécie pas vos amies.\nI don't like your friends.\tJe n'aime pas tes amies.\nI don't like your friends.\tJe n'aime pas vos amis.\nI don't like your friends.\tJe n'aime pas vos amies.\nI don't live here anymore.\tJe ne vis plus ici.\nI don't meet him so often.\tJe ne le rencontre pas si souvent.\nI don't mind if I get wet.\tJe m'en moque si je suis mouillé.\nI don't mind if you leave.\tJe ne vois pas d'inconvénient à ce que vous partiez.\nI don't mind if you leave.\tJe ne vois pas d'inconvénient à ce que tu partes.\nI don't mind if you smoke.\tCela ne me dérange pas si vous fumez.\nI don't mind if you smoke.\tCela ne me dérange pas que tu fumes.\nI don't need a babysitter.\tJe n'ai pas besoin de garde d'enfant.\nI don't need a girlfriend.\tJe n'ai pas besoin de petite amie.\nI don't need a girlfriend.\tJe n'ai pas besoin de petite copine.\nI don't need a wheelchair.\tJe n'ai pas besoin d'une chaise roulante.\nI don't need other people.\tJe n'ai pas besoin d'autres gens.\nI don't need that anymore.\tJe n'en ai plus besoin.\nI don't need them anymore.\tJe n'en ai plus besoin.\nI don't need this anymore.\tJe n'en ai plus besoin.\nI don't need your charity.\tJe n'ai pas besoin de votre charité.\nI don't need your charity.\tJe n'ai pas besoin de ta charité.\nI don't particularly care.\tJe ne m'en soucie guère.\nI don't really have a gun.\tJe n'ai pas vraiment d'arme.\nI don't really have a gun.\tJe ne dispose pas vraiment d'une arme.\nI don't really have a gun.\tJe n'ai pas vraiment d'arme à feu.\nI don't really have a gun.\tJe ne dispose pas vraiment d'une arme à feu.\nI don't really have a gun.\tJe ne dispose pas vraiment d'un canon.\nI don't regret doing that.\tJe ne regrette pas d'avoir fait ça.\nI don't remember anything.\tJe ne me rappelle de rien.\nI don't remember anything.\tJe ne me souviens de rien.\nI don't remember his name.\tJe ne me souviens pas de son nom.\nI don't see the relevance.\tJe n'en vois pas la pertinence.\nI don't see them anywhere.\tJe ne les vois nulle part.\nI don't support his ideas.\tJe ne supporte pas ces idées radicales.\nI don't think I can do it.\tJe ne pense pas pouvoir le faire.\nI don't think I can do it.\tJe ne pense pas que je puisse le faire.\nI don't think I can do it.\tJe ne pense pas que je parvienne à le faire.\nI don't think I can do it.\tJe ne pense pas parvenir à le faire.\nI don't think it's a wolf.\tJe ne pense pas qu'il s'agisse d'un loup.\nI don't think that's true.\tJe ne pense pas que ce soit vrai.\nI don't trust many people.\tJe ne me fie pas à beaucoup de gens.\nI don't trust politicians.\tJe ne fais pas confiance aux politiciens.\nI don't understand German.\tJe ne comprends pas l'allemand.\nI don't want any problems.\tJe ne veux pas de problèmes.\nI don't want distractions.\tJe ne veux pas de distractions.\nI don't want to be chosen.\tJe ne veux pas être choisie.\nI don't want to be chosen.\tJe ne veux pas être choisi.\nI don't want to be killed.\tJe ne veux pas être tuée.\nI don't want to be killed.\tJe ne veux pas être tué.\nI don't want to be pitied.\tJe ne veux pas qu'on ait pitié de moi.\nI don't want to fight you.\tJe ne veux pas me battre avec vous.\nI don't want to fight you.\tJe ne veux pas me battre avec toi.\nI don't want to forget it.\tJe ne veux pas l'oublier.\nI don't want to handle it.\tJe ne veux pas m'en charger.\nI don't want to leave Tom.\tJe ne veux pas quitter Tom.\nI don't want to leave you.\tJe ne veux pas vous quitter.\nI don't want to leave you.\tJe ne veux pas te quitter.\nI don't want to live here.\tJe ne veux vivre ici.\nI don't want to lose Mary.\tJe ne veux pas perdre Mary.\nI don't want to marry you.\tJe ne veux pas vous épouser.\nI don't want to marry you.\tJe ne veux pas t'épouser.\nI don't want to overreact.\tJe ne veux pas réagir de manière excessive.\nI don't want to play golf.\tJe ne veux pas jouer au golf.\nI don't want to play golf.\tJe n'ai pas envie de jouer au golf.\nI don't want to shoot you.\tJe ne veux pas vous descendre.\nI don't want to shoot you.\tJe ne veux pas te descendre.\nI don't want to shoot you.\tJe ne veux pas vous tirer dessus.\nI don't want to shoot you.\tJe ne veux pas te tirer dessus.\nI don't want to upset you.\tJe ne veux pas vous contrarier.\nI don't want to upset you.\tJe ne veux pas te contrarier.\nI don't want you to leave.\tJe ne veux pas que vous partiez.\nI don't want you to leave.\tJe ne veux pas que tu partes.\nI don't want you to panic.\tJe ne veux pas que vous vous paniquiez.\nI don't want you to worry.\tJe ne veux pas que vous vous fassiez de souci.\nI don't want you to worry.\tJe ne veux pas que tu te fasses de souci.\nI don't wish to anger you.\tJe ne souhaite pas te mettre en colère.\nI don't wish to anger you.\tJe ne souhaite pas vous mettre en colère.\nI don't wish to interfere.\tJe ne souhaite pas m'interposer.\nI doubt if he is a lawyer.\tJe doute qu'il soit avocat.\nI enjoy it more each time.\tJe m'en réjouis chaque fois davantage.\nI enjoy it more each time.\tJ'y prends chaque fois davantage de plaisir.\nI enjoy playing the blues.\tJ'aime jouer du blues.\nI failed the driving test.\tJ'ai raté le permis.\nI feed my dog twice a day.\tJe nourris mon chien deux fois par jour.\nI feel a lot better today.\tJe me sens bien mieux aujourd'hui.\nI feel bad enough already.\tJe me sens déjà assez mal comme ça.\nI feel like I'm going mad.\tJ'ai l'impression de devenir fou.\nI feel like I'm going mad.\tJ'ai l'impression de devenir folle.\nI feel like such an idiot.\tJe me sens tellement idiot.\nI feel like such an idiot.\tJe me sens tellement idiote.\nI feel like taking a rest.\tJ'ai envie de me reposer.\nI feel like taking a walk.\tJ'ai envie de me promener.\nI feel more confident now.\tJe me sens désormais plus en confiance.\nI feel more confident now.\tJe me sens désormais davantage en confiance.\nI feel more confident now.\tJe me sens désormais plus sûr de moi.\nI feel more confident now.\tJe me sens désormais plus sûre de moi.\nI feel so alive right now.\tJe me sens tellement en vie, en ce moment.\nI feel tired all the time.\tJe me sens tout le temps fatigué.\nI feel tired all the time.\tJe me sens tout le temps fatiguée.\nI feel very sorry for him.\tJe me sens vraiment désolé pour lui.\nI fell when I was running.\tJe suis tombé en courant.\nI fell when I was running.\tJe suis tombé alors que je courais.\nI felt like such an idiot.\tJ'ai eu le sentiment d'être un tel idiot.\nI felt like such an idiot.\tJ'ai eu le sentiment d'être une telle idiote.\nI figured you should know.\tJe me suis figuré que tu devrais le savoir.\nI figured you should know.\tJe me suis figuré que vous devriez le savoir.\nI finally gave up smoking.\tJ'ai finalement arrêté de fumer.\nI find it hard to believe.\tJ'ai du mal à le croire.\nI fixed the car yesterday.\tJ'ai réparé la voiture hier.\nI flew to Osaka yesterday.\tJe me suis envolé pour Osaka hier.\nI flunked two of my tests.\tJ'ai foiré deux de mes épreuves.\nI forget to telephone him.\tJ'oublie de lui téléphoner.\nI forgot it in the garage.\tJe l'ai oubliée dans la remise.\nI forgot my email address.\tJ'ai oublié mon adresse électronique.\nI forgot my email address.\tJ'ai oublié mon mél.\nI forgot to ask your name.\tJ'ai oublié de vous demander votre nom.\nI forgot to ask your name.\tJ'ai oublié de te demander ton nom.\nI forgot to bring the map.\tJ'ai oublié d'apporter la carte.\nI forgot to lock the door.\tJ'oubliai de verrouiller la porte.\nI forgot to lock the door.\tJ'ai oublié de verrouiller la porte.\nI forgot to lock the door.\tJ'oubliai de fermer la porte à clé.\nI forgot to lock the door.\tJ'ai oublié de fermer la porte à clé.\nI found a nice restaurant.\tJ'ai trouvé un restaurant sympa.\nI found out where she was.\tJ'ai découvert où elle était.\nI found the broken camera.\tJ'ai trouvé la caméra cassée.\nI gave my old coat to Tom.\tJ'ai donné mon vieux manteau à Tom.\nI get along with everyone.\tJe m'entends bien avec tout le monde.\nI go swimming once a week.\tJe vais nager une fois par semaine.\nI go to school by bicycle.\tJe me rends à l'école en vélo.\nI go where I'm told to go.\tJe vais là où on me dit d'aller.\nI go where I'm told to go.\tJe vais là où on me dit de me rendre.\nI got hammered last night.\tJe me suis ruiné, la nuit dernière\nI got hammered last night.\tJe me suis bourré la gueule, hier soir.\nI got hammered last night.\tJe me suis torché la gueule, la nuit dernière.\nI got married 8 years ago.\tJe me suis marié il y a 8 ans.\nI got my bicycle repaired.\tJ'ai fait réparer ma bicyclette.\nI got my bicycle repaired.\tJ'ai fait réparer mon vélo.\nI got the ticket for free.\tJ'ai reçu le billet gratuitement.\nI got there ahead of time.\tJ'y suis parvenu en avance.\nI got there ahead of time.\tJ'y parvins en avance.\nI got there ahead of time.\tJ'y suis arrivé en avance.\nI got tired with the work.\tJe suis devenu fatigué du travail.\nI grew up in a small town.\tJ'ai grandi dans une petite ville.\nI grew up in a small town.\tJ'ai grandi dans une bourgade.\nI groped for a flashlight.\tJe tâtonnais pour retrouver la lampe de poche.\nI guess I should be going.\tJe suppose que je devrais y aller.\nI guess I should be going.\tJe suppose que je devrais me mettre en route.\nI guess I should be going.\tJe suppose que je devrais m'en aller.\nI guess that's all I need.\tJe suppose que c'est tout ce dont j'ai besoin.\nI guess we're not invited.\tJe suppose que nous ne sommes pas invités.\nI guess we're not invited.\tJe suppose que nous ne sommes pas invitées.\nI had a good night's rest.\tJ'ai eu une bonne nuit de repos.\nI had a good night's rest.\tJ'eus une bonne nuit de repos.\nI had a good time tonight.\tJ'ai passé du bon temps, ce soir.\nI had a healthy breakfast.\tJ'ai pris un solide petit déjeuner.\nI had a premonition today.\tJ'ai eu une prémonition, aujourd'hui.\nI had him repair my watch.\tJe lui ai fait réparer ma montre.\nI had my doubts about you.\tJ'ai eu mes doutes à ton sujet.\nI had my doubts about you.\tJ'ai eu mes doutes à votre sujet.\nI had my photograph taken.\tJe me suis fait prendre en photo.\nI had no idea who she was.\tJe n'avais aucune idée de qui c'était.\nI had no idea who she was.\tJe n'avais aucune idée de son identité.\nI had no place else to go.\tJe ne disposais pas d'autre endroit où aller.\nI had no place else to go.\tJe ne disposais pas d'autre endroit où me rendre.\nI had to change the rules.\tJ'ai dû changer les règles.\nI had to change the rules.\tIl m'a fallu changer les règles.\nI had to get out of there.\tIl m'a fallu sortir de là.\nI had to get out of there.\tIl m'a fallu en sortir.\nI had to get out of there.\tJ'ai dû en sortir.\nI had to get out of there.\tJ'ai dû sortir de là.\nI had to refuse her offer.\tJ'ai dû refuser son offre.\nI hardly slept last night.\tJ'ai à peine dormi, la nuit dernière.\nI hardly slept last night.\tJ'ai à peine dormi, la nuit passée.\nI hate being photographed.\tJe déteste être photographié.\nI hate being photographed.\tJe déteste être photographiée.\nI hate fluorescent lights.\tJe déteste l'éclairage fluorescent.\nI hate this job sometimes.\tJe déteste ce boulot, parfois.\nI hate this kind of place.\tJe déteste ce genre d'endroit.\nI have a Facebook account.\tJ'ai un compte Facebook.\nI have a business meeting.\tJ'ai une réunion d'affaires.\nI have a business partner.\tJ'ai un partenaire en affaires.\nI have a couple questions.\tJ'ai quelques questions.\nI have a decision to make.\tJ'ai une décision à prendre.\nI have a delivery for you.\tJ'ai une livraison à votre intention.\nI have a delivery to make.\tJ'ai une livraison à faire.\nI have a dog and two cats.\tJ'ai un chien et deux chats.\nI have a fear of the dark.\tJ'ai peur de l'obscurité.\nI have a few friends here.\tJ'ai quelques amis ici.\nI have a few friends here.\tJ'ai quelques amies ici.\nI have a job I have to do.\tJ'ai un boulot à effectuer.\nI have a little money now.\tJ'ai un peu d'argent maintenant.\nI have a little money now.\tJ'ai désormais un peu d'argent.\nI have a lot of bad teeth.\tJ'ai beaucoup de mauvaises dents.\nI have a lot of neighbors.\tJ'ai beaucoup de voisins.\nI have a lot of questions.\tJ'ai de nombreuses questions.\nI have a lot of work here.\tJ'ai beaucoup de travail ici.\nI have a much better idea.\tJ'ai une bien meilleure idée.\nI have a poor imagination.\tJe suis dénué d'imagination.\nI have a poor imagination.\tJe suis dénuée d'imagination.\nI have a prior engagement.\tJe suis déjà pris.\nI have a prior engagement.\tJe suis déjà prise.\nI have a prior engagement.\tJ'ai une obligation antérieure.\nI have a schedule to keep.\tIl me faut m'en tenir à l'horaire.\nI have a solution in mind.\tJ'ai une solution en tête.\nI have a solution in mind.\tJ'ai une solution à l'esprit.\nI have a stone in my shoe.\tJ'ai un caillou dans la chaussure.\nI have a ten-year old son.\tJ'ai un fils de dix ans.\nI have a ten-year old son.\tJ'ai un fils âgé de dix ans.\nI have a ten-year-old boy.\tJ'ai un garçon de dix ans.\nI have a ten-year-old boy.\tJ'ai un garçon âgé de dix ans.\nI have a very good memory.\tJe suis doté d'une excellente mémoire.\nI have absolutely no clue.\tJe n'en ai absolument aucune idée.\nI have absolutely no idea.\tJe n'en ai absolument aucune idée.\nI have almost no appetite.\tJe n'ai presque pas d'appétit.\nI have almost no appetite.\tJe n'ai pratiquement pas d'appétit.\nI have an apology to make.\tJe me dois de présenter mes excuses.\nI have an eating disorder.\tJe souffre d'un désordre alimentaire.\nI have an idea for a song.\tJ'ai l'idée d'une chanson.\nI have an idea for a song.\tJ'ai une idée de chanson.\nI have another engagement.\tJ'ai un autre rendez-vous.\nI have another engagement.\tJ'ai une autre obligation.\nI have another obligation.\tJe suis soumis à une autre obligation.\nI have at least ten books.\tJ'ai au moins dix livres.\nI have been expecting you.\tJe t'ai attendu.\nI have been expecting you.\tJe vous ai attendu.\nI have been expecting you.\tJe vous ai attendue.\nI have been expecting you.\tJe vous ai attendus.\nI have been expecting you.\tJe vous ai attendues.\nI have been expecting you.\tJe t'ai attendue.\nI have been to Kyoto once.\tJe suis allé une fois à Kyoto.\nI have bigger fish to fry.\tJ'ai des choses plus importantes sur le feu.\nI have business elsewhere.\tJ'ai à faire ailleurs.\nI have difficulty chewing.\tJ'ai du mal à mâcher.\nI have feeling in my legs.\tJ'ai mal aux jambes.\nI have had an inspiration.\tJ'ai eu une inspiration.\nI have homework to finish.\tJ'ai des devoirs à terminer.\nI have just what you need.\tJ'ai précisément ce qu'il vous faut.\nI have just what you need.\tJ'ai précisément ce qu'il te faut.\nI have just what you need.\tJe dispose précisément de ce qu'il vous faut.\nI have just what you need.\tJe dispose précisément de ce qu'il te faut.\nI have low blood pressure.\tJ'ai une tension basse.\nI have met him many times.\tJe l'ai rencontré à de nombreuses reprises.\nI have midterms next week.\tJ'ai les examens intermédiaires, la semaine prochaine.\nI have my share of doubts.\tJ'ai mon lot de doutes.\nI have no control over it.\tJe n'en ai aucun contrôle.\nI have no idea where I am.\tJe n'ai aucune idée d'où je me trouve.\nI have not seen him since.\tJe ne l'ai pas vu depuis.\nI have nothing else to do.\tJe n'ai rien d'autre à faire.\nI have nothing to declare.\tJe n'ai rien à déclarer.\nI have plenty of theories.\tJ'ai des tas de théories.\nI have relatives in Milan.\tJ'ai de la famille à Milan.\nI have run short of money.\tJe me suis trouvé à court d'argent.\nI have run short of money.\tJe me suis trouvée à court d'argent.\nI have said no such thing.\tJe n'ai jamais dit ça.\nI have six mouths to feed.\tJ'ai six bouches à nourrir.\nI have some English books.\tJ'ai quelques livres anglais.\nI have some gifts for you.\tJ'ai des cadeaux pour vous.\nI have some gifts for you.\tJ'ai des cadeaux pour toi.\nI have some money with me.\tJ'ai un peu d'argent avec moi.\nI have some money with me.\tJ'ai un peu d'argent sur moi.\nI have some reading to do.\tIl me faut lire certaines choses.\nI have some reading to do.\tJ'ai de la lecture.\nI have some very bad news.\tJ'ai de très mauvaises nouvelles.\nI have some very sad news.\tJ'ai de bien tristes nouvelles.\nI have something of yours.\tJ'ai quelque chose à toi.\nI have something of yours.\tJ'ai quelque chose à vous.\nI have something to trade.\tJ'ai quelque chose à échanger.\nI have something you want.\tJ'ai quelque chose que tu veux.\nI have something you want.\tJ'ai quelque chose que vous voulez.\nI have to clean the house.\tJe dois nettoyer la maison.\nI have to do it by myself.\tIl me faut le faire par moi-même.\nI have to do it by myself.\tIl faut que je le fasse par moi-même.\nI have to do it by myself.\tJe dois le faire par moi-même.\nI have to do what's right.\tIl me faut faire ce qui convient.\nI have to do what's right.\tIl me faut faire ce qui est juste.\nI have to get dressed now.\tIl me faut maintenant m'habiller.\nI have to get out of here.\tIl faut que je sorte d'ici.\nI have to get out of here.\tIl me faut sortir d'ici.\nI have to go back to work.\tIl me faut retourner au travail.\nI have to go to a meeting.\tJe dois aller à une réunion.\nI have to go to my office.\tIl me faut me rendre à mon bureau.\nI have to look for my pen.\tJe dois chercher mon stylo.\nI have to make a decision.\tJe dois prendre une décision.\nI have to make a decision.\tIl me faut prendre une décision.\nI have to make some calls.\tIl me faut passer des coups de fil.\nI have to make some calls.\tIl me faut passer des appels.\nI have to put my shoes on.\tIl me faut mettre mes chaussures.\nI have to put my shoes on.\tJe dois mettre mes chaussures.\nI have to start somewhere.\tIl me faut commencer quelque part.\nI have to take the chance.\tIl me faut saisir l'opportunité.\nI have very good eyesight.\tJe suis doté d'une très bonne vue.\nI have very good eyesight.\tJe suis dotée d'une très bonne vue.\nI have visited Paris once.\tJ'ai eu une fois l'occasion de visiter Paris.\nI have your schedule here.\tJe dispose ici de votre horaire.\nI have your schedule here.\tJe dispose ici de votre programme.\nI have your schedule here.\tJe dispose ici de ton programme.\nI haven't been successful.\tJe n'ai pas réussi.\nI haven't broken any laws.\tJe n'ai enfreint aucune loi.\nI haven't eaten lunch yet.\tJe n'ai pas encore déjeuné.\nI haven't eaten lunch yet.\tJe n'ai pas encore dîné.\nI haven't gotten paid yet.\tJe n'ai pas encore été payée.\nI haven't gotten paid yet.\tJe n'ai pas encore été payé.\nI haven't lost any weight.\tJe n'ai pas perdu de poids.\nI hear what you're saying.\tJ'entends ce que vous dites.\nI hear what you're saying.\tJ'entends ce que tu dis.\nI heard a noise behind me.\tJ'ai entendu un bruit derrière moi.\nI heard shots being fired.\tJ'ai entendu qu'on tirait des coups de feu.\nI heard something outside.\tJ'ai entendu quelque chose à l'extérieur.\nI heard you bought a boat.\tJ'ai entendu que tu avais acheté un bateau.\nI heard you got a new car.\tJ'ai entendu dire que tu avais une nouvelle voiture.\nI heard you got a new car.\tJ'ai entendu dire que vous aviez une nouvelle voiture.\nI hope I'll see you again.\tJ'espère vous revoir.\nI hope I'll see you again.\tJ'espère te revoir.\nI hope I'm not boring you.\tJ'espère que je ne vous ennuie pas.\nI hope I'm not boring you.\tJ'espère que je ne t'ennuie pas.\nI hope everything is okay.\tJ'espère que tout va bien.\nI hope he will get better.\tJ'espère qu'il va se rétablir.\nI hope that's good enough.\tJ'espère que c'est assez bon.\nI hope that's good enough.\tJ'espère que c'est assez bien.\nI hope they appreciate it.\tJ'espère qu'elles l'apprécient.\nI hope they appreciate it.\tJ'espère qu'ils l'apprécient.\nI hope this data is wrong.\tJ'espère que ces données sont fausses.\nI hope this isn't a dream.\tJ'espère qu'il ne s'agit pas d'un rêve.\nI hope we didn't wake you.\tJ'espère que nous ne vous avons pas réveillées.\nI hope we didn't wake you.\tJ'espère que nous ne vous avons pas réveillés.\nI hope we didn't wake you.\tJ'espère que nous ne vous avons pas réveillée.\nI hope we didn't wake you.\tJ'espère que nous ne vous avons pas réveillé.\nI hope we didn't wake you.\tJ'espère que nous ne t'avons pas réveillée.\nI hope we didn't wake you.\tJ'espère que nous ne t'avons pas réveillé.\nI hope we're not too late.\tJ'espère que nous ne sommes pas trop en retard.\nI hope you all understand.\tJ'espère que vous comprenez tous.\nI hope you all understand.\tJ'espère que vous comprenez toutes.\nI hope you brought coffee.\tJ'espère que vous avez apporté du café.\nI hope you brought coffee.\tJ'espère que tu as apporté du café.\nI hope you can forgive me.\tJ'espère que vous pouvez me pardonner.\nI hope you can forgive me.\tJ'espère que tu peux me pardonner.\nI hope you have insurance.\tJ'espère que vous disposez d'une assurance.\nI hope you have insurance.\tJ'espère que vous êtes couvert par une assurance.\nI hope you have insurance.\tJ'espère que vous êtes couverts par une assurance.\nI hope you have insurance.\tJ'espère que vous êtes couverte par une assurance.\nI hope you have insurance.\tJ'espère que vous êtes couvertes par une assurance.\nI hope you have insurance.\tJ'espère que tu es couvert par une assurance.\nI hope you have insurance.\tJ'espère que tu es couverte par une assurance.\nI hope you have insurance.\tJ'espère que tu disposes d'une assurance.\nI hope you two are hungry.\tJ'espère que vous avez faim tous les deux.\nI hope you two are hungry.\tJ'espère que vous avez faim toutes les deux.\nI hope you're well rested.\tJ'espère que vous êtes bien reposées.\nI hope you're well rested.\tJ'espère que vous êtes bien reposés.\nI hope you're well rested.\tJ'espère que vous êtes bien reposée.\nI hope you're well rested.\tJ'espère que vous êtes bien reposé.\nI hope you're well rested.\tJ'espère que tu es bien reposée.\nI hope you're well rested.\tJ'espère que tu es bien reposé.\nI ironed the handkerchief.\tJ'ai repassé le mouchoir.\nI just bought these shoes.\tJe viens de faire l'acquisition de ces chaussures.\nI just bought these shoes.\tJe viens d'acheter ces chaussures.\nI just can't believe this.\tJe ne parviens simplement pas à le croire.\nI just can't believe this.\tJe n'arrive simplement pas à le croire.\nI just can't do that here.\tJe ne peux simplement pas faire ça ici.\nI just can't get it right.\tJe ne parviens simplement pas à le comprendre correctement.\nI just can't get it right.\tJe ne parviens pas à trouver la bonne réponse.\nI just couldn't stay away.\tJe ne pouvais simplement pas me tenir à distance.\nI just don't care anymore.\tJe m'en fiche, désormais, un point c'est tout.\nI just don't feel like it.\tJe n'en ai juste pas envie.\nI just don't feel like it.\tJe ne m'en sens juste pas le cœur.\nI just don't feel like it.\tJe n'en suis juste pas d'humeur.\nI just feel like relaxing.\tJ'ai juste envie de me détendre.\nI just found an old diary.\tJe viens de trouver un vieux journal.\nI just found out about it.\tJe viens de le découvrir.\nI just got here last week.\tJe viens d'arriver ici la semaine dernière.\nI just got here yesterday.\tJe viens d'arriver hier.\nI just got some good news.\tJe viens d'avoir de bonnes nouvelles.\nI just kept my mouth shut.\tJe me suis simplement tue.\nI just kept my mouth shut.\tJe me suis simplement tu.\nI just love bargain sales.\tJ'adore les soldes, un point c'est tout.\nI just love happy endings.\tJ'adore tout simplement les fins heureuses.\nI just love happy endings.\tJ'adore les fins heureuses, un point c'est tout.\nI just need a little time.\tIl ne me faut qu'un peu de temps.\nI just need a little time.\tJe n'ai besoin que d'un peu de temps.\nI just realized something.\tJe viens de prendre conscience de quelque chose.\nI just want a normal life.\tJe veux seulement une vie normale.\nI just want to be perfect.\tJe veux simplement être parfaite.\nI just want to be perfect.\tJe veux simplement être parfait.\nI just want to find a cab.\tJe veux simplement trouver un taxi.\nI just want to watch this.\tJe veux simplement regarder ça.\nI just want you to listen.\tJe veux simplement que vous écoutiez.\nI just want you to listen.\tJe veux simplement que tu écoutes.\nI kind of like this place.\tJ'aime assez cet endroit.\nI kissed her on the mouth.\tJe l'ai embrassée sur la bouche.\nI knew I'd seen it before.\tJe savais que je l'avais vu auparavant.\nI knew my time would come.\tJe savais que mon moment viendrait.\nI knew there was a reason.\tJe savais qu'il y avait une raison.\nI knew this was a mistake.\tJe savais que c'était une erreur.\nI knew this wouldn't work.\tJe savais que ça ne fonctionnerait pas.\nI knew you couldn't do it.\tJe savais que vous ne pouviez pas le faire.\nI knew you couldn't do it.\tJe savais que vous n'étiez pas en mesure de le faire.\nI knew you couldn't do it.\tJe savais que tu ne pouvais pas le faire.\nI knew you couldn't do it.\tJe savais que tu n'étais pas en mesure de le faire.\nI knew you were behind it.\tJe savais que vous étiez derrière.\nI knew you were behind it.\tJe savais que tu étais derrière.\nI know I'm in trouble now.\tJe sais que je suis désormais dans le pétrin.\nI know Tom isn't a racist.\tJe sais que Tom n'est pas raciste.\nI know a man who can help.\tJe connais un homme qui pourrait donner un coup de main.\nI know all I need to know.\tJe sais tout ce que je dois savoir.\nI know exactly how it was.\tJe sais exactement comment c'était.\nI know exactly what to do.\tJe sais exactement quoi faire.\nI know exactly where I am.\tJe sais exactement où je me trouve.\nI know how hard it's been.\tJe sais combien ça a été dur.\nI know how to drive a car.\tJe sais comment conduire une voiture.\nI know how to drive a car.\tJe sais conduire une voiture.\nI know how to handle this.\tJe sais comment gérer ça.\nI know how to handle this.\tJe sais comment régler ça.\nI know how to settle this.\tJe sais comment régler ça.\nI know just what you need.\tJe sais précisément ce dont vous avez besoin.\nI know just what you need.\tJe sais précisément ce dont tu as besoin.\nI know that I do not know.\tJe sais que je ne sais pas.\nI know that Tom loves you.\tJe sais que Tom t'aime.\nI know that was a mistake.\tJe sais que ça a été une erreur.\nI know that you live here.\tJe sais que c'est là que tu vis.\nI know what he's thinking.\tJe sais ce qu'il est en train de penser.\nI know what he's thinking.\tJe sais ce qu'il pense.\nI know what is in the box.\tJe sais ce qu'il y a dans cette boîte.\nI know what it feels like.\tJe sais ce que l'on ressent.\nI know what they're doing.\tJe sais ce qu'ils font.\nI know what they're doing.\tJe sais ce qu'ils sont en train de faire.\nI know what they're doing.\tJe sais ce qu'elles sont en train de faire.\nI know what they're doing.\tJe sais ce qu'elles font.\nI know what this is about.\tJe sais de quoi il s'agit.\nI know what this is about.\tJe sais de quoi il retourne.\nI know who asked you here.\tJe sais qui t'a requis ici.\nI know who asked you here.\tJe sais qui vous a requis ici.\nI know you don't trust us.\tJe sais que vous ne nous faites pas confiance.\nI know you don't trust us.\tJe sais que tu ne nous fais pas confiance.\nI know you hired a lawyer.\tJe sais que vous avez pris un avocat.\nI know you hired a lawyer.\tJe sais que tu as pris un avocat.\nI know you like chocolate.\tJe sais que vous aimez le chocolat.\nI know you like chocolate.\tJe sais que vous appréciez le chocolat.\nI know you like chocolate.\tJe sais que tu aimes le chocolat.\nI know you like chocolate.\tJe sais que tu apprécies le chocolat.\nI know you must be afraid.\tJe sais que tu dois être effrayée.\nI know you must be afraid.\tJe sais que tu dois être effrayé.\nI know you must be afraid.\tJe sais que vous devez être effrayée.\nI know you must be afraid.\tJe sais que vous devez être effrayées.\nI know you must be afraid.\tJe sais que vous devez être effrayés.\nI know you must be afraid.\tJe sais que vous devez être effrayé.\nI know you're not serious.\tJe sais que tu n'es pas sérieux.\nI know you're not serious.\tJe sais que tu n'es pas sérieuse.\nI know you're not serious.\tJe sais que vous n'êtes pas sérieux.\nI know you're not serious.\tJe sais que vous n'êtes pas sérieuse.\nI know you're not serious.\tJe sais que vous n'êtes pas sérieuses.\nI learned French in Paris.\tJ'ai appris le français à Paris.\nI learned a little French.\tJ'ai appris un peu de français.\nI learned something today.\tJ'ai appris quelque chose aujourd'hui.\nI left as soon as I could.\tJe suis parti dès que j'ai pu.\nI left as soon as I could.\tJe suis parti aussi tôt que j'ai pu.\nI left in kind of a hurry.\tJe suis parti dans une sorte de précipitation.\nI left the money with him.\tJe lui ai prêté de l'argent.\nI like both dogs and cats.\tJ'aime autant les chats que les chiens.\nI like instrumental music.\tJ'aime la musique instrumentale.\nI like listening to music.\tJ'aime écouter de la musique.\nI like speaking in French.\tJ’aime parler en français.\nI like swimming very much.\tJ'aime vraiment nager.\nI like the way she smiles.\tLa manière dont elle sourit me plait.\nI like to help my friends.\tJ'aime aider mes amis.\nI like to play basketball.\tJ'aime jouer au basket-ball.\nI like to play with words.\tJ'aime jouer avec les mots.\nI like traveling by train.\tJ'aime voyager par le train.\nI like watching Tom dance.\tJ'aime regarder Tom danser.\nI like your hair that way.\tJ'aime tes cheveux, ainsi.\nI like your hair that way.\tJ'aime vos cheveux, ainsi.\nI live and work in France.\tJe vis et travaille en France.\nI live and work in France.\tJ'habite et travaille en France.\nI looked all over for Tom.\tJ'ai cherché Tom partout.\nI lost my watch yesterday.\tJ'ai perdu ma montre hier.\nI lost my way in New York.\tJe me suis perdu à New York.\nI love both cats and dogs.\tJ'aime à la fois les chats et les chiens.\nI love both cats and dogs.\tJ'aime et les chats et les chiens.\nI love going to the beach.\tJ'adore aller à la plage.\nI love the great outdoors.\tJ'aime les grands espaces.\nI love the way Tom thinks.\tJ'aime la façon dont Tom pense.\nI love the way Tom thinks.\tJ'aime la façon que Tom a de penser.\nI love three-day weekends.\tJ'adore les week-ends de trois jours.\nI love you more than ever.\tJe vous aime plus que jamais.\nI love you more than ever.\tJe t'aime plus que jamais.\nI made a careless mistake.\tJ'ai commis une faute d'inattention.\nI made these boxes myself.\tJ'ai fait ces boîtes moi-même.\nI made these boxes myself.\tJ'ai fait ces boîtes par moi-même.\nI married off my daughter.\tJ'ai marié ma fille.\nI may actually have to go.\tIl se peut qu'il me faille partir.\nI may actually have to go.\tIl se peut qu'il me faille y aller.\nI may be gone for a while.\tIl se peut que je sois parti un moment.\nI may be gone for a while.\tIl se peut que je sois partie un moment.\nI may give it another try.\tIl se peut que j'en fasse à nouveau la tentative.\nI may give it another try.\tIl se peut que j'en fasse à nouveau l'essai.\nI may have made a mistake.\tJ'ai pu commettre une erreur.\nI may have made a mistake.\tPeut-être me suis-je trompé.\nI missed you guys so much!\tVous m'avez tellement manqué, les mecs !\nI must have been dreaming.\tJ'ai dû rêver.\nI must have caught a cold.\tJ'ai dû attraper froid.\nI must have misunderstood.\tJ'ai dû comprendre de travers.\nI must have misunderstood.\tJ'ai dû mal comprendre.\nI must tell you something.\tIl me faut vous dire quelque chose.\nI must tell you something.\tIl me faut te dire quelque chose.\nI need a bigger challenge.\tJ'ai besoin d'un défi plus élevé.\nI need a bigger challenge.\tIl me faut un défi plus élevé.\nI need a little help here.\tJ'ai besoin d'un peu d'aide, là.\nI need a little help here.\tIl me faut un peu d'aide, là.\nI need a little help here.\tJ'ai besoin d'un peu d'aide, à ce stade.\nI need a little help here.\tIl me faut un peu d'aide, à ce stade.\nI need a little more time.\tIl me faut un peu plus de temps.\nI need a pencil sharpener.\tJ'ai besoin d'un taille-crayon.\nI need a receipt for that.\tIl me faut un reçu pour cela.\nI need change for the bus.\tIl me faut de la monnaie pour le bus.\nI need medical assistance.\tJ'ai besoin d'une assistance médicale.\nI need some get-up-and-go.\tJ'ai besoin d'une stimulation.\nI need some get-up-and-go.\tJ'ai besoin d'énergie.\nI need some time to think.\tIl me faut un peu de temps pour réfléchir.\nI need someone to hold me.\tJ'ai besoin que quelqu'un me tienne.\nI need this more than you.\tJ'en ai plus besoin que toi.\nI need this more than you.\tJ'en ai plus besoin que de toi.\nI need this more than you.\tJ'en ai plus besoin que vous.\nI need this more than you.\tJ'en ai plus besoin que de vous.\nI need to ask you a favor.\tIl me faut vous demander une faveur.\nI need to ask you a favor.\tIl me faut te demander une faveur.\nI need to be here all day.\tIl me faut être ici toute la journée.\nI need to borrow your car.\tIl me faut emprunter votre voiture.\nI need to borrow your car.\tIl me faut emprunter ta voiture.\nI need to borrow your pen.\tIl me faut t'emprunter ton stylo.\nI need to borrow your pen.\tIl me faut vous emprunter votre stylo.\nI need to buy some stamps.\tIl me faut acheter des timbres.\nI need to change my shirt.\tIl me faut changer de chemise.\nI need to change my tires.\tIl faut que je change mes pneus.\nI need to find a restroom.\tIl me faut trouver des toilettes.\nI need to get out of here.\tIl faut que je sorte d'ici.\nI need to get out of town.\tIl me faut sortir de la ville.\nI need to get started now.\tIl faut que je m'y mette, maintenant.\nI need to see you tonight.\tIl me faut te voir ce soir.\nI need to see you tonight.\tIl me faut vous voir ce soir.\nI need to take Monday off.\tIl me faut prendre ma journée de lundi.\nI need to take your pulse.\tJe dois vous prendre le pouls.\nI need to talk to someone.\tIl me faut parler à quelqu'un.\nI need to talk to you now.\tIl me faut te parler à l'instant.\nI need to talk to you now.\tIl me faut vous parler à l'instant.\nI need to write that down.\tIl me faut en prendre note.\nI need to write that down.\tIl me faut l'écrire.\nI need to write that down.\tIl me faut coucher ça sur le papier.\nI neither drink nor smoke.\tJe ne bois ni ne fume.\nI neither smoke nor drink.\tJe ne fume ni ne bois.\nI never worried about Tom.\tJe ne m’inquiétais jamais pour Tom.\nI never would've shot you.\tJe ne t'aurais jamais tiré dessus.\nI never would've shot you.\tJe ne vous aurais jamais tiré dessus.\nI often stay up all night.\tJe fais souvent des nuits blanches.\nI often stay up all night.\tJe veille souvent toute la nuit.\nI only have one condition.\tJe n'ai qu'une condition.\nI only have one condition.\tJ'ai seulement une condition.\nI painted the fence green.\tJ'ai peint la barrière en vert.\nI perspire a lot at night.\tJe transpire beaucoup la nuit.\nI picked you some flowers.\tJe vous ai cueilli des fleurs.\nI picked you some flowers.\tJe t'ai cueilli des fleurs.\nI planned a party for Tom.\tJ'ai organisé une fête pour Tom.\nI played soccer yesterday.\tJ'ai joué au foot hier.\nI plucked a daisy for her.\tJ'ai cueilli une pâquerette à son intention.\nI prefer modern furniture.\tJe préfère l'ameublement moderne.\nI prefer spring to autumn.\tJe préfère le printemps à l'automne.\nI prefer to go by bicycle.\tJe préfère y aller à vélo.\nI prefer to go by bicycle.\tJe préfère m'y rendre en vélo.\nI prefer to remain seated.\tJe préfère rester assis.\nI prefer to remain seated.\tJe préfère rester assise.\nI punched him in the chin.\tJe l'ai frappé au menton.\nI put on my shoes at once.\tJ'ai immédiatement mis mes chaussures.\nI put on my shoes at once.\tJe mis immédiatement mes chaussures.\nI question your sincerity.\tJe mets votre sincérité en doute.\nI question your sincerity.\tJe mets ta sincérité en doute.\nI rarely go to the movies.\tJe vais rarement au cinéma.\nI read a book as I walked.\tJe lisais un livre tout en marchant.\nI read a lot of magazines.\tJe lis de nombreux magazines.\nI read a lot of magazines.\tJe lus de nombreux magazines.\nI read a lot of magazines.\tJ'ai lu de nombreux magazines.\nI read all kinds of books.\tJ'ai lu plein de types de livres.\nI read all kinds of books.\tJe lis toutes sortes de livres.\nI read all kinds of books.\tJ'ai lu toutes sortes de livres.\nI read the New York Times.\tJe lis le New York Times.\nI realized I couldn't win.\tJe pris conscience que je ne pouvais gagner.\nI realized I couldn't win.\tJe pris conscience que je ne pouvais pas gagner.\nI realized I couldn't win.\tJe pris conscience que je ne pouvais l'emporter.\nI realized I couldn't win.\tJe pris conscience que je ne pouvais pas l'emporter.\nI realized I couldn't win.\tJ'ai pris conscience que je ne pouvais l'emporter.\nI realized I couldn't win.\tJ'ai pris conscience que je ne pouvais pas l'emporter.\nI realized I couldn't win.\tJ'ai pris conscience que je ne pouvais pas gagner.\nI realized I couldn't win.\tJ'ai pris conscience que je ne pouvais gagner.\nI realized I wasn't ready.\tJe pris conscience que je n'étais pas prêt.\nI realized I wasn't ready.\tJe pris conscience que je n'étais pas prête.\nI realized I wasn't ready.\tJ'ai pris conscience que je n'étais pas prêt.\nI realized I wasn't ready.\tJ'ai pris conscience que je n'étais pas prête.\nI really didn't have time.\tJe n'avais vraiment pas le temps.\nI really didn't have time.\tJe ne disposais vraiment pas du temps.\nI really didn't have time.\tJe n'ai vraiment pas eu le temps.\nI really didn't have time.\tJe n'ai vraiment pas disposé du temps.\nI really do appreciate it.\tJe l'apprécie vraiment.\nI really do love your tie.\tJ'adore vraiment votre cravate.\nI really do love your tie.\tJ'adore vraiment ta cravate.\nI really don't believe it.\tJe n'y crois vraiment pas.\nI really don't want to go.\tJe ne veux vraiment pas partir.\nI really don't want to go.\tJe ne veux vraiment pas y aller.\nI really feel like a beer.\tJ'ai vraiment envie d'une bière.\nI really must finish this.\tIl me faut vraiment finir ça.\nI really must finish this.\tJe dois vraiment finir ceci.\nI really need a drink now.\tJ'ai vraiment besoin d'un verre maintenant.\nI really want to kiss you.\tJe veux vraiment vous embrasser.\nI really want to kiss you.\tJe veux vraiment t'embrasser.\nI really want you to quit.\tJe veux vraiment que vous démissionniez.\nI really want you to quit.\tJe veux vraiment que tu démissionnes.\nI really want you to quit.\tJe veux vraiment que vous arrêtiez.\nI really want you to quit.\tJe veux vraiment que tu arrêtes.\nI received a warm welcome.\tJ'ai reçu un accueil chaleureux.\nI reckon you should do it.\tIl m'est d'avis que vous devriez le faire.\nI reckon you should do it.\tIl m'est d'avis que tu devrais le faire.\nI reconsidered your offer.\tJ'ai réévalué votre proposition.\nI reconsidered your offer.\tJ'ai réévalué ta proposition.\nI regret having done that.\tJe regrette d'avoir fait ça.\nI remember writing to her.\tJe me souviens lui avoir écrit.\nI require your assistance.\tJe requiers votre assistance.\nI require your assistance.\tJe requiers ton assistance.\nI require your assistance.\tJ'ai besoin de votre assistance.\nI require your assistance.\tJ'ai besoin de ton assistance.\nI resent that implication.\tJe rechigne à cette implication.\nI saw Tom three hours ago.\tJ'ai vu Tom il y a trois heures.\nI saw a shape in the dark.\tJe vis une forme dans l'obscurité.\nI saw her spike his drink.\tJe l'ai vue charger son verre.\nI saw him enter the store.\tJe l'ai vu entrer dans le magasin.\nI saw him three years ago.\tJe l'ai vu il y a trois ans.\nI saw it with my own eyes.\tJe l'ai vu de mes propres yeux.\nI saw it with my own eyes.\tJe le vis de mes propres yeux.\nI saw the figure of a man.\tJ'ai vu la silhouette d'un homme.\nI saw you with a tall boy.\tJe t'ai vu avec un garçon de grande taille.\nI see how dangerous it is.\tJe vois le danger que cela représente.\nI should ask, shouldn't I?\tJe devrais demander, non ?\nI should congratulate you.\tJe devrais vous féliciter.\nI should congratulate you.\tJe devrais te féliciter.\nI should get back to work.\tJe devrais retourner au travail.\nI should've gone with Tom.\tJ'aurais dû aller avec Tom.\nI shouldn't have slept in.\tJe n'aurais pas dû dormir sur mon lieu de travail.\nI shouldn't have slept in.\tJe n'aurais pas dû faire la grasse matinée.\nI shouldn't have slept in.\tJe n'aurais pas dû louper le réveil.\nI shouldn't have told Tom.\tJe n'aurais pas dû le dire à Tom.\nI shut the door behind me.\tJ'ai fermé la porte derrière moi.\nI simply don't understand.\tJe ne comprends tout simplement pas.\nI slept all day yesterday.\tJ'ai dormi toute la journée d'hier.\nI slept through the storm.\tJ'ai dormi pendant toute la tempête.\nI smell something burning.\tJe sens quelque chose brûler.\nI smell something burning.\tJe sens quelque chose qui brûle.\nI smoked when I was young.\tJe fumais quand j'étais jeune.\nI sold it for ten dollars.\tJe l'ai vendu pour dix dollars.\nI sold it for ten dollars.\tJe l'ai vendue pour dix dollars.\nI sometimes dream of home.\tJe rêve parfois de la maison.\nI sometimes dream of home.\tJe rêve parfois à chez moi.\nI speak English every day.\tJe parle l'anglais quotidiennement.\nI speak a little Japanese.\tJe parle un peu japonais.\nI speak a little Japanese.\tJe parle un peu le japonais.\nI speak a little Japanese.\tJe parle un peu de japonais.\nI spent 100 dollars today.\tJ'ai dépensé l'équivalent de 100 dollars aujourd'hui.\nI stayed at a cheap hotel.\tJe séjournai dans un hôtel bon marché.\nI stayed at a cheap hotel.\tJ'ai séjourné dans un hôtel bon marché.\nI still love this bicycle.\tJ'adore toujours ce vélo.\nI stopped drinking coffee.\tJ'ai arrêté de boire du café.\nI studied a lot in school.\tJ'ai beaucoup étudié à l'école.\nI suddenly feel depressed.\tJe me sens tout à coup déprimé.\nI suddenly feel depressed.\tJe me sens tout à coup déprimée.\nI suppose I could do that.\tJe pense pouvoir faire ça.\nI suppose it's time to go.\tJe suppose qu'il est temps d'y aller.\nI suppose that's possible.\tJe suppose que c'est possible.\nI suppose you have a plan.\tJe suppose que tu as un plan.\nI suppose you have a plan.\tJe suppose que vous avez un plan.\nI suspected he was a liar.\tJe le suspectais d'être un menteur.\nI swim here every morning.\tJe nage ici tous les matins.\nI take it you don't agree.\tJe suppose que vous n'êtes pas d'accord.\nI take it you don't agree.\tJe suppose que tu n'es pas d'accord.\nI think I broke his heart.\tJe pense lui avoir brisé le cœur.\nI think I broke his heart.\tJe pense que je lui ai brisé le cœur.\nI think I can answer that.\tJe pense pouvoir répondre à cela.\nI think I can answer that.\tJe pense que je peux répondre à ça.\nI think I know who did it.\tJe pense savoir qui l'a fait.\nI think I see the problem.\tJe pense voir le problème.\nI think I touched a nerve.\tJe pense avoir touché un point sensible.\nI think I'll buy this tie.\tJe pense que je vais acheter cette cravate.\nI think Tom already knows.\tJe pense que Tom le sait déjà.\nI think Tom can help Mary.\tJe crois que Tom peut aider Mary.\nI think Tom could be sick.\tJe pense que Tom pourrait être malade.\nI think Tom deserves that.\tJe pense que Tom le mérite.\nI think Tom has gone away.\tJe pense que Tom est parti.\nI think Tom is courageous.\tJe pense que Tom est courageux.\nI think Tom is dependable.\tJe pense que Tom est fiable.\nI think Tom is dependable.\tJe pense que Tom est quelqu'un sur qui on peut compter.\nI think Tom is illiterate.\tJe pense que Tom est analphabète.\nI think Tom will tell you.\tJe pense que Tom te le dira.\nI think Tom will tell you.\tJe pense que Tom vous le dira.\nI think about Tom all day.\tJe pense à Tom toute la journée.\nI think everybody's happy.\tJe pense que tout le monde est heureux.\nI think everybody's tired.\tJe pense que tout le monde est fatigué.\nI think it's a great idea.\tJe pense que c'est une excellente idée.\nI think it's the best way.\tJe pense que c'est la meilleure manière.\nI think it's worth asking.\tJe pense que ça vaut le coup de demander.\nI think that he has mumps.\tJe crois qu'il a les oreillons.\nI think that he is honest.\tJe pense qu'il est honnête.\nI think that it's too big.\tJe pense que c'est trop gros.\nI think that it's too big.\tJe pense que c'est trop grand.\nI think that she's honest.\tJe pense qu'elle est honnête.\nI think that was the plan.\tJe pense que c'était ce qui était prévu.\nI think that you're wrong.\tJe pense que tu te trompes.\nI think that you're wrong.\tJe pense que vous avez tort.\nI think that's everything.\tJe crois que c'est tout.\nI think that's very clear.\tJe pense que c'est très clair.\nI think the story is true.\tJe pense que l'histoire est vraie.\nI think there's a problem.\tJe pense qu'il y a un problème.\nI think they're using you.\tJe pense qu'ils se servent de toi.\nI think this is delicious.\tJe pense que c'est délicieux.\nI think this is important.\tJe pense que c'est important.\nI think we forgot someone.\tJe pense que nous avons oublié quelqu'un.\nI think we have a problem.\tJe pense que nous avons un problème.\nI think we need more food.\tJe pense qu'il nous faut davantage de nourriture.\nI think we need more time.\tJe pense qu'il nous faut davantage de temps.\nI think we need more time.\tJe pense qu'il nous faut plus de temps.\nI think we're about ready.\tJe pense que nous sommes presque prêtes.\nI think we're about ready.\tJe pense que nous sommes presque prêts.\nI think we've seen enough.\tJe pense que nous en avons assez vu.\nI think you can handle it.\tJe pense que vous pouvez le gérer.\nI think you can handle it.\tJe pense que tu peux le gérer.\nI think you did very well.\tJe pense que tu t'en es très bien sorti.\nI think you did very well.\tJe pense que tu t'en es très bien sortie.\nI think you did very well.\tJe pense que vous vous en êtes très bien sorti.\nI think you did very well.\tJe pense que vous vous en êtes très bien sortis.\nI think you did very well.\tJe pense que vous vous en êtes très bien sorties.\nI think you did very well.\tJe pense que vous vous en êtes très bien sortie.\nI think you might like it.\tJe pense qu'il se pourrait que vous l'aimiez.\nI think you might like it.\tJe pense qu'il se pourrait que tu l'aimes.\nI think you might like it.\tJe pense qu'il se pourrait que vous l'appreciiez.\nI think you might like it.\tJe pense qu'il se pourrait que tu l'apprécies.\nI think you might need me.\tJe pense qu'il se pourrait que vous ayez besoin de moi.\nI think you might need me.\tJe pense qu'il se pourrait que tu aies besoin de moi.\nI think you need a lawyer.\tJe pense que tu as besoin d'un avocat.\nI think you need a lawyer.\tJe pense que vous avez besoin d'un avocat.\nI think you need a lawyer.\tJe pense qu'il te faut un avocat.\nI think you need a lawyer.\tJe pense qu'il vous faut un avocat.\nI think you saw something.\tJe pense que vous avez vu quelque chose.\nI think you saw something.\tJe pense que tu as vu quelque chose.\nI think you should get it.\tJe pense que vous devriez l'obtenir.\nI think you should get it.\tJe pense que tu devrais l'obtenir.\nI think you should go now.\tJe pense que tu devrais y aller maintenant.\nI think you should go now.\tJe pense que vous devriez y aller maintenant.\nI think you're both right.\tJe pense que vous avez tous deux raison.\nI think you're both right.\tJe pense que vous avez toutes deux raison.\nI think you're in my seat.\tExcusez-moi, vous occupez mon siège.\nI think you've had enough.\tJe pense que vous en avez supporté assez.\nI think you've had enough.\tJe pense que tu en as supporté assez.\nI thought I had a day off.\tJe pensais disposer d'un jour de congé.\nI thought I heard a voice.\tJ'ai pensé entendre une voix.\nI thought I saw something.\tJe pensais avoir vu quelque chose.\nI thought I saw something.\tJe pensais que j'avais vu quelque chose.\nI thought I was too young.\tJe pensais être trop jeune.\nI thought I was too young.\tJe pensais que j'étais trop jeune.\nI thought I'd be too late.\tJe pensais que je serais trop en retard.\nI thought about you a lot.\tJ'ai beaucoup pensé à vous.\nI thought it might be you.\tJe pensais que ça pouvait être toi.\nI thought it might be you.\tJe pensais que ça pouvait être vous.\nI thought it might be you.\tJ'ai pensé que ça pouvait être toi.\nI thought it might be you.\tJ'ai pensé que ça pourrait être toi.\nI thought it might be you.\tJ'ai pensé que ça pouvait être vous.\nI thought it might be you.\tJ'ai pensé que ça pourrait être vous.\nI thought it was a secret.\tJe pensais qu'il s'agissait d'un secret.\nI thought it would be fun.\tJe pensais que ce serait amusant.\nI thought it would be fun.\tJe pensais que ce serait marrant.\nI thought it'd get easier.\tJe pensais que ça deviendrait plus facile.\nI thought that was my job.\tJe pensais que c'était mon travail.\nI thought they'd heard us.\tJ'ai pensé qu'ils nous avaient entendus.\nI thought they'd heard us.\tJ'ai pensé qu'ils nous avaient entendues.\nI thought they'd heard us.\tJ'ai pensé qu'elles nous avaient entendus.\nI thought they'd heard us.\tJ'ai pensé qu'elles nous avaient entendues.\nI thought we should leave.\tJ'ai pensé que nous devrions partir.\nI thought we were friends.\tJe pensais que nous étions amies.\nI thought we were friends.\tJe pensais que nous étions amis.\nI thought you should know.\tJe pensais que tu le saurais.\nI thought you wanted this.\tJ'ai pensé que tu voulais ceci.\nI thought you were asleep.\tJe pensais que tu étais endormi.\nI thought you were asleep.\tJe pensais que tu étais endormie.\nI thought you were asleep.\tJe pensais que vous étiez endormi.\nI thought you were asleep.\tJe pensais que vous étiez endormie.\nI thought you were asleep.\tJe pensais que vous étiez endormis.\nI thought you were asleep.\tJe pensais que vous étiez endormies.\nI thought you were hungry.\tJe pensais que tu avais faim.\nI thought you were hungry.\tJe pensais que vous aviez faim.\nI thought you were taller.\tJe pensais que vous étiez plus grande.\nI thought you were taller.\tJe pensais que vous étiez plus grandes.\nI thought you were taller.\tJe pensais que vous étiez plus grands.\nI thought you were taller.\tJe pensais que vous étiez plus grand.\nI thought you were taller.\tJe pensais que tu étais plus grande.\nI thought you were taller.\tJe pensais que tu étais plus grand.\nI thought you'd be taller.\tJe pensais que tu serais plus grand.\nI thought you'd be taller.\tJe pensais que vous seriez plus grand.\nI thought you'd gone home.\tJe pensais que vous seriez rentré chez vous.\nI thought you'd gone home.\tJe pensais que vous seriez rentrée chez vous.\nI thought you'd gone home.\tJe pensais que vous seriez rentrés chez vous.\nI thought you'd gone home.\tJe pensais que vous seriez rentrées chez vous.\nI thought you'd gone home.\tJe pensais que tu serais rentré chez toi.\nI thought you'd gone home.\tJe pensais que tu serais rentrée chez toi.\nI thought you'd never ask.\tJe pensais que tu ne le demanderais jamais.\nI thought you'd never ask.\tJe pensais que vous ne le demanderiez jamais.\nI told her not to be late.\tJe lui ai dit de ne pas être en retard.\nI told him not to be late.\tJe lui avais dit de ne pas être en retard.\nI told you I didn't do it.\tJe vous ai dit que je ne l'avais pas fait.\nI told you I didn't do it.\tJe t'ai dit que je ne l'avais pas fait.\nI told you I'm not hungry.\tJe vous ai dit que je n'avais pas faim.\nI told you I'm not hungry.\tJe t'ai dit que je n'avais pas faim.\nI told you it didn't work.\tJe vous ai dit que ça n'a pas fonctionné.\nI told you it didn't work.\tJe t'ai dit que ça n'a pas fonctionné.\nI told you not to do that.\tJe t'ai dit de ne pas faire ça.\nI told you not to do that.\tJe vous ai dit de ne pas faire ça.\nI took care of it for you.\tJe m'en suis occupé pour vous.\nI took care of it for you.\tJe m'en suis occupé pour toi.\nI took care of it for you.\tJ'en ai pris soin pour vous.\nI took care of it for you.\tJ'en ai pris soin pour toi.\nI took him out for a walk.\tJe l'ai sorti faire une promenade.\nI tried to avoid conflict.\tJ'ai essayé d'éviter un conflit.\nI tried to do all I could.\tJ'ai essayé de faire tout ce que je pouvais.\nI tried to do all I could.\tJ'ai tenté de faire tout ce que je pouvais.\nI turned thirty last week.\tJ'ai eu trente ans la semaine dernière.\nI understand how you feel.\tJe comprends ce que tu ressens.\nI understand how you felt.\tJe comprends ce que vous avez ressenti.\nI understand how you felt.\tJe comprends ce que tu as ressenti.\nI understand your concern.\tJe comprends ton souci.\nI understand your concern.\tJe comprends votre souci.\nI understand your dilemma.\tJe comprends votre dilemme.\nI understand your dilemma.\tJe comprends ton dilemme.\nI understand your problem.\tJe comprends ton problème.\nI understand your problem.\tJe comprends votre problème.\nI understand your reasons.\tJe comprends vos raisons.\nI understand your reasons.\tJe comprends tes raisons.\nI understood it perfectly.\tJe l'ai parfaitement compris.\nI used to be fat like you.\tJ'étais grosse comme vous.\nI used to be fat like you.\tJ'étais gros comme vous.\nI used to be fat like you.\tJ'étais grosse comme toi.\nI used to be fat like you.\tJ'étais gros comme toi.\nI used to like folk music.\tJ'aimais la musique folklorique.\nI usually don't work here.\tJe ne travaille habituellement pas ici.\nI usually get what I want.\tJ'obtiens d'ordinaire ce que je veux.\nI usually go home at four.\tJe rentre habituellement à quatre heures.\nI usually shower at night.\tJe prends habituellement ma douche le soir.\nI usually shower at night.\tD'ordinaire, je me douche le soir.\nI waited for him till ten.\tJe l'ai attendu jusqu'à dix heures.\nI walked around the block.\tJ'ai marché autour du pâté de maisons.\nI walked from the station.\tJe suis venu à pied de la station.\nI want a few more minutes.\tJe veux quelques minutes supplémentaires.\nI want a room with a view.\tJe veux une chambre avec vue.\nI want it to be a success.\tJe veux que ce soit un succès.\nI want new business cards.\tJe veux de nouvelles cartes de visite.\nI want someone to talk to.\tJe veux quelqu'un à qui parler.\nI want something to drink.\tJe veux quelque chose à boire.\nI want something to drink.\tJe désire quelque chose à boire.\nI want the absolute truth.\tJe veux la vérité absolue.\nI want the truth from you.\tJe veux que tu me dises la vérité.\nI want the truth from you.\tJe veux de vous la vérité.\nI want the truth from you.\tJe veux de toi la vérité.\nI want the truth from you.\tJe veux que vous me disiez la vérité.\nI want to avoid rush hour.\tJe veux éviter les heures de pointe.\nI want to be a lumberjack.\tJe veux être bûcheron.\nI want to be an astronaut.\tJe veux être cosmonaute.\nI want to become a singer.\tJe veux devenir chanteur.\nI want to buy my car back.\tJe veux racheter ma voiture.\nI want to buy you a drink.\tJe veux vous offrir un verre.\nI want to buy you a drink.\tJe veux t'offrir un verre.\nI want to catch the 11:45.\tJe veux attraper celui de onze heures quarante-cinq.\nI want to catch the 11:45.\tJe veux attraper celui de minuit moins le quart.\nI want to change my shirt.\tJe veux changer de chemise.\nI want to check something.\tJe veux vérifier quelque chose.\nI want to do this at home.\tJe veux faire ça à la maison.\nI want to do what's right.\tJe veux faire ce qui est juste.\nI want to eat Korean food.\tJe veux manger de la nourriture coréenne.\nI want to figure this out.\tJe veux comprendre ça.\nI want to figure this out.\tJe veux comprendre ceci.\nI want to find a good job.\tJe veux trouver un bon travail.\nI want to forget about it.\tJe veux oublier.\nI want to get out of here.\tJe veux sortir d'ici.\nI want to get out of here.\tJe veux m'extirper d'ici.\nI want to get to know you.\tJe veux faire votre connaissance.\nI want to get to know you.\tJe veux faire ta connaissance.\nI want to give you a gift.\tJe veux te donner un cadeau.\nI want to hear everything.\tJe veux tout entendre.\nI want to hear you say it.\tJe veux vous entendre le dire.\nI want to hear you say it.\tJe veux t'entendre le dire.\nI want to hear you scream.\tJe veux vous entendre hurler.\nI want to hear you scream.\tJe veux t'entendre hurler.\nI want to join your group.\tJe veux rejoindre votre groupe.\nI want to join your group.\tJe veux rejoindre ton groupe.\nI want to know everything.\tJe veux tout savoir.\nI want to know the reason.\tJe veux connaître la raison.\nI want to know the reason.\tJe veux en connaître la raison.\nI want to know what it is.\tJe veux savoir ce que c'est.\nI want to know what it is.\tJe veux savoir de quoi il s'agit.\nI want to know who called.\tJe veux savoir qui a téléphoné.\nI want to make this quick.\tJe veux faire ça rapidement.\nI want to play the guitar.\tJe veux jouer de la guitare.\nI want to scratch my nose.\tJ'ai envie de me gratter le nez.\nI want to see how it ends.\tJe veux voir comment ça finit.\nI want to see how it ends.\tJe veux voir comment ça se termine.\nI want to see your mother.\tJe veux voir ta mère.\nI want to see your mother.\tJe veux voir votre mère.\nI want to shake your hand.\tJe veux vous serrer la main.\nI want to shake your hand.\tJe veux te serrer la main.\nI want to stay a few days.\tJe désire rester quelques jours.\nI want to stretch my legs.\tJe veux étendre mes jambes.\nI want to stretch my legs.\tJe veux détendre mes jambes.\nI want to travel with you.\tJe veux voyager avec toi.\nI want to travel with you.\tJe veux voyager avec vous.\nI want to watch you dance.\tJe veux te regarder danser.\nI want to watch you dance.\tJe veux vous regarder danser.\nI want to write this down.\tJe veux écrire ceci.\nI want you out of my life.\tJe veux que vous sortiez de ma vie.\nI want you out of my life.\tJe veux que tu sortes de ma vie.\nI want you out of my room.\tJe veux que vous sortiez de ma chambre.\nI want you out of my room.\tJe veux que tu sortes de ma chambre.\nI want you to be my coach.\tJe veux que vous soyez mon entraîneur.\nI want you to be my coach.\tJe veux que tu sois mon entraîneur.\nI want you to be prepared.\tJe veux que tu sois préparé.\nI want you to be prepared.\tJe veux que tu sois préparée.\nI want you to be prepared.\tJe veux que vous soyez préparé.\nI want you to be prepared.\tJe veux que vous soyez préparées.\nI want you to be prepared.\tJe veux que vous soyez préparés.\nI want you to be prepared.\tJe veux que vous soyez préparée.\nI want you to call it off.\tJe veux que vous l'annuliez.\nI want you to call it off.\tJe veux que tu l'annules.\nI want you to go upstairs.\tJe veux que tu ailles à l'étage.\nI want you to go upstairs.\tJe veux que tu te rendes à l'étage.\nI want you to go upstairs.\tJe veux que vous alliez à l'étage.\nI want you to go upstairs.\tJe veux que vous vous rendiez à l'étage.\nI want you to go upstairs.\tJe veux que vous alliez au-dessus.\nI want you to go upstairs.\tJe veux que tu ailles au-dessus.\nI want you to handle this.\tJe veux que tu gères ceci.\nI want you to handle this.\tJe veux que tu traites ceci.\nI want you to handle this.\tJe veux que vous gériez ceci.\nI want you to handle this.\tJe veux que vous traitiez ceci.\nI want you to help me die.\tJe veux que vous m'aidiez à mourir.\nI want you to help me die.\tJe veux que tu m'aides à mourir.\nI want you to sing a song.\tJe veux que tu chantes une chanson.\nI want you to sit with me.\tJe veux que vous vous asseyiez avec moi.\nI want you to sit with me.\tJe veux que tu t'asseyes avec moi.\nI want you to sleep on it.\tJe veux que vous y réfléchissiez.\nI want you to sleep on it.\tJe veux que tu y réfléchisses.\nI want you to talk to Tom.\tJe veux que tu parles à Tom.\nI want you to wait for me.\tJe veux que tu m'attendes.\nI want you to wait for me.\tJe veux que vous m'attendiez.\nI want you to work harder.\tJe veux que vous travailliez davantage.\nI wanted something to eat.\tJe voulais quelque chose à manger.\nI wanted to show you this.\tJe voulais vous montrer ceci.\nI wanted to show you this.\tJe voulais te montrer ceci.\nI wanted to talk about it.\tJe voulais en parler.\nI wanted to talk about it.\tJe voulais en discuter.\nI wanted to tell you that.\tJe voulais te dire ça.\nI wanted to tell you that.\tJe voulais vous dire ça.\nI wanted to watch you die.\tJe voulais te regarder mourir.\nI wanted to watch you die.\tJe voulais vous regarder mourir.\nI wanted to wish you well.\tJe voulais vous souhaiter mes bons vœux.\nI wanted to wish you well.\tJe voulais te souhaiter mes bons vœux.\nI wanted you to have this.\tJe voulais que vous ayez ceci.\nI wanted you to have this.\tJe voulais que tu aies ceci.\nI wanted you to keep that.\tJe voulais que vous gardiez ça.\nI wanted you to keep that.\tJe voulais que tu gardes ça.\nI wanted your cooperation.\tJe voulais votre coopération.\nI wanted your cooperation.\tJe voulais ta coopération.\nI was afraid he might die.\tJ'avais peur qu'il meure.\nI was afraid he might die.\tJ'étais effrayé à l'idée qu'il meure.\nI was afraid of my father.\tJ'avais peur de mon père.\nI was almost hit by a car.\tJ'ai presque été heurté par une voiture.\nI was almost hit by a car.\tJe fus presque heurté par une voiture.\nI was always good at math.\tJ'étais toujours bon en maths.\nI was as surprised as you.\tJ'ai été aussi surprise que vous.\nI was as surprised as you.\tJ'ai été aussi surprise que toi.\nI was as surprised as you.\tJ'ai été aussi surpris que vous.\nI was as surprised as you.\tJ'ai été aussi surpris que toi.\nI was as surprised as you.\tJe fus aussi surprise que vous.\nI was as surprised as you.\tJe fus aussi surprise que toi.\nI was as surprised as you.\tJe fus aussi surpris que vous.\nI was as surprised as you.\tJe fus aussi surpris que toi.\nI was at a loss for words.\tLes mots me manquèrent.\nI was barely able to work.\tJ'étais à peine capable de travailler.\nI was chilled to the bone.\tJ'étais gelé jusqu'aux os.\nI was disappointed in her.\tJ'ai été déçu par elle.\nI was disappointed in her.\tJe fus déçu par elle.\nI was eventually released.\tJ'ai finalement été relâché.\nI was eventually released.\tJe fus finalement relâché.\nI was eventually released.\tJ'ai finalement été relâchée.\nI was eventually released.\tJe fus finalement relâchée.\nI was exhausted from work.\tJe suis épuisé par le travail.\nI was expecting the worst.\tJe m'attendais au pire.\nI was going to take a nap.\tJ'allais faire une sieste.\nI was hurt by many people.\tJ'ai été blessé par de nombreuses personnes.\nI was hurt by many people.\tJ'ai été blessée par de nombreuses personnes.\nI was hurt by many people.\tJ'ai été blessé par beaucoup de gens.\nI was hurt by many people.\tJ'ai été blessée par beaucoup de gens.\nI was in bed with the flu.\tJ'étais au lit avec la grippe.\nI was in my room studying.\tJe me trouvais dans ma chambre, en train d'étudier.\nI was in pretty bad shape.\tJ'étais dans un assez sale état.\nI was in way over my head.\tJe perdais la tête.\nI was just about to leave.\tJ'étais juste sur le point de partir.\nI was just being friendly.\tJe voulais juste être amical.\nI was just fooling around.\tJe faisais juste l'imbécile.\nI was just fooling around.\tJe ne faisais que bricoler.\nI was just fooling around.\tJe ne faisais que m'amuser.\nI was just here yesterday.\tJ'étais justement ici hier.\nI was just looking around.\tJe regardais juste aux alentours.\nI was just looking around.\tJ'étais juste en train de regarder aux alentours.\nI was just messing around.\tJ'étais juste en train de bricoler.\nI was just messing around.\tJ'étais juste en train de batifoler.\nI was just trying to help.\tJ'essayais juste d'aider.\nI was knocked unconscious.\tJe me suis fait étendre.\nI was knocked unconscious.\tJe me suis fait étaler et j'ai perdu connaissance.\nI was meaning to call you.\tJ'avais l'intention de vous appeler.\nI was meaning to call you.\tJ'avais l'intention de t'appeler.\nI was momentarily blinded.\tJ'ai été momentanément aveuglée.\nI was momentarily blinded.\tJ'ai été momentanément aveuglé.\nI was nearly hit by a car.\tJ'ai failli me faire renverser par une voiture.\nI was not sure what to do.\tJe n'étais pas sûre de savoir quoi faire.\nI was not sure what to do.\tJe n'étais pas sûr de savoir quoi faire.\nI was only trying to help.\tJ'essayais seulement d'aider.\nI was shocked to see that.\tJe fus choquée de voir ça.\nI was shocked to see this.\tJe fus choqué de voir ça.\nI was shocked to see this.\tJ'ai été choqué de voir ça.\nI was shocked to see this.\tJ'ai été choquée de voir ça.\nI was shocked to see this.\tJe fus choquée de voir ça.\nI was so drunk last night.\tJ'étais tellement éméchée la nuit dernière.\nI was so drunk last night.\tJ'étais tellement éméché la nuit dernière.\nI was struck by lightning.\tJ'ai été frappée par la foudre.\nI was struck by lightning.\tJ'ai été frappé par la foudre.\nI was terribly frightened.\tJ'étais très effrayé.\nI was there the other day.\tJ'étais là l'autre jour.\nI was there the other day.\tJ'y étais l'autre jour.\nI was thinking of leaving.\tJe pensais à partir.\nI was told to contact you.\tOn m'a dit de prendre contact avec vous.\nI was told to contact you.\tOn m'a dit de prendre contact avec toi.\nI was too stunned to talk.\tJ'étais trop abasourdi pour parler.\nI was too stunned to talk.\tJ'étais trop abasourdie pour parler.\nI was too stunned to talk.\tJe fus trop abasourdi pour parler.\nI was too stunned to talk.\tJe fus trop abasourdie pour parler.\nI was too stunned to talk.\tJ'ai été trop abasourdi pour parler.\nI was too stunned to talk.\tJ'ai été trop abasourdie pour parler.\nI was totally dumbfounded.\tJ'étais simplement abasourdi.\nI was trying to kill time.\tJ'essayais de tuer le temps.\nI was trying to reach you.\tJ'essayais de te joindre.\nI was trying to reach you.\tJ'essayais de vous joindre.\nI was up almost all night.\tJ'ai veillé presque toute la nuit.\nI was very busy yesterday.\tJ'étais très occupé hier.\nI was worried for nothing.\tJe me fis du souci pour rien.\nI was worried for nothing.\tJe me suis fait du souci pour rien.\nI was wrongfully punished.\tJ'ai été injustement puni.\nI wash my car once a week.\tJe lave ma voiture une fois par semaine.\nI wasn't cooking anything.\tJe n'étais pas en train de cuire quoi que ce soit.\nI wasn't going to give up.\tJe n'allais pas abandonner.\nI wasn't informed of this.\tJe n'en étais pas informé.\nI wasn't informed of this.\tJe n'en étais pas informée.\nI wasn't offended by that.\tJe ne m'en suis pas offusqué.\nI wasn't paying attention.\tJe n'y prêtais pas attention.\nI wasn't really listening.\tJe n'écoutais pas vraiment.\nI wasn't thinking clearly.\tJe n'avais pas les idées claires.\nI watched TV this morning.\tJ'ai regardé la télé ce matin.\nI watched the whole thing.\tJ'ai regardé tout le truc.\nI went on with my reading.\tJ'ai continué à lire.\nI went to Tom's apartment.\tJe suis allé à l'appartement de Tom.\nI went to Tom's apartment.\tJe suis allée à l'appartement de Tom.\nI will act on your advice.\tJ'agirai selon tes conseils.\nI will act on your advice.\tJ'agirai selon vos conseils.\nI will always be with you.\tJe serai toujours parmi vous.\nI will always be with you.\tJe serai toujours avec vous.\nI will always be with you.\tJe serai toujours avec toi.\nI will be back in an hour.\tJe serai de retour dans une heure.\nI will choose one of them.\tJe choisirai un de ceux-là.\nI will choose one of them.\tJe choisirai l'un d'entre eux.\nI will choose one of them.\tJe choisirai l'une d'entre elles.\nI will do it by all means.\tJe le ferai certainement.\nI will fight to the death.\tJe combattrai à mort.\nI will follow your advice.\tJe vais suivre ton conseil.\nI will give you this book.\tJe te donnerai ce livre.\nI will look the other way.\tJe regarderai de l'autre côté.\nI will not stand for this.\tJe ne le tolèrerai pas.\nI will sleep at my aunt's.\tJe dormirai chez ma tante.\nI will speak to him alone.\tJe lui parlerai seul.\nI will speak to him alone.\tJe lui parlerai seule.\nI will stay home tomorrow.\tJe resterai à la maison demain.\nI will think of something.\tJe penserai à quelque chose.\nI wish I could explain it.\tJ'aimerais pouvoir l'expliquer.\nI wish I had more friends.\tSi seulement j'avais plus d'amis.\nI wish I had more friends.\tSi seulement j'avais plus d'amies.\nI wish I had wings to fly.\tJ'aimerais avoir des ailes pour voler.\nI wish I knew what it was.\tJ'aimerais savoir de quoi il s'agissait.\nI wish I knew what to say.\tJ'aimerais savoir quoi dire.\nI wish she were alive now.\tSi seulement elle était encore en vie...\nI wish that were the case.\tJ'aimerais que ce soit le cas.\nI wish we could live here.\tJ'aimerais que nous puissions vivre ici.\nI wish you had been there.\tJ'eusse aimé que vous fussiez là.\nI wish you hadn't told me.\tJ'aimerais que vous ne me l'ayez pas dit.\nI wish you hadn't told me.\tJ'aimerais que tu ne me l'aies pas dit.\nI wish you'd called first.\tJ'aurais aimé que vous ayez appelé au préalable.\nI wish you'd called first.\tJ'aurais aimé que tu aies appelé au préalable.\nI withdrew my application.\tJ'ai retiré ma candidature.\nI woke up with a headache.\tJe me suis réveillé avec un mal de tête.\nI woke up with a headache.\tJe me suis réveillée avec un mal de tête.\nI won't be able to attend.\tJe ne serai pas en mesure d'assister.\nI won't be going with you.\tJe n'irai pas avec vous.\nI won't be going with you.\tJe n'irai pas avec toi.\nI won't be here that long.\tJe ne serai pas ici aussi longtemps.\nI won't betray your trust.\tJe ne trahirai pas votre confiance.\nI won't betray your trust.\tJe ne trahirai pas ta confiance.\nI won't forget any of you.\tJe n'oublierai aucun d'entre vous.\nI won't forget any of you.\tJe n'oublierai aucune d'entre vous.\nI won't keep you too long.\tJe ne vous retiendrai pas trop longtemps.\nI won't keep you too long.\tJe ne te retiendrai pas trop longtemps.\nI won't let you ruin this.\tJe ne vous laisserai pas détruire ça.\nI won't obey those orders.\tJe n'obéirai pas à ces ordres.\nI won't pretend I'm sorry.\tJe ne ferai pas semblant d'être désolé.\nI won't pretend I'm sorry.\tJe ne ferai pas semblant d'être désolée.\nI won't tell if you won't.\tJe ne le dirai pas si tu ne le fais pas.\nI won't tell if you won't.\tJe ne le dirai pas si vous ne le faites pas.\nI wonder if he is married.\tJe me demande s'il est marié.\nI wonder if this is wrong.\tJe me demande si c'est mal.\nI wonder if we can get in.\tJe me demande si nous pouvons entrer.\nI wonder if we could talk.\tJe me demande si nous pourrions discuter.\nI wonder if you'd help us.\tJe me demande si vous nous aideriez.\nI wonder if you'd help us.\tJe me demande si tu nous aiderais.\nI wonder what his name is.\tJe me demande quel est son nom.\nI wonder what it could be.\tJe me demande ce que ce pourrait être.\nI wonder who that girl is.\tJe me demande qui est cette fille.\nI wonder who this is from.\tJe me demande de qui c'est.\nI work at the post office.\tJe travaille à la poste.\nI work for an oil company.\tJe travaille pour une société pétrolière.\nI work hard in the garden.\tJe travaille dur au jardin.\nI work out whenever I can.\tJe m'exerce chaque fois que je peux.\nI worry about your health.\tJe suis inquiet pour ta santé.\nI worry about your health.\tJe me fais du souci au sujet de ta santé.\nI worry about your health.\tJe me fais du souci au sujet de votre santé.\nI would advise against it.\tJe le déconseillerais.\nI would like a cup of tea.\tJ'aimerais avoir une tasse de thé.\nI would like a cup of tea.\tJe voudrais une tasse de thé.\nI would like chicken soup.\tJe voudrais une soupe de poulet.\nI would like to eat there.\tJ'aimerais dîner là.\nI would like to visit you.\tJe voudrais vous rendre visite.\nI would lodge a complaint.\tJe voudrais porter plainte.\nI would never do it again.\tJe ne le referais jamais.\nI would never do it again.\tJe ne le ferais jamais plus.\nI would take it as a sign.\tJe considérerais ça comme un signe.\nI wouldn't change a thing.\tJe ne changerais rien.\nI wouldn't recommend that.\tJe ne le recommanderais pas.\nI wouldn't try that again.\tJe ne le réessayerais pas.\nI wouldn't worry about it.\tJe ne m'en soucierais pas.\nI wrote to her last month.\tJe lui ai écrit le mois dernier.\nI'd be happy to cooperate.\tJe serais ravi de coopérer.\nI'd be happy to cooperate.\tJe serais ravie de coopérer.\nI'd be willing to pay you.\tJe vous payerais volontiers.\nI'd like a glass of water.\tJe prendrais bien un verre d'eau.\nI'd like a little privacy.\tJ'apprécierais un peu d'intimité.\nI'd like a second opinion.\tJ'aimerais une autre opinion.\nI'd like for you to leave.\tJ'apprécierais que vous partiez.\nI'd like for you to leave.\tJ'apprécierais que tu partes.\nI'd like one more blanket.\tJ'aimerai une couverture en plus.\nI'd like some more coffee.\tUn autre café, s'il vous plaît.\nI'd like something to eat.\tJ'aimerais manger quelque chose.\nI'd like something to eat.\tJe voudrais manger quelque chose.\nI'd like the bill, please.\tJ'aimerais l'addition, s'il vous plait.\nI'd like the bill, please.\tJ'aimerais la note, s'il vous plait.\nI'd like the bill, please.\tJ'aimerais la note, je vous prie.\nI'd like the bill, please.\tJ'aimerais l'addition, je vous prie.\nI'd like to be called Tom.\tJ'aimerais être appelé Tom.\nI'd like to buy a new car.\tJ'aimerais acheter une nouvelle voiture.\nI'd like to buy eye drops.\tJe voudrais acheter des gouttes pour les yeux.\nI'd like to buy this doll.\tJ'aimerais acheter cette poupée.\nI'd like to come home now.\tJ'aimerais venir à la maison maintenant.\nI'd like to come with you.\tJ'aimerais venir avec toi.\nI'd like to come with you.\tJ'aimerais venir avec vous.\nI'd like to go for a walk.\tJe voudrais aller faire une promenade.\nI'd like to go to college.\tJ'aimerais aller en fac.\nI'd like to go to college.\tJ'aimerais aller à l'unif.\nI'd like to go to college.\tJ'aimerais aller à la fac.\nI'd like to go to my room.\tJ'aimerais me rendre dans ma chambre.\nI'd like to hear you sing.\tJ'aimerais vous entendre chanter.\nI'd like to hear you sing.\tJ'aimerais t'entendre chanter.\nI'd like to help if I can.\tJ'aimerais aider, si je le peux.\nI'd like to look like Tom.\tJe voudrais ressembler à Tom.\nI'd like to make a speech.\tJ'aimerais prononcer un discours.\nI'd like to see you again.\tJ'aimerais te revoir.\nI'd like to see you again.\tJ'aimerais vous revoir.\nI'd like to talk with you.\tJ'aimerais m'entretenir avec vous.\nI'd like to talk with you.\tJ'aimerais m'entretenir avec toi.\nI'd like to talk with you.\tJ'aimerais te parler.\nI'd like to talk with you.\tJ'aimerais vous parler.\nI'd like to talk with you.\tJ'aimerais discuter avec vous.\nI'd like to talk with you.\tJ'aimerais discuter avec toi.\nI'd like you to have this.\tJ'aimerais que vous ayez ceci.\nI'd like you to have this.\tJ'aimerais que tu aies ceci.\nI'd like you to wear this.\tJ'aimerais que vous portiez ceci.\nI'd like you to wear this.\tJ'aimerais que tu portes ceci.\nI'd make a good chaperone.\tJe ferais un bon chaperon.\nI'd never do what Tom did.\tJe ne ferais jamais ce que Tom a fait.\nI'd never do what Tom did.\tJamais je ne ferais ce que Tom a fait.\nI'd never let that happen.\tJe ne laisserais jamais cela se produire.\nI'd never let that happen.\tJe ne laisserais jamais cela arriver.\nI'd rather die than leave.\tJe préférerais mourir que de partir.\nI'd rather not go into it.\tJe préférerais ne pas m'y engager.\nI'd rather stay anonymous.\tJe préférerais rester anonyme.\nI'd really like to go now.\tJ'aimerais vraiment y aller maintenant.\nI'd take it if I were you.\tJe le prendrais si j'étais vous.\nI'd take it if I were you.\tJe le prendrais si j'étais toi.\nI'll answer that question.\tJe répondrai à cette question.\nI'll arrange that for you.\tJ'arrangerai cela pour vous.\nI'll arrange that for you.\tJ'arrangerai cela pour toi.\nI'll ask how to get there.\tJe demanderai comment me rendre là-bas.\nI'll be as quick as I can.\tJe vais être aussi rapide que je le peux.\nI'll be at the front door.\tJe me trouverai à la porte de devant.\nI'll be back in my office.\tJe serai de retour à mon bureau.\nI'll be back in two hours.\tJe reviens dans deux heures.\nI'll be free this evening.\tJe serai libre ce soir.\nI'll be in the other room.\tJe me trouverai dans l'autre pièce.\nI'll be ready in a second.\tJe serai prêt dans une seconde.\nI'll be there at five p.m.\tJe serai là-bas à cinq heures.\nI'll be there in a minute.\tJ'arrive immédiatement.\nI'll be there in a second.\tJ'y serai dans une seconde.\nI'll be there on Saturday.\tJe serais là samedi.\nI'll be waiting out front.\tJ'attendrai devant, à l'extérieur.\nI'll be with you in a sec.\tJe serai avec toi dans une seconde.\nI'll be with you in a sec.\tJe serai avec vous dans une seconde.\nI'll borrow us some tools.\tJe nous emprunterai des outils.\nI'll call her immediately.\tJe l'appellerai immédiatement.\nI'll call you after lunch.\tJe vous appellerai après déjeuner.\nI'll call you after lunch.\tJe vous appellerai après le déjeuner.\nI'll call you after lunch.\tJe t'appellerai après déjeuner.\nI'll call you after lunch.\tJe t'appellerai après le déjeuner.\nI'll call you later today.\tJe t'appellerai plus tard dans la journée.\nI'll call you later today.\tJe vous appellerai plus tard dans la journée.\nI'll catch the next plane.\tJ'attraperai le prochain avion.\nI'll catch the next train.\tJ'attraperai le prochain train.\nI'll check with you later.\tJe vérifierai avec toi plus tard.\nI'll check with you later.\tJe vérifierai avec vous plus tard.\nI'll come back. I promise.\tJe reviendrai. Je le promets.\nI'll do anything you wish.\tJe ferai tout ce que vous souhaitez.\nI'll do anything you wish.\tJe ferai tout ce que tu souhaites.\nI'll do it in the morning.\tJe le ferai au matin.\nI'll do it, if you insist.\tJe le ferai, si vous insistez.\nI'll do it, if you insist.\tJe le ferai, si tu insistes.\nI'll do the work tomorrow.\tJe ferai le travail demain.\nI'll do what must be done.\tJe ferai ce qui doit être fait.\nI'll do whatever it takes.\tJe ferai tout ce qu'il faut.\nI'll do whatever you want.\tJe ferai tout ce que vous voulez.\nI'll do whatever you want.\tJe ferai tout ce que tu veux.\nI'll expect you next week.\tJe t'attendrai la semaine prochaine.\nI'll explain it all later.\tJ'expliquerai tout plus tard.\nI'll explain it all later.\tJe l'expliquerai en entier plus tard.\nI'll figure something out.\tJe réfléchirai à quelque chose.\nI'll find my own way back.\tJe trouverai mon propre chemin de retour.\nI'll find out soon enough.\tJe le découvrirai bien assez tôt.\nI'll fix you a cup of tea.\tJe vous préparerai une tasse de thé.\nI'll fix you a cup of tea.\tJe te préparerai une tasse de thé.\nI'll get there before you.\tJ'y arriverai avant vous.\nI'll give it my best shot.\tJe ferai de mon mieux.\nI'll give you a lift home.\tJe vous reconduirai chez vous.\nI'll give you a lift home.\tJe vous reconduirai chez nous.\nI'll give you a lift home.\tJe te reconduirai chez toi.\nI'll give you a lift home.\tJe te reconduirai chez nous.\nI'll give you a ride home.\tJe te conduirai chez toi.\nI'll give you a ride home.\tJe vous conduirai chez vous.\nI'll give you this camera.\tJe te donnerai cette caméra.\nI'll give you this camera.\tJe vous donnerai cet appareil photo.\nI'll go and get your coat.\tJe vais aller chercher votre manteau.\nI'll go and get your coat.\tJe vais aller chercher ton manteau.\nI'll go anywhere you want.\tJ'irai où vous voulez.\nI'll go anywhere you want.\tJ'irai où tu veux.\nI'll go take a shower now.\tJe vais aller prendre une douche maintenant.\nI'll hang onto it for now.\tJe vais le conserver pour l'instant.\nI'll hang onto it for now.\tJe vais la conserver pour l'instant.\nI'll have a talk with Tom.\tJ'aurai une discussion avec Tom.\nI'll have to do it myself.\tJe devrai le faire moi-même.\nI'll help you if possible.\tJe t'aiderai si c'est possible.\nI'll join you in a moment.\tJe vous rejoindrai dans un moment.\nI'll join you in a moment.\tJe te rejoindrai dans un moment.\nI'll join you there later.\tJe vous y rejoindrai plus tard.\nI'll join you there later.\tJe t'y rejoindrai plus tard.\nI'll just get you started.\tJe vais simplement vous aider à démarrer.\nI'll just get you started.\tJe vais simplement t'aider à démarrer.\nI'll just leave this here.\tJe laisserai simplement ceci ici.\nI'll kill the both of you.\tJe vous tuerai tous les deux.\nI'll kill the both of you.\tJe vous tuerai toutes les deux.\nI'll leave Boston tonight.\tJe quitterai Boston ce soir.\nI'll leave Boston tonight.\tJe partirai de Boston ce soir.\nI'll leave that up to you.\tJe laisserai ça à vos soins.\nI'll leave that up to you.\tJe laisserai ça à tes soins.\nI'll lend you my notebook.\tJe te prêterai mon carnet de notes.\nI'll lend you my notebook.\tJe vous prêterai mon carnet de notes.\nI'll make a pot of coffee.\tJe vais préparer une cafetière.\nI'll make you proud of me.\tJe vous rendrai fier de moi.\nI'll make you proud of me.\tJe te rendrai fier de moi.\nI'll make you proud of me.\tJe vous rendrai fière de moi.\nI'll make you proud of me.\tJe te rendrai fière de moi.\nI'll make you proud of me.\tJe vous rendrai fières de moi.\nI'll make you proud of me.\tJe vous rendrai fiers de moi.\nI'll make you some coffee.\tJe vous ferai du café.\nI'll make you some coffee.\tJe te ferai du café.\nI'll need you to be there.\tJ'aurai besoin que vous soyez là.\nI'll need you to be there.\tJ'aurai besoin que tu sois là.\nI'll never be that famous.\tJe ne serai jamais aussi connu.\nI'll never be that famous.\tJe ne serai jamais aussi connue.\nI'll never be young again.\tJe ne serai plus jamais jeune.\nI'll never forgive myself.\tJe ne me pardonnerai jamais.\nI'll never understand you.\tJe ne vous comprendrai jamais.\nI'll never understand you.\tJe ne te comprendrai jamais.\nI'll remember you forever.\tJe me souviendrai de vous pour toujours.\nI'll remember you forever.\tJe me souviendrai de vous à jamais.\nI'll remember you forever.\tJe me souviendrai toujours de toi.\nI'll remember you forever.\tJe me souviendrai toujours de vous.\nI'll say it one more time.\tJe vais le répéter une fois de plus.\nI'll see to it right away.\tJe vais m'en occuper immédiatement.\nI'll see what is possible.\tJe verrai ce qui est possible.\nI'll see you at the party.\tJe te verrai à la fête.\nI'll see you at the party.\tJe vous verrai à la fête.\nI'll show my album to you.\tJe te montrerai mon album.\nI'll show my album to you.\tJe vous montrerai mon album.\nI'll show you around town.\tJe te montrerai la ville.\nI'll show you around town.\tJe vous montrerai la ville.\nI'll show you the way out.\tJe vais vous montrer la sortie.\nI'll show you the way out.\tJe vais te montrer la sortie.\nI'll show you the way out.\tJe vais vous indiquer la sortie.\nI'll show you the way out.\tJe vais t'indiquer la sortie.\nI'll show you where it is.\tJe vais vous montrer où ça se trouve.\nI'll show you where it is.\tJe vais te montrer où ça se trouve.\nI'll spend the night here.\tJe vais passer la nuit ici.\nI'll stay a few more days.\tJe resterai quelques jours de plus.\nI'll stay out of your way.\tJe resterai à l'écart de votre chemin.\nI'll stay out of your way.\tJe resterai à l'écart de ton chemin.\nI'll take care of the cat.\tJe prendrai soin du chat.\nI'll take care of you all.\tJe prendrai soin de vous tous.\nI'll talk to you tomorrow.\tJe parlerai avec toi demain.\nI'll talk to you tomorrow.\tJe vous parlerai demain.\nI'll talk to you tomorrow.\tJe te parlerai demain.\nI'll tell you what I know.\tJe vous ferai part de ce que je sais.\nI'll tell you what I know.\tJe te ferai part de ce que je sais.\nI'll tell you what to say.\tJe vais te dire quoi dire.\nI'll tell you what to say.\tJe vais vous dire quoi dire.\nI'll text you the address.\tJe vous enverrai l'adresse par SMS.\nI'll text you the address.\tJe t'enverrai l'adresse par Texto.\nI'll try to distract them.\tJ'essayerai de distraire leur attention.\nI'll try to keep it short.\tJ'essayerai de faire court.\nI'll try to remember that.\tJ'essayerai de me souvenir de cela.\nI'll turn it into a house.\tJe vais le transformer en une maison.\nI'll walk you to the gate.\tJe vais vous accompagner au portail.\nI'm a fan of German opera.\tJe suis un inconditionnel de l'opéra allemand.\nI'm a fan of German opera.\tJe suis une inconditionnelle de l'opéra allemand.\nI'm a high school student.\tJe suis un lycéen.\nI'm a little disappointed.\tJe suis un peu déçu.\nI'm a little disappointed.\tJe suis un peu déçue.\nI'm a little disappointed.\tJe suis quelque peu déçu.\nI'm a little disappointed.\tJe suis quelque peu déçue.\nI'm a pretty good student.\tJe suis assez bon étudiant.\nI'm a pretty good student.\tJe suis assez bonne étudiante.\nI'm a pretty good swimmer.\tJe suis assez bon nageur.\nI'm a pretty good swimmer.\tJe suis assez bonne nageuse.\nI'm a pretty happy person.\tJe suis une personne assez heureuse.\nI'm adding the last touch.\tJe suis en train d'ajouter la dernière touche.\nI'm afraid I don't follow.\tJe crains de ne pas suivre.\nI'm afraid he cannot come.\tJe crains qu'il ne puisse venir.\nI'm afraid of earthquakes.\tJ'ai peur des tremblements de terre.\nI'm almost as tall as Tom.\tJe suis presque aussi grand que Tom.\nI'm always under pressure.\tJe suis toujours sous pression.\nI'm as curious as you are.\tJe suis aussi curieuse que vous.\nI'm as curious as you are.\tJe suis aussi curieuse que toi.\nI'm as curious as you are.\tJe suis aussi curieux que vous.\nI'm as curious as you are.\tJe suis aussi curieux que toi.\nI'm as shocked as you are.\tJe suis aussi choqué que vous.\nI'm as shocked as you are.\tJe suis aussi choquée que vous.\nI'm as shocked as you are.\tJe suis aussi choqué que toi.\nI'm as shocked as you are.\tJe suis aussi choquée que toi.\nI'm ashamed of what I did.\tJ'ai honte de ce que j'ai fait.\nI'm asking what you think.\tJe demande ce que tu en penses.\nI'm asking what you think.\tJe demande ce que vous en pensez.\nI'm at the end of my rope.\tPour moi, c'est la fin des haricots.\nI'm attaching three files.\tJe joins trois fichiers.\nI'm beginning to hate her.\tJe commence à la détester.\nI'm being honest with you.\tJe suis honnête avec vous.\nI'm being honest with you.\tJe suis honnête avec toi.\nI'm being paid to do this.\tJe suis payé pour faire ça.\nI'm being paid to do this.\tJe suis payée pour faire ça.\nI'm being paid to do this.\tOn me paie pour faire ça.\nI'm bringing home a pizza.\tJe ramène une pizza à la maison.\nI'm bringing home a pizza.\tJe ramène une pizza chez moi.\nI'm bringing home a pizza.\tJe suis en train de ramener une pizza à la maison.\nI'm bringing home a pizza.\tJe suis en train de ramener une pizza chez moi.\nI'm busy with my homework.\tJe suis occupé à mes devoirs.\nI'm coming to pick you up.\tJe viens te chercher.\nI'm considering resigning.\tJe réfléchis à démissionner.\nI'm considering resigning.\tJe songe à démissionner.\nI'm counting on your help.\tJe compte sur votre aide.\nI'm counting on your help.\tJe compte sur ton aide.\nI'm cutting my trip short.\tJe raccourcis mon voyage.\nI'm delighted to meet you.\tJe suis ravi de te rencontrer.\nI'm delighted to meet you.\tJe suis enchanté de vous rencontrer.\nI'm delighted to meet you.\tJe suis ravi de vous rencontrer.\nI'm delighted to meet you.\tJe suis ravie de vous rencontrer.\nI'm delighted to meet you.\tJe suis ravie de te rencontrer.\nI'm delighted to meet you.\tJe suis enchantée de te rencontrer.\nI'm delighted to meet you.\tJe suis enchanté de te rencontrer.\nI'm delighted to meet you.\tJe suis enchantée de vous rencontrer.\nI'm doing the right thing.\tJe fais le bon choix.\nI'm doing the right thing.\tJ'ai pris la bonne décision.\nI'm done listening to you.\tJ'en ai fini de t'écouter.\nI'm done listening to you.\tJ'en ai fini de vous écouter.\nI'm done with all of that.\tJ'en ai fini avec tout cela.\nI'm fairly busy, actually.\tJe suis assez occupé, en réalité.\nI'm feeling kind of tired.\tJe me sens un peu fatigué.\nI'm feeling sort of tired.\tJe me sens plutôt fatigué.\nI'm feeling sort of tired.\tJe me sens plutôt fatiguée.\nI'm finishing my homework.\tJe finis mes devoirs.\nI'm gathering information.\tJe rassemble des informations.\nI'm getting a bad feeling.\tJ'ai une mauvaise impression.\nI'm getting tired of this.\tÇa me pompe.\nI'm getting tired of this.\tÇa me fatigue.\nI'm glad I could help out.\tJe suis content d'avoir pu aider.\nI'm glad I could help you.\tJe suis contente d’avoir pu t’être utile.\nI'm glad I make you happy.\tJe me réjouis de te contenter.\nI'm glad I make you happy.\tJe me réjouis de vous contenter.\nI'm glad that Tom is here.\tJe suis content que Tom soit là.\nI'm glad that you'll come.\tJe suis heureux que vous veniez.\nI'm glad that you're here.\tJe me réjouis que vous soyez ici.\nI'm glad that you're here.\tJe me réjouis que tu sois ici.\nI'm glad to see you again.\tJe suis content de vous revoir.\nI'm glad to see you again.\tJe me réjouis de te revoir.\nI'm glad to see you again.\tJe me réjouis de vous revoir.\nI'm glad to see you're OK.\tJe me réjouis de voir que vous allez bien.\nI'm glad to see you're OK.\tJe me réjouis de voir que tu vas bien.\nI'm glad you didn't do it.\tJe suis contente que tu ne l'ai pas fait.\nI'm glad you didn't do it.\tJe suis content que tu ne l'ai pas fait.\nI'm glad you didn't do it.\tJe suis heureux que vous le n'ayez pas fait.\nI'm glad you didn't do it.\tJe suis heureuse que vous le n'ayez pas fait.\nI'm glad you realize that.\tJe me réjouis que vous en preniez conscience.\nI'm glad you realize that.\tJe me réjouis que tu en prennes conscience.\nI'm glad you weren't here.\tJe me réjouis que vous n'étiez pas ici.\nI'm glad you weren't here.\tJe me réjouis que tu n'étais pas ici.\nI'm glad you're all right.\tJe me réjouis que vous vous portiez bien.\nI'm glad you're all right.\tJe me réjouis que tu te portes bien.\nI'm glad you're my friend.\tJe me réjouis que vous soyez mon amie.\nI'm glad you're my friend.\tJe me réjouis que vous soyez mon ami.\nI'm glad you're my friend.\tJe me réjouis que tu sois mon amie.\nI'm glad you're my friend.\tJe me réjouis que tu sois mon ami.\nI'm going back to college.\tJe retourne à la fac.\nI'm going back to college.\tJe retourne en fac.\nI'm going out for a drink.\tJe sors prendre un verre.\nI'm going out for a while.\tJe sors un moment.\nI'm going to be a teacher.\tJe vais être enseignant.\nI'm going to be a teacher.\tJe vais être enseignante.\nI'm going to be all right.\tÇa va aller.\nI'm going to be gone soon.\tJe vais bientôt être partie.\nI'm going to be gone soon.\tJe vais bientôt être parti.\nI'm going to be out today.\tJe vais être à l'extérieur, aujourd'hui.\nI'm going to be over here.\tJe vais être ici.\nI'm going to build a fire.\tJe vais faire un feu.\nI'm going to build a fire.\tJe vais confectionner un bûcher.\nI'm going to cook for you.\tJe vais cuisiner pour vous.\nI'm going to cook for you.\tJe vais cuisiner pour toi.\nI'm going to drive myself.\tJe vais conduire par mes propres moyens.\nI'm going to the hospital.\tJe vais à l'hôpital.\nI'm growing a beard again.\tJe me fais à nouveau pousser la barbe.\nI'm happy to see you here.\tJe suis heureux de te voir ici.\nI'm happy to see you here.\tJe suis heureux de vous voir ici.\nI'm headed back into town.\tJe suis en route pour retourner en ville.\nI'm here to do what I can.\tJe suis ici pour faire ce que je peux.\nI'm in charge of security.\tJe suis responsable de la sécurité.\nI'm in charge of shopping.\tJe suis responsable des courses.\nI'm just following orders.\tJe ne fais qu'obéir aux ordres.\nI'm just trying to get by.\tJ'essaie simplement de m'en sortir.\nI'm keeping my mouth shut.\tJe la ferme.\nI'm learning how to drive.\tJ'apprends à conduire.\nI'm looking for a sweater.\tJe cherche un pull-over.\nI'm looking for a sweater.\tJe cherche un chandail.\nI'm looking for batteries.\tJe cherche des piles.\nI'm looking for my camera.\tJe cherche mon appareil photo.\nI'm looking forward to it.\tJ'attends cela avec impatience.\nI'm majoring in sociology.\tJe me spécialise en sociologie.\nI'm much younger than you.\tJe suis bien plus jeune que vous.\nI'm much younger than you.\tJe suis beaucoup plus jeune que vous.\nI'm much younger than you.\tJe suis beaucoup plus jeune que toi.\nI'm not buying your story.\tJe ne gobe pas ton histoire.\nI'm not buying your story.\tJe ne gobe pas votre histoire.\nI'm not convinced of that.\tJe n'en suis pas convaincu.\nI'm not convinced of that.\tJe n'en suis pas convaincue.\nI'm not done with you yet.\tJe n'en ai pas encore fini avec vous.\nI'm not done with you yet.\tJe n'en ai pas encore fini avec toi.\nI'm not done with you yet.\tMoi je n'en ai pas encore fini avec vous.\nI'm not done with you yet.\tMoi je n'en ai pas encore fini avec toi.\nI'm not exactly surprised.\tJe ne suis pas tout à fait surpris.\nI'm not exactly surprised.\tJe ne suis pas tout à fait surprise.\nI'm not finished with him.\tJe n'en ai pas fini avec lui.\nI'm not finished with you.\tJe n'en ai pas fini avec toi.\nI'm not finished with you.\tJe n'en ai pas fini avec vous.\nI'm not going to call Tom.\tJe ne vais pas appeler Tom.\nI'm not going to eat this.\tJe ne vais pas manger ceci.\nI'm not going to help you.\tJe ne vais pas vous aider.\nI'm not going to help you.\tJe ne vais pas t'aider.\nI'm not going to hurt you.\tJe ne vais pas te faire de mal.\nI'm not going to hurt you.\tJe ne vais pas vous faire de mal.\nI'm not going to pass out.\tJe ne vais pas m'évanouir.\nI'm not going to touch it.\tJe ne vais pas y toucher.\nI'm not happy with my job.\tMon travail ne me plaît pas.\nI'm not in good shape now.\tJe ne suis pas en forme maintenant.\nI'm not learning anything.\tJe n'apprends rien.\nI'm not like other people.\tJe ne suis pas comme les autres gens.\nI'm not like that anymore.\tJe ne suis plus ainsi.\nI'm not on anybody's side.\tJe ne suis dans le camp de personne.\nI'm not planning anything.\tJe ne prévois rien.\nI'm not pressed for money.\tJe ne suis pas en mal d'argent.\nI'm not scared of anybody.\tJe ne crains personne.\nI'm not so good at tennis.\tJe ne suis pas tellement bon en tennis.\nI'm not supposed to drink.\tJe ne suis pas supposé boire.\nI'm not supposed to drink.\tJe ne suis pas supposée boire.\nI'm not sure I understand.\tJe ne suis pas sûr de comprendre.\nI'm not sure I understand.\tJe ne suis pas sûre de comprendre.\nI'm not sure if he saw it.\tJe ne suis pas sûr qu'il l'ait vu.\nI'm not sure if he saw it.\tJe ne suis pas sûre qu'il l'ait vu.\nI'm not sure if he saw it.\tJe ne suis pas sûre qu'il l'ait vue.\nI'm not sure if he saw it.\tJe ne suis pas sûr qu'il l'ait vue.\nI'm not telling you again.\tJe ne vais pas vous le répéter.\nI'm not telling you again.\tJe ne vais pas te le répéter.\nI'm not that kind of girl.\tJe ne suis pas ce genre de fille.\nI'm not that kind of girl.\tJe ne suis pas cette sorte de fille.\nI'm not thinking about it.\tJe n'y pense pas.\nI'm not thirsty right now.\tJe n'ai pas soif, pour le moment.\nI'm not used to this heat.\tJe ne suis pas habitué à cette chaleur.\nI'm not used to this heat.\tJe ne suis pas habituée à cette chaleur.\nI'm not usually this busy.\tJe ne suis pas si occupé en général.\nI'm not what I used to be.\tJe ne suis plus ce que j'étais.\nI'm not worried about Tom.\tJe ne m'inquiète pas pour Tom.\nI'm not worried about Tom.\tJe ne suis pas inquiet pour Tom.\nI'm not worried about him.\tJe ne me fais pas de souci à son sujet.\nI'm not worried about him.\tJe ne me fais pas de souci pour lui.\nI'm not worried about you.\tJe ne me fais pas de souci à ton sujet.\nI'm not worried about you.\tJe ne me fais pas de souci à votre sujet.\nI'm not writing about you.\tJe n'écris pas à ton sujet.\nI'm not writing about you.\tJe n'écris pas à votre sujet.\nI'm often only half awake.\tJe ne suis souvent qu'à moitié réveillé.\nI'm often only half awake.\tJe ne suis souvent qu'à moitié réveillée.\nI'm reading the newspaper.\tJe suis en train de lire le journal.\nI'm really busy right now.\tJe suis vraiment occupé, à l'instant.\nI'm really busy right now.\tJe suis vraiment occupée, à l'instant.\nI'm relieved to hear that.\tJe suis soulagé d'entendre cela.\nI'm relieving you of duty.\tJe vous relève de votre service.\nI'm running out of energy.\tJe suis à court d'énergie.\nI'm so confused right now.\tJe suis tellement perplexe, en ce moment.\nI'm so happy for you, Tom.\tJe suis si heureux pour toi, Tom.\nI'm so happy for you, Tom.\tJe suis si heureux pour vous, Tom.\nI'm so happy for you, Tom.\tJe suis si heureuse pour toi, Tom.\nI'm sorry I yelled at you.\tJe suis désolé de t'avoir hurlé dessus.\nI'm sorry I yelled at you.\tJe suis désolée de t'avoir hurlé dessus.\nI'm sorry I yelled at you.\tJe suis désolé de vous avoir hurlé dessus.\nI'm sorry I yelled at you.\tJe suis désolée de vous avoir hurlé dessus.\nI'm sorry I yelled at you.\tJe suis désolé de vous avoir crié après.\nI'm sorry I yelled at you.\tJe suis désolée de vous avoir crié après.\nI'm sorry I yelled at you.\tJe suis désolé de t'avoir crié après.\nI'm sorry I yelled at you.\tJe suis désolée de t'avoir crié après.\nI'm sorry about yesterday.\tJe suis désolé à propos d'hier.\nI'm sorry about yesterday.\tJe suis désolée à propos d'hier.\nI'm sorry about your loss.\tJe suis désolé pour votre perte.\nI'm sorry about your loss.\tJe suis désolée pour votre perte.\nI'm sorry if I scared you.\tDésolé si je vous ai fait peur.\nI'm sorry if I scared you.\tJe suis désolée de t'avoir fait peur.\nI'm sorry, I don't buy it.\tJe suis désolé, je ne gobe pas ça.\nI'm sorry, I don't buy it.\tJe suis désolée, je ne gobe pas ça.\nI'm still shopping around.\tJe fais encore mon marché.\nI'm still studying French.\tJ'étudie toujours le français.\nI'm studying kabuki drama.\tJ'étudie l'art dramatique du kabuki.\nI'm sure Mom will get mad.\tJe suis sûr que maman se mettra en colère.\nI'm sure Tom is suffering.\tJe suis certain que Tom souffre.\nI'm sure Tom is suffering.\tJe suis certaine que Tom souffre.\nI'm sure Tom was involved.\tJe suis sûr que Tom était impliqué.\nI'm sure Tom was involved.\tJe suis sûre que Tom était impliqué.\nI'm sure Tom was involved.\tJe suis sûr que Tom a été impliqué.\nI'm sure Tom was involved.\tJe suis sûre que Tom a été impliqué.\nI'm sure he would approve.\tJe suis certain qu'il approuverait.\nI'm sure we can trust Tom.\tJe suis sûr que nous pouvons faire confiance à Tom.\nI'm sure we can trust Tom.\tJe suis sûr qu'on peut faire confiance à Tom.\nI'm sure you're very busy.\tJe suis sûr que tu es très occupée.\nI'm terrible at languages.\tJe suis nul en langues.\nI'm too poor to marry her.\tJe suis trop pauvre pour l'épouser.\nI'm too tired to do study.\tJe suis trop fatigué pour étudier.\nI'm trying to talk to you.\tJ'essaie de te parler.\nI'm trying to talk to you.\tJ'essaie de vous parler.\nI'm trying to talk to you.\tJe tente de te parler.\nI'm trying to talk to you.\tJe tente de vous parler.\nI'm usually not this busy.\tJe ne suis pas si occupé d'habitude.\nI'm very glad to meet you.\tJe suis très heureux de vous rencontrer.\nI'm very happy to be here.\tJe suis très heureux d'être ici.\nI'm very happy to see you.\tJe suis très heureux de te voir.\nI'm very sad to hear that.\tJe suis très triste d'entendre cela.\nI'm very sad to hear that.\tJe suis très triste d'entendre ça.\nI'm waiting for my friend.\tJ'attends mon amie.\nI'm waiting for my mother.\tJ'attends ma mère.\nI'm waiting for your help.\tJ'attends ton aide.\nI'm watching the Olympics.\tJe suis en train de regarder les jeux olympiques.\nI've already fed the baby.\tJ'ai déjà nourri le bébé.\nI've already fed the baby.\tJ'ai déjà nourri le bambin.\nI've already fed the baby.\tJ'ai déjà alimenté le bébé.\nI've always hated biology.\tJ'ai toujours détesté la biologie.\nI've been all over Europe.\tJ'ai voyagé à travers toute l'Europe.\nI've been calling all day.\tJ'ai appelé toute la journée.\nI've been walking all day.\tJ'ai marché toute la journée.\nI've been working all day.\tJ'ai travaillé toute la journée.\nI've given up eating meat.\tJ'ai cessé de manger de la viande.\nI've got a little problem.\tJ'ai un petit problème.\nI've got no time for that.\tJe n'ai pas de temps pour ça.\nI've got pliers in my car.\tJ'ai une tenaille dans ma voiture.\nI've got really good news.\tJ'ai de vraiment bonnes nouvelles.\nI've got somebody with me.\tJ'ai quelqu'un avec moi.\nI've got something better.\tJ'ai quelque chose de meilleur.\nI've got this one covered.\tJe m'en occupe.\nI've got to see a dentist.\tJe dois voir un dentiste.\nI've just finished dinner.\tJe vient de finir mon dîner.\nI've known that all along.\tJe l'ai toujours su.\nI've made lots of friends.\tJe me suis fait de nombreux amis.\nI've made lots of friends.\tJe me suis fait de nombreuses amies.\nI've made lots of friends.\tJe me suis fait beaucoup d'amies.\nI've met people like that.\tJ'ai rencontré des gens comme ça.\nI've met people like that.\tJ'ai rencontré des gens comme ceux-là.\nI've met that girl before.\tJ'ai rencontré cette fille auparavant.\nI've never been to Europe.\tJe n'ai jamais été en Europe.\nI've never been to Europe.\tJe ne suis jamais allé en Europe.\nI've never broken the law.\tJe n'ai jamais enfreint la loi.\nI've never seen you laugh.\tJe ne t’ai jamais vu rire.\nI've never seen you laugh.\tJe ne t’ai jamais vue rire.\nI've never seen you laugh.\tJe ne vous ai jamais vue rire.\nI've seen all your movies.\tJ'ai vu tous vos films.\nI've tried to contact Tom.\tJ'ai essayé de contacter Tom.\nI've tried to talk to Tom.\tJ'ai essayé de parler à Tom.\nIf only I could go skiing.\tSi seulement je pouvais aller skier.\nIf only I could sing well.\tSi seulement je pouvais bien chanter.\nIf only he had been there.\tSi seulement il avait été là.\nIf you don't eat, you die.\tSi on ne mange pas, on meurt.\nIf you don't eat, you die.\tSi tu ne manges pas, tu meurs.\nIf you heat ice, it melts.\tLorsqu'on chauffe de la glace, elle fond.\nIf you want to talk, talk.\tSi vous voulez parler, parlez !\nIf you want to talk, talk.\tSi tu veux parler, parle !\nIf you're happy, I'm glad.\tSi tu es satisfait, je m'en réjouis.\nIf you're happy, I'm glad.\tSi tu es satisfaite, je m'en réjouis.\nIf you're happy, I'm glad.\tSi vous êtes satisfait, je m'en réjouis.\nIf you're happy, I'm glad.\tSi vous êtes satisfaite, je m'en réjouis.\nIf you're happy, I'm glad.\tSi vous êtes satisfaites, je m'en réjouis.\nIf you're happy, I'm glad.\tSi vous êtes satisfaits, je m'en réjouis.\nIf you're not happy, quit.\tSi tu n'es pas satisfait, abandonne !\nIf you're not happy, quit.\tSi vous n'êtes pas satisfaite, laissez tomber !\nIf you're not happy, quit.\tSi vous n'êtes pas satisfaites, laissez tomber !\nIf you're not happy, quit.\tSi vous n'êtes pas satisfait, laissez tomber !\nIf you're not happy, quit.\tSi vous n'êtes pas satisfaits, laissez tomber !\nIf you're not happy, quit.\tSi tu n'es pas satisfaite, laisse tomber !\nIn a sense, you are right.\tDans un certain sens, vous avez raison.\nIn a sense, you are right.\tDans un certain sens, tu as raison.\nIn a sense, you are right.\tEn un certain sens, vous avez raison.\nIn a sense, you are right.\tEn un certain sens, tu as raison.\nIn case of fire, dial 119.\tEn cas d'incendie, composez le 119.\nIn my opinion, he's right.\tMon opinion est qu'il a raison.\nIn my opinion, he's right.\tJe crois qu'il a raison.\nIs Tom's name on the list?\tLe prénom de Tom est-il sur la liste?\nIs death the only way out?\tLa mort est-elle la seule délivrance ?\nIs death the only way out?\tLa mort est-elle la seule issue ?\nIs her hair naturally red?\tSes cheveux sont-il naturellement roux ?\nIs it going to rain today?\tVa-t-il pleuvoir aujourd'hui ?\nIs it something important?\tC'est quelque chose d'important ?\nIs mercury really a metal?\tLe mercure est-il véritablement un métal ?\nIs she your only daughter?\tEst-elle ta fille unique ?\nIs she your only daughter?\tEst-ce qu'elle est ta fille unique ?\nIs she your only daughter?\tEst-elle votre fille unique ?\nIs she your only daughter?\tEst-elle votre seule fille ?\nIs that what Tom told you?\tEst-ce ce que Tom t'a dit ?\nIs that what Tom told you?\tEst-ce ce que Tom vous a dit ?\nIs there a bank near here?\tY a-t-il une banque dans les environs ?\nIs there a lot left to do?\tReste-t-il beaucoup à faire ?\nIs there a mall near here?\tY a-t-il un centre commercial près d'ici ?\nIs there another solution?\tEst-ce qu'il y a une autre solution ?\nIs there any life on Mars?\tY a-t-il de la vie sur Mars ?\nIs there any life on Mars?\tY a-t-il la moindre vie sur Mars ?\nIs there someone with you?\tQuelqu'un est-il avec toi ?\nIs there someone with you?\tQuelqu'un est-il avec vous ?\nIs there someone with you?\tY a-t-il quelqu'un avec toi ?\nIs there someone with you?\tY a-t-il quelqu'un avec vous ?\nIs this a pen or a pencil?\tEst-ce un stylo ou un crayon ?\nIs this all you have, sir?\tEst-ce tout ce que vous avez, Monsieur ?\nIs this some kind of joke?\tEst-ce là une sorte de plaisanterie ?\nIs this some kind of joke?\tS'agit-il d'une sorte de plaisanterie ?\nIs this the best you have?\tC'est ce que tu as de mieux ?\nIs this the best you have?\tEst-ce ce que vous avez de mieux ?\nIs this the bus to Oxford?\tEst-ce que c'est le bus à destination d'Oxford ?\nIs this the bus to Oxford?\tEst-ce le bus à destination d'Oxford ?\nIs this the train station?\tEst-ce là la gare ?\nIsn't it a lovely morning?\tN'est-ce pas un matin délicieux ?\nIsn't it a lovely morning?\tN'est-ce pas un merveilleux matin ?\nIsn't that enough for you?\tN'est-ce pas suffisant pour toi ?\nIsn't that enough for you?\tN'est-ce pas suffisant pour vous ?\nIsn't that why we're here?\tN'est-ce pas là la raison de notre présence ici ?\nIt can't be a coincidence.\tÇa ne peut pas être une coïncidence.\nIt costs an arm and a leg.\tÇa coûte les yeux de la tête.\nIt costs an arm and a leg.\tÇa coûte un pont.\nIt could be a coincidence.\tCe pourrait être une coïncidence.\nIt could happen to anyone.\tÇa pourrait arriver à n'importe qui.\nIt depends on the weather.\tÇa dépend du temps.\nIt didn't happen that way.\tÇa ne s'est pas passé de cette façon.\nIt didn't happen that way.\tÇa ne s'est pas produit de cette façon.\nIt didn't happen that way.\tÇa n'est pas arrivé de cette façon.\nIt doesn't make any sense.\tÇa ne veut rien dire.\nIt doesn't matter anymore.\tÇa n'a plus d'importance.\nIt doesn't take very long.\tÇa ne prend pas beaucoup de temps.\nIt doesn't take very long.\tÇa ne prend guère de temps.\nIt hadn't crossed my mind.\tCela ne m'est pas venu à l'esprit.\nIt hadn't crossed my mind.\tCela ne m'était pas venu à l'esprit.\nIt has become much warmer.\tLe temps est devenu beaucoup plus chaud.\nIt is a difficult problem.\tC'est un problème difficile.\nIt is easy to play tennis.\tJouer au tennis est facile.\nIt is good to be a winner.\tC'est bon d'être un gagneur.\nIt is impossible to do it.\tC'est impossible à faire.\nIt is made partly of wood.\tC'est partiellement fait de bois.\nIt is no use trying again.\tÇa ne sert à rien de réessayer.\nIt is out of the question.\tC'est hors de question.\nIt is out of the question.\tIl n'en est pas question.\nIt is quiet here at night.\tC'est calme ici la nuit.\nIt is still light outside.\tIl y a encore de la lumière, dehors.\nIt is still light outside.\tIl fait encore jour dehors.\nIt is their right to vote.\tVoter est leur droit.\nIt is threatening to rain.\tIl menace de pleuvoir.\nIt is too early to get up.\tIl est trop tôt pour se lever.\nIt is too good to be true.\tC'est trop beau pour être vrai.\nIt is what everybody says.\tC'est ce que tout le monde dit.\nIt is wrong to tell a lie.\tC'est mal de dire un mensonge.\nIt isn't too late for you.\tIl n'est pas trop tard pour toi.\nIt isn't too late for you.\tIl n'est pas trop tard pour vous.\nIt keeps you on your toes.\tÇa t'oblige à rester vigilant.\nIt keeps you on your toes.\tÇa t'oblige à rester vigilante.\nIt keeps you on your toes.\tÇa vous oblige à rester vigilante.\nIt keeps you on your toes.\tÇa vous oblige à rester vigilant.\nIt made me laugh out loud.\tÇa m'a fait éclater de rire.\nIt may or may not be true.\tCela peut être ou ne pas être vrai.\nIt may or may not be true.\tC'est peut-être vrai ou pas.\nIt may rain at any moment.\tIl peut pleuvoir à tout moment.\nIt must be here somewhere.\tIl doit être quelque part, ici.\nIt nearly cost me my life.\tÇa m'a presque coûté la vie.\nIt rained a lot last year.\tL'an passé, il a beaucoup plu.\nIt rained hard last night.\tIl a plu fort la nuit dernière.\nIt rains a lot in Okinawa.\tIl pleut beaucoup à Okinawa.\nIt really breaks my heart.\tÇa me brise vraiment le cœur.\nIt really depends on when.\tÇa va dépendre de quand.\nIt seems he's still alive.\tIl semble qu'il est encore en vie.\nIt seems he's still alive.\tIl semble qu'il soit encore en vie.\nIt seems that she's happy.\tIl semble qu'elle soit heureuse.\nIt seems very interesting.\tÇa a l'air très intéressant.\nIt shouldn't be like that.\tIl ne devrait pas en aller ainsi.\nIt shouldn't be like that.\tIl ne devrait pas en être ainsi.\nIt snowed a lot last year.\tIl a beaucoup neigé l'an dernier.\nIt was a crime of passion.\tC'était un crime passionnel.\nIt was a crime of passion.\tIl s'agissait d'un crime passionnel.\nIt was a great blow to us.\tCe fut un coup dur pour nous.\nIt was a great blow to us.\tCe fut pour nous un coup dur.\nIt was a national scandal.\tCe fut un scandale national.\nIt was a national scandal.\tÇa a été un scandale national.\nIt was a revelation to me.\tCe fut une révélation pour moi.\nIt was a revelation to me.\tÇa a été une révélation pour moi.\nIt was a stroke of genius.\tÇa a été un éclair de génie.\nIt was a very cold winter.\tCe fut un hiver terriblement froid.\nIt was an uphill struggle.\tCe fut un combat ardu.\nIt was an uphill struggle.\tÇa a été un combat ardu.\nIt was just a coincidence.\tC'était juste une coïncidence.\nIt was just a coincidence.\tC'était pure coïncidence.\nIt was just a coincidence.\tCe fut juste une coïncidence.\nIt was just a lucky guess.\tCe ne fut qu'une heureuse conjecture.\nIt was just a lucky guess.\tÇa n'était qu'une heureuse supposition.\nIt was just the beginning.\tCe n'était que le commencement.\nIt was no laughing matter.\tCe n'était pas un sujet de plaisanterie.\nIt was nothing but a joke.\tC'était juste une blague.\nIt was nowhere to be seen.\tOn ne le trouvait nulle part.\nIt was nowhere to be seen.\tC'était introuvable.\nIt was nowhere to be seen.\tOn ne le voyait nulle part.\nIt was raining last night.\tIl a plu la nuit dernière.\nIt was really interesting.\tC'était vraiment intéressant.\nIt was sunny this morning.\tIl y avait du soleil ce matin.\nIt was the only way to go.\tC'était la seule solution.\nIt wasn't much of a party.\tC'était plutôt réduit, comme fête.\nIt wasn't much of a storm.\tC'était plutôt léger, pour une tempête.\nIt will be very, very hot.\tIl fera très très chaud.\nIt will be very, very hot.\tÇa sera très très chaud.\nIt will cool down tonight.\tÇa va se rafraîchir ce soir.\nIt will soon be September.\tCe sera bientôt septembre.\nIt will stop raining soon.\tIl va bientôt s'arrêter de pleuvoir.\nIt won't take much longer.\tÇa ne prendra pas beaucoup plus de temps.\nIt works pretty well here.\tÇa fonctionne assez bien ici.\nIt would be better to try.\tCe serait mieux d'essayer.\nIt's OK to be scared, Tom.\tC'est normal d'avoir peur, Tom.\nIt's a beautiful painting.\tC'est un beau tableau.\nIt's a complicated matter.\tC'est une affaire compliquée.\nIt's a difficult language.\tC'est une langue difficile.\nIt's a double-edged sword.\tC'est une épée à double-tranchant.\nIt's a drop in the bucket.\tC'est une goutte d'eau dans l'océan.\nIt's a matter of survival.\tC'est une question de survie.\nIt's a really good school.\tC'est une très bonne école.\nIt's a rough neighborhood.\tC'est un quartier mal famé.\nIt's a rough neighborhood.\tC'est un quartier glauque.\nIt's a small price to pay.\tC'est un modeste prix à payer.\nIt's a small price to pay.\tC'est un faible prix à payer.\nIt's a very good question.\tC'est une très bonne question.\nIt's a very stressful job.\tC'est un boulot très stressant.\nIt's all part of the plan.\tTout ça fait partie du plan.\nIt's almost midnight here.\tIl est presque minuit ici.\nIt's already dark outside.\tIl fait déjà sombre dehors.\nIt's already nine o'clock.\tIl est déjà neuf heures.\nIt's always been that way.\tÇa a toujours été ainsi.\nIt's always been that way.\tIl en a toujours été ainsi.\nIt's an ambitious project.\tC'est un projet ambitieux.\nIt's an artificial flower.\tC'est une fleur artificielle.\nIt's backwards compatible.\tC'est rétrocompatible.\nIt's bad luck to say that.\tÇa porte malheur de dire ça.\nIt's difficult being rich.\tC'est difficile d'être riche.\nIt's easier than it looks.\tC'est plus facile que ça n'en a l'air.\nIt's enough for five days.\tC'est assez pour cinq jours.\nIt's getting dark outside.\tIl se fait sombre dehors.\nIt's harder than it looks.\tC'est plus dur que ça n'en a l'air.\nIt's her word against his.\tC'est sa parole contre la sienne.\nIt's just how things work.\tC'est juste la manière dont cela fonctionne.\nIt's just how things work.\tC'est juste ainsi que les choses fonctionnent.\nIt's kind of embarrassing.\tC'est plutôt embarrassant.\nIt's later than you think.\tIl est plus tard que tu ne penses.\nIt's never happened to me.\tÇa ne m'est jamais arrivé.\nIt's nice to be back home.\tC'est chouette d'être de retour chez soi.\nIt's nonsense to try that.\tC'est absurde de tenter ça.\nIt's not OK to smoke here.\tIl n'est pas autorisé de fumer ici.\nIt's not a pyramid scheme.\tCe n'est pas une chaîne d'argent.\nIt's not a pyramid scheme.\tCe n'est pas un système de vente pyramidale.\nIt's not a secret anymore.\tCe n'est plus un secret.\nIt's not always like that.\tCe n'est pas toujours comme ça.\nIt's not always like that.\tCe n'est pas toujours comme cela.\nIt's not always like this.\tCe n'est pas toujours comme ça.\nIt's not always like this.\tCe n'est pas toujours comme ceci.\nIt's not possible to wait.\tCe n'est pas possible d'attendre.\nIt's not really necessary.\tCe n'est pas vraiment nécessaire.\nIt's not that complicated.\tCe n'est pas si compliqué.\nIt's not the same anymore.\tCe n'est plus le même.\nIt's not the same anymore.\tCe n'est plus la même.\nIt's not very complicated.\tCe n'est pas très compliqué.\nIt's not worth the effort.\tÇa ne vaut pas la peine.\nIt's one of those moments.\tC'est l'un de ces instants.\nIt's only a minor setback.\tC'est juste un petit échec.\nIt's only a temporary fix.\tCe n'est qu'une réparation temporaire.\nIt's raining hard tonight.\tIl pleut des cordes ce soir.\nIt's really not important.\tCe n'est vraiment pas important.\nIt's really not that cold.\tIl ne fait vraiment pas si froid.\nIt's really not that hard.\tCe n'est vraiment pas si difficile.\nIt's really not that much.\tCe n'est vraiment pas beaucoup.\nIt's simple and intuitive.\tC'est simple et intuitif.\nIt's somebody else's turn.\tC'est le tour de quelqu'un d'autre.\nIt's starting to cool off.\tIl commence à faire froid.\nIt's the least I could do.\tC'est le moins que je pouvais faire.\nIt's time to go back home.\tC'est l'heure de rentrer à la maison.\nIt's time to go to school.\tIl est l'heure d'aller à l'école.\nIt's time to go to school.\tC'est l'heure d'aller à l'école.\nIt's time you got married.\tIl était temps que tu te maries.\nIt's too difficult for me.\tC'est trop difficile pour moi.\nIt's too little, too late.\tC'est trop peu, trop tard.\nIt's true that she's dead.\tIl est vrai qu'elle est morte.\nIt's way too cold to swim.\tIl fait beaucoup trop froid pour nager.\nIt's wonderful to be back.\tC'est merveilleux d'être de retour.\nIt's wonderful to be here.\tC'est merveilleux d'être ici.\nIt's worse than I thought.\tC'est pire que je ne pensais.\nIt's worse than I thought.\tC'est pire que je ne le pensais.\nIt's worse than I thought.\tC'est pire que je pensais.\nIt's worse than you think.\tC'est pire que tu ne penses.\nIt's worse than you think.\tC'est pire que vous ne pensez.\nIt's yours if you want it.\tIl est à vous si vous le voulez.\nIt's yours if you want it.\tIl est à toi si tu le veux.\nIt's yours if you want it.\tC'est à toi, si tu en veux.\nIt's yours if you want it.\tC'est à vous, si vous en voulez.\nJapanese houses are small.\tLes maisons japonaises sont petites.\nJust a minute. I'm coming.\tRien qu'une minute ! J'arrive !\nJust don't break anything.\tNe casse simplement rien.\nJust don't break anything.\tNe cassez simplement rien.\nJust ignore what Tom said.\tNe fais pas attention à ce que Tom a dit.\nJust imitate what he does.\tImite juste ce qu'il fait.\nJust pretend I'm not here.\tFais juste comme si je n'étais pas là !\nJust pretend I'm not here.\tFaites juste comme si je n'étais pas là !\nJust remember to have fun.\tSouviens-toi juste de prendre du bon temps.\nJust remember to have fun.\tSouvenez-vous juste de prendre du bon temps.\nKeep focused on your work.\tReste concentré sur ton travail !\nKeep focused on your work.\tReste concentrée sur ton travail !\nKeep focused on your work.\tRestez concentré sur votre travail !\nKeep focused on your work.\tRestez concentrée sur votre travail !\nKeep focused on your work.\tRestez concentrés sur votre travail !\nKeep focused on your work.\tRestez concentrées sur votre travail !\nKeep your eye on the ball.\tGardez l’œil sur le ballon.\nKeep your eye on the ball.\tNe quitte pas la balle des yeux.\nKissing Tom was a mistake.\tEmbrasser Tom était une erreur.\nLearning French is useful.\tApprendre le français est utile.\nLeave my room immediately.\tSors de ma chambre immédiatement.\nLeaves fall in the autumn.\tLes feuilles tombent en automne.\nLemons contain citric acid\tLes citrons contiennent de l'acide citrique.\nLend me your book, please.\tPrête-moi ton livre, s'il te plaît.\nLend me your book, please.\tS'il te plaît, prête-moi ton livre.\nLet me ask you a question.\tPermets-moi de te poser une question.\nLet me ask you a question.\tPermettez-moi de vous poser une question.\nLet me help you with that.\tLaissez-moi vous aider avec ça.\nLet me help you with that.\tLaisse-moi t'aider avec ça.\nLet me pay for the dinner.\tLaissez-moi payer le dîner.\nLet me read you something.\tLaisse-moi te lire quelque chose !\nLet me read you something.\tLaissez-moi vous lire quelque chose !\nLet me take your suitcase.\tLaisse-moi prendre ta valise.\nLet me take your suitcase.\tLaissez-moi prendre votre valise.\nLet's check one more time.\tVérifions encore une fois.\nLet's get a cup of coffee.\tPrenons une tasse de café !\nLet's get out of the rain.\tMettons-nous à l'abri de la pluie.\nLet's get out of the taxi.\tSortons du taxi.\nLet's get the party going.\tMettons la fête sur pieds.\nLet's go to the mountains.\tAllons à la montagne !\nLet's hope he's all right.\tEspérons qu'il va bien.\nLet's jump into the water.\tJetons-nous dans l'eau!\nLet's just get rid of Tom.\tDébarrassons-nous simplement de Tom.\nLet's not be fooled again.\tNe nous laissons pas berner à nouveau.\nLet's not do that anymore.\tNe le faisons plus !\nLet's not get discouraged.\tNe nous décourageons pas.\nLet's not go into details.\tNe nous perdons pas en détails.\nLet's not panic over this.\tNe paniquons pas à ce propos !\nLet's not wait any longer.\tN'attendons plus !\nLet's not waste our money.\tNe gâchons pas notre argent !\nLet's pull an all-nighter.\tFaisons une nuit blanche !\nLet's remember to do that.\tRappelons de faire ça.\nLet's replace all of them.\tRemplaçons les tous.\nLet's review the evidence.\tPassons en revue les éléments de preuve.\nLet's run to the bus stop.\tCourons jusqu'à l'arrêt de bus.\nLet's see if Tom can help.\tVoyons si Tom peut aider.\nLet's take a coffee break.\tFaisons une pause café.\nLet's take a look at this.\tJetons un coup d'œil là-dessus.\nLet's take a picture here.\tPrenons une photo ici.\nLet's take the 4:10 train.\tPrenons le train de 4 :10.\nLet's try and find a cure.\tEssayons de trouver un remède.\nLet's use it while we can.\tUtilisons le pendant que nous le pouvons.\nLet's wait for a few days.\tAttendons quelques jours.\nLife is full of mysteries.\tLa vie est emplie de mystères.\nLife is full of mysteries.\tLa vie est pleine de mystères.\nLife is full of surprises.\tLa vie est pleine de surprises.\nLife is full of surprises.\tLa vie est emplie de surprises.\nLine up by height, please.\tMettez-vous en rang par ordre de taille, je vous prie!\nLittle remains to be done.\tPeu reste à faire.\nLook at all these flowers.\tRegarde toutes ces fleurs !\nLook at all these flowers.\tRegardez toutes ces fleurs !\nLook at that red building.\tRegardez cet immeuble rouge.\nLuckily nobody got killed.\tHeureusement personne n'a été tué.\nLuna is a reliable person.\tLuna est une personne de confiance.\nLuna is a reliable person.\tLuna est une personne fiable.\nMake yourself comfortable.\tJe vous en prie, faites comme chez vous.\nMake yourself presentable.\tRends-toi présentable.\nMany attended his funeral.\tBeaucoup de gens prirent part à ses funérailles.\nMany people act like that.\tBeaucoup de gens se comportent comme ça.\nMany people are skeptical.\tBeaucoup de gens sont sceptiques.\nMary is Tom's twin sister.\tMary est la jumelle de Tom.\nMary is a wedding planner.\tMarie est une organisatrice de mariage.\nMary is as tall as Tom is.\tMary est aussi grande que Tom.\nMary is not wearing a bra.\tMarie ne porte pas de soutien‐gorge.\nMary likes helping others.\tMary aime aider les gens.\nMary likes milk very much.\tMary aime beaucoup le lait.\nMary's husband abused her.\tL'époux de Marie la maltraitait.\nMay I borrow your bicycle?\tPuis-je emprunter ton vélo ?\nMay I borrow your lighter?\tPuis-je emprunter votre briquet ?\nMay I borrow your lighter?\tPuis-je emprunter ton briquet ?\nMay I have a look at that?\tJe peux jeter un coup d’œil?\nMay I share your umbrella?\tPuis-je m'abriter sous votre parapluie ?\nMay I share your umbrella?\tPuis-je m'abriter sous ton parapluie ?\nMay I turn off the lights?\tPuis-je éteindre les lumières ?\nMay I use your dictionary?\tPuis-je utiliser votre dictionnaire ?\nMaybe Tom knows something.\tPeut-être Tom sait-il quelque chose.\nMaybe Tom would like that.\tPeut-être que Tom aimerait cela.\nMaybe he'll come tomorrow.\tPeut-être viendra-t-il demain.\nMaybe it was just a fluke.\tPeut-être n'était-ce qu'un coup de chance.\nMaybe we can sit together.\tPeut-être pouvons-nous nous asseoir ensemble.\nMeet me there at midnight.\tRencontre-m'y à minuit.\nMeet me there at midnight.\tRencontrez-m'y à minuit.\nMine is totally different.\tLe mien est totalement différent.\nMine is totally different.\tLa mienne est totalement différente.\nMom bought a puppy for us.\tMaman nous a acheté un chiot.\nMore is not always better.\tPlus n'est pas toujours mieux.\nMore is not always better.\tDavantage n'est pas toujours mieux.\nMother Nature is generous.\tMère Nature est généreuse.\nMother bought me the book.\tMaman m'a acheté le livre.\nMother made a doll for me.\tMère me confectionna une poupée.\nMother made me a new suit.\tMère m'a confectionné un nouveau costume.\nMurder is against the law.\tLe meurtre est contre la loi.\nMy apartment is near here.\tMon appartement est proche d'ici.\nMy aunt lives in New York.\tMa tante vit à New York.\nMy aunt lives in New York.\tMa tante habite à New York.\nMy battery is almost dead.\tMa batterie est presque morte.\nMy book bag is very heavy.\tMon sac d'école est très lourd.\nMy boss is a slave driver.\tMon patron est un vrai esclavagiste.\nMy brother is at his desk.\tMon frère est à son bureau.\nMy brother is out of work.\tMon frère est au chômage.\nMy brother is out of work.\tMon frère est sans emploi.\nMy brother lives in Tokyo.\tMon frère habite à Tokyo.\nMy business is prospering.\tMes affaires prospèrent.\nMy car needs to be washed.\tMa voiture a besoin d'être lavée.\nMy cough is getting worse.\tMa toux empire.\nMy daughter caught a cold.\tMa fille a attrapé froid.\nMy daughter is often sick.\tMa fille est souvent malade.\nMy daughter was premature.\tMa fille était prématurée.\nMy dog barks all the time.\tMon chien aboie tout le temps.\nMy dream went up in smoke.\tMon rêve s'envola en fumée.\nMy dream went up in smoke.\tMon rêve est parti en fumée.\nMy father gave up smoking.\tMon père a cessé de fumer.\nMy father has a red beard.\tMon père a une barbe rousse.\nMy father is on the wagon.\tMon père a arrêté de boire.\nMy father loves my mother.\tMon père aime ma mère.\nMy father may be sleeping.\tMon père est peut-être en train de dormir.\nMy father stopped smoking.\tMon père a arrêté de fumer.\nMy father was an engineer.\tMon père était ingénieur.\nMy father's in the garden.\tMon père est dans le jardin.\nMy favorite color is blue.\tMa couleur préférée est le bleu.\nMy heart was in my throat.\tJ'étais plein d'appréhension.\nMy heart was in my throat.\tJ'étais toute excitée.\nMy heart was in my throat.\tJ'étais tout excité.\nMy house has a small yard.\tMa maison a une petite cour.\nMy house has a small yard.\tMa maison comporte une petite cour.\nMy house has two bedrooms.\tMa maison a deux chambres à coucher.\nMy house is built of wood.\tMa maison est en bois.\nMy job is dull and boring.\tMon travail est ennuyeux.\nMy mobile has been stolen.\tJe me suis fait voler mon téléphone portable.\nMy mom works in a factory.\tMa maman travaille en usine.\nMy mother cleans the room.\tMa mère nettoie la pièce.\nMy mother has a red apron.\tMa mère porte un tablier rouge.\nMy mother tasted the milk.\tMa mère a goûté le lait.\nMy pet cat died yesterday.\tMon chat est mort hier.\nMy phone was out of order.\tMon téléphone était en dérangement.\nMy place is with them now.\tMa place est avec eux, désormais.\nMy place is with them now.\tMa place est avec elles, désormais.\nMy room has three windows.\tMa chambre a trois fenêtres.\nMy sister hit the jackpot!\tMa sœur a touché le jackpot !\nMy son won't listen to me.\tMon fils refuse de m'écouter.\nMy time is very expensive.\tMon temps coûte très cher.\nMy watch is very accurate.\tMa montre est très précise.\nMy wife is a good manager.\tMon épouse est un bon manager.\nMy wife is a good manager.\tMa femme est un bon imprésario.\nMy wife is a good manager.\tMa femme est une bonne gérante.\nMy wife is a good manager.\tMa femme est bonne gérante.\nMy wife is a good manager.\tMa femme est bon imprésario.\nMy wife is a good manager.\tMa femme est une bonne directrice.\nMy wife is a good manager.\tMa femme est bonne directrice.\nMy wife is a good manager.\tMa femme est une bonne administratrice.\nMy wife is a good manager.\tMa femme est bonne administratrice.\nMy wife really hates cats.\tMa femme déteste les chats.\nMy wife's trying to sleep.\tMa femme essaye de dormir.\nMy wish is to be a singer.\tMon souhait est d'être un chanteur.\nNature is full of mystery.\tLa nature est pleine de mystère.\nNature is full of mystery.\tLa nature regorge de mystère.\nNever speak ill of others.\tNe parlez jamais des autres en mal !\nNever speak ill of others.\tNe parle jamais des autres en mal !\nNever tell me a lie again.\tNe me dis plus jamais de mensonge !\nNever tell me a lie again.\tNe me dites plus jamais de mensonge !\nNever trust a naked woman.\tIl ne faut jamais se fier à une femme nue.\nNo Canadians were injured.\tAucun canadien ne fut blessé.\nNo Canadians were injured.\tAucun Canadien n'a été blessé.\nNo child should go hungry.\tAucun enfant ne devrait avoir faim.\nNo more questions, please.\tPlus de questions, je vous prie.\nNo one asked your opinion.\tPersonne ne vous a demandé votre avis.\nNo one asked your opinion.\tPersonne ne t'a demandé ton avis.\nNo one believed his story.\tPersonne n'a cru son histoire.\nNo one could buy anything.\tPersonne ne pouvait acheter quoi que ce soit.\nNo one goes there anymore.\tPersonne n'y va plus.\nNo one is in the bathroom.\tPersonne ne se trouve dans la salle de bain.\nNo one is listening to me.\tPersonne ne m'écoute.\nNo one knew Tom was there.\tPersonne ne savait que Tom était là.\nNo one knows where Tom is.\tPersonne ne sait où est Tom.\nNo one knows where we are.\tPersonne ne sait où nous sommes.\nNo one knows where we are.\tTout le monde ignore où nous sommes.\nNo one knows where we are.\tTout le monde ignore où nous nous trouvons.\nNo one knows where we are.\tPersonne ne sait où nous nous trouvons.\nNo one lives here anymore.\tPlus personne ne vit ici.\nNo one opposed the choice.\tPersonne ne s'opposa à la décision.\nNo one takes me seriously.\tPersonne ne me prend au sérieux.\nNo one takes us seriously.\tPersonne ne nous prend au sérieux.\nNo one will ever find you.\tPersonne ne te trouvera jamais.\nNo one will ever find you.\tPersonne ne vous trouvera jamais.\nNo one will know I'm here.\tPersonne ne saura que je suis ici.\nNo one will speak for you.\tPersonne ne parlera à ta place.\nNo one will speak with me.\tPersonne ne veut me parler.\nNo one will speak with me.\tPersonne ne me parlera.\nNo wonder he was arrested.\tPas étonnant qu'il ait été arrêté.\nNobody answered the phone.\tPersonne ne répondit au téléphone.\nNobody suspected anything.\tPersonne ne se douta de rien.\nNobody suspected anything.\tPersonne ne s'est douté de rien.\nNobody trusts Tom anymore.\tPlus personne ne fait confiance à Tom.\nNobody would listen to me.\tPersonne ne voulait m'écouter.\nNobody would listen to me.\tPersonne ne m'écouterait.\nNone of that is necessary.\tRien de cela n'est nécessaire.\nNone of the cars are mine.\tAucune des voitures n'est à moi.\nNone of the money is mine.\tRien de cet argent n'est à moi.\nNone of us have succeeded.\tAucun d'entre nous n'a réussi.\nNot a soul was to be seen.\tIl n'y avait pas âme qui vive.\nNot a star was to be seen.\tOn ne voyait pas une étoile.\nNot all birds build nests.\tTous les oiseaux ne construisent pas de nids.\nNot all men are like that.\tTous les hommes ne sont pas ainsi.\nNot all of them are happy.\tIls ne sont pas tous heureux.\nNot even one taxi stopped.\tPas même un seul taxi ne s'est arrêté.\nNot everybody is the same.\tTout le monde n'est pas identique.\nNot much time is required.\tPeu de temps est requis.\nNothing can save them now.\tRien ne peut plus les sauver.\nNothing happens by chance.\tRien ne survient par hasard.\nNothing happens by chance.\tRien ne se produit par hasard.\nNothing is left to chance.\tRien n'est laissé au hasard.\nNothing is worse than war.\tIl n'y a rien de pire que la guerre.\nNothing's going to happen.\tIl ne se passera rien.\nNothing's going to happen.\tRien ne va se passer.\nOf course, I'll marry you.\tBien sûr, je t'épouserai.\nOh, please don't say that.\tOh, je t'en prie, ne dis pas cela !\nOh, please don't say that.\tOh, je vous en prie, ne dites pas cela !\nOn Sunday, I go to church.\tJe vais à l'église le dimanche.\nOn your mark, get set, go!\tÀ vos marques, prêts, partez !\nOne lump of sugar, please.\tUn sucre, s'il vous plaît.\nOne must follow the rules.\tIl faut suivre les règles.\nOne of my bags is missing.\tL'un de mes sacs est manquant.\nOne of the guards is dead.\tUn des gardes est mort.\nOne of us will have to go.\tL'un de nous devra y aller.\nOne of us will have to go.\tL'un de nous devra partir.\nOne plus two equals three.\tUn plus deux est égal à trois.\nOnly God can help you now.\tIl n'y a que Dieu qui puisse te venir en aide, désormais.\nOnly God can help you now.\tSeul Dieu peut désormais vous aider.\nOnly God can help you now.\tSeul Dieu peut désormais t'aider.\nOpen the window, will you?\tOuvre la fenêtre, tu veux bien ?\nOrganic food is healthier.\tLa nourriture bio est plus saine.\nOur business is expanding.\tNotre entreprise s'étend.\nOur business is expanding.\tNotre entreprise se développe.\nOur cat is in the kitchen.\tNotre chat est dans la cuisine.\nOur fate is in your hands.\tNotre sort est entre tes mains.\nOur fate is in your hands.\tNotre sort est entre vos mains.\nOur fence is made of iron.\tNotre clôture est en fer.\nOur guests are in a hurry.\tNos invités sont pressés.\nOur hotel faces the coast.\tNotre hôtel donne sur la côte.\nOur house faces the beach.\tNotre maison fait face à la plage.\nOur house faces the beach.\tNotre maison est en face de la plage.\nOur house faces the beach.\tNotre maison est face à la plage.\nOur teacher seldom laughs.\tNotre institutrice rit rarement.\nOur train arrived on time.\tNotre train arriva à temps.\nOut of sight, out of mind.\tLoin des yeux, loin du cœur.\nPark the car in the shade.\tStationnez la voiture à l'ombre.\nPart of the story is true.\tUne partie de l'histoire est vraie.\nPay attention on the road.\tFais attention sur la route !\nPay attention on the road.\tFaites attention sur la route !\nPeople came from all over.\tLes gens vinrent de partout.\nPeople came from all over.\tLes gens sont venus de partout.\nPeople can't live forever.\tLes gens ne peuvent pas vivre éternellement.\nPick one up while you can.\tRamassez-en une tant que vous pouvez.\nPinocchio had a long nose.\tPinocchio avait un long nez.\nPizza is my favorite food.\tLa pizza est mon plat préféré.\nPlastic boxes last longer.\tLes boîtes en plastique durent plus longtemps.\nPlease answer my question.\tMerci de répondre à ma question.\nPlease bill us separately.\tVeuillez nous facturer séparément.\nPlease bill us separately.\tVeuillez nous faire des factures séparées.\nPlease come into the room.\tVeuillez entrer dans la pièce.\nPlease come into the room.\tEntre dans la pièce, je te prie.\nPlease contact me by mail.\tMerci de me contacter par courrier.\nPlease correct the errors.\tS'il vous plaît corrigez les erreurs.\nPlease don't be mad at me.\tS'il te plaît, ne m'en veux pas.\nPlease don't tell my wife.\tJe vous prie de ne pas le dire à ma femme.\nPlease don't tell my wife.\tJe vous prie de ne pas le dire à mon épouse.\nPlease don't tell my wife.\tNe le dis pas à ma femme, s'il te plaît !\nPlease eat up your dinner.\tTermine ton déjeuner, je te prie !\nPlease empty your pockets.\tVeuillez vider vos poches.\nPlease fill out this form.\tRemplissez ce formulaire, s'il vous plaît.\nPlease give me some water.\tS'il te plaît, donne-moi de l'eau.\nPlease hurry, it's urgent.\tDépêchez-vous, c'est urgent.\nPlease keep this a secret.\tMerci de garder ça secret.\nPlease keep this a secret.\tVeuillez le tenir secret.\nPlease pass me the butter.\tS'il te plaît, passe-moi le beurre.\nPlease say it more loudly.\tVeuillez parler plus fort.\nPlease stand face to face.\tTenez-vous face à face, s'il vous plaît.\nPlease take out the trash.\tDescends la poubelle, s'il te plaît !\nPlease tell Tom I'm sorry.\tDis à Tom que je suis désolé, s'il te plaît.\nPlease tell Tom I'm sorry.\tDites à Tom que je suis désolée, s'il vous plaît.\nPlease tell me it's crazy.\tS'il te plaît, dis-moi que c'est dingue !\nPlease tell me it's crazy.\tS'il vous plaît, dites-moi que c'est dingue !\nPlease treat the cat well.\tVeuillez bien traiter le chat.\nPlease treat the cat well.\tTraite bien le chat, je te prie.\nPlease turn off the light.\tÉteignez la lumière s'il vous plait.\nPlease turn off the radio.\tÉteins la radio s'il te plait.\nPress any key to continue.\tAppuyez sur n'importe quelle touche pour continuer.\nProcrastinating is an art.\tRemettre à plus tard est un art.\nPromise me one more thing.\tPromets-moi une chose de plus.\nPromise me one more thing.\tPromettez-moi une chose de plus.\nPut more salt in the soup.\tAjoute plus de sel dans la soupe.\nPut the luggage somewhere.\tMettez les bagages quelque part.\nPut the luggage somewhere.\tMets les bagages quelque part.\nPut the tables end to end.\tMettez les tables bout à bout.\nPut your hands in the air.\tLevez les mains en l'air.\nPut your hands in the air.\tLève les mains en l'air.\nRead it once more, please.\tRelis-le encore une fois, je te prie.\nRead it once more, please.\tRelisez-le encore une fois, je vous prie.\nReading books is my hobby.\tLire des livres est mon passe-temps.\nReading develops the mind.\tLa lecture éduque l'esprit.\nReading improves the mind.\tLa lecture développe la pensée.\nReady or not, here I come.\tPrêt ou pas, me voilà !\nRemember to lock the door.\tRappelle-toi de fermer la porte à clé.\nRemember what Tom told us.\tRappelle-toi ce que Tom nous a dit.\nRemember what Tom told us.\tRappelez-vous ce que Tom nous a dit.\nRoll up your right sleeve.\tRemonte ta manche droite.\nSay hello to your friends.\tDis bonjour à tes amis.\nSchool begins at 8:10 a.m.\tL'école commence à huit heures et dix minutes.\nSchool begins at 8:30 a.m.\tL'école commence à huit heures et demie.\nSchool begins at 8:30 a.m.\tLes cours débutent le matin à huit heures trente.\nSchool begins at 8:30 a.m.\tLa classe commence le matin à huit heures et demie.\nSchool is a waste of time.\tL'école est une perte de temps.\nScream as loud as you can.\tCrie aussi fort que possible.\nScream as loud as you can.\tCriez aussi fort que possible.\nSend for a doctor at once.\tFais venir un médecin immédiatement.\nShe advised him not to go.\tElle lui conseilla de ne pas y aller.\nShe advised him not to go.\tElle lui conseilla de ne pas partir.\nShe always gets up at six.\tElle se lève toujours à six heures.\nShe always keeps her word.\tElle tient toujours parole.\nShe always speaks English.\tElle parle toujours en anglais.\nShe arrived late as usual.\tComme à son habitude, elle est arrivée en retard.\nShe became a great artist.\tElle est devenue une grande artiste.\nShe bought him some candy.\tElle lui a acheté des sucreries.\nShe bought me a nice coat.\tElle m'a acheté un chouette manteau.\nShe brushed away the dust.\tElle écarta la poussière.\nShe calls him every night.\tElle l'appelle toutes les nuits.\nShe cannot be over thirty.\tElle ne peut avoir plus de 30 ans.\nShe cannot play the piano.\tElle ne sait pas jouer du piano.\nShe cannot play the piano.\tElle ne peut pas jouer de piano.\nShe could pass for twenty.\tOn pourrait lui donner vingt ans.\nShe cut the apple in half.\tElle coupa la pomme en deux.\nShe denied having met him.\tElle nia l'avoir rencontré.\nShe denied having met him.\tElle a nié l'avoir rencontré.\nShe did not marry the man.\tElle n'a pas épousé le bonhomme.\nShe did not read the book.\tElle ne lut pas le livre.\nShe didn't come after all.\tElle n'est finalement pas venue.\nShe didn't have a brother.\tElle n'avait pas de frère.\nShe didn't like city life.\tVivre en ville ne lui plaisait pas.\nShe died in a plane crash.\tElle est morte dans un accident d'avion.\nShe died in a plane crash.\tElle a perdu la vie dans un accident d'avion.\nShe died of typhoid fever.\tElle est morte de fièvre typhoïde.\nShe displayed her talents.\tElle faisait étalage de ses talents.\nShe displayed her talents.\tElle fit montre de ses talents.\nShe displayed her talents.\tElle a fait montre de ses talents.\nShe doesn't listen to him.\tElle ne l'écoute pas.\nShe doesn't live with him.\tElle ne vit pas avec lui.\nShe dropped out of school.\tElle a abandonné ses études.\nShe fell in love with him.\tElle tomba amoureuse de lui.\nShe fell in love with him.\tElle est tombée amoureuse de lui.\nShe felt happy to see him.\tElle fut heureuse de le rencontrer.\nShe gave me a pretty doll.\tElle m'a donné une jolie poupée.\nShe gave me a pretty doll.\tElle me donna une jolie poupée.\nShe got a job as a typist.\tElle a décroché un emploi de dactylo.\nShe graduated with honors.\tElle a obtenu son diplôme avec les honneurs.\nShe graduated with honors.\tElle obtint son diplôme avec les honneurs.\nShe had no one to turn to.\tElle n'avait personne vers qui se tourner.\nShe had tears in her eyes.\tElle avait des larmes dans les yeux.\nShe handed him his jacket.\tElle lui donna sa veste.\nShe handed him his jacket.\tElle lui tendit sa veste.\nShe has a small black dog.\tElle a un petit chien noir.\nShe has a very good voice.\tElle est dotée d'une très belle voix.\nShe has about 2,000 books.\tElle a environ 2000 livres.\nShe has about 2,000 books.\tElle a environ deux mille livres.\nShe has about 2,000 books.\tElle a à peu près 2000 livres.\nShe has about 2,000 books.\tElle a à peu près deux mille livres.\nShe has an eye for beauty.\tElle a l'œil pour le beau.\nShe has done her homework.\tElle a fait ses devoirs.\nShe has her arm in a cast.\tElle a le bras dans le plâtre.\nShe has known better days.\tElle a connu de meilleurs jours.\nShe has never gone abroad.\tElle n'est jamais allée à l'étranger.\nShe has never visited him.\tElle ne lui a jamais rendu visite.\nShe has no one to turn to.\tElle n'a personne vers qui se tourner.\nShe has not come here yet.\tElle n'est pas encore venue ici.\nShe has very good manners.\tElle a d'excellentes manières.\nShe hit him with a hammer.\tElle le frappa avec un marteau.\nShe hit him with a hammer.\tElle le frappa à l'aide d'un marteau.\nShe hit him with a hammer.\tElle l'a frappé avec un marteau.\nShe is a really good girl.\tC'est vraiment une bonne fille.\nShe is a very nice person.\tC'est une personne très sympa.\nShe is a very poor driver.\tElle est une conductrice lamentable.\nShe is after a better job.\tElle cherche un meilleur emploi.\nShe is amusing to be with.\tOn s'amuse, avec elle.\nShe is behind in her rent.\tElle est en retard sur son loyer.\nShe is guilty of stealing.\tElle est coupable d'un vol.\nShe is her old self again.\tElle est de nouveau elle-même.\nShe is in bed with a cold.\tElle est au lit, enrhumée.\nShe is kind to old people.\tElle est gentille avec les personnes âgées.\nShe is knitting a sweater.\tElle tricote un pull.\nShe is knitting a sweater.\tElle tricote un chandail.\nShe is learning the piano.\tElle apprend à jouer du piano.\nShe is no ordinary singer.\tC'est une chanteuse pas banale.\nShe is no ordinary singer.\tCe n'est pas une chanteuse ordinaire.\nShe is really a nice girl.\tC'est vraiment une gentille fille.\nShe is teaching us French.\tElle nous apprend le français.\nShe is teaching us French.\tElle nous enseigne le français.\nShe is very angry with me.\tElle est très en colère après moi.\nShe isn't afraid of death.\tElle n'a pas peur de la mort.\nShe isn't fit for the job.\tElle n'est pas apte pour le poste.\nShe kept crying all night.\tElle a continué à pleurer toute la nuit.\nShe knows her limitations.\tElle connaît ses limites.\nShe left with her friends.\tElle est partie avec ses amis.\nShe likes music very much.\tElle aime énormément la musique.\nShe lived next door to us.\tElle vivait la porte à côté de chez nous.\nShe lives in an apartment.\tElle vit dans un appartement.\nShe lives next door to us.\tElle vit la porte à côté de la nôtre.\nShe looked after her baby.\tElle s'occupa du bébé.\nShe looked after her baby.\tElle s'est occupée du bébé.\nShe looked at him angrily.\tElle le regarda avec colère.\nShe looked at him angrily.\tElle l'a regardé avec colère.\nShe looked at the picture.\tElle regarda la photo.\nShe looked at the picture.\tElle regarda le tableau.\nShe looked away terrified.\tElle détourna les yeux, terrifiée.\nShe looks like her mother.\tElle ressemble à sa mère.\nShe lost both her parents.\tElle perdit ses deux parents.\nShe lost both her parents.\tElle a perdu ses deux parents.\nShe lowered her standards.\tElle a abaissé ses prétentions.\nShe made her mother happy.\tElle a rendu sa mère heureuse.\nShe married him last year.\tElle l'a épousé l'année dernière.\nShe married him last year.\tElle l'a épousé l'année passée.\nShe met him for breakfast.\tElle le rencontra pour le petit-déjeuner.\nShe met him for breakfast.\tElle le rencontra pour le déjeuner.\nShe met him only recently.\tElle ne l'a rencontré que récemment.\nShe might know the answer.\tElle pourrait connaître la réponse.\nShe must be angry with me.\tElle doit être en colère après moi.\nShe must be on cloud nine.\tElle doit être au septième ciel.\nShe often calls him names.\tElle l'insulte souvent.\nShe often calls him names.\tElle le traite souvent de tous les noms.\nShe plays the violin well.\tElle joue bien du violon.\nShe pressured him to quit.\tElle le pressa de démissionner.\nShe promised to marry him.\tElle promit de l'épouser.\nShe promised to marry him.\tElle a promis de l'épouser.\nShe punished her children.\tElle a puni ses enfants.\nShe put sheets on her bed.\tElle a recouvert son lit avec des draps.\nShe refused my invitation.\tElle refusa mon invitation.\nShe refused my invitation.\tElle déclina mon invitation.\nShe refused to go with me.\tElle a refusé de venir avec moi.\nShe reminds me of someone.\tElle me rappelle quelqu'un.\nShe runs faster than I do.\tElle court plus vite que moi.\nShe said something to him.\tElle lui dit quelque chose.\nShe said something to him.\tElle lui a dit quelque chose.\nShe served us a good meal.\tElle nous a servi un bon repas.\nShe showed me her new car.\tElle m'a montré sa nouvelle voiture.\nShe showed me her new car.\tElle me montra sa nouvelle voiture.\nShe showers every morning.\tElle prend une douche chaque matin.\nShe sleeps on her stomach.\tElle dort sur le ventre.\nShe slept for a few hours.\tElle dormit quelques heures.\nShe speaks fairly quickly.\tElle parle assez vite.\nShe taught me how to swim.\tElle m'a appris à nager.\nShe testified against him.\tElle a témoigné contre lui.\nShe tied him to the chair.\tElle l'attacha à la chaise.\nShe tied him to the chair.\tElle l'a attaché à la chaise.\nShe told him not to worry.\tElle lui dit de ne pas s'inquiéter.\nShe told him not to worry.\tElle lui signifia de ne pas s'inquiéter.\nShe told him not to worry.\tElle lui a dit de ne pas s'inquiéter.\nShe took him to the store.\tElle l'amena au magasin.\nShe took him to the store.\tElle l'a emmené au magasin.\nShe traveled around Japan.\tElle voyagea au Japon.\nShe traveled around Japan.\tElle a voyagé au Japon.\nShe treated him very well.\tElle le traita fort bien.\nShe treated him very well.\tElle l'a très bien traité.\nShe turned down the radio.\tElle a baissé le son de la radio.\nShe turned her back to me.\tElle me tourna le dos.\nShe turned off the lights.\tElle éteignit les lumières.\nShe used to live near him.\tElle habitait près de lui.\nShe usually gets up early.\tEn temps normal, elle se lève tôt.\nShe usually gets up early.\tHabituellement, elle se lève tôt.\nShe walked very carefully.\tElle marcha très prudemment.\nShe was a medical student.\tElle était étudiante en médecine.\nShe was absent from class.\tElle était absente de la classe.\nShe was afraid of the dog.\tElle avait peur du chien.\nShe was aware of his eyes.\tElle était consciente de son regard.\nShe was banished for life.\tElle a été bannie à vie.\nShe was born in the 1950s.\tElle est née dans les années 50.\nShe was brought up by him.\tElle a été élevée par lui.\nShe was crying last night.\tElle pleurait hier soir.\nShe was forced to confess.\tOn l'a forcée à avouer.\nShe was going up a ladder.\tElle était en train de grimper à une échelle.\nShe was humiliated by him.\tElle a été humiliée par lui.\nShe was humiliated by him.\tElle fut humiliée par lui.\nShe was injured in a fall.\tElle s'est blessée en tombant.\nShe was ironing her dress.\tElle était en train de repasser sa robe.\nShe was now out of danger.\tElle était dès lors hors de danger.\nShe was out when I called.\tElle était absente quand je l'ai appelée.\nShe was there all morning.\tElle était là toute la matinée.\nShe was too tired to work.\tElle était trop fatiguée pour travailler.\nShe went on with the work.\tElle poursuivit le travail.\nShe went on with the work.\tElle a poursuivi le travail.\nShe wept the entire night.\tElle pleura toute la nuit.\nShe will have her own way.\tElle va suivre sa propre voie.\nShe will make a good wife.\tElle fera une bonne épouse.\nShe worked for a rich man.\tElle travaillait pour un homme riche.\nShe worked for a rich man.\tElle a travaillé pour un homme riche.\nShe wouldn't speak to him.\tElle refusait de lui parler.\nShe wouldn't speak to him.\tElle ne lui parlerait pas.\nShe's in the hospital now.\tElle est maintenant à l'hôpital.\nShe's in the hospital now.\tElle est actuellement à l'hôpital.\nShe's pregnant with twins.\tElle est enceinte de jumeaux.\nShe's smart and beautiful.\tElle est belle et intelligente.\nShe's very afraid of dogs.\tElle a très peur des chiens.\nShe's very afraid of dogs.\tElle a une peur bleue des chiens.\nShould I wash the lettuce?\tDois-je laver la laitue ?\nShould we have some lunch?\tEst-ce qu'on déjeune ?\nShouldn't you be studying?\tNe devrais-tu pas être en train d'étudier ?\nShouldn't you be studying?\tNe devriez-vous pas être en train d'étudier ?\nShow me the way, will you?\tMontrez-moi le chemin, voulez-vous ?\nShow me where it happened.\tMontre-moi où c'est arrivé !\nShow me where it happened.\tMontrez-moi où c'est arrivé !\nShow me where it happened.\tMontre-moi où ça s'est produit !\nShow me where it happened.\tMontrez-moi où ça s'est produit !\nShow me where it happened.\tMontre-moi où c'est survenu !\nShow me where it happened.\tMontrez-moi où c'est survenu !\nSmoking harms your health.\tFumer détériore ta santé.\nSmoking harms your health.\tFumer détériore votre santé.\nSmoking is forbidden here.\tFumer est interdit dans ce lieu.\nSome French fries, please.\tDes pommes frites, s'il vous plaît.\nSome men shave their legs.\tCertains hommes rasent leurs jambes.\nSome of the girls laughed.\tCertaines des filles rirent.\nSome of the girls laughed.\tCertaines des filles ont ri.\nSome of them are teachers.\tCertains d'entre eux sont enseignants.\nSome of them are teachers.\tCertaines d'entre elles sont enseignantes.\nSome of them were wounded.\tCertains d'entre eux furent blessés.\nSome of them were wounded.\tCertains d'entre eux ont été blessés.\nSome of them were wounded.\tCertaines d'entre elles furent blessées.\nSome of them were wounded.\tCertaines d'entre elles ont été blessées.\nSome people never grow up.\tCertaines personnes ne grandissent jamais.\nSome people never grow up.\tCertaines personnes ne murissent jamais.\nSome snakes are poisonous.\tCertains serpents sont venimeux.\nSomebody has left his hat.\tQuelqu'un a oublié son chapeau.\nSomebody stole it from me.\tQuelqu'un me l'a volé.\nSomebody tried to kill me.\tQuelqu'un a tenté de me tuer.\nSomebody tried to kill me.\tQuelqu'un a essayé de me tuer.\nSomebody's made a mistake.\tQuelqu'un a commis une erreur.\nSomeone opened the window.\tQuelqu'un a ouvert la fenêtre.\nSomeone stole Tom's money.\tQuelqu'un a volé l'argent de Tom.\nSomeone stole Tom's money.\tQuelqu'un vola l'argent de Tom.\nSomeone stole my passport.\tOn m'a volé mon passeport.\nSomething's going on here.\tQuelque chose se passe, ici.\nSomething's going on here.\tQuelque chose se trame, ici.\nSometimes I don't get you.\tParfois, je ne te comprends pas.\nSometimes I don't get you.\tParfois, je ne vous comprends pas.\nSorry, I couldn't help it.\tDésolé, je n'ai pas pu m'empêcher.\nSorry. The train was late.\tDésolé. Le train était en retard.\nSpace travel is dangerous.\tLes voyages spatiaux sont dangereux.\nSpeak into the microphone.\tParle dans le micro.\nSpeak into the microphone.\tParlez dans le micro.\nSpeak more slowly, please!\tParlez plus lentement s'il vous plaît !\nSpeak more slowly, please.\tParlez plus lentement, je vous en prie.\nStay away from that place.\tRestez à l'écart de cet endroit !\nStay away from that place.\tReste à l'écart de cet endroit !\nStaying at home is boring.\tRester à la maison est ennuyeux.\nStaying at home is boring.\tRester à la maison est barbant.\nStaying at home is boring.\tRester à la maison est chiant.\nStock prices fell quickly.\tLes prix des actions chutèrent rapidement.\nStock prices fell sharply.\tLes prix des actions chutèrent nettement.\nStop acting like you care.\tArrête de faire semblant de te préoccuper de ce qui se passe.\nStop changing the subject.\tArrête de changer de sujet !\nStop changing the subject.\tCesse de changer de sujet !\nStop hitting your brother.\tArrête de frapper ton frère !\nStop hitting your brother.\tCesse de frapper ton frère !\nStop hitting your brother.\tArrêtez de frapper votre frère !\nStop hitting your brother.\tCessez de frapper votre frère !\nStop screaming in my ears.\tArrête de me hurler dans les oreilles !\nStop screaming in my ears.\tArrêtez de me hurler dans les oreilles !\nStop screaming in my ears.\tCesse de me hurler dans les oreilles !\nStop screaming in my ears.\tCessez de me hurler dans les oreilles !\nStop teasing your brother!\tArrête de taquiner ton frère !\nSuddenly it began to rain.\tTout à coup, il se mit à pleuvoir.\nSuddenly it began to rain.\tSoudain il a commencé à pleuvoir.\nSuddenly, it became noisy.\tSoudain, ça devint bruyant.\nSuddenly, it became noisy.\tSoudain, c'est devenu bruyant.\nSuddenly, it looks bigger.\tD'un coup, ça a l'air plus grand.\nSugar is soluble in water.\tLe sucre est soluble dans l'eau.\nTake any train on track 5.\tPrends n'importe quel train sur la voie 5.\nTake care of yourself, OK?\tPrends soin de toi, d'accord ?\nTake care of yourself, OK?\tPrenez soin de vous, d'accord ?\nTake off your wet clothes.\tEnlevez vos vêtements mouillés.\nTake the pan off the fire.\tRetire la poêle du feu.\nTell me what I have to do.\tDites-moi ce que j'ai à faire.\nTell me what I have to do.\tDis-moi ce que j'ai à faire.\nTell me what your name is.\tDites-moi quel est votre nom.\nTell me what your name is.\tDites-moi comment vous vous appelez.\nTell me where you've been.\tDis-moi où tu étais.\nTell me where you've been.\tDis-moi où tu as été.\nTell me where you've been.\tDites-moi où vous étiez.\nTell me where you've been.\tDites-moi où vous avez été.\nTell me why he was absent.\tDis-moi pourquoi il était absent.\nTell me why she is crying.\tDites-moi pourquoi elle pleure.\nTell us about your family.\tParle-nous de ta famille !\nTell us about your family.\tParlez-nous de votre famille !\nThank you for greeting me.\tMerci à vous de m'accueillir.\nThank you for not smoking.\tMerci de ne pas fumer.\nThank you for stopping by.\tMerci de t'être arrêté sur ton chemin.\nThank you for stopping by.\tMerci de t'être arrêté en chemin.\nThank you for stopping by.\tMerci de vous être arrêté sur votre chemin.\nThank you for stopping by.\tMerci de vous être arrêté en chemin.\nThank you for stopping by.\tMerci de vous être arrêtée en chemin.\nThank you for stopping by.\tMerci de vous être arrêtés en chemin.\nThank you for stopping by.\tMerci de vous être arrêtées en chemin.\nThank you for stopping by.\tMerci de t'être arrêtée en chemin.\nThank you for the present.\tMerci pour le cadeau.\nThank you for your advice.\tMerci de votre conseil.\nThank you for your advice.\tMerci beaucoup pour tes précieux conseils.\nThank you for your letter.\tMerci pour ta lettre.\nThank you very, very much!\tMerci beaucoup, vraiment !\nThanks for the compliment.\tMerci pour le compliment !\nThanks for the correction.\tMerci pour la correction.\nThat almost made me laugh.\tCela m'a presque fait rire.\nThat ball could've hit me.\tLa balle aurait pu me frapper.\nThat blouse fits you well.\tCette blouse te va bien.\nThat book costs 3,000 yen.\tCe livre coûte 3000 yens.\nThat can happen sometimes.\tCela peut arriver de temps en temps.\nThat didn't really happen.\tÇa n'est pas vraiment arrivé.\nThat doesn't belong to me.\tCela ne m'appartient pas.\nThat doesn't happen a lot.\tÇa n'arrive pas souvent.\nThat fact can't be denied.\tOn ne peut nier le fait.\nThat fact can't be denied.\tCe fait ne peut être contesté.\nThat gave me a rough idea.\tÇa me donna une idée grossière.\nThat girl's eyes are blue.\tLes yeux de cette fille sont bleus.\nThat is rather unexpected.\tC'est assez inattendu.\nThat isn't Tom's suitcase.\tCe n'est pas la valise de Tom.\nThat may not be necessary.\tIl se peut que ça ne soit pas nécessaire.\nThat might be a good idea.\tCela pourrait être une bonne idée.\nThat pasture is ten acres.\tLe pâturage fait dix acres.\nThat plan is unacceptable.\tCe plan est inacceptable.\nThat pleases me very much.\tÇa me plaît beaucoup.\nThat scenario is unlikely.\tCe scénario est improbable.\nThat sounds very tempting.\tÇa semble fort tentant.\nThat sounds very tempting.\tÇa semble très tentant.\nThat sounds very tempting.\tÇa a l'air très tentant.\nThat street is very noisy.\tCette rue est très bruyante.\nThat was a costly mistake.\tCe fut une erreur coûteuse.\nThat was a very sad story.\tC'était une histoire fort triste.\nThat was everything I had.\tC'était tout ce que j'avais.\nThat was painful to watch.\tÇa faisait peine à voir.\nThat was perfectly normal.\tC'était parfaitement normal.\nThat was really difficult.\tC'était très difficile.\nThat was really difficult.\tÇa a été vraiment difficile.\nThat was really difficult.\tCe fut réellement difficile.\nThat was really important.\tC'était vraiment important.\nThat was really important.\tC'était très important.\nThat was totally my fault.\tC'était entièrement ma faute.\nThat was totally my fault.\tCe fut entièrement ma faute.\nThat was very frustrating.\tCe fut très frustrant.\nThat was very interesting.\tC'était très intéressant.\nThat was wrong, of course.\tC'était faux, bien sûr.\nThat was wrong, of course.\tC'était mal, bien sûr.\nThat would be a good idea.\tÇa serait une bonne idée.\nThat would be interesting.\tCela serait intéressant.\nThat would be unfortunate.\tCe serait dommage.\nThat'll cost thirty euros.\tÇa va faire 30 euros.\nThat'll put you in danger.\tCela te mettra en danger.\nThat's a complex question.\tC'est une question complexe.\nThat's a depressing story.\tC'est une histoire déprimante.\nThat's a pretty good idea.\tC'est une assez bonne idée.\nThat's a strange question.\tC'est une drôle de question.\nThat's all I have for you.\tC'est tout ce que j'ai pour toi.\nThat's all I have for you.\tC'est tout ce que j'ai pour vous.\nThat's all I have to know.\tC'est tout ce que je dois savoir.\nThat's all I need to hear.\tC'est tout ce que j'ai besoin d'entendre.\nThat's all I need to know.\tC'est tout ce que j'ai besoin de savoir.\nThat's all I was thinking.\tC'est tout ce à quoi j'étais en train de penser.\nThat's all Tom has to say.\tC'est tout ce que Tom a à dire.\nThat's all for now, folks.\tC'est tout pour le moment, les amis.\nThat's all we're offering.\tC'est tout ce que nous proposons.\nThat's an excellent point.\tC'est un excellent argument.\nThat's an old wives' tale.\tCe sont des histoires de vieille femme.\nThat's certainly possible.\tC'est sûrement possible.\nThat's certainly possible.\tC'est certainement possible.\nThat's exactly how I feel.\tC'est exactement ce que je ressens.\nThat's exactly what I did.\tC'est exactement ce que j'ai fait.\nThat's how the pros do it.\tC'est comme ça que le font les pros.\nThat's how the pros do it.\tC'est ainsi que le font les pros.\nThat's it. I'm outta here.\tC'est bon. Je me casse.\nThat's just the way it is.\tC'est juste ainsi.\nThat's just the way it is.\tC'est simplement comme ça.\nThat's just what I needed.\tC'est précisément ce dont j'avais besoin.\nThat's just what I needed.\tC'est précisément ce qu'il me fallait.\nThat's just what he needs.\tC'est précisément ce dont il a besoin.\nThat's just what he needs.\tC'est précisément ce qu'il lui faut.\nThat's kind of you to say.\tC'est gentil à toi de le dire.\nThat's kind of you to say.\tC'est gentil à vous de le dire.\nThat's my favorite excuse.\tC'est mon excuse préférée.\nThat's not a bad decision.\tCe n'est pas une mauvaise décision.\nThat's the absolute truth.\tC'est la pure vérité.\nThat's the right attitude.\tC'est la bonne attitude.\nThat's what I really want.\tC'est ce que je veux vraiment.\nThat's what I'd try to do.\tC'est ce que je tenterais de faire.\nThat's what I'd try to do.\tC'est ce que j'essayerais de faire.\nThat's what I'm afraid of.\tC'est ce dont j'ai peur.\nThat's what you always do.\tC'est ce que vous faites toujours.\nThat's what you always do.\tC'est ce que tu fais toujours.\nThat's what you should do.\tC'est ce que vous devriez faire.\nThat's what you should do.\tC'est ce que tu devrais faire.\nThat's what's worrying me.\tC'est ce qui me soucie.\nThat's why I brought this.\tC'est pourquoi j'ai apporté ceci.\nThat's why I sent for you.\tC'est pourquoi je vous ai envoyé chercher.\nThat's why I sent for you.\tC'est pourquoi je t'ai envoyé chercher.\nThat's why I sent for you.\tC'est pourquoi je vous ai envoyé quérir.\nThat's why I'm a bachelor.\tC'est pourquoi je suis célibataire.\nThat's why I'm here today.\tC'est pourquoi je suis ici aujourd'hui.\nThe Allies wasted no time.\tLes alliés ne perdirent pas de temps.\nThe Congress had no money.\tLe Congrès n'avait pas d'argent.\nThe alligator ate the dog.\tL'alligator a mangé le chien.\nThe alligator ate the dog.\tL'alligator mangea le chien.\nThe answers are all right.\tLes réponses sont toutes correctes.\nThe audience looked bored.\tL'auditoire avait l'air de s'ennuyer.\nThe baby doesn't walk yet.\tLe bébé ne marche pas encore.\nThe baby needs his mother.\tLe bébé a besoin de sa mère.\nThe baby needs its mother.\tLe bébé a besoin de sa mère.\nThe baby wants its mother.\tLe bébé veut sa mère.\nThe baby was sound asleep.\tLe bébé était complètement endormi.\nThe bad smell sickened me.\tLa mauvaise odeur m'a retourné le cœur.\nThe bell has not rung yet.\tLa cloche n'a pas encore sonné.\nThe bird spread its wings.\tCet oiseau déployait ses ailes.\nThe box was full of books.\tLa caisse était pleine de livres.\nThe bullet found its mark.\tLa balle atteignit sa cible.\nThe bus is always crowded.\tLe bus est toujours bondé.\nThe cat is licking itself.\tLe chat est en train de se lécher.\nThe cat scratched my hand.\tLe chat me griffa la main.\nThe cat scratched my hand.\tLe chat m'a griffé la main.\nThe chicken is overcooked.\tLe poulet est trop cuit.\nThe child painted flowers.\tL'enfant peignit des fleurs.\nThe company is in the red.\tL'entreprise est en déficit.\nThe company is in the red.\tL'entreprise est dans le rouge.\nThe company went bankrupt.\tLa société a fait faillite.\nThe company went bankrupt.\tL'entreprise a fait faillite.\nThe competition is fierce.\tLa concurrence est féroce.\nThe concert was a success.\tLe concert fut un succès.\nThe concert was a success.\tLe concert a été un succès.\nThe cows are eating grass.\tLes vaches sont en train de manger de l'herbe.\nThe cows are eating grass.\tLes vaches paissent.\nThe crow spread his wings.\tLe corbeau a ouvert ses ailes.\nThe deer ran for its life.\tLe cerf courut pour se sauver.\nThe default value is zero.\tLa valeur par défaut est zéro.\nThe doctor gave it to her.\tLe médecin le lui donna.\nThe doctor gave me a shot.\tLe médecin me fit une injection.\nThe doctor gave me a shot.\tLe médecin m'a fait une injection.\nThe dog was out of breath.\tLe chien était hors d'haleine.\nThe dog will not harm you.\tLe chien ne te fera pas de mal.\nThe dog will not harm you.\tLe chien ne vous fera pas de mal.\nThe dogs barked all night.\tLes chiens aboyèrent toute la nuit.\nThe dogs barked all night.\tLes chiens ont aboyé toute la nuit.\nThe door handle is broken.\tLa poignée de porte est cassée.\nThe elevator is coming up.\tL’ascenseur monte.\nThe event made him famous.\tL'incident l'a rendu célèbre.\nThe event made him famous.\tCet événement l'a rendu célèbre.\nThe failure depressed him.\tL'échec l'a déprimé.\nThe fence needed painting.\tLa barrière avait besoin d'un coup de peinture.\nThe fence needed painting.\tLa palissade avait besoin d'un coup de peinture.\nThe girl entered the room.\tLa fille est entrée dans la pièce.\nThe girl has a soft heart.\tLa fille a un cœur tendre.\nThe girl seems to be rich.\tLa jeune fille semble être riche.\nThe girls danced to music.\tLes filles dansèrent sur la musique.\nThe glass is full of milk.\tLe verre est plein de lait.\nThe ground was very rocky.\tLe sol fut très caillouteux.\nThe headlights don't work.\tLes phares ne fonctionnent pas.\nThe hotel was burned down.\tL'hôtel a été réduit en cendres.\nThe house has been bought.\tLa maison a été achetée.\nThe house is owned by him.\tLa maison lui appartient.\nThe hunter caught the fox.\tLe chasseur prit le renard.\nThe image is not in focus.\tL'image n'est pas cadrée.\nThe keys are on the table.\tLes clés sont sur la table.\nThe keys are on the table.\tLes clefs se trouvent sur la table.\nThe kids are disappointed.\tLes enfants sont déçus.\nThe king abused his power.\tLe roi a abusé de son pouvoir.\nThe kitchen is downstairs.\tLa cuisine est en bas.\nThe kitchen is downstairs.\tLa cuisine est à l'étage en-dessous.\nThe less said, the better.\tMoins on en dit, mieux on se porte.\nThe man finally confessed.\tL'homme a finalement avoué.\nThe matter is all settled.\tL'affaire est entièrement réglée.\nThe meat has begun to rot.\tLa viande commence à se gâter.\nThe meat is really tender.\tLa viande est vraiment tendre.\nThe meeting was cancelled.\tLa réunion a été annulée.\nThe meeting was held here.\tLa réunion se tenait là.\nThe meeting was held here.\tLa réunion se tenait ici.\nThe meeting was held here.\tLa réunion s'est tenue là.\nThe meeting was held here.\tLa réunion s'est tenue ici.\nThe milk is in the fridge.\tLe lait est dans le réfrigérateur.\nThe money is on the table.\tL'argent est sur la table.\nThe movie was interesting.\tLe film était intéressant.\nThe movie was really good.\tLe film était vraiment bon.\nThe murderer was executed.\tLe meurtrier fut exécuté.\nThe news can't all be bad.\tLes nouvelles ne peuvent pas toutes être mauvaises.\nThe odds are in his favor.\tLa chance est de son côté.\nThe old man sat all alone.\tLe vieil homme était assis tout seul.\nThe old woman is a doctor.\tLa vieille femme est médecin.\nThe opera starts at seven.\tL'opéra commence à sept heures.\nThe organ started to play.\tL'orgue se mit à jouer.\nThe organ started to play.\tL'orgue s'est mis à jouer.\nThe pain hasn't gone away.\tLa douleur n'est pas partie.\nThe pain is getting worse.\tLa douleur empire.\nThe pain was excruciating.\tLa souffrance était atroce.\nThe papers got blown away.\tLes papiers s'envolèrent.\nThe park was almost empty.\tLe parc était presque vide.\nThe park was almost empty.\tLe parc était quasiment vide.\nThe phone is out of order.\tLe téléphone ne fonctionne pas.\nThe piano has a good tone.\tLe piano a un bon timbre.\nThe picnic lasted all day.\tLe pique-nique a duré toute la journée.\nThe plane arrived on time.\tL'avion arriva à l'heure.\nThe plane increased speed.\tL'avion accéléra.\nThe plane increased speed.\tL'avion a accéléré.\nThe police chief resigned.\tLe chef de la police a présenté sa démission.\nThe population is growing.\tLa population croît.\nThe price of meat dropped.\tLe prix de la viande est descendu.\nThe radio is out of order.\tLa radio est en panne.\nThe rain turned into snow.\tLa pluie s'est transformée en neige.\nThe reason is very simple.\tLa raison en est très simple.\nThe results were negative.\tLes résultats étaient négatifs.\nThe road turns left there.\tLa route tourne à gauche, là.\nThe road turns left there.\tLa route tourne alors à gauche.\nThe rumor's all over town.\tLa rumeur courre la ville.\nThe school is on the hill.\tL'école est sur la colline.\nThe situation is critical.\tLa situation est critique.\nThe situation is hopeless.\tLa situation est sans espoir.\nThe situation is hopeless.\tLa situation est désespérée.\nThe sky looks threatening.\tLe ciel est menaçant.\nThe sky was full of stars.\tLe ciel était rempli d'étoiles.\nThe slave tried to escape.\tL'esclave essaya de s'enfuir.\nThe slave tried to escape.\tL'esclave a essayé de s'enfuir.\nThe soldier gave his name.\tLe soldat donna son nom.\nThe stew smells delicious.\tLe ragoût sent délicieusement bon.\nThe store closes at seven.\tLe magasin ferme à 7 heures.\nThe street lights went on.\tLes réverbères s'illuminèrent.\nThe street was very empty.\tLa rue était déserte.\nThe sun has not risen yet.\tLe soleil ne s'est pas encore levé.\nThe system isn't flawless.\tLe système n'est pas sans défaut.\nThe tires are very sticky.\tLes pneus sont très adhérents.\nThe train arrived on time.\tLe train arriva à l'heure.\nThe train arrived on time.\tLe train est arrivé à l'heure.\nThe train finally arrived.\tLe train arriva finalement.\nThe train finally arrived.\tLe train est finalement arrivé.\nThe tree bent in the wind.\tL'arbre se courba sous le vent.\nThe tree blocked the road.\tL'arbre bloqua la route.\nThe truth is I told a lie.\tÀ dire vrai, j'ai menti.\nThe truth is I told a lie.\tLa vérité, c'est que j'ai menti.\nThe war broke out in 1939.\tLa guerre s'est déclenchée en 1939.\nThe water has boiled away.\tL'eau s'est évaporée.\nThe water is deepest here.\tL'eau est ici la plus profonde.\nThe weather is good today.\tIl fait beau aujourd'hui.\nThe weather is really bad.\tLe temps est vraiment mauvais.\nThe weather report is bad.\tLe bulletin météo est mauvais.\nThe weather turned better.\tLe temps s'est éclairci.\nThe weather turned better.\tLe temps s'est amélioré.\nThe whole class was quiet.\tLa classe entière était calme.\nThe whole class was quiet.\tToute la classe était tranquille.\nThe wind blew her hat off.\tLe vent lui souffla son chapeau.\nThe woman hugged the baby.\tLa femme étreignit le bébé.\nThe woman is taking notes.\tLa femme prend des notes.\nThe woman washes her face.\tLa femme se lave le visage.\nThe workers are on strike.\tLes travailleurs sont en grève.\nThe world has five oceans.\tLe monde a cinq océans.\nThe worst is already over.\tLe pire est déjà passé.\nThe years pass by quickly.\tLes années s'écoulent rapidement.\nTheir daughter is a nurse.\tLeur fille est infirmière.\nThere are almost no books.\tIl n'y a quasiment aucun livre.\nThere are no clean plates.\tIl n'y a pas d'assiettes propres.\nThere are no coincidences.\tIl n'y a pas de coïncidences.\nThere are no comments yet.\tIl n'y a encore pas de commentaires.\nThere are no comments yet.\tIl n'y a, pour l'instant, pas de commentaires.\nThere are no easy answers.\tIl n'y a pas de réponses aisées.\nThere are no more bullets.\tIl n'y a plus de balles.\nThere are no tickets left.\tIl ne reste plus de billets.\nThere are plenty of rocks.\tIl y a plein de cailloux.\nThere aren't any problems.\tIl n'y a aucun problème.\nThere is a letter for you.\tC'est une lettre pour toi.\nThere is little time left.\tIl reste peu de temps.\nThere is no running water.\tIl n'y a pas d'eau courante.\nThere isn't any milk left.\tIl n'y a plus de lait.\nThere isn't any more time.\tLe temps est écoulé.\nThere must be another way.\tIl doit y avoir un autre moyen.\nThere was no trace of him.\tIl n'y avait pas trace de lui.\nThere was nothing to burn.\tIl n'y avait rien à brûler.\nThere wasn't much traffic.\tIl n'y avait pas beaucoup de circulation.\nThere's a cat in my house.\tIl y a un chat dans ma maison.\nThere's a dog by the door.\tIl y a un chien à la porte.\nThere's a hair in my soup.\tIl y a un cheveu dans ma soupe.\nThere's a lot on the line.\tIl y a beaucoup en jeu.\nThere's a lot on the line.\tIl y a beaucoup à hauteur de vue.\nThere's a restaurant here.\tIl y a ici un restaurant.\nThere's a rock in my shoe.\tIl y a un caillou dans ma chaussure.\nThere's a serious problem.\tIl y a un sérieux problème.\nThere's dust on the table.\tIl y a de la poussière sur la table.\nThere's no cure for death.\tIl n'y a pas de remède à la mort.\nThere's nothing down here.\tIl n'y a rien, ici-bas.\nThere's nothing down here.\tIl n'y a rien par là-bas.\nThere's nothing to report.\tIl n'y a rien à signaler.\nThere's nothing we can do.\tIl n'y a rien que nous puissions faire.\nThere's one small problem.\tIl y a un petit problème.\nThere's something in here.\tIl y a là quelque chose.\nThere's something in here.\tIl y a quelque chose là-dedans.\nThere's too much at stake.\tIl y a trop en jeu.\nThese boots are expensive.\tCes bottes sont chères.\nThese cups are all broken.\tCes tasses sont toutes cassées.\nThese shoes are too small.\tCes chaussures sont trop petites.\nThese shoes belong to Tom.\tCes chaussures appartiennent à Tom.\nThese shoes cost too much.\tCes chaussures coûtent trop cher.\nThey agreed on everything.\tIls s'accordèrent sur tout.\nThey agreed on everything.\tElles s'accordèrent sur tout.\nThey agreed on everything.\tIls se sont accordés sur tout.\nThey agreed on everything.\tElles se sont accordées sur tout.\nThey amended the document.\tIls amendèrent le document.\nThey are crazy about jazz.\tIls sont dingues de Jazz.\nThey are crazy about jazz.\tElles sont dingues de Jazz.\nThey are reading her book.\tElles lisent son livre.\nThey are watching a movie.\tIls regardent un film.\nThey arrived at the hotel.\tIls arrivèrent à l'hôtel.\nThey arrived at the hotel.\tIls sont arrivés à l'hôtel.\nThey arrived at the hotel.\tElles arrivèrent à l'hôtel.\nThey arrived at the hotel.\tElles sont arrivées à l'hôtel.\nThey can't hear me either.\tIls ne peuvent m'entendre non plus.\nThey can't hear me either.\tElles ne peuvent m'entendre non plus.\nThey can't push us around.\tIls ne peuvent pas nous intimider.\nThey can't push us around.\tElles ne peuvent pas nous intimider.\nThey constructed a bridge.\tIls ont construit un pont.\nThey constructed a bridge.\tElles ont construit un pont.\nThey did not give up hope.\tIls n'ont pas perdu espoir.\nThey did not give up hope.\tElles n'ont pas perdu espoir.\nThey didn't find the bomb.\tIls n'ont pas trouvé la bombe.\nThey didn't find the bomb.\tElles n'ont pas trouvé la bombe.\nThey didn't pay attention.\tIls n'ont pas fait attention.\nThey do it faster than me.\tIls le font plus rapidement que moi.\nThey do it faster than me.\tElles le font plus rapidement que moi.\nThey do it faster than us.\tIls le font plus rapidement que nous.\nThey do it faster than us.\tElles le font plus rapidement que nous.\nThey don't sell beer here.\tIls ne vendent pas de bière, ici.\nThey eat meat once a week.\tIls mangent de la viande une fois par semaine.\nThey elected him chairman.\tIls l'élurent président.\nThey felt sure of success.\tIls étaient convaincus de leur triomphe.\nThey forgot to wake me up.\tIls ont oublié de me réveiller.\nThey forgot to wake me up.\tElles ont oublié de me réveiller.\nThey fought until the end.\tIls se battirent jusqu'au bout.\nThey fought until the end.\tIls se sont battus jusqu'au bout.\nThey fought until the end.\tElles se battirent jusqu'au bout.\nThey fought until the end.\tElles se sont battues jusqu'au bout.\nThey found the room empty.\tIls trouvèrent la pièce vide.\nThey found the room empty.\tElles trouvèrent la pièce vide.\nThey gave him up for lost.\tIls le laissèrent pour mort.\nThey got a warm reception.\tIls ont eu une réception chaleureuse.\nThey had a spat yesterday.\tIls ont eu une prise de bec, hier.\nThey had a spat yesterday.\tElles ont eu une prise de bec, hier.\nThey had several children.\tIls eurent plusieurs enfants.\nThey had several children.\tIls ont eu plusieurs enfants.\nThey have plenty of money.\tIls disposent de plein d'argent.\nThey have plenty of money.\tElles disposent de plein d'argent.\nThey have plenty of water.\tIls disposent de plein d'eau.\nThey have plenty of water.\tElles disposent de plein d'eau.\nThey have the same habits.\tIls ont les mêmes habitudes.\nThey invited me to dinner.\tIls m'invitèrent à déjeuner.\nThey know what's going on.\tIls savent ce qui se passe.\nThey know what's going on.\tElles savent ce qui se passe.\nThey left the movie early.\tIls ont quitté tôt la projection.\nThey left the movie early.\tElles ont quitté tôt la projection.\nThey live near the school.\tIls habitent près de l'école.\nThey looked up at the sky.\tIls levèrent les yeux vers le ciel.\nThey made me really angry.\tIls m'ont mis hors de moi.\nThey made us work all day.\tIls nous ont fait travailler toute la journée.\nThey made us work all day.\tElles nous ont fait travailler toute la journée.\nThey never did an autopsy.\tIls n'ont jamais pratiqué d'autopsie.\nThey never really told me.\tIls ne me l'ont jamais vraiment dit.\nThey never really told me.\tElles ne me l'ont jamais vraiment dit.\nThey plan to have a party.\tIls prévoient de faire une fête.\nThey plan to have a party.\tElles prévoient de faire une fête.\nThey relaxed on the beach.\tIls se détendirent sur la plage.\nThey relaxed on the beach.\tElles se détendirent sur la plage.\nThey relaxed on the beach.\tIls se sont détendus sur la plage.\nThey relaxed on the beach.\tElles se sont détendues sur la plage.\nThey rely on the foodbank.\tIls se reposent sur la banque alimentaire.\nThey sank ten enemy ships.\tIls coulèrent dix navires ennemis.\nThey set out for New York.\tIls sont partis pour New York.\nThey should've noticed me.\tIls auraient dû me remarquer.\nThey should've noticed me.\tElles auraient dû me remarquer.\nThey smiled at each other.\tIls se sourirent l'un à l'autre.\nThey smiled at each other.\tIls se sourirent.\nThey stood on the hilltop.\tIls se tenaient au haut de la colline.\nThey stood on the hilltop.\tElles se tenaient au haut de la colline.\nThey talked about culture.\tIls parlèrent de culture.\nThey talked about culture.\tElles parlèrent de culture.\nThey talked about culture.\tIls ont parlé de culture.\nThey talked about culture.\tElles ont parlé de culture.\nThey tried to cheer me up.\tIls ont essayé de me remonter.\nThey tried to cheer me up.\tIls ont essayé de me remonter le moral.\nThey tried to cheer me up.\tElles ont essayé de me remonter.\nThey tried to cheer me up.\tElles ont essayé de me remonter le moral.\nThey tried to cheer me up.\tIls essayèrent de me remonter le moral.\nThey tried to cheer me up.\tElles essayèrent de me remonter le moral.\nThey tried to cheer me up.\tIls essayèrent de me remonter.\nThey tried to cheer me up.\tElles essayèrent de me remonter.\nThey went to the hospital.\tIls allèrent à l'hôpital.\nThey were left speechless.\tIls restèrent bouche bée.\nThey were plainly dressed.\tElles étaient vêtues simplement.\nThey were plainly dressed.\tIls étaient vêtus sobrement.\nThey were plainly dressed.\tElles étaient habillées sobrement.\nThey were scared to do it.\tElles avaient peur de le faire.\nThey were scared to do it.\tIls avaient peur de le faire.\nThey were very kind to me.\tIls furent très gentils avec moi.\nThey were very kind to me.\tIls ont été très gentils à mon égard.\nThey were very kind to me.\tIls ont été très gentils avec moi.\nThey will be safe with me.\tIls seront en sécurité avec moi.\nThey will be safe with me.\tElles seront en sécurité avec moi.\nThey're anxious for peace.\tIls s'inquiètent pour la paix.\nThey're anxious for peace.\tElles s'inquiètent pour la paix.\nThey're going to hang Tom.\tIls vont pendre Tom.\nThey're lucky to be alive.\tIls sont chanceux d'être en vie.\nThey're lucky to be alive.\tElles ont de la chance d'être vivantes.\nThey're lucky to be alive.\tElles sont chanceuses d'être en vie.\nThey're lucky to be alive.\tIls ont de la chance d'être vivants.\nThey're not all criminals.\tCe ne sont pas tous des criminels.\nThey're of no consequence.\tIls sont sans conséquence.\nThey're young and healthy.\tIls sont jeunes et en bonne santé.\nThey're young and healthy.\tElles sont jeunes et en bonne santé.\nThey've changed the rules.\tIls ont changé les règles.\nThey've changed the rules.\tElles ont changé les règles.\nThings got out of control.\tLes choses sont devenues incontrôlables.\nThis CD belongs to my son.\tCe CD-là est à mon fils.\nThis CD belongs to my son.\tCe CD appartient à mon fils.\nThis bag cost me 6 pounds.\tCe sac m'a couté six livres.\nThis bike is easy to ride.\tCe vélo est facile à monter.\nThis book costs 3,000 yen.\tCe livre coûte 3000 yens.\nThis book is easy to read.\tCe livre est facile à lire.\nThis book is not for sale.\tCe livre n'est pas à vendre.\nThis book is of great use.\tCe livre est d'un grand secours.\nThis book is of great use.\tCe livre est d'une grande utilité.\nThis box is made of paper.\tCette boîte est faite en papier.\nThis box is made of paper.\tCette boîte est faite de papier.\nThis coffee is too bitter.\tCe café est trop amer.\nThis coffee tastes bitter.\tCe café a un goût amer.\nThis doesn't happen often.\tÇa n'arrive pas souvent.\nThis dress suits you well.\tCette robe te va bien.\nThis dress suits you well.\tCette robe te sied bien.\nThis fish has a bad smell.\tCe poisson sent mauvais.\nThis glass contains water.\tCe verre contient de l'eau.\nThis handle will not turn.\tCe volant est impossible à tourner.\nThis happens all the time.\tÇa arrive tout le temps.\nThis happens all the time.\tÇa se produit tout le temps.\nThis has got to be a joke.\tC'est une plaisanterie.\nThis house needs painting.\tCette maison a besoin d'un coup de peinture.\nThis is Tom's photo album.\tC'est l'album photo de Tom.\nThis is a beautiful house.\tC'est une belle maison.\nThis is a beautiful house.\tCeci est une belle maison.\nThis is a good suggestion.\tC'est une bonne suggestion.\nThis is a great apartment.\tC'est un grand appartement.\nThis is a serious setback.\tC'est un sérieux revers.\nThis is a very small book.\tC'est un très petit livre.\nThis is extremely awkward.\tC'est extrêmement délicat.\nThis is getting difficult.\tÇa devient difficile.\nThis is impossible for me.\tC'est impossible pour moi.\nThis is impossible for me.\tCela m'est impossible.\nThis is kind of expensive.\tC'est plutôt cher.\nThis is my father's house.\tC'est la maison de mon père.\nThis is my favorite movie.\tC'est mon film préféré.\nThis is not a coincidence.\tIl ne s'agit pas d'une coïncidence.\nThis is not funny anymore.\tCe n'est plus amusant.\nThis is not my first time.\tCe n'est pas ma première fois.\nThis is not to his liking.\tIl ne l'apprécie pas.\nThis is our last day here.\tC'est notre dernier jour ici.\nThis is really impressive.\tC'est vraiment impressionnant.\nThis is smaller than that.\tC'est plus petit que ça.\nThis is the flag of Japan.\tVoici le drapeau japonais.\nThis is the flag of Japan.\tCeci est le drapeau du Japon.\nThis is the flag of Japan.\tC'est le drapeau du Japon.\nThis is the perfect place.\tC'est l'endroit idéal.\nThis is today's newspaper.\tC'est le journal d'aujourd'hui.\nThis is totally worthless.\tC'est complètement inutile.\nThis is what I want to do.\tC'est ce que je veux faire.\nThis is what I want to do.\tC'est ce que j'ai envie de faire.\nThis isn't what I ordered.\tCe n'est pas ce que j'ai commandé.\nThis laptop belongs to me.\tCet ordinateur portable m'appartient !\nThis list is not official.\tCette liste n'est pas officielle.\nThis machine is worthless.\tCette machine ne vaut pas un clou.\nThis makes no sense to me.\tÇa n'a pas de sens, pour moi.\nThis movie is rated PG-13.\tCe film est classé PG-13.\nThis movie is rated PG-13.\tCe film est déconseillé aux moins de treize ans.\nThis movie makes no sense.\tCe film est insensé.\nThis pizza is really good.\tCette pizza est vraiment bonne.\nThis plant is good to eat.\tCette plante est consommable.\nThis question is not easy.\tCette question n'est pas simple.\nThis racket belongs to me.\tCette raquette m'appartient.\nThis site is quite useful.\tCe site est très utile.\nThis sounds totally legit.\tÇa semble parfaitement légitime.\nThis soup needs more salt.\tCette soupe a besoin de davantage de sel.\nThis stain won't come out.\tCette tache refuse de partir.\nThis storm will also pass.\tCette tempête-là aussi passera.\nThis stove is easy to use.\tCette cuisinière est facile à utiliser.\nThis wall feels very cold.\tCe mur est très froid.\nThis was part of the plan.\tÇa faisait partie du plan.\nThis was part of the plan.\tCela faisait partie du plan.\nThis was too much for Tom.\tC'était trop pour Tom.\nThis wasn't cheap, was it?\tCe n'était pas bon marché, si ?\nThis winter has been mild.\tCet hiver a été doux.\nThis won't solve anything.\tÇa ne résoudra pas quoi que ce soit.\nThose are all great ideas.\tCe sont toutes de bonnes idées.\nTime travel is impossible.\tLe voyage dans le temps est impossible.\nToday is Independence Day.\tAujourd'hui est le jour de l'Indépendance.\nTom always makes me laugh.\tTom me fait toujours rire.\nTom and I are married now.\tTom et moi sommes maintenant mariés.\nTom and I have work to do.\tTom et moi avons du travail à faire.\nTom and John are brothers.\tTom et John sont frères.\nTom and Mary adopted John.\tTom et Mary ont adopté John.\nTom and Mary aren't alone.\tTom et Marie ne sont pas seuls.\nTom and Mary aren't alone.\tTom et Mary ne sont pas seuls.\nTom and Mary both said no.\tTom et Mary ont tous les deux dit non.\nTom and Mary went outside.\tTom et Mary sont sortis.\nTom and Mary were worried.\tTom et Mary étaient inquiets.\nTom asked me to come here.\tTom m'a demandé de venir ici.\nTom asked me to marry him.\tTom m'a demandé de l'épouser.\nTom became extremely weak.\tTom est devenu très faible.\nTom called Mary every day.\tTom a appelé Mary tous les jours.\nTom called Mary every day.\tTom appelait Mary tous les jours.\nTom can walk on his hands.\tTom peut marcher sur les mains.\nTom can't control himself.\tThomas n'arrive pas à se contrôler.\nTom can't help us anymore.\tTom ne peut plus nous aider.\nTom can't hurt us anymore.\tTom ne peut plus nous faire de mal.\nTom can't make it tonight.\tTom ne pourra pas être là ce soir.\nTom certainly fooled Mary.\tTom a certainement trompé Mary.\nTom closed his eyes again.\tTom ferma les yeux à nouveau.\nTom closed his eyes again.\tTom a encore fermé les yeux.\nTom could sense something.\tTom pouvait sentir quelque chose.\nTom couldn't have done it.\tTom n'aurait pas pu le faire.\nTom couldn't help but cry.\tTom ne put s'empêcher de pleurer.\nTom did a pretty good job.\tTom a fait un très bon travail.\nTom did a pretty good job.\tTom a fait un assez bon boulot.\nTom didn't have a brother.\tTom n'avait pas de frère.\nTom didn't look very well.\tTom n'avait pas l'air très bien.\nTom didn't look very well.\tTom n'avait pas l'air très en forme.\nTom didn't notice a thing.\tTom n'a rien remarqué.\nTom didn't seem very busy.\tTom n'avait pas l'air très occupé.\nTom didn't seem very busy.\tTom ne semblait pas très occupé.\nTom died about a year ago.\tTom est mort il y a environ un an.\nTom doesn't have a choice.\tTom n'a pas le choix.\nTom doesn't have a ticket.\tTom n'a pas de billet.\nTom doesn't know who I am.\tTom ne sait pas qui je suis.\nTom doesn't love his wife.\tTom n'aime pas sa femme.\nTom doesn't smoke anymore.\tTom ne fume plus.\nTom doesn't understand me.\tTom ne me comprend pas.\nTom doesn't use sunscreen.\tTom n'utilise pas de crème solaire.\nTom doesn't want to leave.\tTom ne veut pas partir.\nTom doesn't want to leave.\tTom ne veut pas s'en aller.\nTom drank a cup of coffee.\tTom a bu une tasse de café.\nTom drank a glass of wine.\tTom but un verre de vin.\nTom drew his gun and shot.\tTom a sorti son pistolet et a tiré.\nTom drinks beer every day.\tTom boit de la bière tous les jours.\nTom escaped from his cell.\tTom s'est échappé de sa cellule.\nTom even likes cold pizza.\tTom aime même la pizza froide.\nTom gives us what we need.\tTom nous donne ce dont nous avons besoin.\nTom gives us what we want.\tTom nous donne ce que l'on veut.\nTom glanced at the others.\tTom jeta un coup d’œil aux autres.\nTom glanced at the others.\tTom lança un regard aux autres.\nTom got kicked by a horse.\tTom s'est fait botté par un cheval.\nTom got special treatment.\tTom eut droit à un traitement de faveur.\nTom had a little accident.\tTom a eu un petit accident.\nTom had a little accident.\tTom eut un petit accident.\nTom has a house in Boston.\tTom a une maison à Boston.\nTom has a lot of problems.\tTom a beaucoup de problèmes.\nTom has a terrible secret.\tTom a un terrible secret.\nTom has a wonderful voice.\tTom a une voix magnifique.\nTom has been up all night.\tTom est resté éveillé toute la nuit.\nTom has done his homework.\tTom a fait ses devoirs.\nTom has done his homework.\tTom a fini ses devoirs.\nTom has eyesight problems.\tTom a des problèmes de vue.\nTom has his father's eyes.\tTom a les yeux de son père.\nTom has just spotted Mary.\tTom vient d'apercevoir Mary.\nTom has really hairy arms.\tTom a les bras vraiment poilus.\nTom has to learn to relax.\tTom doit apprendre à se détendre.\nTom hates waiting in line.\tTom déteste faire la queue.\nTom held Mary in his arms.\tTom a tenu Mary dans ses bras.\nTom held Mary in his arms.\tTom tint Mary dans ses bras.\nTom ignored Mary's advice.\tTom ignora le conseil de Mary.\nTom ignored Mary's advice.\tTom a ignoré le conseil de Mary.\nTom introduced me to Mary.\tTom m'a présenté à Mary.\nTom is a friend of Mary's.\tTom est un ami de Mary.\nTom is a regular customer.\tTom est un client régulier.\nTom is a very good friend.\tTom est un très bon ami.\nTom is a very wealthy man.\tTom est un homme très riche.\nTom is a wonderful dancer.\tTom est un merveilleux danseur.\nTom is almost ready to go.\tTom est presque prêt pour partir.\nTom is always watching TV.\tTom regarde la télévision en permanence.\nTom is always watching TV.\tTom regarde toujours la télévision.\nTom is an aspiring writer.\tTom est un écrivain en herbe.\nTom is arrogant, isn't he?\tTom est arrogant, n'est-ce pas ?\nTom is breathing normally.\tTom respire normalement.\nTom is extremely busy now.\tTom est extrêmement occupé en ce moment.\nTom is extremely cautious.\tTom est extrêmement prudent.\nTom is extremely generous.\tTom est très généreux.\nTom is going to regret it.\tTom va le regretter.\nTom is going to stay here.\tTom va rester ici.\nTom is going to try again.\tTom va à nouveau essayer.\nTom is guilty of stealing.\tTom est coupable de vol.\nTom is here to protect me.\tTom est là pour me protéger.\nTom is in the living room.\tTom est dans le salon.\nTom is in the other truck.\tTom est dans l'autre camion.\nTom is just being himself.\tTom est seulement lui-même.\nTom is listening to music.\tTom est en train d'écouter de la musique.\nTom is not as fat as I am.\tTom n'est pas aussi gros que moi.\nTom is not going to do it.\tTom ne va pas le faire.\nTom is still very unhappy.\tTom est toujours très malheureux.\nTom is still very unhappy.\tTom est encore très malheureux.\nTom is studying in Boston.\tTom étudie à Boston.\nTom is the main character.\tTom est le personnage principal.\nTom is there to help Mary.\tTom est là-bas pour aider Mary.\nTom is too young for that.\tTom est trop jeune pour ça.\nTom is too young for that.\tTom est trop jeune pour cela.\nTom isn't as fast as I am.\tTom n'est pas aussi rapide que moi.\nTom isn't as tall as I am.\tTom n’est pas aussi grand que moi.\nTom isn't going to listen.\tTom ne vas pas écouter.\nTom isn't good at cooking.\tTom n'est pas doué en cuisine.\nTom isn't married anymore.\tTom n'est plus marié.\nTom isn't really Canadian.\tTom n'est pas vraiment Canadien.\nTom just went on vacation.\tTom vient de partir en vacances.\nTom knew he had a problem.\tTom savait qu'il avait un problème.\nTom knows that won't work.\tTom sait que ça ne marchera pas.\nTom knows that won't work.\tTom sait que ça ne va pas marcher.\nTom leaned on the counter.\tTom se pencha sur le comptoir.\nTom learned sign language.\tTom a appris le langage des signes.\nTom left everything to me.\tTom m'a tout laissé.\nTom left his kids at home.\tTom a laissé ses enfants à la maison.\nTom left his kids at home.\tTom laissa ses gamins à la maison.\nTom let go of Mary's hand.\tTom lâcha la main de Marie.\nTom lives next door to us.\tTom habite la porte à côté.\nTom looked very concerned.\tTom avait l'air très inquiet.\nTom looks extremely happy.\tTom a l'air extrêmement heureux.\nTom looks extremely happy.\tTom semble extrêmement heureux.\nTom looks like his mother.\tTom ressemble à sa mère.\nTom looks really relieved.\tTom semble vraiment soulagé.\nTom lost his favorite toy.\tTom a perdu son jouet préféré.\nTom needs to be medicated.\tTom a besoin d'être soigné.\nTom needs to do something.\tTom a besoin de faire quelque chose.\nTom never fully recovered.\tTom ne s'est jamais rétabli complètement.\nTom never sings in public.\tTom ne chante jamais en public.\nTom no longer trusts Mary.\tTom ne croit plus Mary.\nTom now lives near Boston.\tTom vit maintenant près de Boston.\nTom offered Mary his beer.\tTom a offert sa bière à Mary.\nTom often walks to school.\tTom va souvent à l'école en marchant.\nTom often walks to school.\tTom va souvent à l'école à pied.\nTom ordered Mary to do it.\tTom ordonna à Mary de le faire.\nTom ordered Mary to do it.\tTom a ordonné à Mary de le faire.\nTom ought to stop smoking.\tTom devrait arrêter de fumer.\nTom passed away last year.\tTom est décédé l'année dernière.\nTom pulled the fire alarm.\tTom a tiré l'alarme d'incendie.\nTom raised his right hand.\tTom leva sa main droite.\nTom raised his right hand.\tTom a levé sa main droite.\nTom read the letter aloud.\tTom lut la lettre à voix haute.\nTom reads to his daughter.\tTom lit à sa fille.\nTom realized he was alone.\tTom réalisa qu'il était seul.\nTom really needs our help.\tTom a vraiment besoin de notre aide.\nTom refused to talk to me.\tTom a refusé de me parler.\nTom remembered everything.\tTom se souvenait de tout.\nTom rolled up his sleeves.\tTom retroussa ses manches.\nTom said he wasn't hungry.\tTom a dit qu'il n'avait pas faim.\nTom said he would be here.\tTom a dit qu'il serait ici.\nTom said that he liked me.\tTom a dit qu'il m'appréciait.\nTom said that he liked me.\tTom a dit qu'il m'aimait bien.\nTom said that he was busy.\tTom a dit qu'il était occupé.\nTom sat down next to Mary.\tTom s'assit à côté de Mary.\nTom sat down on the couch.\tTom s'assit sur le canapé.\nTom seemed very impressed.\tTom avait l'air très impressionné.\nTom seldom makes mistakes.\tTom fait rarement des erreurs.\nTom should have paid Mary.\tTom aurait dû payer Marie.\nTom should've been in bed.\tTom aurait dû être au lit.\nTom showed Mary something.\tTom montra quelque chose à Mary.\nTom showed Mary something.\tTom a montré quelque chose à Mary.\nTom showed Mary the photo.\tTom a montré à Marie la photo.\nTom showed Mary the photo.\tTom a montré à Mary la photo.\nTom showed Mary the ropes.\tTom montra les cordes à Mary.\nTom showed Mary the ropes.\tTom a montré les cordes à Mary.\nTom showed his room to me.\tTom m'a montré sa chambre.\nTom slammed on the brakes.\tTom pila.\nTom stepped off the train.\tTom descendit du train.\nTom taught me how to cook.\tTom m'a appris à cuisiner.\nTom told Mary he was busy.\tTom a dit à Mary qu'il était occupé.\nTom told me he was single.\tTom m'a dit qu'il était célibataire.\nTom took the easy way out.\tTom choisit la solution de facilité.\nTom tried to lift the box.\tTom essaya de lever la boîte.\nTom tried to lift the box.\tTom a essayé de lever la boîte.\nTom turned off the lights.\tTom a éteint les lumières.\nTom typed in the password.\tTom entra le mot de passe.\nTom unbuttoned his jacket.\tTom déboutonna sa veste.\nTom unbuttoned his jacket.\tTom a déboutonné sa veste.\nTom understands the risks.\tTom comprend les risques.\nTom used to be aggressive.\tTom était agressif.\nTom usually comes on time.\tHabituellement Tom vient à l'heure.\nTom usually comes on time.\tTom vient habituellement à l'heure.\nTom wanted to be a farmer.\tTom voulait être agriculteur.\nTom wants Mary's approval.\tTom veut l'accord de Mary.\nTom wants Mary's approval.\tTom veut l'approbation de Mary.\nTom wants me to apologize.\tTom veut que je m'excuse.\nTom wants me to coach him.\tTom veut que je l'entraîne.\nTom wants to be with Mary.\tTom veut être avec Marie.\nTom wants to come with us.\tTom veut aller avec nous.\nTom was a baseball player.\tTom était un joueur de base-ball.\nTom was able to help Mary.\tTom fut capable d'aider Marie.\nTom was alone at the time.\tTom était seul à l'époque.\nTom was bitten by a cobra.\tTom a été mordu par un cobra.\nTom was here a minute ago.\tTom était ici il y une minute.\nTom was here before I was.\tTom était ici avant moi.\nTom was married back then.\tTom était marié à l'époque.\nTom was screaming at Mary.\tTom criait sur Marie.\nTom was screaming at Mary.\tTom était en train de crier sur Marie.\nTom was sitting behind me.\tTom était assis derrière moi.\nTom was taken by surprise.\tTom a été pris au dépourvu.\nTom was unsure what to do.\tTom n'était pas certain de ce qu'il devait faire.\nTom wasn't at the meeting.\tTom était absent à la réunion.\nTom wasn't expecting this.\tTom ne s'attendait pas à ça.\nTom wasn't very impressed.\tTom n'était pas très impressionné.\nTom wasn't wearing a belt.\tTom ne portait pas de ceinture.\nTom will be busy tomorrow.\tDemain Tom sera occupé.\nTom will be wearing a tie.\tTom va porter une cravate.\nTom wiped the table clean.\tTom nettoya la table.\nTom wished Mary good luck.\tTom souhaita bonne chance à Marie.\nTom won't talk about that.\tTom ne parlera pas de ça.\nTom won't talk about that.\tTom n'en parlera pas.\nTom wouldn't take my call.\tTom ne voudrait pas me répondre.\nTom's French is improving.\tLe français de Tom s'améliore.\nTom's dog is well-trained.\tLe chien de Tom est bien éduqué.\nTom's name was on the box.\tLe nom de Tom était sur la boîte.\nTom's room was very clean.\tLa chambre de Tom était très propre.\nTom, do you still love me?\tTom, tu m'aimes toujours ?\nTom, do you still love me?\tTom, vous m'aimez toujours ?\nTom, do you still love me?\tTom, m'aimez-vous toujours ?\nTom, do you still love me?\tTom, est-ce que tu m'aimes toujours ?\nTom, do you still love me?\tTom, est-ce que vous m'aimez toujours ?\nTomorrow is Christmas Day.\tDemain, c'est Noël.\nTraveling is a lot of fun.\tVoyager est très amusant.\nTrim the fat off the meat.\tDécoupe et enlève la graisse de la viande.\nTrim the fat off the meat.\tDégraisse la viande.\nTrue love never grows old.\tL'amour véritable ne vieillit jamais.\nTry not to make him angry.\tNe cherche pas à l’énerver.\nTry not to think about it.\tEssaie de ne pas y penser !\nTry to control yourselves.\tEssayez de vous contrôler.\nTurn on the light, please.\tAllume la lumière, s'il te plaît.\nTwenty families live here.\tVingt familles vivent ici.\nTwo seats remained vacant.\tDeux chaises restaient libres.\nTwo small bottles, please.\tDeux petites bouteilles, s'il vous plaît.\nWait until further notice.\tAttends jusqu'à nouvel ordre.\nWait until further notice.\tAttendez jusqu'à nouvel ordre.\nWaiter, I'd like to order.\tGarçon, je voudrais commander.\nWas the movie interesting?\tEst-ce que le film était intéressant ?\nWas the movie interesting?\tLe film était-il intéressant ?\nWash your hands with soap.\tLave-toi les mains avec du savon.\nWatch out for pickpockets.\tMéfiez-vous des pickpockets.\nWater is heavier than oil.\tL'eau est plus lourde que l'huile.\nWe agreed among ourselves.\tNous nous mîmes d'accord entre nous.\nWe agreed among ourselves.\tNous nous accordâmes entre nous.\nWe agreed among ourselves.\tNous nous sommes accordés entre nous.\nWe agreed among ourselves.\tNous nous sommes mis d'accord entre nous.\nWe agreed among ourselves.\tNous nous sommes mises d'accord entre nous.\nWe agreed among ourselves.\tNous nous sommes accordées entre nous.\nWe all agreed unanimously.\tNous sommes tous unanimement tombés d'accord.\nWe all agreed unanimously.\tNous sommes toutes unanimement tombées d'accord.\nWe all miss you very much.\tTu nous manques beaucoup à tous.\nWe all strive for success.\tNous nous efforçons tous de réussir.\nWe all strive for success.\tNous nous efforçons toutes de réussir.\nWe all want to be desired.\tNous voulons tous être désirés.\nWe all want to be desired.\tNous voulons toutes être désirées.\nWe all wish for happiness.\tNous souhaitons tous le bonheur.\nWe all worked really hard.\tNous avons toutes travaillé très dur.\nWe all worked really hard.\tNous avons tous travaillé très dur.\nWe already gave it to you.\tNous vous l'avons déjà donné.\nWe already gave it to you.\tNous te l'avons déjà donné.\nWe are brother and sister.\tNous sommes frère et sœur.\nWe aren't afraid of death.\tNous n'avons pas peur de la mort.\nWe aren't very hungry yet.\tNous n'avons pas encore très faim.\nWe arrived three days ago.\tNous sommes arrivés il y a trois jours.\nWe arrived three days ago.\tNous sommes arrivées il y a trois jours.\nWe ate breakfast at seven.\tNous déjeunâmes à sept heures.\nWe began on a new project.\tNous commençâmes à travailler à un nouveau projet.\nWe began our work at noon.\tNous avons commencé notre travail à midi.\nWe better tell the others.\tNous ferions mieux de le dire aux autres.\nWe better tell the others.\tNous ferions mieux d'en faire part aux autres.\nWe bought a lot of stamps.\tNous avons acheté beaucoup de timbres.\nWe buy stationery in bulk.\tNous achetons la papeterie en gros.\nWe called off the wedding.\tNous avons annulé le mariage.\nWe called off the wedding.\tNous annulâmes le mariage.\nWe can be certain of that.\tNous pouvons être sûrs de cela.\nWe can save you some time.\tNous pouvons vous faire gagner du temps.\nWe can't be more specific.\tNous ne pouvons pas être plus précis.\nWe can't call their bluff.\tNous ne pouvons pas les mettre au pied du mur.\nWe can't hang around here.\tNous n'avons pas le droit de traîner par ici.\nWe can't help you anymore.\tNous ne pouvons plus t'aider.\nWe can't help you anymore.\tNous ne pouvons plus vous aider.\nWe can't let them do that.\tNous ne pouvons les laisser faire cela.\nWe can't satisfy everyone.\tNous ne pouvons pas satisfaire tout le monde.\nWe can't thank you enough.\tNous ne pouvons assez vous remercier.\nWe can't thank you enough.\tNous ne pouvons pas assez te remercier.\nWe can't trust anyone now.\tNous ne pouvons plus faire confiance à personne maintenant.\nWe can't trust anyone now.\tNous ne pouvons désormais plus nous fier à personne.\nWe could keep it a secret.\tNous pourrions le garder secret.\nWe could keep it a secret.\tNous pûmes le garder secret.\nWe could not overtake him.\tNous ne pouvions le prendre par surprise.\nWe didn't help Tom escape.\tNous n'avons pas aidé Tom à s'échapper.\nWe didn't need to do that.\tNous n'avons pas eu besoin de faire ça.\nWe don't control anything.\tNous ne contrôlons rien.\nWe don't have enough beer.\tNous n'avons pas assez de bière.\nWe don't have enough beer.\tNous n'avons pas suffisamment de bière.\nWe don't have enough time.\tNous n'avons pas assez de temps.\nWe don't know for certain.\tNous ne savons pas avec certitude.\nWe don't know where he is.\tNous ignorons où il est.\nWe don't need anyone else.\tNous n'avons besoin de personne d'autre.\nWe don't need to go there.\tNous n'avons pas besoin d'aller là-bas.\nWe don't need you anymore.\tNous n'avons plus besoin de vous.\nWe don't need you anymore.\tNous n'avons plus besoin de toi.\nWe don't say that anymore.\tOn ne dit plus ça.\nWe don't want that, do we?\tNous ne voulons pas cela, n'est-ce pas ?\nWe eat many kinds of food.\tNous consommons de nombreuses sortes de nourritures.\nWe fixed the price at $15.\tNous avons fixé le prix à 15$.\nWe had a lot of furniture.\tNous avions beaucoup de meubles chez nous.\nWe had a pleasant evening.\tNous eûmes une soirée agréable.\nWe had a pleasant evening.\tNous avons eu une soirée agréable.\nWe had a really good time.\tNous avons vraiment eu du bon temps.\nWe had our roof blown off.\tNotre toit a été soufflé par le vent.\nWe have a bit of time now.\tNous avons maintenant un peu de temps.\nWe have a bit of time now.\tNous disposons maintenant d'un peu de temps.\nWe have a half-dozen eggs.\tNous avons une demie douzaine d'œufs.\nWe have a serious problem.\tNous avons un sérieux problème.\nWe have all kinds of time.\tNous avons tout le temps.\nWe have been up all night.\tNous sommes restés debout toute la nuit.\nWe have been up all night.\tNous avons fait une nuit blanche.\nWe have half a dozen eggs.\tNous avons une demie douzaine d'œufs.\nWe have lost sight of him.\tNous l'avons perdu de vue.\nWe have not yet succeeded.\tNous n'avons pas encore réussi.\nWe have people everywhere.\tNos gens sont partout.\nWe have run short of food.\tNous sommes à court de nourriture.\nWe have six lessons a day.\tNous avons six leçons par jour.\nWe have to obey the rules.\tNous devons nous plier aux règles.\nWe have to talk right now.\tNous avons à parler maintenant.\nWe have to talk right now.\tNous devons parler maintenant.\nWe helped him financially.\tNous l'avons aidé financièrement.\nWe hope to meet you again.\tNous espérons vous revoir.\nWe know you're interested.\tNous savons que tu es intéressée.\nWe know you're interested.\tNous savons que vous êtes intéressés.\nWe know you're interested.\tNous savons que tu es intéressé.\nWe know you're interested.\tNous savons que vous êtes intéressé.\nWe know you're interested.\tNous savons que vous êtes intéressée.\nWe know you're interested.\tNous savons que vous êtes intéressées.\nWe know you're not stupid.\tNous savons que vous n'êtes pas stupides.\nWe know you're not stupid.\tNous savons que vous n'êtes pas stupide.\nWe know you're not stupid.\tOn sait que tu n'es pas stupide.\nWe left nothing to chance.\tNous n'avons rien laissé au hasard.\nWe lived close by the sea.\tNous vivions près de la mer.\nWe lost a lot on that job.\tOn a beaucoup perdu dans ce travail.\nWe made friends with them.\tNous avons sympathisé avec eux.\nWe made friends with them.\tNous avons sympathisé avec elles.\nWe make an excellent team.\tNous formons une excellente équipe.\nWe might need to help Tom.\tNous devrons peut-être aider Tom.\nWe moved into a new house.\tNous avons déménagé dans une nouvelle maison.\nWe must do this right now.\tNous devons faire ceci maintenant.\nWe must leave immediately.\tNous devons partir immédiatement.\nWe must observe the rules.\tNous devons observer les règles.\nWe must observe the rules.\tNous devons suivre les règles.\nWe must tell him about it.\tNous devons l'en informer.\nWe must tell him about it.\tNous devons lui en parler.\nWe need action, not words.\tNous avons besoin d'actes, pas de mots.\nWe need to get rid of Tom.\tNous devons nous débarrasser de Tom.\nWe need to get rid of Tom.\tIl nous faut nous débarrasser de Tom.\nWe need to work as a team.\tIl nous faut travailler en équipe.\nWe offered him a nice job.\tNous lui avons offert un beau poste.\nWe partied all night long.\tNous avons fait la fête toute la nuit.\nWe partied all night long.\tNous fîmes la fête toute la nuit.\nWe partied all night long.\tNous avons fait la nouba toute la nuit.\nWe regard him as our hero.\tNous le considérons comme notre héros.\nWe saw her enter the room.\tNous l'avons vue entrer dans la pièce.\nWe should call the doctor.\tNous devrions appeler le docteur.\nWe should call the police.\tNous devrions appeler la police.\nWe should cancel the hike.\tNous devrions annuler la randonnée.\nWe should've tried harder.\tNous aurions dû faire plus d'efforts.\nWe started before sunrise.\tNous avons commencé avant le lever du jour.\nWe stayed at a nice hotel.\tNous séjournâmes dans un chouette hôtel.\nWe stayed at a nice hotel.\tNous séjournâmes dans un bel hôtel.\nWe stayed at a nice hotel.\tNous avons séjourné dans un chouette hôtel.\nWe stayed at a nice hotel.\tNous avons séjourné dans un bel hôtel.\nWe suspected him of lying.\tNous le suspectâmes de mentir.\nWe suspected him of lying.\tNous l'avons suspecté de mentir.\nWe take good care of them.\tOn s'occupe bien d'eux.\nWe think that he's honest.\tNous pensons qu'il est honnête.\nWe think that he's honest.\tNous le tenons pour honnête.\nWe think the world of you.\tTu as notre plus grande estime.\nWe think the world of you.\tNous vous encensons.\nWe usually walk to school.\tNous allons généralement à l'école à pied.\nWe voted against the bill.\tNous avons voté contre le projet de loi.\nWe walked along the beach.\tNous marchâmes le long de la plage.\nWe walked along the river.\tNous marchâmes le long de la rivière.\nWe walked among the trees.\tNous marchâmes au milieu des arbres.\nWe walked around the pond.\tNous marchâmes autour de l'étang.\nWe walked around the pond.\tNous avons marché autour de l'étang.\nWe want them to follow us.\tNous voulons qu'ils nous suivent.\nWe want to know the facts.\tNous voulons connaître les faits.\nWe want to speak with Tom.\tNous voulons parler avec Tom.\nWe watched TV after lunch.\tNous regardâmes la télévision après le déjeuner.\nWe went camping in August.\tNous avons fait du camping au mois d'août.\nWe went camping in August.\tNous sommes allés au camping en août.\nWe were caught in a storm.\tNous étions pris dans une tempête.\nWe weren't doing anything!\tNous n'avons rien fait !\nWe will fight to the last.\tNous nous battrons jusqu'au dernier.\nWe work from nine to five.\tNous travaillons de neuf heures du matin à cinq heures du soir.\nWe would have helped them.\tNous les aurions aidés.\nWe'd better get a move on.\tNous ferions mieux de nous bouger.\nWe'd like separate checks.\tNous aimerions des notes séparées.\nWe'll all be here for you.\tNous serons tous là pour toi.\nWe'll all be here for you.\tNous serons tous là pour vous.\nWe'll all be here for you.\tNous serons toutes là pour toi.\nWe'll all be here for you.\tNous serons toutes là pour vous.\nWe'll always remember Tom.\tNous nous souviendrons toujours de Tom.\nWe'll be working together.\tNous travaillerons ensemble.\nWe'll have plenty of time.\tNous aurons beaucoup de temps.\nWe'll have plenty of time.\tNous aurons amplement le temps.\nWe'll talk about it later.\tNous en parlerons plus tard.\nWe're almost out of sugar.\tNous sommes presque à court de sucre.\nWe're as good as dead now.\tNous sommes désormais pour ainsi dire morts.\nWe're as good as dead now.\tNous sommes désormais pour ainsi dire mortes.\nWe're as hungry as wolves.\tNous avons une faim de loup.\nWe're getting out of here.\tNous sortons d'ici.\nWe're getting out of here.\tNous partons d'ici.\nWe're going the wrong way.\tNous allons dans la mauvaise direction.\nWe're going to the movies.\tNous nous rendons au cinéma.\nWe're having some problem.\tNous avons un problème.\nWe're here to protect you.\tNous sommes là pour te protéger.\nWe're here to protect you.\tNous sommes là pour vous protéger.\nWe're late because of you.\tNous sommes en retard à cause de vous.\nWe're late because of you.\tNous sommes en retard à cause de toi.\nWe're not friends anymore.\tNous ne sommes plus amis.\nWe're not friends anymore.\tNous ne sommes plus amies.\nWe're not getting married.\tNous n'allons pas nous marier.\nWe're not living together.\tNous ne vivons pas ensemble.\nWe're not really brothers.\tNous ne sommes pas vraiment frères.\nWe're not to be disturbed.\tIl ne faut pas nous déranger.\nWe're up against the wall.\tNous sommes dos au mur.\nWe've got bigger problems.\tNous avons des problèmes plus importants.\nWe've got nothing to hide.\tNous n'avons rien à cacher.\nWe've only got one chance.\tNous n'avons qu'une seule chance.\nWell, Tom, you were right.\tEh bien, Tom, vous aviez raison.\nWell, Tom, you were right.\tEh bien, Tom, tu avais raison.\nWell, you've convinced me.\tEh bien, tu m'as convaincu.\nWell, you've convinced me.\tEh bien, vous m'avez convaincu.\nWell, you've convinced me.\tEh bien, vous m'avez convaincue.\nWell, you've convinced me.\tEh bien, tu m'as convaincue.\nWere you tired last night?\tTu étais fatigué, hier soir ?\nWhales feed on small fish.\tLes baleines se nourrissent de petits poissons.\nWhat a big house you have!\tQuelle grande maison vous avez !\nWhat a lucky person he is!\tQuel homme chanceux il est.\nWhat about his girlfriend?\tQu'en est-il de sa copine ?\nWhat an inspiring speaker!\tQuel brillant orateur !\nWhat an interesting party!\tQuelle fête intéressante !\nWhat are you crunching on?\tQu'est-ce que tu croques ?\nWhat are you crunching on?\tQu'est-ce que tu rumines ?\nWhat are you crunching on?\tQue grignotes-tu ?\nWhat are you crunching on?\tQue grignotez-vous ?\nWhat are you so scared of?\tDe quoi as-tu si peur ?\nWhat are you trying to do?\tQue cherches-tu à faire ?\nWhat are your conclusions?\tQuelles sont tes conclusions ?\nWhat can I do to help you?\tQue puis-je faire pour t'aider ?\nWhat caused the explosion?\tQu'est-ce qui a causé l'explosion ?\nWhat did I ever do to you?\tQue t'ai-je jamais fait ?\nWhat did I ever do to you?\tQue vous ai-je jamais fait ?\nWhat did Tom say about me?\tQu'a dit Tom à propos de moi ?\nWhat did Tom say about me?\tQu'est-ce que Tom a dit sur moi ?\nWhat did he do after that?\tQu'a-t-il fait après cela ?\nWhat did she actually say?\tQu'a-t-elle effectivement dit ?\nWhat did you do this time?\tQu'est-ce que tu as encore fait cette fois-ci ?\nWhat did you do this time?\tQu'avez-vous fait, cette fois ?\nWhat did you do this time?\tQu'as-tu fait, cette fois ?\nWhat did you do with that?\tQu'as-tu fais avec ça ?\nWhat did you do with that?\tQu'est-ce que tu as fait avec ça ?\nWhat did you do with that?\tQu'avez-vous fait avec ça ?\nWhat did you do with that?\tQu'est-ce que vous avez fait avec ça ?\nWhat did you do yesterday?\tQu'as-tu fait hier ?\nWhat did you do yesterday?\tQu'avez-vous fait hier ?\nWhat did you get hit with?\tPar quoi as-tu été frappé ?\nWhat did you get hit with?\tAvec quoi as-tu été frappé ?\nWhat did you get hit with?\tPar quoi avez-vous été frappé ?\nWhat did you get hit with?\tAvec quoi avez-vous été frappé ?\nWhat did you get hit with?\tAvec quoi avez-vous été frappée ?\nWhat did you get hit with?\tAvec quoi avez-vous été frappés ?\nWhat did you get hit with?\tAvec quoi avez-vous été frappées ?\nWhat did you get hit with?\tPar quoi avez-vous été frappée ?\nWhat did you get hit with?\tPar quoi avez-vous été frappés ?\nWhat did you get hit with?\tPar quoi avez-vous été frappées ?\nWhat did you get hit with?\tPar quoi as-tu été frappée ?\nWhat did you go there for?\tPour quelle raison y as-tu été ?\nWhat did you open it with?\tAvec quoi l'as-tu ouvert ?\nWhat did you open it with?\tAvec quoi l'as-tu ouverte ?\nWhat did you open it with?\tAvec quoi l'avez-vous ouvert ?\nWhat did you think of him?\tQu'avez-vous pensé de lui ?\nWhat did you think of him?\tQu'as-tu pensé de lui ?\nWhat do you do on Fridays?\tQue faites-vous le vendredi ?\nWhat do you do on Fridays?\tQue fais-tu le vendredi ?\nWhat do you do on Sundays?\tQue fais-tu le dimanche ?\nWhat do you do on Sundays?\tQue faites-vous le dimanche ?\nWhat do you feed your dog?\tQue donnes-tu à manger à ton chien ?\nWhat do you feed your dog?\tQue donnez-vous à manger à votre chien ?\nWhat do you like about it?\tQu'est-ce que tu y trouves ?\nWhat do you like about it?\tQu'est-ce que vous y trouvez ?\nWhat do you like about me?\tQu'est-ce que tu aimes chez moi ?\nWhat do you like about me?\tQu'est-ce que vous aimez chez moi ?\nWhat do you need me to do?\tQue veux-tu que je fasse ?\nWhat do you need me to do?\tQu'avez-vous besoin que je fasse ?\nWhat do you think of that?\tQu'en penses-tu ?\nWhat do you think of that?\tQue penses-tu de ça ?\nWhat do you think of that?\tQue pensez-vous de cela ?\nWhat do you think this is?\tQue penses-tu que ce soit ?\nWhat do you think this is?\tQue pensez-vous que ce soit ?\nWhat do you want me to do?\tQue veux-tu que je fasse ?\nWhat do you want me to do?\tQue voulez-vous que je fasse ?\nWhat do you want me to do?\tQue veux-tu que je fasse ?\nWhat do you want me to do?\tQue voulez-vous que je fasse ?\nWhat do you want to drink?\tQue veux-tu boire ?\nWhat do you want to drink?\tQue voulez-vous boire ?\nWhat do you want to learn?\tQue voulez-vous apprendre ?\nWhat do you want to learn?\tQue veux-tu apprendre ?\nWhat do you want to study?\tQue veux-tu étudier ?\nWhat do you want to study?\tQue voulez-vous étudier ?\nWhat does she think of it?\tQu'en pense-t-elle ?\nWhat does the future hold?\tQue recèle l'avenir ?\nWhat else can you tell us?\tQue peux-tu nous dire d'autre ?\nWhat else can you tell us?\tQue pouvez-vous nous dire d'autre ?\nWhat evidence do you have?\tDe quelles preuves disposes-tu ?\nWhat evidence do you have?\tDe quelles preuves disposez-vous ?\nWhat floor do you live on?\tÀ quel étage habitez-vous ?\nWhat floor do you live on?\tÀ quel étage habites-tu ?\nWhat floor do you live on?\tÀ quel étage loges-tu ?\nWhat floor do you live on?\tÀ quel étage demeurez-vous ?\nWhat happened to your car?\tQu'est-il arrivé à ta voiture ?\nWhat happened to your dog?\tQu'est-il advenu de ton chien ?\nWhat has brought you here?\tQu'est-ce qui t'a amené ici ?\nWhat have you done to him?\tQue lui avez-vous fait ?\nWhat have you done to him?\tQue lui as-tu fait ?\nWhat have you eaten today?\tQu'avez-vous mangé aujourd'hui ?\nWhat have you eaten today?\tQu'as-tu mangé aujourd'hui ?\nWhat he did is very wrong.\tCe qu'il a fait est très mal.\nWhat he said surprised me.\tCe qu'il a dit m'a surpris.\nWhat he said was not true.\tCe qu'il dit n'était pas vrai.\nWhat he said was not true.\tCe qu'il a dit n'était pas vrai.\nWhat if he comes back now?\tEt s'il revenait maintenant ?\nWhat if somebody saw this?\tEt si quelqu'un le voyait ?\nWhat if somebody sees you?\tEt si quelqu'un te voit ?\nWhat if somebody sees you?\tEt si quelqu'un vous voit ?\nWhat if someone finds out?\tEt si quelqu'un le découvre ?\nWhat if someone sees this?\tEt si quelqu'un le voit ?\nWhat is critical thinking?\tQu'est la pensée critique ?\nWhat is critical thinking?\tQu'est-ce que la pensée critique ?\nWhat is she worried about?\tDe quoi est-elle inquiète ?\nWhat is the exchange rate?\tQuel est le taux de change ?\nWhat is this vase made of?\tEn quoi est fait ce vase ?\nWhat is your phone number?\tQuel est ton numéro de téléphone ?\nWhat is your type exactly?\tQuel est ton type, exactement ?\nWhat is your type exactly?\tQuel est votre type, exactement ?\nWhat keeps you up so late?\tQu'est-ce qui te retient éveillé si tard ?\nWhat kind of girl are you?\tQuel genre de fille êtes-vous ?\nWhat kind of girl are you?\tQuel genre de fille es-tu ?\nWhat kind of ship is that?\tDe quelle sorte de navire s'agit-il ?\nWhat makes you think that?\tQu'est-ce qui te fait croire ça ?\nWhat number bus do I take?\tQuel est le numéro du bus que je dois prendre ?\nWhat position do you hold?\tQuel est votre poste ?\nWhat position do you hold?\tQuel poste occupez-vous ?\nWhat position do you hold?\tQuel poste occupes-tu ?\nWhat position do you hold?\tQuel est ton poste ?\nWhat school did you go to?\tQuelle école avez-vous fréquentée ?\nWhat school did you go to?\tQuelle école as-tu fréquentée ?\nWhat shall we eat tonight?\tQu'allons-nous manger ce soir ?\nWhat she said wasn't true.\tCe qu'elle a dit n'était pas vrai.\nWhat should I feed my dog?\tQue devrais-je donner à manger à mon chien ?\nWhat song was Tom singing?\tQuel chanson Tom chantait-il ?\nWhat steps should we take?\tQuelles démarches devrions-nous entreprendre ?\nWhat symptoms do you have?\tQuels symptômes montrez-vous ?\nWhat symptoms do you have?\tQuels symptômes présentes-tu ?\nWhat time did you wake up?\tÀ quelle heure t'es-tu réveillé ?\nWhat time did you wake up?\tÀ quelle heure t'es-tu réveillée ?\nWhat time did you wake up?\tÀ quelle heure vous êtes-vous réveillé ?\nWhat time did you wake up?\tÀ quelle heure vous êtes-vous réveillée ?\nWhat time did you wake up?\tÀ quelle heure vous êtes-vous réveillés ?\nWhat time did you wake up?\tÀ quelle heure vous êtes-vous réveillées ?\nWhat time is good for you?\tQuelle heure te convient ?\nWhat time is it there now?\tQuelle heure est-il là-bas, maintenant ?\nWhat trouble can he cause?\tQuels problèmes peut-il causer ?\nWhat was it I left behind?\tQu'ai-je laissé derrière ?\nWhat was the weather like?\tComment était le temps ?\nWhat were her final words?\tQuelles furent ses dernières paroles ?\nWhat were you doing there?\tQue faisiez-vous là?\nWhat were you thinking of?\tÀ quoi pensais-tu ?\nWhat were you thinking of?\tÀ quoi pensiez-vous ?\nWhat would you have me do?\tQu'est-ce que vous auriez voulu que je fasse ?\nWhat would you have me do?\tQu'est-ce que tu voulais que je fasse ?\nWhat would you have me do?\tQu'auriez-vous voulu que je fisse ?\nWhat would you have me do?\tQue voudrais-tu que je fasse ?\nWhat would you like to do?\tQu'aimerais-tu faire ?\nWhat would you like to do?\tQu'aimeriez-vous faire ?\nWhat you need is a friend.\tCe dont vous avez besoin, c'est d'un ami.\nWhat you need is a friend.\tCe dont vous avez besoin, c'est d'une amie.\nWhat you need is a friend.\tCe dont tu as besoin, c'est d'un ami.\nWhat you need is a friend.\tCe dont tu as besoin, c'est d'une amie.\nWhat you need is a friend.\tCe qu'il vous faut, c'est un ami.\nWhat you need is a friend.\tCe qu'il te faut, c'est un ami.\nWhat you need is a friend.\tCe qu'il vous faut, c'est une amie.\nWhat you need is a friend.\tCe qu'il te faut, c'est une amie.\nWhat you said is not true.\tCe que tu as dit n'est pas vrai.\nWhat'll I find in the box?\tQu'est-ce que je vais trouver dans la boite ?\nWhat'll grow in this soil?\tQu'est-ce qui poussera dans ce sol ?\nWhat're you talking about?\tDe quoi parles-tu ?\nWhat're you talking about?\tDe quoi parlez-vous ?\nWhat's all the excitement?\tQuelle est toute cette excitation ?\nWhat's all the fuss about?\tC'est quoi toutes ces histoires ?\nWhat's all the fuss about?\tC'est quoi tout ce bazar ?\nWhat's become of your dog?\tQu'est-il advenu de ton chien ?\nWhat's in all these boxes?\tQu'y a-t-il dans toutes ces caisses ?\nWhat's in all these boxes?\tQu'y a-t-il dans toutes ces boîtes ?\nWhat's so hard to believe?\tQu'est-ce qui est si difficile à croire ?\nWhat's taking you so long?\tQu'est-ce qui te prend autant de temps ?\nWhat's taking you so long?\tQu'est-ce qui vous prend autant de temps ?\nWhat's that tall building?\tQuel est ce haut bâtiment ?\nWhat's the new boy's name?\tQuel est le nom du nouveau garçon ?\nWhat's the new guy's name?\tQuel est le nom du nouveau gars ?\nWhat's the problem anyway?\tQuel est le problème, de toutes façons ?\nWhat's the problem anyway?\tQuel est le problème, de toutes manières ?\nWhat's the problem anyway?\tQuel est le problème, de toutes les manières ?\nWhat's this street called?\tComment s'appelle cette rue ?\nWhat's this street called?\tComment se nomme cette rue ?\nWhat's this street called?\tQuel est le nom de cette rue ?\nWhat's wrong with my idea?\tQu'est-ce qui ne va pas avec mon idée ?\nWhat's your date of birth?\tQuelle est ta date de naissance ?\nWhat's your date of birth?\tQuelle est votre date de naissance ?\nWhat's your favorite band?\tQuel est ton groupe préféré ?\nWhat's your favorite band?\tQuel est votre groupe préféré ?\nWhat's your favorite game?\tQuel est ton jeu préféré ?\nWhat's your favorite poem?\tQuel est ton poème favori ?\nWhat's your favorite wine?\tQuel est ton vin préféré ?\nWhat's your favorite wine?\tQuel est votre vin préféré ?\nWhat's your favorite word?\tQuel est votre mot préféré ?\nWhat's your favorite word?\tQuel est ton mot préféré ?\nWhat's your friend's name?\tQuel est le nom de ton ami ?\nWhat's your greatest fear?\tQuelle est votre plus grande crainte ?\nWhat's your greatest fear?\tQuelle est ta plus grande crainte ?\nWhatever she says is true.\tQuoi qu'elle dise est la vérité.\nWhatever will be, will be.\tAdvienne que pourra.\nWhen did Tom come see you?\tQuand est-ce que Tom est venu te voir ?\nWhen did it begin to rain?\tQuand est-ce qu'il a commencé à pleuvoir ?\nWhen did it begin to rain?\tQuand a-t-il commencé à pleuvoir ?\nWhen did you quit smoking?\tDepuis quand t’as arrêté de fumer ?\nWhen did you quit smoking?\tQuand avez-vous cessé de fumer ?\nWhen did you see him last?\tQuand l'avez-vous vu pour la dernière fois ?\nWhen did you see him last?\tQuand l'as-tu vu pour la dernière fois ?\nWhen did you start dating?\tQuand avez-vous commencé à sortir ensemble ?\nWhen did you start dating?\tQuand vous êtes-vous mis à sortir ensemble ?\nWhen did you start dating?\tQuand avez-vous commencé à sortir l'un avec l'autre ?\nWhen did you tell me that?\tQuand me l'as-tu dit ?\nWhen did you tell me that?\tQuand me l'avez-vous dit ?\nWhen do you go on holiday?\tQuand pars-tu en vacances ?\nWhen do you go on holiday?\tQuand partez-vous en vacances ?\nWhen do you mean to start?\tQuand as-tu l'intention de commencer ?\nWhen do you mean to start?\tQuand avez-vous l'intention de commencer ?\nWhen do you mean to start?\tQuand as-tu l'intention de démarrer ?\nWhen do you mean to start?\tQuand avez-vous l'intention de démarrer ?\nWhen do you plan to start?\tQuand prévois-tu de démarrer ?\nWhen do you plan to start?\tQuand prévois-tu de commencer ?\nWhen do you want to start?\tQuand est-ce que tu veux commencer ?\nWhen does the movie start?\tQuand est-ce que le film commence ?\nWhen should I feed my dog?\tQuand devrais-je nourrir mon chien ?\nWhen will she return home?\tQuand rentrera-t-elle chez elle ?\nWhen will you get married?\tQuand vous marierez-vous ?\nWhere I am doesn't matter.\tOù je me trouve n'a pas d'importance.\nWhere are the other girls?\tOù sont les autres filles ?\nWhere are the other three?\tOù sont les trois autres ?\nWhere are they sending us?\tOù nous envoient-ils ?\nWhere are they sending us?\tOù nous envoient-elles ?\nWhere are those prisoners?\tOù ces prisonniers se trouvent-ils ?\nWhere are you going to go?\tOù vas-tu te rendre ?\nWhere are you going to go?\tOù allez-vous vous rendre ?\nWhere can I get some help?\tOù puis-je avoir de l'aide ?\nWhere can I leave my bike?\tOù puis-je laisser mon vélo ?\nWhere can I wash my hands?\tOù puis-je me laver les mains ?\nWhere did they learn this?\tOù ont-ils appris ça ?\nWhere did they learn this?\tOù ont-elles appris ça ?\nWhere did you get the hat?\tOù as-tu eu le chapeau ?\nWhere did you get the hat?\tOù avez-vous eu le chapeau ?\nWhere did you put my keys?\tOù as-tu fourré mes clés ?\nWhere did you put my keys?\tOù avez-vous mis mes clés ?\nWhere did you put my keys?\tOù as-tu mis mes clés ?\nWhere did you see the boy?\tOù avez-vous vu le garçon ?\nWhere did you see the boy?\tOù as-tu vu le garçon ?\nWhere do I get the subway?\tOù puis-je prendre le métro ?\nWhere do babies come from?\tD'où les bébés viennent-ils ?\nWhere do dreams come from?\tD'où proviennent les rêves ?\nWhere do you think Tom is?\tOù est Tom à ton avis?\nWhere does that road lead?\tOù mène cette rue ?\nWhere does this doodad go?\tOù va ce bidule ?\nWhere exactly do you live?\tOù vis-tu exactement ?\nWhere exactly do you live?\tOù vivez-vous exactement ?\nWhere is the bus terminal?\tOù se trouve l'arrêt de bus ?\nWhere is the bus terminal?\tOù se trouve la gare routière ?\nWhere is the nearest shop?\tOù se trouve le magasin le plus proche ?\nWhere is this train going?\tVers où va ce train ?\nWhere were you last night?\tOù étais-tu la nuit dernière ?\nWhere's the train station?\tOù se trouve la gare ?\nWhere's the train station?\tOù se situe la gare ?\nWhere's the whipped cream?\tOù est la crème fouettée ?\nWhich brand do you prefer?\tQuelle marque préfères-tu ?\nWhich direction did he go?\tDans quelle direction est-il allé ?\nWhich one will you choose?\tLequel choisiras-tu ?\nWhich one will you choose?\tLequel choisirez-vous ?\nWhich one will you choose?\tLaquelle choisirez-vous ?\nWhich one will you choose?\tLaquelle choisiras-tu ?\nWho are you talking about?\tDe qui parles-tu ?\nWho are you talking about?\tDe qui parlez-vous ?\nWho are you talking about?\tÀ propos de qui parles-tu ?\nWho are you talking about?\tÀ propos de qui parlez-vous ?\nWho are you talking about?\tDe qui parles-tu ?\nWho are you talking about?\tDe qui parlez-vous ?\nWho buys this type of art?\tQui achète ce genre d'œuvre d'art ?\nWho committed this murder?\tQui a commis ce crime ?\nWho did you go there with?\tAvec qui y es-tu allé ?\nWho did you go there with?\tAvec qui y es-tu allée ?\nWho did you learn it from?\tDe qui as-tu appris cela ?\nWho did you learn it from?\tDe qui tiens-tu cela ?\nWho did you learn it from?\tDe qui avez-vous appris cela ?\nWho did you learn it from?\tDe qui tenez-vous cela ?\nWho did you learn it from?\tPar qui as-tu appris cela ?\nWho did you learn it from?\tPar qui avez-vous appris cela ?\nWho do you know in Boston?\tQui connais-tu à Boston ?\nWho do you know in Boston?\tQui connaissez-vous à Boston ?\nWho else do you know here?\tQui d'autre connaissez-vous ici ?\nWho else is going with us?\tQui d'autre vient avec nous ?\nWho invented this machine?\tQui a inventé cette machine ?\nWho is playing the guitar?\tQui est-ce qui est en train de jouer de la guitare ?\nWho is younger, him or me?\tQui est le plus jeune, lui ou moi ?\nWho painted this painting?\tQui a peint ce tableau ?\nWho painted this painting?\tQui a peint ce tableau ?\nWho painted this painting?\tQui a peint cette toile ?\nWho told you Tom was sick?\tQui vous a dit que Tom était malade ?\nWho told you Tom was sick?\tQui t'a dit que Tom est malade ?\nWho wants a piece of cake?\tQui veut un morceau de gâteau ?\nWho wants to come with me?\tQui veut venir avec moi ?\nWho were you talking with?\tAvec qui parliez-vous ?\nWho will act as spokesman?\tQui agira en tant que porte-parole ?\nWho will write the report?\tQui écrira le rapport ?\nWho would want to do that?\tQui voudrait faire ça ?\nWho's your French teacher?\tQui est ton professeur de français ?\nWho's your French teacher?\tQui est votre professeur de français ?\nWho's your favorite actor?\tQuel est ton acteur préféré ?\nWho's your favorite actor?\tQui est ton acteur préféré ?\nWhoever says so is a liar.\tQuiconque le dit est un menteur.\nWhose handwriting is this?\tÀ qui appartient cette écriture ?\nWhose paintings are these?\tDe qui sont ces tableaux ?\nWhy are we still fighting?\tPourquoi nous battons-nous encore ?\nWhy are you guys so angry?\tPourquoi êtes-vous si en colère, les mecs ?\nWhy are you looking at me?\tPourquoi me regardez-vous ?\nWhy are you looking at me?\tPourquoi me regardes-tu ?\nWhy are you out of breath?\tPourquoi es-tu à bout de souffle ?\nWhy are you out of breath?\tPourquoi êtes-vous à bout de souffle ?\nWhy are you sitting there?\tPourquoi es-tu assis là ?\nWhy are you sitting there?\tPourquoi êtes-vous assis là ?\nWhy are you sitting there?\tPourquoi es-tu assise là ?\nWhy can't we just go home?\tPourquoi ne pouvons-nous pas simplement aller chez nous ?\nWhy did you come to Japan?\tPourquoi es-tu venu au Japon ?\nWhy did you do this to me?\tPourquoi m'as-tu fait ça ?\nWhy did you do this to me?\tPourquoi m'avez-vous fait ça ?\nWhy did you guys break up?\tPourquoi avez-vous rompu, les mecs ?\nWhy did you join the Army?\tPourquoi avez-vous rejoint l'armée ?\nWhy did you join the Army?\tPourquoi as-tu rejoint l'armée ?\nWhy did you listen to him?\tPourquoi l'as-tu écouté ?\nWhy did you listen to him?\tPourquoi l'avez-vous écouté ?\nWhy did you lock the door?\tPourquoi as-tu verrouillé la porte ?\nWhy did you lock the door?\tPourquoi avez-vous verrouillé la porte ?\nWhy didn't you believe me?\tPourquoi ne m'as-tu pas cru ?\nWhy didn't you call me up?\tPourquoi ne m'as-tu pas appelé ?\nWhy didn't you call me up?\tPourquoi ne m'avez-vous pas appelé ?\nWhy didn't you call me up?\tPourquoi ne m'avez-vous pas appelée ?\nWhy didn't you call me up?\tPourquoi ne m'as-tu pas appelée ?\nWhy didn't you just leave?\tPourquoi n'êtes-vous pas simplement parti ?\nWhy didn't you just leave?\tPourquoi n'êtes-vous pas simplement partie ?\nWhy didn't you just leave?\tPourquoi n'êtes-vous pas simplement partis ?\nWhy didn't you just leave?\tPourquoi n'êtes-vous pas simplement parties ?\nWhy didn't you just leave?\tPourquoi n'es-tu pas simplement parti ?\nWhy didn't you just leave?\tPourquoi n'es-tu pas simplement partie ?\nWhy didn't you wake me up?\tPourquoi ne m'as-tu pas réveillé ?\nWhy didn't you wake me up?\tPourquoi ne m'avez-vous pas réveillée ?\nWhy do you despise people?\tPourquoi méprises-tu les gens ?\nWhy do you despise people?\tPourquoi méprisez-vous les gens ?\nWhy do you think I'm here?\tPourquoi penses-tu que je suis ici ?\nWhy does everyone hate me?\tPourquoi tout le monde me déteste ?\nWhy does it have to be me?\tPourquoi c'est à moi de le faire ?\nWhy don't we all sit down?\tPourquoi ne nous asseyons-nous pas tous ?\nWhy don't we share a room?\tPourquoi ne partageons-nous pas une pièce ?\nWhy don't you go help Tom?\tPourquoi ne vas-tu pas aider Tom ?\nWhy don't you go help Tom?\tPourquoi n'allez-vous pas aider Tom ?\nWhy don't you sing for us?\tPourquoi ne chantes-tu pas pour nous ?\nWhy don't you sing for us?\tPourquoi ne chantez-vous pas pour nous ?\nWhy don't you talk to him?\tPourquoi ne discutez-vous pas avec lui ?\nWhy don't you talk to him?\tPourquoi ne vous entretenez-vous pas avec lui ?\nWhy don't you talk to him?\tPourquoi ne lui parlez-vous pas ?\nWhy don't you talk to him?\tPourquoi ne discutes-tu pas avec lui ?\nWhy don't you talk to him?\tPourquoi ne t'entretiens-tu pas avec lui ?\nWhy don't you talk to him?\tPourquoi ne lui parles-tu pas ?\nWhy don't you talk to him?\tPourquoi ne pas lui parler ?\nWhy is everybody shouting?\tPourquoi est-ce que tout le monde crie ?\nWhy is everybody shouting?\tPourquoi est-ce que tout le monde hurle ?\nWhy not join us for lunch?\tPourquoi ne pas vous joindre à nous pour le déjeuner ?\nWhy not join us for lunch?\tPourquoi ne pas nous rejoindre pour le déjeuner ?\nWhy should I go to school?\tPourquoi devrais-je aller à l'école ?\nWhy should you suspect me?\tPourquoi devrais-tu me suspecter ?\nWhy would anybody kiss me?\tPourquoi quelqu'un m'embrasserait-il ?\nWhy would someone do that?\tPourquoi quelqu'un ferait-il cela ?\nWhy's everyone whispering?\tPourquoi tout le monde chuchote-t-il ?\nWill I be able to find it?\tSerai-je en mesure de le trouver ?\nWill I be able to find it?\tSerai-je en mesure de la trouver ?\nWill he come this evening?\tViendra-t-il ce soir ?\nWill six o'clock suit you?\tEst-ce que six heures vous conviendrait ?\nWill six o'clock suit you?\tSix heures vous conviendrait-il ?\nWill you be here tomorrow?\tSerez-vous ici demain ?\nWill you have some coffee?\tVeux-tu un peu de café ?\nWill you have some coffee?\tVoulez-vous un peu de café ?\nWill you pass me the salt?\tPourriez-vous me passer le sel s'il vous plaît ?\nWill you show me the book?\tTu me montreras le livre ?\nWill you show me the book?\tMe montreras-tu l'ouvrage ?\nWine helps with digestion.\tLe vin aide à la digestion.\nWithout you, I am nothing.\tSans toi je ne suis rien.\nWithout you, I am nothing.\tSans vous je ne suis rien.\nWithout you, I am nothing.\tSans toi, je ne suis rien.\nWithout you, I am nothing.\tSans vous, je ne suis rien.\nWomen age faster than men.\tLes femmes vieillissent plus vite que les hommes.\nWomen age faster than men.\tLes femmes vieillissent plus rapidement que les hommes.\nWon't you have some fruit?\tNe prendriez-vous pas des fruits ?\nWould someone shut him up?\tEst-ce que quelqu'un veut le faire taire ?\nWould someone shut him up?\tQuelqu'un voudrait-il le faire taire ?\nWould you care for drinks?\tDésireriez-vous des boissons ?\nWould you care to join us?\tCela t'intéresserait-il de te joindre à nous ?\nWould you care to join us?\tCela vous intéresserait-il de vous joindre à nous ?\nWould you go to your room?\tVoudrais-tu aller dans ta chambre ?\nWould you go to your room?\tVoudriez-vous aller dans votre chambre ?\nWould you like some salad?\tVoulez-vous de la salade ?\nWould you like some salad?\tVeux-tu de la salade ?\nWould you like some water?\tAimeriez-vous de l'eau ?\nWould you like some water?\tAimerais-tu de l'eau ?\nWould you like to come in?\tAimerais-tu entrer ?\nWould you like to come in?\tAimeriez-vous entrer ?\nWould you like to see Tom?\tAimerais-tu voir Tom ?\nWould you mind if I smoke?\tCela vous dérangerait-il que je fume ?\nWould you mind if we left?\tVerriez-vous un inconvénient à ce que nous partions ?\nWow! That looks delicious.\tOuh ! Ça a l'air délicieux.\nWrite down your name here.\tÉcrivez votre nom ici.\nWrite on every other line.\tÉcris une ligne sur deux.\nWrite on every other line.\tÉcrivez une ligne sur deux.\nWrite the address clearly.\tÉcrivez clairement l'adresse !\nWrite the address clearly.\tÉcris clairement l'adresse !\nYesterday I bought a book.\tHier, j'ai acheté un livre.\nYesterday I bought a book.\tHier j'ai acheté un livre.\nYesterday, I ate an apple.\tHier, j'ai mangé une pomme.\nYou are both in the wrong.\tVous avez tous deux faux.\nYou are easily distracted.\tTu es facilement distrait.\nYou are in over your head.\tTu es dedans jusqu'au cou.\nYou are late this morning.\tVous êtes en retard ce matin.\nYou are selling him short.\tTu le sous-estimes.\nYou are such a sweetheart.\tTu es tellement adorable !\nYou are such a sweetheart.\tVous êtes tellement adorable !\nYou are tired, aren't you?\tTu es fatigué, non ?\nYou are tired, aren't you?\tVous êtes fatigués, pas vrai ?\nYou are tired, aren't you?\tVous êtes fatigué, n'est-ce pas ?\nYou aren't a spy, are you?\tTu n'es pas un espion, si ?\nYou aren't a spy, are you?\tVous n'êtes pas une espionne, si ?\nYou aren't as short as me.\tTu n'es pas aussi petit que moi.\nYou aren't as short as me.\tTu n'es pas aussi petite que moi.\nYou better get some sleep.\tVous feriez mieux de prendre du repos.\nYou better get some sleep.\tTu ferais mieux de prendre du repos.\nYou can do that right now.\tTu peux faire cela maintenant.\nYou can go if you want to.\tVous pouvez partir si vous voulez.\nYou can go if you want to.\tTu peux partir si tu veux.\nYou can go if you want to.\tVous pouvez y aller si vous voulez.\nYou can stay till tonight.\tTu peux rester jusqu'à ce soir.\nYou can swim, but I can't.\tTu peux nager mais j'en suis incapable.\nYou can tear the box open.\tTu peux ouvrir la boîte en la déchirant.\nYou can tell me the truth.\tTu peux me dire la vérité.\nYou can tell me the truth.\tVous pouvez me dire la vérité.\nYou can use my dictionary.\tTu peux utiliser mon dictionnaire.\nYou can use my dictionary.\tVous pouvez utiliser mon dictionnaire.\nYou can't attend? Why not?\tTu ne peux pas y assister ? Pourquoi pas ?\nYou can't attend? Why not?\tVous ne pouvez pas être présent ? Pourquoi pas ?\nYou can't be sure of that.\tOn ne peut en être sûr.\nYou can't be sure of that.\tTu ne peux pas en être sûr.\nYou can't be sure of that.\tTu ne peux pas en être sûre.\nYou can't be sure of that.\tVous ne pouvez pas en être sûr.\nYou can't be sure of that.\tVous ne pouvez pas en être sûre.\nYou can't be sure of that.\tVous ne pouvez pas en être sûrs.\nYou can't be sure of that.\tVous ne pouvez pas en être sûres.\nYou can't believe anybody.\tTu ne peux pas croire à n'importe qui.\nYou can't believe anybody.\tVous ne pouvez pas croire à n'importe qui.\nYou can't get on this bus.\tTu ne peux pas monter dans ce bus.\nYou can't get on this bus.\tVous ne pouvez pas monter dans ce bus.\nYou can't have both books.\tTu ne peux pas avoir ces deux livres.\nYou can't have both books.\tVous ne pouvez avoir les deux ouvrages.\nYou can't have both books.\tIl ne se peut pas que vous ayez les deux ouvrages.\nYou can't have both books.\tIl ne vous est pas permis d'avoir les deux ouvrages.\nYou can't reason with Tom.\tOn ne peut pas faire entendre raison à Tom.\nYou can't see Tom anymore.\tTu ne peux plus voir Tom.\nYou can't see me, can you?\tTu ne peux pas me voir, n'est-ce pas ?\nYou can't skateboard here.\tTu ne peux pas skater ici.\nYou can't tickle yourself.\tOn ne peut pas se chatouiller soi-même.\nYou could have been happy.\tVous auriez pu être heureux.\nYou could have been happy.\tVous auriez pu être heureuse.\nYou could hear a pin drop.\tOn pouvait entendre une épingle tomber.\nYou could hear a pin drop.\tOn pouvait entendre les mouches voler.\nYou despise me, don't you?\tTu me méprises, n'est-ce pas ?\nYou despise me, don't you?\tVous me méprisez, n'est-ce pas ?\nYou didn't keep your word.\tTu n'as pas tenu ta promesse.\nYou didn't keep your word.\tVous n'avez pas tenu votre parole.\nYou didn't keep your word.\tVous n'avez pas tenu votre promesse.\nYou didn't keep your word.\tTu n'as pas tenu ta parole.\nYou don't deserve to live.\tVous ne méritez pas de vivre.\nYou don't deserve to live.\tTu ne mérites pas de vivre.\nYou don't have the ticket.\tVous n'avez pas le billet.\nYou don't have the ticket.\tTu n'as pas le billet.\nYou don't have to do this.\tVous n'êtes pas obligé de faire ça.\nYou don't have to do this.\tTu n'es pas obligé de faire ça.\nYou don't have to explain.\tVous n'êtes pas forcé de donner des explications.\nYou don't have to explain.\tVous n'êtes pas forcée de donner des explications.\nYou don't have to explain.\tVous n'êtes pas forcés de donner des explications.\nYou don't have to explain.\tVous n'êtes pas forcées de donner des explications.\nYou don't have to explain.\tTu n'es pas forcé de donner des explications.\nYou don't have to explain.\tTu n'es pas forcée de donner des explications.\nYou don't have to explain.\tTu n'es pas obligé de donner des explications.\nYou don't have to explain.\tTu n'es pas obligée de donner des explications.\nYou don't have to explain.\tVous n'êtes pas obligé de donner des explications.\nYou don't have to explain.\tVous n'êtes pas obligée de donner des explications.\nYou don't have to explain.\tVous n'êtes pas obligés de donner des explications.\nYou don't have to explain.\tVous n'êtes pas obligées de donner des explications.\nYou don't have to explain.\tVous n'êtes pas obligé de fournir des explications.\nYou don't have to explain.\tVous n'êtes pas obligée de fournir des explications.\nYou don't have to explain.\tVous n'êtes pas obligés de fournir des explications.\nYou don't have to explain.\tVous n'êtes pas obligées de fournir des explications.\nYou don't have to explain.\tTu n'es pas obligée de fournir des explications.\nYou don't have to explain.\tTu n'es pas obligé de fournir des explications.\nYou don't have to respond.\tTu n'es pas obligé de répondre.\nYou don't have to respond.\tTu n'es pas obligée de répondre.\nYou don't have to respond.\tVous n'êtes pas obligé de répondre.\nYou don't have to respond.\tVous n'êtes pas obligés de répondre.\nYou don't have to respond.\tVous n'êtes pas obligée de répondre.\nYou don't have to respond.\tVous n'êtes pas obligées de répondre.\nYou don't know everything.\tTu ne sais pas tout.\nYou don't know everything.\tVous ne savez pas tout.\nYou don't know my brother.\tVous ne connaissez pas mon frère.\nYou don't know my brother.\tTu ne connais pas mon frère.\nYou don't know the system.\tVous ne connaissez pas le système.\nYou don't know the system.\tTu ne connais pas le système.\nYou don't look like a cop.\tVous n'avez pas l'air d'être un flic.\nYou don't need me anymore.\tVous n'avez plus besoin de moi.\nYou don't need me anymore.\tTu n'as plus besoin de moi.\nYou don't need to do that.\tTu n'as pas besoin de faire ça.\nYou don't need to do that.\tVous n'avez pas besoin de faire ça.\nYou don't need to wrap it.\tIl n'est pas nécessaire que vous l'enveloppiez.\nYou don't owe me anything.\tTu ne me dois rien.\nYou don't owe me anything.\tVous ne me devez rien.\nYou don't sound convinced.\tTu ne sembles pas convaincu.\nYou don't sound convinced.\tTu ne sembles pas convaincue.\nYou don't sound convinced.\tVous ne semblez pas convaincu.\nYou don't sound convinced.\tVous ne semblez pas convaincue.\nYou don't sound convinced.\tVous ne semblez pas convaincus.\nYou don't sound convinced.\tVous ne semblez pas convaincues.\nYou drink too much coffee.\tTu bois trop de café.\nYou drink too much coffee.\tVous buvez trop de café.\nYou enjoy that, don't you?\tTu y prends plaisir, n'est-ce pas ?\nYou enjoy that, don't you?\tVous y prenez plaisir, n'est-ce pas ?\nYou guys are a lot of fun.\tVous me faites bien marrer, les mecs.\nYou have a kid, don't you?\tTu as un enfant, n'est-ce pas ?\nYou have a kid, don't you?\tVous avez un enfant, n'est-ce pas ?\nYou have a sense of humor.\tTu as de l'humour.\nYou have a way with women.\tTu sais t'y prendre avec les femmes.\nYou have given me so many.\tVous m'en avez donné tant.\nYou have given me so many.\tTu m'en as donné tant.\nYou have the wrong number.\tVous vous êtes trompé de numéro.\nYou have to ask me for it.\tTu dois me le demander.\nYou have to ask me for it.\tVous devez me le demander.\nYou have to get rid of it.\tTu dois t'en débarrasser.\nYou have to speak English.\tTu dois parler anglais.\nYou have to stay in shape.\tVous devez garder la forme.\nYou have to take a shower.\tTu dois prendre une douche.\nYou know what you must do.\tTu sais ce que tu dois faire.\nYou know what you must do.\tTu sais ce que tu as à faire.\nYou know what you must do.\tVous savez ce que vous devez faire.\nYou know what you must do.\tVous savez ce que vous avez à faire.\nYou know where to find me.\tTu sais où me trouver.\nYou know where to find me.\tVous savez où me trouver.\nYou look exactly like Tom.\tTu ressembles trait pour trait à Tom.\nYou look good in a kimono.\tTu es beau en kimono.\nYou look good in a kimono.\tTu es belle en kimono.\nYou look like an imbecile.\tTu as l'air d'un imbécile.\nYou love your wife, right?\tTu aimes ta femme, pas vrai ?\nYou love your wife, right?\tVous aimez votre épouse, n'est-ce pas ?\nYou made the same mistake.\tTu as commis la même erreur.\nYou made the same mistake.\tVous avez commis la même erreur.\nYou may stay here with me.\tIl se peut que tu restes ici avec moi.\nYou may stay here with me.\tIl se peut que vous restiez ici avec moi.\nYou may stay here with me.\tTu peux rester ici avec moi.\nYou may stay here with me.\tVous pouvez rester ici avec moi.\nYou may use my dictionary.\tTu peux utiliser mon dictionnaire.\nYou may use my dictionary.\tVous pouvez utiliser mon dictionnaire.\nYou may use my dictionary.\tTu peux te servir de mon dictionnaire.\nYou may use my typewriter.\tTu peux te servir de ma machine à écrire.\nYou may use my typewriter.\tVous pouvez utiliser ma machine à écrire.\nYou must accept your role.\tTu dois accepter ton rôle.\nYou must control yourself.\tVous devez vous contrôler.\nYou must control yourself.\tIl te faut te contrôler.\nYou must control yourself.\tIl vous faut vous contrôler.\nYou must do as I tell you.\tTu dois faire ce je te dis.\nYou must help your mother.\tTu dois aider ta mère !\nYou must help your mother.\tVous devez aider votre mère !\nYou must not eat too much.\tTu ne dois pas manger trop.\nYou must not give up hope.\tVous ne devez pas perdre espoir.\nYou must not give up hope.\tTu ne dois pas perdre espoir.\nYou must not go out today.\tVous ne devez pas sortir aujourd'hui.\nYou must not go out today.\tTu ne dois pas sortir aujourd'hui.\nYou must not shout at him.\tTu ne dois pas crier sur lui.\nYou must not stay up late.\tTu ne dois pas veiller tard.\nYou must not stay up late.\tVous ne devez pas veiller tard.\nYou must repay your debts.\tTu dois rembourser tes dettes.\nYou need to exercise more.\tTu dois faire davantage de sport.\nYou need to exercise more.\tVous devez faire plus de sport.\nYou need to get some rest.\tIl faut que tu te reposes.\nYou need to wear a tuxedo.\tIl te faut porter un smoking.\nYou need to wear a tuxedo.\tIl vous faut porter un smoking.\nYou need to work together.\tVous devez travailler ensemble.\nYou need to work together.\tIl vous faut travailler ensemble.\nYou ought to have seen it.\tTu aurais dû le voir.\nYou ought to have seen it.\tVous auriez dû le voir.\nYou really should read it.\tTu devrais vraiment le lire.\nYou remind me of somebody.\tTu me fais penser à quelqu'un.\nYou remind me of somebody.\tVous me rappelez quelqu'un.\nYou remind me of somebody.\tVous me faites penser à quelqu'un.\nYou said it was important.\tVous avez dit que c'était important.\nYou said it was important.\tTu as dit que c'était important.\nYou said you had a theory.\tTu as dit que tu avais une théorie.\nYou said you had a theory.\tVous avez dit que vous aviez une théorie.\nYou seem distracted today.\tTu sembles distrait, aujourd'hui.\nYou seem distracted today.\tVous semblez distrait aujourd'hui.\nYou seem distracted today.\tTu sembles distraite, aujourd'hui.\nYou seem distracted today.\tVous semblez distraite aujourd'hui.\nYou seem distracted today.\tVous semblez distraites aujourd'hui.\nYou seem distracted today.\tVous semblez distraits aujourd'hui.\nYou seem to be a kind man.\tVous semblez être un homme gentil.\nYou seem to be a kind man.\tTu sembles être un homme gentil.\nYou should eat more fruit.\tTu devrais manger davantage de fruits.\nYou should eat vegetables.\tTu devrais manger des légumes.\nYou should go talk to him.\tVous devriez aller lui parler.\nYou should go talk to him.\tVous devriez aller discuter avec lui.\nYou should go talk to him.\tVous devriez aller vous entretenir avec lui.\nYou should go talk to him.\tTu devrais aller lui parler.\nYou should go talk to him.\tTu devrais aller discuter avec lui.\nYou should go talk to him.\tTu devrais aller t'entretenir avec lui.\nYou should relax a little.\tTu devrais te détendre un peu.\nYou should relax a little.\tVous devriez vous détendre un peu.\nYou should see the doctor.\tTu devrais voir le médecin.\nYou should take my advice.\tTu devrais suivre mon conseil.\nYou should take my advice.\tVous devriez suivre mon conseil.\nYou should tell the truth.\tTu devrais dire la vérité.\nYou should've notified us.\tVous auriez dû nous en informer.\nYou shouldn't get married.\tVous ne devriez pas vous marier.\nYou shouldn't get married.\tTu ne devrais pas te marier.\nYou shouldn't see her now.\tTu ne devrais pas la voir maintenant.\nYou shouldn't see her now.\tVous ne devriez pas la voir maintenant.\nYou understand, don't you?\tTu comprends, n'est-ce pas ?\nYou used to love swimming.\tTu aimais nager.\nYou used to love swimming.\tTu adorais nager.\nYou were hot, weren't you?\tTu avais chaud, n'est-ce pas ?\nYou were hot, weren't you?\tVous aviez chaud, n'est-ce pas ?\nYou were hot, weren't you?\tTu étais très désirable, n'est-ce pas ?\nYou were hot, weren't you?\tVous étiez très désirable, n'est-ce pas ?\nYou were hot, weren't you?\tVous étiez très désirables, n'est-ce pas ?\nYou were right about this.\tTu avais raison à ce propos.\nYou were right about this.\tVous aviez raison à ce propos.\nYou will know soon enough.\tTu le sauras bien assez tôt.\nYou will know soon enough.\tVous le saurez bien assez tôt.\nYou will need a bodyguard.\tVous aurez besoin d'un garde du corps.\nYou will need a bodyguard.\tVous aurez besoin d'une garde du corps.\nYou will need a bodyguard.\tTu auras besoin d'un garde du corps.\nYou will need a bodyguard.\tIl te faudra un garde du corps.\nYou will need a bodyguard.\tIl te faudra une garde du corps.\nYou will need a bodyguard.\tTu auras besoin d'une garde du corps.\nYou will need a bodyguard.\tIl vous faudra une garde du corps.\nYou will need a bodyguard.\tIl vous faudra un garde du corps.\nYou will succeed some day.\tTu réussiras un jour.\nYou won't be disappointed.\tVous ne serez pas déçu.\nYou won't be disappointed.\tVous ne serez pas déçue.\nYou won't be disappointed.\tTu ne seras pas déçue.\nYou'd be perfect for that.\tVous seriez parfaite pour cela.\nYou'd be perfect for that.\tVous seriez parfaites pour cela.\nYou'd be perfect for that.\tVous seriez parfait pour cela.\nYou'd be perfect for that.\tVous seriez parfaits pour cela.\nYou'd be perfect for that.\tTu serais parfaite pour ça.\nYou'd be perfect for that.\tTu serais parfait pour ça.\nYou'd better get up early.\tTu ferais mieux de te lever tôt.\nYou'd better get up early.\tVous feriez mieux de vous lever tôt.\nYou'd better go in person.\tTu ferais mieux d'y aller en personne.\nYou'd better go in person.\tVous feriez mieux d'y aller en personne.\nYou'd better listen to me.\tTu ferais mieux de m'écouter.\nYou'd better listen to me.\tVous feriez mieux de m'écouter.\nYou'd better not go there.\tJe te déconseille d'y aller.\nYou'd better not go today.\tTu ferais mieux de ne pas partir aujourd'hui.\nYou'd better not go today.\tVous feriez mieux de ne pas partir aujourd'hui.\nYou'd better not go today.\tTu ferais mieux de ne pas y aller aujourd'hui.\nYou'd better not go today.\tVous feriez mieux de ne pas y aller aujourd'hui.\nYou'd better not tell Tom.\tTu ferais mieux de ne pas en parler à Tom.\nYou'd better see a doctor.\tTu ferais mieux de consulter un docteur.\nYou'd better see a doctor.\tTu devrais voir un médecin.\nYou'd better stay with me.\tTu ferais mieux de rester avec moi.\nYou'd better stay with me.\tVous feriez mieux de rester avec moi.\nYou'll ask Tom, won't you?\tTu demanderas à Tom, hein ?\nYou'll ask Tom, won't you?\tVous demanderez à Tom, n'est-ce pas ?\nYou'll call me, won't you?\tVous m'appellerez, n'est-ce pas ?\nYou'll call me, won't you?\tTu m'appelleras, n'est-ce pas ?\nYou'll get another chance.\tTu auras une autre chance.\nYou'll get another chance.\tVous aurez une autre chance.\nYou'll have to pay double.\tIl vous faudra payer le double.\nYou'll have to pay double.\tIl te faudra payer le double.\nYou'll need some of these.\tVous aurez besoin de certains de ceux-ci.\nYou'll need some of these.\tTu auras besoin de certains de ceux-ci.\nYou'll succeed if you try.\tTu réussiras si tu essayes.\nYou're German, aren't you?\tTu es allemand, n'est-ce pas ?\nYou're German, aren't you?\tVous êtes allemands n'est-ce pas ?\nYou're a wonderful friend.\tTu es un merveilleux ami.\nYou're a wonderful friend.\tTu es une merveilleuse amie.\nYou're a wonderful friend.\tVous êtes un merveilleux ami.\nYou're a wonderful friend.\tVous êtes une merveilleuse amie.\nYou're afraid, aren't you?\tTu as peur, pas vrai ?\nYou're afraid, aren't you?\tVous avez peur, pas vrai ?\nYou're always complaining.\tTu te plains toujours.\nYou're always complaining.\tVous vous plaignez toujours.\nYou're always saying that.\tVous dites toujours ça.\nYou're always saying that.\tTu dis toujours ça.\nYou're always saying that.\tVous dites toujours cela.\nYou're always saying that.\tTu dis toujours cela.\nYou're going to win today.\tTu vas gagner aujourd'hui.\nYou're going to win today.\tVous allez gagner aujourd'hui.\nYou're in the right place.\tTu es au bon endroit.\nYou're not a teenager yet.\tTu n'es pas encore adolescent.\nYou're not a teenager yet.\tVous n'êtes pas encore adolescente.\nYou're not a teenager yet.\tVous n'êtes pas encore adolescent.\nYou're not a teenager yet.\tTu n'es pas encore adolescente.\nYou're not as smart as me.\tT'es pas aussi malin que moi.\nYou're not as smart as me.\tTu n'es pas aussi malin que moi.\nYou're not as smart as me.\tVous n'êtes pas aussi malin que moi.\nYou're not as smart as me.\tT'es pas aussi maligne que moi.\nYou're not as smart as me.\tTu n'es pas aussi maligne que moi.\nYou're not as smart as me.\tVous n'êtes pas aussi malins que moi.\nYou're not as smart as me.\tVous n'êtes pas aussi malignes que moi.\nYou're not as smart as me.\tVous n'êtes pas aussi maligne que moi.\nYou're not being rational.\tTu n'es pas rationnel.\nYou're not being rational.\tTu n'es pas rationnelle.\nYou're not being rational.\tVous n'êtes pas rationnel.\nYou're not being rational.\tVous n'êtes pas rationnels.\nYou're not being rational.\tVous n'êtes pas rationnelle.\nYou're not being rational.\tVous n'êtes pas rationnelles.\nYou're not bored, are you?\tVous ne vous ennuyez pas, si ?\nYou're not entirely wrong.\tTu n'as pas totalement tort.\nYou're not going, are you?\tTu n'y vas pas, si ?\nYou're not going, are you?\tVous n'y allez pas, si ?\nYou're not tired, are you?\tVous n'êtes pas fatigué, si ?\nYou're not tired, are you?\tVous n'êtes pas fatiguée, si ?\nYou're not tired, are you?\tVous n'êtes pas fatiguées, si ?\nYou're not tired, are you?\tVous n'êtes pas fatigués, si ?\nYou're not tired, are you?\tTu n'es pas fatigué, si ?\nYou're not tired, are you?\tTu n'es pas fatiguée, si ?\nYou're not upset, are you?\tTu n'es pas contrarié, si ?\nYou're not upset, are you?\tTu n'es pas contrariée, si ?\nYou're not upset, are you?\tVous n'êtes pas contrarié, si ?\nYou're not upset, are you?\tVous n'êtes pas contrariée, si ?\nYou're not upset, are you?\tVous n'êtes pas contrariés, si ?\nYou're not upset, are you?\tVous n'êtes pas contrariées, si ?\nYou're not yourself today.\tVous n'êtes pas vous même, aujourd'hui.\nYou're not yourself today.\tTu n'es pas toi même, aujourd'hui.\nYou're on the right track.\tTu es sur la bonne pente.\nYou're on the right track.\tVous êtes sur la bonne piste.\nYou're telling lies again.\tTu racontes encore des mensonges.\nYou're too drunk to drive.\tTu es trop ivre pour conduire.\nYou're too stupid to live.\tTu es trop stupide pour vivre.\nYou're too stupid to live.\tVous êtes trop stupide pour vivre.\nYou're too young to marry.\tTu es trop jeune pour te marier.\nYou're very sophisticated.\tTu es très élégante.\nYou're very sophisticated.\tTu es fort élégante.\nYou're very sophisticated.\tTu es très élégant.\nYou're very sophisticated.\tTu es fort élégant.\nYou're very sophisticated.\tVous êtes très élégante.\nYou're very sophisticated.\tVous êtes très élégant.\nYou're very sophisticated.\tVous êtes très élégantes.\nYou're very sophisticated.\tVous êtes très élégants.\nYou're very sophisticated.\tVous êtes fort élégante.\nYou're very sophisticated.\tVous êtes fort élégant.\nYou're very sophisticated.\tVous êtes fort élégantes.\nYou're very sophisticated.\tVous êtes fort élégants.\nYou're very sophisticated.\tVous êtes fort raffiné.\nYou're very sophisticated.\tVous êtes fort raffinée.\nYou're very sophisticated.\tVous êtes fort raffinés.\nYou're very sophisticated.\tVous êtes fort raffinées.\nYou're very sophisticated.\tVous êtes très raffiné.\nYou're very sophisticated.\tVous êtes très raffinée.\nYou're very sophisticated.\tVous êtes très raffinés.\nYou're very sophisticated.\tVous êtes très raffinées.\nYou're very sophisticated.\tTu es très raffiné.\nYou're very sophisticated.\tTu es très raffinée.\nYou're very sophisticated.\tTu es fort raffiné.\nYou're very sophisticated.\tTu es fort raffinée.\nYou're very understanding.\tVous êtes fort compréhensif.\nYou're very understanding.\tVous êtes fort compréhensive.\nYou're very understanding.\tVous êtes fort compréhensifs.\nYou're very understanding.\tVous êtes fort compréhensives.\nYou're very understanding.\tVous êtes très compréhensif.\nYou're very understanding.\tVous êtes très compréhensive.\nYou're very understanding.\tVous êtes très compréhensifs.\nYou're very understanding.\tVous êtes très compréhensives.\nYou're very understanding.\tTu es très compréhensif.\nYou're very understanding.\tTu es très compréhensive.\nYou're very understanding.\tTu es fort compréhensif.\nYou're very understanding.\tTu es fort compréhensive.\nYou're wearing my pajamas.\tTu portes mon pyjama.\nYou're wrong in this case.\tTu as tort dans ce cas.\nYou're wrong in this case.\tVous avez tort dans ce cas.\nYou've done a lot of good.\tVous avez fait beaucoup de bien.\nYou've misspelled my name.\tVous avez écorché mon nom.\nYou've misspelled my name.\tTu as écorché mon nom.\nYou've underestimated Tom.\tTu as sous-estimé Tom.\nYou've underestimated Tom.\tVous avez sous-estimé Tom.\nYour English is improving.\tTon anglais fait des progrès.\nYour English is improving.\tVotre anglais s'améliore.\nYour boyfriend looks cute.\tTon petit ami a l'air mignon.\nYour boyfriend looks cute.\tVotre petit ami a l'air mignon.\nYour father is quite tall.\tVotre père est plutôt grand.\nYour house needs painting.\tTa maison aurait besoin d'être peinte.\nYour house needs painting.\tVotre maison a besoin d'un coup de peinture.\nYour letter made me happy.\tTa lettre m'a rendu heureux.\nYour letter made me happy.\tTa lettre m'a rendue heureuse.\nYour lives will be spared.\tVos vies seront épargnées.\nYour plan seems excellent.\tTon plan semble excellent.\nYour watch is on the desk.\tTa montre est sur le bureau.\nYour watch is on the desk.\tTa montre se trouve sur le bureau.\n3 to the third power is 27.\tLa troisième puissance de 3 est 27.\nA crow is as black as coal.\tLe corbeau est aussi noir que du charbon.\nA cry arose from the crowd.\tUn cri s'éleva de la foule.\nA few minutes is all I ask.\tJe demande juste quelques minutes.\nA heavy rain began to fall.\tUne averse commença à tomber.\nA major is above a captain.\tUn major est au-dessus d'un capitaine.\nA man appeared at the door.\tUn homme est apparu à la porte.\nA minute has sixty seconds.\tUne minute comprend soixante secondes.\nA mist hung over the river.\tLe brouillard flottait au-dessus de la rivière.\nA scream broke the silence.\tUn cri brisa le silence.\nA shiver ran down my spine.\tUn frisson parcourut ma colonne vertébrale.\nA student wants to see you.\tUn étudiant veut te voir.\nA wink was his only answer.\tUn clin d'œil fut sa seule réponse.\nAbove all, watch your diet.\tPar-dessus tout, fais attention à tes repas.\nAdd 5 and 2, and you get 7.\tCinq plus deux égalent sept.\nAdd a bit of sugar, please.\tAjoute un peu de sucre, s'il te plaît.\nAirplanes land at airports.\tLes avions se posent dans les aéroports.\nAirplanes land at airports.\tCe sont les avions qui se posent dans les aéroports.\nAll at once, I heard a cry.\tTout à coup, j'entendis un cri.\nAll is well that ends well.\tTout est bien qui finit bien.\nAll of our attempts failed.\tToutes nos tentatives ont échoué.\nAll of the dogs were alive.\tTous les chiens étaient en vie.\nAll of us got into the car.\tNous sommes tous montés dans la voiture.\nAll the seats are occupied.\tTous les fauteuils sont occupés.\nAll the stores were closed.\tTous les magasins étaient fermés.\nAll the stores were closed.\tToutes les boutiques étaient fermées.\nAll's fair in love and war.\tEn amour comme à la guerre, tous les coups sont permis.\nAlmost no one believed her.\tPresque personne ne la croyait.\nAlmost no one believed her.\tPratiquement personne ne la crut.\nAlmost no one believed her.\tPratiquement personne ne l'a crue.\nAlmost no one believed him.\tPresque personne ne le croyait.\nAlmost no one believed him.\tPresque personne ne le crut.\nAlmost no one believed him.\tPresque personne ne l'a cru.\nAm I interrupting anything?\tEst-ce que j'interromps quelque chose ?\nAm I interrupting anything?\tEst-ce que j'interromps quoi que ce soit ?\nAm I supposed to thank you?\tSuis-je supposé te remercier ?\nAm I supposed to thank you?\tSuis-je supposée te remercier ?\nAm I supposed to thank you?\tSuis-je supposé vous remercier ?\nAm I supposed to thank you?\tSuis-je supposée vous remercier ?\nAn apple fell off the tree.\tUne pomme tomba de l'arbre.\nAn apple sits on the table.\tIl y a une pomme sur la table.\nAn apple sits on the table.\tIl y a une pomme sur le bureau.\nAnimals are afraid of fire.\tLes animaux ont peur du feu.\nAnybody can make a mistake.\tTout le monde peut faire une erreur.\nAnybody can make a mistake.\tTout le monde peut faire des erreurs.\nAnybody can make a mistake.\tN'importe qui peut commettre une erreur.\nAnyway, I'll take a chance.\tQuoi qu'il arrive, je prendrai le risque.\nAre cats smarter than dogs?\tLes chats sont-ils plus intelligents que les chiens ?\nAre cats smarter than dogs?\tEst-ce que les chats sont plus intelligents que les chiens ?\nAre the children at school?\tLes enfants sont-ils à l'école?\nAre you a Japanese citizen?\tÊtes-vous citoyen japonais ?\nAre you a Japanese citizen?\tÊtes-vous citoyenne japonaise ?\nAre you a Japanese student?\tÊtes-vous un étudiant japonais ?\nAre you a cop or something?\tT'es flic ou quoi ?\nAre you a cop or something?\tVous êtes flic ou quoi ?\nAre you a registered voter?\tÊtes-vous un électeur inscrit ?\nAre you a registered voter?\tÊtes-vous une électrice inscrite ?\nAre you a registered voter?\tEs-tu un électeur inscrit ?\nAre you a registered voter?\tEs-tu une électrice inscrite ?\nAre you afraid of the dark?\tAvez-vous peur du noir ?\nAre you afraid of the dark?\tAs-tu peur du noir ?\nAre you afraid of the dark?\tAvez-vous peur de l'obscurité ?\nAre you afraid of the dark?\tAs-tu peur de l'obscurité ?\nAre you certain about this?\tEn es-tu certaine ?\nAre you certain about this?\tEn es-tu certain ?\nAre you certain about this?\tEn êtes-vous certain ?\nAre you certain about this?\tEn êtes-vous certaine ?\nAre you certain about this?\tEn êtes-vous certaines ?\nAre you certain about this?\tEn êtes-vous certains ?\nAre you children all right?\tVos enfants vont-ils bien ?\nAre you children all right?\tTes enfants vont-ils bien ?\nAre you children all right?\tVos enfants se portent-ils bien ?\nAre you children all right?\tTes enfants se portent-ils bien ?\nAre you coming to my party?\tViens-tu à ma fête ?\nAre you coming to my party?\tVenez-vous à ma fête ?\nAre you drinking green tea?\tEst-ce que c'est du thé vert que vous buvez ?\nAre you feeling better now?\tTe sens-tu mieux maintenant?\nAre you going much farther?\tVous rendez-vous beaucoup plus loin ?\nAre you going much farther?\tTe rends-tu beaucoup plus loin ?\nAre you going to come back?\tVas-tu revenir ?\nAre you going to come back?\tAllez-vous revenir ?\nAre you going to go or not?\tAllez-vous vous y rendre ou pas ?\nAre you going to sing here?\tVas-tu chanter ici ?\nAre you going to sing here?\tAllez-vous chanter ici ?\nAre you going to stay long?\tAllez-vous rester longtemps ?\nAre you having a good time?\tPasses-tu du bon temps ?\nAre you having a good time?\tPassez-vous du bon temps ?\nAre you implying something?\tEst-ce que tu sous-entends quelque chose ?\nAre you implying something?\tQu'est-ce que tu sous-entends ?\nAre you old enough to vote?\tAvez-vous l'âge de voter ?\nAre you over your cold yet?\tT'es-tu déjà remis de ton rhume ?\nAre you over your cold yet?\tT'es-tu déjà remise de ton rhume ?\nAre you over your cold yet?\tVous êtes-vous déjà remis de votre rhume ?\nAre you over your cold yet?\tVous êtes-vous déjà remise de votre rhume ?\nAre you ready for the trip?\tÊtes-vous prêt pour le voyage ?\nAre you ready for the trip?\tÊtes-vous prête pour le voyage ?\nAre you ready for the trip?\tÊtes-vous prêts pour le voyage ?\nAre you ready for the trip?\tÊtes-vous prêtes pour le voyage ?\nAre you ready for the trip?\tEs-tu prêt pour le voyage ?\nAre you ready for the trip?\tEs-tu prête pour le voyage ?\nAre you really that stupid?\tÊtes-vous vraiment si stupide ?\nAre you really that stupid?\tEs-tu vraiment si stupide ?\nAre you saying I smell bad?\tTu veux dire que je sens mauvais?\nAre you seeing anybody now?\tVois-tu qui que ce soit en ce moment ?\nAre you seeing anybody now?\tVoyez-vous qui que ce soit en ce moment ?\nAre you staying for dinner?\tRestez-vous pour dîner ?\nAre you staying for dinner?\tRestez-vous dîner ?\nAre you staying for dinner?\tRestes-tu pour dîner ?\nAre you staying for dinner?\tRestes-tu dîner ?\nAre you still playing golf?\tTu joues toujours au golf ?\nAre you still playing golf?\tVous jouez toujours au golf ?\nAre you studying chemistry?\tÉtudiez-vous la chimie ?\nAre you studying chemistry?\tÉtudies-tu la chimie ?\nAre you sure of your facts?\tÊtes-vous sûrs de vos faits ?\nAre you watching carefully?\tRegardes-tu attentivement ?\nAre you watching carefully?\tRegardez-vous attentivement ?\nAre your children with you?\tEst-ce que tes enfants sont avec toi?\nAs it is, I can do nothing.\tEn l'état, je ne peux rien faire.\nAsk him the way to station.\tDemande-lui le chemin pour la gare.\nAt last, I passed the test.\tFinalement j'ai réussi l'examen.\nAt what time does it close?\tÀ quelle heure ça ferme ?\nBad teeth often cause pain.\tLes dents cariées font souvent mal.\nBad weather is no obstacle.\tLe mauvais temps n'est jamais un obstacle.\nBanks open at nine o'clock.\tLes banques ouvrent à neuf heures.\nBasketball is a lot of fun.\tLe basket-ball est très distrayant.\nBatteries are not included.\tLes piles ne sont pas incluses.\nBe as specific as possible.\tSoyez aussi précis que possible.\nBe as specific as possible.\tSois aussi spécifique que possible.\nBe careful with my luggage.\tFais attention avec mes bagages.\nBe careful with my luggage.\tFaites attention avec mes bagages.\nBe sure to bring rain gear.\tAssure-toi de prendre une tenue pour la pluie !\nBeautiful woman, isn't she?\tBelle femme, n'est-ce pas ?\nBeef is expensive nowadays.\tDe nos jours, la viande est chère.\nBees provide us with honey.\tLes abeilles nous fournissent en miel.\nBest wishes from all of us.\tMeilleurs vœux de notre part à tous.\nBeware of pickpockets here.\tAttention aux voleurs ici.\nBeware of pickpockets here.\tAttention aux pickpockets dans ce lieu.\nBlotting paper absorbs ink.\tLe papier buvard absorbe l'encre.\nBoth of them are very cute.\tIls sont tous deux très mignons.\nBoth spellings are correct.\tLes deux façons d'écrire sont correctes.\nBoth spellings are correct.\tLes deux orthographes sont correctes.\nBoxers need quick reflexes.\tLes boxeurs ont besoin de réflexes rapides.\nBoys are strange sometimes.\tLes garçons sont parfois étranges.\nBoys, don't make any noise.\tLes garçons, ne faites pas de bruit.\nBring the frozen fish here.\tApportez ici le poisson surgelé.\nBrush your teeth every day.\tBrosse-toi les dents chaque jour.\nBusy hands are happy hands.\tLes mains occupées sont des mains heureuses.\nBy the way, what do you do?\tAu fait, quel est votre métier ?\nCall us when you get there.\tAppelle-nous lorsque tu y arriveras !\nCall us when you get there.\tAppelez-nous lorsque vous y arriverez !\nCan I borrow this umbrella?\tPuis-je emprunter ce parapluie ?\nCan I borrow your computer?\tPuis-je emprunter ton ordinateur ?\nCan I borrow your computer?\tPuis-je emprunter votre ordinateur ?\nCan I borrow your scissors?\tPuis-je emprunter vos ciseaux ?\nCan I buy you another beer?\tPuis-je t'offrir une autre bière ?\nCan I buy you another beer?\tPuis-je vous offrir une autre bière ?\nCan I come some other time?\tPuis-je venir à un autre moment ?\nCan I get something to eat?\tPuis-je avoir quelque chose à manger ?\nCan I have a bit more milk?\tPuis-je avoir un peu plus de lait ?\nCan I have a word with you?\tPuis-je te toucher un mot ?\nCan I have my bicycle back?\tPuis-je récupérer mon vélo ?\nCan I make one observation?\tPuis-je faire une remarque ?\nCan I see you in my office?\tPuis-je te voir dans mon bureau ?\nCan I see you in my office?\tPuis-je vous voir dans mon bureau ?\nCan I watch your next game?\tPuis-je regarder ton prochain jeu ?\nCan someone give me a lift?\tQuelqu'un peut-il m'amener en voiture ?\nCan this car go any faster?\tCette voiture peut-elle aller plus vite ?\nCan this wait till morning?\tCela peut-il attendre jusqu'au matin ?\nCan we have a minute alone?\tPourrions-nous disposer d'une minute, seuls ?\nCan we have a moment alone?\tPouvons-nous disposer d'un moment seuls ?\nCan we have a moment alone?\tPouvons-nous disposer d'un moment seules ?\nCan you answer this riddle?\tSais-tu résoudre cette énigme ?\nCan you answer this riddle?\tSais-tu répondre à cette devinette ?\nCan you call a taxi for me?\tPouvez-vous m'appeler un taxi ?\nCan you clean your bedroom?\tPeux-tu ranger ta chambre ?\nCan you climb up that tree?\tPeux-tu grimper sur cet arbre?\nCan you climb up that tree?\tPouvez-vous grimper à cet arbre ?\nCan you come over and talk?\tPeux-tu venir discuter ?\nCan you come over and talk?\tPouvez-vous venir discuter ?\nCan you drive a five speed?\tSais-tu conduire avec une transmission manuelle ?\nCan you drive a five speed?\tSavez-vous conduire avec une transmission manuelle ?\nCan you excuse me a second?\tPeux-tu m'excuser une seconde ?\nCan you excuse me a second?\tPouvez-vous m'excuser une seconde ?\nCan you give him first aid?\tPeux-tu lui donner les premiers soins ?\nCan you give him first aid?\tPouvez-vous lui donner les premiers soins ?\nCan you give me a discount?\tPouvez-vous m'accorder une remise ?\nCan you give me a discount?\tPouvez-vous m'accorder un rabais ?\nCan you give me an example?\tPeux-tu me fournir un exemple ?\nCan you lend me some money?\tPouvez-vous me prêter un peu d'argent ?\nCan you play an instrument?\tSais-tu jouer d'un instrument ?\nCan you play an instrument?\tSavez-vous jouer d'un instrument ?\nCan you push the door open?\tPourrais-tu pousser la porte pour l'ouvrir ?\nCan you repair these shoes?\tPouvez-vous me réparer ces chaussures ?\nCan you see the difference?\tPeux-tu voir la différence ?\nCan you slow down a little?\tPeux-tu ralentir un peu ?\nCan you slow down a little?\tPouvez-vous ralentir un peu ?\nCan you solve this problem?\tPouvez-vous résoudre ce problème ?\nCan you solve this problem?\tPeux-tu résoudre ce problème ?\nCan you speak Chinese well?\tParlez-vous bien chinois ?\nCan you weigh this, please?\tPouvez-vous peser cela, s'il vous plait ?\nCan't you just accept that?\tNe peux-tu simplement l'accepter ?\nCan't you just accept that?\tNe pouvez-vous simplement l'accepter ?\nCasualties were inevitable.\tLes victimes furent inévitables.\nCasualties were inevitable.\tLes victimes ont été inévitables.\nCats are nocturnal animals.\tLes chats sont des animaux nocturnes.\nCats don't like to get wet.\tLes chats n'aiment pas se mouiller.\nCheck your answer with his.\tVérifiez votre réponse avec la sienne.\nChildren grow very quickly.\tLes enfants grandissent très vite.\nChristmas is December 25th.\tNoël est le 25 décembre.\nClasses begin at 8 o'clock.\tLes cours commencent à 8 heures.\nClasses will resume Monday.\tLes cours reprendront lundi.\nCome on, don't be a coward!\tViens, ne sois pas un lâche !\nCome on, shake hands, boys!\tAllez, serrez-vous la main les garçons !\nCome over here and join us.\tViens ici et joins-toi à nous.\nCome over here and join us.\tVenez ici et joignez-vous à nous.\nCome see me again tomorrow.\tRevenez demain.\nCorporations aren't people.\tLes sociétés ne sont pas des gens.\nCould I have a screwdriver?\tPuis-je avoir un tournevis ?\nCould I have some more tea?\tPuis-je avoir encore un peu de thé ?\nCould I make a reservation?\tPourrais-je faire une réservation ?\nCould you be more specific?\tPourrais-tu être plus précis ?\nCould you be more specific?\tPourriez-vous être plus précis ?\nCould you give us a moment?\tPourriez-vous nous consacrer un moment ?\nCould you lend me the book?\tTu pourrais me prêter le livre ?\nCould you lend me the book?\tPourrais-tu me prêter le livre ?\nCould you read this for me?\tEst-ce que tu peux me lire ça ?\nCould you read this for me?\tPourriez-vous me lire cela ?\nCould you read this for me?\tPourrais-tu me lire ça ?\nCould you send it by email?\tPouvez-vous l'envoyer par courrier électronique ?\nCould you show me this bag?\tPouvez-vous me montrer ce sac ?\nCould you stay and help me?\tPourrais-tu rester et m'aider ?\nCould you stay and help me?\tPourriez-vous rester et m'aider ?\nCould you stop saying that?\tPourriez-vous arrêter de dire cela?\nCould you take our picture?\tPourrais-tu nous prendre en photo ?\nCould you take our picture?\tPourriez-vous nous prendre en photo ?\nDad stretched after dinner.\tPapa s'est étendu après le déjeuner.\nDid I give you enough time?\tT'ai-je laissé assez de temps ?\nDid I give you enough time?\tVous ai-je laissé assez de temps ?\nDid I give you enough time?\tT'ai-je laissée assez de temps ?\nDid I give you enough time?\tVous ai-je laissés assez de temps ?\nDid I give you enough time?\tVous ai-je laissées assez de temps ?\nDid I give you enough time?\tVous ai-je laissée assez de temps ?\nDid I give you enough time?\tVous ai-je allouées assez de temps ?\nDid I give you enough time?\tVous ai-je alloués assez de temps ?\nDid I give you enough time?\tVous ai-je allouée assez de temps ?\nDid I give you enough time?\tVous ai-je alloué assez de temps ?\nDid I give you enough time?\tT'ai-je allouée assez de temps ?\nDid I give you enough time?\tT'ai-je alloué assez de temps ?\nDid I give you enough time?\tT'ai-je allouée suffisamment de temps ?\nDid I give you enough time?\tT'ai-je alloué suffisamment de temps ?\nDid I give you the tickets?\tT'ai-je donné les places ?\nDid I give you the tickets?\tVous ai-je donné les places ?\nDid I say something stupid?\tAi-je dit quelque chose de stupide ?\nDid he tell you what to do?\tT'a-t-il dit quoi faire ?\nDid he tell you what to do?\tVous a-t-il dit quoi faire ?\nDid someone follow us here?\tQuelqu'un nous a-t-il suivis ici ?\nDid someone follow us here?\tQuelqu'un nous a-t-il suivies ici ?\nDid they say what happened?\tOnt-ils dit ce qui s'est passé ?\nDid they say what happened?\tOnt-elles dit ce qui s'est passé ?\nDid they say what happened?\tOnt-ils dit ce qui s'est produit ?\nDid they say what happened?\tOnt-elles dit ce qui s'est produit ?\nDid you bring a hair dryer?\tAs-tu apporté un sèche-cheveux ?\nDid you buy a nice bicycle?\tAs-tu acheté un chouette vélo ?\nDid you call me last night?\tTu m'as appelé hier soir ?\nDid you call me last night?\tM'as-tu appelée hier soir ?\nDid you catch what he said?\tAs-tu capté ce qu'il a dit ?\nDid you catch what he said?\tAs-tu saisi ce qu'il a dit ?\nDid you catch what he said?\tAvez-vous capté ce qu'il a dit ?\nDid you catch what he said?\tAvez-vous saisi ce qu'il a dit ?\nDid you enjoy your holiday?\tVous êtes-vous bien amusés pendant vos vacances ?\nDid you forget to buy eggs?\tAs-tu oublié d'acheter des œufs ?\nDid you forget to buy eggs?\tAvez-vous oublié d'acheter des œufs ?\nDid you go to school today?\tEs-tu allé à l'école aujourd'hui ?\nDid you go to see a doctor?\tÊtes-vous allé voir un médecin ?\nDid you go to see a doctor?\tEs-tu allé voir un toubib ?\nDid you have a good summer?\tAvez-vous passé un bel été ?\nDid you have a good summer?\tAs-tu passé un bel été ?\nDid you have a nice summer?\tAvez-vous passé un bon été ?\nDid you hear what Tom said?\tAs-tu entendu ce que Tom a dit ?\nDid you open all the boxes?\tAs-tu ouvert toutes les caisses ?\nDid you open all the boxes?\tAvez-vous ouvert toutes les caisses ?\nDid you pay for everything?\tAs-tu payé pour tout?\nDid you pay for everything?\tAvez-vous payé pour tout?\nDid you receive the letter?\tAvez-vous reçu la lettre ?\nDid you see Tom that night?\tAs-tu vu Tom cette nuit ?\nDid you see Tom that night?\tAvez-vous vu Tom cette nuit-là ?\nDid you see the transcript?\tAvez-vous vu la transcription ?\nDid you see the transcript?\tAs-tu vu la transcription ?\nDid you see the transcript?\tAs-tu vu le relevé de notes ?\nDid you see the transcript?\tAvez-vous vu le relevé de notes ?\nDid you turn the stove off?\tAs-tu éteint le four ?\nDid you turn the stove off?\tAvez-vous éteint le four ?\nDid you want anything else?\tVous fallait-il quelque chose d'autre ?\nDid you watch TV yesterday?\tAs-tu regardé la télévision hier ?\nDid your mother make those?\tEst-ce ta mère qui les a fait ?\nDid your mother make those?\tEst-ce ta mère qui a fait ceux-là ?\nDid your mother make those?\tEst-ce ta mère qui a fait celles-là ?\nDidn't anyone question you?\tPersonne ne t'a-t-il interrogé ?\nDidn't anyone question you?\tPersonne ne vous a-t-il interrogé ?\nDidn't anyone question you?\tPersonne ne t'a-t-il questionné ?\nDidn't anyone question you?\tPersonne ne vous a-t-il questionné ?\nDidn't you feel like going?\tN'avais-tu pas envie d'y aller ?\nDidn't you feel like going?\tN'avais-tu pas envie de t'y rendre ?\nDidn't you feel like going?\tN'aviez-vous pas envie d'y aller ?\nDidn't you feel like going?\tN'aviez-vous pas envie de vous y rendre ?\nDidn't you hear me calling?\tNe m'avez-vous pas entendu appeler ?\nDidn't you hear me calling?\tNe m'as-tu pas entendu appeler ?\nDidn't you read the manual?\tN'avez-vous pas lu le manuel ?\nDidn't you read the manual?\tN'as-tu pas lu le manuel ?\nDo I have to come home now?\tDois-je venir à la maison maintenant ?\nDo I have to make a speech?\tDois-je faire un discours ?\nDo I need to go right away?\tDois-je y aller derechef ?\nDo I need to go right away?\tDois-je partir de suite ?\nDo all of you speak French?\tEst-ce que vous parlez tous français ?\nDo all of you speak French?\tParlez-vous tous français ?\nDo we have to be so formal?\tFaut-il que nous soyons si formels ?\nDo we have to take the bus?\tDevons-nous prendre le bus ?\nDo we have to take the bus?\tDevons-nous prendre le bus ?\nDo we need them that badly?\tEn avons-nous tant besoin ?\nDo we need to wait for her?\tAvons-nous besoin de l'attendre ?\nDo you accept credit cards?\tVous acceptez les cartes de crédit ?\nDo you accept credit cards?\tAcceptez-vous les cartes de crédits ?\nDo you accept credit cards?\tVous acceptez des cartes de crédit ?\nDo you believe in miracles?\tCrois-tu aux miracles ?\nDo you believe in miracles?\tCroyez-vous aux miracles ?\nDo you belong to any clubs?\tAppartenez-vous à des clubs ?\nDo you charge for delivery?\tFaites-vous payer la livraison ?\nDo you charge for delivery?\tFais-tu payer la livraison ?\nDo you come here every day?\tViens-tu ici tous les jours ?\nDo you go to school by bus?\tTe rends-tu à l'école en bus ?\nDo you go to school by bus?\tVous rendez-vous à l'école en bus ?\nDo you have a cheaper room?\tAvez-vous une chambre moins chère ?\nDo you have a fishing boat?\tAvez-vous un bateau de pêche ?\nDo you have a mobile phone?\tDisposes-tu d'un téléphone portable ?\nDo you have a mobile phone?\tDisposez-vous d'un téléphone portable ?\nDo you have a smaller size?\tAvez-vous une plus petite taille ?\nDo you have a twin brother?\tAvez-vous un frère jumeau ?\nDo you have a twin brother?\tAs-tu un frère jumeau ?\nDo you have an appointment?\tAvez-vous un rendez-vous ?\nDo you have an appointment?\tTu as rendez-vous ?\nDo you have an appointment?\tAs-tu un rendez-vous ?\nDo you have any complaints?\tVeux-tu te plaindre de quoi que ce soit ?\nDo you have any light beer?\tAvez-vous quelque bière légère ?\nDo you have fire insurance?\tAvez-vous une assurance contre l'incendie ?\nDo you have much snow here?\tAvez-vous beaucoup de neige ici ?\nDo you have psychic powers?\tAs-tu des pouvoirs psychiques ?\nDo you have psychic powers?\tEs-tu doté de pouvoirs psychiques ?\nDo you have psychic powers?\tEs-tu dotée de pouvoirs psychiques ?\nDo you have psychic powers?\tÊtes-vous doté de pouvoirs psychiques ?\nDo you have psychic powers?\tÊtes-vous dotée de pouvoirs psychiques ?\nDo you have psychic powers?\tÊtes-vous dotés de pouvoirs psychiques ?\nDo you have psychic powers?\tÊtes-vous dotées de pouvoirs psychiques ?\nDo you know a good dentist?\tConnais-tu un bon dentiste ?\nDo you know his birthplace?\tSavez-vous où il est né ?\nDo you know how that feels?\tSavez-vous ce qu'on ressent ?\nDo you know how that feels?\tSais-tu ce qu'on ressent ?\nDo you know how to do this?\tSavez-vous comment faire ceci ?\nDo you know how to do this?\tSais-tu comment faire ceci ?\nDo you know how to program?\tSavez-vous programmer ?\nDo you know how to program?\tSais-tu programmer ?\nDo you know how to whistle?\tSavez-vous siffler ?\nDo you know the difference?\tConnaissez-vous la différence ?\nDo you know the difference?\tConnais-tu la différence ?\nDo you know what day it is?\tSais-tu quel jour nous sommes ?\nDo you know what they want?\tSais-tu ce qu'ils veulent ?\nDo you know what they want?\tSais-tu ce qu'elles veulent ?\nDo you know what they want?\tSavez-vous ce qu'ils veulent ?\nDo you know what they want?\tSavez-vous ce qu'elles veulent ?\nDo you know where he lives?\tSais-tu où il vit ?\nDo you know who killed Tom?\tSais-tu qui a tué Tom ?\nDo you know who killed Tom?\tSavez-vous qui a tué Tom ?\nDo you like Mozart's music?\tAimez-vous la musique de Mozart ?\nDo you like my new clothes?\tEst-ce que tu aimes mes nouveaux vêtements ?\nDo you like my new clothes?\tAimez-vous mes nouveaux vêtements ?\nDo you like my new haircut?\tAimes-tu ma nouvelle coupe de cheveux ?\nDo you like my new haircut?\tAimes-tu ma nouvelle coupe ?\nDo you like my new haircut?\tAimez-vous ma nouvelle coupe de cheveux ?\nDo you like my new haircut?\tAimez-vous ma nouvelle coupe ?\nDo you like playing sports?\tAimes-tu faire du sport ?\nDo you like playing sports?\tAimez-vous faire du sport ?\nDo you like your coworkers?\tAimes-tu tes collègues ?\nDo you mind if I park here?\tVoyez-vous un inconvénient à ce que je me gare ici ?\nDo you mind if I park here?\tVois-tu un inconvénient à ce que je me gare ici ?\nDo you mind if I stay here?\tVois-tu un inconvénient à ce que je reste ici ?\nDo you mind if I stay here?\tVoyez-vous un inconvénient à ce que je reste ici ?\nDo you mind if I tag along?\tVois-tu un inconvénient à ce que je te suive ?\nDo you mind if I tag along?\tVoyez-vous un inconvénient à ce que je vous suive ?\nDo you mind if we join you?\tVois-tu un inconvénient à ce que nous nous joignions à vous ?\nDo you mind if we join you?\tVois-tu un inconvénient à ce que nous nous joignions à toi ?\nDo you mind if we join you?\tVoyez-vous un inconvénient à ce que nous nous joignions à vous ?\nDo you mind if we sit down?\tVois-tu un inconvénient à ce que nous nous asseyions ?\nDo you mind if we sit down?\tVoyez-vous un inconvénient à ce que nous nous asseyions ?\nDo you offer any day trips?\tProposez-vous des excursions d'une journée ?\nDo you often hear from him?\tAs-tu souvent de ses nouvelles ?\nDo you plan to go overseas?\tPrévoyez-vous de vous rendre à l'étranger ?\nDo you plan to go overseas?\tPrévois-tu de te rendre à l'étranger ?\nDo you plan to go overseas?\tPrévois-tu de te rendre outre-mer ?\nDo you plan to go overseas?\tPrévoyez-vous de vous rendre outre-mer ?\nDo you pluck your eyebrows?\tT'épiles-tu les sourcils ?\nDo you pluck your eyebrows?\tVous épilez-vous les sourcils ?\nDo you prefer meat or fish?\tPréférez-vous la viande ou le poisson ?\nDo you really want to help?\tVeux-tu vraiment aider ?\nDo you really want to help?\tVoulez-vous vraiment aider ?\nDo you really want to know?\tVeux-tu vraiment savoir ?\nDo you really want to know?\tTiens-tu à le savoir ?\nDo you really want to know?\tVeux-tu vraiment le savoir ?\nDo you really want to know?\tVoulez-vous vraiment le savoir ?\nDo you really want to know?\tVoulez-vous vraiment savoir ?\nDo you really want to know?\tTenez-vous à le savoir ?\nDo you recognize that girl?\tReconnais-tu cette fille ?\nDo you recognize that girl?\tReconnaissez-vous cette fille ?\nDo you remember how we met?\tTe rappelles-tu comment nous nous sommes rencontrés ?\nDo you remember how we met?\tTe rappelles-tu comment nous nous sommes rencontrées ?\nDo you remember how we met?\tVous rappelez-vous comment nous nous sommes rencontrés ?\nDo you remember how we met?\tVous rappelez-vous comment nous nous sommes rencontrées ?\nDo you remember what to do?\tTe rappelles-tu quoi faire ?\nDo you remember what to do?\tVous rappelez-vous quoi faire ?\nDo you talk to your plants?\tParles-tu à tes plantes ?\nDo you think I want to die?\tPensez-vous que je veuille mourir ?\nDo you think I want to die?\tPenses-tu que je veuille mourir ?\nDo you think he's sensible?\tCrois-tu qu'il est sensé ?\nDo you think it's my fault?\tPensez-vous que ce soit de ma faute ?\nDo you think it's my fault?\tPenses-tu que ce soit de ma faute ?\nDo you think it's possible?\tTu penses que c'est possible ?\nDo you think it's possible?\tPensez-vous que cela soit possible ?\nDo you want a drink or not?\tVoulez-vous un verre ou pas ?\nDo you want a drink or not?\tVeux-tu un verre ou pas ?\nDo you want help with that?\tVeux-tu de l'aide pour ça ?\nDo you want help with that?\tVoulez-vous de l'aide pour ça ?\nDo you want me to be happy?\tVeux-tu que je sois heureux ?\nDo you want me to be happy?\tVeux-tu que je sois heureuse ?\nDo you want me to be happy?\tVoulez-vous que je sois heureux ?\nDo you want me to be happy?\tVoulez-vous que je sois heureuse ?\nDo you want me to help you?\tVeux-tu que je t'aide ?\nDo you want me to help you?\tVoulez-vous que je vous aide ?\nDo you want some breakfast?\tVoulez-vous un petit-déjeuner ?\nDo you want some breakfast?\tVeux-tu un petit-déjeuner ?\nDo you want that warmed up?\tVoulez-vous que je réchauffe cela ?\nDo you want that warmed up?\tVeux-tu que je réchauffe cela ?\nDo you want to be left out?\tVeux-tu qu'on te laisse en dehors de ça ?\nDo you want to be left out?\tVoulez-vous qu'on vous laisse en dehors de ça ?\nDo you want to bet on that?\tVoulez-vous parier là-dessus ?\nDo you want to bet on that?\tVeux-tu parier là-dessus ?\nDo you want to do it again?\tVeux-tu le faire encore ?\nDo you want to do it again?\tVoulez-vous le faire encore ?\nDo you want to do this now?\tVoulez-vous le faire maintenant ?\nDo you want to do this now?\tVeux-tu le faire maintenant ?\nDo you want to do this now?\tVeux-tu, toi, le faire maintenant ?\nDo you want to do this now?\tVoulez-vous, vous, le faire maintenant ?\nDo you want to grab dinner?\tVeux-tu prendre à déjeuner ?\nDo you want to make a deal?\tVoulez-vous passer un accord ?\nDo you want to make a deal?\tVeux-tu passer un accord ?\nDo you want to make a deal?\tVoulez-vous passer un marché ?\nDo you want to make a deal?\tVeux-tu passer un marché ?\nDo you want to say goodbye?\tVeux-tu dire au revoir ?\nDo you want to say goodbye?\tVoulez-vous dire au revoir ?\nDo you want to see my room?\tVoulez-vous voir ma chambre ?\nDo you want us to call you?\tVeux-tu que nous t'appelions ?\nDo you want us to call you?\tVoulez-vous que nous vous appelions ?\nDo you want your coat back?\tVoulez-vous qu'on vous rende votre manteau ?\nDo you want your coat back?\tVeux-tu qu'on te rende ton manteau ?\nDo you weigh more than Tom?\tEst-ce que vous pesez plus que Tom ?\nDo you weigh more than Tom?\tEst-ce que tu pèses plus que Tom ?\nDo you weigh more than Tom?\tPesez-vous plus que Tom ?\nDo you weigh more than Tom?\tPèses-tu plus que Tom ?\nDo you write short stories?\tÉcris-tu des nouvelles ?\nDo you write short stories?\tÉcrivez-vous des nouvelles ?\nDo your best in everything.\tDonne en tout le meilleur de toi.\nDo your best in everything.\tDonnez en tout le meilleur de vous.\nDo your homework right now.\tFais tes devoirs immédiatement.\nDoctors removed the bullet.\tLes médecins ont extrait la balle.\nDoes Tom know Mary is here?\tTom sait-il que Mary est ici ?\nDoes anybody need anything?\tQuiconque a-t-il besoin de quoi que ce soit ?\nDoes anyone else hear that?\tEst-ce que quelqu'un d'autre entend ça ?\nDoes anyone else hear that?\tQuelqu'un d'autre entend-il cela ?\nDoes anyone speak Japanese?\tQuiconque parle-t-il le japonais ?\nDoes he want to look at it?\tVeut-il y jeter un œil ?\nDoes he want to look at it?\tVeut-il le regarder ?\nDoes it hurt when you chew?\tCela fait-il mal lorsque vous mâchez ?\nDoes it hurt when you chew?\tCela fait-il mal lorsque tu mâches ?\nDoes that mean you'll stay?\tCela signifie-t-il que vous resterez ?\nDoes that mean you'll stay?\tCela signifie-t-il que tu resteras ?\nDoes that seem fair to you?\tCela te semble-t-il juste ?\nDoes that seem fair to you?\tCela vous semble-t-il juste ?\nDoes this make me look fat?\tCeci me fait-il paraître gros ?\nDoes this make me look fat?\tCeci me fait-il paraître grosse ?\nDoes this make me look fat?\tCeci me donne-t-il l'air gros ?\nDoes this make me look fat?\tCeci me donne-t-il l'air grosse ?\nDoesn't it ever bother you?\tCela ne vous tracasse-t-il jamais ?\nDoesn't it ever bother you?\tCela ne te tracasse-t-il jamais ?\nDoing that would be stupid.\tFaire cela serait stupide.\nDon't I get a goodbye kiss?\tN'ai-je pas droit à un baiser d'Adieu ?\nDon't act like you know me.\tNe faites pas comme si vous me connaissiez !\nDon't act like you know me.\tNe fais pas comme si tu me connaissais !\nDon't ask me to explain it.\tNe me demandez pas de l'expliquer !\nDon't ask me to explain it.\tNe me demande pas de l'expliquer !\nDon't buy things on credit.\tN'achète pas de choses à crédit.\nDon't buy things on credit.\tN'achetez pas de choses à crédit.\nDon't cut down those trees.\tN'abattez pas ces arbres !\nDon't drink too much, okay?\tBois pas trop, ok ?\nDon't drink too much, okay?\tNe bois pas trop, d'accord ?\nDon't drink too much, okay?\tNe buvez pas trop, d'accord ?\nDon't even joke about that.\tNe plaisantez même pas à ce sujet !\nDon't even joke about that.\tNe plaisante même pas à ce sujet !\nDon't ever lie to me again.\tNe me mens plus jamais.\nDon't ever lie to me again.\tNe me mens jamais plus.\nDon't ever lie to me again.\tNe me mentez jamais plus.\nDon't ever think otherwise.\tNe pensez jamais autrement !\nDon't ever think otherwise.\tNe pense jamais autrement !\nDon't get on the train yet.\tNe grimpe pas encore dans le train !\nDon't get on the train yet.\tNe grimpez pas encore dans le train !\nDon't judge me too harshly.\tNe me jugez pas trop sévèrement !\nDon't judge me too harshly.\tNe me juge pas trop sévèrement !\nDon't judge me too harshly.\tNe me jugez pas trop durement !\nDon't judge me too harshly.\tNe me juge pas trop durement !\nDon't let Tom frighten you.\tNe laisse pas Tom t'intimider.\nDon't let me influence you.\tNe me laissez pas vous influencer !\nDon't let me influence you.\tNe me laisse pas t'influencer !\nDon't let them go to waste.\tNe les laissez pas être gaspillés !\nDon't let them go to waste.\tNe les laissez pas être gaspillées !\nDon't let them go to waste.\tNe les laisse pas être gaspillés !\nDon't let them go to waste.\tNe les laisse pas être gaspillées !\nDon't lose sleep over that.\tN'en perds pas le sommeil.\nDon't lose sleep over that.\tN'en perdez pas le sommeil.\nDon't make an enemy of him.\tNe t'en fais pas un ennemi.\nDon't make any loud noises.\tNe faites pas le moindre bruit.\nDon't make any loud noises.\tNe fais pas le moindre bruit.\nDon't make fun of children.\tNe te moque pas des enfants.\nDon't make me say it again.\tNe me le faites pas répéter !\nDon't make me say it again.\tNe me le fais pas répéter !\nDon't make me use this gun.\tNe m'oblige pas à utiliser ce pistolet.\nDon't move till I get back.\tNe bouge pas jusqu'à ce que je revienne.\nDon't move till I get back.\tNe bougez pas jusqu'à ce que je revienne.\nDon't open the present yet.\tN'ouvrez pas encore le cadeau !\nDon't open the present yet.\tN'ouvre pas encore le cadeau !\nDon't pay attention to her.\tNe lui prêtez pas attention.\nDon't pay attention to her.\tNe lui prête pas attention.\nDon't point your gun at me.\tNe pointe pas ton arme dans ma direction.\nDon't say a word to anyone.\tNe dis mot à personne.\nDon't say a word to anyone.\tNe dites mot à personne.\nDon't say a word to anyone.\tNe dis pas un mot à qui que ce soit.\nDon't say a word to anyone.\tNe dites pas un mot à qui que ce soit.\nDon't send me home, please.\tNe me renvoyez pas chez moi, je vous en prie !\nDon't send me home, please.\tNe me renvoie pas chez moi, je t'en prie !\nDon't sit down on the sofa.\tNe pas s'asseoir sur le sofa.\nDon't sleep in the bathtub.\tNe dors pas dans la baignoire.\nDon't spend too much money.\tNe dépense pas trop d'argent.\nDon't take it so literally.\tNe le prenez pas aussi littéralement !\nDon't take it so literally.\tNe le prends pas aussi littéralement !\nDon't take our word for it.\tNe nous croyez pas sur parole.\nDon't take our word for it.\tNe nous crois pas sur parole.\nDon't take this personally.\tNe le prends pas personnellement !\nDon't take this personally.\tNe le prenez pas personnellement !\nDon't talk about my family.\tNe parle pas de ma famille !\nDon't talk about my family.\tNe parlez pas de ma famille !\nDon't talk about my family.\tNe discute pas au sujet de ma famille !\nDon't talk about my family.\tNe discutez pas au sujet de ma famille !\nDon't talk about my family.\tN'évoquez pas ma famille !\nDon't talk about my family.\tN'évoque pas ma famille !\nDon't talk to him about it.\tNe lui en parle pas.\nDon't talk to me like that.\tNe me parle pas comme ça.\nDon't talk to me like that.\tNe me parlez pas comme ça.\nDon't talk to me like that.\tNe me parle pas ainsi !\nDon't talk to me like that.\tNe me parlez pas ainsi !\nDon't talk to me like this.\tNe me parle pas ainsi !\nDon't talk to me like this.\tNe me parlez pas ainsi !\nDon't tell me to calm down.\tNe me dites pas de me calmer !\nDon't tell me to calm down.\tNe me dis pas de me calmer !\nDon't tell me you stole it.\tNe me dis pas que tu l'as volé !\nDon't tell me you stole it.\tNe me dis pas que tu l'as volée !\nDon't tell me you stole it.\tNe me dites pas que vous l'avez volé !\nDon't tell me you stole it.\tNe me dites pas que vous l'avez volée !\nDon't trample on the grass.\tNe marche pas sur l'herbe.\nDon't try to make me angry.\tN'essaie pas de m'énerver.\nDon't try to make me angry.\tN'essayez pas de m'énerver.\nDon't try to make me angry.\tN'essaie pas de me mettre en colère.\nDon't try to make me angry.\tN'essayez pas de me mettre en colère.\nDon't walk out on me again.\tNe me lâche pas à nouveau !\nDon't walk out on me again.\tNe me lâchez pas à nouveau !\nDon't worry about that now.\tNe vous en souciez pas pour le moment !\nDon't worry about that now.\tNe t'en soucie pas pour le moment !\nDon't worry about that now.\tNe t’inquiète pas à propos de ça maintenant.\nDon't worry about the cost.\tNe vous souciez pas du coût !\nDon't worry about the cost.\tNe te soucie pas du coût !\nDon't worry about the past.\tNe te soucie pas du passé.\nDon't worry about the past.\tNe vous souciez pas du passé.\nDon't you know who that is?\tNe sais-tu pas qui c'est ?\nDon't you know who that is?\tNe savez-vous pas qui c'est ?\nDon't you miss your father?\tTon père ne te manque-t-il pas ?\nDon't you miss your father?\tVotre père ne vous manque-t-il pas ?\nDon't you remember my name?\tTu ne te souviens plus comment je m'appelle ?\nDon't you remember my name?\tTu ne te souviens pas de mon nom ?\nDon't you remember my name?\tNe te souviens-tu pas de mon nom ?\nDon't you remember my name?\tNe te rappelles-tu pas mon nom ?\nDon't you remember my name?\tNe vous souvenez-vous pas de mon nom ?\nDon't you remember my name?\tNe vous rappelez-vous pas mon nom ?\nDon't you tell me to relax.\tNe me dites pas de me détendre !\nDon't you tell me to relax.\tNe me dis pas de me détendre !\nDon't you think it's risky?\tNe pensez-vous pas que ce soit risqué ?\nDon't you think it's risky?\tNe penses-tu pas que ce soit risqué ?\nDon't you think it's weird?\tTu ne trouves pas que c'est bizarre?\nDon't you want to meet Tom?\tNe veux-tu pas rencontrer Tom ?\nDon't you want to meet Tom?\tNe voulez-vous pas rencontrer Tom ?\nDon't you watch old movies?\tNe regardez-vous pas de vieux films ?\nDon't you watch old movies?\tNe regardes-tu pas de vieux films ?\nDraw a picture of yourself.\tFais un dessin de toi-même.\nDraw a picture of yourself.\tDessinez-vous.\nDraw a picture of yourself.\tDessine-toi.\nDreams sometimes come true.\tQuelquefois, les rêves deviennent réalité.\nDry your face with a towel.\tEssuie ton visage avec une serviette.\nEach of them has a bicycle.\tChacun d'eux a un vélo.\nEat whatever food you like.\tMangez ce que vous voulez.\nEat whichever one you like.\tMangez celui qui vous plait.\nEggs are sold by the dozen.\tLes œufs sont vendus à la douzaine.\nEggs are sold by the dozen.\tLes œufs se vendent à la douzaine.\nEither he is wrong or I am.\tSoit il a tort, soit c'est moi.\nEither he is wrong or I am.\tSoit lui ou moi a tort.\nElectricity is very useful.\tL'électricité est fort utile.\nElephants have long trunks.\tLes éléphants ont une longue trompe.\nEnglish is not easy for me.\tL'anglais n'est pas facile pour moi.\nEnglish is not easy for us.\tL'anglais n'est pas facile pour nous.\nEnglish is not spoken here.\tOn ne parle pas anglais ici.\nEvery ship needs a captain.\tTout bateau a besoin d'un capitaine.\nEverybody didn't go to bed.\tTout le monde n'est pas allé au lit.\nEverybody has already left.\tTout le monde est déjà parti.\nEverybody knows I hate Tom.\tTout le monde sait que je déteste Tom.\nEverybody looked up to him.\tTous l'admiraient.\nEverybody started cheering.\tTout le monde s'est mis à applaudir.\nEverybody started cheering.\tTout le monde se mit à applaudir.\nEverybody started to leave.\tTout le monde a commencé à partir.\nEverybody started to leave.\tTout le monde a commencé à s'en aller.\nEverybody started to leave.\tTout le monde commença à partir.\nEverybody started to leave.\tTout le monde commença à s'en aller.\nEveryone is looking at Tom.\tTout le monde regarde Tom.\nEveryone is looking at Tom.\tTout le monde est en train de regarder Tom.\nEveryone is staring at Tom.\tTout le monde dévisage Tom.\nEveryone is staring at Tom.\tTout le monde regarde Tom fixement.\nEveryone is waiting on you.\tTout le monde vous attend.\nEveryone was looking at me.\tTout le monde me regardait.\nEveryone was looking at me.\tTout le monde était en train de me regarder.\nEverything I said was true.\tTout ce que j'ai dit était vrai.\nEverything he says is true.\tTout ce qu'il dit est vrai.\nEverything is all arranged.\tTout est arrangé.\nEverything is so expensive.\tTout est si cher.\nEverything was going great.\tTout allait très bien.\nEverything went as planned.\tTout s'est déroulé selon le plan.\nEverything went as planned.\tTout s'est déroulé comme prévu.\nEverything will be perfect.\tTout sera parfait.\nEverything'll be all right.\tTout ira bien.\nEverything's all right now.\tTout va bien maintenant.\nEverything's taken care of.\tOn s'occupe de tout.\nEverything's under control.\tTout est sous contrôle.\nExcuse me, but I feel sick.\tVeuillez m'excuser, mais je me sens malade.\nExcuse me, but I feel sick.\tJe te prie de m'excuser, mais je me sens malade.\nExcuse me, what time is it?\tJe vous prie de m'excuser, quelle heure est-il ?\nFather is watering flowers.\tPère arrose les fleurs.\nFew students knew his name.\tPeu d'étudiants connaissaient son nom.\nFill out this form, please.\tVeuillez remplir ce formulaire.\nFill the bottle with water.\tRemplis la bouteille d'eau !\nFill the bottle with water.\tRemplissez la bouteille d'eau !\nFill the bucket with water.\tEmplis le seau d'eau !\nFill the bucket with water.\tEmplissez le seau d'eau !\nFill the bucket with water.\tRemplis le seau d'eau !\nFill the bucket with water.\tRemplissez le seau d'eau !\nFinally, I have my own car.\tFinalement, j'ai ma propre voiture.\nFinally, I have my own car.\tFinalement, j'ai ma propre bagnole.\nFishing is prohibited here.\tIl est interdit de pêcher ici.\nFishing is prohibited here.\tLa pêche est interdite ici.\nFlashy people irritate him.\tLes gens tape-à-l'œil l'irritent.\nFood is necessary for life.\tLa nourriture est nécessaire à la vie.\nFrench is spoken in France.\tLe français est parlé en France.\nFriends do things together.\tLes amis font des choses ensemble.\nFrogs are afraid of snakes.\tLes grenouilles ont peur des serpents.\nGet this stuff out of here.\tFiche ces trucs hors d'ici.\nGet up as early as you can.\tLève-toi le plus tôt que tu peux.\nGive it to anyone you like.\tDonne-le à qui tu veux.\nGive me another cup of tea.\tDonne-moi une autre tasse de thé.\nGive me back the TV remote.\tRends-moi la télécommande de la télévision.\nGive me some time to think.\tDonne-moi un peu de temps pour réfléchir.\nGive me some water, please.\tDonne-moi de l'eau, s'il te plaît !\nGive me some water, please.\tDonnez-moi de l'eau, s'il vous plaît !\nGive me something to drink.\tDonnez-moi quelque chose à boire.\nGive me something to drink.\tDonne-moi à boire.\nGive someone else a chance.\tDonnez une chance à quelqu'un d'autre.\nGiving up isn't the answer.\tAbandonner n'est pas la réponse.\nGo get your shoes polished.\tVa faire cirer tes chaussures !\nGo get your shoes polished.\tAllez faire cirer vos chaussures !\nGood luck with the new job.\tBonne chance avec le nouveau boulot !\nGreen is my favorite color.\tLe vert est ma couleur favorite.\nHandle this very carefully.\tManipule ça avec beaucoup de précautions.\nHandle this very carefully.\tManipulez ça avec beaucoup de précautions !\nHang your coat on the hook.\tSuspends ton manteau au crochet.\nHang your coat on the hook.\tSuspendez votre manteau au crochet.\nHas he given up cigarettes?\tEst-ce qu'il a arrêté de fumer ?\nHas he given up cigarettes?\tEst-ce qu'il a arrêté la cigarette ?\nHas he given up cigarettes?\tA-t-il laissé tombé la cigarette ?\nHas the train been delayed?\tLe train a-t-il été en retard ?\nHave another cup of coffee.\tPrends une autre tasse de café !\nHave another cup of coffee.\tPrenez une autre tasse de café !\nHave you been here all day?\tAvez-vous été là toute la journée ?\nHave you been here all day?\tAs-tu été là toute la journée ?\nHave you been up all night?\tAvez-vous été debout toute la nuit ?\nHave you been up all night?\tAs-tu été debout toute la nuit ?\nHave you ever been in love?\tAs-tu jamais été amoureux ?\nHave you ever been in love?\tAs-tu jamais été amoureuse ?\nHave you ever been in love?\tAvez-vous jamais été amoureux ?\nHave you ever been in love?\tAvez-vous jamais été amoureuse ?\nHave you ever been in love?\tAvez-vous jamais été amoureuses ?\nHave you ever been married?\tAs-tu jamais été marié ?\nHave you ever been married?\tAs-tu jamais été mariée ?\nHave you ever been married?\tAvez-vous jamais été marié ?\nHave you ever been married?\tAvez-vous jamais été mariés ?\nHave you ever been married?\tAvez-vous jamais été mariée ?\nHave you ever been married?\tAvez-vous jamais été mariées ?\nHave you ever driven a van?\tAvez-vous déjà conduit un van ?\nHave you ever eaten turkey?\tAs-tu déjà mangé de la dinde ?\nHave you ever seen a koala?\tAs-tu déjà vu un koala ?\nHave you ever seen a panda?\tAs-tu déjà vu un panda ?\nHave you ever seen a whale?\tAs-tu déjà vu une baleine ?\nHave you ever shot anybody?\tAs-tu déjà tiré sur quelqu'un ?\nHave you ever shot anybody?\tAvez-vous déjà tiré sur quelqu'un ?\nHave you ever visited Rome?\tAvez-vous déjà visité Rome ?\nHave you finished dressing?\tAs-tu fini de t'habiller ?\nHave you finished dressing?\tAvez-vous fini de vous habiller ?\nHave you given Tom the key?\tAs-tu donné la clé à Tom ?\nHave you given Tom the key?\tAvez-vous donné la clé à Tom ?\nHave you got any ideas yet?\tAs-tu une quelconque idée à l'heure actuelle ?\nHave you got any ideas yet?\tAvez-vous une quelconque idée à l'heure actuelle ?\nHave you got any ideas yet?\tAs-tu déjà une quelconque idée ?\nHave you got any ideas yet?\tAvez-vous déjà une quelconque idée ?\nHave you met everyone here?\tTu connais tout le monde ici ?\nHave you met everyone here?\tVous connaissez tout le monde ici ?\nHave you read this article?\tAvez-vous lu cet article ?\nHave you read this article?\tAs-tu lu cet article ?\nHave you seen Tom recently?\tAvez-vous vu Tom récemment ?\nHave you seen Tom recently?\tAs-tu vu Tom récemment ?\nHave you seen Tom recently?\tAs-tu vu Tom dernièrement ?\nHave you told your parents?\tL'avez-vous dit à vos parents ?\nHave you told your parents?\tL'as-tu dit à tes parents ?\nHave you tried that before?\tL'as-tu essayé auparavant ?\nHave you tried that before?\tL'avez-vous essayé auparavant ?\nHave you tried this before?\tL'as-tu essayé auparavant ?\nHave you tried this before?\tL'avez-vous essayé auparavant ?\nHe acknowledged his faults.\tIl a reconnu ses fautes.\nHe acquired French quickly.\tIl a appris le français rapidement.\nHe advised me not to smoke.\tIl m'a conseillé de ne pas fumer.\nHe almost got away with it.\tIl a failli s'en tirer comme ça.\nHe almost got away with it.\tIl s'en est presque tiré comme ça.\nHe almost never gets angry.\tIl ne se met presque jamais en colère.\nHe almost never went there.\tIl n'y est presque jamais allé.\nHe also needs many workers.\tIl a également besoin de nombreux travailleurs.\nHe appealed to us for help.\tIl implora notre aide.\nHe arrived here last night.\tIl est arrivé ici la nuit dernière.\nHe asked her out on a date.\tIl lui demanda de sortir avec lui.\nHe asked her out on a date.\tIl lui a demandé de sortir avec lui.\nHe asked her out on a date.\tIl lui proposa de sortir avec lui.\nHe asked her out on a date.\tIl lui a proposé de sortir avec lui.\nHe asked me if I was happy.\tIl m'a demandé si j'étais heureux.\nHe asked that we be silent.\tIl nous demanda d'être silencieux.\nHe asked that we be silent.\tIl nous demanda d'être silencieuses.\nHe avenged his dead father.\tIl a vengé son père défunt.\nHe became a great musician.\tIl devint un grand musicien.\nHe became a nice young man.\tIl devint un charmant jeune homme.\nHe began to look for a job.\tIl commença à chercher un travail.\nHe began to whistle a tune.\tIl commença à siffler un air.\nHe believes in Santa Claus.\tIl croit au Père Noël.\nHe bought his son a camera.\tIl a acheté un appareil photo à son fils.\nHe bought me a nice camera.\tIl m'a acheté un joli appareil photo.\nHe brought his lunch today.\tIl a apporté son déjeuner, aujourd'hui.\nHe calculated the expenses.\tIl a calculé les dépenses.\nHe called me up from Tokyo.\tIl m'a appelé de Tokyo.\nHe can read English easily.\tIl peut lire l'anglais facilement.\nHe can't swim like she can.\tIl ne peut pas nager comme elle.\nHe carved me a wooden doll.\tIl m'a sculpté une poupée de bois.\nHe caught hold of the rope.\tIl attrapa la corde.\nHe comes here once a month.\tIl vient ici une fois par mois.\nHe comes here twice a week.\tIl vient ici deux fois par semaine.\nHe could not go to college.\tIl ne put se rendre à la fac.\nHe could not go to college.\tIl n'a pas pu se rendre à la fac.\nHe couldn't find the house.\tIl n'a pas pu trouver la maison.\nHe cut off a slice of meat.\tIl découpa une tranche de viande.\nHe dashed out of the store.\tIl se précipita hors du magasin.\nHe decided to have surgery.\tIl se décida à recourir à la chirurgie.\nHe decided to quit smoking.\tIl décida d'arrêter de fumer.\nHe decided to sell the car.\tIl a décidé de vendre sa voiture.\nHe decided to study harder.\tIl décida d'étudier plus dur.\nHe deserves the punishment.\tIl mérite la punition.\nHe did it out of curiosity.\tIl l'a fait par curiosité.\nHe did the work on his own.\tIl a fait le travail lui-même.\nHe did well for a beginner.\tIl s'en est bien sorti pour un débutant.\nHe didn't do it on purpose.\tIl ne l'a pas fait exprès.\nHe didn't say anything new.\tIl n'a rien dit de nouveau.\nHe didn't tell me his name.\tIl ne m'a pas dit son nom.\nHe died an unnatural death.\tIl est décédé d'une mort non naturelle.\nHe dislocated his shoulder.\tIl s'est disloqué l'épaule.\nHe does it faster than you.\tIl le fait plus rapidement que toi.\nHe does it faster than you.\tIl le fait plus rapidement que vous.\nHe doesn't have a computer.\tIl n'a pas d'ordinateur.\nHe doesn't have a computer.\tIl ne dispose pas d'ordinateur.\nHe doesn't have the ticket.\tIl n'a pas le billet.\nHe doesn't know any better.\tIl n'en sait pas plus.\nHe doesn't want to see you.\tIl ne veut pas vous voir.\nHe doesn't watch TV at all.\tIl ne regarde pas du tout la télé.\nHe drank a shot of whiskey.\tIl but une rasade de whisky.\nHe drank a shot of whiskey.\tIl a bu une rasade de whisky.\nHe drinks too much alcohol.\tIl boit trop d'alcool.\nHe fell asleep immediately.\tIl s'est endormi immédiatement.\nHe fell asleep immediately.\tIl s'endormit immédiatement.\nHe fell ill a few days ago.\tIl est tombé malade il y a quelques jours.\nHe felt a pain in his back.\tIl sentit une douleur dans son dos.\nHe felt utterly humiliated.\tIl s'est senti totalement humilié.\nHe forgot to lock the door.\tIl oublia de verrouiller la porte.\nHe forgot to lock the door.\tIl a oublié de verrouiller la porte.\nHe gave away all his money.\tIl distribua tout son argent.\nHe gave her a foot massage.\tIl lui fit un massage des pieds.\nHe gave her a foot massage.\tIl lui a fait un massage des pieds.\nHe got bogged down at work.\tIl est resté coincé au boulot.\nHe got kicked off the team.\tIl s'est fait éjecter de l'équipe.\nHe got ready for departure.\tIl s'apprêta au départ.\nHe greeted me with a smile.\tIl me salua d'un sourire.\nHe grew a variety of crops.\tIl faisait pousser une variété de cultures.\nHe grew up in a small town.\tIl a grandi dans une petite ville.\nHe grew up in a small town.\tIl a grandi dans une bourgade.\nHe had a bitter experience.\tIl eut une amère expérience.\nHe had a bitter experience.\tIl a eu une amère expérience.\nHe had an accident at work.\tIl eut un accident du travail.\nHe had an accident at work.\tIl a eu un accident au travail.\nHe had breakfast all alone.\tIl a pris son petit-déjeuner tout seul.\nHe has a butler and a cook.\tIl a un majordome et un cuisinier.\nHe has a butler and a cook.\tIl dispose d'un majordome et d'un cuisinier.\nHe has a passive character.\tC'est un personnage passif.\nHe has a remarkable memory.\tIl a une mémoire remarquable.\nHe has a vivid imagination.\tIl a une imagination débordante.\nHe has a vivid imagination.\tIl est doté d'une imagination débordante.\nHe has an eye for antiques.\tIl a l'œil pour les antiquités.\nHe has an interesting book.\tIl a un livre intéressant.\nHe has any number of books.\tIl possède beaucoup de livres.\nHe has been gaining weight.\tIl a pris du poids.\nHe has her under his thumb.\tIl l'a en son pouvoir.\nHe has no house to live in.\tIl n'a pas de maison où vivre.\nHe has no house to live in.\tIl n'a pas de foyer.\nHe has no redeeming traits.\tIl n'a rien pour le racheter.\nHe has no right to do this.\tIl n'a aucun droit de faire ça.\nHe has quite a few records.\tIl a pas mal de disques.\nHe has quite a few records.\tIl a pas mal d'enregistrements.\nHe has three older sisters.\tIl a trois grandes sœurs.\nHe has three older sisters.\tIl a trois sœurs ainées.\nHe has two sons, I believe.\tIl a deux fils, je crois.\nHe hasn't changed his mind.\tIl n'a pas changé d'avis.\nHe hasn't left any message.\tIl n'a pas laissé de message.\nHe hastily packed his bags.\tIl a fait ses valises dans la hâte.\nHe held a pen in his hands.\tIl avait un stylo dans les mains.\nHe held a pen in his hands.\tIl tenait un stylo dans ses mains.\nHe held out his hand to me.\tIl me tendit la main.\nHe held the trophy up high.\tIl brandit bien haut le trophée.\nHe hit a ball with the bat.\tIl a frappé une balle avec la batte.\nHe intruded on her privacy.\tIl s'est immiscé dans son intimité.\nHe invited me to his house.\tIl m'a invité chez lui.\nHe invited me to his house.\tIl m'a invitée chez lui.\nHe invited me to the party.\tIl m'a invité à la fête.\nHe is a compulsive gambler.\tC'est un joueur invétéré.\nHe is a good husband to me.\tC'est un bon mari pour moi.\nHe is a good tennis player.\tC'est un bon joueur de tennis.\nHe is a good tennis player.\tC'est un très bon joueur de tennis.\nHe is a man of noble birth.\tC'est un homme de famille noble.\nHe is a really good worker.\tC'est vraiment un bon travailleur.\nHe is a student at Harvard.\tIl est étudiant à Harvard.\nHe is a teacher of English.\tIl est prof d'anglais.\nHe is a teacher of English.\tC'est un professeur d'anglais.\nHe is absorbed in his work.\tSon travail l'absorbe.\nHe is afraid of his father.\tIl a peur de son père.\nHe is almost six feet tall.\tIl fait presque six pieds de haut.\nHe is always full of ideas.\tIl est toujours plein d'idées.\nHe is always full of ideas.\tIl est toujours bourré d'idées.\nHe is an aggressive person.\tC'est une personne agressive.\nHe is busy doing something.\tIl est occupé à faire quelque chose.\nHe is capable of treachery.\tIl est capable de trahison.\nHe is careless about money.\tIl est négligent pour ce qui concerne l'argent.\nHe is careless about money.\tIl est négligent en matière d'argent.\nHe is crazy about baseball.\tIl est fou de baseball.\nHe is eager to go to China.\tIl est désireux d'aller en Chine.\nHe is engaged to my sister.\tIl est fiancé à ma sœur.\nHe is going to the concert.\tIl se rend au concert.\nHe is going to the concert.\tIl va au concert.\nHe is hunted by the police.\tIl est recherché par la police.\nHe is impatient to see you.\tIl est impatient de te voir.\nHe is in front of the door.\tIl est devant la porte.\nHe is mentally handicapped.\tIl est handicapé mental.\nHe is not altogether wrong.\tIl n'a pas entièrement tort.\nHe is not guilty of murder.\tIl n'est pas coupable de meurtre.\nHe is not strong as before.\tIl n'est plus aussi fort qu'avant.\nHe is not too old to do it.\tIl n'est pas trop vieux pour le faire.\nHe is now staying in Paris.\tIl séjourne actuellement à Paris.\nHe is one of my neighbours.\tC'est l'un de mes voisins.\nHe is popular with his men.\tIl est aimé de ses hommes.\nHe is sitting cross-legged.\tIl est assis en tailleur.\nHe is sitting on the chair.\tIl est assis sur la chaise.\nHe is standing on the hill.\tIl se tient sur la colline.\nHe is still full of energy.\tIl est encore plein d'énergie.\nHe is studying agriculture.\tIl étudie l'agronomie.\nHe is studying at his desk.\tIl étudie à sa table de travail.\nHe is suspected of robbery.\tIl est suspecté de vol.\nHe is swimming in the pool.\tIl nage dans la piscine.\nHe is there for a few days.\tIl est là pour quelques jours.\nHe is very a dangerous man.\tC'est un homme très dangereux.\nHe is worthy of our praise.\tIl mérite nos louanges.\nHe isn't able to buy a car.\tIl est dans l'incapacité d'acheter une voiture.\nHe isn't who he says he is.\tIl n'est pas ce qu'il prétend être.\nHe joined the English club.\tIl a rejoint le club anglais.\nHe just doesn't measure up.\tIl n'est juste pas à la hauteur.\nHe knows how to milk a cow.\tIl sait traire une vache.\nHe laid himself on the bed.\tIl s'est allongé sur le lit.\nHe leaned against the wall.\tIl s'appuya contre le mur.\nHe left after he had lunch.\tIl partit après qu'il eût déjeuné.\nHe likes it when I do that.\tIl apprécie que je fasse ça.\nHe likes it when I do that.\tIl aime que je fasse ça.\nHe likes jazz, and so do I.\tIl aime le jazz et moi aussi.\nHe lived in Spain, I think.\tIl habitait en Espagne, je pense.\nHe lived in a town near by.\tIl a vécu dans une ville pas loin.\nHe lived to a ripe old age.\tIl vécut jusqu'à un âge avancé.\nHe lives across the street.\tIl vit de l'autre côté de la rue.\nHe lives in a trailer park.\tIl vit dans un terrain pour caravanes.\nHe looks as if he were ill.\tIl a l'air malade.\nHe looks like a clever boy.\tIl a l'air intelligent.\nHe looks like your brother.\tIl ressemble à ton frère.\nHe made a journey to Paris.\tIl a voyagé à Paris.\nHe made a vivid impression.\tIl a fait une forte impression.\nHe made her clean the room.\tIl lui a fait ranger la pièce.\nHe made his will last year.\tIl a fait son testament l'année dernière.\nHe made the children laugh.\tIl fit rire les enfants.\nHe made up the whole story.\tIl a fabriqué toute cette histoire.\nHe made up the whole story.\tIl a confectionné toute l'histoire.\nHe makes necessary changes.\tIl fait les changements nécessaires.\nHe married a Canadian girl.\tIl était marié avec une Canadienne.\nHe married a Canadian girl.\tIl épousa une Canadienne.\nHe may not be able to come.\tIl se peut qu'il ne puisse pas venir.\nHe may not be able to come.\tIl se peut qu'il ne soit pas en capacité de venir.\nHe motioned me to stand up.\tIl m'a demandé de me lever.\nHe nearly got away with it.\tIl s'en est presque tiré sans encombres.\nHe nearly got away with it.\tIl s'en tira presque sans encombres.\nHe never cared much for me.\tIl ne s'est jamais beaucoup préoccupé de moi.\nHe occasionally visited me.\tIl me rendait occasionnellement visite.\nHe often paints landscapes.\tIl peint souvent des paysages.\nHe painted his bicycle red.\tIl peignit son vélo en rouge.\nHe plays golf every Sunday.\tIl joue au golf tous les dimanches.\nHe predicted she would win.\tIl a prédit qu'elle gagnerait.\nHe predicted she would win.\tIl a prédit qu'elle l'emporterait.\nHe proofread my manuscript.\tIl a relu mon manuscrit.\nHe provided them with food.\tIl leur fournit de la nourriture.\nHe put the key in the lock.\tIl mit la clé dans la serrure.\nHe ran as fast as he could.\tIl courut aussi vite qu'il put.\nHe ran as fast as he could.\tIl courut aussi vite qu'il le put.\nHe ran as fast as he could.\tIl courut aussi vite qu'il pouvait.\nHe ran away with the money.\tIl s'est enfui avec l'argent.\nHe ran away with the money.\tIl s'est tiré avec l'argent.\nHe read the book yesterday.\tIl a lu le livre hier.\nHe reads a novel every day.\tIl lit un roman par jour.\nHe said he could swim well.\tIl a dit qu'il savait bien nager.\nHe said hello to the woman.\tIl salua la dame.\nHe saved a hundred dollars.\tIl économisa cent dollars.\nHe seems interested in her.\tIl semble s'intéresser à elle.\nHe seems to have been rich.\tIl semble avoir été riche.\nHe sent me a birthday card.\tIl m'envoya une carte d'anniversaire.\nHe sent me a birthday card.\tIl m'a envoyé une carte d'anniversaire.\nHe shared his soup with me.\tIl a partagé sa soupe avec moi.\nHe shaved his mustache off.\tIl a rasé sa moustache.\nHe should be put in prison.\tIl devrait être jeté en prison.\nHe showed us some pictures.\tIl nous montra quelques photos.\nHe showed us some pictures.\tIl nous a montré des photos.\nHe smiled and said goodbye.\tIl sourit et dit au-revoir.\nHe solved all the problems.\tIl a résolu tous les problèmes.\nHe speaks Chinese fluently.\tIl parle couramment le chinois.\nHe speaks English a little.\tIl parle un peu anglais.\nHe speaks English fluently.\tIl parle l'anglais couramment.\nHe speaks English fluently.\tIl parle anglais couramment.\nHe speaks English fluently.\tIl parle couramment anglais.\nHe started washing his car.\tIl se mit à laver sa voiture.\nHe started washing his car.\tIl s'est mis à laver sa voiture.\nHe stayed at a cheap hotel.\tIl séjourna dans un hôtel bon marché.\nHe stayed at a cheap hotel.\tIl a séjourné dans un hôtel bon marché.\nHe still has much to learn.\tIl a encore beaucoup à apprendre.\nHe stood behind his mother.\tIl se tenait derrière sa mère.\nHe stood there for a while.\tIl resta ici un moment.\nHe stood there for a while.\tIl est resté debout là-bas pendant un moment.\nHe stopped talking to them.\tIl arrêta de leur parler.\nHe stopped to talk to them.\tIl arrêta de leur parler.\nHe told me all the details.\tIl me donna tous les détails.\nHe told me when to say yes.\tIl me dit quand dire oui.\nHe took credit for my idea.\tIl porta mon idée à son crédit.\nHe took credit for my idea.\tIl a porté mon idée à son crédit.\nHe touched me on the cheek.\tIl me toucha à la joue.\nHe tumbled down the stairs.\tIl est tombé dans les escaliers.\nHe turned pale at the news.\tEn entendant la nouvelle, il pâlit.\nHe turned pale with fright.\tIl devint blême de peur.\nHe turned up an hour later.\tIl revint une heure après.\nHe used me as a guinea pig.\tIl m'a utilisé comme cobaye.\nHe usually comes home late.\tIl rentre chez lui tard en général.\nHe visited Kyoto last year.\tIl a visité Kyoto l'an dernier.\nHe volunteered to help her.\tIl s'est porté volontaire pour l'aider.\nHe waited for him until 10.\tIl l’a attendu jusqu'à 10 heures.\nHe walked all the way home.\tIl a marché jusque chez lui.\nHe walked along the street.\tIl chemina le long de la rue.\nHe walked on for some time.\tIl continua son chemin pendant un moment.\nHe wants to be an engineer.\tIl pense vouloir devenir ingénieur.\nHe wants to squish the bug.\tIl veut écraser la bestiole.\nHe wants to squish the bug.\tIl veut écraser l'insecte.\nHe warned me of the danger.\tIl m'a alertée du danger.\nHe warned me of the danger.\tIl m'a alerté du danger.\nHe was a god to his people.\tIl était un dieu pour son peuple.\nHe was absent at roll call.\tIl était absent à l'appel.\nHe was anxious to meet you.\tCela le rend anxieux de te rencontrer.\nHe was caught in an ambush.\tIl est tombé dans une embuscade.\nHe was clearly embarrassed.\tIl était visiblement embarrassé.\nHe was desperate to escape.\tIl voulait désespérément s'échapper.\nHe was elected mayor again.\tIl a été réélu maire.\nHe was fired by the school.\tIl a été expulsé par l'école.\nHe was killed with a sword.\tIl a été tué avec une épée.\nHe was knocked unconscious.\tIl a été assommé et a perdu connaissance.\nHe was like a father to me.\tIl a été comme un père pour moi.\nHe was like a father to me.\tIl fut comme un père pour moi.\nHe was not sure what to do.\tIl n'était pas sûr de savoir quoi faire.\nHe was reading a newspaper.\tIl était en train de lire un journal.\nHe was reluctant to answer.\tIl hésitait à répondre.\nHe was robbed of his youth.\tSa jeunesse lui a été dérobée.\nHe was sentenced to prison.\tIl a été condamné à de la prison.\nHe was sentenced to prison.\tIl a été condamné à la prison.\nHe was struck off the list.\tIl a été rayé de la liste.\nHe was too stunned to talk.\tIl était trop abasourdi pour parler.\nHe was too stunned to talk.\tIl a été trop abasourdi pour parler.\nHe was too stunned to talk.\tIl fut trop abasourdi pour parler.\nHe was trembling with rage.\tIl tremblait de colère.\nHe was welcomed everywhere.\tIl était le bienvenu partout.\nHe was wounded in the head.\tIl a été blessé à la tête.\nHe wasn't watching TV then.\tIl ne regardait pas la télé à ce moment-là.\nHe will always be with you.\tIl sera toujours parmi vous.\nHe will always be with you.\tIl sera toujours avec vous.\nHe will always be with you.\tIl sera toujours avec toi.\nHe will be back in an hour.\tIl sera de retour dans une heure.\nHe will be waiting for her.\tIl l'attendra.\nHe will be waiting for you.\tIl t'attendra.\nHe will be waiting for you.\tIl vous attendra.\nHe will get well very soon.\tIl ira bien très bientôt.\nHe will make a good doctor.\tIl fera un bon médecin.\nHe will pay for everything.\tIl paiera pour tout.\nHe wished he had more time.\tIl aurait aimé disposer de plus de temps.\nHe wished he had more time.\tIl aurait aimé disposer de davantage de temps.\nHe won the prize last week.\tIl a gagné le prix la semaine passée.\nHe won the prize last week.\tIl a gagné le prix la semaine dernière.\nHe won't call this evening.\tIl n’appellera pas ce soir.\nHe worked harder than ever.\tIl a travaillé plus dur que jamais.\nHe works as a ghost writer.\tIl travaille comme nègre.\nHe's a Democrat fundraiser.\tC'est un collecteur de fonds pour le parti Démocrate.\nHe's a construction worker.\tIl est employé dans le bâtiment.\nHe's a construction worker.\tC'est un travailleur du bâtiment.\nHe's a high school student.\tIl est lycéen.\nHe's a law-abiding citizen.\tC'est un citoyen respectueux des lois.\nHe's a man of many talents.\tC'est un homme aux multiples talents.\nHe's a man you can rely on.\tC'est un homme sur qui vous pouvez compter.\nHe's a man you can rely on.\tC'est un homme sur qui tu peux compter.\nHe's a smart little feller.\tC'est un petit gars intelligent.\nHe's a teacher and so am I.\tIl est professeur et moi aussi.\nHe's addicted to junk food.\tIl est accro à la malbouffe.\nHe's always looking at you.\tIl vous regarde toujours.\nHe's always reading comics.\tIl lit toujours des bandes dessinées.\nHe's definitely not coming.\tIl ne viendra décidément pas.\nHe's different from before.\tIl est différent de ce qu'il était avant.\nHe's digging his own grave.\tIl creuse sa propre tombe.\nHe's eager to speak to you.\tIl a hâte de vous parler.\nHe's handsome and charming.\tIl est beau et a du charme.\nHe's much younger than Tom.\tIl est beaucoup plus jeune que Tom.\nHe's my old drinking buddy.\tC'est mon vieux compagnon de beuverie.\nHe's now a college student.\tIl est maintenant étudiant à la fac.\nHe's now a college student.\tIl est maintenant étudiant en faculté.\nHe's perfect at everything.\tIl est parfait en tout.\nHe's skilled at videogames.\tIl est habile aux jeux vidéo.\nHe's skilled at videogames.\tIl est doué aux jeux vidéo.\nHe's somewhere in the park.\tIl se trouve quelque part dans le parc.\nHe's the captain of a team.\tIl est capitaine d'une équipe.\nHe's the one who helped me.\tC'est lui qui m'a aidé.\nHe's writing a long letter.\tIl écrit une longue lettre.\nHer beauty is incomparable.\tSa beauté est incomparable.\nHer complaints never cease.\tSes plaintes ne cessent jamais.\nHer eyes filled with tears.\tSes yeux se remplirent de larmes.\nHer eyes filled with tears.\tSes yeux s'emplirent de larmes.\nHer eyes filled with tears.\tSes yeux se sont emplis de larmes.\nHer father is a bank clerk.\tSon père est employé de banque.\nHer home is in the suburbs.\tSa maison est en banlieue.\nHer old cat is still alive.\tSon vieux chat est encore en vie.\nHer son is sure to succeed.\tSon fils est certain de réussir.\nHer vanity knows no bounds.\tSa vanité ne connaît pas de frontières.\nHere is one of my pictures.\tVoici un de mes tableaux.\nHere's looking at you, kid.\tÀ ta santé, gamin !\nHere's my telephone number.\tVoici mon numéro de téléphone.\nHere's one of my favorites.\tVoici l'un de mes préférés.\nHere's one of my favorites.\tVoici l'une de mes préférées.\nHere's the money I owe you.\tVoici l'argent que je te dois.\nHere's the money I owe you.\tVoici l'argent que je vous dois.\nHerold agreed to surrender.\tHerold accepta de se rendre.\nHey, thanks for everything.\tHé, merci pour tout.\nHis appearance deceived me.\tSon apparence m'a trompé.\nHis appearance deceived me.\tSon apparence m'a trompée.\nHis appearance deceived me.\tJ'ai été abusé par son apparence.\nHis appearance deceived me.\tJ'ai été abusée par son apparence.\nHis children have grown up.\tSes enfants ont grandi.\nHis complaints never cease.\tSes plaintes ne cessent jamais.\nHis death surprised us all.\tSa mort nous a tous surpris.\nHis eyes betrayed his fear.\tSes yeux trahissaient sa peur.\nHis father was a policeman.\tSon père était agent de police.\nHis girlfriend is Japanese.\tSa petite amie est japonaise.\nHis lectures are very long.\tSes sermons sont très longs.\nHis lectures are very long.\tSes cours sont très longs.\nHis life was full of drama.\tSa vie fut pleine de drames.\nHis old cat is still alive.\tSon vieux chat est encore en vie.\nHis prophecy was fulfilled.\tSa prophétie se réalisa.\nHis proposal was worthless.\tSa proposition n'avait pas la moindre valeur.\nHis sons do as they please.\tSes fils font ce qu'ils veulent.\nHis sons do as they please.\tSes fils font ce qui leur chante.\nHold your applause, please.\tRetenez vos applaudissements, je vous prie.\nHome prices are plummeting.\tLes prix des maisons sont en chute libre.\nHonesty is the best policy.\tL'honnêteté est la meilleure des stratégies.\nHow about calling it a day?\tQue diriez-vous d'arrêter pour aujourd'hui ?\nHow about calling it a day?\tQue dirais-tu d'arrêter pour aujourd'hui ?\nHow about going for a swim?\tIrions-nous nager ?\nHow about sleeping at home?\tQue dis-tu de dormir à la maison ?\nHow about sleeping at home?\tQue dites-vous de dormir à la maison ?\nHow am I going to get home?\tComment vais-je faire pour rentrer chez moi ?\nHow am I supposed to dress?\tComment suis-je supposé m'habiller ?\nHow am I supposed to dress?\tComment suis-je supposé me vêtir ?\nHow am I supposed to dress?\tComment suis-je supposée m'habiller ?\nHow am I supposed to dress?\tComment suis-je supposée me vêtir ?\nHow are complaints handled?\tComment les plaintes sont-elles traitées ?\nHow are your parents doing?\tComment vont tes parents ?\nHow can I change your mind?\tComment puis-je vous faire changer d'opinion ?\nHow can we learn the truth?\tComment pouvons-nous apprendre la vérité ?\nHow come he didn't show up?\tComment se fait-il qu'il ne se soit pas présenté ?\nHow come you know all this?\tComment se fait-il que tu saches tout ça ?\nHow come you know all this?\tComment se fait-il que vous sachiez tout ça ?\nHow could it have exploded?\tComment aurait-ce pu exploser ?\nHow could it have happened?\tComment cela aurait-il pu arriver ?\nHow could you not remember?\tComment pouviez-vous ne pas vous en souvenir ?\nHow could you not remember?\tComment pouvais-tu ne pas t'en souvenir ?\nHow did you burn your hand?\tComment vous êtes-vous brûlé la main ?\nHow did you burn your hand?\tComment t'es-tu brûlé la main ?\nHow did you know it was me?\tComment as-tu su que c'était moi ?\nHow did you know it was me?\tComment avez-vous su que c'était moi ?\nHow do I get a hold of you?\tComment est-ce que je mets la main sur vous ?\nHow do I get a hold of you?\tComment est-ce que je mets la main sur toi ?\nHow do I know this is real?\tComment sais-je que c'est vrai ?\nHow do you intend to do it?\tComment avez-vous l'intention de le faire ?\nHow do you intend to do it?\tComment vous proposez-vous de le faire ?\nHow do you intend to do it?\tComment as-tu l'intention de le faire ?\nHow do you intend to do it?\tComment te proposes-tu de le faire ?\nHow do you know each other?\tD'où vous connaissez-vous ?\nHow do you know what I had?\tComment sais-tu ce que j'avais ?\nHow do you know what I had?\tComment savez-vous ce que j'avais ?\nHow do you make your money?\tComment gagnes-tu ton argent ?\nHow do you make your money?\tComment gagnez-vous votre argent ?\nHow do you plan to help me?\tComment prévois-tu de m'aider ?\nHow do you plan to help me?\tComment prévoyez-vous de m'aider ?\nHow do you read this kanji?\tComment lisez-vous cet idéogramme ?\nHow do you read this kanji?\tComment lis-tu cet idéogramme ?\nHow do you spell that word?\tComment épelles-tu ce mot ?\nHow do you spell that word?\tComment épelez-vous ce mot ?\nHow do you spend your time?\tÀ quoi passez-vous votre temps ?\nHow do you spend your time?\tÀ quoi passes-tu ton temps ?\nHow do you stand this cold?\tComment supportez-vous ce froid ?\nHow do you stand this cold?\tComment supportes-tu ce froid ?\nHow do you stand this heat?\tComment supportez-vous cette chaleur ?\nHow do you stand this heat?\tComment supportes-tu cette chaleur ?\nHow do you tell them apart?\tComment les distingues-tu ?\nHow do you tell them apart?\tComment les distinguez-vous ?\nHow do you use this camera?\tComment marche cet appareil photo ?\nHow does that sound to you?\tComment cela te semble-t-il ?\nHow does that sound to you?\tComment cela vous semble-t-il ?\nHow have you been recently?\tComment vas-tu ces derniers temps ?\nHow heavy is your suitcase?\tCombien pèse votre valise ?\nHow is Tom able to do that?\tComment Tom est-il capable de faire cela ?\nHow long do I have to stay?\tCombien de temps dois-je rester ?\nHow long do I have to wait?\tCombien de temps dois-je attendre ?\nHow long do I have to wait?\tCombien de temps dois-je patienter ?\nHow long does a bear sleep?\tCombien de temps un ours dort-il ?\nHow long has she been sick?\tDepuis quand est-elle malade ?\nHow long have you been ill?\tCombien de temps avez-vous été malade ?\nHow many bags did you have?\tCombien de sacs avais-tu ?\nHow many bags did you have?\tCombien de sacs aviez-vous ?\nHow many books do you have?\tCombien de livres as-tu ?\nHow many guards were there?\tCombien de gardes y étaient ?\nHow many guards were there?\tCombien de gardes se trouvaient là ?\nHow many of them are there?\tCombien d'entre eux y sont-ils ?\nHow many of them are there?\tCombien d'entre elles y sont-elles ?\nHow many people were there?\tCombien de gens étaient là ?\nHow many people were there?\tCombien de gens y étaient ?\nHow many players are there?\tCombien de joueurs y a-t-il ?\nHow many windows are there?\tCombien y a-t-il de fenêtres ?\nHow much are they offering?\tCombien offrent-ils ?\nHow much are they offering?\tCombien offrent-elles ?\nHow much did all this cost?\tCombien tout ceci a-t-il coûté ?\nHow much is the commission?\tQuelle est la commission ?\nHow much is the commission?\tÀ combien s’élève la commission ?\nHow much money do you have?\tCombien d'argent avez-vous ?\nHow much money do you have?\tDe combien d'argent disposes-tu ?\nHow much money do you have?\tDe combien d'argent disposez-vous ?\nHow much money do you want?\tCombien d'argent voulez-vous ?\nHow much money do you want?\tCombien d'argent veux-tu ?\nHow often do you go abroad?\tÀ quelle fréquence vous rendez-vous à l'étranger ?\nHow often do you go abroad?\tÀ quelle fréquence vas-tu à l'étranger ?\nHow serious is the problem?\tDe quelle gravité est le problème ?\nHow was I supposed to know?\tComment étais-je supposé le savoir ?\nHow's everyone doing today?\tComment va tout le monde, aujourd'hui ?\nHurry up or you'll be late.\tDépêche-toi ou tu seras en retard !\nHurry up or you'll be late.\tDépèchez-vous ou vous serez en retard !\nHurry up, or we'll be late.\tDépêche-toi, ou nous allons être en retard.\nI actually don't work here.\tJe ne travaille en fait pas ici.\nI actually had fun tonight.\tJe me suis en fait amusé, ce soir.\nI actually had fun tonight.\tJe me suis en fait amusée, ce soir.\nI actually never knew that.\tJe ne l'ai en fait jamais su.\nI added a room to my house.\tJ'ai ajouté une pièce à ma maison.\nI agree with what you said.\tJe suis d'accord avec ce que vous avez dit.\nI agree with what you said.\tJe suis d'accord avec ce que tu as dit.\nI agree with your proposal.\tJ'acquiesce à votre proposition.\nI already feel much better.\tJe me sens déjà beaucoup mieux.\nI already have an envelope.\tJ'ai déjà une enveloppe.\nI am an optimist by nature.\tJe suis optimiste de nature.\nI am at home every evening.\tJe suis chaque soir à la maison.\nI am counting on your help.\tJe compte sur ton aide.\nI am glad to hear the news.\tJe suis heureux d'entendre ces nouvelles.\nI am going down the stairs.\tJe descends l'escalier.\nI am in no mood for joking.\tJe ne suis pas d'humeur à blaguer.\nI am interested in English.\tJe suis intéressé par l'anglais.\nI am just a humble teacher.\tJe suis juste un simple instituteur.\nI am just going for a walk.\tJe vais juste faire une promenade.\nI am never free on Sundays.\tJe ne suis jamais libre le dimanche.\nI am not equal to the task.\tJe ne suis pas à la hauteur de la tâche.\nI am not happy with my job.\tJe ne suis pas heureux dans mon travail.\nI am often in difficulties.\tJe suis souvent en difficulté.\nI am playing the piano now.\tJe suis en train de jouer du piano.\nI am starting this evening.\tJe commence dès ce soir.\nI am tired of hearing that.\tJ'en ai assez d'entendre ça.\nI am up to my neck in work.\tJ'ai du travail par-dessus la tête.\nI am very happy in Georgia.\tJe suis très heureux en Géorgie.\nI anticipated his question.\tJ'ai anticipé sa question.\nI appreciate all your help.\tJ'apprécie toute ton aide.\nI appreciate all your help.\tJ'apprécie toute votre aide.\nI appreciate the sentiment.\tVos paroles me touchent.\nI appreciate the sentiment.\tC'est gentil de dire ça.\nI appreciate the sentiment.\tÇa me va droit au cœur.\nI appreciate your kindness.\tJ'apprécie votre gentillesse.\nI appreciate your patience.\tJe vous suis reconnaissant pour votre patience.\nI appreciate your patience.\tJe te suis reconnaissant pour ta patience.\nI appreciate your patience.\tJe vous suis reconnaissante pour votre patience.\nI appreciate your patience.\tJe te suis reconnaissante pour ta patience.\nI argued with him about it.\tJe me suis disputé avec lui à ce propos.\nI arrived in Tokyo at noon.\tJe suis arrivé à Tokyo à midi.\nI arrived later than usual.\tJe suis arrivé plus tard que d'habitude.\nI asked him if he was busy.\tJe lui ai demandé s'il était occupé.\nI asked them to fix my car.\tJe leur demandai de réparer ma voiture.\nI asked them to fix my car.\tJe leur ai demandé de réparer ma voiture.\nI ate with my baby brother.\tJ'ai mangé avec mon petit frère.\nI basically like your plan.\tA la base, j'aime votre plan.\nI belong to the music club.\tJe suis membre de ce club de musique.\nI bet you didn't know that.\tJe parie que tu ne savais pas ça.\nI bet you didn't know that.\tJe parie que tu ignorais ça.\nI bet you didn't know that.\tJe parie que vous ne saviez pas ça.\nI bet you didn't know that.\tJe parie que vous ignoriez ça.\nI bought a shirt yesterday.\tJ'ai acheté une chemise hier.\nI bought it for 10 dollars.\tJe l'ai eu pour 10 dollars.\nI bought that book for Tom.\tJ'ai acheté ce livre pour Tom.\nI bought two cotton shirts.\tJ'ai acheté deux chemises en coton.\nI bought two dozen pencils.\tJ'ai acheté deux douzaines de crayons.\nI broke off the engagement.\tJ'ai annulé les fiançailles.\nI brought one just in case.\tJ'en ai apporté un, juste au cas où.\nI brought you some cookies.\tJe vous ai apporté des biscuits.\nI built my son a new house.\tJ'ai construit une nouvelle maison à mon fils.\nI came into a huge fortune.\tJe suis entré en possession d'une immense fortune.\nI can easily touch my toes.\tJe peux facilement toucher mes orteils.\nI can help you look for it.\tJe peux t'aider à le chercher.\nI can help you look for it.\tJe peux vous aider à le chercher.\nI can imagine how you felt.\tJ'imagine ce que vous avez dû ressentir.\nI can imagine how you felt.\tJe peux imaginer ce que tu as ressenti.\nI can recall nothing worse.\tJe ne peux me rappeler rien de pire.\nI can see his hand in this.\tJe reconnais là son œuvre.\nI can stay out of your way.\tJe peux rester hors de ton chemin.\nI can't accept this theory.\tJe ne peux pas accepter cette théorie.\nI can't afford to buy that.\tJe n'ai pas les moyens d'acheter cela.\nI can't ask Tom to do that.\tJe ne peux pas demander à Tom de faire ça.\nI can't believe I did that.\tJe n'arrive pas à croire que j'aie fait ça.\nI can't believe I did this.\tJe n'arrive pas à croire que j'aie fait ça.\nI can't believe we're here.\tJe n'arrive pas à croire que nous soyons là.\nI can't believe we're here.\tJe n'arrive pas à croire que nous soyons ici.\nI can't buy you that dress.\tJe ne peux pas t'acheter cette robe.\nI can't carry on like this.\tJe ne peux pas continuer ainsi.\nI can't carry on like this.\tJe ne peux continuer ainsi.\nI can't change these plans.\tJe ne peux pas changer ces plans.\nI can't decode the message.\tJe n'arrive pas à décoder le message.\nI can't detect any pattern.\tJe n'arrive pas à détecter de quelconque récurrence.\nI can't disagree with that.\tJe ne peux pas être en désaccord là-dessus.\nI can't do it in this heat.\tJe ne peux pas le faire par cette chaleur.\nI can't do this work alone.\tJe n'arrive pas, seul, à faire ce travail.\nI can't do this work alone.\tJe n'arrive pas, seule, à faire ce travail.\nI can't explain everything.\tJe ne peux pas tout expliquer.\nI can't get along with him.\tJe n'arrive pas à m'entendre avec lui.\nI can't get rid of my cold.\tJe n'arrive pas à me débarrasser de mon rhume.\nI can't hear you very well.\tJe n'arrive pas à bien vous entendre.\nI can't hear you very well.\tJe n'arrive pas à bien t'entendre.\nI can't help you with this.\tJe ne peux pas t'aider avec ça.\nI can't lend you this book.\tJe ne peux pas vous prêter ce livre.\nI can't let them catch you.\tJe ne peux les laisser t'attraper.\nI can't let them catch you.\tJe ne peux les laisser vous attraper.\nI can't make ends meet now.\tJe n'arrive pas à joindre les deux bouts pour le moment.\nI can't order Tom to do it.\tJe ne peux pas ordonner ça à Tom.\nI can't possibly manage it.\tIl m'est impossible de le gérer.\nI can't predict the future.\tJe ne peux pas prédire l'avenir.\nI can't really describe it.\tJe ne peux pas vraiment le décrire.\nI can't really describe it.\tJe ne parviens pas vraiment à le décrire.\nI can't remember very much.\tJe ne me rappelle pas beaucoup.\nI can't run as fast as you.\tJe ne peux pas courir aussi vite que toi.\nI can't run as fast as you.\tJe ne peux pas courir aussi vite que vous.\nI can't save you this time.\tJe ne peux vous sauver, cette fois.\nI can't save you this time.\tJe ne peux te sauver, cette fois.\nI can't stand her jealousy.\tJe ne supporte pas sa jalousie.\nI can't stand these people.\tJe ne supporte pas ces gens.\nI can't take it any longer.\tJe n'en peux plus.\nI can't take it any longer.\tJe n'en puis plus.\nI can't tell you the truth.\tJe ne peux te dire la vérité.\nI can't tell you the truth.\tJe ne peux vous dire la vérité.\nI can't tell you the truth.\tJe ne peux pas vous dire la vérité.\nI cannot praise her enough.\tJe ne saurais assez la louer.\nI cannot stop the bleeding.\tJe ne parviens pas à juguler l'hémorragie.\nI catch the flu every year.\tJe contracte la grippe chaque année.\nI catch the flu every year.\tJ'attrape la grippe chaque année.\nI caught a cold last month.\tJ'ai attrapé froid le mois dernier.\nI caught up with them soon.\tJe les ai vite rattrapés.\nI caught up with them soon.\tJe les ai vite rattrapées.\nI cooked supper last night.\tJ'ai préparé le dîner hier soir.\nI cooked supper last night.\tJ'ai préparé le dîner hier.\nI could never be like that.\tJe ne pourrais jamais être comme cela.\nI could use a little sleep.\tUn petit somme me ferait du bien.\nI could use a little sleep.\tJe ne serais pas contre un petit somme.\nI couldn't believe my eyes.\tJe ne pouvais pas en croire mes yeux.\nI couldn't sleep all night.\tJe n'ai pas pu dormir de toute la nuit.\nI couldn't take your place.\tJe ne pourrais pas prendre ta place.\nI couldn't take your place.\tJe ne pourrais pas prendre votre place.\nI cover twenty miles a day.\tJe fais vingt miles par jour.\nI cut myself while shaving.\tJe me suis coupée en me rasant.\nI deserve better than this.\tJe mérite mieux que ça.\nI did everything by myself.\tJ'ai tout fait par moi-même.\nI did everything you asked.\tJ'ai fait tout ce que tu as demandé.\nI did everything you asked.\tJ'ai fait tout ce que vous avez demandé.\nI did not take many photos.\tJe n'ai pas pris beaucoup de photos.\nI didn't ask you on a date.\tJe ne t'ai pas demandé de sortir avec moi.\nI didn't call an ambulance.\tJe n'ai pas appelé d'ambulance.\nI didn't catch the meaning.\tJe n'ai pas compris ce que ça signifiait.\nI didn't feel like cooking.\tJe n'avais pas le cœur à cuisiner.\nI didn't feel like cooking.\tJe n'étais pas d'humeur à cuisiner.\nI didn't feel like cooking.\tJe n'avais pas envie de cuisiner.\nI didn't go to the funeral.\tJe ne suis pas allé à l'enterrement.\nI didn't go to the funeral.\tJe ne suis pas allée à l'enterrement.\nI didn't have to wait long.\tJe n'eus pas à attendre longtemps.\nI didn't have to wait long.\tJe n'ai pas eu à attendre longtemps.\nI didn't know Tom was here.\tJe ne savais pas que Tom était ici.\nI didn't know how to react.\tJe ne savais pas comment réagir.\nI didn't make any promises.\tJe n'ai fait aucune promesse.\nI didn't mean it like that.\tJe ne voulais pas le dire dans ce sens.\nI didn't mean to spook you.\tJe n'avais pas l'intention de vous effrayer.\nI didn't mean to spook you.\tJe n'avais pas l'intention de t'effrayer.\nI didn't notice him go out.\tJe n'ai pas remarqué qu'il était sorti.\nI didn't notice him go out.\tJe n'ai pas remarqué sa sortie.\nI didn't really believe it.\tJe ne le crois pas vraiment.\nI didn't really enjoy that.\tJe n'ai pas vraiment apprécié cela.\nI didn't say I wasn't free.\tJe n'ai pas dit que je n'étais pas libre.\nI didn't say it made sense.\tJe n'ai pas dit que c'était sensé.\nI didn't say you were here.\tJe n'ai pas dit que vous étiez ici.\nI didn't say you were here.\tJe n'ai pas dit que tu étais ici.\nI didn't see you until now.\tJe ne vous ai pas vu jusqu'à présent.\nI didn't see you until now.\tJe ne vous ai pas vue jusqu'à présent.\nI didn't see you until now.\tJe ne vous ai pas vus jusqu'à présent.\nI didn't see you until now.\tJe ne vous ai pas vues jusqu'à présent.\nI didn't see you until now.\tJe ne t'ai pas vu jusqu'à présent.\nI didn't see you until now.\tJe ne t'ai pas vue jusqu'à présent.\nI didn't sleep long enough.\tJe n'ai pas assez dormi.\nI didn't sleep long enough.\tJe n'ai pas dormi assez longtemps.\nI didn't take it seriously.\tJe ne l'ai pas pris au sérieux.\nI didn't think it was real.\tJe n'ai pas pensé que c'était réel.\nI didn't want it to happen.\tJe ne voulais pas que ça arrive.\nI didn't want it to happen.\tJe n'ai pas voulu que ça arrive.\nI didn't want it to happen.\tJe ne voulais pas que ça survienne.\nI didn't want to come here.\tJe ne voulais pas venir ici.\nI didn't write that letter.\tJe n'ai pas écrit cette lettre.\nI didn't write this letter.\tJe n'ai pas rédigé cette lettre.\nI do it because I enjoy it.\tJe le fais car j'y prends plaisir.\nI do not like both of them.\tJe ne les aime pas tous les deux.\nI do not like both of them.\tJe n'aime aucun des deux.\nI do things at my own pace.\tJe fais les choses à mon propre rythme.\nI don't actually have them.\tEn réalité, je ne les ai pas.\nI don't actually work here.\tJe ne travaille pas réellement ici.\nI don't belong to any club.\tJe n'appartiens à aucun club.\nI don't belong to any club.\tJe ne fais partie d'aucun club.\nI don't belong to any club.\tJe n'appartiens à aucun cercle.\nI don't belong to any club.\tJe ne fais partie d'aucun cercle.\nI don't belong to the club.\tJe n'appartiens pas à ce club.\nI don't belong to the club.\tJe n'appartiens pas à ce cercle.\nI don't care about fashion.\tJe me fiche de la mode.\nI don't care about fashion.\tJe n'ai cure de la mode.\nI don't care for green tea.\tJe n'aime pas le thé vert.\nI don't care what happened.\tJe me fiche de ce qui s'est passé.\nI don't care what happened.\tJe me fiche de ce qui est arrivé.\nI don't care what she eats.\tCe qu'elle mange m'est indifférent.\nI don't carry cash anymore.\tJe ne transporte plus d'argent liquide.\nI don't eat out very often.\tJe ne mange pas très souvent dehors.\nI don't eat the apple core.\tJe ne mange pas le trognon de pomme.\nI don't even remember that.\tJe ne me rappelle même pas de ça.\nI don't feel like doing it.\tJe n'ai pas le cœur à le faire.\nI don't feel like doing it.\tJe n'ai pas envie de le faire.\nI don't feel like laughing.\tJe n'ai pas envie de rire.\nI don't feel like laughing.\tJe n'ai pas le cœur à rire.\nI don't feel like partying.\tJe ne suis pas d'humeur à faire la fête.\nI don't feel like partying.\tJe n'ai pas le cœur à faire la fête.\nI don't feel like studying.\tJe n'ai pas envie d'étudier.\nI don't feel sorry for you.\tJe ne compatis pas avec vous.\nI don't feel sorry for you.\tJe ne compatis pas avec toi.\nI don't get the connection.\tJe ne vois pas le lien.\nI don't have a lot of time.\tJe ne dispose pas de beaucoup de temps.\nI don't have a lot of time.\tJe n'ai pas de beaucoup de temps.\nI don't have a white shirt.\tJe n'ai pas de chemise blanche.\nI don't have all the facts.\tJe ne dispose pas de tous les faits.\nI don't have all the facts.\tJe n'ai pas connaissance de tous les faits.\nI don't have any allergies.\tJe n'ai pas la moindre allergie.\nI don't have any furniture.\tJe n'ai aucun mobilier.\nI don't have any furniture.\tJe ne dispose d'aucun mobilier.\nI don't have any questions.\tJe n'ai aucune question.\nI don't have anything else.\tJe n'ai rien d'autre.\nI don't have books to read.\tJe n'ai pas de livres à lire.\nI don't have much time now.\tJe n'ai pas trop le temps maintenant.\nI don't have the authority.\tJe ne dispose pas de l'autorité.\nI don't have those answers.\tJe ne dispose pas de ces réponses.\nI don't have time for boys.\tJe n'ai pas de temps à consacrer aux garçons.\nI don't have time for that.\tJe n'ai pas de temps pour ça.\nI don't have time for that.\tJe ne dispose pas de temps pour ça.\nI don't have time for this.\tJe n'ai pas de temps pour ça.\nI don't have time for this.\tJe ne dispose pas de temps pour ça.\nI don't have time to argue.\tJe n'ai pas le temps de discuter.\nI don't have time to relax.\tJe n'ai pas le temps de me détendre.\nI don't have time to waste.\tJe n'ai pas de temps à perdre.\nI don't have to say a word.\tJe n'ai pas un mot à dire.\nI don't have your strength.\tJe n'ai pas votre force.\nI don't have your strength.\tJe n'ai pas ta force.\nI don't know exactly where.\tJe ne sais pas exactement où.\nI don't know exactly where.\tJ'ignore exactement où.\nI don't know him very well.\tJe ne le connais pas très bien.\nI don't know how to say it.\tJe ne sais comment le dire.\nI don't know how to use it.\tJ'ignore comment l'utiliser.\nI don't know how we did it.\tJ'ignore comment nous l'avons fait.\nI don't know if I can stay.\tJ'ignore si je peux rester.\nI don't know if I can stay.\tJe ne sais pas si je peux rester.\nI don't know if it is good.\tJe ne sais pas si c'est bon.\nI don't know if it is true.\tJe ne sais pas si c'est vrai.\nI don't know what happened.\tJe ne sais pas ce qui s'est passé.\nI don't know what happened.\tJ'ignore ce qui est arrivé.\nI don't know what happened.\tJ'ignore ce qui s'est produit.\nI don't know what happened.\tJ'ignore ce qui a eu lieu.\nI don't know what happened.\tJ'ignore ce qui s'est passé.\nI don't know what he'll do.\tJ'ignore ce qu'il fera.\nI don't know what is worse.\tJe ne sais pas ce qui est pire.\nI don't know what it's for.\tJ'ignore à quoi ça sert.\nI don't know what to think.\tJe ne sais pas ce que je dois penser.\nI don't know what we'll do.\tJ'ignore ce que nous ferons.\nI don't know what you mean.\tJe ne sais pas ce que tu veux dire.\nI don't know what you mean.\tJe ne sais pas ce que vous voulez dire.\nI don't know where exactly.\tJe ne sais pas où, exactement.\nI don't know where he went.\tJe ne sais pas où il est parti.\nI don't know. Let me check.\tJe ne sais pas. Laisse-moi vérifier !\nI don't know. Let me check.\tJe ne sais pas. Laissez-moi vérifier !\nI don't know. Let me check.\tJe l'ignore. Laisse-moi vérifier !\nI don't know. Let me check.\tJe l'ignore. Laissez-moi vérifier !\nI don't like anything here.\tJe n'aime rien ici.\nI don't like being cheated.\tJe n'aime pas que l'on me trompe.\nI don't like being cheated.\tJe n'apprécie pas que l'on me trompe.\nI don't like horror movies.\tJe n'apprécie pas les films d'horreur.\nI don't like that sentence.\tJe n'aime pas cette phrase.\nI don't like these remarks.\tCes propos me déplaisent.\nI don't like your attitude.\tJe n'aime pas votre attitude.\nI don't like your attitude.\tJe n'aime pas ton attitude.\nI don't need anyone's help.\tJe n'ai besoin de l'aide de personne.\nI don't need looking after.\tJe n'ai pas besoin qu'on s'occupe de moi.\nI don't ordinarily do this.\tJe ne fais pas ça, d'habitude.\nI don't really have a cold.\tJe n'ai pas vraiment de rhume.\nI don't really like horses.\tJe n'aime pas vraiment les chevaux.\nI don't recall saying that.\tJe ne me rappelle pas avoir dit ça.\nI don't recall saying that.\tJe ne me souviens pas avoir dit ça.\nI don't remember your name.\tJe ne me souviens pas de ton nom.\nI don't require assistance.\tJe ne requiers pas d'assistance.\nI don't see anybody inside.\tJe ne vois personne à l'intérieur.\nI don't see the connection.\tJe ne vois pas le lien.\nI don't see the difference.\tJe ne vois pas la différence.\nI don't see what we can do.\tJe ne vois pas ce que nous pouvons faire.\nI don't see what's changed.\tJe ne vois pas ce qui a changé.\nI don't take it personally.\tJe ne le prends pas personnellement.\nI don't think I can fix it.\tJe ne pense pas que je puisse le réparer.\nI don't think she is happy.\tJe ne pense pas qu'elle soit heureuse.\nI don't think that's right.\tJe ne pense pas que ce soit correct.\nI don't think you ought to.\tJe ne crois pas que tu devrais.\nI don't understand English.\tJe ne comprends pas l'anglais.\nI don't want Tom in my car.\tJe ne veux pas de Tom dans ma voiture.\nI don't want a big wedding.\tJe ne veux pas d'un mariage tralala.\nI don't want a big wedding.\tJe ne veux pas d'un grand mariage.\nI don't want any ice cream.\tJe ne veux pas de glace.\nI don't want any ice cream.\tJe ne veux pas de crème glacée.\nI don't want anything more.\tJe ne veux rien de plus.\nI don't want to bother you.\tJe ne veux pas té déranger.\nI don't want to discuss it.\tJe ne veux pas en discuter.\nI don't want to go bowling.\tJe ne veux pas aller faire du bowling.\nI don't want to go outside.\tJe ne veux pas aller dehors.\nI don't want to go to jail.\tJe ne veux pas aller en prison.\nI don't want to go to work.\tJe ne veux pas aller au travail.\nI don't want to let you go.\tJe ne veux pas te laisser partir.\nI don't want to live alone.\tJe ne veux pas vivre seul.\nI don't want to offend you.\tJe ne veux pas t'offenser.\nI don't want to offend you.\tJe ne veux pas t'offusquer.\nI don't want to offend you.\tJe ne veux pas vous offenser.\nI don't want to offend you.\tJe ne veux pas vous offusquer.\nI don't want to work today.\tJe ne veux pas travailler aujourd'hui.\nI don't want you to change.\tJe ne veux pas que tu changes.\nI don't want you to change.\tJe ne veux pas que vous changiez.\nI don't want your business.\tJe ne veux pas de votre entreprise.\nI don't want your business.\tJe ne veux pas de ton entreprise.\nI don't watch TV very much.\tJe ne regarde pas beaucoup la télé.\nI don't wear makeup at all.\tJe ne porte pas de maquillage du tout.\nI don't work there anymore.\tJe n'y travaille plus.\nI doubt if he will succeed.\tJe doute qu'il réussisse.\nI enjoyed talking with her.\tJ'ai aimé parler avec elle.\nI enjoyed talking with him.\tJ'ai adoré lui parler.\nI feel like I'm in a dream.\tJ'ai l'impression d'être dans un rêve.\nI feel like I'm not wanted.\tJe ne me sens pas désiré.\nI feel like I'm not wanted.\tJe ne me sens pas désirée.\nI feel like another person.\tJe me sens comme une personne toute différente.\nI feel like another person.\tJe me sens comme si j'étais une autre personne.\nI feel strongly about this.\tJ'y suis profondément opposé.\nI feel strongly about this.\tJ'y suis profondément opposée.\nI feel strongly about this.\tC'est une question qui me tient très à cœur.\nI feel terrible about that.\tJe me sens très mal à ce sujet.\nI felt awkward around them.\tJe me sentais mal à l'aise avec eux.\nI figured I'd be safe here.\tJe me suis imaginé que je serais en sécurité, ici.\nI figured I'd be safe here.\tJe me suis imaginée que je serais en sécurité, ici.\nI figured I'd be safe here.\tJ'ai songé que je serais en sécurité, ici.\nI figured it out by myself.\tJe l'ai résolu par mes propres moyens.\nI figured it out by myself.\tJe l'ai résolue par mes propres moyens.\nI figured it out by myself.\tJe l'ai résolu par moi-même.\nI figured it out by myself.\tJe l'ai résolue par moi-même.\nI figured it out by myself.\tJe l'ai compris tout seul.\nI figured it out by myself.\tJe l'ai comprise tout seul.\nI figured it out by myself.\tJe l'ai résolu tout seul.\nI figured it out by myself.\tJe l'ai résolue tout seul.\nI figured it out by myself.\tJe l'ai résolu toute seule.\nI figured it out by myself.\tJe l'ai résolue toute seule.\nI figured it out by myself.\tJe l'ai comprise toute seule.\nI figured it out by myself.\tJe l'ai compris toute seule.\nI figured something was up.\tJe me suis imaginé que quelque chose se tramait.\nI figured something was up.\tJe me suis imaginé qu'il se passait quelque chose.\nI figured something was up.\tJ'ai songé qu'il se passait quelque chose.\nI figured something was up.\tJ'ai songé que quelque chose se tramait.\nI figured you'd understand.\tJ'imaginais que vous comprendriez.\nI figured you'd understand.\tJ'imaginais que tu comprendrais.\nI finally passed that test.\tJ'ai finalement réussi cet examen.\nI find you very attractive.\tJe vous trouve très attirant.\nI find you very attractive.\tJe vous trouve très attirante.\nI find you very attractive.\tJe te trouve très attirant.\nI find you very attractive.\tJe te trouve très attirante.\nI folded the towel in half.\tJ'ai plié la serviette en deux.\nI forget your phone number.\tJ'oublie ton numéro de téléphone.\nI forget your phone number.\tJ'oublie votre numéro de téléphone.\nI forgot to call him today.\tJ'ai oublié de l'appeler aujourd'hui.\nI forgot to do my homework.\tJ'ai oublié de faire mes devoirs.\nI forgot what his name was.\tJ’ai oublié comment il s’appelle.\nI forgot where the car was.\tJ'ai oublié où se trouvait la voiture.\nI found a nice tie for Tom.\tJ'ai trouvé une belle cravate pour Tom.\nI found the book by chance.\tJ'ai trouvé le livre par hasard.\nI found the test difficult.\tJ'ai trouvé ce test difficile.\nI gave him my phone number.\tJe lui donnai mon numéro de téléphone.\nI gave him my phone number.\tJe lui ai donné mon numéro de téléphone.\nI gave you what you wanted.\tJe vous ai donné ce que vous vouliez.\nI gave you what you wanted.\tJe t'ai donné ce que tu voulais.\nI generally agree with her.\tEn général je suis d'accord avec elle.\nI get along with everybody.\tJe m'entends avec tout le monde.\nI go home right after work.\tJe vais chez moi tout de suite après le travail.\nI go right home after work.\tJe vais directement chez moi après le travail.\nI go to bed early at night.\tJe me couche tôt la nuit.\nI got bitten by mosquitoes.\tJ'ai été piqué par des moustiques.\nI got him to clean my room.\tJe lui ai fait nettoyer ma chambre.\nI got my hands quite dirty.\tJe me suis sali les mains.\nI got my right leg injured.\tJe me suis blessé à la jambe droite.\nI got over my cold quickly.\tJe me suis rapidement débarrassé de mon rhume.\nI got so wasted last night.\tJe me suis tellement ruiné, la nuit dernière.\nI got up late this morning.\tJe me suis levé tard ce matin.\nI got you something to eat.\tJ'ai été te chercher quelque chose à manger.\nI grew up in a little town.\tJ'ai grandi dans une petite ville.\nI grew up in a mining town.\tJ'ai grandi dans une petite ville minière.\nI grew up in a poor family.\tJ'ai grandi dans une famille pauvre.\nI grow many kinds of roses.\tJe cultive de nombreuses sortes de roses.\nI guess I've been too busy.\tJe suppose que j'ai été trop occupée.\nI guess I've been too busy.\tJe suppose que j'ai été trop occupé.\nI had a good night's sleep.\tJ'ai eu une bonne nuit de sommeil.\nI had a great time tonight.\tJe me suis éclatée, ce soir.\nI had a great time tonight.\tJe me suis éclaté, ce soir.\nI had a horrible childhood.\tJ'ai eu une enfance horrible.\nI had a sandwich for lunch.\tJ'ai mangé un sandwich pour le déjeuner.\nI had a similar experience.\tJ'ai fait une expérience semblable.\nI had chicken pox as a kid.\tJ'ai eu la varicelle, étant enfant.\nI had dinner ready for you.\tJ'avais à déjeuner pour toi.\nI had dinner ready for you.\tJ'avais à dîner pour toi.\nI had little to do with it.\tJ'eus peu à voir avec ça.\nI had planned to go abroad.\tJ'avais prévu de me rendre à l'étranger.\nI had the boy carry my bag.\tJe fis porter mon sac par le garçon.\nI had the boy carry my bag.\tJ'ai fait porter mon sac par le garçon.\nI had to decline his offer.\tJ'ai dû refuser son offre.\nI had to lend to him money.\tJe devais lui prêter de l'argent.\nI had to see it for myself.\tIl fallait que je le visse par moi-même.\nI had to see it for myself.\tIl a fallu que je le voie par moi-même.\nI had to work last weekend.\tJ'ai dû travailler le week-end dernier.\nI had to work last weekend.\tIl m'a fallu travailler le week-end dernier.\nI hardly ever run into him.\tJe ne le rencontre presque jamais.\nI hardly ever run into him.\tJe ne le croise presque jamais.\nI hardly ever run into him.\tJe ne tombe presque jamais sur lui.\nI hate to see children cry.\tJe déteste voir des enfants pleurer.\nI have a burning pain here.\tJ'ai ici une vive douleur.\nI have a burning pain here.\tJ'ai une vive douleur, là.\nI have a few English books.\tJ'ai quelques livres en anglais.\nI have a flexible schedule.\tJ'ai un horaire élastique.\nI have a friend in England.\tJ'ai un ami en Angleterre.\nI have a guilty conscience.\tJ'ai mauvaise conscience.\nI have a lot of work to do.\tJ'ai beaucoup de travail à faire.\nI have a pair of red shoes.\tJ'ai une paire de chaussures roses.\nI have a pair of red shoes.\tJ'ai une paire de chaussures rouges.\nI have a right to be happy.\tJ'ai le droit d'être heureux.\nI have a right to be happy.\tJ'ai le droit d'être heureuse.\nI have a vivid imagination.\tJ'ai une imagination débordante.\nI have a vivid imagination.\tJe suis doté d'une imagination débordante.\nI have almost no money now.\tJe n'ai presque plus d'argent, maintenant.\nI have already eaten lunch.\tJ'ai déjà pris mon déjeuner.\nI have been busy this week.\tJ'ai été occupé toute la semaine.\nI have been to the library.\tJe suis allé à la bibliothèque.\nI have better things to do.\tJ'ai de meilleures choses à faire.\nI have billions of dollars.\tJ'ai des milliards de dollars.\nI have done all that I can.\tJ'ai fait tout ce que je pouvais.\nI have faith in the future.\tJ'ai confiance en l'avenir.\nI have faith in the future.\tJ'ai foi en l'avenir.\nI have high blood pressure.\tJe suis hypertendu.\nI have high blood pressure.\tJ'ai de l'hypertension.\nI have just read this book.\tJe viens juste de lire ce livre.\nI have less money than you.\tJ'ai moins d'argent que toi.\nI have my doubts about Tom.\tJ'ai mes doutes sur Tom.\nI have never been to Nikko.\tJe n'ai jamais été à Nikko.\nI have never heard him lie.\tJe ne l'ai jamais entendu mentir.\nI have no plans whatsoever.\tJe n'ai pas le moindre projet.\nI have no time to watch TV.\tJe n'ai pas le temps de regarder la télévision.\nI have not seen him lately.\tJe ne l'ai pas vu ces derniers temps.\nI have nothing left to say.\tJe n'ai rien d'autre à ajouter.\nI have nothing to do today.\tJe n'ai rien à faire aujourd'hui.\nI have once been to Europe.\tJe suis déjà allé en Europe une fois.\nI have only a small garden.\tJ'ai seulement un petit jardin.\nI have only a small garden.\tJe n'ai qu'un petit jardin.\nI have other plans for you.\tJ'ai d'autres plans pour toi.\nI have other plans for you.\tJ'ai d'autres plans pour vous.\nI have read all his novels.\tJ'ai lu tous ses romans.\nI have seen him many times.\tJe l'ai vu à maintes reprises.\nI have so much to show you.\tJ'ai tant à te montrer.\nI have so much to show you.\tJ'ai tant à vous montrer.\nI have some errands to run.\tJ'ai quelques courses à faire.\nI have some errands to run.\tJ'ai quelques commissions à faire.\nI have some errands to run.\tJ'ai quelques courses à effectuer.\nI have some errands to run.\tJ'ai quelques emplettes à faire.\nI have some shopping to do.\tJ'ai quelques courses à faire.\nI have something in my eye.\tJ’ai quelque chose dans l’œil.\nI have things I want to do.\tIl y a des choses que je veux faire.\nI have time, so I'll do it.\tJ'ai du temps, donc je le ferai.\nI have to answer the phone.\tJe dois répondre au téléphone.\nI have to be there by 7:00.\tJe dois être là avant 7 heures.\nI have to button my jacket.\tIl faut que je boutonne ma veste.\nI have to buy one tomorrow.\tJe dois en acheter un demain.\nI have to catch that train.\tJe dois attraper ce train.\nI have to go to the toilet.\tJe dois aller aux toilettes.\nI have to talk to somebody.\tIl me faut m'entretenir avec quelqu'un.\nI have to talk to somebody.\tIl me faut discuter avec quelqu'un.\nI have very sensitive skin.\tMa peau est très sensible.\nI haven't finished my work.\tJe n'ai pas fini mon travail.\nI haven't seen you in ages.\tJe ne t'ai pas vu depuis des lustres.\nI haven't seen you in ages.\tJe ne vous ai pas vu depuis des lustres.\nI haven't seen you in ages.\tJe ne t'ai pas vue depuis des lustres.\nI haven't seen you in ages.\tJe ne vous ai pas vue depuis des lustres.\nI haven't seen you in ages.\tJe ne vous ai pas vus depuis des lustres.\nI haven't seen you in ages.\tJe ne vous ai pas vues depuis des lustres.\nI heard that she came here.\tJ'ai entendu dire qu'elle était venue ici.\nI heard you don't eat meat.\tJ'ai entendu dire que tu ne mangeais pas de viande.\nI heard you don't eat meat.\tJ'ai entendu dire que vous ne mangiez pas de viande.\nI hid it in my sock drawer.\tJe l'ai caché dans mon tiroir à chaussettes.\nI hid it in my sock drawer.\tJe l'ai cachée dans mon tiroir à chaussettes.\nI hid it in my sock drawer.\tJe l'ai dissimulé dans mon tiroir à chaussettes.\nI hid it in my sock drawer.\tJe l'ai dissimulée dans mon tiroir à chaussettes.\nI hid myself under the bed.\tJe me suis caché sous le lit.\nI hope Tom proves me wrong.\tJ'espère que Tom prouvera que j'ai tort.\nI hope he will overlook it.\tJ'espère qu'il n'y prêtera pas attention.\nI hope you had a nice trip.\tJ'espère que tu as fait bon voyage.\nI hope you understand that.\tJ'espère que vous comprenez cela.\nI hope you understand that.\tJ'espère que tu comprends cela.\nI hope you will call again.\tJ'espère que tu vas rappeler.\nI hope you're not offended.\tJ'espère que tu n'es pas offensée.\nI hope you're not offended.\tJ'espère que tu n'est pas offensé.\nI hope you're not offended.\tJ'espère que vous n'êtes pas offensé.\nI hope you're not offended.\tJ'espère que vous 'êtes pas offensée.\nI hope you're not offended.\tJ'espère que vous n'êtes pas offensées.\nI hope you're not offended.\tJ'espère que vous n'êtes pas offensés.\nI immediately built a fire.\tJ'ai immédiatement confectionné un feu.\nI joined the football team.\tJ'ai rejoint l'équipe de football.\nI just can't figure it out.\tJe n'arrive simplement pas à le comprendre.\nI just can't figure it out.\tJe n'arrive simplement pas à me le figurer.\nI just changed my password.\tJe viens de changer mon mot de passe.\nI just changed my password.\tJe n'ai fait que changer mon mot de passe.\nI just changed my password.\tJ'ai seulement changé mon mot de passe.\nI just don't like football.\tJe n'aime simplement pas le football.\nI just don't understand it.\tJe ne le comprends pas, un point c'est tout.\nI just don't understand it.\tJe ne le comprends tout simplement pas.\nI just fainted. That's all.\tJe me suis simplement évanoui. C'est tout.\nI just fainted. That's all.\tJe me suis simplement évanouie. C'est tout.\nI just feel a little dizzy.\tJe me sens juste un peu étourdi.\nI just feel a little dizzy.\tJe me sens juste un peu étourdie.\nI just feel a little dizzy.\tJe me sens juste un peu pris de vertiges.\nI just feel a little dizzy.\tJe me sens juste un peu prise de vertiges.\nI just feel a little dizzy.\tJe sens juste que j'ai un peu la tête qui tourne.\nI just felt a drop of rain.\tJe viens de sentir une goutte de pluie.\nI just followed the recipe.\tJe n'ai fait que suivre la recette.\nI just followed the recipe.\tJe m'en suis tenu à la recette.\nI just followed the recipe.\tJe m'en suis tenue à la recette.\nI just found out last week.\tJe viens de le découvrir la semaine dernière.\nI just got my first tattoo.\tJe viens de me faire faire mon premier tatouage.\nI just got my first tattoo.\tJe viens d'obtenir ma première parade militaire.\nI just have to make a call.\tIl faut juste que je passe un appel.\nI just have to make a call.\tIl faut juste que je donne un coup de fil.\nI just need you to help me.\tJ'ai juste besoin que tu m'aides.\nI just saw a shooting star.\tJe viens de voir une étoile filante.\nI just signed the contract.\tJe viens juste de signer le contrat.\nI just want to be prepared.\tJe veux être prêt, un point c'est tout.\nI just want to be prepared.\tJe veux être prête, un point c'est tout.\nI just want to be prepared.\tJe veux tout simplement être prêt.\nI just want to be prepared.\tJe veux tout simplement être prête.\nI just want to get married.\tJe veux simplement me marier.\nI just want to get married.\tJe veux me marier, un point c'est tout.\nI just want to talk to you.\tJe veux simplement te parler.\nI just want to talk to you.\tJe veux simplement vous parler.\nI just want you to be safe.\tJe veux juste que vous soyez en sécurité.\nI just want you to be safe.\tJe veux juste que tu sois en sécurité.\nI just wanted to apologize.\tJe voulais juste m'excuser.\nI just wanted to say hello.\tJe voulais juste dire bonjour.\nI kept hoping I'd meet Tom.\tJ'espérais rencontrer Tom.\nI kind of anticipated that.\tJe l'avais, en quelque sorte, anticipé.\nI knew Tom would like Mary.\tJe savais que Tom aimerait Mary.\nI knew exactly what it was.\tJe savais exactement ce que c'était.\nI knew it would be painful.\tJe savais que ce serait douloureux.\nI knew that he was reading.\tJe savais qu'il lisait.\nI knew this day was coming.\tJe savais que ce jour était en train d'advenir.\nI knew this day would come.\tJe savais que ce jour viendrait.\nI knew this was a bad idea.\tJe savais que c'était une mauvaise idée.\nI knew we forgot something.\tJe savais que nous oubliions quelque chose.\nI knew who my enemies were.\tJe savais qui étaient mes ennemis.\nI knew who my enemies were.\tJ'ai su qui étaient mes ennemis.\nI know Tom knows something.\tJe sais que Tom sait quelque chose.\nI know Tom likes to travel.\tJe sais que Tom aime voyager.\nI know as little as you do.\tJ'en sais aussi peu que toi.\nI know as little as you do.\tJ'en sais aussi peu que vous.\nI know he likes jazz music.\tJe sais qu’il aime le jazz.\nI know it's a lot of money.\tJe sais que c'est beaucoup d'argent.\nI know it's not impossible.\tJe sais que ce n'est pas impossible.\nI know nothing about music.\tJe ne connais rien à la musique.\nI know some of these girls.\tJe connais certaines de ces filles.\nI know something you don't.\tJe sais quelque chose que tu ignores.\nI know something you don't.\tJe sais quelque chose que tu ne sais pas.\nI know something you don't.\tJe sais quelque chose que vous ignorez.\nI know something you don't.\tJe sais quelque chose que vous ne savez pas.\nI know that Tom likes jazz.\tJe sais que Tom aime le jazz.\nI know they're still alive.\tJe sais qu'ils sont toujours en vie.\nI know what you want to do.\tJe sais ce que tu veux faire.\nI know what you want to do.\tJe sais ce que vous voulez faire.\nI know what you were doing.\tJe sais ce que tu faisais.\nI know what you were doing.\tJe sais ce que vous faisiez.\nI know what you were doing.\tJe sais ce que tu étais en train de faire.\nI know what you were doing.\tJe sais ce que vous étiez en train de faire.\nI know when I'm not wanted.\tJe sais lorsque je suis indésirable.\nI leave for Paris tomorrow.\tJe pars pour Paris demain.\nI left my card in the room.\tJ'ai laissé ma carte dans la chambre.\nI left my hat on the plane.\tJ'ai laissé mon chapeau dans l'avion.\nI left my phone in the car.\tJ'ai laissé mon téléphone dans la voiture.\nI left my umbrella at home.\tJ'ai laissé mon parapluie à la maison.\nI left my umbrella at home.\tJ'ai laissé mon parapluie chez moi.\nI like figuring things out.\tJ'aime comprendre les choses.\nI like having plenty to do.\tJ'aime avoir beaucoup à faire.\nI like it when you do that.\tJ'apprécie que tu fasses ça.\nI like it when you do that.\tJ'aime que tu fasses ça.\nI like it when you do that.\tJ'aime que vous fassiez ça.\nI like it when you do that.\tJ'apprécie que vous fassiez ça.\nI like playing with my dog.\tJ'aime jouer avec mon chien.\nI like seeing you this way.\tJ'aime vous voir ainsi.\nI like seeing you this way.\tJ'aime te voir ainsi.\nI like the way that smells.\tJ'aime l'odeur que ça a.\nI like the way this tastes.\tJ'aime le goût que ça a.\nI like this city very much.\tJ'aime beaucoup cette ville.\nI like to feed the pigeons.\tJ'aime nourrir les pigeons.\nI like to travel by myself.\tJ'aime voyager seul.\nI like to walk in the rain.\tJ'aime marcher sous la pluie.\nI like wearing old clothes.\tJ'aime porter de vieux vêtements.\nI like wearing old clothes.\tJ'aime porter de vieux habits.\nI like what you've written.\tJ'aime ce que vous avez écrit.\nI like what you've written.\tJ'aime ce que tu as écrit.\nI like what you've written.\tJ'apprécie ce que vous avez écrit.\nI like your new hair color.\tJ'aime ta nouvelle couleur de cheveux.\nI like your new hair color.\tJ'aime votre nouvelle couleur de cheveux.\nI listen to jazz sometimes.\tJ'écoute parfois du jazz.\nI listen to jazz sometimes.\tJ'écoute du jazz, parfois.\nI live pretty close to Tom.\tJe vis assez proche de chez Tom.\nI lost my health insurance.\tJ'ai perdu ma couverture santé.\nI lost my shoe in the fire.\tJ'ai perdu ma chaussure dans l'incendie.\nI lost my travelers checks.\tJ'ai perdu mes chèques de voyage.\nI lost my way in the woods.\tJ'ai perdu mon chemin dans les bois.\nI lost no time in doing it.\tJe n'ai pas perdu de temps à le faire.\nI lost sight of my friends.\tJ'ai perdu de vue mes amis.\nI lost sight of my friends.\tJ'ai perdu mes amis de vue.\nI love going to the movies.\tJ’adore aller au cinéma.\nI love jokes about animals.\tJ'adore les blagues sur les animaux.\nI love jokes about animals.\tJ'adore les plaisanteries à propos des animaux.\nI love my mother very much.\tJ'aime beaucoup ma mère.\nI love seeing you so happy.\tJ'adore vous voir aussi heureuse.\nI love seeing you so happy.\tJ'adore vous voir aussi heureuses.\nI love seeing you so happy.\tJ'adore te voir aussi heureuse.\nI love seeing you so happy.\tJ'adore vous voir aussi heureux.\nI love seeing you so happy.\tJ'adore te voir aussi heureux.\nI love to go to the movies.\tJ’adore aller au cinéma.\nI love what I'm doing here.\tJ'adore ce que je fais ici.\nI love what you're wearing.\tJ'adore ce que vous portez.\nI love what you're wearing.\tJ'adore ce que tu portes.\nI love you for who you are.\tJe t'aime pour ce que tu es.\nI love you for who you are.\tJe vous aime pour ce que vous êtes.\nI love you just as you are.\tJe t'aime juste comme tu es.\nI love you just as you are.\tJe t'aime exactement comme tu es.\nI love you the best of all.\tC'est toi que, de tous, j'aime le plus.\nI love you the best of all.\tC'est toi que, de toutes, j'aime le plus.\nI love you the best of all.\tC'est vous que, de tous, j'aime le plus.\nI love you the best of all.\tC'est vous que, de toutes, j'aime le plus.\nI loved going to the beach.\tJ'aimais aller à la plage.\nI loved watching you dance.\tJ'ai adoré te regarder danser.\nI loved watching you dance.\tJ'ai adoré vous regarder danser.\nI made a few modifications.\tJ'ai apporté quelques modifications.\nI made him change his plan.\tJe l'ai amené à changer son plan.\nI made him sweep the floor.\tJe lui ai fait balayer le sol.\nI maxed out my credit card.\tJ'ai épuisé ma carte de crédit.\nI maxed out my credit card.\tJ'ai explosé ma carte de crédit.\nI may be overthinking this.\tIl se peut que j'y accorde trop de réflexions.\nI may not have enough time.\tIl se peut que je n'aie pas assez de temps.\nI may not have enough time.\tIl se peut que je n'aie pas suffisamment de temps.\nI met her at Tokyo Station.\tJe l'ai rencontrée à la gare de Tokyo.\nI met his sister last week.\tJ'ai rencontré sa sœur la semaine dernière.\nI met my friends yesterday.\tJ'ai rencontré mes amis hier.\nI met your father just now.\tJe viens de rencontrer ton père à l'instant.\nI must brush up my English.\tIl faut que je révise mon anglais.\nI must brush up my English.\tJe dois renforcer mon niveau en anglais.\nI must get a new suit made.\tIl faut que je me fasse faire un nouveau costume.\nI must have made a mistake.\tJ'ai dû faire une erreur.\nI must have made a mistake.\tJ'ai dû commettre une erreur.\nI must've missed something.\tJ'ai dû louper quelque chose.\nI need 30 more days to pay.\tJ'ai besoin de trente jours de plus pour payer.\nI need a bigger frying pan.\tJ'ai besoin d'une plus grande poêle à frire.\nI need a bigger frying pan.\tJ'ai besoin d'une poêle à frire plus grande.\nI need a few minutes alone.\tJ'ai besoin d'être seul, quelques minutes.\nI need a few minutes alone.\tJ'ai besoin d'être seule, quelques minutes.\nI need a five-minute break.\tJ'ai besoin d'une pause de cinq minutes.\nI need a little more space.\tJ'ai besoin d'un peu plus d'espace.\nI need a new pair of shoes.\tJ'ai besoin d'une nouvelle paire de chaussures.\nI need nine hours of sleep.\tJ'ai besoin de neuf heures de sommeil.\nI need the following items.\tJ'ai besoin des choses suivantes.\nI need to go eat something.\tJe dois aller manger quelque chose.\nI need to go milk the cows.\tJe dois aller traire les vaches.\nI need to go milk the cows.\tIl me faut aller traire les vaches.\nI need to know by tomorrow.\tJ'ai besoin de savoir pour demain.\nI need to lose five pounds.\tIl faut que je perde cinq livres.\nI need to lose some weight.\tIl me faut perdre un peu de poids.\nI need to make a few calls.\tIl me faut passer quelques appels.\nI need to press the button.\tIl me faut appuyer sur le bouton.\nI need to press the button.\tIl faut que j'appuie sur le bouton.\nI need to renew my ID card.\tJe dois faire renouveler ma carte d'identité.\nI need you to come with me.\tJ'ai besoin que tu viennes avec moi.\nI need you to come with me.\tJ'ai besoin que vous veniez avec moi.\nI never did like it anyway.\tJe ne l'ai jamais apprécié, de toutes façons.\nI never felt like I fit in.\tJe n'ai jamais eu l'impression d'être à ma place.\nI never mentioned it again.\tJe ne l'ai plus jamais mentionné.\nI never really knew my dad.\tJe n'ai jamais vraiment connu mon père.\nI never received the money.\tJe n'ai jamais reçu l'argent.\nI never should've left you.\tJe n'aurais jamais dû te quitter.\nI never should've left you.\tJe n'aurais jamais dû vous quitter.\nI never stopped loving you.\tJe t’ai toujours aimé.\nI never stopped loving you.\tJe t’ai toujours aimée.\nI never suspected anything.\tJe n'ai jamais rien suspecté.\nI never thought about that.\tJe n'y ai jamais pensé.\nI never thought about that.\tJe n'y ai jamais songé.\nI never wanted to harm you.\tJe n'ai jamais voulu te faire de mal.\nI never wanted to harm you.\tJe n'ai jamais voulu vous faire de mal.\nI never wanted to hurt you.\tJe n'ai jamais voulu te faire de mal.\nI never wanted to hurt you.\tJe n'ai jamais voulu te blesser.\nI no longer live in Boston.\tJe n’habite plus à Boston.\nI often sing in the shower.\tJe chante souvent sous la douche.\nI only have one suggestion.\tJe n'ai qu'une suggestion.\nI own some very old stamps.\tJe possède quelques très vieux timbres.\nI paid five dollars to him.\tJe lui ai payé 5 dollars.\nI passed on the job to him.\tJe lui ai transféré le boulot.\nI plan to go to the movies.\tJe compte aller au cinéma.\nI play bass in a jazz band.\tJe joue de la basse dans un groupe de jazz.\nI pointed my camera at her.\tJ'ai pointé mon appareil photo sur elle.\nI prefer red wine to white.\tJe préfère le vin rouge au blanc.\nI prefer riding to walking.\tJe préfère conduire à marcher.\nI promised not to tell him.\tJe lui ai promis de ne pas le lui dire.\nI put my coat on the table.\tJe mis mon manteau sur la table.\nI rarely talk on the phone.\tJe ne téléphone que rarement.\nI read a book while eating.\tJ'ai lu un livre en mangeant.\nI really can't accept this.\tJe ne peux vraiment pas accepter ça.\nI really do like Christmas.\tJ'aime vraiment Noël.\nI really do need your help.\tJ'ai vraiment besoin de ton aide.\nI really do need your help.\tJ'ai vraiment besoin de votre aide.\nI really have to get going.\tIl me faut vraiment m'en aller.\nI really hope you can come.\tJ'espère vraiment que tu puisses venir.\nI really hope you can come.\tJ'espère vraiment que vous puissiez venir.\nI really hope you're right.\tJ'espère vraiment que tu aies raison.\nI really hope you're right.\tJ'espère vraiment que vous ayez raison.\nI really like my coworkers.\tJ'aime vraiment mes collègues.\nI really regret doing that.\tJe regrette vraiment d'avoir fait ça.\nI really trust his ability.\tJ'ai vraiment confiance en son talent.\nI really want a motorcycle.\tJe veux vraiment une moto.\nI really want to thank you.\tJe veux vraiment vous remercier.\nI really want to thank you.\tJe veux vraiment te remercier.\nI remember seeing him once.\tJe me souviens l'avoir vu une fois.\nI rent a room by the month.\tJe loue une chambre au mois.\nI returned his book to him.\tJe lui ai rendu son livre.\nI said nothing of the sort.\tJe n'ai rien dit de tel.\nI said that I was confused.\tJ'ai dit que j'étais désorienté.\nI said there's no one here.\tJ'ai dit qu'il n'y avait personne ici.\nI saw a fly on the ceiling.\tJe vis une mouche au plafond.\nI saw a little boy running.\tJe vis un petit garçon courir.\nI saw a man enter the room.\tJ'ai vu un homme entrer dans la chambre.\nI saw her a week ago today.\tJe l'ai vue il y a aujourd'hui une semaine.\nI saw him cross the street.\tJe l'ai vu traverser la route.\nI saw him cross the street.\tJe l'ai vu traverser la rue.\nI saw him cross the street.\tJe le vis traverser la route.\nI saw him playing baseball.\tJe l'ai vu jouer au baseball.\nI saw him with my own eyes.\tJe l'ai vu de mes propres yeux.\nI saw his mother scold him.\tJ'ai vu sa mère le gronder.\nI saw land in the distance.\tJ'ai vu le rivage au loin.\nI saw my friends yesterday.\tJ'ai vu mes amis hier.\nI saw people wearing jeans.\tJ'ai vu des gens qui portaient des jeans.\nI saw that Tom was smiling.\tJ'ai vu que Tom souriait.\nI see life differently now.\tDésormais, je vois la vie autrement.\nI see you've made a friend.\tJe vois que tu t'es fait un ami.\nI see you've made a friend.\tJe vois que tu t'es fait une amie.\nI see you've made a friend.\tJe vois que vous vous êtes fait un ami.\nI see you've made a friend.\tJe vois que vous vous êtes fait une amie.\nI should get back upstairs.\tJe devrais retourner à l'étage.\nI should have come earlier.\tJ'aurais dû venir plus tôt.\nI should have left earlier.\tJ'aurais dû partir plus tôt.\nI should have studied more.\tJ'aurais dû étudier davantage.\nI should have told someone.\tJ'aurais dû le dire à quelqu'un.\nI shouldn't have done that.\tJe n'aurais pas dû faire ça.\nI shouldn't have done this.\tJe n'aurais pas dû faire ceci.\nI slept in front of the TV.\tJ'ai dormi devant la télé.\nI slept with my clothes on.\tJ'ai dormi avec mes vêtements.\nI slept with my clothes on.\tJ'ai dormi avec mes vêtements sur moi.\nI slept with the light off.\tJ'ai dormi avec la lumière éteinte.\nI smiled and waved at them.\tJe leur ai souri et leur ai fait des signes de la main.\nI started reading the book.\tJe me mis à lire le livre.\nI study Chinese in Beijing.\tJ'étudie le mandarin, à Pékin.\nI suggest we all calm down.\tJe suggère que nous nous calmions tous.\nI suggest we all calm down.\tJe suggère que nous nous calmions toutes.\nI suppose I'd better leave.\tJe suppose que je ferais mieux de partir.\nI suppose he's got a point.\tJe suppose qu'il a raison.\nI suppose that's all right.\tJe suppose que c'est bon.\nI suppose that's all right.\tJe suppose que ça va.\nI suppose we could do that.\tJe suppose que nous pourrions le faire.\nI swear it's the last time.\tJe jure que c'est la dernière fois.\nI then began to understand.\tJ’ai alors commencé à comprendre.\nI think I'm going to faint.\tJe pense que je vais m'évanouir.\nI think I'm losing my mind.\tJe pense que je perds l'esprit.\nI think I'm ready to leave.\tJe pense que je suis prêt à partir.\nI think I'm ready to leave.\tJe pense que je suis prête à partir.\nI think I've broken my arm.\tJe pense que je me suis cassé le bras.\nI think I've persuaded Tom.\tJe crois que j'ai convaincu Tom.\nI think Tom is a nice name.\tJe pense que Tom est un joli nom.\nI think Tom is incompetent.\tJe pense que Tom est incompétent.\nI think Tom is still alive.\tJe pense que Tom est encore en vie.\nI think Tom needs stitches.\tJe pense que Tom a besoin de points de suture.\nI think Tom wanted my help.\tJe pense que Tom voulait mon aide.\nI think Tom wants our help.\tJe pense que Tom veut notre aide.\nI think about it every day.\tJ'y pense tous les jours.\nI think everybody's hungry.\tJe pense que tout le monde a faim.\nI think he'll never return.\tJe pense qu'il ne reviendra plus jamais.\nI think he's an honest man.\tJe pense qu'il est honnête homme.\nI think it just might work.\tJe pense que ça pourrait fonctionner.\nI think it was an accident.\tJe pense que c'était un accident.\nI think it will rain today.\tJe pense qu'il va pleuvoir aujourd'hui.\nI think it's a possibility.\tJe pense que c'est une possibilité.\nI think it's all right now.\tJe pense que c'est bon à présent.\nI think it's going to rain.\tJe pense qu'il va pleuvoir.\nI think it's going to rain.\tJe crois qu'il va pleuvoir.\nI think it's time to begin.\tJe pense qu'il est l'heure de commencer.\nI think it's very romantic.\tJe pense que c'est très romantique.\nI think love doesn't exist.\tJe pense que l'amour n'existe pas.\nI think maybe Tom needs me.\tJe pense que Tom a besoin de moi.\nI think maybe we should go.\tJe pense qu'on devrait y aller.\nI think of you as a friend.\tJe pense à toi en tant qu'ami.\nI think of you as a friend.\tJe pense à vous en tant qu'ami.\nI think of you as a friend.\tJe pense à toi en tant qu'amie.\nI think of you as a friend.\tJe pense à vous en tant qu'amie.\nI think she's 40 years old.\tJe pense qu'elle a 40 ans.\nI think something is wrong.\tJe pense qu'il y a quelque chose qui cloche.\nI think that might be wise.\tJe pense que ce serait sage.\nI think that would be best.\tJe pense que ce serait le mieux.\nI think that would be nice.\tJe pense que ce serait sympa.\nI think that would be wise.\tJe pense que ce serait sage.\nI think that's a good idea.\tJe pense que c'est une bonne idée.\nI think that's a good idea.\tJe pense que c'est une riche idée.\nI think that's a good plan.\tJe pense que c'est un bon plan.\nI think that's the problem.\tJe crois que c'est le problème.\nI think they went this way.\tJe pense qu'ils sont allés dans cette direction.\nI think they went this way.\tJe pense qu'elles sont allées dans cette direction.\nI think this is a bad idea.\tJe pense que c'est une mauvaise idée.\nI think we can handle that.\tJe pense que nous pouvons gérer cela.\nI think we can handle that.\tJe pense que nous pouvons le gérer.\nI think we can handle this.\tJe pense que nous pouvons gérer ça.\nI think we need more water.\tJe pense que nous avons besoin de plus d'eau.\nI think we need more water.\tJe pense qu'il nous faut davantage d'eau.\nI think we should break up.\tJe pense que nous devrions nous séparer.\nI think we should break up.\tJe pense que nous devrions rompre.\nI think we should call Tom.\tJe pense que nous devrions appeler Tom.\nI think we should hire Tom.\tJe pense que nous devrions engager Tom.\nI think we should sit down.\tJe pense que nous devrions nous asseoir.\nI think we should stop now.\tJe pense que nous devrions arrêter, maintenant.\nI think we should stop now.\tJe pense que nous devrions cesser, maintenant.\nI think we'll be safe here.\tJe pense que nous serons ici en sécurité.\nI think we're going to win.\tJe pense que nous allons gagner.\nI think we're pretty lucky.\tJe pense que nous avons pas mal de chance.\nI think you did a good job.\tJe pense que vous avez fait du bon boulot.\nI think you did a good job.\tJe pense que tu as fait du bon boulot.\nI think you knew my father.\tJe pense que tu connaissais mon père.\nI think you knew my father.\tJe pense que vous connaissiez mon père.\nI think you need some rest.\tJe pense que tu as besoin de repos.\nI think you need some rest.\tJe pense que vous avez besoin de repos.\nI think you really mean it.\tJe pense que vous êtes sérieux.\nI think you should ask Tom.\tJe pense que tu devrais demander à Tom.\nI think you'd better leave.\tJe pense que vous feriez mieux de partir.\nI think you'd better leave.\tJe pense que tu ferais mieux de partir.\nI think you're interesting.\tJe pense que tu es intéressant.\nI think you're interesting.\tJe pense que tu es intéressante.\nI think you're interesting.\tJe pense que vous êtes intéressant.\nI think you're interesting.\tJe pense que vous êtes intéressante.\nI think you're interesting.\tJe pense que vous êtes intéressants.\nI think you're interesting.\tJe pense que vous êtes intéressantes.\nI think you've done enough.\tJe pense que tu en as fait assez.\nI think you've done enough.\tJe pense que vous en avez fait assez.\nI thought I had everything.\tJe pensais tout avoir.\nI thought I had until 2:30.\tJe pensais que j'avais jusqu'à deux heures et demie.\nI thought I recognized Tom.\tJe pensais avoir reconnu Tom.\nI thought I recognized you.\tJe pensais vous avoir reconnu.\nI thought I recognized you.\tJe pensais t'avoir reconnu.\nI thought I recognized you.\tJe pensais vous avoir reconnue.\nI thought I recognized you.\tJe pensais vous avoir reconnus.\nI thought I recognized you.\tJe pensais vous avoir reconnues.\nI thought I recognized you.\tJe pensais t'avoir reconnue.\nI thought I was alone here.\tJe pensais que j'étais seul ici.\nI thought I was alone here.\tJe pensais que j'étais seule, ici.\nI thought I was alone here.\tJe pensais être seul, ici.\nI thought I was alone here.\tJe pensais être seule, ici.\nI thought I'd be safe here.\tJe pensais que je serais en sécurité ici.\nI thought I'd be safe here.\tJe pensais être en sécurité, ici.\nI thought I'd surprise you.\tJe pensais que je te surprendrais.\nI thought I'd surprise you.\tJe pensais que je vous surprendrais.\nI thought I'd surprise you.\tJe pensais vous surprendre.\nI thought I'd surprise you.\tJe pensais te surprendre.\nI thought Tom didn't drink.\tJe pensais que Tom ne buvait pas.\nI thought Tom was Canadian.\tJe pensais que Tom était Canadien.\nI thought Tom was a doctor.\tJe pensais que Tom était médecin.\nI thought Tom was a farmer.\tJe pensais que Tom était fermier.\nI thought Tom was bluffing.\tJe pensais que Tom bluffait.\nI thought Tom was sleeping.\tJe pensais que Tom dormait.\nI thought Tom was with you.\tJe pensais que Tom était avec toi.\nI thought Tom was with you.\tJe pensais que Tom était avec vous.\nI thought he wouldn't come.\tJe pensais qu'il ne viendrait pas.\nI thought it was hilarious.\tJe pensai que c'était hilarant.\nI thought it was hilarious.\tJ'ai pensé que c'était hilarant.\nI thought it was lunchtime.\tJe pensais qu'il était l'heure de déjeuner.\nI thought it'd be worth it.\tJe pensais que ça en vaudrait la peine.\nI thought that he was rich.\tJe pensais qu'il était riche.\nI thought that was obvious.\tJe pensais que c'était évident.\nI thought we had more time.\tJe pensais que nous disposions de davantage de temps.\nI thought you had homework.\tJe pensais que tu avais des devoirs.\nI thought you had homework.\tJe pensais que vous aviez des devoirs.\nI thought you needed money.\tJe pensais que tu avais besoin d'argent.\nI thought you needed money.\tJe pensais que vous aviez besoin d'argent.\nI thought you needed money.\tJ'ai pensé que vous aviez besoin d'argent.\nI thought you needed money.\tJ'ai pensé que tu avais besoin d'argent.\nI thought you were injured.\tJe pensais que tu étais blessé.\nI thought you were injured.\tJe pensais que tu étais blessée.\nI thought you were injured.\tJ'ai pensé que tu étais blessé.\nI thought you were injured.\tJ'ai pensé que tu étais blessée.\nI thought you were injured.\tJ'ai pensé que vous étiez blessé.\nI thought you were injured.\tJ'ai pensé que vous étiez blessée.\nI thought you were injured.\tJ'ai pensé que vous étiez blessés.\nI thought you were injured.\tJ'ai pensé que vous étiez blessées.\nI thought you were injured.\tJe pensais que vous étiez blessé.\nI thought you were injured.\tJe pensais que vous étiez blessée.\nI thought you were injured.\tJe pensais que vous étiez blessés.\nI thought you were injured.\tJe pensais que vous étiez blessées.\nI thought you were kidding.\tJe pensais que tu plaisantais.\nI thought you were kidding.\tJe pensais que vous plaisantiez.\nI thought you were kidding.\tJ'ai pensé que vous plaisantiez.\nI thought you were kidding.\tJ'ai pensé que tu plaisantais.\nI thought you were serious.\tJe pensais que tu étais sérieux.\nI thought you were serious.\tJ'ai pensé que tu étais sérieux.\nI thought you were serious.\tJe pensais que vous étiez sérieux.\nI thought you were serious.\tJ'ai pensé que vous étiez sérieux.\nI thought you were serious.\tJe pensais que vous étiez sérieuse.\nI thought you were serious.\tJ'ai pensé que vous étiez sérieuse.\nI thought you were serious.\tJ'ai pensé que vous étiez sérieuses.\nI thought you were serious.\tJe pensais que vous étiez sérieuses.\nI thought you were serious.\tJ'ai pensé que tu étais sérieuse.\nI thought you were serious.\tJe pensais que tu étais sérieuse.\nI thought you were working.\tJe pensais que tu travaillais.\nI thought you were working.\tJe pensais que vous travailliez.\nI thought you were working.\tJ'ai pensé que tu travaillais.\nI thought you were working.\tJ'ai pensé que vous travailliez.\nI thought you'd be pleased.\tJe pensais que vous seriez satisfait.\nI thought you'd be pleased.\tJe pensais que vous seriez satisfaite.\nI thought you'd be pleased.\tJe pensais que vous seriez satisfaits.\nI thought you'd be pleased.\tJe pensais que vous seriez satisfaites.\nI thought you'd be pleased.\tJe pensais que tu serais satisfait.\nI thought you'd be pleased.\tJe pensais que tu serais satisfaite.\nI thought you'd never call.\tJe pensais ne jamais vous avoir.\nI thought you'd understand.\tJe pensais que vous comprendriez.\nI thought you'd understand.\tJe pensais que tu comprendrais.\nI told Tom we were friends.\tJ'ai dit à Tom que nous étions amis.\nI took Tom to the hospital.\tJ'ai emmené Tom à l'hôpital.\nI took her for an American.\tJe l'ai prise pour une Américaine.\nI took him a cup of coffee.\tJ'ai pris une tasse de café pour lui.\nI took part in the contest.\tJe pris part au concours.\nI took part in the contest.\tJ'ai pris part à la compétition.\nI treat everybody the same.\tJe traite tout le monde de la même manière.\nI tried in vain to open it.\tJ'ai essayé en vain de l'ouvrir.\nI try not to bother anyone.\tJ'essaie de ne pas déranger qui que ce soit.\nI turned to him for advice.\tJe lui ai demandé conseil.\nI understand what you mean.\tJe comprends ce que tu veux dire.\nI understand what you mean.\tJe vois ce que tu veux dire.\nI understand your feelings.\tJe comprends tes sentiments.\nI understand your feelings.\tJe comprends vos sentiments.\nI understand your language.\tJe comprends votre langue.\nI used to collect coasters.\tJe collectionnais les dessous de verre.\nI used to do that as a kid.\tJe faisais ça, enfant.\nI used to do that as a kid.\tEnfant, je faisais ça.\nI used to do that as a kid.\tEnfant, je le faisais.\nI used to do that as a kid.\tJe le faisais, enfant.\nI used to live near a park.\tJe vivais près d'un parc.\nI used to live near a park.\tJ'habitais près d'un parc.\nI usually go to bed at ten.\tEn général je vais me coucher à dix heures.\nI waited for a bus to come.\tJ'ai attendu l'arrivée du bus.\nI walked across the street.\tJe traversai la rue.\nI want a dozen cream puffs.\tJe voudrais une douzaine de choux à la crème.\nI want a dozen cream puffs.\tJ'aimerais une douzaine de choux à la crème.\nI want a kitchen like this.\tJe veux une cuisine comme ça.\nI want a personal computer.\tJe veux un ordinateur individuel.\nI want more days like this.\tJe veux davantage de journées telles que celle-ci.\nI want somebody to talk to.\tJ'aimerais quelqu'un avec qui parler.\nI want those kids to leave.\tJe veux que ces gosses se taillent.\nI want to be here with you.\tJe veux être ici avec toi.\nI want to be here with you.\tJe veux être là avec toi.\nI want to be here with you.\tJe veux être ici avec vous.\nI want to be here with you.\tJe veux être là avec vous.\nI want to buy a dozen eggs.\tJe veux acheter une douzaine d'œufs.\nI want to buy a new camera.\tJe veux acheter un nouvel appareil photo.\nI want to buy my bike back.\tJe veux racheter mon vélo.\nI want to change the world.\tJe veux changer le monde.\nI want to date other women.\tJe veux sortir avec d'autres femmes.\nI want to drink some water.\tJe veux boire de l'eau.\nI want to file a complaint.\tJe veux déposer plainte.\nI want to file a complaint.\tJe veux enregistrer une réclamation.\nI want to go over it again.\tJe veux le parcourir à nouveau.\nI want to have my own room.\tJe veux ma propre chambre.\nI want to know where it is.\tJe veux savoir où ça se trouve.\nI want to know who that is.\tJe veux savoir de qui il s'agit.\nI want to learn how to ski.\tJe veux apprendre à skier.\nI want to live in a castle.\tJe veux habiter dans un château.\nI want to make a complaint.\tJe veux porter plainte.\nI want to make a complaint.\tJe veux faire une réclamation.\nI want to make a statement.\tJe veux faire une déclaration.\nI want to make new friends.\tJe veux me faire de nouveaux amis.\nI want to make new friends.\tJe veux me faire de nouvelles amies.\nI want to meet the teacher.\tJe veux rencontrer le professeur.\nI want to see what happens.\tJe veux voir ce qui se produit.\nI want to see what happens.\tJe veux voir ce qui se passe.\nI want to see what happens.\tJe veux voir ce qui arrive.\nI want to serve my country.\tJe veux servir mon pays.\nI want to stay here longer.\tJe veux rester ici plus longtemps.\nI want to talk to you, Tom.\tJe veux te parler, Tom.\nI want to talk to you, Tom.\tJe veux vous parler, Tom.\nI want to think for myself.\tJe veux réfléchir par moi-même.\nI want what's best for you.\tJe ne veux que ton bien.\nI want you all out of here.\tJe veux vous voir tous hors d'ici.\nI want you all out of here.\tJe veux vous voir toutes hors d'ici.\nI want you gone by sunrise.\tJe veux que vous soyez parti d'ici le lever du soleil.\nI want you gone by sunrise.\tJe veux que tu sois parti d'ici le lever du soleil.\nI want you out of here now.\tJe vous veux hors d'ici maintenant !\nI want you to be my friend.\tJe veux que vous soyez mon ami.\nI want you to be my friend.\tJe veux que vous soyez mon amie.\nI want you to be my friend.\tJe veux que tu sois mon ami.\nI want you to be my friend.\tJe veux que tu sois mon amie.\nI want you to come with me.\tJe veux que tu viennes avec moi.\nI want you to go somewhere.\tJe veux que vous alliez quelque part.\nI want you to go somewhere.\tJe veux que tu ailles quelque part.\nI want you to go to Boston.\tJe veux que tu ailles à Boston.\nI want you to go to Boston.\tJe veux que vous alliez à Boston.\nI want you to stay with me.\tJe veux que tu restes avec moi.\nI want you to wash the car.\tJe veux que tu laves la voiture.\nI wanted to show it to you.\tJe voulais te le montrer.\nI wanted to show it to you.\tJe voulais te la montrer.\nI warned him of the danger.\tJe l'ai prévenu du danger.\nI was arrested on the spot.\tJ'ai été arrêté sur-le-champ.\nI was arrested on the spot.\tJ'ai été arrêtée sur-le-champ.\nI was blinded by the light.\tJ'étais aveuglé par la lumière.\nI was born and raised here.\tJe suis né et j'ai grandi ici.\nI was born and raised here.\tJe suis née et j'ai grandi ici.\nI was born in 1988 in York.\tJe suis né en mille neuf cent quatre-vingt-huit à York.\nI was born on June 4, 1974.\tJe suis né le 4 juin 1974.\nI was feeling blue all day.\tJe me sentais déprimé toute la journée.\nI was ignorant of his plan.\tJe ne connaissais pas son plan.\nI was in London last month.\tJ'étais à Londres le mois dernier.\nI was just taking a shower.\tJ'étais justement en train de prendre une douche.\nI was married at that time.\tJ'étais marié à cette époque.\nI was off duty at the time.\tJe n'étais pas de service à ce moment.\nI was off duty at the time.\tJe n'étais pas en service à ce moment.\nI was pleasantly surprised.\tJ'ai été agréablement surpris.\nI was pleasantly surprised.\tJe fus agréablement surpris.\nI was pleasantly surprised.\tJe fus agréablement surprise.\nI was reading a novel then.\tJe lisais alors un roman.\nI was really proud of that.\tJ'étais vraiment fier de ça.\nI was taking a shower then.\tJ'étais en train de prendre une douche.\nI was tired of watching TV.\tJe suis lassé de regarder la télé.\nI was unable to go outside.\tJ'étais dans l'incapacité de me rendre à l'extérieur.\nI was unable to go outside.\tJ'étais incapable d'aller dehors.\nI was young and crazy once.\tJ'étais jeune et fou autrefois.\nI wasn't feeling very well.\tJe ne me sentais pas très bien.\nI wasn't making fun of you.\tJe ne me moquais pas de toi.\nI wasn't making fun of you.\tJe ne me moquais pas de vous.\nI wasn't prepared for this.\tJe n'étais pas préparé à cela.\nI wasn't prepared for this.\tJe n'étais pas préparée à cela.\nI wasn't talking about Tom.\tJe ne parlais pas de Tom.\nI wasn't talking about you.\tJe ne parlais pas de toi.\nI wasn't talking about you.\tJe ne parlais pas de vous.\nI wasn't too sure about it.\tJe n'en étais pas très certain.\nI wasn't too sure about it.\tJe n'en étais pas très certaine.\nI watched a movie on video.\tJ'ai regardé un film en vidéo.\nI went fishing last Monday.\tJe suis allé pêcher lundi dernier.\nI went not once, but twice.\tJ'y suis allé non pas une fois mais deux.\nI went not once, but twice.\tJ'y suis allée non pas une fois mais deux.\nI went out with my friends.\tJe suis sorti avec mes amis.\nI went swimming in the sea.\tJe suis allé nager à la mer.\nI went to bed after eating.\tAprès le repas, je suis allé me coucher.\nI went to see a show today.\tJe suis allé voir un spectacle aujourd'hui.\nI will always remember you.\tJe me souviendrai toujours de toi.\nI will always remember you.\tJe me souviendrai toujours de vous.\nI will bring it right away.\tJe l'apporte de suite.\nI will bring it right away.\tJe l'apporte tout de suite.\nI will bring it right away.\tJe l'apporte de ce pas.\nI will bring it right away.\tJe l'apporte immédiatement.\nI will call you in an hour.\tJe t'appelle dans une heure.\nI will call you in an hour.\tJe t'appellerai dans une heure.\nI will come if I have time.\tJe viendrai si j'ai le temps.\nI will do anything for him.\tJe ferai n'importe quoi pour lui.\nI will do anything for you.\tJe ferai n'importe quoi pour vous.\nI will do anything for you.\tJe ferai n'importe quoi pour toi.\nI will do whatever you ask.\tJe ferai tout ce que tu demandes.\nI will do whatever you ask.\tJe ferai tout ce que vous demandez.\nI will go abroad next year.\tJ'irais à l'étranger l'année prochaine.\nI will go even if it rains.\tJ'ai l'intention d'y aller, même s'il pleut.\nI will stop him from going.\tJe l'empêcherai d'y aller.\nI will write you back soon.\tJe vous donnerai rapidement une réponse écrite.\nI wish I could believe you.\tJ'aimerais pouvoir vous croire.\nI wish I could believe you.\tJ'aimerais pouvoir te croire.\nI wish I could do the same.\tJ'aimerais pouvoir faire la même chose.\nI wish I could play guitar.\tJ’aimerais savoir jouer de la guitare.\nI wish I could stay longer.\tJ'aimerais pouvoir rester plus longtemps.\nI wish I could stay longer.\tJ'aimerais pouvoir m'attarder.\nI wish I earned more money.\tJ'aimerais gagner davantage d'argent.\nI wish I had seen the film.\tJ'aurais aimé voir le film.\nI wish I knew where he was!\tJ'aurais aimé savoir où il était !\nI wish I were in Paris now.\tJ'aimerais être à Paris en ce moment.\nI wish Tom would stop that.\tJ'aimerais que Tom arrête cela.\nI wish he were on our team.\tJ'aimerais qu'il fasse partie de notre équipe.\nI wish the rain would stop.\tJ'aimerais que la pluie cesse.\nI wish to make a complaint.\tJe voudrais déposer une plainte.\nI wish we had won the game.\tJ'aimerais que nous ayons gagné la partie.\nI wish you hadn't found me.\tJ'aurais aimé que tu ne m'aies pas trouvé.\nI wish you hadn't found me.\tJ'aurais aimé que tu ne m'aies pas trouvée.\nI wish you hadn't found me.\tJ'aurais aimé que vous ne m'ayez pas trouvé.\nI wish you hadn't found me.\tJ'aurais aimé que vous ne m'ayez pas trouvée.\nI wonder if she is married.\tJe me demande si elle est mariée.\nI wonder if you understand.\tJe me demande si tu comprends.\nI wonder if you understand.\tJe me demande si vous comprenez.\nI wonder what Tom would do.\tJe me demande ce que Tom ferais.\nI wonder what raccoons eat.\tJe me demande ce que mangent les ratons laveurs.\nI wonder what's in the box.\tJe me demande ce qu'il y a dans la boite.\nI wonder where he has gone.\tJe me demande où il est allé.\nI wonder whose car this is.\tJe me demande à qui est cette voiture.\nI wonder why I'm so sleepy.\tJe me demande pourquoi j'ai tant sommeil.\nI wonder why birds migrate.\tJe me demande pourquoi les oiseaux migrent.\nI wonder why he was absent.\tJe me demande pourquoi il était absent.\nI work for a travel agency.\tJe travaille pour une agence de voyage.\nI would appreciate a reply.\tJ'apprécierais une réponse.\nI would like a little wine.\tJ'aimerais un peu de vin.\nI would like to rent a car.\tJ'aimerais louer une voiture.\nI would never let you down.\tJe ne te laisserais jamais tomber.\nI would never let you down.\tJe ne vous laisserais jamais tomber.\nI write every chance I get.\tJ'écris chaque fois que j'en ai l'occasion.\nI'd be happy if you'd come.\tJe serais ravi si tu venais.\nI'd be happy to discuss it.\tJe serais ravi d'en discuter.\nI'd be happy to discuss it.\tJe serais ravie d'en discuter.\nI'd better get to bed soon.\tJe ferais mieux d'aller tôt au lit.\nI'd like a map of the city.\tJe voudrais un plan de la ville.\nI'd like a receipt, please.\tJe voudrais bien un reçu.\nI'd like a receipt, please.\tJ'aimerais un reçu, s'il vous plait.\nI'd like a receipt, please.\tJ'aimerais un reçu, s'il te plait.\nI'd like a shot of tequila.\tJe prendrais un verre de tequila.\nI'd like a shrimp cocktail.\tJ'aimerais un cocktail de crevettes.\nI'd like this fight to end.\tJ'aimerais que ce combat se termine.\nI'd like to be a guitarist.\tJ'aimerais être guitariste.\nI'd like to be your friend.\tJ'aimerais être ton ami.\nI'd like to brush my teeth.\tJ'aimerais me brosser les dents.\nI'd like to call my family.\tJ'aimerais appeler ma famille.\nI'd like to change clothes.\tJ'aimerais me changer.\nI'd like to change clothes.\tJ'aimerais changer de tenue.\nI'd like to change my room.\tJ'aimerais changer de chambre.\nI'd like to dance with you.\tJe voudrais danser avec toi.\nI'd like to die of old age.\tJ'aimerais mourir de vieillesse.\nI'd like to do what you do.\tJ'aimerais faire la même chose que toi.\nI'd like to get some sleep.\tJ'aimerais prendre un peu de sommeil.\nI'd like to give it to Tom.\tJ'aimerais le donner à Tom.\nI'd like to go to the mall.\tJ'aimerais me rendre au centre commercial.\nI'd like to know the truth.\tJ'aimerais connaître la vérité.\nI'd like to order the same.\tJ'aimerais commander le même.\nI'd like to own a business.\tJ'aimerais posséder une affaire.\nI'd like to reserve a seat.\tJ'aimerais réserver une place.\nI'd like to reserve a seat.\tJ'aimerais réserver une place assise.\nI'd like to reserve a seat.\tJ'aimerais réserver un fauteuil.\nI'd like to see the budget.\tJe voudrais voir le budget.\nI'd like to see you try it.\tJ'aimerais te voir l'essayer.\nI'd like to speak with you.\tJ'aimerais te parler.\nI'd like to speak with you.\tJ'aimerais parler avec toi.\nI'd like to study in Paris.\tJ'aimerais faire mes études à Paris.\nI'd like to talk about Tom.\tJe voudrais parler de Tom.\nI'd like to thank you both.\tJe voudrais vous remercier tous les deux.\nI'd like to think about it.\tJ'aimerais y réfléchir.\nI'd love to dance with you.\tJ'aimerais tant danser avec toi.\nI'd love to dance with you.\tJ'adorerais danser avec toi.\nI'd prefer not to eat that.\tJe préférerais ne pas manger ça.\nI'd really rather not know.\tJe préférerais vraiment ne pas savoir.\nI'll be there Monday night.\tJ'y serai lundi soir.\nI'll be there Monday night.\tJe serai là-bas lundi soir.\nI'll buy this desk for him.\tJe lui achèterai ce bureau.\nI'll call back a bit later.\tJe rappellerai un peu plus tard.\nI'll come as soon as I can.\tJe viendrai vous voir aussitôt que je le pourrai.\nI'll come as soon as I can.\tJe viendrai vous rendre visite aussitôt que cela me sera possible.\nI'll complain if I want to.\tJe me plaindrai si je le veux.\nI'll do everything for you.\tJe suis prêt à tout pour toi.\nI'll end up by going crazy.\tJe vais finir par devenir fou.\nI'll examine it for myself.\tJe l'examinerai moi-même.\nI'll finish it in one hour.\tJe le finirai dans une heure.\nI'll give you five dollars.\tJe te donnerai cinq dollars.\nI'll give you this pendant.\tJe te donnerai ce pendentif.\nI'll go see if Tom is here.\tJe vais voir si Tom est là.\nI'll have what he's having.\tJe vais prendre ce qu'il a.\nI'll help you look for Tom.\tJe vous aiderai à chercher Tom.\nI'll help you look for Tom.\tJe t'aiderai à chercher Tom.\nI'll leave the rest to you.\tJe vous laisse vous occuper du reste.\nI'll look after that child.\tJe surveillerai cet enfant.\nI'll never forget that day.\tJe n'oublierai jamais ce jour.\nI'll play a sonata for you.\tJe vais jouer une sonate pour toi.\nI'll put in a word for you.\tJe glisserai un mot en votre faveur.\nI'll put in a word for you.\tJe glisserai un mot en ta faveur.\nI'll reconsider the matter.\tJe vais reconsidérer l'affaire.\nI'll show you how it works.\tJe vous montrerai comment ça fonctionne.\nI'll show you how to do it.\tJe vous montrerai comment le faire.\nI'll show you how to do it.\tJe te montrerai comment le faire.\nI'll stay at home tomorrow.\tJe resterai à la maison demain.\nI'll take attendance first.\tJe vais d’abord faire l’appel.\nI'll take care of the bill.\tJe m'occupe de la note.\nI'll take care of this dog.\tJe m'occuperai de ce chien.\nI'll take good care of Tom.\tJe m'occuperai bien de Tom.\nI'll take your word for it.\tJe te crois sur parole.\nI'll take your word for it.\tJe vous crois sur parole.\nI'll tell you what's wrong.\tJe te dirai ce qui ne va pas.\nI'll tell you what's wrong.\tJe vous dirai ce qui ne va pas.\nI'm a black belt in karate.\tJe suis ceinture noire de karaté.\nI'm a citizen of the world.\tJe suis un citoyen du monde.\nI'm a good-for-nothing bum.\tJe suis un clochard bon à rien.\nI'm a stranger here myself.\tMoi-même, je suis nouveau dans le coin.\nI'm afraid I caught a cold.\tJe crains de m'être enrhumé.\nI'm afraid of wild animals.\tJe crains les animaux sauvages.\nI'm also taking this train.\tMoi aussi je prends ce train.\nI'm asking you as a friend.\tJe te le demande en tant qu'ami.\nI'm asking you as a friend.\tJe te le demande en tant qu'amie.\nI'm asking you as a friend.\tJe vous le demande en tant qu'ami.\nI'm asking you as a friend.\tJe vous le demande en tant qu'amie.\nI'm breast-feeding my baby.\tJe nourris mon bébé au sein.\nI'm breast-feeding my baby.\tJe donne le sein à mon bébé.\nI'm content with my salary.\tJe suis satisfait de mon salaire.\nI'm declaring an emergency.\tJe lance un signal de détresse.\nI'm definitely going crazy.\tJe deviens sans aucun doute fou.\nI'm definitely going crazy.\tJe deviens certainement fou.\nI'm departing this evening.\tJe pars ce soir.\nI'm disappointed and angry.\tJe suis déçu et en colère.\nI'm doing everything I can.\tJe fais tout mon possible.\nI'm dying for a cold drink.\tJe crève d'envie d'une boisson fraîche.\nI'm excited about the move.\tJe suis excité à l'idée du déménagement.\nI'm feeling kind of sleepy.\tJ'ai un peu sommeil.\nI'm feeling very confident.\tJe me sens très en confiance.\nI'm glad that you can come.\tJe me réjouis que vous puissiez venir.\nI'm glad that you can come.\tJe suis heureux que tu puisses venir.\nI'm glad you could be here.\tJe suis contente que vous soyez là.\nI'm glad you could make it.\tJe suis ravi que vous ayez pu le faire.\nI'm glad you could make it.\tJe suis ravi que vous ayez pu venir.\nI'm glad you could make it.\tJe suis ravie que vous ayez pu venir.\nI'm glad you're still here.\tJe suis content que tu sois toujours là.\nI'm glad you're still here.\tJe suis content que vous soyez toujours là.\nI'm going to buy a new car.\tJe compte m'acheter une nouvelle voiture.\nI'm going to go take a nap.\tJe vais aller faire une sieste.\nI'm going to go take a nap.\tJe vais piquer un somme.\nI'm going to go to my room.\tJe vais aller dans ma chambre.\nI'm going to miss you, too.\tTu vas aussi me manquer.\nI'm going to miss you, too.\tVous allez aussi me manquer.\nI'm going to reconsider it.\tJe vais y repenser encore une fois.\nI'm going to see Tom today.\tJe vais voir Tom aujourd'hui.\nI'm going to take a shower.\tJe vais me doucher.\nI'm going to tell Tom that.\tJe vais dire ça à Tom.\nI'm happy the game is over.\tJe suis heureux que le jeu soit fini.\nI'm happy to see you again.\tJe suis content de vous revoir.\nI'm just stating the facts.\tJe suis simplement en train de constater.\nI'm just thinking out loud.\tJe ne fais que penser à haute voix.\nI'm just trying to survive.\tJ'essaie simplement de survivre.\nI'm living with my mom now.\tJe vis avec ma maman maintenant.\nI'm looking for an old man.\tJe cherche un vieil homme.\nI'm no longer angry at you.\tJe ne suis plus en colère après vous.\nI'm no longer angry at you.\tJe ne suis plus en colère après toi.\nI'm not as rich as you are.\tJe ne suis pas aussi riche que toi.\nI'm not being unreasonable.\tJe suis raisonnable.\nI'm not doing this anymore.\tJe ne le fais plus.\nI'm not going to disappear.\tJe ne vais pas disparaître.\nI'm not going to sign this.\tJe ne vais pas signer ceci.\nI'm not good at pretending.\tJe ne suis pas bon pour faire semblant.\nI'm not good at pretending.\tJe ne suis pas bon dans la simulation.\nI'm not interested in that.\tJe n'y suis pas intéressé.\nI'm not interested in that.\tJe n'y suis pas intéressée.\nI'm not invited to parties.\tOn ne m'invite pas aux fêtes.\nI'm not invited to parties.\tJe ne suis pas invité à des fêtes.\nI'm not invited to parties.\tJe ne suis pas invitée à des fêtes.\nI'm not keeping this thing.\tJe ne vais pas garder cette chose.\nI'm not quite finished yet.\tJe n'en ai pas encore tout à fait terminé.\nI'm not selling you my car.\tJe ne te vends pas ma voiture.\nI'm not selling you my car.\tJe ne vous vends pas ma voiture.\nI'm not selling you my car.\tJe refuse de te vendre ma voiture.\nI'm not selling you my car.\tJe refuse de vous vendre ma voiture.\nI'm not sure I believe you.\tJe ne suis pas sûr de te croire.\nI'm not sure what happened.\tJe ne suis pas sûr de ce qui s'est passé.\nI'm not sure what happened.\tJe ne suis pas sûre de ce qui s'est passé.\nI'm not taking any chances.\tJe ne vais pas prendre le moindre risque.\nI'm not talking about that.\tJe ne parle pas de ça.\nI'm not that desperate yet.\tJe ne suis pas encore si désespéré.\nI'm not that desperate yet.\tJe ne suis pas encore si désespérée.\nI'm not very good at chess.\tJe ne suis pas très bon aux échecs.\nI'm not very happy, either.\tJe ne suis pas très heureux non plus.\nI'm not who you think I am.\tJe ne suis pas celui que tu penses.\nI'm not who you think I am.\tJe ne suis pas celle que tu penses.\nI'm not who you think I am.\tJe ne suis pas celui que vous pensez.\nI'm not who you think I am.\tJe ne suis pas celle que vous pensez.\nI'm not worried about them.\tJe ne me fais pas de souci pour elles.\nI'm not worried about them.\tJe ne me fais pas de souci à leur sujet.\nI'm off to Turkey tomorrow.\tJe pars en Turquie demain.\nI'm only telling the truth.\tJe dis seulement la vérité.\nI'm painting an Easter egg.\tJe décore un œuf de Pâques.\nI'm really angry right now.\tJe suis vraiment en colère, là.\nI'm reluctant to visit him.\tJe rechigne à lui rendre visite.\nI'm satisfied with my work.\tJe suis content de mon travail.\nI'm saving money for a car.\tJ'épargne pour une voiture.\nI'm saving money for a car.\tJe mets de l'argent de côté pour une voiture.\nI'm so sorry for your loss.\tJe suis désolé pour ta perte.\nI'm sorry I lost my temper.\tDésolé, j'ai perdu mon sang-froid.\nI'm sorry about last night.\tJe suis désolé au sujet de la nuit dernière.\nI'm sorry about last night.\tJe suis désolée au sujet de la nuit dernière.\nI'm sorry about last night.\tJe suis désolé à propos de hier au soir.\nI'm sorry about last night.\tJe suis désolé à propos de hier soir.\nI'm sorry about last night.\tJe suis désolé à propos de cette nuit.\nI'm sorry about last night.\tJe suis désolé à propos de la nuit dernière.\nI'm sorry about last night.\tJe suis désolée à propos de hier au soir.\nI'm sorry about last night.\tJe suis désolée à propos de hier soir.\nI'm sorry about last night.\tJe suis désolée à propos de la nuit dernière.\nI'm sorry about last night.\tJe suis désolée à propos de cette nuit.\nI'm sorry about my mistake.\tJe suis désolé pour ce malentendu.\nI'm sorry my father is out.\tJe suis désolé, mon père est sorti.\nI'm sorry to interrupt you.\tExcusez-moi de vous interrompre.\nI'm stuck in a traffic jam.\tJe suis coincé dans un embouteillage.\nI'm stuck in a traffic jam.\tJe suis coincée dans un embouteillage.\nI'm sure I will find a way.\tJe suis certain de trouver un moyen.\nI'm sure he'll leave early.\tJe suis sûr qu'il partira tôt.\nI'm sure he'll leave early.\tJe suis sûre qu'il partira tôt.\nI'm sure that is the truth.\tJe suis certain qu'il s'agit de la vérité.\nI'm sure that is the truth.\tJe suis certaine qu'il s'agit de la vérité.\nI'm taking my book with me.\tJe prends mon livre avec moi.\nI'm the one who built this.\tJe suis celui qui a construit ceci.\nI'm the one who built this.\tJe suis celle qui a construit ceci.\nI'm the one who killed Tom.\tJe suis celui qui a tué Tom.\nI'm tired of being careful.\tJ'en ai marre d'être prudent.\nI'm tired of playing games.\tJ'en ai assez de jouer.\nI'm tougher than you think.\tJe suis plus solide que tu ne le penses.\nI'm very sleepy today, too.\tJe suis très endormi aujourd'hui, également.\nI'm very worried about you.\tJe suis très inquiet à ton sujet.\nI'm very worried about you.\tJe suis très inquiet à votre sujet.\nI'm working for McDonald's.\tJe travaille chez McDonald's.\nI've always liked antiques.\tJ'ai toujours aimé les antiquités.\nI've always liked baseball.\tJ'ai toujours aimé le base-ball.\nI've been dying to see him.\tJe désespèrais de le voir !\nI've been dying to see you.\tJe désespèrais de te voir !\nI've been dying to see you.\tJe désespèrais de vous voir !\nI've been here for a while.\tJe suis là depuis un moment.\nI've been here for a while.\tJe suis ici depuis un bout de temps.\nI've been here for an hour.\tJe suis là depuis une heure.\nI've been shopping all day.\tJ'ai fait des emplettes toute la journée.\nI've been shopping all day.\tJ'ai fait des courses toute la journée.\nI've been very busy lately.\tJ'ai été très occupé ces derniers temps.\nI've been very busy lately.\tJ'ai été très occupée ces derniers temps.\nI've been very lucky today.\tJ'ai eu beaucoup de chance aujourd'hui.\nI've changed my mind again.\tJ'ai encore changé d'avis.\nI've come here to help you.\tJe suis venue ici pour t'aider.\nI've come here to help you.\tJe suis venu ici pour t'aider.\nI've come here to help you.\tJe suis venu ici pour vous aider.\nI've come here to help you.\tJe suis venue ici pour vous aider.\nI've forgotten my password.\tJ'ai oublié mon mot de passe.\nI've forgotten your number.\tJ'ai oublié ton numéro de téléphone.\nI've got a meeting at 2:30.\tJ'ai une réunion à 14h30.\nI've got a meeting at 2:30.\tJ'ai une réunion à 2h30.\nI've got lots of questions.\tJ'ai de nombreuses questions.\nI've got news for you, Tom.\tJ'ai des nouvelles pour toi, Tom.\nI've got no reason to stay.\tJe n'ai aucune raison de rester.\nI've got nothing to report.\tJe n'ai rien à signaler.\nI've got plenty of friends.\tJe dispose de nombreux amis.\nI've got some chores to do.\tJ'ai des corvées à faire.\nI've got some chores to do.\tJ'ai des tâches ménagères à faire.\nI've got something for you.\tJ'ai quelque chose pour toi.\nI've got something for you.\tJ'ai quelque chose pour vous.\nI've got to catch some Z's.\tJe dois prendre un peu de sommeil.\nI've had a good day so far.\tJ'ai eu une bonne journée, jusqu'à présent.\nI've heard a lot about you.\tJ'ai beaucoup entendu parler de toi.\nI've heard a lot about you.\tJ'ai beaucoup entendu parler de vous.\nI've heard a lot about you.\tOn m'a beaucoup parlé de vous.\nI've heard all this before.\tJ'ai déjà entendu tout ça.\nI've just been to the bank.\tJe viens juste d'aller à la banque.\nI've just finished my work.\tJe viens de terminer mon travail.\nI've just finished packing.\tJe viens de finir d'emballer.\nI've lost interest in golf.\tJ'ai perdu mon intérêt pour le golf.\nI've made up my mind to go.\tJe me suis décidé à y aller.\nI've missed another chance.\tJ'ai loupé une autre chance.\nI've missed another chance.\tJ'ai manqué une autre chance.\nI've missed out on so much.\tJ'ai tant manqué.\nI've never seen a real cow.\tJe n'ai encore jamais vu de vrai vache.\nI've never seen him before.\tJe ne l'ai jamais vu auparavant.\nI've often heard about you.\tJ'ai souvent entendu parler de toi.\nI've read both these books.\tJ'ai lu les deux livres.\nIf I can do it, so can you.\tSi je sais le faire, toi aussi.\nIf I can do it, so can you.\tSi je sais le faire, vous aussi.\nIf I were you, I'd ask him.\tSi j'étais toi, je lui demanderais.\nIf I were you, I'd ask him.\tSi j'étais vous, je lui demanderais.\nIf I were you, I'd do that.\tSi j'étais toi, je ferais ça.\nIf it rains, he won't come.\tS'il pleut, il ne viendra pas.\nIf we hurry, we'll make it.\tSi nous nous dépêchons, ce sera bon.\nIf you need help, just ask.\tSi tu as besoin d'aide, demande !\nIf you need help, just ask.\tSi vous avez besoin d'aide, demandez !\nIf you try, you'll succeed.\tSi tu essaies, tu réussiras.\nIf you try, you'll succeed.\tSi vous essayez, vous réussirez.\nIf you want to go, then go.\tSi tu veux y aller, vas-y !\nIf you want to go, then go.\tSi vous voulez y aller, allez-y !\nIf you're hungry, then eat.\tSi tu as faim, alors mange !\nIn other words, he is lazy.\tEn d'autres termes, c'est un feignant.\nIn other words, she's dumb.\tEn d'autres termes, elle est bête.\nIs Tom one of your friends?\tTom est-il un de tes amis ?\nIs Tom one of your friends?\tTom est-il un de vos amis ?\nIs everything satisfactory?\tTout va bien ?\nIs everything satisfactory?\tC'est à votre convenance?\nIs it always hot like this?\tFait-il toujours chaud comme ça?\nIs it true that you gamble?\tEst-il vrai que tu fais des paris ?\nIs it true that you gamble?\tEst-il vrai que vous faites des paris ?\nIs one thousand yen enough?\tMille yens sont-ils suffisants ?\nIs something bothering you?\tQuelque chose te tracasse-t-il ?\nIs something bothering you?\tQuelque chose vous tracasse-t-il ?\nIs ten thousand yen enough?\tDix-mille yen suffisent-ils ?\nIs ten thousand yen enough?\tDix-mille yen sont-ils suffisants ?\nIs that all right with you?\tEst-ce que cela vous convient ?\nIs that all right with you?\tEst-ce que ça te convient ?\nIs the hotel far from here?\tL'hôtel est-il loin d'ici ?\nIs the mouse dead or alive?\tLa souris est-elle morte ou en vie ?\nIs there a doctor on board?\tY a-t-il un médecin à bord ?\nIs there a hat shop nearby?\tY a-t-il un chapelier, dans le coin ?\nIs there a pen on the desk?\tY a-t-il un stylo sur le bureau ?\nIs there a zoo in the park?\tY a-t-il un zoo dans le parc ?\nIs there anything I can do?\tY a-t-il quelque chose que je puisse faire ?\nIs there anything to drink?\tY a-t-il quoi que ce soit à boire ?\nIs there anything you need?\tTe faut-il quoi que ce soit ?\nIs there anything you need?\tY a-t-il quoi que ce soit dont tu aies besoin ?\nIs there anything you need?\tY a-t-il quoi que ce soit dont vous ayez besoin ?\nIs there anything you need?\tVous faut-il quoi que ce soit ?\nIs this ball yours or hers?\tCette balle, est-elle la tienne ou la sienne ?\nIs this the art department?\tEst-ce la section art ?\nIs this your favorite song?\tEst-ce que c'est ta chanson préférée ?\nIs this your favorite song?\tEst-ce ta chanson préférée ?\nIs what you told me secret?\tCe que tu m'as dit est-il secret ?\nIs what you told me secret?\tCe que vous m'avez dit est-il secret ?\nIsn't that your dictionary?\tN'est-ce pas votre dictionnaire ?\nIsn't that your dictionary?\tN'est-ce pas ton dictionnaire ?\nIt could happen to anybody.\tÇa pourrait arriver à n'importe qui.\nIt feels weird, doesn't it?\tÇa semble étrange, n'est-ce pas ?\nIt feels weird, doesn't it?\tÇa semble étrange, pas vrai ?\nIt feels weird, doesn't it?\tÇa donne une étrange impression, n'est-ce pas ?\nIt feels weird, doesn't it?\tÇa donne une étrange impression, pas vrai ?\nIt hardly ever rains there.\tIl ne pleut presque jamais, ici.\nIt has an unpleasant taste.\tCela a un goût désagréable.\nIt has become quite common.\tC'est devenu relativement courant.\nIt hasn't been done before.\tÇa n'a pas été fait auparavant.\nIt hasn't been painted yet.\tIl n'est pas encore peint.\nIt is cheaper to go by bus.\tC'est moins cher d'y aller en bus.\nIt is getting dark outside.\tÇa s'assombrit dehors.\nIt is getting dark outside.\tIl se fait sombre dehors.\nIt is just half past seven.\tIl est sept heures et demie tout juste.\nIt is likely to rain today.\tIl va probablement pleuvoir aujourd'hui.\nIt is neither good nor bad.\tCe n'est ni bon ni mauvais.\nIt is raining all the time.\tIl pleut sans arrêt.\nIt is time to go to school.\tIl est l'heure d'aller à l'école.\nIt is time to go to school.\tC'est l'heure d'aller à l'école.\nIt is wrong to steal money.\tC'est mal de voler de l'argent.\nIt just doesn't look right.\tÇa n'a simplement pas l'air juste.\nIt just doesn't look right.\tÇa n'a simplement pas l'air correct.\nIt looks like he's winning.\tOn dirait qu'il est en train de gagner.\nIt makes little difference.\tCela fait une petite différence.\nIt may occur at any moment.\tÇa peut survenir à tout moment.\nIt may rain in the evening.\tIl se peut qu'il pleuve dans la soirée.\nIt may rain this afternoon.\tIl se peut qu'il pleuve cet après-midi.\nIt may snow in the evening.\tIl peut neiger dans la soirée.\nIt may snow in the evening.\tIl va peut-être neiger ce soir.\nIt rained during the night.\tIl plut durant la nuit.\nIt seemed like a good idea.\tÇa paraissait être une bonne idée.\nIt seems interesting to me.\tÇa me paraît intéressant !\nIt seems interesting to me.\tCela me semble intéressant !\nIt sounds like a good plan.\tÇa m'a l'air d'être un bon plan.\nIt was a beautiful wedding.\tCe fut un beau mariage.\nIt was a complete disaster.\tCe fut un désastre complet.\nIt was a great shock to me.\tCe fut un gros choc pour moi.\nIt was a great shock to me.\tCe fut un grand choc pour moi.\nIt was a very long meeting.\tCette réunion était extrêmement longue.\nIt was a warm summer night.\tC'était une chaude soirée d'été.\nIt was a wonderful feeling.\tC'était un sentiment merveilleux.\nIt was a wonderful feeling.\tCe fut une sensation merveilleuse.\nIt was fun while it lasted.\tC'était amusant, le temps que ça a duré.\nIt was fun while it lasted.\tC'était rigolo, le temps que ça a duré.\nIt was fun while it lasted.\tC'était marrant tant que ça a duré.\nIt was fun while it lasted.\tCe fut amusant le temps que ça dura.\nIt was here that I saw her.\tC'est là que je la vis.\nIt was here that I saw her.\tC'est là que je l'ai vue.\nIt was here that I saw her.\tC'est ici que je l'ai vue.\nIt was love at first sight.\tC’était l’amour au premier regard.\nIt was love at first sight.\tC’était un coup de foudre.\nIt was nice and cool there.\tIl y faisait beau et frais.\nIt was not always this way.\tIl n'en a pas toujours été ainsi.\nIt was not always this way.\tIl n'en fut pas toujours ainsi.\nIt was one of those things.\tC'était l'une de ces choses.\nIt was pitch black outside.\tIl faisait noir comme dans un four, dehors.\nIt was the best party ever.\tCe fut la meilleure fête de tous les temps.\nIt was the best party ever.\tCe fut la meilleure soirée de tous les temps.\nIt wasn't a smart decision.\tCe n'était pas une décision intelligente.\nIt wasn't an easy decision.\tCe ne fut pas une décision facile.\nIt wasn't much of a bridge.\tCe n'avait pas grand-chose d'un pont.\nIt wasn't much of a debate.\tC'était à peine un débat.\nIt will be cloudy tomorrow.\tCe sera nuageux demain.\nIt will only hurt a little.\tÇa va faire juste un petit peu mal.\nIt will only take a minute.\tÇa ne prendra qu'une minute.\nIt'll be very hot tomorrow.\tIl fera très chaud demain.\nIt'll help you save energy.\tÇa t'aidera à économiser de l'énergie.\nIt'll help you save energy.\tÇa vous aidera à économiser de l'énergie.\nIt's a complicated subject.\tC'est un sujet compliqué.\nIt's a huge responsibility.\tC'est une énorme responsabilité.\nIt's a huge responsibility.\tC'est une responsabilité énorme.\nIt's a matter of principle.\tC'est une question de principe.\nIt's a plausible diagnosis.\tC'est un diagnostic possible.\nIt's a pleasure to be here.\tC'est un plaisir d'être ici.\nIt's a questionable policy.\tC'est une politique discutable.\nIt's a skilful card player.\tC'est un joueur de cartes habile.\nIt's a very simple process.\tC'est un processus très simple.\nIt's about time for dinner.\tIl est presque l'heure de dîner.\nIt's about time for dinner.\tIl va être l'heure de dîner.\nIt's against my principles.\tC'est contre mes principes.\nIt's against my principles.\tÇa va à l'encontre de mes principes.\nIt's all coming back to me.\tCela me revient maintenant.\nIt's all happening so fast.\tTout se passe tellement rapidement.\nIt's all happening so fast.\tTout se passe si rapidement.\nIt's all right. I can wait.\tÇa ne fait rien, je peux attendre.\nIt's already seven o'clock.\tIl est déjà 7 heures.\nIt's always been like that.\tÇa a toujours été ainsi.\nIt's based on a true story.\tC'est basé sur une histoire vraie.\nIt's been nice meeting you.\tÇa a été un plaisir de vous rencontrer.\nIt's been nice meeting you.\tÇa a été un plaisir de te rencontrer.\nIt's better than the movie.\tC'est mieux que le film.\nIt's better you don't know.\tC'est mieux que tu ne saches pas.\nIt's better you don't know.\tC'est mieux que vous ne sachiez pas.\nIt's completely irrational.\tC'est complètement irrationnel.\nIt's crawling with spiders.\tÇa grouille d'araignées.\nIt's easier said than done.\tPlus facile à dire qu'à faire.\nIt's easier than it sounds.\tC'est plus facile que ça n'en a l'air.\nIt's every man for himself.\tC'est chacun pour soi.\nIt's exactly as I expected.\tC'est exactement comme je l'espérais.\nIt's fun to watch the race.\tC'est chouette de regarder la course.\nIt's good to see you again.\tC'est bon de te revoir !\nIt's hardly raining at all.\tIl ne pleut presque pas.\nIt's his problem, not mine.\tC'est son problème, pas le mien.\nIt's his word against hers.\tC'est sa parole contre la sienne.\nIt's impossible to do that.\tC'est impossible de faire ça.\nIt's impossible to do that.\tIl est impossible de faire cela.\nIt's just a little further.\tC'est juste un peu plus loin.\nIt's just a matter of time.\tC'est juste une question de temps.\nIt's just a matter of time.\tÇa n'est qu'une question de temps.\nIt's much too cold to swim.\tIl fait beaucoup trop froid pour nager.\nIt's my turn to drive next.\tC'est à mon tour de conduire ensuite.\nIt's never going to happen.\tÇa ne va jamais arriver.\nIt's next to that building.\tC'est à côté de ce bâtiment.\nIt's no use kidding myself.\tIl est inutile de me raconter des histoires à moi-même.\nIt's none of your business.\tCe ne sont pas tes affaires.\nIt's none of your business.\tCe ne sont pas vos affaires.\nIt's none of your business.\tCe ne sont pas tes oignons.\nIt's none of your business.\tCe ne sont pas vos oignons.\nIt's not a matter of price.\tCe n'est pas une question de prix.\nIt's not at all impossible.\tCe n'est pas du tout impossible.\nIt's not cheap to eat here.\tManger ici n'est pas bon marché.\nIt's not going to end well.\tÇa ne va pas bien finir.\nIt's not going to end well.\tÇa ne va pas bien se terminer.\nIt's not good for my heart.\tCe n'est pas bon pour mon cœur.\nIt's not my job to do that.\tCe n'est pas mon travail de faire cela.\nIt's not up for discussion.\tC'est inutile d'en discuter.\nIt's popular with students.\tLes étudiantes en sont friandes.\nIt's popular with students.\tLes étudiants en sont friands.\nIt's probably just a phase.\tCe n'est probablement qu'une péripétie.\nIt's probably just a phase.\tCe n'est probablement qu'une divagation.\nIt's probably just a phase.\tCe n'est probablement qu'un écart.\nIt's raining cats and dogs.\tIl pleut des cordes.\nIt's raining cats and dogs.\tIl pleut comme vache qui pisse.\nIt's raining cats and dogs.\tIl pleut à seaux.\nIt's raining cats and dogs.\tIl pleut des trombes.\nIt's rather cold for April.\tIl fait plutôt froid pour un mois d'avril.\nIt's really not that heavy.\tCe n'est vraiment pas si lourd.\nIt's the next logical step.\tC'est l'étape logique suivante.\nIt's the next logical step.\tC'est la prochaine étape logique.\nIt's the same for everyone.\tC'est la même chose pour tous.\nIt's way past your bedtime.\tL'heure d'aller te coucher est largement dépassée.\nIt's way past your bedtime.\tL'heure d'aller vous coucher est largement dépassée.\nJapan is full of surprises!\tLe Japon est plein de surprises !\nJust don't tell anyone, OK?\tNe le dis simplement à personne, d'accord ?\nJust don't tell anyone, OK?\tNe le dites simplement à personne, d'accord ?\nJust tell me what happened.\tDites-moi juste ce qui s'est passé !\nJust tell me what happened.\tDis-moi juste ce qui s'est passé !\nJust tell me what happened.\tDites-moi juste ce qui est arrivé !\nJust tell me what happened.\tDis-moi juste ce qui est arrivé !\nJust tell me what happened.\tDites-moi juste ce qui a eu lieu !\nJust tell me what happened.\tDis-moi juste ce qui a eu lieu !\nJust tell me what you want.\tDis-moi simplement ce que tu veux.\nJust tell me what you want.\tDites-moi simplement ce que vous voulez.\nKeep focused on your goals.\tRestez concentré sur vos objectifs.\nKeep your eyes on the road.\tGardez les yeux sur la route !\nKeep your eyes on the road.\tGarde les yeux sur la route !\nLanguages aren't his forte.\tLes langues ne sont pas son fort.\nLearn these names by heart.\tApprenez ces noms par cœur.\nLearn these names by heart.\tApprends ces noms par cœur.\nLearning French takes time.\tApprendre le français demande du temps.\nLeave me a message, please.\tLaisse-moi un message, je te prie.\nLeave me a message, please.\tVeuillez me laisser un message.\nLeave that box where it is.\tLaissez cette boîte là où elle est.\nLeave the room immediately.\tQuitte la pièce immédiatement.\nLeave the room immediately.\tQuittez la pièce immédiatement.\nLet Tom make the decisions.\tLaisse Tom prendre les décisions.\nLet Tom make the decisions.\tLaissez Tom prendre les décisions.\nLet me buy you another one.\tLaisse-moi t'en acheter un autre.\nLet me carry your suitcase.\tLaisse-moi porter ta valise.\nLet me do my work in peace.\tLaisse-moi travailler en paix.\nLet me give you an example.\tLaissez-moi vous donner un exemple.\nLet me have your attention.\tJe vais vous demander votre attention.\nLet me paint you a picture.\tLaisse-moi te peindre un tableau !\nLet me paint you a picture.\tLaissez-moi vous peindre un tableau !\nLet me paint you a picture.\tLaisse-moi te dresser un tableau !\nLet me paint you a picture.\tLaissez-moi vous dresser un tableau !\nLet me pay for your coffee.\tLaisse-moi payer ton café !\nLet me pay for your coffee.\tLaissez-moi payer votre café !\nLet me put off my decision.\tLaissez-moi remettre ma décision.\nLet me put off my decision.\tLaissez-moi décaler ma décision.\nLet me show you an example.\tLaissez-moi vous montrer un exemple.\nLet me show you an example.\tLaisse-moi te montrer un exemple.\nLet someone else handle it.\tLaisse quelqu'un d'autre s'en charger !\nLet someone else handle it.\tLaissez quelqu'un d'autre s'en charger !\nLet's all help Tom do that.\tAidons tous Tom à faire ça.\nLet's call a spade a spade.\tAppelons un chat un chat.\nLet's check that shop, too.\tAllons voir aussi dans ce magasin.\nLet's do this first of all.\tFaisons d'abord ceci.\nLet's do this first of all.\tFaisons ceci en premier.\nLet's do this first of all.\tFaisons avant tout ceci.\nLet's drink to his success.\tBuvons à son succès.\nLet's eat out for a change.\tMangeons dehors pour changer.\nLet's get back to the boat.\tRetournons au bateau !\nLet's get off the bus here.\tDescendons du bus ici.\nLet's get out while we can.\tSortons tant que nous le pouvons.\nLet's get something to eat.\tAllons prendre quelque chose à manger !\nLet's get together tonight.\tSortons ensemble ce soir.\nLet's give it one more try.\tEssayons encore une fois.\nLet's go back to the hotel.\tRetournons à l'hôtel !\nLet's go back to the motel.\tRetournons au motel.\nLet's go back to the motel.\tRentrons au motel.\nLet's go eat. I'm starving.\tAllons manger. Je meurs de faim.\nLet's go to lunch together.\tAllons déjeuner ensemble.\nLet's hope Tom can do that.\tEspérons que Tom puisse faire cela.\nLet's not get carried away.\tNe nous emballons pas !\nLet's say no more about it.\tNe disons rien de plus à ce sujet.\nLet's say no more about it.\tN'en disons plus rien !\nLet's see what Tom left us.\tVoyons ce que Tom nous a laissé.\nLet's sit here for a while.\tAsseyons-nous ici pour un certain temps.\nLet's split the bill today.\tPartageons l'addition aujourd'hui.\nLet's stop and take a rest.\tArrêtons-nous et faisons une pause.\nLet's take a group picture.\tPrenons une photo de groupe.\nLet's take it down a notch.\tDescendons d'un cran !\nLet's take it step by step.\tAllons-y étape par étape.\nLet's talk about Australia.\tParlons de l'Australie.\nLet's talk before fighting.\tDiscutons avant de nous battre.\nLet's try doing this again.\tEssayons de faire ça à nouveau.\nLet's turn and go back now.\tTournons et revenons maintenant !\nLet's watch a horror movie.\tRegardons un film d'horreur.\nLet's watch something else.\tRegardons autre chose !\nLie down on your left side.\tAllongez-vous sur votre côté gauche.\nLie down on your left side.\tAllonge-toi sur ton côté gauche.\nLife has its ups and downs.\tLa vie a ses hauts et ses bas.\nLife is hard for everybody.\tLa vie est dure pour tout le monde.\nLightning can be dangerous.\tLes éclairs peuvent être dangereux.\nLightning precedes thunder.\tLa foudre précède le tonnerre.\nLightning struck his house.\tLa foudre a frappé sa maison.\nLightning struck the tower.\tL'éclair frappa la tour.\nLightning struck the tower.\tLa foudre frappa la tour.\nListen to what I am saying.\tÉcoute ce que je dis.\nLong skirts are in fashion.\tLes jupes longues sont à la mode.\nLook at that tall building.\tRegarde ce grand bâtiment !\nLook at those black clouds.\tRegarde ces nuages noirs.\nLook, I owe you an apology.\tÉcoute, je te dois mes excuses.\nLuckily, I won first prize.\tHeureusement j'ai gagné le premier prix.\nLying to Tom was a mistake.\tMentir a Tom était une erreur.\nMake a copy of this report.\tFais une copie de ce rapport.\nMake a copy of this report.\tFaites une copie de ce rapport.\nMake good use of your time.\tFais bon usage de ton temps !\nMake good use of your time.\tFaites bon usage de votre temps !\nMan has the gift of speech.\tL'homme a le don de la parole.\nMan has the gift of speech.\tL'homme est doté de la parole.\nMany people like to travel.\tBeaucoup de gens aiment voyager.\nMany young men went to war.\tDe nombreux jeunes s'en allèrent en guerre.\nMary is a formidable woman.\tMarie est une femme formidable.\nMary is easy-going and fun.\tMarie est facile à vivre et amusante.\nMary is helping her mother.\tMarie aide sa mère.\nMary is on maternity leave.\tMary est en congé de maternité.\nMary took her necklace off.\tMary retira son collier.\nMary took her necklace off.\tMary a retiré son collier.\nMay I give you some advice?\tPuis-je te donner quelques conseils ?\nMay I give you some advice?\tPuis-je vous donner quelque conseils ?\nMay I have a bus route map?\tPuis-je avoir un plan des lignes de bus ?\nMay I have a straw, please?\tEst-ce que je pourrais avoir une paille s'il vous plaît ?\nMay I have a talk with you?\tPuis-je te parler ?\nMay I shave your sideburns?\tPuis-je vous raser les favoris ?\nMay I switch off the light?\tPuis-je éteindre la lumière ?\nMay I talk to you a minute?\tJe peux te parler une minute ?\nMay I visit an art gallery?\tPuis-je visiter une galerie d'art ?\nMaybe I should go with you.\tPeut-être que je devrais aller avec toi.\nMaybe I should go with you.\tPeut-être devrais-je aller avec vous.\nMaybe I should go with you.\tPeut-être devrais-je vous accompagner.\nMaybe I should go with you.\tPeut-être devrais-je t'accompagner.\nMaybe it wasn't so obvious.\tPeut-être que ce n'était pas si évident.\nMaybe it's better this way.\tC'est peut-être mieux ainsi.\nMeat is expensive nowadays.\tDe nos jours, la viande est chère.\nMight I express my opinion?\tPourrais-je exprimer mon avis ?\nMilk is a popular beverage.\tLe lait est une boisson populaire.\nModern cats don't eat mice.\tLes chats actuels ne mangent pas de souris.\nMoney cannot buy happiness.\tL'argent ne peut pas acheter le bonheur.\nMoney has changed his life.\tL'argent a changé sa vie.\nMost of the dogs are alive.\tLa plupart des chiens sont vivants.\nMotorcycles are very cheap.\tLes motos sont très bon marché.\nMusic makes our life happy.\tLa musique rend notre vie heureuse.\nMy aunt has three children.\tMa tante a trois enfants.\nMy aunt lived a happy life.\tMa tante a vécu une vie réservée.\nMy bicycle has a flat tire.\tMa bicyclette a un pneu à plat.\nMy bicycle has a flat tire.\tMon vélo a un pneu à plat.\nMy birthday is coming soon.\tC'est bientôt mon anniversaire.\nMy birthday is on March 22.\tMon anniversaire, c'est le 22 mars.\nMy brother is ambidextrous.\tMon frère est ambidextre.\nMy brother works in France.\tMon frère travaille en France.\nMy brother works in a bank.\tMon frère travaille dans une banque.\nMy brother-in-law is a cop.\tMon beau-frère est flic.\nMy car is at your disposal.\tMa voiture est à ta disposition.\nMy cat got stuck up a tree.\tMon chat est resté coincé en haut d'un arbre.\nMy cat got stuck up a tree.\tMon chat est resté coincé au haut d'un arbre.\nMy cat got stuck up a tree.\tMa chatte est restée coincée en haut d'un arbre.\nMy cat got stuck up a tree.\tMa chatte est restée coincée au haut d'un arbre.\nMy cat got stuck up a tree.\tMa chatte est restée coincée au sommet d'un arbre.\nMy cat got stuck up a tree.\tMon chat est resté coincé au sommet d'un arbre.\nMy children live in Boston.\tMes enfants vivent à Boston.\nMy children live in Boston.\tMes enfants habitent à Boston.\nMy college has a dormitory.\tMon collège comporte un dortoir.\nMy college has dormitories.\tMon collège comporte des dortoirs.\nMy computer works fine now.\tMon ordinateur fonctionne au poil, maintenant.\nMy daughter is fast asleep.\tMa fille dort à poings fermés.\nMy daughter went to school.\tMa fille est allée à l'école.\nMy daugther wants a kitten.\tMa fille veut un petit chat.\nMy daugther wants a kitten.\tMa fille veut un chaton.\nMy dog is wagging his tail.\tMon chien remue la queue.\nMy dream is to be a doctor.\tMon rêve est de devenir médecin.\nMy dream is to go to Japan.\tMon rêve est de partir au Japon.\nMy father bought a new car.\tMon père a acheté une voiture neuve.\nMy father drives very well.\tMon père conduit très bien.\nMy father drives very well.\tMon père conduit fort bien.\nMy father is a businessman.\tMon père est un homme d'affaires.\nMy father is in the garden.\tMon père est dans le jardin.\nMy father is not talkative.\tMon père est taciturne.\nMy father must do the work.\tMon père doit effectuer le travail.\nMy father stopped drinking.\tMon père a arrêté de boire.\nMy father stopped drinking.\tMon père arrêta de boire.\nMy father stopped drinking.\tMon père cessa de boire.\nMy father stopped drinking.\tMon père a cessé de boire.\nMy father works for a bank.\tMon père travaille pour une banque.\nMy favorite color is brown.\tMa couleur préférée est le marron.\nMy favorite fish is salmon.\tLe saumon est mon poisson préféré.\nMy friends are all married.\tTous mes amis sont mariés.\nMy friends are all married.\tToutes mes amies sont mariées.\nMy hair has grown too long.\tMes cheveux sont devenus trop longs.\nMy hair is naturally curly.\tMes cheveux sont naturellement bouclés.\nMy heart's beating so fast!\tMon cœur bat si fort !\nMy hobby is reading comics.\tMon passe-temps est de lire des bandes dessinées.\nMy hobby is reading novels.\tMon passe-temps est de lire des livres.\nMy hometown is very pretty.\tMa ville natale est très jolie.\nMy knife has lost its edge.\tMon couteau ne tranche plus.\nMy laptop is running Linux.\tMon ordinateur portable tourne sous Linux.\nMy license was confiscated.\tMon permis de conduire m'a été confisqué.\nMy license was confiscated.\tOn m'a confisqué mon permis.\nMy mom walked into my room.\tMa mère a pénétré dans ma chambre.\nMy mom walked into my room.\tMa mère pénétra dans ma chambre.\nMy mother is making dinner.\tMa mère prépare le dîner.\nMy mother is making dinner.\tMa mère fait le dîner.\nMy mother lives by herself.\tMa mère vit seule.\nMy papers were in that box.\tMes papiers étaient dans cette boite.\nMy parents come from China.\tMes parents sont originaires de Chine.\nMy parents let me go there.\tMes parents me laissent y aller.\nMy patience is running out.\tMa patience est à bout.\nMy room has a large closet.\tDans ma chambre il y a une grande armoire.\nMy sister is a good typist.\tMa sœur tape bien à la machine.\nMy sister married a doctor.\tMa sœur a épousé un médecin.\nMy son entered high school.\tMon fils est entré au lycée.\nMy uncle is a lousy driver.\tMon oncle conduit comme un pied !\nMy uncle lives in New York.\tMon oncle vit à New York.\nMy uncle lives in New York.\tMon oncle habite à New York.\nMy watch needs to be fixed.\tMa montre a besoin d'une réparation.\nMy wife's going to kill me.\tMa femme va me tuer.\nMy work is almost finished.\tMon travail est presque fini.\nNeither of them looks busy.\tAucun d'entre eux n'a l'air occupé.\nNeither of them looks busy.\tAucune d'entre elles n'a l'air occupée.\nNew York is worth visiting.\tNew-York vaut la peine d'être visitée.\nNo charges have been filed.\tAucune plainte n'a été déposée.\nNo one can know everything.\tPersonne ne peut tout savoir.\nNo one could find the cave.\tPersonne ne put trouver la grotte.\nNo one could find the cave.\tPersonne ne put trouver la caverne.\nNo one feels like fighting.\tPersonne n'éprouve l'envie de se battre.\nNo one here knows anything.\tPersonne ici ne sait quoi que ce soit.\nNo one is too old to learn.\tPersonne n'est trop vieux pour apprendre.\nNo one is too old to learn.\tOn est jamais trop vieux pour apprendre.\nNo one is too old to learn.\tTu n'es pas trop vieux pour apprendre.\nNo one knows what happened.\tPersonne ne sait ce qui s'est passé.\nNo one knows what happened.\tPersonne ne sait ce qui est arrivé.\nNo one knows what happened.\tPersonne ne sait ce qui s'est produit.\nNo one trusts him any more.\tPlus personne ne lui fait confiance.\nNo one trusts him any more.\tPersonne ne lui fait plus confiance.\nNo one works there anymore.\tPersonne n'y travaille plus.\nNo one works there anymore.\tPersonne ne travaille plus là.\nNo one would talk about it.\tPersonne n'en parlerait.\nNobody heard the bell ring.\tPersonne n'entendit la cloche sonner.\nNobody heard the bell ring.\tPersonne n'a entendu la cloche sonner.\nNobody is too old to learn.\tPersonne n'est trop vieux pour apprendre.\nNobody is too old to learn.\tOn est jamais trop vieux pour apprendre.\nNobody is too old to learn.\tTu n'es pas trop vieux pour apprendre.\nNobody is too old to learn.\tAucun homme n'est si vieux qu'il ne puisse apprendre.\nNobody lives in this house.\tPersonne ne vit dans cette maison.\nNobody noticed her absence.\tPersonne ne remarqua son absence.\nNobody's ever heard of him.\tPersonne n'a jamais entendu parler de lui.\nNobody's going to hire you.\tPersonne ne va t'employer.\nNobody's going to hire you.\tPersonne ne va vous employer.\nNobody's going to hire you.\tPersonne ne va t'engager.\nNobody's going to hire you.\tPersonne ne va vous engager.\nNobody's going to hurt you.\tPersonne ne va te faire de mal.\nNobody's going to hurt you.\tPersonne ne va vous faire de mal.\nNone of the money is yours.\tRien de cet argent n'est à toi.\nNone of the money is yours.\tRien de cet argent n'est à vous.\nNone of the rooms is ready.\tAucune des chambres n'est prête.\nNone of them said anything.\tAucun d'entre eux n'a dit quoi que ce soit.\nNone of them said anything.\tAucune d'entre elles n'a dit quoi que ce soit.\nNone of this is your fault.\tRien de ceci n'est de votre faute.\nNone of this is your fault.\tRien de ceci n'est de ta faute.\nNot a cloud was to be seen.\tAucun nuage n'était en vue.\nNot every man can be happy.\tTous les hommes ne peuvent pas être heureux.\nNot everyone can be a poet.\tTout le monde ne peut pas être poète.\nNot everyone was convinced.\tTout le monde n'a pas été convaincu.\nNot everyone was impressed.\tTout le monde n'a pas été impressionné.\nNot much money is required.\tPeu d'argent est nécessaire.\nNothing happened after all.\tRien ne s'est produit, après tout.\nNothing is going to happen.\tRien ne va se passer.\nNothing is going to happen.\tRien ne va avoir lieu.\nNothing is going to happen.\tRien ne va survenir.\nNow is the time for action.\tMaintenant il est temps d'agir.\nNow isn't a very good time.\tMaintenant n'est pas un très bon moment.\nNow let's get down to work.\tMettons-nous maintenant au travail.\nNow let's get down to work.\tMais maintenant, au travail !\nObviously I made a mistake.\tDe toute évidence, j'ai fait une erreur.\nObviously, you volunteered.\tÀ l'évidence, vous vous êtes porté volontaire.\nObviously, you volunteered.\tÀ l'évidence, vous vous êtes portée volontaire.\nObviously, you volunteered.\tÀ l'évidence, vous vous êtes portés volontaires.\nObviously, you volunteered.\tÀ l'évidence, vous vous êtes portées volontaires.\nOld people deserve respect.\tLes personnes âgées méritent du respect.\nOne language is not enough.\tUne seule langue n'est pas suffisante.\nOne must observe the rules.\tOn doit respecter les règles.\nOne year has twelve months.\tUne année compte douze mois.\nOne's new. The other's old.\tL'un est neuf, l'autre est ancien.\nOpen your book to page ten.\tOuvrez votre livre page dix.\nOpen your book to page ten.\tOuvrez votre livre en page dix.\nOpen your book to page ten.\tOuvrez votre livre à la page dix.\nOrganic food tastes better.\tLa nourriture bio a un meilleur goût.\nOrganic food tastes better.\tLa nourriture bio goûte meilleur.\nOrganic food tastes better.\tLa nourriture bio a meilleur goût.\nOur apple tree is blooming.\tNotre pommier est en fleurs.\nOur budget is very limited.\tNotre budget est très limité.\nOur love will last forever.\tNotre amour durera toujours.\nOur negotiations broke off.\tNos négociations ont rompu.\nOur plans are taking shape.\tNos plans prennent forme.\nOur school is 80 years old.\tNotre école a 80 ans.\nOur team is gaining ground.\tNotre équipe gagne du terrain.\nOur train stopped suddenly.\tNotre train s'est arrêté soudainement.\nPass me the butter, please.\tS'il te plaît, passe-moi le beurre.\nPass me the salt, will you?\tPassez-moi le sel, s'il vous plaît.\nPeople have short memories.\tLes gens ont la mémoire courte.\nPhysics is my weak subject.\tLa Physique est ma matière la plus faible.\nPink is not just for girls.\tLe rose n'est pas que pour les filles.\nPlace it wherever you like.\tMettez-le où bon vous semble.\nPlace it wherever you like.\tMets-le où ça te chante.\nPlants require CO2 to grow.\tPour croître, les plantes exigent du dioxide de carbone.\nPlease be quiet, everybody.\tSoyez sages, tous.\nPlease be quiet, everybody.\tUn peu de calme, s'il vous plait.\nPlease don't call the cops.\tN'appelez pas les flics, s'il vous plaît !\nPlease don't call the cops.\tN'appelle pas les flics, s'il te plaît !\nPlease don't speak so fast.\tNe parlez pas si vite, s'il vous plaît.\nPlease don't speak so fast.\tS'il te plaît, ne parle pas si vite.\nPlease don't speak so fast.\tS'il vous plaît, ne parlez pas trop vite.\nPlease excuse my ignorance.\tExcusez mon ignorance.\nPlease give me a hamburger.\tDonnez-moi un hamburger, s'il vous plaît.\nPlease introduce me to her.\tPrésentez-moi à elle, je vous prie !\nPlease let me try it again.\tS'il-te-plaît, laisse-moi réessayer.\nPlease let me try it again.\tLaissez-moi essayer à nouveau, s'il vous plaît !\nPlease let me try it again.\tLaisse-moi essayer à nouveau, s'il te plaît !\nPlease let me try the game.\tS'il te plaît laisse-moi essayer le jeu.\nPlease lie on your stomach.\tAllongez-vous sur le ventre, s'il vous plaît.\nPlease read the text below.\tVeuillez lire le texte ci-dessous.\nPlease send me a catalogue.\tS'il vous plait, envoyez-moi un catalogue.\nPlease show it to me again.\tMontre-le-moi encore s'il te plait.\nPlease show me another one.\tS'il te plaît, montre-m'en un autre.\nPlease show me another one.\tMontrez-moi un autre, s'il vous plaît.\nPlease show me another one.\tVeuillez m'en montrer une autre.\nPlease show me another one.\tVeuillez m'en montrer un autre.\nPlease show me another one.\tMontre-m'en un autre s'il te plaît.\nPlease show me another one.\tMontre-m'en une autre, je te prie.\nPlease stay within earshot.\tVeuillez rester à portée de voix.\nPlease take off your shoes.\tEnlève tes chaussures, s'il te plaît.\nPlease turn down the music.\tBaissez la musique, s'il vous plaît.\nPlease turn off the lights.\tVeuillez éteindre les lumières !\nPork doesn't agree with me.\tPork n'est pas d'accord avec moi.\nPork doesn't agree with me.\tLe porc ne me réussit pas.\nPoverty drove him to steal.\tLa pauvreté l'a conduit à voler.\nPrices are high these days.\tLes prix sont élevés ces jours-ci.\nProbably he will come soon.\tIl viendra probablement bientôt.\nPrompt action is necessary.\tDes mesures d'urgence sont nécessaires.\nPut in a little more sugar.\tMets un peu plus de sucre.\nPut some salt on your meat.\tMets du sel sur ta viande.\nPut that back on the table.\tRemets ça sur la table !\nPut that back on the table.\tRemettez ça sur la table !\nPut that book aside for me.\tMets ce livre de côté pour moi !\nPut the carrots in the pot.\tMets les carottes dans le pot.\nPut the coat on the hanger.\tAccroche ton manteau à la patère.\nPut the coat on the hanger.\tMets ton manteau sur le portemanteau.\nPut the coat on the hanger.\tPlace ton manteau sur le cintre.\nPut the flour on the shelf.\tMets la farine sur l'étagère.\nPut this on my tab, please.\tMettez ça sur ma note, je vous prie.\nPut this on my tab, please.\tMets ça sur ma note, s'il te plait.\nRadio is a great invention.\tLa radio est une invention formidable.\nRead after me all together.\tLisez tous ensemble après moi.\nRead the message once more.\tLis le message encore une fois.\nReading books is important.\tLire des livres est important.\nRome wasn't built in a day.\tRome ne s'est pas faite en un jour.\nSaddam rejected the demand.\tSaddam rejeta l'ultimatum.\nSay the alphabet backwards.\tRécite l'alphabet à l'envers.\nScallops are on sale today.\tOn vend des coquilles Saint-Jacques, aujourd'hui.\nSecurity will be tightened.\tLa sécurité sera renforcée.\nSee you tomorrow at school.\tÀ demain, à l'école.\nShall I draw a map for you?\tEst-ce que je dois te faire un plan ?\nShe abandoned her children.\tElle a abandonné ses enfants.\nShe abstains from drinking.\tElle s'abstient de boire.\nShe acted like a real baby.\tElle s'est comportée en vrai bébé.\nShe advised me to go there.\tElle m'a conseillé d'aller là.\nShe allegedly murdered him.\tElle l'a prétendument assassiné.\nShe always walks to school.\tElle va toujours à l’école à pied.\nShe asked after her friend.\tElle a demandé après son ami.\nShe asked him to marry her.\tElle lui demanda de l'épouser.\nShe asked him to marry her.\tElle lui a demandé de l'épouser.\nShe asked me how old I was.\tElle a demandé mon âge.\nShe asked me to bring them.\tElle m'a demandé de les apporter.\nShe badly needed the money.\tElle avait cruellement besoin de cet argent.\nShe bought a shirt for him.\tElle acheta pour lui une chemise.\nShe bought a shirt for him.\tElle a acheté une chemise pour lui.\nShe bought an album for me.\tElle m'a acheté un album.\nShe called while I was out.\tElle a appelé pendant que j'étais sorti.\nShe called while I was out.\tElle a appelé tandis que j'étais sorti.\nShe came back before eight.\tElle est revenue avant 8 heures.\nShe came close to drowning.\tElle a failli se noyer.\nShe came close to drowning.\tIl s'en fallut de peu qu'elle se noie.\nShe came to like the house.\tElle a fini par aimer cette maison.\nShe decided to be a doctor.\tElle a décidé de devenir médecin.\nShe devoted herself to him.\tElle se dévoua à lui.\nShe devoted herself to him.\tElle s'est dévouée à lui.\nShe devoted herself to him.\tElle s'est vouée à lui.\nShe devoted herself to him.\tElle se voua à lui.\nShe did not come until two.\tElle ne vint pas avant deux heures.\nShe didn't know what to do.\tElle ne savait quoi faire.\nShe didn't know what to do.\tElle ne savait pas quoi faire.\nShe didn't know what to do.\tElle ne savait que faire.\nShe didn't seem interested.\tElle ne semblait pas intéressée.\nShe didn't want him to die.\tElle ne voulait pas qu'il mourût.\nShe didn't want him to die.\tElle ne voulut pas qu'il mourût.\nShe didn't want him to die.\tElle n'a pas voulu qu'il mourût.\nShe didn't want him to die.\tElle n'a pas voulu qu'il meure.\nShe divorced him last year.\tElle a divorcé d'avec lui l'année dernière.\nShe divorced him last year.\tElle a divorcé d'avec lui l'an dernier.\nShe doesn't shave her legs.\tElle ne s'épile pas les jambes.\nShe doesn't understand you.\tElle ne te comprend pas.\nShe doesn't understand you.\tElle ne vous comprend pas.\nShe drives an imported car.\tElle conduit une voiture importée.\nShe especially likes music.\tElle aime particulièrement la musique.\nShe felt her knees tremble.\tElle sentit ses genoux trembler.\nShe felt very bad that day.\tElle se sentait très mal ce jour-là.\nShe forced him to sit down.\tElle le força à s'asseoir.\nShe forced him to sit down.\tElle le contraignit à s'asseoir.\nShe forced him to sit down.\tElle l'a contraint à s'asseoir.\nShe forced him to sit down.\tElle l'a forcé à s'asseoir.\nShe forgot to feed her dog.\tElle a oublié de nourrir son chien.\nShe forgot to feed the dog.\tElle oublia de nourrir le chien.\nShe gave him mixed signals.\tElle lui a transmis des signaux contradictoires.\nShe gave him the brush off.\tElle l'envoya promener.\nShe gave him the brush off.\tElle l'a envoyé promener.\nShe gave him the brush off.\tElle l'envoya balader.\nShe gave him the brush off.\tElle l'a envoyé balader.\nShe gave me a strange look.\tElle m'a lancé un étrange regard.\nShe gave us a vague answer.\tElle nous a fourni une vague réponse.\nShe goes to school on foot.\tElle va à l’école à pied.\nShe got no answer from him.\tElle n'obtint pas de réponse de sa part.\nShe got no answer from him.\tElle n'a pas obtenu de réponse de sa part.\nShe got no answer from him.\tElle n'a pas reçu de réponse de sa part.\nShe got no answer from him.\tElle ne reçut pas de réponse de sa part.\nShe got the money from him.\tElle reçut l'argent de lui.\nShe got the money from him.\tElle a reçu l'argent de lui.\nShe greeted him cheerfully.\tElle l'accueillit avec joie.\nShe greeted him cheerfully.\tElle l'a accueilli gaiement.\nShe had her hair cut short.\tElle s'est fait couper les cheveux court.\nShe had her handbag stolen.\tElle s'est fait voler son sac-à-main.\nShe had to accept her fate.\tIl lui fallait accepter son destin.\nShe has a brilliant future.\tElle est promise à un brillant avenir.\nShe has a passion for cake.\tElle a une passion pour les gâteaux.\nShe has a rose in her hand.\tElle a une rose dans la main.\nShe has a sense of fashion.\tElle est branchée mode.\nShe has a very good figure.\tElle a une très jolie silhouette.\nShe has a very good figure.\tElle est dotée d'une très jolie silhouette.\nShe has an agreeable voice.\tElle a une agréable voix.\nShe has just turned twelve.\tElle vient juste d'avoir douze ans.\nShe has just turned twenty.\tElle vient d'avoir vingt ans.\nShe has long arms and legs.\tElle a de longs bras et de longues jambes.\nShe has many handkerchiefs.\tElle a beaucoup de mouchoirs.\nShe has never been in love.\tElle n'a jamais été amoureuse.\nShe has two thousand books.\tElle a deux mille livres.\nShe held him by the sleeve.\tElle le tint par la manche.\nShe held him by the sleeve.\tElle l'a tenu par la manche.\nShe helped him tie his tie.\tElle l'aida pour faire son nœud de cravate.\nShe helped him tie his tie.\tElle l'aida à faire son nœud de cravate.\nShe ignores him completely.\tElle l'ignore royalement.\nShe insisted on helping me.\tElle a insisté pour m'aider.\nShe invited me to her home.\tElle m'a convié chez elle.\nShe invited me to her home.\tElle m'a conviée chez elle.\nShe is a very good teacher.\tElle est un très bon professeur.\nShe is about as tall as me.\tElle est à peu près de la même taille que moi.\nShe is always hard at work.\tElle est toujours âpre au travail.\nShe is anxious to meet you.\tElle est très désireuse de te rencontrer.\nShe is anxious to meet you.\tElle est très désireuse de vous rencontrer.\nShe is ashamed to speak up.\tElle a honte de s'exprimer.\nShe is busy cooking dinner.\tElle est occupée à préparer le dîner.\nShe is capable of anything.\tElle est capable de tout.\nShe is currently in danger.\tElle est en danger.\nShe is forbidden to go out.\tElle est privée de sortie.\nShe is her own worst enemy.\tElle est son propre pire ennemi.\nShe is interested in music.\tElle s'intéresse à la musique.\nShe is just going shopping.\tElle va juste faire des emplettes.\nShe is just going shopping.\tElle va juste faire des courses.\nShe is much taller than me.\tElle est bien plus grande que moi.\nShe is no ordinary student.\tCe n'est pas une élève ordinaire.\nShe is nothing but a child.\tCe n'est rien qu'une enfant.\nShe is older and wiser now.\tElle est plus âgée et plus sage, maintenant.\nShe is quick at everything.\tElle est rapide pour tout.\nShe is quick at everything.\tElle est rapide en tout.\nShe is quite a clever girl.\tC'est une jeune fille assez maligne.\nShe is terrible at cooking.\tElle est très mauvaise cuisinière.\nShe is the editor-in-chief.\tElle est l’éditeur en chef.\nShe isn't afraid of snakes.\tElle n'a pas peur des serpents.\nShe knew the story already.\tElle connaissait déjà cette histoire.\nShe leaned on his shoulder.\tElle se pencha sur son épaule.\nShe likes her school a lot.\tElle aime beaucoup son école.\nShe lives in a large house.\tElle vit dans une grande maison.\nShe lives next door to him.\tElle habite à côté de lui.\nShe looked after the child.\tElle prit soin de l'enfant.\nShe looked around her room.\tElle a regardé autour de sa chambre.\nShe looks as young as ever.\tElle a l'air toujours aussi jeune.\nShe looks very much afraid.\tElle a l'air fort effrayée.\nShe made a serious mistake.\tElle commit une grave erreur.\nShe makes her mother happy.\tElle rend sa mère heureuse.\nShe managed to drive a car.\tElle se débrouilla pour conduire une voiture.\nShe may have told me a lie.\tElle a pu me mentir.\nShe might be seriously ill.\tIl se pourrait qu'elle soit sérieusement malade.\nShe never thinks about him.\tElle ne pense jamais à lui.\nShe passed the examination.\tElle a réussi l'examen.\nShe passed the examination.\tElle réussit l'examen.\nShe persuaded him to do it.\tElle le persuada de le faire.\nShe persuaded him to do it.\tElle l'a persuadé de le faire.\nShe plays tennis very well.\tElle joue très bien au tennis.\nShe plays the piano by ear.\tElle joue du piano à l'oreille.\nShe poured me a cup of tea.\tElle me versa une tasse de thé.\nShe pulled down the blinds.\tElle a baissé les persiennes.\nShe pulled the blinds down.\tElle baissa les volets.\nShe put the key in her bag.\tElle mit la clé dans son sac.\nShe put the key in her bag.\tElle a mis la clé dans son sac.\nShe quoted a poem by Keats.\tElle cita un poème de Keats.\nShe ran outside half-naked.\tElle courut dehors, à moitié nue.\nShe ran outside half-naked.\tElle a couru dehors, à moitié nue.\nShe read the poem out loud.\tElle lut le poème à haute voix.\nShe sang better than usual.\tElle a mieux chanté que d'ordinaire.\nShe saw him at the station.\tElle le vit à la gare.\nShe saw him at the station.\tElle l'a vu à la gare.\nShe saw me enter the store.\tElle m'a vu pénétrer dans le magasin.\nShe saw me enter the store.\tElle m'a vue pénétrer dans le magasin.\nShe says that she is happy.\tElle dit qu'elle est heureuse.\nShe says that she's lonely.\tElle dit qu'elle est esseulée.\nShe says that she's lonely.\tElle dit être esseulée.\nShe seems happy to be here.\tElle semble heureuse d'être ici.\nShe seems to have been ill.\tElle semble avoir été malade.\nShe set a new world record.\tElle a établi un nouveau record du monde.\nShe should help her mother.\tElle devrait aider sa mère.\nShe showed her album to me.\tElle m'a montré son album.\nShe slowly closed her eyes.\tElle ferma lentement les yeux.\nShe smiled at him uneasily.\tElle lui sourit avec gêne.\nShe smiled at him uneasily.\tElle lui a souri avec gêne.\nShe speaks a little Arabic.\tElle parle un peu l'arabe.\nShe spoke to me in Spanish.\tElle me parla en espagnol.\nShe stared him in the face.\tElle le regarda droit dans les yeux.\nShe stared him in the face.\tElle l'a regardé droit dans les yeux.\nShe stayed here by herself.\tElle restait là toute seule.\nShe stayed out in the rain.\tElle est restée dehors sous la pluie.\nShe suddenly became famous.\tElle est soudainement devenue célèbre.\nShe takes after her father.\tElle tient de son père.\nShe takes after her mother.\tElle ressemble à sa mère.\nShe takes after her mother.\tElle tient de sa mère.\nShe talked to the chairman.\tElle a parlé avec le président.\nShe talked to the chairman.\tElle a parlé au président.\nShe told him to try harder.\tElle lui dit d'essayer plus fort.\nShe told him to try harder.\tElle lui a dit d'essayer plus fort.\nShe took care of his wound.\tElle s'est occupée de sa blessure.\nShe took care of the child.\tElle prit soin de l'enfant.\nShe took me for my brother.\tElle m'a confondu avec mon frère.\nShe took my joke seriously.\tElle a pris ma plaisanterie au sérieux.\nShe treated his broken leg.\tElle prit soin de sa jambe cassée.\nShe turned around suddenly.\tElle se retourna soudainement.\nShe used to live in luxury.\tElle vivait dans le luxe.\nShe waited for him to call.\tElle attendait qu'il l'appelle.\nShe wants to be a designer.\tElle veut être designer.\nShe wants to be a designer.\tElle veut devenir designer.\nShe was a great help to me.\tElle fût d'un grand secours pour moi.\nShe was a great help to me.\tElle me fut d'un grand secours.\nShe was alone in the house.\tElle était seule dans la maison.\nShe was asked to the party.\tElle fut conviée à la fête.\nShe was asked to the party.\tElle a été conviée à la fête.\nShe was blackmailed by him.\tIl la faisait chanter.\nShe was blackmailed by him.\tIl l'a fait chanter.\nShe was blackmailed by him.\tIl la fit chanter.\nShe was burning with anger.\tElle bouillait de colère.\nShe was listening to music.\tElle était en train d'écouter de la musique.\nShe was wearing a negligee.\tElle portait un négligé.\nShe was wearing long boots.\tElle portait des cuissardes.\nShe was working last night.\tElle travaillait hier soir.\nShe went there last summer.\tElle y est allée l'été dernier.\nShe whipped out her pistol.\tElle dégaina son pistolet en un éclair.\nShe whispered it in my ear.\tElle me le chuchota à l'oreille.\nShe wished to be beautiful.\tElle souhaitait être belle.\nShe wore a beautiful dress.\tElle porta une belle robe.\nShe wore a beautiful dress.\tElle a porté une belle robe.\nShe wrote me a long letter.\tElle m'a écrit une longue lettre.\nShe's getting on all right.\tElle s'en sort très bien.\nShe's going to have a baby.\tElle va avoir un bébé.\nShe's got such lovely eyes.\tElle a de si beaux yeux.\nShe's loved by her friends.\tElle est aimée de ses amis.\nShe's loved by her friends.\tElle est aimée de ses amies.\nShe's never fallen in love.\tElle n'est jamais tombée amoureuse.\nShe's sitting on the bench.\tElle est assise sur le banc.\nShe's starting to annoy me.\tElle commence à m'agacer !\nShe's wearing a loose coat.\tElle porte un manteau ample.\nShould I call an ambulance?\tDevrais-je appeler une ambulance ?\nShould I wait for you here?\tDevrais-je t'attendre ici ?\nShould I wait for you here?\tDevrais-je vous attendre ici ?\nShould I wait for you here?\tDevrais-je vous attendre là ?\nShould I wait for you here?\tDevrais-je t'attendre là ?\nShouldn't you take a break?\tNe devrais-tu pas faire une pause ?\nShow me the photos, please.\tMontre-moi les photos, s'il te plaît.\nShow me the photos, please.\tMontrez-moi les photos, s'il vous plaît.\nSign at the bottom, please.\tSignez en bas, s'il vous plaît.\nSmoking affects our health.\tFumer affecte notre santé.\nSome boats are on the lake.\tQuelques bateaux sont sur le lac.\nSome civilians were killed.\tDes civils ont été tués.\nSome medicine does us harm.\tCertains médicaments nous sont nuisibles.\nSome of the dogs are alive.\tCertains des chiens sont vivants.\nSome people are just weird.\tCertaines personnes sont simplement bizarres.\nSome things are impossible.\tCertaines choses sont impossibles.\nSomeday you'll regret this.\tUn jour, tu le regretteras.\nSomeone left you a message.\tQuelqu'un vous a laissé un message.\nSomeone stole all my money.\tQuelqu'un m'a volé tout mon argent.\nSomeone stole all my money.\tQuelqu'un me vola tout mon argent.\nSomeone stole all my money.\tQuelqu'un m'a dérobé tout mon argent.\nSomeone stole all my money.\tQuelqu'un me déroba tout mon argent.\nSomething is going on here.\tQuelque chose se passe, ici.\nSomething is going on here.\tQuelque chose se trame, ici.\nSomething's happened to it.\tQuelque chose lui est arrivé.\nSomething's not right here.\tQuelque chose cloche, ici !\nSomething's not right here.\tQuelque chose ne va pas, ici !\nSorry, I'm a stranger here.\tDésolé, je suis un étranger ici.\nSpeaking English is useful.\tC'est utile de parler anglais.\nSpeaking in English is fun.\tParler en Anglais est amusant.\nStart a new paragraph here.\tCommence un nouveau paragraphe ici.\nStay away from my daughter!\tReste à distance de ma fille !\nStay away from my daughter!\tRestez à distance de ma fille !\nStay away from my daughter!\tTiens-toi à distance de ma fille !\nStay away from my daughter!\tTenez-vous à distance de ma fille !\nStay away from my daughter.\tTiens-toi à l'écart de ma fille !\nStay away from my daughter.\tTenez-vous à l'écart de ma fille !\nStay calm and do your best.\tReste calme et fais de ton mieux !\nStay calm and do your best.\tRestez calmes et faites de votre mieux !\nStay calm and do your best.\tRestez calme et faites de votre mieux.\nStay here and wait for her.\tReste ici et attends-la.\nStay here and wait for him.\tReste ici et attends-le.\nStop poking me on Facebook.\tCesse de m'asticoter sur Facebook !\nStop screaming like a girl.\tArrête de hurler comme une fille !\nStop screaming like a girl.\tCesse de hurler comme une fille !\nStop trying to cheer me up.\tArrête d'essayer de me remonter le moral.\nSuicide is a desperate act.\tLe suicide est un acte désespéré.\nSummer has arrived at last.\tL'été est finalement arrivé.\nSummer is coming to an end.\tL'été arrive à sa fin.\nTaiwan isn't part of China.\tTaiwan ne fait pas partie de la Chine.\nTake a book from the shelf.\tPrends un livre de l'étagère.\nTake a deep breath, please.\tPrenez une profonde inspiration, je vous prie.\nTake a deep breath, please.\tPrends une profonde inspiration, je te prie.\nTake a look at this report.\tJetez un coup d'œil à ce rapport.\nTake a look at this report.\tJette un coup d'œil à ce rapport.\nTake all the time you need.\tPrends tout le temps qu'il te faut !\nTake all the time you need.\tPrenez tout le temps qu'il vous faut !\nTake all the time you want.\tPrends tout le temps que tu veux !\nTake all the time you want.\tPrenez tout le temps que vous voulez !\nTake good care of yourself.\tPrends bien soin de toi.\nTake it one step at a time.\tPas à pas, on va loin.\nTake the road on the right.\tPrenez la route de droite.\nTake the road on the right.\tPrenez la route à droite.\nTears are a child's weapon.\tLes larmes sont les armes d'un enfant.\nTell Tom it's an emergency.\tDis à Tom que c'est une urgence.\nTell Tom it's an emergency.\tDites à Tom que c'est une urgence.\nTell me about the incident.\tParlez-moi de l'incident.\nTell me about the incident.\tParle-moi de l'incident !\nTell me how I can help you.\tDites-moi comment je peux vous aider.\nTell me how I can help you.\tDis-moi comment je peux t'aider.\nTell me how I can help you.\tDis-moi ce que je peux faire pour t'aider.\nTell me how I can help you.\tDites-moi ce que je peux faire pour vous aider.\nTell me what to do with it.\tDis-moi ce que je dois en faire.\nTell me you're not serious!\tDis-moi que tu n'es pas sérieux !\nTell me you're not serious!\tDites-moi que vous n'êtes pas sérieux !\nTell me you're not serious!\tDis-moi que tu n'es pas sérieuse !\nTell me you're not serious!\tDites-moi que vous n'êtes pas sérieuse !\nTell me you're not serious!\tDites-moi que vous n'êtes pas sérieuses !\nTell them what you told me.\tDis-leur ce que tu m'as dit.\nTell them what you told me.\tDites-leur ce que vous m'avez dit.\nThank you for your concern.\tMerci de vous être inquiété.\nThank you for your concern.\tMerci de vous être inquiétée.\nThank you for your concern.\tMerci de t'être inquiétée.\nThank you for your concern.\tMerci de t'être inquiété.\nThank you for your efforts.\tMerci pour tes efforts.\nThank you for your present.\tMerci pour votre cadeau.\nThank you for your present.\tMerci pour ton cadeau.\nThank you for your trouble.\tMerci pour ta peine.\nThanks a lot for your help.\tMerci beaucoup pour votre aide.\nThanks a lot for your help.\tMerci beaucoup pour ton aide.\nThanks for the advice, Tom.\tMerci pour le conseil, Tom.\nThanks for the explanation.\tMerci pour ton explication.\nThanks for the information.\tMerci pour l'information.\nThat book is worth reading.\tCe livre vaut la peine d'être lu.\nThat bottle is in the dirt.\tCette bouteille est dans la saleté.\nThat boy displayed no fear.\tCe garçon ne montra aucune crainte.\nThat boy displayed no fear.\tCe garçon n'a montré aucune crainte.\nThat can happen to anybody.\tÇa peut arriver à tout le monde.\nThat can't be good for you.\tÇa ne peut pas être bon pour toi.\nThat can't be good for you.\tÇa ne peut pas être bon pour vous.\nThat can't be good for you.\tÇa ne saurait être bon pour toi.\nThat can't be good for you.\tÇa ne saurait être bon pour vous.\nThat child has few friends.\tCet enfant a peu d'amis.\nThat company went bankrupt.\tCette entreprise a fait faillite.\nThat girl looks like a boy.\tCette fille a l'air d'un garçon.\nThat guy has a screw loose!\tCe mec est complètement zinzin !\nThat guy has a screw loose!\tIl manque une case à ce gars !\nThat guy has a screw loose!\tCe gars a pété un boulon !\nThat guy is off his rocker!\tCe mec est complètement zinzin !\nThat guy's got a big mouth.\tCe mec est une grande gueule.\nThat hadn't occurred to me.\tÇa ne m'était pas venu à l'esprit.\nThat happened to my friend.\tC'est arrivé à mon ami.\nThat hat looks good on you.\tCe chapeau te va bien.\nThat is a strange sentence.\tC'est une phrase bizarre.\nThat is completely useless.\tC'est complètement inutile.\nThat is my sister's camera.\tC'est l'appareil photo de ma sœur.\nThat is no business of his.\tCe n'est pas son affaire.\nThat is no business of his.\tÇa n'est pas son affaire.\nThat is no business of his.\tCe ne sont pas ses oignons.\nThat is no business of his.\tÇa ne le concerne pas.\nThat is not altogether bad.\tCe n'est pas si mauvais dans l'ensemble.\nThat is our baseball field.\tC'est notre terrain de baseball.\nThat is what this is about.\tC'est de cela qu'il s'agit.\nThat job bores me to death.\tCe boulot m'ennuie à mourir.\nThat might not be possible.\tIl se pourrait que ça ne soit pas possible.\nThat might not be possible.\tÇa pourrait ne pas être possible.\nThat must be the city hall.\tÇa doit être la mairie.\nThat problem is too simple.\tCe problème est trop simple.\nThat seems highly unlikely.\tCela paraît très improbable.\nThat seems highly unlikely.\tCela semble très improbable.\nThat soil is rich in humus.\tCe sol est riche en humus.\nThat sounds very important.\tÇa semble très important.\nThat tie looks good on you.\tCette cravate te va bien.\nThat voice sounds familiar.\tCette voix semble familière.\nThat was a good experience.\tCe fut une bonne expérience.\nThat was a good experience.\tÇa a été une bonne expérience.\nThat was just plain stupid.\tC'était juste carrément idiot.\nThat was no ordinary storm.\tCe n'était pas une tempête ordinaire.\nThat was no ordinary storm.\tCe ne fut pas une tempête ordinaire.\nThat wasn't what Tom meant.\tCe n'est pas ce que Tom voulait dire.\nThat wasn't what Tom meant.\tCe n'est pas ce que Tom a voulu dire.\nThat will be all for today.\tCe sera tout pour aujourd'hui.\nThat will buy us some time.\tÇa va nous faire gagner un peu de temps.\nThat will please my father.\tÇa plaira à mon père.\nThat would be a good start.\tÇa serait un bon début.\nThat would be really funny.\tCe serait vraiment drôle.\nThat young lady is a nurse.\tCette jeune personne est infirmière.\nThat young lady is a nurse.\tCette jeune dame est infirmière.\nThat's a really good point.\tC'est un vraiment bon argument.\nThat's a really great idea.\tC'est vraiment une bonne idée.\nThat's all I can offer you.\tC'est tout ce que je peux vous offrir.\nThat's all I can offer you.\tC'est tout ce que je peux t'offrir.\nThat's all I know for sure.\tC'est tout ce que je tiens pour certain.\nThat's all I wanted to say.\tC'est tout ce que je voulais dire.\nThat's all I've got to say.\tC'est tout ce que j'ai à dire.\nThat's an excellent choice.\tC'est une excellent choix.\nThat's an incredible story.\tC'est une histoire incroyable.\nThat's better than nothing.\tC'est mieux que rien.\nThat's definitely the goal.\tC'est absolument l'objectif.\nThat's exactly what I want.\tC'est exactement ce que je veux.\nThat's his private website.\tC'est son site web privé.\nThat's how I do everything.\tC'est ainsi que je fais tout.\nThat's just not acceptable.\tCe n'est simplement pas acceptable.\nThat's just what I thought.\tC'est précisément ce que je pensais.\nThat's just what he needed.\tC'est précisément ce qu'il lui fallait.\nThat's just what he needed.\tC'est précisément ce dont il avait besoin.\nThat's much more important.\tC'est beaucoup plus important.\nThat's not always the case.\tCe n'est pas toujours le cas.\nThat's not going to change.\tCela ne va pas changer.\nThat's not how it happened.\tCe n'est pas comme ça que ça s'est passé.\nThat's not very reassuring.\tCe n'est pas très rassurant.\nThat's not what I've heard.\tCe n'est pas ce que j'ai entendu.\nThat's not what worries me.\tCe n'est pas ce qui me soucie.\nThat's not where I'm going.\tCe n'est pas où je vais.\nThat's not where I'm going.\tCe n'est pas où je me rends.\nThat's precisely the point.\tC'est précisément le sujet.\nThat's really a great idea.\tC'est vraiment une bonne idée.\nThat's really nice to hear.\tC'est vraiment agréable à entendre.\nThat's the reason I'm here.\tC'est la raison pour laquelle je suis ici.\nThat's the way he likes it.\tC'est comme ça qu'il l'aime.\nThat's the way he likes it.\tC'est comme ça qu'il l'apprécie.\nThat's too good to be true.\tC'est trop beau pour être vrai.\nThat's what I need to know.\tC'est ce qu'il me faut savoir.\nThat's what I thought, too.\tC'est également ce que je pensais.\nThat's what I was thinking.\tC'est ce à quoi j'étais en train de penser.\nThat's what I'd like to do.\tC'est ce que j'aimerais faire.\nThat's what the boss wants.\tC'est ce que le patron veut.\nThat's what the boss wants.\tC'est ce que la patronne veut.\nThat's what we all thought.\tC'est ce que nous pensions tous.\nThat's what we all thought.\tC'est ce que nous pensions toutes.\nThat's what you should say.\tC'est ce que vous devriez dire.\nThat's what you should say.\tC'est ce que tu devrais dire.\nThat's why he got up early.\tC'est pourquoi il se leva tôt.\nThat's why he got up early.\tC'est pourquoi il s'est levé tôt.\nThat's why he lost his job.\tC'est pourquoi il a perdu son emploi.\nThat's woefully inadequate.\tC'est pas du tout à la hauteur.\nThat's your responsibility.\tC'est ta responsabilité.\nThat's your responsibility.\tC'est de votre responsabilité.\nThe TV was on all the time.\tLa télé était tout le temps allumée.\nThe Titanic hit an iceberg.\tLe Titanic a heurté un iceberg.\nThe Titanic hit an iceberg.\tLe Titanic a remporté un iceberg.\nThe alarm clock is ringing.\tLe réveil sonne.\nThe archer killed the deer.\tL'archer tua le cerf.\nThe archer killed the deer.\tL'archer a tué le cerf.\nThe baby is still sleeping.\tLe bébé dort encore.\nThe band is still together.\tLe groupe tient toujours.\nThe banks are closed today.\tLes banques sont fermées, aujourd'hui.\nThe bird flapped its wings.\tL'oiseau battit des ailes.\nThe bird's wing was broken.\tL'aile de l'oiseau était cassée.\nThe boat can still be seen.\tOn peut encore voir le bateau.\nThe boats collided head on.\tLes bateaux sont entrés en collision de plein fouet.\nThe boats collided head on.\tLes bateaux entrèrent en collision de plein fouet.\nThe book fell to the floor.\tLe livre tomba au sol.\nThe book fell to the floor.\tLe livre est tombé au sol.\nThe box he found was empty.\tLa boîte qu'il trouva était vide.\nThe box was open and empty.\tLa boîte était ouverte et vide.\nThe boy is full of promise.\tCe garçon porte plein de promesses.\nThe boy is wearing glasses.\tLe garçon porte des lunettes.\nThe boy made a paper plane.\tLe garçon confectionna un avion de papier.\nThe boy made a paper plane.\tLe garçon confectionna un avion en papier.\nThe boy made a paper plane.\tLe garçon a confectionné un avion de papier.\nThe boy made a paper plane.\tLe garçon a confectionné un avion en papier.\nThe boy made a paper plane.\tC'est le garçon qui a confectionné un avion de papier.\nThe boy made a paper plane.\tC'est le garçon qui confectionna un avion de papier.\nThe boys played in the mud.\tLes garçons jouèrent dans la boue.\nThe boys swam in the river.\tLes garçons nagèrent dans la rivière.\nThe buildings look so tiny.\tLes immeubles ont l'air si minuscules.\nThe buildings look so tiny.\tLes bâtiments ont l'air si riquiqui.\nThe call is free of charge.\tL'appel est gratuit.\nThe car turned to the left.\tLa voiture a tourné à gauche.\nThe car turned to the left.\tLa voiture a tourné sur la gauche.\nThe castle is now in ruins.\tLe château se trouve désormais en ruine.\nThe cat crossed the street.\tLe chat traversa la rue.\nThe cat crossed the street.\tLe chat a traversé la rue.\nThe cat is under the table.\tLe chat est sous la table.\nThe chicken is undercooked.\tLe poulet n'est pas assez cuit.\nThe city fell to the enemy.\tLa ville est tombée à l'ennemi.\nThe concert was successful.\tLe concert fut un succès.\nThe court found him guilty.\tLe tribunal le déclara coupable.\nThe cows are milked at six.\tLes vaches sont traites à six heures.\nThe curtain caught on fire.\tLe rideau prit feu.\nThe curtains were all open.\tLes rideaux étaient grands ouverts.\nThe desk has three drawers.\tLe bureau comporte trois tiroirs.\nThe dog came running to me.\tLe chien vint vers moi en courant.\nThe dog is as good as dead.\tLe chien est comme mort.\nThe dog is as good as dead.\tLe chien est pour ainsi dire mort.\nThe dog was burnt to death.\tLe chien est mort brulé.\nThe dog was digging a hole.\tLe chien était en train de creuser un trou.\nThe dog was hit by a truck.\tLe chien fut heurté par un camion.\nThe eagle is about to land.\tL'aigle est sur le point d'atterrir.\nThe effects are reversible.\tLes effets sont réversibles.\nThe engine would not start.\tLe moteur ne voulait pas démarrer.\nThe exercises did her good.\tLa gym lui a fait du bien.\nThe exercises did her good.\tLes exercices lui ont fait du bien.\nThe fence is painted green.\tLa clôture est peinte en vert.\nThe floor had a good shine.\tLe plancher était reluisant.\nThe fog is getting thicker.\tLe brouillard s'épaissit.\nThe fog is growing thicker.\tLe brouillard s'épaissit.\nThe fruit is in the basket.\tLes fruits sont dans le panier.\nThe game was very exciting.\tLe jeu était vraiment captivant.\nThe house is made of stone.\tLa maison est en pierre.\nThe house is painted white.\tLa maison est peinte en blanc.\nThe house is painted white.\tLa maison est peinte de blanc.\nThe house is under repairs.\tLa maison est en réparation.\nThe house requires repairs.\tLa maison nécessite des réparations.\nThe ice sheets are melting.\tLes couches de glace fondent.\nThe ice sheets are melting.\tLes couches de glace sont en train de fondre.\nThe idea is typical of him.\tL'idée est classique de sa part.\nThe job is almost finished.\tLe travail est presque terminé.\nThe job is almost finished.\tLe boulot est presque terminé.\nThe job offer still stands.\tL'offre d'emploi est encore ouverte.\nThe job offer still stands.\tCette offre d'emploi est encore valide.\nThe joke was at my expense.\tLa plaisanterie était à mes dépens.\nThe journey has just begun.\tLe voyage vient juste de commencer.\nThe kids weren't impressed.\tLes enfants n'étaient pas impressionnés.\nThe law is not always fair.\tLa loi n'est pas toujours juste.\nThe leaves are turning red.\tLes feuilles virent au rouge.\nThe leaves have all fallen.\tToutes les feuilles sont tombées.\nThe light came on suddenly.\tLa lumière est soudain apparue.\nThe light has turned green.\tLe feu est passé au vert.\nThe lion is king of beasts.\tLe lion est le roi des animaux.\nThe main tap is turned off.\tLe robinet principal est fermé.\nThe man blushed like a boy.\tL'homme rougit comme un enfant.\nThe man hit me on the head.\tL'homme me frappa sur la tête.\nThe man leapt to his death.\tL'homme bondit vers la mort.\nThe medicine had no effect.\tLe remède n'eut pas d'effet.\nThe medicine had no effect.\tLe remède n'a pas eu d'effet.\nThe medicine tastes bitter.\tCe médicament a un goût amer.\nThe meeting was called off.\tLa rencontre fut annulée.\nThe moon has no atmosphere.\tLa Lune n'a pas d'atmosphère.\nThe moon has no atmosphere.\tLa Lune est dépourvue d'atmosphère.\nThe movie's about to start.\tLe film est sur le point de commencer.\nThe nation ceased to exist.\tLe pays cessa d'exister.\nThe next sentence is false.\tLa phrase suivante est fausse.\nThe noise got on my nerves.\tLe bruit me tape sur les nerfs.\nThe objection is overruled.\tL'objection est rejetée.\nThe old man died last week.\tLe vieil homme est mort la semaine dernière.\nThe old man died of cancer.\tLe vieil homme mourut d'un cancer.\nThe other one doesn't work.\tL'autre ne fonctionne pas.\nThe other students laughed.\tLes autres étudiants ont ri.\nThe pain finally went away.\tLa douleur est finalement partie.\nThe paint hasn't dried yet.\tLa peinture n'est pas encore sèche.\nThe painting won't be sold.\tLe tableau ne sera pas vendu.\nThe party is in full swing.\tLa fête bat son plein.\nThe pen has run out of ink.\tLe stylo n'a plus d'encre.\nThe phone was off the hook.\tLe téléphone était décroché.\nThe place was almost empty.\tL'endroit était presque vide.\nThe player faked an injury.\tLe joueur a feint une blessure.\nThe price of gas is rising.\tLe prix de l'essence augmente.\nThe projector doesn't work.\tLe projecteur ne fonctionne pas.\nThe public demands answers.\tLe public exige des réponses.\nThe rain changed into snow.\tLa pluie laissa place à la neige.\nThe rain continued all day.\tLa pluie a continué toute la journée.\nThe rain lasted three days.\tLa pluie a duré trois jours.\nThe rain lasted three days.\tLa pluie dura trois jours.\nThe responsibility is mine.\tLa responsabilité est la mienne.\nThe restaurant wasn't full.\tLe restaurant n'était pas plein.\nThe rich have many friends.\tLes riches ont de nombreux amis.\nThe rich have many friends.\tLes richards ont de nombreux amis.\nThe roof is made of thatch.\tLe toit est fait de chaume.\nThe room is full of people.\tLa pièce est pleine de monde.\nThe room was full of smoke.\tLa pièce était complètement enfumée .\nThe rule should be revised.\tLa règle devrait être revue.\nThe seats are all sold out.\tC'est complet.\nThe seats are all sold out.\tTous les fauteuils sont réservés.\nThe silver is on the table.\tL'argent est sur la table.\nThe sky is becoming cloudy.\tLe ciel devient nuageux.\nThe snow has begun melting.\tLa neige a commencé à fondre.\nThe storm blew down a tree.\tLa tempête a abattu un arbre.\nThe storm blew down a tree.\tLa tempête abattit un arbre.\nThe story is full of holes.\tLe récit est plein de lacunes.\nThe story is full of holes.\tLe récit est parcellaire.\nThe street is full of cars.\tLa rue est pleine de véhicules.\nThe students have returned.\tLes étudiants sont revenus.\nThe teacher got well again.\tL'instituteur s'est remis.\nThe teacher got well again.\tL'institutrice s'est remise.\nThe telephone doesn't work.\tLe téléphone ne marche pas.\nThe telephone doesn't work.\tLe téléphone ne fonctionne pas.\nThe theater was jam-packed.\tLe théâtre était bondé.\nThe theory is not accepted.\tLa théorie n'est pas acceptée.\nThe train was almost empty.\tLe train était presque vide.\nThe trees are already bare.\tLes arbres sont déjà dénudés.\nThe two brothers have died.\tLes deux frères sont morts.\nThe upstairs window opened.\tLa fenêtre de l'étage s'ouvrit.\nThe water has been cut off.\tL'eau a été coupée.\nThe weather is threatening.\tLe temps est menaçant.\nThe weather remained rainy.\tLe temps est demeuré pluvieux.\nThe weather remained rainy.\tLe temps demeura pluvieux.\nThe whole world knows that.\tLe monde entier sait ça.\nThe work has already begun.\tLe travail a déjà commencé.\nThe workers went on strike.\tLes ouvriers se sont mis en grève.\nThe world is a crazy place.\tLe monde est un endroit dingue.\nThe world is changing fast.\tLe monde change rapidement.\nThe world is full of fools.\tLe monde est plein d’imbéciles.\nThe worst is probably over.\tLe pire est probablement passé.\nTheir teacher praised them.\tLeur instituteur les loua.\nTheir teacher praised them.\tLeur institutrice les loua.\nTheir teacher praised them.\tLeur maître les loua.\nTheir teacher praised them.\tLeur maîtresse les loua.\nThere are no other options.\tIl n'y a pas d'autres options.\nThere are too many of them.\tIl y en a trop.\nThere is a bag on the desk.\tIl y a un sac sur le bureau.\nThere is a key on the desk.\tIl y a une clé sur le bureau.\nThere is a man at the door.\tIl y a un homme à la porte.\nThere is a map on the wall.\tIl y a une carte sur le mur.\nThere is a message for you.\tIl y a un message pour toi.\nThere is a message for you.\tIl y a un message pour vous.\nThere is a rock in my shoe.\tIl y a un caillou dans ma chaussure.\nThere is a serious problem.\tIl y a un sérieux problème.\nThere is a solution though.\tIl y a pourtant une solution.\nThere is little money left.\tIl y a peu d'argent de reste.\nThere is little money left.\tIl reste peu d'argent.\nThere is little water left.\tIl reste peu d'eau.\nThere is nothing to cancel.\tIl n'y a rien à annuler.\nThere was blood everywhere.\tIl y avait du sang partout.\nThere was fear in his eyes.\tIl y avait de la peur dans ses yeux.\nThere were no clouds today.\tIl n'y avait pas de nuages aujourd'hui.\nThere were no consequences.\tIl n'y eut pas de conséquences.\nThere were no consequences.\tIl n'y eut aucune conséquence.\nThere were no resignations.\tIl n'y avait pas de résignation.\nThere were no resignations.\tIl n'y avait pas de démissions.\nThere were ten eggs in all.\tIl y avait dix œufs en tout.\nThere's a lot of chit-chat.\tOn bavarde beaucoup.\nThere's a lot of chit-chat.\tIl y a beaucoup de bavardage.\nThere's a party after work.\tIl y a une fête après le travail.\nThere's food in the fridge.\tIl y a de la nourriture au réfrigérateur.\nThere's milk in the fridge.\tIl y a du lait dans le frigo.\nThere's no need to be rude.\tAllons, ne soyez pas vulgaire.\nThere's no need to be rude.\tPas besoin d'être aussi malpolie.\nThere's no one but me here.\tIl n'y a que moi ici.\nThere's no one in the room.\tIl n'y a personne dans la pièce.\nThere's no place like home.\tRien ne vaut son chez-soi.\nThere's no reason to panic.\tIl n'y a aucune raison de céder à la panique.\nThere's nobody at the door.\tPersonne n'est à la porte.\nThere's some truth to this.\tIl y a une part de vérité là-dedans.\nThese animals are friendly.\tCes animaux sont amicaux.\nThese are simple sentences.\tCe sont des phrases simples.\nThese chairs are different.\tCes chaises sont différentes.\nThese figures don't add up.\tLa somme de ces chiffres ne colle pas.\nThese jewels are expensive.\tCes bijoux sont chers.\nThese new cars are on sale.\tCes nouveaux véhicules sont en vente.\nThese photos are beautiful.\tCes photos sont belles.\nThese windows aren't clean.\tCes fenêtres ne sont pas propres.\nThey agreed to start early.\tIls s'accordèrent pour commencer tôt.\nThey agreed to start early.\tElles s'accordèrent pour commencer tôt.\nThey agreed to start early.\tIls se sont accordés pour commencer tôt.\nThey agreed to start early.\tElles se sont accordées pour commencer tôt.\nThey agreed to start early.\tIls se sont mis d'accord pour commencer tôt.\nThey agreed to start early.\tElles se sont mis d'accord pour commencer tôt.\nThey agreed to start early.\tElles se mirent d'accord pour commencer tôt.\nThey agreed to start early.\tIls se mirent d'accord pour commencer tôt.\nThey all envied my new car.\tIls étaient tous jaloux de ma nouvelle voiture.\nThey all killed themselves.\tIls se sont tous tués.\nThey all killed themselves.\tElles se sont toutes tuées.\nThey are in the same class.\tIls sont dans la même classe.\nThey are in the same class.\tElles sont dans la même classe.\nThey are well looked after.\tOn s'occupe bien d'eux.\nThey braved the snow storm.\tIls ont bravé la tempête de neige.\nThey braved the snow storm.\tElles ont bravé la tempête de neige.\nThey called it mass murder.\tIls le qualifièrent de meurtre de masse.\nThey called them scalawags.\tIls les traitèrent de racailles.\nThey climbed down the tree.\tIls descendirent de l'arbre.\nThey climbed down the tree.\tElles descendirent de l'arbre.\nThey cut my hair too short.\tElles m'ont coupé les cheveux trop courts.\nThey danced all night long.\tIls dansèrent toute la nuit.\nThey danced all night long.\tIls ont dansé toute la nuit.\nThey danced all night long.\tElles dansèrent toute la nuit.\nThey danced all night long.\tElles ont dansé toute la nuit.\nThey discussed the problem.\tIls ont discuté du problème.\nThey don't like to do that.\tIls n'aiment pas faire ça.\nThey don't like to do that.\tElles n'aiment pas faire ça.\nThey don't like to do that.\tIls n'aiment pas faire cela.\nThey don't like to do that.\tElles n'aiment pas faire cela.\nThey elected her president.\tIls l'élurent Présidente.\nThey elected her president.\tIls l'élurent présidente.\nThey elected her president.\tElles l'élurent pour présidente.\nThey forced her to confess.\tIls la forcèrent à la confession.\nThey glanced at each other.\tIls se jetèrent des coups d'œil.\nThey glanced at each other.\tElles se jetèrent des coups d'œil.\nThey had a heated argument.\tIls eurent une chaude dispute.\nThey had a heated argument.\tIls ont eu une chaude dispute.\nThey had a heated argument.\tElles ont eu une chaude dispute.\nThey had a heated argument.\tElles eurent une chaude dispute.\nThey heard it on the radio.\tIls l'entendirent à la radio.\nThey heard it on the radio.\tElles l'entendirent à la radio.\nThey just want to have fun.\tIls veulent juste s'amuser.\nThey just want to have fun.\tElles veulent juste s'amuser.\nThey let me pick a present.\tElles me laissèrent choisir un cadeau.\nThey like to stay informed.\tIls aiment se tenir informés.\nThey live in constant fear.\tIls vivent dans une peur permanente.\nThey live in constant fear.\tElles vivent dans une peur permanente.\nThey look so cute together.\tIls ont l'air si mignons, ensemble.\nThey look so cute together.\tElles ont l'air si mignonnes, ensemble.\nThey made fun of my accent.\tElles se sont moquées de mon accent.\nThey made fun of my accent.\tIls se sont moqués de mon accent.\nThey made the right choice.\tIls firent le bon choix.\nThey made the right choice.\tIls ont fait le bon choix.\nThey made the right choice.\tElles ont fait le bon choix.\nThey made the right choice.\tElles firent le bon choix.\nThey refused to be drafted.\tIls refusèrent la conscription.\nThey released the prisoner.\tIls ont relâché le prisonnier.\nThey released the prisoner.\tIls relâchèrent le prisonnier.\nThey released the prisoner.\tIls relâchèrent la prisonnière.\nThey remained good friends.\tIls restèrent bons amis.\nThey seem to be having fun.\tIls semblent s'amuser.\nThey seem to be having fun.\tElles semblent s'amuser.\nThey slept in the same bed.\tIls dormirent dans le même lit.\nThey slept in the same bed.\tElles dormirent dans le même lit.\nThey slept in the same bed.\tIls ont dormi dans le même lit.\nThey slept in the same bed.\tElles ont dormi dans le même lit.\nThey smiled at one another.\tIls se sourirent l'un à l'autre.\nThey want to do this right.\tIls veulent bien faire les choses.\nThey want to do this right.\tIls veulent faire cela correctement.\nThey want to do this right.\tIls veulent faire ça comme il faut.\nThey watched me in silence.\tIls m'ont regardé en silence.\nThey water the fruit trees.\tIls arrosent les arbres fruitiers.\nThey were acting strangely.\tIls se comportaient bizarrement.\nThey will be safe with her.\tIls seront en sécurité avec elle.\nThey will be safe with her.\tElles seront en sécurité avec elle.\nThey will be safe with him.\tIls seront en sécurité avec lui.\nThey will be safe with him.\tElles seront en sécurité avec lui.\nThey'll be rooting for you.\tIls te soutiendront.\nThey'll be rooting for you.\tElles te soutiendront.\nThey'll tell you the truth.\tIls te diront la vérité.\nThey'll tell you the truth.\tIls vous diront la vérité.\nThey'll tell you the truth.\tElles te diront la vérité.\nThey'll tell you the truth.\tElles vous diront la vérité.\nThey'll think of something.\tIls échafauderont quelque chose.\nThey'll think of something.\tIls penseront à quelque chose.\nThey're cleaning the beach.\tIls nettoient la plage.\nThey're cleaning the beach.\tIls sont en train de nettoyer la plage.\nThey're in the science lab.\tIls sont dans le laboratoire de sciences.\nThey're in the science lab.\tElles sont dans le laboratoire de sciences.\nThey're out of their minds.\tIls ont perdu l'esprit.\nThey're out of their minds.\tElles ont perdu l'esprit.\nThey're probably Americans.\tIls sont probablement étasuniens.\nThey're probably Americans.\tElles sont probablement étasuniennes.\nThey're very close friends.\tCe sont des amis très proches.\nThey're very close friends.\tCe sont des amies très proches.\nThey've bet the farm on it.\tIls ont parié la ferme, là-dessus.\nThey've bet the farm on it.\tIls ont tout misé là-dessus.\nThey've bet the farm on it.\tElles ont tout misé là-dessus.\nThey've crossed the border.\tIls ont traversé la frontière.\nThey've had plenty of time.\tIls ont disposé de plein de temps.\nThey've had plenty of time.\tElles ont disposé de plein de temps.\nThings are not that simple.\tLes choses ne sont pas si simples.\nThings will only get worse.\tLes choses ne feront qu'empirer.\nThis animal is very clever.\tCet animal est très intelligent.\nThis answer made him angry.\tCette réponse le mit en colère.\nThis bicycle belongs to me.\tCette bicyclette m'appartient.\nThis bicycle belongs to me.\tCe vélo m'appartient.\nThis book deals with China.\tCet ouvrage traite de la Chine.\nThis book is too expensive.\tCe livre est trop cher.\nThis book is too expensive.\tCe livre est trop coûteux.\nThis book is worth reading.\tCe livre vaut la peine d'être lu.\nThis book is worth reading.\tCela vaut le coup de lire ce livre.\nThis book seems easy to me.\tCe livre me semble facile.\nThis bus is going to Minsk.\tCe bus va à Minsk.\nThis car is easy to handle.\tCette voiture est facile à manipuler.\nThis car is very expensive.\tCette voiture est très coûteuse.\nThis car is very expensive.\tCette voiture est très onéreuse.\nThis car looks pretty cool.\tCette bagnole a une certaine gueule.\nThis car was made in Japan.\tCette voiture a été fabriquée au Japon.\nThis chicken is overcooked.\tCe poulet est trop cuit.\nThis coffee is undrinkable.\tCe café est imbuvable.\nThis computer doesn't work.\tCet ordinateur ne fonctionne pas.\nThis could save many lives.\tÇa pourrait sauver de nombreuses vies.\nThis dictionary isn't mine.\tCe dictionnaire n'est pas à moi.\nThis directly concerns Tom.\tCeci concerne directement Tom.\nThis drink is on the house.\tCe verre est pour la maison.\nThis film is a masterpiece.\tCe film est un chef-d'œuvre.\nThis girl changed her look.\tCette fille a changé de look.\nThis house is not for sale.\tCette maison n'est pas à vendre.\nThis house is not very big.\tCette maison n’est pas très grande.\nThis idea is controversial.\tCette idée est controversée.\nThis is a book about stars.\tC'est un livre qui traite des étoiles.\nThis is a daily occurrence.\tCela se produit tous les jours.\nThis is a misunderstanding.\tIl s'agit d'une incompréhension.\nThis is a special occasion.\tIl s'agit d'une occasion particulière.\nThis is a strange sentence.\tC’est une phrase étrange.\nThis is a waterproof watch.\tC'est une montre étanche.\nThis is all so complicated.\tTout est si compliqué.\nThis is all very confusing.\tTout ceci est très déroutant.\nThis is also my first time.\tC'est également ma première fois.\nThis is an important event.\tC'est un évènement important.\nThis is between you and me.\tC'est entre vous et moi.\nThis is between you and me.\tC'est entre toi et moi.\nThis is going to get messy.\tÇa va être le bordel.\nThis is highly inefficient.\tC'est franchement inefficace.\nThis is insoluble in water.\tC'est insoluble dans l'eau.\nThis is just the beginning.\tCe n'est que le début.\nThis is just the beginning.\tCe n'est que le commencement.\nThis is just what I wanted.\tC'est précisément ce que je voulais.\nThis is my sister's camera.\tC'est l'appareil photo de ma sœur.\nThis is never going to end.\tÇa n'en finira jamais.\nThis is not my idea of fun.\tCe n'est pas mon idée de l'amusement.\nThis is not what I ordered.\tCe n'est pas ce que j'ai commandé.\nThis is our main objective.\tCeci est notre objectif principal.\nThis is really humiliating.\tC'est vraiment humiliant.\nThis is the important part.\tC'est la partie importante.\nThis is the important part.\tC'est le rôle important.\nThis is the latest fashion.\tC'est la dernière mode.\nThis is the monsoon season.\tC'est la saison de la mousson.\nThis is where my dad works.\tC'est là que travaille mon père.\nThis is where you're wrong.\tC'est là que tu te trompes.\nThis is where you're wrong.\tC'est là que vous vous trompez.\nThis is where you're wrong.\tC'est là que tu as tort.\nThis is where you're wrong.\tC'est là que vous avez tort.\nThis is why I quit the job.\tC'est pourquoi je quitte le poste.\nThis is your final warning.\tC'est le dernier avertissement qui t'est adressé.\nThis is your final warning.\tC'est le dernier avertissement qui vous est adressé.\nThis is your hat, isn't it?\tC'est votre chapeau, n'est-ce pas ?\nThis is your hat, isn't it?\tC'est votre couvre-chef, n'est-ce pas ?\nThis is your hat, isn't it?\tC'est ton chapeau, n'est-ce pas ?\nThis isn't your fault, Tom.\tCe n'est pas ta faute, Tom.\nThis job is kind of boring.\tCe boulot est plutôt ennuyeux.\nThis movie is worth seeing.\tCe film vaut le coup d'être vu.\nThis music is from the 40s.\tCette musique date des années quarante.\nThis place is really noisy.\tCet endroit est vraiment bruyant.\nThis plan requires secrecy.\tCe plan requiert le secret.\nThis product is fun to use.\tCe produit est marrant à utiliser.\nThis product is fun to use.\tCe produit est amusant à utiliser.\nThis puzzle has 500 pieces.\tCe puzzle compte cinq-cents pièces.\nThis puzzle has 500 pieces.\tCe puzzle comporte cinq-cents pièces.\nThis river is deepest here.\tCette rivière est ici à sa plus grande profondeur.\nThis road goes to the park.\tCette route conduit au parc.\nThis road goes to the park.\tCette route mène au parc.\nThis school has no heating.\tCette école est dépourvue de chauffage.\nThis shoe is a size bigger.\tCette chaussure est une taille plus grande.\nThis snake is not venomous.\tCe serpent n'est pas vénéneux.\nThis store sells old books.\tCe magasin vend de vieux livres.\nThis store sells old books.\tCette échoppe vend de vieux livres.\nThis surprised many people.\tCela a surpris de nombreuses personnes.\nThis task took three hours.\tCette tâche a pris trois heures.\nThis wall is painted green.\tCe mur est peint en vert.\nThis water isn't drinkable.\tCette eau n’est pas potable.\nThis will not be tolerated.\tÇa ne sera pas toléré.\nThis window is bulletproof.\tCette fenêtre est à l'épreuve des balles.\nThis word comes from Greek.\tCe mot est d'origine grecque.\nThis word comes from Greek.\tCe mot vient du grec.\nThis word comes from Greek.\tCe mot provient du grec.\nThis word comes from Latin.\tCe mot vient du latin.\nThis word comes from Latin.\tCe mot provient du latin.\nThis word has two meanings.\tCe mot a deux sens.\nThis word has two meanings.\tCe mot admet deux acceptions.\nThis word has two meanings.\tLa signification de ce mot est duale.\nThis would be catastrophic.\tCe serait catastrophique.\nThis yogurt tastes strange.\tCe yaourt a un goût bizarre.\nThose are all fine options.\tCe sont toutes d'excellentes possibilités.\nThose are old wives' tales.\tCe sont des histoires de vieille femme.\nTie the horse to that tree.\tAttache le cheval à cet arbre !\nToday is a good day to die.\tAujourd'hui est un bon jour pour mourir.\nToday, I got up very early.\tAujourd'hui, je me suis levé très tôt.\nTom always tells the truth.\tTom dit toujours la vérité.\nTom and I are good friends.\tTom et moi sommes de bons amis.\nTom and I'll come together.\tTom et moi allons ensemble.\nTom and Mary are exhausted.\tTom et Mary sont épuisés.\nTom and Mary aren't afraid.\tTom et Mary n'ont pas peur.\nTom and Mary aren't afraid.\tTom et Mary ne sont pas effrayés.\nTom and Mary aren't coming.\tTom et Mary ne viennent pas.\nTom and Mary have two cats.\tTom et Marie ont deux chats.\nTom arrived three days ago.\tTom est arrivé il y a trois jours.\nTom asked Mary to the prom.\tTom a invité Mary au bal de promotion.\nTom asked me where I lived.\tTom me demanda où j'habitais.\nTom ate up all the cookies.\tTom a mangé tous les biscuits.\nTom became a national hero.\tTom est devenu un héros national.\nTom became very aggressive.\tTom devint très agressif.\nTom beckoned me to come in.\tTom me fit signe d'entrer.\nTom began whistling a tune.\tTom a commencé à siffler un air.\nTom bet on the wrong horse.\tTom a misé sur le mauvais cheval.\nTom bought Mary many gifts.\tTom acheta de nombreux cadeaux à Marie.\nTom brought us each a gift.\tTom a apporté un cadeau à chacun de nous.\nTom calls Mary every night.\tTom appelle Marie chaque nuit.\nTom calls Mary every night.\tTom appelle Mary chaque nuit.\nTom calls Mary every night.\tTom appelle Marie toutes les nuits.\nTom calls Mary every night.\tTom appelle Mary toutes les nuits.\nTom calls Mary every night.\tTom appelle Marie tous les soirs.\nTom calls Mary every night.\tTom appelle Mary tous les soirs.\nTom calls Mary every night.\tTom appelle Marie chaque soir.\nTom calls Mary every night.\tTom appelle Mary chaque soir.\nTom came half an hour late.\tTom arriva une demi-heure en retard.\nTom can make anybody laugh.\tTom peut faire rire n'importe qui.\nTom can run as fast as you.\tTom peut courir aussi vite que toi.\nTom can't afford to retire.\tTom ne peut pas se permettre de prendre sa retraite.\nTom can't be older than me.\tTom ne peut pas être plus vieux que moi.\nTom changes his mind a lot.\tTom change beaucoup d'avis.\nTom climbed into his truck.\tTom monta dans son camion.\nTom collapsed on the floor.\tTom s'effondra au sol.\nTom cooks for us every day.\tTom cuisine pour nous tous les jours.\nTom copies everything I do.\tTom copie tout ce que je fais.\nTom couldn't hide his pain.\tTom ne pouvait cacher sa douleur.\nTom couldn't hide his pain.\tTom n'a pas pu dissimuler sa douleur.\nTom couldn't stop laughing.\tTom ne pouvait s'arrêter de rire.\nTom couldn't stop laughing.\tTom n'a pas pu arrêter de rire.\nTom couldn't stop laughing.\tTom ne put arrêter de rire.\nTom decided to risk it all.\tTom a décidé de tout risquer.\nTom declined my invitation.\tTom a refusé mon invitation.\nTom denied having met Mary.\tTom a nié avoir rencontré Marie.\nTom deserves a better life.\tTom mérite une vie meilleure.\nTom did it single-handedly.\tTom l'a fait sans aucune aide.\nTom didn't do his homework.\tTom n'a pas fait ses devoirs.\nTom didn't get paid for it.\tTom n'a pas été payé pour cela.\nTom didn't go to the dance.\tTom n'alla pas au bal.\nTom didn't go to the dance.\tTom ne se rendit pas au bal.\nTom didn't have to do this.\tTom n'avait pas à faire ça.\nTom didn't have to do this.\tTom n'avait pas à faire ceci.\nTom didn't like that place.\tTom n'aimait pas cet endroit.\nTom didn't look that happy.\tTom n'avait pas l'air si heureux.\nTom didn't need it anymore.\tTom n'en avait plus besoin.\nTom didn't seem suspicious.\tTom ne semblait pas suspect.\nTom didn't sleep all night.\tTom n'a pas dormi de la nuit.\nTom didn't sleep all night.\tTom ne dormit pas de la nuit.\nTom didn't suspect a thing.\tTom ne s'est douté de rien.\nTom didn't want to be late.\tTom ne voulait pas être en retard.\nTom died at a very old age.\tTom est mort à un très vieux âge.\nTom died from tuberculosis.\tTom est mort de la tuberculose.\nTom died of gastric cancer.\tTom est mort d'un cancer gastrique.\nTom disappeared last month.\tTom a disparu le mois dernier.\nTom doesn't agree with you.\tTom n'est pas d'accord avec vous.\nTom doesn't hate you, Mary.\tTom ne te hait pas, Marie.\nTom doesn't like any sport.\tTom n'aime aucun sport.\nTom doesn't like computers.\tTom n'aime pas les ordinateurs.\nTom doesn't like my family.\tTom n'aime pas ma famille.\nTom doesn't like to travel.\tTom n'aime pas voyager.\nTom doesn't often visit us.\tTom ne nous rend pas souvent visite.\nTom doesn't seem to get it.\tTom n'a pas l'air de comprendre.\nTom doesn't sing very well.\tTom ne chante pas très bien.\nTom doesn't swim very well.\tTom ne nage pas très bien.\nTom doesn't take vacations.\tTom ne prend pas de vacances.\nTom doesn't understand you.\tTom ne vous comprend pas.\nTom doesn't want to go out.\tTom ne veut pas sortir.\nTom doesn't win very often.\tTom ne gagne pas très souvent.\nTom drank a glass of water.\tTom a bu un verre d'eau.\nTom drank himself to death.\tTom s'est enivré à mort.\nTom drives an imported car.\tTom conduit une voiture importée.\nTom dug a hole in the sand.\tTom a creusé un trou dans le sable.\nTom elbowed me in the ribs.\tTom m'a frappé dans les côtés.\nTom emigrated to Australia.\tTom a émigré en Australie.\nTom eventually calmed down.\tTom finit par se calmer.\nTom explained the decision.\tTom expliqua la décision.\nTom explained the decision.\tTom a expliqué la décision.\nTom failed to come on time.\tTom a manqué de venir à l'heure.\nTom fastened his seat belt.\tTom attacha sa ceinture.\nTom fastened his seat belt.\tTom attacha sa ceinture de sécurité.\nTom fell flat on the floor.\tTom est tombé à plat sur le sol.\nTom fell in love with Mary.\tTom est tombé amoureux de Mary.\nTom felt a little left out.\tTom s'est senti mis a l'écart.\nTom felt his knees tremble.\tTom sentit ses genoux trembler.\nTom felt his phone vibrate.\tTom sentit son téléphone vibrer.\nTom felt his phone vibrate.\tTom a senti son téléphone vibrer.\nTom forgot to feed the dog.\tTom oublia de nourrir le chien.\nTom forgot to pay his rent.\tTom a oublié de payer son loyer.\nTom forgot to pay his rent.\tTom oublia de payer son loyer.\nTom gave Mary another wink.\tTom fit un autre clin d'œil à Mary.\nTom gave me a vague answer.\tTom me donna une réponse vague.\nTom gave me thirty dollars.\tTom m'a donné trente dollars.\nTom gave me thirty dollars.\tTom me donna trente dollars.\nTom gets angry very easily.\tTom se met en colère très facilement.\nTom goes abroad every year.\tTom part à l'étranger chaque année.\nTom got his head bashed in.\tTom s'est fait décapiter.\nTom got remarried recently.\tTom s'est remarié récemment.\nTom got rid of his old car.\tTom s'est débarrassé de sa vieille voiture.\nTom had blood on his shoes.\tTom avait du sang sur ses chaussures.\nTom handed Mary a pamphlet.\tTom tendit une brochure à Mary.\nTom handed Mary some money.\tTom donna un peu d'argent à Mary.\nTom handed the map to Mary.\tTom tendit la carte à Mary.\nTom has a beautiful garden.\tTom a un beau jardin.\nTom has a brilliant future.\tTom a un brillant avenir.\nTom has a dog named Cookie.\tTom a un chien nommé Cookie.\nTom has a driver's license.\tTom a un permis de conduire.\nTom has a friend in Boston.\tTom a une amie à Boston.\nTom has a good memory, too.\tTom a également une bonne mémoire.\nTom has a lot of gray hair.\tTom a beaucoup de cheveux gris.\nTom has a meeting tomorrow.\tTom a une réunion demain.\nTom has a surprise for you.\tTom a une surprise pour toi.\nTom has achieved his goals.\tTom a atteint ses objectifs.\nTom has an American accent.\tTom a un accent américain.\nTom has been taken hostage.\tTom a été pris en otage.\nTom has been very generous.\tTom a été très généreux.\nTom has constructive ideas.\tTom a des idées constructives.\nTom has enormous potential.\tTom a un énorme potentiel.\nTom has excellent reflexes.\tTom a d'excellents réflexes.\nTom has nobody to help him.\tTom n'a personne pour l'aider.\nTom has nowhere left to go.\tTom n'a nulle part où aller.\nTom has pleaded not guilty.\tTom a plaidé non coupable.\nTom has to work on his own.\tTom doit travailler seul.\nTom has trouble fitting in.\tTom a du mal à s'adapter.\nTom headed toward the door.\tTom se dirigea vers la porte.\nTom helped us push the car.\tTom nous a aidés à pousser la voiture.\nTom hid it behind the door.\tTom le cacha derrière la porte.\nTom intends to change that.\tTom a l'intention de changer cela.\nTom is Mary's youngest son.\tTom est le plus jeune fils de Mary.\nTom is a financial analyst.\tTom est analyste financier.\nTom is a real estate agent.\tTom est un agent immobilier.\nTom is a singer-songwriter.\tTom est chanteur compositeur.\nTom is a true professional.\tTom est un vrai professionnel.\nTom is a well-known singer.\tTom est un chanteur bien connu.\nTom is able to drive a car.\tTom est capable de conduire une voiture.\nTom is able to play soccer.\tTom sait jouer au foot.\nTom is able to play soccer.\tTom peut jouer au foot.\nTom is allergic to peanuts.\tTom est allergique aux cacahuètes.\nTom is always dissatisfied.\tTom est toujours insatisfait.\nTom is an architect, right?\tTom est architecte, pas vrai?\nTom is an excellent lawyer.\tTom est un excellent avocat.\nTom is ashamed of his body.\tTom a honte de son corps.\nTom is asleep in his chair.\tTom dort sur sa chaise.\nTom is asleep on the couch.\tTom dort sur le canapé.\nTom is at church right now.\tTom est à l'église en ce moment.\nTom is at school, isn't he?\tTom est à l'école, n'est-ce pas ?\nTom is being held prisoner.\tTom est emprisonné.\nTom is capable of anything.\tTom est capable de tout.\nTom is confused and scared.\tTom est confus et effrayé.\nTom is due to come at noon.\tTom doit arriver à midi.\nTom is even scared of Mary.\tTom a même peur de Mary.\nTom is genuinely concerned.\tTom est réellement préoccupé.\nTom is getting some coffee.\tTom prend du café.\nTom is good at mathematics.\tTom est bon en mathématiques.\nTom is hardly ever at home.\tTom est rarement chez lui.\nTom is hardly ever at home.\tTom n'est presque jamais à la maison.\nTom is hoping you'll do it.\tTom espère que tu le feras.\nTom is hoping you'll do it.\tTom espère que vous le ferez.\nTom is hungry, and so am I.\tTom a faim, et moi aussi.\nTom is in a lot of trouble.\tTom a beaucoup d'ennuis.\nTom is in a state of shock.\tTom est dans un état de choc.\nTom is my mother's brother.\tTom est le frère de ma mère.\nTom is my only real friend.\tTom est mon seul véritable ami.\nTom is nervous and excited.\tTom est nerveux et excité.\nTom is now older and wiser.\tTom est maintenant plus vieux et plus sage.\nTom is playing with my cat.\tTom joue avec mon chat.\nTom is quite authoritative.\tTom est très autoritaire.\nTom is seldom ever on time.\tTom est rarement à l'heure.\nTom is sitting at his desk.\tTom est assis à son bureau.\nTom is sitting in the back.\tTom est assis à l'arrière.\nTom is surprisingly strong.\tTom est étonnamment fort.\nTom is talking to Mary now.\tTom parle à Mary actuellement.\nTom is terrible at cooking.\tTom ne sait pas cuisiner.\nTom is the ranking officer.\tTom est l'officier le plus gradé.\nTom is totally ignoring me.\tTom m'ignore complètement.\nTom is very late, isn't he?\tTom est très en retard, n'est-ce pas ?\nTom is wearing a black hat.\tTom porte un chapeau noir.\nTom is wearing a black tie.\tTom porte une cravate noire.\nTom is working on your car.\tTom travaille sur ta voiture.\nTom isn't Mary's boyfriend.\tTom n'est pas le petit copain de Mary.\nTom isn't a very good cook.\tTom n'est pas très bon cuisinier.\nTom isn't much of a dancer.\tTom n'est pas un grand danseur.\nTom isn't paying attention.\tTom ne prête pas attention.\nTom isn't really a teacher.\tTom n'est pas vraiment professeur.\nTom isn't sure where to go.\tTom n'est pas sûr d'où aller.\nTom isn't very imaginative.\tTom n'est pas très imaginatif.\nTom just showed up at work.\tTom vient juste d'arriver au travail.\nTom keeps hanging up on me.\tTom continue de me raccrocher au nez.\nTom kissed Mary good night.\tTom donna à Mary un bisou pour lui souhaiter bonne nuit.\nTom kissed Mary's forehead.\tTom embrassa Mary sur le front.\nTom knocked on Mary's door.\tTom frappa à la porte de Mary.\nTom knows he has no choice.\tTom sait qu'il n'a pas le choix.\nTom leaned over the bridge.\tTom se pencha par-dessus le pont.\nTom left me with no choice.\tTom ne m'a pas laissé le choix.\nTom left the door unlocked.\tTom n'a pas verrouillé la porte.\nTom lied to you, didn't he?\tTom t'a menti, n'est-ce pas ?\nTom lied to you, didn't he?\tTom vous a menti, n'est-ce pas ?\nTom likes living in Boston.\tTom aime vivre à Boston.\nTom likes to play baseball.\tTom aime jouer au baseball.\nTom looked a bit surprised.\tTom eut l'air un peu surpris.\nTom looked for his glasses.\tTom a cherché ses lunettes.\nTom looked for his glasses.\tTom chercha ses lunettes.\nTom looks a little nervous.\tTom a l'air un peu nerveux.\nTom looks older than he is.\tTom fait plus vieux qu'il ne l'est.\nTom looks proud of his son.\tTom a l'air fier de son fils.\nTom lost his boarding pass.\tTom a perdu sa carte d'embarquement.\nTom made friends with Mary.\tTom s'est lié d'amitié avec Mary.\nTom made me get out of bed.\tTom m'a fait sortir du lit.\nTom makes everyone nervous.\tTom rend tout le monde nerveux.\nTom must be really worried.\tTom doit être vraiment inquiet.\nTom must've been surprised.\tTom a dû être surpris.\nTom must've heard us enter.\tTom a dû nous entendre entrer.\nTom needs some new clothes.\tTom a besoin de nouveaux vêtements.\nTom needs some new clothes.\tTom requiert quelques nouvelles frusques.\nTom needs to remember that.\tIl faut que Tom se souvienne de cela.\nTom never knew his parents.\tTom n'a jamais connu ses parents.\nTom noticed Mary's mistake.\tTom a remarqué l'erreur de Mary.\nTom noticed Mary's mistake.\tTom remarqua l'erreur de Mary.\nTom often changes his mind.\tTom change souvent d'avis.\nTom only had eyes for Mary.\tTom n'avait d'yeux que pour Marie.\nTom passed away last night.\tTom est décédé la nuit dernière.\nTom plays tennis very well.\tTom joue très bien au tennis.\nTom pointed out my mistake.\tTom releva mon erreur.\nTom pointed out my mistake.\tTom a souligné mon erreur.\nTom poured himself a drink.\tTom se servit à boire.\nTom quickly figured it out.\tTom l'a rapidement compris.\nTom ran the fastest of all.\tTom a couru le plus vite de tous.\nTom ran towards the bushes.\tTom courut vers les buissons.\nTom read the poem out loud.\tTom a lu le poème à voix haute.\nTom really cares about you.\tTom tient vraiment à toi.\nTom really does talk a lot.\tTom parle vraiment beaucoup.\nTom really likes chocolate.\tTom aime vraiment le chocolat.\nTom really likes traveling.\tTom aime beaucoup voyager.\nTom receives a high salary.\tTom reçoit un salaire élevé.\nTom refused to settle down.\tTom refusa de se calmer.\nTom retired when he was 65.\tTom a pris sa retraite lorsqu'il a eu 65 ans.\nTom returned to his office.\tTom retourna à son bureau.\nTom returned to his office.\tTom est retourné à son bureau.\nTom risked his life for us.\tTom a risqué sa vie pour nous.\nTom rolled down the window.\tTom baissa la vitre.\nTom said Mary was Canadian.\tTom a dit que Mary était Canadienne.\nTom said he found his keys.\tTom a dit qu'il avait trouvé ses clés.\nTom said he wanted to help.\tTom a dit qu'il voulait aider.\nTom said he wanted to talk.\tTom a dit qu'il voulait parler.\nTom said he wanted to talk.\tTom dit qu'il voulait parler.\nTom said he wouldn't do it.\tTom a dit qu'il ne le ferait pas.\nTom said he'd call at 2:30.\tTom a dit qu'il appellerait à deux heures et demie.\nTom said that he'd be late.\tTom a dit qu'il serait en retard.\nTom sat on the window sill.\tTom s'assit sur le rebord de la fenêtre.\nTom sat on the window sill.\tTom s'est assis sur le rebord de la fenêtre.\nTom saw that Mary was busy.\tTom a vu que Mary était occupée.\nTom says he's already paid.\tTom dit qu'il a déjà payé.\nTom says it's an emergency.\tTom dit que c'est une urgence.\nTom says that he knows you.\tTom dit qu'il vous connaît.\nTom seemed a bit surprised.\tTom semblait un peu surpris.\nTom seems a little nervous.\tTom a l'air un peu nerveux.\nTom should be ready by now.\tTom devrait être prêt à présent.\nTom should come right away.\tTom devrais venir tout de suite.\nTom should've invited Mary.\tTom aurait dû inviter Mary.\nTom should've won the race.\tTom aurait dû gagner la course.\nTom shouldn't have told me.\tTom n'aurait pas du me le dire.\nTom showed Mary his garden.\tTom montra son jardin à Mary.\nTom showed Mary my picture.\tTom montra ma photo à Mary.\nTom showed me how to do it.\tTom m'a montré comment faire.\nTom slammed down the phone.\tTom raccrocha brutalement.\nTom slept without a pillow.\tTom a dormi sans oreiller.\nTom speaks French fluently.\tTom parle le français avec fluidité.\nTom stared angrily at Mary.\tTom fixa Marie avec colère.\nTom stepped on Mary's foot.\tTom est dans les traces de Marie.\nTom studies French as well.\tTom étudie aussi le français.\nTom swims better than I do.\tTom nage mieux que moi.\nTom talks about that a lot.\tTom parle beaucoup de cela.\nTom thought you were drunk.\tTom pensait que tu étais saoul.\nTom thought you were drunk.\tTom pensait que vous étiez ivre.\nTom told me he was working.\tTom m'a dit qu'il était en train de travailler.\nTom took a bath last night.\tTom a pris un bain hier soir.\nTom took a lot of pictures.\tTom a pris beaucoup de photos.\nTom tore the paper in half.\tTom déchira le papier en deux.\nTom treats me like a child.\tTom me traite comme un enfant.\nTom treats me like a child.\tTom me traite comme une enfant.\nTom tried to cheer Mary up.\tTom essaya de remonter le moral de Marie.\nTom tried to hide his fear.\tTom tenta de dissimuler sa peur.\nTom tried to open the door.\tTom essaya d'ouvrir la porte.\nTom tripped over something.\tTom trébucha sur quelque chose.\nTom tripped over something.\tTom a trébuché sur quelque chose.\nTom unwrapped his sandwich.\tTom a déballé son sandwich.\nTom unwrapped his sandwich.\tTom déballa son sandwich.\nTom used to live on a farm.\tTom vivait dans une ferme.\nTom uses anabolic steroids.\tTom utilise des stéroïdes anabolisants.\nTom walked out of the room.\tTom est sorti de la pièce.\nTom walks faster than Mary.\tTom marche plus vite que Mary.\nTom wanted to protect Mary.\tTom voulait protéger Mary.\nTom wants Mary to be happy.\tTom veut que Mary soit heureuse.\nTom wants to be a stuntman.\tTom veut faire cascadeur.\nTom wants to buy a new car.\tTom veut acheter une nouvelle voiture.\nTom wants to join our club.\tTom veut rejoindre notre club.\nTom was Mary's only friend.\tTom était le seul ami de Marie.\nTom was a great help to me.\tTom me fut d'un grand secours.\nTom was arrested last year.\tTom a été arrêté l'année dernière.\nTom was bullied as a child.\tTom a été victime de brimades étant enfant.\nTom was extremely impolite.\tTom était extrêmement impoli.\nTom was flirting with Mary.\tTom flirtait avec Mary.\nTom was having car trouble.\tTom avait des problèmes avec sa voiture.\nTom was trying to be funny.\tTom essayait d'être drôle.\nTom was worried about that.\tTom était inquiet à propos de cela.\nTom wasn't serious, was he?\tTom n'était pas sérieux, n'est-ce pas ?\nTom wasn't there yesterday.\tTom n'était pas là hier.\nTom watched them carefully.\tTom les regarda attentivement.\nTom watched them carefully.\tTom les a regardés attentivement.\nTom went back to the hotel.\tTom est rentré à l'hôtel.\nTom will be back home soon.\tTom sera bientôt de retour à la maison.\nTom will be back next week.\tTom sera de retour la semaine prochaine.\nTom will be back next week.\tTom reviendra la semaine prochaine.\nTom will be waiting for me.\tTom sera en train de m'attendre.\nTom will go, too, won't he?\tTom ira aussi, n'est-ce pas ?\nTom will never forgive you.\tTom ne te pardonnera jamais.\nTom will take care of this.\tTom fera attention à cela.\nTom won't ask you to dance.\tTom ne vous invitera pas à danser.\nTom won't remember a thing.\tTom ne se souviendra de rien.\nTom would never leave Mary.\tTom ne quitterait jamais Mary.\nTom's behavior has changed.\tLe comportement de Tom a changé.\nTom's body was never found.\tLe corps de Tom n'a jamais été retrouvé.\nTom's leg was badly burned.\tLa jambe de Tom a été gravement brûlée.\nTom's leg was badly burned.\tLa jambe de Tom fut gravement brûlée.\nTom's plan seemed the best.\tLe plan de Tom semblait le meilleur.\nTom's rather busy just now.\tTom est plutôt occupé en ce moment.\nTom's reply surprised Mary.\tLa réponse de Tom a surpris Mary.\nTom's shoelaces are untied.\tLes lacets de Tom sont défaits.\nTom's warned me about that.\tTom m'a prévenu là-dessus.\nTom, may I have some money?\tTom, est-ce que je peux avoir un peu d'argent ?\nTry not to forget anything.\tEssaie de ne rien oublier.\nTry not to look so nervous.\tEssaie de ne pas avoir l'air si nerveux !\nTry not to look so nervous.\tEssaie de ne pas avoir l'air si nerveuse !\nTry not to look so nervous.\tEssayez de ne pas avoir l'air si nerveux !\nTry not to look so nervous.\tEssayez de ne pas avoir l'air si nerveuse !\nTry to stay out of trouble.\tEssaie de rester à l'écart des ennuis.\nTurn off the light, please.\tÉteins la lumière, s'il te plait.\nTurn off the radio, please.\tÉteins la radio s'il te plait.\nTurn the radio up a little.\tAugmente un peu le volume de la radio.\nUse your head for a change.\tRéfléchis pour une fois.\nVienna is a beautiful city.\tVienne est une jolie ville.\nVisiting Tom was a mistake.\tRendre visite à Tom était une erreur.\nWait for your turn, please.\tVeuillez attendre votre tour.\nWait here till I come back.\tAttendez ici jusqu'à ce que je revienne.\nWalking is a good exercise.\tMarcher est un bon exercice.\nWar began five years later.\tLa guerre commença cinq années après.\nWas there a lot of traffic?\tY avait-il beaucoup de circulation ?\nWas there a lot of traffic?\tY eut-il beaucoup de circulation ?\nWasn't it supposed to rain?\tIl ne devait pas pleuvoir ?\nWasn't she your girlfriend?\tN'était-elle pas ta petite amie ?\nWasn't she your girlfriend?\tN'était-elle pas votre petite amie ?\nWasn't she your girlfriend?\tN'était-elle pas ta copine ?\nWasn't she your girlfriend?\tN'était-elle pas votre copine ?\nWater boils at 100 degrees.\tL'eau bout à 100 degrés.\nWe accepted his invitation.\tNous acceptâmes son invitation.\nWe accepted his invitation.\tNous avons accepté son invitation.\nWe all die sooner or later.\tNous mourons tous tôt ou tard.\nWe all learn by experience.\tNous apprenons tous par l'expérience.\nWe all learn by experience.\tNous apprenons toutes par l'expérience.\nWe all want prices to fall.\tNous voulons tous que les prix baissent.\nWe all want the same thing.\tNous voulons tous la même chose.\nWe all want the same thing.\tNous voulons toutes la même chose.\nWe already know each other.\tNous nous connaissons déjà.\nWe also went to the temple.\tNous sommes aussi allés au temple.\nWe are about to leave here.\tNous sommes sur le point de partir d'ici.\nWe are going to the market.\tNous nous rendons au marché.\nWe are next-door neighbors.\tNous sommes les voisins d'à côté.\nWe are not to be disturbed.\tIl ne faut pas nous déranger.\nWe are sure of his success.\tNous sommes convaincus de son succès.\nWe are sure of his success.\tNous sommes convaincues de son succès.\nWe arrived at a compromise.\tNous sommes parvenus à un compromis.\nWe can't compete with that.\tOn ne peut pas se mesurer à ça.\nWe can't do this ourselves.\tNous ne pouvons pas le faire par nous-mêmes.\nWe can't go anywhere today.\tNous ne pouvons aller nulle part aujourd'hui.\nWe can't let this continue.\tNous ne pouvons laisser cela perdurer.\nWe can't rush these things.\tNous ne pouvons pas précipiter les choses.\nWe can't trust Tom anymore.\tNous ne pouvons plus faire confiance à Tom.\nWe cannot live without air.\tNous ne pouvons pas vivre sans air.\nWe climbed the steep slope.\tNous grimpâmes une pente raide.\nWe could've made a fortune.\tNous aurions pu faire fortune.\nWe could've made a fortune.\tOn aurait pu faire fortune.\nWe discussed it last night.\tNous en avons discuté hier soir.\nWe do all kinds of repairs.\tNous réalisons toutes sortes de réparations.\nWe don't care what he does.\tCe qu'il fait nous indiffère.\nWe don't care what he does.\tCe qu'il fait nous est indifférent.\nWe don't have a dishwasher.\tNous n'avons pas de lave-vaisselle.\nWe don't have to read that.\tNous n'avons pas à lire ça.\nWe don't need these things.\tOn n'a pas besoin de ces trucs.\nWe don't need these things.\tNous n'avons pas besoin de ces choses.\nWe don't take credit cards.\tNous ne prenons pas les cartes de crédit.\nWe elected him to be mayor.\tNous l'avons élu pour qu'il soit maire.\nWe forgot to lock the door.\tNous avons oublié de verrouiller la porte.\nWe forgot to lock the door.\tNous oubliâmes de verrouiller la porte.\nWe forgot to lock the door.\tNous avons oublié de fermer la porte à clé.\nWe forgot to lock the door.\tNous oubliâmes de fermer la porte à clé.\nWe gather here once a week.\tNous nous réunissons ici une fois par semaine.\nWe grow a variety of crops.\tNous faisons pousser une variété de cultures.\nWe had a heated discussion.\tNous eûmes une chaude discussion.\nWe had a rest in the shade.\tNous nous sommes reposés à l'ombre.\nWe had a rest in the shade.\tNous nous sommes reposées à l'ombre.\nWe had a wonderful weekend.\tNous avons eu un week-end merveilleux.\nWe had to abandon our plan.\tIl nous fallait abandonner notre plan.\nWe had to abandon our plan.\tIl nous fallut abandonner notre plan.\nWe have a big day tomorrow.\tNous avons une journée importante demain.\nWe have a decision to make.\tNous devons prendre une décision.\nWe have a traitor among us.\tIl y a un traître parmi nous.\nWe have breakfast at seven.\tNous prenons le petit déjeuner à sept heures.\nWe have no school tomorrow.\tOn n'a pas cours demain.\nWe have no school tomorrow.\tNous n'avons pas école demain.\nWe have nothing against it.\tNous n'avons rien contre.\nWe have nothing to discuss.\tNous n'avons rien à discuter.\nWe have other things to do.\tNous avons d'autres choses à faire.\nWe have plenty of time now.\tNous avons beaucoup de temps maintenant.\nWe have to change our plan.\tNous devons changer notre plan.\nWe have to do the shopping.\tIl nous faut faire les courses.\nWe have to make a decision.\tIl nous faut prendre une décision.\nWe have very good business.\tNous faisons de très bonnes affaires.\nWe heard screaming outside.\tNous avons entendu des cris dehors.\nWe just have to be patient.\tNous devons seulement être patients.\nWe just have to be patient.\tNous devons seulement être patientes.\nWe kept the children quiet.\tNous avons gardé les enfants tranquilles.\nWe know what we have to do.\tNous savons ce que nous avons à faire.\nWe live near a big library.\tNous résidons à proximité d'une grande bibliothèque.\nWe look out for each other.\tOn est soudés.\nWe looked, but saw nothing.\tNous avons regardé mais n'avons rien vu.\nWe lost all of our funding.\tNous avons perdu tout notre financement.\nWe may have missed the bus.\tIl se peut qu’on ait raté le bus.\nWe must always do our best.\tOn doit toujours faire de son mieux.\nWe must execute his orders.\tNous devons exécuter ses ordres.\nWe must leave here at once.\tNous devons partir d'ici tout de suite.\nWe need actions, not words.\tNous avons besoin d'actes, pas de mots.\nWe need to get out of here.\tIl nous faut sortir d'ici.\nWe need to get out of here.\tIl nous faut sortir de là.\nWe need to get out of here.\tIl nous faut nous dégager d'ici.\nWe need to have a contract.\tNous avons besoin d'un contrat.\nWe need to help each other.\tNous devons nous entraider.\nWe need to make sacrifices.\tNous avons besoin de faire des sacrifices.\nWe need to talk about this.\tIl nous faut en parler.\nWe now know that was a lie.\tNous savons maintenant que c'était un mensonge.\nWe painted the house green.\tNous avons peint la maison en vert.\nWe painted the house green.\tNous peignîmes la maison en vert.\nWe painted the walls white.\tNous avons peint les murs en blanc.\nWe persuaded him not to go.\tNous l'avons persuadé de ne pas y aller.\nWe played tennis yesterday.\tNous avons joué au tennis hier.\nWe see what we want to see.\tNous voyons ce que nous voulons voir.\nWe should always obey laws.\tOn devrait toujours se soumettre à la loi.\nWe should be there by noon.\tNous devions y être d'ici midi.\nWe should go, shouldn't we?\tNous devrions y aller, n'est-ce pas ?\nWe should obey our parents.\tNous devrions obéir à nos parents.\nWe shouldn't be doing this.\tNous ne devrions pas faire ça.\nWe sometimes make mistakes.\tNous faisons parfois des erreurs.\nWe stayed at a cheap hotel.\tNous séjournâmes dans un hôtel bon marché.\nWe stayed at a cheap hotel.\tNous avons séjourné dans un hôtel bon marché.\nWe sure had fun, didn't we?\tOn s'est vraiment bien amusé, non ?\nWe sure had fun, didn't we?\tNous nous sommes vraiment bien amusés, non ?\nWe sure had fun, didn't we?\tNous nous sommes vraiment bien amusées, non ?\nWe talked about everything.\tNous avons parlé de tout.\nWe talked about time zones.\tOn a discuté des fuseaux horaires.\nWe talked about time zones.\tOn a parlé des fuseaux horaires.\nWe talked about time zones.\tNous avons parlé des fuseaux horaires.\nWe talked in sign language.\tNous avons parlé en langage des signes.\nWe talked on the telephone.\tNous avons parlé au téléphone.\nWe think that he will come.\tNous pensons qu'il viendra.\nWe thought you could do it.\tNous pensions que vous pourriez le faire.\nWe thought you could do it.\tNous pensions que tu pourrais le faire.\nWe used to be best friends.\tNous étions les meilleurs amis.\nWe used to be best friends.\tNous étions les meilleures amies.\nWe voted for the candidate.\tNous avons voté pour le candidat.\nWe voted for the candidate.\tNous avons voté pour la candidate.\nWe want peace in the world.\tNous désirons la paix dans le monde.\nWe want to go to the beach.\tNous désirons aller à la plage.\nWe welcome you to our club.\tNous vous souhaitons la bienvenue à notre club.\nWe welcome you to our club.\tNous te souhaitons la bienvenue à notre cercle.\nWe went to the video store.\tNous sommes allés au magasin de location vidéo.\nWe were at school together.\tNous étions à l'école ensemble.\nWe were back to square one.\tNous étions de retour à la case départ.\nWe were driven to the wall.\tNous étions acculés.\nWe were just holding hands.\tNous ne faisions que nous tenir la main.\nWe weren't able to do that.\tNous n'étions pas capables de faire ça.\nWe weren't all that hungry.\tNous n'avions pas tant faim que ça.\nWe weren't all that hungry.\tNous n'avions pas si faim que ça.\nWe will discuss that later.\tNous en discuterons plus tard.\nWe will keep the room warm.\tNous garderons la pièce au chaud.\nWe will meet again someday.\tOn se reverra.\nWe won't go back to Boston.\tNous ne retournerons pas à Boston.\nWe worry about your future.\tNous nous faisons du souci pour votre avenir.\nWe worry about your future.\tNous nous inquiétons de votre avenir.\nWe worry about your future.\tNous nous inquiétons de ton avenir.\nWe worry about your future.\tNous nous faisons du souci pour ton avenir.\nWe wouldn't stand a chance.\tNous n'aurions aucune chance.\nWe'll come to look for you.\tNous viendrons te chercher.\nWe'll figure something out.\tNous allons réfléchir à quelque chose.\nWe'll figure something out.\tNous goupillerons quelque chose.\nWe'll find a way to use it.\tNous trouverons un moyen de l'utiliser.\nWe'll find a way to use it.\tOn trouvera un moyen de l'utiliser.\nWe'll have to deal with it.\tIl nous faudra faire avec.\nWe'll have to deal with it.\tIl nous faudra composer avec.\nWe'll have to deal with it.\tIl nous faudra le gérer.\nWe'll never get through it.\tOn ne va jamais s'en sortir.\nWe'll never know who he is.\tNous ne saurons jamais qui il est.\nWe'll never know who he is.\tOn ne saura jamais qui il est.\nWe'll stay out of your way.\tNous resterons hors de ton chemin.\nWe'll stay out of your way.\tNous resterons hors de votre chemin.\nWe'll talk about that soon.\tNous en parlerons prochainement.\nWe're all in the same boat.\tNous sommes tous sur le même bateau.\nWe're all in this together.\tNous sommes tous sur le même bateau.\nWe're all in this together.\tNous y sommes tous ensemble.\nWe're all on the same team.\tNous faisons tous partie de la même équipe.\nWe're all on the same team.\tNous faisons toutes partie de la même équipe.\nWe're all on the same team.\tNous appartenons tous à la même équipe.\nWe're all on the same team.\tNous appartenons toutes à la même équipe.\nWe're all working together.\tNous travaillons tous ensemble.\nWe're almost like brothers.\tNous sommes presque comme des frères.\nWe're buying movie tickets.\tNous achetons des billets de cinéma.\nWe're going back to Boston.\tNous retournons à Boston.\nWe're going to do it again.\tNous allons le refaire.\nWe're going to play tennis.\tOn va jouer au tennis.\nWe're going to play tennis.\tNous allons jouer au tennis.\nWe're heading for disaster.\tNous allons au devant d'un désastre.\nWe're meant for each other.\tNous sommes faits l'un pour l'autre.\nWe're meant for each other.\tNous sommes destinés l'un à l'autre.\nWe're meant to be together.\tNous sommes censés être ensemble.\nWe're not done playing yet.\tNous n'avons pas encore fini de jouer.\nWe're not from around here.\tNous ne sommes pas du coin.\nWe're not from around here.\tNous ne sommes pas d'ici.\nWe're not getting anywhere.\tNous n'allons nulle part.\nWe're not going to make it.\tÇa va pas le faire.\nWe're not going to make it.\tNous n'allons pas y arriver.\nWe're not going to make it.\tNous n'allons pas y parvenir.\nWe're not throwing it away.\tNous n'allons pas le jeter.\nWe're not together anymore.\tNous ne sommes plus ensemble.\nWe're on the same page now.\tNous sommes maintenant en phase.\nWe're practically brothers.\tNous sommes pratiquement frères !\nWe've all been here before.\tNous avons tous été ici auparavant.\nWe've all seen that before.\tNous avons tous vu cela auparavant.\nWe've got a bigger problem.\tNous avons un plus gros problème.\nWe've got a lot of friends.\tNous avons beaucoup d'amis.\nWe've never been to Boston.\tNous n'avons jamais été à Boston.\nWe've spent too much money.\tNous avons dépensé trop d'argent.\nWere you at home yesterday?\tTu étais chez toi hier ?\nWere you at home yesterday?\tÉtiez-vous chez vous, hier ?\nWere you at home yesterday?\tÉtais-tu chez toi hier ?\nWeren't you here yesterday?\tN'étais-tu pas là hier ?\nWeren't you here yesterday?\tN'étiez-vous pas ici hier ?\nWhat a pity she can't come!\tQuel dommage qu'elle ne puisse pas venir !\nWhat a wonderful invention!\tQuelle invention merveilleuse !\nWhat about a glass of beer?\tQue dirais-tu d'un verre de bière ?\nWhat am I being accused of?\tDe quoi suis-je accusé ?\nWhat an interesting theory!\tQuelle théorie intéressante !\nWhat are these charges for?\tÀ quoi correspondent ces montants ?\nWhat are we supposed to do?\tQue sommes-nous supposés faire ?\nWhat are we supposed to do?\tQue sommes-nous censés faire ?\nWhat are we supposed to do?\tQue sommes-nous supposées faire ?\nWhat are we supposed to do?\tQue sommes-nous censées faire ?\nWhat are you cooking today?\tQu'est-ce que tu cuisines aujourd'hui?\nWhat are you doing in here?\tQu'est-ce que tu fais ici ?\nWhat are you doing tonight?\tQu'est-ce que tu fais ce soir ?\nWhat are you frightened of?\tDe quoi avez-vous peur ?\nWhat are you going to have?\tQue prends-tu ?\nWhat are you going to have?\tQue va-t-on te servir ?\nWhat are you guys drinking?\tQu'est-ce que vous buvez, les mecs ?\nWhat are you guys drinking?\tQu'est-ce que vous buvez, les gonzesses ?\nWhat are you interested in?\tÀ quoi t'intéresses-tu ?\nWhat are you interested in?\tÀ quoi vous intéressez-vous ?\nWhat are you interested in?\tQu'est-ce qui vous intéresse ?\nWhat are you lining up for?\tPourquoi vous mettez-vous en rang ?\nWhat are you lining up for?\tPour quelle raison vous mettez-vous en rang ?\nWhat are you mad at me for?\tPourquoi es-tu en colère après moi ?\nWhat are you saving up for?\tDans quel but épargnes-tu ?\nWhat are you saving up for?\tDans quel but épargnez-vous ?\nWhat are you snickering at?\tDe quoi ricanez-vous ?\nWhat are you talking about?\tDe quoi parlez-vous ?\nWhat are you talking about?\tDe quoi parles-tu ?\nWhat are you talking about?\tDe quoi parlez-vous ?\nWhat are you talking about?\tQu'est-ce que tu racontes ?\nWhat are you trying to say?\tQue veux-tu dire ?\nWhat are you trying to say?\tQue voulez-vous dire ?\nWhat are your measurements?\tQuelles sont tes mensurations ?\nWhat are your measurements?\tQuelles sont vos mensurations ?\nWhat are your measurements?\tQuelles sont vos mesures ?\nWhat are your measurements?\tQuelles sont tes mesures ?\nWhat browser are you using?\tQuel navigateur utilises-tu ?\nWhat color is Mary's scarf?\tDe quelle couleur est l'écharpe de Mary ?\nWhat did Tom ask you to do?\tQu'est-ce que Tom vous a demandé de faire ?\nWhat did Tom want us to do?\tQu'est-ce que Tom voulait que nous fassions ?\nWhat did it turn out to be?\tQue cela s'est-il révélé être ?\nWhat did they hit you with?\tAvec quoi vous ont-ils frappé ?\nWhat did they hit you with?\tAvec quoi vous ont-ils frappée ?\nWhat did they hit you with?\tAvec quoi vous ont-ils frappés ?\nWhat did they hit you with?\tAvec quoi vous ont-ils frappées ?\nWhat did they hit you with?\tAvec quoi vous ont-elles frappé ?\nWhat did they hit you with?\tAvec quoi vous ont-elles frappée ?\nWhat did they hit you with?\tAvec quoi vous ont-elles frappés ?\nWhat did they hit you with?\tAvec quoi vous ont-elles frappées ?\nWhat did they hit you with?\tAvec quoi t'ont-elles frappé ?\nWhat did they hit you with?\tAvec quoi t'ont-elles frappée ?\nWhat did they hit you with?\tAvec quoi t'ont-ils frappé ?\nWhat did they hit you with?\tAvec quoi t'ont-ils frappée ?\nWhat did you come here for?\tPourquoi es-tu venu ici ?\nWhat did you do last night?\tQu'as-tu fait la nuit dernière ?\nWhat did you eat for lunch?\tTu as mangé quoi, ce midi ?\nWhat did you say yesterday?\tQu'avez-vous dit hier ?\nWhat did you think I meant?\tQue pensiez-vous que je voulais dire ?\nWhat did you think I meant?\tQue pensais-tu que je voulais dire ?\nWhat do they want us to do?\tQue veulent-ils que nous fassions ?\nWhat do they want us to do?\tQue veulent-elles que nous fassions ?\nWhat do you call this bird?\tComment s'appelle cet oiseau ?\nWhat do you call this bird?\tComment nomme-t-on cet oiseau ?\nWhat do you call this bird?\tComment se nomme cet oiseau ?\nWhat do you know about him?\tQu'est-ce que tu sais à son sujet ?\nWhat do you know about him?\tQue sais-tu de lui ?\nWhat do you like about her?\tQu'aimes-tu chez elle ?\nWhat do you like about her?\tQu'est-ce que tu aimes chez elle ?\nWhat do you like about her?\tQu'est-ce que vous aimez chez elle ?\nWhat do you like about him?\tQu'est-ce que tu aimes chez lui ?\nWhat do you like about him?\tQu'est-ce que vous aimez chez lui ?\nWhat do you say to my plan?\tQue dis-tu de mon plan ?\nWhat do you say to my plan?\tQue dites-vous de mon plan ?\nWhat do you think about it?\tQu'en penses-tu ?\nWhat do you think of Japan?\tQue penses-tu du Japon ?\nWhat do you want me to say?\tQu'est-ce que tu veux que je dise ?\nWhat do you want me to say?\tQue voulez-vous que je dise ?\nWhat do you want me to say?\tQue veux-tu que je dise ?\nWhat do you want to do now?\tQu'est-ce que tu veux faire maintenant ?\nWhat does it actually mean?\tQu'est-ce que ça signifie, en réalité ?\nWhat else is on the agenda?\tQu'y a-t-il également à son programme aujourd'hui?\nWhat else would you advise?\tQue conseillez-vous d'autre?\nWhat exactly don't you get?\tQu'est-ce que tu ne piges pas, exactement ?\nWhat exactly don't you get?\tQu'est-ce que tu ne captes pas, exactement ?\nWhat exactly don't you get?\tQu'est-ce que vous ne pigez pas, exactement ?\nWhat exactly don't you get?\tQu'est-ce que vous ne captez pas, exactement ?\nWhat good would come of it?\tQu'en sortirait-il de bon ?\nWhat happened at the beach?\tQue s'est-il passé à la plage ?\nWhat happened was horrible.\tCe qui est arrivé fut horrible.\nWhat has become of her son?\tQu'est devenu son fils ?\nWhat have they done to you?\tQue vous ont-elles fait ?\nWhat have they done to you?\tQue vous ont-ils fait ?\nWhat have they done to you?\tQue t'ont-elles fait ?\nWhat have they done to you?\tQue t'ont-ils fait ?\nWhat have you come up with?\tQu'as-tu dégoté ?\nWhat have you come up with?\tQu'avez-vous dégoté ?\nWhat have you come up with?\tQu'as-tu déniché ?\nWhat have you come up with?\tQu'avez-vous déniché ?\nWhat he said made us angry.\tCe qu'il a dit nous a mis en colère.\nWhat he said made us angry.\tCe qu'il dit nous mit en colère.\nWhat he said might be true.\tIl se pourrait que ce qu'il a dit soit vrai.\nWhat he's doing is illegal.\tCe qu'il fait est illégal.\nWhat if they don't like me?\tQu'en sera-t-il s'ils ne m'apprécient pas ?\nWhat if they don't like me?\tEt s'ils ne m'apprécient pas ?\nWhat if they don't like me?\tEt si elles ne m'apprécient pas ?\nWhat if they don't like me?\tQu'en sera-t-il si elles ne m'apprécient pas ?\nWhat is all the fuss about?\tC'est quoi toutes ces histoires ?\nWhat is it with you people?\tQuel est votre problème ?\nWhat is the correct answer?\tQuelle est la bonne réponse ?\nWhat is your date of birth?\tQuelle est ta date de naissance ?\nWhat is your mother tongue?\tQuelle est votre langue natale ?\nWhat is your mother tongue?\tQuelle est votre langue maternelle ?\nWhat keeps you up at night?\tQu'est-ce qui te tient éveillé la nuit ?\nWhat keeps you up at night?\tQu'est-ce qui vous tient éveillé la nuit ?\nWhat language do you speak?\tQuelle langue parles-tu ?\nWhat languages do you know?\tQuelles langues connais-tu ?\nWhat languages do you know?\tQuelles langues connaissez-vous ?\nWhat more is there to know?\tQu'y a-t-il de plus à savoir ?\nWhat street do you live on?\tDans quelle rue vivez-vous ?\nWhat street do you live on?\tDans quelle rue vis-tu ?\nWhat time did he get there?\tÀ quelle heure est-il arrivé là-bas ?\nWhat time did he get there?\tÀ quelle heure y est-il parvenu ?\nWhat time do you go to bed?\tÀ quelle heure vas-tu au lit ?\nWhat time do you go to bed?\tÀ quelle heure allez-vous au lit ?\nWhat time is dinner served?\tÀ quelle heure est servi le dîner ?\nWhat time is dinner served?\tÀ quelle heure le dîner est-il servi ?\nWhat time is it over there?\tQuelle heure est-il, là-bas ?\nWhat time will you be back?\tÀ quelle heure seras-tu de retour ?\nWhat was the time of death?\tQuelle fut l'heure de la mort ?\nWhat was the time of death?\tQuelle a été l'heure de la mort ?\nWhat was your first tattoo?\tQuel était ton premier tatouage ?\nWhat would you like to eat?\tQu'est ce que tu aimes manger ?\nWhat would you like to eat?\tQu'aimerais-tu manger ?\nWhat would you like to eat?\tQue voulez-vous manger ?\nWhat would you like to eat?\tQue veux-tu manger ?\nWhat would you like to eat?\tQue voudrais-tu manger ?\nWhat would you like to eat?\tQu'aimes-tu manger ?\nWhat would you like to eat?\tQue veux-tu manger ?\nWhat would you like to eat?\tQu'aimerais-tu manger ?\nWhat would you like to eat?\tQu'aimeriez-vous manger ?\nWhat's Tom's office number?\tQuel est le numéro de bureau de Tom ?\nWhat's everyone staring at?\tQu'est-ce que tout le monde regarde ?\nWhat's going on down there?\tQue se passe-t-il ici-bas ?\nWhat's the matter with you?\tQue t'arrive-t-il ?\nWhat's the matter with you?\tQue vous arrive-t-il ?\nWhat's the matter with you?\tQu'as-tu ?\nWhat's the matter with you?\tQu'avez-vous ?\nWhat's the matter with you?\tQu'est-ce que tu as ?\nWhat's the matter with you?\tQu'est-ce que vous avez ?\nWhat's the matter with you?\tQu'est-ce qui t'arrive ?\nWhat's the matter with you?\tQuel est ton problème ?\nWhat's the matter with you?\tQu'est-ce qui vous arrive ?\nWhat's the matter with you?\tQuel est votre problème ?\nWhat's the meaning of life?\tQuel est le sens de la vie ?\nWhat's the meaning of that?\tQuelle est le sens de cela ?\nWhat's wrong with this one?\tQu'est-ce qui ne va pas avec celui-là ?\nWhat's your favorite candy?\tQuel est votre bonbon préféré ?\nWhat's your favorite fruit?\tQuel est ton fruit préféré ?\nWhat's your favorite fruit?\tQuel est votre fruit préféré ?\nWhat's your favorite movie?\tQuel est ton film préféré ?\nWhat's your favorite movie?\tQuel est votre film préféré ?\nWhat's your favorite sport?\tQuel sport préfères-tu ?\nWhat's your favorite sport?\tQuel est ton sport préféré ?\nWhat's your favorite sport?\tQuel est ton sport préféré ?\nWhat's your favorite sport?\tQuel est votre sport préféré ?\nWhat's your pre-tax income?\tQuel est votre revenu avant impôts ?\nWhat's your pre-tax income?\tQuel est ton revenu avant impôts ?\nWhatever you do, don't run.\tQuoi que vous fassiez, ne courez pas !\nWhatever you do, don't run.\tQuoi que tu fasses, ne coure pas !\nWhen are we going to do it?\tQuand allons-nous le faire ?\nWhen are you going to come?\tQuand vas-tu venir ?\nWhen are you going to come?\tQuand allez-vous venir ?\nWhen are you going to move?\tQuand vas-tu déménager ?\nWhen are you going to move?\tQuand allez-vous déménager ?\nWhen did you come to Japan?\tQuand es-tu venu au Japon ?\nWhen did you get to London?\tQuand es-tu allé à Londres ?\nWhen did you hear about it?\tQuand en as-tu entendu parler ?\nWhen did you take the exam?\tQuand avez-vous passé l'examen ?\nWhen did you take the exam?\tQuand as-tu passé l'examen ?\nWhen is it going to happen?\tQuand est-ce que ça va arriver ?\nWhen was this church built?\tQuand cette église a-t-elle été érigée ?\nWhen was this temple built?\tQuand a été construit ce temple ?\nWhen was your last day off?\tQuand était ton dernier jour de congé ?\nWhenever I call, he is out.\tÀ chaque fois que j'appelle, il est absent.\nWhere am I supposed to sit?\tOù suis-je censé m'asseoir ?\nWhere are the eggs, please?\tS'il vous plaît, où sont les œufs ?\nWhere are we going tonight?\tOù allons-nous cette nuit ?\nWhere can I rent a costume?\tOù puis-je louer un costume ?\nWhere did I put my glasses?\tOù ai-je mis mes lunettes ?\nWhere did I put the hammer?\tOù ai-je mis le marteau ?\nWhere did Tom go yesterday?\tOù Tom est-il allé hier ?\nWhere did all the bread go?\tOù est passé tout le pain ?\nWhere did you buy that hat?\tOù as-tu acheté ce chapeau ?\nWhere did you buy that hat?\tOù avez-vous acheté ce chapeau ?\nWhere did you find the key?\tOù as-tu trouvé la clé ?\nWhere did you find the key?\tOù as-tu trouvé la clef ?\nWhere did you find the key?\tOù avez-vous trouvé la clé ?\nWhere did you find the key?\tOù avez-vous trouvé la clef ?\nWhere did you get the idea?\tOù as-tu eu l'idée ?\nWhere did you go to school?\tOù es-tu allé à l'école ?\nWhere did you go to school?\tOù es-tu allée à l'école ?\nWhere did you go to school?\tOù êtes-vous allé à l'école ?\nWhere did you go to school?\tOù êtes-vous allée à l'école ?\nWhere did you go to school?\tOù êtes-vous allés à l'école ?\nWhere did you go to school?\tOù êtes-vous allées à l'école ?\nWhere did you guys grow up?\tOù avez-vous grandi, les mecs ?\nWhere did you have in mind?\tQuel endroit avais-tu à l'esprit ?\nWhere did you have in mind?\tQuel endroit aviez-vous à l'esprit ?\nWhere did you learn French?\tOù avez-vous appris le français ?\nWhere did you learn French?\tOù as-tu appris le français ?\nWhere did you park the car?\tOù as-tu garé la voiture ?\nWhere did you park the car?\tOù avez-vous garé la voiture ?\nWhere did you park the car?\tOù as-tu garé la voiture ?\nWhere did you put the keys?\tOù as-tu mis les clés ?\nWhere did you put the keys?\tOù avez-vous mis les clés ?\nWhere did you put your key?\tOù est-ce vous avez mis votre clé ?\nWhere did you put your key?\tOù est-ce tu as mis ta clé ?\nWhere do I pay for the gas?\tOù dois-je payer pour le gaz ?\nWhere do you all come from?\tD'où venez-vous tous ?\nWhere do you all come from?\tD'où venez-vous toutes ?\nWhere do you want us to go?\tOù veux-tu que nous allions ?\nWhere do you want us to go?\tOù voulez-vous que nous allions ?\nWhere does he practice law?\tOù exerce-t-il la profession d'avocat ?\nWhere have you been lately?\tOù étais-tu ces derniers temps ?\nWhere have you been lately?\tOù étiez-vous ces derniers temps ?\nWhere is the Greek embassy?\tOù se trouve l'ambassade grèque ?\nWhere is the logic in that?\tOù est donc la logique là-dedans ?\nWhere is the nearest store?\tOù se trouve le magasin le plus proche ?\nWhere is the ticket office?\tOù est le guichet ?\nWhere is the ticket window?\tOù est le guichet ?\nWhere shall I wait for you?\tOù dois-je vous attendre ?\nWhere shall we eat tonight?\tOù dînerons-nous ce soir ?\nWhere shall we eat tonight?\tOù souperons-nous ce soir ?\nWhere were you coming from?\tD'où venais-tu ?\nWhere were you coming from?\tD'où veniez-vous ?\nWhere would you like to go?\tOù désirez-vous vous rendre ?\nWhere would you like to go?\tOù aimeriez-vous aller ?\nWhere would you like to go?\tOù aimeriez-vous vous rendre ?\nWhere would you like to go?\tOù aimerais-tu aller ?\nWhere would you like to go?\tOù aimerais-tu te rendre ?\nWhere's Tom going to sleep?\tOù Tom va-t-il dormir ?\nWhere's convenient for you?\tOù cela vous agrée-t-il ?\nWhere's convenient for you?\tOù cela t'agrée-t-il ?\nWhere's convenient for you?\tOù est-ce que ça t'arrange ?\nWhere's convenient for you?\tOù est-ce que ça vous arrange ?\nWhere's that movie showing?\tOù ce film se joue-t-il ?\nWhere's the nearest church?\tOù est l'église la plus proche ?\nWhere's the nearest museum?\tOù se situe le musée le plus proche ?\nWhere's the nearest museum?\tOù est le musée le plus proche ?\nWhere's your other brother?\tOù est ton autre frère ?\nWhere's your other brother?\tOù est votre autre frère ?\nWhich car is your father's?\tQuelle voiture est celle de ton père ?\nWhich car is your father's?\tQuelle voiture est celle de votre père ?\nWhich floor do you live on?\tÀ quel étage habitez-vous ?\nWhich floor do you live on?\tÀ quel étage habites-tu ?\nWhich floor do you live on?\tÀ quel étage loges-tu ?\nWhich floor do you live on?\tÀ quel étage demeurez-vous ?\nWhich one are you bringing?\tLequel apportez-vous ?\nWhich one will they choose?\tLequel choisiront-ils ?\nWhich one will they choose?\tLequel choisiront-elles ?\nWhich one will they choose?\tLaquelle choisiront-ils ?\nWhich one will they choose?\tLaquelle choisiront-elles ?\nWho are you supposed to be?\tQui êtes-vous supposé être ?\nWho are you supposed to be?\tQui êtes-vous supposée être ?\nWho are you supposed to be?\tQui êtes-vous supposées être ?\nWho are you supposed to be?\tQui êtes-vous supposés être ?\nWho are you supposed to be?\tQui es-tu supposé être ?\nWho are you supposed to be?\tQui es-tu supposée être ?\nWho do you want to talk to?\tÀ qui veux-tu parler ?\nWho do you want to talk to?\tÀ qui voulez-vous parler ?\nWho do you want to talk to?\tAvec qui voulez-vous vous entretenir ?\nWho do you want to talk to?\tAvec qui veux-tu t'entretenir ?\nWho doesn't like the beach?\tQui n'aime pas la plage ?\nWho else came to the party?\tQui d'autre est venu à la fête ?\nWho invented the telephone?\tQui a inventé le téléphone ?\nWho is your favorite actor?\tQuel est ton acteur préféré ?\nWho is your favorite actor?\tQui est ton acteur préféré ?\nWho made the actual arrest?\tQui a procédé à l'arrestation proprement dite ?\nWho organized that meeting?\tQui a organisé cette réunion ?\nWho painted these pictures?\tQui a peint ces tableaux ?\nWho said I stole the money?\tQui a dit que j'avais volé l'argent ?\nWho would like to go first?\tQui voudrait y aller en premier ?\nWho would like to go first?\tQui voudrait passer en premier ?\nWho'll be the first to die?\tQui sera le premier à mourir?\nWho's the fastest one here?\tQui est ici le plus rapide ?\nWho's the fastest one here?\tQui est ici la plus rapide ?\nWho's your favorite writer?\tQui est votre écrivain favori ?\nWho's your favorite writer?\tQui est ton écrivain favori ?\nWhoever did this was smart.\tQuiconque l'a fait était malin.\nWhose phone number is this?\tÀ qui est ce numéro de téléphone ?\nWhy are you all dressed up?\tPourquoi êtes-vous sur votre trente-et-un ?\nWhy are you all dressed up?\tPourquoi es-tu sur ton trente-et-un ?\nWhy are you angry with him?\tPourquoi es-tu fâché avec lui ?\nWhy are you angry with him?\tPourquoi êtes-vous fâchée avec lui ?\nWhy are you asking me this?\tPourquoi me demandez-vous cela ?\nWhy are you asking me this?\tPourquoi me demandes-tu cela ?\nWhy are you looking so sad?\tPourquoi as-tu l'air si triste ?\nWhy are you looking so sad?\tPourquoi est-ce que tu as l'air si triste ?\nWhy are you questioning me?\tPourquoi me questionnez-vous ?\nWhy are you questioning me?\tPourquoi me questionnes-tu ?\nWhy are you saying goodbye?\tPourquoi dites-vous adieu ?\nWhy are you so hard-headed?\tPourquoi êtes-vous si entêté ?\nWhy are you so hard-headed?\tPourquoi es-tu si entêté ?\nWhy are you so hard-headed?\tPourquoi es-tu si entêtée ?\nWhy are you so hard-headed?\tPourquoi êtes-vous si entêtée ?\nWhy are you so tired today?\tPourquoi es-tu si fatigué aujourd'hui ?\nWhy are you so tired today?\tPourquoi êtes-vous si fatigué aujourd'hui ?\nWhy are you so tired today?\tPourquoi es-tu si fatiguée aujourd'hui ?\nWhy are you so tired today?\tPourquoi êtes-vous si fatiguée aujourd'hui ?\nWhy are you standing there?\tPourquoi vous tenez-vous là ?\nWhy are you standing there?\tPourquoi te tiens-tu là ?\nWhy can't people hibernate?\tPourquoi les gens ne peuvent-ils pas hiberner ?\nWhy did he do such a thing?\tPourquoi a-t-il fait une telle chose ?\nWhy did he do such a thing?\tPourquoi a-t-il fait une chose pareille ?\nWhy did you come over here?\tPourquoi êtes-vous venus ici ?\nWhy did you come over here?\tPourquoi êtes-vous venu ici ?\nWhy did you come over here?\tPourquoi êtes-vous venue ici ?\nWhy did you come over here?\tPourquoi êtes-vous venues ici ?\nWhy did you come over here?\tPourquoi es-tu venu ici ?\nWhy did you come over here?\tPourquoi es-tu venue ici ?\nWhy did you kill the snake?\tPourquoi as-tu tué le serpent ?\nWhy did you kill the snake?\tPourquoi avez-vous tué le serpent ?\nWhy did you listen to them?\tPourquoi les avez-vous écoutés ?\nWhy did you listen to them?\tPourquoi les avez-vous écoutées ?\nWhy did you listen to them?\tPourquoi les as-tu écoutés ?\nWhy did you listen to them?\tPourquoi les as-tu écoutées ?\nWhy didn't I think of that?\tPourquoi n'y ai-je pas pensé ?\nWhy didn't I think of that?\tPourquoi n'y ai-je pas songé ?\nWhy didn't you do anything?\tPourquoi n'as-tu rien fait ?\nWhy didn't you do anything?\tPourquoi n'avez-vous rien fait ?\nWhy didn't you wait for me?\tPourquoi ne m'as-tu pas attendu ?\nWhy didn't you wait for me?\tPourquoi ne m'avez-vous pas attendu ?\nWhy do you need this money?\tPourquoi avez-vous besoin de cet argent ?\nWhy do you need this money?\tPourquoi as-tu besoin de cet argent ?\nWhy do you want to do this?\tPourquoi veux-tu faire cela ?\nWhy do you want to do this?\tPourquoi voulez-vous faire cela ?\nWhy does Tom drink so much?\tPourquoi Tom boit-il autant ?\nWhy does it make you angry?\tPourquoi ça te met en colère ?\nWhy does it make you angry?\tPourquoi cela vous met-il en colère ?\nWhy don't people hibernate?\tPourquoi les gens n'hibernent-ils pas ?\nWhy don't we call it a day?\tPourquoi ne mettons-nous pas un terme à la journée ?\nWhy don't you go on a diet?\tPourquoi ne commences-tu pas un régime ?\nWhy don't you go on a diet?\tPourquoi n'entreprenez-vous pas un régime ?\nWhy don't you go on a diet?\tPourquoi ne fais-tu pas un régime ?\nWhy don't you have a party?\tPourquoi n'organisez-vous pas une fête ?\nWhy don't you have a party?\tPourquoi n'organises-tu pas une fête ?\nWhy don't you listen to me?\tPourquoi ne m'écoutes-tu pas ?\nWhy don't you ride with me?\tPourquoi ne montes-tu pas avec moi ?\nWhy don't you ride with me?\tPourquoi ne montez-vous pas avec moi ?\nWhy don't you stay a while?\tPourquoi ne restez-vous pas un moment ?\nWhy don't you stay a while?\tPourquoi ne restes-tu pas un moment ?\nWhy don't you take a break?\tPourquoi ne fais-tu pas une pause ?\nWhy don't you take a break?\tPourquoi ne faites-vous pas une pause ?\nWhy go to all that trouble?\tPourquoi traverser toutes ces difficultés ?\nWhy is this light blinking?\tPourquoi cette lumière clignote-t-elle ?\nWhy is this only in French?\tPourquoi ceci est seulement en français?\nWhy not apply for that job?\tPourquoi ne pas te porter candidat à ce poste ?\nWhy not apply for that job?\tPourquoi ne pas faire acte de candidature pour cet emploi ?\nWhy not apply for that job?\tPourquoi ne sollicitez-vous pas cet emploi ?\nWhy should I have to leave?\tPourquoi devrais-je partir ?\nWhy should I pay that much?\tPourquoi devrais-je payer autant ?\nWhy should it be necessary?\tPourquoi ce serait-il nécessaire ?\nWill people make fun of me?\tLes gens se moqueront-ils de moi ?\nWill she come home at five?\tRentrera-t-elle à la maison à cinq heures ?\nWill you give me some time?\tMe donneras-tu du temps ?\nWill you give me some time?\tMe donnerez-vous du temps ?\nWill you have a cup of tea?\tVoulez-vous une tasse de thé ?\nWipe your shoes on the mat.\tEssuie tes pieds sur le tapis.\nWires transmit electricity.\tLes câbles transmettent l'électricité.\nWires transmit electricity.\tLes fils transmettent l'électricité.\nWithout you, life is awful.\tSans toi, la vie est atroce.\nWords hurt more than fists.\tLes mots font plus mal que les poings.\nWorld War II ended in 1945.\tLa seconde Guerre Mondiale s'est terminée en 1945.\nWorld War II ended in 1945.\tLa deuxième guerre mondiale s'est achevée en dix-neuf-cents-quarante-cinq.\nWorld War II ended in 1945.\tLa deuxième guerre mondiale s'est achevée en mille-neuf-cents-quarante-cinq.\nWould you close the window?\tVoudriez-vous fermer la fenêtre ?\nWould you lend me a pencil?\tMe prêterais-tu un crayon ?\nWould you lend me a pencil?\tMe prêteriez-vous un crayon ?\nWould you lend me your pen?\tMe prêterais-tu ton stylo ?\nWould you like more coffee?\tVeux-tu encore un peu de café ?\nWould you like some coffee?\tVoulez-vous du café ?\nWould you like some coffee?\tVoudriez-vous du café ?\nWould you like some coffee?\tVoudrais-tu du café ?\nWould you like to meet Tom?\tVoudrais-tu rencontrer Tom ?\nWould you like to meet Tom?\tVoudriez-vous rencontrer Tom ?\nWould you like to see them?\tAimeriez-vous les voir ?\nWould you mind if I helped?\tCela vous dérangerait si j'aidais ?\nWould you mind if I smoked?\tCela vous dérangerait-il que je fume ?\nWould you please slow down?\tPourrais-tu ralentir, s'il te plaît ?\nWould you please slow down?\tPourriez-vous ralentir, s'il vous plaît ?\nWould you say it once more?\tVoudriez-vous le dire une fois de plus ?\nWould you say it once more?\tVoudrais-tu le dire une fois de plus ?\nWould you say it once more?\tVoudriez-vous le dire encore une fois ?\nWould you say it once more?\tVoudrais-tu le dire encore une fois ?\nWouldn't that be something?\tEst-ce que ça ne serait pas là quelque chose ?\nWow! It's been a long time.\tBah ! Ça fait une paille.\nWow! It's been a long time.\tBah ! Ça fait un bail.\nWrite in the date yourself.\tÉcrivez vous-même la date.\nWrite in the date yourself.\tÉcris toi-même la date.\nWrite in the date yourself.\tÉcris-y toi-même la date.\nWrite in the date yourself.\tÉcris toi-même la date dessus.\nWrite in the date yourself.\tÉcrivez-y vous-même la date.\nWrite in the date yourself.\tÉcrivez vous-même la date dessus.\nWrite it down here, please.\tÉcrivez-le ici, s'il vous plait.\nWrite with a ballpoint pen.\tÉcrivez avec un stylo à bille s'il vous plait.\nYesterday, I bought a book.\tHier, j'ai acheté un livre.\nYesterday, I bought a book.\tHier j'ai acheté un livre.\nYou ain't seen nothing yet.\tZ'avez encore rien vu.\nYou ain't seen nothing yet.\tT'as encore rien vu.\nYou and I are good friends.\tToi et moi sommes bons amis.\nYou and I are good friends.\tVous et moi sommes bons amis.\nYou and I are the same age.\tToi et moi sommes du même âge.\nYou and I are the same age.\tVous et moi sommes du même âge.\nYou are absolutely correct.\tVous avez parfaitement raison.\nYou are always complaining.\tTu te plains toujours.\nYou are always complaining.\tVous vous plaignez toujours.\nYou are always complaining.\tTu as toujours à te plaindre.\nYou are always watching TV.\tTu regardes tout le temps la télé.\nYou are always watching TV.\tVous regardez tout le temps la télévision.\nYou are deceiving yourself.\tVous vous leurrez.\nYou are deceiving yourself.\tTu te leurres.\nYou are his brother, right?\tTu es son frère, n'est-ce pas ?\nYou are on the wrong plane.\tVous vous êtes trompé d'avion.\nYou are on the wrong train.\tTu es dans le mauvais train.\nYou are taller than she is.\tVous êtes plus grand qu'elle.\nYou are taller than she is.\tTu es plus grand qu'elle.\nYou are taller than she is.\tTu es plus grande qu'elle.\nYou are taller than she is.\tVous êtes plus grande qu'elle.\nYou are taller than she is.\tVous êtes plus grands qu'elle.\nYou are taller than she is.\tVous êtes plus grandes qu'elle.\nYou are tired, and so am I.\tTu es fatigué, et moi aussi.\nYou are unbelievably naive.\tTu es incroyablement naïf.\nYou aren't like the others.\tTu n'es pas comme les autres.\nYou aren't like the others.\tVous n'êtes pas comme les autres.\nYou came at the right time.\tTu es apparue au bon moment.\nYou can always count on me.\tTu peux toujours compter sur moi.\nYou can choose one of them.\tVous pouvez en choisir un.\nYou can choose one of them.\tTu peux en choisir un.\nYou can go there in a boat.\tTu peux y aller en bateau.\nYou can leave the room now.\tTu peux quitter la pièce, maintenant.\nYou can open your eyes now.\tVous pouvez ouvrir les yeux, maintenant.\nYou can open your eyes now.\tTu peux ouvrir les yeux, maintenant.\nYou can sleep on the couch.\tOn peut dormir sur le canapé.\nYou can sleep on the couch.\tTu peux dormir sur le canapé.\nYou can sleep on the couch.\tVous pouvez dormir sur le canapé.\nYou can smoke in this room.\tVous pouvez fumer dans cette pièce.\nYou can smoke in this room.\tTu peux fumer dans cette chambre.\nYou can smoke in this room.\tVous pouvez fumer dans cette chambre.\nYou can smoke in this room.\tTu peux fumer dans cette pièce.\nYou can still see the ship.\tOn peut encore voir le bateau.\nYou can visit NHK any time.\tOn peut visiter la NHK n'importe quand.\nYou can't blame this on me.\tVous ne pouvez pas me reprocher cela.\nYou can't blame this on me.\tVous ne pouvez pas me le reprocher.\nYou can't blame this on me.\tTu ne peux pas me le reprocher.\nYou can't blame this on us.\tVous ne pouvez pas nous reprocher cela.\nYou can't blame this on us.\tVous ne pouvez pas nous le reprocher.\nYou can't blame this on us.\tTu ne peux pas nous le reprocher.\nYou can't charge that much.\tVous ne pouvez pas nous faire payer une telle somme.\nYou can't charge that much.\tVous ne pouvez pas exiger autant d'argent.\nYou can't charge that much.\tTu ne peux pas exiger autant d'argent.\nYou can't compete with Tom.\tTu ne peux pas rivaliser avec Tom.\nYou can't compete with Tom.\tVous ne pouvez pas rivaliser avec Tom.\nYou can't handle the truth.\tTu n'arrives pas à faire face à la vérité.\nYou can't handle the truth.\tVous n'arrivez pas à faire face à la vérité.\nYou can't hurt my feelings.\tTu n'arriveras pas à me blesser.\nYou can't hurt my feelings.\tVous n'arriverez pas à me blesser.\nYou can't hurt my feelings.\tTu ne parviendras pas à me blesser.\nYou can't hurt my feelings.\tVous ne parviendrez pas à me blesser.\nYou can't just not show up.\tTu ne peux pas simplement ne pas te montrer.\nYou can't just not show up.\tVous ne pouvez pas simplement ne pas vous montrer.\nYou can't leave me hanging.\tTu ne peux pas me laisser poireauter.\nYou can't leave me hanging.\tVous ne pouvez pas me laisser poireauter.\nYou can't leave me hanging.\tTu ne peux pas me faire faire le pied de grue.\nYou can't leave me hanging.\tVous ne pouvez pas me faire faire le pied de grue.\nYou can't rely on his help.\tTu ne peux pas compter sur son aide.\nYou can't rely on his help.\tVous ne pouvez pas compter sur son aide.\nYou can't say I didn't try.\tTu ne peux pas dire que je n'ai pas essayé.\nYou can't say I didn't try.\tVous ne pouvez pas dire que je n'ai pas essayé.\nYou can't take it with you.\tTu ne l'emporteras pas au paradis.\nYou deserve more than that.\tVous méritez plus que ça.\nYou deserve more than that.\tVous méritez davantage que ça.\nYou deserve more than that.\tTu mérites davantage que ça.\nYou deserve more than that.\tTu mérites plus que ça.\nYou despise Tom, don't you?\tTu méprises Tom, n'est-ce pas ?\nYou despise Tom, don't you?\tVous méprisez Tom, n'est-ce pas ?\nYou did what you had to do.\tVous avez fait ce que vous deviez.\nYou didn't have any choice.\tTu n'avais pas le choix.\nYou didn't have any choice.\tVous n'aviez pas le choix.\nYou didn't have to say yes.\tTu n'étais pas obligé de dire oui.\nYou didn't have to say yes.\tTu n'étais pas obligée de dire oui.\nYou didn't say that before.\tVous n'avez pas dit cela auparavant.\nYou didn't say that before.\tTu n'as pas dit cela auparavant.\nYou didn't try hard enough.\tVous n'avez pas suffisamment essayé.\nYou didn't try hard enough.\tTu n'as pas suffisamment essayé.\nYou don't give orders here.\tCe n'est pas toi qui commandes, ici !\nYou don't have to go there.\tTu n'as pas à aller là-bas.\nYou don't have to go there.\tVous n'avez pas à y aller.\nYou don't look comfortable.\tVous n'avez pas l'air à l'aise.\nYou don't look comfortable.\tTu n'as pas l'air à l'aise.\nYou don't look very strong.\tVous n'avez pas l'air très fort.\nYou don't look very strong.\tVous n'avez pas l'air très forte.\nYou don't look very strong.\tVous n'avez pas l'air très forts.\nYou don't look very strong.\tVous n'avez pas l'air très fortes.\nYou don't look very strong.\tTu n'as pas l'air très fort.\nYou don't look very strong.\tTu n'as pas l'air très forte.\nYou don't need to go there.\tTu n'as pas besoin de t'y rendre.\nYou don't need to go there.\tTu n'as pas besoin d'y aller.\nYou don't need to go there.\tVous n'avez pas besoin d'y aller.\nYou don't need to go there.\tVous n'avez pas besoin de vous y rendre.\nYou don't need to stand up.\tVous n'avez pas besoin de vous lever.\nYou don't need to stand up.\tTu n'as pas besoin de te lever.\nYou don't scare me anymore.\tVous ne me faites plus peur.\nYou don't scare me anymore.\tTu ne me fais plus peur.\nYou don't seem too worried.\tVous ne semblez pas trop soucieux.\nYou don't seem too worried.\tVous ne semblez pas trop soucieuse.\nYou don't seem too worried.\tVous ne semblez pas trop soucieuses.\nYou don't seem too worried.\tTu ne sembles pas trop soucieuse.\nYou don't seem too worried.\tTu ne sembles pas trop soucieux.\nYou forgot to mention that.\tVous avez oublié de le mentionner.\nYou had better not do that.\tTu ferais mieux de ne pas faire ça.\nYou had better not do that.\tVous feriez mieux de ne pas faire ça.\nYou have a beautiful voice.\tVous avez une belle voix.\nYou have a lovely daughter.\tVous avez une fille adorable.\nYou have a lovely daughter.\tTu as une fille adorable.\nYou have got to be kidding.\tTu plaisantes, j'espère ?\nYou have got to be kidding.\tVous plaisantez, j'espère ?\nYou have something of mine.\tVous détenez quelque chose qui m'appartient.\nYou have the right to know.\tTu as le droit de savoir.\nYou have the right to know.\tVous avez le droit de savoir.\nYou have to pay in advance.\tVous devez payer d'avance.\nYou have to pay in advance.\tTu dois payer d'avance.\nYou haven't changed at all.\tTu n'as pas du tout changé.\nYou know it doesn't matter.\tVous savez que ça n'a pas d'importance.\nYou know it doesn't matter.\tTu sais que ça n'a pas d'importance.\nYou lied to me, didn't you?\tVous m'avez menti, n'est-ce pas ?\nYou lied to me, didn't you?\tTu m'as menti, n'est-ce pas ?\nYou lied to us, didn't you?\tTu nous a menti, n'est-ce pas ?\nYou lied to us, didn't you?\tVous nous avez menti, n'est-ce pas ?\nYou like Boston, don't you?\tTu aimes Boston, non ?\nYou like Boston, don't you?\tTu aimes Boston, hein ?\nYou like Boston, don't you?\tTu aimes Boston, pas vrai ?\nYou like olives, don't you?\tVous aimez les olives, n'est-ce pas ?\nYou like olives, don't you?\tTu aimes les olives, n'est-ce pas ?\nYou like olives, don't you?\tTu aimes les olives, pas vrai ?\nYou like olives, don't you?\tVous aimez les olives, pas vrai ?\nYou look good in that suit.\tCe costume te va bien.\nYou look good in that suit.\tCe costume vous va bien.\nYou look wonderful tonight.\tTu as l'air super ce soir.\nYou made a bargain with us.\tVous avez fait une affaire avec nous.\nYou may choose any of them.\tTu peux choisir n'importe lequel d'entre eux.\nYou may choose any of them.\tTu peux choisir n'importe laquelle d'entre elles.\nYou may choose any of them.\tVous pouvez choisir n'importe lequel d'entre eux.\nYou may choose any of them.\tVous pouvez choisir n'importe laquelle d'entre elles.\nYou may choose one of them.\tVous pouvez en choisir un.\nYou may choose one of them.\tTu peux en choisir un.\nYou may choose one of them.\tVous pouvez choisir l'un d'entre eux.\nYou may choose one of them.\tTu peux choisir l'un d'entre eux.\nYou may choose one of them.\tVous pouvez choisir l'une d'entre elles.\nYou may choose one of them.\tTu peux choisir l'une d'entre elles.\nYou may not like this book.\tIl se peut que vous n'appréciiez pas cet ouvrage.\nYou may not like this book.\tIl se peut que tu n'apprécies pas cet ouvrage.\nYou may now kiss the bride.\tVous pouvez maintenant embrasser la mariée.\nYou must be less impatient.\tTu dois être moins impatient.\nYou must continue to train.\tTu dois continuer à t'exercer.\nYou must continue to train.\tVous devez continuer à vous exercer.\nYou must know that I snore.\tTu dois savoir que je ronfle.\nYou must not open the door.\tTu ne dois pas ouvrir la porte.\nYou must start immediately.\tTu dois commencer immédiatement.\nYou must study much harder.\tTu dois étudier beaucoup plus.\nYou need to have breakfast.\tTu as besoin de petit-déjeuner.\nYou never tell me anything.\tTu ne me dis jamais rien.\nYou never tell me anything.\tVous ne me dites jamais rien.\nYou never tell me anything.\tTu ne me racontes jamais rien.\nYou never tell me anything.\tVous ne me racontez jamais rien.\nYou ought to do it at once.\tIl te faut le faire immédiatement.\nYou ought to do it at once.\tIl vous faut le faire immédiatement.\nYou ought to see a dentist.\tTu devrais consulter un dentiste.\nYou played hooky yesterday?\tT'as séché, hier ?\nYou played hooky yesterday?\tVous avez séché, hier ?\nYou probably won't like it.\tVous n'aimerez probablement pas ça.\nYou probably won't like it.\tTu n'aimeras probablement pas ça.\nYou put in too much pepper.\tTu as mis trop de poivre.\nYou put in too much pepper.\tTu y as mis trop de poivre.\nYou should act more calmly.\tTu devrais agir plus calmement.\nYou should act more calmly.\tVous devez agir plus calmement.\nYou should act more calmly.\tTu devrais te comporter plus calmement.\nYou should be more careful.\tTu devrais être plus prudent.\nYou should be more careful.\tVous devriez être plus prudent.\nYou should be more careful.\tVous devriez être plus prudents.\nYou should be more careful.\tTu devrais être plus prudente.\nYou should be more careful.\tVous devriez être plus prudente.\nYou should be more careful.\tVous devriez être plus prudentes.\nYou should call the police.\tTu devrais appeler la police.\nYou should call the police.\tVous devriez appeler la police.\nYou should do it like this.\tTu devrais faire comme ça.\nYou should give up smoking.\tTu devrais cesser de fumer.\nYou should give up smoking.\tVous devriez cesser de fumer.\nYou should go to bed early.\tTu devrais aller tôt au lit.\nYou should go to bed early.\tVous devriez aller tôt au lit.\nYou should take a vacation.\tTu devrais prendre des vacances.\nYou should take a vacation.\tVous devriez prendre des vacances.\nYou should take her advice.\tTu devrais suivre son conseil.\nYou should take her advice.\tVous devriez suivre son conseil.\nYou shouldn't go to school.\tTu ne devrais pas te rendre à l'école.\nYou shouldn't go to school.\tVous ne devriez pas vous rendre à l'école.\nYou shouldn't go to school.\tTu ne devrais pas aller à l'école.\nYou shouldn't go to school.\tVous ne devriez pas aller à l'école.\nYou shouldn't have done it.\tTu n'aurais pas dû faire ça.\nYou shouldn't have done it.\tTu n'aurais pas dû le faire.\nYou shouldn't have done it.\tVous n'auriez pas dû le faire.\nYou sound like your mother.\tOn croirait entendre ta mère.\nYou speak like your mother.\tTu parles comme ta mère.\nYou speak like your mother.\tVous parlez comme votre mère.\nYou three are under arrest.\tVous trois êtes en état d'arrestation.\nYou were a kid once, right?\tVous avez été un enfant, à un moment, non ?\nYou were hurt, weren't you?\tVous étiez blessé, n'est-ce pas ?\nYou were hurt, weren't you?\tVous avez été blessé, n'est-ce pas ?\nYou were hurt, weren't you?\tVous étiez blessée, n'est-ce pas ?\nYou were hurt, weren't you?\tVous étiez blessés, n'est-ce pas ?\nYou were hurt, weren't you?\tVous étiez blessées, n'est-ce pas ?\nYou were hurt, weren't you?\tVous avez été blessée, n'est-ce pas ?\nYou were hurt, weren't you?\tVous avez été blessés, n'est-ce pas ?\nYou were hurt, weren't you?\tVous avez été blessées, n'est-ce pas ?\nYou were hurt, weren't you?\tTu as été blessé, n'est-ce pas ?\nYou were hurt, weren't you?\tTu as été blessée, n'est-ce pas ?\nYou were hurt, weren't you?\tTu étais blessé, n'est-ce pas ?\nYou were hurt, weren't you?\tTu étais blessée, n'est-ce pas ?\nYou were late, weren't you?\tTu étais en retard, n'est-ce pas ?\nYou were late, weren't you?\tVous étiez en retard, n'est-ce pas ?\nYou will always be welcome.\tTu seras toujours bienvenu.\nYou will always be welcome.\tTu seras toujours bienvenue.\nYou will always be welcome.\tVous serez toujours bienvenu.\nYou will always be welcome.\tVous serez toujours bienvenus.\nYou will always be welcome.\tVous serez toujours bienvenue.\nYou will always be welcome.\tVous serez toujours bienvenues.\nYou will have a new sister.\tVous aurez une nouvelle sœur.\nYou will have a new sister.\tTu auras une nouvelle sœur.\nYou write better than I do.\tVous écrivez mieux que moi.\nYou'd better come see this.\tVous feriez mieux de venir voir ça.\nYou'd better come see this.\tTu ferais mieux de venir voir ça.\nYou'd better not wait here.\tTu ne devrais pas attendre ici.\nYou'd better not wait here.\tTu ne devrais pas servir ici.\nYou'll do exactly as I say.\tTu feras exactement comme je dis.\nYou'll do exactly as I say.\tVous ferez exactement comme je dis.\nYou'll like it, believe me.\tVous l'aimerez, croyez-moi.\nYou'll like it, believe me.\tTu l'aimeras, crois-moi.\nYou're Germans, aren't you?\tVous êtes Allemands, n'est-ce pas ?\nYou're a jolly good feller.\tT'es un sacré coco.\nYou're a jolly good feller.\tVous êtes un sacré coco.\nYou're a jolly good feller.\tT'es un joyeux drille.\nYou're a jolly good feller.\tVous êtes un joyeux drille.\nYou're acting like a child.\tTu te comportes comme un enfant.\nYou're acting like a child.\tTu agis comme un enfant.\nYou're acting like a child.\tVous vous comportez comme une enfant.\nYou're acting like a child.\tTu agis comme une enfant.\nYou're an interesting girl.\tTu es une fille intéressante.\nYou're an interesting girl.\tVous êtes une fille intéressante.\nYou're in pain, aren't you?\tVous souffrez, n'est-ce pas ?\nYou're in pain, aren't you?\tTu souffres, n'est-ce pas ?\nYou're incredibly talented.\tVous êtes incroyablement talentueuse.\nYou're incredibly talented.\tVous êtes incroyablement talentueux.\nYou're incredibly talented.\tVous êtes incroyablement talentueuses.\nYou're incredibly talented.\tTu es incroyablement talentueuse.\nYou're incredibly talented.\tTu es incroyablement talentueux.\nYou're my only real friend.\tTu es ma seule véritable amie.\nYou're my only real friend.\tVous êtes ma seule véritable amie.\nYou're my only real friend.\tTu es mon seul véritable ami.\nYou're my only real friend.\tVous êtes mon seul véritable ami.\nYou're not a child anymore.\tTu n'es plus un bébé.\nYou're not allowed in here.\tVous n'êtes pas autorisé à pénétrer ici.\nYou're not allowed in here.\tTu n'es pas autorisé à pénétrer ici.\nYou're not allowed in here.\tTu n'es pas autorisée à pénétrer ici.\nYou're not fooling anybody.\tTu ne trompes personne.\nYou're not fooling anybody.\tVous ne trompez personne.\nYou're not listening to me.\tTu ne m'écoutes pas.\nYou're not listening to me.\tVous ne m'écoutez pas.\nYou're not sleeping enough.\tTu ne dors pas suffisamment.\nYou're not sleeping enough.\tVous ne dormez pas suffisamment.\nYou're part of the problem.\tVous faites partie du problème.\nYou're part of the problem.\tTu fais partie du problème.\nYou're sitting in my chair.\tTu es assis sur ma chaise.\nYou're sitting in my chair.\tTu es assise sur ma chaise.\nYou're stupid to trust him.\tTu es stupide de lui faire confiance.\nYou're stupid to trust him.\tVous êtes idiot de vous fier à lui.\nYou're stupid to trust him.\tVous êtes stupides de vous fier à lui.\nYou're testing my patience.\tTu mets ma patience à l'épreuve.\nYou're testing my patience.\tVous mettez ma patience à l'épreuve.\nYou're the love of my life.\tTu es l'amour de ma vie.\nYou're unbelievably stupid.\tVous êtes incroyablement stupide.\nYou're unbelievably stupid.\tTu es incroyablement stupide.\nYou're under investigation.\tVous faites l'objet d'une enquête.\nYou're under investigation.\tTu fais l'objet d'une enquête.\nYou're wealthy, aren't you?\tTu es riche, n'est-ce pas ?\nYou're wealthy, aren't you?\tVous êtes riches, n'est-ce pas ?\nYou're winning, aren't you?\tTu gagnes, n'est-ce pas ?\nYou're winning, aren't you?\tTu es en train de gagner, n'est-ce pas ?\nYou're winning, aren't you?\tVous êtes en train de gagner, n'est-ce pas ?\nYou're winning, aren't you?\tVous gagnez, n'est-ce pas ?\nYou're wiser than you know.\tTu es plus sage que tu n'en as conscience.\nYou're worried, aren't you?\tVous êtes soucieux, n'est-ce pas ?\nYou're worried, aren't you?\tVous êtes soucieuse, n'est-ce pas ?\nYou're worried, aren't you?\tVous êtes soucieuses, n'est-ce pas ?\nYou're worried, aren't you?\tVous êtes inquiet, n'est-ce pas ?\nYou're worried, aren't you?\tVous êtes inquiètes, n'est-ce pas ?\nYou're worried, aren't you?\tVous êtes inquiète, n'est-ce pas ?\nYou're worried, aren't you?\tVous êtes inquiets, n'est-ce pas ?\nYou're worried, aren't you?\tTu es inquiète, pas vrai ?\nYou're worried, aren't you?\tTu es inquiet, pas vrai ?\nYou've certainly been busy.\tVous avez certainement été très occupé.\nYour brother is very angry.\tTon frère est très en colère.\nYour brother is very angry.\tVotre frère est très en colère.\nYour children look healthy.\tTes enfants ont l'air en bonne santé.\nYour dreams have come true.\tTes rêves sont devenus réalité.\nYour dreams will come true.\tTes rêves se réaliseront.\nYour dreams will come true.\tVos rêves deviendront réalité.\nYour eggs are getting cold.\tTes œufs refroidissent.\nYour eggs are getting cold.\tVos œufs refroidissent.\nYour guess is almost right.\tVous avez presque deviné juste.\nYour guess is almost right.\tTu as presque deviné juste.\nYour life may be in danger.\tIl se peut que ta vie soit en danger.\nYour mother died yesterday.\tVotre mère est décédée hier.\nYour plan is bound to fail.\tVotre plan est condamné à l'échec.\nYour secret's safe with us.\tVotre secret est en sécurité avec nous.\nYour secret's safe with us.\tTon secret est en sécurité avec nous.\nYour suitcase is too heavy.\tVotre valise est trop lourde.\nYour thirty minutes are up.\tVos trente minutes sont écoulées.\nYour thirty minutes are up.\tTes trente minutes sont écoulées.\nYour work is below average.\tTon travail est en dessous de la moyenne.\n\"May I join you?\" \"Why not?\"\t\"Je peux peut-être me joindre à vous ?\" \"Pourquoi pas ?\"\n\"Who helped you?\" \"Tom did.\"\t\"Qui t'a aidé ?\" \"Tom.\"\nA book is lying on the desk.\tUn livre est posé sur le bureau.\nA cat ran across the street.\tUn chat traversa la rue.\nA child is crying somewhere.\tUn enfant est en train de pleurer quelque part.\nA child is crying somewhere.\tIl y a quelque part un enfant qui pleure.\nA cold spell gripped Europe.\tUne vague de froid attaqua l'Europe.\nA cookie is under the table.\tUn biscuit se trouve sous la table.\nA day has twenty-four hours.\tUn jour compte vingt-quatre heures.\nA day has twenty-four hours.\tIl y a vingt-quatre heures dans une journée.\nA dog suddenly jumped at me.\tUn chien me sauta soudain dessus.\nA dog suddenly jumped at me.\tSoudain, un chien m'a sauté dessus.\nA dove is a symbol of peace.\tUne colombe est un symbole de paix.\nA fire broke out last night.\tUn feu s'est déclaré la nuit dernière.\nA friend told me that story.\tUn ami m'a raconté cette histoire.\nA good idea occurred to him.\tUne bonne idée lui vint à l'esprit.\nA good idea occurred to him.\tUne bonne idée lui est venue à l'esprit.\nA good memory is his weapon.\tSon arme, c'est une bonne mémoire.\nA haiku is one type of poem.\tUn haiku est un type de poème.\nA lot of soldiers died here.\tDe nombreux soldats sont morts ici.\nA new difficulty has arisen.\tUne nouvelle difficulté est apparue.\nA nurse took my temperature.\tUne infirmière prit ma température.\nA part of this land is mine.\tUne partie de ce terrain est à moi.\nA person's soul is immortal.\tL'esprit d'une personne est immortel.\nA pound is a unit of weight.\tUne livre est une unité de poids.\nA stitch in time saves nine.\tIl vaut mieux prévenir que guérir.\nA stitch in time saves nine.\tMieux vaut prévenir que guérir.\nA terrible fate awaited him.\tUn terrible destin l'attendait.\nA white dove is on the roof.\tUne colombe blanche se trouve sur le toit.\nAbout how long will it take?\tEnviron combien de temps cela va-t-il prendre ?\nAdd one teaspoon of paprika.\tAjoutez une petite cuillère de paprika.\nAfter work, I go right home.\tJe rentre directement à la maison après le travail.\nAh! Everything is clear now.\tAh ! Tout s'éclaire maintenant !\nAll human beings are mortal.\tTous les êtres humains sont mortels.\nAll of the milk was spilled.\tTout le lait s'est renversé.\nAll of them are not present.\tIls ne sont pas tous présents.\nAll of them remained silent.\tIls sont tous restés silencieux.\nAll of us, except him, went.\tNous allâmes tous, sauf lui.\nAll right, listen carefully.\tBon, écoute attentivement !\nAll right, listen carefully.\tBon, écoutez attentivement !\nAll the answers are correct.\tToutes les réponses sont correctes.\nAll the answers are correct.\tToutes les réponses sont justes.\nAll the men are hardworking.\tTous les hommes sont durs à la tâche.\nAll the world desires peace.\tLe monde entier désire la paix.\nAll they had was each other.\tTout ce qu'ils avaient était l'un l'autre.\nAll was silent in the house.\tTout était silencieux dans la maison.\nAm I getting sloppy or what?\tEst-ce que je deviens sentimental ou quoi ?\nAm I getting sloppy or what?\tEst-ce que je deviens sentimentale ou quoi ?\nAm I in trouble financially?\tAi-je des problèmes financiers ?\nAm I interrupting something?\tEst-ce que j'interromps quelque chose ?\nAmericans eat a lot of meat.\tLes Étatsuniens mangent beaucoup de viande.\nAn apple fell to the ground.\tUne pomme tomba au sol.\nAny amount of money will do.\tN'importe quelle somme d'argent fera l'affaire.\nAnywhere with a bed will do.\tN'importe où avec un lit conviendra.\nApparently, the bus is late.\tApparemment le bus est en retard.\nAre all passengers on board?\tLes passagers sont-ils tous à bord ?\nAre those guys your friends?\tCes gars sont-ils tes amis ?\nAre you Chinese or Japanese?\tÊtes-vous chinois ou japonais ?\nAre you a creature of habit?\tÊtes-vous prisonnier de vos habitudes ?\nAre you a creature of habit?\tEs-tu prisonnier de tes habitudes ?\nAre you an exchange student?\tFais-tu partie d'un programme d'échange étudiant ?\nAre you asking me on a date?\tMe proposes-tu de sortir avec toi ?\nAre you coming to the party?\tEst-ce que vous viendrez à la fête ?\nAre you coming to the party?\tViendras-tu à la fête ?\nAre you coming to the party?\tViendrez-vous à la fête ?\nAre you done with the paper?\tEn as-tu fini avec le papier ?\nAre you done with the paper?\tEn avez-vous fini avec le papier ?\nAre you for or against this?\tÊtes-vous pour ou contre ceci ?\nAre you free this afternoon?\tÊtes-vous libre cet après-midi ?\nAre you going by bus or car?\tY allez-vous en bus ou en voiture ?\nAre you going by bus or car?\tY vas-tu en bus ou en voiture ?\nAre you going by bus or car?\tY vas-tu en car ou en voiture ?\nAre you going by bus or car?\tY allez-vous en car ou en voiture ?\nAre you going to share that?\tEst-ce que tu vas partager ça ?\nAre you going to share that?\tEst-ce que vous allez partager ça ?\nAre you good at mathematics?\tEs-tu bon en mathématiques ?\nAre you guys still together?\tÊtes-vous toujours ensemble ?\nAre you happy in your house?\tÊtes-vous heureux dans votre maison ?\nAre you happy in your house?\tEs-tu heureux dans ta maison ?\nAre you happy in your house?\tEs-tu heureuse dans ta maison ?\nAre you looking for someone?\tVous cherchez quelqu'un ?\nAre you looking for someone?\tTu cherches quelqu'un ?\nAre you looking for someone?\tÊtes-vous à la recherche de quelqu'un ?\nAre you looking for someone?\tCherches-tu quelqu'un ?\nAre you looking for someone?\tCherchez-vous quelqu'un ?\nAre you mad about something?\tEs-tu en colère à propos de quelque chose ?\nAre you mad about something?\tÊtes-vous en colère à propos de quelque chose ?\nAre you making friends here?\tVous faites-vous des amis, ici ?\nAre you making friends here?\tTe fais-tu des amis, ici ?\nAre you mentally challenged?\tAs-tu une déficience mentale ?\nAre you mentally challenged?\tAvez-vous une déficience mentale ?\nAre you ready for Halloween?\tEs-tu prêt pour Halloween ?\nAre you saying I'm impolite?\tÊtes-vous en train de dire que je suis malpoli ?\nAre you sick? You look pale.\tEs-tu malade ? Tu sembles pâle.\nAre you still at the office?\tÊtes-vous encore au bureau ?\nAre you still at the office?\tEs-tu encore au bureau ?\nAre you still not convinced?\tN'es-tu toujours pas convaincu ?\nAre you still not convinced?\tN'es-tu toujours pas convaincue ?\nAre you still not convinced?\tN'êtes-vous toujours pas convaincu ?\nAre you still not convinced?\tN'êtes-vous toujours pas convaincus ?\nAre you still not convinced?\tN'êtes-vous toujours pas convaincue ?\nAre you still not convinced?\tN'êtes-vous toujours pas convaincues ?\nAre you sure he can do this?\tEs-tu sûre qu'il peut faire ça ?\nAre you sure he can do this?\tEs-tu sûr qu'il peut faire ça ?\nAre you sure he can do this?\tÊtes-vous sûre qu'il peut faire ça ?\nAre you sure he can do this?\tÊtes-vous sûr qu'il peut faire ça ?\nAre you sure he can do this?\tÊtes-vous sûrs qu'il peut faire ça ?\nAre you sure he can do this?\tÊtes-vous sûres qu'il peut faire ça ?\nAre you sure of your answer?\tEs-tu certain de ta réponse ?\nAre you waiting for someone?\tAttendez-vous quelqu'un ?\nAre you waiting for someone?\tAttends-tu quelqu'un ?\nAren't you at least curious?\tT'es même pas un peu curieux?\nAren't you glad you're rich?\tTu n'es pas content d'être riche ?\nAren't you glad you're rich?\tN'es-tu pas content d'être riche ?\nAren't you glad you're rich?\tN'es-tu pas contente d'être riche ?\nAren't you glad you're rich?\tN'êtes-vous pas content d'être riche ?\nAren't you glad you're rich?\tN'êtes-vous pas contente d'être riche ?\nAren't you glad you're rich?\tN'êtes-vous pas contents d'être riche ?\nAren't you glad you're rich?\tN'êtes-vous pas contentes d'être riche ?\nAsk her when she comes back.\tDemande-lui quand elle reviendra.\nAt last, we got to the lake.\tEnfin, nous sommes arrivés au lac.\nAt last, we got to the lake.\tEnfin, nous parvînmes au lac.\nAt last, we got to the lake.\tEnfin, nous sommes arrivées au lac.\nAt last, we got to the lake.\tEnfin, nous sommes parvenus au lac.\nAt last, we got to the lake.\tEnfin, nous sommes parvenues au lac.\nAt last, we got to the lake.\tEnfin, nous arrivâmes au lac.\nAt present, he is in Canada.\tEn ce moment il est au Canada.\nAt times, I can't trust him.\tParfois je ne peux pas lui faire confiance.\nBarack Obama is a Christian.\tBarack Obama est chrétien.\nBasho was the greatest poet.\tBasho était le meilleur poète.\nBe kind to those around you.\tSois gentil avec ton entourage.\nBe kind to those around you.\tSoyez gentils avec votre entourage.\nBe kind to those around you.\tSoyez gentils avec ceux qui vous entourent.\nBe more careful from now on.\tSois plus prudent, désormais.\nBe more careful from now on.\tSois désormais plus prudent.\nBe more careful from now on.\tSoyez désormais plus prudent.\nBe more careful from now on.\tSoyez désormais plus prudente.\nBe more careful from now on.\tSoyez désormais plus prudents.\nBe more careful from now on.\tSoyez désormais plus prudentes.\nBe more careful from now on.\tSois désormais plus prudente.\nBe more careful from now on.\tSois plus prudente, désormais.\nBe quiet while I'm speaking.\tReste tranquille pendant que je parle.\nBe quiet while I'm speaking.\tRestez tranquille pendant que je parle.\nBe quiet while I'm speaking.\tRestez tranquilles pendant que je parle.\nBe sure not to eat too much.\tAssure-toi de ne pas trop manger.\nBeijing is bigger than Rome.\tPékin est plus grand que Rome.\nBelieve that if you want to.\tCrois-le si tu le veux.\nBelieve that if you want to.\tCroyez-le si vous le voulez.\nBigger is not always better.\tPlus gros n'est pas toujours un avantage.\nBigger is not always better.\tPlus gros n'est pas toujours mieux.\nBirch trees have white bark.\tLes bouleaux ont l'écorce blanche.\nBirds are flying in the air.\tLes oiseaux volent dans le ciel.\nBlood is thicker than water.\tLe sang est plus épais que l'eau.\nBooks are made out of paper.\tLes livres sont faits de papier.\nBoth brothers are musicians.\tLes deux frères sont musiciens.\nBoth of my parents are dead.\tMes parents sont décédés.\nBoth of them started crying.\tToutes deux se mirent à pleurer.\nBoth of them started crying.\tTous deux se mirent à pleurer.\nBoth you and I are students.\tToi et moi sommes étudiants.\nBring your brother with you.\tAmenez votre frère avec vous.\nBring your friends with you.\tVos amis sont les bienvenus.\nBring your sister next time.\tAmène ta sœur avec toi la prochaine fois.\nBrothers should not quarrel.\tDes frères ne devraient pas se quereller.\nBut why is it all so secret?\tMais pourquoi tout est-il si secret ?\nBy the way, how old are you?\tQuel âge as-tu, au fait ?\nBy the way, how old are you?\tAu fait, quel âge avez-vous ?\nCall me if anything changes.\tAppelle-moi si quoi que ce soit change !\nCall me if anything changes.\tAppelez-moi si quoi que ce soit change !\nCall me if anything happens.\tAppelle-moi si quoi que ce soit survient !\nCall me if anything happens.\tAppelez-moi si quoi que ce soit survient !\nCan I count on your loyalty?\tPuis-je compter sur votre loyauté ?\nCan I count on your loyalty?\tPuis-je compter sur ta loyauté ?\nCan I get you anything else?\tPuis-je vous procurer quoi que ce soit d'autre ?\nCan I have something to eat?\tPuis-je avoir quelque chose à manger ?\nCan I offer you guys a ride?\tJe peux vous emmener quelque part ?\nCan I offer you guys a ride?\tPuis-je vous proposer de vous déposer, les mecs ?\nCan I take a picture of you?\tPuis-je prendre une photo de toi ?\nCan I take a picture of you?\tPuis-je prendre une photo de vous ?\nCan I talk to you privately?\tPuis-je vous parler en privé ?\nCan I talk to you privately?\tEst-ce que je peux te parler en privé ?\nCan I tell you what bugs me?\tPuis-je te dire ce qui me chiffonne ?\nCan I tell you what bugs me?\tPuis-je vous dire ce qui me chiffonne ?\nCan somebody please help me?\tQuelqu'un peut-il m'aider, je vous prie ?\nCan someone help me, please?\tQuelqu'un peut-il m'aider, je vous prie ?\nCan we do this another time?\tPouvons-nous faire ça une autre fois ?\nCan we please turn this off?\tPouvons-nous éteindre ça, je vous prie ?\nCan we trust Tom to do that?\tPouvons-nous faire confiance à Tom pour faire cela ?\nCan you describe the object?\tPouvez-vous décrire l'objet ?\nCan you drive a stick shift?\tSavez-vous conduire une voiture à boîte manuelle ?\nCan you drive a stick shift?\tSavez-vous conduire une voiture à boîte de vitesse manuelle ?\nCan you drive a stick shift?\tSais-tu conduire une voiture à boîte manuelle ?\nCan you drive a stick shift?\tSais-tu conduire une voiture à boîte de vitesse manuelle ?\nCan you eat something there?\tPeut-on y manger quelque chose ?\nCan you help me on this one?\tPeux-tu m'aider pour celui-ci ?\nCan you help me on this one?\tPeux-tu m'aider pour celle-ci ?\nCan you help me on this one?\tPouvez-vous m'aider pour celui-ci ?\nCan you help me on this one?\tPouvez-vous m'aider pour celle-ci ?\nCan you help me when I move?\tPourriez-vous m'aider quand je déménagerai ?\nCan you keep the noise down?\tNe pouvez-vous pas faire moins de bruit ?\nCan you loan her some money?\tEst-ce que tu peux lui prêter de l'argent ?\nCan you loan him some money?\tEst-ce que tu peux lui prêter de l'argent ?\nCan you please stop singing?\tPeux-tu, s'il te plaît, arrêter de chanter ?\nCan you please stop singing?\tPouvez-vous, s'il vous plaît, arrêter de chanter ?\nCan you send the bellboy up?\tPouvez-vous faire monter le groom ?\nCan you stand on your hands?\tPouvez-vous faire le poirier ?\nCan you stay for a few days?\tPeux-tu rester quelques jours ?\nCan you stay for a few days?\tPouvez-vous rester quelques jours ?\nCan you take a little break?\tPeux-tu prendre une petite pause ?\nCan you take a little break?\tPouvez-vous prendre une petite pause ?\nCan you tell me where it is?\tPouvez-vous me dire où il est ?\nCan you wait a little while?\tPouvez-vous attendre un peu ?\nCan your mother drive a car?\tEst-ce que ta mère sait conduire ?\nCanada is larger than Japan.\tLe Canada est plus grand que le Japon.\nChildren are full of energy.\tLes enfants sont pleins d'énergie.\nChildren are not allowed in.\tLes enfants ne sont pas admis à l'intérieur.\nChildren grow up so quickly.\tLes enfants grandissent si vite.\nChildren often hate spinach.\tLes enfants détestent souvent les épinards.\nChina is an emerging market.\tLa Chine est un marché émergent.\nChoose one from among these.\tChoisissez-en une parmi ceux-là.\nChoose your favorite racket.\tChoisissez votre raquette préférée.\nChristmas is soon, isn't it?\tNoël arrive bientôt, n'est-ce pas ?\nChristmas is soon, isn't it?\tNoël approche, n'est-ce pas ?\nChristmas is soon, isn't it?\tNoël, c'est pour bientôt, n'est-ce pas ?\nCold this morning, isn't it?\tIl fait froid ce matin, n'est-ce pas ?\nColumbus discovered America.\tChristophe Colomb a découvert l'Amérique.\nCome into the room after me.\tEntrez dans la pièce après moi.\nCome on, Tom. Let's go home.\tAllez, Tom. Rentrons.\nCome on, Tom. Let's go home.\tAllez, Tom. Rentrons à la maison.\nCome the day after tomorrow.\tVenez après-demain.\nCome to the party, will you?\tTu viendras à la fête, n'est-ce pas ?\nCorporations are not people.\tLes sociétés ne sont pas des gens.\nCould I drink some more tea?\tPourrais-je boire davantage de thé ?\nCould we discuss this later?\tPourrions-nous en discuter plus tard ?\nCould you actually eat this?\tPourrais-tu vraiment manger ça ?\nCould you draw a map for me?\tPourriez-vous tracer une carte pour moi ?\nCould you draw a map for me?\tPourriez-vous me tracer une carte ?\nCould you draw a map for me?\tPourrais-tu me tracer une carte ?\nCould you draw a map for me?\tPourrais-tu tracer une carte pour moi ?\nCould you drive more slowly?\tPourrais-tu conduire plus lentement ?\nCould you drive more slowly?\tPourriez-vous conduire plus lentement ?\nCould you get it for me now?\tPourrais-tu me le procurer maintenant ?\nCould you get it for me now?\tPourriez-vous me le procurer maintenant ?\nCould you give me your name?\tPuis-je avoir votre nom s'il vous plaît ?\nCould you press this button?\tPouvez-vous appuyer sur le bouton ?\nCould you sign here, please?\tPouvez-vous signer ici, s'il vous plaît ?\nCould you solve the problem?\tPourriez-vous résoudre le problème ?\nCould you solve the problem?\tPourrais-tu résoudre le problème ?\nCould you speak more slowly?\tPouvez-vous parler plus lentement ?\nCould you take this, please?\tPeux-tu prendre ça s'il te plaît ?\nCouldn't we cuddle, instead?\tOn pourrait pas faire des câlins, plutôt ?\nCriminals should go to jail.\tLes criminels devraient aller en prison.\nCrying won't solve anything.\tPleurer ne va rien résoudre.\nDad gave me a computer game.\tMon papa m'a donné un jeu informatique.\nDad painted the walls white.\tMon père a peint les murs en blanc.\nDeeds are better than words.\tLes faits valent mieux que les mots.\nDid I tell you that already?\tVous l'ai-je déjà dit ?\nDid I tell you that already?\tTe l'ai-je déjà dit ?\nDid Tom call you last night?\tEst-ce que Tom t'a appelé hier soir ?\nDid he ask you to spy on me?\tVous a-t-il demandé de m'espionner ?\nDid he ask you to spy on me?\tT'a-t-il demandé de m'espionner ?\nDid he show you the picture?\tT'a-t-il montré la photo ?\nDid he show you the picture?\tT'a-t-il montré la photographie ?\nDid he show you the picture?\tT'a-t-il montré le tableau ?\nDid he show you the picture?\tT'a-t-il montré la toile ?\nDid he show you the picture?\tVous a-t-il montré la photo ?\nDid he show you the picture?\tVous a-t-il montré la photographie ?\nDid he show you the picture?\tVous a-t-il montré le tableau ?\nDid they talk to each other?\tSe sont-ils parlé ?\nDid they talk to each other?\tSe sont-elles parlé ?\nDid you buy a return ticket?\tAs-tu acheté un billet de retour ?\nDid you buy a return ticket?\tAs-tu fait l'acquisition d'un billet de retour ?\nDid you carry out your plan?\tAvez-vous réalisé votre plan ?\nDid you go to Tom's funeral?\tAs-tu assisté à l'enterrement de Tom ?\nDid you go to Tom's funeral?\tAvez-vous assisté à l'enterrement de Tom ?\nDid you have a good weekend?\tAvez-vous passé un bon week-end ?\nDid you have a nice evening?\tTu as passé une bonne soirée ?\nDid you have a nice evening?\tVous avez passé une bonne soirée ?\nDid you have a nice evening?\tAs-tu passé une chouette soirée ?\nDid you have a nice evening?\tAvez-vous passé une chouette soirée ?\nDid you have fun last night?\tT'es-tu amusé hier soir ?\nDid you have fun last night?\tT'es-tu amusée hier soir ?\nDid you have fun last night?\tT'es-tu amusé la nuit dernière ?\nDid you have fun last night?\tT'es-tu amusée la nuit dernière ?\nDid you have fun last night?\tT'es-tu amusé la nuit passée ?\nDid you have fun last night?\tT'es-tu amusée la nuit passée ?\nDid you have fun last night?\tVous êtes-vous amusé la nuit passée ?\nDid you have fun last night?\tVous êtes-vous amusée la nuit passée ?\nDid you have fun last night?\tVous êtes-vous amusés la nuit passée ?\nDid you have fun last night?\tVous êtes-vous amusées la nuit passée ?\nDid you have fun last night?\tVous êtes-vous amusé la nuit dernière ?\nDid you have fun last night?\tVous êtes-vous amusée la nuit dernière ?\nDid you have fun last night?\tVous êtes-vous amusés la nuit dernière ?\nDid you have fun last night?\tVous êtes-vous amusées la nuit dernière ?\nDid you have fun last night?\tVous êtes-vous amusé hier soir ?\nDid you have fun last night?\tVous êtes-vous amusée hier soir ?\nDid you have fun last night?\tVous êtes-vous amusés hier soir ?\nDid you have fun last night?\tVous êtes-vous amusées hier soir ?\nDid you iron all the shirts?\tAs-tu repassé toutes les chemises ?\nDid you iron all the shirts?\tAvez-vous repassé toutes les chemises ?\nDid you lie to your parents?\tAs-tu menti à tes parents ?\nDid you lie to your parents?\tAvez-vous menti à vos parents ?\nDid you make it by yourself?\tL'avez-vous fait vous-même ?\nDid you make it by yourself?\tL'as-tu fait toi-même ?\nDid you pay for those shoes?\tAs-tu payé ces chaussures ?\nDid you read the whole book?\tAviez-vous lu le livre en entier ?\nDid you see anyone run away?\tAs-tu vu quelqu'un s'enfuir ?\nDid you take a shower today?\tAs-tu pris une douche aujourd'hui ?\nDid you take a shower today?\tVous êtes-vous douchés aujourd'hui ?\nDid you turn off the heater?\tAs-tu éteint la chaudière ?\nDid you turn off the heater?\tAvez-vous éteint le chauffage?\nDid you watch TV last night?\tAs-tu regardé la télévision hier soir ?\nDid you watch TV last night?\tAvez-vous regardé la télévision la nuit dernière ?\nDidn't that seem odd to you?\tCela ne t'a-t-il pas semblé bizarre ?\nDidn't you lock up your car?\tN'aviez-vous pas fermé votre voiture ?\nDidn't you lock up your car?\tN'avais-tu pas verrouillé ta voiture ?\nDo I have to change my diet?\tDois-je changer mon régime ?\nDo I have to change my diet?\tDois-je altérer mon régime ?\nDo I have to write a letter?\tDois-je écrire une lettre ?\nDo it the way I told you to.\tFais-le de la manière que je t'ai dit.\nDo it yourself by all means.\tFais-le quoi qu'il t'en coûte.\nDo not attempt this at home.\tN'essayez pas ça chez vous !\nDo not attempt this at home.\tN'essaie pas ça chez toi !\nDo you believe what he said?\tCroyez-vous à ce qu'il a dit ?\nDo you believe what he said?\tCrois-tu à ce qu'il a dit ?\nDo you buy that explanation?\tSouscris-tu à cette explication ?\nDo you find me unattractive?\tMe trouves-tu repoussant ?\nDo you find me unattractive?\tMe trouvez-vous repoussante ?\nDo you go to school on foot?\tAllez-vous à l'école à pied ?\nDo you guys like white wine?\tAimez-vous le vin blanc ?\nDo you have a part time job?\tAs-tu un travail à temps partiel ?\nDo you have any French wine?\tAs-tu du vin français ?\nDo you have any news at all?\tAvez-vous la moindre nouvelle ?\nDo you have any news at all?\tAs-tu la moindre nouvelle ?\nDo you have any soft drinks?\tAvez-vous des boissons sans alcool ?\nDo you have anything to add?\tAs-tu quelque chose à ajouter ?\nDo you have anything to add?\tAvez-vous quelque chose à ajouter ?\nDo you have anything to eat?\tAs-tu quelque chose à manger ?\nDo you have anything to eat?\tAvez-vous quoi que ce soit à manger ?\nDo you have anything to say?\tAvez-vous quelque chose à dire ?\nDo you have bread for lunch?\tAs-tu du pain pour déjeuner ?\nDo you have enough blankets?\tDisposez-vous d'assez de couvertures ?\nDo you have enough blankets?\tAs-tu suffisamment de couvertures ?\nDo you have shoes and socks?\tAs-tu des chaussures et des chaussettes ?\nDo you have some buttermilk?\tAvez-vous du babeurre ?\nDo you have to work tonight?\tDois-tu travailler, ce soir ?\nDo you have to work tonight?\tDevez-vous travailler, ce soir ?\nDo you have work experience?\tAvez-vous une expérience professionnelle ?\nDo you keep a dream journal?\tTenez-vous un journal de rêves ?\nDo you know Tom's real name?\tTu connais le vrai nom de Tom ?\nDo you know any Greek myths?\tConnaissez-vous quelques mythes grecs ?\nDo you know this place well?\tConnaissez-vous bien cet endroit ?\nDo you know this place well?\tConnais-tu bien cet endroit ?\nDo you know what that means?\tSais-tu ce que cela signifie ?\nDo you know what that means?\tSavez-vous ce que cela signifie ?\nDo you know where she lives?\tSais-tu où elle habite ?\nDo you know your blood type?\tConnais-tu ton groupe sanguin ?\nDo you know your blood type?\tConnaissez-vous votre groupe sanguin ?\nDo you like Indonesian food?\tAimez-vous la cuisine indonésienne ?\nDo you like Indonesian food?\tAimes-tu la cuisine indonésienne ?\nDo you like going to school?\tAimes-tu aller à l'école ?\nDo you like going to school?\tAimez-vous aller à l'école ?\nDo you like white chocolate?\tAimez-vous le chocolat blanc?\nDo you like white chocolate?\tEst-ce que vous aimez le chocolat blanc?\nDo you like white chocolate?\tVous aimez le chocolat blanc?\nDo you like white chocolate?\tAimes-tu le chocolat blanc ?\nDo you like your classmates?\tAimes-tu tes camarades de classe ?\nDo you mind if I sleep here?\tVois-tu un inconvénient à ce que je dorme ici ?\nDo you mind if I sleep here?\tVoyez-vous un inconvénient à ce que je dorme ici ?\nDo you mind if I smoke here?\tVois-tu un inconvénient à ce que je fume ici ?\nDo you mind if I smoke here?\tVoyez-vous un inconvénient à ce que je fume ici ?\nDo you mind my smoking here?\tPuis-je fumer ici ?\nDo you mind my smoking here?\tEst-ce que ça vous dérange si je fume ici  ?\nDo you own a house in Italy?\tPossédez-vous une maison en Italie ?\nDo you plan to buy that car?\tPrévois-tu d'acquérir cette voiture ?\nDo you plan to buy that car?\tPrévois-tu d'acheter cette voiture ?\nDo you plan to buy that car?\tPrévois-tu de faire l'acquisition de cette voiture ?\nDo you plan to buy that car?\tPrévoyez-vous d'acquérir cette voiture ?\nDo you plan to buy that car?\tPrévoyez-vous d'acheter cette voiture ?\nDo you plan to buy that car?\tPrévoyez-vous de faire l'acquisition de cette voiture ?\nDo you plan to buy that car?\tPrévoyez-vous de procéder à l'acquisition de cette voiture ?\nDo you plan to buy that car?\tPrévois-tu de procéder à l'acquisition de cette voiture ?\nDo you play any instruments?\tJouez-vous d'un instrument quelconque ?\nDo you play any instruments?\tJoues-tu d'un instrument quelconque ?\nDo you play any instruments?\tJouez-vous d'un quelconque instrument ?\nDo you play any instruments?\tJoues-tu d'un quelconque instrument ?\nDo you play soccer or rugby?\tTu joues au football ou au rugby ?\nDo you play soccer or rugby?\tEst-ce que tu joues au foot ou au rugby ?\nDo you prefer Coke or Pepsi?\tTu préfères le coca ou le pepsi ?\nDo you prefer tea or coffee?\tPréférez-vous le thé ou le café ?\nDo you recognize that woman?\tReconnaissez-vous cette femme ?\nDo you recognize that woman?\tReconnais-tu cette femme ?\nDo you remember saying that?\tTu te souviens avoir dit ça ?\nDo you sell desk lamps here?\tVendez-vous des lampes de bureau ici ?\nDo you still not understand?\tNe comprends-tu toujours pas ?\nDo you still not understand?\tNe comprenez-vous toujours pas ?\nDo you still play the piano?\tJoues-tu encore du piano ?\nDo you still play the piano?\tJouez-vous encore du piano ?\nDo you think there's a hope?\tPenses-tu qu'il y ait un espoir ?\nDo you think there's a hope?\tPensez-vous qu'il y ait un espoir ?\nDo you think those are real?\tPensez-vous que ceux-là soient véritables ?\nDo you think those are real?\tPenses-tu que ceux-là soient véritables ?\nDo you understand this book?\tComprenez-vous ce livre ?\nDo you want a cup of coffee?\tVoulez-vous une tasse de café ?\nDo you want a glass of soda?\tVoulez-vous un verre de soda ?\nDo you want anything to eat?\tVeux-tu quoi que ce soit à manger ?\nDo you want anything to eat?\tVoulez-vous quoi que ce soit à manger ?\nDo you want fries with that?\tVoulez-vous des frites en accompagnement?\nDo you want me to paint you?\tVeux-tu que je te peigne ?\nDo you want to come with us?\tVeux-tu venir avec nous ?\nDo you want to hang with us?\tVeux-tu sortir avec nous ?\nDo you want to play with me?\tVeux-tu jouer avec moi ?\nDo you want to play with me?\tVoulez-vous jouer avec moi ?\nDo your homework right away.\tFais tes devoirs immédiatement.\nDo your homework right away.\tFaites vos devoirs immédiatement.\nDo your homework right away.\tFais tes devoirs séance tenante.\nDo your homework right away.\tFaites vos devoirs séance tenante.\nDoes Tom know what happened?\tTom sait-il ce qui est arrivé ?\nDoes anybody else feel that?\tQuelqu'un d'autre le ressent-il ?\nDoes he go to school by bus?\tSe rend-il en bus à l'école ?\nDoes he go to school by bus?\tSe rend-il à l'école en bus ?\nDoes he have to run so fast?\tDoit-il courir si vite ?\nDoes he need to run so fast?\tA-t-il besoin de courir si vite ?\nDoes that make sense to you?\tCela a-t-il du sens pour toi ?\nDoes that make sense to you?\tCela a-t-il du sens pour vous ?\nDoes that price include tax?\tCe prix est-il toutes taxes incluses ?\nDoes this cap belong to you?\tCette casquette vous appartient-elle ?\nDoesn't it smell like bacon?\tEst-ce que ça ne sent pas comme du lard grillé ?\nDon't ask so many questions.\tNe pose pas tant de questions !\nDon't ask so many questions.\tNe posez pas tant de questions !\nDon't be late for the train.\tNe sois pas en retard pour le train.\nDon't be late for the train.\tNe soyez pas en retard pour le train.\nDon't believe what she says.\tNe crois pas à ce qu'elle dit.\nDon't disappear on me again.\tNe me lâche pas encore une fois !\nDon't disappear on me again.\tNe me lâchez pas encore une fois !\nDon't drink out of my glass.\tNe bois pas dans mon verre.\nDon't drink out of my glass.\tNe buvez pas dans mon verre.\nDon't drink out of my glass.\tNe bois pas à mon verre !\nDon't drink out of my glass.\tNe buvez pas à mon verre !\nDon't ever talk to me again.\tNe me parle jamais plus !\nDon't ever talk to me again.\tNe me parlez jamais plus !\nDon't expect too much of me.\tN'espérez pas trop de moi.\nDon't expect too much of me.\tN'espère pas trop de moi.\nDon't expose it to the rain.\tNe le mets pas sous la pluie.\nDon't expose it to the rain.\tNe l'exposez pas à la pluie !\nDon't expose it to the rain.\tNe l'expose pas à la pluie !\nDon't forget to write to me.\tN'oublie pas de m'écrire.\nDon't forget to write to us.\tN'oubliez pas de nous écrire !\nDon't forget your sunscreen.\tN'oubliez pas votre écran solaire !\nDon't forget your sunscreen.\tN'oublie pas ton écran solaire !\nDon't get ahead of yourself.\tNe mets pas la charrue avant les bœufs !\nDon't get ahead of yourself.\tNe mettez pas la charrue avant les bœufs !\nDon't go against his wishes.\tNe va pas contre ses désirs.\nDon't grow up to be like me.\tNe grandis pas pour devenir comme moi !\nDon't leave it up to chance.\tNe le laisse pas au hasard.\nDon't leave it up to chance.\tNe t'abandonne pas au hasard.\nDon't let go. Hold on tight.\tNe lâche pas ! Accroche-toi !\nDon't let go. Hold on tight.\tNe lâche pas ! Tiens bon !\nDon't let go. Hold on tight.\tNe lâchez pas ! Accrochez-vous !\nDon't let go. Hold on tight.\tNe lâchez pas ! Tenez bon !\nDon't let that happen again!\tNe laisse plus jamais cela arriver !\nDon't let them get you down.\tNe les laissez pas vous abattre !\nDon't let them get you down.\tNe les laisse pas t'abattre !\nDon't make me ask you again.\tNe me force pas à te le redemander !\nDon't make me ask you again.\tNe me forcez pas à vous le redemander !\nDon't make me go back there.\tNe me faites pas y retourner !\nDon't make me go back there.\tNe me fais pas y retourner !\nDon't make me go back there.\tNe m'obligez pas à y retourner.\nDon't make me go back there.\tNe m'oblige pas à y retourner.\nDon't put off those matters.\tNe remets pas ces affaires à plus tard !\nDon't put off those matters.\tNe remettez pas ces affaires à plus tard !\nDon't put words in my mouth.\tNe me mettez pas les mots dans la bouche !\nDon't put words in my mouth.\tNe me mets pas les mots dans la bouche !\nDon't risk your life for me.\tNe risquez pas votre vie pour moi !\nDon't risk your life for me.\tNe risque pas ta vie pour moi !\nDon't say I didn't warn you.\tNe dites pas que je ne vous aurai pas prévenu !\nDon't say I didn't warn you.\tNe dites pas que je ne vous aurai pas prévenue !\nDon't say I didn't warn you.\tNe dis pas que je ne t'aurai pas prévenu !\nDon't say I didn't warn you.\tNe dis pas que je ne t'aurai pas prévenue !\nDon't say I didn't warn you.\tNe dites pas que je ne vous aurai pas prévenues !\nDon't say I didn't warn you.\tNe dites pas que je ne vous aurai pas prévenus !\nDon't speak so fast, please.\tParle un peu moins vite, s'il te plaît.\nDon't speak so fast, please.\tNe parlez pas si vite, s'il vous plaît.\nDon't stare at me like that.\tNe me fixe pas ainsi.\nDon't stare at me like that.\tNe me fixez pas ainsi.\nDon't stop until I tell you.\tNe vous arrêtez pas jusqu'à ce que je vous le dise !\nDon't stop until I tell you.\tNe cessez pas jusqu'à ce que je vous le dise !\nDon't stop until I tell you.\tNe cesse pas jusqu'à ce que je te le dise !\nDon't stop until I tell you.\tNe t'arrête pas jusqu'à ce que je te le dise !\nDon't take it so personally.\tNe le prenez pas de manière si personnelle !\nDon't take it so personally.\tNe le prends pas de manière si personnelle !\nDon't take it too literally.\tNe le prends pas au premier degré.\nDon't talk in the classroom.\tNe parle pas en classe.\nDon't talk to me about work.\tNe me parle pas du travail !\nDon't talk to me about work.\tNe me parlez pas du travail !\nDon't tell Tom you're a cop.\tNe dites pas à Tom que vous êtes un flic.\nDon't tell Tom you're a cop.\tNe dis pas à Tom que tu es policier.\nDon't tell me any more lies.\tNe me dites plus de mensonges !\nDon't tell me any more lies.\tNe me dis plus de mensonges !\nDon't tell me. Let me guess.\tNe me le dites pas ! Laissez-moi deviner !\nDon't tell me. Let me guess.\tNe me le dis pas ! Laisse-moi deviner !\nDon't tell me. Let me guess.\tNe me le dites pas ! Laissez-moi le deviner !\nDon't tell me. Let me guess.\tNe me le dis pas ! Laisse-moi le deviner !\nDon't tell me. Let me guess.\tNe me dis pas ! Laisse-moi le deviner !\nDon't tell me. Let me guess.\tNe me dites pas ! Laissez-moi le deviner !\nDon't tell me. Let me guess.\tNe me dis pas ! Laisse-moi deviner !\nDon't tell me. Let me guess.\tNe me dites pas ! Laissez-moi deviner !\nDon't think about it. Do it.\tN'y réfléchissez pas ! Faites-le !\nDon't think about it. Do it.\tN'y réfléchis pas ! Fais-le !\nDon't try to carry too much.\tNe tentez pas de trop porter !\nDon't try to carry too much.\tNe tente pas de trop porter !\nDon't try to talk right now.\tN'essayez pas de parler tout de suite !\nDon't try to talk right now.\tNe tentez pas tout de suite de parler !\nDon't try to talk right now.\tN'essaye pas tout de suite de parler !\nDon't try to talk right now.\tN'essaie pas de parler tout de suite !\nDon't use all the hot water.\tN'utilise pas toute l'eau chaude.\nDon't walk alone after dark.\tNe marche pas seule après la tombée du jour.\nDon't walk alone after dark.\tNe déambule pas seul après la tombée du jour.\nDon't worry. You'll make it.\tNe t'en fais pas ! Tu y arriveras.\nDon't worry. You'll make it.\tNe vous en faites pas ! Vous y arriverez.\nDon't worry. You'll make it.\tNe vous en faites pas ! Vous y parviendrez.\nDon't you care what happens?\tNe vous souciez-vous pas de ce qui se passe ?\nDon't you care what happens?\tNe te soucies-tu pas de ce qui se passe ?\nDon't you drag me into this.\tNe m'entraîne pas là-dedans !\nDon't you drag me into this.\tNe m'entraînez pas là-dedans !\nDon't you have any ambition?\tN'as-tu donc aucune ambition ?\nDon't you just love it here?\tN'adores-tu simplement pas l'endroit ?\nDon't you just love it here?\tN'adorez-vous simplement pas l'endroit ?\nDon't you like Chinese food?\tN'aimes-tu pas la cuisine chinoise ?\nDon't you like Chinese food?\tN'aimez-vous pas la cuisine chinoise ?\nDon't you read the tabloids?\tTu ne lis pas la presse à scandale ?\nDon't you read the tabloids?\tVous ne lisez pas la presse à scandale ?\nDon't you read the tabloids?\tNe lis-tu pas les journaux à scandale ?\nDon't you read the tabloids?\tNe lisez-vous pas les journaux à scandale ?\nDon't you remember anything?\tNe vous souvenez-vous pas de quoi que ce soit ?\nDon't you remember anything?\tNe vous rappelez-vous pas quoi que ce soit ?\nDon't you remember anything?\tNe te souviens-tu pas de quoi que ce soit ?\nDon't you remember anything?\tNe te rappelles-tu pas quoi que ce soit ?\nEarth is a beautiful planet.\tLa Terre est une belle planète.\nEconomy cars save you money.\tLes voitures bon marché vous font économiser de l'argent.\nEnglish is spoken in Canada.\tL'anglais est parlé au Canada.\nEnjoy yourself for a change.\tFais-toi plaisir pour changer.\nEnjoy yourself for a change.\tAmusez-vous pour changer.\nEverybody desires happiness.\tTout le monde veut être heureux.\nEverybody is busy except me.\tTout le monde est occupé sauf moi.\nEverybody is relying on you.\tTout le monde compte sur toi.\nEverybody knows we hate Tom.\tTout le monde sait que nous détestons Tom.\nEverybody knows who you are.\tTout le monde sait qui tu es.\nEverybody likes to goof off.\tTout le monde aime bien glander.\nEverybody wants recognition.\tTout le monde veut de la reconnaissance.\nEverybody wants to be happy.\tTout le monde veut être heureux.\nEveryone ate the same thing.\tTout le monde mangea la même chose.\nEveryone can't afford a car.\tTout le monde ne peut pas s'offrir une voiture.\nEveryone did a fabulous job.\tTout le monde a fait un travail fabuleux.\nEveryone did a fabulous job.\tTout le monde a fait un job fabuleux.\nEveryone does what he wants.\tChacun fait ce qu'il veut.\nEveryone is friendly to her.\tTout le monde est amical avec elle.\nEveryone is getting fidgety.\tTout le monde commence à être sur les nerfs.\nEveryone is trying his best.\tChacun fait de son mieux.\nEveryone speaks well of him.\tTout le monde parle de lui en bien.\nEverything is all right now.\tTout va bien maintenant.\nEverything is under control.\tTout est sous contrôle.\nEverything's going to be OK.\tTout va bien se passer.\nExcuse me, could I get past?\tExcusez-moi, pourrais-je passer ?\nFashion is not my specialty.\tLa mode n'est pas ma spécialité.\nFasten the rope to the tree.\tAttache la corde à l'arbre.\nFasten the rope to the tree.\tAttachez la corde à l'arbre !\nFather recovered his health.\tPère a recouvré la santé.\nFeel this. It's really soft.\tTouche ça ! C'est vraiment doux.\nFeel this. It's really soft.\tTouchez ça ! C'est vraiment doux.\nFeel this. It's really soft.\tSens ça ! C'est vraiment doux.\nFeel this. It's really soft.\tSentez ça ! C'est vraiment doux.\nFew people have typewriters.\tPeu de gens ont des machines à écrire.\nFew students can read Latin.\tPeu d'étudiants arrivent à lire le latin.\nFew students can read Latin.\tPeu d'étudiants peuvent lire le latin.\nFinding his office was easy.\tTrouver son bureau fut facile.\nFinding his office was easy.\tTrouver son bureau fut aisé.\nFirst, let's talk about Tom.\tD'abord, parlons de Tom.\nFishing is not allowed here.\tPêcher n'est pas autorisé ici.\nFood is fuel for our bodies.\tLa nourriture est un carburant pour le corps.\nForget about that right now.\tOublie ça tout de suite.\nForget about that right now.\tOubliez ça tout de suite.\nFortunately, she didn't die.\tHeureusement elle n'est pas morte.\nFrance is in Western Europe.\tLa France se situe en Europe Occidentale.\nFrance is in western Europe.\tLa France est en Europe de l'Ouest.\nFrance is in western Europe.\tLa France est en Europe occidentale.\nFrench developed from Latin.\tLe français s'est développé à partir du latin.\nFurther testing is required.\tUn examen plus poussé est requis.\nFurther testing is required.\tDes examens plus poussés sont requis.\nGermany has no minimum wage.\tL'Allemagne ne dispose pas d'un salaire minimum.\nGet out of here immediately!\tSors d'ici, tout de suite !\nGet out of here immediately!\tSortez d'ici, tout de suite !\nGet out of here! All of you!\tSortez d'ici ! Tous autant que vous êtes !\nGet out of here, all of you!\tSortez tous d'ici !\nGirls say that all the time.\tLes filles disent ça tout le temps.\nGive it to whoever needs it.\tDonne-le à quelqu'un qui en a besoin.\nGive it to whoever needs it.\tDonne-le à quiconque en a besoin.\nGive it to whoever wants it.\tDonne-le à quiconque le veut !\nGive it to whoever wants it.\tDonnez-le à quiconque le veut !\nGive me a copy of this book.\tDonne-moi un exemplaire de ce livre.\nGive me a minute, would you?\tDonne-moi une minute, tu veux ?\nGive me five tokens, please.\tDonne-moi cinq jetons, s'il te plaît.\nGive us everything you have.\tDonne-nous tout ce que tu as.\nGive us everything you have.\tDonnez-nous tout ce que vous avez.\nGo and help wash the dishes.\tVa aider à laver les plats.\nGo back to where you belong.\tRetourne là d'où tu viens !\nGo back to where you belong.\tRetournez là d'où vous venez !\nGo on, Tom, we're listening.\tVas-y, Tom, nous t'écoutons.\nGo to your respective seats.\tAllez à vos places respectives.\nGo two blocks and turn left.\tTournez à la deuxième à gauche.\nGo two blocks and turn left.\tTourne à la deuxième à gauche.\nGod can be found everywhere.\tOn peut trouver Dieu n'importe où.\nGold is heavier than silver.\tL'or est plus lourd que l'argent.\nGreen is the color of money.\tLe vert est la couleur de l'argent.\nGuess what I did last night.\tDevine ce que j'ai fait hier soir !\nGuess what I did last night.\tDevinez ce que j'ai fait hier soir !\nGuess what I've got for you.\tDevinez ce que j'ai pour vous.\nHands up! This is a robbery.\tHaut les mains ! C'est un hold-up.\nHang the mirror on the wall.\tAccrochez le miroir au mur.\nHarvard was founded in 1636.\tHarvard fut fondé en 1636.\nHas Flight 123 been delayed?\tEst-ce que le vol 123 a été retardé ?\nHas Flight 123 been delayed?\tLe vol 123 a-t-il été retardé ?\nHas all the coke been drunk?\tTout le coca a-t-il été bu ?\nHas she ever fallen in love?\tEst-elle déjà tombée amoureuse ?\nHas something else happened?\tQuelque chose d'autre s'est-il passé ?\nHave confidence in yourself.\tAyez confiance en vous.\nHave confidence in yourself.\tAie confiance en toi.\nHave they ever come on time?\tSont-ils déjà arrivés à l'heure ?\nHave they ever come on time?\tSont-elles déjà arrivés à l'heure ?\nHave you considered therapy?\tAs-tu envisagé un traitement ?\nHave you ever been arrested?\tAs-tu jamais été arrêté ?\nHave you ever been arrested?\tAs-tu jamais été arrêtée ?\nHave you ever been arrested?\tAvez-vous jamais été arrêté ?\nHave you ever been arrested?\tAvez-vous jamais été arrêtée ?\nHave you ever been arrested?\tAvez-vous jamais été arrêtés ?\nHave you ever been arrested?\tAvez-vous jamais été arrêtées ?\nHave you ever been run over?\tAvez-vous jamais été renversé ?\nHave you ever been run over?\tAvez-vous jamais été renversée ?\nHave you ever been run over?\tAvez-vous jamais été renversés ?\nHave you ever been run over?\tAvez-vous jamais été renversées ?\nHave you ever been run over?\tAs-tu jamais été renversé ?\nHave you ever been run over?\tAs-tu jamais été renversée ?\nHave you ever been to Nikko?\tÊtes-vous déjà allé à Nikko ?\nHave you ever broken a bone?\tT'es-tu jamais cassé un os ?\nHave you ever broken a bone?\tVous êtes-vous jamais cassé un os ?\nHave you ever broken a bone?\tT'es-tu jamais cassée un os ?\nHave you ever broken a bone?\tVous êtes-vous jamais cassée un os ?\nHave you ever broken a bone?\tNe vous êtes-vous jamais cassé un os ?\nHave you ever broken a bone?\tVous êtes vous déjà cassé un os ?\nHave you ever built a house?\tAvez-vous déjà construit une maison ?\nHave you ever donated blood?\tAs-tu jamais donné ton sang ?\nHave you ever donated blood?\tAvez-vous jamais donné votre sang ?\nHave you ever grown a beard?\tT'es-tu déjà laissé pousser la barbe ?\nHave you ever kissed a girl?\tAs-tu déjà embrassé une fille ?\nHave you ever ridden a mule?\tÊtes-vous jamais monté à dos de mule ?\nHave you ever ridden a mule?\tÊtes-vous jamais montée à dos de mule ?\nHave you ever ridden a mule?\tÊtes-vous jamais montés à dos de mule ?\nHave you ever ridden a mule?\tÊtes-vous jamais montées à dos de mule ?\nHave you ever ridden a mule?\tEs-tu jamais monté à dos de mule ?\nHave you ever ridden a mule?\tEs-tu jamais montée à dos de mule ?\nHave you ever seen a monkey?\tAs-tu déjà vu un singe ?\nHave you ever visited Kyoto?\tAs-tu déjà visité Kyoto ?\nHave you finished your meal?\tAvez-vous fini votre repas ?\nHave you finished your meal?\tAs-tu fini ton repas ?\nHave you finished your work?\tAvez-vous fini votre travail ?\nHave you had dinner already?\tAs-tu déjà dîné ?\nHave you heard the news yet?\tAs-tu déjà entendu les informations ?\nHave you read this book yet?\tAs-tu déjà lu ce livre ?\nHave you read today's paper?\tAs-tu lu le journal d'aujourd'hui ?\nHave you read today's paper?\tAvez-vous lu le journal d'aujourd'hui ?\nHave you read today's paper?\tAvez-vous lu le journal du jour ?\nHave you told me everything?\tM'as-tu tout dit ?\nHave you told me everything?\tM'avez-vous tout dit ?\nHave you washed the car yet?\tAvez-vous déjà lavé l’automobile ?\nHaven't you had your dinner?\tVous n'avez pas dîné ?\nHaven't you seen the doctor?\tN'avez-vous pas vu le médecin ?\nHe absconded with the money.\tIl disparut avec l'argent.\nHe achieved his aim at last.\tIl atteignit enfin son but.\nHe achieved his aim at last.\tIl atteignit enfin son objectif.\nHe acquired a large fortune.\tIl s'est beaucoup enrichi.\nHe always wears blue shirts.\tIl porte toujours des chemises bleues.\nHe arrived after I had left.\tIl est arrivé après que je suis parti.\nHe arrived the day she left.\tIl est arrivé le jour où elle est partie.\nHe arrived there after dark.\tIl y parvint après le coucher du soleil.\nHe asked her some questions.\tIl lui posa quelques questions.\nHe asked me a few questions.\tIl m'a posé quelques questions.\nHe asked me if I were happy.\tIl m'a demandé si j'étais heureux.\nHe asked me if I were happy.\tIl m'a demandé si j'étais content.\nHe asked me if I were happy.\tIl m'a demandé si j'étais contente.\nHe asked me if I were happy.\tIl m'a demandé si j'étais satisfait.\nHe asked me if I were happy.\tIl m'a demandé si j'étais satisfaite.\nHe asked me what I expected.\tIl m'a demandé ce que j'espérais.\nHe asked me where she lived.\tIl me demanda où elle vivait.\nHe asked me where she lived.\tIl m'a demandé où elle vivait.\nHe begged us to go with him.\tIl nous supplia de l'accompagner.\nHe blamed me for not coming.\tIl m'a reproché de ne pas être venu.\nHe boasted about his skills.\tIl se vantait de ses capacités.\nHe bore a grudge against me.\tIl avait une rancune envers moi.\nHe bought himself a new car.\tIl s'est acheté une voiture neuve.\nHe calls her up every night.\tIl lui téléphone chaque soir.\nHe came back two days later.\tIl revint deux jours plus tard.\nHe came back two days later.\tIl est revenu deux jours plus tard.\nHe can pull strings for you.\tIl peut exercer son influence en votre faveur.\nHe can pull strings for you.\tIl peut exercer son influence en ta faveur.\nHe can speak five languages.\tIl peut parler cinq langues.\nHe can't speak much English.\tIl ne parle guère anglais.\nHe carried the box upstairs.\tIl porta la caisse à l'étage.\nHe claims that he is honest.\tIl clame qu'il est honnête.\nHe cleared the path of snow.\tIl dégagea la neige du chemin.\nHe cleared the roof of snow.\tIl dégagea la toiture de la neige.\nHe closed the door suddenly.\tIl ferma soudain la porte.\nHe composes beautiful poems.\tIl compose de beaux poèmes.\nHe considered himself lucky.\tIl s'est considéré chanceux.\nHe continued the experiment.\tIl poursuivit l'expérience.\nHe continued the experiment.\tIl a poursuivi l'expérimentation.\nHe decided to give it a try.\tIl a décidé d'essayer.\nHe developed his own theory.\tIl a développé sa propre théorie.\nHe did not know what to say.\tIl ne savait quoi dire.\nHe did not know what to say.\tIl ne savait pas quoi dire.\nHe did not know where to go.\tIl ne savait pas où aller.\nHe did not say a word to us.\tIl ne nous a pas dit un mot.\nHe did the work in two days.\tIl a fait le travail en deux jours.\nHe didn't dare say anything.\tIl n'osait pas dire quoi que ce soit.\nHe didn't explain it at all.\tIl ne l'a pas du tout expliqué.\nHe didn't have a single pen.\tIl ne disposait d'aucun stylo.\nHe didn't have time to read.\tIl n'a pas eu le temps de lire.\nHe didn't say a single word.\tIl ne souffla mot.\nHe didn't turn up after all.\tFinalement, il ne s'est pas montré.\nHe died from lack of oxygen.\tIl est mort par manque d'oxygène.\nHe died of cancer last year.\tIl est mort d'un cancer l'an dernier.\nHe differs from his brother.\tIl est différent de son frère.\nHe disappeared in the crowd.\tIl disparut dans la foule.\nHe does not have to do this.\tIl n'est pas obligé de faire cela.\nHe does not watch TV at all.\tIl ne regarde pas du tout la télé.\nHe doesn't always come late.\tIl ne vient pas toujours en retard.\nHe doesn't have any friends.\tIl n'a aucun ami.\nHe doesn't like to eat fish.\tIl n'aime pas le poisson.\nHe doesn't play video games.\tIl ne joue pas à des jeux vidéo.\nHe doesn't want you to know.\tIl ne veut pas que vous sachiez.\nHe doesn't want you to know.\tIl ne veut pas que tu saches.\nHe drives a car, doesn't he?\tIl conduit une voiture, n'est-ce pas ?\nHe exhausted all his energy.\tIl a épuisé toutes ses forces.\nHe explained the rule to me.\tIl m'expliqua la règle.\nHe failed the entrance exam.\tIl a raté l'examen d'entrée.\nHe failed the entrance exam.\tIl rata l'examen d'entrée.\nHe failed the entrance exam.\tIl échoua à l'examen d'entrée.\nHe failed the entrance exam.\tIl a échoué à l'examen d'entrée.\nHe feels a lot better today.\tIl se sent beaucoup mieux aujourd'hui.\nHe fell asleep during class.\tIl s'est endormi durant le cours.\nHe fell asleep during class.\tIl s'est endormi en cours.\nHe fell into a deep slumber.\tIl est tombé dans un profond sommeil.\nHe felt himself growing old.\tIl s'est senti vieillir.\nHe felt himself growing old.\tIl se sentit vieillir.\nHe flew a kite with his son.\tIl fit voler un cerf-volant avec son fils.\nHe gave me his phone number.\tIl me donna son numéro de téléphone.\nHe gave three wrong answers.\tIl a fourni trois mauvaises réponses.\nHe got a loan from the bank.\tIl a obtenu un prêt de la banque.\nHe got engaged to my cousin.\tIl s'est fiancé à ma cousine.\nHe got lost on his way here.\tIl s'est perdu en chemin jusqu'ici.\nHe got sick during the trip.\tIl a été malade pendant le voyage.\nHe got the book for nothing.\tIl a eu le livre pour rien.\nHe grabbed me by the collar.\tIl m'agrippa par le col.\nHe had barely enough to eat.\tIl avait à peine de quoi manger.\nHe had the gift of prophecy.\tIl avait le don de prophétie.\nHe had the table to himself.\tIl avait la table pour lui.\nHe had to leave the village.\tIl a dû quitter le village.\nHe has a beautiful daughter.\tIl a une belle fille.\nHe has a crush on this girl.\tIl en pince pour cette fille.\nHe has a good ear for music.\tIl a une bonne oreille pour la musique.\nHe has a grudge against you.\tIl en a après toi.\nHe has a strong personality.\tIl est doté d'une forte personnalité.\nHe has an incurable disease.\tIl a une maladie incurable.\nHe has been sick for a week.\tIl a été malade pendant une semaine.\nHe has my fate in his hands.\tIl a mon destin entre ses mains.\nHe has to be taller than me.\tIl faut qu'il soit plus grand que moi.\nHe hasn't read the book yet.\tIl n'a pas encore lu le livre.\nHe helped me do my homework.\tIl m'aidait à faire mes devoirs.\nHe helped me do my homework.\tIl m'aida à faire mes devoirs.\nHe hung his head sheepishly.\tIl inclina la tête embarrassé.\nHe insisted that I join him.\tIl a insisté pour que je le rejoigne.\nHe insisted that I join him.\tIl insista pour que je le rejoigne.\nHe is a head taller than me.\tIl fait une tête de plus que moi.\nHe is a mathematical genius.\tC'est un mathématicien de génie.\nHe is a novelist and artist.\tC'est un romancier et un artiste.\nHe is a promising young man.\tC'est un jeune homme prometteur.\nHe is almost always at home.\tIl est presque toujours chez lui.\nHe is always friendly to me.\tIl est toujours sympathique envers moi.\nHe is always neatly dressed.\tIl est toujours soigneusement vêtu.\nHe is an authority on China.\tIl est une autorité en Chine.\nHe is an old friend of mine.\tC'est un vieil ami à moi.\nHe is as tall as his father.\tIl est aussi grand que son père.\nHe is busy learning English.\tIl est occupé à apprendre l'anglais.\nHe is clumsy with his hands.\tIl est maladroit de ses mains.\nHe is digging his own grave.\tIl creuse sa propre tombe.\nHe is giving me a hard time.\tIl se montre difficile avec moi.\nHe is giving me a hard time.\tIl est casse-couilles avec moi.\nHe is giving me a hard time.\tIl me donne du mal.\nHe is good at taking photos.\tIl est doué pour prendre des photos.\nHe is in his early thirties.\tIl est au début de la trentaine.\nHe is innocent of the crime.\tIl est innocent du crime.\nHe is more clever than I am.\tIl est plus intelligent que moi.\nHe is more crafty than wise.\tIl est plus rusé que sage.\nHe is much taller than I am.\tIl est plus grand que moi.\nHe is no longer living here.\tIl n'habite plus ici.\nHe is no match for his wife.\tIl ne peut pas se mesurer à sa femme.\nHe is not likely to succeed.\tIl semble probable qu'il échoue.\nHe is not much of an artist.\tIl n'est pas vraiment un artiste.\nHe is not very good company.\tIl n'est pas de très bonne compagnie.\nHe is on night duty tonight.\tIl travaille de nuit ce soir.\nHe is one of my old friends.\tC'est l'un de mes vieux amis.\nHe is pleased with his work.\tSon travail lui plaît.\nHe is proficient in English.\tIl est très compétent en anglais.\nHe is rarely in a good mood.\tIl est rarement de bonne humeur.\nHe is rather hard to please.\tIl est plutôt difficile à contenter.\nHe is respected by everyone.\tIl est respecté par tout le monde.\nHe is roasting coffee beans.\tIl torréfie des fèves de café.\nHe is standing on the stage.\tIl se tient sur la scène.\nHe is still very much alive.\tIl est encore fringant.\nHe is suffering from a cold.\tIl souffre d'un rhume.\nHe is sure to pass the exam.\tIl est sûr de réussir l'examen.\nHe is the head of marketing.\tC'est le patron du marketing.\nHe is the taller of the two.\tIl est le plus grand des deux.\nHe is tremendously handsome.\tIl est extrêmement beau.\nHe is unfit to be a teacher.\tIl n'est pas apte à être enseignant.\nHe joined the opposing team.\tIl a rejoint l'équipe adverse.\nHe jumped across the puddle.\tIl sauta par-dessus la flaque.\nHe just cares about himself.\tIl ne se préoccupe que de lui-même.\nHe keeps a diary in English.\tIl tient un journal en anglais.\nHe kept on reading the book.\tIl a continué à lire le livre.\nHe kept walking all the day.\tIl continua à marcher tout le jour.\nHe kept walking all the day.\tIl a continué à marcher toute la journée.\nHe knows how to drive a car.\tIl sait conduire une voiture.\nHe left his keys in the car.\tIl a laissé ses clés dans la voiture.\nHe left his keys in the car.\tIl a laissé ses clefs dans la voiture.\nHe left his keys in the car.\tIl laissa ses clés dans la voiture.\nHe left his keys in the car.\tIl laissa ses clefs dans la voiture.\nHe left the box unprotected.\tIl laissa la boîte sans protection.\nHe left the box unprotected.\tIl a laissé la boîte sans protection.\nHe likes baseball very much.\tIl aime beaucoup le baseball.\nHe likes to read newspapers.\tIl aime lire les journaux.\nHe lives alone in the woods.\tIl vit seul dans les bois.\nHe looked at me in surprise.\tIl me regarda avec surprise.\nHe looks like an honest man.\tIl a l'air d'un honnête homme.\nHe looks tired this evening.\tCe soir il a l'air fatigué.\nHe lost everything he owned.\tIl perdit tout ce qu'il possédait.\nHe lost his way in the snow.\tIl a perdu son chemin dans la neige.\nHe made an abrupt departure.\tIl a fait un départ brusque.\nHe made up his mind quickly.\tIl se décida rapidement.\nHe makes believe he is rich.\tIl fait croire qu'il est riche.\nHe needs something to drink.\tIl lui faut quelque chose à boire.\nHe never laughs at my jokes.\tIl ne rit jamais de mes plaisanteries.\nHe often makes people angry.\tIl met souvent les gens en colère.\nHe often quotes Shakespeare.\tIl cite souvent Shakespeare.\nHe only cares about himself.\tIl ne se préoccupe que de lui-même.\nHe only speaks one language.\tIl ne parle qu'une seule langue.\nHe painted the ceiling blue.\tIl a peint le plafond en bleu.\nHe painted the ceiling blue.\tIl peignit le plafond en bleu.\nHe plays baseball every day.\tIl joue au baseball tous les jours.\nHe pretended not to be hurt.\tIl fit comme s'il n'avait pas été blessé.\nHe pretended not to be hurt.\tIl a fait comme s'il n'avait pas été blessé.\nHe pretended not to hear me.\tIl fit semblant de ne pas m'entendre.\nHe pretended not to know me.\tIl fit semblant de ne pas me connaître.\nHe pretended not to know me.\tIl a fait semblant de ne pas me connaître.\nHe pretended to be a doctor.\tIl prétendait être un docteur.\nHe pretended to be ignorant.\tIl prétendit être ignorant.\nHe pretended to be ignorant.\tIl fit semblant d'être ignorant.\nHe probably forgot about it.\tIl l'a probablement oublié.\nHe received a lot of praise.\tIl a reçu de nombreux encouragements.\nHe received rough treatment.\tIl s'est fait rudement traiter.\nHe repaired my watch for me.\tIl m'a réparé ma montre.\nHe repeated his name slowly.\tIl répéta lentement son nom.\nHe resigned from his office.\tIl démissionna de son poste.\nHe retired at the age of 65.\tIl a pris sa retraite à 65 ans.\nHe retired at the age of 65.\tIl a pris sa retraite à l'âge de 65 ans.\nHe rolled over in his sleep.\tIl se retourna dans son sommeil.\nHe rolled over in his sleep.\tIl s'est retourné dans son sommeil.\nHe ruled his kingdom fairly.\tIl gouverna équitablement son royaume.\nHe rushed out of the office.\tIl se précipita hors du bureau.\nHe sat down to read a novel.\tIl s'est assis pour lire un roman.\nHe scarcely ever watches TV.\tIl regarde très rarement la télé.\nHe seems to have told a lie.\tIl semblerait qu'il ait menti.\nHe seldom counts his change.\tIl vérifie rarement sa monnaie.\nHe shaves four times a week.\tIl se rase quatre fois par semaine.\nHe should have known better.\tIl aurait dû ne pas être assez bête pour le faire.\nHe should have known better.\tIl n'aurait pas dû être aussi bête.\nHe shouldn't have done that.\tIl n'aurait pas dû faire ça.\nHe showed us a few pictures.\tIl nous a montré quelques photos.\nHe shut the door behind him.\tIl ferma la porte derrière lui.\nHe slipped on a banana peel.\tIl a glissé sur une peau de banane.\nHe sometimes drops in on me.\tIl vient parfois me rendre visite.\nHe speaks English very well.\tIl parle très bien anglais.\nHe speaks Russian perfectly.\tIl parle parfaitement le russe.\nHe started to speak English.\tIl se mit à parler anglais.\nHe started to speak English.\tIl s'est mis à parler anglais.\nHe sticks to his principles.\tIl respecte ses principes.\nHe studied military history.\tIl étudia l'histoire militaire.\nHe studied military history.\tIl a étudié l'histoire militaire.\nHe studies American history.\tIl étudie l'histoire des États-Unis.\nHe suddenly stopped talking.\tIl s'arrêta soudain de parler.\nHe survived the plane crash.\tIl a survécu à un crash aérien.\nHe takes everything lightly.\tIl prend tout à la légère.\nHe talks as if he were rich.\tIl parle comme s'il était riche.\nHe tendered his resignation.\tIl a présenté sa démission.\nHe thought it was hilarious.\tIl a pensé que c'était hilarant.\nHe thought it was hilarious.\tIl pensa que c'était hilarant.\nHe threw a stone at the dog.\tIl lança une pierre au chien.\nHe told me his life's story.\tIl me raconta l'histoire de sa vie.\nHe told me his life's story.\tIl me conta l'histoire de sa vie.\nHe told me his name was Tom.\tIl dit s'appeler Tom.\nHe took an oral examination.\tIl a eu un examen oral.\nHe took her out for a drive.\tIl l'a emmenée dehors faire un tour en voiture.\nHe took the job reluctantly.\tIl a accepté ce travail à contre-cœur.\nHe treats me like his slave.\tIl me traite en esclave.\nHe turned down our proposal.\tIl a rejeté notre proposition.\nHe vowed to give up smoking.\tIl a exprimé sa volonté d'arrêter la cigarette.\nHe vowed to give up smoking.\tIl a affirmé vouloir arrêter la cigarette.\nHe walked across the garden.\tIl marcha à travers le jardin.\nHe walked across the street.\tIl a traversé la rue.\nHe wants to go out with her.\tIl a envie de sortir avec elle.\nHe wants to save the planet.\tIl veut sauver la planète.\nHe was accused of cowardice.\tIl a été accusé de lâcheté.\nHe was also kind to animals.\tIl était aussi gentil avec les animaux.\nHe was ashamed of his tears.\tIl avait honte de ses larmes.\nHe was at a loss what to do.\tIl ne savait que faire.\nHe was born to be a painter.\tIl était né pour être peintre.\nHe was caught by the police.\tIl a été arrêté par la police.\nHe was covered with bruises.\tIl était couvert de bleus.\nHe was expelled from school.\tIl a été exclu de l'école.\nHe was hurt in the accident.\tIl a été blessé dans l'accident.\nHe was ignorant of the fact.\tIl ignorait le fait.\nHe was laughed at in public.\tOn s'est moqué de lui publiquement.\nHe was naturally very angry.\tIl était d'un naturel très colérique.\nHe was not at all satisfied.\tIl n'était pas du tout satisfait.\nHe was pleasantly surprised.\tIl a été agréablement surpris.\nHe was pleasantly surprised.\tIl fut agréablement surpris.\nHe was right the first time.\tIl avait raison la première fois.\nHe was sitting on the floor.\tIl était assis par terre.\nHe was standing at the door.\tIl se tenait à la porte.\nHe went there instead of me.\tIl s'y rendit à ma place.\nHe went there instead of me.\tIl s'y est rendu à ma place.\nHe will be at home tomorrow.\tIl sera chez lui demain.\nHe will be at home tomorrow.\tIl sera à la maison demain.\nHe will be back in a second.\tIl sera de retour dans une seconde.\nHe will be here all evening.\tIl sera là toute la soirée.\nHe will be writing a letter.\tIl écrira une lettre.\nHe won't make it to old age.\tIl ne fera pas long feu.\nHe worked all day yesterday.\tIl a travaillé toute la journée d'hier.\nHe worked from nine to five.\tIl travaillait de neuf heures à cinq heures.\nHe worked from nine to five.\tIl travailla de neuf heures à cinq heures.\nHe worked through the night.\tIl travailla toute la nuit.\nHe worked through the night.\tIl a travaillé toute la nuit.\nHe works at a tattoo parlor.\tIl travaille dans une officine de tatouage.\nHe wouldn't even look at me.\tIl refuse de même me regarder.\nHe wouldn't even look at me.\tIl ne me regarderait même pas.\nHe wrote a letter yesterday.\tHier, il a écrit une lettre.\nHe'd prefer to go on Friday.\tIl préfèrerait y aller vendredi.\nHe'll arrive within an hour.\tIl arrivera avant une heure.\nHe'll become a good husband.\tIl deviendra un bon mari.\nHe's a freelance journalist.\tIl est pigiste.\nHe's a freelance journalist.\tC'est un pigiste.\nHe's a freelance journalist.\tC'est un journaliste indépendant.\nHe's a typical Japanese man.\tC'est un Japonais typique.\nHe's able to speak Japanese.\tIl sait parler japonais.\nHe's always late for school.\tIl est toujours en retard à l'école.\nHe's an independent thinker.\tC'est un esprit indépendant.\nHe's better at it than I am.\tIl y est meilleur que je ne le suis.\nHe's brighter than they are.\tIl est plus intelligent qu'eux.\nHe's checking his cellphone.\tIl vérifie son téléphone portable.\nHe's going to join our club.\tIl va se joindre à notre cercle.\nHe's kind of cute, isn't he?\tIl est assez mignon, n'est-ce pas ?\nHe's kind of cute, isn't he?\tIl est assez mignon, non ?\nHe's kind of cute, isn't he?\tIl est mignon, dans son genre, non ?\nHe's not as tall as you are.\tIl n'est pas aussi grand que toi.\nHe's rough around the edges.\tIl est un peu rude aux encoignures.\nHe's screaming, not singing.\tIl hurle, il ne chante pas.\nHe's smoking more than ever.\tIl fume plus que jamais.\nHe's the cutest boy in town.\tC'est le garçon le plus mignon en ville.\nHe's the one who touched me.\tC'est celui qui m'a tripotée.\nHe's the one who touched me.\tC'est celui qui m'a tripoté.\nHe's very likely to be late.\tIl est très probable qu'il soit en retard.\nHe's working at his English.\tIl travaille son anglais.\nHeads I win, tails you lose.\tPile je gagne, face tu perds.\nHelp me and I will help you.\tAide-moi et je t'aiderai.\nHelp me and I will help you.\tAidez-moi et je vous aiderai.\nHelp me and I will help you.\tAidez-moi et je t'aiderai.\nHelp me and I will help you.\tAide-moi et je vous aiderai.\nHer anger is understandable.\tSa colère est compréhensible.\nHer cardigan was unbuttoned.\tSon cardigan était déboutonné.\nHer cardigan was unbuttoned.\tSon gilet était déboutonné.\nHer daughter is very pretty.\tSa fille est très jolie.\nHer dream is to visit Paris.\tSon rêve est de visiter Paris.\nHer eyes remind me of a cat.\tSes yeux me font penser à ceux d'un chat.\nHer garden is a work of art.\tSon jardin est une œuvre d'art.\nHer health seemed to suffer.\tSa santé semblait affectée.\nHer husband is about to die.\tSon mari est sur son lit de mort.\nHer mother became mad at us.\tSa mère s'est mise en colère après nous.\nHer name wasn't on the list.\tSon nom ne se trouvait pas sur la liste.\nHer name wasn't on the list.\tSon nom ne figurait pas dans la liste.\nHer remark got on my nerves.\tSa remarque m'a tapé sur les nerfs.\nHere is a brief description.\tVoici une brève description.\nHere's a big map of Germany.\tVoici une grande carte de l'Allemagne.\nHere's where it gets tricky.\tC'est ici que ça devient délicat.\nHere's where the fun begins.\tC'est là qu'on commence à rigoler.\nHey everyone, please listen.\tOh, veuillez tous écouter !\nHey guys, it's getting late.\tEh, les mecs, il se fait tard.\nHey, what are you two up to?\tEh, qu'avez-vous l'intention de faire, tous les deux ?\nHey, what are you two up to?\tEh ! Qu'avez-vous derrière la tête, tous les deux ?\nHis advice didn't help much.\tSes conseils n'ont pas beaucoup aidé.\nHis anger is understandable.\tSa colère est compréhensible.\nHis birthday is August 21st.\tSon anniversaire est le 21 août.\nHis brother was nasty to me.\tSon frère était méchant avec moi.\nHis cottage is on the coast.\tSon cottage est sur la côte.\nHis cottage is on the coast.\tSa maison de campagne est sur la côte.\nHis cousin lives in America.\tSon cousin vit aux États-Unis d'Amérique.\nHis cousin lives in America.\tSon cousin vit en Amérique.\nHis eyes were full of tears.\tSes yeux étaient noyés de larmes.\nHis garden is a work of art.\tSon jardin est une œuvre d'art.\nHis house was small and old.\tSa maison était petite et vieille.\nHis job is to teach English.\tSon travail consiste à enseigner l'anglais.\nHis lecture started on time.\tSa conférence commença à l'heure prévue.\nHis opinion was unimportant.\tSon opinion était sans importance.\nHis slacks are all wrinkled.\tSes pantalons sont tout froissés.\nHis theory is based on fact.\tSa théorie se fonde sur des faits.\nHis wife died in childbirth.\tSa femme est morte en couches.\nHis wife's a friend of mine.\tSa femme est une amie de la mienne.\nHis wife's a friend of mine.\tSon épouse est une amie de la mienne.\nHis words hurt her feelings.\tSes paroles l'ont blessée.\nHit the lights and let's go.\tÉteins et on y va.\nHitler led Germany into war.\tHitler conduisit l'Allemagne à la guerre.\nHold your horses, young man.\tMinute Papillon !\nHow about going for a drive?\tSi on allait se faire une virée en voiture ?\nHow about going for a drive?\tSi on allait faire un tour en voiture ?\nHow about going on a picnic?\tEt si on allait pique-niquer ?\nHow about taking up jogging?\tPourquoi ne pas vous mettre à la course à pied ?\nHow about taking up jogging?\tPourquoi ne pas te mettre à courir ?\nHow about we go for a drink?\tQue dis-tu d'aller prendre un verre ?\nHow about we go for a drink?\tQue dites-vous d'aller prendre un verre ?\nHow are things coming along?\tComment avance la situation?\nHow are we going to do that?\tComment allons-nous faire ça ?\nHow are you feeling tonight?\tComment te sens-tu ce soir ?\nHow are you feeling tonight?\tComment vous sentez-vous ce soir ?\nHow are you going to manage?\tComment vas-tu te débrouiller ?\nHow are you going to manage?\tComment allez-vous vous débrouiller ?\nHow can I help these people?\tComment puis-je aider ces gens ?\nHow can anyone be so stupid?\tComment quelqu'un peut-il être si stupide ?\nHow can you be sure of that?\tComment peux-tu en être sûr ?\nHow can you be sure of that?\tComment peux-tu en être sûre ?\nHow can you be sure of that?\tComment pouvez-vous en être sûr ?\nHow can you be sure of that?\tComment pouvez-vous en être sûrs ?\nHow can you be sure of that?\tComment pouvez-vous en être sûre ?\nHow can you be sure of that?\tComment pouvez-vous en être sûres ?\nHow can you not like horses?\tComment pouvez-vous ne pas apprécier les chevaux ?\nHow can you not like horses?\tComment peux-tu ne pas apprécier les chevaux ?\nHow come she hung up on you?\tComment se fait-il qu'elle t'a raccroché au nez ?\nHow could it not bother you?\tComment ça pourrait ne pas vous déranger ?\nHow could it not bother you?\tComment cela pourrait ne pas vous déranger ?\nHow could they have done it?\tComment auraient-ils pu le faire ?\nHow could they have done it?\tComment auraient-elles pu le faire ?\nHow did we reach this point?\tComment en sommes-nous arrivés là ?\nHow did you enjoy the movie?\tComment est-ce que tu as trouvé le film ?\nHow did you enjoy the movie?\tComment as-tu trouvé le film ?\nHow did you enjoy the movie?\tComment avez-vous trouvé le film ?\nHow did you get our address?\tComment as-tu eu notre adresse?\nHow did you get to be a cop?\tComment es-tu devenu flic ?\nHow did you get to be a cop?\tComment êtes-vous devenu flic ?\nHow did you get to know her?\tComment l'as-tu connue ?\nHow did you get to know her?\tComment l'avez-vous connue ?\nHow did you get to know him?\tComment l'as-tu connu ?\nHow did you get to know him?\tComment l'avez-vous connu ?\nHow did you kill the guards?\tComment as-tu tué les gardes ?\nHow did you learn Esperanto?\tComment as-tu appris l'espéranto ?\nHow did you learn Esperanto?\tDe quelle manière avez-vous appris l'espéranto ?\nHow did you like that movie?\tComment avez-vous trouvé ce film ?\nHow do I get to the airport?\tComment puis-je parvenir à l'aéroport ?\nHow do I get to the library?\tComment puis-je parvenir à la bibliothèque ?\nHow do you account for that?\tComment rendez-vous compte de cela ?\nHow do you account for that?\tComment expliquez-vous cela ?\nHow do you account for that?\tComment rends-tu compte de cela ?\nHow do you account for that?\tComment expliques-tu cela ?\nHow do you explain all this?\tComment expliquez-vous tout ceci ?\nHow do you explain all this?\tComment expliques-tu tout ceci ?\nHow do you go there? By car?\tComment y allez-vous ? En voiture ?\nHow do you know what I said?\tComment sais-tu ce que j'ai dit ?\nHow do you know what I said?\tComment savez-vous ce que j'ai dit ?\nHow do you know what's real?\tComment savez-vous ce qui est réel ?\nHow do you know what's real?\tComment sais-tu ce qui est réel ?\nHow do you know where to go?\tComment savez-vous où aller ?\nHow do you know where to go?\tComment savez-vous où vous rendre ?\nHow do you know where to go?\tComment sais-tu où aller ?\nHow do you know where to go?\tComment sais-tu où te rendre ?\nHow do you like my new suit?\tQue penses-tu de mon nouveau costume ?\nHow do you like my new suit?\tQue pensez-vous de mon nouveau costume ?\nHow do you like them apples?\tEt comment tu les aimes les pruneaux ?\nHow do you like them apples?\tEt comment vous les aimez les pruneaux ?\nHow do you plan to get home?\tComment prévois-tu d'arriver à la maison ?\nHow do you plan to get home?\tComment prévoyez-vous d'arriver à la maison ?\nHow do you take your coffee?\tComment prenez-vous votre café ?\nHow does it feel to be back?\tComment se sent-on d'être revenu ?\nHow does it feel to be back?\tComment ça fait d'être revenu ?\nHow does that make you feel?\tQue ressens-tu ?\nHow does that make you feel?\tQue ressentez-vous ?\nHow does that make you feel?\tQu'est-ce que ça te fait ?\nHow does that make you feel?\tQu'est-ce que ça vous fait ?\nHow exactly would that work?\tComment cela fonctionnerait-il, exactement ?\nHow fast does this thing go?\tÀ quelle vitesse cette chose va-t-elle ?\nHow long did you live there?\tTu as habité là-bas pendant combien de temps ?\nHow long did you stay there?\tCombien de temps y es-tu resté ?\nHow long did you stay there?\tCombien de temps y avez-vous séjourné ?\nHow long do you want it for?\tPour combien de temps environ le voulez-vous ?\nHow long have you been busy?\tCombien de temps étais-tu occupé ?\nHow long have you been busy?\tPendant combien de temps étais-tu occupée  ?\nHow long have you known her?\tTu la connais depuis combien de temps ?\nHow long is the Seto Bridge?\tQuelle est la longueur du pont Seto ?\nHow long will it stop there?\tCombien de temps s'arrêtera-t-il là ?\nHow long will you stay here?\tCombien de temps resterez-vous ici ?\nHow long will you stay here?\tCombien de temps comptez-vous rester ici ?\nHow long will you stay here?\tCombien de temps allez-vous séjourner ici ?\nHow many apples do you want?\tCombien de pommes veux-tu ?\nHow many beers have you had?\tCombien de bières as-tu bues ?\nHow many beers have you had?\tCombien de bières avez-vous bues ?\nHow many books did you read?\tCombien de livres avez-vous lus ?\nHow many books does he have?\tCombien de livres possède-t-il ?\nHow many children are there?\tCombien d'enfants y a-t-il ?\nHow many goats do they have?\tIls ont combien de chèvres ?\nHow many of them were there?\tCombien y en avait-il ?\nHow many of these are yours?\tCombien de ceux-ci sont-ils les vôtres ?\nHow many of these are yours?\tCombien de celles-ci sont-elles les vôtres ?\nHow many pens does she have?\tCombien de stylos a-t-elle ?\nHow many people can do that?\tCombien de personnes savent-elles faire cela ?\nHow many plates do you want?\tCombien de plats voulez-vous ?\nHow many plates do you want?\tCombien d'assiettes désires-tu?\nHow much are these potatoes?\tCombien coûtent ces pommes de terre ?\nHow much does this tie cost?\tCombien coûte cette cravate ?\nHow much is this ring worth?\tCombien vaut cette bague ?\nHow much is your hourly pay?\tCombien es-tu payé de l'heure ?\nHow much is your hourly pay?\tCombien es-tu payée de l'heure ?\nHow much is your hourly pay?\tCombien êtes-vous payé de l'heure ?\nHow much is your hourly pay?\tCombien êtes-vous payée de l'heure ?\nHow much milk is there left?\tCombien reste-t-il de lait ?\nHow much money do I owe you?\tCombien d'argent vous dois-je ?\nHow much money do I owe you?\tCombien d'argent te dois-je ?\nHow much money does he have?\tCombien d'argent a-t-il ?\nHow much will all this cost?\tCombien tout cela va-t-il coûter ?\nHow old do you think Tom is?\tQuel âge donnerais-tu à Tom ?\nHow old do you think she is?\tQuel âge pensez-vous qu'elle ait ?\nHow old do you think she is?\tQuel âge penses-tu qu'elle ait ?\nHow old is your grandfather?\tQuel âge a ton grand-père ?\nHow on earth did you get it?\tComment diable l'as-tu eu ?\nHow was the universe formed?\tComment s'est formé l'Univers ?\nHow was your trip to Boston?\tComment s'est passé le voyage jusqu'à Boston?\nHow will I pay my debts now?\tComment payerai-je mes dettes, désormais ?\nHow will I pay my debts now?\tComment payerai-je désormais mes dettes ?\nHow will you pay your debts?\tComment payeras-tu tes dettes ?\nHow will you pay your debts?\tComment payerez-vous vos dettes ?\nHow will you pay your debts?\tComment payerez-vous tes dettes ?\nHow will you pay your debts?\tComment payeras-tu vos dettes ?\nHow would you define normal?\tComment définirais-tu la normalité ?\nHow would you define normal?\tComment définiriez-vous la normalité ?\nHow's the weather out there?\tQuel temps fait-il là?\nHumans originated in Africa.\tLes êtres humains prennent leur origine en Afrique.\nHurry up, or you'll be late.\tDépêche-toi, ou tu seras en retard.\nHurry! Tom says it's urgent.\tVite ! Tom dit que c'est urgent.\nI accompanied her on a walk.\tJe l'accompagnai en promenade.\nI accompanied her on a walk.\tJe l'ai accompagnée en promenade.\nI admire your determination.\tJ'admire votre détermination.\nI admire your determination.\tJ'admire ta détermination.\nI admit that I was careless.\tJ'admets avoir été négligent.\nI admit that I was careless.\tJ'admets avoir été négligente.\nI advise you to be punctual.\tJe te conseille d'être ponctuel.\nI advise you to be punctual.\tJe te conseille d'être ponctuelle.\nI advise you to be punctual.\tJe vous conseille d'être ponctuel.\nI advise you to be punctual.\tJe vous conseille d'être ponctuelle.\nI advise you to be punctual.\tJe vous conseille d'être ponctuels.\nI advise you to be punctual.\tJe vous conseille d'être ponctuelles.\nI agree with you absolutely.\tJe suis tout à fait d'accord avec toi.\nI agree with you absolutely.\tJe suis tout à fait d'accord avec vous.\nI almost dropped the plates.\tJ'ai presque laissé tomber les assiettes.\nI almost dropped the plates.\tJ'ai presque fait tomber les assiettes.\nI almost feel sorry for you.\tJe me sens presque désolé pour toi.\nI almost feel sorry for you.\tJe me sens presque désolée pour toi.\nI almost feel sorry for you.\tJe me sens presque désolé pour vous.\nI almost feel sorry for you.\tJe me sens presque désolée pour vous.\nI almost forgot my passport.\tJ'ai failli oublier mon passeport.\nI also had a very good time.\tJ'ai aussi passé un très bon moment.\nI always knew you'd be back.\tJ'ai toujours su que tu reviendrais.\nI always knew you'd be back.\tJ'ai toujours su que vous reviendriez.\nI am a gentleman's daughter.\tJe suis la fille d'un gentilhomme.\nI am dying for a cold drink.\tJe crève d'envie d'une boisson fraîche.\nI am dying to see her again.\tJ'ai très envie de la revoir.\nI am dying to see her again.\tJe crève d'envie de la revoir.\nI am going to buy a new car.\tJe vais acheter une nouvelle voiture.\nI am grateful for your help.\tJe te suis reconnaissant pour ton aide.\nI am interested in swimming.\tJe m'intéresse à la natation.\nI am interested in swimming.\tLa natation m'intéresse.\nI am leaving at ten o'clock.\tJe partirai à dix heures.\nI am looking for a job, sir.\tJe recherche un emploi, Monsieur.\nI am looking for my brother.\tJe cherche mon frère.\nI am looking for my glasses.\tJe cherche mes lunettes.\nI am loved by all my family.\tJe suis aimé de toute ma famille.\nI am not certain about that.\tJe n'en suis pas sûr.\nI am not certain about that.\tJe n'en suis pas certain.\nI am not certain about that.\tJe ne suis pas certain de cela.\nI am not certain about that.\tJe n'en suis pas sûre.\nI am on good terms with him.\tJe suis en bons termes avec lui.\nI am prepared for the worst.\tJe suis prêt pour le pire.\nI am proud to work with you.\tJe suis fier de travailler avec vous.\nI am running short of money.\tJe suis à court d'argent.\nI am very sensitive to heat.\tJe suis très sensible à la chaleur.\nI am working on my new book.\tJe travaille à mon nouveau livre.\nI am yours and you are mine.\tJe suis à toi et tu es à moi.\nI am yours and you are mine.\tJe suis à vous et vous êtes à moi.\nI am yours and you are mine.\tJe suis tien et tu es mien.\nI am yours and you are mine.\tJe suis tienne et tu es mien.\nI am yours and you are mine.\tJe suis tienne et tu es mienne.\nI am yours and you are mine.\tJe suis tien et tu es mienne.\nI am yours and you are mine.\tJe suis vôtre et vous êtes mien.\nI am yours and you are mine.\tJe suis vôtre et vous êtes mienne.\nI am yours and you are mine.\tJe suis vôtre et vous êtes miens.\nI am yours and you are mine.\tJe suis vôtre et vous êtes miennes.\nI apologize for my rudeness.\tJe m'excuse de mon impolitesse.\nI apologize for my rudeness.\tJe m'excuse de ma grossièreté.\nI apologize for what I said.\tJe présente mes excuses pour ce que j'ai dit.\nI appreciate that very much.\tJ'en suis très reconnaissant.\nI appreciate that very much.\tJ'y suis très sensible.\nI appreciate that very much.\tJ'en suis très reconnaissante.\nI appreciate the compliment.\tJ'apprécie le compliment.\nI appreciate the invitation.\tJe suis sensible à l'invitation.\nI appreciate the invitation.\tJe suis reconnaissant pour l'invitation.\nI appreciate the invitation.\tJe suis reconnaissante pour l'invitation.\nI appreciate you being here.\tJe suis sensible à ta présence ici.\nI appreciate you being here.\tJe suis sensible à votre présence ici.\nI appreciate you being here.\tJe te suis reconnaissant d'être là.\nI appreciate you being here.\tJe te suis reconnaissante d'être là.\nI appreciate you being here.\tJe vous suis reconnaissant d'être là.\nI appreciate you being here.\tJe vous suis reconnaissante d'être là.\nI appreciate you calling me.\tJe suis sensible à ton appel.\nI appreciate you calling me.\tJe suis sensible à votre appel.\nI appreciate your restraint.\tJe te suis reconnaissant pour ta retenue.\nI appreciate your restraint.\tJe te suis reconnaissante pour ta retenue.\nI appreciate your restraint.\tJe vous suis reconnaissant pour votre retenue.\nI appreciate your restraint.\tJe vous suis reconnaissante pour votre retenue.\nI appreciate your situation.\tJe prends la mesure de votre situation.\nI appreciate your situation.\tJe prends la mesure de ta situation.\nI appreciate your situation.\tJe me rends compte de ta situation.\nI appreciate your situation.\tJe me rends compte de votre situation.\nI appreciate your vigilance.\tJe vous suis reconnaissant pour votre vigilance.\nI appreciate your vigilance.\tJe vous suis reconnaissante pour votre vigilance.\nI appreciate your vigilance.\tJe te suis reconnaissant pour ta vigilance.\nI appreciate your vigilance.\tJe te suis reconnaissante pour ta vigilance.\nI arrived at school on time.\tJe suis arrivée à l’heure à l’école.\nI arrived at school on time.\tJe suis arrivé à l'école à temps.\nI arrived at school on time.\tJe suis arrivée à l'école à temps.\nI asked Tom if he knew Mary.\tJ'ai demandé à Tom s'il connaissait Mary.\nI asked her for her address.\tJe lui ai demandé son adresse.\nI believe I am in the right.\tJe crois être dans le vrai.\nI believe I am in the right.\tJe crois que j'ai raison.\nI believe in what they said.\tJe crois en ce qu'ils ont dit.\nI believe the answer is yes.\tJe crois que la réponse est oui.\nI believe we've seen enough.\tJe crois que nous en avons vu assez.\nI believe you like your job.\tJe crois que tu aimes ton métier.\nI belong to a swimming club.\tJe fais partie d'un club de natation.\nI belong to the karate club.\tJ'appartiens au club de Karaté.\nI bet it will rain tomorrow.\tJe parie qu'il va pleuvoir demain.\nI bought a pair of scissors.\tJ'ai apporté une paire de ciseaux.\nI bought it for ten dollars.\tJ'ai acheté ça pour 10 dollars.\nI bought the book yesterday.\tJ'ai acheté le livre hier.\nI bought two pairs of pants.\tJ'ai acheté deux pantalons.\nI buy milk almost every day.\tJ'achète du lait presque tous les jours.\nI can only import GIF files.\tJe ne peux importer que des fichiers GIF.\nI can only speak for myself.\tJe peux seulement parler pour moi.\nI can prove that I am right.\tJe peux prouver que j'ai raison.\nI can see right through you.\tJe peux voir clair en vous.\nI can see right through you.\tJe vois ton petit jeu.\nI can see through your lies.\tJe peux voir à travers tes mensonges.\nI can see you're frightened.\tJe peux voir que tu as peur.\nI can see you're frightened.\tJe peux voir que vous avez peur.\nI can show you the pictures.\tJe peux te montrer les images.\nI can show you the pictures.\tJe peux vous montrer les photos.\nI can talk to him for hours.\tJe peux lui parler des heures durant.\nI can talk to him for hours.\tJe peux lui parler durant des heures.\nI can teach you how to cook.\tJe peux t'apprendre à cuisiner.\nI can teach you how to cook.\tJe peux vous apprendre à cuisiner.\nI can teach you how to pray.\tJe peux t'enseigner à prier.\nI can teach you how to sing.\tJe peux t'enseigner comment chanter.\nI can teach you how to swim.\tJe peux t'apprendre à nager.\nI can teach you my language.\tJe peux t'enseigner ma langue.\nI can't afford to buy a car.\tJe n'ai pas les moyens d'acheter une voiture.\nI can't be friends with Tom.\tJe ne peux pas être ami avec Tom.\nI can't be held responsible.\tJe ne peux pas être tenu responsable.\nI can't be killed so easily.\tOn ne me tue pas si facilement.\nI can't be killed so easily.\tOn ne peut me tuer si facilement.\nI can't bear to see her cry.\tJe ne peux supporter de la voir pleurer.\nI can't believe I said that.\tJe n'arrive pas à croire que j'aie dit ça.\nI can't believe Tom is dead.\tJe ne peux pas croire que Tom soit mort.\nI can't believe he did that.\tJe n'arrive pas à croire qu'il ait fait cela.\nI can't believe you're here.\tJe n'arrive pas à croire que tu sois ici.\nI can't believe you're here.\tJe n'arrive pas à croire que vous soyez ici.\nI can't believe you're here.\tJe n'arrive pas à croire que tu sois là.\nI can't believe you're here.\tJe n'arrive pas à croire que vous soyez là.\nI can't collect my thoughts.\tJe ne retrouve pas mes idées.\nI can't continue doing this.\tJe ne peux pas continuer à faire ça.\nI can't describe how I felt.\tJe ne peux décrire ce que je ressentais.\nI can't describe how I felt.\tJe ne parviens pas à décrire ce que je ressentais.\nI can't describe how I felt.\tJe n'arrive pas à décrire ce que je ressentais.\nI can't do anything for Tom.\tJe ne peux rien faire pour Tom.\nI can't drink any more beer.\tJe ne peux boire davantage de bière.\nI can't drink any more beer.\tJe ne peux plus boire de bière.\nI can't even cook an omelet.\tJe ne sais même pas cuisiner une omelette.\nI can't even think about it.\tJe ne peux même pas y penser.\nI can't excuse his laziness.\tJe ne peux pas excuser sa paresse.\nI can't express my feelings.\tJe ne peux exprimer ce que je ressens.\nI can't express my feelings.\tJe ne parviens pas à exprimer ce que je ressens.\nI can't figure out anything.\tJe n'arrive pas à déterminer quoi que ce soit.\nI can't figure out anything.\tJe n'arrive pas à comprendre quoi que ce soit.\nI can't figure out anything.\tJe ne parviens pas à comprendre quoi que ce soit.\nI can't find anybody to ask.\tJe ne trouve personne à qui demander.\nI can't find fault with him.\tJe ne trouve rien à lui reprocher.\nI can't forget his kindness.\tJe ne peux pas oublier sa gentillesse.\nI can't go back without you.\tJe ne peux pas y retourner sans vous.\nI can't go back without you.\tJe ne peux pas y retourner sans toi.\nI can't go with you tonight.\tJe ne peux aller avec toi, ce soir.\nI can't go with you tonight.\tJe ne peux aller avec vous, ce soir.\nI can't imagine such a life.\tJe ne peux imaginer une telle vie.\nI can't imagine that's true.\tJe n'arrive pas à imaginer que ce soit vrai.\nI can't imagine that's true.\tJe ne peux pas imaginer que ce soit vrai.\nI can't just leave you here.\tJe ne peux pas simplement te laisser ici.\nI can't just leave you here.\tJe ne peux pas simplement vous laisser ici.\nI can't let the matter drop.\tJe ne peux pas laisser tomber cette affaire.\nI can't live without my cat.\tJe ne sais pas vivre sans mon chat.\nI can't love anyone but you.\tJe ne peux en aimer d'autre que toi.\nI can't make it any clearer.\tJe ne saurais être plus clair.\nI can't make it any clearer.\tJe ne saurais être plus claire.\nI can't possibly allow that.\tJe ne peux absolument pas le permettre.\nI can't reach the top shelf.\tJe ne peux pas atteindre l'étagère du haut.\nI can't remember doing that.\tJe ne me souviens pas l'avoir fait.\nI can't repair the computer.\tJe ne peux pas réparer l'ordinateur.\nI can't speak French at all.\tJe ne parle pas français du tout.\nI can't stand babies crying.\tJe ne supporte pas les bébés qui pleurent.\nI can't stand his arrogance.\tJe ne peux pas supporter son arrogance.\nI can't stand it any longer.\tJe ne peux pas le supporter plus longtemps.\nI can't stand it any longer.\tJe ne puis le supporter plus longtemps.\nI can't stand it any longer.\tJe n'arrive pas à le supporter plus longtemps.\nI can't stand it any longer.\tJe ne puis le supporter davantage.\nI can't stand it any longer.\tJe ne peux pas davantage le supporter.\nI can't stand it any longer.\tJe n'arrive pas à le supporter davantage.\nI can't take my glasses off.\tJe ne peux pas enlever mes lunettes.\nI can't take my glasses off.\tJe ne peux pas retirer mes lunettes.\nI can't tell you everything.\tJe ne peux pas tout te dire.\nI can't tell you everything.\tJe ne peux pas tout vous dire.\nI can't tell you what to do.\tJe ne sais te dire quoi faire.\nI can't tell you what to do.\tJe ne sais vous dire quoi faire.\nI can't tell you who we are.\tJe ne peux pas vous dire qui nous sommes.\nI can't tell you who we are.\tJe ne peux pas te dire qui nous sommes.\nI can't think of everything.\tJe ne peux pas penser à tout.\nI can't trust what she says.\tJe ne peux pas me fier à ce qu'elle dit.\nI can't wait to be with you.\tJ'ai hâte d'être avec toi.\nI can't wait until tomorrow.\tJe ne peux pas attendre jusqu'à demain.\nI cannot eat anything today.\tJe ne peux rien manger aujourd'hui.\nI cannot thank you too much.\tJe ne saurais vous remercier assez.\nI carelessly dropped a vase.\tJ'ai fait tomber un vase par négligence.\nI collect silver tea spoons.\tJe collectionne les cuillères à café en argent.\nI consider myself fortunate.\tJe me considère chanceux.\nI continue to be optimistic.\tJe reste optimiste.\nI could scarcely believe it.\tJe pouvais à peine le croire.\nI could scarcely believe it.\tJe pourrais à peine le croire.\nI could see nothing but fog.\tJe ne pouvais voir que du brouillard.\nI could sure use that money.\tJe pourrais certainement employer cet argent.\nI couldn't control my anger.\tJe ne pouvais pas contrôler ma colère.\nI couldn't sleep last night.\tJe n'ai pu dormir la nuit dernière.\nI couldn't take that chance.\tJe n'ai pas pu saisir cette chance.\nI crossed the river by boat.\tJe traversai le fleuve en bateau.\nI crossed the river by boat.\tJ'ai traversé le fleuve en bateau.\nI cut myself with a hacksaw.\tJe me suis coupé avec une scie à métaux.\nI cut myself with a hacksaw.\tJe me suis coupée avec une scie à métaux.\nI did everything I could do.\tJ'ai fait tout ce que je pouvais.\nI did my homework yesterday.\tJ'ai fait mes devoirs hier.\nI did the job in three days.\tJ'ai fait le travail en trois jours.\nI didn't ask you to do that.\tJe ne t'ai pas demandé de faire cela.\nI didn't ask you to do that.\tJe ne vous ai pas demandé de faire cela.\nI didn't ask you to do that.\tJe ne t'ai pas demandé de le faire.\nI didn't ask you to do that.\tJe ne vous ai pas demandé de le faire.\nI didn't cancel the meeting.\tJe n'ai pas annulé la réunion.\nI didn't catch what he said.\tJe n'ai pas saisi ce qu'il a dit.\nI didn't catch what he said.\tJe ne saisis pas ce qu'il dit.\nI didn't do anything to Tom.\tJe n'ai rien fait à Tom.\nI didn't do much work today.\tJe n'ai pas beaucoup travaillé, aujourd'hui.\nI didn't even know his name.\tJ'ignorais même son nom.\nI didn't expect that result.\tJe ne m'étais pas attendu à ce résultat.\nI didn't expect you so soon.\tJe ne vous attendais pas si tôt.\nI didn't expect you so soon.\tJe ne t'attendais pas si tôt.\nI didn't give them anything.\tJe ne leur ai rien donné.\nI didn't go out last Sunday.\tJe ne suis pas sorti dimanche dernier.\nI didn't hear what you said.\tJe n'ai pas entendu ce que vous avez dit.\nI didn't know what I'd find.\tJ'ignorais ce que je trouverais.\nI didn't know you had a cat.\tJ'ignorais que tu avais un chat.\nI didn't know you had a cat.\tJ'ignorais que vous aviez un chat.\nI didn't mean to insult you.\tJe ne voulais pas vous insulter.\nI didn't mean to insult you.\tJe ne voulais pas t'insulter.\nI didn't mean to offend Tom.\tCe n'était pas mon intention d'offenser Tom.\nI didn't mean to offend you.\tJe n'avais pas l'intention de vous offenser.\nI didn't mean to offend you.\tJe n'avais pas l'intention de t'offenser.\nI didn't need anyone's help.\tJe n'avais besoin de l'aide de quiconque.\nI didn't need anyone's help.\tJe n'avais pas besoin de l'aide de qui que ce soit.\nI didn't really want to win.\tJe ne voulais pas vraiment gagner.\nI didn't really want to win.\tJe ne voulais pas vraiment l'emporter.\nI didn't run away from home.\tJe ne me suis pas enfui de chez moi.\nI didn't run away from home.\tJe ne me suis pas enfuie de chez moi.\nI didn't say I wasn't going.\tJe n'ai pas dit que je n'y allais pas.\nI didn't say I wasn't going.\tJe n'ai pas dit que je ne m'en allais pas.\nI didn't say I wasn't going.\tJe n'ai pas dit que je ne m'y rendais pas.\nI didn't say you were crazy.\tJe n'ai pas dit que vous étiez fou.\nI didn't say you were crazy.\tJe n'ai pas dit que vous étiez folle.\nI didn't say you were crazy.\tJe n'ai pas dit que vous étiez fous.\nI didn't say you were crazy.\tJe n'ai pas dit que vous étiez folles.\nI didn't say you were crazy.\tJe n'ai pas dit que tu étais folle.\nI didn't say you were crazy.\tJe n'ai pas dit que tu étais fou.\nI didn't think we'd need it.\tJe n'ai pas pensé que nous en aurions besoin.\nI didn't try to kill myself.\tJe n'ai pas tenté de me suicider.\nI disagree with you on this.\tJe ne suis pas d'accord avec toi là-dessus.\nI disagree with you on this.\tJe ne suis pas d'accord avec vous là-dessus.\nI do like the way you think.\tJ'apprécie vraiment votre façon de penser.\nI do not accept your excuse.\tJe n’accepte pas vos excuses.\nI do not feel like doing it.\tJe n'ai pas le cœur à le faire.\nI do not feel like doing it.\tJe ne suis pas d'humeur à le faire.\nI do not have any more time.\tJe n'ai plus de temps.\nI do not know if it is love.\tJ'ignore si c'est de l'amour.\nI do not remember any of it.\tJe ne m'en rappelle rien.\nI do want to be your friend.\tJe veux vraiment être votre ami.\nI do want to be your friend.\tJe veux vraiment être votre amie.\nI do want to be your friend.\tJe veux vraiment être ton ami.\nI do want to be your friend.\tJe veux vraiment être ton amie.\nI don't believe any of this.\tJe n'en crois pas un mot.\nI don't believe any of this.\tJe n'en crois rien.\nI don't believe in religion.\tJe ne crois pas à la religion.\nI don't believe that either.\tJe ne le crois pas non plus.\nI don't believe that's true.\tJe ne crois pas que ce soit vrai.\nI don't believe you anymore.\tJe ne te crois plus.\nI don't believe you anymore.\tJe ne vous crois plus.\nI don't blame them for this.\tJe ne les blâme pas pour ceci.\nI don't blame them for this.\tJe ne leur reproche pas ceci.\nI don't care about politics.\tJe me fiche de la politique.\nI don't care about politics.\tJe n'ai rien à faire de la politique.\nI don't care what you think.\tJe me fiche de ce que vous pensez.\nI don't care what you think.\tJe me fiche de ce que tu penses.\nI don't care what you think.\tJe n'ai cure de ce que vous pensez.\nI don't care what you think.\tPeu m'importe ce que vous pensez.\nI don't care what you think.\tPeu m'importe ce que tu penses.\nI don't care what you think.\tJe n'ai que faire de ce que vous pensez.\nI don't even want you there.\tJe ne veux même pas que tu sois là.\nI don't even want you there.\tJe ne veux même pas que vous soyez là.\nI don't even want you there.\tJe ne veux même pas que tu y sois.\nI don't even want you there.\tJe ne veux même pas que vous y soyez.\nI don't feel like going out.\tJe n'ai pas envie de sortir.\nI don't feel very confident.\tJe ne me sens pas très sûr de moi.\nI don't feel very confident.\tJe ne me sens pas très sûre de moi.\nI don't give second chances.\tJe ne donne pas de secondes chances.\nI don't go to school by bus.\tJe ne me rends pas à l'école en bus.\nI don't go to school by bus.\tJe ne vais pas à l'école en bus.\nI don't have a single enemy.\tJe n'ai pas un seul ennemi.\nI don't have an appointment.\tJe n'ai pas de rendez-vous.\nI don't have any more ideas.\tJe suis à court d'idées.\nI don't have any objections.\tJe n'ai aucune objection.\nI don't have much money now.\tJe n'ai pas beaucoup d'argent maintenant.\nI don't have time right now.\tJe n'ai pas le temps maintenant.\nI don't have time right now.\tJe n'ai pas le temps, là.\nI don't have to talk to you.\tJe n'ai pas à te parler.\nI don't have to talk to you.\tJe n'ai pas à vous parler.\nI don't know either of them.\tJe ne connais aucun des deux.\nI don't know how old Tom is.\tJe ne sais pas quel âge a Tom.\nI don't know how they do it.\tJ'ignore comment ils le font.\nI don't know how they do it.\tJ'ignore comment elles le font.\nI don't know how this works.\tJe ne sais pas comment cela fonctionne.\nI don't know how this works.\tJ'ignore comment ceci fonctionne.\nI don't know how to do that.\tJ'ignore comment le faire.\nI don't know how to do that.\tJ'ignore comment faire ça.\nI don't know how to do that.\tJe ne sais pas comment faire ça.\nI don't know how to do that.\tJe ne sais pas comment le faire.\nI don't know how to do this.\tJ'ignore comment faire ceci.\nI don't know how to do this.\tJe ne sais pas comment faire ceci.\nI don't know how you did it.\tJe ne sais pas comment vous l'avez fait.\nI don't know how you did it.\tJe ne sais pas comment tu l'as fait.\nI don't know if I can do it.\tJe ne sais pas si je peux le faire.\nI don't know if I can do it.\tJ'ignore si je peux le faire.\nI don't know if he knows it.\tJ'ignore s'il le sait.\nI don't know what I owe you.\tJe ne sais pas ce que je vous dois.\nI don't know what I owe you.\tJe ne sais pas ce que je te dois.\nI don't know what I owe you.\tJ'ignore ce que je vous dois.\nI don't know what I owe you.\tJ'ignore ce que je te dois.\nI don't know what I'm doing.\tJe ne sais pas ce que je suis en train de faire.\nI don't know what I'm doing.\tJ'ignore ce que je fais.\nI don't know what to answer.\tJe ne sais pas quoi répondre.\nI don't know what to do now.\tJe ne sais pas quoi faire maintenant.\nI don't know what to do now.\tJe ne sais pas quoi faire, maintenant.\nI don't know what to expect.\tJ'ignore à quoi m'attendre.\nI don't know what'll happen.\tJ'ignore ce qu'il adviendra.\nI don't know where he lives.\tJe ne sais pas où il habite.\nI don't know where he lives.\tJ'ignore où il habite.\nI don't know where he lives.\tJe ne sais pas où il réside.\nI don't know where they are.\tJ'ignore où ils sont.\nI don't know where to begin.\tJe ne sais par où commencer.\nI don't know where to start.\tJe ne sais par où commencer.\nI don't know who's involved.\tJ'ignore qui est impliqué.\nI don't know who's involved.\tJe ne sais pas qui est impliqué.\nI don't know why I did that.\tJe ne sais pas pourquoi j'ai fait cela.\nI don't know why I did that.\tJ'ignore pourquoi j'ai fait cela.\nI don't know why they do it.\tJe ne sais pas pourquoi ils l'ont fait.\nI don't know why they do it.\tJe ne sais pas pourquoi elles l'ont fait.\nI don't know why you did it.\tJ'ignore pourquoi vous l'avez fait.\nI don't know why you did it.\tJ'ignore pourquoi tu l'as fait.\nI don't know, nor do I care.\tJe l'ignore, et je m'en fiche.\nI don't like beer that much.\tJe n'aime pas tant que ça la bière.\nI don't like either of them.\tJe n'aime aucun des deux.\nI don't like either of them.\tJe n'aime aucune des deux.\nI don't like powdered sugar.\tJe n'aime pas le sucre en poudre.\nI don't like that idea much.\tCette idée ne me plait pas trop.\nI don't like the look of it.\tÇa ne me dit rien qui vaille.\nI don't meet too many women.\tJe ne rencontre pas trop de femmes.\nI don't need a car that big.\tJe n'ai pas besoin d'une si voiture grosse.\nI don't need a loan anymore.\tJe n'ai plus besoin d'un prêt.\nI don't need an explanation.\tJe n'ai pas besoin d'explication.\nI don't need anyone anymore.\tJe n'ai plus besoin de personne.\nI don't need to talk to him.\tJe n'ai pas besoin de lui parler.\nI don't need to talk to you.\tJe n'ai pas besoin de vous parler.\nI don't need to talk to you.\tJe n'ai pas besoin de te parler.\nI don't play any instrument.\tJe ne joue d'aucun instrument.\nI don't really want to stop.\tJe ne veux pas vraiment m'arrêter.\nI don't recognize that name.\tJe ne reconnais pas ce nom.\nI don't recognize the sound.\tJe n'en reconnais pas le son.\nI don't remember doing that.\tJe ne me rappelle pas avoir fait ça.\nI don't remember you at all.\tJe ne me rappelle pas du tout de vous.\nI don't remember you at all.\tJe ne me souviens pas du tout de vous.\nI don't see your name on it.\tJe n'y vois pas votre nom.\nI don't see your name on it.\tJe n'y vois pas ton nom.\nI don't share your optimism.\tJe ne partage pas votre optimisme.\nI don't share your optimism.\tJe ne partage pas ton optimisme.\nI don't speak your language.\tJe ne parle pas votre langue.\nI don't take any medication.\tJe ne prends aucun traitement.\nI don't take needless risks.\tJe ne prends pas de risques inutiles.\nI don't talk to him anymore.\tJe ne lui parle plus.\nI don't think I can do that.\tJe ne pense pas que je puisse faire cela.\nI don't think I can do that.\tJe ne pense pas que j'arrive à faire cela.\nI don't think I can do that.\tJe ne pense pas que je parvienne à faire cela.\nI don't think I can do that.\tJe ne pense pas pouvoir faire cela.\nI don't think I can do that.\tJe ne pense pas arriver à faire cela.\nI don't think I can do that.\tJe ne pense pas parvenir à faire cela.\nI don't think I'll go today.\tJe ne pense pas que j'irai aujourd'hui.\nI don't think Tom would lie.\tJe ne pense pas que Tom mentirait.\nI don't think he is sincere.\tJe ne pense pas qu'il soit sincère.\nI don't think it'll be easy.\tJe ne pense pas que ce sera facile.\nI don't think they heard us.\tJe ne pense pas qu'ils nous aient entendus.\nI don't think they heard us.\tJe ne pense pas qu'ils nous aient entendues.\nI don't think they heard us.\tJe ne pense pas qu'ils nous ont entendus.\nI don't think they heard us.\tJe ne pense pas qu'ils nous ont entendues.\nI don't think this is funny.\tJe ne trouve pas cela drôle.\nI don't think this is funny.\tJe ne pense pas que ce soit amusant.\nI don't understand anything.\tJe ne comprends rien.\nI don't want Tom to help me.\tJe ne veux pas que Tom m'aide.\nI don't want Tom to help me.\tJe n'ai pas envie que Tom m'aide.\nI don't want either of them.\tJe ne veux aucun d'eux.\nI don't want to do it again.\tJe ne veux pas le refaire.\nI don't want to get married.\tJe ne veux pas me marrier.\nI don't want to get married.\tJe ne veux pas me marier.\nI don't want to go with you.\tJe ne veux pas aller avec vous.\nI don't want to go with you.\tJe ne veux pas aller avec toi.\nI don't want to hurt anyone.\tJe ne veux faire de mal à personne.\nI don't want to hurt anyone.\tJe ne veux blesser personne.\nI don't want to study today.\tAujourd'hui je n'ai pas envie d'étudier.\nI don't want to talk to you.\tJe ne veux pas te parler.\nI don't want to talk to you.\tJe ne veux pas vous parler.\nI don't want you to do that.\tJe ne veux pas que vous fassiez cela.\nI don't want you to do that.\tJe ne veux pas que tu fasses cela.\nI don't want you to go back.\tJe ne veux pas que vous retourniez.\nI don't want you to go back.\tJe ne veux pas que tu retournes.\nI don't want you to go home.\tJe ne veux pas que vous alliez chez vous.\nI don't want you to go home.\tJe ne veux pas que tu ailles chez toi.\nI don't want your apologies.\tJe ne veux pas de vos excuses.\nI don't want your apologies.\tJe ne veux pas de tes excuses.\nI dream of seeing him there.\tJe rêve de le voir ici.\nI eat meat almost every day.\tJe mange de la viande presque tous les jours.\nI enlisted in the Air Force.\tJe me suis engagé dans l'armée de l'air.\nI exchanged stamps with him.\tJ'ai échangé des timbres avec lui.\nI expect you to work harder.\tJ'attends de toi que tu travailles plus dur.\nI explained the rule to him.\tJe lui ai expliqué les règles.\nI explained the rule to him.\tJe lui expliquai la règle.\nI feel a little responsible.\tJe me sens quelque peu responsable.\nI feel a little responsible.\tJe me sens un peu responsable.\nI feel good after a workout.\tJe me sens bien après la gym.\nI feel good after a workout.\tJe me sens bien après une séance de gym.\nI feel like a million bucks.\tJe pète la forme.\nI feel like going on a trip.\tJ'ai envie de partir en voyage.\nI feel like going out today.\tJ'ai envie de sortir, aujourd'hui.\nI fell asleep while reading.\tJe me suis endormi en lisant.\nI felt bad about what I did.\tJe me suis sentie mal au sujet de ce que j'avais fait.\nI felt bad about what I did.\tJe me suis senti mal au sujet de ce que j'avais fait.\nI felt bad about what I did.\tJe me sentis mal au sujet de ce que j'avais fait.\nI felt exactly the same way.\tJ'ai ressenti exactement la même chose.\nI felt like I was intruding.\tJ'eus le sentiment que je m'immisçais.\nI felt like I was intruding.\tJ'ai eu l'impression que je m'immisçais.\nI felt like I was intruding.\tJ'eus le sentiment que je dérangeais.\nI felt like I was intruding.\tJ'ai eu l'impression que je dérangeais.\nI figured I'd find you here.\tJe me suis imaginé que je vous trouverais ici.\nI figured I'd find you here.\tJe me suis imaginée que je vous trouverais ici.\nI figured I'd find you here.\tJe me suis imaginé que je te trouverais ici.\nI figured I'd find you here.\tJe me suis imaginée que je te trouverais ici.\nI figured I'd find you here.\tJ'ai songé que je te trouverais ici.\nI figured I'd find you here.\tJ'ai songé que je vous trouverais ici.\nI figured I'd find you here.\tJ'ai songé que je te trouverais là.\nI figured I'd find you here.\tJ'ai songé que je vous trouverais là.\nI figured I'd find you here.\tJe me suis imaginée que je te trouverais là.\nI figured I'd find you here.\tJe me suis imaginé que je te trouverais là.\nI figured I'd find you here.\tJe me suis imaginée que je vous trouverais là.\nI figured I'd find you here.\tJe me suis imaginé que je vous trouverais là.\nI figured you wouldn't come.\tJ'imaginais que vous ne viendriez pas.\nI figured you wouldn't come.\tJ'imaginais que tu ne viendrais pas.\nI finished my lunch quickly.\tJ'ai rapidement terminé mon déjeuner.\nI finished reading the book.\tJ'ai fini de lire ce livre.\nI forgot the key to my room.\tJ’ai oublié ma clef de chambre.\nI forgot to lock the drawer.\tJ'ai oublié de fermer le tiroir à clé.\nI forgot you were listening.\tJ'ai oublié que tu étais en train d'écouter.\nI forgot you were listening.\tJ'ai oublié que vous étiez en train d'écouter.\nI found the food too greasy.\tJ'ai trouvé la nourriture trop grasse.\nI found this under your bed.\tJ'ai trouvé ça sous ton lit.\nI found this under your bed.\tJ'ai trouvé ceci sous ton lit.\nI found this under your bed.\tJ'ai trouvé ceci sous votre lit.\nI gave him what money I had.\tJe lui donnai tout l'argent dont je disposais.\nI gave it to the little boy.\tJe l'ai donné à ce petit garçon.\nI gave my father a silk tie.\tJ'ai donné à mon père une cravate en soie.\nI gave way to their demands.\tJe cédai à leurs exigences.\nI get a haircut every month.\tJe me fais couper les cheveux tous les mois.\nI get dizzy when I stand up.\tJe suis pris de vertige lorsque je me lève.\nI get dizzy when I stand up.\tJe suis pris de vertige lorsque je me redresse.\nI get dizzy when I stand up.\tJe suis prise de vertige lorsque je me lève.\nI get dizzy when I stand up.\tJe suis prise de vertige lorsque je me redresse.\nI get hives when I eat eggs.\tJe fais de l'urticaire lorsque je consomme des œufs.\nI get hives when I eat eggs.\tJe fais de l'urticaire lorsque je mange des œufs.\nI go shopping every morning.\tJe vais faire les courses tous les matins.\nI go shopping every morning.\tTous les matins je vais faire des courses.\nI go to church every Sunday.\tJe vais à l'église chaque dimanche.\nI got a shave and a haircut.\tJe me suis fait raser et coiffer.\nI got caught in a rainstorm.\tJ'ai été pris dans une tempête de pluie.\nI got my hair cut yesterday.\tJe me suis fait couper les cheveux hier.\nI got the pears for nothing.\tJ'ai eu les poires gratis.\nI got this bicycle for free.\tJ'ai eu ce vélo pour rien.\nI got up earlier than usual.\tJe me suis levé plus tôt que d'habitude.\nI got up early this morning.\tJe me suis levé tôt ce matin.\nI got your letter yesterday.\tJ'ai reçu ta lettre hier.\nI grew these carrots myself.\tJ'ai fait moi-même pousser ces carottes.\nI grew these carrots myself.\tJ'ai moi-même fait pousser ces carottes.\nI guess I just don't get it.\tJe suppose que je n'y comprends rien.\nI guess I'd better be going.\tJe suppose que je ferais mieux d'y aller.\nI guess I'd better be going.\tJe suppose que je ferais mieux de m'en aller.\nI guess I'd better be going.\tJe suppose que je ferais mieux de me mettre en route.\nI guess that's good for you.\tJe suppose que c'est bon pour toi.\nI guess that's good for you.\tJe suppose que c'est bon pour vous.\nI guess that's the solution.\tJe suppose que c'est la solution.\nI guess we should leave now.\tJe crois que nous devrions partir à présent.\nI had a good opinion of her.\tJ'avais une bonne opinion d'elle.\nI had a good time yesterday.\tJe me suis bien amusé hier.\nI had a phone call from him.\tJ'ai eu un appel téléphonique de sa part.\nI had a problem with my car.\tJ'ai eu un problème avec ma voiture.\nI had a terrible experience.\tJ'ai traversé une épreuve terrible.\nI had a toothache yesterday.\tHier j'avais mal aux dents.\nI had an amazing experience.\tJ'ai fait une expérience incroyable.\nI had an amazing experience.\tIl m'est arrivé quelque chose d'incroyable.\nI had intended to go abroad.\tJ'eus l'intention de me rendre à l'étranger.\nI had intended to go abroad.\tJ'avais eu l'intention de me rendre à l'étranger.\nI had my thumbnail torn off.\tMon ongle de pouce s'est cassé.\nI had never seen him before.\tJe ne l'avais jamais vu auparavant.\nI had no choice but to come.\tJe n'avais d'autre choix que de venir.\nI had no choice but to stay.\tJe n'avais d'autre choix que de rester.\nI had no idea you'd be here.\tJe n'avais pas idée que vous seriez ici.\nI had no idea you'd be here.\tJe n'avais pas idée que tu serais ici.\nI had no idea you'd be here.\tJe n'avais pas idée que vous vous trouveriez ici.\nI had no idea you'd be here.\tJe n'avais pas idée que tu te trouverais ici.\nI had no right to interfere.\tJe n'avais aucun droit d'interférer.\nI had nothing to do with it.\tJe n'avais rien à y faire.\nI had nothing to do with it.\tJe n'avais rien à y voir.\nI had things to think about.\tJ'ai eu des choses à penser.\nI had to call off the party.\tJ'ai dû annuler la fête.\nI had to call off the party.\tJ'ai dû remettre la fête.\nI had to get away from here.\tIl m'a fallu sortir d'ici.\nI had to get away from here.\tIl m'a fallu m'extirper d'ici.\nI had to get away from here.\tJ'ai dû sortir d'ici.\nI had to get away from here.\tJ'ai dû m'extirper d'ici.\nI had to get away from here.\tJ'ai dû me tailler d'ici.\nI had to get away from here.\tIl m'a fallu me tailler d'ici.\nI had to go there yesterday.\tJ'ai dû y aller hier.\nI had to go to the hospital.\tJ'ai dû aller à l'hôpital.\nI hadn't thought about that.\tJe n'y avais pas pensé.\nI hadn't thought about that.\tJe n'y avais pas songé.\nI hardly ever go to museums.\tJe ne vais quasiment jamais dans des musées.\nI hate fluorescent lighting.\tJ'ai horreur de l'éclairage fluorescent.\nI hate seeing you like this.\tJe déteste te voir ainsi.\nI hate seeing you like this.\tJe déteste vous voir ainsi.\nI hate to see you like this.\tJe déteste te voir ainsi.\nI hate to see you like this.\tJe déteste vous voir ainsi.\nI have 1,500 head of cattle.\tJ'ai quinze-cents têtes de bétail.\nI have a bad headache today.\tJ'ai un terrible mal de tête aujourd'hui.\nI have a ringing in my ears.\tMon oreille bourdonne.\nI have a slight fever today.\tJ'ai un peu de fièvre aujourd'hui.\nI have a terrible toothache.\tJ'ai un mal de dents atroce.\nI have already done my work.\tJ'ai déjà effectué mon travail.\nI have an important meeting.\tJ'ai une réunion importante.\nI have an important meeting.\tJ'ai une importante réunion.\nI have been honest with him.\tJ'ai été honnête avec lui.\nI have been looking for you.\tJe t'ai cherché.\nI have been looking for you.\tJe vous cherchais.\nI have been to London twice.\tJ'ai été à Londres deux fois.\nI have been to the barber's.\tJ'ai été chez le barbier.\nI have completely recovered.\tJe me suis complètement rétabli.\nI have completely recovered.\tJe me suis complètement rétablie.\nI have difficulty breathing.\tC'est difficile de respirer.\nI have fewer books than you.\tJ'ai moins de livres que toi.\nI have fewer books than you.\tJ'ai moins de livres que vous.\nI have fewer books than you.\tJe détiens moins de livres que toi.\nI have fewer books than you.\tJe détiens moins de livres que vous.\nI have fulfilled my promise.\tJ'ai tenu parole.\nI have lost face completely.\tJ'ai complètement perdu la face.\nI have lots of things to do.\tJ'ai beaucoup de choses à faire.\nI have never been to Europe.\tJe n'ai jamais été en Europe.\nI have never read that book.\tJe n'ai jamais lu ce livre.\nI have no funds in the bank.\tJe n'ai pas de fonds à la banque.\nI have no further questions.\tJe n'ai pas d'autres questions.\nI have no further questions.\tJe n'ai plus de questions.\nI have no home to return to.\tJe n'ai guère de maison à laquelle retourner.\nI have no home to return to.\tJe n'ai pas de maison à laquelle rentrer.\nI have no idea how it works.\tJe n'ai aucune idée de comment ça fonctionne.\nI have no idea how it works.\tJe n'ai aucune idée de comment ça marche.\nI have no idea where we are.\tJe n'ai aucune idée d'où nous sommes.\nI have no idea where we are.\tJe n'ai aucune idée d'où nous nous trouvons.\nI have no idea why it is so.\tJe n'ai aucune idée pourquoi il en est ainsi.\nI have no idea why it is so.\tJe n'ai aucune idée de pourquoi il en est ainsi.\nI have no idea why it is so.\tJe n'ai aucune idée pourquoi c'est ainsi.\nI have no idea why it is so.\tJe n'ai aucune idée de pourquoi c'est ainsi.\nI have no objection to that.\tJe n'y vois pas d'objection.\nI have no problem with this.\tJe n'ai pas de problème avec ça.\nI have nothing better to do.\tJe n'ai rien de mieux à faire.\nI have nothing else to wear.\tJe n'ai rien d'autre à mettre.\nI have nothing left to lose.\tJe n'ai rien d'autre à perdre.\nI have read the book before.\tJ'ai déjà lu ce livre avant.\nI have read the book before.\tJ'ai lu le livre auparavant.\nI have read the book before.\tJ'ai lu ce livre auparavant.\nI have seen the film before.\tJ'ai déjà vu le film auparavant.\nI have several silver coins.\tJe possède plusieurs pièces d'argent.\nI have something to ask Tom.\tJ'ai quelque chose à demander à Tom.\nI have three tickets for it.\tJ'ai trois places.\nI have to admit I'm curious.\tJe dois admettre que je suis curieux.\nI have to admit I'm curious.\tJe dois admettre que je suis curieuse.\nI have to answer his letter.\tJe dois répondre à sa lettre.\nI have to borrow some money.\tIl faut que j'emprunte de l'argent.\nI have to borrow some money.\tIl me faut emprunter de l'argent.\nI have to borrow some money.\tJe dois emprunter de l'argent.\nI have to decide what to do.\tIl faut que je décide quoi faire.\nI have to talk to you alone.\tJe dois vous parler seul à seul.\nI have to talk to you alone.\tJe dois vous parler seule à seul.\nI have to talk to you alone.\tJe dois vous parler seule à seule.\nI have to talk to you alone.\tJe dois vous parler seul à seule.\nI have to talk to you alone.\tJe dois vous parler seul à seuls.\nI have to talk to you alone.\tJe dois vous parler seul à seules.\nI have to talk to you alone.\tJe dois vous parler seule à seuls.\nI have to talk to you alone.\tJe dois vous parler seule à seules.\nI have to talk to you alone.\tJe dois te parler seule à seul.\nI have to talk to you alone.\tJe dois te parler seule à seule.\nI have to talk to you alone.\tJe dois te parler seul à seul.\nI have to talk to you alone.\tJe dois te parler seul à seule.\nI have to talk to you alone.\tJe dois te parler en tête à tête.\nI have to talk to you alone.\tJe dois vous parler en tête à tête.\nI haven't done this in ages.\tJe n'ai pas fait ça depuis des lustres.\nI haven't finished my lunch.\tJe n'ai pas fini mon déjeuner.\nI haven't seen her for ages.\tJe ne l'ai pas vue depuis une éternité.\nI haven't seen you for ages.\tÇa fait un bail...\nI haven't seen you for ages.\tJe ne t'ai pas vu depuis une éternité.\nI haven't seen you for ages.\tJe ne t'ai pas vu depuis des lustres.\nI haven't seen you in weeks.\tJe ne t'ai pas vu depuis des semaines.\nI haven't seen you in weeks.\tJe ne vous ai pas vue depuis des semaines.\nI haven't seen you in weeks.\tJe ne t'ai pas vue depuis des semaines.\nI haven't seen you in weeks.\tJe ne vous ai pas vues depuis des semaines.\nI haven't seen you in weeks.\tJe ne vous ai pas vu depuis des semaines.\nI haven't seen you in weeks.\tJe ne vous ai pas vus depuis des semaines.\nI haven't talked to Tom yet.\tJe n'ai pas encore parlé avec Tom.\nI haven't the foggiest idea.\tJe n'en ai pas la moindre idée.\nI haven't told Tom anything.\tJe n'ai rien dit à Tom.\nI heard a knock at the door.\tJ'ai entendu frapper à la porte.\nI heard about your problems.\tJ'ai entendu parler de vos problèmes.\nI heard about your problems.\tJ'ai entendu parler de tes problèmes.\nI heard everything you said.\tJ'ai entendu tout ce que vous avez dit.\nI heard everything you said.\tJ'ai entendu tout ce que tu as dit.\nI heard from him last month.\tJ'ai entendu parler de lui le mois dernier.\nI heard the front door slam.\tJ'ai entendu la porte d'entrée claquer.\nI heard the leaves rustling.\tJ'entendis bruire les feuilles.\nI heard you switched majors.\tOn m'a dit que tu avais changé de spécialité.\nI heard you switched majors.\tJ'ai entendu dire que vous aviez changé de spécialisation.\nI held my breath and waited.\tJe retins ma respiration et attendis.\nI helped Tom do some chores.\tJ'ai aidé Tom à faire quelques corvées.\nI helped him carry his desk.\tJe l'ai aidé à porter le bureau.\nI hid it under the mattress.\tJe l'ai caché sous le matelas.\nI hid it under the mattress.\tJe l'ai cachée sous le matelas.\nI hope I'm not interrupting.\tJ'espère que je ne vous interromps pas.\nI hope everything went well.\tJ'espère que tout s'est bien passé.\nI hope everything went well.\tJ'espère que tout s'est bien déroulé.\nI hope everything works out.\tJ'espère juste que tout se passera bien.\nI hope it wasn't too boring.\tJ'espère que ce n'était pas trop ennuyeux.\nI hope that he will help me.\tJ'espère qu'il m'aidera.\nI hope that he will succeed.\tJ'espère qu'il va réussir.\nI hope you enjoyed the show.\tJ'espère que vous avez pris plaisir au spectacle.\nI hope you enjoyed the show.\tJ'espère que tu as pris plaisir au spectacle.\nI hope you have a good time!\tJ'espère que vous passez du bon temps !\nI hope you have a good time!\tJ'espère que tu passes du bon temps !\nI hope you have a good trip.\tBon voyage !\nI hope you have a good trip.\tJe vous souhaite un bon voyage.\nI hope you have a good trip.\tJe te souhaite un bon voyage.\nI hope you'll get well soon.\tJ'espère que vous irez bien bientôt.\nI intended to start at once.\tJ'avais l'intention de partir sur-le-champ.\nI invited them to the party.\tJe les ai invités à la fête.\nI invited them to the party.\tJe les ai invitées à la fête.\nI just couldn't help myself.\tJe n'ai simplement pas pu m'en empêcher.\nI just don't fit in anymore.\tJe ne m'intègre simplement plus.\nI just don't fit in anymore.\tJe ne conviens simplement plus.\nI just don't understand you.\tJe ne vous comprends tout simplement pas.\nI just don't understand you.\tJe ne vous comprends pas, un point c'est tout.\nI just don't understand you.\tJe ne te comprends tout simplement pas.\nI just don't understand you.\tJe ne te comprends pas, un point c'est tout.\nI just have a few questions.\tJe n'ai que quelques questions.\nI just have to do something.\tIl me faut simplement faire quelque chose.\nI just have to do something.\tIl me faut faire quelque chose, un point c'est tout.\nI just haven't had a chance.\tJe n'en ai simplement pas eu l'occasion.\nI just keep finding excuses.\tJe ne fais que trouver des excuses.\nI just keep finding excuses.\tQuant à moi, je ne fais que trouver des excuses.\nI just keep finding excuses.\tC'est moi qui ne fais que trouver des excuses.\nI just love beautiful women.\tJ'adore tout simplement les belles femmes.\nI just love beautiful women.\tJ'adore les belles femmes, un point c'est tout.\nI just received your letter.\tJe viens de recevoir ta lettre.\nI just received your letter.\tJe viens de recevoir votre lettre.\nI just want this to be over.\tJe veux juste que ça s'arrête.\nI just want to be different.\tJe veux simplement être différent.\nI just want to be different.\tJe veux simplement être différente.\nI just want to go to heaven.\tJe veux simplement aller au paradis.\nI just want to go to school.\tJe veux juste aller à l'école.\nI just want to talk to them.\tJe veux simplement leur parler.\nI just want you to be happy.\tJe veux juste que tu sois heureux.\nI just want you to be happy.\tJe veux juste que vous soyez heureux.\nI just want you to be happy.\tJe veux simplement que tu sois heureuse.\nI just want you to be happy.\tJe veux simplement que vous soyez heureuse.\nI just want you to be happy.\tJe veux simplement que vous soyez heureuses.\nI just wanted clarification.\tJe voulais simplement une clarification.\nI just wanted to be popular.\tJ'essayais juste de plaire.\nI just wanted to go jogging.\tJe voulais juste aller courir.\nI just wanted to play poker.\tJe voulais juste jouer au poker.\nI just wanted to say thanks.\tJe voulais juste vous dire merci.\nI just wanted to say thanks.\tJe voulais juste te dire merci.\nI knew Tom would forgive me.\tJe savais que Tom me pardonnerait.\nI knew you could do it, Tom.\tJe savais que vous pouviez le faire, Tom.\nI knew you'd mess things up.\tJe savais que vous sèmeriez la pagaille.\nI knew you'd mess things up.\tJe savais que tu gâcherais les choses.\nI know I probably won't win.\tJe sais que je ne gagnerai probablement pas.\nI know Tom doesn't love you.\tJe sais que Tom ne t'aime pas.\nI know Tom was disappointed.\tJe sais que Tom était déçu.\nI know exactly how you feel.\tJe sais exactement ce que tu ressens.\nI know exactly how you feel.\tJe sais exactement ce que vous ressentez.\nI know how busy you've been.\tJe sais combien vous avez été occupé.\nI know how busy you've been.\tJe sais combien vous avez été occupée.\nI know how busy you've been.\tJe sais combien vous avez été occupées.\nI know how busy you've been.\tJe sais combien vous avez été occupés.\nI know how busy you've been.\tJe sais combien tu as été occupée.\nI know how busy you've been.\tJe sais combien tu as été occupé.\nI know something's going on.\tJe sais que quelque chose se passe.\nI know something's going on.\tJe sais que quelque chose se produit.\nI know we're a little early.\tJe sais que nous sommes un peu en avance.\nI know we're a little early.\tJe sais que nous sommes un petit peu en avance.\nI know what can happen here.\tJe sais ce qu'il peut se passer ici.\nI know what happened to Tom.\tJe sais ce qu'il est arrivé à Tom.\nI know what may happen here.\tJe sais ce qu'il pourrait se passer ici.\nI know what you're thinking.\tJe sais ce que tu penses.\nI know what you're thinking.\tJe sais ce que vous pensez.\nI know where the blame goes.\tJe sais à qui en revient la faute.\nI know where we can get one.\tJe sais où nous pouvons nous en procurer un.\nI know where we can get one.\tJe sais où nous pouvons nous en procurer une.\nI know you recently retired.\tJe sais que tu es parti en retraite il y a peu.\nI know you recently retired.\tJe sais que tu es partie en retraite il y a peu.\nI know you recently retired.\tJe sais que vous êtes parti en retraite il y a peu.\nI know you recently retired.\tJe sais que vous êtes partie en retraite il y a peu.\nI know you think I'm stupid.\tJe sais que tu penses que je suis stupide.\nI know you want to help him.\tJe sais que tu veux l'aider.\nI know you want to help him.\tJe sais que vous voulez l'aider.\nI know you're angry with me.\tJe sais que tu m'en veux.\nI know you're not like that.\tJe sais que vous n'êtes pas comme ça.\nI know you're not like that.\tJe sais que tu n'es pas comme ça.\nI learned a valuable lesson.\tJ'ai pris une précieuse leçon.\nI learned a valuable lesson.\tJe pris une précieuse leçon.\nI left my keys on the table.\tJ'ai laissé mes clés sur la table.\nI like hanging out with you.\tJ'aime être en ta compagnie.\nI like hanging out with you.\tJ'aime être en votre compagnie.\nI like hanging out with you.\tJ'aime être avec vous.\nI like her sister very much.\tJ'aime beaucoup sa sœur.\nI like it when it's snowing.\tJ'aime qu'il neige.\nI like rice more than bread.\tJ'aime le riz davantage que le pain.\nI like the music of Austria.\tJ'aime la musique autrichienne.\nI like the way you treat me.\tJ'aime la façon dont tu me traites.\nI like the way you treat me.\tJ'aime la façon dont vous me traitez.\nI like things done properly.\tJ'aime que les choses soient faites correctement.\nI like this one even better.\tJ'aime celui-ci encore davantage.\nI like this one even better.\tJ'aime celle-ci encore davantage.\nI like to fish in the river.\tJ'aime pêcher dans la rivière.\nI like to make people happy.\tJ'aime rendre les gens heureux.\nI live in a two story house.\tJe vis dans un duplex.\nI live pretty close to here.\tJe vis assez près d'ici.\nI look after my grandfather.\tJe prends soin de mon grand-père.\nI lost my way in the forest.\tJ'ai perdu mon chemin dans la forêt.\nI lost my way in the forest.\tJe me suis perdu dans la forêt.\nI lost my way in the forest.\tJe me suis perdue dans la forêt.\nI love everything about Tom.\tJ'aime tout de Tom.\nI love everything about Tom.\tJ'aime tout chez Tom.\nI love hanging out with you.\tJ'adore être en ta compagnie.\nI love hanging out with you.\tJ'adore être en votre compagnie.\nI love hanging out with you.\tJ'adore être avec toi.\nI love hanging out with you.\tJ'adore être avec vous.\nI love her and she loves me.\tJe l'aime et elle m'aime.\nI love it when that happens.\tJ'adore que ça se produise.\nI love it when that happens.\tJ'adore que ça arrive.\nI love shopping for clothes.\tJ'adore acheter des vêtements.\nI love sitting on the beach.\tJ'adore être assis sur la plage.\nI love sitting on the beach.\tJ'adore être assise sur la plage.\nI made that dress by myself.\tJ'ai fait cette robe moi-même.\nI made these clothes myself.\tJ'ai fabriqué ce vêtement moi-même.\nI make you nervous, don't I?\tJe vous rends nerveux, n'est-ce pas ?\nI make you nervous, don't I?\tJe vous rends nerveuse, n'est-ce pas ?\nI make you nervous, don't I?\tJe vous rends nerveuses, n'est-ce pas ?\nI make you nervous, don't I?\tJe te rends nerveux, n'est-ce pas ?\nI make you nervous, don't I?\tJe te rends nerveuse, n'est-ce pas ?\nI met an old friend of mine.\tJ'ai rencontré un de mes vieux copains.\nI met the president himself.\tJ'ai rencontré le président lui-même.\nI met the principal himself.\tJ'ai rencontré le directeur en personne.\nI met your father yesterday.\tJ'ai rencontré ton père hier.\nI must help her at any cost.\tJe dois l'aider à tout prix.\nI must leave early tomorrow.\tJe dois partir tôt demain.\nI must make up for the loss.\tIl faut que je compense cette perte.\nI must organize my thoughts.\tJ'ai besoin de mettre de l'ordre dans mes idées.\nI must speak with you alone.\tIl me faut vous parler seul.\nI must speak with you alone.\tJe dois vous parler seul.\nI need somebody I can trust.\tJ'ai besoin de quelqu'un à qui je puisse me fier.\nI need to borrow some money.\tIl faut que j'emprunte de l'argent.\nI need to handle this alone.\tIl me faut gérer ça par moi-même.\nI need to jump start my car.\tIl faut que je démarre ma voiture avec les câbles.\nI need to keep my eyes open.\tIl faut que je garde les yeux ouverts.\nI need to keep my eyes open.\tJe dois garder les yeux ouverts.\nI need to renew my passport.\tJ'ai besoin de renouveler mon passeport.\nI need to search for my pen.\tJe dois rechercher mon stylo.\nI need you to do me a favor.\tJ'ai besoin que tu me rendes un service.\nI need you to do me a favor.\tJ'ai besoin que vous me rendiez un service.\nI never drink tea with milk.\tJe ne bois jamais de thé au lait.\nI never get sick of dancing.\tJe ne me lasse jamais de danser.\nI never knew his first name.\tJe n'ai jamais su son prénom.\nI never made such a promise.\tJe n'ai jamais fait une telle promesse.\nI never said you were lying.\tJe n'ai jamais dit que tu mentais.\nI never said you were lying.\tJe n'ai jamais dit que vous mentiez.\nI never should've come here.\tJamais je n’aurais dû venir ici.\nI never talked to him again.\tJe ne lui ai jamais reparlé.\nI never want to get married.\tJamais je ne veux me marier.\nI never wanted this, either.\tJe n'ai jamais voulu ceci non plus.\nI noticed her hands shaking.\tJ'ai remarqué que ses mains tremblaient.\nI often have the same dream.\tJe fais souvent le même rêve.\nI only ask out of curiosity.\tJe demande juste par curiosité.\nI only did the bare minimum.\tJe n'ai fait que le strict minimum.\nI only drink to be sociable.\tJe ne bois que par sociabilité.\nI only study in the library.\tJ'étudie seulement à la bibliothèque.\nI only took a bite of bread.\tJe n'ai mangé qu'un morceau de pain.\nI only wanted to be helpful.\tJe voulais juste être utile.\nI only wanted to be helpful.\tJe voulais juste me rendre utile.\nI opened a checking account.\tJ'ai ouvert un compte-chèques.\nI owe you a sincere apology.\tJe vous dois de sincères excuses.\nI owe you a sincere apology.\tJe te dois de sincères excuses.\nI painted a picture for you.\tJ'ai peint un tableau pour vous.\nI plan to never get married.\tJe prévois de ne jamais me marier.\nI plan to stay there a week.\tJ'ai l'intention de rester ici une semaine.\nI prefer reading to writing.\tJe préfère la lecture à l'écriture.\nI prefer soccer to baseball.\tJe préfère le football au baseball.\nI prefer to do it on my own.\tJe préfère le faire seul.\nI prefer walking to cycling.\tJe préfère la marche à la bicyclette.\nI promise I'll pay you back.\tJe te promets que je te rembourserai.\nI promise I'll pay you back.\tJe vous promets que je vous rembourserai.\nI promise you I'll help you.\tJe te promets de t'aider.\nI promise you I'll help you.\tJe vous promets de vous aider.\nI promise you I'll help you.\tJe promets que je vous aiderai.\nI promise you I'll help you.\tJe promets que je t'aiderai.\nI put on some clean clothes.\tJe mets des vêtements propres.\nI put on some clean clothes.\tJe mis des vêtements propres.\nI quit smoking and drinking.\tJ'ai arrêté de fumer et de boire.\nI quit smoking and drinking.\tJ'arrêtai de fumer et de boire.\nI ran as quickly as I could.\tJ'ai couru le plus vite que j'ai pu.\nI ran into a little trouble.\tJe me suis heurté à quelques ennuis.\nI ran so I would be on time.\tJ'ai couru pour être à l'heure.\nI ran so I would be on time.\tJe courus, afin d'être à l'heure.\nI ran so I would be on time.\tAfin d'être à l'heure, je courus.\nI read the report you wrote.\tJ'ai lu le rapport que vous avez écrit.\nI read the report you wrote.\tJ'ai lu le rapport que tu as écrit.\nI really do just want to go.\tJe ne veux vraiment qu'y aller.\nI really do just want to go.\tY aller est précisément ce que je veux vraiment.\nI really don't want to play.\tJe ne veux vraiment pas jouer.\nI really enjoyed last night.\tJe me suis vraiment bien amusé, hier soir.\nI really enjoyed last night.\tJe me suis vraiment bien amusée, hier soir.\nI really enjoyed last night.\tJe me suis vraiment bien amusé, hier au soir.\nI really enjoyed last night.\tJe me suis vraiment bien amusée, hier au soir.\nI really like these stories.\tJ'aime beaucoup ces histoires.\nI really loved working here.\tJ'ai vraiment adoré travailler ici.\nI really miss my girlfriend.\tMa nana me manque vraiment.\nI really miss my girlfriend.\tMa copine me manque vraiment.\nI really miss my girlfriend.\tMa petite copine me manque vraiment.\nI really miss my girlfriend.\tMa petite amie me manque vraiment.\nI really owe you an apology.\tJe vous dois vraiment des excuses.\nI really owe you an apology.\tJe te dois vraiment des excuses.\nI really should have called.\tJ'aurais vraiment dû appeler.\nI really want to understand.\tJe veux vraiment comprendre.\nI really want you to hug me.\tJe veux vraiment que vous me serriez dans vos bras.\nI really want you to hug me.\tJe veux vraiment que tu me serres dans tes bras.\nI received a good job offer.\tJ'ai reçu une bonne offre d'emploi.\nI reckon that's a good idea.\tIl m'est d'avis que c'est une bonne idée.\nI recorded our conversation.\tJ'ai enregistré notre conversation.\nI recovered from my illness.\tJe me suis remis de ma maladie.\nI refuse to give up on this.\tJe refuse de laisser tomber ça.\nI refuse to give up on this.\tJe refuse de céder là-dessus.\nI regret becoming a teacher.\tJe regrette d'être devenu professeur.\nI remember locking the door.\tJe me souviens d'avoir fermé la porte à clef.\nI remember reading about it.\tJe me souviens avoir lu à ce propos.\nI remember reading about it.\tJe me souviens avoir lu à ce sujet.\nI remember reading about it.\tJe me rappelle avoir lu à ce propos.\nI remember reading about it.\tJe me rappelle avoir lu à ce sujet.\nI remember when it happened.\tJe me rappelle quand c'est arrivé.\nI remember when it happened.\tJe me rappelle quand ça s'est passé.\nI remember when it happened.\tJe me rappelle quand ça a eu lieu.\nI remember when it happened.\tJe me rappelle quand c'est survenu.\nI rent a car from my friend.\tJ'ai emprunté une voiture à un ami.\nI rented a boat by the hour.\tJ'ai loué un bateau à l'heure.\nI saw a girl with long hair.\tJ'ai vu une fille avec de longs cheveux.\nI saw a strange woman there.\tJe vis là une femme étrange.\nI saw him crossing the road.\tJe l'ai vu traverser la route.\nI saw him crossing the road.\tJe l'ai vu traverser la rue.\nI saw him crossing the road.\tJe le vis traverser la route.\nI saw something interesting.\tJ'ai vu quelque chose d'intéressant.\nI see her sweeping the room.\tJe vois qu'elle est en train de nettoyer la chambre.\nI see nothing wrong with it.\tJe ne vois là rien de mal.\nI seldom eat dairy products.\tJe mange rarement de produits laitiers.\nI shook my head and said no.\tJe secouai la tête et dis non.\nI should not have said that.\tJe n'aurais pas dû dire cela.\nI should tell you something.\tJe devrais te dire quelque chose.\nI should tell you something.\tJe devrais vous dire quelque chose.\nI should've added more salt.\tJ'aurai dû ajouter plus de sel.\nI should've called a doctor.\tJ'aurais dû appeler un médecin.\nI should've changed the oil.\tJ'aurais dû changer l'huile.\nI should've gotten a ticket.\tJ'aurais dû me procurer un billet.\nI should've listened to you.\tJ'aurais dû t'écouter.\nI should've listened to you.\tJ'aurais dû vous écouter.\nI should've never come here.\tJe n'aurais jamais dû venir ici.\nI should've said I was busy.\tJ'aurais dû dire que j'étais occupé.\nI shouldn't have gone there.\tJe n'aurais pas dû aller là-bas.\nI shouldn't have gone there.\tJe n'aurais pas dû y aller.\nI shouldn't have gone there.\tJe n'aurais pas dû m'y rendre.\nI shouldn't have interfered.\tJe n'aurais pas dû interférer.\nI shouldn't have logged off.\tJe n'aurais pas dû me déconnecter.\nI showered before breakfast.\tJe me suis douché avant le petit déjeuner.\nI slept the rest of the day.\tJ'ai dormi le reste de la journée.\nI slept the rest of the day.\tJe dormis le reste de la journée.\nI sometimes dream about Tom.\tJe rêve parfois de Tom.\nI spent hours reading books.\tJe passais des heures à lire des livres.\nI started a fire right away.\tJ'ai tout de suite démarré un feu.\nI stayed in bed all morning.\tJe suis resté au lit toute la matinée.\nI stayed in bed all morning.\tJe suis restée au lit toute la matinée.\nI stayed up late last night.\tJe suis resté debout jusqu'à tard hier soir.\nI still couldn't believe it.\tJe n'arrivais toujours pas à y croire.\nI still haven't decided yet.\tJe n'ai toujours pas décidé.\nI still need some help here.\tJ'ai encore besoin d'aide ici.\nI still need to talk to Tom.\tJ'ai encore besoin de parler à Tom.\nI still need to talk to you.\tIl me faut encore te parler.\nI still need to talk to you.\tJ'ai encore besoin de te parler.\nI still need to talk to you.\tJ'ai encore besoin de vous parler.\nI still need to talk to you.\tIl me faut encore vous parler.\nI stopped and gazed at them.\tJe me suis arrêté et les ai fixés du regard.\nI suggest we don't even try.\tJe suggère que nous n'essayions même pas.\nI suggest you get some rest.\tJe suggère que vous preniez du repos.\nI suggest you get some rest.\tJe suggère que tu prennes du repos.\nI suppose that's impossible.\tJe suppose que c'est impossible.\nI suppose we have no choice.\tJe suppose que nous n'avons pas le choix.\nI sure wish you would leave.\tJ'espère certainement que vous partiez.\nI sure wish you would leave.\tJ'espère certainement que tu partes.\nI swear I won't tell anyone.\tJe jure que je ne le dirai à personne.\nI swim in the sea every day.\tJe nage à la mer tous les jours.\nI take a walk every morning.\tJe fais une promenade tous les matins.\nI take that as a compliment.\tJe prends cela comme un compliment.\nI talked to her for an hour.\tJe lui ai parlé une heure durant.\nI thanked Mary for her help.\tJ'ai remercié Marie pour son aide.\nI think I hurt his feelings.\tJe pense l'avoir blessé.\nI think I know where Tom is.\tJe crois savoir où se trouve Tom.\nI think I'd better call Tom.\tJe pense que je ferais mieux d'appeler Tom.\nI think I'd rather not know.\tJe pense avoir préféré ne rien savoir.\nI think I'll come back soon.\tJe pense que je serai bientôt de retour.\nI think I'm falling in love.\tJe pense que je suis en train de tomber amoureux.\nI think I'm falling in love.\tJe pense que je suis en train de tomber amoureuse.\nI think Tom could do better.\tJe pense que Tom pourrait faire mieux.\nI think Tom injured himself.\tJe pense que Tom s'est blessé.\nI think Tom is following me.\tJe pense que Tom me suit.\nI think Tom is going to die.\tJe pense que Tom va mourir.\nI think Tom is here already.\tJe pense que Tom est déjà là.\nI think Tom looks like John.\tJe pense que Tom ressemble à John.\nI think Tom needs something.\tJe pense que Tom a besoin de quelque chose.\nI think Tom needs your help.\tJe pense que Tom a besoin de ton aide.\nI think Tom needs your help.\tJe pense que Tom a besoin de votre aide.\nI think Tom would like that.\tJe pense que Tom aimerait ça.\nI think Tom's leg is broken.\tJe pense que la jambe de Tom est cassée.\nI think everything is ready.\tJe pense que tout est prêt.\nI think he's a great writer.\tJe pense que c'est un grand écrivain.\nI think it's very dangerous.\tJe pense que c'est très dangereux.\nI think it's very deceptive.\tJe pense que c'est très trompeur.\nI think it's worth the risk.\tJe pense que ça vaut le risque.\nI think it's worth the risk.\tJe pense que le jeu en vaut la chandelle.\nI think many people do that.\tJe pense que beaucoup de personnes font ça.\nI think maybe Tom was right.\tJe pense que Tom avait peut-être raison.\nI think my job is pointless.\tJe pense que mon emploi est dénué de sens.\nI think of you all the time.\tJe pense à vous tout le temps.\nI think that I should leave.\tJe pense que je devrais m'en aller.\nI think that Tom lied to me.\tJe pense que Tom m'a menti.\nI think that was very funny.\tJ'ai trouvé cela très drôle.\nI think that's a great idea.\tJe pense que c'est une excellente idée.\nI think that's where Tom is.\tJe pense que c'est là que Tom se trouve.\nI think the mistake is mine.\tJe pense que l'erreur est mienne.\nI think the same as they do.\tJe pense la même chose qu'eux.\nI think the same as they do.\tJe pense la même chose qu'elles.\nI think this belongs to you.\tJe pense que ceci t'appartient.\nI think this belongs to you.\tJe pense que ceci vous appartient.\nI think this will do nicely.\tJe pense que ça collera au poil.\nI think we are in agreement.\tJe pense que nous sommes d'accord.\nI think we have to tell Tom.\tJe pense que nous devons le dire à Tom.\nI think we make a good team.\tJe pense que nous formons une bonne équipe.\nI think we need more coffee.\tJe pense qu'il nous faut davantage de café.\nI think we should celebrate.\tJe pense que nous devrions faire la fête.\nI think we should head back.\tJe pense que nous devrions repartir.\nI think we should leave now.\tJe pense que nous devrions partir maintenant.\nI think we should try again.\tJe crois que nous devrions encore essayer.\nI think we'd better do that.\tJe pense que nous ferions mieux de faire ça.\nI think we'd better do that.\tJe pense qu'on ferait mieux de faire ça.\nI think we're finished here.\tJe pense que nous en avons fini ici.\nI think we're getting close.\tJe pense que nous nous approchons.\nI think we're getting close.\tJe pense que nous nous en approchons.\nI think we've got a problem.\tJe pense que nous avons un problème.\nI think you need a vacation.\tJe pense que tu as besoin de vacances.\nI think you need a vacation.\tJe pense que vous avez besoin de vacances.\nI think you need some sleep.\tJe pense que tu as besoin de sommeil.\nI think you need some sleep.\tJe pense que vous avez besoin de sommeil.\nI think you need to see him.\tJe pense qu'il est nécessaire que vous le voyiez.\nI think you need to see him.\tJe pense qu'il est nécessaire que tu le voies.\nI think you ought to listen.\tJe pense que tu devrais écouter.\nI think you ought to listen.\tJe pense que vous devriez écouter.\nI think you should see this.\tJe pense que vous devriez voir ceci.\nI think you should see this.\tJe pense que tu devrais voir ça.\nI think you should sit down.\tJe pense que vous devriez vous asseoir.\nI think you should sit down.\tJe pense que tu devrais t'asseoir.\nI think you've gone too far.\tJe pense que vous êtes allés trop loin.\nI thought I heard something.\tJ'ai cru entendre quelque chose.\nI thought I knew everything.\tJe pensais tout savoir.\nI thought I knew what to do.\tJe pensais savoir quoi faire.\nI thought I was being smart.\tJe pensais être malin.\nI thought I was being smart.\tJe pensais être maligne.\nI thought I was going crazy.\tJe pensais devenir fou.\nI thought I was going crazy.\tJe pensais devenir folle.\nI thought I was going crazy.\tJe pensais que j'étais en train de devenir fou.\nI thought I was going crazy.\tJe pensais que j'étais en train de devenir folle.\nI thought I was going crazy.\tJe pensais être en train de devenir fou.\nI thought I was going crazy.\tJe pensais être en train de devenir folle.\nI thought I'd find you here.\tJe pensais que je te trouverais ici.\nI thought I'd find you here.\tJe pensais te trouver ici.\nI thought I'd find you here.\tJe pensais vous trouver ici.\nI thought I'd find you here.\tJe pensais que je vous trouverais ici.\nI thought Tom had a day off.\tJe pensais que Tom avait un jour de congé.\nI thought Tom liked riddles.\tJe croyais que Tom aimait les énigmes.\nI thought Tom was at school.\tJe pensais que Tom était à l'école.\nI thought Tom was in prison.\tJe pensais que Tom était en prison.\nI thought Tom was in school.\tJe pensais que Tom était à l'école.\nI thought he was my brother.\tJe pensais qu'il était mon frère.\nI thought he would be upset.\tJe pensais qu'il serait fâché.\nI thought something was odd.\tJ'ai pensé que quelque chose était bizarre.\nI thought that Tom was kind.\tJe pensais que Tom était gentil.\nI thought that he was angry.\tJe pensais qu'il était en colère.\nI thought that was your job.\tJe pensais que c'était ton boulot.\nI thought that was your job.\tJe pensais que c'était votre boulot.\nI thought the game was over.\tJe pensais que la partie était terminée.\nI thought the game was over.\tJ'ai pensé que la partie était terminée.\nI thought the game was over.\tJ'ai pensé que la manche était terminée.\nI thought the show was over.\tJe pensais que le spectacle était terminé.\nI thought we'd be safe here.\tJe pensais que nous serions en sécurité ici.\nI thought we'd be safe here.\tJe pensais que nous serions ici en sécurité.\nI thought you could help me.\tJe pensais que tu pourrais m'aider.\nI thought you could help me.\tJe pensais que vous pourriez m'aider.\nI thought you liked it here.\tJe pensais que tu te plaisais ici.\nI thought you liked it here.\tJe pensais que vous vous plaisiez ici.\nI thought you liked parties.\tJe pensais que tu aimais les fêtes.\nI thought you quit drinking.\tJe pensais que tu avais arrêté de boire.\nI thought you were a friend.\tJe pensais que tu étais un ami.\nI thought you were a friend.\tJe pensais que tu étais une amie.\nI thought you were a friend.\tJe pensais que vous étiez un ami.\nI thought you were a friend.\tJe pensais que vous étiez une amie.\nI thought you were bluffing.\tJe pensais que vous bluffiez.\nI thought you were bluffing.\tJe pensais que tu bluffais.\nI thought you were finished.\tJe pensais que tu avais terminé.\nI thought you were finished.\tJe pensais que vous aviez terminé.\nI thought you'd be grateful.\tJe pensais que tu serais reconnaissant.\nI thought you'd be grateful.\tJe pensais que tu serais reconnaissante.\nI thought you'd be grateful.\tJe pensais que vous seriez reconnaissant.\nI thought you'd be grateful.\tJe pensais que vous seriez reconnaissante.\nI threw a stone at the bird.\tJ'ai jeté une pierre en direction de l'oiseau.\nI threw a stone at the bird.\tJe jetai une pierre en direction de l'oiseau.\nI told Tom not to use those.\tJ'ai dit à Tom de ne pas utiliser ceux-là.\nI told her to come visit us.\tJe lui ai dit de venir nous voir.\nI told him about our school.\tJe lui ai parlé de notre école.\nI told him to come visit us.\tJe lui ai dit de venir nous rendre visite.\nI told you I could help you.\tJe t'ai dit que je pouvais t'aider.\nI told you it was dangerous.\tJe t'ai dit que c'était dangereux.\nI told you it was dangerous.\tJe vous ai dit que c'était dangereux.\nI told you not to come here.\tJe t'ai dit de ne pas venir ici.\nI told you not to come here.\tJe vous ai dit de ne pas venir ici.\nI took a cab to the station.\tJe pris un taxi pour la gare.\nI took an arrow in the knee.\tJ'ai pris une flèche dans le genou.\nI took an arrow in the knee.\tJe pris une flèche dans le genou.\nI took an early flight home.\tJ'ai pris un vol matinal pour rentrer.\nI took over my father's job.\tJ'ai repris le travail de mon père.\nI try not to think about it.\tJ'essaie de ne pas y penser.\nI try to keep a low profile.\tJ'essaie de faire profil bas.\nI understood what you meant.\tJ'ai compris ce que vous vouliez dire.\nI understood what you meant.\tJ'ai compris ce que tu voulais dire.\nI used to be a teacher here.\tJ'étais professeur ici.\nI used to have a girlfriend.\tJ'avais une petite amie.\nI used to have a girlfriend.\tJ'avais une petite copine.\nI used to have a motorcycle.\tJ'avais une moto.\nI visit him every other day.\tJe lui rends visite chaque deux jours.\nI visited my father's grave.\tJe suis allé sur la tombe de mon père.\nI want a room with two beds.\tJe désire une chambre à deux lits.\nI want everybody to go home.\tJe veux que chacun rentre chez lui.\nI want everyone to be there.\tJe veux que tout le monde soit là.\nI want this building locked.\tJe veux que cet immeuble soit verrouillé.\nI want to ask you something.\tJe veux vous demander quelque chose.\nI want to ask you something.\tJe veux te demander quelque chose.\nI want to be in a rock band.\tJe veux faire partie d'un groupe de rock.\nI want to be your boyfriend.\tJe veux être ton petit ami.\nI want to buy a new bicycle.\tJe veux acheter un nouveau vélo.\nI want to buy my house back.\tJe veux racheter ma maison.\nI want to do this on my own.\tJe veux faire ça seule.\nI want to do this on my own.\tJe veux faire ça seul.\nI want to find my own place.\tJe veux trouver mon endroit à moi.\nI want to go home and sleep.\tJe veux aller chez moi et dormir.\nI want to hear all about it.\tJe veux tout entendre à ce sujet.\nI want to hear your opinion.\tJe veux entendre ton opinion.\nI want to help, but I can't.\tJe veux aider mais je ne peux pas.\nI want to keep my kids safe.\tJe veux garder mes enfants en sécurité.\nI want to keep working here.\tJe veux continuer à travailler ici.\nI want to know what love is.\tJe veux savoir ce qu'est l'amour.\nI want to know what that is.\tJe veux savoir ce que c'est.\nI want to know what that is.\tJe veux savoir de quoi il s'agit.\nI want to know what's funny.\tJe veux savoir ce qui est drôle.\nI want to know what's funny.\tJe veux savoir ce qui est amusant.\nI want to know who did that.\tJe veux savoir qui a fait ça.\nI want to know who sent you.\tJe veux savoir qui vous a envoyé.\nI want to know who sent you.\tJe veux savoir qui vous a envoyée.\nI want to know who sent you.\tJe veux savoir qui vous a envoyés.\nI want to know who sent you.\tJe veux savoir qui vous a envoyées.\nI want to know who sent you.\tJe veux savoir qui t'a envoyé.\nI want to know who sent you.\tJe veux savoir qui t'a envoyée.\nI want to know who they are.\tJe veux savoir qui ils sont.\nI want to know why I'm here.\tJe veux savoir pourquoi je suis ici.\nI want to know your opinion.\tJe veux connaître ton opinion.\nI want to lose a few pounds.\tJe veux perdre quelques kilos.\nI want to make it up to you.\tJe veux vous faire la cour.\nI want to make it up to you.\tJe veux te faire la cour.\nI want to make you an offer.\tJe veux vous faire une proposition.\nI want to make you an offer.\tJe veux te faire une proposition.\nI want to practice with you.\tJe veux m'entrainer avec toi.\nI want to practice with you.\tJe veux pratiquer avec toi.\nI want to return your money.\tJe veux vous rendre votre argent.\nI want to return your money.\tJe veux te rendre ton argent.\nI want to run for president.\tJe veux être candidat à la présidence.\nI want to see him very much.\tJ'ai très envie de le voir.\nI want to share it with you.\tJe veux le partager avec vous.\nI want to share it with you.\tJe veux le partager avec toi.\nI want to sleep for a while.\tJe veux dormir un moment.\nI want to stay in the house.\tJe veux rester dans la maison.\nI want to stay in the house.\tQuant à moi, je veux rester dans la maison.\nI want to take the test now.\tJe veux passer l'examen maintenant.\nI want to take you to lunch.\tJe veux vous emmener déjeuner.\nI want to take you to lunch.\tJe veux t'emmener déjeuner.\nI want to talk about it now.\tJe veux en parler maintenant.\nI want to talk to you alone.\tJe veux vous parler seule.\nI want to talk to you alone.\tJe veux vous parler seul.\nI want to talk to you alone.\tJe veux te parler seule.\nI want to try something new.\tJe veux tenter quelque chose de nouveau.\nI want to try something new.\tJe veux essayer quelque chose de nouveau.\nI want us not to get caught.\tJe ne veux pas que nous nous fassions attraper.\nI want us to do it together.\tJe veux que nous le fassions ensemble.\nI want us to make it happen.\tJe veux que nous le fassions vivre.\nI want you both to get them.\tJe veux que tous deux vous les attrapiez.\nI want you both to get them.\tJe veux que toutes deux vous les attrapiez.\nI want you home by midnight.\tJe veux que vous soyez à la maison pour minuit.\nI want you home by midnight.\tJe veux que tu sois à la maison pour minuit.\nI want you out of my office.\tJe veux que vous sortiez de mon bureau.\nI want you out of my office.\tJe veux que tu sortes de mon bureau.\nI want you to be by my side.\tJe veux que tu sois à mon côté.\nI want you to be my manager.\tJe veux que tu sois mon patron.\nI want you to be my manager.\tJe veux que vous soyez mon patron.\nI want you to be my partner.\tJe veux que tu sois ma compagne.\nI want you to be my partner.\tJe veux que tu sois mon compagnon.\nI want you to be my partner.\tJe veux que vous soyez ma compagne.\nI want you to be my partner.\tJe veux que vous soyez mon compagnon.\nI want you to beg for mercy.\tJe veux que vous imploriez grâce.\nI want you to beg for mercy.\tJe veux que tu implores grâce.\nI want you to consider this.\tJe veux que vous réfléchissiez à ceci.\nI want you to consider this.\tJe veux que tu réfléchisses à ceci.\nI want you to dance with me.\tJe veux que vous dansiez avec moi.\nI want you to dance with me.\tJe veux que tu danses avec moi.\nI want you to do it at once.\tJe veux que tu le fasses immédiatement.\nI want you to do it at once.\tJe veux que vous le fassiez immédiatement.\nI want you to do this right.\tJe veux que tu le fasses correctement.\nI want you to do this right.\tJe veux que vous le fassiez correctement.\nI want you to follow orders.\tJe veux que vous agissiez selon les ordres.\nI want you to follow orders.\tJe veux que tu agisses selon les ordres.\nI want you to get me a soda.\tJe veux que vous alliez me chercher une boisson pétillante.\nI want you to get me a soda.\tJe veux que tu ailles me chercher une boisson pétillante.\nI want you to get some rest.\tJe veux que vous preniez du repos.\nI want you to get some rest.\tJe veux que tu prennes du repos.\nI want you to give me a job.\tJe veux que tu me procures un boulot.\nI want you to give me a job.\tJe veux que vous me procuriez un boulot.\nI want you to speak frankly.\tJe veux que vous parliez franchement.\nI want you to speak frankly.\tJe veux que tu parles franchement.\nI warned him not to be late.\tJe l'avertis de ne pas être en retard.\nI was absent from the party.\tJ'étais absent de la fête.\nI was amazed at his courage.\tSon courage m'a surprise.\nI was bitterly disappointed.\tJe fus amèrement déçu.\nI was bored with his speech.\tSon discours m'a ennuyé.\nI was bored with his speech.\tSon discours m'a ennuyée.\nI was born in Kyoto in 1980.\tJe suis né à Kyoto en 1980.\nI was born in Osaka in 1977.\tJe suis née à Osaka en 1977.\nI was born on April 3, 1950.\tJe suis née le 3 avril 1950.\nI was jealous of my brother.\tJ'ai envié mon frère.\nI was miserable without you.\tJ'étais malheureux sans vous.\nI was miserable without you.\tJ'étais malheureux sans toi.\nI was miserable without you.\tJ'étais malheureuse sans vous.\nI was miserable without you.\tJ'étais malheureuse sans toi.\nI was never good at grammar.\tJe n'ai jamais été bon en grammaire.\nI was off duty at that time.\tJe n'étais pas en service à ce moment-là.\nI was quite shocked by this.\tJe fus tout à fait choqué par cela.\nI was quite shocked by this.\tJe fus tout à fait choquée par cela.\nI was quite shocked by this.\tJ'ai été tout à fait choqué par cela.\nI was quite shocked by this.\tJ'ai été tout à fait choquée par cela.\nI was scolded by my teacher.\tJ'ai été grondé par mon professeur.\nI was starting to lose hope.\tJe commençais à désespérer.\nI was told never to do that.\tOn m'a dit de ne jamais faire ça.\nI was too busy to write you.\tJ'étais trop occupé pour vous écrire.\nI was tricked into doing it.\tJ'ai été persuadé de le faire par la ruse.\nI was trying to talk to you.\tJ'essayais de te parler.\nI was trying to talk to you.\tJ'essayais de vous parler.\nI was up all night studying.\tJ'ai veillé toute la nuit, à étudier.\nI wasn't competitive enough.\tJe n'étais pas assez compétitive.\nI wasn't competitive enough.\tJe n'étais pas suffisamment compétitif.\nI wasn't sure I could do it.\tJe n'étais pas sûr de pouvoir le faire.\nI wasn't sure I could do it.\tJe n'étais pas sûre de pouvoir le faire.\nI watched an American drama.\tJ'ai regardé un drame américain.\nI went to the wrong address.\tJe me suis trompé d'adresse.\nI went to the zoo yesterday.\tJe suis allée au zoo hier.\nI will buy a car next month.\tJe vais acheter une voiture le mois prochain.\nI will deal with him myself.\tJe vais m'en charger en personne.\nI will deal with him myself.\tJe vais me charger de lui en personne.\nI will deal with him myself.\tJe vais moi-même m'occuper de lui.\nI will do all I can for you.\tJe ferai tout ce que je peux pour toi.\nI will do all I can for you.\tJe ferai tout ce que je peux pour vous.\nI will do anything but that.\tJe ferai tout sauf ça.\nI will have to study harder.\tJe devrai étudier plus intensivement.\nI will help you if possible.\tIo l'aiuterò se possibile.\nI will never change my mind.\tJe ne changerai jamais d'avis.\nI will not attend the party.\tJe ne participerai pas à la fête.\nI will not be busy tomorrow.\tJe ne serai pas occupé demain.\nI will not be busy tomorrow.\tJe ne serai pas occupée demain.\nI will not be free tomorrow.\tJe ne serai pas libre demain.\nI will not see him any more.\tJe ne le verrai plus.\nI will play soccer tomorrow.\tDemain je jouerai au football.\nI wish I were a millionaire.\tJ'aimerais être millionnaire.\nI wish you a Happy New Year.\tJe vous souhaite une bonne année.\nI wish you had come with us.\tJ'eus aimé que tu vinsses avec nous.\nI wish you had come with us.\tJ'aurais aimé que tu vinsses avec nous.\nI wish you had come with us.\tJ'aurais aimé que tu sois venu avec nous.\nI wish you had come with us.\tJ'aurais aimé que vous vinssiez avec nous.\nI wish you had come with us.\tJ'aurais aimé que vous soyez venu avec nous.\nI wish you had come with us.\tJ'aurais aimé que vous soyez venue avec nous.\nI wish you had come with us.\tJ'aurais aimé que vous soyez venus avec nous.\nI wish you had come with us.\tJ'aurais aimé que vous soyez venues avec nous.\nI wish you had come with us.\tJ'aurais aimé que tu sois venue avec nous.\nI wish you had come with us.\tJ'eus aimé que vous vinssiez avec nous.\nI wish you had told me that.\tJ'aurais souhaité que tu me l'aies dit.\nI wish you had told me that.\tJ'aurais souhaité que vous me l'eussiez dit.\nI wish you had told me that.\tJ'aurais souhaité que vous me l'ayez dit.\nI wish you had told me that.\tJ'aurais souhaité que vous me le dites.\nI wish you had told me that.\tJ'aurais souhaité que tu me le dises.\nI wish you hadn't done that.\tJ'aurais aimé que tu ne fasses pas cela.\nI wish you hadn't done that.\tJ'aurais aimé que vous ne fassiez pas cela.\nI wish you the best of luck.\tJe te souhaite beaucoup de chance.\nI wish you were close to me.\tJe regrette que vous ne soyez pas près de moi.\nI wish you'd told me before.\tJ'aurais aimé que tu me l'aies dit auparavant.\nI wish you'd told me before.\tJ'aurais aimé que vous me l'ayez dit auparavant.\nI won't be back for a while.\tJe ne reviendrai pas avant un moment.\nI won't eat breakfast today.\tJe ne prendrai pas de petit-déjeuner aujourd'hui.\nI won't hold it against you.\tJe ne t'en tiendrai pas rigueur.\nI won't hold it against you.\tJe ne vous en tiendrai pas rigueur.\nI won't tolerate it anymore.\tJe ne le tolèrerai plus.\nI won't work overtime today.\tJe ne ferai pas d'heures supplémentaires aujourd'hui.\nI wonder if dinner is ready.\tJe me demande si le déjeuner est prêt.\nI wonder if dinner is ready.\tJe me demande si le dîner est prêt.\nI wonder what it feels like.\tJe me demande ce que l'on ressent.\nI wonder what it feels like.\tJe me demande ce que l'on y ressent.\nI wonder where she has gone.\tJe me demande où elle est partie.\nI wonder why he is so angry.\tJe me demande pourquoi il est tant en colère.\nI work at a language school.\tJe travaille dans une école de langues.\nI work out to stay in shape.\tJe fais de l'exercice pour rester en forme.\nI work out to stay in shape.\tJe fais de l'exercice pour me maintenir en forme.\nI would like some envelopes.\tJe voudrais quelques enveloppes.\nI would like to go to Japan.\tJe voudrais aller au Japon.\nI would like to go with you.\tJe voudrais y aller avec toi.\nI would rather stay at home.\tJe préférerais rester à la maison.\nI wrote a letter in English.\tJ'ai écrit une lettre en anglais.\nI wrote a letter last night.\tJ'ai écrit une lettre hier soir.\nI'd like something to drink.\tJ'aimerais bien quelque chose à boire.\nI'd like to apply for a job.\tJ'aimerais soumettre ma candidature pour un boulot.\nI'd like to ask you a favor.\tJ'ai une faveur à vous demander.\nI'd like to buy half a cake.\tJe voudrais acheter une moitié de gâteau.\nI'd like to go out with you.\tJ'aimerais sortir avec toi.\nI'd like to go out with you.\tJ'aimerais sortir avec vous.\nI'd like to join your group.\tJ'aimerais faire partie de ton groupe.\nI'd like to know what it is.\tJ'aimerais savoir ce que c'est.\nI'd like to know what it is.\tJ'aimerais savoir de quoi il s'agit.\nI'd like to know what it is.\tJ'aimerais savoir de quoi il retourne.\nI'd like to offer you a job.\tJ'aimerais vous proposer un travail.\nI'd like to open an account.\tJ'aimerais ouvrir un compte.\nI'd like to say a few words.\tJe voudrais dire quelques mots.\nI'd like to say a few words.\tJ'aimerais dire quelques mots.\nI'd like to see your sister.\tJ'aimerais voir votre sœur.\nI'd like to see your sister.\tJ'aimerais voir ta sœur.\nI'd like to shake your hand.\tJ'aimerais vous serrer la main.\nI'd like to sing you a song.\tJ'aimerais vous interpréter une chanson.\nI'd like to visit Australia.\tJ'aimerais visiter l'Australie.\nI'd like to visit Australia.\tJe voudrais visiter l'Australie.\nI'd like you to cut my hair.\tJ'aimerais que vous me coupiez les cheveux.\nI'd like you to cut my hair.\tJe voudrais que tu me coupes les cheveux.\nI'd love to go out with you.\tJ'adorerais sortir avec toi.\nI'd never betray your trust.\tJe ne trahirai jamais votre confiance.\nI'd rather be dead than red.\tJe préfèrerais être mort que rouge.\nI'd rather work than go out.\tJe préfère travailler que de me promener.\nI'd really like to sleep in.\tJe voudrais vraiment faire la grasse matinée.\nI'll act as a guide for you.\tJe serai votre guide.\nI'll act as a guide for you.\tJe serai ton guide.\nI'll always be here for you.\tJe serai toujours là pour toi.\nI'll always be here for you.\tJe serai toujours là pour vous.\nI'll be a little late today.\tJe serai un peu en retard aujourd'hui.\nI'll be back by six o'clock.\tJe reviens à six heures.\nI'll be back in ten minutes.\tJe serai de retour dans 10 minutes.\nI'll be back within an hour.\tJe serai de retour d'ici une heure.\nI'll be on my feet tomorrow.\tJe serai sur pieds demain.\nI'll be perfectly all right.\tJe serai parfaitement bien.\nI'll be seeing him tomorrow.\tJe le verrai demain.\nI'll be seventeen next year.\tL’année prochaine, j’aurai dix-sept ans.\nI'll be seventeen next year.\tJ'aurai dix-sept ans l'année prochaine.\nI'll call Tom and apologize.\tJ'appellerai Tom et m'excuserai.\nI'll come and see you later.\tJe viendrai te voir plus tard.\nI'll come and see you later.\tJe viendrai vous voir plus tard.\nI'll come back on the tenth.\tJe reviendrai à la dixième.\nI'll cook it, if you eat it.\tJe le cuisinerai, si tu le manges.\nI'll do it my way this time.\tCette fois, je le ferai à ma manière.\nI'll get you another lawyer.\tJe vais te chercher un autre avocat.\nI'll gladly pay you anytime.\tJe vous paierai volontiers à n'importe quel moment.\nI'll have a nap after lunch.\tJe vais faire une sieste après le déjeuner.\nI'll have to think about it.\tIl faudra que j'y réfléchisse.\nI'll have to think about it.\tIl me faudra y réfléchir.\nI'll just have to improvise.\tJe devrai juste improviser.\nI'll leave this work to you.\tJe te confie ce travail.\nI'll mail this letter today.\tJe posterai cette lettre aujourd'hui.\nI'll meet up with you later.\tJe vais vous rencontrer plus tard.\nI'll never forget the sight.\tJe n'oublierai jamais cette vision.\nI'll never forget the sight.\tJe n'oublierai jamais ce spectacle.\nI'll peel an orange for you.\tJe pèle une orange pour toi.\nI'll peel an orange for you.\tJe te pèle une orange.\nI'll say what I have to say.\tJe dirai ce que j'ai à dire.\nI'll see you in the morning.\tOn se voit demain matin.\nI'll see you in the morning.\tÀ demain matin !\nI'll stay close to the door.\tJe resterai près de la porte.\nI'll take a nap after lunch.\tJe ferai une sieste après le déjeuner.\nI'll take a nap after lunch.\tJe vais faire une sieste après le déjeuner.\nI'll teach you how to write.\tJe t'apprendrai comment écrire.\nI'll teach you how to write.\tJe vous enseignerai à écrire.\nI'll tell Tom you were here.\tJe dirai à Tom que tu étais là.\nI'll tell Tom you were here.\tJe dirai à Tom que tu étais ici.\nI'll tell Tom you were here.\tJe vais dire à Tom que tu étais là.\nI'll tell Tom you were here.\tJe vais dire à Tom que tu étais ici.\nI'll work as long as I live.\tJe travaillerai aussi longtemps que je vivrai.\nI'm a bit nervous right now.\tJe suis un peu nerveux en ce moment.\nI'm a little angry with you.\tJe suis un peu en colère contre toi.\nI'm a management consultant.\tJe suis conseiller en gestion.\nI'm afraid I can't help you.\tJe crains de ne pouvoir t'aider.\nI'm afraid I have to go now.\tJe suis désolé, je dois partir maintenant.\nI'm afraid I have to go now.\tJ'ai bien peur de devoir y aller maintenant.\nI'm all for your suggestion.\tJe suis complètement en faveur de ta suggestion.\nI'm already full, thank you.\tJe suis déjà rassasié, merci beaucoup.\nI'm always surprised by him.\tIl ne cesse de me surprendre.\nI'm an actress, not a model.\tJe suis une actrice, pas un mannequin.\nI'm an actress, not a model.\tJe suis actrice, non mannequin.\nI'm better-looking than Tom.\tJe suis plus beau que Tom.\nI'm certain that he'll come.\tJe suis certain qu'il viendra.\nI'm certain that he'll come.\tJe suis sûr qu'il viendra.\nI'm deeply offended by this.\tJe suis profondément offensé par ceci.\nI'm deeply offended by this.\tJe suis profondément offensée par ceci.\nI'm done fooling around now.\tJ'en ai fini de faire l'andouille.\nI'm fond of taking pictures.\tJ'adore prendre des photos.\nI'm getting tired of losing.\tPerdre me fatigue.\nI'm going shopping tomorrow.\tJe vais faire des courses demain.\nI'm going shopping tomorrow.\tJe vais demain faire des emplettes.\nI'm going to be your lawyer.\tJe vais être ton avocat.\nI'm going to be your lawyer.\tJe vais être votre avocat.\nI'm going to buy some bread.\tJe vais acheter du pain.\nI'm going to miss you a lot.\tVous allez beaucoup me manquer.\nI'm going to miss you a lot.\tTu vas beaucoup me manquer.\nI'm going to need your help.\tJe vais avoir besoin de votre aide.\nI'm going to need your help.\tJ'aurai besoin de votre aide.\nI'm going to need your help.\tJ'aurai besoin de ton aide.\nI'm going to propose to her.\tJe vais la demander en mariage.\nI'm going to shoot him dead.\tJe vais l'abattre.\nI'm going to swim every day.\tJe vais nager chaque jour.\nI'm going to swim every day.\tJe vais nager quotidiennement.\nI'm going to tell everybody.\tJe vais le dire à tout le monde.\nI'm having trouble focusing.\tJ'ai du mal à me concentrer.\nI'm having trouble sleeping.\tJ'ai du mal à dormir.\nI'm here for another reason.\tJe suis ici pour une autre raison.\nI'm here to see the manager.\tJe suis ici pour voir le gérant.\nI'm in the mood to talk now.\tJe suis maintenant disposé à discuter.\nI'm in the mood to talk now.\tJe suis maintenant disposée à discuter.\nI'm just looking, thank you.\tJe ne fais que regarder, merci.\nI'm looking for another job.\tJe suis à la recherche d'un autre boulot.\nI'm looking for the manager.\tJe cherche le gérant.\nI'm looking forward to that.\tJ'en suis impatient.\nI'm looking forward to that.\tJ'en suis impatiente.\nI'm looking forward to that.\tJe m'en réjouis d'avance.\nI'm not allowed to help you.\tJe ne suis pas autorisé à vous aider.\nI'm not allowed to help you.\tJe ne suis pas autorisée à vous aider.\nI'm not allowed to help you.\tJe ne suis pas autorisé à t'aider.\nI'm not allowed to help you.\tJe ne suis pas autorisée à t'aider.\nI'm not ashamed of who I am.\tJe n'ai pas honte de ce que je suis.\nI'm not ashamed to tell you.\tJe n'ai pas honte de te dire.\nI'm not ashamed to tell you.\tJe n'ai pas honte de vous dire.\nI'm not available right now.\tJe ne suis pas libre tout de suite.\nI'm not going to allow that.\tJe ne vais pas autoriser ça.\nI'm not going to name names.\tJe ne vais pas citer de noms.\nI'm not going to name names.\tJe ne vais pas livrer de noms.\nI'm not good at negotiating.\tJe ne suis pas bon pour négocier.\nI'm not good at negotiating.\tJe ne suis pas doué pour négocier.\nI'm not good enough for Tom.\tJe ne suis pas assez bien pour Tom.\nI'm not good enough for you.\tJe ne suis pas assez bon pour toi.\nI'm not good enough for you.\tJe ne suis pas assez bon pour vous.\nI'm not good enough for you.\tJe ne suis pas assez bonne pour toi.\nI'm not good enough for you.\tJe ne suis pas assez bonne pour vous.\nI'm not in a mood to go out.\tJe ne suis pas d'humeur à sortir.\nI'm not in the office today.\tJe ne suis pas au bureau aujourd'hui.\nI'm not ready to retire yet.\tJe ne suis pas encore prêt à prendre ma retraite.\nI'm not really that thirsty.\tJe n'ai pas si soif que ça.\nI'm not suggesting anything.\tJe ne suggère rien.\nI'm not sure I want the job.\tJe ne suis pas certain de vouloir le poste.\nI'm not sure I want the job.\tJe ne suis pas certaine de vouloir le poste.\nI'm not talking to you, Tom.\tJe ne te parle pas, Tom.\nI'm not talking to you, Tom.\tJe ne vous parle pas, Tom.\nI'm not talking to you, Tom.\tCe n'est pas à toi que je parle, Tom.\nI'm not talking to you, Tom.\tCe n'est pas à vous que je parle, Tom.\nI'm not very good at French.\tJe ne suis pas très bon en français.\nI'm not worried about money.\tJe ne suis pas inquiet pour l'argent.\nI'm not worried about money.\tJe ne me fais pas de soucis pour l'argent.\nI'm now busy writing a book.\tJe suis occupé en ce moment à écrire un livre.\nI'm older than your brother.\tJe suis plus vieux que ton frère.\nI'm opening my presents now.\tJ'ouvre maintenant mes cadeaux.\nI'm playing with my friends.\tJe joue avec mes amis.\nI'm playing with my friends.\tJe joue avec mes amies.\nI'm playing with my friends.\tJe suis en train de jouer avec mes amis.\nI'm playing with my friends.\tJe suis en train de jouer avec mes amies.\nI'm really glad you're here.\tJe me réjouis vraiment que tu sois là.\nI'm saving as much as I can.\tJ'économise autant que je peux.\nI'm seeing her this evening.\tJe la vois ce soir.\nI'm sick of your complaints.\tJ'en ai assez de vos récriminations.\nI'm sick of your complaints.\tJ'en ai assez de tes récriminations.\nI'm sorry I was rude to you.\tJe suis désolé d'avoir été si grossier.\nI'm sorry you're leaving us.\tC'est triste que tu doives partir.\nI'm sorry, I can't help you.\tJe suis désolé de ne pas pouvoir t'aider.\nI'm sorry, I can't help you.\tJe suis désolée de ne pas pouvoir t'aider.\nI'm sorry, I can't help you.\tJe suis désolé, je ne peux pas t'aider.\nI'm sorry, my father is out.\tJe suis désolé, mon père est sorti.\nI'm sorry, my father is out.\tJe suis désolée, mon père est sorti.\nI'm sorry, my father is out.\tJe suis désolé, mon père ne fait plus partie du groupe.\nI'm sorry, my father is out.\tJe suis désolé, mon père est dehors.\nI'm sorry, my father is out.\tJe suis désolé, mon père est éliminé.\nI'm sorry, my father is out.\tJe suis désolée, mon père est dehors.\nI'm sorry, my father is out.\tJe suis désolée, mon père est éliminé.\nI'm starting to dislike her.\tJe commence à la trouver antipathique.\nI'm still thinking about it.\tJ'y pense encore.\nI'm still thinking about it.\tJ'y songe encore.\nI'm studying French grammar.\tJe suis en train d'étudier la grammaire française.\nI'm studying in the library.\tJ'étudie à la bibliothèque.\nI'm sure I can persuade Tom.\tJe suis certain de pouvoir persuader Tom.\nI'm sure I can persuade Tom.\tJe suis sûre de pouvoir persuader Tom.\nI'm sure she'll leave early.\tJe suis sûr qu'elle partira tôt.\nI'm sure she'll leave early.\tJe suis sûre qu'elle partira tôt.\nI'm suspicious of everybody.\tTout le monde est, à mes yeux, suspect.\nI'm taking a walk in a park.\tJe me promène dans un parc.\nI'm used to staying up late.\tJe suis habitué à rester debout tard.\nI'm very proud of my father.\tJe suis très fière de mon père.\nI'm very proud of my father.\tJe suis très fier de mon père.\nI'm very sorry to hear that.\tJe suis effondré d'entendre ça.\nI'm very sorry, but I can't.\tJe regrette beaucoup, mais je ne peux pas.\nI'm wondering if I love Tom.\tJe me demande si j'aime Tom.\nI'm wondering if I love her.\tJe me demande si je l'aime.\nI'm wondering if I love him.\tJe me demande si je l'aime.\nI'm worried about my weight.\tMon poids me préoccupe.\nI've actually heard of this.\tJ'en ai réellement entendu parler.\nI've already read this book.\tJ'ai déjà lu ce livre.\nI've always liked that name.\tJ'ai toujours aimé ce nom.\nI've been accused of murder.\tJe fus accusée de meurtre.\nI've been accused of murder.\tJe fus accusé de meurtre.\nI've been accused of murder.\tJ'ai été accusée de meurtre.\nI've been accused of murder.\tJ'ai été accusé de meurtre.\nI've been asked to help out.\tOn m'a demandé de donner un coup de main.\nI've been in trouble before.\tJ'ai eu des ennuis auparavant.\nI've been thinking about it.\tJ'y ai réfléchi.\nI've been to Hong Kong once.\tJe suis allé une fois à Hong Kong.\nI've been waiting all night.\tJ'ai attendu toute la nuit.\nI've been waiting for hours.\tJ'attends depuis des heures.\nI've been waiting for hours.\tÇa fait des heures que j'attends.\nI've been worried all along.\tJe me suis fait du souci tout le long.\nI've caught a terrible cold.\tJ'ai attrapé un rhume carabiné.\nI've come to speak with you.\tJe suis venu pour te parler.\nI've decided to go by train.\tJ'ai décidé d'y aller en train.\nI've decided to study kanji.\tJ'ai décidé d'étudier les kanji.\nI've eaten all the crackers.\tJ'ai mangé tous les biscuits.\nI've eaten all the crackers.\tJ'ai bouloté tous les biscuits.\nI've figured out the puzzle.\tJ'ai résolu l'énigme.\nI've forgotten your address.\tJ'ai oublié votre adresse.\nI've forgotten your address.\tJ'ai oublié ton adresse.\nI've gone and caught a cold.\tJ'ai attrapé froid.\nI've got a rope in my trunk.\tJ'ai une corde dans mon coffre.\nI've got a touch of the flu.\tJ'ai un semblant de rhume.\nI've got so much left to do.\tJ'ai encore tant à faire.\nI've got some business here.\tJ'ai ici des affaires.\nI've had a really weird day.\tJ'ai eu une journée vraiment bizarre.\nI've heard that Tom is sick.\tJ'ai entendu dire que Tom était malade.\nI've heard that song before.\tJ'ai déjà entendu cette chanson.\nI've heard that song before.\tJ'ai entendu cette chanson auparavant.\nI've heard you've been sick.\tJ'ai entendu que tu avais été malade.\nI've known him for one year.\tJe le connais depuis un an.\nI've lost patience with Tom.\tJ'ai perdu patience avec Tom.\nI've never been here before.\tJe suis jamais venu ici auparavant.\nI've never been to Istanbul.\tJe ne suis jamais allé à Istanbul.\nI've never done this before.\tJe n'ai jamais fait ça auparavant.\nI've never seen that before.\tJe n'ai jamais vu cela auparavant.\nI've never told anyone that.\tJe n'ai jamais dit cela à quiconque.\nI've never told anyone that.\tJe n'ai jamais dit cela à qui que ce soit.\nI've often seen him bullied.\tJe l'ai souvent vu se faire tyranniser.\nI've read hundreds of books.\tJ'ai lu des centaines de livres.\nIceland belonged to Denmark.\tL'Islande a appartenu au Danemark.\nIf you don't know, who does?\tSi tu l'ignores, qui le sait ?\nIf you don't know, who does?\tSi vous l'ignorez, qui le sait ?\nIn my opinion, you're wrong.\tÀ mon avis, tu as tort.\nIn that case, you are right.\tDans ce cas, tu as raison.\nIn the end, he did not come.\tFinalement il n'est pas venu.\nIn what month were you born?\tQuel mois es-tu né ?\nIs Tom aware of what he did?\tTom est-il conscient de ce qu'il a fait?\nIs anyone going to eat that?\tQuiconque va-t-il manger ça ?\nIs anyone going to eat that?\tQuiconque va-t-il manger cela ?\nIs eating fish good for you?\tEst-ce que manger du poisson est bon pour toi ?\nIs he a hardworking student?\tEst-il un élève appliqué ?\nIs he just a one-trick pony?\tN'a-t-il qu'un unique talent ?\nIs it OK if I drink alcohol?\tEst-il autorisé que je boive de l'alcool ?\nIs it a secret or something?\tEst-ce un secret ou quoi ?\nIs it about ten million yen?\tÇa ferait environ 10 millions de yens ?\nIs it always cold like this?\tFait-il toujours froid comme ça?\nIs it hard to speak English?\tEst-ce difficile de parler anglais ?\nIs it made of wood or metal?\tEst-ce composé de bois ou de métal ?\nIs love just a game for you?\tL'amour n'est-il qu'un jeu pour vous ?\nIs that all you think about?\tEst-ce là tout ce que vous cogitez ?\nIs that all you think about?\tEst-ce là tout ce que tu cogites ?\nIs that all you want to say?\tEst-ce là tout ce que vous voulez dire ?\nIs that all you want to say?\tEst-ce là tout ce que tu veux dire ?\nIs that enough for you, Tom?\tEst-ce assez pour toi, Tom ?\nIs that really all there is?\tEst-ce vraiment là tout ce qu'il y a ?\nIs that what you want to do?\tEst-ce ce que tu veux faire ?\nIs that what you want to do?\tEst-ce ce que vous voulez faire ?\nIs the job too much for you?\tL'emploi est-il au-dessus de tes capacités ?\nIs the job too much for you?\tL'emploi est-il au-dessus de vos capacités ?\nIs there a cat on the table?\tEst-ce qu'il y a un chat sur la table ?\nIs there a man in your life?\tY a-t-il un homme dans ta vie ?\nIs there a man in your life?\tY a-t-il un mec dans ta vie ?\nIs there a student discount?\tY a-t-il une remise étudiant ?\nIs there a telephone nearby?\tY a-t-il un téléphone à proximité ?\nIs there any help available?\tY a-t-il une quelconque aide de disponible ?\nIs there anyone else around?\tY a-t-il qui que ce soit d'autre aux environs ?\nIs there anyone else around?\tY a-t-il qui que ce soit d'autre alentour ?\nIs there anyone else around?\tY a-t-il qui que ce soit d'autre dans le coin ?\nIs there anyone in the room?\tIl y a quelqu'un dans la pièce ?\nIs there anyone in the room?\tY a-t-il quelqu'un dans la pièce ?\nIs there anyone in the room?\tY a-t-il qui que ce soit dans la pièce ?\nIs there anyone in the room?\tQui que ce soit se trouve-t-il dans la pièce ?\nIs there anyone in the room?\tQuiconque se trouve-t-il dans la pièce ?\nIs there anyone in the room?\tQuiconque est-il dans la pièce ?\nIs there anything I must do?\tY a-t-il quelque chose que je doive faire ?\nIs there something in there?\tY a-t-il quelque chose là-dedans ?\nIs this information correct?\tCette information est-elle exacte ?\nIs this made in Switzerland?\tC’est produit en Suisse ?\nIs this made in Switzerland?\tEst-ce produit en Suisse ?\nIs this man threatening you?\tCet homme vous menace-t-il ?\nIs this man threatening you?\tCet homme te menace-t-il ?\nIs this translation correct?\tCette traduction est-elle correcte ?\nIs this water okay to drink?\tCette eau est-elle potable ?\nIs this wine from Argentina?\tEst-ce que ce vin vient d'Argentine ?\nIs your school in this town?\tTon école se situe-t-elle dans cette ville ?\nIsn't there anyone you know?\tN'y a-t-il pas qui que ce soit que tu connaisses ?\nIsn't there anyone you know?\tN'y a-t-il pas qui que ce soit que vous connaissiez ?\nIsn't this simply beautiful?\tN'est-ce pas simplement beau ?\nIt always happens like this.\tCela arrive toujours ainsi.\nIt always snows in the Alps.\tIl neige toujours dans les Alpes.\nIt certainly looks that way.\tC'est certainement comme ça que ça semble.\nIt could cost you your head.\tÇa peut te coûter la tête.\nIt depends on what you mean.\tÇa dépend de ce que vous voulez dire.\nIt depends on what you mean.\tÇa dépend de ce que tu veux dire.\nIt doesn't look good at all.\tÇa n'a pas l'air bon du tout.\nIt happened a long time ago.\tCela s'est passé il y a longtemps.\nIt happened three hours ago.\tÇa s'est passé il y a trois heures.\nIt has been fine for a week.\tÇa a été pendant une semaine.\nIt has to be tomorrow night.\tCela doit être demain soir.\nIt is a nice view from here.\tIl y a une jolie vue d'ici.\nIt is a sheer waste of time.\tC'est une perte totale de temps.\nIt is a very strange letter.\tC'est une lettre très étrange.\nIt is an endangered species.\tC'est une espèce en voie de disparition.\nIt is an endangered species.\tC'est une espèce en voie d'extinction.\nIt is easier than I thought.\tC'est plus facile que je le croyais.\nIt is easy to work in jeans.\tIl est facile de travailler en jeans.\nIt is getting dark outdoors.\tLa lumière tombe, à l'extérieur.\nIt is getting dark outdoors.\tIl se fait sombre dehors.\nIt is kind of you to say so.\tC'est gentil à vous de dire cela.\nIt is none of your business.\tCe ne sont pas tes oignons.\nIt is none of your business.\tCe ne sont pas vos oignons.\nIt is not the best solution.\tCe n'est pas la meilleure solution.\nIt is not worth the trouble.\tÇa ne vaut pas le dérangement.\nIt is ten minutes to eleven.\tIl est onze heures moins dix.\nIt is time to shut the gate.\tIl est l'heure de fermer la porte.\nIt is unlike him to be late.\tCe n'est pas son habitude d'être en retard.\nIt looks as if you're right.\tIl semble que vous avez raison.\nIt looks like no one's home.\tOn dirait que personne n'est à la maison.\nIt looks like no one's home.\tOn dirait que personne ne se trouve à la maison.\nIt makes all the difference.\tCela fait toute la différence.\nIt nearly cost him his life.\tÇa lui a presque coûté la vie.\nIt only takes a few minutes.\tÇa ne prendra que quelques minutes.\nIt rained a lot that winter.\tIl plut beaucoup cet hiver-là.\nIt rained all day yesterday.\tIl a plu toute la journée d'hier.\nIt rained heavily yesterday.\tIl a plu fortement hier.\nIt rained three days on end.\tIl a plu les trois derniers jours.\nIt rained yesterday evening.\tHier soir il pleuvait.\nIt seemed to be a good idea.\tIl semblait que c'était une bonne idée.\nIt seems to be a good house.\tÇa semble être une bonne maison.\nIt snowed all day yesterday.\tIl a neigé toute la journée, hier.\nIt started a chain reaction.\tÇa a déclenché une réaction en chaîne.\nIt suddenly started raining.\tIl se mit soudain à pleuvoir.\nIt suddenly started raining.\tIl s'est soudain mis à pleuvoir.\nIt was a resounding success.\tCe fut un succès retentissant.\nIt was a resounding success.\tÇa a été un succès retentissant.\nIt was a very exciting game.\tC'était un jeu vraiment très excitant.\nIt was all your imagination.\tTout n'était que ton imagination.\nIt was all your imagination.\tTout n'était que votre imagination.\nIt was an immediate success.\tCe fut un succès immédiat.\nIt was easy for me to do so.\tIl me fut aisé de le faire.\nIt was late, so I went home.\tIl était tard, donc je suis rentré chez moi.\nIt was not an easy decision.\tCe ne fut pas une décision facile.\nIt was not an easy decision.\tÇa n'a pas été une décision facile.\nIt was the only thing to do.\tC'était la seule chose à faire.\nIt was too difficult for me.\tC'était trop difficile pour moi.\nIt was very windy yesterday.\tLe temps était très venteux hier.\nIt will be snowing tomorrow.\tIl neigera demain.\nIt'll soon be three o'clock.\tIl sera bientôt trois heures.\nIt's a complicated question.\tC'est une affaire compliquée.\nIt's a great day for a hike.\tC'est une excellente journée pour une randonnée.\nIt's a matter of priorities.\tC'est une question de priorités.\nIt's a pleasure to meet you.\tC'est un plaisir de vous rencontrer.\nIt's a pleasure to meet you.\tC'est un plaisir de te rencontrer.\nIt's about time I was going.\tIl est temps que j'y aille.\nIt's all downhill from here.\tÇa ne fait que descendre, à partir d'ici.\nIt's all downhill from here.\tÇa ne va qu'en empirant, à partir d'ici.\nIt's already out of fashion.\tC'est déjà démodé.\nIt's an ecological disaster.\tC'est un désastre écologique.\nIt's been more than a month.\tÇa fait plus d'un mois.\nIt's been snowing all night.\tIl a neigé toute la nuit.\nIt's boring to stay at home.\tRester chez soi est ennuyeux.\nIt's eight o'clock at night.\tIl est huit heures du soir.\nIt's for my science project.\tC'est pour mon projet scientifique.\nIt's for my science project.\tC'est pour mon projet en Sciences.\nIt's getting out of control.\tOn n'a plus le contrôle de la situation.\nIt's going to clear up soon.\tÇa va bientôt s'éclaircir.\nIt's great to have you back.\tC'est bon de t'avoir de nouveau.\nIt's hard to argue with Tom.\tIl est difficile d'argumenter avec Tom.\nIt's hard to master English.\tIl est difficile de maîtriser l'anglais.\nIt's hard to understand you.\tC'est dur de te comprendre.\nIt's hard to understand you.\tC'est difficile de vous comprendre.\nIt's illegal to buy cocaine.\tC'est illégal d'acheter de la cocaïne.\nIt's illegal to buy cocaine.\tAcheter de la cocaïne est illégal.\nIt's impossible to describe.\tC'est impossible à décrire.\nIt's more fun than studying.\tC'est plus marrant que d'étudier.\nIt's my job to convince you.\tC'est mon travail de vous convaincre.\nIt's my job to convince you.\tC'est mon boulot de te convaincre.\nIt's never been done before.\tÇa n'a jamais été fait auparavant.\nIt's nice to be appreciated.\tC'est chouette d'être estimé.\nIt's nice to be appreciated.\tC'est chouette d'être estimée.\nIt's nice to be appreciated.\tC'est chouette d'être estimés.\nIt's nice to be appreciated.\tC'est chouette d'être estimées.\nIt's no use trying anything.\tCela ne sert à rien d'essayer quoique ce soit.\nIt's not as bad as it seems.\tCe n'est pas aussi mauvais qu'il semble.\nIt's not as bad as it seems.\tCe n'est pas aussi mauvais qu'il y paraît.\nIt's not going to take long.\tCela ne va pas prendre longtemps.\nIt's not like it used to be.\tCe n'est pas comme c'était.\nIt's not my problem anymore.\tCe n'est plus mon problème.\nIt's not our responsibility.\tCe n'est pas notre responsabilité.\nIt's not supposed to be fun.\tCe n'est pas censé être amusant.\nIt's not supposed to happen.\tCe n'est pas supposé se produire.\nIt's not supposed to happen.\tCe n'est pas supposé arriver.\nIt's not supposed to happen.\tCe n'est pas supposé survenir.\nIt's not that big of a deal.\tCe n'est pas une si grande affaire.\nIt's not that long a flight.\tCe n'est pas un vol si long.\nIt's not very far from here.\tCe n'est pas très loin d'ici.\nIt's nothing I can't handle.\tJe peux me débrouiller.\nIt's nothing I can't handle.\tCe n'est rien que je ne puisse gérer.\nIt's one of our specialties.\tC'est l'une de nos spécialités.\nIt's open to interpretation.\tC'est ouvert à interprétation.\nIt's really humid, isn't it?\tC'est très humide, non ?\nIt's really humid, isn't it?\tC'est très humide, n'est-ce pas ?\nIt's really humid, isn't it?\tC'est vraiment humide, n'est-ce pas ?\nIt's really humid, isn't it?\tC'est vraiment humide, non ?\nIt's shockingly inexpensive.\tC'est scandaleusement bon marché.\nIt's six degrees below zero.\tIl fait moins six.\nIt's so bad, it's hilarious.\tC'est tellement mauvais, c'est hilarant.\nIt's starting to grow on us.\tNous commençons à y être sensibilisés.\nIt's starting to grow on us.\tNous commençons à y être sensibilisées.\nIt's time for you to get up.\tIl est l'heure de te lever.\nIt's time for you to get up.\tIl est l'heure de vous lever.\nIt's too late for apologies.\tIl est un peu tard pour s'excuser.\nIt's useless to talk to Tom.\tIl est inutile de parler à Tom.\nIt's very cold this evening.\tIl fait très froid ce soir.\nIt's what we always planned.\tC'est ce que nous avons toujours prévu.\nIt's your problem, not mine.\tC'est ton problème, pas le mien.\nIt's your problem, not mine.\tC'est votre problème, pas le mien.\nIt’s a quarter past eight.\tIl est huit heures et quart.\nIt’s hard to quit smoking.\tC'est dur d'arrêter de fumer.\nJust do what you have to do.\tFais simplement ce que tu as à faire.\nJust do what you have to do.\tFaites simplement ce que vous avez à faire.\nJust don't get involved, OK?\tNe t'implique simplement pas, d'accord ?\nJust don't get involved, OK?\tNe vous impliquez simplement pas, d'accord ?\nKeep oil away from the fire.\tGarde l'huile loin du feu.\nKeep your hands off my bike!\tBas les pattes de mon vélo !\nKeep your hands to yourself.\tGarde tes mains dans les poches !\nKeep your hands to yourself.\tGardez vos mains dans les poches !\nKyoto has many universities.\tKyoto compte de nombreuses universités.\nLearning calligraphy is fun.\tApprendre la calligraphie est amusant.\nLeave it where you found it.\tLaisse ça où tu l'as trouvé.\nLeave the book where it was.\tLaisse le livre où il était.\nLeave the book where it was.\tLaissez le livre où il était.\nLet me be the judge of that.\tLaisse-moi en être juge.\nLet me give you some advice.\tLaisse-moi te donner un conseil.\nLet me spell it out for you.\tLaisse-moi te l'épeler.\nLet me spell it out for you.\tLaisse-moi te le clarifier.\nLet's clear up this problem.\tClarifions un peu ce problème.\nLet's come back to it later.\tCe n'est que partie remise.\nLet's find a way to do that.\tTrouvons un moyen de faire ça.\nLet's get out of this place.\tFichons le camp d'ici.\nLet's get the party rolling.\tQue la fête commence !\nLet's get the party started.\tInaugurons la fête.\nLet's get the party started.\tInaugurons la réception.\nLet's get together tomorrow.\tRetrouvons-nous demain.\nLet's give it all we've got.\tOn leur fera la peau.\nLet's go tomorrow afternoon.\tAllons-y demain après-midi.\nLet's hope Tom can fix this.\tEspérons que Tom puisse réparer ça.\nLet's hope for good results.\tEspérons de bons résultats.\nLet's just leave it at that.\tLaissons cela de côté !\nLet's just not talk anymore.\tNe discutons plus, simplement !\nLet's make it three o'clock.\tFaisons ça à trois heures.\nLet's not forget to do that.\tN'oublions pas de faire ça.\nLet's not pretend otherwise.\tNe faisons pas semblant qu'il en va autrement.\nLet's not rule anything out.\tN'excluons rien.\nLet's not waste this chance.\tNe laissons pas passer cette occasion !\nLet's not waste this chance.\tNe gâchons pas cette occasion !\nLet's pretend we are ninjas.\tFaisons semblant d'être des ninjas.\nLet's pretend we are ninjas.\tOn dit qu'on serait des ninjas.\nLet's pretend we are ninjas.\tOn ferait comme si on était des ninjas.\nLet's pretend we are ninjas.\tOn disait qu'on est des ninjas.\nLet's pretend we are ninjas.\tOn dirait qu'on est des ninjas.\nLet's see what's in the box.\tVoyons voir ce qu'il y a dans la boîte.\nLet's sit down on the bench.\tAsseyons-nous sur le banc !\nLet's sit here on the grass.\tAsseyons-nous ici sur l'herbe.\nLet's start with the basics.\tCommençons par les bases.\nLet's take care of business.\tSoucions-nous des affaires !\nLet's talk a bit about that.\tParlons un peu de cela.\nLet's talk about this later.\tParlons-en plus tard.\nLet's talk over a cold beer.\tAllons discuter autour d'une bière fraîche.\nLet's talk shop for a while.\tParlons un peu boulot.\nLet's try to make Tom laugh.\tEssayons de faire rire Tom.\nLet's try to win every game.\tEssayons de gagner chaque match.\nLet's walk to the bookstore.\tAllons à pied à la librairie.\nLet's wish Tom all the best.\tSouhaitons nos meilleurs voeux à Tom.\nLiving conditions were hard.\tLes conditions de vie étaient difficiles.\nLook! Two boys are fighting.\tRegarde ! Deux garçons se battent.\nLook, here comes your train.\tRegarde, voilà ton train !\nMake a sketch of your house.\tFais un croquis de ta maison.\nMake a sketch of your house.\tFaites un croquis de votre maison.\nMake it as spicy as you can.\tFais-le aussi épicé que possible.\nMake yourselves comfortable.\tMettez-vous à l'aise.\nMake yourselves comfortable.\tMets-toi à l'aise.\nMan cannot live without air.\tL'Homme ne pourrait vivre sans air.\nMany people are on vacation.\tBeaucoup de gens sont en vacances.\nMario is an Italian citizen.\tMario est citoyen italien.\nMary had a girls' night out.\tMarie a passé une soirée entre filles.\nMary had a girls' night out.\tMarie s'est fait une sortie entre filles.\nMary helped her mother cook.\tMarie aida sa mère à cuisiner.\nMary is alone in the forest.\tMarie est seule dans la forêt.\nMary wore a pale blue dress.\tMarie portait une robe bleu claire.\nMay I be of further service?\tPuis-je être utile à autre chose ?\nMay I be of help in any way?\tPuis-je aider en quelque manière que ce soit ?\nMay I have a class schedule?\tPourrais-je avoir l'emploi du temps de la classe ?\nMay I have a glass of water?\tPuis-je avoir un verre d'eau ?\nMay I have a napkin, please?\tPuis-je avoir une serviette, s'il vous plaît ?\nMay I have a second helping?\tPuis-je me resservir ?\nMay I have the menu, please?\tPourrais-je avoir le menu, s'il vous plaît ?\nMay I look at that magazine?\tPuis-je regarder ce magazine ?\nMay I look at your passport?\tPuis-je voir votre passeport ?\nMay I speak to you a minute?\tPuis-je te parler une minute ?\nMay I take a picture of you?\tPuis-je prendre une photo de toi ?\nMay I take a picture of you?\tEst-ce que je peux vous prendre en photo ?\nMaybe I should study German.\tPeut-être devrais-je étudier l'allemand.\nMaybe she can tell you more.\tPeut-être peut-elle vous en dire plus.\nMaybe she can tell you more.\tPeut-être peut-elle t'en dire plus.\nMaybe what you said is true.\tPeut-être que ce que tu dis est vrai.\nMetal contracts when cooled.\tLe métal se contracte quand il est refroidi.\nMilk does not agree with me.\tJe ne supporte pas le lait.\nMilk doesn't mix with water.\tLe lait ne se mélange pas à l'eau.\nMix the flour with two eggs.\tMélangez de la farine avec deux œufs.\nMoney doesn't grow on trees.\tL'argent ne pousse pas sur les arbres.\nMoney influences everything.\tL'argent influence tout.\nMoney is welcome everywhere.\tL'argent est bienvenu partout.\nMost of my friends are guys.\tLa plupart de mes amis sont des garçons.\nMost of my friends are guys.\tLa plupart de mes amis sont des mecs.\nMother is making tea for us.\tMa mère nous fait du thé.\nMurder is punished by death.\tLe meurtre est passible de la peine capitale.\nMy birthday falls on Sunday.\tMon anniversaire tombe un dimanche.\nMy birthday is October 20th.\tMon anniversaire est le vingt octobre.\nMy blood type is A positive.\tMon groupe sanguin est A+.\nMy blood type is A positive.\tMon groupe sanguin est A positif.\nMy boyfriend is not a loser.\tMon petit ami n'est pas un loser.\nMy boyfriend is not a loser.\tMon petit ami n'est pas un perdant.\nMy boyfriend is not a loser.\tMon petit copain n'est pas un perdant.\nMy boyfriend is not a loser.\tMon petit copain n'est pas un loser.\nMy brother speaks very fast.\tMon frère parle très vite.\nMy clock seems to be broken.\tMon horloge semble cassée.\nMy credit card is maxed out.\tJ'ai excédé le plafond de ma carte de crédit.\nMy customers never complain.\tMes clients ne se plaignent jamais.\nMy dad doesn't let me drive.\tMon père ne me laisse pas conduire.\nMy dog is dreaming of a cat.\tMon chien rêve d'un chat.\nMy dog is dreaming of a cat.\tMon chien rêve d'une chatte.\nMy dog is dreaming of a cat.\tMa chienne rêve d'un chat.\nMy dog is dreaming of a cat.\tMa chienne rêve d'une chatte.\nMy dream is to study abroad.\tMon rêve est d'étudier à l'étranger.\nMy family are all very well.\tToute ma famille va très bien.\nMy family is not that large.\tMa famille n'est pas aussi grande que ça.\nMy family is not very large.\tMa famille n'est pas très grande.\nMy father came home at nine.\tMon père est rentré à la maison à neuf heures.\nMy father has gone to China.\tMon père est allé en Chine.\nMy father is a heavy smoker.\tMon père est un gros fumeur.\nMy father is an early riser.\tMon père est un lève-tôt.\nMy father is in his fifties.\tMon père a 50 ans.\nMy father made me what I am.\tMon père a fait de moi ce que je suis.\nMy father runs a restaurant.\tMon père tient un restaurant.\nMy father runs a restaurant.\tMon père gère un restaurant.\nMy favorite sport is skiing.\tMon sport préféré est le ski.\nMy grades are above average.\tMes notes sont au-dessus de la moyenne.\nMy grandmother was a farmer.\tMa grand-mère était une fermière.\nMy hair is as long as Tom's.\tMes cheveux sont aussi longs que ceux de Tom.\nMy headache is finally gone.\tMon mal de tête s'est finalement dissipé.\nMy heart began to beat fast.\tMon cœur commença à battre la chamade.\nMy heart wasn't in the work.\tJe n'avais pas le cœur au travail.\nMy hobby is taking pictures.\tMon passe-temps est de prendre des photos.\nMy house faces to the south.\tMa maison est face au sud.\nMy house is near the church.\tMa maison est près de l'église.\nMy house is near the school.\tMa maison se trouve à proximité de l'école.\nMy house looks to the south.\tMa maison est exposée plein sud.\nMy jeans shrank in the wash.\tMon jeans a rétréci au lavage.\nMy little finger is swollen.\tMon petit doigt est enflé.\nMy mother didn't mention it.\tMa mère ne l'a pas mentionné.\nMy mother didn't mention it.\tMa mère n'en a pas fait mention.\nMy mother has gone shopping.\tMa mère est partie faire des courses.\nMy mother has gone shopping.\tMa mère est allée faire des courses.\nMy mother has gone shopping.\tMa mère est partie faire des emplettes.\nMy mother has gone shopping.\tMa mère est allée faire des emplettes.\nMy mother is an early riser.\tMa mère est une lève-tôt.\nMy mother is in the kitchen.\tMa mère est dans la cuisine.\nMy mother is in the kitchen.\tMa mère est à la cuisine.\nMy mother is in the kitchen.\tMa mère se trouve dans la cuisine.\nMy mother left me a message.\tMa mère m'a laissé un message.\nMy mother made me a sweater.\tMa mère m'a confectionné un chandail.\nMy mother made me a sweater.\tMa mère me confectionna un chandail.\nMy mother prepares my meals.\tMa mère prépare mes repas.\nMy neighbors are my friends.\tMes voisines sont mes amies.\nMy older sister got engaged.\tMa sœur aînée s'est fiancée.\nMy parents are in Australia.\tMes parents sont en Australie.\nMy parents made me go there.\tMes parents m'ont contraint d'y aller.\nMy parents made me go there.\tMes parents m'ont contraint à y aller.\nMy parents made me go there.\tMes parents m'ont forcé à y aller.\nMy parents made me go there.\tMes parents m'ont incité à y aller.\nMy parents made me go there.\tMes parents m'ont incitée à y aller.\nMy parents made me go there.\tMes parents m'ont contrainte à y aller.\nMy parents made me go there.\tMes parents m'ont forcée à y aller.\nMy parents were proud of me.\tMes parents furent fiers de moi.\nMy parents were proud of me.\tMes parents ont été fiers de moi.\nMy parents were proud of me.\tMes parents étaient fiers de moi.\nMy patience is wearing thin.\tMa patience est à bout.\nMy plan was adopted by them.\tIls adoptèrent mon plan.\nMy sister has a sweet tooth.\tMa sœur aime les sucreries.\nMy sister is a good swimmer.\tMa sœur est une bonne nageuse.\nMy sister is engaged to him.\tMa sœur est fiancée avec lui.\nMy sister's getting married.\tMa sœur va se marier.\nMy son is small for his age.\tMon fils est petit pour son âge.\nMy uncle gave him a present.\tMon oncle lui a offert un cadeau.\nMy uncle gave him a present.\tMon oncle lui donna un présent.\nMy uncle gave his car to me.\tMon oncle me donna sa voiture.\nMy uncle gave his car to me.\tMon oncle me confia sa voiture.\nMy uncle gave me this watch.\tMon oncle m'a offert cette montre.\nMy uncle has three children.\tMon oncle a trois enfants.\nMy uncle lived to be ninety.\tMon oncle a vécu jusqu'à l'âge de quatre-vingt-dix ans.\nMy wife is the boss at home.\tC'est ma femme, le patron à la maison.\nMy work is not complete yet.\tMon travail n'est pas encore terminé.\nNature is full of mysteries.\tLa nature est pleine de mystères.\nNever confuse art with life.\tNe confondez jamais l'art et la vie.\nNever confuse art with life.\tNe confonds jamais l'art et la vie.\nNext Wednesday will be fine.\tMercredi prochain conviendra.\nNext time I'll come earlier.\tLa prochaine fois je viendrai plus tôt.\nNo doubt she will come soon.\tIl ne fait aucun doute qu'elle viendra bientôt.\nNo man is wise at all times.\tPersonne n'est tout le temps clairvoyant.\nNo more than 50 people came.\tPas plus de 50 personnes sont venues.\nNo one answered my question.\tPersonne ne répondit à ma question.\nNo one believed me at first.\tDans un premier temps personne ne me crut.\nNo one can move the big box.\tPersonne n'arrive à bouger la grosse caisse.\nNo one here will betray you.\tPersonne ici ne vous trahira.\nNo one here will betray you.\tPersonne ici ne te trahira.\nNo one is going to harm you.\tPersonne ne va te faire de mal.\nNo one is going to harm you.\tPersonne ne va vous faire de mal.\nNo one is going to hurt you.\tPersonne ne va te faire de mal.\nNo one is going to hurt you.\tPersonne ne va vous faire de mal.\nNo one knows me like you do.\tPersonne ne me connaît autant que toi.\nNo one knows me like you do.\tPersonne ne me connaît autant que vous.\nNo one made you do anything.\tPersonne ne t'a forcé à faire quoi que ce soit.\nNo one made you do anything.\tPersonne ne vous a forcé à faire quoi que ce soit.\nNo one will change anything.\tPersonne ne changera quoi que ce soit.\nNo one's shooting at us now.\tPersonne ne nous tire dessus à l'instant.\nNo registration is required.\tAucune inscription n'est requise.\nNobody answered my question.\tPersonne n'a répondu à ma question.\nNobody believed what I said.\tPersonne ne crut ce que je dis.\nNobody can break his record.\tPersonne ne peut battre son record.\nNobody cares what you think.\tPersonne ne se préoccupe de ce que vous pensez.\nNobody cares what you think.\tPersonne ne se préoccupe de ce que tu penses.\nNobody cares what you think.\tPersonne ne se soucie de ce que tu penses.\nNobody had ever heard of it.\tPersonne n'en avait jamais entendu parler.\nNobody knows about the plan.\tPersonne ne sait rien à propos du projet.\nNobody talks to Tom anymore.\tPlus personne ne parle à Tom.\nNobody wants to look stupid.\tPersonne ne veut avoir l'air stupide.\nNobody was hungry except me.\tPersonne n'avait faim sauf moi.\nNobody'll ever find us here.\tJamais personne ne nous trouvera ici.\nNobody'll ever find us here.\tPersonne ne nous trouvera jamais ici.\nNobody's going to blame you.\tPersonne ne va te blâmer.\nNobody's going to blame you.\tPersonne ne va vous blâmer.\nNone of them wanted to talk.\tAucun d'entre eux ne voulait discuter.\nNone of them wanted to talk.\tAucune d'entre elles ne voulait discuter.\nNot all girls are like that.\tToutes les filles ne sont pas ainsi.\nNot all of them are present.\tIls ne sont pas tous présents.\nNot everybody can be a poet.\tTout le monde ne peut pas être poète.\nNot everything is about you.\tTout ne se rapporte pas à toi.\nNot everything is about you.\tTout ne se rapporte pas à vous.\nNothing happened between us.\tRien ne s'est passé entre nous.\nNothing unexpected happened.\tIl ne s'est rien passé d’inattendu.\nNothing unexpected happened.\tRien d'inattendu ne s'est produit.\nNothing will stop his going.\tRien ne l'arrêtera.\nNow I understand everything.\tMaintenant je comprends tout.\nNow shake hands and make up.\tMaintenant serrez-vous la main et réconciliez-vous.\nNow, it's time to celebrate.\tIl est maintenant temps de se réjouir.\nNow, it's time to celebrate.\tIl est maintenant temps de nous réjouir.\nObviously, it's not working.\tÀ l'évidence, ça ne fonctionne pas.\nOgai is his favorite author.\tOgai est son auteur préféré.\nOh come on, don't be scared.\tOh, allez, ne sois pas effrayé.\nOh, no! My house is on fire!\tOh, non ! Ma maison est en feu !\nOne of my friends knows you.\tUn de mes amis te connaît.\nOpen your book to page nine.\tOuvrez votre livre à la page neuf.\nOur baby isn't speaking yet.\tNotre bébé ne parle pas encore.\nOur best friend is a doctor.\tNotre meilleur ami est médecin.\nOur dog will bite strangers.\tNotre chien mord les étrangers.\nOur friendship did not last.\tNotre amitié n'a pas duré.\nOur lives are in your hands.\tNos vies reposent entre tes mains.\nOur lives are in your hands.\tNos vies reposent entre vos mains.\nOur son died during the war.\tNotre fils est mort pendant la guerre.\nOur teacher is a real idiot.\tNotre professeur est un parfait idiot.\nOur team lost all its games.\tNotre équipe a perdu tous ses matchs.\nParents love their children.\tLes parents aiment leurs enfants.\nPeople do that all the time.\tLes gens font ça tout le temps.\nPerhaps he knows this story.\tPeut-être connaît-il cette histoire.\nPerhaps he missed the train.\tPeut-être a-t-il manqué le train.\nPickpockets target tourists.\tLes tire-laines ciblent les touristes.\nPickpockets target tourists.\tLes voleurs à la tire ciblent les touristes.\nPlaying tennis is his hobby.\tJouer au tennis est son hobby.\nPlease call before you come.\tJe te prie d'appeler avant de venir.\nPlease call before you come.\tJe vous prie d'appeler avant de venir.\nPlease come see me tomorrow.\tVenez me voir demain s'il vous plait.\nPlease contact me by letter.\tVeuillez me contacter par lettre.\nPlease correct the sentence.\tCorrigez cette phrase, s'il vous plait.\nPlease excuse my being late.\tVeuillez excuser mon retard.\nPlease excuse my being late.\tVeuillez excuser mon arrivée tardive.\nPlease find out where he is.\tVeuillez trouver où il est.\nPlease give me a cup of tea.\tDonne-moi une tasse de thé s'il te plaît.\nPlease let me come with you.\tS'il te plaît, emmène-moi avec toi.\nPlease paint the door white.\tS'il vous plait, peignez la porte en blanc.\nPlease pour me a little tea.\tServez-moi un peu de thé, s'il vous plaît.\nPlease prepare for the trip.\tVeuillez vous préparer pour le voyage.\nPlease prepare for the trip.\tPrépare-toi pour le voyage, je te prie.\nPlease refrain from smoking.\tAbstenez-vous de fumer, s'il vous plait.\nPlease send it to me by fax.\tS'il te plait, envoie-le-moi par fax.\nPlease send me another copy.\tEnvoyez-moi une autre copie, s'il vous plaît.\nPlease show me your picture.\tMontrez-moi votre photo.\nPlease speak in a low voice.\tVeuillez parler à voix basse.\nPlease tell Tom Mary called.\tTu peux dire à Tom que Mary a appelé, s'il te plait?\nPlease tell Tom Mary called.\tDis à Tom que Marie a appelé, s'il te plaît.\nPlease tell me your opinion.\tDonnez-moi votre opinion s'il vous plaît.\nPlease turn down the volume.\tBaisse le niveau, s'il te plait.\nPlease turn down the volume.\tVeuillez baisser le niveau.\nPlease turn off your engine.\tCoupe ton moteur, s'il te plait.\nPlease turn off your engine.\tCoupez votre moteur, je vous prie.\nPlease turn off your engine.\tÉteins ton moteur, s'il te plait.\nPlease turn off your engine.\tÉteignez votre moteur, s'il vous plait.\nPlease validate this ticket.\tMerci de bien vouloir valider ce ticket.\nPlease write down your name.\tVeuillez écrire votre nom.\nPlease write down your name.\tÉcris ton nom, s'il te plaît.\nPlease write down your name.\tÉcrivez votre nom, je vous prie.\nPlease write down your name.\tÉcrivez votre nom, s'il vous plaît.\nPlease write down your name.\tÉcris ton nom, je te prie.\nPlease write your name here.\tEcrivez votre nom ici s'il vous plaît.\nPlease write your name here.\tVeuillez écrire votre nom ici.\nPrices will certainly go up.\tLes prix vont certainement augmenter.\nPus has formed in the wound.\tDu pus s'est formé dans la plaie.\nPut everything in my basket.\tMettez tout dans mon panier.\nPut the car into the garage.\tMets la voiture au garage.\nPut the question in writing.\tÉcrivez la question.\nPut yourself in my position.\tMets-toi à ma place.\nRabbits like to eat carrots.\tLes lapins aiment manger les carottes.\nRainy season begins in June.\tLa saison des pluies débute en juin.\nRead the bottom of the page.\tLis le bas de la page !\nRemember not to tell anyone.\tSouviens-toi de ne le dire à personne !\nRemember not to tell anyone.\tSouvenez-vous de ne le dire à personne !\nRice grows in warm climates.\tLe riz pousse dans les climats chauds.\nRice grows in warm climates.\tLe riz pousse sous les climats chauds.\nRich soil yields good crops.\tUn sol riche produit de bonnes récoltes.\nRome was not built in a day.\tRome ne s'est pas faite en un jour.\nRules are made to be broken.\tLes règles sont faites pour être violées.\nSafety is what matters most.\tLa sécurité est la chose la plus importante.\nSay goodbye to your friends.\tDites au-revoir à vos amis.\nSchool reopens in September.\tL'école rouvre en septembre.\nSee if my answer is correct.\tVois si ma réponse est correcte.\nSee if my answer is correct.\tVoyez si ma réponse est correcte.\nSelling cars is my business.\tVendre des voitures est mon travail.\nSelling cars is my business.\tVendre des voitures, c'est ma partie.\nSend for the doctor at once.\tEnvoyez chercher le docteur tout de suite.\nSensing danger, he ran away.\tPercevant le danger, il s'enfuit en courant.\nSeveral plans were proposed.\tPlusieurs plans furent proposés.\nShall I come to your office?\tDois-je me rendre à votre bureau ?\nShe advised him to exercise.\tElle lui conseilla de faire de l'exercice.\nShe advised him to exercise.\tElle lui a conseillé de faire de l'exercice.\nShe advised him to go there.\tElle lui conseilla de s'y rendre.\nShe advised him to go there.\tElle lui conseilla d'y aller.\nShe advised him to go there.\tElle lui a conseillé de s'y rendre.\nShe allowed him to go alone.\tElle lui permit d'y aller seul.\nShe allowed him to go alone.\tElle l'autorisa à s'y rendre seul.\nShe always dresses in black.\tElle s'habille toujours de noir.\nShe always gets her own way.\tElle obtient toujours ce qu'elle veut.\nShe appealed to me for help.\tElle a fait appel à moi pour l'aider.\nShe approved of the wedding.\tElle approuva le mariage.\nShe asked him out on a date.\tElle lui demanda de sortir avec lui.\nShe asked him out on a date.\tElle lui a demandé de sortir avec lui.\nShe asked him out on a date.\tElle lui demanda de sortir avec elle.\nShe asked him out on a date.\tElle lui a demandé de sortir avec elle.\nShe asked me if I could sew.\tElle m'a demandé si je savais coudre.\nShe attracted our attention.\tElle attira notre attention.\nShe bought her son a camera.\tElle acheta un appareil photo à son fils.\nShe brought me a cup of tea.\tElle m'apporta une tasse de thé.\nShe brought me a cup of tea.\tElle m'a apporté une tasse de thé.\nShe brought up two children.\tElle a élevé deux enfants.\nShe called him on the phone.\tElle l'a appelé au téléphone.\nShe called him on the phone.\tElle l'appela au téléphone.\nShe came back an hour later.\tElle est revenue au bout d'une heure.\nShe can never keep a secret.\tElle ne sait jamais garder un secret.\nShe can play the piano well.\tElle sait bien jouer du piano.\nShe can run a full marathon.\tElle est capable de courir un marathon.\nShe closed her diary slowly.\tElle ferma lentement son journal.\nShe continued with the work.\tElle poursuivit le travail.\nShe continued with the work.\tElle a poursuivi le travail.\nShe cooked some fish for me.\tElle m'a cuisiné du poisson.\nShe cooks for him every day.\tElle cuisine pour lui quotidiennement.\nShe couldn't have said that.\tElle ne pourrait pas avoir dit ça.\nShe cut off the carrot tops.\tElle coupa le haut des carottes.\nShe decided on a blue dress.\tElle se décida pour une robe bleue.\nShe decided to have surgery.\tElle se décida à recourir à la chirurgie.\nShe decided to study abroad.\tElle a décidé d'aller étudier à l'étranger.\nShe declined the invitation.\tElle déclina l'invitation.\nShe despises people who lie.\tElle méprise les gens qui mentent.\nShe did it for her children.\tElle l'a fait pour ses enfants.\nShe did not return till six.\tElle ne revint pas avant 6 heures.\nShe did not walk to the gym.\tElle ne se rendit pas à pied à la gym.\nShe did so out of curiosity.\tElle l'a fait par curiosité.\nShe didn't even try to help.\tElle n'essaya pas même d'aider.\nShe didn't even try to help.\tElle n'a même pas essayé d'aider.\nShe didn't give me her name.\tElle ne m'a pas donné son nom.\nShe didn't like her husband.\tElle n'aimait pas son mari.\nShe didn't like her husband.\tElle n'a pas aimé son mari.\nShe didn't take many photos.\tElle n'a pas pris beaucoup de photos.\nShe died in a bike accident.\tElle est morte dans un accident de vélo.\nShe disappeared in the dark.\tElle disparut dans l'obscurité.\nShe doesn't have the ticket.\tElle n'a pas le billet.\nShe dressed herself quickly.\tElle s'habilla en vitesse.\nShe explained it over again.\tElle l'expliqua de nouveau depuis le début.\nShe gave him a lot of money.\tElle lui donna beaucoup d'argent.\nShe gave him a lot of money.\tElle lui a donné beaucoup d'argent.\nShe gave him a nice present.\tElle lui a offert un chouette cadeau.\nShe gave him a nice present.\tElle lui offrit un beau cadeau.\nShe gave him his first kiss.\tElle lui donna son premier baiser.\nShe gave him his first kiss.\tElle lui a donné son premier baiser.\nShe gave me these old coins.\tElle m'a donné ces vieilles pièces.\nShe grabbed him by the hand.\tElle le saisit par la main.\nShe grabbed him by the hand.\tElle l'a saisi par la main.\nShe greeted me with a smile.\tElle m'a accueilli avec un sourire.\nShe greeted us with a smile.\tElle nous accueillit d'un sourire.\nShe guided me to the palace.\tElle me conduisit au palais.\nShe had long hair last year.\tElle avait les cheveux longs l'année dernière.\nShe handles a saw very well.\tElle manie très bien la scie.\nShe has a gift for prophecy.\tElle a un don de prophétie.\nShe has buried her only son.\tElle a enterré son fils unique.\nShe has him under her thumb.\tElle l'a sous sa coupe.\nShe has many valuable books.\tElle possède de nombreux ouvrages de valeur.\nShe has such beautiful eyes.\tElle a de si beaux yeux.\nShe hit him again and again.\tElle le frappa encore et encore.\nShe hurried across the lawn.\tElle se précipita à travers la pelouse.\nShe ignored all my warnings.\tElle a ignoré toutes mes mises en garde.\nShe intended to go shopping.\tElle avait l'intention d'aller faire des courses.\nShe intended to go shopping.\tElle avait l'intention d'aller faire des emplettes.\nShe is a short story writer.\tElle écrit des nouvelles.\nShe is always neat and tidy.\tElle est toujours soignée et ordonnée.\nShe is an excellent student.\tC'est une excellente étudiante.\nShe is as beautiful as ever.\tElle est belle, comme toujours.\nShe is certainly over forty.\tElle a certainement plus de quarante ans.\nShe is certainly over forty.\tC'est certainement une quadra.\nShe is contemplating a trip.\tElle planifie un voyage.\nShe is dressed like a bride.\tElle est habillée en mariée.\nShe is drunk with happiness.\tElle est ivre de bonheur.\nShe is extremely attractive.\tElle est extrêmement séduisante.\nShe is gracious to everyone.\tElle est sympathique avec tout le monde.\nShe is in low spirits today.\tElle n'a pas le moral aujourd'hui.\nShe is muttering to herself.\tElle se parle à elle toute seule.\nShe is peeling the potatoes.\tElle épluche des pommes de terre.\nShe is qualified as a nurse.\tC'est une infirmière attitrée.\nShe is really into knitting.\tC'est une fondue de tricot.\nShe is really into knitting.\tElle est vraiment passionnée de tricot.\nShe is sitting on the bench.\tElle est assise sur un banc.\nShe is the executive editor.\tElle est l’éditeur en chef.\nShe is used to living alone.\tElle est habituée à vivre seule.\nShe is very annoyed with me.\tElle est très fâchée après moi.\nShe is very fond of flowers.\tElle aime beaucoup les fleurs.\nShe is watering the flowers.\tElle est en train d'arroser les fleurs.\nShe is wearing a blue dress.\tElle porte une robe bleue.\nShe is wearing a nice watch.\tElle porte une belle montre.\nShe is writing a letter now.\tElle écrit une lettre maintenant.\nShe killed him with a knife.\tElle l'a tué avec un couteau.\nShe killed him with a knife.\tElle le tua avec un couteau.\nShe kissed him on the cheek.\tElle l'embrassa sur la joue.\nShe kissed him on the cheek.\tElle l'a embrassé sur la joue.\nShe knows French inside out.\tElle connaît tout du français.\nShe knows. She always knows.\tElle sait. Elle sait toujours.\nShe left France for America.\tElle quitta la France pour l'Amérique.\nShe left her ticket at home.\tElle a laissé son billet à la maison.\nShe left her ticket at home.\tElle a laissé son billet chez elle.\nShe left her ticket at home.\tElle a laissé son billet chez moi.\nShe left her ticket at home.\tElle a laissé son billet chez nous.\nShe likes jazz, and so do I.\tElle aime le jazz, et moi aussi.\nShe likes painting pictures.\tElle aime peindre des tableaux.\nShe looked at me and smiled.\tElle m'a regardé et a souri.\nShe looks young for her age.\tElle semble jeune pour son âge.\nShe loved her mother dearly.\tElle aimait sa mère tendrement.\nShe made a mess of the work.\tElle a gâché le boulot.\nShe made a mess of the work.\tElle a gâché le travail.\nShe made a new suit for him.\tElle lui confectionna un nouveau costume.\nShe made fun of her husband.\tElle se moquait de son mari.\nShe made him clean his room.\tElle lui fit nettoyer sa chambre.\nShe may not wait any longer.\tIl se peut qu'elle n'attende pas plus longtemps.\nShe may not wait any longer.\tIl se peut qu'elle n'attende pas davantage.\nShe may use this typewriter.\tElle peut utiliser cette machine à écrire.\nShe misses her family a lot.\tSa famille lui manque beaucoup.\nShe needs some help from us.\tElle a besoin d'aide de notre part.\nShe never stops complaining.\tElle n'arrête pas de se plaindre.\nShe owes him a lot of money.\tElle lui doit beaucoup d'argent.\nShe painted the walls white.\tElle a peint les murs en blanc.\nShe passed out on the floor.\tElle s'est évanouie par terre.\nShe proposed giving a party.\tElle suggéra de faire une fête.\nShe pushed him off the pier.\tElle le poussa de la jetée.\nShe pushed him out the door.\tElle le poussa par la porte.\nShe put the children to bed.\tElle mit les enfants au lit.\nShe put the children to bed.\tElle a mis les enfants au lit.\nShe quit her job last month.\tElle a quitté son emploi le mois dernier.\nShe raced him down the hill.\tElle fit la course avec lui jusqu'au bas de la colline.\nShe really got on my nerves.\tElle m'a vraiment tapé sur les nerfs.\nShe really likes cats a lot.\tElle aime vraiment beaucoup les chats.\nShe remained silent all day.\tElle est restée silencieuse toute la journée.\nShe said she had been happy.\tElle a dit qu'elle avait été heureuse.\nShe said that she was happy.\tElle dit qu'elle était heureuse.\nShe said that she was happy.\tElle a dit qu'elle était heureuse.\nShe sat beside me in church.\tElle s'assit près de moi à l'église.\nShe seemed to have been ill.\tElle semblait avoir été malade.\nShe seemed to have been ill.\tIl semble qu'elle ait été malade.\nShe should be there at noon.\tElle devrait être là à midi.\nShe should be there at noon.\tElle devrait y être à midi.\nShe shouldn't go by herself.\tElle ne devrait pas y aller seule.\nShe shouldn't go by herself.\tElle ne devrait pas s'y rendre seule.\nShe slapped him in the face.\tElle le frappa au visage.\nShe smiled and said goodbye.\tElle sourit et prit congé.\nShe stabbed him in the back.\tElle le poignarda dans le dos.\nShe stabbed him in the back.\tElle l'a poignardé dans le dos.\nShe started from the summit.\tElle débuta au sommet.\nShe stays in touch with him.\tElle reste en contact avec lui.\nShe stopped picking daisies.\tElle s'arrêta de cueillir des pâquerettes.\nShe studies as hard as ever.\tElle étudie plus que jamais.\nShe took a sip of her drink.\tElle prit une gorgée de sa boisson.\nShe took a sip of her drink.\tElle a pris une gorgée de sa boisson.\nShe treated him like a king.\tElle le traita comme un roi.\nShe treated him like a king.\tElle l'a traité comme un roi.\nShe tried to commit suicide.\tElle a essayé de se suicider.\nShe tried to commit suicide.\tElle a tenté de se suicider.\nShe turned down my proposal.\tElle refusa ma proposition.\nShe turned pale at the news.\tElle pâlit à ces nouvelles.\nShe turned pale at the news.\tElle pâlit à la nouvelle.\nShe urged him to do the job.\tElle le pressa de faire le travail.\nShe usually walks to school.\tElle se rend d'ordinaire à l'école à pied.\nShe visited him once a year.\tElle lui rendit visite une fois par an.\nShe visited him once a year.\tElle lui a rendu visite une fois par an.\nShe visits him twice a year.\tElle lui rend visite deux fois par an.\nShe volunteered to help him.\tElle s'est portée volontaire pour l'aider.\nShe wanted to go out anyway.\tElle voulait sortir, de toutes façons.\nShe wants me to go with her.\tElle veut que j'aille avec elle.\nShe wants to meet him again.\tElle veut le revoir.\nShe wants to meet him again.\tElle veut le rencontrer à nouveau.\nShe was a middle-aged woman.\tC'était une femme d'âge moyen.\nShe was almost hit by a car.\tElle a presque été heurtée par une voiture.\nShe was born in Switzerland.\tElle est née en Suisse.\nShe was busy with housework.\tElle était occupée aux tâches ménagères.\nShe was holding an umbrella.\tElle tenait un parapluie.\nShe was in time for the bus.\tElle est arrivée à temps pour son bus.\nShe was my first girlfriend.\tElle fut ma première petite amie.\nShe was my first girlfriend.\tElle a été ma première petite amie.\nShe was robbed of her purse.\tSon sac à main lui a été dérobé.\nShe was wearing a black hat.\tElle portait un chapeau noir.\nShe was wearing a blue coat.\tElle portait un manteau bleu.\nShe wasn't able to meet him.\tElle fut dans l'incapacité de le rencontrer.\nShe wasn't able to meet him.\tElle a été dans l'incapacité de le rencontrer.\nShe went shopping elsewhere.\tElle est allée faire les courses autre part.\nShe will be late for dinner.\tElle sera en retard pour le dîner.\nShe won't call this evening.\tElle n’appellera pas ce soir.\nShe worries about my health.\tElle se soucie de ma santé.\nShe's digging her own grave.\tElle creuse sa propre tombe.\nShe's inquisitive by nature.\tElle est curieuse de nature.\nShe's looking the other way.\tElle est en train de regarder de l'autre côté.\nShe's much happier than him.\tElle est bien plus heureuse que lui.\nShe's much heavier than him.\tElle est bien plus lourde que lui.\nShe's much heavier than him.\tElle est beaucoup plus lourde que lui.\nShe's not the marrying type.\tElle n'est pas du genre à se marier.\nShe's the girl of my dreams.\tC'est la fille de mes rêves.\nShe's the perfect housewife.\tC'est une femme d'intérieur accomplie.\nShe's very afraid of snakes.\tElle a une peur bleue des serpents.\nShops are quiet on weekdays.\tLes magasins sont calmes les jours de semaine.\nShort hair really suits her.\tLes cheveux courts lui vont vraiment bien.\nShould I take this medicine?\tDois-je prendre ce médicament ?\nShould I take this medicine?\tDevrais-je prendre ce remède ?\nSilver costs less than gold.\tL'argent coûte moins que l'or.\nSkiing is my favorite sport.\tLe ski est mon sport préféré.\nSleep on it before deciding.\tAvant une prise de décision, la nuit porte conseille.\nSmile at the camera, please!\tVeuillez sourire à la caméra.\nSmoking affects your health.\tFumer affecte votre santé.\nSmoking in bed is dangerous.\tFumer au lit est dangereux.\nSnow fell early this winter.\tCet hiver la neige a été précoce.\nSo, what happened this time?\tAlors, que s’est-il passé cette fois ?\nSoccer is my favorite sport.\tLe football est mon sport préféré.\nSome Asian men wear make up.\tCertains hommes asiatiques mettent du maquillage.\nSome of them are my friends.\tParmi eux certains sont mes amis.\nSome of them are my friends.\tCertains d'entre eux sont mes amis.\nSome of them are my friends.\tCertaines d'entre elles sont mes amies.\nSomebody left the lights on.\tQuelqu'un a laissé les lumières allumées.\nSomebody's inside the house.\tQuelqu'un se trouve à l'intérieur de la maison.\nSomeone has to pay the bill.\tIl faut que quelqu'un paie la note.\nSomeone has to pay the bill.\tQuelqu'un doit payer la note.\nSomeone is calling for help.\tQuelqu'un appelle à l'aide.\nSomeone knocked on the door.\tQuelqu'un a frappé à la porte.\nSomeone knocked on the door.\tQuelqu'un a toqué à la porte.\nSomeone knocked on the door.\tQuelqu'un frappa à la porte.\nSomeone knocked on the door.\tQuelqu'un frappait à la porte.\nSomeone stole Tom's bicycle.\tQuelqu'un a volé le vélo de Tom.\nSomeone stole my belongings.\tQuelqu'un m'a volé mes affaires.\nSomeone was calling my name.\tQuelqu'un appelait mon nom.\nSomeone's going to hurt Tom.\tQuelqu'un va faire du mal à Tom.\nSomeone's taken my umbrella.\tQuelqu'un a pris mon parapluie.\nSomething fishy is going on.\tIl se trame quelque chose de louche.\nSorry I didn't reply sooner.\tDésolé de ne pas avoir répondu plus tôt.\nSorry I didn't reply sooner.\tDésolée de ne pas avoir répondu plus tôt.\nSorry, I didn't notice that.\tDésolé, je ne l'ai pas remarqué.\nSorry, I didn't notice that.\tDésolée, je ne l'ai pas remarqué.\nSorry, something went wrong.\tDésolé, quelque chose a foiré.\nSorry, something went wrong.\tDésolée, quelque chose a foiré.\nSorry, something went wrong.\tDésolé, quelque chose est allé de travers.\nSorry, something went wrong.\tDésolée, quelque chose est allé de travers.\nSorry, the line is busy now.\tDésolé, la ligne est occupée actuellement.\nSpanish is spoken in Mexico.\tL'espagnol est parlé au Mexique.\nSpare me the grisly details.\tÉpargnez-moi les détails macabres !\nSpare me the grisly details.\tÉpargne-moi les détails macabres !\nSpeaking English isn't easy.\tParler anglais n'est pas facile.\nStay calm, and do your best.\tReste calme et fais de ton mieux !\nStay with us for a few days.\tRestez avec nous pour quelques jours.\nStay with us for a few days.\tReste avec nous pendant quelques jours.\nStill, the war was not over.\tMalgré tout, la guerre n'était pas terminée.\nStir the paint with a stick.\tRemue la peinture avec un bâton !\nStir the paint with a stick.\tRemuez la peinture avec un bâton !\nStir the paint with a stick.\tTouillez la peinture à l'aide d'un bâton !\nStop bugging me. I’m busy.\tArrête de m'ennuyer. Je suis occupé.\nStop pestering me, I'm busy.\tArrête de m'ennuyer, je suis occupé.\nStop! You're making him cry.\tArrête ! Tu le fais pleurer !\nStop! You're making him cry.\tArrêtez ! Vous le faites pleurer !\nStrangely enough, he failed.\tBizarrement, il a échoué.\nTake any two cards you like.\tPrends deux cartes de ton choix.\nTake off your socks, please.\tVeuillez retirer vos chaussettes.\nTake off your socks, please.\tRetire tes chaussettes, s'il te plait.\nTake off your socks, please.\tRetirez vos chaussettes, je vous prie.\nTake off your socks, please.\tVeuillez enlever vos chaussettes.\nTake the chair to your room.\tEmmène la chaise dans ta chambre.\nTake whichever one you like.\tPrends celui qui te chante.\nTake whichever one you like.\tPrends celui que tu aimes.\nTake whichever one you like.\tPrenez celui que vous aimez.\nTake whichever one you want.\tPrends celui que tu veux.\nTake your umbrella with you.\tPrenez un parapluie avec vous.\nTell Tom that I'm exhausted.\tDis à Tom que je suis épuisé.\nTell Tom what Mary told you.\tDites à Tom ce que Mary vous a dit.\nTell Tom what Mary told you.\tDis à Tom ce que Mary t'a dit.\nTell Tom where he should go.\tDites à Tom où il devrait aller.\nTell him where he should go.\tDites-lui où il devrait aller.\nTell me about your children.\tParle-moi de tes enfants.\nTell me about your children.\tParlez-moi de vos enfants.\nTell me where Tom took Mary.\tDites-moi où Tom a emmené Mary.\nTell me which one to choose.\tDis-moi laquelle choisir.\nTell me which one to choose.\tDis-moi lequel choisir.\nTell me which one to choose.\tDites-moi laquelle choisir.\nTell me which one to choose.\tDites-moi lequel choisir.\nTell us how we may help you.\tDites-nous comment nous pouvons vous aider.\nTell us how we may help you.\tDis-nous comment nous pouvons t'aider.\nTell us what you want to do.\tDis-nous ce que tu veux faire !\nTell us what you want to do.\tDites-nous ce que vous voulez faire !\nTen houses were burned down.\tDix maisons ont été incendiées.\nTen to one, he will succeed.\tDix contre un qu'il va réussir.\nThank you for all the gifts.\tMerci pour tous les cadeaux.\nThank you for picking me up.\tMerci d'être passée me prendre.\nThank you for picking me up.\tMerci de m'avoir ramené.\nThank you for picking me up.\tMerci d'être venu me chercher.\nThank you for the other day.\tMerci pour l'autre jour.\nThank you for your courtesy.\tJe vous remercie pour votre courtoisie.\nThank you for your interest.\tMerci pour votre attention.\nThank you for your kindness.\tMerci pour votre gentillesse.\nThank you for your kindness.\tMerci de votre gentillesse.\nThank you for your kindness.\tMerci de ta gentillesse.\nThank you for your patience.\tMerci pour votre patience.\nThank you very much, doctor.\tMerci beaucoup docteur.\nThanks again for everything.\tEncore merci pour tout.\nThanks for bringing me here.\tMerci de m'avoir amené ici.\nThanks for bringing me here.\tMerci de m'avoir amenée ici.\nThanks for your cooperation.\tMerci de votre coopération.\nThanks for your explanation.\tMerci pour ton explication.\nThanks for your explanation.\tMerci pour votre explication.\nThanks for your hospitality.\tMerci pour votre hospitalité.\nThanks for your hospitality.\tMerci pour ton hospitalité.\nThanks for your quick reply.\tMerci de ta prompte réponse.\nThat affair made him famous.\tCette affaire l'a rendu célèbre.\nThat brown one is mine, too.\tLe brun est également à moi.\nThat building is our school.\tCe bâtiment est notre école.\nThat classroom is too small.\tCette salle de classe est trop petite.\nThat girl has a lovely doll.\tCette fille a une adorable poupée.\nThat girl is very beautiful.\tCette fille est très jolie.\nThat guy is completely nuts!\tCe mec est complètement zinzin !\nThat house appears deserted.\tLa maison paraît déserte.\nThat house needs repainting.\tCette maison a besoin d'être repeinte.\nThat is just typical of him.\tC'est vraiment typique de lui.\nThat is out of the question.\tC'est hors de question.\nThat is what I want to know.\tC'est ce que je veux savoir.\nThat is where you are wrong.\tC'est là que vous faites erreur.\nThat is where you are wrong.\tC'est là que vous avez fait erreur.\nThat is where you are wrong.\tC'est là que tu te trompes.\nThat is where you are wrong.\tC'est là que vous vous trompez.\nThat is where you are wrong.\tC'est là que tu commets une erreur.\nThat man is unworthy of you.\tCet homme est indigne de toi.\nThat man is unworthy of you.\tCet homme est indigne de vous.\nThat meal was simply divine.\tCe repas était simplement divin.\nThat meal was simply divine.\tCe repas était tout bonnement divin.\nThat might happen on Monday.\tIl se pourrait que cela se passe lundi.\nThat might not be necessary.\tIl se pourrait que ça ne soit pas nécessaire.\nThat place is always packed.\tCet endroit est toujours bondé.\nThat really isn't necessary.\tCe n'est vraiment pas nécessaire.\nThat room is not very large.\tCette pièce n'est pas très grande.\nThat seems like a good idea.\tCela semble être une bonne idée.\nThat sounded like a gunshot.\tÇa a fait le bruit d'une détonation.\nThat sounded like a gunshot.\tÇa a fait le bruit d'un coup de feu.\nThat sounded like a gunshot.\tÇa a résonné comme une détonation.\nThat sounded like a gunshot.\tÇa a résonné comme un coup de feu.\nThat statement is incorrect.\tCette affirmation est inexacte.\nThat strong light blinds me.\tCette lumière intense m'aveugle.\nThat town is two miles away.\tCette ville est distante de 2 miles.\nThat was a beautiful speech.\tC'était un beau discours.\nThat was a pretty good move.\tCe fut un assez bon mouvement.\nThat was a pretty good move.\tCe fut un assez bon coup.\nThat was a pretty good move.\tCe fut une assez bonne mesure.\nThat was just another party.\tCe n'était qu'une fête de plus.\nThat was just what I needed.\tC'était exactement ce dont j'avais besoin.\nThat wasn't what I intended.\tCe n'était pas mon intention.\nThat will cost thirty euros.\tÇa va faire 30 euros.\nThat will put you in danger.\tÇa te mettra en danger.\nThat's a beautiful painting.\tC'est un beau tableau.\nThat's a good thing to have.\tC'est une bonne chose à avoir.\nThat's a heartwarming scene.\tC'est une scène touchante.\nThat's a photo of my sister.\tC'est une photographie de ma sœur.\nThat's a very good question.\tC'est une très bonne question.\nThat's actually pretty cool.\tC'est assez bonnard, en vérité.\nThat's all I know right now.\tC'est tout ce que je sais pour l'instant.\nThat's all I needed to hear.\tC'est tout ce que j'avais besoin d'entendre.\nThat's all I needed to hear.\tC'est tout ce dont j'avais besoin d'entendre.\nThat's all I needed to know.\tC'est tout ce que j'avais besoin de savoir.\nThat's all I wanted to hear.\tC'est tout ce que je voulais entendre.\nThat's all I wanted to know.\tC'est tout ce que je voulais savoir.\nThat's all I'm trying to do.\tC'est tout ce que j'essaie de faire.\nThat's all you need to know.\tC'est tout ce qu'il vous faut savoir.\nThat's all you need to know.\tC'est tout ce qu'il te faut savoir.\nThat's exactly what I meant.\tC'est précisément ce que je voulais dire.\nThat's exactly what I think.\tC'est exactement ce que je pense.\nThat's exactly what I'd say.\tC'est exactement ce que je dirais.\nThat's exactly what he said.\tC’est exactement ce qu'il a dit.\nThat's good for a first try.\tC'est bien, pour un premier essai.\nThat's good for a first try.\tC'est bien, pour une première tentative.\nThat's how I feel right now.\tC'est ce que je ressens à l'instant.\nThat's just what you needed.\tC'est précisément ce dont tu avais besoin.\nThat's just what you needed.\tC'est précisément ce dont vous aviez besoin.\nThat's just what you needed.\tC'est précisément ce qu'il vous fallait.\nThat's just what you needed.\tC'est précisément ce qu'il te fallait.\nThat's more than I expected.\tC'est plus que je n'escomptais.\nThat's none of your concern.\tCe n'est pas ton affaire.\nThat's none of your concern.\tÇa ne vous regarde en rien.\nThat's not an issue anymore.\tCe n'est plus un problème.\nThat's not going to stop me.\tÇa ne va pas m'arrêter.\nThat's not really necessary.\tCe n'est pas vraiment nécessaire.\nThat's not really the point.\tCe n'est pas vraiment le sujet.\nThat's not such a good idea.\tCe n'est pas une si bonne idée.\nThat's not the only problem.\tCe n'est pas le seul problème.\nThat's not the only problem.\tCe n'est pas l'unique problème.\nThat's not the way I see it.\tCe n'est pas ainsi que je le vois.\nThat's not the way I see it.\tCe n'est pas la manière dont je le vois.\nThat's not what I asked you.\tCe n'est pas ce que je vous ai demandé.\nThat's not what I asked you.\tCe n'est pas ce que je t'ai demandé.\nThat's not what I was doing.\tCe n'est pas ce que j'étais en train de faire.\nThat's probably a good idea.\tC'est probablement une bonne idée.\nThat's really not necessary.\tCe n'est pas vraiment nécessaire.\nThat's really not the point.\tCe n'est vraiment pas le sujet.\nThat's what I'm counting on.\tC'est ce sur quoi je compte.\nThat's what friends are for.\tLes amis sont faits pour ça.\nThat's what friends are for.\tVoilà à quoi servent les amis.\nThat's where the problem is.\tC'est là que réside le problème.\nThat's why I did what I did.\tC'est pourquoi j'ai fait ce que j'ai fait.\nThat's why I need your help.\tC'est pourquoi j'ai besoin de votre aide.\nThat's why I need your help.\tC'est pourquoi j'ai besoin de ton aide.\nThe Japanese have dark eyes.\tLes Japonais ont les yeux foncés.\nThe Sahara is a vast desert.\tLe Sahara est un grand désert.\nThe air is pure around here.\tL'air est pur dans le coin.\nThe announcer spoke English.\tLe présentateur parla en anglais.\nThe arrow missed its target.\tLa flèche a manqué sa cible.\nThe baby screamed all night.\tLe bébé a crié toute la nuit.\nThe bed is very comfortable.\tLe lit est très confortable.\nThe bellows are not working.\tLes soufflets ne fonctionnent pas.\nThe bellows are not working.\tLa sonnette ne fonctionne pas.\nThe bill must be paid today.\tLa facture doit être payée aujourd'hui.\nThe birds flew to the south.\tLes oiseaux volèrent vers le sud.\nThe boat drifted out to sea.\tLe bateau a dérivé en mer.\nThe boat sank to the bottom.\tLe bateau a coulé au fond.\nThe boy caught a large fish.\tLe garçon attrapa un gros poisson.\nThe boy caught a large fish.\tLe garçon attrapa un grand poisson.\nThe boy caught a large fish.\tLe garçon a attrapé un gros poisson.\nThe boy caught a large fish.\tLe garçon a attrapé un grand poisson.\nThe boy hid behind the door.\tLe garçon se cacha derrière la porte.\nThe boy is tall for his age.\tLe gamin est grand pour son âge.\nThe bridge is built of wood.\tCe pont est fait en bois.\nThe bucket is full of water.\tLe seau est rempli d'eau.\nThe budget must be balanced.\tLe budget doit être équilibré.\nThe bus was hot and crowded.\tIl faisait chaud dans le bus et il était bondé.\nThe butcher ground the meat.\tLe boucher hacha la viande.\nThe cap is too small for me.\tLe chapeau est trop petit pour moi.\nThe cap is too small for me.\tLa casquette est trop petite pour moi.\nThe castle might be haunted.\tLe château pourrait être hanté.\nThe castle might be haunted.\tIl se pourrait que le château soit hanté.\nThe cat climbed up the tree.\tLa chat grimpa à l'arbre.\nThe cattle starved to death.\tLe bétail est mort de faim.\nThe chairs are made of wood.\tLes chaises sont faites de bois.\nThe choice is all up to you.\tLe choix dépend entièrement de toi.\nThe choice is all up to you.\tLe choix repose entièrement entre tes mains.\nThe choice is all up to you.\tLe choix repose entièrement entre vos mains.\nThe coat is too big for Tom.\tLe manteau est trop grand pour Tom.\nThe computer is to her left.\tL'ordinateur se trouve à sa gauche.\nThe corporal is on furlough.\tLe brigadier est en permission.\nThe crew abandoned the ship.\tL'équipage a quitté le navire.\nThe days are getting longer.\tLes jours s'allongent.\nThe days are growing longer.\tLes jours s'allongent.\nThe deadline is approaching.\tLa date limite s'approche.\nThe deadlock was inevitable.\tCette impasse était une fatalité.\nThe deal did not go through.\tL'accord n'est pas passé.\nThe devil is in the details.\tLe diable se cache dans les détails.\nThe diamond appears genuine.\tLe diamant semble authentique.\nThe dog didn't eat the meat.\tLe chien n'a pas mangé la viande.\nThe dog jumped over a chair.\tLe chien a sauté par-dessus une chaise.\nThe dog sniffed her luggage.\tLe chien a reniflé ses bagages.\nThe dog sniffed her luggage.\tLe chien renifla ses bagages.\nThe dog was frozen to death.\tLe chien est mort de froid.\nThe door was partially open.\tLa porte était entrouverte.\nThe enemy attacked the town.\tL'ennemi attaqua la ville.\nThe experiment has to begin.\tL'expérience doit commencer.\nThe fire went out by itself.\tLe feu s'est éteint naturellement.\nThe first stage is complete.\tLa première étape est achevée.\nThe fish tasted like salmon.\tLe poisson avait goût de saumon.\nThe food was great in Italy.\tLa nourriture en Italie était bonne.\nThe freezer's in the garage.\tLe congélateur se trouve dans le garage.\nThe gate is closed at eight.\tLa porte est fermée à huit heures.\nThe ghost vanished suddenly.\tLe fantôme disparut tout à coup.\nThe girl cried out for help.\tLa fille criait à l'aide.\nThe girl trembled with fear.\tLa fille tremblait de peur.\nThe goods arrived undamaged.\tLes marchandises arrivèrent intactes.\nThe goods arrived undamaged.\tLes marchandises sont arrivées intactes.\nThe goods arrived yesterday.\tLes marchandises sont arrivées hier.\nThe guy with a beard is Tom.\tLe gars avec une barbe est Tom.\nThe hail cracked the window.\tLa grêle a fendu la vitre.\nThe house has icicles on it.\tIl y des glaçons sur la maison.\nThe house is well insulated.\tLa maison est bien isolée.\nThe house was painted white.\tLa maison était peinte en blanc.\nThe ice in the water melted.\tLa glace dans l'eau fondit.\nThe idea is very attractive.\tL'idée est alléchante.\nThe island is warm all year.\tL'île est chaude toute l'année.\nThe job is practically done.\tLe travail est pratiquement fait.\nThe kids are finally asleep.\tLes gosses sont enfin endormis.\nThe lake water is very cold.\tL'eau du lac est très froide.\nThe lid screws onto the jar.\tLe couvercle se visse sur le bocal.\nThe light suddenly went out.\tLa lumière s'est soudain éteinte.\nThe machine is out of order.\tCette machine est endommagée.\nThe machine is out of order.\tLa machine est hors service.\nThe mail can't be delivered.\tLe courrier ne peut pas être distribué.\nThe man connected two wires.\tL'homme connecta deux fils.\nThe man connected two wires.\tL'homme a connecté deux fils.\nThe man was bitten by a dog.\tL'homme fut mordu par un chien.\nThe match didn't take place.\tLe match n'a pas eu lieu.\nThe medicine made me sleepy.\tLe médicament m'a donné sommeil.\nThe medicine saved her life.\tLe médicament sauva sa vie.\nThe medicine worked marvels.\tCe médicament a fait des miracles.\nThe meeting was almost over.\tLa réunion touchait à sa fin.\nThe meeting was almost over.\tLa réunion prenait fin.\nThe meeting was almost over.\tLa réunion était sur le point de se terminer.\nThe meeting was almost over.\tLa réunion était pour ainsi dire close.\nThe museum is worth a visit.\tLe musée vaut une visite.\nThe negotiations have ended.\tLes négociations sont terminées.\nThe noise gets on my nerves.\tLe bruit me tape sur les nerfs.\nThe north wind blew all day.\tLe vent du nord a soufflé toute la journée.\nThe pain started last night.\tLa douleur a commencé la nuit dernière.\nThe party ended at midnight.\tLa fête s'est terminée à minuit.\nThe picture is hung crooked.\tLe tableau est de travers.\nThe police are following us.\tLa police nous suit.\nThe police caught him at it.\tLa police l'a pris en flagrant délit.\nThe police caught the thief.\tLa police a attrapé le voleur.\nThe poor are getting poorer.\tLes pauvres s'appauvrissent.\nThe poor are getting poorer.\tLes pauvres s'appauvrissent davantage.\nThe price is not reasonable.\tCe prix n'est pas raisonnable.\nThe prisoners were set free.\tLes prisonniers furent libérés.\nThe prisoners were set free.\tLes prisonnières furent libérées.\nThe prisoners were set free.\tLes prisonniers ont été libérés.\nThe prisoners were set free.\tLes prisonnières ont été libérées.\nThe problem resolved itself.\tLe problème s'est résolu tout seul.\nThe problem resolved itself.\tLe problème s'est résolu de lui-même.\nThe proof is in the pudding.\tFais-le et tu verras !\nThe results are significant.\tLes résultats sont considérables.\nThe rich are getting richer.\tLes riches s'enrichissent.\nThe road came to a dead end.\tLa route aboutissait à une impasse.\nThe roast lamb is very good.\tL'agneau rôti est délicieux.\nThe roof of my house is red.\tLe toit de ma maison est rouge.\nThe room is extremely small.\tLa chambre est extrêmement petite.\nThe room smelled of tobacco.\tLa pièce sentait le tabac.\nThe room smelled of tobacco.\tLa pièce avait une odeur de tabac.\nThe rules apply to everyone.\tLes règles s'appliquent à tous.\nThe rumor proved to be true.\tLa rumeur s'est révélée être vraie.\nThe servant swept the floor.\tLe servant nettoya le sol.\nThe shop stays open all day.\tLe magasin reste ouvert toute la journée.\nThe sisters are quite alike.\tLes sœurs sont assez semblables.\nThe sisters hate each other.\tLes sœurs se détestent mutuellement.\nThe sisters hate each other.\tLes sœurs se détestent l'une l'autre.\nThe sisters hate each other.\tLes sœurs se détestent les unes les autres.\nThe sky is getting brighter.\tLe ciel s'éclaircit.\nThe sky was completely dark.\tLe ciel était très sombre.\nThe store is closed Mondays.\tLe magasin est fermé le lundi.\nThe store is not open today.\tLe magasin n'est pas ouvert aujourd'hui.\nThe storm stopped the train.\tLa tempête a fait arrêter le train.\nThe stripes were horizontal.\tLes rayures étaient horizontales.\nThe student raised his hand.\tL'étudiant leva la main.\nThe student raised his hand.\tL'étudiant a levé la main.\nThe summer vacation is over.\tLes vacances d'été sont passées.\nThe summer vacation is over.\tLes congés d'été sont passés.\nThe sun is shining brightly.\tLe soleil brille de façon éclatante.\nThe suspect is a black male.\tLe suspect est un homme noir.\nThe talks should begin soon.\tLes pourparlers devraient bientôt commencer.\nThe teacher let him go home.\tL'instituteur le laissa rentrer chez lui.\nThe television doesn't work.\tLe téléviseur ne marche pas.\nThe thermostat is defective.\tLe thermostat est défectueux.\nThe towel was quite useless.\tLa serviette fut tout à fait inutile.\nThe train is always on time.\tLe train est toujours à l'heure.\nThe train is always on time.\tLe train est toujours ponctuel.\nThe train made a brief stop.\tLe train fit une brève halte.\nThe trees will soon be bare.\tLes arbres seront vite dénudés.\nThe trees will soon be bare.\tLes arbres seront bientôt dénudés.\nThe trip was very expensive.\tLe voyage coûta fort cher.\nThe troops were annihilated.\tLes troupes furent anéanties.\nThe village needs your help.\tLe village a besoin de votre aide.\nThe village needs your help.\tLe village a besoin de ton aide.\nThe weather is nice tonight.\tIl fait bon ce soir.\nThe weather is nice tonight.\tIl fait beau temps, ce soir.\nThe weather's bad, isn't it?\tLe temps est mauvais, non ?\nThe whole house was shaking.\tToute la maison tremblait.\nThe whole world is watching.\tLe monde entier nous regarde.\nThe work was very difficult.\tLe travail était très dur.\nThe work was very difficult.\tLe travail était très difficile.\nThe world is full of idiots.\tLe monde est plein d’idiots.\nThe wound is not yet healed.\tLa blessure n'est pas encore guérie.\nTheir concert was a big hit.\tLeur concert fut un grand succès.\nTheir names have escaped me.\tLeurs noms m'avaient échappé.\nTheir work seems good to me.\tLeur travail me semble bon.\nThere are five pencils here.\tIci, il y a cinq crayons.\nThere are holes in the roof.\tIl y a des trous dans le toit.\nThere is a hole in his sock.\tIl y a un trou dans sa chaussette.\nThere is a map on the table.\tIl y a un plan sur la table.\nThere is no air on the moon.\tIl n'y a pas d'air sur la Lune.\nThere is no hope of success.\tIl n'y a aucune chance de réussite.\nThere isn't much wind today.\tIl n'y a guère de vent aujourd'hui.\nThere were flies everywhere.\tIl y avait des mouches partout.\nThere's a full moon tonight.\tCe soir, c'est la pleine lune.\nThere's a full moon tonight.\tLa lune est pleine cette nuit.\nThere's a hole in this sock.\tIl y a un trou dans cette chaussette.\nThere's a lot of water left.\tIl y a encore beaucoup d'eau.\nThere's a new boy in school.\tIl y a un nouveau garçon à l'école.\nThere's a problem with that.\tIl y a un problème avec ça.\nThere's a yellow rose there.\tIl y a une rose jaune ici.\nThere's been a complication.\tIl y a eu une complication.\nThere's no mistake about it.\tIl n'y pas de problème avec ça.\nThere's no one sitting here.\tPersonne n'est assis ici.\nThere's no point in waiting.\tIl ne sert à rien d'attendre.\nThere's no point in waiting.\tAttendre ne sert à rien.\nThere's no shortage of work.\tCe n'est pas le travail qui manque.\nThere's no turning back now.\tOn ne peut plus retourner en arrière maintenant.\nThere's not much difference.\tIl n'y a guère de différence.\nThere's nothing more to say.\tIl n'y a rien de plus à dire.\nThere's nothing more to say.\tIl n'y a rien d'autre à dire.\nThere's nothing more to say.\tIl n'y a rien à ajouter.\nThere's nothing we can't do.\tIl n'y a rien d'impossible pour nous.\nThese two leaves look alike.\tCes deux feuilles se ressemblent.\nThey addressed me as doctor.\tIls me donnèrent du « Docteur ».\nThey addressed me as doctor.\tIls s'adressèrent à moi par « Docteur ».\nThey agreed to meet me here.\tElles ont accepté de me rencontrer ici.\nThey agreed to meet me here.\tIls ont accepté de me rencontrer ici.\nThey all burst out laughing.\tElles ont toutes éclaté de rire.\nThey are about the same age.\tIls sont à peu près du même âge.\nThey are about the same age.\tElles sont à peu près du même âge.\nThey are both good teachers.\tCe sont tous les deux de bons professeurs.\nThey are reading their book.\tIls lisent leur livre.\nThey are reading their book.\tElles lisent leur livre.\nThey aren't afraid of death.\tIls n'ont pas peur de la mort.\nThey begged us to help them.\tIls nous suppliaient de les aider.\nThey can't do anything else.\tIls ne peuvent rien faire d'autre.\nThey can't do anything else.\tElles ne peuvent rien faire d'autre.\nThey concluded he was lying.\tIls conclurent qu'il mentait.\nThey concluded he was lying.\tElles conclurent qu'il mentait.\nThey concluded he was lying.\tIls ont conclu qu'il mentait.\nThey could do with our help.\tIls pourraient user de notre aide.\nThey crushed all resistance.\tIls ont écrasé toute résistance.\nThey crushed all resistance.\tElles ont écrasé toute résistance.\nThey defended their country.\tIls ont défendu leur pays.\nThey died one after another.\tIls moururent l'un après l'autre.\nThey died one after another.\tElles moururent l'une après l'autre.\nThey died one after another.\tIls sont morts l'un après l'autre.\nThey died one after another.\tElles sont mortes l'une après l'autre.\nThey don't go well together.\tIls ne vont pas bien ensemble.\nThey don't want you to know.\tIls ne veulent pas que vous sachiez.\nThey don't want you to know.\tElles ne veulent pas que vous sachiez.\nThey drove the adults crazy.\tIls rendaient dingues les adultes.\nThey explored the Antarctic.\tIls explorèrent l'Antarctique.\nThey fight like cat and dog.\tIls se disputent comme chien et chat.\nThey fled in all directions.\tIls fuirent dans toutes les directions.\nThey fled in all directions.\tElles fuirent dans toutes les directions.\nThey found Tom in the crowd.\tIls ont trouvé Tom dans la foule.\nThey found the stolen money.\tIls ont trouvé l'argent volé.\nThey got to be good friends.\tIls devinrent bon amis.\nThey got to be good friends.\tElles devinrent bonnes amies.\nThey had lost the Civil War.\tIls avaient perdu la guerre civile.\nThey have a beautiful house.\tIls ont une belle maison.\nThey have nothing in common.\tIls n'ont rien en commun.\nThey have their own culture.\tIls ont leur culture.\nThey have to clean the room.\tIls doivent nettoyer la chambre.\nThey invited them to dinner.\tIls les ont invitées à dîner.\nThey invited them to dinner.\tElles les ont invités à dîner.\nThey invited them to dinner.\tElles les ont invitées à dîner.\nThey live in a rented house.\tIls habitent dans une maison louée.\nThey live in a rented house.\tIls vivent dans une maison de location.\nThey live in the same state.\tIls vivent dans le même état.\nThey live in the same state.\tElles vivent dans le même état.\nThey made fun of my clothes.\tElles se moquèrent de mes vêtements.\nThey made fun of my clothes.\tElles se moquèrent de mes habits.\nThey made fun of my clothes.\tIls se moquèrent de mes vêtements.\nThey made fun of my clothes.\tIls se moquèrent de mes habits.\nThey made fun of my clothes.\tIls se sont moqués de mes vêtements.\nThey made fun of my clothes.\tIls se sont moqués de mes habits.\nThey made fun of my clothes.\tElles se sont moquées de mes vêtements.\nThey made fun of my clothes.\tElles se sont moquées de mes habits.\nThey made fun of my clothes.\tIls se sont moqués de ma tenue.\nThey made fun of my clothes.\tElles se sont moquées de ma tenue.\nThey made us work all night.\tIls nous ont fait travailler toute la nuit.\nThey made us work all night.\tElles nous ont fait travailler toute la nuit.\nThey met each other halfway.\tElles se sont rencontrées à mi-chemin.\nThey met each other halfway.\tIls se sont rencontrés à mi-chemin.\nThey painted their toenails.\tElles se peignirent les ongles de pieds.\nThey painted their toenails.\tElles se sont peint les ongles de pieds.\nThey replaced coal with oil.\tIls substituèrent du pétrole au charbon.\nThey replaced coal with oil.\tIls ont substitué du pétrole au charbon.\nThey saw him enter the room.\tIls le virent entrer dans la pièce.\nThey saw him enter the room.\tElles le virent entrer dans la pièce.\nThey saw him enter the room.\tIls l'ont vu entrer dans la pièce.\nThey saw him enter the room.\tElles l'ont vu entrer dans la pièce.\nThey settled in the country.\tIls se sont installés à la campagne.\nThey slept in the same room.\tIls ont dormi dans la même pièce.\nThey slept in the same room.\tElles ont dormi dans la même pièce.\nThey slept in the same room.\tIls dormirent dans la même pièce.\nThey slept in the same room.\tElles dormirent dans la même pièce.\nThey study in the afternoon.\tIls étudient l'après-midi.\nThey study in the afternoon.\tElles étudient l'après-midi.\nThey teased the new student.\tIls taquinèrent le nouvel étudiant.\nThey teased the new student.\tIls taquinèrent la nouvelle étudiante.\nThey teased the new student.\tIls ont taquiné le nouvel étudiant.\nThey teased the new student.\tIls ont taquiné la nouvelle étudiante.\nThey took food and clothing.\tIls ont pris de la nourriture et des vêtements.\nThey treated us like family.\tIls nous ont traités comme de la famille.\nThey went on board the ship.\tIls montèrent à bord du bateau.\nThey were caught red-handed.\tElles ont été prises en flagrant délit.\nThey were so happy together.\tIls étaient si heureux ensemble.\nThey were so happy together.\tElles étaient si heureuses ensemble.\nThey were so happy together.\tIls étaient tellement heureux ensemble.\nThey were so happy together.\tElles étaient tellement heureuses ensemble.\nThey won't have arrived yet.\tIls ne seront pas encore arrivés.\nThey won't have arrived yet.\tElles ne seront pas encore arrivées.\nThey'll all be here tonight.\tIls seront tous là ce soir.\nThey'll all be here tonight.\tElles seront toutes là ce soir.\nThey're acting on their own.\tIls agissent de leur propre chef.\nThey're acting on their own.\tElles agissent de leur propre chef.\nThey're enjoying themselves.\tIls s'amusent.\nThey're enjoying themselves.\tElles s'amusent.\nThey're part-time employees.\tCe sont des employés à temps partiel.\nThey're part-time employees.\tCe sont des employées à temps partiel.\nThey're thirty dollars each.\tIls sont à trente dollars chacun.\nThey're thirty dollars each.\tElles sont à trente dollars chacune.\nThey're washing their hands.\tElles se lavent les mains.\nThings are not looking good.\tLes choses ne se présentent pas bien.\nThings didn't go as planned.\tLes choses ne se sont pas déroulées comme prévu.\nThink globally, act locally.\tPensez mondialement, agissez localement !\nThis apple tastes very sour.\tCette pomme est très acide.\nThis article is of no value.\tCet article n'a aucune valeur.\nThis bed is too soft for me.\tCe lit est trop mou pour moi.\nThis blue backpack is heavy.\tCe sac à dos bleu est lourd.\nThis book has many pictures.\tCe livre contient de nombreuses images.\nThis book is full of errors.\tCet ouvrage est truffé d'erreurs.\nThis book is full of errors.\tCet livre est truffé d'erreurs.\nThis cake is very delicious.\tCe gâteau est vraiment délicieux.\nThis cake is very delicious.\tCe gâteau est un vrai délice.\nThis can't be what you want.\tÇa ne peut pas être ce que tu veux.\nThis car needs to be washed.\tCette voiture a besoin d'être lavée.\nThis child has been adopted.\tCet enfant a été adopté.\nThis doesn't prove anything.\tÇa ne prouve pas quoi que ce soit.\nThis has all been a mistake.\tTout ça était une erreur.\nThis house has eleven rooms.\tCette maison compte onze pièces.\nThis house is far too small.\tCette maison est bien trop petite.\nThis house is uninhabitable.\tCette maison est inhabitable.\nThis house will rent easily.\tCette maison se louera facilement.\nThis is a comfortable chair.\tC'est une chaise confortable.\nThis is a dangerous mission.\tC'est une mission dangereuse.\nThis is a frightening place.\tC'est un endroit effrayant.\nThis is a life-sized statue.\tC'est une statue à taille réelle.\nThis is a new kind of melon.\tC'est une nouvelle espèce de melon.\nThis is a real popular item.\tC'est un article fort populaire.\nThis is a real popular item.\tC'est un article très populaire.\nThis is a time of rejoicing.\tC'est le moment de la réjouissance.\nThis is a very scary moment.\tC'est un moment terrifiant.\nThis is all very disturbing.\tTout ceci est très perturbant.\nThis is an important letter.\tC'est une lettre importante.\nThis is by far the best way.\tC'est de loin la meilleure manière.\nThis is dangerous territory.\tC'est un territoire dangereux.\nThis is exactly what I want.\tC'est bien ça que je veux.\nThis is for your own safety.\tC'est pour ta propre sécurité.\nThis is for your own safety.\tC'est pour votre propre sécurité.\nThis is for your protection.\tC'est pour ta protection.\nThis is for your protection.\tC'est pour votre protection.\nThis is getting complicated.\tCela se complique.\nThis is getting out of hand.\tC'est en train de devenir incontrôlable.\nThis is how you get results.\tC'est ainsi qu'on arrive à des résultats.\nThis is kind of interesting.\tC'est plutôt intéressant.\nThis is my business address.\tC'est mon adresse professionnelle.\nThis is no time for modesty.\tL'heure n'est pas à la modestie.\nThis is no time to be funny.\tL'heure n'est pas à l'amusement.\nThis is not a small problem.\tCe n'est pas un mince problème.\nThis is risky and dangerous.\tC'est risqué et dangereux.\nThis is strictly between us.\tCeci est strictement entre nous.\nThis is the end of my story.\tC'est la fin de mon histoire.\nThis is the only one I have.\tC'est le seul que j'ai.\nThis is the only one I have.\tC'est la seule que j'ai.\nThis is your pilot speaking.\tC'est votre pilote qui s'adresse à vous.\nThis isn't a place for kids.\tCe n'est pas un endroit pour les enfants.\nThis isn't the way to do it.\tCe n'est pas une façon de faire.\nThis isn't what I asked for.\tCe n'est pas ce que j'ai demandé.\nThis knife doesn't cut well.\tCe couteau ne coupe pas bien.\nThis medicine tastes bitter.\tCe médicament a un goût amer.\nThis movie is a masterpiece.\tCe film est un chef-d'œuvre.\nThis paint comes off easily.\tCette peinture part facilement.\nThis pen doesn't write well.\tCe stylo n'écrit pas bien.\nThis photo was taken by Tom.\tCette photo a été prise par Tom.\nThis pond has a lot of carp.\tL'étang regorge de carpes.\nThis problem affects us all.\tCe problème nous affecte tous.\nThis purse is made of paper.\tCe porte-monnaie est en papier.\nThis ring is very expensive.\tCet anneau est très cher.\nThis road is closed to cars.\tCette route est fermée aux voitures.\nThis room is not very large.\tCette pièce n'est pas très grande.\nThis rose is very beautiful.\tCette rose est très belle.\nThis rule has no exceptions.\tCette règle ne connaît aucune exception.\nThis sentence is not French.\tCette phrase n'est pas française.\nThis song is familiar to us.\tCette chanson nous est familière.\nThis stone weighs five tons.\tCette pierre pèse cinq tonnes.\nThis store sells vegetables.\tCe magasin vend des légumes.\nThis story is worth reading.\tCette histoire vaut la peine d'être lue.\nThis telephone doesn't work.\tCe téléphone ne fonctionne pas.\nThis territory is uncharted.\tCe territoire est inexploré.\nThis watch is made in Japan.\tCette montre est fabriquée au Japon.\nThis water is safe to drink.\tOn peut boire cette eau sans aucun risque.\nThis website is very useful.\tCe site internet est très utile.\nThis will be a game changer.\tCe truc va changer les règles du jeu.\nThis will be a game changer.\tC'est un changement de paradigme.\nThis will not cost too much.\tÇa ne va pas coûter grand-chose.\nThis will protect your skin.\tÇa protégera ta peau.\nThis will protect your skin.\tÇa protégera votre peau.\nThis won't be the last time.\tCe ne sera pas la dernière fois.\nThis would embarrass anyone.\tCela embarrasserait n'importe qui.\nThose children are cheerful.\tCes enfants sont joyeux.\nThose flowers are beautiful.\tCes fleurs sont belles.\nThose houses are my uncle's.\tCes maisons sont celles de mon oncle.\nThose standing were all men.\tCeux qui se tenaient debout étaient tous des hommes.\nThose were his actual words.\tCe furent ses paroles exactes.\nThose who know him like him.\tCeux qui le connaissent l'apprécient.\nTo know oneself is not easy.\tSe connaître soi-même n'est pas simple.\nTo the Hilton Hotel, please.\tÀ l'hôtel Hilton s'il vous plait.\nToday I turn four years old.\tJ'ai quatre ans aujourd'hui.\nToday is a national holiday.\tAujourd'hui est un jour férié.\nToday is not your lucky day.\tAujourd'hui n'est pas ton jour de chance.\nToday, we are going dancing.\tAujourd'hui, nous allons danser.\nTom already has our respect.\tTom a déjà notre respect.\nTom already knows the truth.\tTom sait déjà la vérité.\nTom always does that for me.\tTom fait toujours ça pour moi.\nTom and Mary flew to Boston.\tTom et Mary ont pris l'avion pour Boston.\nTom and Mary have broken up.\tTom et Marie ont rompu.\nTom and Mary know the truth.\tTom et Mary connaissent la vérité.\nTom and Mary look surprised.\tTom et Mary ont l'air surpris.\nTom asked if you'd be there.\tTom a demandé si tu serais là.\nTom asked if you'd be there.\tTom a demandé si vous y seriez.\nTom asked me to go with him.\tTom m'a demandé d'aller avec lui.\nTom asked me why I was late.\tTom m'a demandé pourquoi j'étais en retard.\nTom attended Mary's funeral.\tTom était présent à l'enterrement de Mary.\nTom attended Mary's funeral.\tTom a assisté à l'enterrement de Mary.\nTom bought a camera on eBay.\tTom a acheté un appareil photo sur eBay.\nTom came back an hour later.\tTom est revenu une heure après.\nTom can barely speak French.\tTom sait à peine parler français.\nTom can play the piano well.\tTom peut bien jouer du piano.\nTom can run faster than you.\tTom peut courir plus vite que toi.\nTom can stay if he wants to.\tTom peut rester s'il le souhaite.\nTom can't buy himself a car.\tTom ne peut pas s'acheter une voiture.\nTom can't speak French well.\tTom ne peux pas bien parler français.\nTom can't tie his own shoes.\tTom ne peut pas lacer ses propres chaussures.\nTom can't work this evening.\tTom ne peut pas travailler ce soir.\nTom certainly fooled us all.\tTom nous a certainement tous trompés.\nTom climbed down the ladder.\tTom est descendu de l'échelle.\nTom comes here once a month.\tTom vient ici une fois par mois.\nTom could do with some help.\tUn peu d'aide arrangerait bien Tom.\nTom could do with some help.\tTom accepterait bien un peu d'aide.\nTom couldn't find his shoes.\tTom n'a pas pu trouver ses chaussures.\nTom couldn't have said that.\tTom n'aurait pas pu dire cela.\nTom deserves another chance.\tTom mérite une autre chance.\nTom despises people who lie.\tTom méprise les menteurs.\nTom did a very stupid thing.\tThomas a fait une grosse bêtise.\nTom didn't answer his phone.\tTom n'a pas répondu à son téléphone.\nTom didn't answer the phone.\tTom n'a pas répondu au téléphone.\nTom didn't do anything else.\tTom n'a rien fait d'autre.\nTom didn't do anything else.\tTom ne fit rien d'autre.\nTom didn't even want to eat.\tTom n'a même pas voulu manger.\nTom didn't even want to eat.\tTom ne voulait même pas manger.\nTom didn't have to thank me.\tTom n'avait pas besoin de remercier.\nTom didn't know their names.\tTom ne connaissait pas leurs noms.\nTom didn't mean to hurt you.\tTom n'avait pas l'intention de te blesser.\nTom didn't say a word to me.\tTom ne m'a pas dit un mot.\nTom didn't tell me her name.\tTom ne m'a pas dit son nom.\nTom died a few months later.\tTom est mort quelques mois plus tard.\nTom doesn't know how to ski.\tTom ne sait pas skier.\nTom doesn't know who to ask.\tTom ne sait pas à qui demander.\nTom doesn't like my friends.\tTom n'aime pas mes amis.\nTom doesn't like my friends.\tTom n'aime pas mes amies.\nTom doesn't look rich to me.\tTom n'a pas l'air riche pour moi.\nTom doesn't owe us anything.\tTom ne nous doit rien.\nTom doesn't understand this.\tTom ne comprends pas ça.\nTom doesn't want any coffee.\tTom ne veut pas de café.\nTom doesn't want to be late.\tTom ne veut pas être en retard.\nTom doesn't want to go home.\tTom ne veut pas aller à la maison.\nTom doesn't want to see you.\tTom ne veut pas vous voir.\nTom doesn't want to see you.\tTom ne veut pas te voir.\nTom drinks coffee every day.\tTom boit du café tous les jours.\nTom drove his car to Boston.\tTom a conduit sa voiture jusqu'à Boston.\nTom eats too much junk food.\tTom mange trop de cochonneries.\nTom forced himself to speak.\tTom se força à parler.\nTom goes swimming every day.\tTom nage chaque jour.\nTom got the ticket for free.\tTom a obtenu le ticket gratuitement.\nTom got the ticket for free.\tTom a eu le ticket gratuitement.\nTom had a knife in his hand.\tTom avait un couteau dans la main.\nTom had a nervous breakdown.\tTom a fait une crise de nerfs.\nTom had a smile on his face.\tTom avait le sourire aux lèvres.\nTom had always wanted a son.\tTom avait toujours voulu un fils.\nTom had long hair last year.\tTom avait les cheveux long l'an dernier.\nTom had never hit me before.\tTom ne m'avait jamais frappé avant.\nTom had reasons to be angry.\tTom avait des raisons d'être énervé.\nTom had reasons to be angry.\tTom avait des raisons d'être en colère.\nTom had to wait three hours.\tTom a dû attendre trois heures.\nTom has a house with a pool.\tTom a une maison avec piscine.\nTom has a problem with Mary.\tTom a un problème avec Mary.\nTom has a scar on his cheek.\tTom a une cicatrice sur la joue.\nTom has a ten-speed bicycle.\tTom a un vélo à dix vitesses.\nTom has already gone to bed.\tTom est déjà allé au lit.\nTom has beautiful blue eyes.\tTom a de magnifiques yeux bleus.\nTom has been behaving oddly.\tTom se comporte bizarrement.\nTom has been friendly to me.\tTom a été très gentil avec moi.\nTom has braces on his teeth.\tTom a un appareil dentaire.\nTom has braces on his teeth.\tTom a des bagues sur les dents.\nTom has changed very little.\tTom a très peu changé.\nTom has dyed his hair black.\tTom s'est teint les cheveux en noir.\nTom has quit using Facebook.\tTom a cessé d'utiliser Facebook.\nTom has solved that problem.\tTom a résolu ce problème.\nTom has some homework to do.\tTom a des devoirs à faire.\nTom has some nosy neighbors.\tTom a quelques voisins curieux.\nTom has some nosy neighbors.\tTom a quelques voisins indiscrets.\nTom has some very good news.\tTom a quelques très bonnes nouvelles.\nTom has tattoos on his arms.\tTom a des tatouages sur les bras.\nTom has three mobile phones.\tTom a trois téléphones portables.\nTom has to follow our rules.\tTom doit suivre nos règles.\nTom has written three books.\tTom a écrit trois livres.\nTom hasn't forgiven anybody.\tTom n'a pardonné à personne.\nTom hasn't told me anything.\tTom ne m'a rien dit.\nTom hasn't won anything yet.\tTom n'a encore rien gagné.\nTom helped me with the move.\tTom m'a aidé à déménager.\nTom insisted on going alone.\tTom a insisté pour y aller seul.\nTom insisted on going alone.\tTom insista pour y aller seul.\nTom is John's older brother.\tTom est le grand frère de John.\nTom is a compulsive hoarder.\tTom est un amasseur compulsif.\nTom is a decent sort of guy.\tTom est un garçon honnête.\nTom is a decent sort of guy.\tTom est un genre de type convenable.\nTom is a really good friend.\tTom est vraiment un bon ami.\nTom is a really good person.\tTom est vraiment quelqu'un de bien.\nTom is a shrewd businessman.\tTom est habile en affaires.\nTom is a very dangerous man.\tTom est un homme très dangereux.\nTom is a very gentle person.\tTom est un garçon très doux.\nTom is about to fall asleep.\tTom est sur le point de s'endormir.\nTom is also studying French.\tTom étudie également le français.\nTom is in a good mood today.\tTom est de bonne humeur aujourd'hui.\nTom is not as young as I am.\tTom n'est pas aussi jeune que moi.\nTom is not yet able to swim.\tTom ne sait pas encore nager.\nTom is only three weeks old.\tTom n'a que trois semaines.\nTom is persistent, isn't he?\tTom est persistant, n'est-ce pas ?\nTom is persuaded he's right.\tTom est sûr d'avoir raison.\nTom is photogenic, isn't he?\tTom est photogénique, n'est-ce pas?\nTom is poor, but he's happy.\tTom est pauvre mais il est heureux.\nTom is pretty good at chess.\tTom est plutôt doué pour jouer aux échecs.\nTom is probably at home now.\tTom est probablement à la maison maintenant.\nTom is really proud of Mary.\tTom est vraiment fier de Mary.\nTom is really shy, isn't he?\tTom est vraiment timide, n'est-ce pas ?\nTom is sleeping like a baby.\tTom est en train de dormir comme un bébé.\nTom is sleeping like a baby.\tTom dort comme un bébé.\nTom is swimming in the pool.\tTom nage dans la piscine.\nTom is teaching me to paint.\tTom m'apprend à peindre.\nTom is the man of my dreams.\tTom est l'homme de mes rêves.\nTom is the star of the show.\tTom est la vedette de l'émission.\nTom is the star of the show.\tTom est la vedette du spéctacle.\nTom is the star of the show.\tTom est la star de l'émission.\nTom is the star of the show.\tTom est la star du spéctacle.\nTom is traveling by himself.\tTom voyage tout seul.\nTom is very hard on himself.\tTom est très dur envers lui-même.\nTom is very young, isn't he?\tTom est très jeune, n'est-ce pas ?\nTom is watering the flowers.\tTom est en train d'arroser les fleurs.\nTom is wearing John's shoes.\tTom porte les chaussures de John.\nTom kissed Mary on the neck.\tTom a embrassé Marie dans le cou.\nTom knew nothing about Mary.\tTom ne savait rien à propos de Mary.\nTom knew that Mary was busy.\tTom savait Mary occupée.\nTom knew that Mary was busy.\tTom savait que Mary était occupée.\nTom knew that Mary was rich.\tTom savait Mary riche.\nTom knew that Mary was rich.\tTom savait que Mary était riche.\nTom knew what Mary had done.\tTom savait ce que Marie avait fait.\nTom knows a girl named Mary.\tTom connait une fille prénommée Mary.\nTom knows a girl named Mary.\tTom connait une fille nommée Mary.\nTom knows a girl named Mary.\tTom connait une fille s'appelant Mary.\nTom knows a lot of proverbs.\tTom connaît de nombreux proverbes.\nTom knows this is the truth.\tTom sait que c'est la vérité.\nTom knows this is the truth.\tTom sait que ceci est la vérité.\nTom left thirty minutes ago.\tTom est parti il y a trente minutes.\nTom lived next to his uncle.\tTom vivait à côté de son oncle.\nTom lost control of the car.\tTom a perdu le contrôle de sa voiture.\nTom lost control of the car.\tTom perdit le contrôle de sa voiture.\nTom loves playing the piano.\tTom adore jouer du piano.\nTom made breakfast for Mary.\tTom a fait le petit-déjeuner pour Mary.\nTom makes a lot of mistakes.\tTom fait beaucoup d'erreurs.\nTom married a Canadian girl.\tTom a épousé une Canadienne.\nTom may have missed the bus.\tTom peut avoir raté le bus.\nTom may not be able to come.\tTom peut ne pas être capable de venir.\nTom may not wait any longer.\tTom ne peut plus attendre.\nTom moved to Boston in 2013.\tTom a déménagé à Boston en deux mille treize.\nTom needs money for college.\tTom a besoin d'argent pour les études collégiales.\nTom needs to know the truth.\tTom a besoin de connaître la vérité.\nTom never said a word to me.\tTom ne m'a jamais rien dit.\nTom no longer trusts anyone.\tTom ne croit plus personne.\nTom persuaded Mary to do it.\tTom a convaincu Mary de le faire.\nTom pressed a hidden button.\tTom appuya sur un bouton caché.\nTom pressed a hidden button.\tTom a appuyé sur un bouton caché.\nTom probably went to Boston.\tTom a probablement été à Boston.\nTom read the story out loud.\tTom a lu l'histoire à haute voix.\nTom rents rooms to students.\tTom loue des chambres à des étudiants.\nTom rode the roller coaster.\tTom est monté sur les montagnes russes.\nTom said Mary told him that.\tTom a dit que Mary lui avait dit cela.\nTom said it was on his desk.\tTom a dit que c'était sur son bureau.\nTom said we'd find you here.\tTom a dit qu'on te trouverait ici.\nTom said we'd find you here.\tTom a dit que nous vous trouverions ici.\nTom said we'd find you here.\tTom a dit que nous te trouverions ici.\nTom said we'd find you here.\tTom a dit qu'on vous trouverait ici.\nTom seems slightly confused.\tTom semble légèrement confus.\nTom seems to be sympathetic.\tTom semble être sympathique.\nTom seems unable to do that.\tTom semble incapable de faire cela.\nTom shaved off his mustache.\tTom a rasé sa moustache.\nTom shaved off his mustache.\tTom s'est rasé la moustache.\nTom should pay what he owes.\tTom devrait payer ce qu'il doit.\nTom should stay where he is.\tTom devrait rester où il est.\nTom should've been an actor.\tTom aurait dû être acteur.\nTom should've worked harder.\tTom aurait dû travailler davantage.\nTom shouldn't spend so much.\tTom ne devrait pas dépenser autant.\nTom showed me what he meant.\tTom m'a montré ce qu'il voulait dire.\nTom sings in a church choir.\tTom chante dans un chœur d'église.\nTom slipped and nearly fell.\tTom a glissé et est presque tombé.\nTom slipped and nearly fell.\tTom glissa et faillit tomber.\nTom sometimes walks to work.\tTom va au travail à pied quelquefois.\nTom started loading the gun.\tTom commença à charger le pistolet.\nTom started loading the gun.\tTom a commencé à charger le pistolet.\nTom started washing his car.\tTom a commencé de nettoyer sa voiture.\nTom still uses a typewriter.\tTom utilise encore une machine à écrire.\nTom stood there for a while.\tTom resta là un moment.\nTom told me a lot about you.\tTom m'a dit beaucoup de choses à ton sujet.\nTom told me to stay at home.\tTom m'a dit de rester à la maison.\nTom told me you were afraid.\tTom m'a dit que tu avais eu peur.\nTom told me you were afraid.\tTom m'a dit que vous aviez eu peur.\nTom took a bite of my apple.\tTom a pris une bouchée de ma pomme.\nTom took credit for my idea.\tTom s'est attribué le mérite de mon idée.\nTom took three deep breaths.\tTom a pris trois grandes respirations.\nTom tossed the ball to Mary.\tTom lança la balle vers Marie.\nTom turned off his computer.\tTom a éteint son ordinateur.\nTom turned on the car radio.\tTom alluma l'autoradio.\nTom used to bake us cookies.\tTom nous faisait des biscuits.\nTom used to be my boyfriend.\tTom était mon petit-ami.\nTom waited, but nobody came.\tTom a attendu, mais personne n'est venu.\nTom wanted to go home early.\tTom voulait rentrer chez lui tôt.\nTom wanted to learn to swim.\tTom voulait apprendre à nager.\nTom wanted to make a change.\tTom voulait changer les choses.\nTom wants me to go with him.\tTom veut que j'aille avec lui.\nTom wants to be a celebrity.\tTom veut devenir célèbre.\nTom wants to be your friend.\tTom veut être ton ami.\nTom wants to buy some books.\tTom veut acheter des livres.\nTom wants to move to Boston.\tTom veut partir pour Boston.\nTom was accepted to Harvard.\tTom était accepté à Harvard.\nTom was always there for me.\tTom a toujours été là pour moi.\nTom was in Boston that year.\tTom était à Boston cette année-là.\nTom was knocked unconscious.\tTom a été assommé.\nTom was making French fries.\tTom cuisait les pommes de terre.\nTom was sent back to Boston.\tTom était renvoyé à Boston.\nTom was silent for a moment.\tTom resta silencieux pendant un moment.\nTom was sitting at his desk.\tTom était assis à son bureau.\nTom was trying not to smile.\tTom essayait de ne pas sourire.\nTom watches TV all the time.\tTom regarde tout le temps la télévision.\nTom watches TV all the time.\tTom regarde la télévision en permanence.\nTom went there to meet Mary.\tTom est allé là-bas pour rencontrer Marie.\nTom will need to go further.\tTom aura besoin d'aller plus loin.\nTom won't play tennis today.\tTom ne jouera pas au tennis aujourd'hui.\nTom won't tell you anything.\tThomas ne vous dira rien.\nTom wondered if it was true.\tTom s'est demandé si c'était vrai.\nTom writes better than I do.\tTom écrit mieux que moi.\nTom's answer was surprising.\tLa réponse de Tom était surprenante.\nTom's arm must be amputated.\tLe bras de Tom doit être amputé.\nTom's body will be cremated.\tLe corps de Tom sera incinéré.\nTom's death was an accident.\tLa mort de Tom fut un accident.\nTom's death was preventable.\tLa mort de Tom était évitable.\nTom's efforts were rewarded.\tLes efforts de Tom ont été récompensés.\nTom's family was also there.\tLa famille de Tom était là aussi.\nTom's father is very strict.\tLe père de Tom est très sévère.\nTom's father was a diplomat.\tLe père de Tom était diplomate.\nTom's father's name is John.\tLe nom du père de Tom est John.\nTomorrow morning will be OK.\tDemain matin conviendra.\nToss the gun onto the table.\tPose le fusil sur la table.\nToss your gun on the ground.\tJette ton arme au sol.\nTrade helps nations develop.\tLe commerce aide les pays à se développer.\nTry and do better next time.\tEssaie et fais mieux la prochaine fois.\nTry not to splatter the ink.\tEssaie de ne pas faire de taches avec l'encre !\nTry to improve your English.\tEssaie d'améliorer ton anglais.\nTurn on the air conditioner.\tAllume l'air conditionné !\nTurn on the air conditioner.\tMets l'air conditionné en marche !\nTwenty years already passed.\tVingt ans se sont déjà écoulés.\nTwenty years is a long time.\tVingt ans, c'est très long.\nTwo times seven is fourteen.\tDeux fois sept font quatorze.\nWait here until I come back.\tAttends ici jusqu'à ce que je revienne !\nWait here until I come back.\tAttendez ici jusqu'à ce que je revienne !\nWait until tomorrow morning.\tAttends jusqu'à demain matin.\nWait until tomorrow morning.\tAttendez jusqu'à demain matin.\nWait, it could be dangerous.\tAttends, cela pourrait être dangereux.\nWake me up at seven o'clock.\tRéveille-moi à sept heures.\nWarm this morning, isn't it?\tChaud, ce matin, n'est-ce pas ?\nWas Tom in Boston yesterday?\tEst-ce que Tom était à Boston hier ?\nWas Tom in Boston yesterday?\tTom était-il à Boston hier ?\nWater power turns the wheel.\tL'énergie hydraulique actionne la roue.\nWater power turns the wheel.\tC'est l'énergie hydraulique qui actionne la roue.\nWe all care for one another.\tNous prenons tous soin les uns des autres.\nWe all care for one another.\tNous prenons toutes soin les unes des autres.\nWe all have passed the test.\tNous avons tous réussi l'examen.\nWe all live on planet Earth.\tNous vivons tous sur la planète Terre.\nWe all make mistakes, right?\tNous faisons tous deux des erreurs, n'est-ce pas ?\nWe all make mistakes, right?\tOn fait tous des erreurs, n'est-ce pas ?\nWe all make mistakes, right?\tNous faisons tous des erreurs, non ?\nWe all make mistakes, right?\tOn fait tous des erreurs, non ?\nWe all want Tom to be happy.\tNous voulons tous que Tom soit heureux.\nWe are apt to make mistakes.\tNous sommes susceptibles de commettre des erreurs.\nWe are apt to make mistakes.\tNous avons une propension à commettre des erreurs.\nWe are changing our clothes.\tNous changeons de vêtements.\nWe are going to have a baby.\tNous attendons un bébé.\nWe are going to have a baby.\tNous allons avoir un bébé.\nWe are having a mild winter.\tNous avons un hiver doux cette année.\nWe asked Tom some questions.\tNous avons posé quelques questions à Tom.\nWe bought some tennis balls.\tNous avons acheté quelques balles de tennis.\nWe bought this in Australia.\tNous avons acheté ceci en Australie.\nWe came by to wish you luck.\tNous sommes venus vous souhaiter bonne chance.\nWe came by to wish you luck.\tNous sommes venues vous souhaiter bonne chance.\nWe came by to wish you luck.\tNous sommes venus te souhaiter bonne chance.\nWe came by to wish you luck.\tNous sommes venues te souhaiter bonne chance.\nWe can hear the dog barking.\tNous pouvons entendre le chien aboyer.\nWe can talk in front of Tom.\tNous pouvons parler devant Tom.\nWe can talk in front of Tom.\tOn peut parler devant Tom.\nWe can't compromise on this.\tNous ne pouvons rien lâcher sur ça.\nWe can't help you with that.\tNous ne pouvons pas t'aider avec ça.\nWe can't lose sight of that.\tNous ne pouvons pas perdre ça de vue.\nWe can't sell that bracelet.\tNous ne pouvons pas vendre ce bracelet.\nWe cannot meet your demands.\tNous ne pouvons satisfaire vos exigences.\nWe could live in peace here.\tNous pourrions vivre en paix, ici.\nWe don't have a reservation.\tNous n'avons pas de réservation.\nWe don't have all afternoon.\tNous n'avons pas toute l'après-midi.\nWe don't have all afternoon.\tNous n'avons pas tout l'après-midi.\nWe don't have time to waste.\tNous n'avons pas de temps à perdre.\nWe don't know our neighbors.\tNous ne connaissons pas nos voisins.\nWe drink our tea with sugar.\tNous buvons notre thé avec du sucre.\nWe enjoyed playing football.\tOn s'est bien amusé à jouer au foot.\nWe finally struck a bargain.\tNous avons finalement conclu une affaire.\nWe flew across the Atlantic.\tNous avons volé au-dessus de l'Atlantique.\nWe flew across the Atlantic.\tNous volâmes au-dessus de l'Atlantique.\nWe get together once a year.\tOn se rencontre une fois par an.\nWe get together once a year.\tNous nous rencontrons une fois par an.\nWe gladly accept your offer.\tNous acceptons ton offre avec plaisir.\nWe gladly accept your offer.\tNous acceptons volontiers ton offre.\nWe had better sit down here.\tNous ferions mieux de nous asseoir ici.\nWe had so much fun together.\tNous nous sommes tellement amusés ensemble.\nWe had so much fun together.\tOn s'est tellement amusé ensemble.\nWe have a lot of work to do.\tNous avons beaucoup de travail à faire.\nWe have a lot to talk about.\tNous avons beaucoup à discuter.\nWe have always been friends.\tNous avons toujours été amis.\nWe have business to discuss.\tNous devons discuter.\nWe have no choice but to go.\tNous n'avons le choix que de partir.\nWe have no clue where he is.\tNous n'avons aucune idée d'où il se trouve.\nWe have no idea where he is.\tNous n'avons aucune idée d'où il se trouve.\nWe have room for three more.\tNous avons de la place pour trois autres.\nWe have something in common.\tNous avons quelque chose en commun.\nWe have to change something.\tIl nous faut changer quelque chose.\nWe have to do without sugar.\tNous devons nous passer de sucre.\nWe have to expect the worst.\tIl faut s'attendre au pire.\nWe have to study the matter.\tNous devons étudier la question.\nWe have two television sets.\tNous avons deux postes de télévision.\nWe have two television sets.\tNous avons deux téléviseurs.\nWe haven't been invited yet.\tNous n'avons pas encore été invités.\nWe haven't been invited yet.\tNous n'avons pas encore été invitées.\nWe hope to lower the tariff.\tNous espérons baisser le tarif.\nWe hope to return next year.\tNous espérons revenir l'an prochain.\nWe hurried to catch the bus.\tNous nous sommes dépêchés pour attraper le bus.\nWe invited him to our house.\tNous l'invitâmes chez nous.\nWe invited him to our house.\tNous l'avons invité chez nous.\nWe kept together for safety.\tNous restâmes ensemble par mesure de sécurité.\nWe kept together for safety.\tNous sommes restés ensemble par mesure de sécurité.\nWe kept together for safety.\tNous sommes restées ensemble par mesure de sécurité.\nWe know so little about Tom.\tOn sait si peu de choses à propos de Tom.\nWe leave tomorrow afternoon.\tNous partons demain après-midi.\nWe must carry out that plan.\tIl faut exécuter ce plan.\nWe must clean our classroom.\tNous devons nettoyer notre salle de classe.\nWe must concentrate on that.\tNous devons nous concentrer là-dessus.\nWe must never do this again.\tNous ne devons jamais plus le faire.\nWe must punish him severely.\tNous devons le punir sévèrement.\nWe must sleep outside today.\tNous devons dormir à l'extérieur, aujourd'hui.\nWe must stay perfectly calm.\tNous devons rester parfaitement calmes.\nWe need three more of these.\tNous en avons besoin de trois de plus.\nWe only have three bicycles.\tNous n'avons que trois vélos.\nWe organized a project team.\tNous avons organisé une équipe de projet.\nWe ran a hundred-meter dash.\tNous courûmes un cent mètres.\nWe ran a hundred-meter dash.\tNous avons couru un cent mètres.\nWe really enjoyed ourselves.\tNous nous sommes vraiment bien amusés.\nWe rent movies all the time.\tNous louons des films tout le temps.\nWe saw a castle ahead of us.\tNous vîmes, devant nous, un château.\nWe shook nuts from the tree.\tNous secouâmes l'arbre pour en faire choir les noix.\nWe should all work together.\tNous devrions tous travailler ensemble.\nWe should all work together.\tNous devrions toutes travailler ensemble.\nWe should hang out sometime.\tNous devrions sortir ensemble, un de ces quatre.\nWe should hang out sometime.\tOn devrait sortir ensemble, un de ces quatre.\nWe should have left earlier.\tNous aurions dû partir plus tôt.\nWe should probably tell Tom.\tNous devrions probablement le dire à Tom.\nWe should stick to our plan.\tNous devrions nous en tenir à notre plan.\nWe sometimes go for a drive.\tNous allons parfois faire un tour en voiture.\nWe stayed at the Dorchester.\tNous sommes restés au Dorchester.\nWe stayed at the Dorchester.\tNous sommes restées au Dorchester.\nWe subscribe to a newspaper.\tNous souscrivons à un journal.\nWe talked about many things.\tNous discutâmes de beaucoup de choses.\nWe thought it was hilarious.\tNous pensâmes que c'était hilarant.\nWe thought it was hilarious.\tNous avons pensé que c'était hilarant.\nWe took him for an American.\tNous l'avons pris pour un Américain.\nWe used to play in the park.\tAutrefois, nous jouions dans le parc.\nWe want further information.\tNous voulons plus d'information.\nWe went to London last year.\tNous sommes allés à Londres l'année dernière.\nWe went to the park to play.\tNous sommes allés dans le parc, pour jouer.\nWe were both afraid to talk.\tNous avions tous les deux peur de parler.\nWe were both afraid to talk.\tNous avions toutes les deux peur de parler.\nWe were forced to work hard.\tNous étions forcés à travailler dur.\nWe were very busy last week.\tLa semaine passée nous étions très occupés.\nWe were very busy last week.\tLa semaine passée nous étions très occupées.\nWe will be together forever.\tNous serons ensemble pour toujours.\nWe will die sooner or later.\tNous mourrons tôt ou tard.\nWe will play a tennis match.\tNous ferons une partie de tennis.\nWe will soon be having snow.\tNous aurons bientôt de la neige.\nWe will start when he comes.\tNous commencerons quand il arrivera.\nWe'd better get out of here.\tOn ferait mieux de sortir d'ici !\nWe'd better get out of here.\tNous ferions mieux de sortir d'ici !\nWe'd better leave her alone.\tNous ferions mieux de la laisser seule.\nWe'd better leave him alone.\tNous ferions mieux de le laisser tranquille.\nWe'd better leave him alone.\tNous ferions mieux de le laisser seul.\nWe'd better leave him alone.\tOn ferait mieux de le laisser seul.\nWe'd like a bottle of rosé.\tNous aimerions une bouteille de rosé.\nWe'd like to have some wine.\tNous aimerions avoir du vin.\nWe'll all be there together.\tNous y serons tous ensemble.\nWe'll all be there together.\tNous y serons toutes ensemble.\nWe'll give you your revenge.\tNous te donnerons ta revanche.\nWe'll see who answers first.\tOn va voir qui répond le premier.\nWe'll talk about that later.\tNous nous en entretiendrons plus tard.\nWe'll talk about this later.\tNous en parlerons plus tard.\nWe're about the same height.\tNous sommes à peu près de la même taille.\nWe're all being manipulated.\tNous sommes tous en train d'être manipulés.\nWe're all being manipulated.\tNous sommes toutes en train d'être manipulées.\nWe're all to blame for that.\tNous en sommes tous responsables.\nWe're all to blame for that.\tNous en sommes toutes responsables.\nWe're all to blame for that.\tC'est de notre faute, à tous.\nWe're all very good players.\tNous sommes tous de très bons joueurs.\nWe're all very good players.\tNous sommes toutes de très bonnes joueuses.\nWe're friends from way back.\tNous sommes vieux amis.\nWe're going to keep smiling.\tNous allons continuer à sourire.\nWe're going to work tonight.\tNous allons travailler ce soir.\nWe're married to each other.\tNous sommes mariés.\nWe're not breaking anything.\tNous n'allons pas casser quoi que ce soit.\nWe're not officially dating.\tOn ne sort pas ensemble officiellement.\nWe're quite certain of that.\tNous en sommes pour ainsi dire certains.\nWe're quite certain of that.\tNous en sommes pour ainsi dire certaines.\nWe're still shopping around.\tNous faisons encore des emplettes.\nWe're still shopping around.\tNous faisons encore des courses.\nWe're wasting precious time.\tNous perdons un temps précieux.\nWe're working at the moment.\tNous travaillons à l'instant.\nWe've got enough space here.\tNous avons suffisamment d'espace ici.\nWe've got to conserve water.\tNous devons conserver l'eau.\nWe've got to conserve water.\tNous devons préserver l'eau.\nWe've got to talk seriously.\tIl nous faut parler sérieusement.\nWe've run out of ammunition.\tNous avons épuisé nos munitions.\nWe've run out of ammunition.\tNous sommes à court de munitions.\nWell, tell me what you know.\tEh bien, dites-moi ce que vous savez !\nWell, tell me what you know.\tEh bien, dis-moi ce que tu sais !\nWell, that could be helpful.\tBien, ça pourrait nous aider.\nWhat Tom did was incredible.\tCe que Tom a fait était incroyable.\nWhat a pity you can't dance!\tQuel dommage que tu ne saches pas danser !\nWhat an extraordinary woman.\tQuelle femme extraordinaire !\nWhat are these people doing?\tQue font ces gens ?\nWhat are these people doing?\tQue font ces gens ?\nWhat are those people doing?\tQue font ces gens ?\nWhat are we doing for lunch?\tQue faisons-nous pour déjeuner ?\nWhat are we doing for lunch?\tQue faisons-nous pour dîner ?\nWhat are you all doing here?\tQu'êtes-vous tous en train de faire ici ?\nWhat are you all doing here?\tQu'êtes-vous toutes en train de faire ici ?\nWhat are you doing tomorrow?\tTu fais quoi demain ?\nWhat are you grinning about?\tQu'est-ce qui te prend ?\nWhat are you so angry about?\tQu'est-ce qui te met tant en colère ?\nWhat are you so happy about?\tPourquoi es-tu si heureux ?\nWhat are you supposed to do?\tQu'êtes-vous censé faire ?\nWhat are you supposed to do?\tQu'es-tu censé faire ?\nWhat are you supposed to do?\tQu'êtes-vous censées faire ?\nWhat are you thinking about?\tÀ quoi pensez-vous ?\nWhat are you trying to hide?\tQu'essaies-tu de cacher ?\nWhat are you trying to hide?\tQu'essayez-vous de cacher ?\nWhat are your qualification?\tQuelles sont vos qualifications ?\nWhat are your qualification?\tQuelles sont tes qualifications ?\nWhat are your strong points?\tQuels sont tes points forts ?\nWhat are your true feelings?\tQuels sont vos véritables sentiments ?\nWhat are your true feelings?\tQuels sont tes véritables sentiments ?\nWhat are your weekend plans?\tQuels sont vos projets pour le weekend ?\nWhat are your weekend plans?\tQuels sont tes projets pour le week-end ?\nWhat are your weekend plans?\tQuels sont tes plans pour le week-end ?\nWhat can I get you to drink?\tQue puis-je aller vous chercher à boire ?\nWhat can I get you to drink?\tQue puis-je aller te chercher à boire ?\nWhat did she whisper to you?\tQue t'a-t-elle chuchoté ?\nWhat did you do last Sunday?\tQu'as-tu fait dimanche dernier ?\nWhat did you do last Sunday?\tQu'avez-vous fait dimanche dernier ?\nWhat did you do this summer?\tQu'avez-vous fait cet été ?\nWhat did you do this summer?\tQu'as-tu fait cet été ?\nWhat did you eat for dinner?\tTu as mangé quoi, ce soir ?\nWhat do these markings mean?\tQue signifient ces annotations ?\nWhat do these markings mean?\tQue signifient ces signes ?\nWhat do these markings mean?\tQue signifient ces marques ?\nWhat do these markings mean?\tQue signifient ces signaux ?\nWhat do you advise me to do?\tQue me conseillez-vous de faire ?\nWhat do you do for a living?\tQue faites-vous dans la vie ?\nWhat do you do for a living?\tQue fais-tu dans la vie ?\nWhat do you do for a living?\tQue faites-vous dans la vie ?\nWhat do you do for a living?\tQue faites-vous pour gagner votre vie ?\nWhat do you do for a living?\tQue fais-tu pour gagner ta vie ?\nWhat do you do for the team?\tQue fais-tu pour l'équipe ?\nWhat do you learn at school?\tQu'est-ce que tu apprends à l'école ?\nWhat do you learn at school?\tQu'apprends-tu à l'école ?\nWhat do you learn at school?\tQu'apprenez-vous à l'école ?\nWhat do you say we go there?\tQue dis-tu d'y aller ?\nWhat do you say we go there?\tQue dites-vous d'y aller ?\nWhat do you think of me now?\tT'as changé d'avis sur moi ?\nWhat do you think they want?\tQue croyez-vous qu'elles veulent ?\nWhat does Tom think of Mary?\tQue pense Tom de Mary ?\nWhat does this mean for Tom?\tQu'est-ce que cela signifie pour Tom ?\nWhat else do you want to do?\tQue veux-tu faire d'autre ?\nWhat else do you want to do?\tQue voulez-vous faire d'autre ?\nWhat happened to the others?\tQu'est-il arrivé aux autres ?\nWhat happened to the others?\tQu'est-il advenu des autres ?\nWhat has changed since then?\tQu'est-ce qui a changé depuis ?\nWhat have you come here for?\tPourquoi es-tu venu ici ?\nWhat have you come here for?\tQu'êtes-vous venu faire ici ?\nWhat have you come here for?\tPourquoi es-tu venue ici ?\nWhat have you come here for?\tQu'êtes-vous venus faire ici ?\nWhat have you come here for?\tQu'êtes-vous venues faire ici ?\nWhat he said embarrassed me.\tCe qu'il a dit m'a embarrassée.\nWhat he said is a good idea.\tCe qu'il a dit est une bonne idée.\nWhat if I asked you to stay?\tQue dirais-tu si je te demandais de rester ?\nWhat if I asked you to stay?\tQue diriez-vous si je vous demandais de rester ?\nWhat if Tom doesn't like me?\tEt si Tom ne m'aime pas ?\nWhat insects have you eaten?\tQuels insectes as-tu mangé ?\nWhat is a life worth living?\tEn quoi une vie vaut-elle d'être vécue ?\nWhat is it with you, anyway?\tQu'est-ce qui te prend, d'ailleurs ?\nWhat is it with you, anyway?\tQu'est-ce qui vous prend, d'ailleurs ?\nWhat is it you have in mind?\tQu'as-tu en tête ?\nWhat is it you have in mind?\tQu'avez-vous en tête ?\nWhat is needed is more time.\tCe dont il y a besoin c'est plus de temps.\nWhat is the matter with you?\tQue t'arrive-t-il ?\nWhat is the matter with you?\tQue vous arrive-t-il ?\nWhat is the purpose of life?\tQuel est le but de la vie ?\nWhat is the use of worrying?\tQuelle est l'utilité de se faire du souci ?\nWhat is there to understand?\tQu'y a-t-il là à comprendre ?\nWhat is wrong with that guy?\tQu'est-ce qui ne va pas avec ce type ?\nWhat is wrong with that guy?\tQu'est-ce qui ne va pas avec ce mec ?\nWhat is your favorite sport?\tQuel sport préfères-tu ?\nWhat kind of work do you do?\tQuelle sorte de travail effectuez-vous ?\nWhat more could one ask for?\tQue demander de plus ?\nWhat options do I have left?\tQuelles autres options ai-je ?\nWhat sort of work do you do?\tQuel genre de travail faites-vous ?\nWhat sport do you like best?\tQuel sport préfères-tu ?\nWhat time do you go to work?\tÀ quelle heure allez-vous au travail ?\nWhat time does school begin?\tÀ quelle heure commence l'école ?\nWhat time does school begin?\tÀ quelle heure l'école commence-t-elle ?\nWhat was the weather report?\tQu'a dit le bulletin météo ?\nWhat was the weather report?\tComment était le bulletin météo ?\nWhat were the meetings like?\tComment se sont passées les réunions ?\nWhat were you hoping to see?\tQu'espériez-vous voir ?\nWhat were you hoping to see?\tQu'espérais-tu voir ?\nWhat will the neighbors say?\tQue diront les voisins ?\nWhat will you have to drink?\tQue voulez-vous boire ?\nWhat will you have to drink?\tQue veux-tu boire ?\nWhat would I do without you?\tQue ferais-je sans vous ?\nWhat would I do without you?\tQue ferais-je sans toi ?\nWhat you say makes no sense.\tCe que tu dis est insensé.\nWhat's all the hubbub about?\tQu'est tout ce brouhaha ?\nWhat's all the hubbub about?\tÀ quel propos est ce tohu-bohu ?\nWhat's going on around here?\tQue se passe-t-il ici ?\nWhat's really going on here?\tQue se passe-t-il vraiment ici ?\nWhat's the name of your dog?\tQuel est le nom de ton chien ?\nWhat's the name of your dog?\tComment s'appelle ton chien ?\nWhat's wrong with your eyes?\tQu'est-ce qui ne va pas avec vos yeux ?\nWhat's wrong with your eyes?\tQu'est-ce qui ne va pas avec tes yeux ?\nWhat's your daughter's name?\tQuel est le nom de ta fille ?\nWhat's your daughter's name?\tQuel est le nom de votre fille ?\nWhat's your favorite number?\tQuel est ton nombre favori ?\nWhat's your favorite number?\tQuel est ton chiffre favori ?\nWhat's your native language?\tQuelle est votre langue natale ?\nWhen are you going to leave?\tQuand vas-tu partir ?\nWhen did the robbery happen?\tQuand le vol est-il survenu ?\nWhen did the robbery happen?\tQuand le vol a-t-il eu lieu ?\nWhen did you first meet him?\tQuand l'as-tu rencontré pour la première fois ?\nWhen did you hear the sound?\tQuand avez-vous entendu le son ?\nWhen did you hear the sound?\tQuand as-tu entendu le son ?\nWhen do you intend to start?\tQuand as-tu l'intention de commencer ?\nWhen do you intend to start?\tQuand avez-vous l'intention de commencer ?\nWhen do you intend to start?\tQuand as-tu l'intention de démarrer ?\nWhen do you intend to start?\tQuand avez-vous l'intention de démarrer ?\nWhen is a good time for you?\tQuand est-ce un bon moment pour toi ?\nWhen is a good time for you?\tQuand est-ce un bon moment pour vous ?\nWhen will you stop scheming?\tQuand cesserez-vous vos manigances ?\nWhen will you stop scheming?\tQuand arrêteras-tu d'intriguer ?\nWhere are all our suitcases?\tOù sont toutes nos valises ?\nWhere are we going to lunch?\tOù allons-nous déjeuner ?\nWhere are we going tomorrow?\tOù allons-nous demain ?\nWhere are we going tomorrow?\tOn va où demain ?\nWhere are you going to move?\tOù déménageras-tu ?\nWhere are your credit cards?\tOù sont vos cartes de crédit ?\nWhere are your credit cards?\tOù sont tes cartes de crédit ?\nWhere can I find a hospital?\tOù puis-je trouver un hôpital?\nWhere can I find toothpaste?\tOù puis-je trouver du dentifrice ?\nWhere did he find the money?\tOù a-t-il trouvé l'argent ?\nWhere did the bee sting you?\tOù l'abeille t'a-t-elle piqué ?\nWhere did the bee sting you?\tOù l'abeille t'a-t-elle piquée ?\nWhere did the bee sting you?\tOù l'abeille vous a-t-elle piqué ?\nWhere did the bee sting you?\tOù l'abeille vous a-t-elle piquée ?\nWhere did they get all this?\tOù ont-ils déniché tout ça ?\nWhere did they get all this?\tOù ont-elles déniché tout ça ?\nWhere did you buy this book?\tOù as-tu acheté ce livre ?\nWhere did you buy this book?\tOù avez-vous fait l'acquisition de ce livre ?\nWhere did you find the keys?\tOù as-tu trouvé les clefs?\nWhere did you find the keys?\tOù as-tu trouvé les clés ?\nWhere did you find the keys?\tOù avez-vous trouvé les clés ?\nWhere did you get all these?\tOù avez-vous déniché tout ça ?\nWhere did you get all these?\tOù as-tu déniché tout ça ?\nWhere did you get that scar?\tOù t'es-tu fait cette cicatrice ?\nWhere did you get that scar?\tOù vous êtes-vous fait cette cicatrice ?\nWhere did you get this list?\tOù as-tu trouvé cette liste ?\nWhere did you get this list?\tOù avez-vous pêché cette liste ?\nWhere did you go to college?\tOù avez-vous été à la fac ?\nWhere did you go to college?\tOù as-tu été à la fac ?\nWhere did you go to college?\tQuelle fac avez-vous fréquentée ?\nWhere did you go to college?\tQuelle fac as-tu fréquentée ?\nWhere did you hide the food?\tOù as-tu caché la nourriture ?\nWhere do I claim my baggage?\tOù est-ce que je récupère mes bagages ?\nWhere do we go after we die?\tOù allons-nous après notre mort ?\nWhere do you keep the booze?\tOù planquez-vous la bibine ?\nWhere do you keep the booze?\tOù planquez-vous les spiritueux ?\nWhere in Turkey do you live?\tOù vis-tu en Turquie ?\nWhere is the emergency exit?\tOù se trouve la sortie de secours ?\nWhere is the police station?\tOù se trouve le poste de police ?\nWhere is the police station?\tOù le poste de police se trouve-t-il ?\nWhere is the south terminal?\tOù est le terminal sud ?\nWhere would you like to sit?\tOù désirez-vous vous asseoir ?\nWhere's the nearest library?\tOù est la bibliothèque la plus proche ?\nWhere's the shopping center?\tOù est le centre commercial ?\nWhich club do you belong to?\tÀ quel club appartiens-tu ?\nWhich club do you belong to?\tÀ quel cercle appartenez-vous ?\nWhich drinks don't you like?\tQuelles sont les boissons que tu n'aimes pas ?\nWhich films are showing now?\tQuels sont les films à l'affiche actuellement ?\nWhich is your favorite team?\tQuelle est votre équipe préférée ?\nWhich is your favorite team?\tQuelle est ton équipe préférée ?\nWhich one is more expensive?\tLequel est plus cher ?\nWhich one is more expensive?\tLaquelle est plus chère ?\nWhich one of those is yours?\tLequel de ceux-là est le tien ?\nWhich one of those is yours?\tLaquelle de celles-là est la tienne ?\nWhich one of those is yours?\tLequel de ceux-là est le vôtre ?\nWhich one of those is yours?\tLaquelle de celles-là est la vôtre ?\nWhich team is likely to win?\tQuelle équipe est-elle susceptible de gagner ?\nWho is going to play tennis?\tQui va jouer au tennis ?\nWho is the girl in your car?\tQui est la fille dans ta voiture ?\nWho is the girl in your car?\tQui est la fille dans votre voiture ?\nWho is the person in charge?\tQui est le responsable ?\nWho is your favorite author?\tQuel est ton auteur préféré ?\nWho is your favorite author?\tQui est votre auteur préféré ?\nWho is your favorite author?\tQuel est votre auteur favori ?\nWho is your favorite author?\tQui est votre auteur favori ?\nWho is your favorite author?\tQui est ton auteur favori ?\nWho is your favorite player?\tQuel est ton joueur préféré ?\nWho is your favorite player?\tQuelle est ta joueuse préférée ?\nWho is your favorite player?\tQuel est ton instrumentiste préféré ?\nWho knows what could happen?\tQui sait ce qu'il adviendrait ?\nWho knows what could happen?\tQui sait ce qu'il se produirait ?\nWho lives in the room below?\tQui vit dans la chambre du dessous ?\nWho picked you for this job?\tQui vous a choisi pour ce poste ?\nWho picked you for this job?\tQui t'a choisi pour ce poste ?\nWho taught you how to dance?\tQui vous a appris à danser ?\nWho threw a stone at my dog?\tQui a jeté une pierre à mon chien ?\nWho was the book written by?\tPar qui le livre fut-il écrit ?\nWho was the book written by?\tPar qui le livre a-t-il été écrit ?\nWho was your French teacher?\tQui était votre professeur de français?\nWho were they talking about?\tDe qui parlaient-ils ?\nWho were they talking about?\tDe qui étaient-elles en train de parler ?\nWho were you dreaming about?\tÀ qui étais-tu en train de rêver ?\nWho were you dreaming about?\tÀ qui étiez-vous en train de rêver ?\nWho's going to pay the bill?\tQui va payer la facture ?\nWho's your favorite pianist?\tQuel est ton pianiste préféré ?\nWhy are you acting this way?\tPourquoi vous conduisez-vous ainsi ?\nWhy are you acting this way?\tPourquoi te conduis-tu ainsi ?\nWhy are you in such a hurry?\tPourquoi es-tu aussi pressé !\nWhy are you leaving so soon?\tPourquoi partez-vous si tôt ?\nWhy are you leaving so soon?\tPourquoi pars-tu si tôt ?\nWhy are you taking pictures?\tPourquoi prenez-vous des photos ?\nWhy are you taking pictures?\tPourquoi prends-tu des photos ?\nWhy aren't you all laughing?\tPourquoi ne riez-vous pas tous ?\nWhy aren't you all laughing?\tPourquoi ne riez-vous pas toutes ?\nWhy aren't you taking notes?\tPourquoi n'es-tu pas en train de prendre des notes ?\nWhy aren't you taking notes?\tPourquoi ne prenez-vous pas de notes ?\nWhy did Tom cancel his trip?\tPourquoi Tom a-t-il annulé son voyage ?\nWhy did he fail in business?\tPourquoi a-t-il échoué dans le commerce ?\nWhy did she come home early?\tPourquoi est-elle rentrée tôt à la maison ?\nWhy did you buy the flowers?\tPourquoi as-tu acheté les fleurs ?\nWhy did you buy the flowers?\tPourquoi avez-vous acheté les fleurs ?\nWhy did you come here today?\tPourquoi es-tu venu ici aujourd'hui ?\nWhy did you come here today?\tPourquoi es-tu venue ici aujourd'hui ?\nWhy did you come here today?\tPourquoi êtes-vous venu ici aujourd'hui ?\nWhy did you come here today?\tPourquoi êtes-vous venue ici aujourd'hui ?\nWhy did you come here today?\tPourquoi êtes-vous venus ici aujourd'hui ?\nWhy did you come here today?\tPourquoi êtes-vous venues ici aujourd'hui ?\nWhy did you get up so early?\tPourquoi est-ce que tu t'es levé si tôt ?\nWhy did you help Tom escape?\tPourquoi as-tu aidé Tom à s'échapper ?\nWhy did you help Tom escape?\tPourquoi avez-vous aidé Tom à s'échapper ?\nWhy did you leave Australia?\tPourquoi as-tu quitté l'Australie ?\nWhy did you try to run away?\tPourquoi as-tu tenté de t'enfuir ?\nWhy did you try to run away?\tPourquoi avez-vous essayé de vous enfuir ?\nWhy didn't somebody call me?\tPourquoi quelqu'un ne m'a-t-il pas appelé ?\nWhy didn't you come earlier?\tPourquoi n'es-tu pas venu plus tôt ?\nWhy didn't you guys tell me?\tPourquoi ne me l'avez-vous pas dit, les mecs ?\nWhy didn't you listen to me?\tPourquoi ne m'avez-vous pas écouté ?\nWhy didn't you listen to me?\tPourquoi ne m'avez-vous pas écoutée ?\nWhy didn't you listen to me?\tPourquoi ne m'as-tu pas écouté ?\nWhy didn't you listen to me?\tPourquoi ne m'as-tu pas écoutée ?\nWhy didn't you tell someone?\tPourquoi ne l'as-tu pas dit à quelqu'un ?\nWhy didn't you tell someone?\tPourquoi ne l'avez-vous pas dit à quelqu'un ?\nWhy didn't you tell us that?\tPourquoi ne nous l'as-tu pas dit ?\nWhy didn't you tell us that?\tPourquoi ne nous l'avez-vous pas dit ?\nWhy do you like Tom so much?\tPourquoi aimes-tu autant Tom ?\nWhy do you put up with that?\tPourquoi endures-tu cela ?\nWhy do you put up with that?\tPourquoi endurez-vous cela ?\nWhy do you put up with that?\tPourquoi supportes-tu cela ?\nWhy do you put up with that?\tPourquoi supportez-vous cela ?\nWhy do you think he said so?\tPourquoi, penses-tu, a-t-il dit cela ?\nWhy do you think he said so?\tPourquoi, pensez-vous, a-t-il dit cela ?\nWhy do you want that anyway?\tPourquoi le veux-tu, de toutes façons ?\nWhy do you want that anyway?\tPourquoi le voulez-vous, de toutes façons ?\nWhy don't we ask his advice?\tPourquoi ne lui demandons-nous pas conseil ?\nWhy don't we go for a drive?\tPourquoi n'allons-nous pas faire un tour en voiture ?\nWhy don't you come visit us?\tPourquoi ne viens-tu pas nous voir ?\nWhy don't you cut your hair?\tPourquoi ne te coupes-tu pas les cheveux ?\nWhy don't you get a haircut?\tPourquoi ne te fais-tu pas couper les cheveux ?\nWhy don't you get a haircut?\tPourquoi ne vous faites-vous pas couper les cheveux ?\nWhy don't you just back off?\tPourquoi ne te retires-tu simplement pas ?\nWhy don't you just back off?\tPourquoi ne vous retirez-vous simplement pas ?\nWhy don't you say something?\tPourquoi ne dis-tu pas quelque chose ?\nWhy don't you say something?\tPourquoi ne dites-vous pas quelque chose ?\nWhy don't you stay a minute?\tPourquoi ne restez-vous pas une minute ?\nWhy don't you stay a minute?\tPourquoi ne restes-tu pas une minute ?\nWhy is it such a big secret?\tPourquoi est-ce un si gros secret ?\nWhy not have dinner with us?\tPourquoi ne pas dîner avec nous ?\nWhy not wait until tomorrow?\tPourquoi ne pas attendre jusqu'à demain ?\nWhy should you be surprised?\tPourquoi devrais-tu être surpris ?\nWhy was I not aware of this?\tPourquoi n'étais-je pas au courant de cela ?\nWhy would I want to do that?\tPourquoi voudrais-je faire cela ?\nWhy would I want to sue you?\tPourquoi voudrais-je te poursuivre en justice ?\nWhy would I want to sue you?\tPourquoi voudrais-je vous poursuivre en justice ?\nWhy would I want your watch?\tPourquoi voudrais-je ta montre ?\nWhy would I want your watch?\tPourquoi voudrais-je votre montre ?\nWhy would anybody come here?\tPourquoi quiconque viendrait-il ici ?\nWhy would you want to leave?\tPourquoi voudrais-tu partir ?\nWhy would you want to leave?\tPourquoi voudriez-vous partir ?\nWill Tom graduate this year?\tTom sera-t-il diplômé cette année?\nWill it rain this afternoon?\tPleuvra-t-il cet après-midi ?\nWill it rain this afternoon?\tPleuvra-t-il cette après-midi ?\nWill it rain this afternoon?\tVa-t-il pleuvoir cet après-midi ?\nWill it rain this afternoon?\tVa-t-il pleuvoir cette après-midi ?\nWill that make a difference?\tEst-ce que cela fera une différence ?\nWill there be anything else?\tY aura-t-il quoi que ce soit d'autre ?\nWill you be at home tonight?\tTu seras chez toi ce soir ?\nWill you come back tomorrow?\tReviens-tu demain ?\nWill you come back tomorrow?\tReviendras-tu demain ?\nWill you have some more tea?\tReprendrez-vous un peu de thé ?\nWill you join us for a swim?\tTe joindras-tu à nous pour une baignade ?\nWill you lend me some money?\tVeux-tu me prêter de l'argent ?\nWill you lend me some money?\tMe prêteras-tu de l'argent ?\nWill you read this cookbook?\tLiras-tu ce livre de cuisine ?\nWill you read this cookbook?\tLirez-vous ce livre de cuisine ?\nWill you sell me your house?\tMe vendrez-vous votre maison ?\nWill you show me your album?\tMe montreras-tu ton album ?\nWill you show me your album?\tMe montrerez-vous votre album ?\nWill you try this on for me?\tVeux-tu essayer celle-ci pour moi ?\nWill you try this on for me?\tVoulez-vous essayer celle-ci pour moi ?\nWill you watch the Olympics?\tRegarderas-tu les Jeux Olympiques ?\nWill you watch the Olympics?\tRegarderez-vous les Jeux Olympiques ?\nWood floats, but iron sinks.\tLe bois flotte, mais le fer coule au fond.\nWood floats, but iron sinks.\tLe bois flotte, mais le fer coule.\nWords could not describe it.\tLes mots ne pourraient le décrire.\nWould that really be so bad?\tSerait-ce vraiment si mauvais ?\nWould you like a cup of tea?\tVoudriez-vous une tasse de thé ?\nWould you like some cookies?\tAimerais-tu des biscuits ?\nWould you like some cookies?\tAimeriez-vous des biscuits ?\nWould you like to be seated?\tAimeriez-vous avoir une place assise ?\nWould you like to be seated?\tAimeriez-vous disposer d'une place assise ?\nWould you like to be seated?\tVoudriez-vous qu'on vous assoie ?\nWould you like to be seated?\tVoudrais-tu qu'on t'assoie ?\nWould you like to be seated?\tAimerais-tu disposer d'une place assise ?\nWould you like to hear more?\tAimerais-tu en entendre davantage ?\nWould you like to hear more?\tAimeriez-vous en entendre davantage ?\nWould you like to swap jobs?\tVoudriez-vous échanger nos emplois ?\nWow, it's pretty cold today.\tBrrr, il fait plutôt froid aujourd'hui.\nWrite carefully and legibly.\tÉcris avec soin et lisiblement.\nWrite carefully and legibly.\tÉcrivez avec soin et lisiblement.\nWrite your name in capitals.\tÉcrivez votre nom en majuscules.\nYakitori is a Japanese food.\tLe Yaikitori est un plat japonais.\nYesterday he came back late.\tHier il est rentré tard.\nYesterday he came back late.\tIl est rentré tard hier.\nYou are apt to be forgetful.\tTu as tendance à être oublieux.\nYou are as white as a sheet.\tVous êtes blanc comme un drap.\nYou are as white as a sheet.\tTu es blanc comme un cachet d'aspirine.\nYou are cleared for takeoff.\tVotre décollage est confirmé.\nYou are liable for the debt.\tVous êtes redevable de la dette.\nYou are mistaken about that.\tTu te trompes à ce sujet.\nYou are mistaken about that.\tVous faites erreur à ce propos.\nYou are not a child anymore.\tTu n'es plus un enfant.\nYou are to do as I tell you.\tTu dois faire comme je te dis.\nYou are to do as I tell you.\tVous devez faire comme je vous dis.\nYou are wanted on the phone.\tOn te réclame au téléphone.\nYou aren't as short as I am.\tTu n'es pas aussi petit que moi.\nYou aren't as short as I am.\tTu n'es pas aussi petite que moi.\nYou aren't as short as I am.\tVous n'êtes pas aussi petit que moi.\nYou aren't as short as I am.\tVous n'êtes pas aussi petite que moi.\nYou aren't as short as I am.\tVous n'êtes pas aussi petits que moi.\nYou aren't as short as I am.\tVous n'êtes pas aussi petites que moi.\nYou can always count on Tom.\tTu pourras toujours te fier à Tom.\nYou can always quit the job.\tTu peux toujours quitter le boulot.\nYou can call us at any time.\tTu peux nous appeler à tout moment.\nYou can call us at any time.\tVous pouvez nous appeler à tout moment.\nYou can come if you want to.\tTu peux venir, si tu veux.\nYou can come if you want to.\tVous pouvez venir si vous voulez.\nYou can go however you like.\tTu peux partir comme tu veux.\nYou can have it for nothing.\tTu peux l'avoir pour rien.\nYou can invite other people.\tVous pouvez inviter d'autres personnes.\nYou can invite other people.\tTu peux inviter d'autres personnes.\nYou can't blame me for that.\tVous ne pouvez pas me le reprocher.\nYou can't blame me for that.\tTu ne peux pas me le reprocher.\nYou can't cling to the past.\tOn ne peut pas s'accrocher au passé.\nYou can't count on his help.\tOn ne peut pas compter sur son aide.\nYou can't deny that anymore.\tOn ne peut plus le nier.\nYou can't do it by yourself.\tTu ne peux pas le faire par tes propres moyens.\nYou can't do it by yourself.\tVous ne pouvez pas le faire par vos propres moyens.\nYou can't handle this alone.\tTu ne peux pas le gérer seul.\nYou can't handle this alone.\tTu ne peux pas le gérer seule.\nYou can't handle this alone.\tTu ne peux pas gérer ça tout seul.\nYou can't handle this alone.\tTu ne peux pas gérer ça toute seule.\nYou can't handle this alone.\tVous ne pouvez pas gérer ça tout seul.\nYou can't handle this alone.\tVous ne pouvez pas le gérer seul.\nYou can't handle this alone.\tVous ne pouvez pas gérer ça toute seule.\nYou can't handle this alone.\tVous ne pouvez pas le gérer seule.\nYou can't have it both ways.\tVous ne pouvez pas avoir le beurre et l'argent du beurre.\nYou can't just walk in here.\tTu ne peux simplement pas pénétrer ici.\nYou can't just walk in here.\tVous ne pouvez simplement pas pénétrer ici.\nYou can't let it get to you.\tTu ne peux pas laisser ça t'embêter.\nYou can't run from the past.\tOn ne peut pas fuir le passé.\nYou can't unscramble an egg.\tOn ne peut pas débrouiller un œuf.\nYou could've said something.\tTu aurais pu dire quelque chose !\nYou could've said something.\tVous auriez pu dire quelque chose !\nYou didn't mean it, did you?\tCe n'était pas votre intention, si ?\nYou didn't mean it, did you?\tCe n'était pas ton intention, si ?\nYou didn't miss the meeting.\tVous n'avez pas manqué la réunion.\nYou didn't miss the meeting.\tTu n'as pas manqué la réunion.\nYou didn't work hard enough.\tVous n'avez pas travaillé assez dur.\nYou didn't work hard enough.\tTu n'as pas travaillé assez dur.\nYou do nothing else but eat.\tTu ne fais rien d'autre que manger.\nYou do want that, don't you?\tTu veux cela, non ?\nYou do want that, don't you?\tVous voulez cela, non ?\nYou don't fool me, you know.\tTu ne m'abuses pas, tu sais.\nYou don't fool me, you know.\tVous ne m'abusez pas, vous savez.\nYou don't have to apologize.\tTu n'es pas forcée de présenter tes excuses.\nYou don't have to apologize.\tTu n'es pas forcé de présenter tes excuses.\nYou don't have to apologize.\tTu n'es pas forcée de présenter des excuses.\nYou don't have to apologize.\tTu n'es pas forcé de présenter des excuses.\nYou don't have to apologize.\tVous n'êtes pas forcée de présenter des excuses.\nYou don't have to apologize.\tVous n'êtes pas forcée de présenter vos excuses.\nYou don't have to apologize.\tVous n'êtes pas forcé de présenter des excuses.\nYou don't have to apologize.\tVous n'êtes pas forcé de présenter vos excuses.\nYou don't have to apologize.\tVous n'êtes pas forcés de présenter des excuses.\nYou don't have to apologize.\tVous n'êtes pas forcés de présenter vos excuses.\nYou don't have to apologize.\tVous n'êtes pas forcées de présenter des excuses.\nYou don't have to apologize.\tVous n'êtes pas forcées de présenter vos excuses.\nYou don't have to apologize.\tVous n'êtes pas obligées de présenter vos excuses.\nYou don't have to apologize.\tVous n'êtes pas obligées de présenter des excuses.\nYou don't have to apologize.\tVous n'êtes pas obligés de présenter vos excuses.\nYou don't have to apologize.\tVous n'êtes pas obligés de présenter des excuses.\nYou don't have to apologize.\tVous n'êtes pas obligé de présenter vos excuses.\nYou don't have to apologize.\tVous n'êtes pas obligé de présenter des excuses.\nYou don't have to apologize.\tVous n'êtes pas obligée de présenter vos excuses.\nYou don't have to apologize.\tVous n'êtes pas obligée de présenter des excuses.\nYou don't have to apologize.\tTu n'es pas obligé de présenter des excuses.\nYou don't have to apologize.\tTu n'es pas obligé de présenter tes excuses.\nYou don't have to apologize.\tTu n'es pas obligée de présenter des excuses.\nYou don't have to apologize.\tTu n'es pas obligée de présenter tes excuses.\nYou don't mean that, do you?\tCe n'est pas ce que tu veux dire, si ?\nYou don't need to know that.\tTu n'as pas besoin de savoir ça.\nYou don't seem tired at all.\tVous ne semblez pas fatigué du tout.\nYou don't seem tired at all.\tVous ne semblez pas fatigués du tout.\nYou don't seem tired at all.\tVous ne semblez pas fatiguée du tout.\nYou don't seem tired at all.\tTu ne sembles pas fatigué du tout.\nYou don't seem tired at all.\tTu ne sembles pas fatiguée du tout.\nYou don't seem very pleased.\tVous ne semblez pas très ravi.\nYou don't seem very pleased.\tVous ne semblez pas très ravie.\nYou don't seem very pleased.\tVous ne semblez pas très ravis.\nYou don't seem very pleased.\tVous ne semblez pas très ravies.\nYou don't seem very pleased.\tTu ne sembles pas très ravi.\nYou don't seem very pleased.\tTu ne sembles pas très ravie.\nYou don't smell good at all.\tTu ne sens pas bon du tout.\nYou don't want much, do you?\tTu n'en veux pas beaucoup, si ?\nYou don't want much, do you?\tVous n'en voulez pas beaucoup, si ?\nYou don't want that, do you?\tVous ne voulez pas de cela, si ?\nYou don't want that, do you?\tTu ne veux pas de cela, si ?\nYou don't want this, do you?\tTu ne veux pas de ceci, si ?\nYou don't want this, do you?\tVous ne voulez pas de ceci, si ?\nYou don't want to lose that.\tTu ne veux pas perdre cela.\nYou don't want to lose that.\tVous ne voulez pas perdre cela.\nYou had better get up early.\tTu ferais mieux de te lever tôt.\nYou had better get up early.\tVous feriez mieux de vous lever tôt.\nYou have got a lot of nerve.\tVous avez beaucoup de courage.\nYou have made many mistakes.\tTu as fait beaucoup d'erreurs.\nYou have no cause for anger.\tTu n'as pas de raison de t'énerver.\nYou have no cause for anger.\tVous n'avez pas de motif de vous mettre en colère.\nYou have not changed at all.\tTu n'as pas du tout changé.\nYou have only to ask for it.\tIl te faut juste le demander.\nYou have only to ask for it.\tIl faut juste que tu le demandes.\nYou have to clean your room.\tTu dois faire le ménage de ta chambre.\nYou have to go to the party.\tTu dois aller à la fête.\nYou have to go to the party.\tVous devez aller à la fête.\nYou have to respect the old.\tVous devez respecter les anciens.\nYou haven't eaten, have you?\tTu n'as pas mangé, n'est-ce pas ?\nYou haven't eaten, have you?\tVous n'avez pas mangé, n'est-ce pas ?\nYou just have to ask for it.\tIl te suffit juste de demander.\nYou just have to ask for it.\tIl te suffit juste de le demander.\nYou know it as well as I do.\tVous le savez aussi bien que moi.\nYou know it as well as I do.\tTu le sais tout autant que moi.\nYou like English, don't you?\tTu aimes l'anglais, n'est-ce pas ?\nYou look as healthy as ever.\tVous avez l'air en aussi bonne santé que d'habitude.\nYou look positively ghastly.\tTu as l'air vraiment affreux.\nYou look positively ghastly.\tTu as l'air vraiment affreuse.\nYou look young for your age.\tTu parais jeune pour ton âge.\nYou made a fool of yourself.\tTu t'es ridiculisé.\nYou made a fool of yourself.\tTu t'es ridiculisée.\nYou made a fool of yourself.\tVous vous êtes ridiculisé.\nYou made a fool of yourself.\tVous vous êtes ridiculisée.\nYou made a horrible mistake.\tVous avez fait une terrible erreur.\nYou made a horrible mistake.\tTu as fait une terrible erreur.\nYou may as well go yourself.\tTu peux aussi t'y rendre toi-même.\nYou may be right about that.\tTu as peut-être raison à ce sujet.\nYou may be right about that.\tVous avez peut-être raison à ce sujet.\nYou may go where you please.\tVous pouvez aller où il vous plaira.\nYou may leave your bag here.\tTu peux laisser ton sac ici.\nYou may leave your bag here.\tVous pouvez laisser votre sac ici.\nYou might want some of this.\tIl se pourrait que tu veuilles une partie de ceci.\nYou might want some of this.\tIl se pourrait que vous veuillez une partie de ceci.\nYou must be back before ten.\tTu dois être de retour avant dix heures.\nYou must be back before ten.\tTu dois être revenue avant dix heures.\nYou must be very hungry now.\tVous devez avoir très faim maintenant.\nYou must be very hungry now.\tTu dois maintenant avoir très faim.\nYou must keep your promises.\tOn doit tenir ses promesses.\nYou must let me handle this.\tVous devez me laisser gérer ceci.\nYou must let me handle this.\tTu dois me laisser gérer ça.\nYou must not enter the room.\tVous ne devez pas pénétrer dans la pièce.\nYou must not enter the room.\tTu ne dois pas pénétrer dans la pièce.\nYou must stick to your diet.\tVous devez suivre votre régime.\nYou must stick to your diet.\tTu dois suivre ton régime.\nYou must study grammar more.\tTu dois davantage étudier la grammaire.\nYou must study grammar more.\tVous devez davantage étudier la grammaire.\nYou must study grammar more.\tVous devez étudier la grammaire davantage.\nYou need not have called me.\tTu n'avais pas besoin de m'appeler.\nYou need to be more patient.\tIl te faut être davantage patient.\nYou need to be more patient.\tIl te faut être plus patient.\nYou need to be more patient.\tIl te faut être davantage patiente.\nYou need to be more patient.\tIl te faut être plus patiente.\nYou need to be more patient.\tIl vous faut être davantage patient.\nYou need to be more patient.\tIl vous faut être davantage patiente.\nYou need to be more patient.\tIl vous faut être plus patient.\nYou need to be more patient.\tIl vous faut être plus patiente.\nYou need to be more patient.\tIl vous faut être davantage patients.\nYou need to be more patient.\tIl vous faut être plus patients.\nYou need to be more patient.\tIl vous faut être davantage patientes.\nYou need to be more patient.\tIl vous faut être plus patientes.\nYou need to be more patient.\tIl faut que tu sois davantage patient.\nYou need to be more patient.\tIl faut que tu sois davantage patiente.\nYou need to be more patient.\tIl faut que tu sois plus patient.\nYou need to be more patient.\tIl faut que tu sois plus patiente.\nYou need to be more patient.\tIl faut que vous soyez davantage patient.\nYou need to be more patient.\tIl faut que vous soyez plus patient.\nYou need to be more patient.\tIl faut que vous soyez davantage patiente.\nYou need to be more patient.\tIl faut que vous soyez plus patiente.\nYou need to be more patient.\tIl faut que vous soyez plus patients.\nYou need to be more patient.\tIl faut que vous soyez davantage patients.\nYou need to be more patient.\tIl faut que vous soyez davantage patientes.\nYou need to be more patient.\tIl faut que vous soyez plus patientes.\nYou need to go to bed again.\tTu dois déjà aller au lit.\nYou need to help me do this.\tVous devez m'aider à faire ceci.\nYou need to help me do this.\tTu dois m'aider à faire ceci.\nYou need to wash your hands.\tTu dois te laver les mains.\nYou need to wash your hands.\tVous devez vous laver les mains.\nYou need written permission.\tIl vous faut une permission écrite.\nYou need written permission.\tIl te faut une permission écrite.\nYou never cease to amaze me.\tTu ne cesses de m'émerveiller.\nYou never cease to amaze me.\tTu ne cesses de m'épater.\nYou only have to ask for it.\tIl vous suffit juste de demander.\nYou only have to ask for it.\tIl te suffit juste de demander.\nYou only have to ask for it.\tIl vous suffit juste de le demander.\nYou only have to ask for it.\tIl te suffit juste de le demander.\nYou played tennis yesterday.\tTu as joué au tennis hier.\nYou said that you hated Tom.\tTu as dit que tu détestais Tom.\nYou said that you hated Tom.\tVous avez dit que vous détestiez Tom.\nYou said that you loved Tom.\tTu a dit que tu aimais Tom.\nYou should begin right away.\tVous devriez commencer sur-le-champ.\nYou should begin right away.\tTu devrais commencer sur-le-champ.\nYou should buy him new toys.\tTu devrais lui acheter de nouveaux jouets.\nYou should buy him new toys.\tVous devriez lui acheter de nouveaux jouets.\nYou should go see a dentist.\tTu devrais aller consulter un dentiste.\nYou should go see a dentist.\tVous devriez aller chez un dentiste.\nYou should help your father.\tTu devrais aider ton père.\nYou should help your father.\tVous devriez aider votre père.\nYou should know that by now.\tTu devrais le savoir, à cette heure.\nYou should know that by now.\tVous devriez le savoir, à cette heure.\nYou should not give up hope.\tTu ne devrais pas abandonner l'espoir.\nYou should not give up hope.\tVous ne devriez pas abandonner l'espoir.\nYou should probably go, Tom.\tTu devrais probablement y aller, Tom.\nYou should probably go, Tom.\tVous devriez probablement y aller, Tom.\nYou shouldn't be doing that.\tTu ne devrais pas faire ça.\nYou shouldn't be doing that.\tVous ne devriez pas faire ça.\nYou shouldn't smoke so much.\tVous ne devriez pas fumer autant.\nYou speak French, don't you?\tVous parlez le français, n'est-ce pas ?\nYou speak French, don't you?\tTu parles le français, n'est-ce pas ?\nYou understand me very well.\tTu me comprends très bien.\nYou understand me very well.\tVous me comprenez très bien.\nYou wanted this, didn't you?\tTu voulais cela, n'est-ce pas ?\nYou wanted this, didn't you?\tVous vouliez cela, n'est-ce pas ?\nYou were drunk, weren't you?\tVous étiez ivre, n'est-ce pas ?\nYou were drunk, weren't you?\tVous étiez saoul, n'est-ce pas ?\nYou were drunk, weren't you?\tVous étiez soûl, n'est-ce pas ?\nYou were drunk, weren't you?\tVous étiez ivres, n'est-ce pas ?\nYou were drunk, weren't you?\tVous étiez ivre, pas vrai ?\nYou were drunk, weren't you?\tVous étiez ivres, pas vrai ?\nYou were drunk, weren't you?\tVous étiez soûl, pas vrai ?\nYou were drunk, weren't you?\tVous étiez soûls, pas vrai ?\nYou were drunk, weren't you?\tVous étiez soûle, pas vrai ?\nYou were drunk, weren't you?\tVous étiez soûles, pas vrai ?\nYou were lying, weren't you?\tTu mentais, n'est-ce pas ?\nYou were lying, weren't you?\tVous mentiez, n'est-ce pas ?\nYou were there, weren't you?\tVous y étiez, n'est-ce pas ?\nYou were there, weren't you?\tVous étiez là, n'est-ce pas ?\nYou were there, weren't you?\tTu y étais, n'est-ce pas ?\nYou were there, weren't you?\tTu étais là, n'est-ce pas ?\nYou weren't there, were you?\tVous n'étiez pas là, si ?\nYou weren't there, were you?\tTu n'étais pas là, si ?\nYou will have a new brother.\tVous aurez un nouveau frère.\nYou will have a new brother.\tTu auras un nouveau frère.\nYou will have to work a lot.\tTu devras beaucoup travailler.\nYou will have to work a lot.\tVous devrez beaucoup travailler.\nYou won't believe your eyes.\tTu n'en croiras pas tes yeux.\nYou won't believe your eyes.\tVous n'en croirez pas vos yeux.\nYou'd better hand that over.\tTu ferais mieux de remettre ça.\nYou'd better hand that over.\tVous feriez mieux de remettre ça.\nYou'd better tell the truth.\tTu ferais mieux de dire la vérité.\nYou'd better tell the truth.\tVous feriez mieux de dire la vérité.\nYou'll be the first to know.\tTe seras le premier à savoir.\nYou'll be the first to know.\tTu seras la première à savoir.\nYou'll be the first to know.\tVous serez la première à savoir.\nYou'll be the first to know.\tVous serez le premier à savoir.\nYou'll come back, won't you?\tVous reviendrez, n'est-ce pas ?\nYou'll come back, won't you?\tTu reviendras, n'est-ce pas ?\nYou'll find out soon enough.\tTu vas le découvrir bien assez tôt.\nYou'll find out soon enough.\tVous allez le découvrir bien assez tôt.\nYou'll have to ask Tom that.\tTu devras demander cela à Tom.\nYou'll have to ask Tom that.\tVous devrez demander cela à Tom.\nYou'll never be young again.\tVous ne serez plus jamais jeune.\nYou'll never be young again.\tTu ne seras plus jamais jeune.\nYou'll sleep better tonight.\tTu dormiras mieux cette nuit !\nYou'll sleep better tonight.\tVous dormirez mieux cette nuit !\nYou're a mighty good feller.\tT'es un super bon camarade.\nYou're going to be a father.\tTu vas être père.\nYou're going to be a father.\tVous allez être père.\nYou're going to regret this.\tTu vas le regretter.\nYou're going to regret this.\tVous allez le regretter.\nYou're lucky you didn't die.\tVous avez de la chance de ne pas être mort.\nYou're lucky you didn't die.\tVous avez de la chance de ne pas être morte.\nYou're lucky you didn't die.\tVous avez de la chance de ne pas être morts.\nYou're lucky you didn't die.\tVous avez de la chance de ne pas être mortes.\nYou're lucky you didn't die.\tTu as de la chance de ne pas être mort.\nYou're lucky you didn't die.\tTu as de la chance de ne pas être morte.\nYou're making a big mistake.\tTu commets une grosse erreur.\nYou're making a big mistake.\tVous commettez une grosse erreur.\nYou're new here, aren't you?\tVous êtes nouveau ici, n'est-ce pas ?\nYou're new here, aren't you?\tTu es nouveau ici, n'est-ce pas ?\nYou're new here, aren't you?\tVous êtes nouveaux ici, n'est-ce pas ?\nYou're new here, aren't you?\tVous êtes nouvelle ici, n'est-ce pas ?\nYou're new here, aren't you?\tVous êtes nouvelles ici, n'est-ce pas ?\nYou're new here, aren't you?\tTu es nouvelle ici, n'est-ce pas ?\nYou're not making this easy.\tTu ne rends pas ça facile.\nYou're not making this easy.\tVous ne rendez pas ça facile.\nYou're not married, are you?\tVous n'êtes pas marié, si ?\nYou're not married, are you?\tVous n'êtes pas mariée, si ?\nYou're not married, are you?\tTu n'es pas marié, si ?\nYou're not married, are you?\tTu n'es pas mariée, si ?\nYou're not married, are you?\tVous n'êtes pas mariées, si ?\nYou're not married, are you?\tVous n'êtes pas mariés, si ?\nYou're not paying attention.\tTu ne fais pas attention !\nYou're not that interesting.\tTu n'es pas si intéressant.\nYou're not that interesting.\tTu n'es pas si intéressante.\nYou're not that interesting.\tVous n'êtes pas si intéressant.\nYou're not that interesting.\tVous n'êtes pas si intéressants.\nYou're not that interesting.\tVous n'êtes pas si intéressante.\nYou're not that interesting.\tVous n'êtes pas si intéressantes.\nYou're not thinking clearly.\tTu ne penses pas clairement.\nYou're not thinking clearly.\tVous ne pensez pas clairement.\nYou're nothing but a coward.\tTu n'es rien qu'un lâche.\nYou're nothing but a coward.\tVous n'êtes qu'un lâche.\nYou're one savvy negotiator.\tVous êtes un négociateur avisé.\nYou're part of the gang now.\tTu fais désormais partie de la bande.\nYou're really a hard worker.\tTu es vraiment dur au travail.\nYou're really a hard worker.\tVous êtes vraiment âpre au travail.\nYou're really absent-minded.\tTu es vraiment tête-en-l'air.\nYou're really absent-minded.\tVous êtes vraiment tête-en-l'air.\nYou're right about that one.\tSur ce point, tu as raison.\nYou're so impatient with me.\tTu es tellement impatient avec moi.\nYou're starting to scare me.\tTu commences à me faire peur.\nYou're starting to scare me.\tVous commencez à me faire peur.\nYou're still taller than me.\tEncore es-tu plus grand que moi.\nYou're the only one I trust.\tTu es la seule en qui j'ai confiance.\nYou're the only one I trust.\tTu es le seul en qui j'ai confiance.\nYou're the only one I trust.\tVous êtes la seule en qui j'ai confiance.\nYou're the only one I trust.\tVous êtes le seul en qui j'ai confiance.\nYou're too hard on yourself.\tTu es trop dur avec toi.\nYou're too hard on yourself.\tTu es trop dure avec toi.\nYou're too hard on yourself.\tVous êtes trop dur avec vous.\nYou're too hard on yourself.\tVous êtes trop dure avec vous.\nYou're wanted by the police.\tTu es recherché par la police.\nYou're wanted by the police.\tTu es recherchée par la police.\nYou've always been that way.\tVous avez toujours été ainsi.\nYou've always been that way.\tTu as toujours été ainsi.\nYou've been a good audience.\tVous avez été un bon public.\nYou've been very kind to me.\tTu as été très gentil avec moi.\nYou've been very kind to me.\tTu as été très gentille avec moi.\nYou've been very kind to me.\tVous avez été très gentil avec moi.\nYou've been very kind to me.\tVous avez été très gentils avec moi.\nYou've been very kind to me.\tVous avez été très gentille avec moi.\nYou've been very kind to me.\tVous avez été très gentilles avec moi.\nYou've given me good advice.\tTu m'as fourni de bons conseils.\nYou've given me good advice.\tVous m'avez été de bon conseil.\nYou've got a one-track mind.\tTu as un esprit limité.\nYou've got the wrong number.\tVous vous êtes trompé de numéro.\nYou've got the wrong person.\tVous avez la mauvaise personne.\nYou've got the wrong person.\tVous avez serré la mauvaise personne.\nYou've got the wrong person.\tTu as la mauvaise personne.\nYou've got the wrong person.\tTu as serré la mauvaise personne.\nYou've got the wrong person.\tTu as serré le mauvais client.\nYou've got the wrong person.\tVous avez serré le mauvais client.\nYou've got to be kidding me!\tTu dois plaisanter !\nYou've got to be kidding me!\tVous devez plaisanter !\nYou've got to be kidding me!\tTu dois me faire marcher.\nYou've got to be kidding me!\tVous devez me faire marcher.\nYou've got to stop this now.\tTu dois arrêter ça maintenant.\nYoung people love adventure.\tLes jeunes aiment l'aventure.\nYour answer is to the point.\tVotre réponse est au point.\nYour cake is very delicious.\tTon gâteau est délicieux.\nYour coat is very beautiful.\tVotre manteau est très beau.\nYour dinner is getting cold.\tTon déjeuner refroidit.\nYour dinner is getting cold.\tVotre déjeuner refroidit.\nYour dinner is getting cold.\tTon dîner refroidit.\nYour dinner is getting cold.\tVotre dîner refroidit.\nYour dog always barks at me.\tTon chien m'aboie toujours dessus.\nYour face is familiar to me.\tTu me dis quelque-chose.\nYour father got a promotion.\tTon père a été gratifié d'une promotion.\nYour father got a promotion.\tTon père a reçu une promotion.\nYour father got a promotion.\tVotre père a été gratifié d'une promotion.\nYour father seems very nice.\tTon père semble très sympa.\nYour father seems very nice.\tVotre père semble très gentil.\nYour hand is as cold as ice.\tTa main est froide comme de la glace.\nYour marriage is in trouble.\tVotre mariage est à mal.\nYour name is familiar to me.\tVotre nom m'est familier.\nYour phone is ringing again.\tTon téléphone sonne à nouveau.\nYour phone is ringing again.\tVotre téléphone sonne à nouveau.\nYour phone is ringing again.\tTon téléphone est à nouveau en train de sonner.\nYour phone is ringing again.\tVotre téléphone est à nouveau en train de sonner.\nYour prophecy has come true.\tTa prophétie s'est réalisée.\nYour prophecy has come true.\tTa prophétie est devenue réalité.\nYour question has no answer.\tTa question n'a pas de réponse.\nYour question has no answer.\tVotre question n'a pas de réponse.\nYour question has no answer.\tVotre question n'a point de réponse.\nYour shelf is full of books.\tTon étagère est pleine de livres.\nYour soul needs to be saved.\tTon âme a besoin d'être sauvée.\n\"She likes music.\" \"So do I.\"\t« Elle aime la musique. » « Moi aussi. »\n\"Will it rain?\" \"I hope not.\"\t«Il va pleuvoir ?» «J'espère que non.»\n\"You talk too much,\" he said.\t\"Tu parles trop,\" dit-il.\nA beautiful sunset, isn't it?\tJoli coucher de soleil, n'est-ce pas ?\nA bee flew out of the window.\tUne abeille vola par la fenêtre.\nA big typhoon is approaching.\tUn gros typhon approche.\nA black and white dog bit me.\tUn chien noir et blanc m'a mordu.\nA boy came running toward me.\tUn garçon vint en courant vers moi.\nA bright idea occurred to me.\tUne idée brillante me vint à l'esprit.\nA car has one steering wheel.\tUne voiture a un volant.\nA car has one steering wheel.\tUne bagnole a un volant.\nA dog is a man's best friend.\tLe chien est le meilleur ami de l'homme.\nA dog will bark at strangers.\tUn chien aboiera sur les étrangers.\nA hungry man is an angry man.\tVilain affamé, moitié enragé.\nA light lunch will be served.\tUn déjeuner léger sera servi.\nA little work won't kill you.\tUn peu de travail ne vous tuera pas.\nA lot of trees were cut down.\tBeaucoup d'arbres ont été abattus.\nA man with a big dog came in.\tUn homme avec un grand chien est entré.\nA prolonged silence followed.\tUn silence prolongé s'ensuivit.\nA rash broke out on her neck.\tUne éruption cutanée se développa sur son cou.\nA small gear is missing here.\tUn petit engrenage fait défaut ici.\nA swallow flies very swiftly.\tUne hirondelle vole très vite.\nA tree is known by its fruit.\tOn connaît un arbre par ses fruits.\nA tree is known by its fruit.\tOn reconnaît un arbre à son fruit.\nA true love story never ends.\tUne vraie histoire d'amour n'a pas de fin.\nActually, I'm not quite sure.\tEn vérité, je n'en suis pas tout à fait sûr.\nActually, I'm not quite sure.\tEn vérité, je n'en suis pas tout à fait sûre.\nAdd a little sugar and cream.\tAjoutez un peu de sucre et de la crème.\nAdmission is free on Sundays.\tL'entrée est gratuite le dimanche.\nAfter the storm, it was calm.\tAprès la tempête, ce fut calme.\nAfter the storm, it was calm.\tAprès la tempête, c'était calme.\nAll beginnings are difficult.\tTous les commencements sont difficiles.\nAll my friends have bicycles.\tTous mes amis ont des vélos.\nAll my friends have bicycles.\tTous mes amis sont dotés de vélos.\nAll of her songs became hits.\tToutes ses chansons devinrent des tubes.\nAll of them will get a prize.\tTous obtiendront une récompense.\nAll of them will get a prize.\tToutes obtiendront une récompense.\nAll of us like you very much.\tNous t'aimons tous très fort.\nAll the audience was excited.\tToute l'assistance était excitée.\nAll the children went to bed.\tTous les enfants sont allés au lit.\nAll the members were present.\tTous les membres étaient présents.\nAll the students are present.\tTous les élèves sont présents.\nAll the students are present.\tTous les étudiants sont présents.\nAll the tickets are sold out.\tTous les tickets sont vendus.\nAll the tickets are sold out.\tTous les billets sont vendus.\nAll they had was one another.\tTout ce qu'ils avaient était l'un l'autre.\nAll three of us are students.\tNous sommes tous les trois étudiants.\nAll three of us are students.\tNous sommes tous trois étudiants.\nAll who knew him admired him.\tTous ceux qui le connaissaient, l'admiraient.\nAllow me to introduce myself.\tPermettez-moi de me présenter.\nAllow me to introduce myself.\tPermets-moi de me présenter.\nAlmost everybody was invited.\tPresque tout le monde a été invité.\nAlmost everyone participated.\tPresque tout le monde a participé.\nAlmost everyone participated.\tQuasiment tout le monde a participé.\nAm I being accused of murder?\tSuis-je accusé de meurtre ?\nAm I being accused of murder?\tSuis-je accusée de meurtre ?\nAm I under investigation now?\tSuis-je mis en examen, maintenant ?\nAmbition drove him to murder.\tSon ambition l'a conduit jusqu'au meurtre.\nAn investigation is going on.\tUne enquête est en cours.\nAnd what do I have to do now?\tEt que dois-je faire maintenant ?\nAnd what happened after that?\tQu'est-il arrivé après ça ?\nAnswer my question carefully.\tRéponds à ma question avec soin.\nAnswer my question carefully.\tRépondez à ma question avec soin.\nAnyone can do it if they try.\tN'importe qui peut le faire s'il essaie.\nAnyone who says so is a liar.\tQuiconque le dit est un menteur.\nApples are sold by the dozen.\tLes pommes sont vendues à la douzaine.\nAre all of them your friends?\tSont-ils tous vos amis ?\nAre all of them your friends?\tSont-ils tous tes amis ?\nAre all of them your friends?\tSont-elles toutes vos amies ?\nAre all of them your friends?\tSont-elles toutes tes amies ?\nAre there any express trains?\tY a-t-il des trains express ?\nAre there any letters for me?\tY a-t-il du courrier pour moi ?\nAre they going to arrest Tom?\tVont-ils arrêter Tom ?\nAre they going to arrest Tom?\tVont-elles arrêter Tom ?\nAre we alone in the universe?\tSommes-nous seuls dans l'univers ?\nAre we alone in the universe?\tSommes-nous seules dans l'univers ?\nAre you all completely crazy?\tÊtes-vous tous complètement fous ?\nAre you all completely crazy?\tÊtes-vous toutes complètement folles ?\nAre you bringing your camera?\tEst-ce que tu prendras ton appareil photo ?\nAre you close to your family?\tÊtes-vous proche de votre famille ?\nAre you close to your family?\tÊtes-vous proches de votre famille ?\nAre you close to your family?\tEs-tu proche de ta famille ?\nAre you going to Tom's party?\tVas-tu à la fête de Tom?\nAre you going to buy the car?\tVas-tu acheter la voiture ?\nAre you involved in politics?\tÊtes-vous impliqué dans la politique ?\nAre you involved in politics?\tEs-tu impliqué dans la politique ?\nAre you looking for somebody?\tVous cherchez quelqu'un ?\nAre you looking for somebody?\tTu cherches quelqu'un ?\nAre you looking for somebody?\tCherches-tu quelqu'un ?\nAre you looking for somebody?\tCherchez-vous quelqu'un ?\nAre you playing with my feet?\tTu joues avec mes pieds ?\nAre you proud of your father?\tÊtes-vous fier de votre père ?\nAre you real sure about that?\tEn es-tu vraiment sûr ?\nAre you real sure about that?\tEn es-tu vraiment sûre ?\nAre you real sure about that?\tEn êtes-vous vraiment sûr ?\nAre you real sure about that?\tEn êtes-vous vraiment sûre ?\nAre you real sure about that?\tEn êtes-vous vraiment sûrs ?\nAre you real sure about that?\tEn êtes-vous vraiment sûres ?\nAre you really that ignorant?\tEs-tu vraiment aussi inculte ?\nAre you sure everything's OK?\tÊtes-vous sûr que tout va bien ?\nAre you sure everything's OK?\tTu es sûr que tout va bien ?\nAre you sure everything's OK?\tVous êtes sûre que tout va bien ?\nAre you sure everything's OK?\tEs-tu sûre que tout va bien ?\nAre you sure you aren't cold?\tEs-tu sûr que tu n'as pas froid?\nAre you sure you can do this?\tÊtes-vous sûre de pouvoir faire ça ?\nAre you sure you can do this?\tÊtes-vous sûr de pouvoir faire ça ?\nAre you sure you can do this?\tÊtes-vous sûrs de pouvoir faire ça ?\nAre you sure you can do this?\tÊtes-vous sûres de pouvoir faire ça ?\nAre you sure you can do this?\tEs-tu sûre de pouvoir faire ça ?\nAre you sure you can do this?\tEs-tu sûr de pouvoir faire ça ?\nAre you telling me the truth?\tEst-ce que tu me dis la vérité ?\nAre you telling me the truth?\tMe dis-tu la vérité ?\nAre you telling me the truth?\tMe dites-vous la vérité ?\nAre you trying to impress me?\tEssayez-vous de m'impressionner ?\nAre you volunteering to help?\tVous portez-vous volontaire pour aider ?\nAre you volunteering to help?\tTe portes-tu volontaire pour aider ?\nAre you watching your weight?\tSurveilles-tu ton poids ?\nAre you watching your weight?\tSurveillez-vous votre poids ?\nAs you sow, so will you reap.\tOn récolte ce que l'on sème.\nAsk me again some other time.\tDemandez-moi à nouveau une autre fois.\nAsk me again some other time.\tDemande-moi encore une autre fois.\nAt last he attained his goal.\tIl atteignit enfin son but.\nAt last he attained his goal.\tIl atteignit enfin son objectif.\nAt last, I completed my work.\tEnfin, j'ai terminé mon travail.\nAt last, they ceased working.\tIls cessèrent enfin de travailler.\nAt least they listened to me.\tAu moins, ils m'ont écouté.\nAt least they listened to me.\tAu moins, ils m'ont écoutée.\nAt least they listened to me.\tAu moins, elles m'ont écouté.\nAt least they listened to me.\tAu moins, elles m'ont écoutée.\nAt least try to come on time.\tEssaie au moins de venir à l'heure !\nAt least try to come on time.\tEssayez au moins de venir à l'heure !\nAutumn is my favorite season.\tL'automne est ma saison favorite.\nBe careful what you wish for.\tFais attention à ce que tu souhaites.\nBe careful what you wish for.\tFaites attention à ce que vous souhaitez.\nBe quiet while I am speaking.\tReste tranquille pendant que je parle.\nBe quiet while I am speaking.\tRestez tranquille pendant que je parle.\nBe quiet while I am speaking.\tRestez tranquilles pendant que je parle.\nBetter a little than nothing.\tIl vaut mieux un peu que rien du tout.\nBirds evolved from dinosaurs.\tLes oiseaux ont évolué à partir des dinosaures.\nBoats were racing last night.\tIl y avait une régate, hier soir.\nBoth of his parents are well.\tSes deux parents se portent bien.\nBoth of them are in the room.\tIls sont tous deux dans la pièce.\nBoth of them seem suspicious.\tIls semblent tous deux suspects.\nBoth of them seem suspicious.\tIls semblent tous deux suspicieux.\nBoth of them seem suspicious.\tIls semblent tous deux méfiants.\nBoth of them seem suspicious.\tElles semblent toutes deux suspectes.\nBoth of them seem suspicious.\tElles semblent toutes deux suspicieuses.\nBoth of them seem suspicious.\tElles semblent toutes deux méfiantes.\nBring me two pieces of chalk.\tApporte-moi deux morceaux de craie.\nBring your children with you.\tAmenez vos enfants avec vous.\nBrush your teeth after meals.\tBrossez vos dents après les repas.\nCall me if something happens.\tAppelez-moi si quelque chose survient !\nCan I have another drink now?\tPuis-je avoir un autre verre maintenant ?\nCan I have the sugar, please?\tPuis-je avoir le sucre, s'il vous plaît?\nCan I have your phone number?\tPuis-je avoir ton numéro de téléphone ?\nCan I have your phone number?\tPuis-je avoir votre numéro de téléphone ?\nCan I have your phone number?\tEst-ce que je peux prendre ton numéro de téléphone ?\nCan I say this one last time?\tPuis-je le dire une dernière fois ?\nCan my daughter go to school?\tMa fille peut-elle aller à l'école ?\nCan the dentist see me today?\tLe dentiste pourra-t-il me recevoir aujourd'hui?\nCan we cut to the chase here?\tPouvons-nous en venir au fait, à ce point ?\nCan you answer this question?\tPeux-tu répondre à cette question ?\nCan you believe what he said?\tEst-ce que tu crois ce qu'il a dit ?\nCan you believe what he said?\tPouvez-vous croire à ce qu'il a dit ?\nCan you believe what he said?\tPeux-tu croire à ce qu'il a dit ?\nCan you empty the dishwasher?\tTu peux vider le lave-vaisselle ?\nCan you get by on your wages?\tPeux-tu t'en sortir avec ta rémunération ?\nCan you get the door to shut?\tPeux-tu faire en sorte de fermer la porte ?\nCan you get the door to shut?\tPouvez-vous faire en sorte de fermer la porte ?\nCan you give me a cup of tea?\tTu peux me donner une tasse de thé ?\nCan you help me with my work?\tPeux-tu m'aider dans mon travail ?\nCan you lend me your bicycle?\tPeux-tu me prêter ton vélo ?\nCan you repeat what you said?\tPouvez-vous répéter ce que vous avez dit?\nCan you see that small house?\tArrives-tu à voir cette petite maison ?\nCan you see that small house?\tParviens-tu à voir cette petite maison ?\nCan you see that small house?\tArrivez-vous à voir cette petite maison ?\nCan you see that small house?\tParvenez-vous à voir cette petite maison ?\nCan you see that small house?\tParviens-tu à distinguer cette petite maison ?\nCan you tell me what this is?\tPeux-tu me dire ce que c'est ?\nCan you tell me what this is?\tPeux-tu me dire de quoi il retourne ?\nCan you tell me what this is?\tPeux-tu me dire de quoi il s'agit ?\nCan you tell me what this is?\tPouvez-vous me dire ce que c'est ?\nCan you tell me what this is?\tPouvez-vous me dire de quoi il retourne ?\nCan you tell me what this is?\tPouvez-vous me dire de quoi il s'agit ?\nCan you tell me your address?\tPeux-tu me dire ton adresse ?\nCan you tell us what you did?\tPouvez-vous nous dire ce que vous avez fait ?\nCan your brother drive a car?\tEst-ce que ton frère sait conduire ?\nCan your brother drive a car?\tTon frère sait-il conduire une voiture ?\nCats like playing in the sun.\tLes chats aiment jouer au soleil.\nCheese doesn't digest easily.\tLe fromage ne se digère pas facilement.\nChildren like climbing trees.\tLes enfants aiment grimper aux arbres.\nChildren need a lot of sleep.\tLes enfants ont besoin de beaucoup de sommeil.\nChildren need a lot of sleep.\tLes enfants requièrent beaucoup de sommeil.\nChildren should play outside.\tLes enfants devraient jouer à l'extérieur.\nChildren threw stones at him.\tDes enfants lui jetèrent des pierres.\nChoose three books at random.\tChoisis trois livres au hasard.\nCity life suits me very well.\tLa vie urbaine me convient très bien.\nCity life suits me very well.\tLa vie urbaine me convient fort bien.\nCome home as soon as you can.\tViens à la maison dès que tu peux !\nCome home as soon as you can.\tVenez à la maison dès que vous pouvez !\nCome on Tuesday, if possible.\tViens mardi, si cela est possible.\nCommit these words to memory.\tImprimez ces mots dans votre mémoire !\nCommit these words to memory.\tImprimez ces paroles dans votre mémoire !\nCommit these words to memory.\tImprime ces mots dans ta mémoire !\nCommit these words to memory.\tImprime ces paroles dans ta mémoire !\nCorrect the underlined words.\tCorrigez les mots soulignés.\nCorrect the underlined words.\tCorrige les mots soulignés.\nCould I borrow your eyeliner?\tPuis-je emprunter ton kohl ?\nCould I borrow your eyeliner?\tPuis-je emprunter ton crayon ?\nCould I borrow your eyeliner?\tPuis-je emprunter votre crayon ?\nCould you bring me a blanket?\tTu peux m'apporter une couverture?\nCould you call me back later?\tPourriez-vous me rappeler plus tard ?\nCould you call me back later?\tTu pourrais me rappeler plus tard ?\nCould you call me back later?\tPourrais-tu me rappeler plus tard ?\nCould you give me a discount?\tPourriez-vous me faire une remise ?\nCould you give me a discount?\tPourrais-tu me faire une remise ?\nCould you give me a discount?\tPourriez-vous me faire un rabais ?\nCould you give me a discount?\tPourrais-tu me faire un rabais ?\nCould you hand me the remote?\tPourrais-tu me passer la télécommande ?\nCould you hand me the remote?\tPourriez-vous me passer la télécommande ?\nCould you hand me the remote?\tPourrais-tu me passer la zapette ?\nCould you lend me some money?\tPourrais-tu me prêter de l'argent ?\nCould you please repeat that?\tPourriez-vous répéter ça s’il vous plaît ?\nCould you put these in a box?\tPourriez-vous mettre celles-ci dans une boîte ?\nCould you put these in a box?\tPourrais-tu mettre ceux-ci dans une boîte ?\nCriminals should be punished.\tLes criminels devraient être punis.\nCriminals should be punished.\tCe sont les criminels qui devraient être punis.\nCut the cake with that knife.\tCoupez le gâteau avec ce couteau.\nDad's always encouraging him.\tPapa l'encourage toujours.\nDecember has thirty-one days.\tDécembre a 31 jours.\nDemocracy encourages freedom.\tLa démocratie encourage la liberté.\nDid I forget to mention that?\tAi-je oublié de mentionner cela ?\nDid I leave my umbrella here?\tAi-je laissé ici mon parapluie ?\nDid Tom really win a lottery?\tTom a-t-il réellement gagné une loterie?\nDid Tom say why he was fired?\tTom a-t-il dit pourquoi il a été renvoyé ?\nDid Tom say why he was fired?\tTom a-t-il dit pourquoi il a été viré ?\nDid anyone hear the gun shot?\tQuiconque a-t-il entendu la détonation ?\nDid he propose any solutions?\tA-t-il proposé quelconques solutions ?\nDid she show you the picture?\tT'a-t-elle montré la photo ?\nDid she show you the picture?\tT'a-t-elle montré le tableau ?\nDid she show you the picture?\tVous a-t-elle montré la photo ?\nDid somebody call the police?\tQuelqu'un a-t-il appelé la police ?\nDid somebody mention my name?\tQuelqu'un a-t-il mentionné mon nom ?\nDid they go to museum by bus?\tVont-ils au musée en bus ?\nDid they go to the mountains?\tEst-ce qu'ils sont partis à la montagne ?\nDid you do this all yourself?\tAs-tu fait ceci entièrement par toi-même ?\nDid you do this all yourself?\tAvez-vous fait ceci entièrement par vous-même ?\nDid you go to the last class?\tAs-tu assisté au dernier cours ?\nDid you have a pleasant trip?\tAs-tu passé un agréable voyage ?\nDid you have a pleasant trip?\tAvez-vous passé un agréable voyage ?\nDid you make any new friends?\tT'es-tu fait de quelconques nouveaux amis ?\nDid you make any new friends?\tVous êtes-vous fait de quelconques nouveaux amis ?\nDid you notice her new dress?\tAvez-vous remarqué sa nouvelle robe ?\nDid you think I was Canadian?\tPensais-tu que j'étais Canadien ?\nDid you think I was Canadian?\tPensiez-vous que j'étais Canadien ?\nDid you think I was Canadian?\tPensiez-vous que j'étais Canadienne ?\nDid you think I was Canadian?\tPensais-tu que j'étais Canadienne ?\nDid you vote for Tom or Mary?\tAvez-vous voté pour Tom ou pour Marie?\nDisneyland was built in 1955.\tDisneyland a été construit en 1955.\nDivide this among yourselves.\tDivisez ceci entre vous.\nDo I have to be hospitalized?\tSuis-je obligé d'être hospitalisé ?\nDo I have to go to the party?\tDois-je me rendre à la fête ?\nDo I have to leave a deposit?\tDois-je laisser une garantie ?\nDo I need to get the manager?\tMe faut-il quérir le directeur ?\nDo they have their suitcases?\tEst-ce qu'ils ont leurs valises ?\nDo they take care of the dog?\tPrennent-ils soin du chien ?\nDo they take care of the dog?\tPrennent-elles soin du chien ?\nDo you agree to our proposal?\tAcceptez-vous notre proposition ?\nDo you feel any better today?\tTe sens-tu mieux aujourd'hui ?\nDo you feel at home anywhere?\tVous sentez-vous à l'aise partout ?\nDo you have a school uniform?\tAvez-vous un uniforme scolaire ?\nDo you have a search warrant?\tDisposez-vous d'un mandat de perquisition ?\nDo you have any tickets left?\tIl vous reste des tickets ?\nDo you have anything cheaper?\tAvez-vous quelque chose de moins cher ?\nDo you have anything cheaper?\tAs-tu quelque chose de moins cher ?\nDo you have anything to read?\tAs-tu quelque chose à lire ?\nDo you have health insurance?\tAs-tu une assurance médicale ?\nDo you have health insurance?\tAvez-vous une assurance médicale ?\nDo you have health insurance?\tÊtes-vous couvert par une assurance médicale ?\nDo you have health insurance?\tÊtes-vous couverte par une assurance médicale ?\nDo you have health insurance?\tÊtes-vous couverts par une assurance médicale ?\nDo you have health insurance?\tÊtes-vous couvertes par une assurance médicale ?\nDo you have health insurance?\tEs-tu couvert par une assurance médicale ?\nDo you have health insurance?\tEs-tu couverte par une assurance médicale ?\nDo you have jeans in my size?\tAvez-vous des jeans de ma taille ?\nDo you have plans for dinner?\tAs-tu des projets pour le déjeuner ?\nDo you have plans for dinner?\tAs-tu des projets pour le souper ?\nDo you have plans for dinner?\tAvez-vous des projets pour le déjeuner ?\nDo you have plans for dinner?\tAvez-vous des projets pour le souper ?\nDo you have something for me?\tAvez-vous quelque chose pour moi ?\nDo you have something for me?\tAs-tu quelque chose pour moi ?\nDo you have something to add?\tAvez-vous quelque chose à ajouter?\nDo you have something to say?\tAvez-vous quelque chose à dire ?\nDo you have something to say?\tAs-tu quelque chose à dire ?\nDo you have to make a speech?\tEst-ce que tu as à faire un discours ?\nDo you honestly believe that?\tLe croyez-vous honnêtement ?\nDo you honestly believe that?\tLe crois-tu honnêtement ?\nDo you know all these people?\tConnais-tu tous ces gens ?\nDo you know all these people?\tConnaissez-vous tous ces gens ?\nDo you know how to cook fish?\tSavez-vous cuisiner le poisson ?\nDo you know how to cook meat?\tSais-tu comment cuire de la viande ?\nDo you know what it's called?\tSais-tu comment ça s'appelle ?\nDo you know what it's called?\tSavez-vous comment ça s'appelle ?\nDo you know what the time is?\tSais-tu quelle heure il est ?\nDo you like the way you look?\tAimes-tu ton apparence ?\nDo you like the way you look?\tAimez-vous votre apparence ?\nDo you like the way you look?\tVotre apparence vous sied-elle ?\nDo you like the way you look?\tTon apparence te sied-elle ?\nDo you mean you're giving up?\tVeux-tu dire que tu abandonnes ?\nDo you mean you're giving up?\tVeux-tu dire que tu laisses tomber ?\nDo you mean you're giving up?\tVoulez-vous dire que vous abandonnez ?\nDo you mean you're giving up?\tVoulez-vous dire que vous laissez tomber ?\nDo you mind if I get started?\tEst-ce que ça ne te dérange pas si je m'y mets ?\nDo you mind if I get started?\tEst-ce que ça ne vous dérange pas si je m'y mets ?\nDo you mind if I help myself?\tVois-tu un inconvénient à ce que je me serve ?\nDo you mind if I help myself?\tVoyez-vous un inconvénient à ce que je me serve ?\nDo you mind if I try this on?\tVois-tu un inconvénient à ce que j'essaie ceci ?\nDo you mind if I try this on?\tVoyez-vous un inconvénient à ce que j'essaie ceci ?\nDo you mind opening the door?\tTu peux ouvrir la porte ?\nDo you often go to see plays?\tAllez-vous souvent voir des pièces de théâtre ?\nDo you really think it's bad?\tPenses-tu vraiment que cela soit mauvais ?\nDo you really think it's bad?\tPensez-vous vraiment que cela soit mauvais ?\nDo you take American Express?\tPrenez-vous la carte American Express ?\nDo you take American Express?\tAcceptez-vous la carte American Express ?\nDo you think Tom can find it?\tEst-ce que tu penses que Tom peut le trouver ?\nDo you think Tom can find it?\tEst-ce que vous pensez que Tom peut le trouver ?\nDo you think about Tom a lot?\tPenses-tu beaucoup à Tom ?\nDo you think about Tom a lot?\tPensez-vous beaucoup à Tom ?\nDo you think he will like it?\tPenses-tu qu'il l'appréciera ?\nDo you understand everything?\tEst-ce que tu comprends tout ?\nDo you understand everything?\tEst-ce que vous comprenez tout ?\nDo you want something to eat?\tVoulez-vous quelque chose à manger ?\nDo you want something to eat?\tVeux-tu quelque chose à manger ?\nDo you want to dance with me?\tVeux-tu danser avec moi ?\nDo you want to go for a swim?\tVoulez-vous aller nager ?\nDo you want to go for a swim?\tTu veux aller nager ?\nDo you want to make me happy?\tVoulez-vous me faire plaisir ?\nDo you want to play with Tom?\tVeux-tu jouer avec Tom ?\nDo you want to play with Tom?\tVoulez-vous jouer avec Tom ?\nDo you want to watch a movie?\tVeux-tu regarder un film ?\nDo you want to watch a movie?\tVoulez-vous regarder un film ?\nDo your best and don't worry.\tFais de ton mieux et ne t'en fais pas.\nDo your best and don't worry.\tFaites de votre mieux et ne vous en faites pas.\nDo your homework by yourself.\tFais tes devoirs toi-même.\nDo your homework by yourself.\tFaites vous-mêmes vos devoirs.\nDo your homework by yourself.\tEffectuez vos devoirs par vous-mêmes.\nDo your homework by yourself.\tEffectuez vos devoirs par vous-même.\nDo your homework by yourself.\tEffectue tes devoirs par toi-même.\nDo your parents speak French?\tVos parents parlent-ils le français ?\nDo your parents speak French?\tTes parents parlent-ils français ?\nDoes anybody know about this?\tQuiconque en a-t-il connaissance ?\nDoes anyone have an antidote?\tQuelqu'un a-t-il un antidote ?\nDoes anyone know you're here?\tQuiconque sait-il que vous êtes ici ?\nDoes anyone know you're here?\tQuiconque sait-il que vous êtes là ?\nDoes anyone know you're here?\tQuiconque sait-il que tu es ici ?\nDoes anyone know you're here?\tQuiconque sait-il que tu es là ?\nDoes anyone need a lift home?\tQuiconque a-t-il besoin d'être reconduit chez lui ?\nDoes he need to go right now?\tFaut-il qu'il parte précisément maintenant ?\nDoes that mean you bought it?\tCela signifie-t-il que tu l'as acheté ?\nDoes that mean you bought it?\tCela signifie-t-il que vous l'avez acheté ?\nDoes that mean you bought it?\tCela signifie-t-il que tu l'as achetée ?\nDoes that mean you bought it?\tCela signifie-t-il que vous l'avez achetée ?\nDoes this book belong to you?\tEst-ce que ce livre vous appartient ?\nDoes this book belong to you?\tCe livre vous appartient-il ?\nDon't act like a know-it-all.\tN'agis pas en Monsieur Je-sais-tout !\nDon't act like a know-it-all.\tN'agissez pas en Monsieur Je-sais-tout !\nDon't act like a know-it-all.\tN'agis pas en Madame Je-sais-tout !\nDon't act like a know-it-all.\tN'agissez pas en Madame Je-sais-tout !\nDon't ask too many questions.\tNe pose pas trop de questions.\nDon't ask too many questions.\tNe posez pas trop de questions.\nDon't be ashamed of yourself.\tN'aie pas honte de toi !\nDon't be ashamed of yourself.\tN'ayez pas honte de vous !\nDon't be so hard on yourself.\tNe sois pas si dur avec toi-même.\nDon't be so hard on yourself.\tNe soyez pas si dur avec vous-même.\nDon't be so hard on yourself.\tNe soyez pas si durs avec vous-mêmes.\nDon't be so hard on yourself.\tNe soyez pas si dure avec vous-même.\nDon't be so hard on yourself.\tNe soyez pas si dures avec vous-mêmes.\nDon't be so hard on yourself.\tNe sois pas si dure avec toi-même.\nDon't do anything stupid, OK?\tNe fais rien de stupide, d'accord ?\nDon't do anything stupid, OK?\tNe faites rien de stupide, d'accord ?\nDon't ever underestimate Tom.\tNe jamais sous-estimer Tom.\nDon't exceed the speed limit.\tNe dépasse pas la limite de vitesse.\nDon't expect too much of him.\tN'attendez pas trop de lui.\nDon't forget your ice skates.\tN'oublie pas tes patins à glace.\nDon't forget your toothbrush.\tN'oublie pas ta brosse à dents !\nDon't forget your toothbrush.\tN'oubliez pas votre brosse à dents !\nDon't give up on your dreams.\tNe renoncez pas à vos rêves !\nDon't give up on your dreams.\tNe renonce pas à tes rêves !\nDon't insult my intelligence.\tN'insulte pas mon intelligence.\nDon't insult my intelligence.\tN'insultez pas mon intelligence.\nDon't intrude on her privacy.\tN'empiète pas sur sa vie privée.\nDon't lean against this wall.\tNe t'adosse pas à ce mur.\nDon't leave me alone, please.\tS'il te plaît ne me laisse pas toute seule.\nDon't let him know the truth.\tNe le laisse pas connaître la vérité.\nDon't let him know the truth.\tNe le laissez pas connaître la vérité.\nDon't let your feelings show.\tNe montre pas tes émotions.\nDon't let your feelings show.\tNe laisse pas transparaître tes émotions.\nDon't let your feelings show.\tNe laissez pas transparaître vos émotions.\nDon't let your feelings show.\tNe montrez pas vos émotions.\nDon't make a scene in public.\tNe fais pas de scène en public.\nDon't make fun of old people.\tNe riez pas des vieux.\nDon't make fun of that child.\tNe vous moquez pas de cet enfant.\nDon't make me come after you.\tNe me force pas à aller te chercher !\nDon't make me come after you.\tNe me forcez pas à aller vous chercher !\nDon't make me come back here.\tNe me faites pas revenir ici !\nDon't make me come back here.\tNe me fais pas revenir ici !\nDon't make me hurt you again.\tNe me force pas à te faire à nouveau mal !\nDon't make me hurt you again.\tNe me forcez pas à vous faire à nouveau mal !\nDon't mention this to anyone.\tNe le mentionnez à personne !\nDon't mention this to anyone.\tNe le mentionne à personne !\nDon't misunderstand my words.\tNe comprenez pas mes paroles de travers !\nDon't misunderstand my words.\tNe comprends pas mes paroles de travers !\nDon't move unless I tell you.\tNe bougez pas à moins que je ne vous le dise !\nDon't move unless I tell you.\tNe bouge pas à moins que je ne te le dise !\nDon't play ball in this room.\tNe joue pas à la balle dans la pièce.\nDon't put books on the table.\tNe pose pas de livres sur la table.\nDon't put sugar in my coffee.\tNe mets pas de sucre dans mon café.\nDon't raise your voice at me.\tN'élève pas la voix sur moi.\nDon't read that kind of book.\tNe lis pas ce genre de livre.\nDon't read that kind of book.\tNe lisez pas ce genre de livre.\nDon't run around in the room.\tNe cours pas dans la pièce.\nDon't scare me like that, OK?\tNe me fais pas peur comme ça ! D'accord ?\nDon't scare me like that, OK?\tNe me faites pas peur comme ça ! D'accord ?\nDon't scare me like that, OK?\tNe m'effraie pas comme ça ! D'accord ?\nDon't share this with anyone.\tNe partage ceci avec personne.\nDon't share this with anyone.\tN'en fais part à personne.\nDon't share this with anyone.\tN'en faites part à personne.\nDon't speak to her like that.\tNe t'adresse pas ainsi à elle.\nDon't speak to her like that.\tNe vous adressez pas ainsi à elle.\nDon't speak to him like that.\tNe lui parle pas comme ça.\nDon't take your eyes off Tom.\tNe quitte pas Tom des yeux.\nDon't tell Father about this.\tN'en parle pas à papa.\nDon't tell Father about this.\tNe le dis pas à papa.\nDon't tell anyone I was here.\tNe dites à personne que j'étais ici.\nDon't tell me you can't read.\tNe me dites pas que vous ne savez pas lire !\nDon't tell me you can't read.\tNe me dis pas que tu ne sais pas lire !\nDon't tell me you can't swim.\tNe me dites pas que vous ne savez pas nager !\nDon't tell me you can't swim.\tNe me dis pas que tu ne sais pas nager !\nDon't throw away your chance.\tNe rejette pas ta chance.\nDon't underestimate my power.\tNe sous-estime pas ma puissance.\nDon't underestimate my power.\tNe sous-estimez pas ma force.\nDon't underestimate yourself.\tNe te sous-estime pas.\nDon't wait for me for dinner.\tNe m'attendez pas pour déjeuner !\nDon't wait for me for dinner.\tNe m'attendez pas pour dîner !\nDon't worry about me so much.\tNe te fais pas tant de souci pour moi !\nDon't worry about me so much.\tNe vous faites pas tant de souci pour moi !\nDon't worry about me so much.\tNe vous souciez pas tant de moi !\nDon't worry about me so much.\tNe te soucie pas tant de moi !\nDon't worry about what I did.\tNe vous faites pas de souci au sujet de ce que j'ai fait !\nDon't worry about what I did.\tNe vous faites pas de souci à propos de ce que j'ai fait !\nDon't worry about what I did.\tNe te fais pas de souci au sujet de ce que j'ai fait !\nDon't worry about what I did.\tNe te fais pas de souci à propos de ce que j'ai fait !\nDon't worry. Everything's OK.\tNe vous en faites pas ! Tout est au poil.\nDon't worry. Everything's OK.\tNe t'en fais pas ! Tout est au poil.\nDon't worry. We're safe here.\tNe vous en faites pas ! Nous sommes en sécurité, ici.\nDon't worry. We're safe here.\tNe t'en fais pas ! Nous sommes en sécurité, ici.\nDon't you have any good news?\tN'as-tu pas la moindre bonne nouvelle ?\nDon't you have any good news?\tN'avez-vous pas la moindre bonne nouvelle ?\nDon't you have anything else?\tN'avez vous rien d'autre ?\nDon't you have classes today?\tN'avez-vous pas cours, aujourd'hui ?\nDon't you have classes today?\tN'as-tu pas cours, aujourd'hui ?\nDon't you move or I'll shoot.\tNe bougez pas ou je tire !\nDon't you move or I'll shoot.\tNe bouge pas ou je tire !\nDon't you recognize that man?\tNe reconnais-tu pas cet homme ?\nDon't you recognize that man?\tNe reconnaissez-vous pas cet homme ?\nDon't you want to come along?\tNe veux-tu pas venir avec moi ?\nDraw me a seven-pointed star.\tDessine-moi une étoile à sept branches !\nDraw me a seven-pointed star.\tDessinez-moi une étoile à sept branches !\nDraw me a seven-pointed star.\tTrace-moi une étoile à sept branches !\nDraw me a seven-pointed star.\tTracez-moi une étoile à sept branches !\nDust got into one of my eyes.\tJ'ai une poussière dans l'œil.\nEach one does what he wishes.\tChacun fait ce qu'il veut.\nEach state had just one vote.\tChaque État ne disposait que d'une voix.\nEnglish is a global language.\tL'anglais est un langage mondial.\nEnglish is spoken in America.\tL'anglais est parlé en Amérique.\nEuropeans like to drink wine.\tLes Européens aiment boire du vin.\nEven monkeys fall from trees.\tMême les singes tombent des arbres.\nEvery crime must be punished.\tTout crime doit être puni.\nEvery crime must be punished.\tChaque crime doit être puni.\nEvery girl knows that singer.\tToutes les filles connaissent ce chanteur.\nEverybody at school hates me.\tTout le monde me déteste, à l'école.\nEverybody is waiting for you.\tTout le monde t'attend.\nEverybody needs to calm down.\tIl faut que tout le monde se calme.\nEverybody speaks well of her.\tTout le monde dit du bien d'elle.\nEverybody speaks well of him.\tTout le monde parle de lui en bien.\nEverybody wanted me to do it.\tTout le monde voulait que je le fasse.\nEveryone admired his courage.\tTout le monde admirait son courage.\nEveryone always asks me that.\tTout le monde me demande toujours ça.\nEveryone has their own style.\tChacun a son propre style.\nEveryone looks uncomfortable.\tTout le monde a l'air mal à l'aise.\nEveryone seems to be nervous.\tTout le monde semble nerveux.\nEveryone should have a hobby.\tTout le monde devrait avoir un passe-temps.\nEveryone's going to be tired.\tTout le monde va être fatigué.\nEverything has been arranged.\tTout a été arrangé.\nEverything has been arranged.\tTout a été prévu.\nEverything has to be perfect.\tTout doit être parfait.\nEverything he says upsets me.\tTout ce qu'il dit me déçoit.\nEverything remains as it was.\tTout demeure comme c'était.\nExcuse me, have you seen Tom?\tExcusez-moi, avez-vous vu Tom ?\nFacebook is blocked in China.\tFacebook est bloqué en Chine.\nFallen rocks blocked the way.\tDes éboulements de roches bloquaient le passage.\nFate taught me a hard lesson.\tLe sort me réserva une solide leçon.\nFew people know how to do it.\tPeu de gens savent comment on fait.\nFill it with regular, please.\tVeuillez faire le plein d'ordinaire.\nFill it with regular, please.\tVeuillez faire le plein avec de l'ordinaire.\nFinally, he reached his goal.\tIl a finalement atteint son objectif.\nFish can't live out of water.\tLes poissons ne peuvent vivre hors de l'eau.\nFootball is my favorite game.\tLe football est mon sport préféré.\nFortunately, no one was hurt.\tHeureusement, personne ne fut blessé.\nFrankly speaking, I hate him.\tPour le dire franchement, je le déteste.\nFrankly speaking, he's wrong.\tPour parler franchement, il a tort.\nFrench is difficult to learn.\tLe français est difficile à apprendre.\nFunny, I don't remember that.\tC'est marrant, je ne me le rappelle pas.\nFunny, I don't remember that.\tC'est marrant, je ne me souviens pas de cela.\nGet these people out of here.\tDégagez ces gens !\nGet these people out of here.\tDégage ces gens !\nGive me the keys to your car.\tDonne-moi tes clés de voiture !\nGive me the keys to your car.\tDonnez-moi vos clés de voiture !\nGive me the keys. I'll drive.\tDonne-moi les clés. Je conduirai.\nGive me the keys. I'll drive.\tDonnez-moi les clés. Je vais conduire.\nGo and speak to my colleague.\tAdressez-vous à mon collègue.\nGo put some clean clothes on.\tVa enfiler des vêtements propres !\nGo put some clean clothes on.\tAllez enfiler des vêtements propres !\nGold will not buy everything.\tL'or n'achète pas tout.\nGrandmother looked very well.\tGrand-mère avait l'air fort bien.\nGreat progress has been made.\tDe grands progrès ont été réalisés.\nGuide dogs help blind people.\tLes chiens guides aident les aveugles.\nHas anybody seen my beer mug?\tQuelqu'un a-t-il vu ma chope à bière ?\nHas the mailman already come?\tLe facteur est-il déjà passé ?\nHas your dog ever bitten you?\tTon chien t'a-t-il déjà mordu ?\nHas your dog ever bitten you?\tTon chien t'a-t-il jamais mordue ?\nHas your dog ever bitten you?\tVotre chien vous a-t-il jamais mordus ?\nHas your dog ever bitten you?\tVotre chien vous a-t-il jamais mordues ?\nHas your dog ever bitten you?\tVotre chien vous a-t-il jamais mordu ?\nHas your dog ever bitten you?\tVotre chien vous a-t-il jamais mordue ?\nHave I kept you waiting long?\tVous ai-je fait attendre longtemps ?\nHave a cup of tea, won't you?\tVous prendrez bien une tasse de thé ?\nHave a look at the world map.\tRegardez la carte du monde.\nHave fun, but don't get lost.\tAmuse-toi bien, mais ne te perd pas.\nHave you bought a watermelon?\tAs-tu acheté une pastèque ?\nHave you eaten breakfast yet?\tAvez-vous déjà petit-déjeuné ?\nHave you ever been to Africa?\tÊtes-vous déjà allé en Afrique ?\nHave you ever been to Africa?\tAs-tu jamais été en Afrique ?\nHave you ever been to Africa?\tAvez-vous jamais été en Afrique ?\nHave you ever been to Boston?\tAvez-vous jamais été à Boston ?\nHave you ever been to France?\tEst-ce que tu as déjà été en France ?\nHave you ever been to Hawaii?\tÊtes-vous déjà allé à Hawaï ?\nHave you ever been to Hawaii?\tEs-tu déjà allé à Hawaï ?\nHave you ever been to Kyushu?\tAs-tu jamais été à Kyushu ?\nHave you ever been to Mexico?\tEs-tu déjà allé au Mexique ?\nHave you ever been to Venice?\tEs-tu déjà allé à Venise ?\nHave you ever dyed your hair?\tT'es-tu jamais teint les cheveux ?\nHave you ever dyed your hair?\tVous êtes-vous jamais teint les cheveux ?\nHave you ever dyed your hair?\tNe vous êtes-vous jamais teint les cheveux ?\nHave you ever dyed your hair?\tNe t'es-tu jamais teint les cheveux ?\nHave you ever eaten raw fish?\tAvez-vous déjà mangé du poisson cru ?\nHave you ever failed a class?\tAs-tu jamais échoué dans une matière ?\nHave you ever gone to Venice?\tEs-tu déjà allé à Venise ?\nHave you ever ridden a horse?\tEs-tu déjà monté sur un cheval ?\nHave you ever ridden a horse?\tEs-tu jamais monté à cheval ?\nHave you ever ridden a horse?\tEs-tu jamais montée à cheval ?\nHave you ever ridden a horse?\tÊtes-vous jamais monté à cheval ?\nHave you ever ridden a horse?\tÊtes-vous jamais montée à cheval ?\nHave you ever ridden a horse?\tÊtes-vous jamais montés à cheval ?\nHave you ever ridden a horse?\tÊtes-vous jamais montées à cheval ?\nHave you ever sung in public?\tAs-tu jamais chanté en public ?\nHave you ever sung in public?\tAvez-vous jamais chanté en public ?\nHave you ever written a book?\tAvez-vous déjà écrit un livre ?\nHave you received the letter?\tAvez-vous reçu la lettre ?\nHave you tried Japanese beer?\tAs-tu goûté la bière japonaise ?\nHave you tried Japanese beer?\tAvez-vous goûté la bière japonaise ?\nHave you tried online dating?\tAvez-vous essayé les rencontres en ligne ?\nHave you tried online dating?\tAs-tu essayé les rencontres en ligne ?\nHave you written your report?\tAs-tu rédigé ton rapport ?\nHave you written your report?\tAvez-vous rédigé votre rapport ?\nHe acted in his own interest.\tIl agit pour son propre intérêt.\nHe acted in his own interest.\tIl agit dans son intérêt propre.\nHe acts as if he were a king.\tIl agit comme s'il était un roi.\nHe adhered to his own theory.\tIl fut d'une résistance persistante.\nHe admitted that it was true.\tIl admit que c'était vrai.\nHe admitted that it was true.\tIl a admis que c'était vrai.\nHe always does as he pleases.\tIl agit toujours à sa guise.\nHe always hums while working.\tIl fredonne toujours en travaillant.\nHe always keeps appointments.\tIl est toujours à ses rendez-vous.\nHe always keeps his promises.\tIl tient toujours ses promesses.\nHe always puts himself first.\tIl se place toujours en premier.\nHe always speaks well of her.\tIl parle toujours d'elle en bien.\nHe always walks with a rifle.\tIl marche toujours en possédant une arme.\nHe always wears dark clothes.\tIl porte toujours des vêtements sombres.\nHe always wears dark glasses.\tIl porte toujours des lunettes noires.\nHe and I are kindred spirits.\tLui et moi sommes des âmes sœurs.\nHe announced the next singer.\tIl annonça le chanteur suivant.\nHe appeared on TV last night.\tIl est passé à la télévision la nuit dernière.\nHe asked a question about it.\tIl a posé une question à ce sujet.\nHe asked an awkward question.\tIl posa une question embarrassante.\nHe asked an awkward question.\tIl a posé une question embarrassante.\nHe asked her if she knew him.\tIl lui a demandé si elle le connaissait.\nHe asked her if she knew him.\tIl lui demanda si elle le connaissait.\nHe asked her where she lived.\tIl lui a demandé où elle vivait.\nHe asked me to open the door.\tIl me demanda d'ouvrir la porte.\nHe asked me what my name was.\tIl m'a demandé mon nom.\nHe asked me who that man was.\tIl m'a demandé qui est cet homme.\nHe asked the man to help him.\tIl a demandé à l'homme de l'aider.\nHe beckoned me to follow him.\tIl me fit signe de le suivre.\nHe began skinning the animal.\tIl commença à dépecer l'animal.\nHe began to play an old song.\tIl commença à jouer une vieille chanson.\nHe begged her to forgive him.\tIl la supplia de lui pardonner.\nHe belongs to the brass band.\tIl fait partie d'une fanfare.\nHe brought his dog to school.\tIl a emmené son chien à l'école.\nHe came back at nine o'clock.\tIl rentra à neuf heures.\nHe came back at nine o'clock.\tIl est rentré à neuf heures.\nHe came from another country.\tIl venait d'un autre pays.\nHe came from another country.\tIl vint d'un autre pays.\nHe came from another country.\tIl est venu d'un autre pays.\nHe came here ten minutes ago.\tIl est venu ici il y a dix minutes.\nHe came home late last night.\tIl est rentré tard hier soir.\nHe came to see you yesterday.\tIl est venu te voir hier.\nHe can explain the situation.\tIl peut expliquer la situation.\nHe can play tennis very well.\tIl sait très bien jouer au tennis.\nHe can run faster than I can.\tIl peut courir plus vite que moi.\nHe can run faster than I can.\tIl sait courir plus vite que moi.\nHe can speak Russian as well.\tIl sait aussi parler russe.\nHe can speak eight languages.\tIl peut parler huit langues.\nHe can't control his desires.\tIl ne parvient pas à contrôler ses désirs.\nHe cannot write his own name.\tIl ne sait pas écrire son propre nom.\nHe carries a bag on his back.\tIl porte un sac sur le dos.\nHe catches colds very easily.\tIl s'enrhume facilement.\nHe changed schools last year.\tIl a changé d'école l'année dernière.\nHe chose his words carefully.\tIl a soigneusement choisi ses mots.\nHe chose his words carefully.\tIl choisit soigneusement ses mots.\nHe clearly stated that point.\tIl a clairement énoncé ce point.\nHe collected a lot of stamps.\tIl a collectionné de nombreux timbres.\nHe collected a lot of stamps.\tIl a collecté de nombreux timbres.\nHe continued working all day.\tIl a continué à travailler toute la journée.\nHe cut down that cherry tree.\tIl a coupé ce cerisier.\nHe cut the meat with a knife.\tIl coupa la viande avec un couteau.\nHe declined their invitation.\tIl a décliné leur invitation.\nHe demands immediate payment.\tIl exige le paiement immédiat.\nHe did better than last time.\tIl a fait mieux que la dernière fois.\nHe did both at the same time.\tIl fit les deux en même temps.\nHe did both at the same time.\tIl a fait les deux en même temps.\nHe did it without me knowing.\tIl l'a fait sans que je le sache.\nHe did not enjoy his lessons.\tIl n'appréciait pas ses leçons.\nHe did not have enough money.\tIl n'avait pas assez d'argent.\nHe did not turn up after all.\tFinalement il n'est pas venu.\nHe did not want her to leave.\tIl ne voulait pas qu'elle parte.\nHe did what I told him to do.\tIl fit ce que je lui dis de faire.\nHe didn't acknowledge defeat.\tIl n’a pas admis la défaite.\nHe didn't answer my question.\tIl n'a pas répondu à ma question.\nHe didn't attend the meeting.\tIl ne prit pas part à la rencontre.\nHe didn't attend the meeting.\tIl n'a pas pris part à la réunion.\nHe didn't reply to my letter.\tIl n'a pas répondu à ma lettre.\nHe didn't reply to my letter.\tIl ne répondit pas à ma lettre.\nHe didn't tell me everything.\tIl ne me conta pas tout.\nHe didn't tell me everything.\tIl ne me dit pas tout.\nHe didn't tell me everything.\tIl ne m'a pas tout dit.\nHe didn't tell me everything.\tIl ne m'a pas tout conté.\nHe didn't think it was funny.\tIl ne pensa pas que ce fut drôle.\nHe didn't think it was funny.\tIl n'a pas pensé que c'était drôle.\nHe does not have any friends.\tIl n'a aucun ami.\nHe doesn't believe me at all.\tIl ne me croit pas du tout.\nHe doesn't eat this, does he?\tIl ne mange pas ça, si ?\nHe doesn't have any children.\tIl n'a pas d'enfants.\nHe doesn't remember anything.\tIl ne se rappelle de rien.\nHe doesn't remember anything.\tIl ne se souvient de rien.\nHe doesn't work here anymore.\tIl ne travaille plus ici.\nHe earns 300,000 yen a month.\tIl gagne 300.000 yens par mois.\nHe exchanged yen for dollars.\tIl changea des yens en dollars.\nHe exposed himself to danger.\tIl s'est exposé au danger.\nHe finally bent to my wishes.\tIl s'est finalement plié à mes désirs.\nHe finished reading the book.\tIl a fini de lire le livre.\nHe found a good place for me.\tIl m'a trouvé un bon endroit.\nHe gave her a piece of paper.\tIl lui a donné une feuille de papier.\nHe gave her a piece of paper.\tIl lui donna une feuille de papier.\nHe gave in to the temptation.\tIl a cédé à la tentation.\nHe gave in to the temptation.\tIl céda à la tentation.\nHe gave me a piece of advice.\tIl me donna un conseil.\nHe gave some milk to the cat.\tIl donna du lait au chat.\nHe gladly accepted our offer.\tIl a volontiers accepté notre proposition.\nHe goes to school by bicycle.\tIl se rend à l'école en vélo.\nHe goes to the office by car.\tIl se rend au bureau en voiture.\nHe got through with his work.\tIl a fini son travail.\nHe got up earlier than usual.\tIl s'est levé plus tôt qu'à l'habitude.\nHe got up earlier than usual.\tIl s'est levé plus tôt que d'habitude.\nHe grew up to be an engineer.\tIl est né pour devenir ingénieur.\nHe had a talent for painting.\tIl était doté d'un talent pour la peinture.\nHe had a terrible experience.\tIl a traversé une terrible épreuve.\nHe had his son die last year.\tSon fils est mort l'année dernière.\nHe had no friend to help him.\tIl n'avait pas d'ami pour l'aider.\nHe had taken care of himself.\tIl avait pris soin de lui-même.\nHe had the nerve to say that.\tIl a eu le culot de dire ça.\nHe had the old machine fixed.\tIl a fait réparer la vieille machine.\nHe has a car that I gave him.\tIl a une voiture que je lui ai donnée.\nHe has a fertile imagination.\tIl a une imagination fertile.\nHe has a good firm handshake.\tIl a une poignée de main ferme.\nHe has a lot of things to do.\tIl a de nombreuses choses à faire.\nHe has a photographic memory.\tIl a une mémoire photographique.\nHe has a superiority complex.\tIl a un complexe de supériorité.\nHe has come out of his shell.\tIl est sorti de sa coquille.\nHe has earned a lot of money.\tIl a gagné beaucoup d'argent.\nHe has learned to be patient.\tIl a appris à être patient.\nHe has little money with him.\tIl a peu d'argent sur lui.\nHe has no political ambition.\tIl est dépourvu d'ambition politique.\nHe has no sense of direction.\tIl n'a aucun sens de l'orientation.\nHe has nothing to do with it.\tIl n'a rien à voir avec ça.\nHe has red hair and freckles.\tIl a les cheveux roux et des taches de rousseur.\nHe has set up a new business.\tIl a démarré un nouveau business.\nHe hasn't talked to me since.\tIl ne m'a pas parlé depuis.\nHe helped me carry the chair.\tIl m'a aidé à porter la chaise.\nHe hit his head on the shelf.\tIl s'est cogné la tête contre l'étagère.\nHe holds the rank of colonel.\tIl tient le rang de colonel.\nHe hung his jacket on a hook.\tIl suspendit sa veste à une patère.\nHe hurt himself when he fell.\tIl se blessa lorsqu'il tomba.\nHe is a doctor by profession.\tSon métier est médecin.\nHe is a lawyer by profession.\tIl fait profession d'avocat.\nHe is a man of great ability.\tC'est un homme de grand talent.\nHe is a teacher and novelist.\tIl est professeur et romancier.\nHe is able to swim very fast.\tIl est capable de nager très vite.\nHe is accustomed to the work.\tIl est habitué au travail.\nHe is always late for school.\tIl est toujours en retard à l'école.\nHe is an experienced teacher.\tC'est un enseignant expérimenté.\nHe is ashamed of his failure.\tIl a honte de son échec.\nHe is better than me at math.\tIl est meilleur que moi en maths.\nHe is bound to win the match.\tIl va probablement gagner le match.\nHe is close to the president.\tIl est proche du président.\nHe is constantly complaining.\tIl est toujours en train de se plaindre.\nHe is constantly complaining.\tIl ne fait que se plaindre.\nHe is deeply attached to her.\tIl lui est très attaché.\nHe is eager to become famous.\tIl est avide de gloire.\nHe is every inch a gentleman.\tC'est un parfait gentleman.\nHe is every inch a gentleman.\tIl a tout d'un monsieur.\nHe is going to run for mayor.\tIl va se présenter aux élections municipales.\nHe is good at playing tennis.\tIl joue bien au tennis.\nHe is just right for the job.\tIl est parfait pour le poste.\nHe is known as a rock singer.\tIl est connu en tant que chanteur de rock.\nHe is likely to win the game.\tIl est probable qu'il gagne la partie.\nHe is likely to win the game.\tIl a des chances de gagner la partie.\nHe is likely to win the game.\tIl a des chances de gagner le jeu.\nHe is likely to win the game.\tIl est probable qu'il gagne le jeu.\nHe is likely to win the game.\tIl a des chances de remporter la partie.\nHe is likely to win the game.\tIl a des chances de remporter le jeu.\nHe is likely to win the game.\tIl est probable qu'il remporte le jeu.\nHe is likely to win the game.\tIl est probable qu'il remporte la partie.\nHe is more lucky than clever.\tIl est plus chanceux qu'intelligent.\nHe is most likely to succeed.\tIl est celui qui a le plus de chances de réussir.\nHe is much smarter than I am.\tIl est bien plus intelligent que je ne le suis.\nHe is my brother, not father.\tC'est mon frère, pas mon père.\nHe is no longer welcome here.\tIl n'est plus le bienvenu ici.\nHe is not at all a gentleman.\tCe n'est pas du tout un gentleman.\nHe is not at all a gentleman.\tIl n'est pas du tout un gentleman.\nHe is not going to get ahead.\tIl ne va pas progresser.\nHe is not what he used to be.\tIl n'est plus celui qu'il était.\nHe is not what he used to be.\tIl n'est plus comme il l'était.\nHe is not what he used to be.\tIl n'est plus ce qu'il était avant.\nHe is not what he used to be.\tIl n'est plus ce qu'il était.\nHe is one of my best friends.\tC'est un de mes meilleurs amis.\nHe is our teacher of English.\tIl est notre professeur d'anglais.\nHe is popular with everybody.\tIl est populaire auprès de tout le monde.\nHe is preparing for the test.\tIl se prépare pour le test.\nHe is present at the meeting.\tIl est présent à la réunion.\nHe is respected by everybody.\tIl est respecté de tout le monde.\nHe is running short of funds.\tIl est à court de fonds.\nHe is said to have died here.\tOn dit qu'il est mort ici.\nHe is seeking a new position.\tIl cherche actuellement un nouveau poste.\nHe is sensitive to criticism.\tIl est sensible à la critique.\nHe is something of an artist.\tC'est un artiste, en quelque sorte.\nHe is the oldest of them all.\tC'est le plus vieux d'entre eux.\nHe is trusted by his parents.\tSes parents lui font confiance.\nHe is twice as old as she is.\tIl est deux fois plus vieux qu'elle.\nHe is very eager to go there.\tIl est très impatient d'y aller.\nHe is very eager to go there.\tIl est très impatient de s'y rendre.\nHe is very sensitive to cold.\tIl est très sensible au froid.\nHe is very sensitive to cold.\tC'est un frileux.\nHe is watching my every move.\tIl observe mon moindre mouvement.\nHe is what we call a pioneer.\tIl est ce qu'on appelle un pionnier.\nHe is what we call a pioneer.\tC'est que nous appelons un pionnier.\nHe is what we call a scholar.\tIl est ce qu'on appelle un lettré.\nHe is working on a new novel.\tIl travaille sur un nouveau roman.\nHe just returned from abroad.\tIl vient de rentrer de l'étranger.\nHe kept all the windows open.\tIl a laissé toutes les fenêtres ouvertes.\nHe kissed me on the forehead.\tIl m'a embrassé sur le front.\nHe knows a lot about animals.\tIl en sait beaucoup sur les animaux.\nHe knows a lot about flowers.\tIl s'y connaît bien en fleurs.\nHe knows how to cheat people.\tIl sait comment tromper les gens.\nHe knows how to make a radio.\tIl sait comment faire une radio.\nHe learned the poem by heart.\tIl a appris le poème par cœur.\nHe leaves for China tomorrow.\tIl part pour la Chine demain.\nHe leaves for Tokyo tomorrow.\tIl part pour Tokyo demain.\nHe left everything to chance.\tIl laissait tout au hasard.\nHe left for London yesterday.\tIl est parti hier pour Londres.\nHe left school two weeks ago.\tIl a obtenu son diplôme de fin d'année il y a 2 semaines.\nHe let me use his typewriter.\tIl me laissa utiliser sa machine à écrire.\nHe let me work in his office.\tIl m'a laissé travailler dans son bureau.\nHe likes all kinds of sports.\tIl aime tous les sports.\nHe likes walking in the park.\tIl aime marcher dans le parc.\nHe lived alone in the forest.\tIl a vécu seul dans la forêt.\nHe looked through a magazine.\tIl parcourut un magazine.\nHe lost his way in the woods.\tIl a perdu son chemin dans les bois.\nHe lost his way in the woods.\tIl a perdu son chemin dans la forêt.\nHe lost his way in the woods.\tIl s'est perdu dans les bois.\nHe loves you as much as I do.\tIl t'aime autant que moi.\nHe made a mistake on purpose.\tIl a fait exprès de se tromper.\nHe made a mistake on purpose.\tIl a commis une faute exprès.\nHe made fun of our ignorance.\tIl se moqua de notre ignorance.\nHe made me carry his baggage.\tIl m'a fait porter ses bagages.\nHe made me sing on the stage.\tIl m'a fait chanter sur la scène.\nHe made reference to my book.\tIl a fait référence à mon livre.\nHe may have already departed.\tIl est peut-être déjà parti.\nHe may have missed the train.\tIl se peut qu'il ait raté le train.\nHe may have missed the train.\tIl a peut-être manqué son train.\nHe may have missed the train.\tPeut-être a-t-il manqué le train.\nHe moved from place to place.\tIl déménageait d'un endroit à l'autre.\nHe must be severely punished.\tIl doit être sévèrement puni.\nHe needn't have come himself.\tIl n'avait pas besoin de venir lui-même.\nHe needs to follow my advice.\tIl doit suivre mes conseils.\nHe neither smokes nor drinks.\tIl ne fume pas et ne boit pas non plus.\nHe never breaks his promises.\tIl ne rompt jamais ses promesses.\nHe never goes out after dark.\tIl ne sort jamais la nuit tombée.\nHe never seems to grow older.\tIl n'a jamais l'air de vieillir.\nHe never seems to grow older.\tIl ne semble jamais vieillir.\nHe nodded to me as he passed.\tIl me fit un signe de la tête en passant.\nHe nodded to me as he passed.\tIl me fit signe de la tête en passant.\nHe noticed her embarrassment.\tIl remarqua son embarras.\nHe only thinks about himself.\tIl ne pense qu'à lui.\nHe patted me on the shoulder.\tIl me tapota l'épaule.\nHe played the part of Hamlet.\tIl jouait Hamlet.\nHe plays the piano very well.\tIl joue très bien du piano.\nHe plays the piano very well.\tIl joue extrêmement bien du piano.\nHe prefers poetry to fiction.\tIl préfère la poésie à la fiction.\nHe presented her with a doll.\tIl lui a offert une poupée.\nHe presented her with a doll.\tIl lui offrit une poupée.\nHe pretended to be my friend.\tIl prétendit être mon ami.\nHe pretended to be my friend.\tIl a prétendu être mon ami.\nHe promised he would help us.\tIl a promis qu'il nous aiderait.\nHe promised me to come early.\tIl m'a promis qu'il viendrait tôt.\nHe put a stamp on the letter.\tIl a mis un timbre sur la lettre.\nHe put the book on the shelf.\tIl mit le livre sur l'étagère.\nHe put the book on the shelf.\tIl plaça le livre sur l'étagère.\nHe ran away with the diamond.\tIl s'enfuit avec le diamant.\nHe rarely goes to the movies.\tIl se rend rarement au cinéma.\nHe reached Kyoto on Saturday.\tIl est arrivé samedi à Kyoto.\nHe refused my friend request.\tIl a refusé ma demande pour devenir amis.\nHe refused to take the bribe.\tIl s'est refusé à prendre le pot-de-vin.\nHe refused to take the bribe.\tIl a refusé de prendre le bakchich.\nHe repeated the same mistake.\tIl a refait la même erreur.\nHe rubbed his hands together.\tIl se frotta les mains.\nHe said he knows this secret.\tIl dit connaître ce secret.\nHe said that I must go there.\tIl dit que je devrais aller là.\nHe sat beside her on her bed.\tIl s'assit à son côté, sur son lit.\nHe sat with his legs crossed.\tIl était assis les jambes croisées.\nHe seems to be a kind person.\tIl semble être quelqu'un de gentil.\nHe seems to be a nice fellow.\tIl a l'air d'être un type bien.\nHe set fire to his own house.\tIl mit le feu à sa propre maison.\nHe set fire to his own house.\tIl a mis le feu à sa maison.\nHe should atone for his sins.\tIl devrait expier ses péchés.\nHe should have been an actor.\tIl aurait dû être acteur.\nHe should have worked harder.\tIl aurait dû travailler davantage.\nHe showed us a beautiful hat.\tIl nous montra un beau chapeau.\nHe slipped out the back door.\tIl est sorti par la porte de derrière.\nHe sometimes comes to see me.\tIl me rend parfois visite.\nHe speaks English and French.\tIl parle anglais et français.\nHe spent the evening reading.\tIl passa la soirée à lire.\nHe stared at the steep slope.\tIl fixa la pente raide.\nHe stayed out of public life.\tIl se tint à l'écart de la vie publique.\nHe stayed out of public life.\tIl s'est tenu à l'écart de la vie publique.\nHe stood with his feet apart.\tIl était debout avec les jambes écartées.\nHe stopped smoking last year.\tIl a arrêté de fumer l'année passée.\nHe stuck the book in his bag.\tIl fourra le livre dans son sac.\nHe stuck with his own theory.\tIl s'en tenait à sa propre théorie.\nHe studied the way birds fly.\tIl étudiait le vol des oiseaux.\nHe studied the way birds fly.\tIl étudiait la manière dont les oiseaux volent.\nHe studied the way birds fly.\tIl a étudié la manière dont les oiseaux volent.\nHe told me just the opposite!\tIl m'a dit précisément le contraire !\nHe told me that she was sick.\tIl m'a dit qu'elle était malade.\nHe told me to meet him there.\tIl me dit de l'y rencontrer.\nHe told me to meet him there.\tIl m'a dit de l'y rencontrer.\nHe told us to depart at once.\tIl nous a dit de partir immédiatement.\nHe took out his handkerchief.\tIl sortit son mouchoir.\nHe took out his handkerchief.\tIl a sorti son mouchoir.\nHe treats his employees well.\tIl traite bien ses employés.\nHe tried solving the problem.\tIl tenta de résoudre le problème.\nHe tried to commit a suicide.\tIl a fait une tentative de suicide.\nHe turned out to be innocent.\tIl s'est avéré qu'il était innocent.\nHe walked through the forest.\tIl a coupé à travers bois.\nHe walked through the forest.\tIl traversa la forêt en marchant.\nHe wanted to become a farmer.\tIl voulait devenir agriculteur.\nHe wanted to test his limits.\tIl voulait tester ses limites.\nHe wants these shirts washed.\tIl veut que ces chemises soient lavées.\nHe was able to pass the exam.\tIl a pu réussir l'examen.\nHe was able to read the book.\tIl a pu lire ce livre.\nHe was already regretting it.\tIl le regrettait déjà.\nHe was burning up with fever.\tIl avait une grosse fièvre.\nHe was in critical condition.\tIl était dans un état critique.\nHe was innocent of the crime.\tIl était innocent de ce crime.\nHe was jealous of my success.\tIl était envieux de mon succès.\nHe was killed by a land mine.\tIl a été tué par une mine.\nHe was late for the 7:30 bus.\tIl a raté le bus de 7 heures 30.\nHe was not a good politician.\tIl n'était pas un bon homme politique.\nHe was not able to marry her.\tIl fut dans l'incapacité de l'épouser.\nHe was opposed to monopolies.\tIl était opposé aux monopoles.\nHe was paralyzed with terror.\tIl était paralysé par la terreur.\nHe was proud of his daughter.\tIl était fier de sa fille.\nHe was so kind as to help us.\tIl était tellement aimable de nous aider.\nHe was stunned by her beauty.\tIl fut sidéré par sa beauté.\nHe was stunned by her beauty.\tIl a été sidéré par sa beauté.\nHe was surprised at the news.\tIl fut surpris par la nouvelle.\nHe was surprised by the news.\tIl fut surpris par la nouvelle.\nHe was the first to help her.\tIl fut le premier à l'aider.\nHe was the first to help him.\tIl fut le premier à l'aider.\nHe was too busy to notice it.\tIl était trop occupé pour le remarquer.\nHe was tricked into doing it.\tIl a été persuadé de le faire par la ruse.\nHe was unaware of the danger.\tIl n'était pas conscient du danger.\nHe was unaware of the danger.\tIl était inconscient du danger.\nHe was wounded in a burglary.\tIl a été blessé dans un cambriolage.\nHe was wounded in the battle.\tIl a été blessé dans la bataille.\nHe washes the car every week.\tIl lave la voiture chaque semaine.\nHe watched the boys swimming.\tIl regarda les garçons nager.\nHe wears a bow tie every day.\tIl porte un nœud papillon au quotidien.\nHe went fishing in the river.\tIl est allé pêcher à la rivière.\nHe went hunting in the woods.\tIl est allé chasser dans les bois.\nHe went to Tokyo on business.\tIl est allé a Tokyo pour affaires.\nHe went upstairs to her room.\tIl monta dans sa chambre.\nHe went upstairs to her room.\tIl grimpa dans sa chambre.\nHe will become a good doctor.\tIl deviendra un bon médecin.\nHe will come if you call him.\tIl viendra si tu l'appelles.\nHe will leave Japan in April.\tIl quittera le Japon en avril.\nHe will not be back tomorrow.\tIl ne reviendra pas demain.\nHe will play soccer tomorrow.\tDemain, il jouera au football.\nHe will play tennis tomorrow.\tIl jouera au tennis demain.\nHe will regret his own words.\tIl va regretter ses propres mots.\nHe will succeed without fail.\tIl réussira sans coup férir.\nHe wishes to become a doctor.\tIl voudrait devenir médecin.\nHe wondered why she did that.\tIl se demanda pourquoi elle avait fait cela.\nHe wondered why she did that.\tIl s'est demandé pourquoi elle avait fait cela.\nHe worked far into the night.\tIl travailla tard dans la nuit.\nHe works in the car industry.\tIl travaille dans l'industrie automobile.\nHe would not raise my salary.\tIl n'augmenterait pas mon salaire.\nHe wouldn't even speak to me.\tIl refusait même de me parler.\nHe wouldn't even speak to me.\tIl ne voulait pas même me parler.\nHe wrote a book on porcelain.\tIl a écrit un livre sur la porcelaine.\nHe's a Republican fundraiser.\tC'est un collecteur de fonds pour le parti Républicain.\nHe's a world-class scientist.\tC'est un scientifique de niveau international.\nHe's accustomed to traveling.\tIl est habitué à voyager.\nHe's aware of his own faults.\tIl est conscient de ses défauts.\nHe's cleaning out his closet.\tIl nettoie son placard.\nHe's fed up with socializing.\tIl en a assez des mondanités.\nHe's head over heels in love.\tIl est fou amoureux.\nHe's not supposed to be here.\tIl n'est pas supposé se trouver là.\nHe's out of town on business.\tIl est affairé en dehors de la ville.\nHe's started writing a novel.\tIl a commencé à écrire un roman.\nHe's the perfect man for you.\tC'est l'homme parfait pour toi.\nHe's waiting for you at home.\tIl t'attend chez lui.\nHe's waiting for you at home.\tIl t'attend chez nous.\nHe's waiting for you at home.\tIl t'attend chez moi.\nHe's waiting for you at home.\tIl t'attend à la maison.\nHe's waiting for you at home.\tIl vous attend à la maison.\nHe's waiting for you at home.\tIl vous attend chez lui.\nHe's waiting for you at home.\tIl vous attend chez nous.\nHe's waiting for you at home.\tIl vous attend chez moi.\nHe's your typical workaholic.\tIl est l'archétype du bourreau de travail, tel que tu te l'imagines.\nHe's your typical workaholic.\tIl est l'archétype du bourreau de travail, tel que vous vous l'imaginez.\nHealth is better than wealth.\tLa santé est plus importante que la richesse.\nHer beauty will fade in time.\tSa beauté se flétrira avec le temps.\nHer book is very interesting.\tSon livre est très intéressant.\nHer face suddenly turned red.\tSon visage vira soudain au rouge.\nHer father works at the bank.\tSon père travaille à la banque.\nHer feelings are easily hurt.\tIl est facile de blesser ses sentiments.\nHer husband is usually drunk.\tSon mari est généralement ivre.\nHer mother has gone shopping.\tSa mère est partie faire des courses.\nHer mother is a good pianist.\tSa mère est une bonne pianiste.\nHer mother started screaming.\tSa mère s'est mise à crier.\nHer skin is as white as snow.\tSa peau est aussi blanche que la neige.\nHer skin is perfectly smooth.\tSa peau est parfaitement lisse.\nHer theory is based on facts.\tSa théorie se base sur les faits.\nHer uncle is a famous doctor.\tSon oncle est un célèbre médecin.\nHer voice trembled with rage.\tSa voix tremblait de colère.\nHere is where it all happens.\tC'est ici que tout s'est produit.\nHere is where it all happens.\tC'est ici que tout est arrivé.\nHere is where it all happens.\tC'est ici que tout s'est passé.\nHey, what was that all about?\tEh, de quoi s'agissait-il ?\nHey, you! What are you doing?\tHé, vous ! Qu'est-ce que vous faites ?\nHigh tide is at 3 p.m. today.\tLa marée haute est à 3 heures cet après-midi.\nHis ambition knows no bounds.\tSon ambition ne connaît pas de limites.\nHis attempt ended in failure.\tSa tentative se solda par un échec.\nHis bag was stolen yesterday.\tSon sac a été volé hier.\nHis birthday falls on Sunday.\tSon anniversaire tombe dimanche.\nHis book is very interesting.\tSon livre est très intéressant.\nHis clothes always smell bad.\tSes habits sentent toujours mauvais.\nHis curiosity knew no bounds.\tSa curiosité n'avait pas de limites.\nHis curiosity knew no bounds.\tSa curiosité ne connaissait pas de limites.\nHis data is often inaccurate.\tSes données sont souvent inexactes.\nHis debt came to 100 dollars.\tSa dette a atteint 100 dollars.\nHis explanation is not clear.\tSon explication n'est pas claire.\nHis health ebbed slowly away.\tSa santé a décliné lentement.\nHis heart was beating wildly.\tSon cœur battait frénétiquement.\nHis ideas conflict with mine.\tSes idées rentrent en conflit avec les miennes.\nHis jokes had us in stitches.\tSes blagues nous faisaient nous plier en deux.\nHis long speech bored us all.\tSon discours interminable nous a tous ennuyés.\nHis new wife is about my age.\tSa nouvelle épouse est à peu près de mon âge.\nHis nose is his best feature.\tSon nez est son meilleur trait.\nHis opinion was not accepted.\tSon avis n'a pas été accepté.\nHis prediction has come true.\tSa prédiction s'est réalisée.\nHis project ended in failure.\tSon projet s'est terminé en un échec.\nHis story moved her to tears.\tSon histoire l'a émue aux larmes.\nHis success went to his head.\tLe succès lui monta à la tête.\nHis wish is to go to America.\tSon désir est d'aller en Amérique.\nHitler assumed power in 1933.\tHitler a pris le pouvoir en 1933.\nHold the box with both hands.\tTiens la boîte des deux mains.\nHold the box with both hands.\tTiens la caisse des deux mains.\nHold the box with both hands.\tTiens la caisse avec les deux mains.\nHonesty pays in the long run.\tL'honneteté paye à long terme.\nHonesty pays in the long run.\tL'honnêteté paie à long terme.\nHooker was extremely pleased.\tHooker était extrêmement ravi.\nHope you had a good birthday.\tJ'espère que t'as eu un bon anniversaire.\nHow about dining out tonight?\tSi nous mangions dehors ce soir ?\nHow about dining out tonight?\tQue dis-tu de dîner dehors, ce soir ?\nHow about eating out with me?\tQue dis-tu d'aller au resto avec moi ?\nHow about going to the movie?\tSi nous allions au cinéma ?\nHow are we going to find Tom?\tComment allons-nous trouver Tom ?\nHow are you doing these days?\tComment vas-tu ces temps-ci ?\nHow are you doing these days?\tComment allez-vous ces temps-ci ?\nHow are you going to do that?\tComment allez-vous faire ça ?\nHow are you going to do that?\tComment allez-vous effectuer ça ?\nHow are you going to do that?\tComment vas-tu faire ça ?\nHow are you going to do that?\tComment vas-tu effectuer ça ?\nHow beautiful this flower is!\tComme cette fleur est belle !\nHow can I get to the station?\tComment puis-je me rendre à la gare ?\nHow can I solve this problem?\tComment puis-je résoudre ce problème ?\nHow can you be so optimistic?\tComment pouvez-vous être si optimiste ?\nHow can you be so optimistic?\tComment peux-tu être si optimiste ?\nHow come you don't know this?\tComment se fait-il que tu ne le saches pas ?\nHow come you know it so well?\tComment se fait-il que tu le connaisses si bien ?\nHow come you know it so well?\tComment se fait-il que vous le connaissiez si bien ?\nHow come you're not the boss?\tComment se fait-il que vous ne soyez pas le patron ?\nHow come you're not the boss?\tComment se fait-il que vous ne soyez pas la patronne ?\nHow come you're not the boss?\tComment se fait-il que tu ne sois pas le patron ?\nHow come you're not the boss?\tComment se fait-il que tu ne sois pas la patronne ?\nHow could you be so careless?\tComment as-tu pu être aussi négligent ?\nHow dare you speak like that?\tComment osez-vous ainsi parler ?\nHow dare you speak like that?\tComment oses-tu ainsi parler ?\nHow did he ever get so lucky?\tComment se fait-il qu'il ait eu tant de chance ?\nHow did we get to this point?\tComment en sommes-nous arrivés là?\nHow did you come to know her?\tComment avez-vous fait sa connaissance ?\nHow did you get here so fast?\tComment êtes-vous arrivé ici si rapidement ?\nHow did you get here so fast?\tComment êtes-vous arrivée ici si rapidement ?\nHow did you get here so fast?\tComment êtes-vous arrivés ici si rapidement ?\nHow did you get here so fast?\tComment êtes-vous arrivées ici si rapidement ?\nHow did you get here so fast?\tComment es-tu arrivé ici si rapidement ?\nHow did you get here so fast?\tComment es-tu arrivée ici si rapidement ?\nHow did you get into Harvard?\tComment êtes-vous entré à Harvard ?\nHow did you get into Harvard?\tComment êtes-vous entrée à Harvard ?\nHow did you get into Harvard?\tComment êtes-vous entrés à Harvard ?\nHow did you get into Harvard?\tComment êtes-vous entrées à Harvard ?\nHow did you get into Harvard?\tComment es-tu entré à Harvard ?\nHow did you get into Harvard?\tComment es-tu entrée à Harvard ?\nHow did you get to know Mary?\tComment as-tu rencontré Mary ?\nHow did you learn to do that?\tComment as-tu appris à faire ça ?\nHow did you learn to do that?\tComment avez-vous appris à faire cela ?\nHow did you manage to escape?\tComment êtes-vous parvenu à vous échapper ?\nHow did you manage to escape?\tComment as-tu réussi à t'échapper ?\nHow did your dog get in here?\tComment ton chien a-t-il pénétré ici ?\nHow did your dog get in here?\tComment votre chien a-t-il pénétré ici ?\nHow do I eat without a spoon?\tComment est-ce que je mange, sans cuiller ?\nHow do you intend to do that?\tComment avez-vous l'intention de le faire ?\nHow do you intend to do that?\tComment as-tu l'intention de le faire ?\nHow do you know I don't know?\tComment savez-vous que je l'ignore ?\nHow do you know I don't know?\tComment sais-tu que je l'ignore ?\nHow do you know what I heard?\tComment sais-tu ce que j'ai entendu ?\nHow do you know what I heard?\tComment savez-vous ce que j'ai entendu ?\nHow do you know where I live?\tComment savez-vous où je vis ?\nHow do you know where I live?\tComment sais-tu où je vis ?\nHow do you like your new job?\tComment est ce nouveau travail ?\nHow do you want to handle it?\tComment voulez-vous vous y prendre ?\nHow do you want to handle it?\tComment veux-tu t'y prendre ?\nHow does this disease spread?\tComment se répand la maladie ?\nHow does this disease spread?\tComment la maladie se diffuse-t-elle ?\nHow does this disease spread?\tComment la maladie  se répand-elle ?\nHow is your job search going?\tComment se passe ta recherche d'emploi ?\nHow long did you stay abroad?\tCombien de temps êtes-vous resté à l'étranger ?\nHow long does it take by bus?\tCombien de temps cela prend-il en bus ?\nHow long does it take by car?\tCombien cela prend-il de temps en voiture ?\nHow long does it take by car?\tCombien ça prend de temps en voiture ?\nHow long will I have to wait?\tCombien de temps vais-je devoir attendre ?\nHow long will the storm last?\tCombien de temps la tempête va-t-elle durer ?\nHow long will the storm last?\tCombien de temps va durer la tempête ?\nHow long will you be staying?\tCombien de temps vas-tu rester ?\nHow many books have you read?\tCombien de livres avez-vous lus ?\nHow many friends do you have?\tCombien as-tu d'amis ?\nHow many hours is the flight?\tCombien d'heures dure le vol?\nHow many men have you killed?\tCombien d'hommes avez-vous tués ?\nHow many pencils do you have?\tCombien de crayons avez-vous ?\nHow many pencils do you have?\tCombien as-tu de crayons ?\nHow many people did you kill?\tCombien de personnes avez-vous tuées ?\nHow many people did you kill?\tCombien de personnes as-tu tuées ?\nHow many sisters do you have?\tTu as combien de sœurs ?\nHow many sisters do you have?\tCombien as-tu de sœurs ?\nHow many sisters do you have?\tCombien avez-vous de sœurs ?\nHow much do the carrots cost?\tCombien coûtent les carottes ?\nHow much does the shirt cost?\tCombien coûte la chemise ?\nHow much does the shirt cost?\tCombien la chemise coûte-t-elle ?\nHow much does this book cost?\tCombien coûte ce livre ?\nHow much is it going to cost?\tCombien ça va coûter ?\nHow much is it going to cost?\tCombien cela va-t-il coûter ?\nHow much is the monthly rate?\tÀ combien s'élève le tarif mensuel ?\nHow much longer will it take?\tCombien de temps cela va-t-il encore prendre ?\nHow much should you exercise?\tCombien de fois devriez-vous exercer ?\nHow often do you go shopping?\tCombien de fois vas-tu faire les courses?\nHow tall is the Eiffel Tower?\tCombien la tour Eiffel mesure-t-elle ?\nHow was the universe created?\tComment l'univers a-t-il été créé ?\nHow was your summer vacation?\tComment se sont passées tes vacances d'été ?\nHow would you like your eggs?\tComment voulez-vous vos œufs ?\nHow would you like your eggs?\tComment veux-tu tes œufs ?\nHow's Tom going to find Mary?\tComment Tom va-t-il trouver Mary ?\nHummers are big gas guzzlers.\tLes « Hummers » sont des gouffres à carburant.\nI added his name to the list.\tJ'ajoutai son nom à la liste.\nI admire him for his courage.\tJe l'admire pour son courage.\nI advise you to stop smoking.\tJe te conseille d'arrêter de fumer.\nI advised Tom not to do that.\tJ'ai conseillé à Tom de ne pas faire cela.\nI agree with you to a degree.\tJe suis d'accord avec vous, jusqu'à un certain point.\nI aimed my gun at the target.\tJe dirigeais mon revolver vers la cible.\nI always wanted a tree house.\tJ'ai toujours voulu une maison dans les arbres.\nI am a student, but he isn't.\tJe suis étudiant, mais lui, non.\nI am amazed at your audacity.\tJe suis étonné par ton audace.\nI am ashamed of your conduct.\tJ'ai honte de ta conduite.\nI am ashamed of your conduct.\tJ'ai honte de votre conduite.\nI am beginning to understand.\tJe commence à comprendre.\nI am doubtful of his success.\tJe suis sceptique sur son succès.\nI am familiar with his music.\tJe suis familier de sa musique.\nI am familiar with your name.\tVotre nom m'est familier.\nI am familiar with your name.\tTon nom m'est familier.\nI am fond of Australian food.\tJ'aime la cuisine australienne.\nI am going to be an engineer.\tJe compte devenir ingénieur.\nI am going to write a letter.\tJe vais écrire une lettre.\nI am more beautiful than you.\tJe suis plus beau que toi.\nI am more beautiful than you.\tJe suis plus beau que vous.\nI am more beautiful than you.\tJe suis plus belle que vous.\nI am more beautiful than you.\tJe suis plus belle que toi.\nI am not acquainted with him.\tJe ne lui suis pas lié.\nI am not concerned with this.\tCeci m'indiffère.\nI am not concerned with this.\tCeci m'est indiffèrent.\nI am not concerned with this.\tJe ne suis pas concerné par ceci.\nI am proud of being a doctor.\tJe suis fier d'être docteur.\nI am surprised to learn this.\tJe suis surpris de l'apprendre.\nI am surprised to learn this.\tJe suis surpris d'apprendre ça.\nI am taking French next year.\tJe prends Français l'année prochaine.\nI am the leader of this team.\tJe suis le chef de cette équipe.\nI am thinking of my vacation.\tJe pense à mes vacances.\nI am trying to learn English.\tJ'essaye d'apprendre l'anglais.\nI am used to driving a truck.\tJe suis habitué à conduire un camion.\nI appreciate all you've done.\tJe suis reconnaissant pour tout ce que vous avez fait.\nI appreciate all you've done.\tJe suis reconnaissante pour tout ce que vous avez fait.\nI appreciate all you've done.\tJe suis reconnaissant pour tout ce que tu as fait.\nI appreciate all you've done.\tJe suis reconnaissante pour tout ce que tu as fait.\nI appreciate all your advice.\tJ'apprécie tous tes conseils.\nI appreciate all your advice.\tJ'apprécie tous vos conseils.\nI appreciate the hospitality.\tMerci de votre hospitalité.\nI appreciate the hospitality.\tJ'apprécie l'hospitalité.\nI appreciate you coming here.\tJe vous sais gré de venir ici.\nI appreciate you coming here.\tJe vous suis reconnaissant de venir ici.\nI appreciate you coming here.\tJe te suis reconnaissant de venir ici.\nI appreciate you stopping by.\tJe vous suis reconnaissant de vous arrêter.\nI appreciate you stopping by.\tJe te suis reconnaissant de t'arrêter.\nI appreciate your confidence.\tJe me rends compte de votre confiance.\nI appreciate your conviction.\tJe mesure la valeur de votre conviction.\nI appreciate your directness.\tJ'apprécie votre franchise.\nI appreciate your enthusiasm.\tJ'apprécie votre enthousiasme.\nI appreciate your enthusiasm.\tJ'apprécie ton enthousiasme.\nI appreciate your suggestion.\tJe vous suis reconnaissant pour votre suggestion.\nI appreciate your suggestion.\tJe te suis reconnaissant pour ta suggestion.\nI appreciate your telling me.\tJe vous suis reconnaissant de me le dire.\nI appreciate your telling me.\tJ'apprécie que vous me le disiez.\nI appreciate your telling me.\tJe te suis reconnaissant de me le dire.\nI appreciate your telling me.\tJ'apprécie que tu me le dises.\nI asked Tom not to bother us.\tJ'ai demandé à Tom de ne pas nous déranger.\nI asked Tom to drive me home.\tJ'ai demandé à Tom de me conduire à la maison.\nI asked Tom to wait a minute.\tJ'ai demandé à Tom d'attendre une minute.\nI asked Tom to wait a moment.\tJ'ai demandé à Tom d'attendre un moment.\nI asked Tom what he'd advise.\tJ'ai demandé à Tom ce qu'il conseillerait.\nI asked for my father's help.\tJ'ai demandé de l'aide à mon père.\nI asked her to wait a minute.\tJe lui ai demandé d'attendre une minute.\nI asked him to drive me home.\tJe lui ai demandé de me ramener chez moi.\nI asked him to drive me home.\tJe lui ai demandé de me ramener chez moi en voiture.\nI asked him to drive me home.\tJe lui ai demandé de me reconduire chez moi.\nI asked him to leave at once.\tJe lui ai demandé de partir immédiatement.\nI asked him to leave at once.\tJe lui demandai de partir immédiatement.\nI asked what Tom was reading.\tJ'ai demandé ce que Tom lisait.\nI assume that was Tom's idea.\tJe suppose que c'était l'idée à Tom.\nI assume you don't want this.\tJe suppose que tu ne veux pas ça.\nI assumed that she was there.\tJ'ai supposé qu'elle était là.\nI ate a nutritious breakfast.\tJ'ai mangé un petit déjeuner nourrissant.\nI ate lunch in the cafeteria.\tJ'ai déjeuné à la cafétéria.\nI bear no grudge against you.\tJe n'ai pas de rancune contre toi.\nI bear no grudge against you.\tJe ne vous garde pas rancune.\nI believe that he comes here.\tJe crois qu'il vient ici.\nI believe this is inaccurate.\tJe crois que ceci est inexact.\nI belong to the sailing club.\tJe suis membre du club de voile.\nI belong to the sailing club.\tJ'appartiens au cercle nautique.\nI bought a book of folktales.\tJe fis l'acquisition d'un livre de contes populaires.\nI bought them each a present.\tJe leur ai acheté un cadeau à chacun.\nI bought two loaves of bread.\tJ'ai acheté deux miches de pain.\nI came to wish you good luck.\tJe suis venu pour vous souhaiter bonne chance.\nI came to wish you good luck.\tJe suis venu pour te souhaiter bonne chance.\nI came to wish you good luck.\tJe suis venue pour vous souhaiter bonne chance.\nI came to wish you good luck.\tJe suis venue pour te souhaiter bonne chance.\nI can do it in half the time.\tJe peux le faire en la moitié du temps.\nI can do it in half the time.\tJe peux le faire en deux fois moins de temps.\nI can do more than just cook.\tJe sais faire davantage que simplement cuisiner.\nI can look into this for you.\tJe peux y regarder pour toi.\nI can never thank you enough.\tJe ne pourrai jamais assez te remercier.\nI can recommend it to anyone.\tJe peux le recommander à n'importe qui.\nI can show you a better time.\tJe sais mieux vous divertir.\nI can show you a better time.\tJe sais mieux vous distraire.\nI can show you a better time.\tJe sais mieux te divertir.\nI can speak English a little.\tJe parle un peu anglais.\nI can speak a little English.\tJe parle un peu anglais.\nI can teach you how to drive.\tJe peux t'apprendre à conduire.\nI can teach you how to fight.\tJe peux t'enseigner à te battre.\nI can tell you're a nice guy.\tJe peux dire que vous êtes un chic type.\nI can tell you're a nice guy.\tJe sais que vous êtes un chic type.\nI can type 50 words a minute.\tJe peux taper 50 mots par minute.\nI can't allow you to do that.\tJe ne peux pas vous permettre de faire ça.\nI can't allow you to do that.\tJe ne peux pas vous permettre de faire cela.\nI can't answer that question.\tJe ne peux pas répondre à cette question.\nI can't answer your question.\tJe ne peux pas répondre à ta question.\nI can't be something I'm not.\tJe ne peux être quelque chose que je ne suis pas.\nI can't be something I'm not.\tJe ne peux pas être quelque chose que je ne suis pas.\nI can't bear this any longer.\tJe ne peux le supporter plus longtemps.\nI can't bear this any longer.\tJe ne peux plus le supporter.\nI can't believe I kissed you.\tJe n'arrive pas à croire que je t'aie embrassé.\nI can't believe I kissed you.\tJe n'arrive pas à croire que je t'aie embrassée.\nI can't change how tall I am.\tJe ne peux pas changer ma taille.\nI can't condone what you did.\tJe ne peux pas excuser ce que vous avez fait.\nI can't condone what you did.\tJe ne peux pas excuser ce que tu as fait.\nI can't control what happens.\tJe ne peux pas contrôler ce qui se passe.\nI can't control what happens.\tJe ne parviens pas à contrôler ce qui se passe.\nI can't deal with this place.\tJe ne supporte pas cet endroit.\nI can't decide what to order.\tJe n'arrive pas à me décider quoi commander.\nI can't decide what to order.\tJe ne parviens pas à décider quoi commander.\nI can't explain it right now.\tJe ne peux l'expliquer à l'instant.\nI can't find the right words.\tJe ne trouve pas les mots justes.\nI can't function without you.\tJe n'arrive pas à fonctionner sans toi.\nI can't function without you.\tJe n'arrive pas à fonctionner sans vous.\nI can't get involved in this.\tJe ne peux pas me mêler de ça.\nI can't get rid of this cold.\tJe ne peux me débarrasser de ce rhume.\nI can't get the car to start.\tJe n'arrive pas à faire démarrer la voiture.\nI can't give up on my dreams.\tJe ne peux pas renoncer à mes rêves.\nI can't go, nor do I want to.\tJe ne peux pas y aller, ni ne le veux.\nI can't go, nor do I want to.\tJe ne peux ni ne veux m'en aller.\nI can't hear anything at all.\tJe n'arrive pas à entendre quoi que ce soit.\nI can't help laughing at her.\tJe ne peux pas m'empêcher de rire d'elle.\nI can't help laughing at him.\tJe ne peux m'empêcher de rire de lui.\nI can't just not do anything.\tJe ne peux pas me contenter de ne rien faire.\nI can't lift the sack either.\tJe ne peux pas soulever le sac non plus.\nI can't pinpoint the problem.\tJe n'arrive pas à mettre le doigt sur le problème.\nI can't pinpoint the problem.\tJe n'arrive pas à déterminer le problème.\nI can't promise you anything.\tJe ne peux rien vous promettre.\nI can't promise you anything.\tJe ne peux rien te promettre.\nI can't really talk about it.\tJe ne peux pas vraiment en discuter.\nI can't recall who said that.\tJe ne me rappelle pas qui a dit ça.\nI can't remember her address.\tJe n'arrive pas à me souvenir de son adresse.\nI can't remember my password.\tJe n'arrive pas à me rappeler de mon mot de passe.\nI can't say that didn't hurt.\tJe ne peux pas dire que ça n'a pas fait mal.\nI can't speak English at all.\tJe ne sais pas du tout parler anglais.\nI can't stand all this noise.\tJe ne peux pas supporter tout ce bruit.\nI can't stand getting beaten.\tJe ne supporte pas qu'on me frappe.\nI can't stand getting beaten.\tJe ne supporte pas de perdre.\nI can't stay here any longer.\tJe ne peux pas rester ici plus longtemps.\nI can't take my eyes off her.\tJe ne peux cesser de la regarder.\nI can't take this any longer.\tJe n'en peux plus.\nI can't think about this now.\tJe ne peux pas réfléchir à ceci maintenant.\nI can't wait to eat the cake.\tJe suis impatient de manger le gâteau.\nI can't wait to eat the cake.\tJe suis impatiente de manger le gâteau.\nI cannot accept your present.\tJe ne puis accepter ton cadeau.\nI cannot find fault with him.\tJe n'arrive pas à le prendre en défaut.\nI cannot get rid of my cough.\tJe n'arrive pas à me débarrasser de ma toux.\nI cannot quite understand it.\tJe n'arrive pas à le comprendre complètement.\nI caught a cold two days ago.\tJ'ai attrapé un rhume il y a deux jours.\nI caught a cold two days ago.\tJ'ai contracté un rhume il y a deux jours.\nI caught five fish yesterday.\tJ'ai attrapé cinq poissons hier.\nI completely approve of this.\tJe l'approuve complètement.\nI considered changing my job.\tJ'ai envisagé de changer d'emploi.\nI continued reading the book.\tJe poursuivis la lecture du livre.\nI continued reading the book.\tJ'ai poursuivi la lecture de l'ouvrage.\nI could not eat another bite.\tJe ne pouvais plus manger une bouchée.\nI couldn't afford to do that.\tJe ne pouvais pas me permettre de faire ça.\nI couldn't remember his name.\tJe ne pouvais me souvenir de son nom.\nI dare you to prove me wrong.\tJe te défie de me donner tort.\nI dated Mary for three years.\tJe suis sorti avec Mary pendant trois ans.\nI demand that he be punished.\tJ'exige qu'il soit puni.\nI demand that he be punished.\tJ'exige qu'on le punisse.\nI destroyed all the evidence.\tJ'ai détruit toutes les preuves.\nI did better than I expected.\tJ'ai fait mieux que je n'espérais.\nI did it in a couple of days.\tJe l'ai accompli en quelques jours.\nI did smoke when I was young.\tJe fumais quand j'étais jeune.\nI did what Tom told me to do.\tJ'ai fait ce que Tom m'a dit.\nI didn't catch what you said.\tJe n'ai pas saisi ce que vous avez dit.\nI didn't catch what you said.\tJe n'ai pas saisi ce que tu as dit.\nI didn't do anything illegal.\tJe n'ai rien fait d'illégal.\nI didn't even get a postcard.\tJe n'ai même pas eu de carte postale.\nI didn't even try to respond.\tJe n'ai même pas essayé de répliquer.\nI didn't know about his plan.\tJe ne connaissais pas son plan.\nI didn't know it was snowing.\tJ'ignorais qu'il neigeait.\nI didn't know we had company.\tJ'ignorais que nous avions de la compagnie.\nI didn't know you were awake.\tJ'ignorais que tu étais éveillé.\nI didn't know you were awake.\tJ'ignorais que tu étais éveillée.\nI didn't know you were awake.\tJ'ignorais que vous étiez éveillé.\nI didn't know you were awake.\tJ'ignorais que vous étiez éveillée.\nI didn't know you were awake.\tJ'ignorais que vous étiez éveillés.\nI didn't know you were awake.\tJ'ignorais que vous étiez éveillées.\nI didn't leave the door open.\tJe n'ai pas laissé la porte ouverte.\nI didn't mean that literally.\tJe ne voulais pas littéralement dire ça.\nI didn't mean to confuse him.\tJe ne voulais pas l'embrouiller.\nI didn't mean to disturb you.\tJe n'avais pas l'intention de vous déranger.\nI didn't mean to disturb you.\tJe n'avais pas l'intention de te déranger.\nI didn't mean to hurt anyone.\tJe n'avais pas l'intention de blesser qui que ce fut.\nI didn't see anyone using it.\tJe n'ai vu personne l'employer.\nI didn't see who was driving.\tJe n'ai pas vu qui conduisait.\nI didn't tell him everything.\tJe ne lui dis pas tout.\nI didn't tell him everything.\tJe ne lui ai pas tout dit.\nI didn't tell you everything.\tJe ne t'ai pas tout conté.\nI didn't tell you everything.\tJe ne vous ai pas tout conté.\nI didn't tell you everything.\tJe ne t'ai pas tout dit.\nI didn't tell you everything.\tJe ne vous ai pas tout dit.\nI didn't think you were home.\tJe n'ai pas pensé que vous étiez chez vous.\nI didn't think you were home.\tJe n'ai pas pensé que tu étais chez toi.\nI didn't think you were home.\tJe ne pensais pas que vous étiez chez vous.\nI didn't think you were home.\tJe ne pensais pas que tu étais chez toi.\nI didn't think you'd show up.\tJe ne pensais pas que vous vous montreriez.\nI didn't think you'd show up.\tJe ne pensais pas que tu te montrerais.\nI didn't think you'd tell me.\tJe ne pensais pas que tu me l'aurais dit.\nI didn't think you'd tell me.\tJe ne pensais pas que tu me le dirais.\nI didn't think you'd tell me.\tJe ne pensais pas que vous me l'auriez dit.\nI didn't think you'd tell me.\tJe ne pensais pas que vous me le diriez.\nI didn't try to kill anybody.\tJe n'ai pas tenté de tuer qui que ce soit.\nI didn't try to kill anybody.\tJe n'ai pas tenté de tuer qui que ce fut.\nI didn't understand the joke.\tJe n'ai pas compris la blague.\nI didn't want Tom to help me.\tJe ne voulais pas que Tom me vienne en aide.\nI didn't want my mom to know.\tJe ne voulais pas que ma maman le sache.\nI didn't want that to happen.\tJe ne voulais pas que cela se produise.\nI didn't want this to happen.\tJe ne voulais pas que ça arrive.\nI didn't want to disturb Tom.\tJe ne voulais pas déranger Tom.\nI didn't want to involve you.\tJe n'ai pas voulu vous impliquer.\nI didn't want to involve you.\tJe n'ai pas voulu t'impliquer.\nI didn't want to look stupid.\tJe n'ai pas voulu avoir l'air stupide.\nI disapprove of what you say.\tJe réprouve ce que tu dis.\nI dislike speaking in public.\tJe n'aime pas parler en public.\nI do not love him any longer.\tJe ne l'aime plus.\nI don't anticipate a problem.\tJe n'envisage pas de problème.\nI don't believe that anymore.\tJe n'y crois plus.\nI don't believe that anymore.\tJe n’y crois plus.\nI don't care about your past.\tVotre passé m'indiffère.\nI don't care about your past.\tTon passé m'indiffère.\nI don't care about your past.\tJe me fiche de ton passé.\nI don't care about your past.\tJe n'ai que faire de ton passé.\nI don't care about your past.\tJe n'ai que faire de votre passé.\nI don't care how old you are.\tJe me fiche de l'âge que tu as.\nI don't care how old you are.\tJe me fiche de l'âge que vous avez.\nI don't care much for coffee.\tJe n'aime pas trop le café.\nI don't care much for coffee.\tJe n'aime pas le café plus que ça.\nI don't care much for coffee.\tJe n'aime pas plus que ça le café.\nI don't care what people say.\tJe ne me soucie pas de ce que les gens disent.\nI don't care what's happened.\tJe me fiche de ce qui est arrivé.\nI don't care why you're late.\tJe me fiche de savoir pourquoi vous êtes en retard.\nI don't care why you're late.\tJe me fiche de savoir pourquoi tu es en retard.\nI don't drink that much beer.\tJe ne bois pas tant de bière que ça.\nI don't drink that much beer.\tJe ne bois pas autant de bière.\nI don't even understand that.\tJe ne comprends pas même ça.\nI don't even want to be here.\tJe ne veux pas même être ici.\nI don't feel like eating now.\tJe n'ai pas envie de manger maintenant.\nI don't feel like exercising.\tJe n'ai pas envie de faire de l'exercice.\nI don't feel like getting up.\tJe n'ai pas envie de me lever.\nI don't find it intimidating.\tJe ne trouve pas ça intimidant.\nI don't find that comforting.\tJe ne trouve pas ça réconfortant.\nI don't have all the details.\tJe ne dispose pas de tous les détails.\nI don't have any money on me.\tJe n'ai pas la moindre monnaie sur moi.\nI don't have the address now.\tJe n'ai pas l'adresse, là.\nI don't have time for a walk.\tJe ne dispose pas du temps pour une promenade.\nI don't have time for a walk.\tJe n'ai pas le temps pour une promenade.\nI don't have time to be sick.\tJe n'ai pas le temps d'être malade.\nI don't have time to explain.\tJe n'ai pas le temps d'expliquer.\nI don't know his whereabouts.\tJ'ignore où il se trouve.\nI don't know how they did it.\tJ'ignore comment elles l'ont fait.\nI don't know how they did it.\tJ'ignore comment ils l'ont fait.\nI don't know how to help Tom.\tJe ne sais pas comment aider Tom.\nI don't know much about that.\tJe n'en sais pas grand-chose.\nI don't know what that means.\tJ'ignore ce que cela signifie.\nI don't know what that meant.\tJe ne sais pas ce que ça voulait dire.\nI don't know what that meant.\tJe ne sais pas ce que cela signifiait.\nI don't know what this means.\tJ'ignore ce que ça signifie.\nI don't know what to believe.\tJe ne sais que croire.\nI don't know what to do here.\tJe ne sais que faire ici.\nI don't know what to do next.\tJe ne sais pas quoi faire ensuite.\nI don't know what's happened.\tJe ne sais pas ce qui s'est passé.\nI don't know what's happened.\tJ'ignore ce qui est arrivé.\nI don't know what's happened.\tJ'ignore ce qui s'est produit.\nI don't know what's happened.\tJ'ignore ce qui s'est passé.\nI don't know what's happened.\tJe ne sais pas ce qui s'est produit.\nI don't know what's happened.\tJe ne sais pas ce qui est arrivé.\nI don't know when he'll come.\tJ'ignore quand il viendra.\nI don't know where I'd begin.\tJe ne sais pas où je commencerais.\nI don't know where I'd begin.\tJe ne sais pas par où je commencerais.\nI don't know where I'm going.\tJ'ignore où je vais.\nI don't know where I'm going.\tJ'ignore où je me rends.\nI don't know where she lives.\tJ'ignore où elle vit.\nI don't know where she lives.\tJe ne sais pas où elle vit.\nI don't know which to choose.\tJe ne sais pas lequel choisir.\nI don't know which to choose.\tJe ne sais pas laquelle choisir.\nI don't know who that man is.\tJe ne sais pas qui est cet homme.\nI don't know why I said that.\tJ'ignore pourquoi j'ai dit ça.\nI don't know why he was late.\tJe ne sais pas pourquoi il était en retard.\nI don't know why he's crying.\tJ'ignore pourquoi il pleure.\nI don't know why he's so mad.\tJ'ignore pourquoi il est tant en colère.\nI don't know why it happened.\tJ'ignore pourquoi c'est arrivé.\nI don't know why it happened.\tJe ne sais pas pourquoi c'est arrivé.\nI don't know why you need it.\tJ'ignore pourquoi vous en avez besoin.\nI don't know why you need it.\tJ'ignore pourquoi tu en as besoin.\nI don't like being on my own.\tJe n'apprécie pas de me trouver seule.\nI don't like being on my own.\tJe n'apprécie pas de me trouver seul.\nI don't like being on my own.\tJe n'aime pas me trouver seule.\nI don't like being on my own.\tJe n'aime pas me trouver seul.\nI don't like being surprised.\tJe n'aime pas que l'on me surprenne.\nI don't like being surprised.\tJe n'apprécie pas d'être surprise.\nI don't like being surprised.\tJe n'apprécie pas d'être surpris.\nI don't like classical music.\tJe n'aime pas la musique classique.\nI don't like looking foolish.\tJe n'aime pas avoir l'air d'une idiote.\nI don't like looking foolish.\tJe n'aime pas avoir l'air d'un idiot.\nI don't like oatmeal cookies.\tJe n'aime pas les biscuits d'avoine.\nI don't like oatmeal cookies.\tJe n'aime pas les biscuits de flocons d'avoine.\nI don't like office politics.\tJe n'aime pas les intrigues de bureau.\nI don't like people like Tom.\tJe n'aime pas les gens comme Tom.\nI don't like to be disturbed.\tJe n'aime pas être dérangé.\nI don't like to be spoken to.\tJe n'aime pas qu'on me parle.\nI don't like your girlfriend.\tJe n'aime pas ta copine.\nI don't like your suggestion.\tJe n'aime pas votre suggestion.\nI don't like your suggestion.\tJe n'aime pas ta suggestion.\nI don't like your suggestion.\tJe n'apprécie pas votre suggestion.\nI don't like your suggestion.\tJe n'apprécie pas ta suggestion.\nI don't need your protection.\tJe n'ai pas besoin de votre protection.\nI don't need your protection.\tJe n'ai pas besoin de ta protection.\nI don't read newspapers much.\tJe ne lis pas trop les journaux.\nI don't really have a choice.\tJe n'ai pas vraiment le choix.\nI don't really know anything.\tJe ne sais pas vraiment quoi que ce soit.\nI don't really understand it.\tJe ne le comprends pas vraiment.\nI don't recognize the number.\tJe ne reconnais pas le numéro.\nI don't remember that at all.\tJe ne me souviens pas du tout de ça.\nI don't remember that at all.\tJe ne me rappelle pas ça du tout.\nI don't see anything special.\tJe ne vois rien de particulier.\nI don't see anything strange.\tJe ne vois rien de bizarre.\nI don't see anything strange.\tJe ne vois rien d'étrange.\nI don't see how I can refuse.\tJe ne vois pas comment je peux refuser.\nI don't take orders from you.\tJe ne prends mes ordres de vous.\nI don't take orders from you.\tJe ne prends mes ordres de toi.\nI don't talk to them anymore.\tJe ne leur parle plus.\nI don't think I can eat this.\tJe ne pense pas pouvoir manger ça.\nI don't think I can eat this.\tJe ne pense pas arriver à manger ça.\nI don't think I can eat this.\tJe ne pense pas parvenir à manger ça.\nI don't think I can eat this.\tJe ne pense pas que je puisse manger ça.\nI don't think I can eat this.\tJe ne pense pas que j'arrive à manger ça.\nI don't think I can eat this.\tJe ne pense pas que je parvienne à manger ça.\nI don't think I can help you.\tJe ne pense pas que j'arrive à vous aider.\nI don't think I can help you.\tJe ne pense pas que j'arrive à t'aider.\nI don't think I can help you.\tJe ne pense pas que je parvienne à vous aider.\nI don't think I can help you.\tJe ne pense pas que je parvienne à t'aider.\nI don't think I can help you.\tJe ne pense pas que je puisse vous aider.\nI don't think I can help you.\tJe ne pense pas que je puisse t'aider.\nI don't think I can help you.\tJe ne pense pas pouvoir vous aider.\nI don't think I can help you.\tJe ne pense pas pouvoir t'aider.\nI don't think I can help you.\tJe ne pense pas parvenir à vous aider.\nI don't think I can help you.\tJe ne pense pas parvenir à t'aider.\nI don't think I can help you.\tJe ne pense pas arriver à vous aider.\nI don't think I can help you.\tJe ne pense pas arriver à t'aider.\nI don't think I ordered that.\tJe ne pense pas avoir commandé cela.\nI don't think I was followed.\tJe ne pense pas avoir été suivi.\nI don't think Tom heard Mary.\tJe ne pense pas que Tom ait entendu Marie.\nI don't think he is truthful.\tJe pense qu'il ne dit pas la vérité.\nI don't think it's important.\tJe ne crois pas que ce soit important.\nI don't think that's helping.\tJe ne pense pas que ça aide.\nI don't think you understand.\tJe ne pense pas que vous compreniez.\nI don't think you understand.\tJe ne pense pas que tu comprennes.\nI don't trust him any longer.\tJe ne lui fais plus confiance.\nI don't understand this word.\tJe ne comprends pas ce mot.\nI don't usually eat red meat.\tJe ne mange habituellement pas de viande rouge.\nI don't want Tom to see that.\tJe ne veux pas que Tom voie cela.\nI don't want him to touch me.\tJe ne veux pas qu'il m'émeuve.\nI don't want him to touch me.\tJe ne veux pas qu'il m'affecte.\nI don't want them to go away.\tJe ne veux pas qu'ils s'en aillent.\nI don't want them to go away.\tJe ne veux pas qu'elles s'en aillent.\nI don't want to be different.\tJe ne veux pas être différent.\nI don't want to be different.\tJe ne veux pas être différente.\nI don't want to be exploited.\tJe ne veux pas être utilisé.\nI don't want to eat any more.\tJe ne veux plus rien manger.\nI don't want to eat anything.\tJe ne veux rien manger.\nI don't want to get a suntan.\tJe ne veux pas bronzer.\nI don't want to get involved.\tJe ne veux pas être impliquée.\nI don't want to get involved.\tJe ne veux pas être impliqué.\nI don't want to go any place.\tJe ne veux aller nulle part.\nI don't want to go to school.\tJe ne veux pas aller à l'école.\nI don't want to go to school.\tJe n'ai pas envie d'aller à l'école.\nI don't want to miss the bus.\tJe ne veux pas rater le bus.\nI don't want to play anymore.\tJe ne veux plus jouer.\nI don't want to talk anymore.\tJe ne veux plus discuter.\nI don't want to talk anymore.\tJe ne veux plus parler.\nI don't want you to be upset.\tJe ne veux pas que vous soyez contrarié.\nI don't want you to be upset.\tJe ne veux pas que vous soyez contrariée.\nI don't want you to be upset.\tJe ne veux pas que vous soyez contrariées.\nI don't want you to be upset.\tJe ne veux pas que vous soyez contrariés.\nI don't want you to be upset.\tJe ne veux pas que vous soyez fâché.\nI don't want you to be upset.\tJe ne veux pas que vous soyez fâchée.\nI don't want you to be upset.\tJe ne veux pas que vous soyez fâchés.\nI don't want you to be upset.\tJe ne veux pas que vous soyez fâchées.\nI don't want you to be upset.\tJe ne veux pas que tu sois fâché.\nI don't want you to be upset.\tJe ne veux pas que tu sois fâchée.\nI don't want you to be upset.\tJe ne veux pas que tu sois contrarié.\nI don't want you to be upset.\tJe ne veux pas que tu sois contrariée.\nI don't want you to enjoy it.\tJe ne veux pas que tu en profites.\nI don't want you to enjoy it.\tJe ne veux pas que vous en profitiez.\nI don't want you to get hurt.\tJe ne veux pas que tu sois blessé.\nI don't wear glasses anymore.\tJe ne porte plus de lunettes.\nI doubled over with laughter.\tJe me suis plié de rire.\nI doubled over with laughter.\tJe me suis pliée de rire.\nI drink my tea without sugar.\tJe bois mon thé sans sucre.\nI enjoyed every minute of it.\tJ'en ai apprécié chaque minute.\nI enjoyed every minute of it.\tJ'ai joui de chaque minute.\nI feel as if I were dreaming.\tJe me sens comme en rêve.\nI feel as if I were dreaming.\tJe me sens comme en train de rêver.\nI feel bad about what I said.\tJe me sens mal au sujet de ce que j'ai dit.\nI feel good after exercising.\tJe me sens bien après la gym.\nI feel kind of sorry for Tom.\tJe me sens un peu désolé pour Tom.\nI feel like I might throw up.\tJe sens comme si je pouvais vomir.\nI feel like I'm going insane.\tJe l'impression de devenir dingue.\nI feel like I've been reborn.\tJ'ai l'impression de renaître.\nI feel really bad about this.\tJe me sens vraiment mal à ce sujet.\nI felt as if I had no choice.\tJ'eus l'impression de ne pas avoir le choix.\nI felt as if I had no choice.\tJ'ai eu l'impression de ne pas avoir le choix.\nI felt as if I had no choice.\tJ'eus le sentiment de ne pas avoir le choix.\nI felt as if I had no choice.\tJ'ai eu le sentiment de ne pas avoir le choix.\nI felt it was worth the risk.\tJ'ai eu le sentiment que ça valait le risque.\nI felt it was worth the risk.\tJ'eus le sentiment que ça valait le risque.\nI felt like my life was over.\tJ'ai eu l'impression que ma vie était terminée.\nI felt like my life was over.\tJ'eus l'impression que ma vie était terminée.\nI figured I had enough money.\tJe me suis imaginée que j'avais suffisamment d'argent.\nI figured I had enough money.\tJe me suis imaginé que j'avais suffisamment d'argent.\nI figured I had enough money.\tJe me suis imaginée que j'avais assez d'argent.\nI figured I had enough money.\tJe me suis imaginé que j'avais assez d'argent.\nI figured everyone was happy.\tJ'ai pensé que tout le monde était content.\nI figured it was worth a try.\tJ'ai songé que ça valait le coup d'essayer.\nI figured you weren't coming.\tJe me suis figuré que vous ne veniez pas.\nI figured you weren't coming.\tJe me suis figurée que vous ne veniez pas.\nI figured you weren't coming.\tJe me suis figuré que tu ne venais pas.\nI figured you weren't coming.\tJe me suis figurée que tu ne venais pas.\nI figured you'd be impressed.\tJe pensais que vous seriez impressionnée.\nI figured you'd be impressed.\tJe pensais que vous seriez impressionnées.\nI figured you'd be impressed.\tJe pensais que vous seriez impressionnés.\nI figured you'd be impressed.\tJe pensais que vous seriez impressionné.\nI figured you'd be impressed.\tJe pensais que tu serais impressionnée.\nI figured you'd be impressed.\tJe pensais que tu serais impressionné.\nI figured you'd want to know.\tJ'ai songé que vous voudriez savoir.\nI figured you'd want to know.\tJ'ai songé que tu voudrais savoir.\nI find that very interesting.\tJe trouve cela très intéressant.\nI finished all my work early.\tJ'ai fini tôt tout mon travail.\nI finished the job yesterday.\tJ'ai fini le travail hier.\nI followed him into his room.\tJe l'ai suivi dans sa chambre.\nI followed your instructions.\tJ'ai suivi vos instructions.\nI followed your instructions.\tJ'ai suivi tes instructions.\nI forgot something in my car.\tJ'ai oublié quelque chose dans ma voiture.\nI forgot to turn off the gas!\tJ'ai oublié de fermer le gaz !\nI forgot to turn off the gas!\tJ'ai oublié de couper le gaz !\nI found him lying on the bed.\tJe l'ai trouvé allongé sur le lit.\nI found the book by accident.\tJ'ai trouvé le livre par hasard.\nI found the boy sound asleep.\tJ'ai trouvé le garçon dormant à poings fermés.\nI found this note on my door.\tJ'ai trouvé ce mot sur ma porte.\nI gave most of my money away.\tJ'ai distribué la majeure partie de mon argent.\nI gazed at the sea for hours.\tJ'ai contemplé la mer pendant des heures.\nI got a little too impatient.\tJe suis devenu un peu trop impatient.\nI got slapped on both cheeks.\tJ'ai été giflé sur les deux joues.\nI got the book back from him.\tJe lui ai repris le livre.\nI got the ticket for nothing.\tJ'ai eu le billet pour trois fois rien.\nI got you a little something.\tJe t'ai ramené un petit quelque chose.\nI grew up in this small town.\tJ'ai grandi dans cette petite ville.\nI guess I could use a shower.\tJe suppose que ce ne serait pas du luxe que je prenne une douche.\nI guess I shouldn't complain.\tJe suppose que je ne devrais pas me plaindre.\nI guess my luck just ran out.\tJe suppose que ma chance s'est simplement épuisée.\nI guess that will have to do.\tJe suppose qu'il faudra que ça colle.\nI guess that'll be up to you.\tJe suppose que ça dépendra de vous.\nI guess that'll be up to you.\tJe suppose que ça dépendra de toi.\nI guess that's how I'd do it.\tJe suppose que c'est ainsi que je le ferais.\nI guess you want me to leave.\tJe suppose que vous voulez que je parte.\nI guess you want me to leave.\tJe suppose que tu veux que je parte.\nI had a bad dream last night.\tJ'ai fait un mauvais rêve la nuit dernière.\nI had a bad dream last night.\tHier soir j'ai fait un cauchemar.\nI had a dog when I was a kid.\tJ'avais un chien lorsque j'étais enfant.\nI had a good time last night.\tJ'ai passé du bon temps, hier soir.\nI had a hard time getting in.\tJ'ai eu du mal à rentrer.\nI had a horrible day at work.\tJ'ai eu une horrible journée, au travail.\nI had a terrible stomachache.\tJ'avais un terrible mal d'estomac.\nI had no idea what to expect.\tJe n'avais aucune idée à quoi m'attendre.\nI had nothing to do with her.\tJe n'avais rien à voir avec elle.\nI had quite a busy day today.\tJ’ai eu une journée plutôt chargée aujourd'hui.\nI had some cash stashed away.\tJ'avais de l'argent caché quelque part.\nI had some cash stashed away.\tJ'avais de l'argent de côté.\nI had something else in mind.\tJ'avais autre chose en tête.\nI had sore legs the next day.\tJ'avais les jambes douloureuses le jour suivant.\nI had such a happy childhood.\tJ'ai eu une enfance si heureuse !\nI had the exact same feeling.\tJ'eus exactement la même sensation.\nI had the exact same feeling.\tJ'eus exactement le même sentiment.\nI had the exact same feeling.\tJ'ai eu exactement la même sensation.\nI had the exact same feeling.\tJ'ai eu exactement le même sentiment.\nI had things to take care of.\tJ'ai eu des choses dont il fallait prendre soin.\nI had to climb over the wall.\tJ'ai dû passer par dessus le mur.\nI had to climb over the wall.\tJ'ai dû escalader le mur.\nI had to do everything alone.\tJe devais tout faire seul.\nI had to drag him out of bed.\tJ'ai dû le tirer du lit.\nI had to drag him out of bed.\tC'est moi qui ai dû le tirer du lit.\nI had to find out for myself.\tIl m'a fallu le découvrir par mes propres moyens.\nI had to find out for myself.\tJ'ai dû le découvrir tout seul.\nI had to stay in bed all day.\tJ'ai dû rester au lit toute la journée.\nI had two copies of the book.\tJ'avais deux copies de ce livre.\nI had two copies of the book.\tJe détins deux copies du livre.\nI had two copies of the book.\tJ'ai détenu deux exemplaires du livre.\nI hadn't planned to tell you.\tJe n'avais pas prévu de vous le dire.\nI hadn't planned to tell you.\tJe n'avais pas prévu de te le dire.\nI hadn't planned to tell you.\tJe n'avais pas prévu de vous le raconter.\nI hadn't planned to tell you.\tJe n'avais pas prévu de te le raconter.\nI hate the sound of my voice.\tJe déteste le son de ma voix.\nI have a black and white dog.\tJ'ai un chien noir et blanc.\nI have a favor to ask of you.\tJ'ai une faveur à te demander.\nI have a favor to ask of you.\tJ'ai une faveur à vous demander.\nI have a feeling he is right.\tJ'ai le sentiment qu'il a raison.\nI have a friend at City Hall.\tJ'ai un ami à la mairie.\nI have a good appetite today.\tJ'ai bon appétit aujourd'hui.\nI have a good sense of smell.\tJ'ai un bon sens de l'odorat.\nI have a lot of love for you.\tJ'ai beaucoup d'amour pour vous.\nI have a lot of things to do.\tJ'ai beaucoup de choses à faire.\nI have a lot of things to do.\tJ'ai de nombreuses choses à faire.\nI have a proposition for you.\tJ'ai une proposition pour toi.\nI have a question to ask you.\tJ'ai une question à vous poser.\nI have a slight headache now.\tJ'ai un léger mal de tête à présent.\nI have a throbbing pain here.\tJ'ai une douleur lancinante ici.\nI have a throbbing pain here.\tJ'ai une douleur lancinante là.\nI have absolute trust in him.\tJe lui fais totalement confiance.\nI have absolute trust in you.\tJ'ai une totale confiance en toi.\nI have absolute trust in you.\tJ'ai une absolue confiance en vous.\nI have already read the book.\tJ'ai déjà lu ce livre.\nI have an umbrella in my car.\tJ'ai un parapluie dans ma voiture.\nI have been to London before.\tJ'ai déjà été à Londres avant.\nI have bought a lot of books.\tJ'ai acheté quantité de livres.\nI have eaten a lot this week.\tJ'ai beaucoup mangé cette semaine.\nI have hardly any money left.\tJe n'ai presque plus d'argent de reste.\nI have just finished my work.\tJe viens de terminer mon travail.\nI have lived here since 1990.\tJ'habite ici depuis 1990.\nI have many things to do now.\tJ'ai beaucoup de choses à faire maintenant.\nI have never been to America.\tJe ne suis jamais allé en Amérique.\nI have no desire to hurt you.\tJe n'ai aucun désir de vous faire du mal.\nI have no desire to hurt you.\tJe n'ai aucun désir de te faire du mal.\nI have no friends to help me.\tJe n'ai pas d'amis pour m'aider.\nI have no idea what you mean.\tJe ne comprends pas ce que tu veux dire.\nI have no idea what you mean.\tJe ne comprends pas du tout ce que tu dis.\nI have no time to read books.\tJe n'ai pas le temps de lire des livres.\nI have not seen you for ages.\tJe ne suis pas venu vous voir depuis longtemps.\nI have nothing to do with it.\tJe n'y suis pour rien.\nI have nothing to say to you.\tJe n'ai rien à te dire.\nI have nothing to say to you.\tJe n'ai rien à vous dire.\nI have read this book before.\tJ'ai déjà lu ce livre avant.\nI have seen that girl before.\tJ'ai vu cette fille auparavant.\nI have seen that girl before.\tJ'ai déjà vu cette fille.\nI have some stamps in my bag.\tJ'ai des timbres dans mon sac.\nI have something to give you.\tJ'ai quelque chose à te donner.\nI have something to show you.\tJ'ai quelque chose à te montrer.\nI have something to show you.\tJ'ai quelque chose à vous montrer.\nI have something to tell you.\tJ'ai quelque chose à te dire.\nI have the flu and I'm tired.\tJ'ai la grippe et je suis fatigué.\nI have things to do tomorrow.\tJ'ai des choses à faire demain.\nI have to buy some new shoes.\tJe dois acheter de nouvelles chaussures.\nI have to do a lot of things.\tJe dois faire de nombreuses choses.\nI have to get away from here.\tIl me faut m'échapper d'ici.\nI have to go to the bathroom.\tJe dois me rendre aux toilettes.\nI have to go to the bathroom.\tJe dois aller aux toilettes.\nI have to go to the bathroom.\tIl faut que j'aille aux toilettes.\nI have to show you something.\tJe dois te montrer quelque chose.\nI have to show you something.\tJe dois vous montrer quelque chose.\nI have to solve this problem.\tJe dois résoudre ce problème.\nI have to solve this problem.\tJe dois régler ce problème.\nI have to study for the exam.\tJe dois étudier pour l'examen.\nI have to study for the test.\tJe dois étudier en vue de l'examen.\nI have to study for the test.\tJe dois étudier pour l'examen.\nI have to tell him something.\tJe dois lui dire quelque chose.\nI have two questions for you.\tJ'ai deux questions pour toi.\nI have two questions for you.\tJ'ai deux questions pour vous.\nI haven't been sleeping well.\tJe n'ai pas bien dormi.\nI haven't eaten in four days.\tJe n'ai pas mangé de quatre jours.\nI haven't found a doctor yet.\tJe n'ai pas encore trouvé de médecin.\nI haven't made much progress.\tJe n'ai pas beaucoup progressé.\nI haven't seen him for years.\tÇa fait des années que je ne l'ai pas vu.\nI haven't seen him for years.\tJe ne l'ai plus vu depuis des années.\nI haven't seen them anywhere.\tJe ne les ai vus nulle part.\nI haven't seen them anywhere.\tJe ne les ai vues nulle part.\nI hear from him once a month.\tJ'ai de ses nouvelles une fois par mois.\nI hear he is good at mahjong.\tJ'ai entendu dire qu'il était bon au mahjong.\nI hear that he's still alive.\tOn me dit qu'il est encore en vie.\nI hear you're good at French.\tIl paraît que tu es bon en français.\nI hear you're good at French.\tJ'ai entendu dire que tu étais bon en français.\nI heard it on the news today.\tJe l'ai entendu aux informations aujourd'hui.\nI heard someone call my name.\tJ'ai entendu quelqu'un appeler mon nom.\nI heard you just got married.\tJ'ai appris que tu venais juste de te marier.\nI held the umbrella over her.\tJe lui tenais le parapluie.\nI held up my end of the deal.\tJ'ai respecté ma part du contrat.\nI helped my father yesterday.\tHier, j’ai aidé mon père.\nI helped my father yesterday.\tHier j'ai aidé mon père.\nI hope he'll get better soon.\tJ'espère qu'il ira bientôt mieux.\nI hope it will clear up soon.\tJ'espère que ça va bientôt s'éclaircir.\nI hope that she will help me.\tJ'espère qu'elle va m'aider.\nI hope that she will help me.\tJ'espère qu'elle m'aidera.\nI hope that you will help me.\tJ'espère que tu vas m'aider.\nI hope that you will help me.\tJ'espère que vous allez m'aider.\nI hope that you will like it.\tJ'espère que vous l'aimerez.\nI hope this can help someone.\tJ'espère que cela peut aider quelqu'un.\nI hope you enjoyed your trip.\tJ'espère que vous avez apprécié votre voyage.\nI hope you enjoyed your trip.\tJ'espère que tu as apprécié ton voyage.\nI hope you're happy together.\tJ'espère que vous êtes heureux ensemble.\nI immediately thought of you.\tJ'ai immédiatement pensé à vous.\nI immediately thought of you.\tJ'ai immédiatement songé à vous.\nI insist that we do this now.\tJ'insiste pour que nous le fassions maintenant.\nI just assumed you'd be here.\tJ'ai simplement supposé que vous seriez ici.\nI just assumed you'd be here.\tJ'ai simplement supposé que tu serais ici.\nI just bought some cardboard.\tJe viens d'acheter du carton.\nI just can't believe my eyes.\tJe n'en crois pas mes yeux.\nI just can't wait to do that.\tJe suis très impatiente de le faire.\nI just can't wait to do that.\tJe suis très impatient de le faire.\nI just don't know what to do.\tJ'ignore simplement quoi faire.\nI just felt like coming home.\tJ'ai eu juste envie de venir à la maison.\nI just got here this morning.\tJe suis arrivé ici tout juste ce matin.\nI just had our house painted.\tJe viens de faire peindre la maison.\nI just had this suit cleaned.\tJe viens de faire nettoyer ce costume.\nI just had this suit cleaned.\tJe viens de faire nettoyer ce complet.\nI just have a lot on my mind.\tJ'ai simplement beaucoup en tête.\nI just need some information.\tIl me faut juste quelques informations.\nI just need some information.\tJ'ai seulement besoin de quelques informations.\nI just want to be his friend.\tJe veux simplement être son ami.\nI just want to be his friend.\tJe veux simplement être son amie.\nI just want to hold her hand.\tJe veux juste lui tenir la main.\nI just want to say good luck.\tJe veux juste dire bonne chance.\nI just wanted to say goodbye.\tJe voulais juste dire au revoir.\nI just wanted to talk to you.\tJe voulais simplement te parler.\nI just wanted to talk to you.\tJe voulais seulement vous parler.\nI just wanted to write songs.\tJe voulais juste écrire des chansons.\nI kept the seat warm for you.\tJe t'ai gardé la place au chaud.\nI kept the seat warm for you.\tJe vous ai gardé la place au chaud.\nI knew I was making mistakes.\tJe savais que j'étais en train de commettre des erreurs.\nI knew I was making mistakes.\tJe me savais commettre des erreurs.\nI knew then that I was right.\tJe savais alors que j'avais raison.\nI knew they were on the list.\tJe savais qu'ils étaient sur la liste.\nI knew they were on the list.\tJe savais qu'elles étaient sur la liste.\nI knew we were going to lose.\tJe savais que nous allions perdre.\nI knew you'd come back to me.\tJe savais que tu me reviendrais.\nI knew you'd come back to me.\tJe savais que tu reviendrais vers moi.\nI knew you'd come back to me.\tJe savais que vous reviendriez vers moi.\nI knew you'd come back to me.\tJe savais que vous me reviendriez.\nI know I can make it on time.\tJe sais que je peux le faire dans les temps.\nI know I have a lot to learn.\tJe sais que j'ai beaucoup à apprendre.\nI know I'll be able to do it.\tJe sais que je serai capable de le faire.\nI know I'll be able to do it.\tJe sais que je pourrai le faire.\nI know I'm not a likable guy.\tJe sais que je ne suis pas quelqu'un d'agréable.\nI know Tom is in great shape.\tJe sais que Tom est en grande forme.\nI know Tom saved Mary's life.\tJe sais que Tom a sauvé la vie de Mary.\nI know how badly you want it.\tJe sais combien tu le veux.\nI know how badly you want it.\tJe sais combien vous le voulez.\nI know how much you love Tom.\tJe sais à quel point tu aimes Tom.\nI know how this looks to you.\tJe sais comment cela te semble.\nI know how this looks to you.\tJe sais comment cela vous semble.\nI know none of the three men.\tJe ne connais aucun des trois hommes.\nI know now what I have to do.\tJe sais désormais ce que j'ai à faire.\nI know some of Tom's friends.\tJe connais quelques amis de Tom.\nI know that Tom isn't stupid.\tJe sais que Tom n'est pas stupide.\nI know that you're a teacher.\tJe sais que vous êtes enseignant.\nI know the man you came with.\tJe connais l'homme avec lequel tu es venu.\nI know very little about him.\tJe sais très peu de choses de lui.\nI know very little about him.\tJ'en sais très peu sur lui.\nI know what Tom likes to eat.\tJe sais ce que Tom aime manger.\nI know what you are thinking.\tJe sais ce que tu es en train de penser.\nI know what you are thinking.\tJe sais ce que vous êtes en train de penser.\nI know what you are thinking.\tJe sais ce que tu penses.\nI know what you are thinking.\tJe sais ce que vous pensez.\nI know who killed my parents.\tJe sais qui a tué mes parents.\nI know why Tom is in trouble.\tJe sais pourquoi Tom a des ennuis.\nI know you have a girlfriend.\tJe sais que tu as une petite amie.\nI know you have a girlfriend.\tJe sais que tu as une petite copine.\nI know you have a girlfriend.\tJe sais que tu as une nana.\nI know you have a girlfriend.\tJe sais que vous avez une petite amie.\nI know you have a girlfriend.\tJe sais que vous avez une petite copine.\nI know you have a girlfriend.\tJe sais que vous avez une nana.\nI know you're richer than me.\tJe sais que vous êtes plus riche que moi.\nI know you're richer than me.\tJe sais que tu es plus riche que moi.\nI know your father very well.\tJe connais très bien ton père.\nI laughed in spite of myself.\tJe riais malgré moi.\nI learned a lot this weekend.\tJ'ai beaucoup appris ce week-end.\nI left my passport somewhere.\tJ'ai laissé mon passeport quelque part.\nI left something in the room.\tJ'ai laissé quelque chose dans la pièce.\nI left you a couple messages.\tJe vous ai laissé quelques messages.\nI left you a couple messages.\tJe t'ai laissé quelques messages.\nI lied on my job application.\tJ'ai menti sur mon formulaire de candidature pour le poste.\nI like French food very much.\tJ'aime beaucoup la nourriture française.\nI like French food very much.\tLa cuisine française me plaît énormément.\nI like geography and history.\tJ'aime la géographie et l'Histoire.\nI like meat better than fish.\tJe préfère la viande au poisson.\nI like studying wild flowers.\tJ'aime étudier les fleurs sauvages.\nI live a totally normal life.\tJe mène une vie tout à fait normale.\nI lived abroad for ten years.\tJ'ai vécu à l'étranger pendant dix ans.\nI love cooking for my family.\tJ'adore cuisiner pour ma famille.\nI love the sound of her name.\tJ'adore la sonorité de son nom.\nI love you with all my heart.\tJe t'aime de tout mon cœur.\nI made you a pair of mittens.\tJe t'ai confectionné des moufles.\nI made you a pair of mittens.\tJe t'ai confectionné une paire de moufles.\nI managed to find his office.\tJ'ai réussi à trouver son bureau.\nI managed to finish the work.\tJ'ai réussi à finir le travail.\nI managed to finish the work.\tJe parvins à achever le travail.\nI may have hurt his feelings.\tJ'ai peut-être heurté ses sentiments.\nI may have something for you.\tIl se peut que j'ai quelque chose pour toi.\nI may have something for you.\tIl se peut que j'ai quelque chose pour vous.\nI may have to work part time.\tIl faudra peut-être que je travaille à mi-temps.\nI may not get another chance.\tIl se peut que je n'aie pas une autre occasion.\nI meet him from time to time.\tJe le rencontre de temps en temps.\nI mentioned your name to him.\tJe lui ai mentionné ton nom.\nI mentioned your name to him.\tJe lui ai mentionné votre nom.\nI met him in Tokyo by chance.\tJe l'ai rencontré par hasard à Tokyo.\nI met him quite unexpectedly.\tJe l'ai rencontré tout à fait fortuitement.\nI met your parents yesterday.\tHier, j'ai rencontré tes parents.\nI missed school for six days.\tJ'ai manqué l'école pendant six jours.\nI mistook him for my brother.\tJe l'ai pris pour mon frère.\nI moved back with my parents.\tJe retournai chez mes parents.\nI moved back with my parents.\tJe suis retourné chez mes parents.\nI must buy a new winter coat.\tJe dois acheter un nouveau manteau d'hiver.\nI must buy a new winter coat.\tJe dois acheter un nouveau manteau pour l'hiver.\nI must find some new friends.\tJe dois trouver de nouveaux amis.\nI must find some new friends.\tJe dois trouver de nouvelles amies.\nI must find some new friends.\tIl me faut trouver de nouveaux amis.\nI must find some new friends.\tIl me faut trouver de nouvelles amies.\nI must get my watch repaired.\tJe dois faire réparer ma montre.\nI must have the wrong number.\tJe dois avoir le mauvais numéro.\nI must make up for lost time.\tJe dois rattraper le temps perdu.\nI need a concise explanation.\tJ'ai besoin d'une brève explication.\nI need a concise explanation.\tJ'ai besoin d'une explication précise.\nI need something for a child.\tJ'ai besoin de quelque chose pour enfant.\nI need something to write on.\tJ'ai besoin de quelque chose sur lequel écrire.\nI need to be at work by 7:30.\tJe dois être au travail à 7h30.\nI need to finish my homework.\tIl me faut terminer mes devoirs.\nI need to get another lawyer.\tIl me faut trouver un autre avocat.\nI need to go out for a while.\tJ'ai besoin de sortir un moment.\nI need to practice my French.\tJ'ai besoin de pratiquer mon français.\nI need to show you something.\tJ'ai besoin de te montrer quelque chose.\nI need you for just a second.\tJ'ai besoin de toi une minute.\nI never drink tea with lemon.\tJe ne bois jamais du thé avec du citron.\nI never feed my dog raw meat.\tJe ne donne jamais de viande crue à manger à mon chien.\nI never heard from him again.\tJe n'ai jamais plus entendu parler de lui.\nI never laid a finger on her.\tJe n'ai jamais levé le petit doigt sur elle.\nI never learned how to write.\tJe n'ai jamais appris à écrire.\nI never said you couldn't go.\tJe n’ai jamais dit que tu ne pouvais pas y aller.\nI never said you were boring.\tJe n’ai jamais dit que tu étais ennuyeux.\nI never saw Tom before today.\tJe n'ai jamais vu Tom avant aujourd'hui.\nI never speak French anymore.\tJe ne parle plus du tout français.\nI never thought I'd find Tom.\tJe n’aurais jamais pensé trouver Tom.\nI never thought I'd find Tom.\tJe n’aurais jamais pensé que je trouverais Tom.\nI never thought I'd say that.\tJe n'ai jamais pensé que je dirais ça.\nI never work during weekends.\tJe ne travaille jamais les week-ends.\nI often go fishing with them.\tJe vais souvent à la pêche avec eux.\nI only came to say I'm sorry.\tJe suis seulement venu pour dire que je suis désolé.\nI only came to say I'm sorry.\tJe suis seulement venu pour dire que je suis désolée.\nI only hope I'm not too late.\tJ'espère seulement que je ne suis pas trop en retard.\nI only know what you tell me.\tJe ne sais que ce que vous me dites.\nI only know what you tell me.\tJe ne sais que ce que tu me dis.\nI only slept for three hours.\tJe n'ai dormi que trois heures.\nI only told you, no one else.\tJe ne l'ai dit qu'à vous, à personne d'autre.\nI only told you, no one else.\tJe ne l'ai dit qu'à toi, à personne d'autre.\nI ordered a book from London.\tJ'ai commandé un livre de Londres.\nI ordered a book from London.\tJ'ai commandé un livre à Londres.\nI ought to do this by myself.\tJe devrais faire ça par mes propres moyens.\nI ought to know, shouldn't I?\tJe devrais savoir, n'est-ce pas ?\nI owe my success to her help.\tJe dois mon succès à son aide.\nI owe my success to his help.\tJe dois mon succès à son aide.\nI owe what I am to my father.\tJe dois ce que je suis à mon père.\nI owe what I am today to you.\tJe te suis redevable de ce que je suis maintenant.\nI plan to tell Tom about you.\tJe prévois de parler de toi à Tom.\nI plan to tell Tom about you.\tJ'ai l'intention de parler de toi à Tom.\nI plan to write Tom a letter.\tJ'ai l'intention d'écrire une lettre à Tom.\nI played tennis after school.\tJe jouais au tennis après l'école.\nI prepared breakfast for Tom.\tJ'ai préparé le petit déjeuner pour Tom.\nI pretended it didn't happen.\tJ'ai fait comme si ça n'était pas arrivé.\nI pretended it didn't happen.\tJ'ai fait comme si ça ne s'était pas produit.\nI promise I will protect you.\tJe te promets que je te protègerai.\nI promise it won't take long.\tJe promets que ça ne prendra pas longtemps.\nI promise to come back early.\tJe promets de revenir tôt.\nI put some milk in my coffee.\tJ'ai mis un peu de lait dans mon café.\nI put some milk in my coffee.\tJe mis un peu de lait dans mon café.\nI quit smoking two years ago.\tJ’ai arrêté de fumer il y a deux ans.\nI ran in order to be on time.\tJ'ai couru pour être à l'heure.\nI ran in order to be on time.\tJe courus, afin d'être à l'heure.\nI ran in order to be on time.\tAfin d'être à l'heure, je courus.\nI rarely listen to the radio.\tJ'écoute rarement la radio.\nI rarely watch documentaries.\tJe regarde rarement des documentaires.\nI read about it in the paper.\tJe l'ai lu dans le journal.\nI read this in the newspaper.\tJe l'ai lu dans le journal.\nI really am glad you're here.\tJe me réjouis vraiment que tu sois là.\nI really am glad you're here.\tJe me réjouis vraiment que tu sois ici.\nI really am glad you're here.\tJe me réjouis vraiment que vous soyez là.\nI really am glad you're here.\tJe me réjouis vraiment que vous soyez ici.\nI really am glad you're here.\tJe suis vraiment content que vous soyez là.\nI really am glad you're here.\tJe suis vraiment content que vous soyez ici.\nI really am glad you're here.\tJe suis vraiment content que tu sois là.\nI really am glad you're here.\tJe suis vraiment content que tu sois ici.\nI really am glad you're here.\tJe suis vraiment contente que tu sois là.\nI really am glad you're here.\tJe suis vraiment contente que tu sois ici.\nI really am glad you're here.\tJe suis vraiment contente que vous soyez ici.\nI really am glad you're here.\tJe suis vraiment contente que vous soyez là.\nI really can't figure it out.\tJe n'arrive vraiment pas à le comprendre.\nI really didn't want to play.\tJe ne voulais vraiment pas jouer.\nI really don't have the time.\tJe n'ai vraiment pas le temps.\nI really don't need any help.\tJe n'ai vraiment pas besoin d'aide.\nI really hate dairy products.\tJe déteste vraiment les produits laitiers.\nI really like French cooking.\tJ'aime vraiment la cuisine française.\nI really like being with you.\tJ'apprécie vraiment d'être avec vous.\nI really like being with you.\tJ'apprécie vraiment d'être avec toi.\nI really like being with you.\tJ'apprécie vraiment d'être en votre compagnie.\nI really like being with you.\tJ'apprécie vraiment d'être en ta compagnie.\nI really like being with you.\tJ'apprécie vraiment de me trouver en votre compagnie.\nI really like being with you.\tJ'apprécie vraiment de me trouver en ta compagnie.\nI really like your paintings.\tJ'aime vraiment vos tableaux.\nI really like your paintings.\tJ'aime vraiment tes tableaux.\nI really like your paintings.\tJ'apprécie vraiment vos tableaux.\nI really like your paintings.\tJ'apprécie vraiment tes tableaux.\nI really need to talk to you.\tJ'ai vraiment besoin de te parler.\nI really need to talk to you.\tJ'ai vraiment besoin de vous parler.\nI really want to believe you.\tJe veux vraiment vous croire.\nI really want to believe you.\tJe veux vraiment te croire.\nI received a letter from her.\tJ'ai reçu une lettre de sa part.\nI reconsidered your proposal.\tJ'ai réévalué votre proposition.\nI reconsidered your proposal.\tJ'ai réévalué ta proposition.\nI relayed the message to Tom.\tJ'ai transmis le message à Tom.\nI remember seeing her before.\tJe me remémore l'avoir vue auparavant.\nI remember seeing you before.\tJe me rappelle t'avoir déjà rencontré auparavant.\nI remember seeing you before.\tJe me rappelle t'avoir déjà rencontrée auparavant.\nI returned Tom's book to him.\tJ'ai rendu son livre à Tom.\nI said I was alone, didn't I?\tJ'ai dit que j'étais seule, non ?\nI said I was alone, didn't I?\tJ'ai dit que j'étais seul, non ?\nI said that I would help him.\tJ'ai dit que je l'aiderais.\nI said that I would help him.\tJe dis que je l'aiderais.\nI saw a horse pulling a cart.\tJ'ai vu un cheval tirant une carriole.\nI saw a town in the distance.\tJe vis une ville au loin.\nI saw her just the other day.\tJe l'ai vue l'autre jour.\nI saw the boy in brown shoes.\tJ'ai vu le garçon en chaussures marron.\nI saw the man enter the room.\tJe vis l'homme entrer dans la pièce.\nI saw you at the flower shop.\tJe vous ai vu au fleuriste.\nI say it's time for a change.\tIl est temps que ça change.\nI see your cat in the garden.\tJe vois votre chat dans le jardin.\nI seem to have a temperature.\tIl semble que j'aie de la fièvre.\nI seem to have a temperature.\tIl semble que j'ai de la fièvre.\nI seldom listen to the radio.\tJ'écoute rarement la radio.\nI sent the parcel by airmail.\tJ'ai envoyé le paquet par avion.\nI set myself realistic goals.\tJe me fixe des objectifs réalistes.\nI should get back to my seat.\tJe devrais retourner à mon fauteuil.\nI should've done this sooner.\tJ'aurais dû faire ça plus tôt.\nI should've known it was you.\tJ'aurais dû savoir que c'était toi.\nI should've known it was you.\tJ'aurais dû savoir que c'était vous.\nI should've seen this coming.\tJ'aurais dû le voir venir.\nI shouldn't have sold my car.\tJe n'aurais pas dû vendre ma voiture.\nI slept very well last night.\tJ'ai très bien dormi la nuit passée.\nI slept very well last night.\tJ'ai fort bien dormi la nuit passée.\nI slept very well last night.\tJ'ai très bien dormi la nuit dernière.\nI slept very well last night.\tJ'ai fort bien dormi la nuit dernière.\nI spent all day in his house.\tJ'ai passé toute la journée chez lui.\nI still can't believe we won.\tJe n’en reviens toujours pas que nous ayons gagné.\nI still have some work to do.\tJ'ai encore du travail à faire.\nI study from eight to eleven.\tJ'étudie de 8 heures à 11 heures.\nI suggest we take the stairs.\tJe suggère que nous empruntions les escaliers.\nI suppose it can't be helped.\tJe suppose qu'on n'y peut rien.\nI suppose it was a bit silly.\tJe suppose que c'était un peu bête.\nI suppose you think I'm nuts.\tJe suppose que vous pensez que je suis dingue.\nI suppose you think I'm nuts.\tJe suppose que tu penses que je suis dingue.\nI suppose you think I'm rich.\tJe suppose que vous pensez que je suis riche.\nI suppose you think I'm rich.\tJe suppose que tu penses que je suis riche.\nI suppose you've got a point.\tJe suppose que tu as raison.\nI suppose you've got a point.\tJe suppose que vous avez raison.\nI swear I didn't do anything.\tJe jure que je n'ai pas fait quoi que ce soit.\nI talked him out of the idea.\tJe l'ai convaincu d'abandonner l'idée.\nI tanned myself on the beach.\tJ'ai bronzé sur la plage.\nI think I'd better stay here.\tJe pense que je ferais mieux de rester ici.\nI think I'll always love you.\tJe pense que je t'aimerai toujours.\nI think I'll come back later.\tJe pense que je serai bientôt de retour.\nI think I'll go to bed early.\tJe pense aller tôt au lit.\nI think I'm going to be sick.\tJe pense que je vais être malade.\nI think Tom is afraid of you.\tJe pense que Tom a peur de vous.\nI think Tom is afraid of you.\tJe pense que Tom a peur de toi.\nI think Tom is compassionate.\tJe pense que Tom est compatissant.\nI think Tom is in his office.\tJe pense que Tom est dans son bureau.\nI think Tom stole my bicycle.\tJe crois que Tom a volé ma bicyclette.\nI think Tom wants Mary's job.\tJe pense que Tom veut le poste de Marie.\nI think Tom wants to see you.\tJe pense que Tom veut vous voir.\nI think he needs to go there.\tJe pense qu'il a besoin de s'y rendre.\nI think it will be hot today.\tJe pense qu'il fera chaud aujourd'hui.\nI think it'll freeze tonight.\tJe pense qu'il va geler ce soir.\nI think it's going to be fun.\tJe pense que ce sera amusant.\nI think it's much better now.\tJe pense que c'est bien mieux maintenant.\nI think it's time to go home.\tJe pense qu'il est temps de rentrer chez soi.\nI think it's very impressive.\tJe pense que c'est très impressionnant.\nI think perhaps you're right.\tJe pense qu'il se peut que tu aies raison.\nI think she is a good dancer.\tJe pense que c’est une bonne danseuse.\nI think she will divorce him.\tJe pense qu'elle va divorcer.\nI think something scared Tom.\tJe pense que quelque chose a effrayé Tom.\nI think that's a stupid idea.\tJe pense que c'est une idée stupide.\nI think that's up to you now.\tJe pense que ça dépend désormais de toi.\nI think that's up to you now.\tJe pense que ça dépend désormais de vous.\nI think we both should leave.\tJe pense que nous devrions tous deux partir.\nI think we both should leave.\tJe pense que nous devrions toutes deux partir.\nI think we found the problem.\tJe pense que nous avons trouvé le problème.\nI think we should follow Tom.\tJe pense que nous devrions suivre Tom.\nI think we'd better be going.\tJe pense que nous ferions mieux d'y aller.\nI think we'd better be going.\tJe pense que nous ferions mieux de nous en aller.\nI think we'd better help Tom.\tJe pense que nous ferions mieux d'aider Tom.\nI think we're all a bit loco.\tJe pense que nous sommes tous un peu fous.\nI think we're being followed.\tJe pense que nous sommes suivis.\nI think we're being followed.\tJe pense que nous sommes suivies.\nI think we're going to be OK.\tJe pense que ça ira bien pour nous.\nI think we've made our point.\tJe pense que nous avons exprimé notre point de vue.\nI think what you say is true.\tJe pense que ce que vous dites est vrai.\nI think you have my umbrella.\tJe pense que tu as mon parapluie.\nI think you have my umbrella.\tJe pense que vous avez mon parapluie.\nI think you must be mistaken.\tJe pense que tu dois te tromper.\nI think you must be mistaken.\tJe pense que vous devez vous tromper.\nI think you should leave now.\tJe pense que tu devrais partir maintenant.\nI think you should leave now.\tJe pense que vous devriez partir maintenant.\nI think you'd better give up.\tJe pense que tu ferais mieux d'abandonner.\nI think you'd better give up.\tJe pense que vous feriez mieux d'abandonner.\nI thought I had enough money.\tJe pensais avoir assez d'argent.\nI thought I heard your voice.\tJe pensais avoir entendu ta voix.\nI thought I heard your voice.\tJe pensais avoir entendu votre voix.\nI thought I was going to die.\tJe pensais que j'allais mourir.\nI thought I'd make breakfast.\tJe pensais que je ferais le petit-déjeuner.\nI thought Tom did a nice job.\tJ'ai pensé que Tom avait fait un bon travail.\nI thought Tom was unemployed.\tJe pensais que Tom était au chômage.\nI thought Tom would say that.\tJe pensais que Tom aurait dit cela.\nI thought everyone was happy.\tJe pensais que tout le monde était content.\nI thought it might be useful.\tJe pensais que ça pourrait être utile.\nI thought it was a good idea.\tJ'ai pensé que c'était une bonne idée.\nI thought of you immediately.\tJ'ai immédiatement songé à vous.\nI thought of you immediately.\tJ'ai immédiatement songé à toi.\nI thought she was 30 at most.\tJe pensais qu'elle avait 30 ans, tout au plus.\nI thought that he was honest.\tJe pensais qu'il était honnête.\nI thought that he was honest.\tJ'ai pensé qu'il était honnête.\nI thought they wouldn't come.\tJe pensais qu'ils ne viendraient pas.\nI thought they wouldn't come.\tJe pensais qu'elles ne viendraient pas.\nI thought they wouldn't come.\tJe pensais qu'ils ne voudraient pas venir.\nI thought they wouldn't come.\tJe pensais qu'elles ne voudraient pas venir.\nI thought we could do better.\tJe pensais que nous pourrions mieux faire.\nI thought we could do better.\tJe pensais que nous pouvions mieux faire.\nI thought we had a good time.\tJe pensais que nous avions passé du bon temps.\nI thought you could use this.\tJ'ai pensé que tu pourrais utiliser ceci.\nI thought you might be upset.\tJe pensais que tu pourrais être contrarié.\nI thought you might be upset.\tJe pensais que tu pourrais être contrariée.\nI thought you might be upset.\tJe pensais que vous pourriez être contrarié.\nI thought you might be upset.\tJe pensais que vous pourriez être contrariée.\nI thought you might be upset.\tJe pensais que vous pourriez être contrariés.\nI thought you might be upset.\tJe pensais que vous pourriez être contrariées.\nI thought you read my resume.\tJe pensais que vous aviez lu mon CV.\nI thought you read my resume.\tJe pensais que tu avais lu mon CV.\nI thought you wanted to wait.\tJe pensais que vous vouliez attendre.\nI thought you wanted to wait.\tJe pensais que tu voulais attendre.\nI thought you were in charge.\tJe pensais que vous étiez le responsable.\nI thought you were in charge.\tJe pensais que vous étiez la responsable.\nI thought you were in charge.\tJe pensais que tu étais le responsable.\nI thought you were in charge.\tJe pensais que tu étais la responsable.\nI thought you were mad at me.\tJe pensais que tu étais en colère après moi.\nI thought you were mad at me.\tJe pensais que vous étiez en colère après moi.\nI thought you were my friend.\tJe pensais que tu étais mon ami.\nI thought you were my friend.\tJe pensais que tu étais mon amie.\nI thought you were my friend.\tJe pensais que vous étiez mon ami.\nI thought you were my friend.\tJe pensais que vous étiez mon amie.\nI thought you were one of us.\tJe pensais que tu étais l'un d'entre nous.\nI thought you were one of us.\tJe pensais que vous étiez l'un d'entre nous.\nI thought you weren't coming.\tJe pensais que vous ne veniez pas.\nI thought you weren't coming.\tJe pensais que tu ne venais pas.\nI thought you would say that.\tJe pensais que tu dirais ça.\nI thought you'd be different.\tJe pensais que vous seriez différent.\nI thought you'd be different.\tJe pensais que vous seriez différente.\nI thought you'd want it back.\tJe pensais que tu voudrais le récupérer.\nI thought you'd want it back.\tJe pensais que vous voudriez le récupérer.\nI thought you'd want to know.\tJe pensais que tu voudrais savoir.\nI thought you'd want to know.\tJe pensais que vous voudriez savoir.\nI told Tom he made a mistake.\tJ'ai dit à Tom qu'il avait fait une erreur.\nI told Tom what he had to do.\tJ'ai dit à Tom ce qu'il avait à faire.\nI told you I hate that shirt.\tJe vous ai dit que je déteste cette chemise.\nI told you I hate that shirt.\tJe t'ai dit que je déteste cette chemise.\nI told you everything I knew.\tJe vous ai dit tout ce que je savais.\nI told you everything I knew.\tJe t'ai dit tout ce que je savais.\nI trusted him with the money.\tJ'avais confiance en lui pour l'argent.\nI use an electric toothbrush.\tJ'emploie une brosse-à-dents électrique.\nI used to think no one cared.\tJe pensais que personne ne s'en souciait.\nI waited for him for an hour.\tJe l'ai attendu pendant une heure.\nI waited more than two hours.\tJ'ai attendu plus de deux heures.\nI walked 10 kilometers today.\tJ’ai marché 10 kilomètres aujourd’hui.\nI want another cup of coffee.\tJe veux une autre tasse de café.\nI want exactly what you want.\tJe veux exactement ce que tu veux.\nI want exactly what you want.\tJe veux exactement ce que vous voulez.\nI want ice cream for dessert.\tJe veux de la crème glacée pour le dessert.\nI want my room painted white.\tJe veux que ma chambre soit peinte en blanc.\nI want my share of the money.\tJe veux ma part de l'argent.\nI want something good to eat.\tJe veux manger un truc bon.\nI want something good to eat.\tJe veux manger quelque chose de bon.\nI want something to write on.\tJe veux quelque chose pour écrire.\nI want the work done quickly.\tJe veux que le travail soit fait rapidement.\nI want time instead of money.\tJe veux du temps à la place de l'argent.\nI want to ask a favor of you.\tJ'ai une faveur à vous demander.\nI want to ask you a question.\tJe veux te poser une question.\nI want to ask you a question.\tJe veux vous poser une question.\nI want to be there, you know.\tJe veux y être, sais-tu.\nI want to be there, you know.\tJe veux y être, savez-vous.\nI want to build a house here.\tJe veux construire une maison ici.\nI want to buy a new computer.\tJe désire acheter un nouvel ordinateur.\nI want to buy some ski boots.\tJe veux acheter des chaussures de ski.\nI want to come and live here.\tJe veux venir vivre ici.\nI want to convey my sympathy.\tJe veux transmettre ma compassion.\nI want to deposit some money.\tJe veux déposer de l'argent.\nI want to drink a cup of tea.\tJe veux boire une tasse de thé.\nI want to eat something good.\tJe veux manger quelque chose de bon.\nI want to get back to Boston.\tJe veux retourner à Boston.\nI want to go skiing with Tom.\tJe veux aller skier avec Tom.\nI want to go there once more.\tJe veux y aller une fois encore.\nI want to go there once more.\tJe veux m'y rendre une fois encore.\nI want to kill you right now.\tJ'ai envie de te tuer, là, maintenant.\nI want to know all about you.\tJe veux tout savoir sur toi.\nI want to know what I can do.\tJe veux savoir ce que je peux faire.\nI want to know what you mean.\tJe veux savoir ce que vous voulez dire.\nI want to know what you mean.\tJe veux savoir ce que tu veux dire.\nI want to show you something.\tJe veux te montrer quelque chose.\nI want to show you something.\tJe veux vous montrer quelque chose.\nI want to take a closer look.\tJe veux y porter un œil plus attentif.\nI want to take you to dinner.\tJe veux vous emmener déjeuner.\nI want to take you to dinner.\tJe veux t'emmener déjeuner.\nI want to take you to dinner.\tJe veux vous emmener dîner.\nI want to take you to dinner.\tJe veux t'emmener dîner.\nI want to tell you the story.\tJe veux te raconter l'histoire.\nI want to travel by airplane.\tJe veux voyager en avion.\nI want to try something else.\tJe veux essayer quelque chose d'autre.\nI want to want what you want.\tJe veux vouloir ce que tu veux.\nI want to work in a hospital.\tJe veux travailler dans un hôpital.\nI want to work in a hospital.\tJ'ai envie de travailler dans un hôpital.\nI want you to meet my cousin.\tJe veux que tu rencontres mon cousin.\nI want you to read this book.\tJe veux que tu lises ce livre.\nI want you to read this book.\tJe veux que vous lisiez ce livre.\nI want you to read this book.\tJe voudrais que tu lises ce livre.\nI wanted to make new friends.\tJe voulais me faire de nouveaux amis.\nI wanted to make new friends.\tJe voulais me faire de nouvelles amies.\nI wanted to say hello to Tom.\tJe voulais dire bonjour à Tom.\nI wanted to work this summer.\tJ'ai voulu travailler cet été.\nI was a student at that time.\tJ'étais étudiant à cette époque-là.\nI was a student at that time.\tJ'étais alors étudiant.\nI was aching from the injury.\tLa blessure me faisait mal.\nI was afraid to catch a cold.\tJe craignais de prendre froid.\nI was alone in the classroom.\tJ’étais seul dans la salle de cours.\nI was alone in the classroom.\tJ'étais seul dans la salle de classe.\nI was alone in the classroom.\tJ'étais seul en salle de classe.\nI was ashamed of my behavior.\tJ'ai eu honte de mon comportement.\nI was aware of being watched.\tJ'avais conscience d'être l'objet de regards.\nI was born in Boston in 1995.\tJe suis né à Boston en 1995.\nI was disappointed in my son.\tJ'ai été déçu par mon fils.\nI was happy to hear the news.\tJ'étais heureux d'entendre la nouvelle.\nI was happy to hear the news.\tJ'étais heureux d'entendre les nouvelles.\nI was happy to see her again.\tJ'étais heureux de la revoir.\nI was home all day yesterday.\tHier j'étais chez moi toute la journée.\nI was invited to Tom's party.\tJ'ai été invité à la fête de Tom.\nI was just going to say that.\tJ'allais le dire.\nI was just leaving home then.\tJe partais alors juste de chez moi.\nI was just leaving home then.\tJ'étais alors juste en train de partir de chez moi.\nI was laughed at by everyone.\tTout le monde s'était moqué de moi.\nI was only saying my prayers.\tJe ne faisais que dire mes prières.\nI was outraged by his answer.\tSa réponse m'a outré.\nI was tired so I went to bed.\tJ'étais fatigué, j'allai donc au lit.\nI was tired so I went to bed.\tJ'étais fatigué, je suis donc allé au lit.\nI was tired so I went to bed.\tJ'étais fatiguée, j'allai donc au lit.\nI was tired so I went to bed.\tJ'étais fatiguée, je suis donc allé au lit.\nI was too surprised to speak.\tJ'étais trop étonnée pour parler.\nI was too surprised to speak.\tJ'étais trop étonné pour parler.\nI was very worried about her.\tJ'étais très inquiet à son sujet.\nI wash my face every morning.\tJe me lave le visage chaque matin.\nI watch television every day.\tJe regarde la télévision tous les jours.\nI watched an old movie on TV.\tJ'ai regardé un vieux film à la télévision.\nI wear a suit, but not a tie.\tJe porte un complet, mais pas de cravate.\nI wear a suit, but not a tie.\tJe porte un costume, mais pas de cravate.\nI went skiing a lot as a kid.\tJe suis beaucoup allé skier, étant enfant.\nI went skiing a lot as a kid.\tEnfant, je suis beaucoup allé skier.\nI went swimming in the river.\tJe suis allé nager dans la rivière.\nI went there dozens of times.\tJ'y suis allé des dizaines de fois.\nI went to donate blood today.\tJe suis allé donner mon sang aujourd'hui.\nI went to the park yesterday.\tJe suis allé au parc hier.\nI will deal with them myself.\tJe vais m'en charger moi-même.\nI will deal with them myself.\tJe vais moi-même m'occuper d'eux.\nI will deal with them myself.\tJe vais moi-même m'occuper d'elles.\nI will deal with them myself.\tJe vais me charger d'eux en personne.\nI will deal with them myself.\tJe vais me charger d'elles en personne.\nI will get in touch with you.\tJe te contacterai.\nI will get in touch with you.\tJe vous contacterai.\nI will go when he comes back.\tJe m'en vais quand il revient.\nI will never have a daughter.\tJe n'aurai jamais de fille.\nI will quit smoking for good.\tJe vais arrêter de fumer pour de bon.\nI will speak to you tomorrow.\tJe parlerai avec toi demain.\nI wish I could help you more.\tJe voudrais pouvoir t'aider plus.\nI wish I could help you more.\tJ'aimerais pouvoir t'aider plus.\nI wish I could sing like Tom.\tJ'aimerais pouvoir chanter comme Tom.\nI wish I could speak English.\tJ'aimerais savoir parler anglais.\nI wish I didn't have to work.\tJ'aimerais ne pas avoir à travailler.\nI wish I had a better memory.\tJ'aurais aimé avoir meilleure mémoire.\nI wish I had eaten breakfast.\tJ'aurais aimé avoir petit-déjeuné.\nI wish it would stop raining.\tJ'espère qu'il va arrêter de pleuvoir.\nI wish to live in a big city.\tJe désire vivre dans une métropole.\nI wish you were here with me.\tJ'aimerais que tu sois là avec moi.\nI wish you were here with me.\tJ'aimerais que vous soyez là avec moi.\nI wish you'd never been born.\tJ'aimerais que tu ne sois jamais né.\nI wish you'd never been born.\tJ'aimerais que vous ne soyez jamais né.\nI wish you'd never been born.\tJ'aimerais que vous ne soyez jamais née.\nI wish you'd never been born.\tJ'aimerais que tu ne sois jamais née.\nI wish you'd never been born.\tJ'aimerais que vous ne soyez jamais nés.\nI wish you'd never been born.\tJ'aimerais que vous ne soyez jamais nées.\nI wish you'd stop doing that.\tJ'aimerais que tu arrêtes de faire ça.\nI wish you'd stop doing that.\tJ'aimerais que vous arrêtiez de faire ça.\nI woke up early this morning.\tJe me suis levée tôt ce matin.\nI won't be running for mayor.\tJe ne vais pas me présenter aux municipales.\nI wonder if he's really sick.\tJe me demande s'il est vraiment malade.\nI work as a museum attendant.\tJe travaille comme gardien de musée.\nI worked hard for this money.\tJ'ai travaillé dur pour cet argent.\nI worked really hard on this.\tJ'y ai vraiment travaillé dur.\nI would do anything but that.\tJe ferai n'importe quoi sauf cela.\nI would like a cup of coffee.\tJe voudrais une tasse de café.\nI would like a cup of coffee.\tJ'apprécierais une tasse de café.\nI would like a word with you.\tJ'aimerais vous toucher un mot.\nI would like a word with you.\tJ'aimerais avoir deux mots avec vous.\nI would like to go to France.\tJ'aimerais aller en France.\nI would like to study Arabic.\tJe voudrais étudier l'arabe.\nI would like to travel alone.\tJ'aimerais voyager seul.\nI would love to try that out.\tJ'adorerais essayer ça !\nI would not go skating today.\tJe n'irai pas faire du skate aujourd'hui.\nI would rather have a coffee.\tJ'aimerais mieux avoir un café.\nI would very much like to go.\tJ'aimerais beaucoup y aller.\nI would very much like to go.\tJ'aimerais beaucoup partir.\nI wouldn't want to miss this.\tJe ne voudrais pas rater cela.\nI wrote my name on the paper.\tJ'ai écrit mon nom sur la feuille.\nI'd be happy to sing for you.\tJe serais heureux de chanter pour toi.\nI'd be happy to sing for you.\tJe serais heureux de chanter pour vous.\nI'd be very glad if you came.\tJe serais ravi si tu venais.\nI'd do anything for you, Tom.\tJe ferais n'importe quoi pour toi, Tom.\nI'd do anything for you, Tom.\tJe ferais n'importe quoi pour vous, Tom.\nI'd forgotten all about that.\tJ'avais tout oublié à ce sujet.\nI'd hate to be in your shoes.\tJe détesterais être à ta place.\nI'd like a hotel reservation.\tJ'aimerais réserver une chambre d'hôtel.\nI'd like a twin room, please.\tJe voudrais une chambre pour deux, s'il vous plaît.\nI'd like to apply for a visa.\tJ'aimerais soumettre une demande de visa.\nI'd like to attend the party.\tJ'aimerais assister à la fête.\nI'd like to attend the party.\tJ'aimerais prendre part à la fête.\nI'd like to be more like you.\tJ'aimerais être davantage comme toi.\nI'd like to book three seats.\tJe voudrais réserver trois places.\nI'd like to file a complaint.\tJ'aimerais soumettre une réclamation.\nI'd like to file a complaint.\tJ'aimerais enregistrer une réclamation.\nI'd like to file a complaint.\tJ'aimerais enregistrer une plainte.\nI'd like to get a head start.\tJ'aimerais démarrer avec l'avantage.\nI'd like to get back to work.\tJ'aimerais retourner au travail.\nI'd like to live in New York.\tJ'aimerais vivre à New York.\nI'd like to look things over.\tJ'aimerais examiner des choses.\nI'd like to see your warrant.\tJ'aimerais voir votre mandat.\nI'd like to sit further back.\tJ'aimerais m'asseoir plus en arrière.\nI'd like two kilos of apples.\tJe voudrais deux kilos de pommes.\nI'd like you to come with us.\tJ'aimerais que vous veniez avec nous.\nI'd like you to come with us.\tJ'aimerais que tu viennes avec nous.\nI'd like you to do your best.\tJ'aimerais que tu fasses de ton mieux.\nI'd like you to do your best.\tJ'aimerais que vous fassiez de votre mieux.\nI'd like you to meet my wife.\tJ'aimerais que tu rencontres ma femme.\nI'd like you to meet my wife.\tJ'aimerais que tu rencontres mon épouse.\nI'd like you to meet my wife.\tJ'aimerais que vous rencontriez ma femme.\nI'd like you to meet my wife.\tJ'aimerais que vous rencontriez mon épouse.\nI'd love to go there one day.\tJ'adorerais m'y rendre, un jour.\nI'd rather be poor than rich.\tJe préfère être pauvre plutôt que riche.\nI'd rather do this by myself.\tJe préférerais le faire seul.\nI'd rather do this by myself.\tJe préférerais le faire seule.\nI'd rather do this by myself.\tJe préférerais le faire tout seul.\nI'd rather do this by myself.\tJe préférerais le faire toute seule.\nI'd recommend taking a break.\tJe recommanderais de faire une pause.\nI'll add the finishing touch.\tJ'ajouterai la touche finale.\nI'll always be there for you.\tJe serai toujours là pour toi.\nI'll always be there for you.\tJe serai toujours là pour vous.\nI'll apply for the job today.\tJe vais postuler aujourd'hui.\nI'll attend the next meeting.\tJ'assisterai au prochain meeting.\nI'll be here until next week.\tJe serai là jusqu'à la semaine prochaine.\nI'll be with you in a second.\tJe serai avec toi dans une seconde.\nI'll be with you in a second.\tJe suis à toi dans une seconde.\nI'll be with you in a second.\tJe suis à vous dans une seconde.\nI'll call if I hear anything.\tJ'appellerai si j'entends quoi que ce soit.\nI'll come again on the tenth.\tJe reviendrai à la dixième.\nI'll definitely vote for Tom.\tJe vais certainement voter pour Tom.\nI'll do it if you don't mind.\tJe le ferai, si ça ne te dérange pas.\nI'll do it if you don't mind.\tJe le ferai, si ça ne vous dérange pas.\nI'll get back to you on that.\tJe te reviendrai là-dessus.\nI'll give you a prescription.\tJe vous délivrerai une ordonnance.\nI'll give you another minute.\tJe vais vous donner encore une minute.\nI'll go get the proper forms.\tJ'irai chercher les formulaires ad hoc.\nI'll go get the proper forms.\tJ'irai chercher les formulaires appropriés.\nI'll go get the proper forms.\tJ'irai chercher les formulaires qui conviennent.\nI'll have them repair my car.\tJe vais leur faire réparer ma voiture.\nI'll leave everything to you.\tJe vous fais entièrement confiance.\nI'll send you home in my car.\tJe t'amènerai chez toi en voiture.\nI'll send you home in my car.\tJe vous amènerai chez vous en voiture.\nI'll think of a way to do it.\tJe réfléchirai à un moyen de le faire.\nI'll try and reason with Tom.\tJe vais essayer de raisonner Tom.\nI'll wait for you in my room.\tJe t'attendrai dans ma chambre.\nI'm a bit of a reader myself.\tJe suis moi-même un peu lecteur.\nI'm a bit short of money now.\tJe suis un peu à court d'argent en ce moment.\nI'm a little behind schedule.\tJe suis un peu en retard sur mon planning.\nI'm a little out of practice.\tJe manque un peu de pratique.\nI'm a little short this week.\tJe suis un peu pris par le temps, cette semaine.\nI'm absolutely certain of it.\tJ'en suis absolument certaine.\nI'm absolutely certain of it.\tJ'en suis absolument certain.\nI'm actually enjoying myself.\tJe m'amuse vraiment.\nI'm afraid I have work to do.\tJe crains d'avoir du travail à faire.\nI'm afraid I'm not available.\tJe crains de ne pas être disponible.\nI'm afraid I've got bad news.\tJe crains d'avoir de mauvaises nouvelles.\nI'm afraid I've offended you.\tJe crains de vous avoir offensé.\nI'm afraid I've offended you.\tJe crains de vous avoir offensés.\nI'm afraid I've offended you.\tJe crains de vous avoir offensée.\nI'm afraid I've offended you.\tJe crains de vous avoir offensées.\nI'm afraid I've offended you.\tJe crains de t'avoir offensé.\nI'm afraid I've offended you.\tJe crains de t'avoir offensée.\nI'm afraid Tom will get lost.\tJe crains que Tom ne se perde.\nI'm afraid of the same thing.\tJe crains la même chose.\nI'm afraid that's impossible.\tJe crains que ce soit impossible.\nI'm afraid the rumor is true.\tJe crains que la rumeur soit avérée.\nI'm afraid the rumor is true.\tJe crains que la rumeur ne soit avérée.\nI'm afraid we can't help you.\tJe crains que nous ne puissions vous aider.\nI'm afraid we can't help you.\tJe crains que nous ne puissions t'aider.\nI'm afraid we have a problem.\tJe crains que nous ayons un problème.\nI'm afraid we have no choice.\tJe crains que nous n'ayons pas le choix.\nI'm afraid we're out of time.\tJe crains que nous ne soyons pas à l'heure.\nI'm afraid you can't do that.\tJe crains que vous ne puissiez pas faire cela.\nI'm afraid you can't do that.\tJe crains que tu ne puisses pas faire cela.\nI'm already in love with Tom.\tJe suis déjà amoureux de Tom.\nI'm as ready as I'll ever be.\tJe suis aussi prêt que je ne le serai jamais.\nI'm as tired as tired can be.\tJe suis aussi fatigué que l'on peut l'être.\nI'm asking you for your help.\tJe requiers votre aide.\nI'm asking you for your help.\tJe requiers ton aide.\nI'm assuming you have a plan.\tJe suppose que vous disposez d'un plan.\nI'm assuming you have a plan.\tJe suppose que tu disposes d'un plan.\nI'm at the airport right now.\tJe me trouve actuellement à l'aéroport.\nI'm auditioning for the part.\tJe passe une audition pour le rôle.\nI'm aware of the possibility.\tJe suis conscient de la possibilité.\nI'm beginning to feel stupid.\tJe commence à me sentir bête.\nI'm beginning to get curious.\tJe commence à devenir curieuse.\nI'm beginning to get curious.\tMa curiosité commence à s'aiguiser.\nI'm beginning to get curious.\tJe commence à devenir curieux.\nI'm beginning to smell a rat.\tJe commence à sentir que quelque chose ne va pas.\nI'm beginning to smell a rat.\tJe commence à sentir que quelque chose déconne.\nI'm breaking in my new shoes.\tJe casse mes nouvelles chaussures.\nI'm calling in sick tomorrow.\tJe me fais porter pâle, demain.\nI'm confused enough as it is.\tJe suis assez embrouillé comme ça.\nI'm confused enough as it is.\tJe suis assez embrouillée comme ça.\nI'm doing it in spite of you.\tJe le fais malgré vous.\nI'm doing it in spite of you.\tJe le fais malgré toi.\nI'm doing this for my family.\tJe le fais pour ma famille.\nI'm falling in love with you.\tJe suis en train de tomber amoureux de toi.\nI'm falling in love with you.\tJe suis en train de tomber amoureux de vous.\nI'm fed up with this weather.\tJ'en ai marre de ce temps.\nI'm feeling pretty confident.\tJe me sens assez confiant.\nI'm following the guidelines.\tJe suis les lignes directrices.\nI'm fully aware of that fact.\tJe suis parfaitement conscient de ce fait.\nI'm getting too old for this.\tJe deviens trop vieux pour ça.\nI'm giving my old books away.\tJe donne mes vieux livres.\nI'm giving my old books away.\tJe donne mes vieux bouquins.\nI'm giving you what you want.\tJe te donne ce que tu veux.\nI'm giving you what you want.\tJe vous donne ce que vous voulez.\nI'm glad someone understands.\tJe me réjouis que quelqu'un comprenne.\nI'm glad that you understand.\tJe me réjouis que vous compreniez.\nI'm glad that you understand.\tJe me réjouis que tu comprennes.\nI'm glad things went so well.\tJe me réjouis que les choses se soient passées aussi bien.\nI'm glad to finally meet you.\tJe me réjouis de vous avoir finalement rencontrée.\nI'm glad to finally meet you.\tJe me réjouis de vous avoir finalement rencontrées.\nI'm glad to finally meet you.\tJe me réjouis de vous avoir finalement rencontrés.\nI'm glad to finally meet you.\tJe me réjouis de vous avoir finalement rencontré.\nI'm glad to finally meet you.\tJe me réjouis de t'avoir finalement rencontrée.\nI'm glad to finally meet you.\tJe me réjouis de t'avoir finalement rencontré.\nI'm glad to see you're happy.\tJe me réjouis de te voir heureuse.\nI'm glad to see you're happy.\tJe me réjouis de te voir heureux.\nI'm glad to see you're happy.\tJe me réjouis de vous voir heureuse.\nI'm glad to see you're happy.\tJe me réjouis de vous voir heureuses.\nI'm glad to see you're happy.\tJe me réjouis de vous voir heureux.\nI'm glad you brought that up.\tJe suis ravi que vous ayez mis cela sur la table.\nI'm glad you brought that up.\tJe suis ravie que vous ayez mis cela sur la table.\nI'm glad you brought that up.\tJe suis ravi que tu aies mis cela sur la table.\nI'm glad you brought that up.\tJe suis ravie que tu aies mis cela sur la table.\nI'm glad you brought that up.\tJe suis ravi que tu aies soulevé ça.\nI'm glad you brought that up.\tJe suis ravie que tu aies soulevé ça.\nI'm glad you brought that up.\tJe suis ravi que vous ayez soulevé ça.\nI'm glad you brought that up.\tJe suis ravie que vous ayez soulevé ça.\nI'm glad you brought that up.\tJe suis ravi que vous ayez soulevé cela.\nI'm glad you brought that up.\tJe suis ravie que vous ayez soulevé cela.\nI'm glad you brought that up.\tJe suis ravie que tu aies soulevé cela.\nI'm glad you brought that up.\tJe suis ravi que tu aies soulevé cela.\nI'm glad you brought this up.\tJe suis heureux que tu aies mentionné cela.\nI'm glad you brought this up.\tJe suis heureux que vous ayez mentionné cela.\nI'm glad you decided to come.\tJe me réjouis que vous vous soyez décidé à venir.\nI'm glad you decided to come.\tJe me réjouis que vous ayez décidé de venir.\nI'm glad you decided to come.\tJe me réjouis que tu te sois décidé à venir.\nI'm glad you decided to come.\tJe me réjouis que vous vous soyez décidées à venir.\nI'm glad you decided to come.\tJe me réjouis que vous vous soyez décidés à venir.\nI'm glad you decided to come.\tJe me réjouis que vous vous soyez décidée à venir.\nI'm glad you decided to come.\tJe me réjouis que tu te sois décidée à venir.\nI'm glad you decided to come.\tJe me réjouis que tu aies décidé de venir.\nI'm glad you didn't call Tom.\tJe suis content que tu n'aies pas appelé Tom.\nI'm glad you didn't call Tom.\tJe suis content que vous n'ayez pas appelé Tom.\nI'm glad you got home safely.\tJe suis content que tu sois rentré sain et sauf.\nI'm glad you see it that way.\tJe me réjouis que tu le voies ainsi.\nI'm glad you see it that way.\tJe me réjouis que vous le voyiez ainsi.\nI'm glad you weren't injured.\tJe me réjouis que tu n'aies pas été blessée.\nI'm glad you weren't injured.\tJe me réjouis que tu n'aies pas été blessé.\nI'm glad you weren't injured.\tJe me réjouis que vous n'ayez pas été blessée.\nI'm glad you weren't injured.\tJe me réjouis que vous n'ayez pas été blessées.\nI'm glad you weren't injured.\tJe me réjouis que vous n'ayez pas été blessés.\nI'm glad you weren't injured.\tJe me réjouis que vous n'ayez pas été blessé.\nI'm glad you're doing better.\tJe me réjouis que vous vous portiez mieux.\nI'm glad you're doing better.\tJe me réjouis que tu te portes mieux.\nI'm glad you're here with me.\tJe me réjouis que vous soyez ici avec moi.\nI'm glad you're here with me.\tJe me réjouis que tu sois ici avec moi.\nI'm going back home tomorrow.\tJe vais rentrer à la maison demain.\nI'm going back home tomorrow.\tJe vais rentrer chez moi demain.\nI'm going back to the office.\tJe retourne au bureau.\nI'm going on a business trip.\tJe pars en voyage d'affaire.\nI'm going to be your teacher.\tJe serai ton maître.\nI'm going to be your teacher.\tJe vais être votre instituteur.\nI'm going to be your teacher.\tJe vais être votre professeur.\nI'm going to be your teacher.\tJe vais être votre institutrice.\nI'm going to buy you a watch.\tJe vais vous acheter une montre.\nI'm going to buy you a watch.\tJe vais t'acheter une montre.\nI'm going to call it a night.\tJe vais prendre congé pour cette nuit.\nI'm going to call the police.\tJe vais appeler la police.\nI'm going to change my shirt.\tJe vais changer de chemise.\nI'm going to do some reading.\tJe vais lire un peu.\nI'm going to figure this out.\tJe vais déchiffrer ça.\nI'm going to figure this out.\tJe vais résoudre ça.\nI'm going to figure this out.\tJe vais réfléchir à ça.\nI'm going to fix some dinner.\tJe vais préparer à déjeuner.\nI'm going to fix some dinner.\tJe vais préparer à dîner.\nI'm going to fly to the moon.\tJe volerai vers la Lune.\nI'm going to give Tom a bath.\tJe vais donner un bain à Tom.\nI'm going to let Tom respond.\tJe vais laisser Tom répondre.\nI'm going to miss this place.\tCet endroit va me manquer.\nI'm going to move next month.\tJe vais déménager le mois prochain.\nI'm going to save more money.\tJe vais épargner plus d'argent.\nI'm going to use it tomorrow.\tJe vais en faire usage demain.\nI'm happy with what I've got.\tJe suis heureux avec ce que j'ai.\nI'm happy with what I've got.\tJe suis heureux avec ce que je possède.\nI'm having the same problems.\tJe traverse les mêmes problèmes.\nI'm in a desperate situation.\tJe me trouve dans une situation désespérée.\nI'm just making a suggestion.\tJe ne fais qu'une suggestion.\nI'm just watching television.\tJe suis juste en train de regarder la télé.\nI'm looking for my cellphone.\tJe cherche mon cellulaire.\nI'm looking for my cellphone.\tJe cherche mon téléphone mobile.\nI'm looking into getting one.\tJe me renseigne pour en acquérir un.\nI'm never at home on Sundays.\tJe ne suis jamais chez moi le dimanche.\nI'm not even a little hungry.\tJe n'ai pas faim du tout.\nI'm not frightened of ghosts.\tJe n'ai pas peur des fantômes.\nI'm not giving you any money.\tJe ne te donnerai aucun argent.\nI'm not giving you any money.\tJe ne vous donnerai aucun argent.\nI'm not going to skate today.\tAujourd'hui je ne patinerai pas.\nI'm not good at multitasking.\tJe ne suis pas bon pour faire plusieurs tâches en même temps.\nI'm not particularly worried.\tJe ne suis pas particulièrement soucieux.\nI'm not particularly worried.\tJe ne suis pas particulièrement soucieuse.\nI'm not sure I can trust him.\tJe ne suis pas sûr de pouvoir lui faire confiance.\nI'm not sure I can trust him.\tJe ne suis pas sûre de pouvoir lui faire confiance.\nI'm not sure I can trust him.\tJe ne suis pas sûre que je puisse lui faire confiance.\nI'm not sure I can trust him.\tJe ne suis pas sûr que je puisse lui faire confiance.\nI'm not sure I can trust him.\tJe ne suis pas sûr que je puisse me fier à lui.\nI'm not sure I can trust him.\tJe ne suis pas sûre que je puisse me fier à lui.\nI'm not sure I can trust him.\tJe ne suis pas sûr de pouvoir me fier à lui.\nI'm not sure I can trust him.\tJe ne suis pas sûre de pouvoir me fier à lui.\nI'm not sure I can trust you.\tJe ne suis pas sûr de pouvoir me fier à toi.\nI'm not sure I can trust you.\tJe ne suis pas sûre de pouvoir me fier à toi.\nI'm not sure I can trust you.\tJe ne suis pas sûr de pouvoir me fier à vous.\nI'm not sure I can trust you.\tJe ne suis pas sûre de pouvoir me fier à vous.\nI'm not sure I can trust you.\tJe ne suis pas sûr que je puisse me fier à vous.\nI'm not sure I can trust you.\tJe ne suis pas sûre que je puisse me fier à vous.\nI'm not sure I can trust you.\tJe ne suis pas sûr que je puisse me fier à toi.\nI'm not sure I can trust you.\tJe ne suis pas sûre que je puisse me fier à toi.\nI'm not sure if that'll help.\tJe ne suis pas sûr que cela va aider.\nI'm not sure if that'll help.\tJe ne suis pas sûr que ça va aider.\nI'm not sure when he'll come.\tJe ne suis pas sûr de quand il vient.\nI'm not sure where Tom lives.\tJe ne suis pas sûr de l'endroit où habite Tom.\nI'm not telling you anything.\tJe ne vais rien te dire.\nI'm not that surprised by it.\tJe n'en suis pas trop étonnée.\nI'm not your husband anymore.\tJe ne suis plus ton mari.\nI'm not your husband anymore.\tJe ne suis plus votre mari.\nI'm not your husband anymore.\tJe ne suis plus votre époux.\nI'm on my way home from work.\tJe suis sur le chemin de la maison en revenant du travail.\nI'm parked around the corner.\tJe suis garé au coin de la rue.\nI'm really glad to hear that.\tJe suis vraiment heureux d'entendre ça.\nI'm really going to miss Tom.\tJe vais vraiment manquer à Tom.\nI'm saving this seat for Tom.\tJe garde ce siège pour Tom.\nI'm sick of this hot weather.\tJe suis fatigué de ce temps chaud.\nI'm sick of this hot weather.\tJe ne supporte plus ce temps chaud.\nI'm sorry I broke my promise.\tJe suis désolée d'avoir rompu ma promesse.\nI'm sorry I broke my promise.\tJe suis désolé d'avoir rompu ma promesse.\nI'm sorry if I disturbed you.\tJe suis désolée si je t'ai dérangé.\nI'm sorry if I disturbed you.\tJe suis désolé si je t'ai dérangé.\nI'm sorry if I disturbed you.\tJe suis désolé si je t'ai dérangée.\nI'm sorry if I disturbed you.\tJe suis désolé si je vous ai dérangé.\nI'm sorry if I disturbed you.\tJe suis désolé si je vous ai dérangée.\nI'm sorry if I disturbed you.\tJe suis désolé si je vous ai dérangés.\nI'm sorry if I disturbed you.\tJe suis désolé si je vous ai dérangées.\nI'm sorry if I disturbed you.\tJe suis désolée si je vous ai dérangées.\nI'm sorry if I disturbed you.\tJe suis désolée si je vous ai dérangés.\nI'm sorry if I disturbed you.\tJe suis désolée si je vous ai dérangée.\nI'm sorry if I disturbed you.\tJe suis désolée si je vous ai dérangé.\nI'm sorry, I can't stay long.\tJe m'excuse, je ne peux pas rester longtemps.\nI'm sorry, I didn't hear you.\tJe suis désolé, je ne vous ai pas entendu.\nI'm sorry, I didn't hear you.\tJe suis désolé, je ne vous ai pas entendue.\nI'm sorry, I didn't hear you.\tJe suis désolé, je ne vous ai pas entendus.\nI'm sorry, I didn't hear you.\tJe suis désolé, je ne vous ai pas entendues.\nI'm sorry, I didn't hear you.\tJe suis désolé, je ne t'ai pas entendu.\nI'm sorry, I didn't hear you.\tJe suis désolé, je ne t'ai pas entendue.\nI'm sorry, I didn't hear you.\tJe suis désolée, je ne t'ai pas entendu.\nI'm sorry, I didn't hear you.\tJe suis désolée, je ne t'ai pas entendue.\nI'm sorry, I didn't hear you.\tJe suis désolée, je ne vous ai pas entendues.\nI'm sorry, I didn't hear you.\tJe suis désolée, je ne vous ai pas entendus.\nI'm sorry, I didn't hear you.\tJe suis désolée, je ne vous ai pas entendue.\nI'm sorry, I didn't hear you.\tJe suis désolée, je ne vous ai pas entendu.\nI'm sorry, but he isn't home.\tDésolé, mais il n'est pas à la maison.\nI'm starting to believe that.\tJe commence à le croire.\nI'm still intimidated by you.\tTu m'intimides toujours.\nI'm still intimidated by you.\tVous m'intimidez toujours.\nI'm sure Tom had his reasons.\tJe suis sûr que Tom avait ses raisons.\nI'm sure Tom had his reasons.\tJe suis sûre que Tom avait ses raisons.\nI'm sure that you'll succeed.\tJe suis sûr que vous allez réussir.\nI'm sure that you'll succeed.\tJe suis sûr que tu vas réussir.\nI'm sure that you'll succeed.\tJe suis certain que tu réussiras.\nI'm sure you'll do very well.\tJe suis sûr que tu t'en sortiras très bien.\nI'm sure you'll do very well.\tJe suis sûre que tu t'en sortiras très bien.\nI'm sure you'll do very well.\tJe suis sûr que vous vous en sortirez très bien.\nI'm sure you'll do very well.\tJe suis sûre que vous vous en sortirez très bien.\nI'm the same height as he is.\tJe suis de la même taille que lui.\nI'm tired of keeping secrets.\tJ'en ai marre de garder des secrets.\nI'm tired of waiting in line.\tJe suis fatigué de faire la queue.\nI'm tired of waiting in line.\tJe suis fatigué de faire la file.\nI'm tired of waiting in line.\tJe suis fatiguée de faire la file.\nI'm tired of waiting in line.\tJe suis fatiguée de faire la queue.\nI'm tired of your complaints.\tJe suis fatigué par vos plaintes.\nI'm too old to go to Germany.\tJe suis trop vieux pour aller en Allemagne.\nI'm used to getting up early.\tJ'ai l'habitude de me lever tôt.\nI'm used to no one liking me.\tJe suis habitué à ce que personne ne m'aime.\nI'm using a bowl and a spoon.\tJ'emploie un bol et une cuillère.\nI'm very disappointed in you.\tVous me décevez beaucoup.\nI'm very disappointed in you.\tTu me déçois vraiment.\nI'm very glad I wasn't there.\tJe suis très content de ne pas avoir été là.\nI'm very pleased to meet you.\tJe suis ravi de faire votre connaissance.\nI'm well acquainted with Tom.\tJe connais bien Tom.\nI'm working as fast as I can.\tJe travaille aussi vite que je peux.\nI'm worried about the future.\tJe m’inquiète pour l'avenir.\nI'm your boyfriend, aren't I?\tJe suis ton petit ami, n'est-ce pas ?\nI'm your boyfriend, aren't I?\tJe suis ton petit copain, n'est-ce pas ?\nI'm your boyfriend, aren't I?\tJe suis ton jules, n'est-ce pas ?\nI've already been shot twice.\tJ'ai déjà été touché deux fois.\nI've already been shot twice.\tJ'ai déjà été touchée deux fois.\nI've already been shot twice.\tOn m'a déjà tiré dessus deux fois.\nI've already checked on that.\tJ'ai déjà vérifié ça.\nI've already cleaned my room.\tJ'ai déjà nettoyé ma chambre.\nI've already eaten breakfast.\tJ'ai déjà pris mon petit-déjeuner.\nI've already eaten breakfast.\tJ'ai déjà mangé mon petit déjeuner.\nI've already filed my report.\tJ'ai déjà soumis mon rapport.\nI've already filed my report.\tJ'ai déjà classé mon rapport.\nI've already tried that once.\tJ'ai déjà tenté ça, une fois.\nI've already tried that once.\tJ'ai déjà essayé ça, une fois.\nI've always hated this place.\tJ'ai toujours détesté cet endroit.\nI've always wanted to try it.\tJ'ai toujours voulu l'essayer.\nI've always wanted to try it.\tJ'ai toujours voulu le tenter.\nI've always wanted to try it.\tJ'ai toujours voulu m'y essayer.\nI've attempted suicide twice.\tJ'ai tenté de me suicider à deux reprises.\nI've become friends with Tom.\tJe suis devenu ami avec Tom.\nI've been all over the world.\tJ'ai fait le tour du monde.\nI've been all over the world.\tJ'ai voyagé dans le monde entier.\nI've been here all afternoon.\tJ'ai été là toute l'après-midi.\nI've been here all afternoon.\tJ'ai été là tout l'après-midi.\nI've been hoping to meet you.\tJ'espérais te rencontrer.\nI've been hoping to meet you.\tJ'espérais vous rencontrer.\nI've been thinking about you.\tJ'ai pensé à toi.\nI've been thinking about you.\tJ'ai pensé à vous.\nI've been to Hokkaido before.\tJ'ai déjà été à Hokkaido.\nI've been to the post office.\tJ'ai été au bureau de poste.\nI've been watching you study.\tJe vous ai regardé étudier.\nI've been watching you study.\tJe vous ai regardée étudier.\nI've been watching you study.\tJe t'ai regardé étudier.\nI've been watching you study.\tJe t'ai regardée étudier.\nI've brought a cup of coffee.\tJ'ai apporté une tasse de café.\nI've fallen in love with you.\tJe suis tombé amoureux de toi.\nI've fallen in love with you.\tJe suis tombé amoureuse de toi.\nI've fallen in love with you.\tJe suis tombé amoureux de vous.\nI've fixed the radio for him.\tJe lui ai réparé la radio.\nI've got a friend at the IRS.\tJ'ai un ami au fisc.\nI've got a friend at the IRS.\tJ'ai une amie au fisc.\nI've got a friend in the FBI.\tJ'ai un ami aux Renseignements Généraux.\nI've got a friend in the FBI.\tJ'ai une amie aux Renseignements Généraux.\nI've got a frog in my throat.\tJ'ai un chat dans la gorge.\nI've got a lot of good ideas.\tJ'ai beaucoup de bonnes idées.\nI've got blisters on my feet.\tJ'ai des ampoules aux pieds.\nI've got nothing more to say.\tJe n'ai rien à ajouter.\nI've got nothing to do today.\tJe n'ai rien à faire aujourd'hui.\nI've got plenty of customers.\tJ'ai de nombreux clients.\nI've got some very good news.\tJ'ai d'excellentes nouvelles.\nI've got some very good news.\tJ'ai de très bonnes nouvelles.\nI've got to get back to work.\tIl me faut retourner au travail.\nI've got to get back to work.\tIl me faut me remettre au travail.\nI've had a very busy morning.\tJ'ai eu une matinée bien remplie.\nI've had a very busy morning.\tJ'ai été très occupée toute la matinée.\nI've had a very busy morning.\tJ'ai été très occupé tout la matinée.\nI've had the time of my life.\tJe me suis bien amusée.\nI've heard that sound before.\tJ'ai déjà entendu ce bruit.\nI've heard this story before.\tJ'ai entendu cette histoire auparavant.\nI've just finished breakfast.\tJe viens juste de finir mon petit déjeuner.\nI've left my charger at home.\tJ'ai laissé mon chargeur à la maison.\nI've never even told my wife.\tJe ne l'ai jamais même dit à ma femme.\nI've never seen him in jeans.\tJe ne l'ai jamais vu en jeans.\nI've never seen you so happy.\tJe ne t'ai jamais vu si heureux.\nI've never seen you so happy.\tJe ne t'ai jamais vue si heureuse.\nI've never trusted strangers.\tJe ne me suis jamais fié à des étrangers.\nI've never trusted strangers.\tJe ne me suis jamais fiée à des étrangers.\nI've never trusted strangers.\tJe n'ai jamais fait confiance à des étrangers.\nI've saved the best for last.\tJ'ai gardé le meilleur pour la fin.\nI've saved the best for last.\tJ'ai gardé la meilleure pour la fin.\nIf I knew that, I'd tell you.\tSi je le savais, je te le dirais.\nIf I knew that, I'd tell you.\tSi je le savais, je vous le dirais.\nIf anyone can do it, you can.\tSi n'importe qui peut le faire, tu le peux.\nIf anyone can do it, you can.\tSi n'importe qui peut le faire, vous le pouvez.\nIf he has time, he will come.\tS'il a le temps, il viendra.\nIf only I'd done my homework!\tSi seulement j'avais fait mes devoirs !\nIf you don't eat, you'll die.\tSi on ne mange pas, on meurt.\nIf you don't eat, you'll die.\tSi tu ne manges pas, tu mourras.\nIf you eat that you will die.\tSi vous mangez ça, vous allez mourir.\nIf you eat that you will die.\tSi tu manges ça, tu vas mourir.\nIf you need any help, ask me.\tSi tu as besoin d'aide, demande-moi.\nIf you want to come, you can.\tSi tu veux venir, tu peux.\nIf you want to come, you can.\tSi vous voulez venir, vous pouvez.\nIn case it rains, I won't go.\tAu cas où il pleuvrait, je n'y vais pas.\nIn my opinion, he is correct.\tÀ mon avis, il a raison.\nIn my opinion, you are wrong.\tÀ mon avis, tu te trompes.\nIn my opinion, you are wrong.\tÀ mon avis, vous avez tort.\nIndustry was growing quickly.\tL'industrie croissait rapidement.\nInoue doesn't like computers.\tInoue n'aime pas les ordinateurs.\nIron is used in shipbuilding.\tLe fer est employé dans la construction navale.\nIs Tom cleaning his room now?\tTom est-il en train de nettoyer sa chambre ?\nIs Tom still in the hospital?\tTom est-il toujours à l'hôpital ?\nIs all this really necessary?\tTout ceci est-il vraiment nécessaire ?\nIs anybody else in the house?\tQui que ce soit d'autre se trouve-t-il dans la maison ?\nIs anybody ready for dessert?\tQui que ce soit est-il prêt pour le dessert ?\nIs distilled water drinkable?\tEst-ce que l'eau distillée est potable ?\nIs eating meat morally wrong?\tManger de la viande est-il moralement condamnable ?\nIs he planning on helping us?\tPrévoit-il de nous aider ?\nIs it okay if I take a break?\tC'est d'accord si je fais une pause ?\nIs she a computer programmer?\tEst-elle programmeuse ?\nIs that an original painting?\tEst-ce un tableau original ?\nIs that going to happen soon?\tCela va-t-il se produire bientôt ?\nIs that machine still usable?\tEst-ce que cette machine est encore utilisable ?\nIs that machine still usable?\tCette machine est-elle encore utilisable ?\nIs that really what you want?\tC'est vraiment ce que tu veux ?\nIs that really what you want?\tEst-ce vraiment ce que tu veux ?\nIs that the railroad station?\tEst-ce la gare ?\nIs that what you really want?\tEst-ce là ce que tu veux vraiment ?\nIs that what you really want?\tEst-ce là ce que vous voulez vraiment ?\nIs that what's going on here?\tEst-ce là ce qui se passe, ici ?\nIs the battery fully charged?\tLa batterie est-elle complètement chargée ?\nIs the customer always right?\tLe client a-t-il toujours raison ?\nIs there a hotel around here?\tY a-t-il un hôtel près d'ici ?\nIs there a mailbox near here?\tY a-t-il une boîte aux lettres près d'ici ?\nIs there anything you can do?\tY a-t-il quelque chose que tu puisses faire ?\nIs there something we can do?\tY a-t-il quelque chose que nous puissions faire ?\nIs this absolutely necessary?\tEst-ce absolument nécessaire ?\nIs this why you've come back?\tEst-ce la raison de ton retour ?\nIs this why you've come back?\tEst-ce la raison de votre retour ?\nIs your father in the garden?\tTon père est-il au jardin ?\nIs your school far from here?\tTon école est-elle éloignée d'ici ?\nIsn't that just a brush fire?\tN'est-ce pas un simple feu de paille ?\nIsn't that just a brush fire?\tN'est-ce pas un simple feu de brousse ?\nIt all happened kind of fast.\tTout s'est passé assez rapidement.\nIt appears that he is honest.\tApparemment il est honnête.\nIt can be confusing at first.\tÇa peut être déroutant, au premier abord.\nIt can't wait until tomorrow.\tÇa ne peut pas attendre demain.\nIt certainly looks like rain.\tIl semble bien qu'il pleuve.\nIt costs around thirty Euros.\tÇa coûte dans les trente euros.\nIt could've been a lot worse.\tCela aurait pu être bien pire.\nIt couldn't have been better.\tÇa n'aurait pas pu être mieux.\nIt didn't even cross my mind.\tÇa ne m'a même pas traversé l'esprit.\nIt didn't work for me either.\tÇa n'a pas fonctionné pour moi non plus.\nIt didn't work for me either.\tÇa n'a pas marché pour moi non plus.\nIt doesn't happen very often.\tÇa ne se produit pas très souvent.\nIt is a pity you cannot come.\tC'est dommage que tu ne puisses pas venir.\nIt is a pity you cannot come.\tIl est dommage que vous ne puissiez pas venir.\nIt is a pity you cannot come.\tC'est dommage que vous ne puissiez pas venir.\nIt is about time I was going.\tIl est temps que je m'en aille.\nIt is dangerous to swim here.\tIl est dangereux de nager ici.\nIt is easy to read this book.\tCe livre est facile à lire.\nIt is evident that he did it.\tIl est évident qu'il l'a fait.\nIt is fun to swim in the sea.\tC'est un plaisir de nager dans la mer.\nIt is going to be quite cold.\tIl va faire assez froid.\nIt is kind of you to help me.\tC'est gentil de ta part de m'aider.\nIt is not far from the hotel.\tCe n'est pas loin de l'hôtel.\nIt is terrible weather today.\tIl fait un temps horrible aujourd'hui.\nIt is terrible weather today.\tIl fait dégueulasse aujourd'hui.\nIt is terrible weather today.\tIl fait un temps vraiment moche aujourd'hui.\nIt is time to feed the sheep.\tC'est l'heure de nourrir les moutons.\nIt is truly a nice day today.\tC'est vraiment une belle journée aujourd'hui.\nIt is useless to talk to him.\tIl est inutile de lui parler.\nIt looks like Tom is in love.\tOn dirait que Tom est amoureux.\nIt looks like we're all here.\tOn dirait que nous sommes tous là.\nIt looks like we're all here.\tOn dirait que nous sommes tous ici.\nIt makes no sense whatsoever.\tÇa n'a absolument aucun sens.\nIt may, indeed, be a mistake.\tEn effet, il semble que ce soit une erreur.\nIt might rain before evening.\tIl se peut qu'il pleuve avant ce soir.\nIt must have slipped my mind.\tÇa a dû me sortir de la tête.\nIt must've happened that way.\tÇa doit s'être produit ainsi.\nIt must've happened that way.\tÇa doit s'être passé ainsi.\nIt must've happened that way.\tÇa a dû avoir lieu ainsi.\nIt rained hard all day today.\tIl a beaucoup plu tout au long de la journée aujourd'hui.\nIt seems it'll rain tomorrow.\tIl va pleuvoir demain.\nIt sounds very strange to me.\tA entendre, cela me paraît très étrange.\nIt was a beautiful sunny day.\tC'était un beau jour ensoleillé.\nIt was a calm winter evening.\tC’était un calme soir d’hiver.\nIt was a deplorable accident.\tCe fut un accident déplorable.\nIt was a divine intervention.\tCe fut une intervention divine.\nIt was a divine intervention.\tÇa a été une intervention divine.\nIt was a heartbreaking story.\tCette histoire m'a brisé le cœur.\nIt was a warm summer evening.\tC'était une chaude soirée d'été.\nIt was all covered with dust.\tC'était tout couvert de poussière.\nIt was an extraordinary year.\tC'était une année extraordinaire.\nIt was an extraordinary year.\tCe fut une année extraordinaire.\nIt was an extraordinary year.\tÇ'a été une année extraordinaire.\nIt was bitterly cold outside.\tIl faisait un froid de canard, dehors.\nIt was dark under the bridge.\tIl faisait sombre sous le pont.\nIt was harder than I thought.\tCela fut plus difficile que je ne l'imaginais.\nIt was harder than I thought.\tCe fut plus dur que je ne le pensais.\nIt was just a matter of time.\tCe fut juste une question de temps.\nIt was just a matter of time.\tC'était juste une question de temps.\nIt was just a matter of time.\tCe n'était qu'une question de temps.\nIt was just a matter of time.\tCe ne fut qu'une question de temps.\nIt was just a stupid mistake.\tC'était juste une erreur stupide.\nIt was nice meeting you here.\tC'était agréable de vous rencontrer ici.\nIt wasn't me. It was the cat.\tCe n'était pas moi. C'était le chat.\nIt won't make any difference.\tÇa ne fera aucune différence.\nIt would be stupid to say no.\tCela serait stupide de dire non.\nIt'll happen, I'm sure of it.\tÇa arrivera, j'en suis sûr.\nIt's a cliche, but it's true.\tC'est un cliché, mais c'est vrai.\nIt's a dead-end relationship.\tC'est une relation sans issue.\nIt's a pretty smart decision.\tC'est une décision assez maligne.\nIt's a type of body piercing.\tC'est un type de piercing corporel.\nIt's a whole other ball game.\tC'est une toute autre histoire.\nIt's a whole other ball game.\tC'est un jeu d'un tout autre genre.\nIt's a wonderful work of art.\tC'est une œuvre d'art remarquable.\nIt's about 8 kilometers away.\tC'est à environ 8 kilomètres.\nIt's about time we went back.\tIl est temps que nous retournions.\nIt's almost half past eleven.\tIl est presque onze heures et demie.\nIt's already time to go home.\tIl est déjà l'heure de rentrer.\nIt's an interesting argument.\tC'est une controverse intéressante.\nIt's an interesting argument.\tC'est une dispute intéressante.\nIt's an interesting argument.\tC'est un argument intéressant.\nIt's an interesting argument.\tC'est une discussion intéressante.\nIt's been a while, hasn't it?\tÇa faisait un moment, n'est-ce pas ?\nIt's cheaper to take the bus.\tC'est moins cher de prendre le bus.\nIt's clear that you're wrong.\tIl est clair que tu as tort.\nIt's getting worse and worse.\tC'est de pire en pire.\nIt's hard to know what to do.\tIl est difficile de savoir quoi faire.\nIt's high time you got going.\tTu devrais être parti depuis longtemps.\nIt's his first day at school.\tC'est son premier jour à l'école.\nIt's important to read books.\tIl est important de lire des livres.\nIt's kind of hard to explain.\tC'est un peu difficile à expliquer.\nIt's necessary for you to go.\tIl est nécessaire que tu partes.\nIt's necessary for you to go.\tIl est nécessaire que vous partiez.\nIt's necessary for you to go.\tIl est nécessaire que vous y alliez.\nIt's necessary for you to go.\tIl est nécessaire que tu y ailles.\nIt's never too late to learn.\tPersonne n'est trop vieux pour apprendre.\nIt's never too late to learn.\tOn est jamais trop vieux pour apprendre.\nIt's never too late to learn.\tTu n'es pas trop vieux pour apprendre.\nIt's never too late to start.\tIl n'est jamais trop tard pour commencer.\nIt's no use arguing with Tom.\tIl ne sert à rien de discuter avec Tom.\nIt's no use arguing with him.\tCela ne sert à rien de discuter avec lui.\nIt's normal to make mistakes.\tC'est normal de faire des erreurs.\nIt's not a difficult problem.\tCe n'est pas un problème difficile.\nIt's not all that ridiculous.\tCe n'est pas si ridicule que cela.\nIt's not as bad as it sounds.\tCe n'est pas si mauvais que cela parait.\nIt's not like I'm not trying.\tCe n'est pas comme si je n'étais pas en train d'essayer.\nIt's not physically possible.\tC'est physiquement impossible.\nIt's not sure it will happen.\tIl n'est pas certain que ça arrivera.\nIt's not sure it will happen.\tIl n'est pas certain que ça surviendra.\nIt's not sure it will happen.\tIl n'est pas certain que ça aura lieu.\nIt's obvious that he's right.\tC'est évident qu'il a raison.\nIt's rude to point at anyone.\tC'est malpoli de montrer les gens du doigt.\nIt's so nice to stay at home.\tC'est tellement bon de rester chez soi.\nIt's still in good condition.\tC'est encore en bon état.\nIt's still snowing in Boston.\tIl neige toujours à Boston.\nIt's still too early to tell.\tIl est encore trop tôt pour juger.\nIt's such a beautiful flower.\tC'est une fleur tellement belle !\nIt's the logical thing to do.\tC'est la chose logique à faire.\nIt's the size of a small car.\tC'est de la taille d'une petite voiture.\nIt's the thought that counts.\tC'est la pensée qui compte.\nIt's their problem, not ours.\tC'est leur problème, pas le nôtre.\nIt's time for me to go, kids.\tIl est temps pour moi d'y aller, les enfants !\nIt's time for me to go, kids.\tIl est temps pour moi d'y aller, les gosses !\nIt's time to clean your room.\tIl est temps de nettoyer ta chambre.\nIt's time to get out of here.\tIl est temps de sortir d'ici.\nIt's within walking distance.\tOn peut s'y rendre à pied.\nIt's your civic duty to vote.\tVoter est ton devoir civique.\nIt's your civic duty to vote.\tVoter est votre devoir civique.\nJackson seemed to get better.\tJackson semblait se rétablir.\nJapanese is my mother tongue.\tLe japonais est ma langue maternelle.\nJust give me one more chance.\tDonnez-moi juste une autre chance.\nKeep an eye on this suitcase.\tGarde un œil sur cette mallette.\nKeep in mind what I tell you.\tGarde à l'esprit ce que je te dis.\nKeep in mind what I tell you.\tGardez à l'esprit ce que je vous dis.\nKeep that thing away from me.\tTiens cette chose loin de moi !\nKeep that thing away from me.\tTenez cette chose loin de moi !\nKeep your dirty hands off me!\tÔte tes sales pattes de moi !\nKeep your hands on the wheel.\tLaisse les mains sur le volant.\nKeep your hands on the wheel.\tLaissez les mains sur le volant.\nKyoto has many places to see.\tIl y a beaucoup d'endroits à voir à Kyôto.\nLearn to walk before you run.\tApprends à marcher avant de courir.\nLearn to walk before you run.\tApprenez à marcher avant de courir.\nLet me answer Tom's question.\tLaisse-moi répondre à la question de Tom.\nLet me answer Tom's question.\tLaissez-moi répondre à la question de Tom.\nLet me bring you up to speed.\tLaisse-moi te mettre au fait.\nLet me bring you up to speed.\tLaisse-moi te mettre au courant.\nLet me bring you up to speed.\tLaissez-moi vous mettre à la page.\nLet me go and buy some bread.\tLaisse-moi aller acheter du pain.\nLet me know when you're done.\tPréviens-moi quand tu as fini !\nLet me save you some trouble.\tLaissez-moi vous épargner une perte de soucis.\nLet me take your temperature.\tLaisse-moi prendre ta température.\nLet's all take a deep breath.\tPrenons tous une respiration profonde.\nLet's all take off our shoes.\tRetirons tous nos chaussures.\nLet's be extra careful today.\tSoyons très prudent aujourd'hui.\nLet's begin at the beginning.\tCommençons par le commencement.\nLet's begin our work at once.\tCommençons notre travail immédiatement.\nLet's come back here someday.\tRevenons ici un jour.\nLet's do something different.\tFaisons quelque chose de différent.\nLet's end all this bickering.\tArrêtons toutes ces chamailleries.\nLet's find Tom a nice office.\tTrouvons un beau bureau pour Tom.\nLet's finish what we started.\tFinissons ce que nous avons commencé.\nLet's get started right away.\tCommençons tout de suite.\nLet's get this party started!\tEt maintenant, que la fête commence !\nLet's get this party started!\tMaintenant, en avant pour faire la fête !\nLet's get to know each other.\tFaisons connaissance.\nLet's get together on Sunday.\tRetrouvons-nous dimanche.\nLet's go hiking this weekend.\tPartons en randonnée ce week-end.\nLet's go if it's not raining.\tAllons-y s'il ne pleut pas.\nLet's go to the mall tonight.\tAllons au centre commercial ce soir.\nLet's keep this a secret, OK?\tGardons ça secret, d'accord ?\nLet's reconsider the problem.\tReconsidérons le problème !\nLet's see if Tom can help us.\tVoyons voir si Tom peut nous aider.\nLet's sit down on that bench.\tAsseyons-nous sur ce banc.\nLet's take a 10 minute break.\tFaisons une pause de dix minutes.\nLet's take a 10-minute break.\tPrenons dix minutes de pause.\nLet's talk about your family.\tParlons de ta famille.\nLet's talk to Tom about that.\tParlons de ça à Tom.\nLet's treat everybody fairly.\tTraitons tout le monde équitablement.\nLet's try to have a nice day.\tEssayons de passer une chouette journée.\nLife is like a game of chess.\tLa vie est une partie d'échecs.\nListen to what I have to say.\tÉcoute ce que j'ai à dire.\nLondon is smaller than Tokyo.\tLondres est plus petit que Tokyo.\nLook at the cloud over there.\tRegarde le nuage là-bas.\nMake a circle and hold hands.\tFaites un cercle et tenez-vous la main.\nMarriages are made in heaven.\tLes mariages se nouent au ciel.\nMary didn't wear any jewelry.\tMary n'a porté aucun bijou.\nMary is Tom's younger sister.\tMarie est la plus jeune sœur de Tom.\nMary is beautiful, isn't she?\tMary est belle, n'est-ce pas ?\nMary is knitting Tom a scarf.\tMarie tricote une écharpe pour Tom.\nMary is studying in her room.\tMary est en train d'étudier dans sa chambre.\nMary is young and attractive.\tMarie est jeune et attrayante.\nMary likes both Tom and John.\tMarie aime à la fois Tom et John.\nMary looked beautiful to Tom.\tMarie avait l'air superbe aux yeux de Tom.\nMary said Tom was in trouble.\tMary a dit que Tom avait des ennuis.\nMay I borrow your dictionary?\tPuis-je emprunter ton dictionnaire ?\nMay I borrow your dictionary?\tEst-ce que je peux vous emprunter votre dictionnaire ?\nMay I have the check, please?\tPuis-je avoir l'addition, s'il vous plait ?\nMay I have the check, please?\tPuis-je avoir l'addition, je vous prie ?\nMay I have the check, please?\tPuis-je avoir la note, s'il vous plait ?\nMay I have your name, please?\tPouvez-vous m'indiquer votre nom, s'il vous plaît ?\nMay I pay with a credit card?\tPuis-je payer par carte de crédit ?\nMay I suggest another option?\tPuis-je suggérer une autre option?\nMay I turn on the television?\tPuis-je allumer la télévision ?\nMay I use the vacuum cleaner?\tEst-ce que je peux me servir de l'aspirateur ?\nMaybe he will arrive tonight.\tPeut-être qu'il va arriver ce soir.\nMaybe he will arrive tonight.\tIl arrivera peut-être ce soir.\nMaybe he won't become famous.\tPeut-être ne deviendra-t-il pas célèbre.\nMaybe she forgot my birthday.\tPeut-être a-t-elle oublié mon anniversaire.\nMaybe we should go to Boston.\tNous devrions peut-être aller à Boston.\nMaybe we should just give up.\tPeut-être devrions-nous tout simplement abandonner.\nMaybe we should just give up.\tNous devrions peut-être juste abandonner.\nMaybe we should just give up.\tPeut-être que nous devrions tout simplement abandonner.\nMaybe we should keep looking.\tPeut-être devrions-nous continuer à regarder.\nMaybe we were too optimistic.\tPeut-être avons-nous été trop optimistes ?\nMeat should not be eaten raw.\tLa viande ne devrait pas être mangée crue.\nMen know nothing about women.\tLes hommes ne savent rien des femmes.\nMen know nothing about women.\tLes hommes ignorent tout des femmes.\nMine is not so good as yours.\tLe mien n'est pas aussi bien que le tien.\nMine is not so good as yours.\tLe mien n'est pas aussi bon que le tien.\nMom and Dad are very nervous.\tMaman et papa sont très nerveux.\nMoney does not grow on trees.\tL'argent ne pousse pas sur les arbres.\nMost children love ice cream.\tLa plupart des enfants aiment les glaces.\nMost of her friends are boys.\tLa plupart de ses amis sont des garçons.\nMost of my friends are girls.\tLa plupart de mes amis sont des filles.\nMost of them just don't care.\tLa plupart s'en fiche.\nMost students walk to school.\tLa plupart des élèves vont à l'école à pied.\nMost whales feed on plankton.\tLa plupart des baleines se nourrissent de plancton.\nMoths are attracted by light.\tLes papillons de nuit sont attirés par la lumière.\nMove up to the front, please.\tDéplacez-vous jusqu'au devant, je vous prie.\nMozart's life was very short.\tLa vie de Mozart fut très courte.\nMozart's life was very short.\tLa vie de Mozart a été très courte.\nMt. Aso is an active volcano.\tLe Mont Aso est un volcan actif.\nMy aunt died an old spinster.\tMa tante est morte vieille fille.\nMy boss was forced to resign.\tMon patron a été forcé de démissionner.\nMy brother has a good memory.\tMon frère a une bonne mémoire.\nMy brother is still sleeping.\tMon frère dort toujours.\nMy car broke down on the way.\tMa voiture est tombée en panne en route.\nMy car broke down on the way.\tMa voiture est tombée en panne en chemin.\nMy car broke down on the way.\tMa voiture est tombée en panne sur le chemin.\nMy car is now being repaired.\tMa voiture est actuellement en réparation.\nMy car isn't powerful enough.\tMa voiture n'a pas assez de puissance.\nMy car was stolen last night.\tOn m'a volé ma voiture hier soir.\nMy car was stolen last night.\tMa voiture a été dérobée la nuit dernière.\nMy cat is sleeping on my bed.\tMon chat est en train de dormir sur mon lit.\nMy computer's acting strange.\tMon ordinateur se comporte de manière bizarre.\nMy cousin is hooked on smack.\tMon cousin est accro à l'héro.\nMy cousin is hooked on smack.\tMa cousine est accro à l'héro.\nMy daughter had a concussion.\tMa fille a eu une commotion.\nMy dictionary is very useful.\tMon dictionnaire est très utile.\nMy family enjoyed the picnic.\tMa famille a apprécié le pique-nique.\nMy father doesn't like music.\tMon père n'aime pas la musique.\nMy father failed in business.\tMon père a échoué en affaires.\nMy father has a lot of books.\tMon père a beaucoup de livres.\nMy father is fifty years old.\tMon père a cinquante ans.\nMy father is too old to work.\tMon père est trop vieux pour travailler.\nMy father may be at home now.\tMon père devrait se trouver à la maison, maintenant.\nMy father works in a factory.\tMon père travaille dans une usine.\nMy father works in a factory.\tMon père travaille en usine.\nMy father works in a factory.\tMon père travaille à l'usine.\nMy father's car is very nice.\tLa voiture de mon père est très belle.\nMy father's going to kill me.\tMon père va me tuer.\nMy father's hobby is fishing.\tLe passe-temps de mon père est la pêche.\nMy friend called me a coward.\tMon ami m'a traité de lâche.\nMy grandfather gets up early.\tMon grand-père se réveille tôt.\nMy grandfather likes to walk.\tMon grand-père aime marcher.\nMy grandfather loves to read.\tMon grand-père adore lire.\nMy grandmother lived with us.\tMa grand-mère vivait avec nous.\nMy hard drive is almost full.\tMon disque dur est presque plein.\nMy hobby is collecting coins.\tMon passe-temps c'est la collection des pièces de monnaie.\nMy house is five blocks away.\tMa maison est cinq rues plus loin.\nMy house is near the station.\tMa maison est près de la gare.\nMy house is near the station.\tMa maison se trouve près de la gare.\nMy house needs major repairs.\tMa maison nécessite des réparations majeures.\nMy life is empty without him.\tMa vie est vide sans lui.\nMy mother's going to kill me.\tMa mère va me tuer.\nMy mother's going to kill me.\tMa mère me tuera.\nMy new shoes are comfortable.\tMes souliers neufs sont confortables.\nMy office faces Fifth Avenue.\tMon bureau fait face à la Cinquième Avenue.\nMy opinion differs from hers.\tMon opinion diffère de la sienne.\nMy opinion differs from hers.\tMon opinion est différente de la sienne.\nMy parents caught me smoking.\tMes parents m'attrapèrent en train de fumer.\nMy parents caught me smoking.\tMes parents m'ont attrapé en train de fumer.\nMy parents caught me smoking.\tMes parents m'ont attrapée en train de fumer.\nMy school marks were average.\tMes notes scolaires furent moyennes.\nMy school marks were average.\tMes notes scolaires ont été moyennes.\nMy sister is in her twenties.\tMa sœur a entre vingt et trente ans.\nMy sister is younger than me.\tMa sœur est plus jeune que moi.\nMy sister isn't studying now.\tMa sœur n'étudie pas pour l'instant.\nMy sister's going to kill me.\tMa sœur va me tuer.\nMy watch is ten minutes fast.\tMa montre avance de dix minutes.\nMy watch is ten minutes slow.\tMa montre retarde de dix minutes.\nMy wife catches colds easily.\tMa femme attrape facilement froid.\nMy wife had a baby last week.\tMa femme a eu un bébé la semaine dernière.\nMy wife is cooking right now.\tMa femme est en train de faire la cuisine.\nMy wife is cooking right now.\tMon épouse est en train de cuisiner.\nNaples is a picturesque city.\tNaples est une ville pittoresque.\nNeedless to say, he is right.\tInutile de préciser qu'il a raison.\nNever confuse pity with love.\tNe confonds jamais la pitié avec l'amour.\nNever give up on your dreams.\tNe laisse jamais tomber tes rêves !\nNever give up on your dreams.\tNe laissez jamais tomber vos rêves !\nNext time, I'll do it myself.\tLa prochaine fois, je le ferai moi-même.\nNo man can serve two masters.\tPersonne ne peut servir deux maîtres.\nNo more, thank you. I'm full.\tNon merci. J'ai le ventre plein.\nNo one asked me to come here.\tPersonne ne m'a demandé de venir ici.\nNo one believes that anymore.\tPersonne ne croit plus à ça.\nNo one could find the answer.\tPersonne ne trouvait la réponse.\nNo one else could do my work.\tAucun autre homme ne pourrait faire mon travail.\nNo one else could do my work.\tPersonne d'autre ne pourrait faire mon travail.\nNo one ever saw such a thing.\tPersonne n'a jamais vu chose pareille.\nNo one was absent except her.\tPersonne n'était absent à part elle.\nNo one was on board the ship.\tPersonne ne se trouvait à bord du bateau.\nNo one welcomed the proposal.\tPersonne ne salua la proposition.\nNo one would offer him a job.\tPersonne ne voulait l'embaucher.\nNo problem is insurmountable.\tAucun problème n'est insurmontable.\nNo student went to the party.\tAucun étudiant n'est venu à la fête.\nNobody backed up what I said.\tPersonne ne soutint ce que je dis.\nNobody backed up what I said.\tPersonne n'a soutenu ce que j'ai dit.\nNobody backed up what I said.\tPersonne ne corrobora mes dires.\nNobody backed up what I said.\tPersonne n'a corroboré mes dires.\nNobody backed up what I said.\tPersonne ne corrobora mes allégations.\nNobody backed up what I said.\tPersonne n'a corroboré mes allégations.\nNobody can keep us apart now.\tPersonne ne peut désormais nous séparer.\nNobody forced you to help me.\tPersonne ne t'a forcé à m'aider.\nNobody thinks this is a joke.\tPersonne ne croit que c'est une blague.\nNobody told me you were here.\tPersonne ne m'a dit que vous étiez ici.\nNobody told me you were here.\tPersonne ne m'a dit que vous vous trouviez ici.\nNobody told me you were here.\tPersonne ne m'a dit que tu te trouvais là.\nNobody's forcing you to stay.\tPersonne ne te force à rester.\nNobody's forcing you to stay.\tPersonne ne vous force à rester.\nNobody's going to rescue you.\tPersonne ne va venir à ton secours.\nNobody's going to rescue you.\tPersonne ne va venir à votre secours.\nNone of these eggs are fresh.\tAucun de ces œufs n'est frais.\nNone of this makes any sense.\tRien de ceci n'a de sens.\nNone of this makes any sense.\tRien de ceci n'a le moindre sens.\nNormally this would be funny.\tÇa devrait normalement être amusant.\nNot all children like apples.\tTous les enfants n'aiment pas les pommes.\nNot every child likes apples.\tTous les enfants n'aiment pas les pommes.\nNot everyone agrees with you.\tTout le monde n'est pas de ton avis.\nNot everyone agrees with you.\tTout le monde n'est pas de votre avis.\nNot everyone likes that book.\tTout le monde n'aime pas ce livre.\nNot everyone was celebrating.\tTout le monde n'était pas à la fête.\nNot everything's about money.\tTout n'est pas une question d'argent.\nNothing ever makes him angry.\tRien ne le met jamais en colère.\nNothing is new under the sun.\tRien de nouveau sous le soleil.\nNow it's time to make amends.\tIl est maintenant temps de se repentir.\nNow it's time to make amends.\tIl est maintenant temps de réparer.\nNow they have three children.\tIls ont maintenant trois enfants.\nObesity is a serious problem.\tL'obésité est un sérieux problème.\nOil is extracted from olives.\tL'huile est extraite des olives.\nOld habits are hard to break.\tLes vieilles habitudes ont la vie dure.\nOld habits are hard to break.\tLes vieilles habitudes sont difficiles à rompre.\nOne can't live without water.\tOn ne peut vivre sans eau.\nOne language is never enough.\tUne langue ne suffit jamais.\nOne minute has sixty seconds.\tUne minute compte soixante secondes.\nOne minute has sixty seconds.\tUne minute comporte soixante secondes.\nOne must keep one's promises.\tIl faut tenir ses promesses.\nOne must keep one's promises.\tOn doit tenir ses promesses.\nOne of the lions has escaped.\tL'un des lions s'est échappé.\nOne should not make comments.\tOn ne devrait pas faire de commentaires.\nOpportunity waits for no one.\tL'occasion n'attend personne.\nOur garden was full of weeds.\tNotre jardin était plein de mauvaises herbes.\nOur little boy is growing up.\tNotre petit garçon grandit.\nOur mother bought us a puppy.\tNotre mère nous a acheté un chiot.\nOur mothers are strong women.\tNos mères sont des femmes fortes.\nOur supplies are running out.\tNos réserves s'épuisent.\nOur teacher looks very young.\tNotre professeur a l'air d'être très jeune.\nOur teacher seemed surprised.\tNotre professeur avait l'air surpris.\nOur team is still undefeated.\tNotre équipe est encore invaincue.\nOur team is two points ahead.\tNotre équipe a deux points d'avance.\nOur team lost the first game.\tNotre équipe a perdu la première partie.\nOur team lost the first game.\tNotre équipe a perdu la première manche.\nPandas are beautiful animals.\tLes pandas sont de beaux animaux.\nPeople believe what they see.\tLes gens croient ce qu'ils voient.\nPeople from Madrid are weird.\tIls sont fous ces Madrilènes.\nPeople learn from experience.\tLes hommes apprennent de l'expérience.\nPeople learn from experience.\tLes gens apprennent à partir de l'expérience.\nPerhaps you should buy a gun.\tPeut-être devrais-tu acheter une arme.\nPerhaps you should buy a gun.\tPeut-être devriez-vous acheter une arme.\nPlaying cards is interesting.\tJouer aux cartes est intéressant.\nPlaying the piano isn't easy.\tJouer du piano n'est pas aisé.\nPlease bring me a cup of tea.\tApporte-moi une tasse de thé, s'il te plaît.\nPlease bring me some glasses.\tApportez-moi des verres s'il vous plaît.\nPlease come and see me again.\tViens me voir de nouveau, s'il te plaît.\nPlease do something about it.\tFais-y quelque chose, je te prie.\nPlease do something about it.\tVeuillez y faire quelque chose, je vous prie.\nPlease do something about it.\tVeuillez faire quelque chose à cela, je vous prie.\nPlease don't be sad any more.\tNe soyez plus triste, je vous prie.\nPlease don't be sad any more.\tNe sois plus triste, je te prie.\nPlease fasten your seat belt.\tVeuillez mettre votre ceinture de sécurité.\nPlease find out where she is.\tTrouve où elle est, s'il te plait.\nPlease give me a cup of milk.\tS'il te plaît, donne-moi une tasse de lait.\nPlease give me a cup of milk.\tS'il vous plaît, donnez-moi une tasse de lait.\nPlease go on with your story.\tS'il vous plaît, continuez votre histoire.\nPlease have some copies made.\tFaites faire des copies, je vous prie !\nPlease have some copies made.\tFais faire des copies, je te prie !\nPlease knock before entering.\tVeuillez frapper avant d'entrer.\nPlease let in some fresh air.\tVeuillez laisser entrer un peu d'air frais.\nPlease make yourself at home.\tFaites comme chez vous.\nPlease make yourself at home.\tS'il vous plaît, faites comme chez vous.\nPlease make yourself at home.\tFais comme chez toi.\nPlease obey the school rules.\tVeuillez obéir au règlement de l'école.\nPlease read the instructions.\tVeuillez lire les instructions.\nPlease remember what he said.\tVeuillez vous rappeler ce qu'il a dit.\nPlease send the book by mail.\tEnvoyez ce livre par la poste s'il vous plaît.\nPlease show me your notebook.\tS'il te plaît, montre-moi ton cahier.\nPlease show me your notebook.\tS'il vous plaît, montrez-moi votre cahier.\nPlease show me your notebook.\tMontre-moi ton cahier s'il te plaît.\nPlease show me your notebook.\tMontrez-moi votre cahier s'il vous plaît.\nPlease stick out your tongue.\tTirez la langue, s'il vous plait.\nPlease stick out your tongue.\tTire la langue, s'il te plait.\nPlease take care of yourself.\tPrends soin de toi, s'il te plaît.\nPlease tell me what happened.\tVeuillez me dire ce qu'il s'est passé !\nPlease tell me what happened.\tDites-moi, je vous prie, ce qu'il s'est passé !\nPlease tell me what happened.\tDis-moi, je te prie, ce qu'il s'est passé !\nPlease tell me what happened.\tS'il te plaît, dis-moi ce qu'il s'est passé.\nPlease tell me you're joking.\tDis-moi, je te prie, que tu es en train de plaisanter !\nPlease tell me you're joking.\tDites-moi, je vous prie, que vous êtes en train de plaisanter !\nPlease tell me you're joking.\tDis-moi, s'il te plaît, que tu es en train de blaguer !\nPlease tell me your location.\tPourriez-vous m'indiquer votre localisation ?\nPlease wait for five minutes.\tVeuillez attendre pendant cinq minutes.\nPlease wait here for a while.\tS'il vous plaît, attendez un peu ici.\nPlease write down my address.\tVeuillez prendre note de mon adresse.\nPlease write down what I say.\tVeuillez noter ce que je dis !\nPlease write down what I say.\tPrends note de ce que je dis, je te prie !\nPortugal is not an exception.\tLe Portugal n'est pas une exception.\nPrices are stable these days.\tLes prix sont stables ces derniers jours.\nPrices have dropped recently.\tLes prix ont baissé récemment.\nPromise me you'll be careful.\tPromets-moi que tu seras prudent !\nPromise me you'll be careful.\tPromets-moi que tu seras prudente !\nPromise me you'll be careful.\tPromettez-moi que vous serez prudent !\nPromise me you'll be careful.\tPromettez-moi que vous serez prudente !\nPromise me you'll be careful.\tPromettez-moi que vous serez prudents !\nPromise me you'll be careful.\tPromettez-moi que vous serez prudentes !\nPut an icepack on your cheek.\tPlace un sac de glace sur ta joue !\nPut some water into the vase.\tMets un peu d'eau dans le vase.\nPut your hands up in the air!\tLevez les mains en l'air !\nPut your hands up in the air!\tLève les mains en l'air !\nQueen Elizabeth died in 1603.\tLa reine Elisabeth est morte en 1603.\nRainy days make me depressed.\tLes jours de pluie me dépriment.\nRead the article on page two.\tLisez l'article de la page deux !\nRead the article on page two.\tLisez l'article à la page deux !\nRead the article on page two.\tLisez l'article en page deux !\nReading books is interesting.\tLire des livres est intéressant.\nRemember to mail this letter.\tN'oublie pas d'envoyer cette lettre.\nReport to the emergency room.\tRapporte à la salle d'urgence.\nReport to the emergency room.\tRapportez à la salle d'urgence.\nRice gruel is easy to digest.\tLe gruau de riz est facile à digérer.\nRoulette is a game of chance.\tLa roulette est un jeu de hasard.\nRules are meant to be broken.\tLes règles sont faites pour être contournées.\nSawako wants to go to France.\tSawako veut aller en France.\nSay which one you would like.\tDis lequel tu voudrais.\nSay which one you would like.\tDis laquelle tu voudrais.\nSay which one you would like.\tDites laquelle vous voudriez.\nSay which one you would like.\tDites lequel vous voudriez.\nSee if the gas is turned off.\tRegarde si le gaz est coupé.\nSet a thief to catch a thief.\tCombattre le mal par le mal.\nShall we add a bit more salt?\tAjoutons-nous un peu plus de sel ?\nShe accompanied him to Japan.\tElle l'accompagna au Japon.\nShe accompanied him to Japan.\tElle l'a accompagné au Japon.\nShe adores her older brother.\tElle adore son frère ainé.\nShe advised him not to smoke.\tElle lui a conseillé de ne pas fumer.\nShe advised me where to stay.\tElle me conseilla où séjourner.\nShe advised me where to stay.\tElle m'a conseillé où séjourner.\nShe always speaks in English.\tElle parle toujours en anglais.\nShe apologized for her delay.\tElle s'excusa pour son retard.\nShe asked him for some money.\tElle lui demanda de l'argent.\nShe asked him for some money.\tElle lui a demandé de l'argent.\nShe asked him some questions.\tElle lui posa quelques questions.\nShe asked him some questions.\tElle lui a posé quelques questions.\nShe asked him where he lived.\tElle lui demanda où il vivait.\nShe asked him where he lived.\tElle lui a demandé où il vivait.\nShe asked me about my mother.\tElle s'est enquise de ma mère.\nShe behaved quite abominably.\tElle se comportait de manière tout à fait odieuse.\nShe bought a toy for the kid.\tElle a acheté un jouet pour le gosse.\nShe brought him to our place.\tElle l'amena chez nous.\nShe came home in low spirits.\tElle est rentrée déprimée à la maison.\nShe came to see us yesterday.\tElle est venue nous voir hier.\nShe caught a cold last night.\tElle a contracté un rhume la nuit dernière.\nShe caught a cold last night.\tElle a attrapé un rhume la nuit dernière.\nShe clearly does not mean it.\tElle ne le pense vraiment pas.\nShe complained of a headache.\tElle s'est plainte d'une migraine.\nShe complained of a headache.\tElle s'est plainte d'un mal de tête.\nShe denied having been there.\tElle nia y avoir été.\nShe did her best to help him.\tElle fit de son mieux pour l'aider.\nShe did her best to help him.\tElle fit de son mieux pour l'assister.\nShe did her best to help him.\tElle a fait de son mieux pour l'aider.\nShe did her best to help him.\tElle a fait de son mieux pour l'assister.\nShe didn't like him at first.\tElle ne l'apprécia pas au premier abord.\nShe didn't like him at first.\tElle ne l'a pas apprécié au premier abord.\nShe didn't tell me the truth.\tElle ne m'a pas dit la vérité.\nShe died yesterday afternoon.\tElle est décédée hier après-midi.\nShe disguised herself as him.\tElle se déguisa en lui.\nShe disguised herself as him.\tElle s'est déguisée en lui.\nShe doesn't do anything else.\tElle ne fait rien d'autre.\nShe doesn't have any enemies.\tElle n'a pas d'ennemis.\nShe doesn't know how to swim.\tElle n'est pas capable de nager.\nShe doesn't know what to say.\tElle ne sait que dire.\nShe dressed up for the party.\tElle s'est habillée pour la fête.\nShe earns 30 dollars per day.\tElle gagne 30 dollars par jour.\nShe emerged from the kitchen.\tElle émergea de la cuisine.\nShe gave birth to a baby boy.\tElle donna naissance à un garçon.\nShe gave birth to twin girls.\tElle a donné naissance à des jumelles.\nShe gave me her phone number.\tElle me donna son numéro de téléphone.\nShe gave me her phone number.\tElle m'a donné son numéro de téléphone.\nShe gave me some good advice.\tElle m'a donné de bons conseils.\nShe gets along well with him.\tElle s'entend bien avec lui.\nShe gets prettier day by day.\tElle embellit de jour en jour.\nShe got married at seventeen.\tElle s'est mariée à l'âge de dix-sept ans.\nShe got married at seventeen.\tElle s'est mariée à dix-sept ans.\nShe got married in her teens.\tElle s'est mariée avant vingt ans.\nShe greets him every morning.\tElle le salue chaque matin.\nShe has a bath every morning.\tElle prend un bain chaque matin.\nShe has a book under her arm.\tElle a un livre sous le bras.\nShe has a comfortable income.\tElle a des revenus confortables.\nShe has a cottage by the sea.\tElle a une maison en bord de mer.\nShe has a cottage by the sea.\tElle a un cottage en bord de mer.\nShe has a flower in her hand.\tElle a une fleur à la main.\nShe has a flower in her hand.\tElle a une fleur dans la main.\nShe has a strong personality.\tElle a une forte personnalité.\nShe has an advantage over me.\tElle a un avantage sur moi.\nShe has been to England once.\tElle a une fois été en Angleterre.\nShe has been to England once.\tUne fois, elle est allée en Angleterre.\nShe has lived alone for ages.\tElle a vécu seule pendant une éternité.\nShe has marginalized herself.\tElle s'est marginalisée.\nShe has never fallen in love.\tElle n'est jamais tombée amoureuse.\nShe has never seen it before.\tElle ne l'a jamais vu.\nShe has shown her room to me.\tElle m'a montré sa chambre.\nShe has some literary talent.\tElle a quelque talent littéraire.\nShe hasn't reimbursed me yet.\tElle ne m'a pas encore remboursé.\nShe invited him to her party.\tElle l'invita à sa fête.\nShe invited me to the ballet.\tElle m'a invité au ballet.\nShe invited me to the ballet.\tElle m'invita au ballet.\nShe is a most beautiful lady.\tC'est une très belle dame.\nShe is a second year student.\tC'est une élève de deuxième année.\nShe is a self-educated woman.\tC'est une femme autodidacte.\nShe is absorbed in her study.\tElle est absorbée par son travail d'étude.\nShe is almost as tall as you.\tElle est presque aussi grande que vous.\nShe is almost as tall as you.\tElle est presque aussi grande que toi.\nShe is always neatly dressed.\tElle est toujours soigneusement habillée.\nShe is always neatly dressed.\tElle est toujours soigneusement vêtue.\nShe is busy learning English.\tElle est occupée à apprendre l'anglais.\nShe is certainly above forty.\tElle a certainement plus de quarante ans.\nShe is engaged to a rich man.\tElle est fiancée à un homme riche.\nShe is envious of my success.\tElle est jalouse de ma réussite.\nShe is friendly to everybody.\tElle est amicale avec tout le monde.\nShe is friendly to everybody.\tElle est sympa avec tout le monde.\nShe is frightened of thunder.\tElle a peur du tonnerre.\nShe is good at imitating him.\tElle est bonne pour l'imiter.\nShe is more wise than clever.\tElle est plus sage qu'intelligente.\nShe is never late for school.\tElle n'est jamais en retard à l'école.\nShe is on the teaching staff.\tElle fait partie du personnel enseignant.\nShe is preparing for college.\tElle est en train de se préparer pour la faculté.\nShe is proud of her children.\tElle est fière de ses enfants.\nShe is proud of her daughter.\tElle est fière de sa fille.\nShe is proud of her students.\tElle est fière de ses élèves.\nShe is rather poor at tennis.\tElle n'est pas très douée au tennis.\nShe is really in good health.\tElle se porte fort bien.\nShe is remarkably attractive.\tElle est très attirante.\nShe is trying to lose weight.\tElle essaie de perdre du poids.\nShe is very bitter toward me.\tElle est très amère envers moi.\nShe is working night and day.\tElle travaille nuit et jour.\nShe kept crying all the time.\tElle pleurait tout le temps.\nShe killed herself yesterday.\tElle s'est tuée hier.\nShe laid her baby on the bed.\tElle posa le bébé sur le lit.\nShe laid her baby on the bed.\tElle déposa le bébé sur le lit.\nShe laid her baby on the bed.\tElle mit au lit son bébé.\nShe laid her baby on the bed.\tElle a mis au lit son bébé.\nShe left her children behind.\tElle a abandonné ses enfants.\nShe left her children behind.\tElle abandonna ses enfants.\nShe left the last page blank.\tElle a laissé blanche la dernière page.\nShe let him drive on his own.\tElle lui a permis de conduire seul.\nShe likes to arrange flowers.\tElle aime composer des arrangements floraux.\nShe likes to listen to music.\tElle aime écouter de la musique.\nShe lives on a small pension.\tElle vit avec une petite pension.\nShe looked at me and laughed.\tElle me regarda et rit.\nShe looked at me and laughed.\tElle m'a regardé et a ri.\nShe looked at me seductively.\tElle me lança un coup d’œil aguicheur.\nShe looked up at the ceiling.\tElle regardait au plafond.\nShe made him a simple dinner.\tElle lui prépara un dîner simple.\nShe made jam from the apples.\tElle fit de la confiture avec les pommes.\nShe mistook me for my sister.\tElle m'a confondue avec ma sœur.\nShe needs to be more careful.\tElle doit être plus prudente.\nShe owns many valuable works.\tElle possède de nombreux ouvrages de valeur.\nShe passed away two days ago.\tElle est décédée il y a deux jours.\nShe patiently waited for him.\tElle l'attendit patiemment.\nShe plays golf every weekend.\tElle joue au golf tous les weekends.\nShe pleaded with him to stay.\tElle le supplia de rester.\nShe pleaded with him to stay.\tElle l'a supplié de rester.\nShe pretended not to hear me.\tElle faisait semblant de ne pas m'entendre.\nShe put on her hat to go out.\tElle mit son chapeau pour sortir.\nShe quietly entered the room.\tElle rentra tranquillement dans la pièce.\nShe rarely talked to anybody.\tElle parlait rarement à qui que ce soit.\nShe regarded me suspiciously.\tElle me lança un regard suspect.\nShe repeated her name slowly.\tElle a répété son nom lentement.\nShe repeated her name slowly.\tElle répéta lentement son nom.\nShe rides her bike to school.\tElle va à l'école en vélo.\nShe saw a tall man yesterday.\tElle a vu hier un homme de grande taille.\nShe saw him break the window.\tElle le vit briser la fenêtre.\nShe saw him break the window.\tElle l'a vu briser la fenêtre.\nShe seems to have been happy.\tElle semble avoir été heureuse.\nShe slipped her arm into his.\tElle glissa son bras dans le sien.\nShe slipped into her clothes.\tElle enfila ses vêtements.\nShe sometimes gets depressed.\tElle se met parfois à déprimer.\nShe spoke to me with a smile.\tElle me parla avec un sourire.\nShe spoke to me with a smile.\tElle m'a parlé avec le sourire.\nShe spoke to me with a smile.\tElle me parla avec le sourire.\nShe squeezed a lemon for tea.\tElle a pressé un citron pour le thé.\nShe stopped singing the song.\tElle cessa d'interpréter la chanson.\nShe suggested that he try it.\tElle lui suggéra de l'essayer.\nShe teaches students English.\tElle enseigne l'anglais aux étudiants.\nShe thanked him for his help.\tElle le remercia pour son aide.\nShe thanked him for his help.\tElle l'a remercié pour son aide.\nShe thanked him for his help.\tElle le remercia pour son assistance.\nShe thanked him for his help.\tElle l'a remercié pour son assistance.\nShe took part in the contest.\tElle participa au concours.\nShe tried on the party dress.\tElle a essayé la robe de soirée.\nShe turned down his proposal.\tElle a décliné sa proposition.\nShe turned down our proposal.\tElle refusa notre proposition.\nShe waited for him for hours.\tElle l'a attendu longtemps.\nShe waited patiently for him.\tElle attendit patiemment après lui.\nShe wants to go out with him.\tElle veut sortir avec lui.\nShe was absorbed in her work.\tElle était absorbée par son travail.\nShe was barred from the club.\tElle a été bannie du cercle.\nShe was deceived by a friend.\tElle a été trompée par un ami.\nShe was dressed all in black.\tElle était vêtue tout de noir.\nShe was hurt in the accident.\tElle a été blessée dans l'accident.\nShe was on verge of fainting.\tElle était au bord de l'évanouissement.\nShe was present at the party.\tElle était présente à cette réunion.\nShe was sitting under a tree.\tElle était assise sous un arbre.\nShe was talking all the time.\tElle ne faisait que bavarder.\nShe was talking all the time.\tElle parlait tout le temps.\nShe was there in the morning.\tElle était là ce matin.\nShe was too shocked to speak.\tElle était trop choquée pour parler.\nShe went with him to the zoo.\tElle se rendit au zoo avec lui.\nShe went with him to the zoo.\tElle s'est rendue au zoo avec lui.\nShe went with him to the zoo.\tElle alla au zoo avec lui.\nShe went with him to the zoo.\tElle est allée au zoo avec lui.\nShe will be here before long.\tElle sera là dans peu de temps.\nShe will come if you ask her.\tElle viendra si vous le lui demandez.\nShe wouldn't give him a gift.\tElle ne voulait pas lui donner de cadeau.\nShe wouldn't give him a gift.\tElle ne lui donnerait pas de cadeau.\nShe writes to him every week.\tElle lui écrit chaque semaine.\nShe's a member of a sorority.\tElle est membre d'une société d'étudiantes.\nShe's a single mother of two.\tElle est mère isolée de deux enfants.\nShe's an independent thinker.\tC'est un esprit indépendant.\nShe's better at it than I am.\tElle est meilleure à ça que je ne le suis.\nShe's married to a foreigner.\tElle est mariée à un étranger.\nShe's not invited to parties.\tOn ne l'invite pas aux fêtes.\nShe's out shopping for shoes.\tElle est sortie pour des chaussures.\nShe's out shopping for shoes.\tElle est sortie faire les magasins pour des chaussures.\nShe's well known as a singer.\tElle est bien connue comme chanteuse.\nShe's well known as a singer.\tElle est bien connue en tant que chanteuse.\nShouldn't you be at work now?\tNe devrais-tu pas être au travail en ce moment ?\nShouldn't you be at work now?\tNe devriez-vous pas être au travail maintenant ?\nShow me how to do it, please.\tMontre-moi comment faire, s'il te plaît.\nShow me how to do it, please.\tMontrez-moi comment faire, s'il vous plaît.\nSleep is essential to health.\tDormir est essentiel à la santé.\nSleep is essential to health.\tLe sommeil est essentiel à la santé.\nSmith died of a heart attack.\tSmith est mort d'une crise cardiaque.\nSome animals eat their young.\tCertains animaux mangent leurs petits.\nSome of the money was stolen.\tUne partie de l’argent a été volée.\nSome of these apples are bad.\tUne partie de ces pommes sont abimées.\nSome people relax by reading.\tCertaines personnes se détendent en lisant.\nSome were unwilling to fight.\tCertains ne voulaient pas se battre.\nSome wounds time never heals.\tIl y a certaines plaies que le temps ne referme jamais.\nSomebody stepped on his foot.\tQuelqu'un lui a marché sur le pied.\nSomebody's having a good day.\tJe connais quelqu'un qui passe une bonne journée.\nSomebody's taken Tom's place.\tQuelqu'un a pris la place de Tom.\nSomeone is playing the piano.\tQuelqu'un joue du piano.\nSomeone turned the alarm off.\tQuelqu'un a neutralisé l'alarme.\nSomeone turned the alarm off.\tQuelqu'un a débranché l'alarme.\nSomeone turned the alarm off.\tQuelqu'un a éteint l'alarme.\nSometimes I get carried away.\tJe me laisse parfois emporter.\nSometimes I run out of money.\tParfois, je manque d'argent.\nSometimes I run out of money.\tParfois, je suis à court d'argent.\nSometimes it's not so simple.\tDes fois, ce n'est pas si simple.\nSorry, I can't stay for long.\tDésolé, je ne peux pas rester longtemps.\nSorry, I can't stay for long.\tDésolée, je ne peux pas rester longtemps.\nSpain is a developed country.\tL'Espagne est un pays développé.\nSpanish is her mother tongue.\tL'espagnol est sa langue maternelle.\nSpanish is his mother tongue.\tL'espagnol est sa langue maternelle.\nSpeaking English is not easy.\tParler anglais n'est pas facile.\nStay away from my girlfriend.\tTenez-vous à l'écart de ma copine !\nStay away from my girlfriend.\tTiens-toi à l'écart de ma copine !\nStay away from my motorcycle.\tReste loin de ma moto.\nStay away from my motorcycle.\tRestez loin de ma moto.\nStop acting like such a fool.\tArrête d'agir aussi stupidement !\nStop acting like such a fool.\tArrêtez d'agir comme une telle idiote.\nStop beating around the bush.\tArrête de tourner autour du pot.\nStop beating around the bush.\tArrêtez de tourner autour du pot.\nStop flirting with my sister.\tArrêtez de draguer ma sœur !\nStop flirting with my sister.\tArrête de draguer ma sœur !\nStop staring at me like that.\tArrête de me dévisager comme cela.\nStop talking to me about Tom.\tArrête de me parler de Tom.\nStop. You're making me blush.\tArrêtez ! Vous me faites rougir.\nStop. You're making me blush.\tArrête ! Tu me fais rougir.\nStrike while the iron is hot.\tIl faut battre le fer tant qu'il est chaud.\nSuch a person is seldom dull.\tUne telle personne est rarement ennuyeuse.\nSuch a plan is bound to fail.\tUn tel projet est voué à l'échec.\nSuddenly, the light went out.\tTout à coup la lumière s'éteignit.\nSurgery is the best solution.\tLa chirurgie est la meilleure solution.\nTake care of the kids for me.\tPrenez soin des enfants.\nTake whichever you like best.\tPrends celui que tu préfères.\nTears rolled down his cheeks.\tDes larmes coulaient sur ses joues.\nTell Tom to stay where he is.\tDis à Tom de rester là où il se trouve.\nTell Tom what you want to do.\tDis à Tom ce que tu veux faire.\nTell Tom what you want to do.\tDites à Tom ce que vous voulez faire.\nTell me again where you live.\tDites-moi encore une fois où vous vivez.\nTell me again where you live.\tDis-moi encore une fois où tu vis.\nTell me how to play the game.\tDis-moi comment jouer au jeu.\nTell me this isn't happening.\tDites-moi que ce n'est pas en train d'arriver !\nTell me this isn't happening.\tDites-moi que ce n'est pas en train de se produire !\nTell me this isn't happening.\tDites-moi que ce n'est pas en train d'avoir lieu !\nTell me what really happened.\tDis-moi ce qui s'est réellement passé !\nTell me what really happened.\tDites-moi ce qui s'est réellement passé !\nTell me what really happened.\tDites-moi ce qui s'est vraiment passé !\nTell me what really happened.\tDites-moi ce qui est vraiment arrivé !\nTell me what really happened.\tDis-moi ce qui s'est vraiment passé !\nTell me what really happened.\tDis-moi ce qui est vraiment arrivé !\nTell me what really happened.\tDites-moi ce qui a vraiment eu lieu !\nTell me what really happened.\tDis-moi ce qui a vraiment eu lieu !\nTennis is my preferred sport.\tLe tennis est mon sport préféré.\nThank you all for being here.\tMerci à tous d'être là.\nThank you all for being here.\tMerci à toutes d'être là.\nThank you for helping me out.\tMerci de m'aider.\nThank you. We'll do our best.\tMerci. Nous ferons de notre mieux.\nThanks for your quick answer.\tMerci de ta prompte réponse.\nThanks for your quick answer.\tMerci pour votre prompte réponse !\nThat article is out of stock.\tCet article n'est plus en stock.\nThat baby is fat and healthy.\tCe bébé est gras et en bonne santé.\nThat baby is fat and healthy.\tCe bébé est dodu et en bonne santé.\nThat bed is very comfortable.\tLe lit est très confortable.\nThat book had a lot of pages.\tCe livre comptait de nombreuses pages.\nThat book had a lot of pages.\tCe livre avait beaucoup de pages.\nThat boy is speaking English.\tCe garçon sait parler anglais.\nThat bridge is made of stone.\tCe pont est fait de pierres.\nThat bridge is made of stone.\tCe pont est de pierre.\nThat bullet was meant for me.\tLa balle m'était destinée.\nThat car belongs in a museum.\tLa voiture devrait être dans un musée.\nThat comes to the same thing.\tÇa revient au même.\nThat computer might not work.\tIls se pourrait que cet ordinateur ne fonctionne pas.\nThat could've been prevented.\tCela aurait pu être évité.\nThat could've happened to me.\tCela aurait pu m'arriver.\nThat didn't even occur to me.\tÇa ne m'est même pas venu à l'esprit.\nThat doesn't cut the mustard.\tÇa ne le fait pas.\nThat doesn't mean I can stay.\tÇa ne signifie pas que je puis rester.\nThat dress fit her perfectly.\tCette robe lui allait à merveille.\nThat dress fit her perfectly.\tCette robe lui allait à ravir.\nThat dress looks good on you.\tCette robe vous va bien.\nThat guy gives me the creeps.\tCe type m'horripile.\nThat guy gives me the creeps.\tCe type me dégoûte.\nThat has fallen out of style.\tC'est devenu démodé.\nThat horse is very expensive.\tCe cheval coûte très cher.\nThat is a pure waste of time.\tC'est une perte totale de temps.\nThat is a very good question.\tC'est une très bonne question.\nThat is no business of yours.\tCe n'est pas ton affaire.\nThat is no business of yours.\tCe n'est pas votre affaire.\nThat is no business of yours.\tCe ne sont pas vos affaires.\nThat is no business of yours.\tC'est pas tes affaires.\nThat is what we want to know.\tC'est ce que nous voulons savoir.\nThat is what we want to know.\tC’est ce que nous voulons savoir.\nThat isn't the case in Japan.\tCe n'est pas le cas au Japon.\nThat man is completely drunk.\tCe monsieur est tout à fait ivre.\nThat message was sent by Tom.\tCe message a été envoyé par Tom.\nThat never used to bother me.\tÇa ne m'a jamais gêné.\nThat never used to bother me.\tÇa ne m'a jamais gênée.\nThat old book is a real find.\tCe vieux livre est une réelle trouvaille.\nThat problem isn't important.\tCe problème n'est pas important.\nThat reminds me of my father.\tÇa me rappelle mon père.\nThat shop has many customers.\tCe magasin a beaucoup de clients.\nThat should last three weeks.\tCela devrait durer trois semaines.\nThat should've been expected.\tCela aurait dû être prévu.\nThat sounds like a good deal.\tCela semble être une bonne affaire.\nThat sounds like a good idea.\tÇa a l'air d'être une bonne idée.\nThat sounds very interesting.\tCela semble fort intéressant.\nThat team has strong players.\tCette équipe a de bons joueurs.\nThat textbook is out of date.\tCe manuel est obsolète.\nThat tie suits you very well.\tCette cravate te va très bien.\nThat was a crazy thing to do.\tC'était dingue de faire ça.\nThat was our first encounter.\tC'était notre première rencontre.\nThat was our first encounter.\tCe fut notre première rencontre.\nThat was our first encounter.\tCe fut notre rencontre initiale.\nThat wasn't accurate, was it?\tCe n'était pas exact, si ?\nThat wasn't part of the plan.\tCela ne faisait pas partie du plan.\nThat would be almost perfect.\tCe serait presque parfait.\nThat would be unprofessional.\tCe serait peu professionnel.\nThat wouldn't be a good idea.\tCe ne serait pas une bonne idée.\nThat's a good picture of you.\tC'est une belle photo de toi.\nThat's all I was waiting for.\tC'est tout ce que j'attendais.\nThat's an interesting choice.\tC'est un choix intéressant.\nThat's because you're a girl.\tC'est parce que t'es une nana.\nThat's exactly how I want it.\tC'est exactement comme ça que je le veux.\nThat's exactly what I expect.\tC'est exactement ce que j'escompte.\nThat's exactly what I needed.\tC'est exactement ce dont j'avais besoin.\nThat's exactly what Tom said.\tC'est exactement ce que Tom a dit.\nThat's how I got to know her.\tC'est comme ça que je l'ai connue.\nThat's how most people do it.\tC'est la manière dont la plupart des gens le font.\nThat's just your imagination.\tCe n'est que votre imagination.\nThat's just your imagination.\tCe n'est que ton imagination.\nThat's my problem, not yours.\tC'est mon problème, pas le tien.\nThat's my problem, not yours.\tC'est mon problème, pas le vôtre.\nThat's none of your business.\tCela ne vous regarde pas.\nThat's not a cat. It's a dog.\tCe n'est pas un chat. c'est un chien.\nThat's not all that happened.\tCe n'est pas tout ce qui s'est produit.\nThat's not all that happened.\tCe n'est pas tout ce qui s'est passé.\nThat's not all that happened.\tCe n'est pas tout ce qui est arrivé.\nThat's not for you to decide.\tCe n'est pas à toi d'en décider.\nThat's not how I remember it.\tCe n'est pas ainsi que je me le rappelle.\nThat's not my favorite topic.\tCe n'est pas mon sujet préféré.\nThat's not really a solution.\tCe n'est pas vraiment une solution.\nThat's not really my problem.\tCe n'est pas vraiment mon problème.\nThat's not what I just heard.\tCe n'est pas ce que je viens d'entendre.\nThat's not what I understand.\tJe n'entends pas cela.\nThat's not what I was saying.\tCe n'est pas ce que j'étais en train de dire.\nThat's not what I'm here for.\tCe n'est pas pour ça que je suis ici.\nThat's the house I stayed in.\tC'est la maison dans laquelle je suis resté.\nThat's the only way to do it.\tC'est le seul moyen de le faire.\nThat's the only way to do it.\tC'est la seule façon de le faire.\nThat's the part I liked best.\tC'est la partie que j'ai préférée.\nThat's the reason she's late.\tC'est la raison pour laquelle elle est en retard.\nThat's totally irresponsible.\tC'est totalement irresponsable.\nThat's what I said all along.\tC'est ce que je disais depuis le début.\nThat's what I should've said.\tC'est que j'aurais dû dire.\nThat's what I wanted to hear.\tC'est ce que je voulais entendre.\nThat's what I was working on.\tC'est à ça que j'étais en train de travailler.\nThat's what I'd like to know.\tC'est ce que j'aimeras savoir.\nThat's what I'm trying to do.\tC'est ce que je tente de faire.\nThat's what I'm trying to do.\tC'est ce que je suis en train d'essayer de faire.\nThat's what I've always said.\tC'est ce que j'ai toujours dit.\nThat's what I've always said.\tC'est bien ce que j'ai dit depuis le départ !\nThat's what makes me nervous.\tC'est ce qui me rend nerveux.\nThat's what makes me nervous.\tC'est ce qui me rend nerveuse.\nThat's what's got me worried.\tC'est ce qui m'a causé du souci.\nThat's what's most important.\tC'est ce qui est le plus important.\nThat's where you're mistaken.\tC'est là que vous faites erreur.\nThat's where you're mistaken.\tC'est là que tu te trompes.\nThat's where you're mistaken.\tC'est là que vous vous trompez.\nThat's why I have to do this.\tC'est pourquoi il me faut le faire.\nThat's why I worry about you.\tC'est pourquoi je me fais du souci pour toi.\nThat's why I worry about you.\tC'est pourquoi je me fais du souci pour vous.\nThe Smiths are our neighbors.\tLes Smiths sont nos voisins.\nThe apple fell from the tree.\tLa pomme est tombée de l'arbre.\nThe apple fell from the tree.\tLa pomme tomba de l'arbre.\nThe attempt ended in failure.\tLa tentative s'est soldée par un échec.\nThe baby was quiet all night.\tLe bébé a été silencieux toute la nuit.\nThe bank is closed on Sunday.\tLa banque est fermée le dimanche.\nThe bear was eating an apple.\tL'ours mangeait une pomme.\nThe bike screeched to a stop.\tLe vélo s'arrêta en crissant.\nThe book is very interesting.\tL'ouvrage est très intéressant.\nThe bottle smashed to pieces.\tLa bouteille se brisa en morceaux.\nThe boy looked into the room.\tLe garçon regarda dans la pièce.\nThe bread really smells good.\tCe pain sent vraiment bon.\nThe brothers hate each other.\tCes frères se détestent.\nThe bucket was full of water.\tLe seau était plein d'eau.\nThe car is waxed and shining.\tLa voiture est cirée et toute brillante.\nThe car ran into a guardrail.\tLa voiture est rentrée dans un parapet.\nThe car replaced the bicycle.\tLa voiture a remplacé la bicyclette.\nThe car was stuck in the mud.\tLa voiture était bloquée dans la boue.\nThe cat didn't move a muscle.\tLe chat ne bougeait pas un muscle.\nThe cat is stuck in the tree.\tLe chat est coincé dans l'arbre.\nThe cat is stuck in the tree.\tLa chatte est coincée dans l'arbre.\nThe cat was licking its paws.\tLe chat se léchait les pattes.\nThe cats are afraid of water.\tLes chats craignent l'eau.\nThe chicken is a bit too dry.\tLe poulet est un peu trop sec.\nThe child's nose is bleeding.\tLe gosse saigne du nez.\nThe church bells are ringing.\tLes cloches de l'église sonnent.\nThe cliff hangs over the sea.\tLa falaise est suspendue au-dessus de la mer.\nThe cliff is almost vertical.\tLa falaise est presque verticale.\nThe concert hasn't yet begun.\tLe concert n'a pas encore commencé.\nThe conference ended at five.\tLa conférence s'est terminée à cinq heures.\nThe cost of living has risen.\tLe coût de la vie a augmenté.\nThe cost of living has risen.\tLe coût de la vie s'est élevé.\nThe criminal left footprints.\tLe criminel a laissé des traces de pas.\nThe deadline is drawing near.\tLa date limite s'approche.\nThe doctor examined the baby.\tLe médecin examina le bébé.\nThe doctor examined the baby.\tLe médecin a examiné le bébé.\nThe dog should be on a chain.\tLe chien devrait être attaché.\nThe door could not be opened.\tLa porte ne pouvait pas s'ouvrir.\nThe doors lock automatically.\tLes portes se ferment automatiquement.\nThe dress fits you very well.\tLa robe te va très bien.\nThe duke holds a lot of land.\tLe Duc possède beaucoup de terres.\nThe early bird gets the worm.\tL'avenir appartient à ceux qui se lèvent tôt.\nThe early bird gets the worm.\tLa fortune appartient à ceux qui se lèvent tôt.\nThe elevator is out of order.\tL'ascenseur est hors-service.\nThe enemy torpedoed our ship.\tL'ennemi a torpillé notre bateau.\nThe evidence is overwhelming.\tLes preuves abondent.\nThe fire started immediately.\tLe feu prit instantanément.\nThe fish aren't biting today.\tLe poisson ne mord pas aujourd'hui.\nThe flights haven't left yet.\tLes vols ne sont pas encore partis.\nThe floor must be kept clean.\tLe sol doit être conservé propre.\nThe floor must be kept clean.\tLe sol doit être gardé propre.\nThe floor must be very clean.\tLe sol doit être très propre.\nThe girl caught a small fish.\tLa fille prit un petit poisson.\nThe girl caught a small fish.\tLa fille attrapa un petit poisson.\nThe girl caught a small fish.\tLa fille a pris un petit poisson.\nThe girl caught a small fish.\tLa fille a attrapé un petit poisson.\nThe girls bought him a watch.\tLes filles lui ont acheté une montre.\nThe house looked very dismal.\tLa maison avait l'air très lugubre.\nThe ice is too hard to crack.\tLa glace est trop dure à briser.\nThe king's son was kidnapped.\tLe Dauphin fut enlevé.\nThe king's son was kidnapped.\tLe Prince fut enlevé.\nThe king's son was kidnapped.\tLe Prince a été enlevé.\nThe lawn needs to be watered.\tLa pelouse a besoin d'être arrosée.\nThe leaves fell to the earth.\tLes feuilles tombaient sur le sol.\nThe letter was signed by Tom.\tLa lettre était signée par Tom.\nThe magazines were dog-eared.\tLes magazines étaient écornés.\nThe main valve is turned off.\tLa valve principale est fermée.\nThe man died a few hours ago.\tL'homme est décédé il y a quelques heures.\nThe man was a total stranger.\tCet homme était un parfait inconnu.\nThe meeting finished at nine.\tLa fête s'est terminée à neuf heures.\nThe meeting is held annually.\tLe meeting se tient annuellement.\nThe meeting is ten days away.\tLa réunion se tient dans dix jours.\nThe meeting was all but over.\tLa réunion touchait à sa fin.\nThe meeting was all but over.\tLa réunion prenait fin.\nThe meeting was all but over.\tLa réunion était sur le point de se terminer.\nThe meeting was all but over.\tLa réunion était pour ainsi dire close.\nThe meeting's about to start.\tLa réunion est sur le point de commencer.\nThe movie hasn't started yet.\tLe film n'est pas encore démarré.\nThe movie hasn't started yet.\tLe film n'est pas encore commencé.\nThe murder remains a mystery.\tCe meurtre demeure un mystère.\nThe museum is worth visiting.\tLe musée vaut la peine d'être visité.\nThe national debt is growing.\tLa dette du pays va croissant.\nThe national debt is growing.\tLa dette du pays s'accroît.\nThe new building is enormous.\tLe nouveau bâtiment est énorme.\nThe new furniture came today.\tLes nouveaux meubles sont arrivés aujourd'hui.\nThe nurse hit a blood vessel.\tL'infirmier a tapé dans une veine.\nThe nurse hit a blood vessel.\tL'infirmière a tapé dans une veine.\nThe old man died from hunger.\tLe vieil homme est mort de faim.\nThe old man died from hunger.\tLe vieil homme mourut de faim.\nThe old man has enough money.\tLe vieil homme dispose de suffisamment d'argent.\nThe old man starved to death.\tLe vieil homme mourut de faim.\nThe pasture is full of weeds.\tLe pâturage est plein de mauvaises herbes.\nThe people are friendly here.\tLes gens sont amicaux ici.\nThe people are friendly here.\tLes gens sont sympathiques ici.\nThe place is almost deserted.\tL'endroit est presque désert.\nThe plate is made of plastic.\tL'assiette est en plastique.\nThe problem remains unsolved.\tLe problème reste à résoudre.\nThe problem should be solved.\tLe problème devrait être résolu.\nThe queen visited the museum.\tLa reine a visité le musée.\nThe queen visited the museum.\tLa reine visita le musée.\nThe reason for this is plain.\tLa raison en est claire.\nThe result was disappointing.\tLe résultat a été décevant.\nThe result was disappointing.\tLe résultat fut décevant.\nThe results were spectacular.\tLes résultats furent spectaculaires.\nThe results were spectacular.\tLes résultats ont été spectaculaires.\nThe road is jammed with cars.\tLa route était encombrée de voitures.\nThe roof leaks when it rains.\tLe toit fuit quand il pleut.\nThe scars are barely visible.\tLes cicatrices ne se voient presque pas.\nThe ship set sail for Bombay.\tLe navire fit voile pour Bombay.\nThe shop is closed on Sunday.\tLe magasin est fermé le dimanche.\nThe situation became chaotic.\tLa situation devint chaotique.\nThe situation became chaotic.\tLa situation est devenue chaotique.\nThe situation has stabilized.\tLa situation s'est stabilisée.\nThe situation seems hopeless.\tLa situation paraît sans issue.\nThe sky was bright and clear.\tLe ciel était lumineux et dégagé.\nThe story had a happy ending.\tL'histoire s'est bien finie.\nThe stream is not very swift.\tLe courant n'est pas très fort.\nThe sun gives light and heat.\tLe soleil procure lumière et chaleur.\nThe sun rises in the morning.\tLe soleil se lève au matin.\nThe sun was shining brightly.\tLe soleil brillait fort.\nThe thieves hid in the woods.\tLes voleurs se cachèrent dans les bois.\nThe time for talking is over.\tLe temps de la discussion est passé.\nThe top is turning clockwise.\tLa toupie tourne dans le sens des aiguilles d'une montre.\nThe traffic ground to a halt.\tLa circulation s'arrêta net.\nThe train left two hours ago.\tLe train est parti il y a deux heures.\nThe transition won't be easy.\tLa transition ne sera pas facile.\nThe tree fell down by itself.\tL'arbre est tombé tout seul.\nThe trees were full of birds.\tLes arbres étaient emplis d'oiseaux.\nThe truth shall set you free.\tLa vérité vous libérera.\nThe twins look exactly alike.\tLes jumeaux sont parfaitement semblables.\nThe two men were not related.\tLes deux hommes n'étaient pas parents.\nThe unrest lasted three days.\tLes troubles ont perduré pendant trois jours.\nThe unrest lasted three days.\tL'agitation a duré trois jours.\nThe wall is two meters thick.\tLe mur est épais de deux mètres.\nThe weather changed suddenly.\tLe temps changea soudain.\nThe weather changed suddenly.\tLe temps a soudain changé.\nThe weather is getting worse.\tIl fait de pire en pire.\nThe weather is getting worse.\tLe temps empire.\nThe weather is perfect today.\tAujourd'hui, le temps est parfait.\nThe weather is turning nasty.\tLe temps devient désagréable.\nThe weather is unusual today.\tLe temps est inhabituel, aujourd'hui.\nThe whole nation wants peace.\tToute la nation veut la paix.\nThe whole nation wants peace.\tLa nation entière veut la paix.\nThe wind gradually died down.\tLe vent s'est calmé progressivement.\nThe word is no longer in use.\tCe mot n'est plu usité.\nThe word is no longer in use.\tLe mot n'est plus utilisé.\nThe word is unfamiliar to me.\tCe mot ne m'est pas familier.\nThe work is not finished yet.\tLe travail n'est pas encore terminé.\nThe wound has not healed yet.\tLa blessure n'est pas encore guérie.\nThe young guy wants to drink.\tLe jeune homme veut boire.\nTheir meeting was inevitable.\tLeur rencontre était inévitable.\nTheir rooms are always clean.\tLeurs chambres sont toujours propres.\nThere are holes in the floor.\tIl y a des trous dans le sol.\nThere are only three options.\tIl n'y a que trois options.\nThere are only two days left.\tIl ne reste plus que deux jours.\nThere is a book on the table.\tIl y a un livre sur la table.\nThere is a boy near the door.\tIl y a un garçon près de la porte.\nThere is a castle in my town.\tIl y a un château dans ma ville.\nThere is a cat under the bed.\tIl y a un chat sous le lit.\nThere is a clock on the wall.\tUne horloge est accrochée au mur.\nThere is a dog on the bridge.\tIl y a un chien sur le pont.\nThere is a full moon tonight.\tCe soir, c'est la pleine lune.\nThere is a knock at the door.\tOn frappe à la porte.\nThere is a lot of work to do.\tIl y a beaucoup de travail à faire.\nThere is a threat of a storm.\tIl y a une menace d'orage.\nThere is almost no furniture.\tIl n'y a presque pas de meubles.\nThere is going to be a storm.\tIl va y avoir une tempête.\nThere is nothing like a walk.\tIl n'y a rien de mieux qu'une promenade.\nThere is only one bath towel.\tIl n'y a qu'une serviette de toilette.\nThere is only one bath towel.\tIl n'y a qu'une essuie.\nThere is only one bath towel.\tIl n'y a qu'une serviette de bain.\nThere is strength in numbers.\tIl y a de la force dans les nombres.\nThere was a cat on the table.\tIl y avait un chat sur la table.\nThere was a church here once.\tUn jour, il y avait ici une église.\nThere was no one left but me.\tIl ne restait personne d'autre que moi.\nThere was no one left but me.\tIl n'y avait plus personne sauf moi.\nThere was no one to stop Tom.\tIl n'y avait personne pour arrêter Tom.\nThere wasn't a soul in sight.\tIl n'y avait pas âme qui vive en vue.\nThere wasn't a soul in sight.\tIl n'y avait personne en vue.\nThere won't be anything left.\tIl ne restera rien.\nThere's a math test tomorrow.\tDemain, il y a un contrôle de maths.\nThere's a park near my house.\tIl y a un parc près de chez moi.\nThere's a park near my house.\tPrès de ma maison il y a un parc.\nThere's a possibility of war.\tIl y a une possibilité de guerre.\nThere's a possibility of war.\tLa possibilité d'une guerre existe.\nThere's a rumor going around.\tUne rumeur circule.\nThere's a rumor going around.\tIl y a une rumeur qui circule.\nThere's a rumor going around.\tIl y a une rumeur qui court.\nThere's a small price to pay.\tIl y a un faible prix à payer.\nThere's another meaning, too.\tIl y a également une autre signification.\nThere's more to it than that.\tIl recèle davantage que cela.\nThere's no minimum wage here.\tIl n'y a pas de salaire minimum, ici.\nThere's no need to apologize.\tVous n'avez pas besoin de vous excuser.\nThere's no sign of infection.\tIl n'y a pas de signe d'infection.\nThere's not a big difference.\tIl n'y a pas une grande différence.\nThere's room for improvement.\tIl y a de la place pour les améliorations.\nThere's somebody at the door.\tIl y a quelqu'un à la porte.\nThere's still a lot to learn.\tIl y a encore beaucoup à apprendre.\nThere's usually someone here.\tIl y a généralement quelqu'un ici.\nThese hats are the same size.\tCes chapeaux sont de la même taille.\nThese pictures are beautiful.\tCes photos sont magnifiques.\nThese trousers are too large.\tCe pantalon est trop grand.\nThese trousers need pressing.\tCe pantalon a besoin d'être repassé.\nThey abandoned their country.\tIls abandonnèrent leur pays.\nThey adopted the little girl.\tIls ont adopté la petite fille.\nThey agreed to work together.\tIls s'accordèrent pour travailler ensemble.\nThey agreed to work together.\tElles s'accordèrent pour travailler ensemble.\nThey agreed to work together.\tIls s'accordèrent pour travailler de concert.\nThey are eating their apples.\tIls sont en train de manger leurs pommes.\nThey are much taller than us.\tIls sont beaucoup plus grands que nous.\nThey are not my real parents.\tIls ne sont pas mes vrais parents.\nThey are running in the park.\tIls courent dans le parc.\nThey are running in the park.\tElles courent dans le parc.\nThey are talking about music.\tIls parlent de musique.\nThey assigned the task to us.\tIls nous ont affecté la tâche.\nThey began to climb the hill.\tIls commencèrent à grimper sur la colline.\nThey bought a box of cookies.\tIls ont acheté une boîte de cookies.\nThey bought a box of cookies.\tIls ont acheté une boîte de biscuits.\nThey closed the shop at five.\tLe magasin a fermé a cinq heures.\nThey come from the same town.\tIls viennent de la même ville.\nThey come from the same town.\tElles viennent de la même ville.\nThey crawled out of the cave.\tIls rampèrent hors de la grotte.\nThey declined our invitation.\tIls déclinèrent notre invitation.\nThey did not keep their word.\tElles n'ont pas tenu parole.\nThey did not keep their word.\tIls n'ont pas tenu parole.\nThey did not keep their word.\tElles ne tinrent pas parole.\nThey did not keep their word.\tIls ne tinrent pas parole.\nThey did what they were told.\tIls firent ce qu'on leur avait dit.\nThey did what they were told.\tElles firent ce qu'on leur avait dit.\nThey did what they were told.\tIls ont fait ce qu'on leur avait dit.\nThey did what they were told.\tElles ont fait ce qu'on leur avait dit.\nThey died on the battlefield.\tIls moururent sur le champ de bataille.\nThey each received a present.\tIls reçurent tous deux un présent.\nThey each received a present.\tElles reçurent toutes deux un présent.\nThey each received a present.\tChacune d'elles a reçu un cadeau.\nThey each received a present.\tChacun d'eux reçut un cadeau.\nThey each received a present.\tChacune d'elles reçut un cadeau.\nThey each received a present.\tChacune d'elles reçut un présent.\nThey each received a present.\tIls reçurent tous trois un présent.\nThey each received a present.\tElles reçurent toutes trois un présent.\nThey forgot to lock the door.\tIls ont oublié de fermer la porte à clé.\nThey forgot to lock the door.\tElles ont oublié de fermer la porte à clé.\nThey forgot to lock the door.\tIls ont oublié de verrouiller la porte.\nThey forgot to lock the door.\tElles ont oublié de verrouiller la porte.\nThey forgot to lock the door.\tIls oublièrent de fermer la porte à clé.\nThey forgot to lock the door.\tElles oublièrent de fermer la porte à clé.\nThey forgot to lock the door.\tElles oublièrent de verrouiller la porte.\nThey forgot to lock the door.\tIls oublièrent de verrouiller la porte.\nThey formed a new government.\tIls ont formé un nouveau gouvernement.\nThey had a heated discussion.\tIls eurent une chaude discussion.\nThey had a heated discussion.\tElles eurent une chaude discussion.\nThey had a heated discussion.\tIls ont eu une chaude discussion.\nThey had a heated discussion.\tElles ont eu une chaude discussion.\nThey have nothing against it.\tIls n'ont rien contre.\nThey have nothing against it.\tElles n'ont rien contre.\nThey have their own troubles.\tIls ont leurs propres problèmes.\nThey have to be very careful.\tIls doivent faire très attention.\nThey invited me to the party.\tIls m'ont invité à la soirée.\nThey just taught me to swear.\tIls m'ont appris à jurer.\nThey left it under the table.\tIls l'ont laissé sous la table.\nThey live on the floor below.\tIls vivent à l'étage en-dessous.\nThey live on the floor below.\tElles vivent à l'étage en-dessous.\nThey must work 8 hours a day.\tIls doivent travailler 8 heures par jour.\nThey painted the fence green.\tIls ont peint la clôture en vert.\nThey received a box of books.\tIls ont reçu une caisse de livres.\nThey received a box of books.\tElles ont reçu une caisse de livres.\nThey resolved to work harder.\tIls décidèrent de travailler avec davantage d'application.\nThey shouldn't be doing that.\tIls ne devraient pas faire cela.\nThey shouldn't be doing that.\tElles ne devraient pas faire cela.\nThey signed the peace treaty.\tIls signèrent le traité de paix.\nThey stated their objections.\tIls exprimèrent leurs réserves.\nThey think I'm a millionaire.\tIls pensent que je suis millionnaire.\nThey think I'm a millionaire.\tElles pensent que je suis millionnaire.\nThey tried to swim to safety.\tIls tentèrent de nager vers la sécurité.\nThey wanted something better.\tIls voulaient quelque chose de mieux.\nThey wanted to steal the car.\tIls voulaient voler la voiture.\nThey wanted to steal the car.\tElles voulaient voler la voiture.\nThey were drinking champagne.\tIls buvaient du champagne.\nThey were forced to withdraw.\tIls furent forcés de se retirer.\nThey will keep their promise.\tIls tiendront leur promesse.\nThey won the kissing contest.\tIls ont gagné le concours de baisers.\nThey won the kissing contest.\tElles ont gagné le concours de baisers.\nThey worshiped him as a hero.\tIls le vénéraient comme un héros.\nThey're against animal abuse.\tIls militent contre les violences aux animaux.\nThey're dragging their heels.\tIls traînent les pieds.\nThey're going to have a look.\tIls vont jeter un coup d'œil.\nThey're going to torture Tom.\tIls vont torturer Tom.\nThey're going to torture Tom.\tElles vont torturer Tom.\nThey've been at it for hours.\tIls sont dessus depuis des heures.\nThey've been at it for hours.\tIls y ont passé des heures.\nThey've been at it for hours.\tElles y ont passé des heures.\nThieves plundered the museum.\tDes voleurs ont pillé le musée.\nThings are about to get ugly.\tLes choses sont sur le point de dégénérer.\nThings can't be all that bad.\tLes choses ne peuvent pas être mauvaises à ce point.\nThings happened very quickly.\tLes choses se sont déroulées très rapidement.\nThings went great last night.\tLes choses se sont bien déroulées, hier soir.\nThis armchair is comfortable.\tCe fauteuil est confortable.\nThis better not happen again.\tIl serait préférable que ça ne se produise plus.\nThis book sold well in Japan.\tCe livre s'est bien vendu au Japon.\nThis bread is hard as a rock.\tCe pain est aussi dur qu'une pierre.\nThis can't possibly go wrong.\tÇa ne peut pas foirer.\nThis car has a good warranty.\tCette voiture est dotée d'une bonne garantie.\nThis chair is too low for me.\tCette chaise est trop basse pour moi.\nThis chair needs to be fixed.\tCette chaise a besoin d'être réparée.\nThis classroom is very large.\tCette salle de classe est très grande.\nThis cloth feels like velvet.\tCette étoffe fait l'effet du velours.\nThis cloth feels like velvet.\tCette étoffe fait, au toucher, l'effet du velours.\nThis cloth feels like velvet.\tCette étoffe a le toucher du velours.\nThis dictionary is expensive.\tCe dictionnaire est cher.\nThis doesn't change anything.\tÇa ne change pas quoi que ce soit.\nThis door leads to the study.\tCette porte mène au bureau.\nThis dress fits me perfectly.\tCette robe me va à ravir.\nThis dress fits me very well.\tCette robe me va à ravir.\nThis dress is a good bargain.\tCette robe est une bonne affaire.\nThis dress looks good on you.\tCette robe vous va bien.\nThis dress looks good on you.\tCette robe te va bien.\nThis fashion has had its day.\tCette mode est surannée.\nThis fashion has had its day.\tCette mode a connu de beaux jours.\nThis hall was full of people.\tCe hall était plein de monde.\nThis hat is too tight for me.\tCe chapeau est trop serré pour moi.\nThis hat's too small for you.\tCe chapeau est trop petit pour toi.\nThis house is too big for us.\tCette maison est trop grande pour nous.\nThis is a book about England.\tC'est un livre sur l'Angleterre.\nThis is a book about England.\tC'est un ouvrage traitant de l'Angleterre.\nThis is a difficult question.\tC'est une question difficile.\nThis is a heartwarming movie.\tC'est un film qui réchauffe le cœur.\nThis is a kind of watermelon.\tC'est une variété de pastèque.\nThis is a very good question.\tC'est une très bonne question.\nThis is a very rare specimen.\tC'est un exemplaire très rare.\nThis is a very serious issue.\tC'est un très sérieux problème.\nThis is absolutely wonderful.\tC'est absolument merveilleux.\nThis is all I can do for you.\tC'est tout ce que je peux faire pour toi.\nThis is an unusual situation.\tC'est une situation inhabituelle.\nThis is an unusual situation.\tC'est une situation extraordinaire.\nThis is going to be fabulous.\tCeci va être fabuleux.\nThis is kind of embarrassing.\tC'est un peu gênant.\nThis is kind of embarrassing.\tC'est assez embarrassant.\nThis is my daughter's school.\tC'est l'école de ma fille.\nThis is not a dating website.\tCe n'est pas un site de rencontres.\nThis is the American Embassy.\tC'est l'ambassade américaine.\nThis is the most interesting.\tC'est le plus intéressant.\nThis is the only alternative.\tC'est la seule possibilité.\nThis is the only book I have.\tC'est le seul livre que j'ai.\nThis is the perfect location.\tC'est l'endroit idéal.\nThis is the very best method.\tCeci est la meilleure méthode.\nThis is totally unacceptable.\tC'est totalement inacceptable.\nThis is very important to us.\tC'est très important pour nous.\nThis is what we want to know.\tC'est ce que nous voulons savoir.\nThis is what we want to know.\tC’est ce que nous voulons savoir.\nThis is where it all happens.\tC'est ici que tout se passe.\nThis is where the fun begins.\tC'est là qu'on commence à s'amuser.\nThis isn't at all surprising.\tCe n'est pas du tout surprenant.\nThis isn't surprising at all.\tCe n'est pas du tout surprenant.\nThis just doesn't make sense.\tCeci n'a tout simplement pas de sens.\nThis may be your last chance.\tC'est peut-être ta dernière chance.\nThis morning, I saw an angel.\tCe matin, j'ai vu un ange.\nThis museum is worth a visit.\tCe musée vaut la visite.\nThis must never happen again.\tCeci ne doit jamais se reproduire.\nThis photo was taken in Nara.\tCette photo a été prise à Nara.\nThis problem seems difficult.\tCe problème paraît difficile.\nThis really is great weather.\tC'est vraiment un temps magnifique.\nThis road leads to Hong Kong.\tCette route mène à Hong Kong.\nThis road leads to the river.\tCe chemin mène à la rivière.\nThis room is air-conditioned.\tCette pièce a l'air conditionné.\nThis room is air-conditioned.\tCette pièce dispose de l'air conditionné.\nThis seems kind of expensive.\tÇa a l'air plutôt cher.\nThis sentence has five words.\tCette phrase a cinq mots.\nThis sentence has five words.\tCette phrase possède cinq mots.\nThis shirt costs ten dollars.\tCette chemise coûte dix dollars.\nThis sounds like a good idea.\tÇa semble être une bonne idée.\nThis sounds very interesting.\tÇa a l'air très intéressant.\nThis sounds very interesting.\tCela semble fort intéressant.\nThis student's books are new.\tLes livres de cet étudiant sont neufs.\nThis tea is too hot to drink.\tCe thé est trop chaud pour être bu.\nThis television set is heavy.\tCe téléviseur est lourd.\nThis type of cat has no tail.\tCette sorte de chat ne possède pas de queue.\nThis typewriter doesn't work.\tCette machine à écrire ne fonctionne pas.\nThis watch is a real bargain.\tCette montre est vraiment une bonne affaire.\nThis water is a little salty.\tCette eau est un peu salée.\nThis water is a little salty.\tCette eau est quelque peu salée.\nThis will help keep you warm.\tÇa vous aidera à vous garder chaud.\nThis will help keep you warm.\tÇa t'aidera à te garder chaud.\nThis will only take a second.\tÇa ne prendra qu'une seconde.\nThis young couple is in love.\tCe jeune couple est amoureux.\nThose are our teachers' cars.\tCe sont les bagnoles de nos profs.\nThose are very famous people.\tCe sont des gens très célèbres.\nTime has come to get serious.\tLe temps est venu d'être sérieux.\nToday I have a good appetite.\tAujourd'hui, j'ai bon appétit.\nToday is a very exciting day.\tAujourd'hui est une journée passionnante.\nToday, we turn ten years old.\tAujourd'hui nous avons dix ans.\nTom and I work well together.\tTom et moi travaillons bien ensemble.\nTom and Mary are at work now.\tTom et Mary sont au travail pour le moment.\nTom and Mary are still young.\tTom et Marie sont toujours jeunes.\nTom and Mary are still young.\tTom et Marie sont encore jeunes.\nTom and Mary are still young.\tTom et Mary sont toujours jeunes.\nTom and Mary are still young.\tTom et Mary sont encore jeunes.\nTom and Mary are very hungry.\tTom et Marie sont très affamés.\nTom and Mary are very hungry.\tTom et Marie ont grand faim.\nTom and Mary aren't home yet.\tTom et Marie ne sont pas encore à la maison.\nTom and Mary aren't home yet.\tTom et Mary ne sont pas encore à la maison.\nTom and Mary aren't home yet.\tTom et Mary ne sont pas encore chez eux.\nTom and Mary aren't home yet.\tTom et Marie ne sont pas encore chez eux.\nTom and Mary don't get along.\tTom et Mary ne s'entendent pas.\nTom and Mary stopped kissing.\tTom et Marie ont arrêté de se donner des baisers.\nTom and Mary were frightened.\tTom et Mary étaient effrayés.\nTom asked Mary for some help.\tTom a demandé à Mary de l'aider.\nTom asked me if I had a plan.\tTom m'a demandé si j'avais un plan.\nTom asked me if I had a plan.\tTom me demanda si j'avais un plan.\nTom asked me not to help him.\tTom m'a demandé de ne pas l'aider.\nTom asked me to cut his hair.\tTom m'a demandé de lui couper les cheveux.\nTom ate all of the chocolate.\tTom a mangé tout le chocolat.\nTom began flirting with Mary.\tTom a commencé à flirter avec Marie.\nTom began to brush his teeth.\tTom commença à se brosser les dents.\nTom began to brush his teeth.\tTom a commencé à se brosser les dents.\nTom bought a house in Boston.\tTom a acheté une maison à Boston.\nTom bought a house in Boston.\tTom acheta une maison à Boston.\nTom called Mary this morning.\tTom a appelé Mary ce matin.\nTom can do anything he wants.\tTom peut faire tout ce qu'il veut.\nTom can't be older than Mary.\tTom ne peut pas être plus vieux que Mary.\nTom can't have gone very far.\tTom n'a pas pu aller bien loin.\nTom can't swim very well yet.\tTom ne sait pas encore très bien nager.\nTom carefully opened the box.\tThomas ouvrit la boite avec attention.\nTom claimed to be Mary's son.\tTom a prétendu être le fils de Mary.\nTom comes from a good family.\tTom vient d'une bonne famille.\nTom concentrated on his work.\tTom se concentra sur son travail.\nTom decided to go home early.\tTom décida de rentrer tôt.\nTom decided to go home early.\tTom a décidé de rentrer chez lui tôt.\nTom decided to take a chance.\tTom a décidé de prendre le risque.\nTom didn't do anything wrong.\tTom n'a rien fait de mal.\nTom didn't have a lot to say.\tTom n'avait pas beaucoup à dire.\nTom didn't know who Mary was.\tTom ne savait pas qui était Marie.\nTom didn't see the stop sign.\tTom n'a pas vu le panneau de stop.\nTom didn't want to kiss Mary.\tTom ne voulait pas embrasser Mary.\nTom didn't want to kiss Mary.\tTom n'a pas voulu embrasser Mary.\nTom died in Autralia in 2013.\tTom est mort en Australie, en 2013.\nTom died in Autralia in 2013.\tTom mourut en Australie, en 2013.\nTom died on Monday in Boston.\tTom est mort lundi, à Boston.\nTom does not want to be late.\tTom ne veut pas être en retard.\nTom doesn't have any enemies.\tTom n'a pas d'ennemis.\nTom doesn't know how to swim.\tTom ne sait pas nager.\nTom doesn't know what to say.\tTom ne sait pas quoi dire.\nTom doesn't know where to go.\tTom ne sait pas où aller.\nTom doesn't really like dogs.\tTom n'aime pas vraiment les chiens.\nTom doesn't remember my name.\tTom ne se rappelle pas de mon nom.\nTom doesn't smile very often.\tTom ne sourit pas très souvent.\nTom doesn't want to go alone.\tTom ne veut pas y aller seul.\nTom doesn't want us to leave.\tTom ne veut pas que nous partions.\nTom eats less than Mary does.\tTom mange moins que Mary.\nTom got himself another beer.\tTom s'est pris une autre bière.\nTom got stung by a jellyfish.\tTom a été piqué par une méduse.\nTom had no idea how to do it.\tTom n'avait aucune idée de comment le faire.\nTom has a healthy life style.\tTom a un mode de vie sain.\nTom has a soft spot for Mary.\tTom a un faible pour Marie.\nTom has a very stressful job.\tTom a un job très stressant.\nTom has a voracious appetite.\tTom a un appétit vorace.\nTom has been very good to me.\tTom a été très bon pour moi.\nTom has been very respectful.\tTom a été très respectueux.\nTom has done it enough times.\tTom l'a déjà fait suffisamment de fois.\nTom has done something wrong.\tTom a fait quelque chose de mal.\nTom has more books than Mary.\tTom a plus de livres que Marie.\nTom has never had much money.\tTom n'a jamais eu beaucoup d'argent.\nTom has no idea where we are.\tTom n'a aucune idée de là où nous sommes.\nTom has no problem with that.\tTom n'a pas de problème avec ça.\nTom hasn't been married long.\tTom n'est pas marié depuis longtemps.\nTom hasn't given us anything.\tTom ne nous a rien donné.\nTom heard everything we said.\tTom a entendu tout ce que nous disions.\nTom helped Mary dye her hair.\tTom a aidé Mary a se teindre les cheveux.\nTom ignored Mary all morning.\tTom a ignoré Mary toute la matinée.\nTom is a high school student.\tTom est lycéen.\nTom is a professional killer.\tTom est un tueur professionnel.\nTom is a very strange person.\tTom est une personne très étrange.\nTom is about as tall as Mary.\tTom est à peu près aussi grand que Marie.\nTom is almost as old as Mary.\tTom a presque le même âge que Marie.\nTom is an excellent marksman.\tTom est un excellent tireur.\nTom is as tall as his father.\tTom est aussi grand que son père.\nTom is at home with his wife.\tTom est chez lui avec sa femme.\nTom is back in his apartment.\tTom est de retour dans son appartement.\nTom is eager to talk to Mary.\tTom est impatient de parler à Mary.\nTom is having a heart attack.\tTom a une crise cardiaque.\nTom is in critical condition.\tTom est dans un état critique.\nTom is in need of a vacation.\tTom a besoin de vacances.\nTom is listening to his iPod.\tTom est en train d’écouter son iPod.\nTom is more famous than I am.\tTom est plus célèbre que moi.\nTom is more famous than I am.\tTom est plus célèbre que je ne le suis.\nTom is much fatter than Mary.\tTom est bien plus gros que Marie.\nTom is not my friend anymore.\tTom n'est plus mon ami.\nTom is not my friend anymore.\tTom n'est plus mon copain.\nTom is only thirty years old.\tTom a seulement trente ans.\nTom is quite straightforward.\tTom est très franc.\nTom is really acting strange.\tTom agit vraiment bizarrement.\nTom is really acting strange.\tTom agit vraiment étrangement.\nTom is really busy, isn't he?\tTom est très occupé, n'est-ce pas ?\nTom is really fast, isn't he?\tTom est très rapide, n'est-ce pas ?\nTom is still in the bathroom.\tTom est encore dans la salle de bain.\nTom is still in the bathroom.\tTom est toujours dans la salle de bain.\nTom is swimming in the river.\tTom nage dans la rivière.\nTom is taking his final exam.\tTom passe son examen de fin d'études.\nTom is very afraid of snakes.\tTom a très peur des serpents.\nTom is very proud of his son.\tTom est très fier de son fils.\nTom is violent and dangerous.\tTom est violent et dangereux.\nTom isn't a Japanese citizen.\tTom n'est pas citoyen japonais.\nTom isn't able to come today.\tTom est dans l'incapacité de venir aujourd'hui.\nTom isn't able to come today.\tTom ne peut pas venir aujourd'hui.\nTom isn't afraid of anything.\tTom n'a peur de rien.\nTom jumped out of the window.\tTom s'est défenestré.\nTom kissed Mary on the cheek.\tTom embrassa Mary sur la joue.\nTom knew that Mary loved him.\tTom savait que Mary l'aimait.\nTom knew there was a problem.\tTom savait qu'il y avait un problème.\nTom knows that I lied to him.\tTom sait que je lui ai menti.\nTom leaned down to kiss Mary.\tTom se pencha pour embrasser Mary.\nTom likes to climb the trees.\tTom aime grimper aux arbres.\nTom likes to go to the beach.\tTom aime aller à la plage.\nTom looked out of the window.\tTom regarda par la fenêtre.\nTom looks like an accountant.\tTom ressemble à un comptable.\nTom lost weight very quickly.\tTom a perdu du poids très rapidement.\nTom made some scrambled eggs.\tTom a fait des œufs brouillés.\nTom may do whatever he wants.\tIl se peut que Tom fasse tout ce qu'il veut.\nTom needs open heart surgery.\tTom a besoin d'une opération à cœur ouvert.\nTom needs to be more careful.\tTom doit être plus prudent.\nTom never knew Mary was rich.\tTom n'a jamais su que Mary était riche.\nTom never really got over it.\tTom ne s'en est jamais vraiment remis.\nTom never would've done this.\tTom n'aurait jamais fait ça.\nTom often stays up all night.\tTom reste souvent éveillé toute la nuit.\nTom often thought about Mary.\tTom a souvent pensé à Mary.\nTom often thought about Mary.\tTom pensait souvent à Mary.\nTom ought to stop doing that.\tTom devrait arrêter de faire cela.\nTom owes Mary a lot of money.\tTom doit beaucoup d'argent à Mary.\nTom owes Mary thirty dollars.\tTom doit trente dollars à Mary.\nTom played golf last weekend.\tTom a joué au golf le week-end dernier.\nTom plays golf every weekend.\tTom joue au golf chaque week-end.\nTom poured milk into the cup.\tTom versa du lait dans la tasse.\nTom pretended to be Canadian.\tTom a prétendu être Canadien.\nTom put on his coat and left.\tTom enfila son manteau et partit.\nTom put on his coat and left.\tTom a mis son manteau et est parti.\nTom put the sign to the wall.\tTom a mis le panneau au mur.\nTom rarely wears dark colors.\tTom porte rarement des couleurs sombres.\nTom reads the New York Times.\tTom lit le New York Times.\nTom really loves his country.\tTom aime vraiment son pays.\nTom refused to pay his bills.\tTom refusa de payer ses factures.\nTom refused to sign his name.\tTom a refusé de signer de son nom.\nTom rushed out of his office.\tTom se précipita hors de son bureau.\nTom said Mary did a good job.\tTom a dit que Mary faisait du bon travail.\nTom said he enjoyed the show.\tTom a dit qu'il a aimé le spectacle.\nTom said that he was thirsty.\tTom a dit qu'il avait soif.\nTom sat at the kitchen table.\tTom s'assit à la table de la cuisine.\nTom says he'll be a bit late.\tTom dit qu'il sera un peu en retard.\nTom says that he detests war.\tTom dit qu'il déteste la guerre.\nTom seems to be contributing.\tTom a l'air de contribuer.\nTom seems to be contributing.\tTom semble contribuer.\nTom seems very distant today.\tTom a l'air très distant aujourd'hui.\nTom sent Mary a text message.\tTom a envoyé un texto à Marie.\nTom should do what Mary says.\tTom devrait faire ce que Mary dit.\nTom shouldn't have told Mary.\tTom n'aurait pas dû le dire à Mary.\nTom showed Mary John's photo.\tTom a montré la photo de John à Mary.\nTom showed me Mary's picture.\tTom m'a montré la photo de Mary.\nTom sold his house in Boston.\tTom a vendu sa maison de Boston.\nTom speaks several languages.\tTom parle plusieures langues.\nTom still doesn't believe it.\tTom n'y croit toujours pas.\nTom still doesn't understand.\tTom ne comprend toujours pas.\nTom suddenly stopped talking.\tTom cessa soudainement de parler.\nTom talked to Mary yesterday.\tTom a parlé à Mary hier.\nTom thought Mary could do it.\tTom pensait que Mary pourrait le faire.\nTom thought Mary was kidding.\tTom pensait que Marie plaisantait.\nTom told Mary to stop eating.\tTom a dit à Mary d'arrêter de manger.\nTom told them not to do that.\tTom leur a dit de ne pas faire ça.\nTom told us to take our time.\tTom nous a dit de prendre notre temps.\nTom vanished without a trace.\tTom disparut sans laisser de traces.\nTom vanished without a trace.\tTom a disparu sans laisser de traces.\nTom waited more than an hour.\tTom a attendu plus d'une heure.\nTom walked across the street.\tTom traversa la rue.\nTom wanted to see Mary happy.\tTom voulait voir Marie heureuse.\nTom wanted to stop and think.\tTom voulait s'arrêter et réfléchir.\nTom wanted to tell the truth.\tTom voulait dire la vérité.\nTom wanted to wash his hands.\tTom voulait se laver les mains.\nTom wants this room spotless.\tTom veut cette chambre impeccable.\nTom wants to become a priest.\tTom veut devenir prêtre.\nTom wants to go to Australia.\tTom veut aller en Australie.\nTom wants to go to the beach.\tTom veut aller à la plage.\nTom was dressed all in black.\tTom était habillé tout en noir.\nTom was hiding behind a tree.\tTom se cachait derrière un arbre.\nTom was in Boston last month.\tTom était à Boston le mois dernier.\nTom was like a brother to me.\tTom était comme un frère pour moi.\nTom was stabbed in the chest.\tTom a été poignardé dans la poitrine.\nTom was the one who found me.\tTom fut celui qui me trouva.\nTom was wearing a brown coat.\tTom portait un manteau marron.\nTom wasn't at Mary's funeral.\tTom n'était pas à l'enterrement de Mary.\nTom wasn't thinking straight.\tTom n'avait pas les idées en place.\nTom went back to his bedroom.\tTom retourna dans sa chambre.\nTom went back to his bedroom.\tTom est retourné dans sa chambre.\nTom went into the room first.\tTom entra dans la pièce en premier.\nTom went into the room first.\tTom entra dans la pièce le premier.\nTom went to church with Mary.\tTom est allé à l'église avec Marie.\nTom went with Mary to Boston.\tTom est allé à Boston avec Mary.\nTom will make a good teacher.\tTom sera un excellent professeur.\nTom will never agree to that.\tTom n'acceptera jamais cela.\nTom will never agree to that.\tTom ne sera jamais d'accord pour cela.\nTom will pay for what he did.\tTom paiera pour ce qu'il a fait.\nTom won a large sum of money.\tTom a gagné une grosse somme d'argent.\nTom won't be back for a week.\tTom ne reviendra pas avant une semaine.\nTom won't bother you anymore.\tTom ne vous ennuiera plus.\nTom's behavior infuriated me.\tLe comportement de Tom m'a rendue furieuse.\nTom's behavior infuriated me.\tLe comportement de Tom m'a exaspéré.\nTom's birthday was yesterday.\tL'anniversaire de Tom était hier.\nTom's body has been cremated.\tLe corps de Tom a été incinéré.\nTom's boss is very demanding.\tLe patron de Tom est très exigeant.\nTom's boss is very demanding.\tLa patronne de Tom est très exigeante.\nTom's eyelids were half open.\tLes paupières de Tom étaient à moitié ouvertes.\nTom's father is an alcoholic.\tLe père de Tom est alcoolique.\nTom's response was immediate.\tLa réponse de Tom fut immédiate.\nTomorrow will be another day.\tDemain sera un autre jour.\nToo many sweets make you fat.\tTrop de sucreries font grossir.\nToo many sweets make you fat.\tTrop de sucreries vous rendent gros.\nToo many sweets make you fat.\tTrop de sucreries te rendent gros.\nTraveling is easy these days.\tVoyager est aisé, de nos jours.\nTraveling is easy these days.\tVoyager est facile, de nos jours.\nTrue friendship is priceless.\tLa véritable amitié est inappréciable.\nTurn down the volume, please.\tBaissez le volume, je vous prie.\nTurn left at the first light.\tTournez à gauche au premier feu.\nTurn left at the first light.\tTourne vers la gauche au premier feu.\nTurn left at the next corner.\tTourne à gauche au coin suivant.\nTurn the radio down a little.\tBaisse un peu la radio.\nTwenty people died in a fire.\tVingt personnes sont mortes dans un incendie.\nTwo cars were in an accident.\tDeux voitures ont été impliquées dans un accident.\nVariety is the spice of life.\tLa diversité est le piment de la vie.\nVisiting Tom was a good idea.\tRendre visite à Tom était une bonne idée.\nWait here till he comes back.\tAttendez ici jusqu'à ce qu'il revienne.\nWait here till he comes back.\tAttends ici jusqu'à ce qu'il revienne.\nWait here. I'll be back soon.\tAttends ici. Je reviendrai bientôt.\nWait here. I'll be back soon.\tAttendez ici. Je reviendrai bientôt.\nWait. I can't walk that fast.\tAttends. Je ne peux pas marcher aussi vite.\nWait. I can't walk that fast.\tAttendez. Je ne peux pas marcher aussi vite.\nWas he in Hokkaido last year?\tÉtait-il à Hokkaido l'année dernière ?\nWas there a book on the desk?\tY avait-il un livre sur le bureau ?\nWas there anyone else around?\tY avait-il qui que ce soit d'autre aux alentours ?\nWas there anyone else around?\tY avait-il qui que ce soit d'autre dans les environs ?\nWas there anyone else around?\tQui que ce soit d'autre se trouvait-il alentour ?\nWas this man threatening you?\tCet homme vous menaçait-il ?\nWas this man threatening you?\tCet homme te menaçait-il ?\nWash your hands before meals.\tLavez-vous les mains avant les repas.\nWatch out, the man has a gun.\tAttention, l'homme a un pistolet.\nWe actually saw the accident.\tNous avons réellement vu l'accident.\nWe all need to stay together.\tNous avons tous besoin de rester unis.\nWe all need to stay together.\tNous avons toutes besoin de rester unies.\nWe all need to work together.\tNous avons tous besoin de travailler ensemble.\nWe all need to work together.\tIl nous faut tous travailler ensemble.\nWe appreciate your hard work.\tNous apprécions ton dur labeur.\nWe appreciate your hard work.\tNous apprécions votre dur labeur.\nWe are going to have a storm.\tNous allons essuyer une tempête.\nWe are in favor of your plan.\tNous sommes en faveur de votre plan.\nWe are liable for the damage.\tNous sommes responsables en cas de dégâts.\nWe are not going on vacation.\tNous n'allons pas en vacances.\nWe arrived there before noon.\tNous y arrivâmes avant midi.\nWe booked seats for the play.\tNous avons réservé les places pour la pièce de théâtre.\nWe both know Tom is innocent.\tNous savons tous les deux que Tom est innocent.\nWe both want to go to Boston.\tNous voulons tous deux nous rendre à Boston.\nWe can rely on his judgement.\tNous pouvons nous fier à son jugement.\nWe can't do this without you.\tNous ne pouvons le faire sans vous.\nWe can't do this without you.\tNous ne pouvons le faire sans toi.\nWe can't do this without you.\tNous n'arrivons pas à le faire sans vous.\nWe can't do this without you.\tNous n'arrivons pas à le faire sans toi.\nWe can't ignore this problem.\tNous ne pouvons pas ignorer ce problème.\nWe can't live without oxygen.\tNous ne pouvons pas vivre sans oxygène.\nWe can't trust what she says.\tNous ne pouvons nous fier à ce qu'elle dit.\nWe can't waste even a minute.\tNous ne pouvons pas perdre ne serait-ce qu'une minute.\nWe charge a commission of 3%.\tNous facturons une commission de 3%.\nWe crossed the river by boat.\tOn a traversé la rivière par bateau.\nWe did nothing in particular.\tNous n'avons rien fait de spécial.\nWe didn't get paid this week.\tNous n'avons pas été payés, cette semaine.\nWe didn't get paid this week.\tNous n'avons pas été payées, cette semaine.\nWe didn't give them a choice.\tOn ne leur a guère laissé le choix.\nWe don't have any bread left.\tIl ne nous reste plus de pain.\nWe don't have much in common.\tNous n'avons pas grand-chose en commun.\nWe don't have much more time.\tNous n'avons plus beaucoup de temps.\nWe don't have this in Europe.\tNous ne disposons pas de cela en Europe.\nWe don't have this in Europe.\tNous ne connaissons pas cela en Europe.\nWe don't have time to debate.\tNous n'avons pas le temps de débattre.\nWe don't know the answer yet.\tOn ne sait pas encore la réponse.\nWe found all the boxes empty.\tNous avons trouvé toutes les caisses vides.\nWe found all the boxes empty.\tNous avons trouvé toutes les boîtes vides.\nWe found the boy fast asleep.\tNous avons trouvé ce garçon plongé dans un sommeil profond.\nWe go to see her twice a day.\tNous allons la voir deux fois par jour.\nWe got caught in a rainstorm.\tNous avons été pris dans une tempête de pluie.\nWe got off on the wrong foot.\tNous démarrâmes sur le mauvais pied.\nWe got off on the wrong foot.\tNous jouîmes sur le mauvais pied.\nWe got to the station at six.\tNous sommes arrivés à la gare à 6 heures.\nWe had better not mention it.\tNous ferions mieux de ne pas le mentionner.\nWe have a colleague in Spain.\tNous avons un collègue en Espagne.\nWe have an open relationship.\tNous avons des relations ouvertes.\nWe have little time to waste.\tNous avons peu de temps à perdre.\nWe have precious little time.\tIl nous reste peu de temps.\nWe have precious little time.\tOn a très peu de temps.\nWe have the opposite problem.\tNous avons le problème inverse.\nWe have to give Tom a chance.\tNous devons donner une chance à Tom.\nWe lead a very ordinary life.\tNous menons une vie très ordinaire.\nWe listened to the bell ring.\tOn a écouté la cloche sonner.\nWe live close to the station.\tNous vivons près de la gare.\nWe live close to the station.\tNous habitons près de la gare.\nWe live far from the airport.\tNous habitons loin de l'aéroport.\nWe live in the United States.\tNous vivons aux États-Unis.\nWe may as well start at once.\tOn pourrait aussi commencer dès maintenant.\nWe may as well start at once.\tOn pourrait aussi commencer sans attendre.\nWe may as well start at once.\tOn pourrait aussi s'y mettre de suite.\nWe may as well start at once.\tOn pourrait aussi s'y mettre dès maintenant.\nWe may as well start at once.\tOn pourrait aussi commencer de suite.\nWe might be able to help her.\tNous devrions être en mesure de l'aider.\nWe must conform to the rules.\tNous devons respecter les règles.\nWe must control our passions.\tNous devons maîtriser nos passions.\nWe must destroy the evidence.\tNous devons détruire les preuves.\nWe must keep our hands clean.\tNous devons garder les mains propres.\nWe must make up for the loss.\tNous devons compenser la perte.\nWe must protect the children.\tNous devons protéger les enfants.\nWe need more people like Tom.\tNous avons besoin de plus de gens comme Tom.\nWe need more people like Tom.\tIl nous faut plus de personnes comme Tom.\nWe need to protect ourselves.\tIl nous faut nous protéger.\nWe need to protect ourselves.\tNous avons besoin de nous protéger.\nWe need to water the flowers.\tNous devons arroser les fleurs.\nWe played baseball yesterday.\tNous avons joué au base-ball hier.\nWe really do need Tom's help.\tNous avons vraiment besoin de l'aide de Tom.\nWe saw smoke in the distance.\tNous vîmes de la fumée au loin.\nWe see what we expect to see.\tNous voyons ce que nous nous attendons à voir.\nWe set a trap to catch a fox.\tNous avons posé un piège pour capturer un renard.\nWe should all stick together.\tNous devrions tous rester rassemblés.\nWe should do this more often.\tNous devrions le faire plus souvent.\nWe should do this more often.\tNous devrions faire ça plus souvent.\nWe should follow his example.\tNous devrions suivre son exemple.\nWe should get more organized.\tNous devrions être plus organisés.\nWe should love our neighbors.\tNous devons aimer nos voisins.\nWe should tell Tom the truth.\tNous devrions dire la vérité à Tom.\nWe should tell Tom the truth.\tOn devrait dire la vérité à Tom.\nWe should've stayed with Tom.\tNous aurions dû rester avec Tom.\nWe still have plenty of time.\tIl nous reste encore suffisamment de temps.\nWe talked about it all night.\tNous en parlâmes toute la nuit.\nWe talked about it all night.\tNous en avons parlé toute la nuit.\nWe talked about it all night.\tNous en avons parlé toute la soirée.\nWe took shelter under a tree.\tNous nous abritâmes sous un arbre.\nWe took shelter under a tree.\tNous nous sommes abritées sous un arbre.\nWe took shelter under a tree.\tNous nous sommes abrités sous un arbre.\nWe traveled around Australia.\tNous avons voyagé autour de l'Australie.\nWe usually talked in English.\tNous parlions d'habitude en anglais.\nWe waited for him to turn up.\tNous attendîmes qu'il fît son apparition.\nWe walked ten miles that day.\tNous avons marché dix miles ce jour-là.\nWe walked ten miles that day.\tNous marchâmes 10 miles ce jour-là.\nWe want you to sing the song.\tNous voulons que vous chantiez cette chanson.\nWe want you to sing the song.\tOn veut que tu chantes cette chanson.\nWe went on a picnic together.\tNous sommes allés ensemble en pique-nique.\nWe went on a picnic together.\tNous sommes allées ensemble en pique-nique.\nWe went on a picnic together.\tNous avons pique-niqué ensemble.\nWe went to the beach to swim.\tNous allâmes à la plage pour nager.\nWe went to the beach to swim.\tNous nous rendîmes à la plage pour nager.\nWe went to the beach to swim.\tNous sommes allés à la plage pour nager.\nWe were at a loss what to do.\tNous ne savons que faire.\nWe were born on the same day.\tNous sommes nés le même jour.\nWe were up all night talking.\tNous avons veillé toute la nuit, à parler.\nWe weren't talking about you.\tOn ne parlait pas de toi.\nWe will be living in England.\tNous vivrons en Angleterre.\nWe will make up for the loss.\tNous compenserons la perte.\nWe work every day but Sunday.\tNous travaillons chaque jour sauf le dimanche.\nWe work every day but Sunday.\tNous travaillons tous les jours sauf le dimanche.\nWe work from dawn until dusk.\tNous travaillons du lever au coucher du soleil.\nWe'd do anything to help you.\tNous ferions n'importe quoi pour t'aider.\nWe'd do anything to help you.\tNous ferions n'importe quoi pour vous aider.\nWe'd like you to sing a song.\tNous aimerions que vous chantiez une chanson.\nWe'd like you to sing a song.\tNous aimerions que tu chantes une chanson.\nWe'll accept your conditions.\tNous accepterons tes conditions.\nWe'll all be dead eventually.\tNous serons tous morts, à la fin.\nWe'll be back here next week.\tNous serons de retour ici la semaine prochaine.\nWe'll be back on air shortly.\tNous serons bientôt de retour sur les ondes.\nWe'll have to take that risk.\tNous devrons prendre ce risque.\nWe'll pick Tom up on the way.\tNous allons récupérer Tom en chemin.\nWe'll sort this out tomorrow.\tNous réglerons cela demain.\nWe'll talk about it tomorrow.\tNous en parlerons demain.\nWe'll talk about it tomorrow.\tNous en discuterons demain.\nWe're all together right now.\tNous sommes tous ensemble, à l'instant.\nWe're all together right now.\tNous sommes toutes ensemble, à l'instant.\nWe're better off without you.\tNous nous portons mieux sans toi.\nWe're better off without you.\tNous nous portons mieux sans vous.\nWe're going to be aggressive.\tNous allons être agressifs.\nWe're going to be late again.\tNous allons encore être en retard.\nWe're going to be late again.\tNous allons à nouveau être en retard.\nWe're going to eat right now.\tNous allons manger tout de suite.\nWe're going to eat right now.\tNous allons manger maintenant.\nWe're going to work together.\tNous allons travailler ensemble.\nWe're missing something here.\tNous ratons quelque chose ici.\nWe're missing something here.\tNous manquons quelque chose ici.\nWe're not in the 80s anymore.\tNous ne sommes plus dans les années quatre-vingts.\nWe're the best at what we do.\tNous sommes les meilleurs dans ce que nous faisons.\nWe're the best at what we do.\tNous sommes les meilleures dans ce que nous faisons.\nWe're totally cool with that.\tNous sommes complètement cool avec ça.\nWe're very satisfied with it.\tNous en sommes très satisfaits.\nWe're very satisfied with it.\tNous en sommes très satisfaites.\nWe've been talking about you.\tOn a parlé de toi.\nWe've been talking about you.\tNous avons parlé de vous.\nWe've been working all night.\tNous avons travaillé toute la nuit.\nWe've got a mystery to solve.\tNous avons un mystère à résoudre.\nWe've had a very hard winter.\tNous avons eu un hiver très dur.\nWe've only got three minutes.\tNous n'avons que trois minutes.\nWe've run enough for one day.\tNous avons suffisamment couru pour la journée.\nWere you at home all morning?\tÉtiez-vous chez vous toute la matinée ?\nWere you at home all morning?\tÉtais-tu chez toi toute la matinée ?\nWere you looking at her legs?\tRegardais-tu ses jambes ?\nWere you looking at her legs?\tRegardiez-vous ses jambes ?\nWhat Tom did was very stupid.\tCe qu'a fait Tom était vraiment stupide.\nWhat are my responsibilities?\tQuelles sont mes responsabilités ?\nWhat are the neighbors doing?\tQue font les voisins ?\nWhat are you trying to imply?\tQue voulez-vous dire?\nWhat are you trying to prove?\tOù veux-tu en venir ?\nWhat are you wearing tonight?\tQue vas-tu mettre ce soir ?\nWhat are you wearing tonight?\tQu'est-ce que tu vas mettre ce soir ?\nWhat cold drinks do you have?\tQuelles boissons fraîches avez-vous ?\nWhat cold drinks do you have?\tQuelles boissons fraîches as-tu ?\nWhat could possibly go wrong?\tQu'est-ce qui pourrait foirer ?\nWhat could possibly go wrong?\tQu'est-ce qui pourrait aller de travers ?\nWhat did you expect me to do?\tQue voulais-tu que je fasse ?\nWhat did you want to show me?\tQue vouliez-vous me montrer ?\nWhat did you want to show me?\tQue voulais-tu me montrer ?\nWhat did you want to tell me?\tQue voulais-tu me dire ?\nWhat did you want to tell me?\tQue vouliez-vous me dire ?\nWhat difference does it make?\tQuelle différence cela fait-il ?\nWhat direction are you going?\tQuelle direction prends-tu ?\nWhat direction are you going?\tQuelle direction prenez-vous ?\nWhat do I want to talk about?\tÀ propos de quoi est-ce que je veux discuter ?\nWhat do they call their baby?\tComment ont-il appelé leur bébé ?\nWhat do those lights signify?\tQue veulent dire ces lumières ?\nWhat do you call your mother?\tComment appelles-tu ta mère ?\nWhat do you expect to happen?\tQu'attends-tu qu'il se passe ?\nWhat do you expect to happen?\tQu'attendez-vous qu'il se passe ?\nWhat do you feel like eating?\tQu'avez-vous envie de manger ?\nWhat do you feel like eating?\tQu'as-tu envie de manger ?\nWhat do you have in your bag?\tQu'as-tu dans ton sac ?\nWhat do you have in your bag?\tQu'avez-vous dans votre sac ?\nWhat do you make of all this?\tQue retires-tu de tout cela ?\nWhat do you make of all this?\tQue retirez-vous de tout cela ?\nWhat do you say we go skiing?\tQue dis-tu d'aller skier ?\nWhat do you say we go skiing?\tQue dites-vous d'aller skier ?\nWhat do you think they'll do?\tQue penses-tu qu'ils feront ?\nWhat do you think they'll do?\tQue pensez vous qu'elles feront ?\nWhat do you want to do today?\tQue veux-tu faire aujourd'hui ?\nWhat does silence sound like?\tQuel son a le silence ?\nWhat does that mean, exactly?\tQu'est-ce que cela signifie exactement ?\nWhat does that mean, exactly?\tQu'est-ce que ça veut dire exactement ?\nWhat does this remind you of?\tQu'est-ce que ça te rappelle ?\nWhat does this remind you of?\tQu'est-ce que ça vous rappelle ?\nWhat does this sentence mean?\tQue veut dire cette phrase ?\nWhat does this sentence mean?\tQue signifie cette phrase ?\nWhat don't you want me to do?\tQue ne veux-tu pas que je fasse ?\nWhat don't you want me to do?\tQue ne voulez-vous pas que je fasse ?\nWhat exactly am I paying for?\tQu'est-ce que je suis censé payer exactement ?\nWhat flower do you like best?\tQuelles sont tes fleurs préférées ?\nWhat happened here yesterday?\tQue s'est-il passé ici hier ?\nWhat happened? You look pale.\tQu'est-il arrivé ? Tu es tout pâle.\nWhat happens if that happens?\tQue se passera-t-il si ça a lieu ?\nWhat if something goes wrong?\tEt si quelque chose foire ?\nWhat if something goes wrong?\tEt si quelque chose va de travers ?\nWhat if something went wrong?\tEt si quelque chose clochait ?\nWhat if something went wrong?\tEt si quelque chose allait de travers ?\nWhat if something went wrong?\tEt si quelque chose foirait ?\nWhat is it you want me to do?\tQue veux-tu que je fasse ?\nWhat is it you want me to do?\tQue voulez-vous que je fasse ?\nWhat is the capital of Haiti?\tQuelle est la capitale de Haïti ?\nWhat is the good of doing it?\tQuel est l'intérêt de faire ça ?\nWhat is the speed limit here?\tQuelle est la limite de vitesse, ici ?\nWhat line of work are you in?\tDans quelle branche travaillez-vous ?\nWhat line of work are you in?\tDans quelle branche travailles-tu ?\nWhat other choice did I have?\tDe quel autre choix disposais-je ?\nWhat other choice did I have?\tQuel autre choix avais-je ?\nWhat other choice do we have?\tDe quel autre choix disposons-nous ?\nWhat other options do I have?\tQuelles autres options ai-je ?\nWhat she said made him angry.\tCe qu'elle a dit l'a mis en colère.\nWhat she said made him angry.\tCe qu'elle dit le mit en colère.\nWhat she says sounds strange.\tCe qu'elle dit semble étrange.\nWhat the devil are you doing?\tMais que diable es-tu en train de faire ?\nWhat time do you have supper?\tÀ quelle heure soupez-vous ?\nWhat time does the club open?\tÀ quelle heure le cercle ouvre-t-il ?\nWhat was served at the party?\tQu'a-t-on servi à la fête ?\nWhat were you dreaming about?\tÀ quoi étais-tu en train de rêver ?\nWhat were you dreaming about?\tÀ quoi étiez-vous en train de rêver ?\nWhat were you thinking about?\tÀ quoi pensais-tu ?\nWhat were you thinking about?\tÀ quoi pensiez-vous ?\nWhat will the newspapers say?\tQue diront les journaux ?\nWhat would you do without me?\tQue feriez-vous sans moi ?\nWhat would you do without me?\tQue ferais-tu sans moi ?\nWhat would you like me to do?\tQue voulez-vous que je fasse ?\nWhat would you like to drink?\tQue souhaites-tu boire ?\nWhat would your father think?\tQue penserait ton père ?\nWhat would your father think?\tQue penserait votre père ?\nWhat would your father think?\tQu'en penserait ton père ?\nWhat would your mother think?\tQue penserait ta mère ?\nWhat'll we do if Tom is late?\tQue ferons-nous si Tom est en retard ?\nWhat're you doing about this?\tQue faites-vous à ce sujet ?\nWhat're you doing about this?\tQue fais-tu à ce sujet ?\nWhat's Japan's longest river?\tQuel est le plus long fleuve du Japon?\nWhat's done cannot be undone.\tCe qui est fait ne peut être défait.\nWhat's going to be different?\tOù sera la différence ?\nWhat's his most recent novel?\tQuel est son roman le plus récent ?\nWhat's that disgusting smell?\tQuelle est cette odeur dégoûtante ?\nWhat's that supposed to mean?\tQu'est-ce que c'est supposé vouloir dire ?\nWhat's the fare to Liverpool?\tQuel est le tarif pour Liverpool ?\nWhat's the name of this tune?\tComment s'appelle cette chanson ?\nWhat's the secret ingredient?\tQuel est l'ingrédient secret ?\nWhat's there to be afraid of?\tQu'y a-t-il là d'effrayant ?\nWhat's this chair doing here?\tQue fait cette chaise ici ?\nWhat's today's exchange rate?\tQuel est le cours du jour ?\nWhat's today's exchange rate?\tQuel est le taux de change du jour ?\nWhat's wrong with your phone?\tQu'est-ce qui ne va pas avec ton téléphone ?\nWhat's your boyfriend's name?\tQuel est le nom de ton petit copain ?\nWhat's your boyfriend's name?\tQuel est le nom de ton petit ami ?\nWhat's your favorite cartoon?\tQuel est ton dessin animé préféré ?\nWhat's your favorite dessert?\tQuel est ton dessert préféré ?\nWhat's your favorite holiday?\tQuel est votre jour de fête préféré ?\nWhat's your favorite holiday?\tQuel est ton jour de fête préféré ?\nWhat's your favorite pastime?\tQuel est ton passe-temps préféré ?\nWhat's your favorite pastime?\tQuel est votre passe-temps préféré ?\nWhat's your favorite podcast?\tQuel est votre podcast favori ?\nWhat's your favorite subject?\tQuel est ton sujet préféré ?\nWhat's your favorite subject?\tQuel est votre sujet préféré ?\nWhat's your favorite subject?\tQuel est ta matière préférée ?\nWhat's your favorite subject?\tQuel est votre matière préférée ?\nWhat's your problem with Tom?\tQuel est ton problème avec Tom ?\nWhat've you been doing today?\tQu'as-tu fait aujourd'hui ?\nWhat've you been doing today?\tQu'avez-vous fait aujourd'hui ?\nWhatever you do, don't blink.\tQuoi que vous fassiez, ne clignez pas les yeux !\nWhatever you do, don't blink.\tQuoi que tu fasses, ne cligne pas les yeux !\nWhatever you do, don't smile.\tQuoi que vous fassiez, ne souriez pas !\nWhatever you do, don't smile.\tQuoi que tu fasses, ne souris pas !\nWhen I'm with you, I'm happy.\tLorsque je suis avec toi, je suis heureux.\nWhen I'm with you, I'm happy.\tLorsque je suis avec toi, je suis heureuse.\nWhen I'm with you, I'm happy.\tLorsque je me trouve avec toi, je suis heureux.\nWhen I'm with you, I'm happy.\tLorsque je me trouve avec toi, je suis heureuse.\nWhen I'm with you, I'm happy.\tLorsque je me trouve avec vous, je suis heureux.\nWhen I'm with you, I'm happy.\tLorsque je me trouve avec vous, je suis heureuse.\nWhen I'm with you, I'm happy.\tLorsque je suis avec vous, je suis heureux.\nWhen I'm with you, I'm happy.\tLorsque je suis avec vous, je suis heureuse.\nWhen can I see you next time?\tQuand puis-je vous voir la prochaine fois ?\nWhen can I see you next time?\tQuand puis-je te voir la prochaine fois ?\nWhen did you finish the work?\tQuand avez-vous fini le travail ?\nWhen did you finish the work?\tQuand as-tu fini le travail ?\nWhen did you finish the work?\tQuand avez-vous achevé le travail ?\nWhen did you finish the work?\tQuand as-tu achevé le travail ?\nWhen do you want me to start?\tQuand voulez-vous que je commence ?\nWhen do you want me to start?\tQuand veux-tu que je commence ?\nWhen is your book coming out?\tQuand ton livre sort-il ?\nWhen is your book coming out?\tQuand votre livre sort-il ?\nWhen is your school festival?\tQuand aura lieu la kermesse de ton école ?\nWhen shall I return the book?\tQuand dois-je restituer le livre ?\nWhen should I return the car?\tQuand devrais-je rendre la voiture ?\nWhen should I return the car?\tQuand devrais-je ramener la voiture ?\nWhen will we arrive in Tokyo?\tQuand arriverons-nous à Tokyo ?\nWhen will you come back home?\tTu rentres quand ?\nWhen would you like to begin?\tQuand aimerais-tu commencer ?\nWhere are your friends going?\tOù se rendent vos amis ?\nWhere are your friends going?\tOù se rendent tes amis ?\nWhere can I buy a live tiger?\tOù puis-je faire l'acquisition d'un tigre vivant ?\nWhere can I do some shopping?\tOù puis-je faire des emplettes ?\nWhere can I leave my bicycle?\tOù puis-je laisser mon vélo ?\nWhere did all this come from?\tD'où tout ceci est-il provenu ?\nWhere did this one come from?\tD'où venait celui-ci ?\nWhere did this one come from?\tD'où venait celle-ci ?\nWhere did you buy that shirt?\tOù as-tu acheté cette chemise ?\nWhere did you buy that shirt?\tOù avez-vous acheté cette chemise ?\nWhere did you go last Sunday?\tOù êtes-vous allé dimanche dernier ?\nWhere did you go last Sunday?\tOù es-tu allé dimanche dernier ?\nWhere did you learn all that?\tOù avez-vous appris tout ça ?\nWhere did you learn all that?\tOù as-tu appris tout ça ?\nWhere did you learn to shoot?\tOù as-tu appris à tirer ?\nWhere did you learn to shoot?\tOù avez-vous appris à tirer ?\nWhere did you see that woman?\tOù as-tu vu cette femme ?\nWhere do you think I met her?\tOù penses-tu que je l'ai rencontrée ?\nWhere do you think I met her?\tOù pensez-vous que j'ai fait sa connaissance ?\nWhere do you want to go, sir?\tOù voulez-vous vous rendre, Monsieur ?\nWhere have you been all week?\tOù avez-vous été toute la semaine ?\nWhere have you been all week?\tOù as-tu été toute la semaine ?\nWhere is the Chinese embassy?\tOù se trouve l'ambassade de Chine ?\nWhere on earth have you been?\tOù diable étais-tu ?\nWhere was this picture taken?\tOù cette photo a-t-elle été prise ?\nWhere would you like to live?\tOù aimeriez-vous vivre ?\nWhere would you like to live?\tOù aimerais-tu vivre ?\nWhere would you want to live?\tOù voudrais-tu vivre ?\nWhere would you want to live?\tOù voudriez-vous vivre ?\nWhere's all that money going?\tOù va tout cet argent ?\nWhere's all this coming from?\tD'où est-ce que tout cela vient ?\nWhere's my box of chocolates?\tOù est ma boîte de chocolats ?\nWhere's my box of chocolates?\tOù est ma boîte de pralines ?\nWhere's the checkout counter?\tOù est la caisse ?\nWhere's the closest bus stop?\tOù se trouve l'arrêt de bus le plus proche ?\nWhere's the closest pharmacy?\tOù est la pharmacie la plus proche ?\nWhere's the nearest bathroom?\tOù sont les toilettes les plus proches ?\nWhere's the nearest bus stop?\tOù se trouve l'arrêt de bus le plus proche ?\nWhere's the nearest pharmacy?\tOù se trouve la pharmacie la plus proche ?\nWhere's the nearest restroom?\tOù sont les toilettes les plus proches ?\nWhich bed do you want to use?\tQuel lit veux-tu utiliser ?\nWhich credit cards can I use?\tQuelles cartes de crédit puis-je utiliser ?\nWhich hat do you want to buy?\tQuel chapeau veux-tu acheter ?\nWhich hat do you want to buy?\tQuel couvre-chef veux-tu acheter ?\nWhich hat do you want to buy?\tQuel chapeau voulez-vous acheter ?\nWhich hat do you want to buy?\tQuel couvre-chef voulez-vous acheter ?\nWhich of you came here first?\tLequel d'entre vous vint ici en premier ?\nWhich of you came here first?\tLequel d'entre vous vint ici le premier ?\nWhich one do you like better?\tLaquelle préfères-tu ?\nWhich party do you belong to?\tÀ quel parti êtes-vous affilié ?\nWhich party do you belong to?\tÀ quel parti es-tu affilié ?\nWhich team will win the game?\tQuelle équipe gagnera la partie ?\nWho am I supposed to go with?\tAvec qui suis-je supposé y aller ?\nWho am I supposed to go with?\tAvec qui suis-je supposée y aller ?\nWho am I to second guess him?\tQui suis-je pour le piler ?\nWho am I to second guess him?\tQui suis-je pour me montrer plus malin que lui ?\nWho are we competing against?\tContre qui sommes-nous en compétition ?\nWho are we competing against?\tAvec qui sommes-nous en concurrence ?\nWho are your closest friends?\tQuels sont tes amis les plus proches ?\nWho designed the White House?\tQui a conçu la Maison Blanche ?\nWho designed the White House?\tQui a dessiné la Maison Blanche ?\nWho did you give the book to?\tÀ qui as-tu donné le livre ?\nWho do you think that man is?\tQui penses-tu qu'est cet homme ?\nWho invited Tom to the party?\tQui a invité Tom à la fête ?\nWho took part in the contest?\tQui a pris part au concours ?\nWho wants some hot chocolate?\tQui veut du chocolat chaud ?\nWho wants you to be the boss?\tQui veut que tu sois le patron ?\nWho wants you to be the boss?\tQui veut que tu sois la patronne ?\nWho wants you to be the boss?\tQui veut que vous soyez le patron ?\nWho wants you to be the boss?\tQui veut que vous soyez la patronne ?\nWho will be elected chairman?\tQui sera élu président ?\nWho will look after the baby?\tQui s'occupera du bébé ?\nWho will look after your dog?\tQui s'occupera de ton chien ?\nWho will look after your dog?\tQui s'occupera de votre chien ?\nWho's been eating my peanuts?\tQui a mangé mes cacahuètes ?\nWho's playing hockey tonight?\tQui joue au hockey ce soir ?\nWho's to say which is better?\tQui dira lequel est le meilleur ?\nWho's to say which is better?\tQui dira laquelle est la meilleure ?\nWho's your favorite lyricist?\tQuel est ton parolier préféré ?\nWhoever wants it may take it.\tQuiconque le veut peut le prendre.\nWhy are girls so complicated?\tPourquoi les filles sont-elles si compliquées ?\nWhy are girls so complicated?\tPourquoi les nanas sont-elles si compliquées ?\nWhy are people afraid of you?\tPourquoi les gens ont-ils peur de vous ?\nWhy are people afraid of you?\tPourquoi les gens ont-ils peur de toi ?\nWhy are people scared of Tom?\tPourquoi est-ce que les gens ont peur de Tom ?\nWhy are people scared of you?\tPourquoi les gens ont-ils peur de vous ?\nWhy are people scared of you?\tPourquoi les gens ont-ils peur de toi ?\nWhy are they always fighting?\tPourquoi se disputent-ils toujours ?\nWhy are they always fighting?\tPourquoi se disputent-elles toujours ?\nWhy are you being mean to me?\tPourquoi êtes-vous méchant avec moi ?\nWhy are you being mean to me?\tPourquoi es-tu méchant avec moi ?\nWhy are you being mean to me?\tPourquoi es-tu méchante avec moi ?\nWhy are you being mean to me?\tPourquoi êtes-vous méchants avec moi ?\nWhy are you being mean to me?\tPourquoi êtes-vous méchante avec moi ?\nWhy are you being mean to me?\tPourquoi êtes-vous méchantes avec moi ?\nWhy are you doing this to me?\tPourquoi me faites-vous ça ?\nWhy are you doing this to me?\tPourquoi me fais-tu ça ?\nWhy are you drying your hair?\tPourquoi te sèches-tu les cheveux ?\nWhy are you holding my hands?\tPourquoi tiens-tu mes mains ?\nWhy are you making that face?\tPourquoi fais-tu cette tête ?\nWhy are you out at this hour?\tQu'est ce que tu fais dehors à cette heure ?\nWhy are you so angry with me?\tPourquoi m'en veux-tu autant ?\nWhy are you talking so funny?\tPourquoi parles-tu si bizarrement ?\nWhy aren't you talking to me?\tPourquoi ne me parles-tu pas ?\nWhy aren't you talking to me?\tPourquoi ne me parlez-vous pas ?\nWhy can't we just take a cab?\tPourquoi est-ce qu'on ne peut pas juste prendre un taxi ?\nWhy did you change your mind?\tPourquoi as-tu changé d'avis ?\nWhy did you change your mind?\tPourquoi avez-vous changé d'avis ?\nWhy did you keep it a secret?\tPourquoi l'as-tu gardé secret ?\nWhy did you say such a thing?\tPourquoi as-tu dit une telle chose ?\nWhy did you say such a thing?\tPourquoi avez-vous dit une chose pareille ?\nWhy didn't you call for help?\tPourquoi est-ce que tu n'as pas appelé à l'aide ?\nWhy didn't you call for help?\tPourquoi n'avez-vous pas appelé à l'aide ?\nWhy didn't you call somebody?\tPourquoi n'avez-vous pas appelé quelqu'un ?\nWhy didn't you call somebody?\tPourquoi n'as-tu pas appelé quelqu'un ?\nWhy didn't you listen to him?\tPourquoi ne l'as-tu pas écouté ?\nWhy didn't you listen to him?\tPourquoi ne l'avez-vous pas écouté ?\nWhy do people commit suicide?\tPourquoi les gens se suicident-ils ?\nWhy do people dye their hair?\tPourquoi les gens se teignent les cheveux ?\nWhy do people dye their hair?\tPourquoi les gens se teignent-ils les cheveux ?\nWhy do you think you're here?\tPourquoi pensez-vous que vous êtes ici ?\nWhy do you think you're here?\tPourquoi penses-tu que tu te trouves ici ?\nWhy does Tom want to hurt me?\tPourquoi Tom veut-il me faire du mal ?\nWhy does Tom want to hurt me?\tPourquoi Tom veut-il me blesser ?\nWhy does everybody love cats?\tPourquoi tout le monde aime les chats ?\nWhy doesn't that surprise me?\tPourquoi cela ne me surprend-il pas ?\nWhy don't I have a boyfriend?\tPourquoi n'ai-je pas de petit ami ?\nWhy don't I have a boyfriend?\tPourquoi n'ai-je pas de petit copain ?\nWhy don't I have a boyfriend?\tPourquoi n'ai-je pas de jules ?\nWhy don't we call it a night?\tPourquoi ne mettons-nous pas un terme à la soirée ?\nWhy don't we go check it out?\tPourquoi n'allons-nous pas vérifier par nous-mêmes ?\nWhy don't we take the subway?\tPourquoi ne prenons-nous pas le métro ?\nWhy don't you eat vegetables?\tPourquoi est-ce que tu ne manges pas de légumes ?\nWhy don't you eat vegetables?\tPourquoi ne manges-tu pas de légumes ?\nWhy don't you eat vegetables?\tPourquoi ne mangez-vous pas de légumes ?\nWhy don't you go talk to him?\tPourquoi ne vas-tu pas lui parler ?\nWhy don't you go talk to him?\tPourquoi ne vas-tu pas discuter avec lui ?\nWhy don't you go talk to him?\tPourquoi n'allez-vous pas lui parler ?\nWhy don't you go talk to him?\tPourquoi n'allez-vous pas discuter avec lui ?\nWhy don't you leave me alone?\tPourquoi ne me lâches-tu pas ?\nWhy don't you look for a job?\tPourquoi ne recherches-tu pas un boulot ?\nWhy don't you look for a job?\tPourquoi ne recherchez-vous pas un boulot ?\nWhy don't you take a picture?\tEt si tu prenais une photo ?\nWhy don't you take a picture?\tEt si vous preniez une photo ?\nWhy don't you talk to me now?\tPourquoi ne me parles-tu pas, maintenant ?\nWhy don't you talk to me now?\tPourquoi ne me parlez-vous pas, maintenant ?\nWhy don't you talk to us now?\tPourquoi ne nous parlez-vous pas, maintenant ?\nWhy don't you talk to us now?\tPourquoi ne nous parles-tu pas, maintenant ?\nWhy hasn't Tom come back yet?\tPourquoi Tom n'est-il pas encore revenu ?\nWhy not just call the police?\tPourquoi n'appelez-vous pas les policiers ?\nWhy on earth would I do that?\tPourquoi Dieu ferais-je cela ?\nWhy should I stop doing this?\tPourquoi devrais-je cesser de le faire ?\nWhy would I want to help Tom?\tPourquoi voudrais-je aider Tom ?\nWill it take long to recover?\tCela prendra-t-il du temps à recouvrir ?\nWill it take long to recover?\tCela prendra-t-il du temps de se remettre ?\nWill it take long to recover?\tCela prendra-t-il du temps à récupérer ?\nWill the ice bear our weight?\tLa glace supportera-t-elle notre poids ?\nWill the train leave on time?\tLe train partira-t-il à l'heure ?\nWill the train leave on time?\tLe train partira-t-il à temps ?\nWill you have dinner with me?\tDineras-tu avec moi ?\nWill you introduce me to her?\tMe présenteras-tu à elle ?\nWill you leave the door open?\tLaisserez-vous la porte ouverte ?\nWill you please come with me?\tVoulez-vous, je vous prie, m'accompagner ?\nWill you please come with me?\tVeux-tu, je te prie, m'accompagner ?\nWill you sell your car to me?\tMe vendras-tu ta voiture ?\nWill you sell your car to me?\tMe vendrez-vous votre voiture ?\nWill you show me the picture?\tMe montreras-tu le tableau ?\nWill you show me the picture?\tMe montreras-tu la photo ?\nWill you show me the picture?\tMe montrerez-vous le tableau ?\nWill you show me the picture?\tMe montrerez-vous la photo ?\nWill you watch the superbowl?\tAllez-vous regarder le Super Bowl ?\nWill you watch the superbowl?\tVas-tu regarder le Super Bowl ?\nWinds from the sea are humid.\tLes vents de mer sont humides.\nWinds from the sea are moist.\tLes vents de mer sont humides.\nWindy this morning, isn't it?\tIl y a du vent, ce matin, non ?\nWinter is my favorite season.\tL’hiver est ma saison préférée.\nWithout you, I would've died.\tSans vous, je serais mort.\nWithout you, I would've died.\tSans vous, je serais morte.\nWithout you, I would've died.\tSans toi, je serais mort.\nWithout you, I would've died.\tSans toi, je serais morte.\nWon't you have some more tea?\tNe reprendrez-vous pas un peu de thé ?\nWould 9 o'clock be all right?\tEst-ce que 9 heures vous conviendrait ?\nWould 9 o'clock be all right?\tNeuf heures conviendrait-il ?\nWould you be friends with me?\tVoudriez-vous être ami avec moi ?\nWould you be friends with me?\tVoudrais-tu être ami avec moi ?\nWould you be friends with me?\tVoudrais-tu être amie avec moi ?\nWould you be friends with me?\tVoudriez-vous être amie avec moi ?\nWould you be friends with me?\tVoudriez-vous être amies avec moi ?\nWould you be friends with me?\tVoudriez-vous être amis avec moi ?\nWould you be willing to help?\tSerais-tu prêt à aider ?\nWould you be willing to help?\tSerais-tu prête à aider ?\nWould you be willing to help?\tSeriez-vous prêt à aider ?\nWould you be willing to help?\tSeriez-vous prête à aider ?\nWould you be willing to help?\tSeriez-vous prêtes à aider ?\nWould you be willing to help?\tSeriez-vous prêts à aider ?\nWould you come here a moment?\tVoudrais-tu venir ici un instant ?\nWould you give me a discount?\tM'accorderez-vous une remise ?\nWould you give me a discount?\tM'accorderas-tu une remise ?\nWould you help me if I moved?\tM'aideriez-vous si je déménage ?\nWould you introduce yourself?\tVoudrais-tu te présenter ?\nWould you join me for a walk?\tM'accompagnerais-tu pour une balade ?\nWould you join me in a drink?\tVoudriez-vous boire un verre avec moi ?\nWould you lend me some money?\tTu me prêterais de l'argent ?\nWould you lend me some money?\tVoudrais-tu me prêter un peu d'argent ?\nWould you lend me some money?\tVoudriez-vous me prêter de l'argent ?\nWould you lend me some money?\tMe prêteriez-vous de l'argent ?\nWould you lend me some money?\tMe prêterais-tu de l'argent ?\nWould you like a cup of milk?\tVoudrais-tu une tasse de lait ?\nWould you like a cup of milk?\tVoudriez-vous une tasse de lait ?\nWould you like a single room?\tVoudriez-vous une chambre simple ?\nWould you like another apple?\tVeux-tu une autre pomme ?\nWould you like another drink?\tDésires-tu encore quelque chose à boire ?\nWould you like some more tea?\tVoulez-vous un peu plus de thé ?\nWould you like some more tea?\tVoudrais-tu encore un peu de thé ?\nWould you like tea or coffee?\tPréféreriez-vous un thé ou un café ?\nWould you like tea or coffee?\tAimeriez-vous du thé ou du café ?\nWould you like to freshen up?\tVoudriez-vous vous rafraîchir ?\nWould you like to freshen up?\tVoudrais-tu te rafraîchir ?\nWould you like to go dancing?\tÇa te dit de danser?\nWould you like to go with me?\tAimeriez-vous y aller avec moi ?\nWould you like to go with me?\tAimerais-tu y aller avec moi ?\nWould you show me some rings?\tVous pouvez me montrer des bagues?\nYes. You're absolutely right.\tOui. Tu as parfaitement raison.\nYes. You're absolutely right.\tOui. Vous avez parfaitement raison.\nYesterday I helped my father.\tHier, j'ai aidé mon père.\nYou always were good at math.\tTu as toujours été bon en math.\nYou always were good at math.\tVous avez toujours été bonne en math.\nYou and I are going together.\tVous et moi y allons ensemble.\nYou and I are going together.\tToi et moi y allons ensemble.\nYou and I have the same idea.\tToi et moi avons la même idée.\nYou are as tall as my sister.\tTu es aussi grande que ma sœur.\nYou are as tall as my sister.\tTu es aussi grand que ma sœur.\nYou are both pretty and kind.\tTu es à la fois mignonne et gentille.\nYou are both pretty and kind.\tTu es à la fois mignon et gentil.\nYou are busy now, aren't you?\tTu es occupé en ce moment ?\nYou are not a child any more.\tTu n'es plus un enfant.\nYou are not a child any more.\tTu n'es plus une enfant.\nYou are suitable for the job.\tVous convenez au poste.\nYou aren't busy now, are you?\tTu es disponible maintenant ?\nYou aren't busy now, are you?\tTu n'es pas occupé maintenant, si ?\nYou can be anything you want.\tTu peux être tout ce que tu veux.\nYou can be anything you want.\tVous pouvez être tout ce que vous voulez.\nYou can count on me any time.\tVous pouvez compter sur moi à tout moment.\nYou can do whatever you like.\tVous pouvez faire tout ce que vous voulez.\nYou can easily find the bank.\tVous pouvez facilement trouver la banque.\nYou can easily find the bank.\tTu peux facilement trouver la banque.\nYou can go anyplace you like.\tVous pouvez aller où vous voulez.\nYou can go anyplace you like.\tTu peux aller où tu veux.\nYou can go anywhere you like.\tTu peux aller où tu veux.\nYou can go wherever you want.\tTu peux aller où tu veux.\nYou can sit down if you want.\tTu peux t'asseoir si tu veux.\nYou can sit down if you want.\tVous pouvez vous asseoir si vous le désirez.\nYou can't cancel the meeting.\tTu ne peux pas annuler la réunion.\nYou can't cancel the meeting.\tVous ne pouvez pas annuler la réunion.\nYou can't carry on like this.\tVous ne pouvez pas continuer ainsi.\nYou can't carry on like this.\tVous ne pouvez continuer ainsi.\nYou can't carry on like this.\tTu ne peux pas continuer ainsi.\nYou can't carry on like this.\tTu ne peux continuer ainsi.\nYou can't control everything.\tTu ne peux pas tout contrôler.\nYou can't control everything.\tVous ne pouvez pas tout contrôler.\nYou can't keep this a secret.\tTu ne peux pas le garder secret.\nYou can't keep this a secret.\tVous ne pouvez pas le garder secret.\nYou can't keep this a secret.\tOn ne peut le garder secret.\nYou can't keep this a secret.\tOn ne peut pas le garder secret.\nYou can't keep this a secret.\tVous ne pouvez le garder secret.\nYou can't keep this a secret.\tTu ne peux le garder secret.\nYou can't know that for sure.\tVous ne pouvez pas en être certain.\nYou can't know that for sure.\tTu ne peux pas en être certain.\nYou can't know that for sure.\tTu ne peux pas en être certaine.\nYou can't know that for sure.\tOn ne peut pas en être certain.\nYou can't know that for sure.\tVous ne pouvez pas en être certaine.\nYou can't know that for sure.\tVous ne pouvez pas en être certains.\nYou can't know that for sure.\tVous ne pouvez pas en être certaines.\nYou can't live without water.\tOn ne peut vivre sans eau.\nYou can't live without water.\tOn ne peut pas vivre sans eau.\nYou can't park your car here.\tVous ne pouvez garer votre véhicule ici.\nYou can't park your car here.\tTu ne peux pas stationner ta voiture ici.\nYou can't play baseball here.\tIci on ne peut pas jouer au baseball.\nYou can't run away from this.\tTu ne peux pas le fuir.\nYou could've killed somebody.\tVous auriez pu tuer quelqu'un.\nYou could've killed somebody.\tTu aurais pu tuer quelqu'un.\nYou didn't buy that, did you?\tTu n'as pas acheté cela, n'est-ce pas ?\nYou didn't buy that, did you?\tVous n'avez pas acheté cela, n'est-ce pas ?\nYou didn't complain, did you?\tTu ne t'es pas plaint, n'est-ce pas ?\nYou didn't complain, did you?\tVous ne vous êtes pas plaint, n'est-ce pas ?\nYou didn't tell him anything?\tTu ne lui as rien dit ?\nYou do seem a little on edge.\tTu as l'air un tantinet à cran.\nYou don't have a temperature.\tVous n'avez pas de température.\nYou don't have a temperature.\tTu n'as pas de température.\nYou don't have to be so rude.\tTu n'es pas obligé d'être si grossier.\nYou don't have to be so rude.\tTu n'es pas obligée d'être si grossière.\nYou don't have to be so rude.\tVous n'êtes pas obligé d'être si grossier.\nYou don't have to be so rude.\tVous n'êtes pas obligés d'être si grossiers.\nYou don't have to be so rude.\tVous n'êtes pas obligée d'être si grossière.\nYou don't have to be so rude.\tVous n'êtes pas obligées d'être si grossières.\nYou don't have to work today.\tTu n'as pas à travailler aujourd'hui.\nYou don't look like your dad.\tVous ne ressemblez pas à votre papa.\nYou don't look like your dad.\tTu ne ressembles pas à ton papa.\nYou don't need to be nervous.\tTu n'as pas besoin d'être nerveux.\nYou don't seem to understand.\tTu ne sembles pas comprendre.\nYou don't seem to understand.\tVous ne semblez pas comprendre.\nYou don't seem too surprised.\tTu ne sembles pas trop surpris.\nYou don't seem too surprised.\tTu ne sembles pas trop surprise.\nYou don't seem too surprised.\tVous ne semblez pas trop surpris.\nYou don't seem too surprised.\tVous ne semblez pas trop surprise.\nYou don't seem too surprised.\tVous ne semblez pas trop surprises.\nYou feel lonesome, don't you?\tTu te sens seul, n'est-ce pas ?\nYou gave me only fifty cents.\tTu m'as donné seulement cinquante centimes.\nYou gotta get more organized.\tIl vous faut être davantage organisé.\nYou gotta get more organized.\tIl vous faut être plus organisé.\nYou gotta get more organized.\tIl te faut être davantage organisé.\nYou gotta get more organized.\tIl te faut être plus organisé.\nYou gotta get more organized.\tIl faut que tu sois plus organisé.\nYou gotta get more organized.\tIl faut que tu sois davantage organisé.\nYou gotta get more organized.\tIl faut que vous soyez plus organisé.\nYou gotta get more organized.\tIl faut que vous soyez plus organisée.\nYou gotta get more organized.\tIl faut que vous soyez plus organisés.\nYou gotta get more organized.\tIl faut que vous soyez plus organisées.\nYou gotta get more organized.\tIl vous faut être plus organisée.\nYou gotta get more organized.\tIl vous faut être plus organisés.\nYou gotta get more organized.\tIl vous faut être plus organisées.\nYou gotta get more organized.\tIl vous faut être davantage organisée.\nYou gotta get more organized.\tIl vous faut être davantage organisés.\nYou gotta get more organized.\tIl vous faut être davantage organisées.\nYou gotta get more organized.\tIl faut que tu sois plus organisée.\nYou gotta get more organized.\tIl te faut être plus organisée.\nYou gotta get more organized.\tIl te faut être davantage organisée.\nYou gotta get more organized.\tIl faut que tu sois davantage organisée.\nYou gotta get more organized.\tFaut que tu sois plus organisé !\nYou gotta get more organized.\tFaut que tu sois plus organisée !\nYou gotta get more organized.\tFaut que vous soyez plus organisé !\nYou gotta get more organized.\tFaut que vous soyez plus organisée !\nYou gotta get more organized.\tFaut que vous soyez plus organisés !\nYou gotta get more organized.\tFaut que vous soyez plus organisées !\nYou had better go to bed now.\tTu ferais mieux d'aller au lit maintenant.\nYou had better go to bed now.\tVous feriez mieux d'aller au lit maintenant.\nYou had better start at once.\tTu ferais mieux de commencer tout de suite.\nYou had better start at once.\tVous feriez mieux de commencer tout de suite.\nYou have a great imagination.\tTu as une grande imagination.\nYou have a great imagination.\tVous avez une grande imagination.\nYou have a great imagination.\tVous êtes doté d'une grande imagination.\nYou have a great imagination.\tVous êtes dotée d'une grande imagination.\nYou have a great imagination.\tVous êtes dotés d'une grande imagination.\nYou have a great imagination.\tVous êtes dotées d'une grande imagination.\nYou have a great imagination.\tTu es doté d'une grande imagination.\nYou have a great imagination.\tTu es dotée d'une grande imagination.\nYou have beautiful blue eyes.\tTu as de beaux yeux bleus.\nYou have blood on your hands.\tTu as du sang sur les mains.\nYou have blood on your hands.\tVous avez du sang sur les mains.\nYou have good taste in music.\tTu as de bons gouts musicaux.\nYou have good taste in music.\tTu as bon goût pour la musique.\nYou have no right to be here.\tTu n'as aucun droit d'être là.\nYou have no right to be here.\tVous n'avez aucun droit d'être là.\nYou have no right to do this.\tVous n'avez aucun droit de faire ça.\nYou have no right to do this.\tTu n'as aucun droit de faire ça.\nYou have such beautiful eyes.\tTu as de tellement beaux yeux.\nYou have such beautiful eyes.\tVous avez de tellement beaux yeux.\nYou have such beautiful eyes.\tVous avez de si beaux yeux.\nYou have to accept your role.\tTu dois accepter ton rôle.\nYou have to leave everything.\tVous devez tout laisser.\nYou have to leave everything.\tTu dois tout abandonner.\nYou just wouldn't understand.\tTu ne comprendrais simplement pas.\nYou just wouldn't understand.\tVous ne comprendriez simplement pas.\nYou know her name, don't you?\tTu connais son nom, n'est-ce pas ?\nYou know her name, don't you?\tVous connaissez son nom, n'est-ce pas ?\nYou know we'd never hurt you.\tTu sais que nous ne te ferions jamais de mal.\nYou know we'd never hurt you.\tVous savez que nous ne vous ferions jamais de mal.\nYou know what you have to do.\tTu sais ce que tu as à faire.\nYou know what you have to do.\tVous savez ce que vous avez à faire.\nYou know, I had a lot of fun.\tTu sais, je me suis bien amusée.\nYou know, I had a lot of fun.\tVous savez, je me suis bien amusé.\nYou know, I had a lot of fun.\tVous savez, je me suis bien amusée.\nYou look just like my sister.\tVous ressemblez tout à fait à ma sœur.\nYou look just like my sister.\tVous ressemblez exactement à ma sœur.\nYou look just like my sister.\tTu ressembles tout à fait à ma sœur.\nYou may as well come with me.\tVous feriez aussi bien de venir avec moi.\nYou may choose what you like.\tTu peux choisir ce que tu veux.\nYou may go anywhere you like.\tTu peux aller où bon te semble.\nYou may go anywhere you like.\tTu peux aller où ça te chante.\nYou may go anywhere you like.\tTu peux aller où ça te plaît.\nYou may go anywhere you like.\tVous pouvez aller où cela vous plaît.\nYou might be late for school.\tTu risques d'être en retard pour l'école.\nYou must allow for his youth.\tIl vous faut prendre en compte sa jeunesse.\nYou must allow for his youth.\tIl te faut prendre en compte sa jeunesse.\nYou must not go out at night.\tVous ne devez pas sortir la nuit.\nYou must not leave right now.\tTu ne dois pas partir maintenant.\nYou must not leave right now.\tVous ne devez pas partir tout de suite.\nYou must realize that by now.\tTu dois en prendre conscience, à l'heure qu'il est.\nYou must realize that by now.\tVous devez en prendre conscience, à l'heure qu'il est.\nYou must respect your elders.\tOn doit respecter ses aînés.\nYou must respect your elders.\tVous devez respecter vos aînés.\nYou must respect your elders.\tTu dois respecter tes aînés.\nYou must respect your elders.\tTu dois respecter tes aînées.\nYou must respect your elders.\tVous devez respecter vos aînées.\nYou must think this is funny.\tTu dois penser que c'est amusant.\nYou must think this is funny.\tVous devez penser que c'est amusant.\nYou need to accept your role.\tTu dois accepter ton rôle.\nYou need to do more research.\tVous avez besoin de faire plus de recherches.\nYou need to do more research.\tTu as besoin de faire plus de recherches.\nYou need to press the button.\tIl te faut appuyer sur le bouton.\nYou need to press the button.\tIl vous faut appuyer sur le bouton.\nYou need to press the button.\tIl faut que vous appuyiez sur le bouton.\nYou need to press the button.\tIl faut que tu appuies sur le bouton.\nYou only need to concentrate.\tVous devez seulement vous concentrer.\nYou really must stop smoking.\tTu dois vraiment t'arrêter de fumer.\nYou really must stop smoking.\tVous devez vraiment vous arrêter de fumer.\nYou really speak French well.\tTu parles vraiment bien français.\nYou recognize her, don't you?\tVous la reconnaissez, n'est-ce pas ?\nYou recognize her, don't you?\tTu la reconnais, n'est-ce pas ?\nYou recognize him, don't you?\tVous le reconnaissez, n'est-ce pas ?\nYou recognize him, don't you?\tTu le reconnais, n'est-ce pas ?\nYou remind me of my daughter.\tVous me rappelez ma fille.\nYou remind me of my daughter.\tTu me rappelles ma fille.\nYou remind me of your father.\tVous me rappelez votre père.\nYou remind me of your father.\tTu me rappelles ton père.\nYou remind me of your mother.\tTu me rappelles ta mère.\nYou said I could talk to Tom.\tTu as dit que je pourrais parler à Tom.\nYou said you figured out why.\tVous avez dit que vous avez compris pourquoi.\nYou said you figured out why.\tTu as dit que tu avais compris pourquoi.\nYou said you wanted a family.\tTu as dit que tu voulais une famille.\nYou seem to be a kind person.\tVous semblez être quelqu'un de gentil.\nYou seem to be an honest man.\tTu as l'air d'être un homme honnête.\nYou should do that right now.\tTu devrais le faire sur-le-champ.\nYou should do that right now.\tVous devriez le faire sur-le-champ.\nYou should follow his advice.\tTu devrais suivre son conseil.\nYou should follow his advice.\tVous devriez suivre son conseil.\nYou should get married again.\tVous devriez vous remarier.\nYou should get married again.\tTu devrais te remarier.\nYou should get some exercise.\tTu devrais faire de l'exercice.\nYou should get some exercise.\tVous devriez faire de l'exercice.\nYou should get your hair cut.\tTu devrais te couper les cheveux.\nYou should have come earlier.\tTu aurais dû venir plus tôt.\nYou should have known better.\tTu aurais mieux fait de réfléchir.\nYou should have known better.\tTu n'aurais pas dû être assez bête.\nYou should have known better.\tTu n'aurais pas dû être aussi bête.\nYou should keep your promise.\tVous devriez tenir votre promesse.\nYou should keep your promise.\tTu devrais tenir ta promesse.\nYou should look that word up.\tTu devrais rechercher ce mot.\nYou should look that word up.\tVous devriez rechercher ce mot.\nYou should look this word up.\tTu devrais rechercher ce mot.\nYou should look this word up.\tVous devriez rechercher ce mot.\nYou should look up that word.\tTu devrais rechercher ce mot.\nYou should look up that word.\tVous devriez rechercher ce mot.\nYou should look up this word.\tTu devrais rechercher ce mot.\nYou should look up this word.\tVous devriez rechercher ce mot.\nYou should not speak so loud.\tTu ne devrais pas parler aussi fort.\nYou should run for president.\tTu devrais te présenter en tant que président.\nYou should run for president.\tVous devriez vous présenter en tant que président.\nYou should see Tom's picture.\tTu devrais voir la photo de Tom.\nYou should see Tom's picture.\tVous devriez voir la photo de Tom.\nYou shouldn't break promises.\tTu devrais respecter ta promesse.\nYou shouldn't break promises.\tTu ne devrais pas trahir ta parole.\nYou shouldn't eat raw snails.\tTu ne devrais pas manger des escargots crus.\nYou shouldn't eat raw snails.\tVous ne devriez pas manger d'escargots crus.\nYou shouldn't have done that.\tTu n'aurais pas dû faire ça.\nYou shouldn't have done that.\tVous n'auriez pas dû faire ça.\nYou sure have a lot of nerve!\tVous avez vraiment beaucoup de courage !\nYou understand French, right?\tVous comprenez le français, n'est-ce pas ?\nYou understand French, right?\tTu comprends le français, n'est-ce pas ?\nYou understand German, right?\tTu comprends l’allemand, n’est-ce pas ?\nYou want to remain anonymous.\tTu veux rester anonyme.\nYou were hungry, weren't you?\tTu avais faim, n'est-ce pas ?\nYou were hungry, weren't you?\tVous aviez faim, n'est-ce pas ?\nYou were scared, weren't you?\tVous aviez peur, n'est-ce pas ?\nYou were scared, weren't you?\tTu avais peur, n'est-ce pas ?\nYou were scared, weren't you?\tVous avez eu peur, n'est-ce pas ?\nYou were scared, weren't you?\tTu as eu peur, n'est-ce pas ?\nYou won't find anything here.\tVous ne trouverez rien ici.\nYou won't find anything here.\tTu ne trouveras rien ici.\nYou'd better give up smoking.\tVous feriez mieux d'arrêter de fumer.\nYou'd better give up smoking.\tTu ferais mieux d'arrêter de fumer.\nYou'd better go home at once.\tTu ferais mieux d'aller chez toi immédiatement.\nYou'd better go home at once.\tVous feriez mieux d'aller chez vous immédiatement.\nYou'd better not see her now.\tTu ferais mieux de ne pas la voir maintenant.\nYou'd better not see her now.\tVous feriez mieux de ne pas la voir maintenant.\nYou'd better take care of it.\tTu ferais mieux de t'en occuper.\nYou'd better take care of it.\tVous feriez mieux de vous en occuper.\nYou'd better take care of it.\tVous feriez mieux d'en prendre soin.\nYou'll be crying before long.\tVous allez bientôt pleurer.\nYou'll be crying before long.\tTu vas bientôt pleurer.\nYou'll be crying before long.\tTu pleureras avant peu.\nYou'll be crying before long.\tVous pleurerez avant peu.\nYou'll go to school tomorrow.\tTu iras à l'école demain.\nYou'll go to school tomorrow.\tVous irez à l'école demain.\nYou'll have a wonderful time.\tTu vas passer du très bon temps.\nYou'll have a wonderful time.\tVous allez passer du très bon temps.\nYou'll have to learn to cook.\tTu devras apprendre à cuisiner.\nYou'll have to learn to cook.\tVous devrez apprendre à cuisiner.\nYou'll never escape that way.\tTu ne t'échapperas jamais de cette manière.\nYou'll never escape that way.\tVous ne vous échapperez jamais de cette manière.\nYou'll never leave this town.\tTu ne quitteras jamais cette ville !\nYou'll never leave this town.\tTu ne partiras jamais de cette ville !\nYou'll never leave this town.\tVous ne quitterez jamais cette ville !\nYou'll never leave this town.\tVous ne partirez jamais de cette ville !\nYou're Tom's students, right?\tVous êtes les étudiants de Tom, n'est-ce pas ?\nYou're Tom's students, right?\tVous êtes les étudiantes de Tom, n'est-ce pas ?\nYou're about three days late.\tTu es à peu près trois jours en retard.\nYou're almost as tall as Tom.\tVous êtes presque aussi grand que Tom.\nYou're almost as tall as Tom.\tTu es presque aussi grand que Tom.\nYou're always criticizing me!\tTu me critiques tout le temps !\nYou're always criticizing me!\tVous me critiquez sans cesse !\nYou're carrying this too far.\tTu fais aller ça trop loin.\nYou're carrying this too far.\tVous faites aller ça trop loin.\nYou're completely delusional.\tTu hallucines complètement.\nYou're completely delusional.\tVous hallucinez complètement.\nYou're depressed, aren't you?\tTu es déprimée, n'est-ce pas ?\nYou're depressed, aren't you?\tTu es déprimé, n'est-ce pas ?\nYou're depressed, aren't you?\tVous êtes déprimée, n'est-ce pas ?\nYou're depressed, aren't you?\tVous êtes déprimées, n'est-ce pas ?\nYou're depressed, aren't you?\tVous êtes déprimés, n'est-ce pas ?\nYou're depressed, aren't you?\tVous êtes déprimé, n'est-ce pas ?\nYou're doing the right thing.\tTu fais la bonne chose.\nYou're doing the right thing.\tVous faites la bonne chose.\nYou're driving like a maniac!\tVous conduisez comme un taré !\nYou're embarrassing yourself.\tTu te ridiculises.\nYou're impressed, aren't you?\tVous êtes impressionné, n'est-ce pas ?\nYou're impressed, aren't you?\tVous êtes impressionnée, n'est-ce pas ?\nYou're impressed, aren't you?\tVous êtes impressionnés, n'est-ce pas ?\nYou're impressed, aren't you?\tVous êtes impressionnées, n'est-ce pas ?\nYou're impressed, aren't you?\tTu es impressionnée, pas vrai ?\nYou're impressed, aren't you?\tTu es impressionné, pas vrai ?\nYou're just being diplomatic.\tTu veux juste paraître diplomate.\nYou're just like your father.\tTu es exactement comme ton père.\nYou're just like your father.\tVous êtes exactement comme votre père.\nYou're just like your mother.\tTu es exactement comme ta mère.\nYou're just like your mother.\tVous êtes exactement comme votre mère.\nYou're not going fast enough.\tTu ne vas pas assez vite.\nYou're not going fast enough.\tVous n'allez pas assez vite.\nYou're not my friend anymore.\tTu n'es plus mon ami.\nYou're not my friend anymore.\tVous n'êtes plus mon ami.\nYou're not my friend anymore.\tVous n'êtes plus mon amie.\nYou're not my friend anymore.\tTu n'es plus mon amie.\nYou're not telling the truth.\tTu ne dis pas la vérité.\nYou're not telling the truth.\tVous ne dites pas la vérité.\nYou're not thinking straight.\tTu penses de travers.\nYou're not totally blameless.\tTu n'es pas totalement irréprochable.\nYou're not usually like this.\tVous n'êtes pas ainsi, d'ordinaire.\nYou're not usually like this.\tTu n'es pas ainsi, d'ordinaire.\nYou're not wearing any pants.\tTu ne portes aucun pantalon.\nYou're required to help them.\tOn attend de vous que vous les aidiez.\nYou're still mad, aren't you?\tVous êtes toujours en colère, n'est-ce pas ?\nYou're still mad, aren't you?\tTu es toujours en colère, n'est-ce pas ?\nYou're still mad, aren't you?\tVous êtes encore en colère, n'est-ce pas ?\nYou're still mad, aren't you?\tTu es encore en colère, n'est-ce pas ?\nYou're the girl of my dreams.\tTu es la fille de mes rêves.\nYou've had all week to study.\tTu as eu toute la semaine pour étudier.\nYou've had all week to study.\tVous avez eu toute la semaine pour étudier.\nYour birthday is coming soon.\tTon anniversaire arrive bientôt.\nYour birthday is coming soon.\tVotre anniversaire arrive bientôt.\nYour cat is driving me crazy.\tTon chat me rend dingue.\nYour cat is driving me crazy.\tTon chat me rend chèvre.\nYour courtesy is appreciated.\tVotre courtoisie est appréciée.\nYour daughter is very pretty.\tTa fille est très jolie.\nYour daughter is very pretty.\tVotre fille est très jolie.\nYour daughters are beautiful.\tVos filles sont belles.\nYour efforts came to nothing.\tVos efforts se réduisirent à rien.\nYour efforts came to nothing.\tTes efforts se sont réduits à rien.\nYour friendship is important.\tTon amitié importe.\nYour hands need to be washed.\tTes mains ont besoin d'être lavées.\nYour hands need to be washed.\tVos mains ont besoin d'être lavées.\nYour idea is similar to mine.\tTon idée est similaire à la mienne.\nYour paintings are beautiful.\tVos tableaux sont beaux.\nYour paintings are beautiful.\tTes tableaux sont beaux.\nYour pen is better than mine.\tTon stylo est meilleur que le mien.\nYour pen is better than mine.\tVotre stylo est meilleur que le mien.\nYour pencils need sharpening.\tTes crayons doivent être aiguisés.\nYour pencils need sharpening.\tVos crayons doivent être aiguisés.\nYour sweater is on backwards.\tTon chandail est à l'envers.\nYouth is wasted on the young.\tLa jeunesse est gaspillée par les jeunes.\n\"I like traveling.\" \"So do I.\"\t«J'aime voyager.» «Moi aussi.»\n\"Is she young?\" \"Yes, she is.\"\t«Est-elle jeune ?» «Oui.»\n\"Thank you.\" \"You're welcome.\"\t« Merci. » « Avec plaisir. »\n\"Who is in the car?\" \"Tom is.\"\t\"Qui est dans la voiture ?\" \"Tom.\"\nA boy came running towards me.\tUn garçon vint en courant vers moi.\nA burnt child dreads the fire.\tChat échaudé craint l'eau froide.\nA burnt child dreads the fire.\tUn enfant brûlé craint le feu.\nA button has come off my coat.\tUn bouton s'est décousu de ma veste.\nA crowd gathered at the scene.\tUne foule se rassembla sur le lieu.\nA doctor was sent for at once.\tOn appela immédiatement un docteur.\nA dog followed me to my house.\tUn chien m'a suivi jusqu'à chez moi.\nA dog was run over by a truck.\tUn chien a été écrasé par un camion.\nA dolphin is a kind of mammal.\tUn dauphin est une sorte de mammifère.\nA face appeared at the window.\tUn visage apparut à la fenêtre.\nA good citizen obeys the laws.\tLe bon citoyen obéit à la loi.\nA good idea came into my head.\tUne bonne idée m'a traversé l'esprit.\nA good idea came into my mind.\tUne bonne idée me vint à l'esprit.\nA good many people were there.\tUn bon nombre de personnes étaient là.\nA good sweat will cure a cold.\tUne bonne suée guérira un rhume.\nA new oil tanker was launched.\tOn a lancé un nouveau pétrolier.\nA new room was assigned to me.\tUne nouvelle salle m'a été attribuée.\nA new year always brings hope.\tUne nouvelle année apporte toujours de l'espoir.\nA number of books were stolen.\tDe nombreux livres furent volés.\nA red dress looks good on her.\tUne robe rouge lui va bien.\nA rose has thorns on its stem.\tUne rose a des épines sur sa tige.\nA smile doesn't cost anything.\tUn sourire ne coûte rien.\nA square has four equal sides.\tUn carré a quatre côtés égaux.\nA unicycle has only one wheel.\tUn monocycle n'a qu'une seule roue.\nA yard is equal to three feet.\tUn yard est égal à trois pieds.\nAbove all, children need love.\tPar-dessus tout, les enfants ont besoin d'amour.\nAccidents happen all the time.\tDes accidents arrivent tout le temps.\nAccidents happen all the time.\tLes accidents arrivent tout le temps.\nAccidents happen all the time.\tDes accidents surviennent tout le temps.\nAccidents happen all the time.\tLes accidents surviennent tout le temps.\nActually, I feel like talking.\tEn vérité, j'ai envie de discuter.\nActually, I've never seen one.\tEn fait, je n'en ai jamais vu.\nActually, it was quite simple.\tEn fait, c'était assez simple.\nAdjust the microscope's focus.\tRègle le foyer du microscope.\nAh! That clears up everything.\tAh ! Tout s'éclaire maintenant !\nAll I can do is to do my best.\tTout ce que je peux faire c'est faire de mon mieux.\nAll of them are good teachers.\tCe sont tous de bons enseignants.\nAll our attempts were in vain.\tToutes nos tentatives furent vaines.\nAll that glitters is not gold.\tTout ce qui brille n'est pas or.\nAll the boys are the same age.\tTous les garçons sont du même âge.\nAll the guests have gone home.\tTous les invités sont rentrés au bercail.\nAll the guests have gone home.\tTous les invités sont rentrés chez eux.\nAll the ingredients are fresh.\tTous les ingrédients sont frais.\nAll the sails were taken down.\tToutes les voiles étaient descendues.\nAll the sails were taken down.\tToutes les voiles furent affalées.\nAll we can do is wait for him.\tLa seule chose à faire est de l'attendre.\nAll you have to do is to wait.\tTout ce que vous avez à faire, c'est d'attendre.\nAll you have to do is to wait.\tTout ce que tu dois faire, c'est attendre.\nAm I going to be normal again?\tVais-je être à nouveau normal ?\nAm I going to be normal again?\tVais-je être à nouveau normale ?\nAmerica did away with slavery.\tLes États-Unis d'Amérique ont aboli l'esclavage.\nAn android is a kind of robot.\tUn androïde est une sorte de robot.\nAn eagle is flying in the sky.\tUn aigle vole dans le ciel.\nAnswer at once when spoken to.\tRépondez immédiatement lorsqu'on s'adresse à vous.\nAntimatter is highly unstable.\tL'antimatière est très instable.\nAny bed is better than no bed.\tN'importe quel lit vaut mieux que pas de lit du tout.\nAny house is better than none.\tN'importe quelle maison vaut mieux qu'aucune.\nAnyone can write his own name.\tTout un chacun sait écrire son propre nom.\nAre Tom and Mary your friends?\tTom et Marie sont-ils vos amis?\nAre all the passengers aboard?\tTous les passagers sont-ils à bord ?\nAre any seats still available?\tDes places sont-elles encore disponibles ?\nAre any seats still available?\tDes fauteuils sont-ils encore disponibles ?\nAre you a high school student?\tEs-tu lycéen ?\nAre you a high school student?\tEs-tu lycéenne ?\nAre you a high school student?\tÊtes-vous lycéen ?\nAre you a member of this crew?\tÊtes-vous membre de cet équipage ?\nAre you a member of this crew?\tEs-tu membre de cet équipage ?\nAre you aware of any problems?\tÊtes-vous au fait de problèmes quelconques ?\nAre you enjoying your weekend?\tPrenez-vous plaisir à votre week-end ?\nAre you enjoying your weekend?\tPrends-tu plaisir à ton week-end ?\nAre you free tomorrow evening?\tVous êtes libre demain soir ?\nAre you getting enough oxygen?\tAs-tu assez d'oxygène ?\nAre you getting enough oxygen?\tAvez-vous assez d'oxygène ?\nAre you going to be all right?\tEst-ce que ça ira ?\nAre you gonna help me or what?\tVas-tu m'aider ou quoi ?\nAre you insinuating something?\tÊtes-vous en train d'insinuer quelque chose?\nAre you interested in flowers?\tEs-tu intéressé par les fleurs ?\nAre you looking for something?\tEst-ce que tu cherches quelque chose ?\nAre you looking for something?\tCherchez-vous quelque chose ?\nAre you looking for something?\tCherches-tu quelque chose ?\nAre you looking for something?\tTu cherches quelque chose ?\nAre you on drugs or something?\tVous vous droguez, ou quoi ?\nAre you on drugs or something?\tTu te drogues, ou quoi ?\nAre you playing games with me?\tEs-tu en train de jouer avec moi ?\nAre you playing games with me?\tÊtes-vous en train de jouer avec moi ?\nAre you retarded or something?\tÊtes-vous attardé mental ou quoi ?\nAre you retarded or something?\tEs-tu attardé mental ou quoi ?\nAre you still studying French?\tÉtudies-tu toujours le français ?\nAre you still studying French?\tÉtudiez-vous encore le français ?\nAre you still working for Tom?\tTravaillez-vous toujours pour Tom ?\nAre you sure that's necessary?\tEs-tu sûr que c'est nécessaire ?\nAre you sure that's necessary?\tEs-tu sûre que c'est nécessaire ?\nAre you sure that's necessary?\tÊtes-vous sûr que c'est nécessaire ?\nAre you sure that's necessary?\tÊtes-vous sûre que c'est nécessaire ?\nAre you sure that's necessary?\tÊtes-vous sûrs que c'est nécessaire ?\nAre you sure that's necessary?\tÊtes-vous sûres que c'est nécessaire ?\nAre you sure they can do this?\tEs-tu sûr qu'ils peuvent faire ça ?\nAre you sure they can do this?\tEs-tu sûre qu'ils peuvent faire ça ?\nAre you sure they can do this?\tEs-tu sûr qu'elles peuvent faire ça ?\nAre you sure they can do this?\tEs-tu sûre qu'elles peuvent faire ça ?\nAre you sure they can do this?\tÊtes-vous sûr qu'elles peuvent faire ça ?\nAre you sure they can do this?\tÊtes-vous sûr qu'ils peuvent faire ça ?\nAre you sure they can do this?\tÊtes-vous sûre qu'elles peuvent faire ça ?\nAre you sure they can do this?\tÊtes-vous sûre qu'ils peuvent faire ça ?\nAre you sure they can do this?\tÊtes-vous sûres qu'elles peuvent faire ça ?\nAre you sure they can do this?\tÊtes-vous sûres qu'ils peuvent faire ça ?\nAre you sure they can do this?\tÊtes-vous sûrs qu'elles peuvent faire ça ?\nAre you sure they can do this?\tÊtes-vous sûrs qu'ils peuvent faire ça ?\nAre you sure you're not tired?\tEs-tu sûr de ne pas être fatigué ?\nAre you sure you're not tired?\tEs-tu sûr que tu n'es pas fatigué ?\nAre you sure you're not tired?\tEs-tu sûre que tu n'es pas fatiguée ?\nAre you sure you're not tired?\tEs-tu sûre de ne pas être fatiguée ?\nAre you sure you're not tired?\tÊtes-vous sûr de ne pas être fatigué ?\nAre you sure you're not tired?\tÊtes-vous sûre de ne pas être fatiguée ?\nAre you sure you're not tired?\tÊtes-vous sûrs de ne pas être fatigués ?\nAre you sure you're not tired?\tÊtes-vous sûres de ne pas être fatiguées ?\nAre you sure you're not tired?\tÊtes-vous sûr que vous n'êtes pas fatigué ?\nAre you sure you're not tired?\tÊtes-vous sûre que vous n'êtes pas fatiguée ?\nAre you sure you're not tired?\tÊtes-vous sûrs que vous n'êtes pas fatigués ?\nAre you sure you're not tired?\tÊtes-vous sûres que vous n'êtes pas fatiguées ?\nAre you sure you're up for it?\tEs-tu sûr d'y être prêt ?\nAre you sure you're up for it?\tEs-tu sûre d'y être prête ?\nAre you sure you're up for it?\tÊtes-vous sûr d'y être prêt ?\nAre you sure you're up for it?\tÊtes-vous sûrs d'y être prêts ?\nAre you sure you're up for it?\tÊtes-vous sûre d'y être prête ?\nAre you sure you're up for it?\tÊtes-vous sûres d'y être prêtes ?\nAren't you afraid of anything?\tN'as-tu peur de rien ?\nAren't you afraid of anything?\tN'avez-vous peur de rien ?\nAren't you going to report it?\tN'allez-vous pas en faire part ?\nAren't you going to report it?\tNe vas-tu pas en faire part ?\nAren't you pushing it too far?\tNe pousses-tu pas le bouchon trop loin ?\nAren't you pushing it too far?\tNe poussez-vous pas le bouchon trop loin ?\nAren't you too young to smoke?\tN'es-tu pas trop jeune pour fumer ?\nAren't you too young to smoke?\tN'êtes-vous pas trop jeune pour fumer ?\nAren't you too young to smoke?\tN'êtes-vous pas trop jeunes pour fumer ?\nAren't you too young to smoke?\tTu n'es pas trop jeune pour fumer ?\nArithmetic deals with numbers.\tL'arithmétique traite des nombres.\nAs a singer, she's well known.\tEn tant que chanteuse, elle est bien connue.\nAs far as I know, he's guilty.\tPour autant que je sache, il est coupable.\nAs for me, I like this better.\tMoi, je préfère celui-ci.\nAsk him if you have any doubt.\tDemande-lui si tu as le moindre doute.\nAsk if he wants another drink.\tDemande-lui s'il veut autre chose à boire !\nAsk if he wants another drink.\tDemande s'il veut autre chose à boire !\nAt home, we speak only French.\tÀ la maison, nous ne parlons que français.\nAt home, we speak only French.\tÀ la maison, nous ne parlons que le français.\nAt home, we speak only French.\tÀ la maison, nous parlons exclusivement français.\nAt last, the baby fell asleep.\tLe bébé s'est enfin endormi.\nAt last, they were reconciled.\tEnfin ils se réconcilièrent.\nAt what time is dinner served?\tÀ quelle heure est servi le dîner ?\nAt what time is dinner served?\tÀ quelle heure le dîner est-il servi ?\nAttach labels to all the bags.\tMettez une étiquette sur tous les sacs.\nBabies crawl before they walk.\tLes bébés rampent avant de marcher.\nBasset hounds are gentle dogs.\tLes bassets sont des chiens tranquilles.\nBe careful about what you eat.\tSois prudent quant à ce que tu manges.\nBe careful about what you eat.\tSoyez prudent quant à ce que vous mangez.\nBe careful about what you eat.\tSoyez prudente quant à ce que vous mangez.\nBe careful about what you eat.\tSoyez prudents quant à ce que vous mangez.\nBe careful about what you eat.\tSoyez prudentes quant à ce que vous mangez.\nBe careful about what you eat.\tSois prudente quant à ce que tu manges.\nBird watching is a nice hobby.\tRegarder les oiseaux est un loisir sympa.\nBoth brothers are still alive.\tLes deux frères sont toujours vivants.\nBoth of the brothers are dead.\tLes deux frères sont morts.\nBoth of them started laughing.\tTous les deux se mirent à rire.\nBoth of them started laughing.\tToutes les deux se mirent à rire.\nBoth of them started laughing.\tTous les deux se sont mis à rire.\nBoth of them started laughing.\tToutes les deux se sont mises à rire.\nBoth of them started laughing.\tTous deux se mirent à rire.\nBoth of them started laughing.\tToutes deux se mirent à rire.\nBoth of them started laughing.\tTous deux se sont mis à rire.\nBoth of them started laughing.\tToutes deux se sont mises à rire.\nBoys can be trained to behave.\tLes garçons peuvent être dressés à bien se comporter.\nBread and milk are good foods.\tLe pain et le lait sont de la bonne nourriture.\nBring along something to read.\tApportez quelque chose à lire !\nBring along something to read.\tApporte quelque chose à lire !\nBring me another fork, please.\tApportez-moi une autre fourchette, je vous en prie.\nBy the way, where do you live?\tAu fait, où vivez-vous ?\nBy the way, where do you live?\tAu fait, où habitez-vous ?\nCall me at six-thirty, please.\tAppelle-moi à 6h30, s'il te plaît.\nCall me if you find something.\tAppelez-moi si vous trouvez quelque chose.\nCall me if you find something.\tAppelle-moi si tu trouves quelque chose.\nCall me if you find something.\tAppelle-moi si vous trouvez quelque chose.\nCall me up when you get there.\tAppelle-moi quand tu seras là-bas.\nCan I bring you anything else?\tPuis-je vous apporter autre chose ?\nCan I bum a cigarette off you?\tPuis-je te taper une cigarette ?\nCan I carry this on the plane?\tEst-ce que je peux emporter ça dans l'avion ?\nCan I have some hot chocolate?\tPuis-je avoir du chocolat chaud ?\nCan I have some water, please?\tPuis-je avoir un peu d'eau, je vous prie ?\nCan I have something to drink?\tPuis-je avoir quelque chose à boire ?\nCan I help you find something?\tPuis-je vous aider à trouver quelque chose ?\nCan I help you find something?\tPuis-je t'aider à trouver quelque chose ?\nCan I see you at ten tomorrow?\tPuis-je vous rencontrer demain à 10 heures ?\nCan I see you at ten tomorrow?\tPuis-je te voir à dix heures demain ?\nCan I speak to the head nurse?\tPuis-je parler à l'infirmière-chef ?\nCan I speak to the head nurse?\tPuis-je parler à l'infirmier-chef ?\nCan I speak to you in private?\tPuis-je te parler en privé ?\nCan I speak to you in private?\tPourrais-je vous parler en tête à tête ?\nCan I tell you guys something?\tEh les mecs, je peux vous dire un truc ?\nCan I use your toilet, please?\tPuis-je utiliser vos toilettes ?\nCan anyone answer my question?\tQuelqu'un peut-il répondre à ma question ?\nCan anyone confirm your story?\tQuelqu'un peut-il confirmer votre histoire?\nCan this wait until next week?\tEst-ce que ça peut attendre la semaine prochaine?\nCan you fix the flat tire now?\tPeux-tu réparer mon pneu crevé maintenant ?\nCan you guys solve the puzzle?\tPouvez-vous résoudre l'énigme, les mecs ?\nCan you help me clean this up?\tPouvez-vous m'aider à nettoyer ceci ?\nCan you help me clean this up?\tPeux-tu m'aider à nettoyer ceci ?\nCan you help me with Japanese?\tPeux-tu m'aider en japonais ?\nCan you make it go any faster?\tPeux-tu le faire aller plus vite ?\nCan you make it go any faster?\tPouvez-vous la faire aller plus vite ?\nCan you please do this for me?\tPeux-tu faire cela pour moi, s'il te plaît ?\nCan you pronounce these words?\tSavez-vous prononcer ces mots ?\nCan you pronounce these words?\tSais-tu prononcer ces mots ?\nCan you prove the allegations?\tPouvez-vous prouver vos allégations ?\nCan you recommend a good play?\tPeux-tu me conseiller un bon jeu ?\nCan you save this seat for me?\tPeux-tu réserver ce siège pour moi ?\nCan you swim across the river?\tPouvez-vous traverser la rivière à la nage ?\nCan you take this call for me?\tPeux-tu prendre cet appel pour moi ?\nCan you tell me what Tom said?\tPeux-tu me dire ce que Tom a dit ?\nCan you tell me what Tom said?\tPouvez-vous me dire ce que Tom a dit ?\nCan you tell me what it means?\tPouvez-vous me dire ce que ça signifie ?\nCan you tell right from wrong?\tSais-tu faire la différence entre le bien et le mal ?\nCan you think of a better way?\tPeux-tu songer à une meilleure façon ?\nCan you think of a better way?\tPouvez-vous songer à meilleure manière ?\nCan't this boat go any faster?\tCe bateau ne peut-il aller plus vite ?\nCan't we keep this between us?\tNe pouvons-nous pas garder ça entre nous ?\nCan't you just leave me alone?\tNe pouvez-vous pas simplement me laisser tranquille ?\nCan't you just leave me alone?\tNe peux-tu pas simplement me laisser tranquille ?\nChristmas is fast approaching.\tNoël arrive à grands pas.\nClearly you're not interested.\tIl est clair que tu n'es pas intéressé.\nClearly you're not interested.\tIl est clair que tu n'es pas intéressée.\nClearly you're not interested.\tIl est clair que vous n'êtes pas intéressé.\nClearly you're not interested.\tIl est clair que vous n'êtes pas intéressée.\nClearly you're not interested.\tIl est clair que vous n'êtes pas intéressés.\nClearly you're not interested.\tIl est clair que vous n'êtes pas intéressées.\nClearly, that wasn't the case.\tClairement, ce n'était pas le cas.\nClose the door when you leave.\tFerme la porte en sortant.\nCome home before it gets dark.\tRentrez avant qu'il ne fasse nuit.\nCome on everyone, let's dance!\tAllez tout le monde, dansons !\nCome over for dinner sometime.\tViens dîner un de ces quatre !\nCome over for dinner sometime.\tVenez dîner un de ces quatre !\nCome over for dinner sometime.\tViens déjeuner un de ces quatre !\nCome over for dinner sometime.\tVenez déjeuner un de ces quatre !\nCould I have some more coffee?\tPourrais-je avoir un peu plus de café ?\nCould I have the bill, please?\tPourrais-je avoir l'addition, s'il vous plait ?\nCould I have the bill, please?\tPourrais-je avoir la note, s'il vous plait ?\nCould I have the bill, please?\tPourrais-je avoir l'addition, je vous prie ?\nCould I have the bill, please?\tPourrais-je avoir la note, je vous prie ?\nCould I please use your phone?\tPourrais-je utiliser ton téléphone s'il te plaît ?\nCould I say something, please?\tPourrais-je dire quelque chose, s'il vous plaît ?\nCould I say something, please?\tPourrais-je dire quelque chose, s'il te plaît ?\nCould somebody get me a spoon?\tQuelqu'un pourrait-il aller me chercher une cuillère ?\nCould someone hand me a knife?\tQuelqu'un pourrait-il me passer un couteau ?\nCould we have a table outside?\tPourrait-on avoir une table à l'extérieur ?\nCould we make this a priority?\tPourrions-nous en faire une priorité ?\nCould you get me another beer?\tPourrais-tu m'amener une autre bière ?\nCould you get me another beer?\tPourriez-vous me prendre une autre bière ?\nCould you give me some advice?\tPourriez-vous me donner quelques conseils ?\nCould you give me some advice?\tPourriez-vous me dispenser quelques conseils ?\nCould you give me some advice?\tPeux-tu me donner quelques conseils ?\nCould you help me when I move?\tPourrez-vous m'aider quand je déménagerai ?\nCould you please stop singing?\tPourrais-tu, s'il te plaît, arrêter de chanter ?\nCould you please stop singing?\tPourriez-vous, s'il vous plaît, arrêter de chanter ?\nCould you repeat that, please?\tPouvez-vous répéter cela, s'il vous plaît ?\nCould you turn off the lights?\tPeux-tu éteindre la lumière ?\nCross out the incorrect words.\tBarrez les mots incorrects.\nDid anybody see what happened?\tQuiconque a-t-il vu ce qui s'est passé ?\nDid anybody see what happened?\tQui que ce soit a-t-il vu ce qui s'est passé ?\nDid anybody see what happened?\tQuiconque a-t-il vu ce qui s'est produit ?\nDid anybody see what happened?\tQui que ce soit a-t-il vu ce qui s'est produit ?\nDid anybody see what happened?\tQui que ce soit a-t-il vu ce qui a eu lieu ?\nDid anybody see what happened?\tQuiconque a-t-il vu ce qui a eu lieu ?\nDid you accept his invitation?\tAs-tu accepté son invitation ?\nDid you accept his invitation?\tAvez-vous accepté son invitation ?\nDid you accomplish your goals?\tAs-tu accompli tes objectifs ?\nDid you accomplish your goals?\tAvez-vous accompli vos objectifs ?\nDid you call him up yesterday?\tL'as-tu appelé hier ?\nDid you call him up yesterday?\tL'avez-vous appelé hier ?\nDid you call him up yesterday?\tL'avez-vous mobilisé hier ?\nDid you call me up last night?\tTu m'as appelé hier soir ?\nDid you call me up last night?\tM'as-tu appelée hier soir ?\nDid you catch the first train?\tEst-ce que tu es monté dans le premier train ?\nDid you catch the first train?\tAs-tu eu le premier train ?\nDid you catch the first train?\tAvez-vous eu le premier train ?\nDid you come here by yourself?\tEs-tu venu jusqu'ici tout seul?\nDid you go to Nikko yesterday?\tEs-tu allé à Nikkô hier ?\nDid you have a nice Christmas?\tAvez-vous passé un bon Noël ?\nDid you have a nice Christmas?\tAs-tu passé un bon Noël ?\nDid you know this at the time?\tLe saviez-vous, à l'époque ?\nDid you know this at the time?\tLe savais-tu, à l'époque ?\nDid you play tennis yesterday?\tEst-ce que tu as joué au tennis hier ?\nDid you play tennis yesterday?\tAs-tu joué au tennis hier ?\nDid you put on some sunscreen?\tAs-tu mis de la crème solaire ?\nDid you see anyone suspicious?\tAvez-vous vu qui que ce soit de suspect ?\nDid you see anyone suspicious?\tAs-tu vu qui que ce soit de suspect ?\nDid you see what Tom just did?\tAvez-vous vu ce que Tom vient de faire?\nDid you sleep much last night?\tAs-tu beaucoup dormi la nuit dernière ?\nDid you talk about your hobby?\tAvez-vous parlé de votre passe-temps ?\nDid you talk to Tom yesterday?\tAs-tu parlé à Tom hier ?\nDid you talk to Tom yesterday?\tAvez-vous parlé à Tom hier ?\nDid you think about our offer?\tAvez-vous pensé à notre offre ?\nDid you think about our offer?\tAvez-vous réfléchi à notre offre ?\nDid you think about our offer?\tAs-tu pensé à notre offre ?\nDid you think about our offer?\tAs-tu réfléchi à notre offre ?\nDid you visit the Tokyo Tower?\tAvez-vous visité la Tour de Tokyo ?\nDid you write down the number?\tAvez-vous noté le numéro ?\nDid you write down the number?\tAs-tu noté le numéro ?\nDid you write down the number?\tAs-tu pris note du numéro ?\nDid you write down the number?\tAvez-vous pris note du numéro ?\nDidn't Tom go to Mary's house?\tTom n'est-il pas allé chez Marie?\nDidn't that strike you as odd?\tCela ne t'a-t-il pas frappé par sa bizarrerie ?\nDo I have to do it over again?\tDois-je le refaire entièrement ?\nDo I have to do it right away?\tDois-je le faire séance tenante ?\nDo I look like I'm having fun?\tAi-je l'air de prendre du plaisir ?\nDo it the way he tells you to.\tFais-le comme il te l'indique.\nDo it the way he tells you to.\tFaites-le de la manière qu'il vous indique.\nDo not take any notice of him.\tNe faites pas attention à lui.\nDo not turn off your computer.\tN'éteignez pas votre ordinateur.\nDo not turn off your computer.\tN'éteins pas ton ordinateur.\nDo not underestimate my power.\tNe sous-estime pas ma puissance.\nDo seedless watermelons exist?\tExiste-t-il des pastèques sans pépins ?\nDo the police know about this?\tLa police est-elle au courant ?\nDo whatever you want about it.\tFaites-en ce qui vous chante !\nDo whatever you want about it.\tFais-en ce qui te chante !\nDo you accept the explanation?\tAcceptes-tu l'explication?\nDo you care to hazard a guess?\tVoudriez-vous hasarder une hypothèse ?\nDo you eat at home or eat out?\tManges-tu chez toi ou à l'extérieur ?\nDo you eat at home or eat out?\tMangez-vous chez vous ou à l'extérieur ?\nDo you eat lunch at your desk?\tPrends-tu ton déjeuner à ton bureau ?\nDo you eat lunch at your desk?\tPrenez-vous votre déjeuner à votre bureau ?\nDo you enjoy living like this?\tAs-tu plaisir à vivre ainsi ?\nDo you enjoy living like this?\tPrends-tu plaisir à vivre ainsi ?\nDo you enjoy living like this?\tAvez-vous plaisir à vivre ainsi ?\nDo you enjoy living like this?\tPrenez-vous plaisir à vivre ainsi ?\nDo you find the work too hard?\tTrouvez-vous le travail trop dur ?\nDo you find the work too hard?\tTrouves-tu le travail trop dur ?\nDo you guys want to come, too?\tEst-ce que vous voulez aussi venir, les gars ?\nDo you have a Twitter account?\tAs-tu un compte Twitter ?\nDo you have a fishing license?\tDisposez-vous d'un permis de pêche ?\nDo you have a fishing license?\tDisposes-tu d'un permis de pêche ?\nDo you have a hunting license?\tDisposez-vous d'un permis de chasse ?\nDo you have a hunting license?\tDisposes-tu d'un permis de chasse ?\nDo you have a menu in English?\tAvez-vous un menu en anglais ?\nDo you have a retirement plan?\tAvez-vous une retraite ?\nDo you have any Japanese beer?\tAvez-vous de la bière japonaise ?\nDo you have any advice for me?\tAs-tu quelques conseils pour moi ?\nDo you have any books to read?\tAvez-vous un livre à lire ?\nDo you have any cheaper rooms?\tEst-ce que vous auriez des chambres moins chères ?\nDo you have any foreign books?\tAvez-vous des livres étrangers ?\nDo you have any grandchildren?\tAvez-vous des petits enfants ?\nDo you have any kind of alibi?\tAs-tu le moindre alibi ?\nDo you have any kind of alibi?\tAvez-vous le moindre alibi ?\nDo you have any kind of alibi?\tDisposez-vous du moindre alibi ?\nDo you have any kind of alibi?\tDisposes-tu du moindre alibi ?\nDo you have any left in stock?\tEn avez-vous encore en stock ?\nDo you have any more of those?\tEn avez-vous davantage ?\nDo you have any more of those?\tAvez-vous davantage de ceux-là ?\nDo you have any more of those?\tVous en reste-t-il ?\nDo you have any more of those?\tVous reste-t-il de ceux-là ?\nDo you have guests for dinner?\tAs-tu des invités pour dîner ?\nDo you have medical insurance?\tAvez-vous une assurance médicale ?\nDo you have plans for tonight?\tTu as des plans pour ce soir ?\nDo you have plans for tonight?\tAs-tu des plans pour ce soir ?\nDo you have someplace to stay?\tAs-tu un endroit où loger ?\nDo you have someplace to stay?\tDisposez-vous d'un endroit pour vous loger ?\nDo you have your plane ticket?\tAs-tu ton billet d'avion ?\nDo you have your plane ticket?\tAvez-vous votre billet d'avion ?\nDo you know a good restaurant?\tConnaissez-vous un bon restaurant ?\nDo you know anything about it?\tEn savez-vous quoi que ce soit ?\nDo you know anything about it?\tEn sais-tu quoi que ce soit ?\nDo you know his older brother?\tConnais-tu son frère aîné ?\nDo you know how to play chess?\tSavez-vous jouer aux échecs ?\nDo you know when he will come?\tSavez-vous quand il va venir ?\nDo you know where he was born?\tSavez-vous où il est né ?\nDo you know where my keys are?\tSavez-vous où se trouvent mes clés ?\nDo you know where my keys are?\tSais-tu où se trouvent mes clés ?\nDo you know where my watch is?\tSavez-vous où est ma montre ?\nDo you know where my watch is?\tTu ne sais pas où est ma montre ?\nDo you know where my watch is?\tSais-tu où est ma montre ?\nDo you know who took the call?\tSavez-vous qui a pris l'appel ?\nDo you know whose car that is?\tSais-tu à qui est cette voiture ?\nDo you know whose car that is?\tTu sais à qui est cette voiture ?\nDo you know whose car this is?\tSavez-vous à qui est cette voiture ?\nDo you like French literature?\tAimez-vous la littérature française ?\nDo you like it when I do this?\tApprécies-tu que je fasse ça ?\nDo you like it when I do this?\tAppréciez-vous que je fasse ça ?\nDo you mind turning on the TV?\tEst-ce que ça te dérange d'allumer la télé ?\nDo you need a ride home later?\tTe faut-il un conducteur pour te ramener chez toi plus tard ?\nDo you need a ride home later?\tVous faut-il un conducteur pour vous ramener chez vous plus tard ?\nDo you really want to do that?\tEst-ce là réellement ce que tu veux faire ?\nDo you really want to do this?\tVeux-tu vraiment faire ceci ?\nDo you really want to do this?\tVeux-tu vraiment faire ça ?\nDo you really want to do this?\tVoulez-vous vraiment faire ceci ?\nDo you remember anything else?\tVous rappelez-vous quoi que ce soit d'autre ?\nDo you remember anything else?\tVous souvenez-vous de quoi que ce soit d'autre ?\nDo you remember anything else?\tTe rappelles-tu quoi que ce soit d'autre ?\nDo you remember anything else?\tTe souviens-tu de quoi que ce soit d'autre ?\nDo you remember what she said?\tVous rappelez-vous ce qu'elle a dit ?\nDo you remember what she said?\tVous souvenez-vous de ce qu'elle a dit ?\nDo you study French every day?\tÉtudiez-vous le français tous les jours ?\nDo you study French every day?\tÉtudies-tu le français tous les jours ?\nDo you take travelers' checks?\tAcceptez-vous les chèques de voyage ?\nDo you think Tom saw anything?\tCrois-tu que Tom a vu quelque chose ?\nDo you think she's attractive?\tLa trouves-tu attirante ?\nDo you think she's attractive?\tTu la trouves attirante ?\nDo you think you can help Tom?\tPenses-tu pouvoir aider Tom ?\nDo you think you can help Tom?\tPensez-vous pouvoir aider Tom ?\nDo you want any of this stuff?\tVeux-tu un quelconque de ces trucs ?\nDo you want any of this stuff?\tVoulez-vous un quelconque de ces trucs ?\nDo you want me to handle this?\tVeux-tu que je gère ça ?\nDo you want me to handle this?\tVeux-tu que je traite ça ?\nDo you want me to handle this?\tVeux-tu que je m'occupe de ça ?\nDo you want me to handle this?\tVoulez-vous que je gère ça ?\nDo you want me to handle this?\tVoulez-vous que je traite ça ?\nDo you want me to handle this?\tVoulez-vous que je m'occupe de ça ?\nDo you want me to lose my job?\tVoulez-vous que je perde mon boulot ?\nDo you want me to lose my job?\tVeux-tu que je perde mon boulot ?\nDo you want me to make coffee?\tVoulez-vous que je fasse du café ?\nDo you want me to make coffee?\tVeux-tu que je fasse du café ?\nDo you want something to read?\tVeux-tu quelque chose à lire ?\nDo you want something to read?\tVoulez-vous quelque chose à lire ?\nDo you want this or don't you?\tVeux-tu ceci ou pas ?\nDo you want this or don't you?\tVoulez-vous ceci ou pas ?\nDo you want this or don't you?\tVeux-tu de ceci ou pas ?\nDo you want this or don't you?\tVoulez-vous de ceci ou pas ?\nDo you want to argue about it?\tVoulez-vous en débattre ?\nDo you want to argue about it?\tVeux-tu en débattre ?\nDo you want to come sit by me?\tVoulez-vous venir vous asseoir à mon côté ?\nDo you want to come sit by me?\tVeux-tu venir t'asseoir à mon côté ?\nDo you want to do it together?\tVoulez-vous le faire ensemble ?\nDo you want to do this or not?\tVeux-tu le faire ou pas ?\nDo you want to do this or not?\tVoulez-vous le faire ou pas ?\nDo you want to get some lunch?\tVoulez-vous déjeuner ?\nDo you want to go get a drink?\tVoulez-vous aller prendre un verre ?\nDo you want to go get a drink?\tVeux-tu aller prendre un verre ?\nDo you want to go out tonight?\tVeux-tu sortir ce soir ?\nDo you want to go out tonight?\tVoulez-vous sortir ce soir ?\nDo you want to hear my theory?\tVoulez-vous entendre ma théorie ?\nDo you want to hear my theory?\tVeux-tu entendre ma théorie ?\nDo you want to learn to drive?\tVeux-tu apprendre à conduire ?\nDo you want to see some magic?\tVeux-tu voir un tour de magie ?\nDo you want to see some magic?\tVoulez-vous voir un tour de magie ?\nDo you want to take that risk?\tVoulez-vous encourir ce risque ?\nDo you want to take that risk?\tVeux-tu encourir ce risque ?\nDo you want us to go with you?\tVous voulez qu'on vous accompagne ?\nDo you want your old job back?\tVoulez-vous récupérer votre ancien poste ?\nDo you want your old job back?\tVeux-tu récupérer ton ancien poste ?\nDoctors thought he had a cold.\tLes docteurs pensaient qu'il avait un rhume.\nDoes anyone know what this is?\tQuiconque sait-il de quoi il s'agit ?\nDoes anyone know what this is?\tQuiconque sait-il ce qu'est ceci ?\nDoes he need to go right away?\tA-t-il besoin de partir immédiatement ?\nDoes it bother you if I smoke?\tCela te dérange-t-il si je fume ?\nDoes it bother you if I smoke?\tCela vous dérange-t-il si je fume ?\nDoes it make a big difference?\tCela fait-il une grande différence ?\nDoes it make a big difference?\tCela fait-il une grosse différence ?\nDoes that mean you won't come?\tEst-ce que ça veut dire que vous n'allez pas venir ?\nDoes that mean you won't come?\tCela signifie-t-il que tu ne viendras pas ?\nDoes that seem strange to you?\tCela vous semble-t-il étrange ?\nDoes that seem strange to you?\tCela te semble-t-il étrange ?\nDoes the medicine act quickly?\tEst-ce que ce médicament fait effet rapidement ?\nDoes the medicine act quickly?\tCe médicament fait-il effet rapidement ?\nDoes this bus go to the beach?\tEst-ce que ce bus va à la plage ?\nDoes this bus go to the beach?\tCe bus se rend-il à la plage ?\nDoes this have to be done now?\tEst-ce qu'il faut le faire maintenant ?\nDoes this sentence make sense?\tCette phrase a-t-elle un sens ?\nDoes this thing actually work?\tCe truc fonctionne-t-il vraiment ?\nDon't I have some say in this?\tN'ai-je pas mon mot à y dire ?\nDon't I have some say in this?\tN'y ai-je pas mon mot à dire ?\nDon't I have some say in this?\tN'ai-je pas mon mot à dire là-dedans ?\nDon't anybody leave this room.\tQue personne ne quitte cette pièce !\nDon't ask me about the speech.\tNe me questionnez pas au sujet du discours !\nDon't ask me about the speech.\tNe me questionne pas au sujet du discours !\nDon't ask such hard questions.\tNe posez pas de questions aussi difficiles.\nDon't be afraid to experiment.\tN'ayez pas peur de pratiquer des expériences !\nDon't be afraid to experiment.\tN'aie pas peur de pratiquer des expériences !\nDon't be late to school again.\tNe sois pas en retard à l'école à nouveau.\nDon't be so harsh on yourself.\tNe soyez pas si dure avec vous-même.\nDon't be so rough on yourself.\tVous ne devriez pas être si dure avec vous-même.\nDon't be too hard on yourself.\tNe sois pas trop dur avec toi-même.\nDon't be too hard on yourself.\tNe soyez pas trop dur avec vous-même !\nDon't be too hard on yourself.\tNe sois pas trop dur avec toi-même !\nDon't blame him for the error.\tNe lui reprochez pas cette erreur.\nDon't bring your dog with you.\tN'amène pas ton chien avec toi.\nDon't buy me presents anymore.\tNe m'achetez plus de cadeaux !\nDon't buy me presents anymore.\tNe m'achète plus de cadeaux !\nDon't buy me presents anymore.\tNe m'achète plus de cadeaux.\nDon't buy me presents anymore.\tNe m'achetez plus de cadeaux.\nDon't call us, we'll call you.\tNe nous appelez pas, nous vous appellerons.\nDon't cave into their demands.\tNe cède pas à ses exigences.\nDon't come so early next time.\tNe venez pas aussi tôt, la prochaine fois !\nDon't come so early next time.\tNe viens pas aussi tôt, la prochaine fois !\nDon't dismiss any possibility.\tNe rejetez aucune possibilité !\nDon't dismiss any possibility.\tNe rejette aucune possibilité !\nDon't do two things at a time.\tNe fais pas deux choses en même temps.\nDon't even say that as a joke.\tNe le dites pas même en guise de plaisanterie !\nDon't even say that as a joke.\tNe le dis pas même en guise de plaisanterie !\nDon't ever make me wait again.\tNe me faites plus jamais attendre !\nDon't ever make me wait again.\tNe me fais plus jamais attendre !\nDon't fall for his old tricks.\tNe tombe pas dans ses vieux pièges.\nDon't forget to call your mom.\tN'oublie pas d'appeler ta maman !\nDon't forget to call your mom.\tN'oubliez pas d'appeler votre maman !\nDon't forget to stir the stew.\tN'oublie pas de remuer le ragoût.\nDon't forget to stir the stew.\tN'oubliez pas de remuer le ragoût.\nDon't get all high and mighty.\tNe te mets pas à faire l'autoritaire !\nDon't give me such a sad look.\tNe me fais pas une tête aussi triste.\nDon't give up without a fight.\tN'abandonnez pas sans combat !\nDon't give up without a fight.\tN'abandonne pas sans combat !\nDon't go if you don't want to.\tN'y va pas si tu n'en as pas envie.\nDon't jump to any conclusions.\tNe sautez pas à de quelconques conclusions !\nDon't jump to any conclusions.\tNe saute pas à de quelconques conclusions !\nDon't leave the water running.\tNe laisse pas l'eau couler.\nDon't leave your stuff behind.\tNe laisse pas tes affaires derrière toi.\nDon't leave your stuff behind.\tNe laissez pas vos affaires derrière vous.\nDon't let the enemy get close.\tNe laissez pas l'ennemi s'approcher.\nDon't let this chance slip by.\tNe laisse pas filer cette chance.\nDon't let this chance slip by.\tNe laissez pas passer cette chance.\nDon't let this chance slip by.\tNe laisse pas passer cette opportunité.\nDon't make me shoot you again.\tNe m'obligez pas à vous tirer à nouveau dessus !\nDon't make me shoot you again.\tNe m'oblige pas à te tirer à nouveau dessus !\nDon't move, or I'll shoot you.\tNe bouge pas ou je te tue.\nDon't move, or I'll shoot you.\tNe bouge pas ou je te descends.\nDon't point your finger at me.\tNe me pointe pas du doigt !\nDon't point your finger at me.\tNe me pointez pas du doigt !\nDon't put anything in the bag.\tNe mets rien dans le sac.\nDon't rely too much on others.\tNe compte pas trop sur les autres.\nDon't take this the wrong way.\tNe prenez pas ça de travers !\nDon't take this the wrong way.\tNe prends pas ça de travers !\nDon't tell me what I can't do.\tNe me dites pas ce que je ne peux pas faire.\nDon't tell me what I can't do.\tNe me dis pas ce que je ne peux pas faire.\nDon't tell me what's possible.\tNe me dites pas ce qui est possible !\nDon't tell me what's possible.\tNe me dis pas ce qui est possible !\nDon't think about it too much.\tN'y pense pas trop.\nDon't think about it too much.\tN'y pensez pas trop.\nDon't toy with her affections.\tNe joue pas avec ses sentiments.\nDon't worry about the results.\tNe vous inquiétez pas des résultats.\nDon't worry about your family.\tNe t'inquiète pas pour ta famille.\nDon't worry about your family.\tNe vous inquiétez pas pour votre famille.\nDon't worry. I have insurance.\tNe t'en fais pas. J'ai une assurance.\nDon't worry. I'm good at this.\tNe t'en fais pas. Je suis bon là-dedans.\nDon't worry. I'm good at this.\tNe vous en faites pas. Je suis bon là-dedans.\nDon't you dare touch anything.\tN'aie pas le toupet de toucher quoi que ce soit !\nDon't you dare touch anything.\tN'ayez pas le toupet de toucher quoi que ce soit !\nDon't you ever say that again.\tNe répétez plus jamais ça !\nDon't you ever say that again.\tNe répéte plus jamais ça !\nDon't you ever say that again.\tNe redites plus jamais ça !\nDon't you ever say that again.\tNe redis plus jamais ça !\nDon't you ever touch me again.\tNe me retouchez plus jamais !\nDon't you ever touch me again.\tNe me retouche plus jamais !\nDon't you find it interesting?\tNe le trouvez-vous pas intéressant ?\nDon't you find it interesting?\tNe le trouves-tu pas intéressant ?\nDon't you have any will power?\tN'avez-vous aucune volonté ?\nDon't you have any will power?\tN'as-tu aucune volonté ?\nDon't you just love a mystery?\tN'adorez-vous pas les mystères ?\nDon't you just love a mystery?\tN'adores-tu pas les mystères ?\nDon't you just love this town?\tN'adorez-vous pas simplement cette ville ?\nDon't you just love this town?\tN'adores-tu pas simplement cette ville ?\nDon't you see what that means?\tNe vois-tu pas ce que cela signifie ?\nDon't you see what that means?\tNe voyez-vous pas ce que cela signifie ?\nDon't you see what's going on?\tNe voyez-vous pas ce qui est en train de se passer ?\nDon't you see what's going on?\tNe vois-tu pas ce qui est en train de se passer ?\nDon't you see what's happened?\tNe voyez-vous pas ce qui est arrivé ?\nDon't you see what's happened?\tNe voyez-vous pas ce qui s'est passé ?\nDon't you see what's happened?\tNe vois-tu pas ce qui est arrivé ?\nDon't you see what's happened?\tNe vois-tu pas ce qui s'est passé ?\nDon't you see what's happened?\tNe voyez-vous pas ce qui s'est produit ?\nDon't you see what's happened?\tNe vois-tu pas ce qui s'est produit ?\nDon't you think it went great?\tNe pensez-vous pas que ça se soit très bien passé ?\nDon't you think it went great?\tNe penses-tu pas que ça se soit très bien passé ?\nDon't you think this suits me?\tNe penses-tu pas que ça m'aille ?\nDon't you think this suits me?\tNe pensez-vous pas que ça m'aille ?\nDon't you think this suits me?\tNe penses-tu pas que ça me siée ?\nDon't you think this suits me?\tNe pensez-vous pas que ça me siée ?\nDon't you want some ice cream?\tNe voulez-vous pas de glace ?\nDon't you want some ice cream?\tNe veux-tu pas de glace ?\nDon't you want to come inside?\tNe voulez-vous pas venir à l'intérieur ?\nDon't you want to come inside?\tNe veux-tu pas venir à l'intérieur ?\nDon't you wish you lived here?\tN'aimeriez-vous pas vivre ici ?\nDon't you wish you lived here?\tN'aimerais-tu pas vivre ici ?\nDon't you worry about a thing.\tNe te soucie de rien !\nDon't you worry about a thing.\tNe vous souciez de rien !\nDragons are imaginary animals.\tLes dragons sont des animaux imaginaires.\nDriving too fast is dangerous.\tConduire trop vite est dangereux.\nDry the pants on the radiator.\tSèche le pantalon sur le radiateur !\nEach student has his own desk.\tChaque élève dispose de son propre pupitre.\nEarthquakes destroy buildings.\tLes tremblements de terre détruisent les bâtiments.\nEat your soup while it is hot.\tMange ta soupe pendant qu'elle est chaude.\nEat your soup while it is hot.\tBois ta soupe tant qu'elle est chaude.\nElephants can't ride bicycles.\tLes éléphants ne peuvent pas monter à vélo.\nEleven o'clock is good for me.\tJe peux venir à 11 heures.\nEmpty the purse into this bag.\tVide le porte-monnaie dans ce sac.\nEngland is proud of her poets.\tL'Angleterre est fière de ses poètes.\nEven my parents don't like me.\tMême mes parents ne m'aiment pas.\nEvery little boy needs a hero.\tChaque petit garçon a besoin d'un héros.\nEvery rule has its exceptions.\tToute règle a ses exceptions.\nEverybody likes polite people.\tTout le monde aime les gens polis.\nEveryone already knows anyway.\tTout le monde le sait déjà de toute façon.\nEveryone but Tom looked happy.\tTout le monde avait l'air heureux sauf Tom.\nEveryone had to start working.\tTout le monde dut se mettre à travailler.\nEveryone had to start working.\tTout le monde a dû se mettre à travailler.\nEveryone is going to be there.\tTout le monde va être là.\nEveryone is very proud of you.\tTout le monde est très fier de vous.\nEveryone is very proud of you.\tTout le monde est très fier de toi.\nEveryone jumped into the pool.\tTout le monde a sauté dans la piscine.\nEveryone knew what went wrong.\tTout le monde savait ce qui avait déconné.\nEveryone recognized his skill.\tTout le monde a reconnu son talent.\nEveryone thinks I'm going mad.\tTout le monde pense que je deviens fou.\nEveryone thinks I'm going mad.\tTout le monde pense que je deviens folle.\nEverything is different today.\tTout est différent aujourd'hui.\nEverything is going very well.\tTout se passe très bien.\nEverything is going very well.\tTout se déroule très bien.\nEverything should be in order.\tTout devrait être en ordre.\nEverything's going to be fine.\tTout va bien se passer.\nExcuse me, I'm coming through.\tExcusez-moi, je passe.\nExcuse me, is this seat taken?\tExcusez-moi, cette place est-elle prise ?\nFact is stranger than fiction.\tLa réalité est plus étrange que la fiction.\nFallen rocks blocked the road.\tDes éboulements de roches bloquaient la route.\nFasten your seat belt, please.\tVeuillez attacher votre ceinture de sécurité.\nFeeding pigeons is prohibited.\tIl est interdit de nourrir les pigeons.\nFew people live on the island.\tPeu de gens vivent sur l'île.\nFew students understand Latin.\tIl y a peu d’étudiants qui comprennent le latin.\nFinally, he achieved his goal.\tIl atteignit finalement son objectif.\nFirst of all, I must say this.\tTout d'abord, je dois dire ceci.\nFish cannot live out of water.\tLes poissons ne peuvent pas vivre hors de l'eau.\nFish cannot live out of water.\tLes poissons ne peuvent vivre hors de l'eau.\nFlattery will get you nowhere.\tLa flatterie ne te mènera nulle part.\nFlattery will get you nowhere.\tLa flatterie ne vous mènera nulle part.\nFood shouldn't look like this.\tLa nourriture n'est pas sensée ressembler à ça.\nFootball is an exciting sport.\tLe football est un sport excitant.\nFor me, this is not a problem.\tPour moi, ça ne pose aucun problème.\nFrance was at war with Russia.\tLa France fut en guerre avec la Russie.\nFrance was at war with Russia.\tLa France était en guerre avec la Russie.\nFrankly speaking, he is wrong.\tÀ franchement parler, il a tort.\nFrench isn't an easy language.\tLe français n'est pas une langue facile.\nFruit tends to rot right away.\tLes fruits tendent à pourrir tout de suite.\nGet off the train immediately.\tDescends du train immédiatement.\nGet up early tomorrow morning!\tLève-toi de bonne heure, demain matin !\nGiraffes have very long necks.\tLes girafes ont un très long cou.\nGive me a full glass of water.\tDonnez-moi un verre plein d'eau.\nGive me something to write on.\tDonne-moi quelque chose sur quoi écrire.\nGive me something to write on.\tDonnez-moi quelque chose sur quoi écrire.\nGive me three pieces of chalk.\tDonnez-moi trois morceaux de craies.\nGive me your telephone number.\tDonne-moi ton numéro de téléphone.\nGreek is not an easy language.\tLe grec n'est pas une langue facile.\nGuess who's coming for dinner.\tDevine qui vient dîner !\nGuess who's coming for dinner.\tDevinez qui vient dîner !\nGuess who's coming for dinner.\tDevine qui vient souper !\nGuys, it's my time to go away.\tLes amis, il est temps que j'y aille.\nHabits are difficult to break.\tLes habitudes sont difficiles à rompre.\nHalf of the apples are rotten.\tLa moitié des pommes sont pourries.\nHalf of the apples are rotten.\tLa moitié des pommes est pourrie.\nHalf of the melons were eaten.\tLa moitié des melons a été mangée.\nHalf the students were absent.\tLa moitié des étudiants furent absents.\nHalf the students were absent.\tLa moitié des étudiants ont été absents.\nHang on a bit until I'm ready.\tAttends un peu jusqu'à ce que je sois prêt.\nHang on a bit until I'm ready.\tAttendez un peu jusqu'à ce que je sois prêt.\nHang on a bit until I'm ready.\tAttends un peu jusqu'à ce que je sois prête.\nHang on. We'll be right there.\tTiens bon ! Nous arrivons.\nHang on. We'll be right there.\tTenez bon ! Nous arrivons.\nHang that picture on the wall.\tAccroche cette image au mur.\nHas anyone thought about this?\tQuelqu'un a-t-il pensé à ceci ?\nHas anything strange happened?\tS'est-il passé quoi que ce soit d'étrange ?\nHas something happened to Tom?\tEst-ce que quelque chose est arrivé à Tom ?\nHas something happened to Tom?\tQuelque chose est-il arrivé à Tom ?\nHasn't the parcel arrived yet?\tLe paquet n'est-il pas encore arrivé ?\nHave I answered your question?\tAi-je répondu à votre question ?\nHave we understood each other?\tNous sommes-nous compris ?\nHave we understood each other?\tNous sommes-nous comprises ?\nHave you already eaten supper?\tAs-tu déjà mangé ton dîner ?\nHave you already eaten supper?\tAvez-vous déjà mangé votre souper ?\nHave you been listening to me?\tM'avez-vous écouté ?\nHave you been listening to me?\tM'avez-vous écoutée ?\nHave you been listening to me?\tM'as-tu écouté ?\nHave you been listening to me?\tM'as-tu écoutée ?\nHave you eaten your lunch yet?\tAs-tu déjà pris ton déjeuner ?\nHave you ever been hypnotized?\tAs-tu déjà été hypnotisé ?\nHave you ever been hypnotized?\tAs-tu déjà été hypnotisée ?\nHave you ever been hypnotized?\tAvez-vous déjà été hypnotisé ?\nHave you ever been hypnotized?\tAvez vous déjà été hypnotisée ?\nHave you ever been hypnotized?\tAvez-vous déjà été hypnotisées ?\nHave you ever been hypnotized?\tAvez vous déjà été hypnotisés ?\nHave you ever been to America?\tEs-tu déjà allé en Amérique ?\nHave you ever heard of Nessie?\tAvez-vous déjà entendu parler de Nessie ?\nHave you ever lived in Boston?\tAvez-vous déjà vécu à Boston ?\nHave you ever lived in Boston?\tAvez-vous déjà habité à Boston ?\nHave you ever lived in Boston?\tAs-tu déjà vécu à Boston ?\nHave you ever lived in Boston?\tAs-tu déjà habité à Boston ?\nHave you ever played baseball?\tAs-tu joué un jour au baseball ?\nHave you figured out the cost?\tAs-tu calculé le coût ?\nHave you figured out the cost?\tAvez-vous calculé le coût ?\nHave you gone over the lesson?\tAs-tu révisé la leçon?\nHave you got something for me?\tAvez-vous quelque chose pour moi ?\nHave you got something for me?\tAs-tu quelque chose pour moi ?\nHave you known her since 1990?\tLa connais-tu depuis 1990 ?\nHave you made any friends yet?\tVous êtes-vous déjà fait des amis ?\nHave you made any friends yet?\tT'es-tu déjà fait des amis ?\nHave you memorized his number?\tAs-tu mémorisé son numéro ?\nHave you memorized his number?\tAvez-vous mémorisé son numéro ?\nHave you told Tom you're here?\tAs-tu dit à Tom que tu es ici ?\nHave you told Tom you're here?\tAvez-vous dit à Tom que vous êtes ici ?\nHe accused me of being a liar.\tIl m'accusa d'être un menteur.\nHe accused me of being a liar.\tIl m'accusa d'être une menteuse.\nHe accused me of being a liar.\tIl m'a accusé d'être une menteuse.\nHe admitted that he was wrong.\tIl a admis avoir eu tort.\nHe always says the same thing.\tIl dit toujours la même chose.\nHe always sings in the shower.\tIl chante toujours sous la douche.\nHe apologized to the employee.\tIl s'excusa auprès de l'employé.\nHe apologized to the employee.\tIl s'excusa auprès de l'employée.\nHe appeared thinner every day.\tIl semblait mincir de jour en jour.\nHe arrived earlier than usual.\tIl est arrivé plus tôt que d'habitude.\nHe asked a very good question.\tIl a posé une très bonne question.\nHe asked for a drink of water.\tIl demanda un verre d'eau.\nHe asked his friends for help.\tIl demanda de l'aide à ses amis.\nHe asked me if I had found it.\tIl m'a demandé si je l'avais trouvé.\nHe asked me what I had bought.\tIl m'a demandé ce que j'avais acheté.\nHe avenged his father's death.\tIl vengea la mort de son père.\nHe behaved himself like a man.\tIl s'est comporté comme un homme.\nHe behaved like he was afraid.\tIl s'est comporté comme s'il était effrayé.\nHe believes that he is a hero.\tIl se prend pour un héros.\nHe belongs to our tennis team.\tIl fait partie de notre équipe de tennis.\nHe belongs to the upper class.\tIl appartient à la classe supérieure.\nHe blamed me for the accident.\tIl m'a rendu responsable de l'accident.\nHe blamed me for the accident.\tIl a rejeté sur moi la faute de l'accident.\nHe bought a new pair of shoes.\tIl a acheté une nouvelle paire de chaussures.\nHe bought her some chocolates.\tIl lui a acheté des chocolats.\nHe bought me a new dictionary.\tIl m'a acheté un nouveau dictionnaire.\nHe brought me back in his car.\tIl m'a ramené dans sa voiture.\nHe came at about four o'clock.\tIl est venu vers quatre heures.\nHe came back after many years.\tIl est revenu après plusieurs années.\nHe came back home a while ago.\tIl est rentré chez lui il y a un moment.\nHe came back home a while ago.\tIl est rentré à la maison il y a un moment.\nHe came back home a while ago.\tIl est rentré chez nous il y a un moment.\nHe came in through the window.\tIl est entré par la fenêtre.\nHe came in through the window.\tIl entra par la fenêtre.\nHe came to ask us to help him.\tIl vint nous prier de l'aider.\nHe can be proud of his father.\tIl peut être fier de son père.\nHe can speak Chinese a little.\tIl parle un peu chinois.\nHe can speak a little English.\tIl parle un peu d'anglais.\nHe can speak a little English.\tIl sait un peu d'anglais.\nHe can't take care of himself.\tIl ne sait pas prendre soin de lui-même.\nHe can't take care of himself.\tIl est incapable de prendre soin de lui-même.\nHe cannot afford to buy a car.\tIl ne peut pas se permettre d'acheter une voiture.\nHe cannot afford to buy a car.\tUne voiture est hors de ses moyens.\nHe complained about the noise.\tIl se plaignait du bruit.\nHe complained about the noise.\tIl s'est plaint du bruit.\nHe continued reading the book.\tIl a continué à lire le livre.\nHe could do nothing but watch.\tIl ne peut que regarder.\nHe could not believe his ears.\tIl ne pouvait pas en croire ses oreilles.\nHe could not walk any further.\tIl ne put marcher davantage.\nHe could not walk any further.\tIl ne pourrait pas marcher plus loin.\nHe could not walk any further.\tIl ne pouvait pas marcher plus loin.\nHe cut him short by saying no.\tIl l'a interrompu en lui disant non.\nHe deserves to know the truth.\tIl mérite de connaître la vérité.\nHe did his best to rescue her.\tIl a fait de son mieux pour la sauver.\nHe did it all out of kindness.\tIl le fit entièrement par gentillesse.\nHe did it not once, but twice.\tIl ne l'a pas fait une fois, mais deux.\nHe did what he promised to do.\tIl a fait ce qu'il a promis.\nHe didn't believe it at first.\tIl ne le croyait pas tout d'abord.\nHe didn't give me much advice.\tIl ne m'a pas donné beaucoup de conseils.\nHe didn't like to be punished.\tIl n'aimait pas être puni.\nHe didn't reveal his identity.\tIl ne dévoila pas son identité.\nHe died at the age of seventy.\tIl est mort à 70 ans.\nHe disappeared into the crowd.\tIl a disparu dans la foule.\nHe does not study hard enough.\tIl n'étudie pas avec assez d'application.\nHe doesn't live there anymore.\tIl n'habite plus ici.\nHe doesn't understand sarcasm.\tIl ne comprend pas les sarcasmes.\nHe doesn't yet know the truth.\tIl ignore encore la vérité.\nHe dozed off in history class.\tIl somnola en cours d'histoire.\nHe drank detergent by mistake.\tIl a avalé du détergent par erreur.\nHe dried himself with a towel.\tIl se sécha avec une serviette.\nHe earns twenty dollars a day.\tIl gagne vingt dollars par jour.\nHe easily licked his opponent.\tIl a facilement réglé le sort de son rival.\nHe encouraged me to try again.\tIl m'a encouragé à essayer encore.\nHe entered junior high school.\tIl est entré au collège.\nHe explained the matter to me.\tIl m'a expliqué l'affaire.\nHe felt it was his duty to go.\tIl sentit que c'était son devoir d'y aller.\nHe felt it was his duty to go.\tIl sentit que c'était son devoir de partir.\nHe felt it was his duty to go.\tIl a senti que c'était son devoir d'y aller.\nHe felt it was his duty to go.\tIl a senti que c'était son devoir de partir.\nHe felt the same way as I did.\tIl ressentit la même chose que moi.\nHe felt the same way as I did.\tIl a ressenti la même chose que moi.\nHe filled the glass with wine.\tIl a rempli la coupe de vin.\nHe finally achieved his goals.\tIl a finalement atteint ses objectifs.\nHe found a ball in the garden.\tIl a trouvé une balle dans le jardin.\nHe gave her a piece of advice.\tIl lui a donné un conseil.\nHe gave me a penetrating gaze.\tIl me lança un regard pénétrant.\nHe goes running every morning.\tIl va courir tous les matins.\nHe got a better score than us.\tIl a reçu une meilleure note que nous.\nHe got out from under the car.\tIl sortit de sous la voiture.\nHe had been walking for hours.\tIl avait marché durant des heures.\nHe had been walking for hours.\tÇa faisait des heures qu'il marchait.\nHe had no idea what to expect.\tIl n'avait aucune idée à quoi s'attendre.\nHe had suffered some failures.\tIl avait encaissé des échecs.\nHe had to part with his house.\tIl a du se séparer de sa maison.\nHe has a fairly large fortune.\tIl détient une fortune plutôt considérable.\nHe has a heated swimming pool.\tIl a une piscine chauffée.\nHe has a lot of acquaintances.\tIl a beaucoup de connaissances.\nHe has a short attention span.\tSon attention est réduite.\nHe has a short attention span.\tSon attention est limitée.\nHe has a swelling on his head.\tIl a une bosse sur la tête.\nHe has a very expensive watch.\tIl a une montre très chère.\nHe has adapted extremely well.\tIl s'est extrêmement bien adapté.\nHe has an inferiority complex.\tIl a un complexe d'infériorité.\nHe has enough money to buy it.\tIl a suffisamment d'argent pour l'acheter.\nHe has fallen in love with me.\tIl est tombé amoureux de moi.\nHe has fallen in love with me.\tIl est tombé en amour avec moi.\nHe has never cleaned his room.\tIl n'a jamais nettoyé sa chambre.\nHe has no friend to play with.\tIl n'a pas d'ami avec qui jouer.\nHe has some money in the bank.\tIl a un peu d'argent à la banque.\nHe held on to my hand tightly.\tIl tint fermement ma main.\nHe hesitated before answering.\tIl a hésité avant de répondre.\nHe hung a picture on the wall.\tIl accrocha une photo au mur.\nHe hung a picture on the wall.\tIl accrocha une image au mur.\nHe hurried to catch the train.\tIl se dépêcha d'attraper le train.\nHe hurt his hand when he fell.\tIl s'est blessé la main en tombant.\nHe hurt his knee when he fell.\tIl se blessa le genou en tombant.\nHe hurt his knee when he fell.\tIl s'est blessé le genou lorsqu'il est tombé.\nHe hurt his knee when he fell.\tIl s'est blessé le genou en tombant.\nHe is a dentist by profession.\tIl est dentiste de profession.\nHe is a hard man to deal with.\tC'est un homme dur en affaire.\nHe is a man you can rely upon.\tC'est un homme sur qui on peut compter.\nHe is a pioneer in this field.\tIl est pionnier en ce domaine.\nHe is a teacher at our school.\tC'est un professeur de notre école.\nHe is able to play the guitar.\tIl sait jouer de la guitare.\nHe is accustomed to hard work.\tIl a l'habitude de travailler dur.\nHe is acquainted with my wife.\tC'est une connaissance de ma femme.\nHe is afraid of becoming sick.\tIl a peur de devenir malade.\nHe is afraid that he will die.\tIl a peur de mourir.\nHe is afraid that he will die.\tIl craint de mourir.\nHe is an ideal husband for me.\tC'est un mari idéal pour moi.\nHe is an utter stranger to me.\tIl m'est totalement inconnu.\nHe is anxious for her to come.\tIl est inquiet de sa venue.\nHe is ashamed of his behavior.\tIl a honte de son attitude.\nHe is better than anyone else.\tIl est mieux que quiconque.\nHe is by far the best student.\tIl est de loin le meilleur des étudiants.\nHe is by far the best student.\tIl est de loin le meilleur élève.\nHe is by far the best student.\tIl est de loin le meilleur étudiant.\nHe is devoid of human feeling.\tIl est dépourvu de sentiments humains.\nHe is earning twice my salary.\tIl gagne deux fois mon salaire.\nHe is familiar with computers.\tIl a l'habitude des ordinateurs.\nHe is fed up with my problems.\tIl en a marre de mes problèmes.\nHe is generous to his friends.\tIl est généreux envers ses amis.\nHe is generous with his money.\tIl est généreux avec son argent.\nHe is lying through his teeth.\tIl ment comme un arracheur de dents.\nHe is lying through his teeth.\tIl ment outrageusement.\nHe is over the hill, you know.\tSes meilleures années sont derrière lui, tu sais.\nHe is proud of being a doctor.\tIl est fier d’être médecin.\nHe is proud of his collection.\tIl est fier de sa collection.\nHe is something of a musician.\tC'est un sacré musicien.\nHe is taller than his brother.\tIl est plus grand que son frère.\nHe is the captain of the team.\tIl est capitaine de l'équipe.\nHe is the image of his father.\tC'est le portrait craché de son père.\nHe is the man you can rely on.\tC'est un homme sur qui vous pouvez compter.\nHe is the tallest of all boys.\tC'est le plus grand de tous les garçons.\nHe is too drunk to drive home.\tIl est trop saoul pour conduire jusque chez lui.\nHe is too dumb to fear danger.\tIl est trop stupide pour craindre le danger.\nHe is used to making speeches.\tIl a l'habitude de réaliser des discours.\nHe is used to such situations.\tIl a l'habitude de ce genre de situation.\nHe is used to such situations.\tIl est habitué à de telles situations.\nHe isn't actually the manager.\tIl n'est pas vraiment le gérant.\nHe isn't actually the manager.\tIl n'est pas le gérant, en fait.\nHe isn't actually the manager.\tIl n'est pas vraiment l'imprésario.\nHe isn't as old as my brother.\tIl n'est pas aussi âgé que mon frère.\nHe isn't rich, but he's happy.\tIl n'est pas riche, mais il est heureux.\nHe just loves to bully people.\tIl aime brutaliser les faibles.\nHe keeps his youth by jogging.\tIl entretient sa jeunesse grâce au jogging.\nHe knocked on the closed door.\tIl a frappé à la porte fermée.\nHe lay on his back on the bed.\tIl était allongé sur le dos sur le lit.\nHe left the book on the table.\tIl laissa le livre sur la table.\nHe let me work in this office.\tIl m'a laissé travailler dans ce bureau.\nHe let me work in this office.\tIl m'a permis de travailler dans ce bureau.\nHe likes coffee without sugar.\tIl aime son café sans sucre.\nHe likes coffee without sugar.\tIl aime le café sans sucre.\nHe likes collecting old coins.\tIl aime collectionner les pièces anciennes.\nHe lived there all by himself.\tIl vécut là tout seul.\nHe lived there all by himself.\tIl a vécu là tout seul.\nHe lives in a gated community.\tIl vit dans un quartier résidentiel clos.\nHe lives in a gated community.\tIl vit dans une résidence fermée.\nHe lives in an enormous house.\tIl vit dans une énorme maison.\nHe lives in this neighborhood.\tIl vit dans le voisinage.\nHe lives in this neighborhood.\tIl vit dans les environs.\nHe lives paycheck to paycheck.\tIl vit au mois le mois.\nHe lives somewhere about here.\tIl vit quelque part près d'ici.\nHe looked unfriendly at first.\tIl avait l'air froid au premier abord.\nHe looks just like his father.\tIl ressemble exactement à son père.\nHe looks just like his mother.\tIl ressemble exactement à sa mère.\nHe loves going to the theater.\tIl adore se rendre au théâtre.\nHe made good use of the money.\tIl a fait bon usage de cet argent.\nHe made his son a wealthy man.\tIl a fait de son fils un homme riche.\nHe made me go against my will.\tIl m'y a fait aller contre ma volonté.\nHe made mistake after mistake.\tIl commit erreur sur erreur.\nHe made mistake after mistake.\tIl a commis erreur sur erreur.\nHe makes good use of his time.\tIl profite bien de son temps.\nHe may have misunderstood you.\tIl vous a peut-être compris de travers.\nHe may have misunderstood you.\tIl t'a peut-être mal compris.\nHe met an unexpected obstacle.\tIl rencontra un obstacle imprévu.\nHe met an unexpected obstacle.\tIl a rencontré un obstacle inattendu.\nHe moved into my neighborhood.\tIl a déménagé dans le voisinage.\nHe never saw his father again.\tIl ne revit jamais son père.\nHe never saw his father again.\tIl n'a jamais revu son père.\nHe never saw his mother again.\tIl ne revit jamais sa mère.\nHe never saw his mother again.\tIl n'a jamais revu sa mère.\nHe never saw his sister again.\tIl ne revit jamais sa sœur.\nHe never saw his sister again.\tIl n'a jamais revu sa sœur.\nHe often asks silly questions.\tIl pose souvent des questions idiotes.\nHe often eats breakfast there.\tIl y prend souvent son petit-déjeuner.\nHe often eats fish for dinner.\tIl mange souvent du poisson à dîner.\nHe often eats fish for dinner.\tIl mange souvent du poisson pour dîner.\nHe often eats fish for dinner.\tIl mange souvent du poisson à souper.\nHe often eats fish for dinner.\tIl mange souvent du poisson pour souper.\nHe often eats fish for dinner.\tIl mange souvent du poisson au dîner.\nHe often eats fish for dinner.\tIl mange souvent du poisson au souper.\nHe often takes me for a drive.\tIl m'emmène souvent pour une promenade en voiture.\nHe ogled a girl outside a pub.\tIl lorgna une fille à l'extérieur d'un pub.\nHe overcame many difficulties.\tIl a surpassé beaucoup de difficultés.\nHe paid a visit to his friend.\tIl rendit visite à son ami.\nHe participated in the debate.\tIl a participé aux débats.\nHe passed away quite suddenly.\tIl est mort assez soudainement.\nHe paused to have a cigarette.\tIl s'est arrêté pour avoir une cigarette.\nHe plans to buy a new bicycle.\tIl a l'intention d'acheter un nouveau vélo.\nHe played tennis all day long.\tIl jouait au tennis toute la journée.\nHe plays the guitar very well.\tIl joue très bien de la guitare.\nHe plays the violin very well.\tIl joue très bien du violon.\nHe proposed an alternate plan.\tIl a proposé un autre plan.\nHe put on an air of innocence.\tIl arbora un masque d'innocence.\nHe quickly runs out of breath.\tIl s'essouffle vite.\nHe reached for the dictionary.\tIl tendit le bras pour attraper le dictionnaire.\nHe regretted having been lazy.\tIl regrettait d'avoir été paresseux.\nHe revealed the secret to her.\tIl lui a révélé son secret.\nHe runs in the park every day.\tIl court chaque jour dans le parc.\nHe said that he would help me.\tIl dit qu'il m'aiderait.\nHe sat listening to the radio.\tIl s'est assis et a écouté la radio.\nHe seems absorbed in his work.\tIl semble absorbé dans son travail.\nHe sees nothing wrong with it.\tIl n'y voit rien de mal.\nHe seldom orders anything new.\tIl commande rarement quoi que ce soit de nouveau.\nHe served his king faithfully.\tIl servit fidèlement son souverain.\nHe shook hands with the mayor.\tIl a serré les mains au maire.\nHe showed up late to practice.\tIl est venu tard à l'entraînement.\nHe slept with the window open.\tIl a dormi avec la fenêtre ouverte.\nHe slept with the window open.\tIl dormait la fenêtre ouverte.\nHe slept with the window open.\tIl dormit la fenêtre ouverte.\nHe smoked a cigar after lunch.\tIl fumait un cigare après le déjeuner.\nHe speaks English fairly well.\tIl parle assez bien l'anglais.\nHe stayed at his aunt's house.\tIl est resté chez sa tante.\nHe stiffed me for fifty bucks.\tIl m'a arnaqué de cinquante balles.\nHe stole a glance at the girl.\tIl jeta un coup d'œil à la fille.\nHe studies history at college.\tIl étudie l'histoire au lycée.\nHe takes a walk every morning.\tIl fait une promenade à pied tous les matins.\nHe takes a walk every morning.\tIl effectue une promenade à pied tous les matins.\nHe thinks he knows everything.\tIl croit qu'il sait tout.\nHe thinks he knows everything.\tIl croit tout savoir.\nHe thinks that she will leave.\tIl pense qu'elle partira.\nHe thought of a good solution.\tIl a pensé à une bonne solution.\nHe thought of a good solution.\tIl pensa à une bonne solution.\nHe threw a rock into the pond.\tIl lança une pierre dans la mare.\nHe threw a rock into the pond.\tIl jeta une pierre dans l'étang.\nHe told her that he loved her.\tIl lui a dit qu'il l'aimait.\nHe told me about the accident.\tIl m'a dit à propos de l'accident.\nHe took a taxi to the station.\tIl prit un taxi pour la gare.\nHe turned down my application.\tIl a rejeté ma candidature.\nHe wanted it to be a surprise.\tIl voulait que ce soit une surprise.\nHe wanted it to be a surprise.\tIl voulut que ce fut une surprise.\nHe wanted to please the crowd.\tIl voulait contenter la foule.\nHe wants to marry my daughter.\tIl veut épouser ma fille.\nHe was a disagreeable old man.\tC'était un vieil homme désagréable.\nHe was a student at that time.\tIl était alors étudiant.\nHe was accused of being a spy.\tIl fut accusé d'être un espion.\nHe was accused of being a spy.\tIl a été accusé d'être un espion.\nHe was accused of evading tax.\tIl fut accusé d'évasion fiscale.\nHe was all alone in the house.\tIl était tout seul dans la maison.\nHe was attracted to the woman.\tIl était attiré par cette femme.\nHe was aware of being watched.\tIl savait qu'on l'épiait.\nHe was better than I expected.\tIl était meilleur que ce à quoi je m'attendais.\nHe was born in Athens in 1956.\tIl est né à Athènes en 1956.\nHe was born in this very room.\tIl est né dans cette même pièce.\nHe was busy with his homework.\tIl était occupé à ses devoirs.\nHe was found guilty of murder.\tIl a été condamné pour meurtre.\nHe was heard singing the song.\tIl fut entendu en train de chanter la chanson.\nHe was hurt in a car accident.\tIl a été blessé dans un accident de voiture.\nHe was jogging down the beach.\tIl courait au bas de la plage.\nHe was kind enough to help me.\tIl a eu la gentillesse de m'aider.\nHe was looking for a good job.\tIl recherchait un bon travail.\nHe was playing tennis all day.\tIl jouait au tennis toute la journée.\nHe was present at the meeting.\tIl était présent à la réunion.\nHe was ready to face his fate.\tIl était prêt à affronter son destin.\nHe was seen crossing the road.\tIl a été vu en train de traverser la route.\nHe was shown the photo by her.\tElle lui a montré la photo.\nHe was walking in front of me.\tIl marchait devant moi.\nHe was willing to help others.\tIl était serviable.\nHe went out a few minutes ago.\tIl est sorti il y a quelques minutes.\nHe went to New York on Monday.\tIl est allé à New York lundi.\nHe whispered something to her.\tIl lui chuchota quelque chose.\nHe whispered something to her.\tIl lui a chuchoté quelque chose.\nHe will always be in my heart.\tIl sera toujours dans mon cœur.\nHe will be back in a few days.\tIl sera de retour dans quelques jours.\nHe will succeed to the throne.\tIl succèdera au trône.\nHe worked long into the night.\tIl a travaillé jusque tard dans la nuit.\nHe worked long into the night.\tIl travailla jusque tard dans la nuit.\nHe works every day but Sunday.\tIl travaille tous les jours sauf le dimanche.\nHe would accept no compromise.\tIl refusait d'accepter un compromis.\nHe would be glad to hear that.\tIl serait ravi d'entendre ça.\nHe would not follow my advice.\tIl refusait de suivre mes conseils.\nHe wrapped his arms around me.\tIl m'enveloppa de ses bras.\nHe wrote down all the details.\tIl nota tous les détails.\nHe wrote down all the details.\tIl prit note de tous les détails.\nHe'll be along in ten minutes.\tIl sera là dans dix minutes.\nHe'll be back by five o'clock.\tIl sera revenu avant 5 heures.\nHe'll be late for the meeting.\tIl va être en retard à la réunion.\nHe'll be there in ten minutes.\tIl sera là dans dix minutes.\nHe's a friend of my brother's.\tC'est un ami de mon frère.\nHe's a rather rare individual.\tC'est un individu plutôt rare.\nHe's a successful businessman.\tC'est un homme d'affaire à succès.\nHe's always changing his mind.\tIl change tout le temps d'avis.\nHe's an intelligent young man.\tC'est un jeune homme intelligent.\nHe's attracted to Asian girls.\tIl est attiré par les filles asiatiques.\nHe's attracted to Asian women.\tIl est attiré par les femmes asiatiques.\nHe's attracted to black women.\tIl est attiré par les négresses.\nHe's attracted to black women.\tIl est attiré par les femmes noires.\nHe's cunning and manipulative.\tIl est rusé et manipulateur.\nHe's curious about everything.\tIl est curieux de tout.\nHe's going to cross the river.\tIl va traverser la rivière.\nHe's more than likely to come.\tIl est plus que probable qu'il vienne.\nHe's not as old as my brother.\tIl n'est pas aussi âgé que mon frère.\nHe's not rich, but he's happy.\tS'il n'est pas riche, il est en tous cas heureux.\nHe's rich, but he's not happy.\tIl est riche mais il n'est pas heureux.\nHe's talking on the telephone.\tIl parle au téléphone.\nHe's very sloppy in his dress.\tIl a vraiment une tenue négligée.\nHe's worried about the result.\tIl se préoccupe du résultat.\nHer car broke down on the way.\tSa voiture tomba en panne sur le chemin.\nHer car broke down on the way.\tSa voiture tomba en panne en chemin.\nHer car broke down on the way.\tSa voiture est tombée en panne sur le chemin.\nHer car broke down on the way.\tSa voiture est tombée en panne en chemin.\nHer coat is fur on the inside.\tL'intérieur de son manteau est en fourrure.\nHer eyes were full of sadness.\tSes yeux étaient remplis de tristesse.\nHer eyes were red from crying.\tSes yeux étaient rouges à force de pleurer.\nHer hands were as cold as ice.\tSes mains étaient aussi froides que de la glace.\nHer house is across the river.\tSa maison se situe de l'autre coté de la rivière.\nHer idea is better than yours.\tSon idée est meilleure que la tienne.\nHer older daughter is married.\tSa fille aînée est mariée.\nHer oldest son is not married.\tSon fils aîné n'est pas marié.\nHer son will succeed for sure.\tSon fils est certain de réussir.\nHer speech moved the audience.\tLe discours qu'elle a tenu a ému l'auditoire.\nHer speech moved the audience.\tSon discours émut l'auditoire.\nHer watch is ten minutes slow.\tSa montre retarde de dix minutes.\nHere are some letters for you.\tVoici quelques lettres pour vous.\nHere are some letters for you.\tVoici quelques lettres pour toi.\nHere is your appointment card.\tVoici votre carte de rendez-vous.\nHere's a basket full of fruit.\tVoilà un panier plein de fruits !\nHey, it doesn't work that way.\tEh, ce n'est pas ainsi que ça fonctionne !\nHis advice counted for little.\tSes conseils ne comptèrent guère.\nHis advice didn't help at all.\tSes conseils n'ont été d'aucune aide.\nHis aim is to become a doctor.\tSon but est de devenir médecin.\nHis car collided with a train.\tSa voiture entra en collision avec un train.\nHis car collided with a train.\tSa voiture est entrée en collision avec un train.\nHis car was seriously damaged.\tSa voiture était sérieusement endommagée.\nHis car was seriously damaged.\tSa voiture était gravement accidentée.\nHis child's life is in danger.\tLa vie de son enfant est en danger.\nHis death was partly my fault.\tSa mort était en partie ma faute.\nHis essay is better than mine.\tSa dissertation est meilleure que la mienne.\nHis face was covered with mud.\tSon visage a été couvert de boue.\nHis father disapproved of him.\tSon père le désapprouva.\nHis father disapproved of him.\tSon père l'a désapprouvé.\nHis girlfriend did it for him.\tSa petite amie l'a fait pour lui.\nHis girlfriend did it for him.\tSa petite copine l'a fait pour lui.\nHis girlfriend did it for him.\tSa copine l'a fait pour lui.\nHis grandmother looks healthy.\tSa grand-mère a l'air en bonne santé.\nHis hobby is stamp collecting.\tSon passe-temps est la collection de timbres.\nHis house is across from mine.\tSa maison est en face de la mienne.\nHis injuries are all external.\tSes blessures sont toutes superficielles.\nHis kindness touched my heart.\tSa gentillesse toucha mon cœur.\nHis mother sighed with relief.\tSa mère soupira de soulagement.\nHis mother was ashamed of him.\tSa mère avait honte de lui.\nHis new film is disappointing.\tSon nouveau film est décevant.\nHis oldest son is not married.\tSon fils aîné n'est pas marié.\nHis room is anything but neat.\tSa chambre est tout sauf propre.\nHis schedule has been changed.\tSon planning a été modifié.\nHis speech lasted three hours.\tSon discours dura trois heures.\nHis uncle died five years ago.\tSon oncle est mort il y a cinq ans.\nHis watch is ten minutes slow.\tSa montre retarde de dix minutes.\nHis way of speaking annoys me.\tSa façon de parler m’agace.\nHis wife is one of my friends.\tSa femme est l'une de mes amies.\nHis wife is one of my friends.\tSon épouse est l'une de mes amies.\nHis wish was to go to America.\tSon souhait était d'aller en Amérique.\nHis wish was to go to America.\tSon souhait était d'aller aux États-Unis d'Amérique.\nHold the ball with both hands.\tTiens le ballon des deux mains.\nHold the vase with both hands.\tTiens le vase avec les deux mains.\nHow about a cup of hot coffee?\tQue dites-vous d'une tasse de café bien chaud ?\nHow about a cup of hot coffee?\tQue dis-tu d'une tasse de café bien chaud ?\nHow are we going to get there?\tComment allons-nous y parvenir ?\nHow are you going to get home?\tComment comptez-vous rentrer chez vous ?\nHow are you going to get home?\tComment vas-tu rentrer chez toi ?\nHow are you going to stop Tom?\tComment vas-tu stopper Tom ?\nHow are you going to stop Tom?\tComment allez-vous arrêter Tom ?\nHow can I ever forgive myself?\tComment puis-je jamais me pardonner ?\nHow could Tom do such a thing?\tComment Tom pourrait-il faire une telle chose?\nHow could anyone be so stupid?\tComment quelqu'un peut-il être si stupide ?\nHow could anyone be so stupid?\tComme peut-on être aussi stupide ?\nHow could you do this to them?\tComment as-tu pu le leur faire ?\nHow could you do this to them?\tComment avez-vous pu le leur faire ?\nHow dare you say such a thing!\tComment osez-vous dire cela ?\nHow dare you say such a thing!\tComment oses-tu dire une telle chose ?\nHow did he come by this money?\tComment est-il venu en possession de cet argent ?\nHow did you come to hear that?\tComment en as-tu entendu parler ?\nHow did you enjoy the concert?\tComment avez-vous trouvé le concert ?\nHow did you get into my house?\tComment es-tu entré chez moi ?\nHow did you get into my house?\tComment as-tu pénétré chez moi ?\nHow did you get into my house?\tComment êtes-vous entré chez moi ?\nHow did you get into my house?\tComment êtes-vous entrée chez moi ?\nHow did you get into my house?\tComment êtes-vous entrées chez moi ?\nHow did you get into my house?\tComment êtes-vous entrés chez moi ?\nHow did you get into my house?\tComment es-tu entrée chez moi ?\nHow did you know we were here?\tComment saviez-vous que nous étions là ?\nHow did you know we were here?\tComment savais-tu que nous étions là ?\nHow did you know where I'd be?\tComment savais-tu où je serais ?\nHow did you know where I'd be?\tComment saviez-vous où je serais ?\nHow did you manage to do that?\tComment t'es-tu débrouillé pour faire ça ?\nHow did you manage to do that?\tComment vous êtes-vous débrouillé pour faire ça ?\nHow did you manage to do that?\tComment t'es-tu débrouillée pour faire ça ?\nHow did you manage to do that?\tComment vous êtes-vous débrouillée pour faire ça ?\nHow did you manage to do that?\tComment vous êtes-vous débrouillés pour faire ça ?\nHow did you manage to do that?\tComment vous êtes-vous débrouillées pour faire ça ?\nHow did you solve the problem?\tComment as-tu résolu le problème ?\nHow did you think it would go?\tComment pensiez-vous qu'il en irait ?\nHow did you think it would go?\tComment pensais-tu qu'il en irait ?\nHow do I get out of this mess?\tComment est-ce que je me sors de ce pétrin ?\nHow do you feel about Tom now?\tComment te sens-tu avec Tom maintenant ?\nHow do you feel about the war?\tQuels sont vos sentiments vis-à-vis de la guerre ?\nHow do you intend to fix this?\tComment as-tu l'intention de réparer ça ?\nHow do you intend to fix this?\tComment avez-vous l'intention de réparer ça ?\nHow do you know that it's his?\tComment sais-tu que c'est la sienne ?\nHow do you know that it's his?\tComment savez-vous que c'est la sienne ?\nHow do you propose to do that?\tComment proposez-vous de le faire ?\nHow do you propose we do that?\tComment proposez-vous que nous le fassions ?\nHow do you think you're doing?\tQue penses-tu de la manière dont tu t'en sors ?\nHow do you think you're doing?\tQue pensez-vous de la manière dont vous vous en sortez ?\nHow do you want me to do that?\tComment voulez-vous que je le fasse ?\nHow do you want me to do that?\tComment veux-tu que je le fasse ?\nHow do you want your hair cut?\tComment voulez-vous vous faire couper les cheveux ?\nHow do you want your hair cut?\tComment veux-tu te faire couper les cheveux ?\nHow far do you live from here?\tÀ quelle distance d'ici vivez-vous ?\nHow far do you live from here?\tÀ quelle distance d'ici vis-tu ?\nHow is your job hunting going?\tComment se passe ta recherche d'emploi ?\nHow is your last name written?\tComment votre nom de famille s'écrit-il ?\nHow is your last name written?\tComment écrit-on ton nom de famille ?\nHow is your last name written?\tComment ton nom de famille s'écrit-il ?\nHow long are we going to wait?\tCombien de temps allons-nous attendre ?\nHow long can I keep this book?\tCombien de temps puis-je garder ce livre ?\nHow long does it take on foot?\tCombien de temps cela prend-il à pied ?\nHow long have you been abroad?\tCombien de temps êtes-vous resté à l'étranger ?\nHow long have you been abroad?\tCombien de temps es-tu resté à l'étranger ?\nHow long have you been dating?\tDepuis combien de temps sortez-vous ensemble ?\nHow long will it be to dinner?\tCombien de temps jusqu'au dîner ?\nHow long will this rain go on?\tPendant combien de temps la pluie va-t-elle tomber ?\nHow long will this rain go on?\tCombien de temps cette pluie va-t-elle durer ?\nHow long will we have to wait?\tCombien de temps aurons-nous à attendre ?\nHow many books do you possess?\tCombien de livres as-tu ?\nHow many books do you possess?\tCombien de livres possédez-vous ?\nHow many brothers do you have?\tCombien de frères as-tu ?\nHow many brothers do you have?\tCombien de frères avez-vous ?\nHow many categories are there?\tCombien y a-t-il de catégories ?\nHow many categories are there?\tCombien de catégories y a-t-il ?\nHow many children do you have?\tCombien avez-vous d'enfants ?\nHow many children do you have?\tCombien d'enfants avez-vous ?\nHow many children do you have?\tCombien d'enfants avez-vous ?\nHow many children do you have?\tCombien d'enfants as-tu ?\nHow many do you have in stock?\tCombien en avez-vous en stock ?\nHow many men are guarding Tom?\tCombien d'hommes gardent Tom ?\nHow many nights will you stay?\tCombien de nuits resterez-vous ?\nHow many of us get the chance?\tCombien d'entre-nous ont cette chance ?\nHow many of you are there now?\tCombien êtes-vous, actuellement ?\nHow many siblings do you have?\tCombien as-tu de frères et sœurs ?\nHow much did the tickets cost?\tCombien ont coûté les billets ?\nHow much did you pay for that?\tCombien as-tu payé pour ça ?\nHow much do those things cost?\tCombien coûtent ces choses ?\nHow much do those things cost?\tCombien coûtent ces choses-là ?\nHow much do you feed your dog?\tQuelle quantité de nourriture donnes-tu à manger à ton chien ?\nHow much do you feed your dog?\tQuelle quantité de nourriture donnez-vous à manger à votre chien ?\nHow much do you have invested?\tCombien as-tu investi ?\nHow much do you have invested?\tCombien avez-vous investi ?\nHow much do you want to spend?\tCombien voulez-vous dépenser ?\nHow much do you want to spend?\tCombien veux-tu dépenser ?\nHow much should I feed my dog?\tQuelle quantité de nourriture devrais-je donner à manger à mon chien ?\nHow often have you been there?\tCombien de fois y es-tu déjà allé ?\nHow old are your children now?\tQuel âge ont tes enfants, maintenant?\nHow old will you be next year?\tQuel âge aurez-vous l'an prochain ?\nHow should I know where he is?\tComment saurais-je où il est ?\nHow was the weather yesterday?\tQuel temps faisait-il hier ?\nHow was the weather yesterday?\tQuel temps a-t-il fait hier ?\nHow will we pay our debts now?\tComment payerons-nous nos dettes, désormais ?\nHow will we pay our debts now?\tComment payerons-nous désormais nos dettes ?\nHow would you like your steak?\tQuelle cuisson pour votre steak ?\nHow would you like your steak?\tQuelle cuisson voudrais-tu pour ton bifteck ?\nHow's the weather in New York?\tQuel temps fait-il à New York ?\nHurry up, or you will be late.\tDépêche-toi ou tu vas être en retard.\nHurry up, or you will be late.\tPlus vite, sinon tu seras en retard.\nI accompanied him on the trip.\tJe l'ai accompagné en voyage.\nI admire you for your courage.\tJe vous admire pour votre courage.\nI admire you for your courage.\tJe t'admire pour ton courage.\nI agree with most people here.\tJe suis d'accord avec la plupart des gens ici.\nI almost bought that same tie.\tJ'ai presque acheté la même cravate.\nI always feel blue on Mondays.\tJ'ai toujours le cafard les lundis.\nI always pay the rent on time.\tJe paie toujours le loyer dans les temps.\nI always pay the rent on time.\tJe paie toujours le loyer à temps.\nI am a student of this school.\tJe suis un étudiant de cette école.\nI am a very good chess player.\tJe suis un excellent joueur d'échecs.\nI am afraid of having trouble.\tJ'ai peur d'avoir des problèmes.\nI am always ready to help you.\tJe t'aide quand tu veux.\nI am anxious about his health.\tJe suis inquiet pour sa santé.\nI am being paranoid, aren't I?\tJe suis paranoïaque, non ?\nI am blessed with good health.\tJ'ai la chance d'avoir une bonne santé.\nI am completely out of breath.\tJe suis complètement essoufflé.\nI am concerned for her safety.\tJe me fais des soucis pour sa sécurité.\nI am disappointed at the news.\tJe suis déçu par les nouvelles.\nI am engaged in AIDS research.\tJe travaille dans la recherche contre le SIDA.\nI am going abroad this summer.\tJe vais à l'étranger cet été.\nI am going out this afternoon.\tJe sors cet après-midi.\nI am growing to hate the girl.\tJe me mets à détester cette fille.\nI am happy to hear your voice.\tJe me réjouis d'entendre votre voix.\nI am happy to hear your voice.\tJe me réjouis d'entendre ta voix.\nI am happy with my girlfriend.\tJe suis heureux avec ma copine.\nI am looking for a good hotel.\tJe cherche un bon hôtel.\nI am looking for an assistant.\tJe recherche un assistant.\nI am making too many mistakes.\tJe commets trop de fautes.\nI am never at home on Sundays.\tJe ne suis jamais à la maison le dimanche.\nI am seeing my uncle tomorrow.\tJe verrai mon oncle demain.\nI am seventeen years old, too.\tJ'ai également dix-sept ans.\nI am singing with my children.\tJe chante avec mes enfants.\nI am sorry if I disturbed you.\tJe suis désolée si je t'ai dérangé.\nI am the tallest in our class.\tJe suis le plus grand de notre classe.\nI am thinking of going abroad.\tJe songe à me rendre à l'étranger.\nI am very glad school is over.\tJe suis très content que l'école soit finie.\nI am very glad school is over.\tJe suis très contente que l'école soit finie.\nI am very interested in music.\tJe suis très intéressé par la musique.\nI am well acquainted with him.\tJe le connais bien.\nI apologize if I offended you.\tJe te présente mes excuses, si je t'ai offensé.\nI apologize if I offended you.\tJe te présente mes excuses, si je t'ai offensée.\nI apologize if I offended you.\tJe vous présente mes excuses, si je vous ai offensé.\nI apologize if I offended you.\tJe vous présente mes excuses, si je vous ai offensée.\nI apologize if I offended you.\tJe vous présente mes excuses, si je vous ai offensés.\nI apologize if I offended you.\tJe vous présente mes excuses, si je vous ai offensées.\nI appreciate your cooperation.\tJ'apprécie votre coopération.\nI arrived ahead of the others.\tJe suis arrivé avant les autres.\nI arrived ahead of the others.\tJ'arrivai avant les autres.\nI asked Tom to stay out of it.\tJ'ai demandé à Tom de rester en dehors de ça.\nI asked him to be here by six.\tJe lui ai demandé d'être là pour six heures.\nI asked him what his name was.\tJe lui demandai quel était son nom.\nI believe in getting up early.\tJe crois à la vertu de se lever tôt.\nI believe that he is innocent.\tJe le crois innocent.\nI believe that he is innocent.\tJe crois qu'il est innocent.\nI belong to the baseball team.\tJ'appartiens à l'équipe de baseball.\nI belong to the swimming club.\tJe suis membre du club de natation.\nI bet we'll have a test today.\tJe parie que nous aurons un contrôle aujourd'hui.\nI blamed him for the accident.\tJe lui ai mis l'accident sur le dos.\nI borrowed this book from him.\tJe lui ai emprunté ce livre.\nI bought a new sewing machine.\tJ'ai acheté une nouvelle machine à coudre.\nI bought a new sewing machine.\tJ'achetai une nouvelle machine à coudre.\nI bought a pen, but I lost it.\tJ'ai acheté un stylo, mais je l'ai perdu.\nI bought it in a thrift store.\tJe l'ai acheté dans une solderie.\nI bought it in a thrift store.\tJe l'ai achetée dans une solderie.\nI bought some cheese and milk.\tJ'ai acheté du fromage et du lait.\nI broke up with my girlfriend.\tJ'ai rompu avec ma petite amie.\nI broke up with my girlfriend.\tJ'ai rompu avec ma copine.\nI broke up with my girlfriend.\tJ'ai rompu avec ma nana.\nI brought you another blanket.\tJe vous ai apporté une autre couverture.\nI brought you another blanket.\tJe t'ai apporté une autre couverture.\nI brush my teeth after eating.\tJe me brosse les dents après manger.\nI burned my hand with an iron.\tJe me suis brûlé la main avec un fer à repasser.\nI called him to the telephone.\tJe l'ai appelé au téléphone.\nI called in sick this morning.\tJe me suis fait porter pâle, ce matin.\nI came here hoping to see Tom.\tJe suis venu ici en espérant voir Tom.\nI can be there in ten minutes.\tJe peux être là dans dix minutes.\nI can eat anything but onions.\tJe peux tout manger sauf les oignons.\nI can hear you loud and clear.\tJe vous entends très bien.\nI can hear you loud and clear.\tJe vous entends fort bien.\nI can hear you loud and clear.\tJe t'entends très bien.\nI can hear you loud and clear.\tJe t'entends fort bien.\nI can no longer remain silent.\tJe ne peux plus garder le silence.\nI can recommend a good lawyer.\tJe peux vous indiquer un bon avocat.\nI can respond to his question.\tJe peux répondre à sa question.\nI can scarcely sleep at night.\tJ'arrive à peine à dormir la nuit.\nI can't afford to pay so much.\tJe ne peux pas me permettre de payer autant.\nI can't afford to play tennis.\tJe n'ai pas les moyens de jouer au tennis.\nI can't bear to work with him.\tJe ne supporte pas de travailler avec lui.\nI can't believe he kissed you.\tJe n'arrive pas à croire qu'il vous ait embrassé.\nI can't believe he kissed you.\tJe n'arrive pas à croire qu'il vous ait embrassés.\nI can't believe he kissed you.\tJe n'arrive pas à croire qu'il vous ait embrassée.\nI can't believe he kissed you.\tJe n'arrive pas à croire qu'il vous ait embrassées.\nI can't believe he kissed you.\tJe n'arrive pas à croire qu'il t'ait embrassé.\nI can't believe he kissed you.\tJe n'arrive pas à croire qu'il t'ait embrassée.\nI can't believe he kissed you.\tJe ne parviens pas à croire qu'il t'ait embrassé.\nI can't believe he kissed you.\tJe ne parviens pas à croire qu'il t'ait embrassée.\nI can't believe he kissed you.\tJe ne parviens pas à croire qu'il vous ait embrassé.\nI can't believe he kissed you.\tJe ne parviens pas à croire qu'il vous ait embrassés.\nI can't believe he kissed you.\tJe ne parviens pas à croire qu'il vous ait embrassée.\nI can't believe he kissed you.\tJe ne parviens pas à croire qu'il vous ait embrassées.\nI can't believe this happened.\tJe n'arrive pas à croire que tout ceci soit arrivé.\nI can't believe this happened.\tJe n'arrive pas à croire que tout ceci soit survenu.\nI can't believe you said that.\tJe n'arrive pas à croire que vous ayez dit cela.\nI can't believe you said that.\tJe n'arrive pas à croire que tu aies dit cela.\nI can't believe you'd do that.\tJe n'arrive pas à croire que vous feriez ça.\nI can't believe you'd do that.\tJe n'arrive pas à croire que tu ferais ça.\nI can't depend on you anymore.\tJe ne peux plus être à ta charge.\nI can't depend on you anymore.\tJe ne peux plus être à votre charge.\nI can't do two things at once.\tJe ne peux faire deux choses à la fois.\nI can't do two things at once.\tJe ne parviens pas à faire deux choses à la fois.\nI can't do two things at once.\tJe n'arrive pas à faire deux choses à la fois.\nI can't eat this kind of food.\tJe ne peux pas manger ce genre de nourriture.\nI can't explain it to you now.\tJe ne peux te l'expliquer maintenant.\nI can't explain it to you now.\tJe ne peux vous l'expliquer maintenant.\nI can't explain what happened.\tJe suis incapable d'expliquer ce qui est arrivé.\nI can't explain what happened.\tJe suis incapable d'expliquer ce qui s'est produit.\nI can't explain what happened.\tJe n'arrive pas à expliquer ce qui est arrivé.\nI can't explain what happened.\tJe n'arrive pas à expliquer ce qui s'est produit.\nI can't get rid of my pimples.\tJe n'arrive pas à me débarrasser de mes boutons.\nI can't go to the gym tonight.\tJe ne peux pas me rendre à la gym, ce soir.\nI can't lend this book to you.\tJe ne peux pas te prêter ce livre.\nI can't lend this book to you.\tJe ne peux pas vous prêter ce livre.\nI can't let that happen again.\tJe ne peux pas laisser cela arriver à nouveau.\nI can't make you any promises.\tJe ne peux rien vous promettre.\nI can't make you any promises.\tJe ne peux rien te promettre.\nI can't put up with the noise.\tJe ne peux pas supporter ce bruit.\nI can't run as fast as he can.\tJe ne peux pas courir aussi vite qu'il le peut.\nI can't take any more of this.\tJe n'en peux plus!\nI can't take any more of this.\tJ'ai eu ma dose.\nI can't tell you anything yet.\tJe ne peux rien te dire pour l'instant.\nI can't tell you anything yet.\tJe ne peux rien vous dire pour l'instant.\nI can't tell you what I think.\tJe ne peux pas te dire ce que je pense.\nI can't think of anybody else.\tJe ne peux penser à qui que ce soit d'autre.\nI can't wait to go to college.\tJe suis pressé d'aller à l'université.\nI cannot do without this book.\tJe ne peux pas me passer de ce livre.\nI care about you a great deal.\tJe me soucie beaucoup de toi.\nI caught a bad cold last week.\tJ'ai attrapé un mauvais rhume la semaine dernière.\nI caught a big fish yesterday.\tJ'ai attrapé un gros poisson hier.\nI closed my eyes to calm down.\tJ'ai fermé les yeux pour me calmer.\nI come here as often as I can.\tJe viens ici aussi souvent que je peux.\nI come here as often as I can.\tJe viens ici aussi souvent que je le peux.\nI consider him a great writer.\tJe le tiens pour un grand écrivain.\nI could hardly understand him.\tJe pouvais à peine le comprendre.\nI could use a little sympathy.\tUn peu de compassion ne me ferait pas de mal.\nI could use a little sympathy.\tUn peu de compassion serait la bienvenue.\nI couldn't catch what he said.\tJe ne pouvais pas saisir ce qu'il disait.\nI couldn't catch what he said.\tJe n'ai pas pu saisir ce qu'il disait.\nI couldn't catch what he said.\tJe ne pus pas saisir ce qu'il disait.\nI decided not to go to Europe.\tJ'ai décidé de ne pas me rendre en Europe.\nI did it without any problems.\tJe l'ai fait sans aucun problème.\nI did something really stupid.\tJ'ai fait quelque chose de vraiment stupide.\nI didn't believe him at first.\tJe ne le croyais pas au début.\nI didn't catch your last name.\tJe n'ai pas saisi votre nom de famille.\nI didn't catch your last name.\tJe n'ai pas saisi ton nom de famille.\nI didn't find it funny at all.\tJe n'ai pas trouvé ça drôle du tout.\nI didn't know she was married.\tJ'ignorais qu'elle fut mariée.\nI didn't mean to make Tom cry.\tJe ne voulais pas faire pleurer Tom.\nI didn't mean to make Tom cry.\tFaire pleurer Tom n'était pas dans mon intention.\nI didn't mean to make him cry.\tJe n'avais pas l'intention de le faire pleurer.\nI didn't mean to make him cry.\tLe faire pleurer n'était pas dans mon intention.\nI didn't mean to surprise you.\tJe n'avais pas l'intention de vous surprendre.\nI didn't mean to surprise you.\tJe n'ai pas eu l'intention de vous surprendre.\nI didn't mean to surprise you.\tJe n'avais pas l'intention de te surprendre.\nI didn't mean to surprise you.\tJe n'ai pas eu l'intention de te surprendre.\nI didn't pay attention to him.\tJe ne lui ai pas prêté attention.\nI didn't recognize your voice.\tJe n'ai pas reconnu ta voix.\nI didn't recognize your voice.\tJe n'ai pas reconnu votre voix.\nI didn't say it happened here.\tJe n'ai pas dit que ça a eu lieu ici.\nI didn't say it happened here.\tJe n'ai pas dit que ça s'est passé ici.\nI didn't see anything strange.\tJe n'ai rien vu d'étrange.\nI didn't see anything strange.\tJe ne vis rien d'étrange.\nI didn't see the fire hydrant.\tJe n'ai pas vu la bouche d'incendie.\nI didn't see your car outside.\tJe n'ai pas vu votre voiture, dehors.\nI didn't see your car outside.\tJe n'ai pas vu ta voiture, dehors.\nI didn't tell anyone about it.\tJe n'ai parlé de ça à personne.\nI didn't tell anyone about it.\tJe n'en ai parlé à personne.\nI didn't think I should drive.\tJe ne pensais pas que je devrais conduire.\nI didn't think anything of it.\tJe n'en pensais rien.\nI didn't think anything of it.\tJe n'en ai rien pensé.\nI didn't think anything of it.\tJe n'en pensai rien.\nI didn't think you needed one.\tJe n'ai pas pensé que tu en avais besoin d'un.\nI didn't think you needed one.\tJe n'ai pas pensé qu'il t'en fallait un.\nI didn't think you needed one.\tJe n'ai pas pensé qu'il vous en fallait un.\nI didn't think you needed one.\tJe n'ai pas pensé que vous en aviez besoin d'un.\nI didn't think you would come.\tJe ne pensais pas que vous viendriez.\nI didn't think you would come.\tJe ne pensais pas que tu viendrais.\nI didn't understand this joke.\tJe n'ai pas compris cette plaisanterie.\nI didn't want to look foolish.\tJe n'ai pas voulu avoir l'air bête.\nI didn't want to surprise you.\tJe ne voulais pas te surprendre.\nI didn't want to surprise you.\tJe ne voulais pas vous surprendre.\nI didn't want you to leave me.\tJe ne voulais pas que vous me quittiez.\nI didn't want you to leave me.\tJe ne voulais pas que tu me quittes.\nI do hope you will come again.\tJ'espère bien que tu reviendras.\nI do my homework after school.\tJe fais mes devoirs après l'école.\nI do not mind what people say.\tJe ne fais pas attention à ce que disent les gens.\nI do not trust him any longer.\tJe n'ai plus confiance en lui.\nI do not trust him any longer.\tJe ne lui fais plus confiance.\nI don't actually believe that.\tJe n'y crois pas vraiment.\nI don't approve your decision.\tJe n'approuve pas votre décision.\nI don't believe it any longer.\tJe ne le crois plus.\nI don't care for foreign food.\tJe ne m'intéresse pas à la nourriture étrangère.\nI don't care what anyone says.\tPeu m'importe ce que quiconque dit.\nI don't care what you thought.\tJe me fiche de ce que tu pensais.\nI don't care what you thought.\tJe me fiche de ce que vous pensiez.\nI don't consider Tom a friend.\tJe ne considère pas Tom comme un ami.\nI don't do this for the money.\tJe ne fais pas ceci pour l'argent.\nI don't do this for the money.\tJe ne fais pas ça pour l'argent.\nI don't doubt your intentions.\tJe ne doute pas de tes intentions.\nI don't doubt your intentions.\tJe ne doute pas de vos intentions.\nI don't even have a boyfriend.\tJe n'ai même pas de petit ami.\nI don't ever want to hurt you.\tJe ne veux jamais te faire de mal.\nI don't ever want to hurt you.\tJe ne veux jamais vous faire de mal.\nI don't expect you'd remember.\tJe ne m'attends pas à ce que vous vous le rappeliez.\nI don't expect you'd remember.\tJe ne m'attends pas à ce que tu te le rappelles.\nI don't expect you'd remember.\tJe ne m'attends pas à ce que vous vous en souveniez.\nI don't expect you'd remember.\tJe ne m'attends pas à ce que tu t'en souviennes.\nI don't feel anything anymore.\tJe ne ressens plus rien.\nI don't feel comfortable here.\tJe ne me sens pas à l'aise ici.\nI don't feel like celebrating.\tJe ne suis pas d'humeur à faire la fête.\nI don't feel like celebrating.\tJe n'ai pas le cœur à faire la fête.\nI don't feel like watching TV.\tJe ne suis pas d'humeur à regarder la télé.\nI don't feel like watching TV.\tJe n'ai pas envie de regarder la télé.\nI don't feel much like eating.\tJe n'ai pas très envie de manger.\nI don't have a younger sister.\tJe n'ai pas de sœur plus jeune.\nI don't have any children yet.\tJe n'ai pas encore d'enfants.\nI don't have any nice clothes.\tJe n'ai aucun chouette vêtement.\nI don't have any nice clothes.\tJe n'ai aucun beau vêtement.\nI don't have anything to read.\tJe n'ai rien à lire.\nI don't have medical training.\tJe n'ai pas de formation médicale.\nI don't have much ready money.\tJe n'ai pas beaucoup d'argent à disposition.\nI don't have that information.\tJe ne dispose pas de cette information.\nI don't have to clean my room.\tJe n'ai pas à nettoyer ma chambre.\nI don't have to go right away.\tIl ne me faut pas y aller tout de suite.\nI don't have to listen to you.\tJe n'ai pas à t'écouter.\nI don't have to listen to you.\tJe n'ai pas à vous écouter.\nI don't have travel insurance.\tJe n'ai pas d'assurance voyage.\nI don't hold that against you.\tJe ne vous en tiens pas rigueur.\nI don't hold that against you.\tJe ne t'en tiens pas rigueur.\nI don't know Boston that well.\tJe ne connais pas si bien Boston.\nI don't know French that well.\tJe ne sais pas si bien que ça le français.\nI don't know any martial arts.\tJe ne connais aucun art martial.\nI don't know anyone in Boston.\tJe ne connais personne à Boston.\nI don't know how to get there.\tJe ne sais pas comment m'y rendre.\nI don't know how to make stew.\tJe ne sais pas comment faire du ragoût.\nI don't know how to play pool.\tJ'ignore comment jouer au billard.\nI don't know how to reach you.\tJe ne sais pas comment vous joindre.\nI don't know how to reach you.\tJe ne sais pas comment te joindre.\nI don't know how to reach you.\tJ'ignore comment vous joindre.\nI don't know how to reach you.\tJ'ignore comment te joindre.\nI don't know how to thank you.\tJe ne sais comment vous remercier.\nI don't know how to thank you.\tJe ne sais comment te remercier.\nI don't know how to thank you.\tJe ne sais pas comment te remercier.\nI don't know how to use a VCR.\tJe ne sais pas comment utiliser le magnétoscope.\nI don't know how to use a VCR.\tJe ne sais pas comment faire usage d'un magnétoscope.\nI don't know if I can do this.\tJe ne sais pas si je peux faire ça.\nI don't know if I can do this.\tJe ne sais pas si je suis en mesure de faire ça.\nI don't know if I can do this.\tJ'ignore si je peux faire ça.\nI don't know if I can do this.\tJ'ignore si je suis en mesure de faire ça.\nI don't know if I can do this.\tJe ne sais pas si je suis capable de faire ça.\nI don't know if I can do this.\tJ'ignore si je suis capable de faire ça.\nI don't know if he's a doctor.\tJe ne sais pas s'il est médecin.\nI don't know if she will come.\tJe ne sais pas si elle viendra.\nI don't know if there is time.\tJ'ignore s'il y a assez de temps.\nI don't know if there is time.\tJ'ignore s'il y a le temps.\nI don't know what I did wrong.\tJe ne sais pas ce que j'ai fait de travers.\nI don't know what I did wrong.\tJ'ignore ce que j'ai fait de travers.\nI don't know what else to try.\tJe ne sais pas quoi essayer d'autre.\nI don't know what else to try.\tJe ne sais quoi essayer d'autre.\nI don't know what her name is.\tJ'ignore son nom.\nI don't know what to call you.\tJe ne sais pas comment vous nommer.\nI don't know what to call you.\tJe ne sais pas comment te nommer.\nI don't know what to call you.\tJe ne sais pas comment vous dénommer.\nI don't know what to call you.\tJe ne sais pas comment te dénommer.\nI don't know what's happening.\tJ'ignore ce qui se passe.\nI don't know what's happening.\tJ'ignore ce qui se produit.\nI don't know what's happening.\tJ'ignore ce qui est en train de se passer.\nI don't know what's happening.\tJ'ignore ce qui est en train de se produire.\nI don't know what's happening.\tJ'ignore ce qui arrive.\nI don't know who my mother is.\tJe ne sais pas qui est ma mère.\nI don't know who my mother is.\tJ'ignore qui est ma mère.\nI don't like being controlled.\tJe n'aime pas que l'on me contrôle.\nI don't like being controlled.\tJe n'apprécie pas d'être contrôlée.\nI don't like being controlled.\tJe n'apprécie pas d'être contrôlé.\nI don't like feeling helpless.\tJe n'aime pas me sentir impuissante.\nI don't like feeling helpless.\tJe n'aime pas me sentir impuissant.\nI don't like spoiled children.\tJe n'aime pas les enfants gâtés.\nI don't like the way he talks.\tJe n'aime pas sa façon de parler.\nI don't like the way you look.\tJe n'aime pas ton apparence.\nI don't like the way you look.\tJe n'aime pas votre apparence.\nI don't like this city at all.\tJe n'aime pas du tout cette ville.\nI don't need crutches anymore.\tJe n'ai plus besoin de béquilles.\nI don't need more information.\tJe n'ai pas besoin de plus d'informations.\nI don't need to go to college.\tJe n'ai pas besoin d'aller à la fac.\nI don't need to go to college.\tJe n'ai pas besoin d'aller en fac.\nI don't need to talk about it.\tJe n'ai pas besoin d'en parler.\nI don't need to write it down.\tJe n'ai pas besoin d'en prendre note.\nI don't notice any difference.\tJe ne remarque aucune différence.\nI don't particularly like her.\tJe ne l'aime pas particulièrement.\nI don't really need your help.\tJe n'ai pas vraiment besoin de ton aide.\nI don't really need your help.\tJe n'ai pas vraiment besoin de votre aide.\nI don't really understand why.\tJe ne comprends pas vraiment pourquoi.\nI don't really understand you.\tJe ne te comprend vraiment pas.\nI don't see that as a problem.\tJe ne vois pas cela comme un problème.\nI don't think I could do that.\tJe ne pense pas que je pourrais faire ça.\nI don't think Tom can do that.\tJe ne pense pas que Tom puisse faire ça.\nI don't think he can help you.\tJe ne pense pas qu'il puisse t'aider.\nI don't think that he'll come.\tJe ne pense pas qu'il viendra.\nI don't think that he's right.\tJe ne crois pas qu'il ait raison.\nI don't think that's possible.\tJe ne pense pas que ce soit possible.\nI don't think that's possible.\tJe ne pense pas cela possible.\nI don't think they believe us.\tJe ne pense pas qu'ils nous croient.\nI don't think they're married.\tJe ne pense pas qu'ils soient mariés.\nI don't think they're married.\tJe ne pense pas qu'elles soient mariées.\nI don't think this is for you.\tJe ne pense pas que ce soit pour toi.\nI don't think this is for you.\tJe ne pense pas que ce soit pour vous.\nI don't think you can beat me.\tJe ne pense pas que tu puisses me battre.\nI don't think your name's Tom.\tJe ne pense pas que ton nom soit Tom.\nI don't tolerate incompetence.\tJe ne tolère pas l'incompétence.\nI don't usually eat this late.\tJe ne mange, d'habitude, pas aussi tard.\nI don't want Tom to know this.\tJe ne veux pas que Tom le sache.\nI don't want Tom to know this.\tJe ne veux pas que Tom sache ça.\nI don't want to be your enemy.\tJe ne veux pas être ton ennemi.\nI don't want to be your enemy.\tJe ne veux pas être votre ennemi.\nI don't want to be your enemy.\tJe ne veux pas être ton ennemie.\nI don't want to be your enemy.\tJe ne veux pas être votre ennemie.\nI don't want to eat lunch now.\tJe ne veux pas déjeuner maintenant.\nI don't want to eat lunch now.\tJe ne veux pas dîner maintenant.\nI don't want to embarrass you.\tJe ne veux pas t'embarrasser.\nI don't want to fail my exams.\tJe ne veux pas louper mes examens.\nI don't want to go back there.\tJe ne veux pas y retourner.\nI don't want to go to bed yet.\tJe ne veux pas encore aller au lit !\nI don't want to know any more.\tJe ne veux pas en savoir plus.\nI don't want to miss my train.\tJe ne veux pas manquer mon train.\nI don't want to quit this job.\tJe ne veux pas quitter ce boulot.\nI don't want to read anything.\tJe ne veux rien lire.\nI don't want to see Tom again.\tJe ne veux pas revoir Tom.\nI don't want to see you again.\tJe ne veux pas te revoir.\nI don't want to see you again.\tJe ne veux pas vous revoir.\nI don't want to talk about it.\tJe ne veux pas en parler.\nI don't want us to get caught.\tJe ne veux pas que nous nous fassions attraper.\nI don't want you to lie to me.\tJe ne veux pas que tu me mentes.\nI don't want you to lie to me.\tJe ne veux pas que vous me mentiez.\nI dream about you every night.\tJe rêve de vous toutes les nuits.\nI dream about you every night.\tJe rêve de toi toutes les nuits.\nI dream about you quite often.\tJe rêve de vous assez souvent.\nI dream about you quite often.\tJe rêve assez souvent de vous.\nI dream about you quite often.\tJe rêve de toi assez souvent.\nI dream about you quite often.\tJe rêve assez souvent de toi.\nI dream of becoming a teacher.\tJe rêve de devenir enseignante.\nI eagerly await your decision.\tJ'attends votre décision avec une vive impatience.\nI eagerly await your decision.\tJ'attends ta décision avec une vive impatience.\nI enjoy watching soccer on TV.\tJ'aime regarder le foot à la télé.\nI excused myself for a minute.\tJe me suis excusé pour une minute.\nI excused myself for a minute.\tJe m'excusai pour une minute.\nI expect that he will help us.\tJe m'attends à ce qu'il nous aide.\nI expected that he would come.\tJe me doutais qu'il viendrait.\nI fed the leftovers to my dog.\tJ'ai donné les restes à manger à mon chien.\nI feel I could've done better.\tJ'ai l'impression que j'aurais pu faire mieux.\nI feel I could've done better.\tJ'ai l'impression que j'aurais pu mieux faire.\nI feel like I can do anything.\tJ'ai l'impression de pouvoir tout faire.\nI feel like taking a bath now.\tJ'ai envie de prendre un bain, maintenant.\nI feel the same way about you.\tJ'ai le même sentiment à ton sujet.\nI feel the same way about you.\tJ'ai le même sentiment à votre sujet.\nI feel the same way as you do.\tJ'éprouve la même chose que toi.\nI feel the same way as you do.\tJ'éprouve la même chose que vous.\nI feel the same way as you do.\tJe ressens la même chose que toi.\nI feel the same way as you do.\tJe ressens la même chose que vous.\nI feel very lonely these days.\tJe me sens très seul ces jours-ci.\nI fell down and hurt my wrist.\tJe suis tombé et me suis fait mal au poignet.\nI felt myself being lifted up.\tJe me suis senti être soulevé.\nI felt myself being lifted up.\tJe me suis senti être soulevée.\nI felt myself being lifted up.\tJe me sentis être soulevé.\nI felt myself being lifted up.\tJe me sentis être soulevée.\nI felt sure this would happen.\tJ'ai toujours su que ça arriverait.\nI figured everybody knew that.\tJ'ai pensé que tout le monde savait cela.\nI figured everyone was hungry.\tJ'ai pensé que tout le monde avait faim.\nI figured you might want this.\tJe me suis imaginé que vous pourriez vouloir ceci.\nI figured you might want this.\tJe me suis imaginée que vous pourriez vouloir ceci.\nI figured you might want this.\tJe me suis imaginé que tu pourrais vouloir ceci.\nI figured you might want this.\tJe me suis imaginée que tu pourrais vouloir ceci.\nI finished the work yesterday.\tJ'ai terminé le travail hier.\nI finished the work yesterday.\tJ'ai fini le travail hier.\nI finished writing the report.\tJ'ai terminé d'écrire le rapport.\nI forgave you a long time ago.\tJe t'ai pardonné il y a longtemps.\nI forgave you a long time ago.\tJe t'ai pardonnée il y a longtemps.\nI forgave you a long time ago.\tJe vous ai pardonné il y a longtemps.\nI forgave you a long time ago.\tJe vous ai pardonnées il y a longtemps.\nI forgave you a long time ago.\tJe vous ai pardonnés il y a longtemps.\nI forgave you a long time ago.\tJe vous ai pardonnée il y a longtemps.\nI forgot my glasses somewhere.\tJ'ai oublié mes lunettes quelque part.\nI found your gloves in my car.\tJ'ai trouvé vos gants dans ma voiture.\nI found your gloves in my car.\tJ'ai trouvé tes gants dans ma voiture.\nI fully agree with all of you.\tJe suis parfaitement d'accord avec vous tous.\nI fully support your proposal.\tJe soutiens complètement votre proposition.\nI fully support your proposal.\tJe soutiens intégralement ta proposition.\nI gave you what you asked for.\tJe vous ai donné ce que vous avez demandé.\nI gave you what you asked for.\tJe t'ai donné ce que tu as demandé.\nI get nauseous whenever I fly.\tJ'ai mal au cœur chaque fois que je vole.\nI get off at the next station.\tJe descends à la prochaine gare.\nI go by that church every day.\tJe passe tous les jours devant cette église.\nI go for a walk every morning.\tJe vais marcher tous les matins.\nI go shopping every other day.\tJe fais des courses tous les deux jours.\nI go to the movies every week.\tJe vais au cinéma toutes les semaines.\nI got up early in the morning.\tJe me levais tôt le matin.\nI guess I could give it a try.\tJe suppose que je pourrais m'y essayer.\nI guess I don't have a choice.\tJe suppose que je n'ai pas le choix.\nI guess I need a little sleep.\tJe pense que j'ai besoin de dormir un peu.\nI guess I need a little sleep.\tJe pense que j'ai besoin d'un peu de sommeil.\nI guess both of us were lying.\tJ'imagine que nous mentions tous les deux.\nI guess my mind just wandered.\tJe suppose que mon esprit a simplement divagué.\nI guess my mind just wandered.\tJe suppose que mon esprit s'est simplement égaré.\nI guess my mind just wandered.\tJe suppose que mon esprit a simplement vagabondé.\nI guess you'll need some help.\tJe suppose que tu auras besoin d'aide.\nI guess you'll need some help.\tJe suppose que vous aurez besoin d'aide.\nI had a conversation with Tom.\tJ'ai eu une conversation avec Tom.\nI had a good dream last night.\tJ'ai fait un joli rêve la nuit dernière.\nI had a good sleep last night.\tJ'ai bien dormi la nuit dernière.\nI had good reasons to do that.\tJ'ai eu de bonnes raisons de le faire.\nI had intended to go with Tom.\tJ'avais l'intention d'aller avec Tom.\nI had no idea you could dance.\tJe n'avais pas idée que vous saviez danser.\nI had no idea you could dance.\tJe n'avais pas idée que tu savais danser.\nI had nothing to do with that.\tJe n'avais rien à voir avec ça.\nI had nothing to do with that.\tJe n'eus rien à voir avec ça.\nI had nothing to do with this.\tJe n'avais rien à faire avec ça.\nI had other things on my mind.\tJ'avais d'autres choses en tête.\nI had other things on my mind.\tJ'avais d'autres choses à l'esprit.\nI had such high hopes for you.\tJe croyais tellement en toi.\nI had such high hopes for you.\tJ'avais de si hauts espoirs en toi.\nI had to climb over the fence.\tJ'ai dû escalader la palissade.\nI had to climb over the fence.\tIl m'a fallu passer par dessus la barrière.\nI had to get out of the house.\tJ'ai dû sortir de la maison.\nI had to get out of the house.\tIl m'a fallu sortir de la maison.\nI had to run to catch the bus.\tJ'ai dû courir pour attraper le bus.\nI had to run to catch the bus.\tIl m'a fallu courir pour attraper le bus.\nI hardly ever remember dreams.\tJe ne me rappelle pratiquement jamais de rêves.\nI hate talking about politics.\tJe déteste parler de politique.\nI hate that you have to leave.\tJe suis désolé que vous dussiez partir.\nI hate that you have to leave.\tJe suis désolée que vous dussiez partir.\nI hate that you have to leave.\tJe suis désolé que tu doives partir.\nI hate that you have to leave.\tJe suis désolée que tu doives partir.\nI hate that you have to leave.\tJe suis désolé qu'il vous faille partir.\nI hate that you have to leave.\tJe suis désolé qu'il te faille partir.\nI hate that you have to leave.\tJe suis désolée qu'il vous faille partir.\nI hate that you have to leave.\tJe suis désolée qu'il te faille partir.\nI hate the tie you're wearing.\tJ'ai horreur de la cravate que tu portes.\nI hate the tie you're wearing.\tJe déteste la cravate que tu portes.\nI hate those kinds of answers.\tJe déteste ce genre de réponses.\nI hate to see a grown man cry.\tJe déteste voir un homme adulte pleurer.\nI have a bit of time to relax.\tJe dispose d'un peu de temps pour me détendre.\nI have a few minutes to spare.\tJ'ai quelques minutes à perdre.\nI have a friend who's a pilot.\tJ'ai un ami qui est pilote.\nI have a little money with me.\tJ'ai de la petite monnaie sur moi.\nI have a pen pal in Australia.\tJ'ai un correspondant en Australie.\nI have a serious skin problem.\tJ'ai un sérieux problème de peau.\nI have an appointment at 2:30.\tJ'ai un rendez-vous à 14:30.\nI have an appointment at 2:30.\tJ'ai un rendez-vous à 14h30.\nI have been busy for two days.\tJ'étais occupé ces deux derniers jours.\nI have been to the U.S. twice.\tJe suis allée deux fois aux États-Unis.\nI have enough money to buy it.\tJ'ai assez d'argent pour l'acheter.\nI have enough money to buy it.\tJe dispose d'assez d'argent pour l'acheter.\nI have enough money to buy it.\tJe dispose d'assez d'argent pour l'acquérir.\nI have enough money to buy it.\tJe dispose d'assez d'argent pour faire son acquisition.\nI have enough money to buy it.\tJe dispose d'assez d'argent pour procéder à son acquisition.\nI have enough money to buy it.\tJe dispose de suffisamment d'argent pour faire son acquisition.\nI have enough money to buy it.\tJe dispose de suffisamment d'argent pour procéder à son acquisition.\nI have enough money to buy it.\tJe dispose de suffisamment d'argent pour l'acquérir.\nI have enough money to buy it.\tJe dispose de suffisamment d'argent pour l'acheter.\nI have enough money to buy it.\tJ'ai suffisamment d'argent pour l'acquérir.\nI have enough money to buy it.\tJ'ai suffisamment d'argent pour l'acheter.\nI have enough money to buy it.\tJ'ai suffisamment d'argent pour en faire l'acquisition.\nI have enough money to buy it.\tJ'ai suffisamment d'argent pour procéder à son acquisition.\nI have enough money to buy it.\tJ'ai suffisamment d'argent pour faire son acquisition.\nI have enough money to buy it.\tJe dispose de suffisamment d'argent pour en faire l'acquisition.\nI have enough money to buy it.\tJe dispose d'assez d'argent pour en faire l'acquisition.\nI have enough money to buy it.\tJ'ai assez d'argent pour l'acquérir.\nI have enough money to buy it.\tJ'ai assez d'argent pour en faire l'acquisition.\nI have enough money to buy it.\tJ'ai assez d'argent pour procéder à son acquisition.\nI have enough money to buy it.\tJ'ai assez d'argent pour faire son acquisition.\nI have lived here a long time.\tJ'ai vécu ici pendant longtemps.\nI have many coins in this box.\tJ'ai beaucoup de pièces dans cette boîte.\nI have money enough to buy it.\tJ'ai assez d'argent pour l'acheter.\nI have my own bedroom at home.\tJ'ai ma propre chambre à la maison.\nI have neither time nor money.\tJe n'ai ni le temps ni l'argent.\nI have no friend to talk with.\tJe n'ai pas d'amis à qui parler.\nI have no idea how I got here.\tJe n'ai aucune idée de comment je suis parvenu ici.\nI have no idea how I got here.\tJe n'ai aucune idée de comment j'ai atterri ici.\nI have no idea how he escaped.\tJe n'ai aucune idée de la manière dont il s'est échappé.\nI have no idea how to do that.\tJe n'ai aucune idée de comment le faire.\nI have no idea what I'm doing.\tJe n'ai aucune idée de ce que je fais.\nI have no idea what I'm doing.\tJe n'ai aucune idée de ce que je suis en train de faire.\nI have no idea what to expect.\tJe n'ai aucune idée à quoi m'attendre.\nI have no idea what'll happen.\tJe n'ai aucune idée de ce qui va arriver.\nI have no one else to turn to.\tJe n'ai personne d'autre vers qui me tourner.\nI have no way of knowing that.\tJe n'ai aucun moyen de savoir ça.\nI have not seen him in months.\tÇa fait des mois que je ne l'ai pas vu.\nI have nothing further to say.\tJe n'ai rien de plus à dire.\nI have only five thousand yen.\tJ'ai seulement 5000 yens.\nI have problems concentrating.\tJ'ai des problèmes de concentration.\nI have seen \"Star Wars\" twice.\tJ'ai vu \"Star Wars\" deux fois.\nI have some cash stashed away.\tJ'ai de l'argent de côté.\nI have some good news for you.\tJ'ai quelques bonnes nouvelles pour toi.\nI have something I have to do.\tJ'ai quelque chose que je dois faire.\nI have something I have to do.\tJ'ai quelque chose qu'il me faut faire.\nI have something else in mind.\tJ'ai autre chose en tête.\nI have something for you, too.\tJ'ai également quelque chose pour vous.\nI have something for you, too.\tJ'ai également quelque chose pour toi.\nI have three more pages to go.\tIl me reste trois pages à lire.\nI have to explain this to Tom.\tJe dois expliquer ça à Tom.\nI have to go back to work now.\tMaintenant, il faut que je retourne au travail.\nI have to go even if it rains.\tJe dois y aller, même s'il pleut.\nI have to look after this cat.\tJe dois m'occuper de ce chat.\nI have to pay this bill today.\tJe dois payer cette facture aujourd'hui.\nI have to put the kids to bed.\tJe dois mettre les enfants au lit.\nI have to stay in bed all day.\tJe dois rester au lit toute la journée.\nI have to take the test again.\tJe dois repasser le test.\nI have to tighten these bolts.\tJe dois serrer ces boulons.\nI haven't done this for years.\tCela fait des années que je n'ai pas fait ça.\nI haven't eaten for many days.\tJe n'ai rien mangé pendant plusieurs jours.\nI haven't made a decision yet.\tJe n'ai pas encore pris de décision.\nI haven't seen Tom since 1988.\tJe n'ai plus vu Tom depuis 1988.\nI haven't seen her since then.\tJe ne l'ai pas revue depuis.\nI haven't seen him since then.\tJe ne l'ai pas vu depuis lors.\nI haven't slept well recently.\tJe n'ai pas bien dormi récemment.\nI haven't yet made up my mind.\tJe n'y ai pas encore réfléchi.\nI haven't yet made up my mind.\tJe n'ai encore rien décidé.\nI hear she's a famous actress.\tJ'entends dire qu'elle est une actrice célèbre.\nI hear that he sold his house.\tJ'ai entendu qu'il avait vendu sa maison.\nI heard him coming downstairs.\tJe l'ai entendu descendre les escaliers.\nI heard the news on the radio.\tJ'ai entendu les nouvelles à la radio.\nI heard the telephone ringing.\tJ'ai entendu le téléphone sonner.\nI heard what Tom said to Mary.\tJ'ai entendu ce que Tom a dit à Mary.\nI hesitate to ask Tom to help.\tJ'hésite à demander de l'aide à Tom.\nI hope I haven't woken you up.\tJ'espère que je ne t'ai pas réveillé.\nI hope I haven't woken you up.\tJ'espère ne pas vous avoir réveillé.\nI hope I haven't woken you up.\tJ'espère ne pas vous avoir réveillée.\nI hope I haven't woken you up.\tJ'espère ne pas vous avoir réveillées.\nI hope I haven't woken you up.\tJ'espère ne pas vous avoir réveillés.\nI hope I haven't woken you up.\tJ'espère que je ne t'ai pas réveillée.\nI hope I haven't woken you up.\tJ'espère que je ne vous ai pas réveillé.\nI hope I haven't woken you up.\tJ'espère que je ne vous ai pas réveillés.\nI hope I haven't woken you up.\tJ'espère que je ne vous ai pas réveillée.\nI hope I haven't woken you up.\tJ'espère que je ne vous ai pas réveillées.\nI hope I'm not disturbing you.\tJ'espère que je ne te dérange pas ?\nI hope Tom feels better today.\tJ'espère que Tom se sent mieux aujourd'hui.\nI hope Tom will be very happy.\tJ'espère que Tom sera très heureux.\nI hope Tom will get well soon.\tJ'espère que Tom ira bientôt mieux.\nI hope it'll be fine tomorrow.\tJ'espère que le temps sera bon demain.\nI hope it'll be fine tomorrow.\tJ'espère que ça ira demain.\nI hope that it rains tomorrow.\tJ'espère qu'il pleuvra demain.\nI hope that she listens to me.\tJ'espère qu'elle m'écoute.\nI hope that you aren't afraid.\tJ'espère que tu n'as pas peur.\nI hope things will get better.\tJ'espère que les choses iront mieux.\nI hope things will get better.\tJ'espère que la situation s'améliorera.\nI hope you two are very happy.\tJ'espère que vous êtes tous deux très heureux.\nI hope you two are very happy.\tJ'espère que vous êtes toutes deux très heureuses.\nI hope you will get well soon.\tJ'espère que tu te rétabliras bientôt.\nI hope you will soon get well.\tJ'espère que vous irez bientôt mieux.\nI hope you will soon get well.\tJ'espère que, bientôt, tu iras bien.\nI hope your brother is better.\tJ'espère que votre frère est mieux.\nI hope your brother is better.\tJ'espère que votre frère se porte mieux.\nI hope your brother is better.\tJ'espère que votre frère se sent mieux.\nI informed her of his arrival.\tJe l'ai informé de son arrivée.\nI informed him of her arrival.\tJe l'ai informé de son arrivée.\nI just can't get used to this.\tJe ne parviens simplement pas à m'y faire.\nI just can't live without you.\tJe ne peux simplement pas vivre sans vous.\nI just can't live without you.\tJe ne peux simplement pas vivre sans toi.\nI just can't resist chocolate.\tMon péché mignon, c'est le chocolat.\nI just cleaned all the tables.\tJe viens juste de laver toutes les tables.\nI just couldn't do it anymore.\tJe ne pouvais simplement plus le faire.\nI just couldn't do it anymore.\tJe ne pourrais simplement plus le faire.\nI just didn't know what to do.\tJ'ignorais simplement quoi faire.\nI just don't know what to say.\tJe ne sais pas quoi dire, tout simplement.\nI just don't want to lose you.\tJe ne veux tout simplement pas te perdre.\nI just don't want to lose you.\tJe ne veux tout simplement pas vous perdre.\nI just don't want to lose you.\tJe ne veux pas te perdre, un point c'est tout.\nI just don't want to lose you.\tJe ne veux pas vous perdre, un point c'est tout.\nI just had the weirdest dream.\tJe viens de faire le plus bizarre des rêves.\nI just love to watch Tom play.\tJ'adore regarder Tom jouer.\nI just thought you were happy.\tJ'ai simplement pensé que vous étiez heureuse.\nI just thought you were happy.\tJ'ai simplement pensé que vous étiez heureuses.\nI just thought you were happy.\tJ'ai simplement pensé que vous étiez heureux.\nI just thought you were happy.\tJ'ai simplement pensé que tu étais heureuse.\nI just thought you were happy.\tJ'ai simplement pensé que tu étais heureux.\nI just want everybody to live.\tJe veux simplement que tout le monde vive.\nI just want people to like me.\tJe veux simplement que les gens m'aiment.\nI just want to be your friend.\tJe veux simplement être ton ami.\nI just want to be your friend.\tJe veux simplement être ton amie.\nI just want to be your friend.\tJe veux simplement être votre ami.\nI just want to be your friend.\tJe veux simplement être votre amie.\nI just want to get some sleep.\tJe veux simplement prendre un peu de sommeil.\nI just want to go back to bed.\tJe veux juste retourner au lit.\nI just want to help you relax.\tJe veux juste t'aider à te détendre.\nI just want to help you relax.\tJe veux juste vous aider à vous détendre.\nI just want to know one thing.\tJe veux juste savoir une chose.\nI just want to say I love you.\tJe veux simplement dire que je vous aime.\nI just want to say I love you.\tJe veux simplement dire que je t'aime.\nI just want to say I love you.\tJe veux simplement déclarer que je t'aime.\nI just wanted Mary to love me.\tJe voulais juste que Mary m'aime.\nI just wanted to clarify that.\tJe voulais simplement m'en assurer.\nI just wanted to let you know.\tJe voulais simplement vous le faire savoir.\nI just wanted to let you know.\tJe voulais simplement te le faire savoir.\nI kept an eye on her suitcase.\tJe surveillais sa valise.\nI knew something wasn't right.\tJe savais que quelque chose n'allait pas.\nI knew something wasn't right.\tJe savais que quelque chose clochait.\nI knew they were your friends.\tJe savais qu'ils étaient tes amis.\nI knew they were your friends.\tJe savais qu'ils étaient vos amis.\nI knew they were your friends.\tJe savais qu'elles étaient tes amies.\nI knew they were your friends.\tJe savais qu'elles étaient vos amies.\nI knew this moment would come.\tJe savais que ce moment viendrait.\nI knew we should've done that.\tJe savais que nous aurions dû faire cela.\nI knew you'd come back for me.\tJe savais que tu reviendrais pour moi.\nI knew you'd come back for me.\tJe savais que vous reviendriez pour moi.\nI know Tom has gone to Boston.\tJe sais que Tom est allé à Boston.\nI know Tom wanted to meet you.\tJe sais que Tom voulait te rencontrer.\nI know Tom wanted to meet you.\tJe sais que Tom voulait vous rencontrer.\nI know every inch of New York.\tJe connais tous les recoins de New York.\nI know every inch of the town.\tJe connais chaque centimètre de la ville.\nI know it's hard to walk away.\tJe sais qu'il est difficile de partir.\nI know my father will help me.\tJe sais que mon père m'aidera.\nI know my father will help me.\tJe sais que mon père va m'aider.\nI know now what we have to do.\tJe sais, maintenant, ce que nous devons faire.\nI know now what we have to do.\tJe sais, maintenant, ce qu'il nous reste à faire.\nI know that he went to London.\tJe sais qu'il est allé à Londres.\nI know that she has been busy.\tJe sais qu'elle a été occupée.\nI know that you are a teacher.\tJe sais que vous êtes enseignant.\nI know that you don't like me.\tJe sais que vous ne m'aimez pas.\nI know that you don't like me.\tJe sais que tu ne m'aimes pas.\nI know that you feel helpless.\tJe sais que vous vous sentez impuissant.\nI know that you feel helpless.\tJe sais que vous vous sentez impuissante.\nI know that you feel helpless.\tJe sais que vous vous sentez impuissants.\nI know that you feel helpless.\tJe sais que vous vous sentez impuissantes.\nI know that you feel helpless.\tJe sais que tu te sens impuissant.\nI know that you feel helpless.\tJe sais que tu te sens impuissante.\nI know that you still love me.\tJe sais que tu m'aimes toujours.\nI know that you still love me.\tJe sais que vous m'aimez encore.\nI know that you still love me.\tJe sais que vous m'aimez toujours.\nI know the whole of the story.\tJe connais la totalité de l'histoire.\nI know what I'm talking about.\tJe sais de quoi je parle.\nI know what they are thinking.\tJe sais ce qu'ils sont en train de penser.\nI know what they are thinking.\tJe sais ce qu'ils pensent.\nI know what they are thinking.\tJe sais ce qu'elles pensent.\nI know what they are thinking.\tJe sais ce qu'elles sont en train de penser.\nI know what you could've done.\tJe sais ce que tu aurais pu faire.\nI know what you could've done.\tJe sais ce que vous auriez pu faire.\nI know you're in love with me.\tJe sais que tu es amoureux de moi !\nI know you're in love with me.\tJe sais que tu es amoureuse de moi !\nI know you're in love with me.\tJe sais que vous êtes amoureux de moi !\nI know you're in love with me.\tJe sais que vous êtes amoureuse de moi !\nI know you're in love with me.\tJe sais que vous êtes amoureuses de moi !\nI know you're not comfortable.\tJe sais que tu n'es pas à l'aise.\nI know you're not comfortable.\tJe sais que vous n'êtes pas à l'aise.\nI know you're smarter than me.\tJe sais que tu es plus intelligent que moi.\nI know your brother very well.\tJe connais très bien ton frère.\nI know your brother very well.\tJe connais très bien votre frère.\nI know your feelings are hurt.\tJe sais que tes sentiments sont blessés.\nI know your feelings are hurt.\tJe sais que vos sentiments sont blessés.\nI learned about Greek culture.\tJ'ai appris des choses sur la culture grecque.\nI learned to live without her.\tJ'ai appris à vivre sans elle.\nI learned to live without her.\tJ’ai appris à vivre sans elle.\nI left earlier than my sister.\tJe suis parti plus tôt que ma sœur.\nI left my textbooks somewhere.\tJ'ai laissé mes manuels quelque part.\nI left my umbrella on the bus.\tJ'ai laissé mon parapluie dans le bus.\nI lied to you the other night.\tJe vous ai menti, l'autre soir.\nI lied to you the other night.\tJe t'ai menti, l'autre soir.\nI like both of them very much.\tJe les aime beaucoup, aussi bien l'un que l'autre.\nI like coffee better than tea.\tJe préfère le café au thé.\nI like science fiction better.\tJe préfère la science fiction.\nI like spending time with her.\tJ'aime passer du temps avec elle.\nI like spending time with you.\tJ'aime passer du temps avec toi.\nI like spending time with you.\tJ'aime passer du temps avec vous.\nI like the sound of the piano.\tJ'aime le son du piano.\nI like to finish what I start.\tJ'aime finir ce que j'entreprends.\nI like to finish what I start.\tJ'aime finir ce que je commence.\nI like to play music with Tom.\tJ'aime jouer de la musique avec Tom.\nI like to sleep on my stomach.\tJ'aime dormir sur le ventre.\nI live about a mile from here.\tJe vis environ à un mille d'ici.\nI lived in New York last year.\tJ'ai vécu à New York l'année dernière.\nI located the town on the map.\tJ'ai repéré la ville sur la carte.\nI look forward to my birthday.\tJe me réjouis en vue de mon anniversaire.\nI looked for a place to crash.\tJ'ai cherché un gîte.\nI love him despite his faults.\tJe l'aime malgré ses défauts.\nI love spending time with you.\tJ'adore passer du temps avec vous.\nI love spending time with you.\tJ'adore passer du temps avec toi.\nI love the taste of mushrooms.\tJ'adore le goût des champignons.\nI love you more than anything.\tJe vous aime plus que tout.\nI love you more than anything.\tJe t'aime plus que tout.\nI loved working here with you.\tJ'ai adoré travailler ici avec vous.\nI loved working here with you.\tJ'ai adoré travailler ici avec toi.\nI lowered my meat consumption.\tJ'ai diminué ma consommation de viande.\nI made him carry the suitcase.\tJe lui ai fait porter la valise.\nI made up my mind to go there.\tJe me suis décidé à y aller.\nI made up my mind to go there.\tJe me décidai à y aller.\nI made up my mind to go there.\tJe me suis décidé à m'y rendre.\nI made up my mind to go there.\tJe me décidai à m'y rendre.\nI met Tom on my way to school.\tJ'ai rencontré Tom en allant à l'école.\nI met Tom when I was thirteen.\tJ'ai rencontré Tom quand j'avais treize ans.\nI met an old friend by chance.\tJ'ai rencontré un vieil ami par hasard.\nI met her on campus yesterday.\tJe l'ai rencontrée sur le campus hier.\nI met him on my way to school.\tJe l'ai rencontré sur le chemin de l'école.\nI met him on the previous day.\tJe l'ai rencontré la veille.\nI met my friend on the street.\tJ'ai rencontré mon ami dans la rue.\nI might be a few minutes late.\tJe serai peut-être quelques minutes en retard.\nI might be a few minutes late.\tJ'aurai peut-être quelques minutes de retard.\nI might be a few minutes late.\tJe pourrai avoir quelques minutes de retard.\nI mistook Tom for his brother.\tJ'ai confondu Tom avec son frère.\nI mistook him for his brother.\tJe l'ai confondu avec son frère.\nI mistook him for his brother.\tJe l'ai pris pour son frère.\nI must finish this work first.\tJe dois d'abord finir ce travail.\nI must go to work early today.\tJe dois me rendre tôt au travail, aujourd'hui.\nI must have my watch repaired.\tJe dois faire réparer ma montre.\nI must leave tomorrow morning.\tJe dois partir demain matin.\nI must make an apology to her.\tJe dois lui présenter mes excuses.\nI nearly choked on a fishbone.\tJ'ai manqué m'étrangler à cause d'une arête.\nI need all the luck I can get.\tJ'ai besoin de toute la chance possible.\nI need to find out who he was.\tIl me faut découvrir qui il était.\nI need to find out who he was.\tJ'ai besoin de savoir qui il était.\nI need to go feed the chicken.\tIl me faut aller nourrir les poulets.\nI need to go feed the chicken.\tIl me faut aller nourrir le poulet.\nI need to make an appointment.\tJe dois prendre rendez-vous.\nI need to write a book report.\tJe dois écrire la critique d'un livre.\nI needed time to convince her.\tIl m'a fallu du temps pour la convaincre.\nI never learned his real name.\tJe n'ai jamais su son vrai nom.\nI never liked that one anyway.\tJe n'ai jamais aimé celui-là de toutes façons.\nI never promised you anything.\tJe ne vous ai jamais rien promis.\nI never promised you anything.\tJe ne t'ai jamais rien promis.\nI never should've trusted Tom.\tJamais je n’aurais dû faire confiance à Tom.\nI never thought I'd finish it.\tJe n'ai jamais pensé que je le finirais.\nI never thought I'd finish it.\tJe n'ai jamais pensé que j'en viendrais à bout.\nI never thought I'd want more.\tJe n'ai jamais pensé que j'en voudrais davantage.\nI never want to see him again.\tJe ne veux jamais le revoir.\nI never want to see you again.\tJe ne veux jamais te revoir.\nI never want to see you again.\tJe ne veux jamais vous revoir.\nI never want to see you again.\tJe ne veux jamais plus vous revoir.\nI never want us to be unhappy.\tJamais je ne veux que nous soyons malheureux.\nI never want us to be unhappy.\tJamais je ne veux que nous soyons malheureuses.\nI never wanted to hurt anyone.\tJe n'ai jamais voulu faire de mal à personne.\nI never wanted to hurt anyone.\tJe n'ai jamais voulu faire de mal à quiconque.\nI never wanted to hurt anyone.\tJe n'ai jamais voulu faire de mal à qui que ce soit.\nI never wanted to hurt anyone.\tJe n'ai jamais voulu blesser personne.\nI never wanted to hurt anyone.\tJe n'ai jamais voulu blesser quiconque.\nI never wanted to hurt anyone.\tJe n'ai jamais voulu blesser qui que ce soit.\nI never was very good at math.\tJe n'ai jamais été très bon en maths.\nI never would've allowed that.\tJe n'aurais jamais autorisé cela.\nI noticed that he had stopped.\tJ'ai remarqué qu'il avait arrêté.\nI noticed that he had stopped.\tJe remarquai qu'il avait arrêté.\nI often get a letter from him.\tJe reçois souvent des lettres de lui.\nI often go downtown on Sunday.\tJe vais souvent en ville le dimanche.\nI often go downtown on Sunday.\tJe vais souvent en centre-ville le dimanche.\nI often play tennis on Sunday.\tJe joue souvent au tennis le dimanche.\nI often went fishing with him.\tJ'allai souvent pêcher avec lui.\nI once worked in a restaurant.\tJ'ai déjà travaillé dans un restaurant.\nI only did what was necessary.\tJe n'ai fait que ce qui était nécessaire.\nI opened a bottle of red wine.\tJ'ai ouvert une bouteille de vin rouge.\nI opened a bottle of red wine.\tJ'ouvris une bouteille de vin rouge.\nI overheard your conversation.\tJ'ai surpris votre conversation.\nI overheard your conversation.\tJe surpris votre conversation.\nI painted the roof light blue.\tJ'ai peint le toit en bleu clair.\nI picked these flowers myself.\tJ'ai cueilli ces fleurs moi-même.\nI plan to have lunch with him.\tJe prévois de déjeuner avec lui.\nI play tennis once in a while.\tJe joue au tennis de temps en temps.\nI played catch with my father.\tJ'ai joué au catch avec mon père.\nI prefer history to geography.\tJe préfère l'histoire à la géographie.\nI prefer not to talk about it.\tJe préfère ne pas en parler.\nI prefer to not talk about it.\tJe préfère ne pas en parler.\nI promise you I'll come early.\tJe vous promets que je viendrai tôt.\nI promise you I'll come early.\tJe te promets que je viendrai tôt.\nI promise you I'll come early.\tJe vous promets de venir tôt.\nI promise you I'll come early.\tJe te promets de venir tôt.\nI promised not to tell anyone.\tJ'ai promis de ne le dire à personne.\nI put my clothes in the dryer.\tJe mets mes vêtements dans la sécheuse.\nI put my clothes in the dryer.\tJe mets mes vêtements dans le sèche-linge.\nI put my clothes in the dryer.\tJ'ai mis mes vêtements dans la sécheuse.\nI put my clothes in the dryer.\tJ'ai mis mes vêtements dans le sèche-linge.\nI put my hand on his shoulder.\tJe pose la main sur son épaule.\nI put my hand on his shoulder.\tJe posai la main sur son épaule.\nI put my hand on his shoulder.\tJ'ai posé la main sur son épaule.\nI put my hand on his shoulder.\tJe mets la main sur son épaule.\nI put my hand on his shoulder.\tJe mis la main sur son épaule.\nI put my hand on his shoulder.\tJ'ai mis la main sur son épaule.\nI put some cream in my coffee.\tJ'ai mis un peu de lait dans mon café.\nI put some cream in my coffee.\tJe mis du lait dans mon café.\nI put the money into the safe.\tJ'ai mis l'argent dans le coffre.\nI put the money into the safe.\tJ'ai mis l'argent dans le coffre-fort.\nI quit smoking six months ago.\tJ'ai arrêté de fumer il y a six mois.\nI ran ahead to warn everybody.\tJe courus devant pour avertir tout le monde.\nI ran ahead to warn everybody.\tJ'ai couru devant pour avertir tout le monde.\nI realized what was happening.\tJe pris conscience de ce qui se passait.\nI realized what was happening.\tJ'ai pris conscience de ce qui se passait.\nI realized what was happening.\tJe pris conscience de ce qui arrivait.\nI realized what was happening.\tJ'ai pris conscience de ce qui arrivait.\nI realized what was happening.\tJe pris conscience de ce qui survenait.\nI realized what was happening.\tJ'ai pris conscience de ce qui survenait.\nI realized what was happening.\tJe pris conscience de ce qui avait lieu.\nI realized what was happening.\tJ'ai pris conscience de ce qui avait lieu.\nI really appreciate the offer.\tJ'apprécie vraiment la proposition.\nI really can't talk right now.\tJe ne peux vraiment pas parler à l'instant.\nI really have to be going now.\tIl me faut vraiment m'en aller maintenant.\nI really have to be going now.\tIl me faut vraiment me mettre en route maintenant.\nI really like this restaurant.\tJ'aime beaucoup ce restaurant.\nI really like this wine a lot.\tJ'aime beaucoup ce vin.\nI really need to hit somebody.\tJ'ai vraiment besoin de frapper quelqu'un.\nI really think I should drive.\tJe pense vraiment que je devrais conduire.\nI really think we should talk.\tJe pense vraiment que nous devrions parler.\nI recommended Tom for the job.\tJ'ai recommandé Tom pour ce travail.\nI regret eating those oysters.\tJe regrette d'avoir mangé ces huîtres.\nI regret to say I cannot come.\tJ'ai le regret d'annoncer que je ne peux pas venir.\nI relaxed at home last Sunday.\tJe me suis reposé à la maison dimanche dernier.\nI remember meeting you before.\tJe me rappelle t'avoir déjà rencontré auparavant.\nI remember seeing this before.\tJe me souviens avoir vu ça auparavant.\nI remember seeing this before.\tJe me rappelle avoir vu ça auparavant.\nI sat in the front of the bus.\tJe m'assis à l'avant du bus.\nI saw Tom going into the bank.\tJ'ai vu Tom entrer dans la banque.\nI saw Tom going into the cave.\tJ'ai vu Tom entrer dans la grotte.\nI saw a house in the distance.\tJe vis une maison au loin.\nI saw a house with a red roof.\tJ'ai vu une maison dont le toit était rouge.\nI saw a house with a red roof.\tJ'aperçus une maison au toit rouge.\nI saw him crossing the street.\tJe l'ai vu traverser la route.\nI saw him crossing the street.\tJe l'ai vu traverser la rue.\nI saw my mother hide the cake.\tJe vis ma mère cacher le gâteau.\nI saw the match on television.\tJ'ai vu le match à la télévision.\nI saw the moon above the roof.\tJ'ai vu la lune au-dessus du toit.\nI saw them walking arm in arm.\tJe les ai vus marcher bras dessus bras dessous.\nI see a bright future for you.\tJe vois un futur brillant pour toi.\nI see nothing wrong with this.\tJe ne vois aucun problème avec ça.\nI see they've put you to work.\tJe vois qu'elles t'ont mise au travail.\nI see they've put you to work.\tJe vois qu'ils t'ont mise au travail.\nI see they've put you to work.\tJe vois qu'elles t'ont mis au travail.\nI see they've put you to work.\tJe vois qu'ils t'ont mis au travail.\nI see they've put you to work.\tJe vois qu'ils vous ont mise au travail.\nI see they've put you to work.\tJe vois qu'ils vous ont mis au travail.\nI see they've put you to work.\tJe vois qu'elles vous ont mise au travail.\nI see they've put you to work.\tJe vois qu'elles vous ont mis au travail.\nI sent it to you two days ago.\tJe te l'ai envoyé il y a deux jours.\nI sent it to you two days ago.\tJe vous l'ai envoyée il y a deux jours.\nI should have taken the money.\tJ'aurais dû prendre l'argent.\nI should have told you before.\tJ'aurais dû vous le dire auparavant.\nI should have told you before.\tJ'aurais dû te le dire auparavant.\nI should stop procrastinating.\tJe devrais arrêter la procrastination.\nI should stop procrastinating.\tJe devrais arrêter de temporiser.\nI shouldn't be talking to you.\tJe ne devrais pas être en train de te parler.\nI spent my vacation in Hakone.\tJe passais mes vacances à Hakone.\nI spent ten dollars on a book.\tJ'ai dépensé dix dollars pour un livre.\nI spoke with her for one hour.\tJ'ai parlé avec elle pendant une heure.\nI stayed there for three days.\tJe suis resté trois jours là-bas.\nI subscribe to two newspapers.\tJe m'abonne à deux journaux.\nI suggested that she go alone.\tJ'ai proposé qu'elle y aille seule.\nI support you whole-heartedly.\tJe te soutiens de tout cœur.\nI support you whole-heartedly.\tJe vous soutiens de tout cœur.\nI suppose anything's possible.\tJe suppose que tout est possible.\nI suppose anything's possible.\tJe suppose que n'importe quoi est possible.\nI suppose you think I'm crazy.\tJe suppose que vous pensez que je suis fou.\nI suppose you think I'm crazy.\tJe suppose que tu penses que je suis fou.\nI suppose you think I'm crazy.\tJe suppose que vous pensez que je suis folle.\nI suppose you think I'm crazy.\tJe suppose que tu penses que je suis folle.\nI suppose you want me to help.\tJe suppose que vous voulez que j'aide.\nI suppose you want me to help.\tJe suppose que tu veux que j'aide.\nI take a bath every other day.\tJe prends un bain tous les deux jours.\nI take care of my grandfather.\tJe m'occupe de mon grand-père.\nI talk to myself all the time.\tJe me parle tout le temps.\nI talked with her for an hour.\tJ'ai parlé avec elle pendant une heure.\nI talked with her for an hour.\tJ'ai parlé avec elle une heure durant.\nI taught my wife how to drive.\tJ'ai appris à conduire à ma femme.\nI taught my wife how to drive.\tJ'ai appris à conduire à mon épouse.\nI thank you for your courtesy.\tJe te remercie pour ta politesse.\nI think I did something wrong.\tJe pense que j'ai fait quelque chose de travers.\nI think I'd like to marry her.\tJe pense que j'aimerais l'épouser.\nI think I'm gonna go to sleep.\tJe pense que j'vais aller dormir.\nI think I've had one too many.\tJe pense que j'en ai pris un de trop.\nI think I've had one too many.\tJe pense que je m'en suis envoyé un de trop.\nI think Tom had a good reason.\tJe pense que Tom avait une bonne raison.\nI think Tom has a valid point.\tJe pense que Tom a un argument valable.\nI think Tom has seen too much.\tJe pense que Tom en a trop vu.\nI think Tom is going to be OK.\tJe pense que Tom va s'en sortir.\nI think Tom said he'd be back.\tJe pense que Tom a dit qu'il serait de retour.\nI think friends are important.\tJe pense que les amis sont importants.\nI think he's a man of ability.\tJe pense que c'est un homme capable.\nI think he's attracted to you.\tJe pense qu'il est attiré par toi.\nI think he's attracted to you.\tJe pense qu'il est attiré par vous.\nI think he's going to be sick.\tJe pense qu'il va être malade.\nI think it's Tom's motorcycle.\tJe pense que c'est la moto de Tom.\nI think it's a brilliant idea.\tJe pense que c'est une idée géniale.\nI think it's too cold to swim.\tJe pense qu'il fait trop froid pour se baigner.\nI think our luck just ran out.\tJe pense que notre chance vient de s'épuiser.\nI think our work here is done.\tJe pense que notre travail ici est terminé.\nI think that's Tom over there.\tJe pense que c'est Tom là-bas.\nI think that's enough for now.\tJe pense que c'est assez pour le moment.\nI think that's pretty obvious.\tJe pense que c'est plutôt évident.\nI think that's what Tom wants.\tJe pense que c'est ce que Tom veut.\nI think this is going to work.\tJe pense que cela va fonctionner.\nI think we all know the rules.\tJe pense que nous connaissons tous les règles.\nI think we all know the rules.\tJe pense que nous connaissons toutes les règles.\nI think we may have a problem.\tJe pense qu'il se peut que nous ayons un problème.\nI think we should make a deal.\tJe pense que nous devrions faire affaire.\nI think we're all a bit crazy.\tJe pense que nous sommes tous un peu fous.\nI think you know what I think.\tJe pense que vous savez ce que je pense.\nI think you know what I think.\tJe pense que tu sais ce que je pense.\nI think you know why I'm here.\tJe pense que vous savez pourquoi je suis ici.\nI think you know why I'm here.\tJe pense que tu sais pourquoi je suis ici.\nI think you need to leave now.\tJe pense qu'il te faut maintenant partir.\nI think you need to leave now.\tJe pense qu'il vous faut maintenant partir.\nI think you owe me some money.\tJe pense que tu me dois de l'argent.\nI think you owe me some money.\tJe pense que vous me devez de l'argent.\nI think you should choose Tom.\tJe pense que tu devrais choisir Tom.\nI think you should choose Tom.\tJe pense que vous devriez choisir Tom.\nI think you're probably right.\tJe pense que vous avez probablement raison.\nI think you're probably right.\tJe pense que tu as probablement raison.\nI think you've been fortunate.\tJe pense que tu as eu de la chance.\nI thought I'd always be alone.\tJe pensais que je serais toujours seul.\nI thought I'd always be alone.\tJe pensais que je serais toujours seule.\nI thought I'd never hear that.\tJe pensais que je n'entendrais jamais ça.\nI thought I'd never hear that.\tJe pensais ne jamais entendre ça.\nI thought Tom was from Boston.\tJe croyais que Tom était de Boston.\nI thought Tom was your friend.\tJe pensais que Tom était votre ami.\nI thought Tom would be hungry.\tJe pensais que Tom aurait faim.\nI thought it was a good movie.\tJe pensais que c'était un bon film.\nI thought that you could swim.\tJe pensais que tu pouvais nager.\nI thought we already did that.\tJe pensais que nous avions déjà fait cela.\nI thought we had an agreement.\tJe pensais que nous avions un accord.\nI thought you already had one.\tJe pensais que tu en avais déjà un.\nI thought you already had one.\tJe pensais que tu en avais déjà une.\nI thought you already had one.\tJe pensais que vous en aviez déjà un.\nI thought you already had one.\tJe pensais que vous en aviez déjà une.\nI thought you did fairly well.\tJ'ai pensé que tu t'en étais assez bien tiré.\nI thought you did fairly well.\tJ'ai pensé que tu t'en étais assez bien tirée.\nI thought you did fairly well.\tJ'ai pensé que vous vous en étiez assez bien tiré.\nI thought you did fairly well.\tJ'ai pensé que vous vous en étiez assez bien tirées.\nI thought you did fairly well.\tJ'ai pensé que vous vous en étiez assez bien tirés.\nI thought you did fairly well.\tJ'ai pensé que vous vous en étiez assez bien tirée.\nI thought you might need help.\tJ'ai pensé que tu pourrais avoir besoin d'aide.\nI thought you were a Canadian.\tJe pensais que tu étais un Canadien.\nI thought you'd want this one.\tJe pensais que tu voudrais celle-ci.\nI thought you'd want this one.\tJe pensais que vous voudriez celle-ci.\nI told Tom I couldn't do that.\tJ'ai dit à Tom que je ne pouvais pas faire cela.\nI told Tom to wait in the car.\tJ'ai dit à Tom d'attendre dans la voiture.\nI told everyone to be careful.\tJ'ai dit à tout le monde de faire attention.\nI told her that she was right.\tJe lui ai dit qu'elle avait raison.\nI told you I hated that shirt.\tJe vous ai dit que je détestais cette chemise.\nI told you I hated that shirt.\tJe t'ai dit que je détestais cette chemise.\nI took care of my sick sister.\tJe me suis occupé de ma sœur malade.\nI took it that you would come.\tJe supposais que tu viendrais.\nI took part in the discussion.\tJ'ai participé à la discussion.\nI took your name off the list.\tJ'ai retiré votre nom de la liste.\nI took your name off the list.\tJ'ai enlevé ton nom de la liste.\nI tossed and turned all night.\tJe me suis tourné et retourné toute la nuit.\nI tossed and turned all night.\tJe me suis tournée et retournée toute la nuit.\nI understand your frustration.\tJe comprends ta frustration.\nI understand your frustration.\tJe comprends votre frustration.\nI use Google almost every day.\tJ'utilise Google presque quotidiennement.\nI used to weigh seventy kilos.\tJe pesais septante kilos.\nI usually drink a lot of milk.\tJe bois généralement beaucoup de lait.\nI usually go to school by bus.\tHabituellement, je vais à l'école en bus.\nI usually go to school by bus.\tD'habitude je vais à l'école en bus.\nI waited for him all day long.\tJe l'ai attendu toute la journée.\nI want a money back guarantee.\tJe veux une garantie de remboursement.\nI want a volunteer to help me.\tJe veux un volontaire pour m'aider.\nI want him to play the guitar.\tJe veux qu'il joue de la guitare.\nI want something hot to drink.\tJe veux une boisson chaude.\nI want something sweet to eat.\tJe veux quelque chose de sucré à manger.\nI want something to drink now.\tJe veux quelque chose à boire, maintenant.\nI want this computer repaired.\tJe veux que cet ordinateur soit réparé.\nI want to ask you a big favor.\tJ'ai une importante faveur à te demander.\nI want to be doing a good job.\tJe veux effectuer un bon boulot.\nI want to be in show business.\tJe veux faire partie du monde du spectacle.\nI want to be more independent.\tJe veux être plus indépendant.\nI want to buy a dozen bananas.\tJe veux acheter une douzaine de bananes.\nI want to do something useful.\tJe veux faire quelque chose d'utile.\nI want to eat Chinese noodles.\tJe veux manger des nouilles chinoises.\nI want to find a box for this.\tJe veux trouver une boîte pour ceci.\nI want to find a box for this.\tJe veux trouver une caisse pour ceci.\nI want to focus on the future.\tJe veux me concentrer sur l'avenir.\nI want to get better at chess.\tJe veux m'améliorer aux échecs.\nI want to get my ears pierced.\tJe veux me faire percer les oreilles.\nI want to get on with my life.\tJe veux reprendre le cours de ma vie.\nI want to get there by subway.\tJe veux y aller en métro.\nI want to get this done today.\tJe veux que ce soit fait aujourd'hui.\nI want to go bowling with Tom.\tJe veux aller faire du bowling avec Tom.\nI want to go there once again.\tJe veux aller là-bas encore une fois.\nI want to go there once again.\tJe veux y retourner.\nI want to go with you tonight.\tJe veux aller avec toi, ce soir.\nI want to go with you tonight.\tJe veux aller avec vous, ce soir.\nI want to know what to expect.\tJe veux savoir à quoi m'attendre.\nI want to know what you think.\tJe veux savoir ce que tu en penses.\nI want to know what you'll do.\tJe veux savoir ce que tu vas faire.\nI want to know where Tom went.\tJe veux savoir où Tom est allé.\nI want to know where they are.\tJe veux savoir où ils sont.\nI want to know where they are.\tJe veux savoir où elles sont.\nI want to know where they are.\tJe veux savoir où ils se trouvent.\nI want to know where they are.\tJe veux savoir où elles se trouvent.\nI want to know who started it.\tJe veux savoir qui l'a commencé.\nI want to know who started it.\tJe veux savoir qui l'a commencée.\nI want to know who started it.\tJe veux savoir qui l'a démarré.\nI want to know who started it.\tJe veux savoir qui l'a démarrée.\nI want to play chess with Tom.\tJ'ai envie de jouer aux échecs avec Tom.\nI want to prove I can do this.\tJe veux prouver que je peux le faire.\nI want to see the countryside.\tJe veux voir la campagne.\nI want to see the movie again.\tJe veux voir le film à nouveau.\nI want to see you after lunch.\tJe veux te voir après déjeuner.\nI want to see your supervisor.\tJe veux voir votre contremaître.\nI want to see your supervisor.\tJe veux voir votre chef.\nI want to share this with you.\tJe veux partager ça avec toi.\nI want to share this with you.\tJe veux partager ceci avec vous.\nI want to sleep a little more.\tJe veux dormir encore un peu.\nI want to sleep in my own bed.\tJe veux dormir dans mon propre lit.\nI want to spend time with you.\tJe veux passer du temps avec toi.\nI want to talk to all of them.\tJe veux leur parler à tous.\nI want to talk to all of them.\tJe veux leur parler à toutes.\nI want to teach you something.\tJe veux vous apprendre quelque chose.\nI want to teach you something.\tJe veux vous enseigner quelque chose.\nI want to teach you something.\tJe veux t'apprendre quelque chose.\nI want to teach you something.\tJe veux t'enseigner quelque chose.\nI want us to be friends again.\tJe veux que nous soyons à nouveau amis.\nI want us to be friends again.\tJe veux que nous soyons à nouveau amies.\nI want you and me to be happy.\tJe veux que vous et moi soyons heureux.\nI want you and me to be happy.\tJe veux que vous et moi soyons heureuses.\nI want you and me to be happy.\tJe veux que toi et moi soyons heureux.\nI want you and me to be happy.\tJe veux que toi et moi soyons heureuses.\nI want you to be a bridesmaid.\tJe veux que vous soyez demoiselle d'honneur.\nI want you to be a bridesmaid.\tJe veux que tu sois demoiselle d'honneur.\nI want you to call the police.\tJe veux que vous appeliez la police.\nI want you to call the police.\tJe veux que tu appelles la police.\nI want you to come and get me.\tJe veux que vous passiez me prendre.\nI want you to come and get me.\tJe veux que tu passes me prendre.\nI want you to come back early.\tJ'espère que tu reviennes vite.\nI want you to come right over.\tJe veux que tu viennes sur-le-champ.\nI want you to come right over.\tJe veux que vous veniez sur-le-champ.\nI want you to get in your car.\tJe veux que vous montiez dans votre voiture.\nI want you to get in your car.\tJe veux que vous montiez à bord de votre voiture.\nI want you to get in your car.\tJe veux que tu montes dans ta voiture.\nI want you to get in your car.\tJe veux que tu montes à bord de ta voiture.\nI want you to get off my back.\tJe veux que vous me lâchiez la grappe.\nI want you to get off my back.\tJe veux que tu me lâches la grappe.\nI want you to get off my back.\tJe veux que vous descendiez de mon dos.\nI want you to get off my back.\tJe veux que tu descendes de mon dos.\nI want you to get out of town.\tJe veux que vous sortiez de la ville.\nI want you to get out of town.\tJe veux que tu sortes de la ville.\nI want you to open the window.\tJe veux que vous ouvriez la fenêtre.\nI wanted to hear you say that.\tJe voulais vous entendre dire cela.\nI wanted to hear you say that.\tJe voulais t'entendre dire cela.\nI wanted to run away with Tom.\tJe voulais fuir avec Tom.\nI wanted to run away with Tom.\tJe voulais m'enfuir avec Tom.\nI wanted to run away with Tom.\tJ'ai voulu fuir avec Tom.\nI was caught in a traffic jam.\tJ'ai été pris dans un embouteillage.\nI was caught in the rush hour.\tJ'étais pris dans les transports à l'heure de pointe.\nI was forced to take medicine.\tJe fus contraint de prendre des médicaments.\nI was forced to take medicine.\tOn m'a forcé à prendre des médicaments.\nI was impressed with her work.\tJ'ai été impressionné par son travail.\nI was impressed with her work.\tJ'ai été impressionnée par son travail.\nI was impressed with her work.\tJe fus impressionnée par son travail.\nI was impressed with her work.\tJe fus impressionné par son travail.\nI was involved in the quarrel.\tJ'ai été impliqué dans la dispute.\nI was just about to go to bed.\tJ'étais juste sur le point d'aller au lit.\nI was looking forward to this.\tJ'attendais ceci avec impatience.\nI was never worried about you.\tJe ne me suis jamais fait de souci à ton sujet.\nI was never worried about you.\tJe ne me suis jamais fait de souci à votre sujet.\nI was not feeling very hungry.\tJe n'avais pas vraiment faim.\nI was often seized by despair.\tJ'ai souvent été pris de désespoir.\nI was out of town on vacation.\tJ'étais en vacances hors de la ville.\nI was planning on telling you.\tJe prévoyais de te le dire.\nI was planning on telling you.\tJe prévoyais de vous le dire.\nI was so hungry that I ate it.\tJ'avais si faim que je l'ai mangé.\nI was surprised to see a lion.\tJ'ai été surpris de voir un lion.\nI was tempted to call in sick.\tJ'ai eu la tentation de me faire porter pâle.\nI was thinking about the plan.\tJe réfléchissais au projet.\nI was thinking of getting one.\tJe songeais à m'en procurer un.\nI was thinking of getting one.\tJe songeais à m'en procurer une.\nI was thinking of getting one.\tJ'étais en train de songer à m'en procurer un.\nI was thinking of getting one.\tJ'étais en train de songer à m'en procurer une.\nI was too astonished to speak.\tJ'étais trop étonnée pour parler.\nI was too astonished to speak.\tJe suis resté sans voix tellement j'étais étonné.\nI was too astonished to speak.\tJ'étais trop étonné pour parler.\nI was trying to be supportive.\tJ'essayais d'être solidaire.\nI was trying to be supportive.\tJ'essayais d'encourager.\nI was wearing my best clothes.\tJe portais mes meilleurs habits.\nI wasn't entirely sure myself.\tJe n'en étais pas tout à fait sûr moi-même.\nI wasn't entirely sure myself.\tJe n'en étais pas tout à fait sûre moi-même.\nI wasn't fat when I was a kid.\tJe n'étais pas gros quand j'étais enfant.\nI wasn't that smart in school.\tJe n'étais pas si intelligent que ça, à l'école.\nI wasn't that smart in school.\tJe n'étais pas si intelligente que ça, à l'école.\nI went camping with my family.\tJe suis allé camper en famille.\nI went camping with my family.\tJe suis allée camper en famille.\nI went camping with my family.\tJ'allai camper en famille.\nI went for a walk in the park.\tJe suis allé marcher au parc.\nI went for a walk with my son.\tJe suis allé me promener avec mon fils.\nI went shopping in town today.\tJ'ai fait les magasins en ville aujourd'hui.\nI went shopping with a friend.\tJ'ai été faire des courses avec un ami.\nI went there by bus and train.\tJ'y suis allé en bus et en train.\nI went there out of curiosity.\tJe m'y suis rendu par curiosité.\nI went to Boston to visit Tom.\tJe suis allé à Boston voir Tom.\nI went to the airport by taxi.\tJe me suis rendu à l'aéroport en taxi.\nI will be pleased to help you.\tJe suis prêt à t'aider.\nI will call you within a week.\tJe vous rappelle dans la semaine.\nI will come earlier next time.\tLa prochaine fois je viendrai plus tôt.\nI will find you a good doctor.\tJe vais te trouver un bon toubib.\nI will find you a good doctor.\tJe vous trouverai un bon médecin.\nI will have to study tomorrow.\tJe dois étudier demain.\nI will pick you up around six.\tJe viendrai vous prendre en voiture vers six heures.\nI will play football tomorrow.\tDemain je jouerai au football.\nI will say something about it.\tJe dirai quelque chose à ce propos.\nI will show you some pictures.\tJe vous montrerai quelques photos.\nI will telephone you later on.\tJe te rappellerai plus tard.\nI will telephone you later on.\tJe t'appelle plus tard.\nI will win the game next time.\tLa prochaine fois, je gagnerai la partie.\nI wish I had a room of my own.\tJ'aimerais disposer de ma propre chambre.\nI wish I wasn't such an idiot.\tJ'aimerais ne pas être un tel idiot.\nI wish I wasn't such an idiot.\tJ'aimerais ne pas être une telle idiote.\nI wish I were a little taller.\tJ'aimerais bien être un peu plus grand.\nI wish I were as young as you.\tJe voudrais être aussi jeune que toi.\nI wish it was Valentine's Day!\tVivement la Saint-Valentin !\nI wish you could come with us.\tJ'aimerais que vous puissiez venir avec nous.\nI wish you could come with us.\tJ'aimerais que tu puisses venir avec nous.\nI won't live there ever again.\tJe n'habiterai plus jamais là-bas.\nI won't tolerate that anymore.\tJe ne le tolèrerai plus.\nI wonder if Tom is having fun.\tJe me demande si Tom s'amuse bien.\nI wonder if maybe I should go.\tJe me demande si je devrais peut-être y aller.\nI wonder if this really works.\tJe me demande si ça fonctionne vraiment.\nI wonder if you could help us.\tJe me demande si tu pourrais nous aider.\nI wonder if you could help us.\tJe me demande si vous pourriez nous aider.\nI wonder what happened to her.\tJe me demande ce qui lui est arrivé.\nI wonder who can swim fastest.\tJe me demande qui peut nager le plus vite.\nI wonder why Tom gave me this.\tJe me demande pourquoi Tom m'a donné ceci.\nI work for a shipping company.\tJe travaille pour une compagnie maritime.\nI would ask him if I were you.\tJe lui demanderais, si j'étais vous.\nI would ask him if I were you.\tJe lui demanderais, si j'étais toi.\nI would like a glass of water.\tJ'aimerais un verre d'eau.\nI would like to go for a swim.\tJe voudrais aller nager.\nI would like to go to the USA.\tJ'aimerais aller aux États-Unis.\nI would like to know her name.\tJ'aimerais connaître son nom.\nI would rather die than do it.\tJe préférerais mourir que de le faire.\nI wouldn't do that to anybody.\tJe ne ferais cela à personne.\nI wouldn't have dreamed of it.\tJe n'y aurais pas songé.\nI wouldn't spend my life here.\tJe ne voudrais pas passer ma vie ici.\nI wouldn't want to be a judge.\tJe ne voudrais pas être juge.\nI write in my diary every day.\tJ'écris dans mon journal intime chaque jour.\nI write in my diary every day.\tJ'écris chaque jour dans mon journal.\nI write in my diary every day.\tJ'écris tous les jours dans mon journal.\nI write poems in my free time.\tJ'écris des poèmes pendant mon temps libre.\nI wrote down his phone number.\tJ'ai noté son numéro de téléphone.\nI wrote down his phone number.\tJ'ai pris note de son numéro de téléphone.\nI'd completely forgotten that.\tJ'ai complètement oublié ça.\nI'd kill for a beer right now.\tJe serais prêt à tuer pour une bière, à l'instant.\nI'd like a cup of tea, please.\tJe vais prendre une tasse de thé, s'il vous plaît.\nI'd like a little bit of cake.\tJ'aimerais un petit morceau de gâteau.\nI'd like to ask you something.\tJe voudrais te demander quelque chose.\nI'd like to build a new house.\tJe voudrais construire une nouvelle maison.\nI'd like to buy this computer.\tJ'aimerais acheter cet ordinateur.\nI'd like to change some money.\tJ'aimerais changer de l'argent.\nI'd like to do some traveling.\tJ'aimerais voyager un peu.\nI'd like to go abroad one day.\tJe voudrais bien un jour me rendre à l'étranger.\nI'd like to improve my French.\tJ'aimerais améliorer mon français.\nI'd like to take this with me.\tJ'aimerais prendre ça avec moi.\nI'd like to take this with me.\tJ'aimerais emmener ça avec moi.\nI'd like to talk to Tom alone.\tJ'aimerais parler à Tom seul.\nI'd like to try on this dress.\tJ'aimerais essayer cette robe.\nI'd like to try this dress on.\tJ'aimerais essayer cette robe.\nI'd like you to be my partner.\tJ'aimerais que tu sois mon partenaire.\nI'd never seen Tom cry before.\tJe n'avais jamais vu Tom pleurer avant.\nI'd rather die than surrender.\tJe préfèrerais mourir que de me rendre.\nI'd rather she sat next to me.\tJ'aurais préféré qu'elle s'asseye à côté de moi.\nI'd rather stay home with you.\tJe préférerais rester à la maison avec toi.\nI'd rather stay home with you.\tJe préférerais rester à la maison avec vous.\nI'll be back in a few minutes.\tJe serai de retour dans quelques minutes.\nI'll be back in a few minutes.\tJe reviens dans quelques minutes.\nI'll be back in an hour or so.\tJe serai de retour dans environ une heure.\nI'll be back within two hours.\tJe serai de retour dans deux heures.\nI'll be careful with the kids.\tJe serai prudent avec les enfants.\nI'll be free all day tomorrow.\tJe suis libre toute la journée de demain.\nI'll be there in five minutes.\tJ'y serai dans cinq minutes.\nI'll be there in five minutes.\tJe serai là-bas dans cinq minutes.\nI'll believe it when I see it.\tJ'y croirai lorsque je le verrai.\nI'll bring it to you tomorrow.\tJe vous l'amène demain.\nI'll bring it to you tomorrow.\tJe te l'apporterai demain.\nI'll call if I learn anything.\tJ'appellerai si j'apprends quoi que ce soit.\nI'll call you some other time.\tJe t'appellerai une autre fois.\nI'll certainly go and see him.\tJ'irai certainement le voir.\nI'll come as soon as possible.\tJe viendrai aussitôt que possible.\nI'll come home by six o'clock.\tJe serai de retour à la maison avant 6 heures.\nI'll come to your house later.\tJe viendrai chez toi plus tard.\nI'll continue to offer advice.\tJe continuerai à offrir des conseils.\nI'll do anything but that job.\tJe ferais tout sauf ce boulot.\nI'll do everything that I can.\tJe ferai tout ce qui est en mon possible.\nI'll do everything that I can.\tJe ferai tout ce que je peux.\nI'll do this as long as I can.\tJe le ferai aussi longtemps que je le pourrai.\nI'll do your homework for you.\tJe ferai tes devoirs pour toi.\nI'll drop if I don't sit down.\tJe vais m'effondrer si je ne m'assois pas.\nI'll have it done before 2:30.\tJe l'aurai fait faire avant 14h30.\nI'll keep this for future use.\tJe vais le garder pour une utilisation future.\nI'll lend you one if you like.\tJe t'en prêterai un si tu veux.\nI'll let you get back to work.\tJe vais te laisser retourner à ton travail.\nI'll let you get back to work.\tJe vais vous laisser retourner à votre travail.\nI'll pay for your lunch today.\tJe paierai ton déjeuner aujourd'hui.\nI'll pay you a visit sometime.\tJe te rendrai visite un de ces jours.\nI'll pay you a visit sometime.\tJe te rendrai visite un de ces quatre.\nI'll pick you up after school.\tJe viendrai te chercher après l'école.\nI'll pick you up after school.\tJe viendrai vous chercher après l'école.\nI'll pick you up at your home.\tJe te prendrai chez toi.\nI'll pick you up at your home.\tJe passerai te prendre chez toi.\nI'll protect her with my life.\tJe la protègerai au prix de ma vie.\nI'll show you around the city.\tJe vais te montrer la ville.\nI'll show you around the city.\tJe te montrerai la ville.\nI'll show you around the city.\tJe vous montrerai la ville.\nI'll show you around the town.\tJe te montrerai la bourgade.\nI'll show you around the town.\tJe vous montrerai la bourgade.\nI'll show you that I am right.\tJe te montrerai que j'ai raison.\nI'll show you that I am right.\tJe vous montrerai que j'ai raison.\nI'll study harder from now on.\tDorénavant je travaillerai plus dur.\nI'll take my chances with you.\tJe vais tenter ma chance avec toi.\nI'll tell Tom to stay outside.\tJe dirai à Tom de rester dehors.\nI'll tell you what's happened.\tJe vais vous dire ce qui s'est passé.\nI'm a respectable businessman.\tJe suis un homme d'affaires respectable.\nI'm about the same age as you.\tJ'ai environ le même âge que toi.\nI'm about the same age as you.\tJ'ai environ le même âge que vous.\nI'm about the same age as you.\tJ'ai à peu près le même âge que toi.\nI'm about the same age as you.\tJ'ai à peu près le même âge que vous.\nI'm allergic to some medicine.\tJe suis allergique à quelques médicaments.\nI'm always proud of my family.\tJe suis toujours fier de ma famille.\nI'm aware of that possibility.\tJe suis conscient de cette possibilité.\nI'm aware of the difficulties.\tJe me rends compte des difficultés.\nI'm bored. Let's do something.\tJe m'ennuie. Faisons quelque chose !\nI'm certainly not your friend.\tJe ne suis certainement pas ton ami.\nI'm certainly not your friend.\tJe ne suis certainement pas ton amie.\nI'm certainly not your friend.\tJe ne suis certainement pas votre ami.\nI'm certainly not your friend.\tJe ne suis certainement pas votre amie.\nI'm coming over to your place.\tJe passe te voir chez toi.\nI'm done watering the flowers.\tJ'en ai terminé avec l'arrosage des fleurs.\nI'm drinking a beer right now.\tJe bois une bière en ce moment même.\nI'm dying for a cup of coffee.\tJe meurs d'envie d'un café.\nI'm familiar with such things.\tJe suis familier de ces choses.\nI'm familiar with the subject.\tJe suis familier du sujet.\nI'm feeling good this morning.\tJe me sens bien ce matin.\nI'm feeling much better today.\tJe me sens beaucoup mieux aujourd'hui.\nI'm free every day but Monday.\tJe suis libre tous les jours sauf le lundi.\nI'm free every day but Monday.\tJe suis libre tous les jours sauf lundi.\nI'm friends with Tom's sister.\tJe suis ami avec la sœur de Tom.\nI'm getting a new house built.\tJe me fais construire une nouvelle maison.\nI'm getting married next week.\tJe me marie la semaine prochaine.\nI'm giving it to you for free.\tJe te le donne pour rien.\nI'm giving you an opportunity.\tJe te donne une occasion.\nI'm glad that makes you happy.\tJe suis content que ça te rende heureux.\nI'm glad that makes you happy.\tJe suis content que ça te rende heureuse.\nI'm glad that makes you happy.\tJe suis contente que ça te rende heureux.\nI'm glad that makes you happy.\tJe suis contente que ça te rende heureuse.\nI'm glad that makes you happy.\tJe suis contente que ça vous rende heureux.\nI'm glad that makes you happy.\tJe suis content que ça vous rende heureux.\nI'm glad that makes you happy.\tJe suis contente que ça vous rende heureuse.\nI'm glad that makes you happy.\tJe suis content que ça vous rende heureuse.\nI'm glad that makes you happy.\tJe suis contente que ça vous rende heureuses.\nI'm glad that makes you happy.\tJe suis content que ça vous rende heureuses.\nI'm glad you liked my friends.\tJe suis heureux que vous aimiez mes amis.\nI'm glad you liked my friends.\tJe suis heureux que tu aimes mes amis.\nI'm going to Hanover with you.\tJe vais à Hanovre avec toi.\nI'm going to do some shopping.\tJe veux aller faire des courses.\nI'm going to go get some food.\tJe vais aller chercher à manger.\nI'm going to go wash my hands.\tJe vais me laver les mains.\nI'm going to my grandmother's.\tJe vais chez ma grand-mère.\nI'm going to protect you, Tom.\tJe vais te protéger, Tom.\nI'm going to protect you, Tom.\tJe vais vous protéger, Tom.\nI'm going to see her tomorrow.\tJ'irai la voir demain.\nI'm good at playing the piano.\tJouer du piano est mon point fort.\nI'm happy because you're here.\tJe suis heureux, parce que vous êtes ici.\nI'm hearing that a lot lately.\tJ'entends beaucoup ça, ces derniers temps.\nI'm here if you need anything.\tJe suis là, si tu as besoin de quoi que ce soit.\nI'm here if you need anything.\tJe suis là, si vous avez besoin de quoi que ce soit.\nI'm here to ask for your help.\tJe suis ici pour requérir votre aide.\nI'm here to ask for your help.\tJe suis ici pour requérir ton aide.\nI'm just waiting for a friend.\tJ'attends juste un ami.\nI'm just waiting for a friend.\tJ'attends juste une amie.\nI'm learning so much from you.\tJ'apprends tant de vous.\nI'm learning so much from you.\tJ'apprends tant de toi.\nI'm more experienced than Tom.\tJ'ai plus d'expérience que Tom.\nI'm not able to speak so fast.\tJe ne suis pas capable de parler aussi vite.\nI'm not ashamed of what I did.\tJe n'ai pas honte de ce que j'ai fait.\nI'm not comfortable with this.\tJe ne suis pas à l'aise à ce sujet.\nI'm not comfortable with this.\tJe ne suis pas à l'aise avec ça.\nI'm not comparing Tom to Mary.\tJe ne compare pas Tom à Mary.\nI'm not going to get involved.\tJe ne vais pas m'impliquer.\nI'm not going to get involved.\tJe ne vais pas m'en mêler.\nI'm not going to get involved.\tJe ne vais pas me laisser impliquer.\nI'm not going to stop working.\tJe ne vais pas m'arrêter de travailler.\nI'm not good at telling jokes.\tJe ne suis pas doué pour raconter des blagues.\nI'm not in favor of this plan.\tJe ne suis pas en faveur d'un tel plan.\nI'm not in the mood for jokes.\tJe n'ai guère le cœur à plaisanter.\nI'm not in the mood right now.\tJe ne suis pas d'humeur pour le moment.\nI'm not scared of you anymore.\tJe ne vous crains plus.\nI'm not scared of you anymore.\tJe n'ai plus peur de vous.\nI'm not scared of you anymore.\tJe n'ai plus peur de toi.\nI'm not scared of you anymore.\tJe ne te crains plus.\nI'm not sure what I should do.\tJe ne suis pas sûr de ce que je devrais faire.\nI'm not the one who should go.\tJe ne suis pas celui qui devrait y aller.\nI'm not the one who should go.\tJe ne suis pas celle qui devrait y aller.\nI'm not too worried about Tom.\tJe ne m'inquiète pas trop pour Tom.\nI'm not wearing any underwear.\tJe ne porte aucun sous-vêtement.\nI'm on the phone with Tom now.\tJe suis actuellement au téléphone avec Tom.\nI'm practically an expert now.\tJe suis désormais pour ainsi dire un expert.\nI'm pretty sure Tom's serious.\tJe suis convaincu que Tom est sérieux.\nI'm really sorry to hear that.\tJe regrette vraiment d'entendre ça.\nI'm really unhappy about this.\tJe suis vraiment malheureux à ce sujet.\nI'm satisfied with everything.\tJe suis satisfait de tout.\nI'm seeing you in a new light.\tJe te vois sous un nouveau jour.\nI'm sick and tired of reading.\tJe suis fatigué de lire.\nI'm sick and tired of reading.\tJ'en ai plus qu'assez de lire.\nI'm so happy that you're here.\tJe suis tellement content que tu sois là.\nI'm sorry I misunderstood you.\tJe suis désolée de vous avoir mal compris.\nI'm sorry if I frightened you.\tJe suis désolé si je t'ai effrayé.\nI'm sorry if I frightened you.\tJe suis désolé si je t'ai effrayée.\nI'm sorry if I frightened you.\tJe suis désolé si je vous ai effrayé.\nI'm sorry if I frightened you.\tJe suis désolée si je vous ai effrayé.\nI'm sorry if I frightened you.\tJe suis désolé si je vous ai effrayée.\nI'm sorry if I frightened you.\tJe suis désolé si je vous ai effrayés.\nI'm sorry if I frightened you.\tJe suis désolé si je vous ai effrayées.\nI'm sorry if I frightened you.\tJe suis désolée si je vous ai effrayés.\nI'm sorry if I frightened you.\tJe suis désolée si je vous ai effrayées.\nI'm sorry if I frightened you.\tJe suis désolée si je vous ai effrayée.\nI'm sorry if I frightened you.\tJe suis désolée si je t'ai effrayé.\nI'm sorry if I frightened you.\tJe suis désolée si je t'ai effrayée.\nI'm sorry if I snapped at you.\tJe suis désolé de m'en être pris à toi.\nI'm sorry if I snapped at you.\tJe suis désolé de m'en être pris à vous.\nI'm sorry if I snapped at you.\tJe suis désolée de m'en être pris à toi.\nI'm sorry if I snapped at you.\tJe suis désolée de m'en être pris à vous.\nI'm sorry to upset your plans.\tJe suis désolé de décevoir tes plans.\nI'm sorry to upset your plans.\tJe suis désolé de décevoir vos plans.\nI'm sorry, I didn't mean that.\tJe suis désolé, je ne voulais pas dire ça.\nI'm sorry, I didn't mean that.\tJe suis désolée, je ne voulais pas dire ça.\nI'm sorry, I don't understand.\tJe suis désolé, je ne comprends pas.\nI'm sorry, I don't understand.\tJe suis désolée, je ne comprends pas.\nI'm sorry, I'm busy right now.\tJe suis désolé, je suis occupé pour l'instant.\nI'm sorry, the flight is full.\tJe suis désolé, ce vol est plein.\nI'm still part of this family.\tJe fais encore partie de cette famille.\nI'm sure I turned off the gas.\tJe suis sûr d'avoir fermé le gaz.\nI'm sure I turned off the gas.\tJe suis certain d'avoir fermé le gaz.\nI'm sure I turned off the gas.\tJe suis certaine d'avoir fermé le gaz.\nI'm sure I've seen him before.\tJe suis sûr de l'avoir vu auparavant.\nI'm sure things will work out.\tJe suis sûr que les choses vont se résoudre.\nI'm sure things will work out.\tJe suis sûre que les choses vont se résoudre.\nI'm sure we can work this out.\tJe suis sûr que nous pouvons arranger cela.\nI'm sure we can work this out.\tJe suis sûre que nous pouvons arranger cela.\nI'm sure we can work this out.\tJe suis sûr que nous pouvons arranger ça.\nI'm sure we can work this out.\tJe suis sûre que nous pouvons arranger ça.\nI'm sure we can work this out.\tJe suis sûr que nous pouvons résoudre cela.\nI'm sure we can work this out.\tJe suis sûre que nous pouvons résoudre cela.\nI'm surprised to see you here.\tJe suis surpris de vous voir ici.\nI'm taking an exam in January.\tJe passe un examen en janvier.\nI'm the middle child of three.\tJe suis le second de trois enfants.\nI'm the only one who survived.\tJe suis le seul à avoir survécu.\nI'm the only one who survived.\tJe suis la seule à avoir survécu.\nI'm tired of all this nagging.\tJe suis fatigué de toutes ces réflexions.\nI'm tired of all your fussing.\tJ'en ai marre de tous tes chichis.\nI'm tired of eating fast food.\tJ'en ai marre de manger du fast-food.\nI'm trying to clean the house.\tJ'essaye de nettoyer la maison.\nI'm trying to save Tom's life.\tJ'essaye de sauver la vie de Tom.\nI'm turning thirty in October.\tJe vais avoir trente ans en octobre.\nI'm used to working all night.\tJe suis accoutumé à travailler toute la nuit.\nI'm used to working all night.\tJe suis habitué à travailler toute la nuit.\nI'm used to working all night.\tJe suis habituée à travailler toute la nuit.\nI'm very proud of my daughter.\tJe suis très fier de ma fille.\nI'm waiting for my girlfriend.\tJ'attends ma copine.\nI've already finished my work.\tJ'ai déjà fini mon travail.\nI've already finished my work.\tJ'ai déjà effectué mon travail.\nI've always had a sweet tooth.\tJ'ai toujours aimé le sucré.\nI've always wanted a daughter.\tJ'ai toujours voulu une fille.\nI've been here since Saturday.\tJe suis ici depuis samedi.\nI've been sent to relieve you.\tJ'ai été envoyé pour vous soulager.\nI've changed my daily routine.\tJ'ai changé ma routine quotidienne.\nI've decided that we won't go.\tJ'ai décidé que nous n'irons pas.\nI've got a pair of sunglasses.\tJ'ai une paire de lunettes de soleil.\nI've got a pair of sunglasses.\tJ'ai une paire de lunettes noires.\nI've got nothing in my fridge.\tJe n'ai rien dans mon frigo.\nI've got to go back and check.\tIl faut que j'y retourne et que je vérifie.\nI've got to head back to work.\tIl me faut reprendre le chemin du travail.\nI've gotta go to the bathroom.\tIl faut que j'aille aux toilettes.\nI've had a lot of calls today.\tJ'ai reçu un grand nombre d'appels aujourd'hui.\nI've had enough of your lying.\tJ'ai assez soupé de vos mensonges.\nI've had enough of your lying.\tJ'ai assez soupé de tes mensonges.\nI've heard that story already.\tJ'ai déjà entendu cette histoire.\nI've never been abroad before.\tJe n'ai jamais été à l'étranger auparavant.\nI've never heard of that city.\tJe n'ai jamais entendu parler de cette ville.\nI've never seen you like this.\tJe ne t'ai jamais vu ainsi.\nI've never seen you like this.\tJe ne t'ai jamais vue ainsi.\nI've never seen you like this.\tJe ne vous ai jamais vu ainsi.\nI've never seen you like this.\tJe ne vous ai jamais vue ainsi.\nI've never seen you like this.\tJe ne vous ai jamais vus ainsi.\nI've never seen you like this.\tJe ne vous ai jamais vues ainsi.\nI've never stopped loving you.\tJe n'ai jamais cessé de vous aimer.\nI've never stopped loving you.\tJe n'ai jamais cessé de t'aimer.\nI've no idea what's happening.\tJe n'ai aucune idée de ce qui se passe.\nI've seen it with my own eyes.\tJe l'ai vu de mes propres yeux.\nI've seen that picture before.\tJ'ai déjà vu cette image auparavant.\nI've seen this picture before.\tJ'ai vu cette photo auparavant.\nI've seen this picture before.\tJ'ai vu ce tableau auparavant.\nI've still got a lot to learn.\tJ'ai encore beaucoup à apprendre.\nI've studied French for years.\tJ'ai étudié le français pendant des années.\nI've studied French, remember?\tJ'ai étudié le français, tu te rappelles ?\nI've studied French, remember?\tJ'ai étudié le français, vous vous rappelez ?\nI've taken care of everything.\tJ'ai pris soin de tout.\nI've taken care of everything.\tJe me suis occupé de tout.\nI've taken care of everything.\tJe me suis occupée de tout.\nIf I forget, please remind me.\tSi j'oublie, merci de me le rappeler.\nIf I were you, I would buy it.\tSi j'étais à ta place, je l'achèterais.\nIf I were you, I would buy it.\tSi j'étais vous, je l'acquerrais.\nIf I were you, I would buy it.\tSi j'étais toi, je l'acquerrais.\nIf I'd only taken your advice!\tSi seulement j'avais pris ton conseil !\nIf I'd only taken your advice!\tSi seulement j'avais pris votre conseil !\nIf only I could speak English!\tSi seulement je savais parler anglais !\nIf only it would stop raining!\tSi seulement il s'arrêtait de pleuvoir !\nIf you could do it, would you?\tLe ferais-tu si tu le pouvais ?\nIf you hurry, you can make it.\tSi tu te dépêches, tu peux y arriver.\nIf you want to know, just ask.\tSi tu veux savoir, il suffit de demander.\nIf you want to know, just ask.\tSi vous voulez savoir, il suffit de demander.\nIf you want, you can phone me.\tSi tu veux, tu peux me téléphoner.\nIf you want, you can phone me.\tSi vous voulez, vous pouvez me téléphoner.\nIn my opinion, she is correct.\tSelon moi, elle a raison.\nIs Tom Jackson your real name?\tTom Jackson est-il ton vrai nom ?\nIs Tom Jackson your real name?\tTom Jackson est-il votre vrai nom ?\nIs Tom aware of what Mary did?\tTom est-il conscient de ce que Mary a fait ?\nIs eating healthy more costly?\tEst-ce que manger plus sainement coûte plus cher ?\nIs he aware of the difficulty?\tEst-il conscient des difficultés ?\nIs that all you've got to say?\tEst-ce là tout ce que vous avez à dire ?\nIs that all you've got to say?\tEst-ce là tout ce que tu as à dire ?\nIs that what you have in mind?\tEst-ce là ce que tu as en tête ?\nIs the anesthesiologist there?\tL'anesthésiste est-il là ?\nIs there a telephone anywhere?\tY a-t-il un téléphone quelque part ?\nIs there a woman in your life?\tY a-t-il une femme dans ta vie ?\nIs there a woman in your life?\tY a-t-il une nana dans ta vie ?\nIs there any adverse reaction?\tY a-t-il des réactions de la partie adverse ?\nIs there any reason not to go?\tY a-t-il une raison quelconque de ne pas s'y rendre ?\nIs there any reason not to go?\tY a-t-il une raison quelconque pour ne pas y aller ?\nIs there anything else to eat?\tY a-t-il quelque chose d'autre à manger?\nIs there life on other worlds?\tY a-t-il de la vie dans d'autres mondes ?\nIs there some sort of problem?\tY a-t-il un problème ?\nIs this about the other night?\tEst-ce à propos de l'autre soir ?\nIs this one of your creations?\tEst-ce là l'une de tes créations ?\nIs this one of your creations?\tEst-ce là l'une de vos créations ?\nIs this store open on Sundays?\tCe magasin est-il ouvert le dimanche ?\nIs this the right thing to do?\tEst-ce la bonne chose à faire ?\nIs your sister older than you?\tEst-ce que ta sœur est plus âgée que toi ?\nIsn't it the other way around?\tN'est-ce pas l'inverse ?\nIsn't that a little dishonest?\tN'est-ce pas un peu malhonnête ?\nIsn't that where we first met?\tN'est-ce pas là que nous nous sommes rencontrés la première fois ?\nIsn't that where we first met?\tN'est-ce pas là que nous nous sommes rencontrées la première fois ?\nIt all depends on the weather.\tTout dépend du temps.\nIt already has taken me hours.\tCela m'a déjà pris des heures.\nIt doesn't seem fair, does it?\tÇa ne semble pas juste, si ?\nIt doesn't seem fair, does it?\tÇa ne semble pas équitable, si ?\nIt happened to someone I know.\tC'est arrivé à quelqu'un que je connais.\nIt has never been done before.\tÇa n'a jamais été fait auparavant.\nIt has rained since yesterday.\tIl a plu depuis hier.\nIt is clear that he is guilty.\tIl est clair qu'il est coupable.\nIt is clear what must be done.\tCe qui doit être fait est clair.\nIt is fun to speak in English.\tParler anglais est amusant.\nIt is going to rain all night.\tIl va pleuvoir toute la nuit.\nIt is hardly worth discussing.\tCela vaut à peine d'être discuté.\nIt is man's destiny to suffer.\tC'est le lot des hommes que de souffrir.\nIt is man's destiny to suffer.\tLa souffrance est la destinée des hommes.\nIt is necessary for you to go.\tIl faut que tu y ailles.\nIt is never too late to learn.\tPersonne n'est trop vieux pour apprendre.\nIt is never too late to learn.\tOn n'est jamais trop vieux pour apprendre.\nIt is never too late to learn.\tOn est jamais trop vieux pour apprendre.\nIt is never too late to learn.\tTu n'es pas trop vieux pour apprendre.\nIt is no use arguing with him.\tÇa ne sert à rien d'argumenter avec lui.\nIt is no use asking him again.\tÇa ne sert à rien de lui redemander.\nIt is no use talking with him.\tIl est inutile de lui parler.\nIt is not as good as it looks.\tCe n'est pas aussi bon que ça en a l'air.\nIt is raining worse than ever.\tIl pleut davantage que jamais.\nIt is rude to point at others.\tIl est impoli de montrer les autres du doigt.\nIt is ten o'clock by my watch.\tIl est dix heures à ma montre.\nIt is time for her to go home.\tIl est temps pour elle de rentrer chez elle.\nIt is too dark for me to read.\tIl fait trop sombre pour que je lise.\nIt is twenty minutes past ten.\tIl est dix heures vingt.\nIt is wrong to cheat at cards.\tC'est mal de tricher aux jeux de cartes.\nIt just doesn't seem possible.\tÇa ne semble simplement pas possible.\nIt looks like we have company.\tIl semble que nous ayons de la compagnie.\nIt rained for hours and hours.\tIl plut des heures durant.\nIt rained for hours and hours.\tIl a plu pendant des heures.\nIt reminds me of my childhood.\tÇa me rappelle mon enfance.\nIt seems to run in the family.\tIl semble que ça ait cours dans la famille.\nIt was a quiet winter evening.\tC’était un calme soir d’hiver.\nIt was blowing hard all night.\tCela soufflait fort, toute la nuit.\nIt was cheaper than I thought.\tCe fut meilleur marché que je le pensais.\nIt was cheaper than I thought.\tC'était meilleur marché que je le pensais.\nIt was cold, so we lit a fire.\tIl faisait froid, aussi nous allumâmes un feu.\nIt was cold, so we lit a fire.\tIl faisait froid, aussi nous avons allumé un feu.\nIt was everything I hoped for.\tC'était tout ce que j'espérais.\nIt was his job to gather eggs.\tC'était sa tâche de collecter les œufs.\nIt was kind of you to help me.\tC'était gentil à vous de m'aider.\nIt was kind of you to help me.\tC'était gentil à toi de m'aider.\nIt was nice of you to show up.\tC'était gentil de ta part de venir.\nIt was not a complete victory.\tCe n'était pas une victoire complète.\nIt was raining around Chicago.\tIl pleuvait aux alentours de Chicago.\nIt was really cold on Tuesday.\tIl faisait vraiment froid mardi.\nIt was snowing when I woke up.\tIl neigeait quand je me suis réveillée.\nIt was very cold this morning.\tIl faisait très froid ce matin.\nIt was yesterday that he died.\tC'est hier qu'il est mort.\nIt will be winter before long.\tSous peu, ce sera l'hiver.\nIt will get warmer and warmer.\tIl fera de plus en plus chaud.\nIt'll be hard to persuade Tom.\tCe sera difficile de persuader Tom.\nIt'll be hard to persuade Tom.\tCe sera dur de persuader Tom.\nIt'll just take three seconds.\t3 secondes suffiront.\nIt'll only take three minutes.\tÇa ne prendra que trois minutes.\nIt's Tom's birthday next week.\tC'est l'anniversaire de Tom, la semaine prochaine.\nIt's a cinch to learn to swim.\tApprendre à nager est une promenade.\nIt's a luxury we can't afford.\tC'est un luxe que nous ne pouvons pas nous permettre.\nIt's a matter of when, not if.\tLa question est quand, pas si.\nIt's a pleasant day, isn't it?\tQuelle belle journée, n'est-ce pas ?\nIt's a privilege, not a right.\tC'est un privilège, non un droit.\nIt's a real honor to meet you.\tC'est un véritable honneur que de vous rencontrer.\nIt's a remarkable opportunity.\tC'est une occasion remarquable.\nIt's a time-honored tradition.\tC'est une tradition éprouvée.\nIt's about the size of an egg.\tC'est à peu près de la taille d'un œuf.\nIt's almost time to go to bed.\tIl est presque l'heure d'aller au lit.\nIt's dark, so watch your step.\tC'est sombre, alors regardez où vous mettez les pieds.\nIt's difficult to learn Greek.\tLe grec est difficile à apprendre.\nIt's even worse than it looks.\tC'est même pire que ça en a l'air.\nIt's four o'clock by my watch.\tÀ ma montre, il est quatre heures.\nIt's fun to ride a motorcycle.\tC'est amusant de conduire une moto.\nIt's going to be morning soon.\tÇa va bientôt être le matin.\nIt's gradually getting colder.\tIl fait de plus en plus froid.\nIt's happening all over again.\tTout recommence.\nIt's hard to throw things out.\tIl est difficile de jeter des choses.\nIt's late, so turn off the TV.\tIl est tard alors éteins la télé.\nIt's late, so turn off the TV.\tIl est tard alors éteignez la télé.\nIt's never too late to say no.\tIl n'est jamais trop tard pour dire non.\nIt's not actually raining yet.\tIl ne pleut pas vraiment encore.\nIt's not as easy as you think.\tCe n'est pas aussi facile que tu penses.\nIt's not as easy as you think.\tCe n'est pas aussi facile que tu le penses.\nIt's not as easy as you think.\tCe n'est pas aussi facile que vous pensez.\nIt's not as easy as you think.\tCe n'est pas aussi facile que vous le pensez.\nIt's not just about the money.\tCe n'est pas juste pour l'argent.\nIt's not just about the money.\tIl ne s'agit pas juste d'argent.\nIt's not really that relaxing.\tCe n'est pas vraiment relaxant à ce point.\nIt's not the end of the world.\tCe n'est pas la fin du monde.\nIt's not what I wanted to say.\tCe n'est pas ce que je voulais dire.\nIt's nothing to be ashamed of.\tIl n'y a pas de quoi en avoir honte.\nIt's nothing to be ashamed of.\tIl n'y a pas lieu d'en avoir honte.\nIt's nothing to be ashamed of.\tIl n'y a là rien dont on doive avoir honte.\nIt's only worth three dollars.\tCelà vaut seulement trois dollars.\nIt's perfectly understandable.\tC'est parfaitement compréhensible.\nIt's the largest in the world.\tC'est le plus grand au monde.\nIt's the largest in the world.\tC'est le plus grand du monde.\nIt's too dark to play outside.\tIl fait trop sombre pour jouer dehors.\nIt's too sunny to stay inside.\tIl y a trop de soleil pour rester à l'intérieur.\nI’ve made a few corrections.\tJ'ai fait quelques corrections.\nJapan is to the east of China.\tLe Japon se situe à l'Est de la Chine.\nJapanese is our mother tongue.\tLe japonais est notre langue maternelle.\nJust call me when you're done.\tAppelez-moi quand vous aurez terminé.\nJust do what you've got to do.\tFais juste ce que tu dois faire.\nJust do what you've got to do.\tFais juste ce que tu as à faire.\nJust put yourself in my shoes.\tMets-toi à ma place pour voir.\nJust then, the telephone rang.\tSoudain le téléphone sonna.\nKabuki is an old Japanese art.\tLe Kabuki est un art japonais ancien.\nKeep to the left when driving.\tGardez votre gauche quand vous conduisez.\nLearning English is hard work.\tApprendre l'anglais est pénible.\nLeave it to the professionals.\tLaisse-le aux professionnels.\nLeave it to the professionals.\tLaissez cela aux professionnels.\nLeave that job to the experts!\tLaisse ce travail aux experts.\nLend me as much money you can.\tPrête-moi autant d'argent que tu peux.\nLend me as much money you can.\tPrêtez-moi autant d'argent que vous pouvez.\nLet me ask you something, Tom.\tLaisse-moi te demander quelque chose, Tom.\nLet me ask you something, Tom.\tLaissez-moi vous demander quelque chose, Tom.\nLet me kiss you one last time.\tLaisse-moi t'embrasser une dernière fois !\nLet me kiss you one last time.\tLaissez-moi vous embrasser une dernière fois !\nLet me know what you find out.\tFais-moi savoir ce que tu découvriras.\nLet me know what you find out.\tFaites-moi savoir ce que vous découvrirez.\nLet me know what you're up to.\tFais-moi connaître tes intentions.\nLet me know what you're up to.\tFaites-moi connaître vos intentions.\nLet me make plain what I mean.\tLaisse-moi clarifier ce que je veux dire.\nLet me make plain what I mean.\tLaissez-moi clarifier ce que je veux dire.\nLet me see what it looks like.\tLaisse-moi voir de quoi ça a l'air.\nLet me see what it looks like.\tFais-moi voir de quoi ça a l'air.\nLet me tell you all something.\tLaissez-moi vous dire quelque chose à tous !\nLet me tell you all something.\tLaissez-moi vous dire quelque chose à toutes !\nLet me write down the address.\tJe vais noter l'adresse.\nLet's all remember to be nice.\tSouvenons-nous tous d'être gentils.\nLet's ask Tom why he was late.\tDemandons à Tom pourquoi il était en retard.\nLet's be best friends forever.\tSoyons les meilleurs amis pour toujours.\nLet's be best friends forever.\tSoyons les meilleures amies pour toujours.\nLet's begin with this problem.\tCommençons par ce problème.\nLet's clear this up right now.\tMettons ça au clair tout de suite.\nLet's discuss the matter here.\tDiscutons-en ici !\nLet's divide the work equally.\tDivisons le travail équitablement.\nLet's do our best again today.\tFaisons de nouveau de notre mieux aujourd'hui.\nLet's enjoy the long vacation.\tProfitons des grandes vacances !\nLet's get on with the meeting.\tPoursuivons la réunion !\nLet's go back the way we came.\tRevenons sur nos pas.\nLet's go for a ride in my car.\tAllons faire un tour avec ma voiture.\nLet's have a ten-minute break.\tPrenons dix minutes de pause.\nLet's head for that tall tree.\tDirigeons-nous vers ce grand arbre.\nLet's hide behind the curtain.\tCachons-nous derrière le rideau.\nLet's hope that's enough time.\tEspérons que le temps soit suffisant.\nLet's listen to this cassette.\tÉcoutons cette cassette.\nLet's look at the big picture.\tRegardons la situation dans son ensemble.\nLet's not jump to conclusions.\tNe faisons pas de conclusions hâtives !\nLet's not wait for the others.\tN'attendons pas les autres.\nLet's paint the ceiling first.\tPeignons le plafond en premier !\nLet's play chess another time.\tJouons aux échecs encore une fois.\nLet's quit talking about this.\tArrêtons de parler de ça.\nLet's see what you have there.\tVoyons voir ce que vous avez là.\nLet's see what you have there.\tVoyons voir ce que tu as là.\nLet's synchronize our watches.\tSynchronisons nos montres.\nLet's take a break for coffee.\tFaisons une pause café.\nLet's take a rest for a while.\tReposons-nous un peu.\nLet's take a trip to New York.\tAllons à New York !\nLet's take a trip to New York.\tPartons en voyage à New York !\nLet's talk about solar energy.\tParlons d'énergie solaire.\nLet's talk this thing out, OK?\tDiscutons-en ! D'accord ?\nLet's try to solve the riddle.\tEssayons de résoudre l'énigme.\nLiars must have a good memory.\tLes menteurs doivent avoir bonne mémoire.\nLiars must have a good memory.\tLes menteurs doivent posséder une bonne mémoire.\nLife is full of ups and downs.\tLa vie est pleine de hauts et de bas.\nLife is not all fun and games.\tLa vie n'est pas faite que de plaisir et d'amusements.\nLincoln was a great statesman.\tLincoln fut un grand homme d'État.\nLock the door when you go out.\tFermez la porte à clé quand vous sortez.\nLong story short, I was fired.\tEn résumé, je me suis fait virer.\nLong story short, I was fired.\tEn résumé, j'ai été viré.\nLong story short, I was fired.\tEn résumé, j'ai été virée.\nLook at me when I talk to you!\tRegarde-moi quand je te parle !\nLook at me when I talk to you!\tRegardez-moi quand je vous parle !\nLook at that good-looking boy.\tRegarde ce beau garçon.\nLook at that koala over there.\tRegarde le koala là-bas.\nLook it up in your dictionary.\tCherche-le dans ton dictionnaire.\nLove makes the world go round.\tL'amour fait tourner le monde.\nLoving is the essence of life.\tL'amour est l'essence de la vie.\nMadeira is the name of a wine.\tMadère est le nom d'un vin.\nMan can't live without dreams.\tL'Homme ne peut vivre sans rêves.\nMany men want to be thin, too.\tDe nombreux hommes veulent également être minces.\nMany students bought the book.\tBeaucoup d'élèves ont acheté ce livre.\nMany trees are bare in winter.\tDe nombreux arbres sont dénudés en hiver.\nMary had a flower in her hair.\tMary avait une fleur dans les cheveux.\nMary has a flower in her hand.\tMarie a une fleur à la main.\nMary has beautiful brown eyes.\tMarie a de beaux yeux marron.\nMary is Tom's daughter-in-law.\tMary est la bru de Tom.\nMary is moderately attractive.\tMarie est relativement jolie.\nMary is respected by everyone.\tMarie est respectée de tous.\nMary is the girl of my dreams.\tMarie est la fille de mes rêves.\nMary treated her wounded knee.\tMarie soigna sa blessure au genou.\nMathematics is her weak point.\tLes mathématiques sont son point faible.\nMay I ask you a few questions?\tPuis-je vous poser quelques questions ?\nMay I be excused for a minute?\tPuis-je être excusé une minute ?\nMay I be excused for a minute?\tPuis-je être excusée une minute ?\nMay I bother you for a moment?\tJe peux te déranger un moment ?\nMay I bother you for a moment?\tPuis-je te déranger un moment ?\nMay I have your order, please?\tPuis-je prendre votre commande, s'il vous plaît ?\nMay I introduce myself to you?\tMe permettez-vous de me présenter ?\nMay I request a favour of you?\tPuis-je vous demander une faveur ?\nMay I take a rest for a while?\tPuis-je me reposer un peu ?\nMay all your dreams come true!\tQue tous tes rêves deviennent réalité !\nMaybe I went a little too far.\tJe suis peut-être allé un peu loin.\nMaybe I went a little too far.\tPeut-être suis-je allé un peu trop loin.\nMaybe I went a little too far.\tPeut-être suis-je allée un peu trop loin.\nMaybe Tom has had an accident.\tPeut-être que Tom a eu un accident.\nMaybe Tom has had an accident.\tTom a peut-être eu un accident.\nMaybe it was just a nightmare.\tPeut-être que c'était juste un cauchemar.\nMaybe it was just a nightmare.\tPeut-être était-ce juste un cauchemar.\nMaybe we should tell somebody.\tPeut-être devrions-nous en parler à quelqu'un.\nMaybe we should tell somebody.\tPeut-être qu'on devrait le dire à quelqu'un.\nMaybe you should go to Boston.\tTu devrais peut-être aller à Boston.\nMaybe you should go to Boston.\tPeut-être devriez-vous aller à Boston.\nMen and women need each other.\tLes hommes et les femmes ont besoin les uns des autres.\nMen can not exist without air.\tL'Homme ne pourrait vivre sans air.\nMoney is the root of all evil.\tL'argent est la racine de tous les maux.\nMost boys like computer games.\tLa plupart des garçons aiment les jeux sur ordinateurs.\nMost of his friends are girls.\tLa plupart de ses amis sont des filles.\nMost of the shops were closed.\tLa plupart des magasins étaient fermés.\nMurder is punishable by death.\tLe meurtre est passible de la peine capitale.\nMusic is a universal language.\tLa musique est une langue universelle.\nMy best friend is in Rome now.\tMon meilleur ami est à Rome en ce moment.\nMy best friend is in Rome now.\tMa meilleure amie est à Rome en ce moment.\nMy bike was stolen last night.\tOn m'a volé ma bicyclette hier soir.\nMy bike was stolen last night.\tMon vélo a été dérobé la nuit dernière.\nMy boss made me work overtime.\tMon chef m'a fait faire des heures supplémentaires.\nMy brother became an engineer.\tMon frère est devenu ingénieur.\nMy brother watches television.\tMon frère regarde la télévision.\nMy brother's going to kill me.\tMon frère va me tuer.\nMy business is slow right now.\tMes affaires tournent au ralenti en ce moment.\nMy children rarely go outside.\tMes enfants vont rarement dehors.\nMy children rarely go outside.\tMes enfants vont rarement à l'extérieur.\nMy credit cards are maxed out.\tJ'ai excédé le plafond de mes cartes de crédit.\nMy dad died before I was born.\tMon père est mort avant ma naissance.\nMy dad taught me how to do it.\tMon père m'a enseigné à le faire.\nMy daughter is barely fifteen.\tMa fille a à peine quinze ans.\nMy dream is to become a pilot.\tMon rêve est de devenir pilote.\nMy eyes get tired very easily.\tMes yeux se fatiguent très facilement.\nMy family is very proud of me.\tMa famille est très fière de moi.\nMy father bought me a bicycle.\tMon père m'a acheté un vélo.\nMy father bought me a bicycle.\tMon père m'a acheté une bicyclette.\nMy father bought me a bicycle.\tMon père m'acheta un vélo.\nMy father bought me a bicycle.\tMon père m'acheta une bicyclette.\nMy father cut wood with a saw.\tMon père a scié le bois.\nMy father does not like music.\tMon père n'aime pas la musique.\nMy father does not like music.\tMon père n'apprécie pas la musique.\nMy father doesn't like soccer.\tMon père n'aime pas le foot.\nMy father doesn't like soccer.\tLe football ne plaît pas à mon père.\nMy father finally compromised.\tMon père transigea finalement.\nMy father finally compromised.\tMon père a finalement transigé.\nMy father fixes broken chairs.\tMon père répare des chaises cassées.\nMy father had me wash the car.\tMon père m'a fait laver la voiture.\nMy father has gone to America.\tMon père est parti en Amérique.\nMy father is an archaeologist.\tMon père est archéologue.\nMy father is going to kill me.\tMon père va me tuer.\nMy father likes strong coffee.\tMon père aime le café fort.\nMy favourite game is football.\tMon jeu préféré est le football.\nMy friend lives in this house.\tMon ami habite dans cette maison.\nMy grade is above the average.\tMa note est au-dessus de la moyenne.\nMy grandfather is a carpenter.\tMon grand-père est menuisier.\nMy grandmother has become old.\tMa grand-mère est devenue vieille.\nMy hands and legs are swollen.\tMes mains et mes pieds sont enflés.\nMy hobby is collecting stamps.\tMon passe-temps est de collectionner les timbres.\nMy husband's going to kill me.\tMon mari va me tuer.\nMy mom taught me how to do it.\tMa mère m'a enseigné à le faire.\nMy mom told me that I was fat.\tMa mère m'a dit que j'étais gros.\nMy mom told me that I was fat.\tMa mère m'a dit que j'étais gras.\nMy mother is a very good cook.\tMa mère est très bonne cuisinière.\nMy mother is preparing dinner.\tMa mère est en train de préparer le dîner.\nMy mother is preparing dinner.\tMa mère est en train de préparer le déjeuner.\nMy mother is preparing supper.\tMa mère est en train de préparer le dîner.\nMy mother is preparing supper.\tMa mère est en train de préparer le souper.\nMy mother likes tea very much.\tMa mère adore le thé.\nMy mother never gets up early.\tMa mère ne se lève jamais tôt.\nMy mother took me to the park.\tMa mère m'emmena au parc.\nMy mother took my temperature.\tMa mère prit ma température.\nMy pen isn't as good as yours.\tMon stylo n'est pas aussi bon que le tien.\nMy sister is shorter than you.\tMa sœur est plus petite que toi.\nMy sister is very intelligent.\tMa sœur est très intelligente.\nMy sister lives near Yokohama.\tMa sœur habite près de Yokohama.\nMy sister resembles my mother.\tMa sœur ressemble à ma mère.\nMy uncle has a house in Italy.\tMon oncle a une maison en Italie.\nMy university has a dormitory.\tMon université comporte un dortoir.\nMy university has dormitories.\tMon université comporte des dortoirs.\nMy watch is five minutes slow.\tMa montre retarde de cinq minutes.\nMy watch keeps very good time.\tMa montre est à l'heure exacte.\nMy whole family is doing well.\tToute ma famille se porte bien.\nMy wisdom teeth are coming in.\tMes dents de sagesse poussent.\nMy wish has finally come true.\tMon souhait s'est enfin réalisé.\nNatural food will do you good.\tLa nourriture naturelle te fera du bien.\nNeither one of them disagrees.\tAucun d'eux ne le réfute.\nNeither one of them disagrees.\tAucune d'elles ne le réfute.\nNever forget to lock the door.\tN'oublie jamais de verrouiller la porte.\nNever forget to lock the door.\tN'oubliez jamais de verrouiller la porte.\nNo one can escape growing old.\tPersonne n'échappe au vieillissement.\nNo one could solve the puzzle.\tPersonne ne put résoudre l'énigme.\nNo one could solve the puzzle.\tPersonne ne put résoudre le casse-tête.\nNo one could solve the puzzle.\tPersonne ne pouvait résoudre l'énigme.\nNo one could solve the puzzle.\tPersonne ne pourrait résoudre l'énigme.\nNo one could solve the puzzle.\tPersonne ne pouvait résoudre le casse-tête.\nNo one is allowed to go there.\tPersonne n'est autorisé à y aller.\nNo one is allowed to go there.\tPersonne n'est autorisé à s'y rendre.\nNo one knew quite what to say.\tPersonne ne savait vraiment quoi dire.\nNo one seems to smile anymore.\tPersonne ne semble plus sourire.\nNo one stops to listen to him.\tPersonne ne s'arrête pour l'écouter.\nNo one uses that word anymore.\tPersonne n'emploie plus ce mot.\nNo one will give me any money.\tPersonne ne me donnera le moindre argent.\nNobody can solve this problem.\tNul ne peut résoudre ce problème.\nNobody has solved the problem.\tPersonne n'a résolu le problème.\nNobody in the world wants war.\tPersonne au monde ne veut la guerre.\nNobody likes being laughed at.\tPersonne n'aime qu'on se moque de lui.\nNobody wants to work with you.\tPersonne ne veut travailler avec vous.\nNobody wants to work with you.\tPersonne ne veut travailler avec toi.\nNobody's in the classroom now.\tPersonne n'est dans la salle de classe actuellement.\nNone of the windows were open.\tAucune des fenêtres n'était ouverte.\nNot all baby animals are cute.\tTous les bébés animaux ne sont pas mignons.\nNot everyone agrees with that.\tTout le monde n'est pas d'accord avec ça.\nNot everything is about money.\tTout n'est pas une question d'argent.\nNot many survive this disease.\tPeu survivent à cette maladie.\nNothing is impossible for God.\tRien, à Dieu, n'est impossible.\nNothing is impossible for God.\tÀ Dieu, rien n'est impossible.\nNothing is the matter with me.\tJe n'ai rien.\nNothing succeeds like success.\tRien n'a plus de succès que le succès.\nNow, what was your name again?\tVoyons, quel était votre nom, déjà ?\nOK, let's assume you're right.\tD'accord, supposons que tu aies raison.\nOK, let's assume you're right.\tD'accord, supposons que vous ayez raison.\nOne in ten people have myopia.\tUne personne sur dix est myope.\nOne is never too old to learn.\tPersonne n'est trop vieux pour apprendre.\nOne is never too old to learn.\tOn est jamais trop vieux pour apprendre.\nOne is never too old to learn.\tTu n'es pas trop vieux pour apprendre.\nOne of the windows was broken.\tL'une des fenêtres était cassée.\nOne of the windows was broken.\tL'une des vitres était brisée.\nOne of them is probably lying.\tL'un d'eux ment, probablement.\nOne of them is probably lying.\tL'une d'elles ment, probablement.\nOne wonders how it's possible.\tOn se demande comment c'est possible.\nOur army attacked the kingdom.\tNotre armée a attaqué le royaume.\nOur bus collided with a truck.\tNotre bus a percuté un camion.\nOur class consists of 40 boys.\tNotre classe se compose de quarante garçons.\nOur former home was in Sweden.\tNotre précédente maison était en Suède.\nOur inventory is very limited.\tNous avons un stock très limité.\nOur little girl is growing up.\tNotre petite fille grandit.\nOur school is fifty years old.\tNotre école a cinquante ans.\nOur teacher likes his new car.\tNotre professeur aime sa nouvelle voiture.\nOur team is five points ahead.\tNotre équipe a cinq points d'avance.\nOver 300 people were arrested.\tPlus de trois cents personnes ont été arrêtées.\nOver 300 people were arrested.\tPlus de trois cents personnes furent arrêtées.\nOverpopulation is the problem.\tLa surpopulation est le problème.\nPay attention to what he says.\tFaites attention à ce qu'il dit.\nPencils are sold by the dozen.\tLes crayons se vendent par douzaines.\nPeople can't live without air.\tL'Homme ne pourrait vivre sans air.\nPeople don't say that anymore.\tOn ne dit plus ça.\nPeople don't say that anymore.\tLes gens ne disent plus cela.\nPeople have to obey the rules.\tLes gens doivent obéir aux règles.\nPeople say that life is short.\tLes gens disent que la vie est courte.\nPeople should wash themselves.\tLes gens devraient se laver.\nPeople used to travel on foot.\tLes gens avaient l'habitude avant de voyager à pied.\nPerhaps it will snow tomorrow.\tPeut-être neigera-t-il demain.\nPlastic does not break easily.\tLe plastique c'est solide.\nPlease bring it back tomorrow.\tMerci de le ramener demain.\nPlease bring me a clean knife.\tVeuillez m'apporter un couteau propre.\nPlease bring me a clean knife.\tApportez-moi un couteau propre, voulez-vous ?\nPlease change the punctuation.\tVeuillez changer la ponctuation.\nPlease close the door quietly.\tVeuillez fermer la porte doucement.\nPlease close the door quietly.\tFerme doucement la porte, s'il te plaît.\nPlease come whenever you like.\tVenez quand vous voulez.\nPlease complete your homework.\tTerminez votre devoir s'il vous plaît.\nPlease don't make me eat that.\tNe me fais pas manger ça, s'il te plaît.\nPlease don't make me eat that.\tNe me faites pas manger cela, s'il vous plaît.\nPlease don't tell anyone else.\tNe le dis à personne d'autre, s'il te plaît.\nPlease don't tell anyone else.\tNe le dites à personne d'autre, s'il vous plaît.\nPlease don't tell anyone else.\tS'il te plaît, ne le dis à personne d'autre.\nPlease don't tell anyone else.\tS'il vous plaît, ne le dites à personne d'autre.\nPlease explain the rule to me.\tExplique-moi la règle, je te prie.\nPlease explain the rule to me.\tExpliquez-moi la règle, je vous prie.\nPlease feed the dog every day.\tMerci de nourrir le chien chaque jour.\nPlease give me another chance.\tDonne-moi une autre chance s'il te plaît.\nPlease give me another chance.\tJe vous en prie, donnez-moi encore une chance.\nPlease go on with your dinner.\tContinuez à manger votre dîner.\nPlease help me take this down.\tVeuillez m'aider à descendre ceci.\nPlease help me take this down.\tJe te prie de m'aider à descendre ceci.\nPlease hold the line a moment.\tVeuillez rester en ligne un moment, je vous prie.\nPlease hold the line a moment.\tReste en ligne un instant, je te prie.\nPlease keep it under your hat.\tGarde-le pour toi, je te prie.\nPlease keep it under your hat.\tVeuillez le garder pour vous.\nPlease put your cigarette out.\tÉteignez votre cigarette s'il vous plaît.\nPlease read between the lines.\tVeuillez lire entre les lignes.\nPlease refer to paragraph ten.\tVeuillez vous reporter au paragraphe dix.\nPlease say hello to your wife.\tDis bonjour à ta femme, s'il te plaît.\nPlease show me another camera.\tVeuillez me montrer un autre appareil photo.\nPlease sit down on this chair.\tAssieds-toi sur cette chaise, s'il te plaît.\nPlease stop singing that song.\tArrête de chanter cette chanson, je te prie !\nPlease stop singing that song.\tArrêtez de chanter cette chanson, je vous prie !\nPlease tell me you're kidding.\tDis-moi, je te prie, que tu es en train de plaisanter !\nPlease tell me you're kidding.\tDites-moi, je vous prie, que vous êtes en train de plaisanter !\nPlease tell me you're kidding.\tDis-moi, s'il te plaît, que tu es en train de blaguer !\nPlease turn on the television.\tAllume la télévision s'il te plaît.\nPlease turn the television on.\tAllume la télévision s'il te plaît.\nPlease understand my position.\tVeuillez comprendre ma position.\nPlease understand my position.\tJe te prie de comprendre ma position.\nPlease wait outside the house.\tVeuillez attendre à l'extérieur de la maison, je vous prie !\nPlease wait outside the house.\tAttends à l'extérieur de la maison, je te prie !\nPlease wait until I come back.\tS'il vous plaît, attendez jusqu'à mon retour.\nPrices rose higher and higher.\tLes prix grimpèrent de plus en plus haut.\nPrices will continue to go up.\tLe prix va continuer d'augmenter.\nPromise me you won't tell Mom.\tPromets-moi que tu ne le diras pas à maman !\nPromise me you won't tell Mom.\tPromets-moi de ne pas le dire à maman !\nPromise me you won't tell Mom.\tPromettez-moi que vous ne le direz pas à maman !\nPromise me you won't tell Mom.\tPromettez-moi de ne pas le dire à maman !\nPut the desk against the wall.\tMettez le bureau contre le mur.\nReflect on what you have done.\tRéfléchis à ce que tu as fait.\nRemember to answer his letter.\tPense à répondre à cette lettre.\nRemind him to come home early.\tRappelle-lui de rentrer tôt à la maison.\nReservations are not required.\tLes réservations ne sont pas nécessaires.\nRun and hide in the mountains.\tCours et cache-toi dans les montagnes.\nRunning away isn't the answer.\tS'enfuir n'est pas la solution.\nSalt is necessary for cooking.\tLe sel est nécessaire à la cuisine.\nSchool begins at eight-thirty.\tL'école commence à huit heures et demie.\nSchool is not a waste of time.\tL'école n'est pas une perte de temps.\nSelling newspapers isn't easy.\tVendre des journaux n'est pas facile.\nShe admits knowing the secret.\tElle admet connaître le secret.\nShe advised him to save money.\tElle lui a conseillé d'épargner de l'argent.\nShe advised him where to stay.\tElle lui conseilla où séjourner.\nShe always keeps her promises.\tElle tient toujours ses promesses.\nShe appears to have been rich.\tElle semble avoir été riche.\nShe asked him if he was happy.\tElle lui demanda s'il était heureux.\nShe asked him if he was happy.\tElle lui a demandé s'il était heureux.\nShe beckoned me into the room.\tElle me fit signe de venir dans la pièce.\nShe brushed her husband's hat.\tElle a brossé le chapeau de son mari.\nShe called out to us for help.\tElle nous appela pour l'aider.\nShe can count from one to ten.\tElle sait compter de un à dix.\nShe can hardly speak Japanese.\tElle parle à peine japonais.\nShe can speak French fluently.\tElle sait couramment parler le français.\nShe can speak three languages.\tElle sait parler trois langues.\nShe cared for her sick father.\tElle s'occupait de son père malade.\nShe cooked the dinner herself.\tElle a elle-même cuisiné le déjeuner.\nShe couldn't keep from crying.\tElle ne pouvait s'empêcher de pleurer.\nShe crouched down by the gate.\tElle s'accroupit près du portail.\nShe crouched down by the gate.\tElle s'est accroupie près du portail.\nShe cut her hand with a knife.\tElle s'est coupé la main avec un couteau.\nShe decided to resign her job.\tElle a décidé de démissionner de son poste.\nShe described him as handsome.\tElle l'a décrit comme étant beau.\nShe didn't go there yesterday.\tElle n'y est pas allée hier.\nShe didn't pay back the money.\tElle n'a pas rendu l'argent.\nShe didn't pay back the money.\tElle ne rendit pas l'argent.\nShe died before coming of age.\tElle est morte avant d'avoir atteint sa majorité.\nShe does nothing but complain.\tElle ne fait rien d'autre que se plaindre.\nShe doesn't get outdoors much.\tElle ne sort pas beaucoup.\nShe doesn't have any brothers.\tElle n'a aucun frère.\nShe doesn't have many friends.\tElle a peu d'amis.\nShe endured to the bitter end.\tElle a encaissé jusqu'au bout.\nShe finally reached the hotel.\tElle est enfin parvenue à l'hôtel.\nShe forced him to eat spinach.\tElle l'a forcé à manger des épinards.\nShe forced him to eat spinach.\tElle le força à manger des épinards.\nShe found pleasure in reading.\tElle trouvait du plaisir à lire.\nShe found the key to my heart.\tElle a trouvé la clé de mon cœur.\nShe gave him a piece of paper.\tElle lui a donné un morceau de papier.\nShe gave him a piece of paper.\tElle lui donna un morceau de papier.\nShe gave him all of her money.\tElle lui donna tout son argent.\nShe gave in to the temptation.\tElle a cédé à la tentation.\nShe gave me a meaningful look.\tElle m'a lancé un regard significatif.\nShe gave me a meaningful look.\tElle m'a lancé un regard plein de signification.\nShe gave me a meaningful look.\tElle me lança un regard plein de signification.\nShe gave me a wonderful smile.\tElle me lança un merveilleux sourire.\nShe has a daughter named Mary.\tElle a une fille prénommée Marie.\nShe has a daughter named Mary.\tElle a une fille du nom de Marie.\nShe has a lot of friends here.\tElle dispose ici de nombreux amis.\nShe has a new man in her life.\tElle a un nouvel homme dans sa vie.\nShe has a son everybody loves.\tElle a un fils que tout le monde aime.\nShe has a thing for older men.\tElle est attirée par les hommes plus âgés.\nShe has absolutely no enemies.\tElle n'a absolument aucun ennemi.\nShe has always lived in Otaru.\tElle a toujours vécu à Otaru.\nShe has beautiful handwriting.\tElle a une belle écriture.\nShe has been blind from birth.\tElle est aveugle de naissance.\nShe has never danced with him.\tElle n'a jamais dansé avec lui.\nShe has no children, does she?\tElle n'a pas d'enfants, si ?\nShe hasn't heard the news yet.\tElle n'a pas encore entendu la nouvelle.\nShe held her baby in her arms.\tElle tenait son bébé dans les bras.\nShe hired him as a programmer.\tElle l'embaucha comme programmeur.\nShe hired him as a programmer.\tElle l'a embauché comme programmeur.\nShe introduced the lady to me.\tElle me présenta la dame.\nShe is a good English speaker.\tElle parle bien anglais.\nShe is able to sing very well.\tElle sait très bien chanter.\nShe is afraid of barking dogs.\tElle a peur des chiens qui aboient.\nShe is as beautiful as a rose.\tElle est aussi belle qu'une rose.\nShe is devoted to her husband.\tElle est totalement dévouée à son mari.\nShe is doing her homework now.\tElle est actuellement en train de faire ses devoirs.\nShe is fond of playing tennis.\tElle adore jouer au tennis.\nShe is giving a party tonight.\tElle donne une fête, ce soir.\nShe is good at playing tennis.\tElle est douée pour jouer au tennis.\nShe is married to a foreigner.\tElle est mariée à un étranger.\nShe is married to an American.\tElle est mariée à un Américain.\nShe is no better than a thief.\tElle ne vaut pas mieux qu'une voleuse.\nShe is not afraid of anything.\tElle n'a peur de rien.\nShe is paralyzed in both legs.\tElle est paralysée des deux jambes.\nShe is pleased with the dress.\tElle est satisfaite par la robe.\nShe is poor, but she is happy.\tElle est pauvre, mais elle est heureuse.\nShe is progressing in Chinese.\tElle fait des progrès en chinois.\nShe is taller than her sister.\tElle est plus grande que sa sœur.\nShe is well-liked by everyone.\tElle est appréciée de tout le monde.\nShe is working on the problem.\tElle travaille sur le problème.\nShe is, indeed, a lovely girl.\tC'est vraiment une fille adorable.\nShe isn't good enough for him.\tElle n'est pas assez bonne pour lui.\nShe kept smiling all the time.\tElle continue de sourire tout le temps.\nShe laid herself on the grass.\tElle s'allongea sur l'herbe.\nShe laughed so hard she cried.\tElle a tellement ri qu'elle en a pleuré.\nShe laughed to cover her fear.\tElle a ri pour cacher sa peur.\nShe left home ten minutes ago.\tElle a quitté la maison il y a dix minutes.\nShe likes jazz, and I do, too.\tElle aime le jazz, et moi aussi.\nShe likes talking best of all.\tDiscuter est ce qu'elle préfère.\nShe looked at him with hatred.\tElle l'a regardé avec haine.\nShe looked at me in amusement.\tElle m'a regardé avec amusement.\nShe lost interest in her work.\tElle perdit intérêt à son travail.\nShe married him for his money.\tElle l'a épousé pour son argent.\nShe married him for his money.\tElle l'a épousé pour son fric.\nShe may have missed the train.\tElle a peut-être raté le train.\nShe may not like his attitude.\tIl se peut qu'elle n'apprécie pas son attitude.\nShe met the man of her dreams.\tElle a rencontré l'homme de ses rêves.\nShe met the man of her dreams.\tElle rencontra l'homme de ses rêves.\nShe mistook me for my brother.\tElle m'a pris pour mon frère.\nShe mistook my brother for me.\tElle a confondu mon frère avec moi.\nShe mistook my brother for me.\tElle m'a confondu avec mon frère.\nShe must care for the old man.\tElle doit s'occuper du vieil homme.\nShe nursed him back to health.\tElle le soigna jusqu'à ce qu'il recouvre la santé.\nShe nursed him back to health.\tElle l'a soigné jusqu'à ce qu'il recouvre la santé.\nShe opened the letter quickly.\tElle a ouvert la lettre rapidement.\nShe opened the letter quickly.\tElle ouvrit la lettre en hâte.\nShe opened the letter quickly.\tElle a ouvert la lettre en hâte.\nShe patted me on the shoulder.\tElle me frappa sur l'épaule.\nShe plays tennis after school.\tElle joue au tennis après l'école.\nShe plays the piano every day.\tElle joue du piano tous les jours.\nShe plays the piano very well.\tElle joue très bien du piano.\nShe pointed her finger at him.\tElle pointa le doigt sur lui.\nShe pretended to be a student.\tElle se fit passer pour une étudiante.\nShe pulled him out of the mud.\tElle l'extirpa de la boue.\nShe pulled him out of the mud.\tElle l'a extirpé de la boue.\nShe pulled him out of the mud.\tElle l'extirpa de la fange.\nShe pulled him out of the mud.\tElle l'a extirpé de la fange.\nShe pushed him out the window.\tElle le poussa par la fenêtre.\nShe pushed him out the window.\tElle l'a poussé par la fenêtre.\nShe puts aside a lot of money.\tElle met de côté beaucoup d'argent.\nShe quickly opened the letter.\tElle ouvrit la lettre en hâte.\nShe quickly opened the letter.\tElle a ouvert la lettre en hâte.\nShe refused to take the money.\tElle a refusé de prendre l'argent.\nShe reminds him of his mother.\tElle lui rappelle sa mère.\nShe revealed her secret to us.\tElle nous a révélé son secret.\nShe runs fastest in our class.\tC'est elle qui court le plus vite dans notre classe.\nShe saw him eating a sandwich.\tElle l'a vu manger un sandwich.\nShe says I need a fresh start.\tElle dit que j'ai besoin d'un nouveau départ.\nShe says she is seeing things.\tElle dit qu'elle voit des choses.\nShe shouted that she was safe.\tElle a crié qu'elle était en sécurité.\nShe showed us a beautiful hat.\tElle nous a montré un joli chapeau.\nShe stared at him with hatred.\tElle le dévisagea avec haine.\nShe stayed there for a moment.\tElle resta là un moment.\nShe studies English every day.\tElle étudie l'anglais tous les jours.\nShe surprised him with a kiss.\tElle le surprit par un baiser.\nShe surprised him with a kiss.\tElle l'a surpris par un baiser.\nShe takes care of my children.\tElle prend soin de mes enfants.\nShe takes care of my children.\tElle s'occupe de mes enfants.\nShe talked to the chairperson.\tElle a parlé avec le président.\nShe talked to the chairperson.\tElle a parlé avec la présidente.\nShe thought for a few minutes.\tElle réfléchit pendant quelques minutes.\nShe told him that she was sad.\tElle lui dit qu'elle était triste.\nShe told him that she was sad.\tElle lui a dit qu'elle était triste.\nShe told me that she loved me.\tElle m'a dit qu'elle m'aimait.\nShe told me that she loved me.\tElle me dit qu'elle m'aimait.\nShe took a taxi to the museum.\tElle alla au musée en taxi.\nShe tore his letter to pieces.\tElle déchira en morceaux sa lettre.\nShe tore the letter to pieces.\tElle déchira en mille morceaux la lettre.\nShe traveled around the world.\tElle voyagea à travers le monde.\nShe traveled around the world.\tElle voyagea autour du monde.\nShe traveled around the world.\tElle voyagea de par le monde.\nShe tried to conceal the fact.\tElle a tenté d'escamoter le fait.\nShe urged him to study harder.\tElle l'enjoignit de travailler plus fort.\nShe urged him to study harder.\tElle l'a exhorté à travailler plus fort.\nShe urged him to study harder.\tElle l'exhorta à travailler plus fort.\nShe visits us every other day.\tElle nous rend visite tous les deux jours.\nShe volunteered to do the job.\tElle s'est portée volontaire pour faire le boulot.\nShe waits tables for a living.\tElle gagne sa vie comme serveuse.\nShe wanted him to stay longer.\tElle voulait qu'il reste plus longtemps.\nShe wanted him to stay longer.\tElle voulait qu'il restât plus longtemps.\nShe wants to attend the party.\tElle veut être présente à la fête.\nShe wants to live in the city.\tElle veut vivre en ville.\nShe wants to marry a rich man.\tElle veut épouser un homme riche.\nShe was absorbed in the video.\tElle était plongée dans la vidéo.\nShe was always telephoning me.\tElle me téléphonait tout le temps.\nShe was appointed chairperson.\tElle fut nommée présidente.\nShe was appointed chairperson.\tElle a été nommée présidente.\nShe was beautiful in her time.\tElle était belle à son époque.\nShe was engrossed in her work.\tElle était absorbée par son travail.\nShe was in America last month.\tElle était en Amérique le mois dernier.\nShe was in a hurry to go home.\tElle était pressée de rentrer chez elle.\nShe was merely stating a fact.\tElle ne faisait qu'énoncer un fait.\nShe was not seriously injured.\tElle n'était pas sérieusement blessée.\nShe was on the verge of tears.\tElle était au bord des larmes.\nShe was pleased with the gift.\tElle était contente du cadeau.\nShe was sick in bed yesterday.\tElle était clouée au lit hier.\nShe was sick in bed yesterday.\tElle était clouée au lit hier du fait de sa maladie.\nShe was surprised at the news.\tElle a été surprise par les nouvelles.\nShe was wearing a strange hat.\tElle portait un chapeau étrange.\nShe was wearing an ugly dress.\tElle portait une robe laide.\nShe went out to buy some food.\tElle est sortie acheter de la nourriture.\nShe went out to buy some food.\tElle sortit acheter de la nourriture.\nShe went to Mexico by herself.\tElle est allée seule au Mexique.\nShe went to the hairdresser's.\tElle est allée chez le coiffeur.\nShe will be here this evening.\tElle sera là ce soir.\nShe will make him a good wife.\tPour lui, je pense qu'elle fera une bonne épouse.\nShe would not change her mind.\tElle ne voulait pas changer d'opinion.\nShe writes to me once a month.\tElle m'écrit une fois par mois.\nShe writes with her left hand.\tElle écrit de la main gauche.\nShe wrote 5 novels in 5 years.\tElle a écrit 5 romans en 5 ans.\nShe wrote 5 novels in 5 years.\tElle écrivit 5 romans en 5 ans.\nShe's a girl, but she's brave.\tC'est une fille, mais elle est brave.\nShe's always busy on weekdays.\tElle est toujours occupée en semaine.\nShe's always busy on weekdays.\tElle est toujours occupée les jours de semaine.\nShe's as pretty as her sister.\tElle est aussi jolie que sa sœur.\nShe's by far the tallest girl.\tElle est de loin la plus grande fille.\nShe's fond of taking pictures.\tElle aime prendre des photos.\nShe's getting breakfast ready.\tElle est en train de préparer le petit-déjeuner.\nShe's just putting up a front.\tElle fait juste semblant.\nShe's neither rich nor famous.\tElle n'est ni riche, ni connue.\nShe's painting her room white.\tElle peint sa chambre en blanc.\nShe's really smart, isn't she?\tElle est vraiment intelligente, n'est-ce pas ?\nShe's six years older than me.\tElle est six ans plus âgée que moi.\nShe's waiting for you at home.\tElle t'attend chez elle.\nShe's waiting for you at home.\tElle t'attend chez nous.\nShe's waiting for you at home.\tElle t'attend à la maison.\nShe's waiting for you at home.\tElle vous attend chez elle.\nShe's waiting for you at home.\tElle vous attend chez nous.\nShe's waiting for you at home.\tElle vous attend à la maison.\nShow me what's in your pocket.\tFais-moi voir ce qu'il y a dans ta poche.\nShow me your passport, please.\tMontrez-moi votre passeport, s'il vous plaît.\nShow me your passport, please.\tMerci de me montrer votre passeport.\nShow me your passport, please.\tVeuillez me montrer votre passeport.\nShow me your passport, please.\tPasseport, s'il vous plaît.\nShow me your passport, please.\tVotre passeport, je vous prie !\nSince it rained, I did not go.\tComme il avait plu, je ne suis pas parti.\nSingapore has one big problem.\tSingapour a un grand problème.\nSit down and rest for a while.\tAssieds-toi et repose-toi pendant un moment.\nSit down to put your boots on.\tAssieds-toi pour mettre tes bottes.\nSmoking is a disgusting habit.\tFumer est une habitude dégoûtante.\nSmoking is not permitted here.\tFumer n'est pas autorisé ici.\nSo what are you talking about?\tAlors de quoi parlez-vous ?\nSo what are you talking about?\tAlors de quoi parles-tu ?\nSo what were we talking about?\tAlors, de quoi étions-nous en train de parler ?\nSome kinds of birds can't fly.\tCertaines espèces d'oiseaux ne peuvent pas voler.\nSome of the crew were drowned.\tUne partie de l'équipage s'est noyée.\nSome people are still worried.\tQuelques personnes sont toujours inquiètes.\nSome people believe in ghosts.\tIl y a des gens qui croient aux fantômes.\nSome people have all the luck.\tCertaines personnes ont toutes les chances.\nSome words are hard to define.\tCertains mots sont durs à définir.\nSomebody caught me by the arm.\tQuelqu'un me saisit par le bras.\nSomebody is playing the piano.\tQuelqu'un joue du piano.\nSomething went terribly wrong.\tQuelque chose s'est très mal passé.\nSounds like you're having fun.\tOn entend que vous vous amusez bien.\nSpeaking English is difficult.\tParler l'anglais est difficile.\nSport is good for your health.\tLe sport est bon pour votre santé.\nSpring fever is not a disease.\tLa montée de sève n'est pas une maladie.\nStay and have a drink with us.\tRestez et prenez un verre avec nous !\nStay and have a drink with us.\tReste et prends un verre avec nous !\nStop talking and listen to me.\tArrête de parler et écoute-moi.\nSummer holiday begins in July.\tLes grandes vacances commencent en Juillet.\nSummers are very hot in Kyoto.\tLes étés sont très chauds à Kyoto.\nSurely he'll phone me tonight.\tIl me téléphonera certainement ce soir.\nTake a little nap on the sofa.\tFais un roupillon sur le canapé !\nTake a little nap on the sofa.\tFaites un roupillon sur le canapé !\nTake as much time as you want.\tPrends tout le temps que tu veux.\nTake as much time as you want.\tPrends autant de temps que tu veux.\nTake as much time as you want.\tPrenez autant de temps que vous voulez.\nTake care and have a nice day.\tPrends soin de toi et passe une bonne journée !\nTake care and have a nice day.\tPrenez soin de vous et passez une bonne journée !\nTake care not to catch a cold.\tFais attention de ne pas attraper froid.\nTake care not to catch a cold.\tFaites attention à ne pas attraper froid.\nTake care not to catch a cold.\tPrends garde de ne pas attraper froid !\nTake care not to catch a cold.\tPrends garde de ne pas prendre un rhume !\nTake care not to catch a cold.\tPrenez garde de ne pas attraper froid !\nTake care not to catch a cold.\tPrenez garde de ne pas prendre un rhume !\nTake care not to catch a cold.\tPrenez garde de ne pas contracter un rhume !\nTake care not to catch a cold.\tPrends garde de ne pas contracter un rhume !\nTake care of your grandfather.\tPrends soin de ton grand-père !\nTake care of your grandfather.\tPrenez soin de votre grand-père !\nTanning can cause skin cancer.\tBronzer peut causer le cancer de la peau.\nTea was introduced from China.\tLe thé a été introduit de Chine.\nTea with lemon for me, please.\tPour moi du thé au citron, je vous prie.\nTell Tom that I need his help.\tDis à Tom que j'ai besoin de son aide.\nTell me about your daily life.\tParle-moi de ta vie quotidienne.\nTell me about your daily life.\tParlez-moi de votre vie quotidienne.\nTell me what that man is like.\tDites-moi à quoi ressemble cet homme.\nTell me what we're doing here.\tDis-moi ce que nous faisons ici !\nTell me what we're doing here.\tDites-moi ce que nous faisons ici !\nTell me when you will call me.\tDis-moi quand tu m'appelleras !\nTell me when you will call me.\tDites-moi quand vous m'appellerez !\nTell the truth no matter what.\tDis la vérité quoi qu'il en soit.\nThank you for listening to me.\tMerci de m'écouter.\nThank you for the information.\tMerci pour l'information.\nThank you for your assistance.\tMerci pour ton aide.\nThank you for your kind words.\tMerci pour vos aimables paroles.\nThank you for your kind words.\tMerci pour tes aimables paroles.\nThat book is full of mistakes.\tCe livre est truffé d'erreurs.\nThat boy speaks like an adult.\tCe garçon parle comme un adulte.\nThat bridge is very beautiful.\tCe pont est très beau.\nThat building must be on fire.\tCe bâtiment doit être en feu.\nThat does make me feel better.\tÇa me fait me sentir mieux.\nThat doesn't make sense to me.\tÇa n'a pour moi aucun sens.\nThat dress is perfect for you.\tCette robe est parfaite pour vous.\nThat experiment was a failure.\tCette expérience était un échec.\nThat happened over a year ago.\tC'est arrivé il y a plus d'un an.\nThat he loved her was certain.\tQu'il l'aimât était certain.\nThat house is built of bricks.\tCette maison est faite de briques.\nThat incident made him famous.\tL'incident l'a rendu célèbre.\nThat is not an orange, either.\tCela n'est pas non plus une orange.\nThat isn't the way I heard it.\tCe n'est pas ainsi que je l'ai entendu.\nThat job took a lot out of me.\tCe travail m'a beaucoup demandé.\nThat key doesn't fit the lock.\tCette clef ne rentre pas dans la serrure.\nThat leaves no room for doubt.\tCela ne laisse aucune place pour le doute.\nThat makes everything simpler.\tÇa rend tout plus simple.\nThat makes everything simpler.\tÇa simplifie tout.\nThat man has a bad reputation.\tCet homme a mauvaise réputation.\nThat may be an important clue.\tIl se peut que ce soit un indice important.\nThat might not be a good idea.\tCela ne serait peut-être pas une bonne idée.\nThat movie star has many fans.\tCette vedette de cinéma a beaucoup d'admirateurs.\nThat movie star has many fans.\tCette vedette de cinéma a de nombreux admirateurs.\nThat movie star has many fans.\tCette vedette de cinéma a de nombreuses admiratrices.\nThat museum is worth visiting.\tCe musée vaut la visite.\nThat never should've happened.\tCela n'aurait jamais dû se passer.\nThat old man is a fussy eater.\tCe vieil homme est difficile pour la nourriture.\nThat pretty girl is my sister.\tCette jolie fille est ma sœur.\nThat problem is not avoidable.\tCe problème est inévitable.\nThat should be enough for you.\tCela devrait être suffisant pour toi.\nThat should be enough for you.\tCela devrait suffire pour vous.\nThat sounds like a great idea.\tÇa a l'air d'être une idée géniale.\nThat sounds like a great idea.\tÇa a l'air d'être une super idée.\nThat sounds like a great plan.\tÇa semble être un projet formidable.\nThat sounds like a lot of fun.\tÇa a l'air très marrant.\nThat sounds like a lot of fun.\tÇa a l'air très amusant.\nThat store gives good service.\tCe magasin offre un service de qualité.\nThat was Tom's plan all along.\tC'était le plan de Tom depuis le début.\nThat was not my understanding.\tCe n'était pas ma compréhension.\nThat was then and this is now.\tCela c'était avant et ceci, maintenant.\nThat was then and this is now.\tC'était avant et c'est maintenant.\nThat was then and this is now.\tC'était alors et c'est maintenant.\nThat wouldn't be a good thing.\tÇa ne serait pas une bonne chose.\nThat's a controversial theory.\tC'est une théorie controversée.\nThat's a good reason, I guess.\tC'est une bonne raison, je suppose.\nThat's a really good hospital.\tC'est vraiment un bon hôpital.\nThat's a really good painting.\tC'est vraiment un bon tableau.\nThat's a very good suggestion.\tC'est une très bonne suggestion.\nThat's all I'm thinking about.\tC'est tout ce à quoi je pense.\nThat's all it takes sometimes.\tC'est tout ce que ça demande, parfois.\nThat's as good a place as any.\tC'est un endroit aussi bien que n'importe quel autre.\nThat's exactly what I thought.\tC'est exactement ce que je pensais.\nThat's exactly what he wanted.\tC'est exactement ce qu'il voulait.\nThat's how I came to know her.\tC'est comme ça que je l'ai connue.\nThat's how I came to know her.\tEt c'est comme ça que je l'ai connue.\nThat's how I injured my ankle.\tC'est ainsi que je me suis blessé la cheville.\nThat's how I would've done it.\tC'est ainsi que je l'aurais fait.\nThat's not how I would say it.\tCe n'est pas ainsi que je le formulerais.\nThat's not quite what I meant.\tCe n'est pas tout à fait ce que je voulais dire.\nThat's not what I had in mind.\tCe n'est pas ce que j'avais à l'esprit.\nThat's not what I had in mind.\tCe n'est pas ce que j'avais en tête.\nThat's not what I said at all.\tCe n'est pas du tout ce que j'ai dit.\nThat's not what I'm afraid of.\tCe n'est pas de ça que j'ai peur.\nThat's only part of the truth.\tCe n'est qu'une partie de la vérité.\nThat's precisely what I meant.\tC'est précisément ce que je voulais dire.\nThat's probably going to fall.\tÇa va probablement tomber.\nThat's very thoughtful of you.\tC'est très prévenant de votre part.\nThat's very thoughtful of you.\tC'est très prévenant de ta part.\nThat's very thoughtful of you.\tC'est fort prévenant de votre part.\nThat's what I'm talking about.\tC'est de ça que je parle.\nThat's what I'm talking about.\tC'est de ça que je suis en train de parler.\nThat's what I'm worried about.\tC'est ce qui me soucie.\nThat's what Tom wants to know.\tC'est ce que Tom veut savoir.\nThat's what's going to happen.\tC'est ce qui va se produire.\nThat's where I went yesterday.\tC'est là que je suis allé hier.\nThat's where I went yesterday.\tC'est là que je suis allée hier.\nThat's where the problem lies.\tC'est là que le problème réside.\nThat's why I've done all this.\tC'est pour cela que j'ai fait tout ça.\nThe Seine flows through Paris.\tLa Seine coule à travers Paris.\nThe Seine flows through Paris.\tLa Seine traverse Paris.\nThe accident occurred at dawn.\tL'accident survint à l'aube.\nThe airplane took off on time.\tL'avion a décollé à l'heure.\nThe airplane took off on time.\tL'avion décolla à l'heure.\nThe almond trees are in bloom.\tLes amandiers sont en fleurs.\nThe apples are not quite ripe.\tLes pommes ne sont pas tout à fait mûres.\nThe argument ended in a fight.\tLa discussion a tourné au pugilat.\nThe army forced him to resign.\tL'armée l'a forcé à démissionner.\nThe baby was crying to be fed.\tLe bébé pleurait pour qu'on le nourrisse.\nThe bank lent him 500 dollars.\tLa banque lui a prêté 500 dollars.\nThe barber gave him a haircut.\tLe coiffeur lui a coupé les cheveux.\nThe basket was full of apples.\tLe panier était plein de pommes.\nThe basket was full of apples.\tLe panier était rempli de pommes.\nThe basket was full of apples.\tLa corbeille était remplie de pommes.\nThe best hairdressers are gay.\tLes meilleurs coiffeurs sont homos.\nThe box is too heavy to carry.\tLa boîte est trop lourde à porter.\nThe boy is afraid of the dark.\tLe garçon a peur du noir.\nThe boy was sold into slavery.\tLe garçon fut vendu en esclavage.\nThe bridge is being repainted.\tLe pont est en train d'être repeint.\nThe bus was two minutes early.\tLe bus avait deux minutes d'avance.\nThe candle went out by itself.\tLa bougie s'éteignit d'elle-même.\nThe capital of Japan is Tokyo.\tLa capitale du Japon est Tokyo.\nThe car came to a smooth stop.\tLa voiture s'arrêta doucement.\nThe car crashed into the wall.\tLa voiture s'écrasa contre le mur.\nThe car isn't worth repairing.\tLa voiture ne vaut pas la peine d'être réparée.\nThe cat crept toward the bird.\tLe chat rampa en direction de l'oiseau.\nThe cat crept toward the bird.\tLe chat a rampé en direction de l'oiseau.\nThe cat seems extremely happy.\tLe chat semble extrêmement heureux.\nThe child is learning quickly.\tL'enfant apprend rapidement.\nThe children went out to play.\tLes enfants sont sortis pour jouer.\nThe children went out to play.\tLes enfants allèrent jouer dehors.\nThe children went out to play.\tLes enfants allèrent jouer à l'extérieur.\nThe climate is moist and warm.\tLe climat est chaud et humide.\nThe clock has just struck ten.\tLa pendule vient de sonner dix coups.\nThe clock is ten minutes slow.\tLa pendule a dix minutes de retard.\nThe cloth was dyed bright red.\tLe tissu était teinté d'un rouge éclatant.\nThe clouds are getting darker.\tLes nuages deviennent plus noirs.\nThe coach gave me some advice.\tL'entraîneur m'a donné des conseils.\nThe coach gave me some advice.\tL'entraîneur m'a prodigué des conseils.\nThe concert is about to start.\tLe concert va bientôt commencer.\nThe contract will expire soon.\tLe contrat expirera bientôt.\nThe cops won't find you there.\tLa police ne te trouvera pas là-bas.\nThe cowboy entered the saloon.\tLe gardien de troupeaux entra dans le bar.\nThe decision is not yet final.\tLa décision n'est pas encore définitive.\nThe desk is covered with dust.\tLe bureau est recouvert de poussière.\nThe dictionary is on the desk.\tLe dictionnaire est sur le bureau.\nThe doctor examined my throat.\tLe médecin examina ma gorge.\nThe door opened automatically.\tLa porte s'ouvrait automatiquement.\nThe earth goes around the sun.\tLa Terre tourne autour du Soleil.\nThe examinations are all over.\tLes examens sont complètement terminés.\nThe exception proves the rule.\tL'exception prouve la règle.\nThe first step is the hardest.\tLe premier pas est le plus difficile.\nThe food isn't very good here.\tLa nourriture n'est pas bonne ici.\nThe food seems very delicious.\tLa nourriture semble délicieuse.\nThe food was better in prison.\tLa nourriture était meilleure en prison.\nThe garden needs to be weeded.\tLe jardin a besoin d'être désherbé.\nThe girl did not say anything.\tLa fille ne dit rien.\nThe girl did not say anything.\tLa fille resta coite.\nThe girls are as busy as bees.\tLes filles sont affairées comme des abeilles.\nThe homework is due next week.\tLe devoir est à faire pour la semaine prochaine.\nThe hostages will be released.\tLes otages seront libérés.\nThe hostages will be released.\tLes otages vont être libérés.\nThe hotel is run by his uncle.\tL'hôtel est géré par son oncle.\nThe house appears to be empty.\tLa maison paraît vide.\nThe house by the lake is mine.\tLa maison du lac m'appartient.\nThe house by the lake is mine.\tLa maison au bord du lac m'appartient.\nThe house is not occupied now.\tLa maison est actuellement inoccupée.\nThe ice has melted in the sun.\tLa glace fondit au soleil.\nThe kid is a pain in the neck.\tLe gosse est une plaie.\nThe kids are driving me crazy.\tLes enfants me rendent dingue.\nThe king always wears a crown.\tLe roi porte toujours une couronne.\nThe king oppressed his people.\tLe roi oppressait son peuple.\nThe letter was written by Tom.\tLa lettre a été écrite par Tom.\nThe letter was written by Tom.\tLa lettre fut écrite par Tom.\nThe light in Tom's room is on.\tLa lumière dans la chambre de Tom est allumée.\nThe light is better over here.\tLa lumière est meilleure par ici.\nThe matter is really pressing.\tLa question est vraiment pressante.\nThe mayor granted our request.\tLe maire a accédé à notre demande.\nThe money is at your disposal.\tL'argent est à votre disposition.\nThe moon is behind the clouds.\tLa lune se trouve derrière les nuages.\nThe museum is open from 9 a.m.\tLe musée est ouvert à partir de neuf heures.\nThe next morning, he was gone.\tLe matin suivant, il était parti.\nThe noise set the dog barking.\tLe bruit a fait aboyer le chien.\nThe novel is worthy of praise.\tLe roman mérite des éloges.\nThe old man has missing teeth.\tLe vieil homme est édenté.\nThe old man is hard to please.\tLe vieux est difficile à contenter.\nThe pain has mostly gone away.\tLa douleur a en majeure partie disparu.\nThe painting is deteriorating.\tLe tableau se détériore.\nThe park is open to everybody.\tLe parc est ouvert à tous.\nThe patient's in the hospital.\tLe patient est à l'hôpital.\nThe plan is not yet finalized.\tLe plan n'est pas encore ficelé.\nThe plane will get in on time.\tL'avion arrivera à l'heure.\nThe police broke up the crowd.\tLa police a dispersé la foule.\nThe possibilities are endless.\tLes possibilités sont infinies.\nThe president remained in bed.\tLe Président resta alité.\nThe price reflects the demand.\tLe prix reflète la demande.\nThe prisoners tried to escape.\tLes prisonniers ont essayé de s'enfuir.\nThe prisoners tried to escape.\tLes prisonnières ont essayé de s'enfuir.\nThe prisoners tried to escape.\tLes prisonniers essayèrent de s'enfuir.\nThe prisoners tried to escape.\tLes prisonnières essayèrent de s'enfuir.\nThe result remains to be seen.\tIl faudra voir le résultat.\nThe result remains to be seen.\tOn verra le résultat.\nThe rich are not always happy.\tLes riches ne sont pas toujours heureux.\nThe road is icy, so take care.\tLa route est verglacée, alors fais attention.\nThe road was clear of traffic.\tLa route était dégagée de toute circulation.\nThe robber bashed her head in.\tLe voleur lui a fracassé la tête.\nThe robot went out of control.\tCe robot est devenu hors de contrôle.\nThe robot went out of control.\tLe robot échappa au contrôle.\nThe room is covered with dust.\tLa pièce est couverte de poussière.\nThe sample is not pure enough.\tL'échantillon n'est pas assez pur.\nThe scandal ruined his career.\tLe scandale a ruiné sa carrière.\nThe ship is now in the harbor.\tLe bateau est maintenant au port.\nThe shoes are made of leather.\tLes chaussures sont faites en cuir.\nThe shy boy murmured his name.\tLe garçon timide murmura son nom.\nThe situation seemed hopeless.\tIl semblait que la situation était sans espoir.\nThe snow melted away in a day.\tLa neige a fondu en un jour.\nThe soldier groaned with pain.\tLe soldat gémissait de douleur.\nThe squirrel climbed the tree.\tL'écureuil grimpa à l'arbre.\nThe squirrel climbed the tree.\tL'écureuil est grimpé dans l'arbre.\nThe students could not answer.\tLes étudiants ne pouvaient pas répondre.\nThe summer here is quite warm.\tIci, l'été est très chaud.\nThe sun is shining in the sky.\tLe soleil brille dans le ciel.\nThe sun is the brightest star.\tLe soleil est l'étoile la plus brillante.\nThe sun shines during the day.\tLe Soleil brille durant le jour.\nThe town was full of activity.\tLa ville était pleine d'activité.\nThe train approached the town.\tLe train approchait de la ville.\nThe train arrived on schedule.\tLe train arriva à l'heure.\nThe train has not arrived yet.\tLe train n'est pas encore arrivé.\nThe train is bound for London.\tLe train est à destination de Londres.\nThe train leaves in 5 minutes.\tLe train part dans cinq minutes.\nThe train was delayed by snow.\tLe train a été retardé à cause de la neige.\nThe troops had plenty of arms.\tLes troupes avaient plein d'armes.\nThe troops had plenty of arms.\tLes troupes avaient beaucoup d'armes.\nThe troops had plenty of arms.\tLes troupes avaient beaucoup de bras.\nThe truth is I don't like Tom.\tLa vérité est que je n'aime pas Tom.\nThe twins are very much alike.\tLes jumeaux se ressemblent beaucoup.\nThe two women know each other.\tLes deux femmes se connaissent.\nThe typhoon gathered strength.\tLe typon se renforça.\nThe vase was broken to pieces.\tLe vase était brisé en morceaux.\nThe war had lasted four years.\tLa guerre a duré quatre ans.\nThe war is going in our favor.\tLa guerre se déroule en notre faveur.\nThe watch keeps accurate time.\tLa montre tient l'heure précise.\nThe water flooded the streets.\tL'eau inonda les rues.\nThe water flooded the streets.\tL'eau a inondé les rues.\nThe weather is terrible today.\tIl fait un temps horrible aujourd'hui.\nThe weather is terrible today.\tIl fait dégueulasse aujourd'hui.\nThe weather is terrible today.\tIl fait un temps vraiment moche aujourd'hui.\nThe whole class took the test.\tToute la classe a passé le test.\nThe wind is blowing very hard.\tLe vent souffle violemment.\nThe word has several meanings.\tLe mot a plusieurs significations.\nThe work is actually finished.\tLe travail est effectivement achevé.\nThere also was another reason.\tIl y avait aussi une autre raison.\nThere are 31 days in December.\tDécembre a 31 jours.\nThere are cookies in the oven.\tIl y a des biscuits au four.\nThere are cookies in the oven.\tIl y a des biscuits dans le four.\nThere are no stupid questions.\tIl n'y a pas de questions stupides.\nThere are rats in the kitchen.\tIl y a des rats dans la cuisine.\nThere are statues in the park.\tIl y a des statues dans le parc.\nThere is a cat in the kitchen.\tIl y a un chat dans la cuisine.\nThere is a cat under the desk.\tIl y a un chat sous le bureau.\nThere is a park near my house.\tIl y a un parc près de chez moi.\nThere is an apple on the desk.\tIl y a une pomme sur le bureau.\nThere is an apple on the desk.\tIl y a une pomme sur le pupitre.\nThere is an apple on the desk.\tUne pomme se trouve sur le bureau.\nThere is no grass on the moon.\tIl n'y a pas d'herbe sur la lune.\nThere is no shortage of ideas.\tCe ne sont pas les idées qui manquent.\nThere is no table in the room.\tIl n'y a pas de table dans la salle.\nThere is snow on the mountain.\tIl y a de la neige sur la montagne.\nThere isn't room for everyone.\tIl n'y a pas de place pour tout le monde.\nThere were few, if any, trees.\tIl n'y avait presque aucun arbre.\nThere were flowers all around.\tIl y avait des fleurs de tous côtés.\nThere were no more free seats.\tIl n'y avait plus de fauteuils de libre.\nThere were no other survivors.\tIl n'y avait pas d'autres survivants.\nThere were no taxis available.\tIl n'y avait pas de taxis disponibles.\nThere were two pieces of cake.\tIl y avait deux morceaux de gâteau.\nThere would be no competition.\tIl n'y aurait pas de concurrence.\nThere's a bit of a wind today.\tIl y a un petit peu de vent aujourd'hui.\nThere's a cat under the table.\tIl y a un chat sous la table.\nThere's a large risk involved.\tIl y a là un grand risque.\nThere's a new sheriff in town.\tIl y a un nouveau shérif en ville.\nThere's a river near my house.\tIl y a une rivière près de ma maison.\nThere's no mention of it here.\tIl n'en est pas fait mention ici.\nThere's no need to exaggerate.\tIl n'est pas nécessaire d'exagérer.\nThere's no room under the bed.\tIl n'y a pas de place sous le lit.\nThere's no such thing as luck.\tLa chance, ça n'existe pas.\nThere's no way off the island.\tIl n'y a aucun moyen de quitter l'île.\nThere's nothing going on here.\tIl n'y a rien qui se passe ici.\nThere's nothing more I can do.\tJe ne peux rien faire de plus.\nThere's nothing new to report.\tIl n'y a rien de nouveau à signaler.\nThere's nothing wrong with it.\tIl n'y a rien de mal à ça.\nThere's one problem with this.\tIl y a un problème avec ceci.\nThere's so much more to learn.\tIl y a tant à apprendre, encore.\nThese containers are airtight.\tCes conteneurs sont hermétiques.\nThese containers are airtight.\tCes récipients sont hermétiques.\nThese cookies are star-shaped.\tCes gâteaux sont en forme d'étoile.\nThese paintings are beautiful.\tCes tableaux sont beaux.\nThese politicians are corrupt.\tCes politiciens sont corrompus.\nThese politicians are corrupt.\tCes politiciennes sont corrompues.\nThese shoes don't fit my feet.\tCes chaussures ne me vont pas.\nThey abandoned their homeland.\tIls ont abandonné leur terre natale.\nThey accept students like Tom.\tIls acceptent les étudiants comme Tom.\nThey accept students like Tom.\tElles acceptent les étudiants comme Tom.\nThey acted on the information.\tIls agirent selon l'information.\nThey acted on the information.\tIls agirent sur la base de l'information.\nThey acted on the information.\tIls ont agi sur la base de l'information.\nThey acted on the information.\tIls ont agi selon l'information.\nThey all joined in the chorus.\tIls se joignirent tous au chœur.\nThey all joined in the chorus.\tElles se joignirent toutes au chœur.\nThey all laughed at his error.\tTous ont ri à son erreur.\nThey all laughed at his error.\tToutes ont ri à son erreur.\nThey all laughed at his jokes.\tIls ont tous ri de ses blagues.\nThey all laughed at his jokes.\tElles ont toutes ri de ses blagues.\nThey are all college students.\tCe sont tous des étudiants de la fac.\nThey are all college students.\tCe sont toutes des étudiantes de la fac.\nThey are typical young people.\tC'étaient des jeunes gens habituels.\nThey aren't going to help Tom.\tIls ne vont pas aider Tom.\nThey belong to the chess club.\tIls appartiennent au club d'échecs.\nThey built a snowman together.\tIls ont fait un bonhomme de neige ensemble.\nThey burned all the documents.\tIls brûlèrent tous les documents.\nThey burned all the documents.\tElles ont brûlé tous les documents.\nThey carried water in buckets.\tIls ont porté l'eau dans des seaux.\nThey carried water in buckets.\tElles ont porté l'eau dans des seaux.\nThey carried water in buckets.\tIls portèrent l'eau dans des seaux.\nThey carried water in buckets.\tElles portèrent l'eau dans des seaux.\nThey changed it very recently.\tIls l'ont changé très récemment.\nThey changed it very recently.\tElles l'ont changé très récemment.\nThey cleared the road of snow.\tIls ont dégagé la neige de la route.\nThey did not have enough gold.\tIls n'avaient pas assez d'or.\nThey do not know how to do it.\tIls ne savent pas comment le faire.\nThey don't get along together.\tIls ne s'entendent pas ensemble.\nThey fear that he may be dead.\tIls craignent qu'il ne soit mort.\nThey have to repair their car.\tIls doivent réparer leur voiture.\nThey have to repair their car.\tElles doivent réparer leur véhicule.\nThey invited me to play cards.\tIls m'ont invité à jouer aux cartes.\nThey kept their love a secret.\tIls ont gardé leur amour secret.\nThey left the room one by one.\tElles sortirent de la pièce une par une.\nThey lived happily ever after.\tIls vécurent heureux et eurent beaucoup d'enfants.\nThey made a list of the names.\tIls dressèrent une liste des noms.\nThey might be taller than you.\tIls pourraient peut-être être plus grands que vous.\nThey might be taller than you.\tIls pourraient peut-être être plus grands que toi.\nThey might be taller than you.\tElles pourraient peut-être être plus grandes que vous.\nThey might be taller than you.\tElles pourraient peut-être être plus grandes que toi.\nThey named the baby Momotarou.\tIls appelèrent le bébé Momotarou.\nThey refused to join the army.\tIls refusèrent d'entrer dans l'armée.\nThey say that he is very rich.\tIls disent qu'il est très riche.\nThey showed it to our company.\tIls le montrèrent à nos convives.\nThey showed it to our company.\tElles le montrèrent à nos convives.\nThey showed it to our company.\tIls l'ont montré à nos convives.\nThey showed it to our company.\tElles l'ont montré à nos convives.\nThey started at the same time.\tIls ont commencé en même temps.\nThey stayed at a luxury hotel.\tIls ont séjourné dans un hôtel de luxe.\nThey stayed at a luxury hotel.\tElles ont séjourné dans un hôtel de luxe.\nThey strolled along the beach.\tIls se promenèrent le long de la plage.\nThey strolled along the beach.\tElles se promenèrent le long de la plage.\nThey used a high-speed camera.\tIls ont utilisé un appareil photo à haute vitesse.\nThey waited for him for hours.\tIls attendirent des heures après lui.\nThey wanted me out of the way.\tIls voulaient me mettre à l'écart.\nThey went their separate ways.\tIls sont partis chacun de leur côté.\nThey were admiring themselves.\tIls s'admiraient eux-mêmes.\nThey were enjoying themselves.\tIls s'amusaient.\nThey were enjoying themselves.\tIls étaient en train de s'amuser.\nThey were enjoying themselves.\tElles s'amusaient.\nThey were enjoying themselves.\tElles étaient en train de s'amuser.\nThey were free at that moment.\tIls étaient libres à ce moment.\nThey were watching television.\tIls regardaient la télévision.\nThey were watching television.\tIls étaient en train de regarder la télévision.\nThey will hold talks tomorrow.\tIls auront des discussions demain.\nThey will hold talks tomorrow.\tElles auront des discussions demain.\nThey will hold talks tomorrow.\tIls auront des pourparlers demain.\nThey will hold talks tomorrow.\tElles auront des pourparlers demain.\nThey will hold talks tomorrow.\tCe sont eux qui auront des pourparlers, demain.\nThey will hold talks tomorrow.\tCe sont elles qui auront des pourparlers, demain.\nThey worked through the night.\tElles travaillèrent toute la nuit.\nThey worked through the night.\tElles ont travaillé toute la nuit.\nThey worked through the night.\tIls travaillèrent toute la nuit.\nThey worked through the night.\tIls ont travaillé toute la nuit.\nThey'll never know we're here.\tIls ne sauront jamais que nous sommes là.\nThey'll never know we're here.\tElles ne sauront que nous sommes là.\nThey're not going to catch us.\tIls ne vont pas nous attraper.\nThey're related to each other.\tIls sont apparentés.\nThey're smiling at each other.\tIls se sourient.\nThey're smiling at each other.\tElles se sourient.\nThey're the cream of the crop.\tIls forment le dessus du panier.\nThey're the cream of the crop.\tElles forment le dessus du panier.\nThey're walking without shoes.\tIls marchent pieds nus.\nThings are not what they seem.\tLes choses ne sont pas ce qu'elles paraissent.\nThings are not what they seem.\tLes choses ne sont pas ce qu'elles semblent être.\nThings did not go as intended.\tLes choses ne se sont pas déroulées comme prévu.\nThirteen percent were opposed.\tTreize pour cent étaient contre.\nThis book is full of mistakes.\tCe livre est plein de fautes.\nThis book isn't worth reading.\tCe livre ne vaut pas le coup d'être lu.\nThis book sells well in Japan.\tCe livre se vend bien au Japon.\nThis box contains five apples.\tCette boîte contient cinq pommes.\nThis box is made of cardboard.\tCette boîte est faite de carton.\nThis box is made of cardboard.\tCette caisse est faite de carton.\nThis bread smells really good.\tCe pain sent vraiment très bon.\nThis bridge is built of stone.\tCe pont est fait de pierres.\nThis bridge is built of stone.\tCe pont est de pierre.\nThis camera is Tom's favorite.\tCet appareil photo est le favori de Tom.\nThis camera is very expensive.\tCet appareil photo est très cher.\nThis candy costs eighty cents.\tCette sucrerie coûte huitante centimes.\nThis car doesn't belong to me.\tCette voiture ne m'appartient pas.\nThis car is used by my father.\tCette voiture est utilisée par mon père.\nThis castle was built in 1610.\tCe château a été construit en 1610.\nThis chimney is made of brick.\tCette cheminée est de briques.\nThis chimney is made of brick.\tCette cheminée est faite de briques.\nThis clock seems to be broken.\tCette horloge semble cassée.\nThis coffee is not hot enough.\tCe café n'est pas assez chaud.\nThis couch is not comfortable.\tCe canapé n'est pas confortable.\nThis device may come in handy.\tCe dispositif peut se révéler bien utile.\nThis doesn't look good at all.\tÇa ne me dit rien qui vaille.\nThis dog eats almost anything.\tCe chien mange pratiquement n'importe quoi.\nThis fruit doesn't taste good.\tCe fruit n'a pas bon goût.\nThis girl is driving me crazy.\tCette fille me rend dingue.\nThis is a difficult situation.\tC'est une situation difficile.\nThis is a little gift for you.\tC'est un petit cadeau pour vous.\nThis is a recipe for disaster.\tC'est la recette du désastre.\nThis is a stressful situation.\tC'est une situation stressante.\nThis is a very low-stress job.\tC'est un travail de très faible contrainte.\nThis is an opera in five acts.\tC'est un opéra en cinq actes.\nThis is an option to consider.\tC'est une possibilité à envisager.\nThis is delicious. What is it?\tC'est délicieux. Qu'est-ce que c'est?\nThis is exactly what I needed.\tC'est exactement ce dont j'avais besoin.\nThis is exactly what I needed.\tC'est exactement ce qu'il me fallait.\nThis is how I learned English.\tEt ainsi ai-je appris l'anglais.\nThis is how I learned English.\tC'est ainsi que j'ai appris l'anglais.\nThis is how I met your mother.\tC'est comme cela que j'ai rencontré ta mère.\nThis is my natural hair color.\tJe ne me teins pas les cheveux.\nThis is not going to end well.\tÇa ne va pas bien finir.\nThis is not going to end well.\tÇa ne va pas bien se terminer.\nThis is something to consider.\tC'est quelque chose à prendre en considération.\nThis is the boy who helped me.\tC'est le garçon qui m'a aidé.\nThis is the life that I chose.\tC'est la vie que j'ai choisie.\nThis is what I can do for you.\tC'est ce que je peux faire pour vous.\nThis is where I draw the line.\tC'est là ma limite.\nThis is where my father works.\tC'est l'endroit où travaille mon père.\nThis is worth one million yen.\tCeci vaut un million de yen.\nThis is your captain speaking.\tC'est votre capitaine qui s'adresse à vous.\nThis isn't what Tom needs now.\tCe n'est pas ce dont Tom a besoin maintenant.\nThis isn't what it looks like.\tCe n'est pas ce que ça semble être.\nThis job is beyond my ability.\tCe travail dépasse ma compétence.\nThis key won't go in the lock.\tCette clef ne rentre pas dans la serrure.\nThis knife has served me well.\tCe couteau m'a beaucoup servi.\nThis law applies to everybody.\tCette loi s'applique pour tout le monde.\nThis medicine tastes horrible.\tCe médicament a un goût atroce.\nThis movie is for adults only.\tCe film est seulement pour adultes.\nThis place is large, isn't it?\tCette place est grande, n'est-ce pas ?\nThis place isn't safe anymore.\tCet endroit n'est plus sûr.\nThis problem is hard to solve.\tCe problème est difficile à résoudre.\nThis problem is not avoidable.\tCe problème est inévitable.\nThis product is well-designed.\tCe produit est bien conçu.\nThis road needs to be repaved.\tCette route a besoin d'être repavée.\nThis room is too small for us.\tCet espace est trop réduit pour nous.\nThis room is too small for us.\tCette pièce est trop petite pour nous.\nThis rope is strong, isn't it?\tCette corde est résistante, n'est-ce pas ?\nThis rule applies to you, too.\tCette règle s'applique à toi aussi.\nThis ship was ten meters long.\tCe bateau mesurait dix mètres.\nThis shirt needs to be washed.\tCette chemise doit être lavée.\nThis shirt needs to be washed.\tCette chemise a besoin d'être lavée.\nThis soup is too salty to eat.\tCette soupe est trop salée pour être mangée.\nThis soup tastes really great.\tCette soupe est vraiment très bonne.\nThis stays between you and me.\tCeci reste entre toi et moi.\nThis stays between you and me.\tCeci reste entre vous et moi.\nThis story has a happy ending.\tCette histoire se termine bien.\nThis story is too predictable.\tCette histoire est trop prévisible.\nThis summer is incredibly hot.\tCet été est incroyablement chaud.\nThis tastes pretty good to me.\tJe trouve que ça a assez bon goût.\nThis train is bound for Tokyo.\tCe train est à destination de Tokyo.\nThis tree does not bear fruit.\tCet arbre ne porte de fruits.\nThis was a premeditated crime.\tC'était un crime prémédité.\nThis was built since long ago.\tOn a construit cela il y a longtemps.\nThis website seems quite good.\tCe site a l'air pas mal.\nThis word has three syllables.\tCe mot a trois syllabes.\nThis work is difficult for us.\tCe travail est difficile pour nous.\nThose colors go well together.\tCes couleurs vont bien ensemble.\nThose shoes are old fashioned.\tCes chaussures sont démodées.\nThose three are his daughters.\tCes trois-là sont ses filles.\nTo my surprise, she was alive.\tÀ ma surprise, elle était vivante.\nToday is my sister's birthday.\tAujourd'hui, c'est l'anniversaire de ma sœur.\nToday is tomorrow's yesterday.\tAujourd'hui est l'hier de demain.\nToday, I went to the doctor's.\tAujourd'hui je suis allé chez le médecin.\nToday, I went to the doctor's.\tAujourd'hui, j'ai été chez le médecin.\nToday, I went to the doctor's.\tAujourd'hui, j'ai été voir le toubib.\nTokyo is bigger than Yokohama.\tTokyo est plus grande que Yokohama.\nTokyo is larger than Yokohama.\tTokyo est plus grande que Yokohama.\nTokyo is the capital of Japan.\tTokyo est la capitale du Japon.\nTom advised us not to do that.\tTom nous a conseillé de ne pas faire cela.\nTom and I used to fight a lot.\tTom et moi nous battions beaucoup.\nTom and Mary decided to leave.\tTom et Marie ont décidé de partir.\nTom and Mary decided to leave.\tTom et Marie décidèrent de partir.\nTom and Mary decided to leave.\tTom et Mary décidèrent de partir.\nTom and Mary grew up together.\tTom et Marie ont grandi ensemble.\nTom and Mary studied together.\tTom et Marie ont étudié ensemble.\nTom and Mary studied together.\tTom et Mary ont étudié ensemble.\nTom asked Mary for assistance.\tTom demanda à Marie de l'aider.\nTom began to worry about Mary.\tTom commença à se faire du souci pour Marie.\nTom bought a present for Mary.\tTom a acheté un cadeau pour Mary.\nTom bought a very good camera.\tTom a acheté un très bon appareil photo.\nTom called Mary at about 2:30.\tTom a appelé Marie vers deux heures et demie.\nTom came here to study French.\tTom est venu ici pour étudier le français.\nTom can speak three languages.\tTom peut parler trois langues.\nTom can't rely on Mary's help.\tTom ne peut pas compter sur l'aide de Mary.\nTom certainly deserves praise.\tSans aucun doute, Tom mérite des louanges.\nTom certainly enjoys his wine.\tTom apprécie certainement son vin.\nTom certainly got the message.\tTom a certainement reçu le message.\nTom continued to talk to Mary.\tTom a continué à parler à Marie.\nTom continued to talk to Mary.\tTom continua à parler à Marie.\nTom couldn't help showing off.\tTom ne pouvait s'empêcher de frimer.\nTom decided to enter the room.\tTom décida d'entrer dans la salle.\nTom despises people who smoke.\tTom méprise les gens qui fument.\nTom did something very stupid.\tTom a fait quelque chose de très stupide.\nTom did something very stupid.\tTom fit quelque chose de très stupide.\nTom didn't even try to get up.\tTom n'a même pas essayé de se lever.\nTom didn't expect that answer.\tTom ne s'attendait pas à cette réponse.\nTom didn't go to the hospital.\tTom n'est pas allé à l'hôpital.\nTom didn't have anything else.\tTom n'avait rien d'autre.\nTom didn't respond right away.\tTom n'a pas répondu tout de suite.\nTom didn't respond right away.\tTom ne répondit pas tout de suite.\nTom died from a drug overdose.\tTom est mort d'une overdose.\nTom does nothing but watch TV.\tTom ne fait que regarder la télévision.\nTom doesn't eat between meals.\tTom ne mange pas entre les repas.\nTom doesn't even know my name.\tTom ne connaît même pas mon nom.\nTom doesn't even like driving.\tTom n'aime même pas conduire.\nTom doesn't have a TV at home.\tTom n'a pas de téléviseur chez lui.\nTom doesn't like living alone.\tTom n'aime pas vivre seul.\nTom doesn't like poker at all.\tTom n'aime pas du tout le poker.\nTom doesn't like taking risks.\tTom n'aime pas prendre de risques.\nTom doesn't own a credit card.\tTom ne possède pas de carte de crédit.\nTom doesn't read much anymore.\tTom ne lit plus beaucoup.\nTom doesn't understand French.\tTom ne comprend pas le français.\nTom doesn't work here anymore.\tTom ne travaille plus ici.\nTom dozed off in French class.\tTom somnola en cours de français.\nTom drinks milk every morning.\tTom boit du lait tous les matins.\nTom fell asleep while reading.\tTom s'est endormi pendant qu'il lisait.\nTom flirted with the waitress.\tTom a flirté avec la serveuse.\nTom followed me to the garage.\tTom me suivit au garage.\nTom followed me to the garage.\tTom m'a suivi au garage.\nTom followed me to the garage.\tTom m'a suivie au garage.\nTom found a job as a mechanic.\tTom a trouvé un emploi comme mécanicien.\nTom found a job as a mechanic.\tTom a trouvé un travail de mécanicien.\nTom found me a French teacher.\tTom m'a trouvé un professeur de français.\nTom found no one in the house.\tTom ne trouva personne dans la maison.\nTom found no one in the house.\tTom n'a trouvé personne dans la maison.\nTom goes to school by bicycle.\tTom va à l'école en vélo.\nTom greeted Mary with a smile.\tTom salua Mary avec un sourire.\nTom greeted Mary with a smile.\tTom a salué Mary avec un sourire.\nTom has a dynamic personality.\tTom a une personnalité dynamique.\nTom has a heavy German accent.\tTom a un fort accent allemand.\nTom has already fallen asleep.\tTom s'est déjà endormi.\nTom has already gone to sleep.\tTom est déjà allé au lit.\nTom has been very cooperative.\tTom a été très coopératif.\nTom has denied the allegation.\tTom a nié l'allégation.\nTom has lost another umbrella.\tTom a perdu un parapluie de plus.\nTom has never seen Mary dance.\tTom n'a jamais vu Mary danser.\nTom has something in his hand.\tTom a quelque chose en main.\nTom has something to tell you.\tTom a quelque chose à te dire.\nTom has three sons, I believe.\tTom a trois fils, je crois.\nTom has to do that right away.\tTom doit le faire tout de suite.\nTom has to pay his rent today.\tTom doit payer son loyer aujourd'hui.\nTom has written several books.\tTom a écrit plusieurs livres.\nTom hasn't eaten anything yet.\tTom n'a encore rien mangé.\nTom hasn't seen the video yet.\tTom n'a pas encore vu la vidéo.\nTom hates being told to hurry.\tTom déteste qu'on lui dise de se dépêcher.\nTom is a close friend of mine.\tTom est un ami proche.\nTom is a correctional officer.\tTom est un agent des services correctionnels.\nTom is a little angry at Mary.\tTom est un peu en colère envers Mary.\nTom is a lot busier than I am.\tTom est beaucoup plus occupé que moi.\nTom is a teacher, and so am I.\tTom est professeur, et moi aussi.\nTom is a very creative person.\tTom est une personne très créative.\nTom is a well-informed person.\tTom est bien informé.\nTom is a year older than Mary.\tTom est un an plus vieux que Mary.\nTom is always very aggressive.\tTom est toujours très agressif.\nTom is an electrical engineer.\tTom est ingénieur en électricité.\nTom is an experienced teacher.\tTom est un professeur expérimenté.\nTom is better than me at math.\tTom est meilleur que moi en math.\nTom is constantly complaining.\tTom se plaint constamment.\nTom is much smarter than I am.\tTom est beaucoup plus intelligent que moi.\nTom is not much older than me.\tTom n'est pas beaucoup plus vieux que moi.\nTom is now very angry with me.\tMaintenant Tom est très en colère contre moi.\nTom is now very angry with me.\tTom est désormais très fâché contre moi.\nTom is playing the violin now.\tTom joue du violon maintenant.\nTom is reading in his bedroom.\tTom lit dans sa chambre.\nTom is reading in his bedroom.\tTom est en train de lire dans sa chambre.\nTom is taller than his mother.\tTom est plus grand que sa mère.\nTom is the defending champion.\tTom est le champion en titre.\nTom is the one who woke me up.\tTom est celui qui m'a réveillé.\nTom is the richest man I know.\tTom est l'homme le plus riche que je connaisse.\nTom is trying to get it right.\tTom essaie de faire les choses correctement.\nTom is trying to learn French.\tTom essaie d'apprendre le français.\nTom is waiting at the airport.\tTom attend à l'aéroport.\nTom is waiting at the airport.\tTom est en train d'attendre à l'aéroport.\nTom isn't a huge football fan.\tTom n'est pas un grand fan de football.\nTom isn't feeling at all well.\tTom ne se sent vraiment pas bien.\nTom isn't very good at French.\tTom n'est pas très bon en français.\nTom just returned from Boston.\tTom vient de revenir de Boston.\nTom kept his illness a secret.\tTom a gardé sa maladie secrète.\nTom knew Mary had kissed John.\tTom savait que Mary avait embrassé John.\nTom knew he was being watched.\tTom savait qu'on le surveillait.\nTom knocked on the front door.\tTom frappa à la porte d'entrée.\nTom knocked on the front door.\tTom a frappé à la porte d'entrée.\nTom knows what the problem is.\tTom sait quel est le problème.\nTom lives and works in Boston.\tTom vit et travaille à Boston.\nTom lives and works in Boston.\tTom habite et travaille à Boston.\nTom looked at it more closely.\tTom le regarda de plus près.\nTom looked at it more closely.\tTom l'a regardé de plus près.\nTom looked at it suspiciously.\tTom le regarda avec méfiance.\nTom looked closer at the food.\tTom regarda la nourriture de plus près.\nTom looks exceptionally bored.\tTom a vraiment l'air de s'ennuyer beaucoup.\nTom loves watching Mary dance.\tTom aime regarder Mary danser.\nTom loves you. I know he does.\tTom t'aime. Je le sais.\nTom loves you. I know he does.\tTom vous aime. Je le sais.\nTom made himself a cup of tea.\tTom s'est fait une tasse de thé.\nTom might be able to fix that.\tTom pourrait être en mesure de réparer cela.\nTom might be able to fix that.\tTom pourrait peut-être être en mesure de corriger cela.\nTom mistook me for my brother.\tTom m'a pris pour mon frère.\nTom needs a change of scenery.\tTom a besoin de changer d'air.\nTom often contradicts himself.\tTom se contredit souvent.\nTom often goes shopping alone.\tTom va souvent faire du shopping tout seul.\nTom often goes shopping alone.\tTom va souvent faire des emplettes seul.\nTom only mentioned Mary twice.\tTom a seulement cité Mary deux fois.\nTom opened the balcony window.\tTom a ouvert la fenêtre du balcon.\nTom opened the window a crack.\tTom entrouvrit la fenêtre.\nTom overstepped his authority.\tTom a outrepassé ses pouvoirs.\nTom plays organ at our church.\tTom joue de l'orgue dans notre église.\nTom pleaded guilty in October.\tTom a plaidé coupable en octobre.\nTom poured milk on his cereal.\tTom a versé du lait sur ses céréales.\nTom retired earlier this year.\tTom a pris sa retraite plus tôt cette année.\nTom said Mary didn't like him.\tTom a dit que Mary ne l'aimait pas.\nTom said he had a slight cold.\tTom a dit qu'il était un peu enrhumé.\nTom said he wanted to do more.\tTom a dit qu'il voulait faire plus.\nTom said that he was innocent.\tTom a dit qu'il était innocent.\nTom said you told him to wait.\tTom a dit vous lui aviez dit d'attendre.\nTom said you told him to wait.\tTom a dit que tu lui avais dit d'attendre.\nTom sang better than Mary did.\tTom a mieux chanté que Mary.\nTom sang better than Mary did.\tTom a mieux chanté que Marie.\nTom sang better than Mary did.\tTom chanta mieux que Marie.\nTom sang better than Mary did.\tTom chanta mieux que Mary.\nTom saw Mary break the window.\tTom a vu Mary casser la fenêtre.\nTom saw Mary break the window.\tTom vit Mary casser la fenêtre.\nTom saw Mary trying to escape.\tTom a vu Mary essayant de s'échapper.\nTom says he's never owned car.\tTom dit qu'il n'a jamais possédé de voiture.\nTom says that he never dreams.\tTom dit qu'il ne rêve jamais.\nTom screamed to Mary for help.\tTom cria à Mary de l'aide.\nTom screwed in the light bulb.\tTom a vissé l'ampoule.\nTom seems to have disappeared.\tTom semble avoir disparu.\nTom seldom goes out on Monday.\tTom sort rarement le lundi.\nTom sent Mary a birthday card.\tTom a envoyé à Mary une carte d'anniversaire.\nTom sent Mary a birthday card.\tTom a envoyé à Marie une carte d'anniversaire.\nTom sent Mary a birthday card.\tTom envoya à Mary une carte d'anniversaire.\nTom sent Mary a birthday card.\tTom envoya à Marie une carte d'anniversaire.\nTom should be here any minute.\tTom sera ici d'une minute à l'autre.\nTom showed me his photo album.\tTom m'a montré son album photo.\nTom showed us his photo album.\tTom nous a montré son album de photos.\nTom sometimes comes to see me.\tTom vient parfois me voir.\nTom sometimes walks to school.\tTom va parfois à l'école à pied.\nTom spent thirty days in jail.\tTom a passé trente jours en prison.\nTom spoke into the microphone.\tTom parla dans le microphone.\nTom spoke into the microphone.\tTom a parlé dans le microphone.\nTom still needs more training.\tTom a encore besoin d'entrainement.\nTom stood in line for an hour.\tTom a fait la queue pendant une heure.\nTom talked to a lot of people.\tTom a parlé à beaucoup de monde.\nTom talked to a lot of people.\tTom a parlé à beaucoup de gens.\nTom taught himself how to ski.\tTom a appris à skier tout seul.\nTom told Mary to go back home.\tTom a dit à Mary de rentrer à la maison.\nTom told me that he was sorry.\tTom m'a dit qu'il était désolé.\nTom took a lot of photographs.\tTom a pris beaucoup de photos.\nTom tried to resuscitate Mary.\tTom a essayé de ressusciter Mary.\nTom turned off his headlights.\tTom a éteint ses phares.\nTom used to eat a lot of meat.\tTom avait pour habitude de manger beaucoup de viande.\nTom used to eat a lot of meat.\tTom mangeait beaucoup de viande.\nTom visited Australia in 2013.\tTom a visité l'Australie en 2013.\nTom waited for thirty minutes.\tTom a attendu pendant trente minutes.\nTom walked as far as he could.\tTom a marché aussi loin qu'il pouvait.\nTom walked into the courtroom.\tTom marchait dans la salle d'audience.\nTom walked to the parking lot.\tTom marcha vers le terrain de stationnement.\nTom walked towards the stairs.\tTom marcha vers les escaliers.\nTom walked towards the stairs.\tTom se dirigea vers les escaliers.\nTom wanted me to learn French.\tTom voulait que j'apprenne le français.\nTom wanted to be part of that.\tTom voulait en faire partie.\nTom wanted to become a lawyer.\tTom voulait devenir un avocat.\nTom wanted to dance with Mary.\tTom voulait danser avec Marie.\nTom wanted to dance with Mary.\tTom voulait danser avec Mary.\nTom wanted to make more money.\tTom voulait gagner plus d'argent.\nTom wanted to protect himself.\tTom voulait se protéger.\nTom wanted to see Mary's room.\tTom voulait voir la chambre de Mary.\nTom wants to apologize to you.\tTom veut s'excuser envers toi.\nTom wants to become a fireman.\tTom veut devenir pompier.\nTom wants to become a teacher.\tTom veut devenir professeur.\nTom was a very tough opponent.\tTom était un adversaire très coriace.\nTom was arrested Monday night.\tTom a été arrêté lundi soir.\nTom was convinced, but not me.\tTom était convaincu, mais moi pas.\nTom was found dead in his bed.\tTom a été retrouvé mort dans son lit.\nTom was one of the lucky ones.\tTom était un des chanceux.\nTom was the life of the party.\tTom était le roi de la fête.\nTom went back into his office.\tTom est retourné dans son bureau.\nTom went back into his office.\tTom retourna dans son bureau.\nTom went down to the basement.\tTom est descendu au sous-sol.\nTom went home for the weekend.\tTom est rentré chez lui pour le week-end.\nTom went to Boston for a week.\tTom a passé une semaine à Boston.\nTom will be cremated tomorrow.\tTom sera incinéré demain.\nTom won a free trip to Boston.\tTom a gagné un voyage gratuit à Boston.\nTom won the contest last year.\tTom a gagné le concours l'année dernière.\nTom won the contest last year.\tTom a remporté le concours l'année dernière.\nTom would help us if he could.\tTom nous aiderait s'il le pouvait.\nTom would make a good teacher.\tTom ferait un bon enseignant.\nTom's advice was very helpful.\tLe conseil de Tom a été très utile.\nTom's bedroom door was closed.\tLa porte de la chambre de Tom était fermée.\nTom's favorite movie is Dumbo.\tLe film préféré de Tom est Dumbo.\nTom's house is near the beach.\tLa maison de Tom est à côté de la plage.\nTom's name is on the envelope.\tLe nom de Tom est sur l'enveloppe.\nTom's new wife's name is Mary.\tLa nouvelle femme de Tom s'appelle Mary.\nTom's phone can take pictures.\tLe téléphone de Tom peut prendre des photos.\nTom's prediction was accurate.\tLa prédiction de Tom était juste.\nTom's situation was different.\tLa situation de Tom était différente.\nTomorrow I must leave earlier.\tDemain je dois quitter plus tôt.\nTranslate the underlined part.\tTraduis la partie soulignée.\nTrees do not grow on prairies.\tLes arbres ne poussent pas dans les prairies.\nTruer words were never spoken.\tOn n'a jamais rien dit de plus vrai.\nTry and do it right this time.\tEssaie, et fais-le correctement cette fois.\nTry to see things as they are.\tEssaie de voir les choses telles qu'elles sont.\nTurn right at the next corner.\tTournez à droite à la prochaine intersection.\nTwo doctors were talking shop.\tDeux médecins étaient en train de parler boulot.\nTwo heads are better than one.\tDeux têtes valent mieux qu'une.\nTwo teas and a coffee, please.\tDeux thés et un café, s'il vous plait.\nTwo vanilla ice creams please.\tDeux glaces à la vanille s'il vous plaît.\nTwo wrongs don't make a right.\tLes erreurs ne se compensent pas.\nTwo wrongs don't make a right.\tOn ne répare pas une injustice par une autre.\nTyphoons hit Japan every year.\tLes typhons frappent le Japon chaque année.\nTyphoons hit Japan every year.\tLes typhons frappent le Japon tous les ans.\nWas I not supposed to eat yet?\tÉtais-je supposé ne pas encore manger ?\nWas I not supposed to eat yet?\tÉtais-je supposée ne pas encore manger ?\nWas Tom here when we got here?\tEst-ce que Tom était là quand nous sommes arrivés ?\nWas the victim male or female?\tLa victime était-elle un homme ou une femme ?\nWas this somebody else's idea?\tEst-ce que c'était l'idée de quelqu'un d'autre ?\nWash your hands before eating.\tLavez vos mains avant de manger.\nWater conducts of electricity.\tL'eau est conductrice d'électricité.\nWater is important for humans.\tL'eau est importante pour les humains.\nWe admire her for her bravery.\tNous l'admirons pour son courage.\nWe all escaped without injury.\tNous en sommes tous sortis indemnes.\nWe all escaped without injury.\tNous en sommes toutes sortis indemnes.\nWe are badly in want of water.\tOn a vraiment besoin d'eau.\nWe are going to travel by car.\tNous allons voyager en voiture.\nWe are listening to the radio.\tNous sommes en train d'écouter la radio.\nWe are looking for each other.\tNous nous cherchons.\nWe are not here to arrest you.\tNous ne sommes pas ici pour vous arrêter.\nWe are not here to arrest you.\tNous ne sommes pas ici pour t'arrêter.\nWe are staying at our uncle's.\tNous restons chez notre oncle.\nWe both have the same problem.\tNous avons tous les deux le même problème.\nWe bought the car for $12,000.\tNous avons acheté la voiture pour 12 000$.\nWe can see many stars tonight.\tOn peut voir de nombreuses étoiles, ce soir.\nWe can't allow Tom to do that.\tOn ne peut pas autoriser Tom à faire ça.\nWe can't wait for the weekend.\tNous sommes impatients d'être en week-end.\nWe cannot exist without water.\tNous ne pouvons pas exister sans eau.\nWe could all be dead tomorrow.\tNous pourrions tous être morts demain.\nWe could all be dead tomorrow.\tNous pourrions toutes être mortes demain.\nWe couldn't agree on anything.\tNous ne sûmes nous accorder sur quoi que ce fut.\nWe didn't stay home yesterday.\tNous ne sommes pas restés à la maison hier.\nWe don't have a second choice.\tNous n'avons pas d'autre choix.\nWe don't have anything to eat.\tNous n'avons rien à manger.\nWe don't have anything to eat.\tOn n'a rien à manger.\nWe don't have the same values.\tNous n'avons pas les mêmes valeurs.\nWe don't trust the government.\tNous ne faisons pas confiance au gouvernement.\nWe don't want to pressure you.\tNous ne voulons pas vous mettre la pression.\nWe found the boy sound asleep.\tNous avons trouvé ce garçon plongé dans un sommeil profond.\nWe found the boy sound asleep.\tNous avons trouvé ce garçon plongé dans un profond sommeil.\nWe go fishing once in a while.\tNous allons pêcher occasionnellement.\nWe got there at the same time.\tOn est arrivé en même temps.\nWe had a fire drill yesterday.\tNous avons eu un exercice incendie, hier.\nWe had a good time last night.\tNous nous sommes bien amusés la nuit dernière.\nWe had a very vigorous debate.\tNous eûmes un débat agité.\nWe had better call the police.\tNous ferions mieux d'appeler la police.\nWe had nice weather yesterday.\tHier, nous avons eu du beau temps.\nWe had nice weather yesterday.\tHier, la météo était clémente.\nWe had to put off the meeting.\tNous avons dû remettre la réunion à plus tard.\nWe have a good heating system.\tNous disposons d'un bon système de chauffage.\nWe have a lot of rain in June.\tNous recevons beaucoup de pluie en juin.\nWe have a similar predicament.\tNous sommes dans le même bain.\nWe have a similar predicament.\tNous nous trouvons dans la même difficulté.\nWe have a similar predicament.\tNous sommes dans le même pétrin.\nWe have achieved all our aims.\tNous avons atteint tous nos objectifs.\nWe have made friends with Tom.\tNous sommes devenus amis avec Tom.\nWe have no way to verify this.\tNous n'avons aucun moyen de vérifier ceci.\nWe have things all worked out.\tNous avons tout arrangé.\nWe have to ask everybody this.\tNous devons demander ceci à tout le monde.\nWe have to be at work by nine.\tNous devons être au travail pour neuf heures.\nWe have to get away from here.\tIl nous faut sortir d'ici.\nWe have to solve this problem.\tNous devons résoudre ce problème.\nWe hope you enjoyed your stay.\tNous espérons que vous avez apprécié votre séjour.\nWe just want to live in peace.\tNous voulons simplement vivre en paix.\nWe know all this already, Tom.\tNous savons déjà tout ceci, Tom.\nWe know each other quite well.\tOn se connaît assez bien.\nWe looked around the property.\tOn a fait le tour de la propriété.\nWe made fun of him about this.\tNous nous sommes moqués de lui à ce sujet.\nWe met at the designated spot.\tNous nous sommes rencontrés à l'endroit désigné.\nWe might have frost next week.\tIl se peut qu'il gèle la semaine prochaine.\nWe must avoid war at all cost.\tNous devons éviter la guerre à tout prix.\nWe must cut down our expenses.\tNous devons réduire nos dépenses.\nWe must cut down our expenses.\tNous devons trancher dans nos dépenses.\nWe must do away with violence.\tNous devons nous débarrasser de la violence.\nWe must make up for lost time.\tNous devons rattraper le temps perdu.\nWe must not break our promise.\tNous ne devons pas rompre notre promesse.\nWe need it now more than ever.\tNous en avons maintenant besoin plus que jamais.\nWe need more doctors like you.\tNous avons besoin de plus de médecins tels que vous.\nWe need our demands to be met.\tIl faut que nos exigences soient respectées.\nWe need some more information.\tIl nous faut plus d'informations.\nWe need to be more aggressive.\tNous devons être plus agressifs.\nWe need to get away from here.\tNous devons partir d'ici.\nWe need to get something done.\tNous avons besoin de faire faire quelque chose.\nWe need to know what happened.\tNous avons besoin de savoir ce qui s'est passé.\nWe never speak French at home.\tNous ne parlons jamais français chez nous.\nWe often play cards on Sunday.\tNous jouons souvent aux cartes, le dimanche.\nWe plan to go hiking tomorrow.\tNous prévoyons de partir en excursion, demain.\nWe play soccer every Saturday.\tNous jouons au football chaque samedi.\nWe played many kinds of games.\tNous avons joué à beaucoup de sortes de jeux.\nWe prepared snacks beforehand.\tNous préparâmes des en-cas à l'avance.\nWe prepared snacks beforehand.\tNous avons préparé des en-cas à l'avance.\nWe really don't have a choice.\tNous n'avons vraiment pas le choix.\nWe really had nothing to lose.\tNous n'avions vraiment rien à perdre.\nWe relaxed in the living room.\tNous nous sommes reposés dans le salon.\nWe sat on a bench in the park.\tNous étions assis sur un banc dans le parc.\nWe saw another ship far ahead.\tOn a vu un autre bateau loin en tête.\nWe should be better than this.\tNous devrions être meilleurs que ceci.\nWe should get along just fine.\tNous devrions parfaitement nous entendre.\nWe should have gotten married.\tNous aurions dû nous marier.\nWe should respect our parents.\tNous devrions respecter nos parents.\nWe should take a coffee break.\tNous devrions faire une pause café.\nWe shouldn't be seen together.\tOn ne devrait pas être vu tous les deux.\nWe showed them what we can do.\tNous leur avons montré ce que nous sommes capables de faire.\nWe sometimes swim in the lake.\tNous nageons de temps en temps dans le lac.\nWe spent hours looking for it.\tNous avons passé des heures à le chercher.\nWe spent hours looking for it.\tNous avons passé des heures à la chercher.\nWe still don't know the truth.\tNous ne savons toujours pas la vérité.\nWe still have more work to do.\tIl nous reste du travail à faire.\nWe still have some work to do.\tIl nous faut encore fournir du travail.\nWe still have some work to do.\tIl nous reste du travail à faire.\nWe thought he was an American.\tNous pensions qu'il était étasunien.\nWe took turns driving the car.\tNous nous relayâmes pour conduire la voiture.\nWe usually sleep in this room.\tOn dort habituellement dans cette chambre.\nWe visited our father's grave.\tNous nous sommes rendus à la tombe de notre père.\nWe want to solve that problem.\tNous voulons résoudre ce problème.\nWe wanted to get out of there.\tNous voulions sortir de là.\nWe went on a really long walk.\tNous avons vraiment fait une longue promenade.\nWe went swimming at the beach.\tNous sommes allés nager à la plage.\nWe went swimming at the beach.\tNous allâmes nager à la plage.\nWe went to the beach together.\tNous allâmes ensemble à la plage.\nWe went to the beach together.\tNous sommes allés ensemble à la plage.\nWe went to the beach together.\tNous sommes allées ensemble à la plage.\nWe were actually pretty lucky.\tNous étions en fait assez chanceux.\nWe were actually pretty lucky.\tNous étions vraiment plutôt chanceux.\nWe were caught in a snowstorm.\tNous fûmes pris dans une tempête de neige.\nWe were caught in a snowstorm.\tNous fûmes prises dans une tempête de neige.\nWe were caught in a snowstorm.\tNous avons été pris dans une tempête de neige.\nWe were caught in a snowstorm.\tNous avons été prises dans une tempête de neige.\nWe were children at that time.\tNous étions enfants, en ce temps-là.\nWe were proud of our strength.\tNous étions fiers de notre force.\nWe were there for a long time.\tNous étions là pour long temps.\nWe were there for a long time.\tNous étions là depuis longtemps\nWe wish you a pleasant flight.\tNous vous souhaitons un vol agréable.\nWe'll all die sooner or later.\tNous mourrons tous tôt ou tard.\nWe'll be back after the break.\tNous reviendrons après la pause.\nWe'll get you a place to stay.\tNous te dégoterons un endroit pour dormir.\nWe'll get you a place to stay.\tNous vous dégoterons un endroit pour dormir.\nWe'll have to do this quickly.\tNous allons devoir faire cela rapidement.\nWe'll never get there in time.\tNous n'y arriverons jamais à temps.\nWe're all going to die anyway.\tDe toute façon on va tous mourir.\nWe're counting on you to help.\tNous comptons sur vous pour aider.\nWe're counting on you to help.\tNous comptons sur toi pour aider.\nWe're going to need some help.\tNous allons avoir besoin d'aide.\nWe're going to paint the wall.\tNous allons peindre le mur.\nWe're gonna have a lot of fun.\tOn va bien rigoler.\nWe're gonna have a lot of fun.\tOn va bien s'amuser.\nWe're here to play basketball.\tNous sommes là pour jouer au basket.\nWe're just having a good time.\tNous passons seulement un bon moment.\nWe're just not used to it yet.\tNous ne sommes simplement pas encore habitués à ça.\nWe're not getting any younger.\tOn ne rajeunit pas.\nWe're not getting any younger.\tNous ne rajeunissons pas.\nWe're on the same team, right?\tOn est dans la même équipe, n'est-ce pas ?\nWe're on the same team, right?\tNous sommes dans la même équipe, n'est-ce pas ?\nWe're sorry we can't help you.\tNous regrettons de ne pas pouvoir vous aider.\nWe're sorry we can't help you.\tNous sommes désolés de ne pas pouvoir vous aider.\nWe're trying to close the box.\tNous sommes en train d'essayer de fermer la boîte.\nWe're very excited about that.\tNous sommes très excités à ce propos.\nWe're working to fix this bug.\tNous travaillons à corriger ce bug.\nWe've already seen this movie.\tNous avons déjà vu ce film.\nWe've been friends ever since.\tDepuis lors nous sommes amis.\nWe've just finished breakfast.\tNous venons de terminer le petit-déjeuner.\nWe've just finished breakfast.\tOn vient de terminer notre petit-déjeuné.\nWe've painted the walls white.\tNous avons peint les murs en blanc.\nWeeds sprang up in the garden.\tDes mauvaises herbes ont poussé dans le jardin.\nWell, what does that tell you?\tEh bien, qu'est-ce que cela vous évoque ?\nWell, what does that tell you?\tEh bien, qu'est-ce que cela t'évoque ?\nWell, what does that tell you?\tEh bien, que cela vous évoque-t-il ?\nWell, what does that tell you?\tEh bien, que cela t'évoque-t-il ?\nWere you with my father today?\tÉtais-tu avec mon père, aujourd'hui ?\nWere you with my father today?\tÉtiez-vous avec mon père, aujourd'hui ?\nWet clothes cling to the body.\tLes vêtements mouillés collent au corps.\nWhat a beautiful woman she is!\tQuelle belle femme !\nWhat a colossal waste of time!\tQuelle perte de temps colossale !\nWhat a remarkable performance!\tQuelle exécution remarquable !\nWhat a remarkable performance!\tQuelle remarquable interprétation !\nWhat are we having for supper?\tQu'avons-nous à dîner?\nWhat are you doing in my room?\tQue fais-tu dans ma chambre ?\nWhat are you doing in my room?\tQue faites-vous dans ma chambre ?\nWhat are you doing these days?\tQue fais-tu ces temps-ci ?\nWhat are you doing these days?\tQue faites-vous ces temps-ci ?\nWhat are you going to do next?\tQue vas-tu faire ensuite ?\nWhat are you going to do next?\tQu'allez-vous faire ensuite ?\nWhat are you snickering about?\tDe quoi ricanez-vous ?\nWhat are you still doing here?\tQu'est-ce que tu fais encore ici ?\nWhat changes should we expect?\tÀ quels changements devrions-nous nous attendre ?\nWhat company do you represent?\tQuelle entreprise représentez-vous?\nWhat day are you usually free?\tQuel jour es-tu libre habituellement ?\nWhat did I do to deserve this?\tQu'ai-je donc fait pour mériter ça ?\nWhat did I do to deserve this?\tQu'ai-je donc fait pour mériter cela ?\nWhat did Tom put into the bag?\tQu'est-ce que Tom a mis dans le sac ?\nWhat did you do with my pants?\tQu'avez-vous fait de mon pantalon ?\nWhat did you do with that car?\tQu'as-tu fait de cette voiture ?\nWhat did you do with that car?\tQu'avez-vous fait de cette voiture ?\nWhat did you expect to happen?\tQu'espérais-tu qu'il advienne ?\nWhat did you expect to happen?\tQu'espériez-vous qu'il advienne ?\nWhat do you grow on your farm?\tQue cultivez-vous, dans votre ferme ?\nWhat do you have in your hand?\tQu'as-tu dans la main ?\nWhat do you have in your hand?\tQu'avez-vous dans la main ?\nWhat do you have in your hand?\tQu'as-tu dans la main ?\nWhat do you have in your hand?\tQu'avez-vous dans la main ?\nWhat do you hope to find here?\tQu'espères-tu trouver ici ?\nWhat do you learn English for?\tPourquoi apprends-tu l'anglais ?\nWhat do you learn English for?\tPourquoi apprenez-vous l'anglais ?\nWhat do you learn English for?\tDans quel but apprends-tu l'anglais ?\nWhat do you learn English for?\tDans quel but apprenez-vous l'anglais ?\nWhat do you learn Spanish for?\tPourquoi est-ce que tu apprends l'espagnol ?\nWhat do you need a doctor for?\tPourquoi as-tu besoin d'un médecin ?\nWhat do you need a doctor for?\tPourquoi avez vous besoin d'un médecin ?\nWhat do you think I was doing?\tQue penses-tu que j'étais en train de faire ?\nWhat exactly are you implying?\tQu'est-ce que tu insinues exactement ?\nWhat exactly are you implying?\tQu'insinuez-vous exactement ?\nWhat goes around comes around.\tQui sème le vent, récolte la tempête.\nWhat happened can't be undone.\tCe qui a été fait ne peut pas être défait.\nWhat happened to my furniture?\tQu'est-il arrivé à mes meubles ?\nWhat have I done with my keys?\tQu'est-ce que j'ai fait de mes clés ‽\nWhat have I done with my keys?\tQu'ai-je fait de mes clés ‽\nWhat he said may well be true.\tIl se peut bien que ce qu'il a dit soit vrai.\nWhat if something gets broken?\tEt si quelque chose casse ?\nWhat is done cannot be undone.\tCe qui est fait ne peut pas être défait.\nWhat is the depth of the lake?\tQuelle est la profondeur de ce lac ?\nWhat is the name of that bird?\tComment s'appelle cet oiseau ?\nWhat is the name of that bird?\tComment s’appelle cet oiseau ?\nWhat is the name of that bird?\tComment nomme-t-on cet oiseau ?\nWhat is the name of that bird?\tComment se nomme cet oiseau ?\nWhat is the name of that bird?\tComment se nomme cet oiseau ?\nWhat is the name of that bird?\tQuel est le nom de cet oiseau ?\nWhat is the price of this cap?\tQuel est le prix de cette casquette ?\nWhat is the title of the book?\tQuel est le titre du livre ?\nWhat is there to be afraid of?\tQu'y a-t-il là d'effrayant ?\nWhat is wrong with you people?\tQu'est-ce qui ne va pas chez vous ?\nWhat is wrong with you people?\tQu'est-ce qui déconne chez vous ?\nWhat is your favorite holiday?\tQuel est votre jour de fête préféré ?\nWhat is your favorite holiday?\tQuel est ton jour de fête préféré ?\nWhat keeps you awake at night?\tQu'est-ce qui te garde éveillé la nuit ?\nWhat keeps you awake at night?\tQu'est-ce qui te garde éveillée la nuit ?\nWhat kind of beer do you have?\tQuel sorte de bières avez-vous ?\nWhat kind of beer do you have?\tQuel genre de bières as-tu ?\nWhat kind of car do you drive?\tQuelle sorte de voiture conduisez-vous ?\nWhat kind of car do you drive?\tQuelle sorte de voiture conduis-tu ?\nWhat kind of meal did you eat?\tQuelle sorte de repas as-tu mangé ?\nWhat kind of meal did you eat?\tQuelle sorte de repas avez-vous mangé ?\nWhat kind of sports do you do?\tQuelle sorte de sports pratiques-tu ?\nWhat kind of sports do you do?\tQuelle sorte de sports pratiquez-vous ?\nWhat kind of wine do you have?\tQuelle sorte de vin avez-vous ?\nWhat kind of wine do you have?\tQuelle sorte de vin as-tu ?\nWhat kind of work will you do?\tQuelle sorte de travail feras-tu ?\nWhat kind of work will you do?\tQuelle sorte de travail ferez-vous ?\nWhat made him change his mind?\tQu'est-ce qui lui a fait changer d'avis ?\nWhat precisely does that mean?\tQu'est-ce que cela signifie, exactement ?\nWhat prompted you to move out?\tQu'est-ce qui t'a poussé à déménager ?\nWhat should I do if Tom calls?\tQue devrais-je faire si Tom appelle ?\nWhat should I do to save time?\tQue devrais-je faire pour économiser du temps ?\nWhat should we do if it rains?\tQue devrions-nous faire s'il pleut ?\nWhat sort of danger are we in?\tQuelle sorte de péril encourons-nous ?\nWhat subject do you like best?\tQuel sujet préfères-tu ?\nWhat subject do you like best?\tQuel sujet préférez-vous ?\nWhat time are you coming back?\tA quelle heure rentres-tu ?\nWhat time are you coming back?\tTu rentres quand ?\nWhat time did the meeting end?\tÀ quelle heure la réunion s'est-elle finie ?\nWhat time do you go to school?\tÀ quelle heure te rends-tu à l'école ?\nWhat time does the store open?\tÀ quelle heure le magasin ouvre-t-il ?\nWhat time does your class end?\tÀ quelle heure finit votre cours ?\nWhat time does your class end?\tÀ quelle heure finit ton cours ?\nWhat time is it by your clock?\tQuelle heure indique votre montre?\nWhat time is it by your watch?\tQuelle heure est-il sur ta montre ?\nWhat time is it by your watch?\tQuelle heure est-il à ta montre ?\nWhat time is it by your watch?\tQuelle heure est-il à votre montre ?\nWhat time shall I pick you up?\tÀ quelle heure dois-je venir te chercher ?\nWhat time shall I pick you up?\tÀ quelle heure dois-je venir te prendre ?\nWhat time shall I pick you up?\tÀ quelle heure dois-je venir vous chercher ?\nWhat time shall I pick you up?\tÀ quelle heure dois-je venir vous prendre ?\nWhat was it that you gave him?\tQue lui as-tu donné ?\nWhat was it that you gave him?\tQue lui avez-vous donné ?\nWhat will become of the child?\tQu'adviendra-t-il de l'enfant ?\nWhat will the neighbors think?\tQue penseront les voisins ?\nWhat will the weather be like?\tQuel temps fera-t-il ?\nWhat would you do in my place?\tQu'est-ce que tu ferais à ma place ?\nWhat would you do in my place?\tQu'est-ce que vous feriez à ma place ?\nWhat would you do in my place?\tQue feriez-vous à ma place ?\nWhat you did to Tom was cruel.\tCe que tu as fait à Tom était cruel.\nWhat you did to Tom was cruel.\tCe que vous avez fait à Tom était cruel.\nWhat you were taught is wrong.\tCe qu'on vous a enseigné est faux.\nWhat're you doing with my car?\tQu'est-ce que tu fais avec ma voiture ?\nWhat're you doing with my car?\tQue faites-vous avec ma voiture ?\nWhat're you doing with my car?\tQu'êtes-vous en train de faire avec ma voiture ?\nWhat's the teacher explaining?\tQu'est-ce que le professeur est en train d'expliquer ?\nWhat's the weather like today?\tQuel temps fait-il aujourd'hui ?\nWhat's with all the questions?\tC'est quoi, toutes ces questions ?\nWhat's wrong with being naked?\tQuel est le problème à être nu ?\nWhat's wrong with being naked?\tQuel est le problème à être nue ?\nWhen did he say he would come?\tQuand a-t-il dit qu'il viendrait ?\nWhen did you arrive in Boston?\tT'es arrivé quand à Boston ?\nWhen did you arrive in Boston?\tQuand es-tu arrivé à Boston ?\nWhen did you arrive in Boston?\tQuand êtes-vous arrivés à Boston ?\nWhen did you arrive in Boston?\tQuand es-tu arrivée à Boston ?\nWhen did you arrive in Boston?\tQuand êtes-vous arrivé à Boston ?\nWhen did you arrive in Boston?\tQuand êtes-vous arrivées à Boston ?\nWhen did you arrive in Boston?\tQuand êtes-vous arrivée à Boston ?\nWhen did you become a teacher?\tQuand êtes-vous devenu enseignant ?\nWhen did you become a teacher?\tQuand êtes-vous devenue enseignante ?\nWhen did you become a teacher?\tQuand êtes-vous devenu instituteur ?\nWhen did you become a teacher?\tQuand êtes-vous devenue institutrice ?\nWhen did you become a teacher?\tQuand es-tu devenu enseignant ?\nWhen did you become a teacher?\tQuand es-tu devenu enseignante ?\nWhen did you become a teacher?\tQuand es-tu devenu instituteur ?\nWhen did you become a teacher?\tQuand es-tu devenue institutrice ?\nWhen did you two start dating?\tQuand avez-vous tous deux commencé à sortir ensemble ?\nWhen do you plan to check out?\tQuand prévois-tu de régler ta chambre ?\nWhen do you plan to check out?\tQuand prévoyez-vous de régler votre chambre ?\nWhen does the restaurant open?\tQuand le restaurant ouvre-t-il ?\nWhen it rains, she feels blue.\tElle a le cafard quand il se met à pleuvoir.\nWhen was the last time we met?\tQuand était la dernière fois que nous nous sommes rencontrés ?\nWhen will they give a concert?\tQuand donneront-ils un concert ?\nWhen will they give a concert?\tQuand donneront-elles un concert ?\nWhen will they give a concert?\tQuand donneront-ils un récital ?\nWhen will they give a concert?\tQuand donneront-elles un récital ?\nWhen you leave, I'll miss you.\tQuand tu t'en iras tu me manqueras.\nWhere are the other prisoners?\tOù sont les autres prisonniers ?\nWhere are the toilets, please?\tOù sont les toilettes, s'il vous plaît ?\nWhere are you going on Monday?\tTu vas où lundi ?\nWhere can we get what we want?\tOù pouvons-nous obtenir ce que nous voulons ?\nWhere did the accident happen?\tÀ quel endroit a eu lieu l'accident ?\nWhere did the money come from?\tD'où l'argent est-il venu ?\nWhere did you get on this bus?\tOù es-tu monté dans ce bus ?\nWhere did you get on this bus?\tOù êtes-vous monté dans ce bus ?\nWhere did you get on this bus?\tOù es-tu montée dans ce bus ?\nWhere did you get on this bus?\tOù êtes-vous montée dans ce bus ?\nWhere did you get on this bus?\tOù êtes-vous montées dans ce bus ?\nWhere did you get on this bus?\tOù êtes-vous montés dans ce bus ?\nWhere did you get to know her?\tOù avez-vous fait sa connaissance ?\nWhere did you get to know her?\tOù as-tu fait sa connaissance ?\nWhere did you hear that story?\tOù as-tu entendu cette histoire ?\nWhere did you hear that story?\tOù avez-vous entendu cette histoire ?\nWhere did you put my umbrella?\tOù as-tu mis mon parapluie ?\nWhere did you put my umbrella?\tOù avez-vous mis mon parapluie ?\nWhere did you see those women?\tOù as-tu vu ces femmes ?\nWhere do we get the textbooks?\tComment fait-on pour les manuels ?\nWhere do we get the textbooks?\tOù dégotons-nous les manuels ?\nWhere do you watch television?\tOù regardez-vous la télévision ?\nWhere does all this come from?\tD'où tout ceci provient-il ?\nWhere have you been up to now?\tOù as-tu été jusqu'à présent ?\nWhere have you been up to now?\tOù avez-vous été jusqu'à présent ?\nWhere on earth did you get it?\tOù l'as-tu dégoté ?\nWhere on earth did you get it?\tOù l'avez-vous dégoté ?\nWhere should I put my baggage?\tOù devrais-je mettre mes bagages ?\nWhere should I put my laundry?\tOù devrais-je mettre mon linge ?\nWhere will the bus pick us up?\tOù le bus va-t-il nous prendre ?\nWhere's the rest of our class?\tOù se trouve le reste de la classe ?\nWhere's the rest of the money?\tOù est le reste de l'argent ?\nWhich airport do I leave from?\tDe quel aéroport est-ce que je pars ?\nWhich doctor is attending you?\tQuel est ton médecin traitant ?\nWhich group is your friend in?\tÀ quel groupe appartient ton ami ?\nWhich of them is your brother?\tLequel d'entre eux est ton frère ?\nWho are you trying to impress?\tQui essayez-vous d'impressionner ?\nWho are you trying to impress?\tQui essaies-tu d'impressionner ?\nWho buried the gold bars here?\tQui a enterré ici les lingots d'or ?\nWho did you write a letter to?\tÀ qui as-tu écrit une lettre ?\nWho else are we talking about?\tDe qui d'autre sommes-nous en train de parler ?\nWho has eaten all the cookies?\tQui a mangé tous les cookies ?\nWho is going to speak tonight?\tQui va parler ce soir ?\nWho is their homeroom teacher?\tQui est leur professeur principal ?\nWho is your favorite composer?\tQuel est votre compositeur préféré ?\nWho taught you how to do this?\tQui t'as appris à faire ça ?\nWho told you to bring me here?\tQui t'a dit de m'emmener ici ?\nWho told you to bring me here?\tQui vous a dit de m'emmener ici ?\nWho was the letter written to?\tÀ l'attention de qui la lettre était-elle écrite ?\nWho will you give the book to?\tÀ qui donneras-tu le livre ?\nWho will you give the book to?\tÀ qui donnerez-vous le livre ?\nWhy are all these people here?\tPourquoi tous ces gens sont-ils là ?\nWhy are you making me do this?\tPourquoi me fais-tu faire ceci ?\nWhy are you really doing this?\tPourquoi fais-tu réellement ça ?\nWhy are you wearing a sweater?\tPourquoi portes-tu un chandail ?\nWhy aren't you coming with us?\tPourquoi est-ce que tu ne viens pas avec nous ?\nWhy did Tom leave so suddenly?\tPourquoi Tom est-il parti si soudainement ?\nWhy did the police arrest Tom?\tPourquoi la police a-t-elle arrêté Tom ?\nWhy did you come home so late?\tPourquoi es-tu rentré à la maison si tard ?\nWhy did you come home so late?\tPourquoi es-tu rentrée aussi tard à la maison ?\nWhy did you come home so late?\tPourquoi êtes-vous rentrée à la maison aussi tard ?\nWhy did you come home so late?\tPourquoi êtes-vous rentré à la maison aussi tard ?\nWhy did you come home so late?\tPourquoi êtes-vous rentrées à la maison aussi tard ?\nWhy did you come home so late?\tPourquoi êtes-vous rentrés à la maison aussi tard ?\nWhy didn't she come yesterday?\tPourquoi n'est-elle pas venue hier ?\nWhy didn't they say something?\tPourquoi n'ont-ils rien dit?\nWhy didn't you call me sooner?\tPourquoi ne m'as-tu pas appelé plus tôt ?\nWhy didn't you call me sooner?\tPourquoi ne m'avez-vous pas appelé plus tôt ?\nWhy didn't you dance with him?\tPourquoi n'as-tu pas dansé avec lui ?\nWhy didn't you dance with him?\tPourquoi n'avez-vous pas dansé avec lui ?\nWhy do I have to go to school?\tPourquoi dois-je aller à l'école ?\nWhy do I have to go to school?\tPourquoi me faut-il aller à l'école ?\nWhy do people kill themselves?\tPourquoi les gens se suicident-ils ?\nWhy do you not believe in God?\tPourquoi vous ne croyez pas en Dieu ?\nWhy do you not believe in God?\tPourquoi ne crois-tu pas en Dieu ?\nWhy do you want to be a nurse?\tPourquoi ne veux-tu pas être infirmière ?\nWhy do you want to be a nurse?\tPourquoi ne voulez-vous pas être infirmière ?\nWhy does Tom want to go there?\tPourquoi est-ce que Tom veut y aller ?\nWhy doesn't anyone believe me?\tPourquoi personne ne me croit-il ?\nWhy don't I have a girlfriend?\tPourquoi n'ai-je pas de petite amie ?\nWhy don't I have a girlfriend?\tPourquoi n'ai-je pas de petite copine ?\nWhy don't I have a girlfriend?\tPourquoi n'ai-je pas de nana ?\nWhy don't we ask Tom's advice?\tPourquoi ne demanderions-nous pas l'avis de Tom?\nWhy don't we cancel the party?\tPourquoi n'annulons-nous pas la fête ?\nWhy don't we duck back inside?\tPourquoi ne nous glissons-nous pas à nouveau à l'intérieur ?\nWhy don't we talk for a while?\tPourquoi ne discuterions-nous pas un moment ?\nWhy don't you answer your dad?\tPourquoi ne réponds-tu pas à ton papa ?\nWhy don't you drop her a line?\tPourquoi ne lui écris-tu pas un mot ?\nWhy don't you drop her a line?\tPourquoi ne lui écrivez-vous pas un mot ?\nWhy don't you give me a break?\tPourquoi ne m'accordes-tu pas une pause ?\nWhy don't you give me a break?\tPourquoi est-ce que tu ne me fiches pas la paix ?\nWhy don't you give me a break?\tPourquoi est-ce que vous ne me fichez pas la paix ?\nWhy don't you give up smoking?\tPourquoi n'arrêtes-tu pas de fumer ?\nWhy don't you give up smoking?\tPourquoi n'arrêtez-vous pas de fumer ?\nWhy don't you leave him alone?\tPourquoi ne le laisses-tu pas tranquille ?\nWhy don't you leave him alone?\tPourquoi ne le laissez-vous pas tranquille ?\nWhy have you been avoiding me?\tPourquoi m'as-tu évité ?\nWhy have you been avoiding me?\tPourquoi m'avez-vous évité ?\nWhy have you been avoiding me?\tPourquoi m'as-tu évitée ?\nWhy have you been avoiding me?\tPourquoi m'avez-vous évitée ?\nWhy is everyone looking at me?\tPourquoi tout le monde me regarde-t-il ?\nWhy is everyone looking at us?\tPourquoi tout le monde nous regarde-t-il ?\nWhy should we study economics?\tPourquoi devrions-nous étudier l'économie ?\nWhy wasn't I informed earlier?\tPourquoi n'en ai-je pas été informé plus tôt ?\nWhy wasn't I informed earlier?\tPourquoi n'en ai-je pas été informée plus tôt ?\nWhy were 14,000 soldiers lost?\tPourquoi 14 000 soldats furent-ils perdus ?\nWhy were you absent yesterday?\tPourquoi étiez-vous absent hier ?\nWhy were you absent yesterday?\tPourquoi étiez-vous absents hier ?\nWhy were you absent yesterday?\tPourquoi étiez-vous absente hier ?\nWhy were you absent yesterday?\tPourquoi étiez-vous absentes hier ?\nWhy were you absent yesterday?\tPourquoi étais-tu absent hier ?\nWhy were you absent yesterday?\tPourquoi étais-tu absente hier ?\nWhy were you holding his hand?\tPourquoi lui tenais-tu la main ?\nWhy were you holding his hand?\tPourquoi lui teniez-vous la main ?\nWhy were you holding his hand?\tPourquoi étais-tu en train de lui tenir la main ?\nWhy were you holding his hand?\tPourquoi étiez-vous en train de lui tenir la main ?\nWhy won't my dog eat dog food?\tPourquoi mon chien refuse-t-il de manger de la nourriture pour chien ?\nWhy would you want to do that?\tPourquoi voudrais-tu faire ça ?\nWhy would you want to do that?\tPourquoi voudriez-vous faire ça ?\nWill it bother you if I smoke?\tEst-ce que ça vous dérange si je fume ?\nWill it bother you if I smoke?\tCela vous dérange si je fume ?\nWill it bother you if I smoke?\tCela vous dérange-t-il que je fume ?\nWill it bother you if I smoke?\tCela vous dérange-t-il, si je fume ?\nWill it bother you if I smoke?\tCela te dérange-t-il si je fume ?\nWill it bother you if I smoke?\tCela vous dérange-t-il si je fume ?\nWill it bother you if I smoke?\tCela te dérange-t-il que je fume ?\nWill that make any difference?\tCela va-t-il faire la moindre différence ?\nWill you all be here tomorrow?\tSerez-vous tous là demain ?\nWill you go on foot or by bus?\tIrez-vous à pied ou en bus ?\nWill you help me for a minute?\tVeux-tu m'aider une minute ?\nWill you help me for a minute?\tVoulez-vous m'aider une minute ?\nWill you lend me your bicycle?\tPeux-tu me prêter ton vélo ?\nWill you lend me your bicycle?\tVoulez-vous me prêter votre vélo ?\nWill you please let me go now?\tVoulez-vous me laisser partir, maintenant, je vous prie ?\nWill you please let me go now?\tVeux-tu me laisser partir, maintenant, je te prie ?\nWill you please shut the door?\tVeux-tu fermer la porte, je te prie ?\nWill you please shut the door?\tVas-tu fermer la porte, je te prie ?\nWill you please shut the door?\tVoulez-vous fermer la porte, je vous prie ?\nWill you please shut the door?\tAllez-vous fermer la porte, je vous prie ?\nWill you stay at home tonight?\tResteras-tu à la maison ce soir ?\nWill you switch seats with me?\tÉchangerez-vous des places avec moi ?\nWinter is cold, but I like it.\tL'hiver est froid, mais j'aime cette saison.\nWiser words were never spoken.\tOn n'a jamais rien dit de plus sage.\nWomen like colorful umbrellas.\tLes femmes aiment les parapluies de couleur.\nWomen like colorful umbrellas.\tLes femmes apprécient les parapluies colorés.\nWon't somebody please help me?\tQuelqu'un ne m'aidera-t-il donc pas ?\nWon't you go shopping with me?\tN'iras-tu pas faire du shopping avec moi ?\nWon't you go shopping with me?\tNe veux-tu pas venir faire des courses avec moi ?\nWorld War I broke out in 1914.\tLa première Guerre Mondiale a éclaté en 1914.\nWould anyone like some coffee?\tQuiconque aimerait-il du café ?\nWould you do something for me?\tVoudriez-vous faire quelque chose pour moi ?\nWould you do something for me?\tFeriez-vous quelque chose pour moi ?\nWould you do something for me?\tFerais-tu quelque chose pour moi ?\nWould you do something for me?\tVoudrais-tu faire quelque chose pour moi ?\nWould you give me a hand here?\tMe tendriez-vous la main, à ce stade ?\nWould you like me to order it?\tVeux-tu que je le commande ?\nWould you like some more cake?\tVoudrais-tu davantage de pâtisserie ?\nWould you like to have a look?\tVeux-tu y jeter un œil ?\nWould you like to have a look?\tVoulez-vous y jeter un œil ?\nWould you mind coming with me?\tCela te dérangerait-il de venir avec moi ?\nWould you mind coming with me?\tCela vous ennuierait-il de venir avec moi ?\nWould you mind not doing that?\tPourrais-tu, s'il te plaît, ne pas le faire ?\nWould you mind not doing that?\tPourriez-vous vous arrêter de faire ça ?\nWould you please stop singing?\tVoudrais-tu, s'il te plaît, arrêter de chanter ?\nWould you please stop singing?\tVoudriez-vous, s'il vous plaît, arrêter de chanter ?\nWould you please stop talking?\tPourrais-tu t'arrêter de parler, je te prie ?\nWould you please stop talking?\tPourriez-vous vous arrêter de parler, je vous prie ?\nWould you put out the candles?\tVoudrais-tu éteindre les bougies ?\nWould you put out the candles?\tVoudriez-vous éteindre les bougies ?\nYesterday, I bought a red car.\tHier, j'ai acheté une voiture rouge.\nYou are a beautiful butterfly.\tTu es un beau papillon.\nYou are nothing but a student.\tTu n'es qu'un étudiant.\nYou are so childish sometimes.\tVous êtes parfois si puéril.\nYou are so childish sometimes.\tVous êtes parfois si puérile.\nYou are so childish sometimes.\tVous êtes parfois si puérils.\nYou are so childish sometimes.\tVous êtes parfois si puériles.\nYou are so childish sometimes.\tTu es parfois si puéril.\nYou are so childish sometimes.\tTu es parfois si puérile.\nYou are the tallest of us all.\tTu es le plus grand de nous tous.\nYou are twice as strong as me.\tTu es deux fois plus fort que moi.\nYou are twice as strong as me.\tTu es deux fois plus forte que moi.\nYou are twice as strong as me.\tVous êtes deux fois plus fort que moi.\nYou are twice as strong as me.\tVous êtes deux fois plus forte que moi.\nYou are twice as strong as me.\tVous êtes deux fois plus forts que moi.\nYou are twice as strong as me.\tVous êtes deux fois plus fortes que moi.\nYou broke the washing machine.\tTu as cassé la machine à laver.\nYou can borrow my car anytime.\tTu peux prendre ma voiture quand bon te semble.\nYou can eat whatever you like.\tTu peux manger ce qui te chante.\nYou can eat whatever you like.\tTu peux manger ce que tu aimes.\nYou can eat whatever you like.\tTu peux manger ce que bon te semble.\nYou can get it at a bookstore.\tVous pouvez le trouver chez un libraire.\nYou can say whatever you want.\tTu peux dire tout ce que tu veux.\nYou can't be thirty years old.\tTu ne peux pas avoir trente ans !\nYou can't be thirty years old.\tVous ne pouvez pas avoir trente ans !\nYou can't count on Tom's help.\tVous ne pouvez pas compter sur l'aide de Tom.\nYou can't count on their help.\tTu ne peux pas compter sur leur aide.\nYou can't do this to yourself.\tOn ne peut s'infliger ça à soi-même.\nYou can't do this to yourself.\tTu ne peux pas t'infliger ça à toi-même.\nYou can't do this to yourself.\tVous ne pouvez pas vous infliger ça à vous-même.\nYou can't do this to yourself.\tVous ne pouvez pas vous infliger ça à vous-mêmes.\nYou can't escape from reality.\tOn ne peut s'échapper de la réalité.\nYou can't get there from here.\tOn ne peut pas y parvenir d'ici.\nYou can't hold me responsible.\tTu ne peux pas me tenir responsable.\nYou can't hold me responsible.\tVous ne pouvez pas me tenir responsable.\nYou can't just not go to work.\tTu ne peux simplement pas ne pas aller au travail.\nYou can't live on that island.\tIl est impossible de vivre sur cette île.\nYou can't live on that island.\tOn ne peut pas vivre sur cette île.\nYou can't make everyone happy.\tOn ne peut satisfaire tout le monde.\nYou can't park on this street.\tTu ne peux pas te garer dans cette rue.\nYou can't talk to me that way.\tVous ne pouvez me parler ainsi.\nYou can't talk to me that way.\tTu ne peux pas me parler ainsi.\nYou can't trust what she says.\tOn ne peut pas se fier à ce qu'elle dit.\nYou cannot live by love alone.\tOn ne saurait vivre que d'amour.\nYou cannot live without water.\tVous ne pouvez pas vivre sans eau.\nYou cannot park your car here.\tTu ne peux pas garer ta voiture ici.\nYou didn't have to wake me up.\tTu n'avais pas besoin de me réveiller.\nYou didn't have to wake me up.\tVous n'aviez pas besoin de me réveiller.\nYou didn't tell me Tom smoked.\tTu ne m'as pas dit que Tom fumait.\nYou didn't tell me Tom smoked.\tVous ne m'avez pas dit que Tom fumait.\nYou didn't tell me everything.\tVous ne m'avez pas tout dit.\nYou didn't tell me everything.\tVous ne m'avez pas tout conté.\nYou didn't tell me everything.\tVous, vous ne m'avez pas tout dit.\nYou didn't tell me everything.\tVous, vous ne m'avez pas tout conté.\nYou didn't tell me everything.\tToi, tu ne m'as pas tout dit.\nYou didn't tell me everything.\tTu ne m'as pas tout dit.\nYou didn't tell me everything.\tToi, tu ne m'as pas tout conté.\nYou didn't tell me everything.\tTu ne m'as pas tout conté.\nYou do that and I'll fire you.\tTu fais ça et je te vire.\nYou do that and I'll fire you.\tVous faites ça et je vous vire.\nYou don't even try to help me.\tTu n’essaies même pas de m’aider.\nYou don't get enough exercise.\tTu ne fais pas assez d'exercice.\nYou don't get enough exercise.\tVous ne faites pas assez d'exercice.\nYou don't have to answer that.\tVous n'avez pas à répondre à cela.\nYou don't have to answer that.\tTu n'as pas à répondre à cela.\nYou don't have to come see me.\tVous n'êtes pas obligé de venir me voir.\nYou don't have to come see me.\tVous n'êtes pas obligée de venir me voir.\nYou don't have to come see me.\tVous n'êtes pas obligés de venir me voir.\nYou don't have to come see me.\tVous n'êtes pas obligées de venir me voir.\nYou don't have to come see me.\tTu n'es pas obligé de venir me voir.\nYou don't have to come see me.\tTu n'es pas obligée de venir me voir.\nYou don't know German, do you?\tTu ne connais pas l'allemand, n'est-ce pas ?\nYou don't know German, do you?\tTu ne sais pas l'allemand, si ?\nYou don't need to convince me.\tTu n'as pas besoin de me convaincre.\nYou don't need to study today.\tTu n'as pas besoin d'étudier aujourd'hui.\nYou don't seem very concerned.\tTu ne sembles pas très concerné.\nYou don't seem very concerned.\tTu ne sembles pas très concernée.\nYou don't seem very concerned.\tVous ne semblez pas très concerné.\nYou don't seem very concerned.\tVous ne semblez pas très concernée.\nYou don't seem very concerned.\tVous ne semblez pas très concernés.\nYou don't seem very concerned.\tVous ne semblez pas très concernées.\nYou don't seem very satisfied.\tTu ne sembles pas très satisfait.\nYou don't seem very satisfied.\tTu ne sembles pas très satisfaite.\nYou don't seem very satisfied.\tVous ne semblez pas très satisfait.\nYou don't seem very satisfied.\tVous ne semblez pas très satisfaite.\nYou don't seem very satisfied.\tVous ne semblez pas très satisfaits.\nYou don't seem very satisfied.\tVous ne semblez pas très satisfaites.\nYou don't talk to me that way.\tOn ne me parle pas ainsi.\nYou dropped your handkerchief.\tVous avez fait tomber votre mouchoir.\nYou dropped your handkerchief.\tTu as fait tomber ton mouchoir.\nYou got here late, didn't you?\tTu es arrivé en retard, non ?\nYou guys can do it if you try.\tVous pouvez le faire, les gars, si vous essayez.\nYou had a week to finish this.\tTu avais une semaine pour finir ceci.\nYou had a week to finish this.\tVous aviez une semaine pour finir ceci.\nYou had better see the doctor.\tTu devrais voir le médecin.\nYou had plenty of opportunity.\tVous avez eu plein d'occasions.\nYou had plenty of opportunity.\tVous avez disposé de plein d'occasions.\nYou had plenty of opportunity.\tTu as eu plein d'occasions.\nYou have a pretty good memory.\tTu as une assez bonne mémoire.\nYou have a pretty good memory.\tTu es doté d'une assez bonne mémoire.\nYou have a pretty good memory.\tVous avez une assez bonne mémoire.\nYou have a pretty good memory.\tVous êtes doté d'une assez bonne mémoire.\nYou have a pretty good memory.\tVous êtes dotée d'une assez bonne mémoire.\nYou have a pretty good memory.\tTu es dotée d'une assez bonne mémoire.\nYou have done a wonderful job.\tTu as réalisé un merveilleux travail.\nYou have got to be kidding me.\tTu dois être en train de me charrier.\nYou have got to be kidding me.\tVous devez être en train de me charrier.\nYou have my attention already.\tTu as déjà mon attention.\nYou have my attention already.\tVous avez déjà mon attention.\nYou have no right to go there.\tVous n'avez pas le droit d'aller là.\nYou have to do it by yourself.\tTu dois le faire toi-même.\nYou have to eat before you go.\tIl te faut manger avant d'y aller.\nYou have to eat before you go.\tIl vous faut manger avant d'y aller.\nYou have to obey your parents.\tIl te faut obéir à tes parents.\nYou have to take in my jacket.\tIl vous faut prendre soin de ma veste.\nYou have to tell me the truth.\tIl vous faut me dire la vérité.\nYou have to tell me the truth.\tIl te faut me dire la vérité.\nYou just don't get it, do you?\tTu ne captes vraiment pas, non ?\nYou just don't get it, do you?\tVous ne captez vraiment pas, non ?\nYou knew the answer all along.\tVous connaissiez la réponse tout du long.\nYou knew the answer all along.\tTu connaissais la réponse tout du long.\nYou look good in this picture.\tTu es beau sur cette photo.\nYou love your work, don't you?\tTu aimes ton travail, n'est-ce pas ?\nYou love your work, don't you?\tVous aimez votre travail, n'est-ce pas ?\nYou made a great contribution.\tVous avez fait une importante contribution.\nYou make it sound very simple.\tTu donnes l'impression que c'est très simple.\nYou may as well leave at once.\tVous pouvez aussi bien partir sur-le-champ.\nYou may as well leave at once.\tTu peux aussi bien partir sur-le-champ.\nYou may get it free of charge.\tTu peux l'obtenir gratuitement.\nYou may have that opportunity.\tIl se peut que tu aies cette occasion.\nYou may have that opportunity.\tIl se peut que vous ayez cette occasion.\nYou may have that opportunity.\tIl se peut que vous disposiez de cette occasion.\nYou may sit down on the chair.\tTu peux t'asseoir sur la chaise.\nYou must have seen them there.\tTu as dû les voir là-bas.\nYou must know Tom pretty well.\tTu dois connaître Tom assez bien.\nYou must know Tom pretty well.\tVous devez connaître Tom assez bien.\nYou must look after the child.\tTu dois t'occuper de l'enfant.\nYou must make up for the loss.\tTu dois compenser la perte.\nYou must make up for the loss.\tVous devez compenser la perte.\nYou must not behave like this.\tVous ne devez pas vous conduire ainsi.\nYou must not behave like this.\tTu ne dois pas te conduire ainsi.\nYou must pay attention to him.\tTu dois lui prêter attention.\nYou must pay attention to him.\tVous devez lui prêter attention.\nYou must reboot your computer.\tVous devez redémarrer votre ordinateur.\nYou must reboot your computer.\tTu dois redémarrer ton ordinateur.\nYou must see it to believe it.\tIl vous faut le voir pour le croire.\nYou must take care of the dog.\tVous devez vous occuper du chien.\nYou must take care of the dog.\tTu dois t'occuper du chien.\nYou must think of your family.\tIl vous faut penser à votre famille.\nYou must think of your family.\tIl te faut penser à ta famille.\nYou must work hard to succeed.\tTu dois travailler dur pour réussir.\nYou must work hard to succeed.\tIl vous faut travailler dur pour réussir.\nYou must work hard to succeed.\tIl te faut travailler dur pour réussir.\nYou must work hard to succeed.\tOn doit travailler dur pour réussir.\nYou must work hard to succeed.\tVous devez travailler dur pour réussir.\nYou must work hard to succeed.\tIl nous faut travailler dur pour réussir.\nYou need to find your own way.\tIl te faut trouver ton propre chemin.\nYou need to find your own way.\tIl vous faut trouver votre propre chemin.\nYou need to save the princess.\tIl te faut sauver la princesse.\nYou need to save the princess.\tIl vous faut sauver la princesse.\nYou need to save the princess.\tIl faut que tu sauves la princesse.\nYou need to save the princess.\tIl faut que vous sauviez la princesse.\nYou need to sit down and rest.\tVous devez vous asseoir et vous reposer.\nYou need to sit down and rest.\tTu dois t'asseoir et te reposer.\nYou needn't have taken a taxi.\tTu n'avais pas besoin de prendre un taxi.\nYou needn't have taken a taxi.\tVous n'aviez pas besoin de prendre un taxi.\nYou never could keep a secret.\tTu n'as jamais pu garder un secret.\nYou never could keep a secret.\tVous n'avez jamais pu garder un secret.\nYou never should've done that.\tTu n'aurais jamais dû faire cela.\nYou never should've done that.\tVous n'auriez jamais dû faire cela.\nYou never tell me you love me.\tTu ne me dis jamais que tu m'aimes.\nYou obviously don't have time.\tVous n'avez à l'évidence pas le temps.\nYou obviously don't have time.\tTu n'as à l'évidence pas le temps.\nYou obviously don't live here.\tVous ne vivez à l'évidence pas ici.\nYou obviously don't live here.\tTu ne vis à l'évidence pas ici.\nYou probably just have a cold.\tVraisemblablement tu as juste un rhume.\nYou remind me of your brother.\tVous me rappelez votre frère.\nYou remind me of your brother.\tTu me rappelles ton frère.\nYou said we'd never catch Tom.\tTu as dit que nous n'attraperions jamais Tom.\nYou said we'd never catch Tom.\tVous avez dit que nous n'attraperions jamais Tom.\nYou said you wanted the truth.\tTu as dit que tu voulais la vérité.\nYou said you wanted the truth.\tVous avez dit que vous vouliez la vérité.\nYou said you wanted the truth.\tTu disais que tu voulais la vérité.\nYou said you wanted the truth.\tVous disiez que vous vouliez la vérité.\nYou seem a million miles away.\tTu as l'air d'être à des années-lumière.\nYou seem pretty calm about it.\tTu sembles plutôt calme à ce sujet.\nYou should ask Tom for advice.\tTu devrais demander conseil à Tom.\nYou should ask Tom for advice.\tVous devriez demander conseil à Tom.\nYou should avoid binge eating.\tTu devrais éviter de te gaver.\nYou should be more reasonable.\tTu devrais être plus raisonnable.\nYou should do that right away.\tVous devriez faire ça tout de suite.\nYou should have visited Kyoto.\tTu aurais dû visiter Kyoto.\nYou should have worked harder.\tVous auriez dû travailler plus dur.\nYou should have worked harder.\tTu aurais dû être plus dur à la tâche.\nYou should keep your promises.\tTu devrais tenir tes promesses.\nYou should keep your promises.\tVous devriez tenir vos promesses.\nYou should stay at home today.\tTu devrais rester à la maison aujourd'hui.\nYou should tell him the truth.\tTu devrais lui dire la vérité.\nYou should tell him the truth.\tVous devriez lui dire la vérité.\nYou should try the exam again.\tTu devrais essayer de repasser l'examen.\nYou should've called the cops.\tVous auriez dû appeler les flics.\nYou should've called the cops.\tTu aurais dû appeler les flics.\nYou should've never come here.\tTu n'aurais jamais dû venir ici.\nYou should've never come here.\tVous n'auriez jamais dû venir ici.\nYou should've said so earlier.\tTu aurais dû le dire plus tôt.\nYou should've said so earlier.\tVous auriez dû le dire plus tôt.\nYou shouldn't have gone there.\tTu n'aurais pas dû aller là.\nYou shouldn't make fun of Tom.\tVous ne devriez pas vous moquer de Tom.\nYou shouldn't make fun of Tom.\tTu ne devrais pas te moquer de Tom.\nYou shouldn't prejudge people.\tTu ne devrais pas avoir de préjugés sur les gens.\nYou still have a lot to learn.\tTu as encore beaucoup à apprendre.\nYou still have a lot to learn.\tVous avez encore beaucoup à apprendre.\nYou think I did it, don't you?\tTu penses que c’est moi qui l’ai fait, n’est-ce pas ?\nYou used to smoke, didn't you?\tTu fumais avant, n'est-ce pas ?\nYou were jealous, weren't you?\tTu étais jaloux, n'est-ce pas ?\nYou were jealous, weren't you?\tTu étais jalouse, n'est-ce pas ?\nYou were jealous, weren't you?\tVous étiez jaloux, n'est-ce pas ?\nYou were jealous, weren't you?\tVous étiez jalouses, n'est-ce pas ?\nYou were jealous, weren't you?\tVous étiez jalouse, n'est-ce pas ?\nYou were just doing your duty.\tTu faisais seulement ton devoir.\nYou were just doing your duty.\tVous ne faisiez que votre devoir.\nYou weren't serious, were you?\tVous n'étiez pas sérieux, si ?\nYou weren't serious, were you?\tVous n'étiez pas sérieuses, si ?\nYou weren't serious, were you?\tVous n'étiez pas sérieuse, si ?\nYou weren't serious, were you?\tTu n'étais pas sérieux, si ?\nYou weren't serious, were you?\tTu n'étais pas sérieuse, si ?\nYou will need an armed escort.\tVous aurez besoin d'une hôtesse armée.\nYou will need an armed escort.\tVous aurez besoin d'une escorte armée.\nYou will need an armed escort.\tTu auras besoin d'une escorte armée.\nYou will soon get to like her.\tVous allez bientôt l'apprécier.\nYou will soon get to like him.\tTu te mettras bientôt à l'aimer.\nYou will soon get to like him.\tVous vous mettrez sans tarder à l'aimer.\nYou will soon get to like him.\tVous allez bientôt l'apprécier.\nYou would make a great mother.\tTu ferais une super maman.\nYou would make a great mother.\tVous feriez une super maman.\nYou'd better do what Tom says.\tTu ferais mieux de faire ce que Tom dit.\nYou'd better do what Tom says.\tVous feriez mieux de faire ce que Tom dit.\nYou'd better go there on foot.\tTu ferais mieux d'y aller à pied.\nYou'll always be welcome here.\tTu seras toujours bienvenu ici.\nYou'll have to cook more food.\tTu devras cuire davantage de nourriture.\nYou'll understand it later on.\tTu le comprendras plus tard.\nYou'll understand it later on.\tVous le comprendrez plus tard.\nYou're doing an excellent job.\tTu fais un boulot excellent.\nYou're doing an excellent job.\tVous faites un excellent travail.\nYou're going to have to leave.\tTu vas devoir y aller.\nYou're going to love our food.\tVous allez adorer nos plats.\nYou're going to love our food.\tTu vas adorer notre nourriture.\nYou're home early, aren't you?\tTu es tôt à la maison, non ?\nYou're messing with me, right?\tTu es en train de me chercher, n'est-ce pas ?\nYou're messing with me, right?\tVous êtes en train de me chercher, n'est-ce pas ?\nYou're never too old to learn.\tMieux vaut tard que jamais.\nYou're never too old to learn.\tPersonne n'est trop vieux pour apprendre.\nYou're never too old to learn.\tOn n'est jamais trop vieux pour apprendre.\nYou're never too old to learn.\tOn est jamais trop vieux pour apprendre.\nYou're never too old to learn.\tTu n'es pas trop vieux pour apprendre.\nYou're not aiming high enough.\tTu ne vises pas assez haut.\nYou're not aiming high enough.\tVous ne visez pas assez haut.\nYou're not one of us, are you?\tVous n'êtes pas des nôtres, si ?\nYou're not one of us, are you?\tTu n'es pas des nôtres, si ?\nYou're not ready yet, are you?\tTu n'es pas encore prête, n'est-ce pas ?\nYou're not ready yet, are you?\tTu n'es pas encore prêt, n'est-ce pas ?\nYou're not ready yet, are you?\tVous n'êtes pas encore prête, n'est-ce pas ?\nYou're not ready yet, are you?\tVous n'êtes pas encore prêtes, n'est-ce pas ?\nYou're not ready yet, are you?\tVous n'êtes pas encore prêt, n'est-ce pas ?\nYou're not ready yet, are you?\tVous n'êtes pas encore prêts, n'est-ce pas ?\nYou're not satisfied, are you?\tTu n'es pas content, si ?\nYou're not satisfied, are you?\tVous n'êtes pas satisfait, si ?\nYou're off the hook this time.\tTu es tiré d'affaire cette fois.\nYou're on the path of success.\tTu es sur le chemin de la réussite.\nYou're preaching to the choir.\tTu prêches des convaincus.\nYou're preaching to the choir.\tVous prêchez des convaincus.\nYou're preaching to the choir.\tTu prêches un convaincu.\nYou're preaching to the choir.\tTu prêches une convaincue.\nYou're preaching to the choir.\tTu prêches des convaincues.\nYou're preaching to the choir.\tVous prêchez des convaincues.\nYou're preaching to the choir.\tVous prêchez une convaincue.\nYou're preaching to the choir.\tVous prêchez un convaincu.\nYou're respected by everybody.\tVous êtes respecté de tous.\nYou're supposed to be resting.\tTu es censé te reposer.\nYou're the one who trained me.\tC'est vous qui m'avez entraîné.\nYou're the one who trained me.\tC'est vous qui m'avez formé.\nYou're the one who trained me.\tC'est toi qui m'as entraîné.\nYou're the one who trained me.\tC'est toi qui m'as formé.\nYou're the one who trained me.\tC'est toi qui m'as entraînée.\nYou're the one who trained me.\tC'est toi qui m'as formée.\nYou're the one who trained me.\tC'est vous qui m'avez formée.\nYou're the one who trained me.\tC'est vous qui m'avez entraînée.\nYou're the one who trained me.\tVous êtes celui qui m'a entraîné.\nYou're the one who trained me.\tVous êtes celle qui m'a entraîné.\nYou're the one who trained me.\tVous êtes celui qui m'a entraînée.\nYou're the one who trained me.\tVous êtes celle qui m'a entraînée.\nYou're the one who trained me.\tVous êtes celle qui m'a formé.\nYou're the one who trained me.\tVous êtes celle qui m'a formée.\nYou're the one who trained me.\tVous êtes celui qui m'a formé.\nYou're the one who trained me.\tVous êtes celui qui m'a formée.\nYou're the one who trained me.\tTu es celui qui m'a formé.\nYou're the one who trained me.\tTu es celui qui m'a formée.\nYou're the one who trained me.\tTu es celle qui m'a formé.\nYou're the one who trained me.\tTu es celle qui m'a formée.\nYou're the one who trained me.\tTu es celle qui m'a entraîné.\nYou're the one who trained me.\tTu es celle qui m'a entraînée.\nYou're the one who trained me.\tTu es celui qui m'a entraîné.\nYou're the one who trained me.\tTu es celui qui m'a entraînée.\nYou're the only friend I have.\tTu es la seule amie que j'aie.\nYou're the only friend I have.\tTu es le seul ami que j'aie.\nYou're the same age as my son.\tTu as le même âge que mon fils.\nYou're the same age as my son.\tVous avez le même âge que mon fils.\nYou've been busy, haven't you?\tVous avez été occupé, non ?\nYou've been busy, haven't you?\tVous avez été occupés, non ?\nYou've been busy, haven't you?\tVous avez été occupées, non ?\nYou've been busy, haven't you?\tVous avez été occupée, non ?\nYou've got a big day tomorrow.\tTu as une journée chargée demain.\nYou've got your permit, right?\tVous disposez de votre permis, n'est-ce pas ?\nYou've got your permit, right?\tTu disposes de ton permis, n'est-ce pas ?\nYou've often said so yourself.\tVous l'avez souvent dit vous-même.\nYou've often said so yourself.\tTu l'as souvent dit toi-même.\nYou've really helped me a lot.\tTu m'as vraiment beaucoup aidé.\nYou've taught us a great deal.\tVous nous avez beaucoup enseigné.\nYou've taught us a great deal.\tTu nous as beaucoup enseigné.\nYour answer differs from mine.\tTa réponse diffère de la mienne.\nYour answer differs from mine.\tVotre réponse diffère de la mienne.\nYour approval is not required.\tTon approbation n'est pas requise.\nYour approval is not required.\tVotre approbation n'est pas requise.\nYour behavior was disgraceful.\tVotre comportement a été honteux.\nYour behavior was disgraceful.\tTon comportement a été honteux.\nYour behavior was inexcusable.\tTon comportement était inexcusable.\nYour bike is better than mine.\tVotre vélo est meilleur que le mien.\nYour bike is better than mine.\tTon vélo est meilleur que le mien.\nYour birthday is drawing near.\tTon anniversaire se rapproche.\nYour demands are unreasonable.\tVos exigences sont déraisonnables.\nYour demands are unreasonable.\tTes exigences sont déraisonnables.\nYour guess is as good as mine.\tTon intuition vaut la mienne.\nYour guess is as good as mine.\tTon impression vaut la mienne.\nYour new dress is very pretty.\tTa nouvelle robe est très jolie.\nYour objection has been noted.\tVotre objection a été notée.\nYour parents ought to know it.\tTes parents le savent forcément.\nYour story is hard to believe.\tTon histoire est difficile à croire.\nYour story is hard to believe.\tVotre histoire est difficile à croire.\nYour team is better than ours.\tVotre équipe est meilleure que la nôtre.\nYour team is better than ours.\tTon équipe est meilleure que la nôtre.\nYour telephone's ringing, Tom.\tTon téléphone sonne, Tom.\nYour telephone's ringing, Tom.\tVotre téléphone sonne, Tom.\nYou’ll see that I’m right.\tTu verras bientôt que j'ai raison.\n\"What time is it?\" he wondered.\t\"Quelle heure est-il ?\" se demanda-t-il.\n\"Yes, I was,\" said the student.\t\"Si, j'y étais\", répondit cet étudiant.\nA bad habit is easily acquired.\tIl est facile de prendre de mauvaises habitudes.\nA bad smell permeated the room.\tUne mauvaise odeur infestait la pièce.\nA bow is no use without arrows.\tUn arc est inutile sans flèches.\nA catastrophe has been averted.\tUne catastrophe a été évitée.\nA century is one hundred years.\tUn siècle fait cent années.\nA dairy cow is a useful animal.\tLa vache laitière est un animal utile.\nA dance will be held on Friday.\tOn dansera ce vendredi.\nA dead leaf fell to the ground.\tUne feuille morte tomba au sol.\nA dog followed me to my school.\tUn chien m'a suivi jusqu'à l'école.\nA dog followed me to my school.\tUn chien m'a suivie jusqu'à l'école.\nA fallen tree blocked the path.\tUn arbre abattu bloquait le chemin.\nA fire broke out near my house.\tUn feu est apparu près de chez moi.\nA fish leaped out of the water.\tUn poisson bondit hors de l'eau.\nA fish leaped out of the water.\tUn poisson a sauté hors de l'eau.\nA great future lies before her.\tUn grand avenir l'attend.\nA lot still remains to be done.\tBeaucoup reste encore à faire.\nA man called on you last night.\tUn homme est venu te voir la nuit dernière.\nA man called on you last night.\tUn homme est venu te rendre visite la nuit dernière.\nA man came to see me yesterday.\tUn homme est venu me voir hier.\nA map helps us study geography.\tUne carte nous aide à étudier la géographie.\nA new dress was bought for her.\tOn lui a acheté une nouvelle robe.\nA pretty waitress waited on us.\tUne jolie serveuse s'occupa de nous.\nA red dress made her stand out.\tUne robe rouge l'a distinguée.\nA strange feeling came over me.\tUne sensation étrange m'envahissait.\nA stranger phoned me yesterday.\tUn étranger m'a appelé hier.\nA thick fog delayed our flight.\tUn épais brouillard a retardé notre vol.\nA typhoon is approaching Japan.\tUn typhon s'approche du Japon.\nAdmission is free for children.\tL'entrée est gratuite pour les enfants.\nAll Tom does nowadays is study.\tDe nos jours, Tom ne fait plus qu'étudier.\nAll good things come to an end.\tToutes les bonnes choses ont une fin.\nAll of them were wearing black.\tTous portaient du noir.\nAll of you speak French, right?\tVous parlez tous français, n'est-ce pas ?\nAll our members are volunteers.\tTous nos membres sont volontaires.\nAll the parking lots were full.\tToutes les places du parking étaient occupées.\nAll the players did their best.\tTous les joueurs ont fait de leur mieux.\nAll the stones have been moved.\tToutes les pierres ont été bougées.\nAll the students study English.\tTous les étudiants étudient l'anglais.\nAll their efforts were in vain.\tTous leurs efforts furent vains.\nAll their efforts were in vain.\tTous leurs efforts étaient vains.\nAll you do is criticize others.\tTout ce que tu fais, c'est critiquer les autres.\nAll you do is criticize others.\tTout ce que vous faites, c'est critiquer les autres.\nAn elephant is a strong animal.\tUn éléphant est un animal puissant.\nAn ice pack will numb the pain.\tUn sac de glace engourdira la douleur.\nAn ugly man knocked on my door.\tUn homme laid frappa à ma porte.\nAnother bottle of wine, please.\tUne autre bouteille de vin, je vous prie !\nAny input would be appreciated!\tTout apport serait bienvenu !\nAnybody can solve that problem.\tTout le monde peut résoudre un tel problème.\nAnyone can use this dictionary.\tTout le monde peut utiliser ce dictionnaire.\nApparently, that's not correct.\tApparemment, ce n'est pas exact.\nAre you a leader or a follower?\tEs-ce que tu es un meneur ou un suiveur ?\nAre you afraid of getting hurt?\tAs-tu peur d'être blessée ?\nAre you afraid of getting hurt?\tAs-tu peur d'être blessé ?\nAre you and Tom still together?\tEst-ce que toi et Tom êtes encore ensemble ?\nAre you doing anything special?\tFais-tu quelque chose de spécial ?\nAre you for or against my plan?\tEs-tu pour ou contre mon projet ?\nAre you for or against the war?\tEs-tu pour ou contre la guerre ?\nAre you going away this summer?\tTu pars cet été ?\nAre you going away this summer?\tVous partez cet été ?\nAre you going to come visit me?\tViendras-tu me rendre visite ?\nAre you happy with the service?\tÊtes-vous satisfait du service?\nAre you happy with your weight?\tEs-tu satisfait de ton poids ?\nAre you happy with your weight?\tÊtes-vous satisfait de votre poids ?\nAre you happy with your weight?\tEs-tu satisfaite de ton poids ?\nAre you happy with your weight?\tÊtes-vous satisfaite de votre poids ?\nAre you interested in politics?\tVous intéressez-vous à la politique ?\nAre you listening to me at all?\tM'écoutes-tu le moins du monde ?\nAre you listening to the radio?\tÉcoutes-tu la radio ?\nAre you listening to the radio?\tÉcoutez-vous la radio ?\nAre you prepared for the worst?\tEs-tu prêt pour le pire ?\nAre you quite certain about it?\tEn êtes-vous tout à fait certain ?\nAre you quite certain about it?\tEn êtes-vous tout à fait certaine ?\nAre you quite certain about it?\tEn es-tu tout à fait certain ?\nAre you quite certain about it?\tEn es-tu tout à fait certaine ?\nAre you saying that I'm a liar?\tDis-tu que je suis un menteur ?\nAre you saying that I'm a liar?\tDis-tu que je suis une menteuse ?\nAre you saying that I'm a liar?\tDites-vous que je suis un menteur ?\nAre you saying that I'm a liar?\tDites-vous que je suis une menteuse ?\nAre you saying that's not true?\tEs-tu en train de dire que ce n'est pas vrai ?\nAre you the one who wrote this?\tÊtes-vous l'auteur de ceci ?\nAre you through with the paper?\tEn as-tu fini avec le papier ?\nAre you through with the paper?\tEn avez-vous fini avec le papier ?\nAre you through with the paper?\tAs-tu fini avec le papier ?\nAre you through with the paper?\tAvez-vous fini avec le papier ?\nAre you through with your work?\tTon boulot est fini ?\nAre you through with your work?\tTon travail est-il terminé ?\nAre you trying to grow a beard?\tVous vous faites pousser la barbe?\nAre you two going out together?\tSortez-vous tous deux ensemble ?\nAre you two going out together?\tSortez-vous toutes deux ensemble ?\nAre you willing to make a deal?\tEs-tu décidé à faire affaire ?\nAre you willing to make a deal?\tEs-tu décidée à faire affaire ?\nAre you willing to make a deal?\tÊtes-vous décidé à faire affaire ?\nAre you willing to make a deal?\tÊtes-vous décidés à faire affaire ?\nAre you willing to make a deal?\tÊtes-vous décidées à faire affaire ?\nAre you willing to make a deal?\tÊtes-vous décidée à faire affaire ?\nAren't you ashamed of yourself?\tN'as-tu pas honte de toi ?\nAren't you ashamed of yourself?\tN'avez-vous pas honte de vous ?\nAren't you sick of eating here?\tN'en as-tu pas assez de manger ici ?\nAren't you sick of eating here?\tN'en avez-vous pas assez de manger ici ?\nAs far as I know, he is honest.\tPour autant que je sache, il est honnête.\nAsk Tom what we should do next.\tDemande à Tom ce que nous devrions faire ensuite.\nAsk Tom what we should do next.\tDemandez à Tom ce que nous devrions faire ensuite.\nAsk her when he will come back.\tDemandez-lui quand il reviendra.\nAt last, he realized his error.\tFinalement, il a réalisé son erreur.\nAt last, he solved the problem.\tIl a fini par résoudre le problème.\nAt last, he solved the problem.\tIl a enfin résolu le problème.\nAt last, he solved the problem.\tIl résolut finalement le problème.\nAt last, my wish has come true.\tEnfin mon souhait s'est réalisé.\nAt last, they met face to face.\tIls se rencontrèrent enfin face à face.\nAt last, we reached California.\tEnfin nous avons atteint la Californie.\nAt last, we reached the summit.\tEnfin, nous atteignîmes le sommet.\nAutomobiles replaced carriages.\tLes voitures ont remplacé les charrettes.\nBe careful crossing the street.\tFais attention lorsque tu traverses la rue.\nBe careful crossing the street.\tFais attention en traversant la rue.\nBe careful not to catch a cold.\tFais attention de ne pas attraper froid.\nBe careful not to cut yourself.\tFais attention à ne pas te couper.\nBe careful with what you drink.\tFais attention à ce que tu bois.\nBeautiful stained glass is art.\tLes beaux vitraux sont de l'art.\nBee stings can be very painful.\tLes piqures d'abeilles peuvent être très douloureuses.\nBeer bottles are made of glass.\tLes bouteilles de bières sont faites en verre.\nBees fly from flower to flower.\tLes abeilles volent de fleur en fleur.\nBeethoven was a great musician.\tBeethoven était un grand musicien.\nBirds learn to fly by instinct.\tLes oiseaux apprennent à voler instinctivement.\nBlood poured from the cut vein.\tLe sang s'écoulait de la veine sectionnée.\nBoth Tom and Mary are teachers.\tTom et Marie sont tous deux des enseignants.\nBoth of my sisters are married.\tMes deux sœurs sont mariées.\nBring it back when you're done.\tRamène-le quand tu as fini.\nBring it back when you're done.\tRamenez-le lorsque vous avez fini.\nBring it back when you're done.\tRapporte-le quand tu as fini.\nBring it back when you're done.\tRapportez-le quand vous avez fini.\nBring it back when you're done.\tRapporte-le lorsque tu as fini.\nBring it back when you're done.\tRamène-le lorsque tu as fini.\nBring it back when you're done.\tRapportez-le lorsque vous avez fini.\nBring me today's paper, please.\tApporte-moi, s'il te plait, le journal d'aujourd'hui.\nBring me today's paper, please.\tApporte-moi, s'il te plait, le journal du jour.\nBring me today's paper, please.\tApporte-moi, je te prie, le journal du jour.\nBring me today's paper, please.\tApportez-moi le journal du jour, je vous prie.\nBring me today's paper, please.\tApportez-moi le journal d'aujourd'hui, s'il vous plaît.\nBring me today's paper, please.\tApportez-moi le journal du jour, s'il vous plaît.\nBusiness is so slow these days.\tCes temps-ci, les affaires ne sont pas bonnes.\nBy the way, where are you from?\tAu fait, d'où es-tu ?\nBy the way, where are you from?\tD'ailleurs, d'où êtes-vous ?\nBy the way, where does he live?\tAu fait, où habite-t-il ?\nCan I be of any service to you?\tPuis-je vous être utile à quoi que ce soit ?\nCan I give you a bit of advice?\tPuis-je te donner un petit conseil ?\nCan I give you a bit of advice?\tPuis-je vous donner un petit conseil ?\nCan I have the key now, please?\tPuis-je avoir la clé maintenant ?\nCan I talk to you for a second?\tPuis-je te parler une seconde ?\nCan I talk to you for a second?\tPuis-je vous parler une seconde ?\nCan I use my medical insurance?\tPuis-je faire jouer mon assurance maladie ?\nCan anyone pronounce this word?\tQuiconque sait-il prononcer ce mot ?\nCan we quit talking about this?\tPouvons-nous arrêter de parler de ça ?\nCan you break a 1,000 yen bill?\tPouvez-vous me faire de la monnaie sur un billet de mille yens ?\nCan you buy one for me as well?\tPeux-tu m'en acheter un pour moi aussi ?\nCan you cash this check for me?\tPouvez-vous encaisser ce chèque pour moi ?\nCan you come on Sunday evening?\tPeux-tu venir dimanche soir ?\nCan you deliver it to my house?\tPouvez-vous le livrer chez moi ?\nCan you excuse me for a minute?\tVous pouvez m'excuser une minute ?\nCan you gift-wrap this, please?\tPouvez-vous faire un emballage cadeau pour ceci, je vous prie ?\nCan you give me a better price?\tPouvez-vous me faire un meilleur prix ?\nCan you help me make a snowman?\tTu peux m’aider à faire un bonhomme de neige ?\nCan you help me paint my house?\tPeux-tu m'aider à peindre ma maison ?\nCan you help me paint my house?\tPouvez-vous m'aider à peindre ma maison ?\nCan you lend me a little money?\tPouvez-vous me prêter un peu d'argent?\nCan you please write that down?\tPeux-tu écrire cela, s'il te plaît ?\nCan you please write that down?\tPouvez-vous écrire cela, s'il te plaît ?\nCan you prove Tom didn't do it?\tPeux-tu prouver que Tom ne l'a pas fait ?\nCan you show me how to do this?\tPeux-tu me montrer comment faire ça ?\nCan you show me how to do this?\tPeux-tu me montrer comment le faire ?\nCan you show me how to do this?\tPouvez-vous me montrer comment faire ça ?\nCan you show me how to do this?\tPouvez-vous me montrer comment le faire ?\nCan you show us how to do that?\tPouvez-vous nous montrer comment ça marche?\nCan you speak another language?\tParles-tu encore une autre langue ?\nCan you swim as fast as he can?\tSais-tu nager aussi vite que lui ?\nCan you swim as fast as he can?\tSavez-vous nager aussi vite que lui ?\nCan you tell wheat from barley?\tEs-tu capable de distinguer le blé de l'orge ?\nCan you think of anything else?\tPouvez-vous penser à quoi que ce soit d'autre ?\nCan you think of anything else?\tPeux-tu penser à quoi que ce soit d'autre ?\nCan't you discount it a little?\tNe pouvez-vous pas y appliquer une petite remise ?\nCan't you guess what I'm doing?\tTu ne devines pas ce que je fais ?\nCheck out what I've been up to.\tRegardez ce que j'ai concocté !\nCheck out what I've been up to.\tRegarde ce que j'ai concocté !\nChildren should not be spoiled.\tLes enfants ne devraient pas être gâtés.\nChildren should not be spoiled.\tLes enfants ne devraient pas être pourris.\nChildren should obey authority.\tLes enfants devraient obéir à l'autorité.\nChoose either one or the other.\tChoisis l'un ou l'autre.\nChristmas Day is December 25th.\tNoël est le 25 décembre.\nChristmas is a special holiday.\tNoël est un jour férié à part.\nCome along with us if you like.\tAccompagne-nous si tu veux.\nCome down here and eat with us.\tDescends ici et viens manger avec nous !\nCome down here and eat with us.\tDescendez ici et venez manger avec nous !\nCome here before seven o'clock.\tViens ici avant sept heures.\nCome here by ten at the latest.\tSois ici à dix heures au plus tard.\nCome on! I can't wait any more.\tAllez ! Je n'en peux plus d'attendre.\nCompare your answer with Tom's.\tCompare ta réponse avec celle de Tom.\nCookie's mother died of cancer.\tLa mère de Cookie mourut d'un cancer.\nCould we go somewhere and talk?\tPourrions-nous aller quelque part et discuter ?\nCould you charge it to my room?\tPourriez-vous le mettre sur ma chambre ?\nCould you help me out a little?\tPourrais-tu m'aider un peu ?\nCould you help me out a little?\tPourriez-vous m'aider un peu ?\nCould you help us after school?\tPourriez-vous nous aider après l'école ?\nCould you move the chair a bit?\tPourrais-tu bouger un peu la chaise ?\nCould you move the chair a bit?\tPourriez-vous bouger un peu la chaise ?\nCould you open this jar for me?\tPeux-tu ouvrir ce pot pour moi ?\nCould you show me that necktie?\tPourriez-vous me montrer cette cravate ?\nCould you talk a little slower?\tPourriez-vous parler un peu plus lentement ?\nCould you talk a little slower?\tPourrais-tu parler un peu plus lentement ?\nCould you tie it with a ribbon?\tPourrais-tu l'attacher avec un ruban ?\nCould you turn the volume down?\tPourriez-vous baisser le son ?\nCount the apples in the basket.\tCompte les pommes dans le panier.\nDark clouds are a sign of rain.\tLes nuages sombres sont signe de pluie.\nDeposit your money in the bank.\tDépose ton argent à la banque.\nDid I give you that impression?\tVous ai-je donné cette impression ?\nDid I give you that impression?\tT'ai-je donné cette impression ?\nDid Tom talk to you about Mary?\tEst-ce que Tom t'a parlé de Mary ?\nDid Tom talk to you about Mary?\tTom vous-a-il parlé de Mary ?\nDid he admit that he was wrong?\tA-t-il admis qu'il avait tort ?\nDid you acknowledge his letter?\tAvez-vous reconnu sa lettre ?\nDid you encounter any problems?\tAs-tu eu des problèmes?\nDid you understand any of that?\tEn avez-vous compris quoi que ce soit ?\nDid you understand any of that?\tEn as-tu compris quoi que ce soit ?\nDidn't you read the prospectus?\tN'as-tu pas lu le prospectus ?\nDidn't you read the prospectus?\tN'avez-vous pas lu le prospectus ?\nDinosaurs once ruled the earth.\tLes dinosaures régnèrent autrefois sur la Terre.\nDisease and famine go together.\tFamine et maladie vont de pair.\nDo not say such foolish things.\tNe dis pas de telles idioties.\nDo not say such foolish things.\tNe dites pas de telles idioties.\nDo not say such foolish things.\tNe dites pas de telles inepties.\nDo not say such foolish things.\tNe dis pas de telles inepties.\nDo whatever you think is right.\tFaites ce qui vous paraît juste.\nDo you believe Tom is innocent?\tCrois-tu que Tom soit innocent ?\nDo you believe Tom is innocent?\tCroyez-vous que Tom soit innocent ?\nDo you care about your privacy?\tTa vie privée est-elle importante pour toi ?\nDo you consider them dangerous?\tLes considères-tu dangereux ?\nDo you consider them dangerous?\tLes considères-tu dangereuses ?\nDo you consider them dangerous?\tLes considérez-vous dangereux ?\nDo you consider them dangerous?\tLes considérez-vous dangereuses ?\nDo you eat it in the classroom?\tManges-tu dans la salle de classe ?\nDo you enjoy working from home?\tAimes-tu travailler chez toi ?\nDo you guys need anything else?\tAvez-vous besoin de quelque chose d'autre ?\nDo you have a room of your own?\tAs-tu ta propre chambre ?\nDo you have any aspirin on you?\tAs-tu de l'aspirine avec toi ?\nDo you have any aspirin on you?\tAvez-vous de l'aspirine avec vous ?\nDo you have any cough medicine?\tAs-tu des médicaments contre la toux ?\nDo you have any food allergies?\tAs-tu une quelconque allergie alimentaire ?\nDo you have any food allergies?\tAvez-vous une quelconque allergie alimentaire ?\nDo you have any food allergies?\tSouffres-tu d'une quelconque allergie alimentaire ?\nDo you have any food allergies?\tSouffrez-vous d'une quelconque allergie alimentaire ?\nDo you have any foreign stamps?\tAvez-vous des timbres étrangers ?\nDo you have any ideas about it?\tEn as-tu une idée ?\nDo you have any ideas about it?\tAs-tu des idées là-dessus ?\nDo you have any money with you?\tAvez-vous le moindre argent sur vous ?\nDo you have any plans later on?\tAvez-vous le moindre projet pour plus tard ?\nDo you have any plans later on?\tAs-tu le moindre projet pour plus tard ?\nDo you have change for a fifty?\tAvez-vous la monnaie de cinquante ?\nDo you have change for a fifty?\tAs-tu la monnaie de cinquante ?\nDo you have children's clothes?\tAuriez-vous des vêtements pour enfants ?\nDo you have much time to spare?\tAs-tu beaucoup de temps libre ?\nDo you have rain gear with you?\tAvez-vous des vêtements de pluie avec vous ?\nDo you have rain gear with you?\tAs-tu une tenue pour la pluie, avec toi ?\nDo you have this symptom often?\tPrésentes-tu souvent ce symptôme ?\nDo you know him, by any chance?\tLe connaissez-vous par hasard ?\nDo you know how to drive a car?\tSavez-vous conduire une voiture ?\nDo you know when she will come?\tSais-tu quand elle viendra ?\nDo you know when she will come?\tSavez-vous quand elle viendra ?\nDo you know where Tom is going?\tSais-tu où va Tom ?\nDo you know where Tom is going?\tSavez-vous où va Tom ?\nDo you know where she was born?\tSavez-vous où elle est née ?\nDo you know who that person is?\tSais-tu qui est cette personne ?\nDo you know who that person is?\tSavez-vous qui est cette personne ?\nDo you know why she's so angry?\tSais-tu pourquoi elle est tellement en colère ?\nDo you know why she's so angry?\tSavez-vous pourquoi elle est tellement en colère ?\nDo you like to be kept waiting?\tAimes-tu qu'on te fasse attendre ?\nDo you like to be kept waiting?\tAimez-vous qu'on vous fasse attendre ?\nDo you like to be kept waiting?\tAimez-vous qu'on vous fasse faire le pied-de-grue ?\nDo you like your hot chocolate?\tAimez-vous votre chocolat chaud?\nDo you look up to your parents?\tRespectes-tu tes parents ?\nDo you mind if I don't do this?\tCela te dérange-t-il que je ne le fasse pas ?\nDo you mind if I open the door?\tVois-tu un inconvénient à ce que j'ouvre la porte ?\nDo you mind if I open the door?\tVoyez-vous un inconvénient à ce que j'ouvre la porte ?\nDo you offer any all-day tours?\tProposez-vous des excursions d'une journée ?\nDo you take work home with you?\tEmportez-vous du travail avec vous à la maison ?\nDo you take work home with you?\tEmportes-tu du travail avec toi à la maison ?\nDo you think I should go alone?\tPenses-tu que je devrais y aller seul ?\nDo you think I should go alone?\tPenses-tu que je devrais y aller seule ?\nDo you think I should go alone?\tPensez-vous que je devrais y aller seul ?\nDo you think I should go alone?\tPensez-vous que je devrais y aller seule ?\nDo you think anyone can see me?\tPenses-tu que quiconque puisse me voir ?\nDo you think anyone can see me?\tPensez-vous que quiconque puisse me voir ?\nDo you think anyone can see us?\tPenses-tu que quiconque puisse nous voir ?\nDo you think anyone can see us?\tPensez-vous que quiconque puisse nous voir ?\nDo you think he will like that?\tPenses-tu qu'il appréciera cela ?\nDo you think he will like that?\tPensez-vous qu'il appréciera cela ?\nDo you think our team will win?\tPensez-vous que notre équipe va gagner?\nDo you think that Tom is happy?\tEst-ce que tu penses que Tom est heureux ?\nDo you think that Tom is happy?\tEst-ce que vous pensez que Tom est heureux ?\nDo you want any of these books?\tVeux-tu l'un de ces livres ?\nDo you want me to believe that?\tVoulez-vous me faire croire ça ?\nDo you want me to believe that?\tVeux-tu me faire croire ça ?\nDo you want some hot chocolate?\tVoulez-vous du chocolat chaud?\nDo you want to become a father?\tVeux-tu devenir père ?\nDo you want to become a father?\tVoulez-vous devenir père ?\nDo you want to do it right now?\tVoulez-vous le faire immédiatement ?\nDo you want to do it right now?\tVeux-tu le faire immédiatement ?\nDo you want to eat out tonight?\tVeux-tu dîner dehors, ce soir ?\nDo you want to eat out tonight?\tVoulez-vous souper à l'extérieur, ce soir ?\nDo you want to get out of here?\tVoulez-vous sortir d'ici ?\nDo you want to get out of here?\tVeux-tu sortir d'ici ?\nDo you want to rent your house?\tVoulez-vous louer votre maison ?\nDoes Tom speak French fluently?\tTom parle-t-il le français couramment ?\nDoes Tom still play the guitar?\tTom joue-t-il encore de la guitare ?\nDoes anybody have a can opener?\tQui que ce soit a-t-il un ouvre-boîte ?\nDoes anyone want some more pie?\tQuelqu'un veut encore un peu de tarte ?\nDoes anyone want some more pie?\tQuelqu'un veut plus de tarte ?\nDoes he know that you love him?\tSait-il que tu l’aimes ?\nDoes someone here speak French?\tQuelqu'un ici parle-t-il français ?\nDoes someone here speak French?\tY a-t-il quelqu'un ici qui parle français ?\nDoes someone here speak French?\tEst-ce qu'il y a quelqu'un qui parle français ici ?\nDoes the end justify the means?\tEst-ce que la fin justifie les moyens ?\nDoes the end justify the means?\tLa fin justifie-t-elle les moyens ?\nDoes this bus go to the museum?\tCe bus se rend-il au musée ?\nDoes this look familiar to you?\tCela te semble-t-il familier ?\nDoes this look familiar to you?\tCela vous semble-t-il familier ?\nDoesn't that car look familiar?\tCette voiture ne semble-t-elle pas familière ?\nDoesn't that car look familiar?\tCette voiture n'a-t-elle pas un air familier ?\nDoesn't that strike you as odd?\tCela ne te vient-il pas à l'esprit que c'est bizarre ?\nDoesn't that strike you as odd?\tCela ne vous vient-il pas à l'esprit que c'est bizarre ?\nDon't be afraid to talk to him.\tNe craignez pas de lui parler !\nDon't be afraid to talk to him.\tNe crains pas de lui parler !\nDon't be afraid to talk to him.\tN'aie pas peur de lui parler !\nDon't be afraid to talk to him.\tN'ayez pas peur de lui parler !\nDon't be ashamed of being poor.\tN'aie pas honte d'être pauvre.\nDon't be fooled by appearances.\tNe vous laissez pas abuser par les apparences !\nDon't be fooled by appearances.\tNe te laisse pas abuser par les apparences !\nDon't be late for school again.\tNe sois pas encore en retard à l'école.\nDon't believe anything he says.\tNe croyez à rien de ce qu'il dit.\nDon't buy me any more presents.\tNe m'achète plus de cadeaux.\nDon't buy me any more presents.\tNe m'achetez plus de cadeaux.\nDon't call me so late at night.\tNe m'appelez pas trop tard, le soir.\nDon't cast pearls before swine.\tNe donnez pas de la confiture aux cochons.\nDon't confuse desire with love.\tNe confonds pas le désir avec l’amour.\nDon't do anything until I come.\tNe fais rien avant que je vienne.\nDon't expect any mercy from me.\tNe t'attends à aucune pitié de ma part.\nDon't expect any mercy from me.\tN'attendez aucune pitié de ma part.\nDon't fix it if it ain't broke.\tNe le réparez pas si ce n'est pas cassé !\nDon't forget that Tom is blind.\tN'oublie pas que Tom est aveugle.\nDon't forget to sign your name.\tN'oubliez pas de signer.\nDon't give in to peer pressure.\tNe cède pas à la pression des pairs.\nDon't give in to peer pressure.\tNe cédez pas à la pression de vos pairs.\nDon't give it a second thought.\tFais-le sans réfléchir !\nDon't give it a second thought.\tFaites-le sans réfléchir !\nDon't just take my word for it.\tNe me croyez pas juste sur parole.\nDon't just whine, do something!\tNe te contente pas de pleurer, fais quelque chose !\nDon't just whine, do something!\tNe vous contentez pas de pleurer, faites quelque chose !\nDon't leave your things behind.\tNe laisse pas tes affaires derrière toi.\nDon't let appearances fool you.\tNe laissez pas les apparences vous tromper !\nDon't let appearances fool you.\tNe laisse pas les apparences te tromper !\nDon't let him do it by himself.\tNe le laisse pas le faire par lui-même.\nDon't let him do it by himself.\tNe le laissez pas le faire par lui-même.\nDon't let him know her address.\tNe lui donnez pas son adresse.\nDon't lose your sense of humor.\tNe perdez pas votre sens de l'humour !\nDon't lose your sense of humor.\tNe perds pas ton sens de l'humour !\nDon't make me lose my patience.\tNe me fais pas perdre patience.\nDon't make me lose my patience.\tNe me faites pas perdre patience.\nDon't make me pull the trigger.\tNe m'oblige pas à tirer sur la gâchette !\nDon't make me pull the trigger.\tNe m'obligez pas à tirer sur la gâchette !\nDon't make me pull the trigger.\tNe me force pas à tirer sur la gâchette !\nDon't make me pull the trigger.\tNe me forcez pas à tirer sur la gâchette !\nDon't move until I tell you to.\tNe bougez pas jusqu'à ce que je vous le dise !\nDon't move until I tell you to.\tNe bouge pas jusqu'à ce que je te le dise !\nDon't open the door for anyone.\tN'ouvrez la porte à personne !\nDon't open the door for anyone.\tN'ouvre la porte à personne !\nDon't point your gun at anyone.\tNe pointe pas ton arme vers quiconque !\nDon't point your gun at anyone.\tNe pointe pas ton arme en direction de quiconque !\nDon't point your gun at anyone.\tNe pointe pas ton arme en direction de qui que ce soit !\nDon't point your gun at anyone.\tNe pointez pas votre arme en direction de quiconque !\nDon't point your gun at anyone.\tNe pointez pas votre arme en direction de qui que ce soit !\nDon't point your gun at anyone.\tNe pointez pas votre arme vers quiconque !\nDon't pry into my private life.\tNe mets pas ton nez dans ma vie privée.\nDon't raise my hopes like that.\tN'éveillez donc pas ainsi mes espoirs.\nDon't raise my hopes like that.\tN'éveille donc pas ainsi mes espoirs.\nDon't say that word ever again.\tNe prononce plus jamais ce mot !\nDon't say that word ever again.\tNe prononcez plus jamais ce mot !\nDon't sneak out of the concert!\tNe file pas du concert !\nDon't sneak up on me like that.\tNe me prends pas par surprise comme ça.\nDon't sneak up on me like that.\tNe te faufile pas derrière moi comme ça.\nDon't spread yourself too thin.\tNe te disperse pas trop.\nDon't spread yourself too thin.\tNe fais pas trop de choses à la fois.\nDon't spread yourself too thin.\tN'en fais pas trop à la fois.\nDon't stay in the sun too long.\tNe reste pas trop longtemps au soleil.\nDon't stay in the sun too long.\tNe restez pas trop longtemps au soleil.\nDon't step on the broken glass.\tNe marchez pas sur les éclats de verre.\nDon't think about that anymore.\tN'y pensez plus !\nDon't think about that anymore.\tN'y pense plus !\nDon't throw a stone at the dog.\tNe lance pas de caillou au chien.\nDon't treat me like I'm stupid.\tNe me traite pas en idiot !\nDon't treat me like I'm stupid.\tNe me traite pas comme un idiot !\nDon't treat me like I'm stupid.\tNe me traite pas en idiote !\nDon't treat me like I'm stupid.\tNe me traite pas comme une idiote !\nDon't treat me like I'm stupid.\tNe me traitez pas comme une idiote !\nDon't treat me like I'm stupid.\tNe me traitez pas comme un idiot !\nDon't treat me like I'm stupid.\tNe me traitez pas en idiote !\nDon't treat me like I'm stupid.\tNe me traitez pas en idiot !\nDon't use computer translation.\tN'employez pas de traduction par ordinateur.\nDon't use up all the hot water.\tN'utilise pas toute l'eau chaude.\nDon't use up all the hot water.\tN'utilisez pas toute l'eau chaude.\nDon't waste your breath on Tom.\tPerds pas de temps à discuter avec Tom.\nDon't worry about such a thing.\tNe vous faites pas de souci pour une telle chose.\nDon't worry. I'll be back soon.\tNe vous en faites pas ! Je serai bientôt de retour.\nDon't worry. I'll be back soon.\tNe t'en fais pas ! Je serai bientôt de retour.\nDon't you ever clean your room?\tNe nettoyez-vous jamais votre chambre ?\nDon't you ever clean your room?\tNe nettoies-tu jamais ta chambre ?\nDon't you have some work to do?\tN'avez-vous pas de travail à faire ?\nDon't you hear what I'm saying?\tN'entends-tu pas ce que je suis en train de dire ?\nDon't you hear what I'm saying?\tN'entendez-vous pas ce que je suis en train de dire ?\nDon't you just hate technology?\tNe détestez-vous pas simplement la technologie ?\nDon't you just hate technology?\tNe détestes-tu pas simplement la technologie ?\nDon't you think it's wonderful?\tNe trouvez-vous pas cela merveilleux ?\nDon't you think it's wonderful?\tNe trouves-tu pas cela merveilleux ?\nDon't you think that's strange?\tNe trouvez-vous pas cela étrange ?\nDon't you think that's strange?\tNe trouves-tu pas cela étrange ?\nDon't you want to say anything?\tNe veux-tu pas dire quelque chose ?\nDon't you want to say anything?\tNe voulez-vous pas dire quelque chose ?\nEach child was given a present.\tChaque enfant a reçu un cadeau.\nEach of them was given a prize.\tChacun d'eux a reçu un prix.\nEnglish is a Germanic language.\tL'anglais est une langue germanique.\nEnglish is difficult, isn't it?\tL'anglais est dur, n'est-ce pas ?\nEnglish is spoken in Australia.\tL'anglais est parlé en Australie.\nEven Tom is a little surprised.\tMême Tom est un peu surpris.\nEven his servants despised him.\tMême ses serviteurs le détestaient.\nEven his servants despised him.\tMême ses serviteurs le méprisaient.\nEvery mistake made me stronger.\tChaque erreur m'a renforcé.\nEvery nation has its own myths.\tTous les pays ont leurs légendes.\nEvery playground has its bully.\tToutes les cours de récréation ont leur tyran.\nEverybody needs help sometimes.\tTout le monde a besoin d'aide de temps en temps.\nEverybody wants to protect you.\tTout le monde veut vous protéger.\nEverybody wants to protect you.\tTout le monde veut te protéger.\nEverybody wishes for happiness.\tChacun souhaite le bonheur.\nEverybody's having a good time.\tTout le monde prends du bon temps.\nEverybody's having a good time.\tTout le monde s'amuse.\nEverybody, get out of my house.\tTout le monde, sortez de ma maison.\nEveryone in my family is happy.\tTout le monde est heureux dans ma famille.\nEveryone is free to contribute.\tChacun est libre de contribuer.\nEveryone knows what's going on.\tTout le monde sait ce qui se passe.\nEveryone needs to stay focused.\tChacun doit rester concentré.\nEveryone said that I was wrong.\tTout le monde a dit que j'avais tort.\nEveryone thinks the same thing.\tChacun pense la même chose.\nEveryone wanted to talk to Tom.\tTout le monde voulait parler à Tom.\nEverything about this is wrong.\tTout ceci est faux.\nEverything about this is wrong.\tTout, à propos de ceci, est faux.\nEverything is extremely simple.\tTout est extrêmement simple.\nEverything seems normal enough.\tTout semble assez normal.\nEverything seems normal enough.\tTout paraît assez normal.\nEverything went horribly wrong.\tTout a foiré.\nEverything's going to work out.\tTout va bien se passer.\nEverything's going to work out.\tTout s'arrangera.\nExperience is the best teacher.\tExpérience passe science.\nFather bought me a new bicycle.\tPère m'a acheté un nouveau vélo.\nFather is coming home tomorrow.\tPapa rentre à la maison demain.\nFear is essential for survival.\tLa peur est essentielle à la survie.\nFeel free to ask any questions.\tN'hésitez pas à poser des questions.\nFeel free to ask any questions.\tPosez librement toutes les questions.\nFeel free to ask any questions.\tN'hésite pas à poser des questions.\nFeeling sick, he stayed in bed.\tSe sentant malade, il est resté au lit.\nFew girls were late for school.\tPeu de filles étaient en retard à l'école.\nFew people came to the lecture.\tPeu de gens vinrent à la conférence.\nFew people know about the plan.\tPeu de personnes ont connaissance du plan.\nFighting won't settle anything.\tSe battre ne résoudra rien.\nFinally, I finished a painting.\tFinalement, j'ai achevé un tableau.\nFinally, we arrived in England.\tNous parvînmes finalement en Angleterre.\nFinally, we arrived in England.\tNous arrivâmes finalement en Angleterre.\nFlying a kite can be dangerous.\tFaire voler un cerf-volant peut être dangereux.\nFolks, it's time I was leaving.\tLes amis, il est temps que j'y aille.\nFolks, it's time I was leaving.\tMes amis, il est temps que je parte.\nForty people can't fit in here.\tQuarante personnes ne peuvent pas tenir ici.\nFrankly, I don't like that man.\tFranchement, je n'aime pas cet homme.\nFrench is the language of love.\tLe français est la langue de l'amour.\nGet the bicycle out of the way.\tSors le vélo du chemin !\nGive me a white piece of paper.\tDonne-moi une feuille blanche.\nGive me three pieces of salmon.\tDonnez-moi trois morceaux de saumon.\nGive my regards to your family.\tPrésentez mes respects à votre famille.\nGive my regards to your family.\tPrésente mes respects à ta famille.\nGlasses and dishes were broken.\tDes verres et des assiettes furent brisés.\nGrab a broom and help us clean.\tSaisis un balai et aide-nous à nettoyer !\nGrab a broom and help us clean.\tSaisissez un balai et aidez-nous à nettoyer !\nHalf the office took a day off.\tLa moitié du bureau a pris une journée de congé.\nHappiness is a delicate flower.\tLe bonheur est une fleur délicate.\nHas Tom's dog ever bitten Mary?\tEst-ce que le chien de Tom a déjà mordu Mary ?\nHas the jury reached a verdict?\tLe jury a-t-il rendu son verdict?\nHave both of you already eaten?\tAvez-vous déjà mangé, tous les deux ?\nHave you already had breakfast?\tAvez-vous déjà pris votre petit-déjeuner ?\nHave you ever been to New York?\tEs-tu déjà allé à New York ?\nHave you ever been to New York?\tÊtes-vous déjà allé à New York ?\nHave you ever been to an opera?\tAs-tu jamais assisté à un opéra ?\nHave you ever been to an opera?\tAvez-vous jamais assisté à un opéra ?\nHave you ever dreamed about me?\tAs-tu déjà rêvé de moi ?\nHave you ever flown in a blimp?\tAs-tu jamais volé en dirigeable ?\nHave you ever flown in a blimp?\tAvez-vous jamais volé en dirigeable ?\nHave you ever seen Tokyo Tower?\tAvez-vous déjà vu la Tour de Tokyo ?\nHave you finished the work yet?\tAs-tu déjà terminé le travail ?\nHave you finished the work yet?\tAvez-vous déjà fini le travail ?\nHave you seen all these movies?\tAs-tu vu tous ces films ?\nHave you seen all these movies?\tAvez-vous vu tous ces films ?\nHave you turned in your report?\tAvez-vous rendu votre rapport ?\nHave you worked the puzzle out?\tAs-tu résolu l'énigme ?\nHe acted the part of King Lear.\tIl a joué le rôle du Roi Lear.\nHe acted the part of King Lear.\tIl joua le rôle du Roi Lear.\nHe admitted that he was guilty.\tIl admit qu'il était coupable.\nHe advised us against doing it.\tIl nous a déconseillé de le faire.\nHe advised us against doing it.\tIl nous déconseilla de le faire.\nHe always leaves home at seven.\tIl part toujours de chez lui à 7 heures.\nHe always wears his school tie.\tIl porte toujours sa cravate de l'école.\nHe and I are childhood friends.\tLui et moi sommes amis d'enfance.\nHe and I are in the same class.\tLui et moi sommes dans la même classe.\nHe answered my question easily.\tIl répondit facilement à ma question.\nHe arrived after the bell rang.\tIl est arrivé après que la cloche a sonné.\nHe arrived as soon as he could.\tIl est arrivé aussitôt qu'il a pu.\nHe asked a few questions of me.\tIl a posé quelques questions à mon propos.\nHe asked his friend for advice.\tIl demanda conseil à son ami.\nHe asked his friend for advice.\tIl demanda conseil à son amie.\nHe asked me to wake him at six.\tIl me demanda de le réveiller à six heures.\nHe asked me whether I was busy.\tIl me demanda si j'étais occupé.\nHe aspires to become a teacher.\tIl aspire à devenir professeur.\nHe aspires to become a teacher.\tIl aspire à devenir enseignant.\nHe assumed full responsibility.\tIl a assumé la complète responsabilité.\nHe ate every bit of his dinner.\tIl a mangé la totalité de son diner.\nHe became a handsome young man.\tIl devint un charmant jeune homme.\nHe became more and more famous.\tIl devint de plus en plus célèbre.\nHe bet two pounds on the horse.\tIl a parié deux livres sur le cheval.\nHe bothered her with questions.\tIl l'a importunée avec des questions.\nHe bought a new pair of gloves.\tIl acheta une nouvelle paire de gants.\nHe bought his daughter a dress.\tIl a acheté une robe à sa fille.\nHe broke the window on purpose.\tIl a fait exprès de casser la fenêtre.\nHe came close to losing an eye.\tIl s'en est fallu de peu qu'il perde un œil.\nHe came to Berlin as a teacher.\tIl vint à Berlin comme enseignant.\nHe came to Japan two years ago.\tIl est venu au Japon il y a deux ans.\nHe came to ask us for our help.\tIl est venu pour nous demander notre aide.\nHe came to my office yesterday.\tIl est venu à mon bureau hier.\nHe can scarcely write his name.\tIl arrive difficilement à écrire son nom.\nHe can't afford to get married.\tIl n'a pas les moyens de se marier.\nHe can't explain what happened.\tIl n'arrive pas à expliquer ce qui s'est produit.\nHe can't explain what happened.\tIl est incapable d'expliquer ce qui s'est produit.\nHe can't explain what happened.\tIl n'arrive pas à expliquer ce qui est arrivé.\nHe can't explain what happened.\tIl est incapable d'expliquer ce qui est arrivé.\nHe can't take his eyes off her.\tIl ne peut pas la quitter des yeux.\nHe can't tell right from wrong.\tIl ne sait pas distinguer le bien du mal.\nHe caught them stealing apples.\tIl les a pris en train de voler des pommes.\nHe combined two ideas into one.\tIl a relié deux idées en une.\nHe comes here almost every day.\tIl vient ici presque tous les jours.\nHe concentrated on his studies.\tIl se concentrait sur les études.\nHe could not control his anger.\tIl n'a pas pu contrôler sa colère.\nHe could not speak French well.\tIl ne savait pas bien parler français.\nHe couldn't take it any longer.\tIl n'en pouvait plus.\nHe cut the rope with his teeth.\tIl a coupé la corde avec ses dents.\nHe dedicated his life to peace.\tIl a dédié sa vie à la paix.\nHe denied having written to me.\tIl nia m'avoir écrit.\nHe denied having written to me.\tIl a nié m'avoir écrit.\nHe did not accept my apologies.\tIl n'a pas accepté mes excuses.\nHe did not understand her joke.\tIl n'a pas compris sa blague.\nHe didn't hear his name called.\tIl n'a pas entendu que l'on appelait son nom.\nHe didn't show up at the party.\tIl n'est pas venu à la fête.\nHe disappeared without a trace.\tIl a disparu sans laisser de trace.\nHe does not belong in the city.\tIl n'est pas citadin.\nHe doesn't allow interruptions.\tIl ne permet pas les interruptions.\nHe doesn't come here every day.\tIl ne vient pas ici tous les jours.\nHe doesn't have his medication.\tIl n'a pas son traitement.\nHe doesn't have his medication.\tIl n'a pas son remède.\nHe doesn't love his girlfriend.\tIl n'aime pas sa petite amie.\nHe drank detergent by accident.\tIl a accidentellement bu du détergeant.\nHe drank three bottles of beer.\tIl a bu trois bouteilles de bière.\nHe earns his living by writing.\tIl gagne sa vie en écrivant.\nHe earns his living by writing.\tIl vit de son écriture.\nHe entered the room on tiptoes.\tIl entra dans la pièce à pas de loup.\nHe felt his heart beating fast.\tIl sentit son cœur battre vite.\nHe felt lost and uncomfortable.\tIl se sentit perdu et mal à l'aise.\nHe finds fault with everything.\tIl trouve à redire à tout.\nHe flatly refused to let me in.\tIl refusa catégoriquement de me laisser entrer.\nHe flatly refused to let me in.\tIl a refusé catégoriquement de me laisser entrer.\nHe gathered his books together.\tIl rassembla ses livres.\nHe gave us the signal to begin.\tIl nous a donné le signal pour commencer.\nHe gets a haircut once a month.\tIl se fait couper les cheveux une fois par mois.\nHe gorged himself on ice cream.\tIl s'est gavé de crème glacée.\nHe got into his car in a hurry.\tIl monta en vitesse dans sa voiture.\nHe got out of the cab in haste.\tIl sortit du taxi en vitesse.\nHe had a copy made of this key.\tIl fit faire un double de cette clé.\nHe had decided on a new policy.\tIl avait décidé d'une nouvelle politique.\nHe had his shirt on inside out.\tIl avait mis sa chemise à l'envers.\nHe had no luck in finding work.\tIl n'eut pas de chance pour trouver du travail.\nHe had no luck in finding work.\tIl n'a pas eu de chance pour trouver du travail.\nHe handled the tool skillfully.\tIl manipulait l'outil avec compétence.\nHe has a head on his shoulders.\tIl a la tête sur les épaules.\nHe has a large number of books.\tIl a une grande quantité de livres.\nHe has a lot of original ideas.\tIl a beaucoup d'idées originales.\nHe has a new woman in his life.\tIl a une nouvelle femme dans sa vie.\nHe has a son and two daughters.\tIl a un fils et deux filles.\nHe has a very interesting book.\tIl détient un ouvrage très intéressant.\nHe has an unpronounceable name.\tIl a un nom à coucher dehors.\nHe has gone blind in both eyes.\tIl est devenu aveugle.\nHe has made me what I am today.\tIl m'a fait ce que je suis aujourd'hui.\nHe has no chance of recovering.\tIl n'a aucune chance de rémission.\nHe has no friends to talk with.\tIl n'a aucun ami à qui parler.\nHe has no interest in politics.\tIl ne s'intéresse pas à la politique.\nHe has only six months to live.\tIl n'a que six mois à vivre.\nHe has overcome many obstacles.\tIl a surmonté de nombreux obstacles.\nHe heard the news on the radio.\tIl a entendu la nouvelle à la radio.\nHe helped me carry the baggage.\tIl m'a aidé à porter les bagages.\nHe helped me clean up the mess.\tIl m'a aidé à nettoyer le bordel.\nHe hit his head against a rock.\tIl se cogna la tête contre un rocher.\nHe ignored his father's advice.\tIl a ignoré les conseils de son père.\nHe ignored his father's advice.\tIl a ignoré le conseil de son père.\nHe introduced his sister to me.\tIl m'a présenté sa sœur.\nHe is a brave and cheerful boy.\tC'est un garçon gai et courageux.\nHe is a very thoughtful person.\tC'est une personne très attentionnée.\nHe is able to swim like a fish.\tIl est capable de nager comme un poisson.\nHe is able to swim like a fish.\tIl sait nager comme un poisson.\nHe is above doing such a thing.\tIl est au-dessus d'un tel acte.\nHe is absent from school today.\tIl est absent de l'école aujourd'hui.\nHe is acting on his own behalf.\tIl agit en son nom propre.\nHe is actually not the manager.\tEn réalité, il n'est pas le gérant.\nHe is actually not the manager.\tEn réalité, il n'est pas l'imprésario.\nHe is actually not the manager.\tEn réalité, il n'est pas le directeur.\nHe is afraid of his own shadow.\tIl a peur de son ombre.\nHe is always forgetting things.\tIl oublie toujours des choses.\nHe is anxious to go to America.\tIl est nerveux d'aller en Amérique.\nHe is anxious to read the book.\tIl est impatient de lire le livre.\nHe is anything but a gentleman.\tC'est loin d'être un gentleman.\nHe is anything but a gentleman.\tIl est tout sauf un gentleman.\nHe is ashamed to ask questions.\tIl a honte de poser des questions.\nHe is at the head of the class.\tC'est le chef de classe.\nHe is clever at making excuses.\tIl est habile à trouver des prétextes.\nHe is confident of his ability.\tIl est confiant dans ses capacités.\nHe is enjoying his school life.\tIl profite de sa vie d'écolier.\nHe is facing many difficulties.\tIl est confronté à de nombreuses difficultés.\nHe is known as a great painter.\tIl est connu pour être un grand peintre.\nHe is known as a great painter.\tIl est connu comme un grand peintre.\nHe is leaving Chicago tomorrow.\tIl quittera Chicago demain.\nHe is leaving Chicago tomorrow.\tIl va quitter Chicago demain.\nHe is much older than he looks.\tIl est beaucoup plus vieux qu'il n'en a l'air.\nHe is much older than he looks.\tIl est bien plus vieux qu'il n'en a l'air.\nHe is my husband's best friend.\tIl est le meilleur ami de mon mari.\nHe is not studying English now.\tIl n'apprend pas l'anglais en ce moment.\nHe is often absent from school.\tIl est souvent absent de l'école.\nHe is something of a celebrity.\tIl est une sorte de célébrité.\nHe is subject to fits of anger.\tIl est sujet à des crises de colère.\nHe is suffering from toothache.\tIl souffre d'un mal de dents.\nHe is the least likely to come.\tIl est celui qui est le moins susceptible de venir.\nHe is the only child they have.\tC'est le seul enfant qu'ils aient.\nHe is the richest man on earth.\tC'est l'homme le plus riche de la Terre.\nHe is the very man for the job.\tIl est exactement celui qu'il faut pour le poste.\nHe is to blame for the failure.\tIl est responsable de l'échec.\nHe is too honest to tell a lie.\tIl est trop honnête pour dire un mensonge.\nHe is too shy to talk to girls.\tIl est trop timide pour parler aux filles.\nHe is too smart not to know it.\tIl est trop intelligent pour ne pas le savoir.\nHe is working in AIDS research.\tIl travaille dans la recherche sur le sida.\nHe isn't as stupid as he looks.\tIl n'est pas aussi bête qu'il en a l'air.\nHe kept me waiting for an hour.\tIl m'a fait attendre pendant une heure.\nHe kept silent during the meal.\tIl resta silencieux pendant le repas.\nHe knows how to play the piano.\tIl sait jouer du piano.\nHe laid his head on the pillow.\tIl posa la tête sur l'oreiller.\nHe learned how to raise cattle.\tIl a appris à élever du bétail.\nHe left in the blink of an eye.\tIl partit en un clin d'œil.\nHe left soon after our arrival.\tIl partit rapidement après notre arrivée.\nHe left without saying goodbye.\tIl est parti sans dire au revoir.\nHe likes geography and history.\tIl aime la géographie et l'histoire.\nHe likes geography and history.\tIl aime bien la géographie et l’histoire.\nHe likes me and I like him too.\tIl m'apprécie et je l'apprécie aussi.\nHe likes me and I like him too.\tIl m'apprécie et je l'apprécie également.\nHe likes to sing popular songs.\tIl aime chanter des chansons populaires.\nHe likes to talk about himself.\tIl aime parler de lui.\nHe likes to work in the garden.\tIl aime travailler au jardin.\nHe listened, but heard nothing.\tIl a écouté, mais n'a rien entendu.\nHe lived abroad for many years.\tIl vécut à l'étranger pendant de nombreuses années.\nHe lived abroad for many years.\tIl vécut à l'étranger de nombreuses années durant.\nHe lives alone in an apartment.\tIl vit tout seul dans son appartement.\nHe lives on his country estate.\tIl habite cette maison de campagne.\nHe lives somewhere around here.\tIl vit quelque part par ici.\nHe looks as if he had been ill.\tIl a l'air d'avoir été malade.\nHe looks nothing like a doctor.\tIl n'a vraiment pas l'air d'un médecin.\nHe looks older than my brother.\tIl a l'air plus âgé que mon frère.\nHe looks older than my brother.\tIl paraît plus âgé que mon frère.\nHe made an important discovery.\tIl a fait une importante découverte.\nHe made an important discovery.\tIl a fait une découverte importante.\nHe made no effort to apologize.\tIl ne fit aucun effort pour présenter ses excuses.\nHe made no effort to apologize.\tIl n'a fait aucun effort pour présenter ses excuses.\nHe made up his mind right away.\tIl décida sans tarder.\nHe majored in drama at college.\tIl a choisi art dramatique comme spécialité à l'université.\nHe majors in modern literature.\tIl est diplômé en littérature moderne.\nHe married a farmer's daughter.\tIl a épousé la fille d'un fermier.\nHe may come and see us tonight.\tIl se peut qu'il vienne nous voir ce soir.\nHe misses his family very much.\tSa famille lui manque terriblement.\nHe moved back with his parents.\tIl retourna chez ses parents.\nHe moved back with his parents.\tIl est retourné chez ses parents.\nHe moved the desk to the right.\tIl déplaça le bureau à droite.\nHe must be aware of the danger.\tIl doit être conscient du danger.\nHe must have entered this room.\tIl a dû entrer dans cette pièce.\nHe must have entered this room.\tIl a dû pénétrer dans cette pièce.\nHe never gave in to temptation.\tIl n'a jamais cédé à la tentation.\nHe never saw his brother again.\tIl ne revit jamais son frère.\nHe never saw his brother again.\tIl n'a jamais revu son frère.\nHe often drives to the library.\tIl va souvent à la bibliothèque en voiture.\nHe painted all the walls green.\tIl a peint tous les murs en vert.\nHe painted the door over white.\tIl a peint la porte en blanc.\nHe pressed me against the wall.\tIl me pressa contre le mur.\nHe promised to write every day.\tIl a promis d'écrire tous les jours.\nHe proposal was not acceptable.\tSa proposition était inacceptable.\nHe pushed the emergency button.\tIl appuya sur le bouton de l'alarme.\nHe quietly knocked at the door.\tIl a frappé doucement à la porte.\nHe rarely stays home on Sunday.\tIl reste rarement chez lui le dimanche.\nHe reached the rank of general.\tIl atteignit le grade de général.\nHe rescued a boy from drowning.\tIl a sauvé un garçon de la noyade.\nHe risked his life to save her.\tIl a risqué sa vie pour la sauver.\nHe risked his life to save her.\tIl risqua sa vie pour la sauver.\nHe said he would call tomorrow.\tIl a dit qu'il téléphonerait demain.\nHe said something to my friend.\tIl a dit quelque chose à mon ami.\nHe said that you had better go.\tIl a dit que tu aurais mieux fait d'y aller.\nHe saved money for his old age.\tIl a épargné pour ses vieux jours.\nHe saw the surprise on my face.\tIl lut la surprise sur mon visage.\nHe seems to make nothing of it.\tIl semble n'en rien faire.\nHe seldom writes to his father.\tIl écrit rarement à son père.\nHe sent his luggage in advance.\tIl a envoyé ses bagages à l'avance.\nHe shook hands with his friend.\tIl a serré la main de son ami.\nHe soon betrayed his ignorance.\tIl révéla bientôt son ignorance.\nHe started to study in earnest.\tIl a commencé à travailler sérieusement.\nHe stayed in London for a time.\tIl est resté à Londres pendant un moment.\nHe stood up for what was right.\tIl se dressa pour ce qui était juste.\nHe stood up for what was right.\tIl s'est dressé pour ce qui était juste.\nHe studied interior decoration.\tIl a étudié la décoration d'intérieur.\nHe studied the flight of birds.\tIl a étudié le vol des oiseaux.\nHe studied the flight of birds.\tIl étudia le vol des oiseaux.\nHe subscribed to Time magazine.\tIl s'est abonné à Time magazine.\nHe thinks his job is pointless.\tIl pense que son emploi est dénué de sens.\nHe thinks only of making money.\tIl ne pense qu'à faire de l'argent.\nHe threw a stone into the pond.\tIl lança une pierre dans la mare.\nHe told her that she was right.\tIl lui dit qu'elle avait raison.\nHe told her that she was right.\tIl lui a dit qu'elle avait raison.\nHe told me about it in private.\tIl m'en parla en privé.\nHe told me that you were right.\tIl m'a dit que tu avais raison.\nHe took charge of the expenses.\tIl se chargea de grandes dépenses.\nHe took me for my twin brother.\tIl m'a pris pour mon frère jumeau.\nHe took the public by surprise.\tIl surprit le public.\nHe tossed and turned all night.\tIl s'est tourné et retourné toute la nuit.\nHe traveled around the country.\tIl voyagea à travers le pays.\nHe traveled around the country.\tIl a voyagé à travers le pays.\nHe tried it again, but in vain.\tIl essaya de nouveau, mais en vain.\nHe tried to gain her affection.\tIl tenta de gagner leur affection.\nHe tried to get me to help him.\tIl a essayé de faire en sorte que je l'aide.\nHe tried to restrain his anger.\tIl a essayé de retenir sa colère.\nHe tried writing a short story.\tIl essaya d'écrire une nouvelle.\nHe turned out to be her father.\tIl se révéla être son père.\nHe uses honey instead of sugar.\tIl met du miel à la place du sucre.\nHe walks his dog every morning.\tIl promène son chien chaque matin.\nHe wants to be a tennis player.\tIl veut être joueur de tennis.\nHe wants to work in a hospital.\tIl veut travailler dans un hôpital.\nHe warned me that I would fail.\tIl m'a prévenu que j'échouerais.\nHe was a man of great ambition.\tC'était un homme d'une grande ambition.\nHe was absent from the meeting.\tIl fut absent de la réunion.\nHe was absent from the meeting.\tIl a été absent de la réunion.\nHe was accompanied by his wife.\tIl était accompagné de son épouse.\nHe was accompanied by his wife.\tIl était accompagné de sa femme.\nHe was angry with his daughter.\tIl était en colère contre sa fille.\nHe was angry with his daughter.\tIl était en colère après sa fille.\nHe was beside himself with joy.\tIl était fou de joie.\nHe was born on July 28th, 1888.\tIl est né le 28 juillet 1888.\nHe was called away on business.\tIl a été appelé pour affaires.\nHe was charged with conspiracy.\tIl a été accusé de conspiration.\nHe was delighted at the result.\tIl fut ravi du résultat.\nHe was deserted by his friends.\tIl fut abandonné par ses amis.\nHe was deserted by his friends.\tIl a été abandonné par ses amis.\nHe was determined to go abroad.\tIl était déterminé à partir à l'étranger.\nHe was experienced in business.\tIl était rompu aux affaires.\nHe was exposed to many dangers.\tIl fut exposé à de nombreux dangers.\nHe was in America at that time.\tIl était en Amérique à ce moment-là.\nHe was injured in the accident.\tIl a été blessé durant l'accident.\nHe was involved in the trouble.\tIl était impliqué dans l'affaire.\nHe was knocked over by the car.\tIl fut renversé par une voiture.\nHe was late to his own wedding.\tIl a été en retard à son propre mariage.\nHe was lying asleep in the sun.\tIl était endormi sous le soleil.\nHe was not aware of the danger.\tIl n'était pas conscient du danger.\nHe was punished for his crimes.\tIl a été puni pour ses crimes.\nHe was punished for his crimes.\tIl fut puni pour ses crimes.\nHe was robbed of all his money.\tOn lui a volé tout son argent.\nHe was shot 3 times in the arm.\tOn lui tira trois fois dans le bras.\nHe was sleeping under the tree.\tIl dormait sous l'arbre.\nHe was sleeping under the tree.\tIl était en train de dormir sous l'arbre.\nHe was surprised to learn this.\tIl fut surpris de l'apprendre.\nHe was surprised to learn this.\tIl a été surpris de l'apprendre.\nHe was surprised to learn this.\tIl fut surpris d'apprendre ça.\nHe was surprised to learn this.\tIl a été surpris d'apprendre ça.\nHe was the envy of his friends.\tSes amis l'enviaient.\nHe was tired so he went to bed.\tIl était fatigué, il alla donc au lit.\nHe was too drunk to drive home.\tIl était trop soûl pour rentrer chez lui en voiture.\nHe was too young to live alone.\tIl était trop jeune pour vivre seul.\nHe was wounded in the shoulder.\tIl était blessé à l'épaule.\nHe went home three hours later.\tIl est rentré chez lui trois heures plus tard.\nHe went over to the other side.\tIl se rendit de l'autre côté.\nHe went over to the other side.\tIl s'est rendu de l'autre côté.\nHe went over to the other side.\tIl est passé de l'autre bord.\nHe went over to the other side.\tIl passa à l'autre bord.\nHe went there, never to return.\tIl s'y rendit, pour ne plus jamais revenir.\nHe went to Paris two years ago.\tIl est allé à Paris il y a deux ans.\nHe went to a single-sex school.\tIl a fréquenté une école de garçons.\nHe went to a single-sex school.\tIl a fréquenté une école non mixte.\nHe went to some place or other.\tIl est allé dans un endroit ou un autre.\nHe will be back in ten minutes.\tIl reviendra dans dix minutes.\nHe will be coming to the party.\tIl viendra à la fête.\nHe will notice sooner or later.\tIl le remarquera tôt ou tard.\nHe will reach Hakodate tonight.\tIl arrivera à Hakodate ce soir.\nHe won't be home at lunch time.\tIl ne sera pas à la maison pour l'heure du déjeuner.\nHe won't be home at lunch time.\tIl ne sera pas à la maison pour l'heure du dîner.\nHe won't tell me what happened.\tIl refuse de me dire ce qui est arrivé.\nHe works from Monday to Friday.\tIl travaille du lundi au vendredi.\nHe works with me at the office.\tIl travaille avec moi au bureau.\nHe wrapped his arms around her.\tIl l'enveloppa de ses bras.\nHe writes scripts for TV shows.\tIl écrit des scénarios pour des séries télé.\nHe wrote a book while in China.\tEn Chine il a écrit un livre.\nHe'll be back in a few minutes.\tIl revient dans quelques minutes.\nHe'll be seventeen in February.\tIl aura 17 ans en février.\nHe's a talented young director.\tC'est un jeune directeur plein de talent.\nHe's a talented young director.\tC'est un jeune metteur en scène plein de talent.\nHe's afraid of making mistakes.\tIl a peur de faire des erreurs.\nHe's afraid of making mistakes.\tIl craint de commettre des erreurs.\nHe's afraid of making mistakes.\tIl a peur de se tromper.\nHe's always at home on Mondays.\tIl est toujours chez lui le lundi.\nHe's always at home on Mondays.\tIl se trouve toujours à son domicile, le lundi.\nHe's always at home on Sundays.\tIl est toujours chez lui le dimanche.\nHe's been working all day long.\tIl a travaillé toute la journée.\nHe's doing his German homework.\tIl fait son devoir d'allemand.\nHe's just like his grandfather.\tIl est exactement comme son grand-père.\nHe's just trying to be popular.\tIl tente juste d'acquérir de la renommée.\nHe's never been in love before.\tIl n'a jamais été amoureux auparavant.\nHe's never been in love before.\tJamais il n'a été amoureux auparavant.\nHe's not a very meticulous guy.\tIl n'est pas vraiment minutieux.\nHe's obsessed with cleanliness.\tIl est obsédé par la propreté.\nHe's reading a novel right now.\tIl est en train de lire un roman.\nHe's reading a novel right now.\tIl lit un roman, en ce moment.\nHe's the laziest person I know.\tIl est la personne la plus paresseuse que je connaisse.\nHe's the only one who survived.\tIl est le seul à avoir survécu.\nHe's three years older than me.\tIl a trois ans de plus que moi.\nHe's three years older than me.\tIl est trois ans plus vieux que moi.\nHe's thrilled with his new job.\tIl est enthousiasmé par son nouveau travail.\nHelp yourself to these cookies.\tSers-toi de ces biscuits.\nHelp yourself to these cookies.\tServez-vous des biscuits.\nHer belief in God is very firm.\tC'est une fervente croyante.\nHer belief in God is very firm.\tSa croyance en Dieu est résolue.\nHer cleverness often amazes me.\tSon intelligence me surprend souvent.\nHer daughter is bad at cooking.\tSa fille est mauvaise cuisinière.\nHer doll was run over by a car.\tSa poupée a été écrasée par une voiture.\nHer dream is to become a nurse.\tElle rêve de devenir infirmière.\nHer father has a general store.\tSon père gère une épicerie-droguerie.\nHer hair is long and beautiful.\tSes cheveux sont longs et magnifiques.\nHer hobby is collecting stamps.\tSon passe-temps est de collectionner les timbres.\nHer smile expressed her thanks.\tSon sourire exprimait sa gratitude.\nHer work is to wash the dishes.\tSon travail consiste à laver la vaisselle.\nHey, how's it going down there?\tEh, comment ça va là-bas ?\nHey, let me tell you something.\tHé, laisse-moi te dire quelque chose.\nHis absence was due to illness.\tSon absence a été causée par une maladie.\nHis ambition is to be a lawyer.\tSon ambition est de devenir avocat.\nHis behavior is very odd today.\tSon comportement est très étrange aujourd'hui.\nHis car has just been repaired.\tSa voiture vient d'être réparée.\nHis clothes are out of fashion.\tSes vêtements sont démodés.\nHis clothes are out of fashion.\tSes vêtements sont passés de mode.\nHis doctor ordered him to rest.\tSon docteur lui ordonna de se reposer.\nHis family works in the fields.\tSa famille travaille aux champs.\nHis girlfriend has lost weight.\tSa petite amie a perdu du poids.\nHis hobby is collecting stamps.\tSon passe-temps est de collectionner des timbres.\nHis hobby is painting pictures.\tSon passe-temps est de peindre des tableaux.\nHis house is not far from here.\tSa maison n'est pas loin d'ici.\nHis house was sold for $10,000.\tSa maison a été vendue pour 10.000$.\nHis mother came to pick him up.\tSa mère vint le chercher.\nHis mother used to be a singer.\tSa mère était chanteuse.\nHis new movie is disappointing.\tSon nouveau film est décevant.\nHis new novel is worth reading.\tSon nouveau roman vaut le coup de le lire.\nHis prediction might come true.\tSes prédictions pourraient devenir réelles.\nHis report does not sound true.\tSon rapport ne donne pas l'impression d'être véridique.\nHis room was covered with dust.\tSa chambre était couverte de poussière.\nHis sisters are both beautiful.\tSes sœurs sont toutes deux très belles.\nHis speech made no sense to me.\tSon discours n'avait aucun sens pour moi.\nHis sudden death was a tragedy.\tSa mort subite fut une tragédie.\nHis sudden death was a tragedy.\tSon soudain décès fut une tragédie.\nHis voice dropped to a whisper.\tSa voix se transforma en murmure.\nHis wife comes from California.\tSa femme est originaire de Californie.\nHis wife leads him by the nose.\tSa femme le mène par le bout du nez.\nHis work is not up to standard.\tSon travail n'est pas à la hauteur de la norme.\nHold on firmly to the handrail.\tTiens-toi fermement à la rampe.\nHold this while I tie my shoes.\tTiens ceci pendant que je noue mes lacets !\nHold this while I tie my shoes.\tTenez ceci pendant que je noue mes lacets !\nHold this while I tie my shoes.\tTiens ça pendant que j'attache mes lacets !\nHold this while I tie my shoes.\tTenez ça pendant que j'attache mes lacets !\nHow about going out for dinner?\tEt si on sortait dîner ?\nHow could you say such a thing?\tComment as-tu pu dire une telle chose ?\nHow could you say such a thing?\tComment avez-vous pu dire une telle chose ?\nHow dangerous is the situation?\tQuel degré de danger présente la situation ?\nHow did you and Tom first meet?\tComment toi et Tom vous êtes rencontrés ?\nHow did you come by such a job?\tComment as-tu trouvé un tel emploi ?\nHow did you come by such a job?\tComment avez-vous fait pour trouver un tel poste ?\nHow did you come by this money?\tComment t'es-tu procuré cet argent ?\nHow did you come to hear of it?\tComment en as-tu entendu parler ?\nHow did you come to hear of it?\tComment en avez-vous entendu parler ?\nHow did you get into the house?\tComment avez-vous pénétré dans la maison ?\nHow did you get into the house?\tComment as-tu pénétré dans la maison ?\nHow did you spend your holiday?\tComment avez-vous passé vos vacances ?\nHow did you spend your holiday?\tComment as-tu passé tes vacances ?\nHow do I get in touch with you?\tComment est-ce que je prends contact avec vous ?\nHow do I get in touch with you?\tComment est-ce que je prends contact avec toi ?\nHow do I know you didn't do it?\tComment sais-je que vous ne l'avez pas fait ?\nHow do I know you didn't do it?\tComment sais-je que tu ne l'as pas fait ?\nHow do you access the Internet?\tComment fais-tu pour avoir accès à l'internet ?\nHow do you feel about all this?\tQuel est votre sentiment à propos de tout ça ?\nHow do you feel about all this?\tQuel est ton sentiment à propos de tout ça ?\nHow do you feel at this moment?\tComment vous sentez-vous à l'instant ?\nHow do you know I didn't do it?\tComment sais-tu que je ne l'ai pas fait ?\nHow do you know I didn't do it?\tComment savez-vous que je ne l'ai pas fait ?\nHow do you know that'll happen?\tComment sais-tu que ça va se produire?\nHow do you like your eggs done?\tComment veux-tu tes œufs ?\nHow do you like your new class?\tApprécies-tu ta nouvelle classe ?\nHow do you plan to make amends?\tComment comptez-vous réparer ?\nHow do you plan to make amends?\tComment comptes-tu réparer ?\nHow do you pronounce your name?\tComment prononcez-vous votre nom ?\nHow do you pronounce your name?\tComment faut-il prononcer votre prénom ?\nHow do you say that in Italian?\tComment est-ce qu'on dit ça en italien ?\nHow do you stand this humidity?\tComment supportez-vous cette humidité ?\nHow do you stand this humidity?\tComment supportes-tu cette humidité ?\nHow far are you prepared to go?\tJusqu'où es-tu prêt à aller ?\nHow far are you prepared to go?\tJusqu'où es-tu prête à aller ?\nHow far are you prepared to go?\tJusqu'où êtes-vous prêt à aller ?\nHow far are you prepared to go?\tJusqu'où êtes-vous prêtes à aller ?\nHow far are you prepared to go?\tJusqu'où êtes-vous prête à aller ?\nHow far are you prepared to go?\tJusqu'où êtes-vous prêts à aller ?\nHow have you been doing lately?\tComment vous portez-vous ces derniers temps ?\nHow have you been doing lately?\tComment vas-tu ces temps-ci ?\nHow long ago did the bus leave?\tDepuis combien de temps le bus est-il parti ?\nHow long are you going to stay?\tCombien de temps comptes-tu rester ?\nHow long did he live in Ankara?\tCombien de temps a-t-il vécu à Ankara?\nHow long is this visa good for?\tQuelle est la durée de validité de ce visa ?\nHow long were you at the party?\tCombien de temps avez-vous été à la soirée ?\nHow long were you at the party?\tCombien de temps as-tu été à la soirée ?\nHow long were you at the party?\tCombien de temps avez-vous été à la fête ?\nHow long were you at the party?\tCombien de temps as-tu été à la fête ?\nHow long you two been together?\tDepuis combien de temps êtes-vous tous les deux ensemble ?\nHow many inhabitants are there?\tCombien y a-t-il d'habitants ?\nHow many more forks do we need?\tIl nous faut encore combien de fourchettes ?\nHow many more of you are there?\tCombien d'entre vous y a-t-il encore ?\nHow many people are here today?\tCombien y a-t-il ici de personnes, aujourd'hui ?\nHow many times have I told you?\tCombien de fois te l'ai-je dis ?\nHow many times have I told you?\tCombien de fois vous l'ai-je dit ?\nHow many were there altogether?\tCombien étaient là, en tout ?\nHow much do these glasses cost?\tCombien coûtent ces lunettes ?\nHow much have you made tonight?\tCombien t'es-tu fait, ce soir ?\nHow much have you made tonight?\tCombien vous êtes-vous fait, ce soir ?\nHow much is that mountain bike?\tCombien pour ce VTT ?\nHow much is the rent per month?\tÀ combien se monte le loyer mensuel ?\nHow much more work do you have?\tCombien de travail te reste-t-il encore ?\nHow much more work do you have?\tCombien de travail vous reste-t-il encore ?\nHow nice to be in Hawaii again!\tQuel plaisir d'être à Hawaii à nouveau.\nHow often do you feed the fish?\tÀ quelle fréquence nourris-tu les poissons ?\nHow often should I feed my dog?\tÀ quelle fréquence devrais-je nourrir mon chien ?\nHow would they know what to do?\tComment sauraient-ils quoi faire ?\nHow would they know what to do?\tComment sauraient-elles quoi faire ?\nHurry up! I don't have all day.\tDépêche-toi ! Je n'ai pas toute la journée !\nHurry up! I don't have all day.\tDépêchez-vous ! Je n'ai pas toute la journée !\nI accompanied her on the piano.\tJe l'accompagnais au piano.\nI acted like I didn't know her.\tJe me suis comporté comme si je ne la connaissais pas.\nI acted like I didn't know her.\tJe me suis comportée comme si je ne la connaissais pas.\nI advise you to change clothes.\tJe vous conseille de changer de vêtements.\nI advise you to change clothes.\tJe te conseille de changer de vêtements.\nI advise you to change clothes.\tJe vous conseille de vous changer.\nI advise you to change clothes.\tJe te conseille de te changer.\nI advise you wear a heavy coat.\tJe vous conseille de mettre un manteau épais.\nI agree with him on that point.\tJe suis d'accord avec lui sur ce point.\nI agree with you on this point.\tJe suis d'accord avec toi sur ce point.\nI agree with you on this point.\tJe suis d'accord avec vous sur ce point.\nI almost forgot all about that.\tJ'ai presque tout oublié à ce propos.\nI almost forgot all about that.\tJ'ai presque tout oublié à ce sujet.\nI almost never remember dreams.\tJe ne me rappelle presque jamais de mes rêves.\nI already did that twice today.\tJe l'ai déjà fait deux fois aujourd'hui.\nI already did that twice today.\tJe l'ai déjà fait à deux reprises aujourd'hui.\nI always have room for dessert.\tJ'ai toujours la place pour le dessert.\nI always have room for dessert.\tJ'ai toujours de la place pour le dessert.\nI always root for the underdog.\tJe suis toujours du côté du perdant.\nI always root for the underdog.\tJe me tiens toujours du côté du perdant.\nI always thought Tom was funny.\tJ'ai toujours pensé que Tom était drôle.\nI always try to tell the truth.\tJ'essaie toujours de dire la vérité.\nI am anxious about your health.\tJe suis inquiet pour ta santé.\nI am at the end of my patience.\tMa patience est à bout.\nI am going to America by plane.\tJe vais en Amérique en avion.\nI am going to Europe next week.\tJe vais en Europe la semaine prochaine.\nI am in favor of your proposal.\tJe suis en faveur de votre proposition.\nI am in favor of your proposal.\tJe suis en faveur de ta proposition.\nI am learning a little English.\tJ'apprends un peu d'anglais.\nI am not alone in this opinion.\tJe ne suis pas le seul à avoir cette opinion.\nI am not wearing any underwear.\tJe ne porte aucun sous-vêtement.\nI am positive that he is wrong.\tJe suis certain qu'il a tort.\nI am sorry. I am not from here.\tJe suis désolé. Je ne suis pas d'ici.\nI am suffering from a bad cold.\tJe souffre d'un mauvais rhume.\nI am sure that he will succeed.\tJe suis sûr qu'il réussira.\nI am terribly afraid of snakes.\tJ'ai une peur terrible des serpents.\nI am the happiest man on earth.\tJe suis l'homme le plus heureux de la terre.\nI am the laziest person I know.\tJe suis la personne la plus paresseuse que je connaisse.\nI am tired of listening to Tom.\tJe suis fatigué d'écouter Tom.\nI am very interested in French.\tJe suis très intéressé par la langue française.\nI apologize for the late reply.\tJe présente mes excuses pour la réponse tardive.\nI arrived on the night he left.\tJe suis arrivé la nuit où il est parti.\nI asked Tom to play the guitar.\tJ'ai demandé à Tom de jouer de la guitare.\nI asked Tom why he was unhappy.\tJ'ai demandé à Tom pourquoi il était triste.\nI asked him about the accident.\tJe lui ai demandé à propos de l'accident.\nI asked him about the accident.\tJe l'interrogeai au sujet de l'accident.\nI asked him if he knew my name.\tJe lui demandai s'il connaissait mon nom.\nI asked him if he knew my name.\tJe lui ai demandé s'il connaissait mon nom.\nI asked him where he was going.\tJe lui ai demandé où il allait.\nI assume you've heard from Tom.\tJe suppose que tu as entendu parler de Tom.\nI assume you've heard from Tom.\tJe suppose que vous avez entendu parler de Tom.\nI believe we can get that done.\tJe crois que nous pouvons arriver à le faire faire.\nI believe we can get that done.\tJe crois que nous pouvons faire en sorte que ce soit fait.\nI believe you have my umbrella.\tJe crois que tu as mon parapluie.\nI believe you have my umbrella.\tJe crois que vous avez mon parapluie.\nI believe you know what I mean.\tJe crois que tu sais ce que je veux dire.\nI bought a dozen pencils today.\tJ'ai acheté une douzaine de crayons aujourd'hui.\nI bought these flowers for you.\tJ'ai acheté ces fleurs pour toi.\nI bought two pairs of trousers.\tJ'ai acheté deux pantalons.\nI can afford one, but not both.\tJe peux m'en payer un, mais pas les deux.\nI can hardly believe his story.\tJ'arrive à peine à croire son histoire.\nI can lend you one if you want.\tJe peux t'en prêter un si tu veux.\nI can lend you one if you want.\tJe peux vous en prêter un si vous voulez.\nI can not answer your question.\tJe ne peux pas répondre à votre question.\nI can not answer your question.\tJe ne peux pas répondre à ta question.\nI can see myself in the mirror.\tJe peux me voir dans le miroir.\nI can see myself in the mirror.\tJe peux me regarder dans le miroir.\nI can see myself in the mirror.\tJe me vois dans le miroir.\nI can teach you how to do this.\tJe peux t'apprendre à faire ça.\nI can teach you how to do this.\tJe peux vous apprendre à faire ça.\nI can think of several reasons.\tJe peux imaginer plusieurs raisons.\nI can understand your language.\tJe peux comprendre ta langue.\nI can't believe I'm doing this.\tJe n'arrive pas à croire que je le fasse.\nI can't believe I'm doing this.\tJe n'arrive pas à croire que je sois en train de le faire.\nI can't believe I'm here again.\tJe n'arrive pas à croire que je sois à nouveau ici.\nI can't believe I'm here again.\tJe n'arrive pas à croire que je sois de nouveau ici.\nI can't believe I'm here again.\tJe n'arrive pas à croire que je sois de nouveau là.\nI can't believe I'm here again.\tJe n'arrive pas à croire que je sois à nouveau là.\nI can't believe you lied to me.\tJe n'arrive pas à croire que vous m'ayez menti.\nI can't believe you lied to me.\tJe n'arrive pas à croire que tu m'aies menti.\nI can't breath through my nose.\tJe ne peux pas respirer par le nez.\nI can't breath through my nose.\tJe n'arrive pas à respirer par le nez.\nI can't carry all that baggage.\tJe ne peux pas porter tous ces bagages.\nI can't do without your advice.\tJe n'y arrive pas sans tes conseils.\nI can't do without your advice.\tJe n'y arrive pas sans vos conseils.\nI can't get away from work now.\tJe ne peux pas partir du travail pour l'instant.\nI can't get her out of my mind.\tJe ne peux pas l'enlever de mon esprit.\nI can't get her out of my mind.\tJe n'arrive pas à la faire sortir de ma tête.\nI can't get you out of my head.\tJ'arrête pas de penser à toi.\nI can't get you out of my head.\tJe n'arrive pas à vous oublier.\nI can't help making fun of him.\tJe ne peux m'empêcher de me moquer de lui.\nI can't keep my eyes off of it.\tJe n'arrive pas à en retirer mes yeux.\nI can't live that kind of life.\tJe ne peux pas vivre comme ça.\nI can't put up with that noise.\tJe ne peux pas supporter ce bruit.\nI can't put up with this smell.\tJe ne peux pas supporter cette odeur.\nI can't quite place his accent.\tJe n'arrive pas à localiser son accent.\nI can't see anything from here.\tD'ici, je ne vois rien.\nI can't see anything from here.\tJe n'arrive à rien voir d'ici.\nI can't stand this hot weather.\tJe ne peux pas supporter ce temps chaud.\nI can't stand this stomachache.\tJe ne peux pas supporter ces maux d'estomac.\nI can't tell you what happened.\tJe ne peux pas te dire ce qui est arrivé.\nI can't understand the meaning.\tJe ne parviens pas à en comprendre le sens.\nI can't understand the meaning.\tJe ne parviens pas à en saisir le sens.\nI cannot afford long vacations.\tJe ne peux me permettre de longues vacances.\nI cannot agree to his proposal.\tJe ne peux pas être d'accord avec sa proposition.\nI cannot do the work on my own.\tJe ne peux pas faire le travail tout seul.\nI cannot get in touch with him.\tJe ne peux pas le joindre.\nI cannot lend this book to you.\tJe ne peux pas te prêter ce livre.\nI cannot lend this book to you.\tJe ne peux vous prêter ce livre.\nI caught a beautiful butterfly.\tJ'ai attrapé un beau papillon.\nI caught a glimpse of her face.\tJ'ai entrevu son visage.\nI caught my finger in the door.\tJe me suis pincé le doigt dans la porte.\nI could hardly endure the pain.\tJe pouvais à peine endurer la douleur.\nI could hardly endure the pain.\tJe pourrais à peine endurer la douleur.\nI could have done it by myself.\tJ'aurais pu le faire moi-même.\nI could read between the lines.\tJe pouvais lire entre les lignes.\nI could've done that by myself.\tJ'aurais pu faire cela moi-même.\nI couldn't have prevented this.\tJe n'aurais pu prévenir cela.\nI couldn't have said it better.\tJe n'aurais pas dit mieux.\nI couldn't see what was inside.\tJe ne pouvais pas voir ce qu'il y avait à l'intérieur.\nI couldn't stand it any longer.\tJe ne pourrais pas le supporter plus longtemps.\nI couldn't stand it any longer.\tJe ne pourrais le supporter plus longtemps.\nI couldn't stand it any longer.\tJe ne pourrais le supporter davantage.\nI couldn't stand it any longer.\tJe ne pourrais davantage le supporter.\nI couldn't stand it any longer.\tJe ne pourrais pas le supporter davantage.\nI couldn't stand it any longer.\tJe n'arriverais pas à le supporter plus longtemps.\nI couldn't stand it any longer.\tJe n'arriverais pas à le supporter davantage.\nI couldn't stand it any longer.\tJe n'arriverais pas à davantage le supporter.\nI couldn't stand looking at it.\tJe ne pourrais pas supporter de le regarder.\nI couldn't stand looking at it.\tJe ne pouvais pas supporter de le regarder.\nI couldn't survive without Tom.\tJe ne pouvais pas survivre sans Tom.\nI couldn't understand his joke.\tJe n'arrivais pas à comprendre sa blague.\nI couldn't understand his joke.\tJe ne comprenais pas sa blague.\nI couldn't wait to get started.\tJ'avais hâte de commencer.\nI did it the way he told me to.\tJe l'ai fait comme il m'avait dit de le faire.\nI did something I regret doing.\tJ'ai fait quelque chose que je regrette d'avoir fait.\nI didn't eat dinner last night.\tJe n'ai pas dîné hier soir.\nI didn't feel like celebrating.\tJe n'avais pas le cœur à faire la fête.\nI didn't feel like celebrating.\tJe n'ai pas eu le cœur à faire la fête.\nI didn't feel like celebrating.\tJe n'eus pas le cœur à faire la fête.\nI didn't feel like celebrating.\tJe n'étais pas d'humeur à faire la fête.\nI didn't know anyone was there.\tJ'ignorais que quiconque était là.\nI didn't know anyone was there.\tJ'ignorais que quiconque fut là.\nI didn't know he drank so much.\tJe ne savais pas qu'il buvait autant.\nI didn't know he drank so much.\tJe ne savais pas qu'il avait autant bu.\nI didn't know what to do first.\tJe ne savais que faire en premier.\nI didn't know what to do, then.\tDès lors je ne savais plus quoi faire.\nI didn't know where else to go.\tJ'ignorais à quel autre endroit aller.\nI didn't know where else to go.\tJ'ignorais à quel autre endroit me rendre.\nI didn't know where else to go.\tJe ne savais pas à quel autre endroit aller.\nI didn't know where else to go.\tJe ne savais pas à quel autre endroit me rendre.\nI didn't know you had a sister.\tJ'ignorais que tu avais une sœur.\nI didn't mean to interrupt you.\tJe ne voulais pas vous interrompre.\nI didn't recognize it at first.\tJe ne l'ai pas reconnu, initialement.\nI didn't recognize it at first.\tJe ne l'ai pas reconnu, au premier abord.\nI didn't recognize what it was.\tJe n'ai pas reconnu ce dont il s'agissait.\nI didn't recognize what it was.\tJe n'ai pas reconnu de quoi il retournait.\nI didn't recognize what it was.\tJe n'ai pas reconnu ce que c'était.\nI didn't sleep much last night.\tJe n'ai pas beaucoup dormi la nuit dernière.\nI didn't sleep much last night.\tJe n'ai guère dormi la nuit dernière.\nI didn't sleep much last night.\tJe n'ai pas beaucoup dormi la nuit passée.\nI didn't sleep much last night.\tJe n'ai guère dormi la nuit passée.\nI didn't tell that guy my name.\tJe n'ai pas donné mon nom à ce type.\nI didn't think anyone was home.\tJe ne pensais pas que quiconque était à la maison.\nI didn't think anyone was home.\tJe n'ai pas pensé que quiconque était à la maison.\nI didn't think anyone was home.\tJe ne pensais pas que quiconque était chez lui.\nI didn't think anyone was home.\tJe n'ai pas pensé que quiconque était chez lui.\nI didn't think it would matter.\tJe ne pensais pas que ça importerait.\nI didn't think it would matter.\tJe ne pensais pas que ça aurait de l'importance.\nI didn't think it would matter.\tJe n'ai pas pensé que ça importerait.\nI didn't think it would matter.\tJe n'ai pas pensé que ça aurait de l'importance.\nI didn't think you were coming.\tJe ne pensais pas que vous veniez.\nI didn't think you were coming.\tJe ne pensais pas que tu venais.\nI didn't think you were needed.\tJe ne pensais pas qu'on avait besoin de vous.\nI didn't think you were needed.\tJe n'ai pas pensé qu'on avait besoin de vous.\nI didn't think you were needed.\tJe ne pensais pas qu'on avait besoin de toi.\nI didn't think you were needed.\tJe n'ai pas pensé qu'on avait besoin de toi.\nI didn't think you'd be coming.\tJe ne pensais pas que vous viendriez.\nI didn't think you'd be coming.\tJe ne pensais pas que tu viendrais.\nI didn't think you'd come back.\tJe ne pensais pas que vous reviendriez.\nI didn't think you'd come back.\tJe ne pensais pas que tu reviendrais.\nI didn't try to go any further.\tJe n'ai pas tenté de me rendre plus loin.\nI didn't try to go any further.\tJe n'ai pas essayé de me rendre plus loin.\nI didn't want you to read that.\tJe ne voulais pas que vous lisiez cela.\nI didn't want you to read that.\tJe ne voulais pas que tu lises cela.\nI do not agree with you at all.\tJe ne suis pas du tout d'accord avec vous.\nI do not agree with you at all.\tJe ne suis pas du tout d'accord avec toi.\nI do not doubt it in the least.\tJe n'ai aucun doute sur ça.\nI do not like the way he talks.\tJe déteste sa manière de parler.\nI do not like to make mistakes.\tJe n'aime pas commettre des erreurs.\nI do work related to computers.\tJ'effectue un travail en relation avec les ordinateurs.\nI don't believe he is a lawyer.\tJe pense qu'il n'est pas avocat.\nI don't believe him any longer.\tJe ne le crois plus.\nI don't believe in coincidence.\tJe ne crois pas aux coïncidences.\nI don't believe in fairy tales.\tJe ne crois pas aux contes de fées.\nI don't believe one word of it.\tJe n'en crois pas un mot.\nI don't believe you've met him.\tJe ne crois pas que tu l'aies rencontré.\nI don't care about any of that.\tJe ne me soucie de rien de tout cela.\nI don't care about any of that.\tJe me fiche de tout cela.\nI don't care how long it takes.\tJe me fiche de combien de temps ça prend.\nI don't care what people think.\tPeu m'importe ce que les gens pensent.\nI don't care what people think.\tJe me fiche de ce que les gens pensent.\nI don't care what people think.\tJe n'ai cure de ce que les gens pensent.\nI don't care who we give it to.\tJe me fiche de savoir à qui nous le donnons.\nI don't care who's responsible.\tJe me fiche de savoir qui est responsable.\nI don't consider that adequate.\tJe ne considère pas cela suffisant.\nI don't consider that adequate.\tJe ne considère pas que ce soit à la hauteur.\nI don't deserve to be so happy.\tJe ne mérite pas d'être si heureux.\nI don't deserve to be so happy.\tJe ne mérite pas d'être si heureuse.\nI don't even have a girlfriend.\tJe n'ai même pas de petite amie.\nI don't even have time to read.\tJe n'ai même pas le temps de lire.\nI don't even know how to dance.\tJe ne sais même pas danser.\nI don't expect to be gone long.\tJe ne m'attends pas à être parti pour longtemps.\nI don't expect to be gone long.\tJe ne m'attends pas à être partie pour longtemps.\nI don't feel like eating sushi.\tJe ne suis pas d'humeur à manger des sushi.\nI don't feel like eating sushi.\tÇa ne me dit rien de manger des sushis.\nI don't feel like sitting down.\tJe n'ai pas envie de m'asseoir.\nI don't feel much like dancing.\tJe n'ai pas très envie de danser.\nI don't feel much like talking.\tJe n'ai pas très envie de discuter.\nI don't feel safe here anymore.\tJe ne me sens plus en sécurité ici.\nI don't find it that difficult.\tJe ne trouve pas ça si difficile.\nI don't go to school on Sunday.\tJe ne vais pas à l'école le dimanche.\nI don't handle loneliness well.\tJe ne gère pas bien la solitude.\nI don't handle ultimatums well.\tJe ne gère pas bien les ultimatums.\nI don't have any books to read.\tJe n'ai aucun livre à lire.\nI don't have any close friends.\tJe n'ai pas d'amis intimes.\nI don't have any close friends.\tJe n'ai aucun ami intime.\nI don't have any close friends.\tJe n'ai aucun ami proche.\nI don't have any time to waste.\tJe n'ai aucun temps à gaspiller.\nI don't have anyone to yell at.\tJe n'ai personne sur qui hurler.\nI don't have that kind of time.\tJe ne dispose pas d'une telle quantité de temps.\nI don't have the time for this.\tJe n'ai pas le temps pour ça.\nI don't have time for this now.\tJe n'ai pas de temps pour ceci, actuellement.\nI don't have to listen to that.\tJe ne dois pas écouter ça.\nI don't have to listen to this.\tJe n'ai pas à écouter ça.\nI don't have to think about it.\tJe n'ai pas à y penser.\nI don't have to think about it.\tJe n'ai pas à y réfléchir.\nI don't know a thing about her.\tJe ne sais rien d'elle.\nI don't know anybody else here.\tJe ne connais personne d'autre, ici.\nI don't know anybody in Boston.\tJe ne connais personne à Boston.\nI don't know how Tom found out.\tJe ne sais pas comment Tom l'a découvert.\nI don't know how to explain it.\tJe ne sais pas comment l'expliquer.\nI don't know how, but I did it.\tJ'ignore comment mais je l'ai fait.\nI don't know if he is a doctor.\tJe ne sais pas si c'est un médecin.\nI don't know if he is a doctor.\tJ'ignore s'il est médecin.\nI don't know what came over me.\tJe ne sais pas ce qui m'a pris.\nI don't know what came over me.\tJ'ignore ce qui m'a pris.\nI don't know what the truth is.\tJ'ignore ce qu'est la vérité.\nI don't know when I'll be back.\tJ'ignore quand je serai de retour.\nI don't know when I'll be back.\tJe ne sais pas quand je serai de retour.\nI don't know where my keys are.\tJ'ignore où sont mes clés.\nI don't know where my keys are.\tJe ne sais pas où se trouvent mes clés.\nI don't know where you are now.\tJe ne sais pas où tu es maintenant.\nI don't know who made the cake.\tJ'ignore qui a confectionné le gâteau.\nI don't know why we're so busy.\tJe ne sais pas pourquoi nous sommes tant occupés\nI don't like Christmas anymore.\tJe n'aime plus du tout Noël.\nI don't like any of these hats.\tJe n'aime aucun de ces chapeaux.\nI don't like it when you swear.\tJe n'aime pas que tu jures.\nI don't like it when you swear.\tJe n'aime pas que vous juriez.\nI don't like swimming in pools.\tJe n'aime pas nager en piscine.\nI don't like the taste of this.\tJe n'aime pas le gout que ça a.\nI don't like to sing in public.\tJe n'aime pas chanter en public.\nI don't like to talk about Tom.\tJe n'aime pas parler de Tom.\nI don't like who you've become.\tJe n'aime pas ce que vous êtes devenu.\nI don't like who you've become.\tJe n'aime pas ce que vous êtes devenue.\nI don't like who you've become.\tJe n'aime pas ce que vous êtes devenus.\nI don't like who you've become.\tJe n'aime pas ce que vous êtes devenues.\nI don't like who you've become.\tJe n'aime pas ce que tu es devenu.\nI don't like who you've become.\tJe n'aime pas ce que tu es devenue.\nI don't mind getting up at six.\tÇa m'est égal de me lever à 6 heures.\nI don't mind your staying here.\tÇa ne me dérange pas que vous restiez.\nI don't need that kind of help.\tJe n'ai pas besoin de ce genre d'aide.\nI don't need you to pick me up.\tJe n'ai pas besoin de toi pour venir me chercher.\nI don't put sugar in my coffee.\tJe ne mets pas de sucre dans mon café.\nI don't quite know what to say.\tJe ne sais pas vraiment quoi dire.\nI don't really understand this.\tJe ne comprends pas vraiment ceci.\nI don't really want to be here.\tJe n'ai pas vraiment envie d'être là.\nI don't remember anything else.\tJe ne me rappelle rien d'autre.\nI don't remember anything else.\tJe ne me souviens de rien d'autre.\nI don't remember what happened.\tJe ne me souviens plus de ce qui s'est passé.\nI don't see how I can help you.\tJe ne vois pas comment je peux vous aider.\nI don't speak French very much.\tJe ne parle pas beaucoup français.\nI don't think Tom is in Boston.\tJe ne pense pas que Tom soit à Boston.\nI don't think Tom is listening.\tJe ne pense pas que Tom écoute.\nI don't think Tom likes to ski.\tJe ne pense pas que Tom aime skier.\nI don't think any of them know.\tJe ne pense pas qu'aucun d'entre eux ne le sache.\nI don't think any of them know.\tJe ne pense pas qu'aucune d'entre elles ne le sache.\nI don't think anything changes.\tJe ne crois pas que les choses changent.\nI don't think everyone gave up.\tJe ne pense pas que tout le monde ait renoncé.\nI don't think it was a mistake.\tJe ne pense pas que ce fût une erreur.\nI don't think it's a bad thing.\tJe ne pense pas que ce soit une mauvaise chose\nI don't think that that's fair.\tJe ne pense pas que ce soit juste.\nI don't think we have a choice.\tJe ne pense pas que nous ayons le choix.\nI don't think we need to do it.\tJe ne pense pas que nous devions faire ça.\nI don't think we were followed.\tJe ne pense pas qu'on a été suivis.\nI don't think you'll like this.\tJe ne pense pas que ça va te plaire.\nI don't trust talkative people.\tJe ne fais pas confiance aux gens qui sont bavards.\nI don't understand any of this.\tJe n'y comprends rien du tout.\nI don't understand this at all.\tJe ne comprends pas du tout ça.\nI don't want a gun in my house.\tJe ne veux pas d'un pistolet dans ma maison.\nI don't want any more problems.\tJe ne veux pas plus de problèmes.\nI don't want people to hate me.\tJe ne veux pas que les gens me haïssent.\nI don't want people to hate me.\tJe ne veux pas que les gens me détestent.\nI don't want to be your friend.\tJe ne veux pas être ton ami.\nI don't want to be your friend.\tJe ne veux pas être ton amie.\nI don't want to be your friend.\tJe ne veux pas être votre ami.\nI don't want to be your friend.\tJe ne veux pas être votre amie.\nI don't want to know the truth.\tJe ne veux pas connaître la vérité.\nI don't want to live by myself.\tJe ne veux pas vivre seul.\nI don't want to live like that.\tJe ne veux pas vivre comme ça.\nI don't want to risk losing it.\tJe ne veux pas courir le risque de le perdre.\nI don't want to talk to anyone.\tJe ne veux parler à personne.\nI don't want to think about it.\tJe ne veux pas y penser.\nI don't want to wait that long.\tJe ne veux pas attendre aussi longtemps.\nI don't want to waste my money.\tJe ne veux pas dépenser inutilement mon argent.\nI don't want you to feel alone.\tJe ne veux pas que vous vous sentiez seul\nI don't want your legal advice.\tJe ne veux pas de vos conseils juridiques.\nI don't want your legal advice.\tJe ne veux pas de tes conseils juridiques.\nI don't worry about that stuff.\tJe ne m'inquiète pas concernant ce truc\nI dreamed about Tom last night.\tJ'ai rêvé de Tom, cette nuit.\nI earn my living as best I can.\tJe gagne ma vie du mieux que je peux.\nI enjoy watching children play.\tJ'aime regarder jouer les enfants.\nI expect everyone to work hard.\tJe m'attends à ce que tout le monde travaille dur.\nI expect you know all about it.\tJ'espère que tu sais tout à ce propos.\nI expect you know all about it.\tJ'espère que vous n'ignorez rien à ce sujet.\nI explained the process to him.\tJe lui ai expliqué le processus.\nI explained the process to him.\tJe lui ai expliqué le procédé.\nI feel awful about what I said.\tJe me sens affreusement mal à propos de ce que j'ai dit.\nI feel awkward in his presence.\tJe me sens gêné en sa présence.\nI feel happy when I'm with you.\tJe me sens heureux lorsque je suis avec toi.\nI feel it's something I can do.\tJe sens que c'est quelque chose que je peux faire\nI feel like I know you already.\tJ'ai le sentiment de déjà vous connaître.\nI feel like I know you already.\tJ'ai le sentiment de déjà te connaître.\nI feel like I know you already.\tJ'ai l'impression de déjà vous connaître.\nI feel like I know you already.\tJ'ai l'impression de déjà te connaître.\nI feel like I missed something.\tJ'ai l'impression d'avoir manqué quelque chose\nI feel like I'm going to be OK.\tJ'ai l'impression que je vais aller mieux.\nI feel like I'm losing my mind.\tJ'ai l'impression de perdre l'esprit.\nI feel like I'm ready for that.\tJ'ai le sentiment d'être prêt pour ça.\nI feel like a brand new person.\tJe me sens comme une toute nouvelle personne.\nI feel like eating out tonight.\tJ'ai envie de manger à l'extérieur, ce soir.\nI feel ready for the challenge.\tJe me sens prêt à relever le défi.\nI feel that something is wrong.\tJe sens que quelque chose ne va pas.\nI felt as if I were in a dream.\tJe me sentais comme dans un rêve.\nI figured I could count on you.\tJ'ai pensé que je pourrais compter sur vous.\nI figured I could count on you.\tJ'ai pensé que je pourrais compter sur toi.\nI figured I could count on you.\tJe me suis imaginé que je pourrais compter sur vous.\nI figured I could count on you.\tJe me suis imaginée que je pourrais compter sur vous.\nI figured I could count on you.\tJe me suis imaginé que je pourrais compter sur toi.\nI figured I could count on you.\tJe me suis imaginée que je pourrais compter sur toi.\nI figured you would understand.\tJ'imaginais que vous comprendriez.\nI figured you would understand.\tJ'imaginais que tu comprendrais.\nI finally got across the river.\tJ'ai finalement traversé la rivière.\nI finally got across the river.\tJ'ai finalement traversé le fleuve.\nI flew from London to New York.\tJ'ai pris le vol de Londres à New York.\nI forget your telephone number.\tJ'ai oublié votre numéro de téléphone.\nI forgot to lock the storeroom.\tJ'ai oublié de verrouiller le stock.\nI forgot to lock the storeroom.\tJ'ai oublié de verrouiller le magasin.\nI forgot to pay for the drinks.\tJ'ai oublié de payer pour les boissons.\nI forgot to send you an e-mail.\tJ'ai oublié de t'envoyer un courriel.\nI forgot to send you an e-mail.\tJ'ai oublié de vous envoyer un courriel.\nI forgot to tell you something.\tJ'ai oublié de te dire quelque chose.\nI forgot to tell you something.\tJ'ai oublié de vous dire quelque chose.\nI found the question very easy.\tJ'ai trouvé la question très facile.\nI gained two kilos this summer.\tJ'ai pris deux kilos cet été.\nI gather you were unsuccessful.\tJe conclus que vous n'avez pas réussi.\nI gather you were unsuccessful.\tJe conclus que tu n'as pas réussi.\nI gave her all the money I had.\tJe lui donnai tout l'argent dont je disposais.\nI gave her all the money I had.\tJe lui ai donné tout l'argent dont je disposais.\nI gave her her dictionary back.\tJe lui ai rendu son dictionnaire.\nI gave my brother a dictionary.\tJ’ai donné un dictionnaire à mon frère.\nI gave my seat to the old lady.\tJe donnai mon siège à la vieille dame.\nI gave my seat to the old lady.\tJ'ai donné mon siège à la vieille dame.\nI gave my seat to the old lady.\tJ'ai laissé ma place à la vieille dame.\nI gave up all hope of survival.\tJ'ai abandonné tout espoir de survie.\nI get up at six in the morning.\tJe me lève à six heures le matin.\nI glanced through the brochure.\tJe jetai un œil dans la brochure.\nI glanced through the brochure.\tJe jetai un œil dans le prospectus.\nI glanced through the brochure.\tJ'ai jeté un œil dans la brochure.\nI glanced through the brochure.\tJ'ai jeté un œil dans le prospectus.\nI got an ink blot on this form.\tJ'ai fait une tache d'encre sur la copie.\nI got bored with his long talk.\tSon long discours m'a ennuyé.\nI got off at the wrong station.\tJe suis descendu du train à la mauvaise gare.\nI got over it. You should, too.\tJe l'ai digéré. Tu devrais le faire aussi.\nI got the bicycle at a bargain.\tJ'ai eu le vélo à prix d'aubaine.\nI got this bicycle for nothing.\tJ'ai eu ce vélo pour rien.\nI got up at seven this morning.\tJe me suis levé à sept heures ce matin.\nI grabbed a book off the shelf.\tJ'ai attrapé un livre sur l'étagère.\nI grew up eating Japanese food.\tJ'ai grandi en mangeant de la nourriture japonaise.\nI guarantee I'll get you a job.\tJe t'assure que je te trouverai un travail.\nI guess I could give it a shot.\tJe suppose que je pourrais m'y essayer.\nI guess I have nothing to lose.\tJ'imagine que je n'ai rien à perdre.\nI had a feeling you'd say that.\tJ'ai eu le sentiment que vous diriez cela.\nI had a feeling you'd say that.\tJ'ai eu le sentiment que tu dirais cela.\nI had a good laugh at her joke.\tSa blague m’a beaucoup fait rire.\nI had a good reason to do that.\tJ'ai eu une bonne raison de faire cela.\nI had a good time at the party.\tJ'ai passé du bon temps à la fête.\nI had a good time last evening.\tJ'ai passé un bon moment hier soir.\nI had a good time playing golf.\tJ'ai eu beaucoup de plaisir à jouer au golf.\nI had a good time this evening.\tJ'ai passé une très agréable soirée.\nI had a neighbor who was blind.\tJ'ai eu un voisin qui était aveugle.\nI had a pretty happy childhood.\tJ'ai eu une enfance assez heureuse.\nI had a puppy when I was a boy.\tJ'avais un petit chien quand j'étais petit.\nI had a weird dream last night.\tJ'ai fait un rêve bizarre, la nuit passée.\nI had a weird dream last night.\tJ'ai fait un rêve bizarre, la nuit dernière.\nI had an interesting day today.\tJ'ai eu une journée intéressante, aujourd'hui.\nI had an operation last summer.\tJ'ai subi une opération, l'été dernier.\nI had been reading for an hour.\tJ'ai lu pendant 1 heure.\nI had business to take care of.\tJ'ai eu à faire.\nI had business to take care of.\tJ'ai dû m'occuper d'une affaire.\nI had business to take care of.\tIl a fallu que je m'occupe d'une affaire.\nI had everything under control.\tJ'avais toutes les choses en mains.\nI had hoped to save more money.\tJ'avais espéré épargner davantage d'argent.\nI had hoped you might say that.\tJ'avais espéré que tu dirais ça.\nI had my brother clean my room.\tJ'ai fait ranger ma chambre à mon frère.\nI had my car stolen last night.\tOn m'a volé ma voiture hier soir.\nI had my radio repaired by him.\tJe lui ai fait réparer la radio.\nI had never seen so much money.\tJe n'ai jamais vu autant d'argent.\nI had no idea what I was doing.\tJe n'avais pas idée de ce que je faisais.\nI had no intention of doing so.\tJe n'avais aucune intention de le faire.\nI had to crawl under the fence.\tJ'ai dû ramper sous la barrière.\nI had to crawl under the fence.\tIl m'a fallu ramper sous la barrière.\nI had to find another solution.\tJ'ai dû trouver une autre solution.\nI had to get a molar extracted.\tJe devais me faire extraire une molaire.\nI had to pay five more dollars.\tJ'ai dû payer 5 dollars de plus.\nI had to take care of her baby.\tJ'ai dû garder son bébé.\nI hate terrorist organizations.\tJe hais les organisations terroristes.\nI hate that more than anything.\tJe déteste ça plus que tout.\nI hate to put you through this.\tJe déteste vous exposer à cela.\nI hate to put you through this.\tJe déteste t'exposer à cela.\nI hate to see you so miserable.\tJe déteste vous voir si malheureux.\nI hate to see you so miserable.\tJe déteste vous voir si malheureuse.\nI hate to see you so miserable.\tJe déteste vous voir si malheureuses.\nI hate to see you so miserable.\tJe déteste te voir si malheureux.\nI hate to see you so miserable.\tJe déteste te voir si malheureuse.\nI have a bone to pick with you.\tOn a un compte à régler.\nI have a few tickets in row 15.\tJ'ai quelques entrées pour la rangée 15.\nI have a friend who is a pilot.\tJ'ai un ami qui est pilote.\nI have a letter written by him.\tJ'ai une lettre qu'il a écrite.\nI have a lot of homework to do.\tJ'ai beaucoup de devoirs à faire.\nI have a lot of learning to do.\tJ'ai beaucoup à apprendre.\nI have a mind to buy a new car.\tJ'ai en tête d'acheter un nouveau véhicule.\nI have a picture of an airport.\tJ'ai une photo d'un aéroport.\nI have a reservation for today.\tJ'ai une réservation pour aujourd'hui.\nI have a slight headache today.\tAujourd'hui, j'ai un léger mal de tête.\nI have a surprise for you guys.\tJ'ai une surprise pour vous.\nI have a surprise for you guys.\tJ'ai une surprise pour vous, les gars.\nI have already finished dinner.\tJ'ai déjà fini de dîner.\nI have booked a table for four.\tJ'ai réservé une table pour quatre personnes.\nI have gotten him into trouble.\tJe lui ai attiré des ennuis.\nI have just a few bullets left.\tIl ne me reste que quelques balles.\nI have never been there myself.\tJe n'y suis jamais allé en personne.\nI have never been to that town.\tJe ne me suis jamais rendu dans cette ville.\nI have no idea what to do next.\tJe ne sais pas du tout ce que je pourrais faire ensuite.\nI have no idea where she lives.\tJe n'ai aucune idée d'où elle habite.\nI have no reason to lie to you.\tJe n'ai pas de raison de te mentir.\nI have no reason to lie to you.\tJe n'ai aucune raison de te mentir.\nI have no reason to lie to you.\tJe n'ai pas de raison de vous mentir.\nI have no reason to lie to you.\tJe n'ai aucune raison de vous mentir.\nI have not eaten breakfast yet.\tJe n'ai pas encore pris de petit déjeuner.\nI have not understood anything.\tJe n'ai rien compris.\nI have nothing to fall back on.\tJe n'ai rien sur quoi me rabattre.\nI have seen him quite recently.\tJe l'ai vu très récemment.\nI have some good news to share.\tJ'ai quelques bonnes nouvelles à partager.\nI have some other appointments.\tJ'ai quelques autres rendez-vous.\nI have something for you to do.\tJ'ai quelque chose à te faire faire.\nI have something for you to do.\tJ'ai quelque chose à vous faire faire.\nI have the house all to myself.\tJ'ai la maison pour moi tout seul.\nI have three pieces of baggage.\tJ'ai trois bagages.\nI have to admit I'm interested.\tJe dois admettre que je suis intéressé.\nI have to admit I'm interested.\tJe dois admettre que je suis intéressée.\nI have to deal with this alone.\tJe dois gérer ceci tout seul.\nI have to deal with this alone.\tJe dois gérer ceci toute seule.\nI have to deal with this alone.\tIl me faut le gérer tout seul.\nI have to deal with this alone.\tIl me faut le gérer toute seule.\nI have two children to support.\tJ'ai deux enfants à élever.\nI haven't been home in a while.\tJe ne suis pas rentré à la maison depuis un moment.\nI haven't done this in a while.\tJe n'ai pas fait ça depuis un moment.\nI haven't seen you for a while.\tJe ne vous ai pas vu depuis un moment.\nI haven't seen you for a while.\tJe ne t'ai pas vu depuis un moment.\nI haven't seen you for a while.\tJe ne vous ai pas vue depuis un moment.\nI haven't seen you for a while.\tJe ne vous ai pas vus depuis un moment.\nI haven't seen you for a while.\tJe ne vous ai pas vues depuis un moment.\nI haven't seen you for a while.\tJe ne t'ai pas vue depuis un moment.\nI heard a Japanese nightingale.\tJ'ai entendu un rossignol japonais.\nI heard a noise in the bedroom.\tJ'entendis un bruit dans la chambre.\nI heard a noise in the bedroom.\tJ'entendis un bruit dans la chambre à coucher.\nI heard him go down the stairs.\tJe l'ai entendu descendre les escaliers.\nI heard him go down the stairs.\tJe l'entendis descendre les escaliers.\nI honestly don't know anything.\tHonnêtement, j'ignore tout.\nI hope I can hold on to my job.\tJ'espère que je peux garder mon poste.\nI hope I can hold on to my job.\tJ'espère que je peux garder mon emploi.\nI hope I'll see you again soon.\tJ'espère te revoir bientôt.\nI hope Tom remembered to shave.\tJ'espère que Tom a pensé à se raser.\nI hope it was only an accident.\tJ'espère que ce n'était qu'un accident.\nI hope my dream will come true.\tJ'espère que mon rêve se réalisera.\nI hope that everything is okay.\tJ'espère que tout va bien.\nI hope this fine weather holds.\tJ'espère que ce beau temps va tenir.\nI hope this fine weather holds.\tJ'espère que ce beau temps va se maintenir.\nI hope we can avoid doing that.\tJ'espère que nous pouvons éviter de faire cela.\nI hope we can still be friends.\tJ'espère que nous pouvons encore être amis.\nI hope we can still be friends.\tJ'espère que nous pouvons encore être amies.\nI hope you all learn something.\tJ'espère que vous apprenez tous quelque chose.\nI hope you find it interesting.\tJ'espère que tu trouves ça intéressant.\nI hope you had a great weekend.\tJ'espère que tu as passé un bon weekend.\nI hope you learned your lesson.\tJ'espère que tu as appris ta leçon.\nI hope you learned your lesson.\tJ'espère que vous avez appris votre leçon.\nI hope you will answer me soon.\tJ'espère que vous me répondrez bientôt.\nI hope you won't leave me here.\tJ'espère que tu ne vas pas me laisser ici.\nI hope you'll be able to sleep.\tJ'espère que tu seras capable de dormir.\nI hope you're wrong about this.\tJ'espère que tu as tort à ce sujet.\nI hope you're wrong about this.\tJ'espère que vous avez tort à ce sujet.\nI immediately knew what it was.\tJ'ai immédiatement su ce que c'était.\nI informed her of my departure.\tJe l'ai informée de mon départ.\nI invited him over to my place.\tJe l'ai invité chez moi.\nI just can't keep my eyes open.\tJe ne parviens simplement pas à garder les yeux ouverts.\nI just didn't know what to say.\tJ'ignorais simplement quoi dire.\nI just didn't want to be there.\tJe ne souhaitais pas être la.\nI just didn't want you in here.\tJe ne te voulais simplement pas là-dedans.\nI just didn't want you in here.\tJe ne vous voulais simplement pas là-dedans.\nI just didn't want you in here.\tJe ne voulais simplement pas que vous fussiez ici.\nI just didn't want you in here.\tJe ne voulais simplement pas que tu fusses ici.\nI just don't know how to do it.\tJ'ignore simplement comment le faire.\nI just don't really understand.\tJe ne comprends pas vraiment.\nI just don't think I can do it.\tJe ne pense simplement pas que je puisse le faire.\nI just don't think I can do it.\tJe ne pense simplement pas pouvoir le faire.\nI just don't want any of these.\tJe n'en veux aucun, un point c'est tout.\nI just don't want any of these.\tJe ne veux aucun de ceux-ci, un point c'est tout.\nI just don't want any of these.\tJe ne veux aucune de celles-ci, un point c'est tout.\nI just don't want any of these.\tJe n'en veux aucune, un point c'est tout.\nI just don't want to overdo it.\tJe ne souhaite pas exagérer.\nI just don't want to overdo it.\tJe ne veux pas en faire trop.\nI just figured out who you are.\tJe viens de comprendre qui tu es.\nI just figured out who you are.\tJe viens de comprendre qui vous êtes.\nI just had my final exam today.\tJe viens de passer mon examen final aujourd'hui.\nI just have so much on my mind.\tJ'ai juste tellement en tête.\nI just have so much on my mind.\tJ'ai juste tellement à l'esprit.\nI just knew I couldn't do that.\tJe savais que je ne pouvais pas le faire.\nI just listened and kept quiet.\tJ'ai juste écouté, sans rien dire.\nI just listened and kept quiet.\tJ'écoutai simplement, sans rien dire.\nI just love that kind of stuff.\tJ'adore ce genre de trucs.\nI just love that kind of stuff.\tJ'adore ce genre de choses.\nI just need a little more time.\tJ'ai seulement besoin d'un peu plus de temps.\nI just need a little more time.\tIl me faut seulement un peu plus de temps.\nI just want a little more time.\tJe veux simplement un peu plus de temps.\nI just want a little more time.\tJe ne veux qu'un peu plus de temps.\nI just want a little more time.\tJe ne veux qu'un peu de temps supplémentaire.\nI just want a little more time.\tJe ne veux qu'un supplément de temps.\nI just want my past to go away.\tJe veux que mon passé disparaisse.\nI just want someone to talk to.\tJe veux juste quelqu'un à qui parler.\nI just want to check something.\tJe veux tout simplement vérifier quelque chose.\nI just want to check something.\tJe veux vérifier quelque chose, un point c'est tout.\nI just want to forget about it.\tJe veux simplement oublier ça.\nI just want to stay in the car.\tJe veux simplement rester dans la voiture.\nI just want to win, that's all.\tJe veux juste gagner, c'est tout.\nI just want you to be involved.\tJe veux juste que tu sois impliqué.\nI just want you to be prepared.\tJe veux simplement que tu sois préparé.\nI just wanted to go to college.\tJe voulais juste aller à l'université.\nI just wanted to help the team.\tJe voulais juste aider l'équipe.\nI just wanted to play baseball.\tJe voulais juste jouer au baseball.\nI just wanted to say good luck.\tJe voulais juste dire bonne chance.\nI just wanted to say thank you.\tJe voulais juste vous dire merci.\nI just wanted to say thank you.\tJe voulais juste te dire merci.\nI just wanted to wish you luck.\tJe voulais juste vous souhaiter bonne chance.\nI just wanted to wish you luck.\tJe voulais juste te souhaiter bonne chance.\nI just wanted you to accept me.\tJe voulais juste que tu m'acceptes.\nI just wanted you to accept me.\tJe voulais juste que vous m'acceptiez.\nI just wanted you to accept me.\tJe voulais juste que tu m'admettes.\nI just wanted you to accept me.\tJe voulais juste que vous m'admettiez.\nI just wanted you to know that.\tJe voulais juste que tu le saches.\nI just wanted you to know that.\tJe voulais juste que tu saches ça.\nI kind of hope it doesn't rain.\tJ'espère qu'il ne pleut pas.\nI knew I had a tough job ahead.\tJe savais que j'avais un travail difficile à faire.\nI knew I'd forgotten something.\tJe savais que j'avais oublié quelque chose.\nI knew every one of those guys.\tJe connaissais chacun de ces types.\nI knew nobody would believe me.\tJe savais que personne ne me croirait.\nI knew that someone would come.\tJe savais que quelqu'un viendrait.\nI knew that would interest you.\tJe savais que ça t'intéresserait.\nI knew that would interest you.\tJe savais que ça vous intéresserait.\nI knew there was a possibility.\tJe savais qu'il y avait une possibilité.\nI knew you weren't really dead.\tJe savais que tu n'étais pas vraiment mort.\nI know I have a biased opinion.\tJe sais que j'ai une opinion biaisée.\nI know a better way to do that.\tJe connais une meilleure façon de le faire.\nI know a better way to do that.\tJe connais une meilleure façon de faire ça.\nI know almost nothing about it.\tJe ne sais presque rien sur ça.\nI know every word on this page.\tJe connais tous les mots sur cette page.\nI know exactly what I'm asking.\tJe sais exactement ce que je demande.\nI know he's the one who did it.\tJe sais que c'est lui qui l'a fait.\nI know him better than anybody.\tJe le connais mieux que personne.\nI know how you must be feeling.\tJe sais comment tu dois te sentir.\nI know that I can count on you.\tJe sais que je peux compter sur vous.\nI know that boy who is running.\tJe connais le garçon qui est en train de courir.\nI know the name of this animal.\tJe connais le nom de cet animal.\nI know what Tom is looking for.\tJe sais ce que Tom cherche.\nI know what Tom likes to drink.\tJe sais que Tom aime boire.\nI know what they want me to do.\tJe sais ce qu'ils veulent que je fasse.\nI know what they want me to do.\tJe sais ce qu'elles veulent que je fasse.\nI know what they're capable of.\tJe sais de quoi ils sont capables.\nI know what they're capable of.\tJe sais de quoi elles sont capables.\nI know what they're paying you.\tJe sais ce qu'ils vous paient.\nI know what they're paying you.\tJe sais ce qu'elles vous paient.\nI know what they're paying you.\tJe sais ce qu'ils te paient.\nI know what they're paying you.\tJe sais ce qu'elles te paient.\nI know where you keep your gun.\tJe sais où tu gardes ton arme.\nI know who lives in this house.\tJe sais qui habite dans cette maison.\nI know you haven't done it yet.\tJe sais que tu ne l'as pas encore fait.\nI know you haven't done it yet.\tJe sais que vous ne l'avez pas encore fait.\nI know you want to talk to Tom.\tJe sais que tu veux parler à Tom.\nI know you were born in Boston.\tJe sais que tu es né à Boston.\nI know you were born in Boston.\tJe sais que tu es née à Boston.\nI know you were born in Boston.\tJe sais que vous êtes né à Boston.\nI know you were born in Boston.\tJe sais que vous êtes née à Boston.\nI know you're hiding something.\tJe sais que tu caches quelque chose.\nI know you're hiding something.\tJe sais que vous cachez quelque chose.\nI know you've been avoiding me.\tJe sais que tu m'évitais.\nI learned that a long time ago.\tJ'ai appris cela il y a longtemps.\nI left my briefcase in the bus.\tJ'ai laissé ma mallette dans le bus.\nI left my coat here last night.\tJ'ai laissé mon manteau ici, hier au soir.\nI let the cat out of the house.\tJe laissai le chat hors de la maison.\nI let the cat out of the house.\tJ'ai laissé le chat hors de la maison.\nI let the cat out of the house.\tJe laissai la chatte hors de la maison.\nI let the cat out of the house.\tJ'ai laissé la chatte hors de la maison.\nI like green peppers very much.\tJ'adore le poivron.\nI like having people around me.\tJ'aime être entouré de gens.\nI like her. She's so beautiful!\tElle me plaît. Elle est si belle !\nI like hiking in the mountains.\tJ’aime la randonnée en montagne.\nI like listening to good music.\tJ'aime écouter de la bonne musique.\nI like my coffee without sugar.\tJ'aime prendre mon café sans sucre.\nI like neither of the pictures.\tJe n'aime aucun des tableaux.\nI like playing tennis and golf.\tJ'aime jouer au tennis et au golf.\nI like reading American novels.\tJ'aime lire les romans américains.\nI like reading American novels.\tJ'aime lire des romans étasuniens.\nI like spring better than fall.\tJe préfère le printemps à l'automne.\nI like the melody of this song.\tJ'aime la mélodie de cette chanson.\nI like things the way they are.\tJ'aime les choses telles qu'elles sont.\nI like to eat a late breakfast.\tJ'aime prendre un petit déjeuner tardif.\nI like to invent useful things.\tJ'aime inventer des choses utiles.\nI like to look at old pictures.\tJ'aime regarder de vieilles photos.\nI like walking around barefoot.\tJ'aime me promener pieds nus.\nI like your techno dance moves.\tJ'aime tes mouvements de danse techno.\nI live in this house by myself.\tJ'habite cette maison seul.\nI live in this house by myself.\tJe vis seul dans cette demeure.\nI live right around the corner.\tJe vis juste au coin de la rue.\nI lived overseas for ten years.\tJ'ai vécu à l'étranger pendant dix ans.\nI lived overseas for ten years.\tJ'ai vécu dix ans à l'étranger.\nI looked it up on the Internet.\tJ'ai regardé sur Internet.\nI lost my camera the other day.\tJ'ai perdu mon appareil photo l'autre jour.\nI love all my children equally.\tJ'aime tous mes enfants de manière égale.\nI love her so much I could die.\tJe l'aime tellement que je pourrais mourir.\nI love the flowers you sent me.\tJ'adore les fleurs que tu m'as envoyées.\nI love the people in this town.\tJ'aime les gens dans cette ville.\nI love the taste of watermelon.\tJ’aime le goût des pastèques.\nI love traveling in the winter.\tJ'aime voyager en hiver.\nI love trying to do new things.\tJ'adore essayer de faire de nouvelles choses.\nI made him carry the briefcase.\tJe lui ai fait porter le cartable.\nI made that decision on my own.\tJ'ai pris moi-même cette décision.\nI made that decision on my own.\tJ'ai pris cette décision tout seul.\nI made this doghouse by myself.\tJ'ai moi-même construit cette niche.\nI met her by chance on a train.\tJe l'ai rencontrée par hasard dans le train.\nI met her on the way to school.\tJe l'ai rencontrée en allant à l'école.\nI met him on several occasions.\tJe l'ai rencontré à plusieurs occasions.\nI missed the point of the joke.\tJe n'ai pas saisi le sens de la blague.\nI missed the train by a minute.\tJ'ai raté le train d'une minute.\nI missed the two o'clock plane.\tJ'ai raté l'avion de 2h.\nI mistook you for your brother.\tJe vous ai pris pour votre frère.\nI mistook you for your brother.\tJe t'ai pris pour ton frère.\nI myself have never seen a UFO.\tJe n'ai personnellement jamais vu d'OVNI.\nI need help painting the fence.\tJ'ai besoin d'aide pour peindre la palissade.\nI need some mental stimulation.\tJ'ai besoin de stimulation mentale.\nI need something to write with.\tJe veux un truc pour écrire.\nI need to be alone for a while.\tJ'ai besoin de me trouver seule, un moment.\nI need to be alone for a while.\tJ'ai besoin de me trouver seul, un moment.\nI need to get my oboe repaired.\tJe dois faire réparer mon hautbois.\nI need to get something to eat.\tJ'ai besoin de trouver quelque chose à manger.\nI need to have a talk with you.\tJe dois avoir une discussion avec toi.\nI need to know why you're here.\tIl me faut savoir pourquoi vous êtes ici.\nI need to know why you're here.\tIl me faut savoir pourquoi tu es ici.\nI need to take care of my kids.\tJe dois m'occuper de mes enfants.\nI need your full attention now.\tJ'ai maintenant besoin de votre attention complète.\nI never care about such things.\tJe ne me soucie jamais de telles choses.\nI never did anything important.\tJe n'ai jamais accompli quoi que ce soit d'important.\nI never get invited to parties.\tJe ne me fais jamais inviter à des fêtes.\nI never get to see you anymore.\tJe n'ai plus l'occasion de vous voir.\nI never get to see you anymore.\tJe n'ai plus l'occasion de te voir.\nI never needed that much money.\tJe n'ai jamais eu besoin d'autant d'argent.\nI never said I didn't want you.\tJe n'ai jamais dit que je ne te voulais pas.\nI never said I didn't want you.\tJe n'ai jamais dit que je ne vous voulais pas.\nI never should've mentioned it.\tJamais je n’aurais dû en parler.\nI never thought anything of it.\tJe n'en ai jamais pensé quoi que ce soit.\nI never thought of it that way.\tJe n'y avais jamais pensé de cette façon.\nI never thought of that before.\tJe n'y avais jamais pensé.\nI never thought that about you.\tJe n'ai jamais pensé cela à ton sujet.\nI nodded to show that I agreed.\tJ’ai hoché la tête pour montrer que j’étais d’accord.\nI often talk to him on the bus.\tJe lui parle souvent dans le bus.\nI only have six months to live.\tJ'ai seulement six mois à vivre.\nI only have six months to live.\tJe n'ai plus que six mois à vivre.\nI only hope it is not too late.\tJ'espère juste qu'il n'est pas trop tard.\nI only hope it is not too late.\tJ'espère juste que ce n'est pas trop tard.\nI only hope we're not too late.\tJ'espère seulement que nous ne sommes pas trop en retard.\nI only hope we're not too late.\tJ'espère juste qu'on n'arrive pas trop tard.\nI only wish that were possible.\tJe souhaiterais seulement que ce soit possible.\nI only wish that were possible.\tJe souhaiterais seulement que ce fut possible.\nI packed your suitcase for you.\tJ'ai fait ta valise.\nI packed your suitcase for you.\tJ'ai fait votre valise.\nI paid him the money last week.\tJe l’ai payé la semaine dernière.\nI poured water into the bucket.\tJ'ai versé l'eau dans le seau.\nI prefer that it stay that way.\tJe préfère que ça reste ainsi.\nI prefer that it stay that way.\tJe préfère que ça demeure ainsi.\nI quit smoking three years ago.\tJ'ai arrêté de fumer il y a trois ans.\nI ran into a friend on the bus.\tJe suis tombé sur un ami dans le bus.\nI ran into a friend on the bus.\tJe suis tombée sur un ami dans le bus.\nI ran into a friend on the bus.\tJe suis tombé sur une amie dans le bus.\nI ran into a friend on the bus.\tJe suis tombée sur une amie dans le bus.\nI read a lot of modern authors.\tJe lis beaucoup d'auteurs modernes.\nI read a magazine to kill time.\tJe lus un magazine pour tuer le temps.\nI realize it's hard to believe.\tJe prends conscience que c'est difficile à croire.\nI really can't leave right now.\tJe ne peux vraiment pas partir immédiatement.\nI really can't take it anymore.\tJe ne peux vraiment plus l'endurer.\nI really can't talk about this.\tJe ne peux vraiment pas en parler.\nI really did have a great time.\tJ'ai vraiment passé du bon temps.\nI really don't want to do that.\tJe ne veux vraiment pas le faire.\nI really don't want to do that.\tJe ne veux vraiment pas faire ça.\nI really don't want to do this.\tJe ne veux vraiment pas faire ça.\nI really have to eat something.\tIl me faut vraiment manger quelque chose.\nI really like hard boiled eggs.\tJ'aime beaucoup les œufs durs.\nI really need to take a shower.\tJ'ai vraiment besoin de prendre une douche.\nI really see no reason to stay.\tJe ne vois vraiment pas de raison de rester.\nI really think we need to talk.\tJe pense vraiment qu'il nous faut parler.\nI really think you should come.\tJe pense vraiment que vous devriez venir.\nI really think you should come.\tJe pense vraiment que tu devrais venir.\nI really thought I could do it.\tJe pensais vraiment que je pouvais le faire.\nI really want to know her name.\tJe veux vraiment connaître son nom.\nI really want to see Tom today.\tJe veux vraiment voir Tom aujourd'hui.\nI received my birthday present.\tJ'ai reçu mon cadeau d'anniversaire.\nI recommend you to go by train.\tJe te recommande de prendre le train.\nI refused for personal reasons.\tJ'ai refusé pour des raisons personnelles.\nI regarded the man as an enemy.\tJe considérais l'homme comme un ennemi.\nI regret this decision already.\tJe regrette déjà cette décision.\nI rented out the guest bedroom.\tJ'ai loué la chambre d'invités.\nI rented out the guest bedroom.\tJe louai la chambre d'invités.\nI repeated his exact statement.\tJ'ai rapporté tout ce qu'il a mentionné.\nI respect my teacher very much.\tJe respecte beaucoup mon enseignant.\nI respect you more than anyone.\tJe vous respecte plus que quiconque.\nI respect you more than anyone.\tJe te respecte plus que quiconque.\nI rode my bicycle to the store.\tJe suis allé en vélo au magasin.\nI said it was OK for him to go.\tJ'ai dit que c'était d'accord qu'il parte.\nI said it was OK for him to go.\tJ'ai dit que c'était d'accord qu'il y aille.\nI saw Tom at the funeral today.\tJ'ai vu Tom à l'enterrement, aujourd'hui.\nI should like to go for a swim.\tJe voudrais aller nager.\nI should've warned you earlier.\tJ'aurais dû te prévenir plus tôt.\nI showed my ticket at the door.\tJ'ai montré mon ticket devant la porte.\nI sometimes dream of my mother.\tJe rêve parfois de ma mère.\nI sometimes dream of my mother.\tJe rêve parfois à ma mère.\nI spent all day with my friend.\tJ'ai passé toute la journée avec mon ami.\nI spent most of the day in bed.\tJ'ai passé le plus clair de la journée dans mon lit.\nI stayed up till late at night.\tJe restais éveillé jusque tard la nuit.\nI still have things left to do.\tJ'ai encore des choses à faire.\nI still have things left to do.\tIl me reste encore des choses à faire.\nI still haven't found anything.\tJe n'ai encore rien trouvé.\nI still haven't heard from him.\tJe n'ai encore toujours rien entendu à son sujet.\nI still need to buy some bread.\tIl me faut encore acheter du pain.\nI stopped smoking and drinking.\tJ'ai arrêté de fumer et de boire.\nI stuck my hands in my pockets.\tJe mis les mains dans mes poches.\nI stuck my hands in my pockets.\tJ'ai mis les mains dans mes poches.\nI suggest a different approach.\tJe suggère une approche différente.\nI suggest that you talk to Tom.\tJe te suggère de parler à Tom.\nI suggest we leave immediately.\tJe suggère que nous partions immédiatement.\nI suggest you listen carefully.\tJe vous suggère d'écouter attentivement.\nI suggest you listen carefully.\tJe te suggère d'écouter attentivement.\nI suggested that we go fishing.\tJ'ai proposé que nous allions pêcher.\nI suppose that's a possibility.\tJe suppose que c'est une possibilité.\nI sure hope he passes the test.\tJ'espère sincèrement qu'il réussisse l'examen.\nI take a bath almost every day.\tJe prends un bain la plupart du temps chaque jour.\nI think I can sing fairly well.\tJe pense que je peux chanter plutôt bien.\nI think I don't understand you.\tJe pense que je ne te comprends pas.\nI think I have a gum infection.\tJe crois que mes gencives sont infectées.\nI think I know why you're here.\tJe pense savoir pourquoi vous êtes ici.\nI think I know why you're here.\tJe pense savoir pourquoi tu es ici.\nI think I should do it for you.\tJe pense que je devrais le faire pour vous.\nI think Tom and Mary are right.\tJe pense que Tom et Mary ont raison.\nI think Tom has made a mistake.\tJe pense que Tom a commi une erreur.\nI think Tom is in love with me.\tJe crois que Tom est amoureux de moi.\nI think Tom is still breathing.\tJe crois que Tom respire encore.\nI think Tom made a big mistake.\tJe pense que Tom a commi une grosse erreur.\nI think Tom only speaks French.\tJe pense que Tom ne parle que français.\nI think Tom really deserves it.\tJe pense que Tom le mérite vraiment.\nI think Tom really is a doctor.\tJe pense que Tom est vraiment médecin.\nI think Tom was born in Boston.\tJe pense que Tom est né à Boston.\nI think Tom's doing a good job.\tJe pense que Tom fait du bon boulot.\nI think about you all day long.\tJe pense à toi toute la journée.\nI think about you all day long.\tJe pense à vous toute la journée.\nI think about you all the time.\tJe pense à vous tout le temps.\nI think about you all the time.\tJe pense à toi tout le temps.\nI think both of them are right.\tJe pense que tous deux ont raison.\nI think both of them are right.\tJe pense que toutes deux ont raison.\nI think it won't rain tomorrow.\tJe pense qu'il ne pleuvra pas demain.\nI think it's time for me to go.\tJe pense qu'il est temps pour moi d'y aller.\nI think my suitcase was stolen.\tJe crois que ma valise a été volée.\nI think perhaps I can help Tom.\tJe pense que je peux peut-être aider Tom.\nI think she is good at dancing.\tJe pense qu'elle est bonne en danse.\nI think she made up that story.\tJe crois qu'elle a inventé cette histoire.\nI think she's hiding something.\tJ'ai l'impression qu'elle cache quelque chose.\nI think she's hiding something.\tJe pense qu'elle cache quelque chose.\nI think that could be arranged.\tJe pense que cela pourrait être arrangé.\nI think that we have to go now.\tJe crois que nous devons partir maintenant.\nI think that's an exaggeration.\tJe pense que c'est un peu exagéré.\nI think that's highly unlikely.\tJe pense que c'est hautement improbable.\nI think that's the best answer.\tJe pense que c'est la meilleure réponse.\nI think that's the best answer.\tJe trouve que c'est la meilleure réponse.\nI think that's where Tom works.\tJe pense que c'est là que Tom travaille.\nI think that's why Tom is here.\tJe pense que c'est pour ça que Tom est là.\nI think the KGB was implicated.\tJe pense que le KGB fut impliqué.\nI think the KGB was implicated.\tJe pense que le KGB a été impliqué.\nI think there's been a mistake.\tJe pense qu'il y a eu une erreur.\nI think they want you to do it.\tJe pense qu'ils veulent que tu le fasses.\nI think they want you to do it.\tJe pense qu'elles veulent que vous le fassiez.\nI think things will get better.\tJe pense que les choses vont s'améliorer.\nI think this is totally absurd.\tJe pense que c'est totalement absurde.\nI think we can do a lot better.\tJe pense que nous pouvons faire beaucoup mieux.\nI think we can help each other.\tJe pense que nous pouvons mutuellement nous aider.\nI think we can help each other.\tJe pense que nous pouvons nous aider l'un l'autre.\nI think we can help each other.\tJe pense que nous pouvons nous aider l'une l'autre.\nI think we can make it on time.\tJe pense que nous pouvons le faire à temps.\nI think we did a very good job.\tJe trouve que nous avons fait du très bon boulot.\nI think we made the right call.\tJe pense que nous avons fait le bon choix.\nI think we should get out here.\tJe pense que nous devrions sortir d'ici.\nI think we should look into it.\tJe pense que nous devrions y regarder.\nI think we're all a bit cuckoo.\tJe pense que nous sommes tous un peu dingues.\nI think we're already too late.\tJe pense que nous sommes déjà trop en retard.\nI think we're going to be fine.\tJe pense que tout ira bien pour nous.\nI think we're going to be late.\tJe pense que nous allons être en retard.\nI think we're out of your size.\tJe pense que nous n'avons plus votre taille.\nI think we're safe for a while.\tJe pense que nous sommes en sécurité pour un moment.\nI think you know everyone here.\tJe pense que tu connais tout le monde, ici.\nI think you know everyone here.\tJe pense que vous connaissez tout le monde, ici.\nI think you might need my help.\tJe pense que vous pourriez avoir besoin de mon aide.\nI think you might need my help.\tJe pense que tu pourrais avoir besoin de mon aide.\nI think you might need my help.\tJe pense qu'il se pourrait que vous ayez besoin de mon aide.\nI think you might need my help.\tJe pense qu'il se pourrait que tu aies besoin de mon aide.\nI think you should get started.\tJe pense que tu devrais te mettre en route.\nI think you should get started.\tJe pense que vous devriez vous mettre en route.\nI think you would like it here.\tJe pense que ça te plairait, ici.\nI think you'd better leave now.\tJe pense que vous feriez mieux de partir maintenant.\nI think you've got what I need.\tJe pense que tu as ce dont j'ai besoin.\nI think you've got what I need.\tJe pense que vous avez ce dont j'ai besoin.\nI think your answer is correct.\tJe pense que votre réponse est juste.\nI think your answer is correct.\tJe pense que ta réponse est exacte.\nI thought I could deal with it.\tJe pensais que je pourrais m'en charger.\nI thought I was going to faint.\tJe pensais que j'allais m'évanouir.\nI thought that he was innocent.\tJe pensais qu'il était innocent.\nI thought we were best friends.\tJe pensais que nous étions les meilleures amies.\nI thought we were best friends.\tJe pensais que nous étions les meilleurs amis.\nI thought we were going to die.\tJe pensais que nous allions mourir.\nI thought we were going to die.\tJ'ai pensé que nous allions mourir.\nI thought we were going to win.\tJe pensais que nous allions gagner.\nI thought we were going to win.\tJe pensais que nous allions l'emporter.\nI thought we were welcome here.\tJe pensais que nous étions les bienvenus ici.\nI thought we were welcome here.\tJe pensais que nous étions les bienvenues ici.\nI thought you didn't know that.\tJe pensais que tu ignorais ça.\nI thought you didn't know that.\tJe pensais que vous ignoriez ça.\nI thought you didn't know that.\tJe pensais que vous ignoriez cela.\nI thought you didn't know that.\tJe pensais que tu ignorais cela.\nI thought you didn't like them.\tJe pensais qu’ils ne te plaisaient pas.\nI thought you wanted a divorce.\tJe pensais que tu voulais divorcer.\nI thought you wanted a divorce.\tJ'ai pensé que tu voulais divorcer.\nI thought you wanted a divorce.\tJe pensais que vous vouliez divorcer.\nI thought you wanted a divorce.\tJ'ai pensé que vous vouliez divorcer.\nI thought you wanted the truth.\tJe pensais que vous vouliez la vérité.\nI thought you wanted the truth.\tJe pensais que tu voulais la vérité.\nI thought you wanted this back.\tJ'ai pensé que vous voudriez que je vous rende ceci.\nI thought you wanted this back.\tJ'ai pensé que tu voudrais que je te rende ceci.\nI thought you would understand.\tJe pensais que vous comprendriez.\nI thought you would understand.\tJe pensais que tu comprendrais.\nI thought you wouldn't give up.\tJe pensais que tu n'abandonnerais pas.\nI thought you wouldn't give up.\tJe pensais que vous n'abandonneriez pas.\nI thought you wouldn't like it.\tJe pensais que tu n'aimerais pas.\nI thought you wouldn't like it.\tJ'ai pensé que tu n'aimerais pas.\nI thought you'd ask about that.\tJe pensais que tu poserais des questions concernant cela.\nI thought you'd be dead by now.\tJe pensais que tu serais mort, à l'heure qu'il est.\nI thought you'd be dead by now.\tJe pensais que vous seriez mort, à l'heure qu'il est.\nI thought you'd be dead by now.\tJe pensais que tu serais morte, à l'heure qu'il est.\nI thought you'd be dead by now.\tJe pensais que vous seriez morte, à l'heure qu'il est.\nI thought you'd be dead by now.\tJe pensais que vous seriez morts, à l'heure qu'il est.\nI thought you'd be dead by now.\tJe pensais que vous seriez mortes, à l'heure qu'il est.\nI thought you'd be much fatter.\tJe pensais que vous seriez beaucoup plus gros.\nI thought you'd be much fatter.\tJe pensais que vous seriez beaucoup plus grosse.\nI thought you'd be much fatter.\tJe pensais que vous seriez beaucoup plus grosses.\nI thought you'd be much fatter.\tJe pensais que tu serais beaucoup plus gros.\nI thought you'd be much fatter.\tJe pensais que tu serais beaucoup plus grosse.\nI thought you'd be proud of me.\tJe pensais que tu serais fier de moi.\nI thought you'd be proud of me.\tJe pensais que vous seriez fier de moi.\nI thought you'd never get here.\tJe pensais que tu n'arriverais jamais ici.\nI thought you'd never get here.\tJe pensais que vous n'arriveriez jamais ici.\nI thought you'd never get here.\tJe pensais que tu ne parviendrais jamais ici.\nI told him not to throw stones.\tJe lui ai dit de ne pas jeter de pierres.\nI told myself to stay positive.\tJe me suis dis de rester positif.\nI told you I have a girlfriend.\tJe t'ai dit que j'ai une petite amie.\nI told you I have a girlfriend.\tJe t'ai dit que j'ai une petite copine.\nI told you I have a girlfriend.\tJe vous ai dit que j'ai une petite amie.\nI told you I have a girlfriend.\tJe vous ai dit que j'ai une petite copine.\nI told you I have a girlfriend.\tJe vous ai dit que j'ai une nana.\nI told you I have a girlfriend.\tJe t'ai dit que j'ai une nana.\nI took his umbrella by mistake.\tJ'ai pris son parapluie par erreur.\nI took that picture a week ago.\tJ'ai pris cette photo il y a une semaine.\nI took that picture a week ago.\tCette photo, je l'ai faite la semaine passée.\nI took this picture a week ago.\tJ'ai pris cette photo il y a une semaine.\nI took this picture a week ago.\tCette photo, je l'ai faite la semaine passée.\nI took what she said literally.\tJ'ai interprété ses propos littéralement.\nI tried to make the best of it.\tJ'ai essayé d'en tirer le meilleur parti.\nI tried, but I did not succeed.\tJ'ai essayé mais je n'ai pas réussi.\nI understand Tom's frustration.\tJe comprends la frustration de Tom.\nI understand the reason for it.\tJ'en comprends la raison.\nI understood almost everything.\tJ'ai presque tout compris.\nI unfolded the map on the desk.\tJ'ai déplié la carte sur le bureau.\nI urge everyone to do the same.\tJ'insiste pour que tout le monde fasse pareil.\nI used to play here as a child.\tJe jouais ici, enfant.\nI usually drive myself to work.\tJ'ai l’habitude de conduire pour aller au travail.\nI usually go to bed before ten.\tJ'ai l'habitude d'aller au lit avant 10 heures.\nI usually have dinner at seven.\tJe prends habituellement mon dîner à 7 heures.\nI vaguely remember meeting him.\tJe me rappelle vaguement de lui.\nI waited a whole year for that.\tJ'ai attendu toute une année pour que cela arrive.\nI waited until the last minute.\tJ'ai attendu jusqu'à la dernière minute.\nI walk in the forest every day.\tJe marche dans la forêt tous les jours.\nI walked as far as the station.\tJ'ai marché jusqu'à la gare.\nI want answers to my questions.\tJe veux des réponses à mes questions.\nI want it done within the hour.\tJe veux que ce soit fait dans l'heure.\nI want my children to be happy.\tJe veux que mes enfants soient heureux.\nI want something cold to drink.\tJe veux boire quelque chose de frais.\nI want something cold to drink.\tJe veux quelque chose de frais à boire.\nI want that more than anything.\tJe veux cela plus que toute autre chose.\nI want them to be your friends.\tJe veux qu'ils soient vos amis.\nI want them to be your friends.\tJe veux qu'elles soient vos amies.\nI want them to be your friends.\tJe veux qu'ils soient tes amis.\nI want them to be your friends.\tJe veux qu'elles soient tes amies.\nI want to be alone for a while.\tJe veux être seule un moment.\nI want to be alone for a while.\tJe veux être un moment seule.\nI want to be alone for a while.\tJe veux être seul un moment.\nI want to be alone for a while.\tJe veux être un moment seul.\nI want to be more than friends.\tJe veux être davantage qu'un ami.\nI want to be more than friends.\tJe veux être davantage qu'une amie.\nI want to be on the other team.\tJe veux faire partie de l'autre équipe.\nI want to bring my family here.\tJe veux amener ma famille ici.\nI want to buy something to eat.\tJe veux acheter quelque chose à manger.\nI want to climb Mt. Fuji again.\tJe voudrais regrimper le mont Fuji.\nI want to do something for Tom.\tJe veux faire quelque chose pour Tom.\nI want to do something special.\tJe veux faire quelque chose de spécial.\nI want to drink something cold.\tJe veux boire quelque chose de frais.\nI want to fly above the clouds.\tJe veux voler au-dessus des nuages.\nI want to get my mind off work.\tJe veux me sortir le travail de la tête.\nI want to go swimming with Tom.\tJe veux aller nager avec Tom.\nI want to have a cup of coffee.\tJe voudrais une tasse de café.\nI want to have a word with Tom.\tJe veux dire un mot à Tom.\nI want to have a word with you.\tJe veux m'entretenir avec toi.\nI want to have a word with you.\tJe veux m'entretenir avec vous.\nI want to hear more about this.\tJe veux en entendre davantage à ce sujet.\nI want to know all the details.\tJe veux connaître tous les détails.\nI want to know the whole story.\tJe veux connaître toute l'histoire.\nI want to know what I'm buying.\tJe veux savoir ce que j'achète.\nI want to know what's going on.\tJe veux savoir ce qui se passe.\nI want to know what's so funny.\tJe veux savoir ce qui est si drôle.\nI want to know what's so funny.\tJe veux savoir ce qui est si amusant.\nI want to know why you're late.\tJe veux savoir pourquoi vous êtes en retard.\nI want to know why you're late.\tJe veux savoir pourquoi tu es en retard.\nI want to make my father proud.\tJe veux rendre mon père fier.\nI want to make one thing clear.\tJe veux clarifier une chose.\nI want to make something clear.\tJe veux clarifier quelque chose.\nI want to make that very clear.\tJe veux vraiment clarifier cela.\nI want to make you work harder.\tJe veux te faire travailler plus dur.\nI want to personally thank you.\tJe veux te remercier personnellement.\nI want to recover my valuables.\tJe veux récupérer mes objets de valeur.\nI want to remember all of this.\tJe veux me souvenir de tout ceci.\nI want to see him at all costs.\tJe veux à tout prix le voir.\nI want to see if I can do that.\tJe veux voir si je peux le faire.\nI want to see you in my office.\tJe veux te voir dans mon bureau.\nI want to see you in my office.\tJe veux vous voir dans mon bureau.\nI want to take advantage of it.\tJe veux en tirer avantage.\nI want to talk to him about it.\tJe veux lui en parler.\nI want to talk to him about it.\tJe veux m'en entretenir avec lui.\nI want to talk to your manager.\tJe veux parler à votre gérant.\nI want to talk to your manager.\tJe veux parler à ton gérant.\nI want to talk with your uncle.\tJe veux parler à ton oncle.\nI want to thank everybody here.\tJe veux remercier tout le monde ici.\nI want us to get back together.\tJe veux que nous nous remettions ensemble.\nI want you to come work for me.\tJe veux que vous veniez travailler pour moi.\nI want you to come work for me.\tJe veux que tu viennes travailler pour moi.\nI want you to destroy all this.\tJe veux que vous détruisiez tout ceci.\nI want you to destroy all this.\tJe veux que tu détruises tout ceci.\nI want you to do some research.\tJe veux que vous effectuiez quelques travaux de recherche.\nI want you to do some research.\tJe veux que tu effectues quelques travaux de recherche.\nI want you to go see the nurse.\tJe veux que vous alliez voir l'infirmière.\nI want you to go see the nurse.\tJe veux que tu ailles voir l'infirmière.\nI want you to listen carefully.\tJe veux que vous écoutiez attentivement.\nI want you to listen carefully.\tJe veux que tu écoutes attentivement.\nI want you to read this letter.\tJe veux que tu lises cette lettre.\nI want you to stay here longer.\tJe veux que tu restes ici plus longtemps.\nI want you to think about this.\tJe veux que vous y réfléchissiez.\nI want you to think about this.\tJe veux que tu y réfléchisses.\nI want you to think about this.\tJe veux que vous y songiez.\nI want you to think about this.\tJe veux que tu y songes.\nI wanted to be a piano teacher.\tJe voulais être professeur de piano.\nI wanted to know what happened.\tJe voulais savoir ce qui s'était passé.\nI wanted to know what happened.\tJe voulais savoir ce qui était arrivé.\nI wanted to tell you the truth.\tJe voulais te dire la vérité.\nI was a little put out by this.\tJ'en étais un peu irrité.\nI was a little put out by this.\tJ'en fus un peu irrité.\nI was actually kind of serious.\tJ'étais en fait plus ou moins sérieux.\nI was actually kind of serious.\tJ'étais en fait plus ou moins sérieuse.\nI was always interested in art.\tJ'ai toujours été intéressé par l'art.\nI was asked to fix the bicycle.\tOn m'a demandé de réparer le vélo.\nI was asked to umpire the game.\tOn m'a demandé d'arbitrer la partie.\nI was bored with his old jokes.\tSes vieilles plaisanteries m'ennuyaient.\nI was born and raised in Tokyo.\tJe suis née et j'ai été élevée à Tokyo.\nI was born during the Cold War.\tJe suis né au cours de la Guerre Froide.\nI was born on October 10, 1972.\tJe suis né le 10 octobre 1972.\nI was delayed by a traffic jam.\tJ'ai été retardé par un embouteillage.\nI was delayed by a traffic jam.\tJ'ai été retardé par un bouchon.\nI was disappointed by the news.\tJ'ai été déçu des nouvelles.\nI was disappointed by the news.\tJ'étais déçue des nouvelles.\nI was disappointed by the news.\tJ'étais déçu des nouvelles.\nI was drinking tea all morning.\tJ'ai bu du thé pendant toute la matinée.\nI was excited by the challenge.\tJ'étais enthousiasmé par le défi.\nI was expecting a tougher game.\tJe m'attendais à un match plus difficile.\nI was expecting you last night.\tJe vous attendais la nuit dernière.\nI was fascinated by her beauty.\tJ'étais fasciné par sa beauté.\nI was fortunate to get the job.\tJ'ai eu la chance d'obtenir le poste.\nI was invited by an old friend.\tJe fus invité par un vieil ami.\nI was invited by an old friend.\tJe fus invité par une vieille amie.\nI was just making a suggestion.\tJe ne faisais qu'une suggestion.\nI was late because of the rain.\tJ'ai été en retard à cause de la pluie.\nI was late for the appointment.\tJ'étais en retard pour le rendez-vous.\nI was one of the last to leave.\tJ'étais l'un des derniers à partir.\nI was outside when it happened.\tJ'étais dehors quand c'est arrivé.\nI was really worried about you.\tJ'étais vraiment inquiète pour toi.\nI was really worried about you.\tJ'étais vraiment inquiet pour toi.\nI was really worried about you.\tJ'étais vraiment inquiet pour vous.\nI was really worried about you.\tJ'étais vraiment inquiète pour vous.\nI was saved as if by a miracle.\tJ'ai été sauvé comme par miracle.\nI was saved as if by a miracle.\tJ'ai été sauvée comme par miracle.\nI was taken in by the salesman.\tJe me suis fait avoir par le vendeur.\nI was the one who suggested it.\tC'est moi qui l'ai suggéré.\nI was told to get enough sleep.\tOn m'a dit de prendre suffisamment de sommeil.\nI was told to wait for a while.\tOn m'a dit d'attendre un moment.\nI was very satisfied with this.\tJe suis très satisfait avec ça.\nI was working when it happened.\tJ'étais en train de travailler quand c'est arrivé.\nI was worried about his health.\tJe m'inquiétais pour sa santé.\nI wasn't going to buy anything.\tJe n'allais pas acheter quoi que ce soit.\nI wasn't sure where I belonged.\tJe ne savais pas bien où était ma place.\nI wasn't the only one to do so.\tJe n'étais pas le seul à le faire.\nI watch very little television.\tJe regarde très peu la télévision.\nI wear designer clothes myself.\tJe porte moi-même des vêtements de créateurs.\nI went by bus as far as London.\tJe suis allé en bus jusqu'à Londres.\nI went to Disneyland yesterday.\tJe me suis rendu à Disneyland hier.\nI went to my bedroom and cried.\tJe suis allé dans ma chambre et j'ai pleuré.\nI will always be there for you.\tJe serai toujours là pour toi.\nI will always be there for you.\tJe serai toujours là pour vous.\nI will give him another chance.\tJe lui donnerai une autre chance.\nI will go along with your plan.\tJ'accompagnerai votre plan.\nI will never forget seeing you.\tJe n'oublierai jamais vous avoir vu.\nI will never forget seeing you.\tJe n'oublierai jamais t'avoir vu.\nI will never forget seeing you.\tJe n'oublierai jamais vous avoir vus.\nI will never forget seeing you.\tJe n'oublierai jamais vous avoir vue.\nI will never forget seeing you.\tJe n'oublierai jamais t'avoir vue.\nI will never, ever drink again.\tJe ne boirai plus jamais, au grand jamais.\nI will play the guitar for you.\tJe jouerai de la guitare pour toi.\nI will speak with you tomorrow.\tJe parlerai avec toi demain.\nI wish I could be in Paris now.\tJ'aimerais être à Paris en ce moment.\nI wish I could buy that guitar.\tJ'aimerais pouvoir acheter la guitare.\nI wish I could give up smoking.\tJ'aimerais pouvoir arrêter de fumer.\nI wish I could go back in time.\tJe voudrais pouvoir remonter dans le temps.\nI wish I could paint like that.\tJ'aimerais pouvoir peindre ainsi.\nI wish I had a friend like you.\tJe souhaiterais avoir un ami comme toi.\nI wish I had a friend like you.\tJ'aimerais avoir un ami tel que toi.\nI wish I had a friend like you.\tJ'aimerais avoir un ami tel que vous.\nI wish I had a friend like you.\tJ'aimerais avoir une amie telle que toi.\nI wish I had a friend like you.\tJ'aimerais avoir une amie telle que vous.\nI wish I had a million dollars.\tJ'aimerais disposer d'un million de dollars.\nI wish I had had a camera then.\tJ'aurais aimé disposer d'un appareil photo alors.\nI wish she had come last night.\tJ'aurais aimé qu'elle vienne hier soir.\nI wish she had come last night.\tJ'aurais aimé qu'elle vienne la nuit dernière.\nI wish to climb Mt. Fuji again.\tJ'aimerais bien escalader le Mont Fuji de nouveau.\nI woke up at five this morning.\tJe me suis réveillé à cinq heures du matin.\nI woke up at five this morning.\tJe me suis réveillée à cinq heures du matin.\nI woke up at five this morning.\tJe me réveillai à cinq heures du matin.\nI woke up at five this morning.\tJe me réveillais à cinq heures du matin.\nI won't fight with you anymore.\tJe me disputerai plus jamais avec toi.\nI won't run away like a coward.\tJe ne m'enfuirai pas comme un lâche.\nI won't tolerate such language!\tVeille à ton langage !\nI won't tolerate such language!\tVeillez à votre langage !\nI wonder if he'll come tonight.\tJe me demande s'il viendra ce soir.\nI wonder if she will marry him.\tJe me demande si elle l'épousera.\nI wonder if that was the point.\tJe me demande s'il s'agissait de ça.\nI wonder what Tom sees in Mary.\tJe me demande ce que Tom trouve à Mary.\nI wonder what she really means.\tJe me demande ce qu'elle veut dire, en réalité.\nI wonder what's inside the box.\tJe me demande ce qu'il y a dans la boite.\nI wonder which of you will win.\tJe me demande lequel de vous gagnera.\nI wonder why she is so worried.\tJe me demande pourquoi elle est si inquiète.\nI wonder why we have ear lobes.\tJe me demande pourquoi nous disposons de lobes aux oreilles.\nI wonder why women outlive men.\tJe me demande pourquoi les femmes vivent plus longtemps que les hommes.\nI would be willing to help you.\tJe suis disposé à vous aider.\nI would like a piece of cheese.\tJ'aimerais bien un morceau de fromage.\nI would like to ask a question.\tJ'aimerais bien poser une question.\nI would like to live in France.\tJ'aimerais habiter en France.\nI would like to visit New York.\tJ'aimerais visiter New York.\nI would like you to understand.\tJe voudrais que vous compreniez.\nI wouldn't do it if I were you.\tJe ne le ferais pas si j'étais à ta place.\nI wouldn't mind doing it again.\tÇa ne me déplairait pas de le refaire.\nI wouldn't want to lose my job.\tJe ne voudrais pas perdre mon travail.\nI wrote a letter to my teacher.\tJ'ai écrit une lettre à mon institutrice.\nI wrote a letter to my teacher.\tJ'ai écrit une lettre au maître.\nI wrote her a letter every day.\tJe lui ai écrit une lettre quotidienne.\nI wrote this song just for you.\tJ'ai écrit cette chanson, juste pour vous.\nI wrote this song just for you.\tJ'ai écris cette chanson, juste pour toi.\nI'd be happy to show it to you.\tJe serais heureux de vous le montrer.\nI'd better see what's going on.\tJe ferais mieux de voir ce qu'il se passe.\nI'd do anything for those kids.\tJe ferais tout pour ces gamins.\nI'd do anything to protect you.\tJe ferais n'importe quoi pour te protéger.\nI'd do anything to protect you.\tJe ferais n'importe quoi pour vous protéger.\nI'd just like to say I'm sorry.\tJe voudrais simplement dire que je suis désolé.\nI'd like a table by the window.\tJ'aimerais une table, à la fenêtre.\nI'd like a window seat, please.\tJ'aimerais un siège à côté d'une fenêtre, s'il vous plaît.\nI'd like an aisle seat, please.\tJe voudrais un siège côté couloir, s'il vous plaît.\nI'd like another cup of coffee.\tJe voudrais avoir une autre tasse de café.\nI'd like three tickets, please.\tJe voudrais trois tickets s'il vous plaît.\nI'd like to ask a favor of you.\tJ'aimerais vous demander une faveur.\nI'd like to ask a favor of you.\tJ'ai une faveur à vous demander.\nI'd like to ask you to help me.\tJ'aimerais requérir votre aide.\nI'd like to ask you to help me.\tJ'aimerais requérir ton aide.\nI'd like to get an early start.\tJ'aimerais démarrer tôt.\nI'd like to give you something.\tJ'aimerais te donner quelque chose.\nI'd like to give you something.\tJ'aimerais vous donner quelque chose.\nI'd like to keep expenses down.\tJ'aimerais restreindre les dépenses.\nI'd like to know more about it.\tJ'aimerais en savoir plus sur ça.\nI'd like to know what you mean.\tJ'aimerais savoir ce que vous voulez dire.\nI'd like to live in that house.\tJ'aimerais vivre dans cette maison.\nI'd like to look at that chart.\tJ'aimerais voir ce graphique.\nI'd like to make myself useful.\tJ'aimerais me rendre utile.\nI'd like to sit near the front.\tJ'aimerais m'asseoir devant.\nI'd like to stay for one night.\tJ’aimerais rester pour une nuit.\nI'd like to stay here with Tom.\tJ'aimerais rester ici avec Tom.\nI'd like to swim in this river.\tJ'aimerais nager dans cette rivière.\nI'd like to take a short break.\tJ'aimerais prendre une courte pause.\nI'd like to take my jacket off.\tJ'aimerais retirer ma veste.\nI'd like to take my jacket off.\tJ'aimerais ôter ma veste.\nI'd like to talk to Tom myself.\tJ'aimerais parler à Tom moi-même.\nI'd like to wake Tom up myself.\tJ'aimerais réveiller Tom moi-même.\nI'd like to work at a hospital.\tJ'aimerais travailler dans un hôpital.\nI'd like you to meet my sister.\tJ'aimerais que tu rencontres ma sœur.\nI'd like you to meet my sister.\tJ'aimerais que vous rencontriez ma sœur.\nI'd like you to read this book.\tJ'aimerais que tu lises ce livre.\nI'd like you to read this book.\tJe voudrais que tu lises ce livre.\nI'd love to have more children.\tJ'aimerais avoir plus d'enfants.\nI'd rather be hanged than shot.\tJe préfère être pendu que tué par balle.\nI'd study harder if I were you.\tJ'étudierais avec plus de sérieux si j'étais toi.\nI'd study harder if I were you.\tJ'étudierais plus assidument si j'étais vous.\nI'll answer all your questions.\tJe répondrai à toutes vos questions.\nI'll answer all your questions.\tJe répondrai à toutes tes questions.\nI'll babysit your kids for you.\tJe garderai tes enfants.\nI'll be at home in the morning.\tJe serai chez moi en matinée.\nI'll be happy to work with you.\tJe serai heureux de travailler avec vous.\nI'll be happy to work with you.\tJe serai heureuse de travailler avec vous.\nI'll be happy to work with you.\tJe serai heureuse de travailler avec toi.\nI'll be happy to work with you.\tJe serai heureux de travailler avec toi.\nI'll be ready in a few minutes.\tJe serai prêt dans quelques minutes.\nI'll be six feet under by then.\tJe serai à deux mètres sous terre d'ici là.\nI'll be waiting for the answer.\tJ'attendrai la réponse.\nI'll call back at four o'clock.\tJe vais rappeler à 4 heures.\nI'll call you when I get there.\tJe t'appellerai lorsque j'y arriverai.\nI'll call you when I get there.\tJe t'appellerai lorsque j'arriverai là-bas.\nI'll call you when I get there.\tJe vous appellerai lorsque j'arriverai là-bas.\nI'll choke the life out of him.\tJe vais l'étrangler.\nI'll do anything I can for Tom.\tJe ferai tout ce que je peux pour Tom.\nI'll do my best, I promise you.\tJe ferai de mon mieux, je vous le promets.\nI'll do what the boss tells me.\tJe vais faire ce que le patron me dit.\nI'll get there before you will.\tJ'arriverai là-bas avant toi.\nI'll get you whatever you want.\tJe vous achèterai ce que vous voulez.\nI'll get you whatever you want.\tJe t'obtiendrai tout ce que tu veux.\nI'll go crazy if this keeps up.\tJe deviendrai fou si ça continue.\nI'll go crazy if this keeps up.\tJe deviendrai folle si ça continue.\nI'll have a white wine, please.\tJe prendrai du vin blanc, s'il vous plaît.\nI'll have to go there tomorrow.\tJe vais devoir y aller demain.\nI'll help you as much as I can.\tJe vous aiderai du mieux que je peux.\nI'll help you as much as I can.\tJe t'aiderai autant que je peux.\nI'll help you as much as I can.\tJe vous aiderai autant que je peux.\nI'll introduce you to the team.\tJe vous présenterai à l'équipe.\nI'll keep that book for myself.\tJe vais garder ce livre pour moi-même.\nI'll leave the decision to you.\tJe vous laisserai la décision.\nI'll leave the decision to you.\tJe te laisserai la décision.\nI'll leave when she comes back.\tJe partirai lorsqu'elle reviendra.\nI'll look at it very carefully.\tJe vais le regarder très attentivement.\nI'll make all the arrangements.\tJe ferai tous les préparatifs.\nI'll miss you when you're gone.\tQuand tu t'en iras tu me manqueras.\nI'll need to check my schedule.\tIl va falloir que je vérifie mon agenda.\nI'll put some salt in the soup.\tJe mettrai du sel dans la soupe.\nI'll put some salt on the meat.\tJe mettrai un peu de sel sur la viande.\nI'll raise my hand as a signal.\tJe lèverai ma main pour faire signe.\nI'll see you a week from today.\tOn se revoit dans une semaine exactement.\nI'll take a glass of champagne.\tJe prendrai une coupe de champagne.\nI'll take a rain check on that.\tTu vas me signer un reçu pour ça.\nI'll take care of it right now.\tJe vais m'en occuper immédiatement.\nI'll tell him to call you back.\tJe lui dirai de vous rappeler.\nI'll tell you about it someday.\tJe vais vous en parler un jour.\nI'll wait another five minutes.\tJe patiente encore cinq minutes.\nI'll wait like the rest of you.\tJe vais attendre comme le reste d'entre vous.\nI'm a lot more comfortable now.\tJe suis beaucoup plus à l'aise maintenant.\nI'm a salesman for our company.\tJe suis représentant de commerce pour notre société.\nI'm actually kind of flattered.\tJe suis en fait plutôt flattée.\nI'm actually kind of flattered.\tJe suis en fait plutôt flatté.\nI'm adamant that you should go.\tJ'insiste que vous devez partir.\nI'm afraid that he can't do it.\tJe crains qu'il en soit incapable.\nI'm afraid we'll lose the game.\tJe crains que nous perdions la partie.\nI'm all packed and ready to go.\tMes affaires sont prêtes et je suis prêt à y aller.\nI'm all packed and ready to go.\tMes affaires sont prêtes et je suis prête à partir.\nI'm an extremely humble person.\tJe suis une personne extrêmement humble.\nI'm beginning to lose patience.\tJe commence à perdre patience.\nI'm beginning to see a pattern.\tJe commence à apercevoir un motif.\nI'm beginning to see a pattern.\tJe commence à distinguer un schéma.\nI'm being treated like a child.\tOn me traite comme un enfant.\nI'm buying fruit and chocolate.\tJ'achète des fruits et du chocolat.\nI'm by no means angry with you.\tJe ne suis en aucun cas en colère après toi.\nI'm calling from my cell phone.\tJ'appelle de mon téléphone cellulaire.\nI'm disgusted and disappointed.\tJe suis dégoûté et déçu.\nI'm enjoying this warm weather.\tJe profite de ce temps chaud.\nI'm entitled to my own opinion.\tJe suis en droit à ma propre opinion.\nI'm expecting a customer today.\tJ'attends un client aujourd'hui.\nI'm fed up with all their lies.\tJe suis fatigué de tous leurs mensonges.\nI'm friends with a lot of cops.\tJe suis ami avec de nombreux flics.\nI'm friends with a lot of cops.\tJe suis amie avec de nombreux flics.\nI'm friends with a lot of them.\tJe suis ami avec beaucoup d'entre eux.\nI'm getting married in October.\tJe vais me marier en octobre.\nI'm giving you one more chance.\tJe te donne encore une chance.\nI'm glad I don't have your job.\tJe suis content de ne pas avoir ton travail.\nI'm glad I don't have your job.\tJe suis content de ne pas avoir votre travail.\nI'm glad I was able to do this.\tJe suis content d'avoir pu le faire.\nI'm glad Tom was there with me.\tJe suis heureux que Tom fut à mes cotés.\nI'm glad we agree on something.\tJe suis ravi que nous soyons d'accord sur quelque chose.\nI'm going to Paris in the fall.\tJe vais à Paris à l'automne.\nI'm going to be ready for that.\tJe vais être prêt pour ça.\nI'm going to call an ambulance.\tJe vais appeler une ambulance.\nI'm going to do something else.\tJe vais faire autre chose.\nI'm going to kill him for this!\tJe vais le tuer pour ça !\nI'm going to meet him tomorrow.\tJe vais le rencontrer demain.\nI'm going to miss your cooking.\tTa cuisine me manquera.\nI'm going to put it in my room.\tJe vais le mettre dans ma chambre.\nI'm going to tell you a secret.\tJe vais te dire un secret.\nI'm going to tell you a secret.\tJe vais te conter un secret.\nI'm going to tell you a secret.\tJe vais vous dire un secret.\nI'm going to tell you a secret.\tJe vais vous conter un secret.\nI'm having the time of my life.\tJe m'amuse comme un fou.\nI'm impressed with your French.\tJe suis impressionné par votre français.\nI'm impressed with your French.\tJe suis impressionné par ton français.\nI'm impressed with your French.\tJe suis impressionnée par votre français.\nI'm impressed with your French.\tJe suis impressionnée par ton français.\nI'm just a plain office worker.\tJe suis un simple employé de bureau.\nI'm just trying to be friendly.\tJ'essaie simplement d'être amical.\nI'm just trying to make a buck.\tJ'essaie juste de faire du fric.\nI'm meeting someone for dinner.\tJe rencontre quelqu'un pour dîner.\nI'm meeting someone for dinner.\tJe rencontre quelqu'un pour déjeuner.\nI'm never angry without reason.\tJe ne suis jamais en colère sans raison.\nI'm not always free on Sundays.\tJe ne suis pas toujours libre le dimanche.\nI'm not ashamed that I am poor.\tJe n'ai pas honte d'être pauvre.\nI'm not certain Tom likes that.\tJe ne suis pas certain que Tom aime ça.\nI'm not certain Tom likes that.\tJe ne suis pas certaine que Tom aime ça.\nI'm not comfortable doing this.\tJe ne suis pas à l'aise de faire ça.\nI'm not frightened of anything.\tJe n'ai peur de rien.\nI'm not frightened of anything.\tJe n'ai pas peur de quoi que ce soit.\nI'm not going to see you again.\tJe ne vais pas te revoir.\nI'm not going, and that's that.\tJe n'y vais pas et puis c'est tout.\nI'm not going, and that's that.\tJe n'y vais pas, un point c'est tout.\nI'm not interested in politics.\tJe ne m'intéresse pas à la politique.\nI'm not married to Tom anymore.\tJe ne suis plus mariée avec Tom.\nI'm not married to Tom anymore.\tJe ne suis plus marié avec Tom.\nI'm not particularly impressed.\tJe ne suis pas particulièrement impressionné.\nI'm not particularly impressed.\tJe ne suis pas particulièrement impressionnée.\nI'm not really that interested.\tJe n'y suis pas vraiment si intéressé.\nI'm not really that interested.\tJe n'y suis pas vraiment si intéressée.\nI'm not sure I want to do this.\tJe ne suis pas sûr de vouloir le faire.\nI'm not sure I want to do this.\tJe ne suis pas sûre de vouloir le faire.\nI'm not sure anything happened.\tJe ne suis pas sûr que quoi que ce soit ait eu lieu.\nI'm not sure anything happened.\tJe ne suis pas sûre que quoi que ce soit ait eu lieu.\nI'm not sure of the exact date.\tJe ne suis pas sûr de la date exacte.\nI'm not sure what I want to do.\tJe ne suis pas sûr de ce que je veux faire.\nI'm not sure what I want to do.\tJe ne suis pas sûre de ce que je veux faire.\nI'm not trying to say anything.\tJe ne tente pas de dire quoi que ce soit.\nI'm not trying to say anything.\tJe n'essaie pas de dire quoi que ce soit.\nI'm not understanding anything.\tJe ne comprends rien.\nI'm not worried about anything.\tRien ne me soucie.\nI'm pleased with my new jacket.\tJe suis content de ma nouvelle veste.\nI'm pretty sure Tom's reliable.\tJe suis pratiquement sûr qu'on peut faire confiance à Tom.\nI'm reading the New York Times.\tJe lis le New York Times.\nI'm really glad I ran into you.\tJe suis vraiment content d'être tombé sur toi.\nI'm really glad I ran into you.\tJe suis vraiment content d'être tombée sur toi.\nI'm really not all that hungry.\tJe n'ai vraiment pas aussi faim que ça.\nI'm running Linux on my laptop.\tMon ordinateur portable tourne sous Linux.\nI'm saving up to buy a new car.\tJ'économise pour acheter une nouvelle voiture.\nI'm sensing a lot of hostility.\tJe ressens beaucoup d'hostilité.\nI'm sorry for what I have done.\tJe suis désolé pour ce que j'ai fait.\nI'm sorry if I embarrassed you.\tJe suis désolé si je vous ai embarrassé.\nI'm sorry if I embarrassed you.\tJe suis désolé si je vous ai embarrassés.\nI'm sorry if I embarrassed you.\tJe suis désolé si je vous ai embarrassées.\nI'm sorry if I embarrassed you.\tJe suis désolée si je vous ai embarrassé.\nI'm sorry if I embarrassed you.\tJe suis désolée si je vous ai embarrassée.\nI'm sorry if I embarrassed you.\tJe suis désolée si je vous ai embarrassées.\nI'm sorry if I embarrassed you.\tJe suis désolée si je vous ai embarrassés.\nI'm sorry if I embarrassed you.\tJe suis désolé si je t'ai embarrassée.\nI'm sorry if I embarrassed you.\tJe suis désolé si je t'ai embarrassé.\nI'm sorry if I offended anyone.\tSi j'ai offusqué quelqu'un, je m'en excuse.\nI'm sorry if I'm bothering you.\tJe suis désolé si je te dérange.\nI'm sorry if my words hurt you.\tJe suis désolé si mes paroles te blessent.\nI'm sorry to have bothered you.\tJe suis désolé de t'avoir dérangé !\nI'm sorry to have bothered you.\tJe suis désolé de t'avoir dérangée !\nI'm sorry to have bothered you.\tJe suis désolée de t'avoir dérangé !\nI'm sorry to have bothered you.\tJe suis désolée de t'avoir dérangée !\nI'm sorry to have bothered you.\tJe suis désolé de vous avoir dérangé !\nI'm sorry to have bothered you.\tJe suis désolée de vous avoir dérangé !\nI'm sorry to have bothered you.\tJe suis désolé de vous avoir dérangée !\nI'm sorry to have bothered you.\tJe suis désolée de vous avoir dérangée !\nI'm sorry to have bothered you.\tJe suis désolé de vous avoir dérangés !\nI'm sorry to have bothered you.\tJe suis désolée de vous avoir dérangés !\nI'm sorry to have bothered you.\tJe suis désolé de vous avoir dérangées !\nI'm sorry to have bothered you.\tJe suis désolée de vous avoir dérangées !\nI'm sorry, I couldn't hear you.\tJe suis désolé, je n'ai pas pu t'entendre.\nI'm sorry, I couldn't hear you.\tJe suis désolé, je n'ai pas pu vous entendre.\nI'm sorry, I couldn't hear you.\tJe suis désolée, je n'ai pas pu t'entendre.\nI'm sorry, I couldn't hear you.\tJe suis désolée, je n'ai pas pu vous entendre.\nI'm sorry, I couldn't hear you.\tJe suis désolé, je ne pouvais pas t'entendre.\nI'm sorry, I couldn't hear you.\tJe suis désolée, je ne pouvais pas t'entendre.\nI'm sorry, I couldn't hear you.\tJe suis désolé, je ne pouvais pas vous entendre.\nI'm sorry, I couldn't hear you.\tJe suis désolée, je ne pouvais pas vous entendre.\nI'm sorry, I didn't catch that.\tJe suis désolé, je n'ai pas saisi cela.\nI'm sorry, I didn't catch that.\tJe suis désolée, je n'ai pas saisi cela.\nI'm sorry, I don't have change.\tJe regrette, je n'ai pas de monnaie.\nI'm sorry, I don't mean to pry.\tJe suis désolé, je ne veux pas m'immiscer.\nI'm sorry, I don't mean to pry.\tJe suis désolée, je ne veux pas m'immiscer.\nI'm sorry, but it's impossible.\tJe suis désolé mais c'est impossible.\nI'm sorry, that flight is full.\tJe suis désolé, ce vol est complet.\nI'm starting to feel desperate.\tJe commence à me sentir désespéré.\nI'm starting to feel desperate.\tJe commence à me sentir désespérée.\nI'm still angry because of her.\tJe suis encore en colère à cause d'elle.\nI'm still the boss around here.\tC'est encore moi le patron, ici.\nI'm still waiting for my order.\tJ'attends toujours ma commande.\nI'm still waiting for my order.\tJ'attends toujours pour ma commande.\nI'm sure Tom had a good reason.\tJe suis sûre que Tom avait une bonne raison.\nI'm sure Tom had a good reason.\tJe suis sûr que Tom avait une bonne raison.\nI'm sure Tom will be home soon.\tJe suis sûre que Tom sera bientôt à la maison.\nI'm sure Tom will be home soon.\tJe suis sûr que Tom sera bientôt à la maison.\nI'm sure everything will be OK.\tJe suis sûre que tout ira bien.\nI'm sure everything will be OK.\tJe suis sûr que tout se passera bien.\nI'm sure he will come tomorrow.\tJe suis sûr qu'il viendra demain.\nI'm sure she will turn up soon.\tJe suis certain qu'elle va bientôt surgir.\nI'm sure that Tom will do that.\tJe suis sûre que Tom va le faire.\nI'm sure that he went to Tokyo.\tJe suis convaincu qu'il s'est rendu à Tokyo.\nI'm sure you have other skills.\tJe suis sûr que vous avez d'autres compétences.\nI'm sure you have other skills.\tJe suis sûre que vous avez d'autres compétences.\nI'm sure you have other skills.\tTu as sûrement d'autres talents.\nI'm surprised it was that easy.\tJe suis surpris que ça ait été si facile.\nI'm the youngest in the family.\tJe suis le benjamin de la famille.\nI'm the youngest in the family.\tJe suis le plus jeune enfant.\nI'm the youngest in the family.\tJe suis la plus jeune enfant.\nI'm tired, but I'll study hard.\tJe suis fatigué, mais je vais étudier avec application.\nI'm told you're a good teacher.\tOn m'a dit que vous étiez un bon professeur.\nI'm too lazy to do my homework.\tJ'ai la flemme de faire mes devoirs.\nI'm too scared to say anything.\tJ'ai trop peur pour dire quoi que ce soit.\nI'm training for the triathlon.\tJe m'entraîne pour le triathlon.\nI'm used to cooking for myself.\tJ'ai l'habitude de me faire à manger.\nI'm used to this sort of thing.\tJe suis habitué à ce genre de choses.\nI'm used to this sort of thing.\tJe suis habituée à ce genre de choses.\nI'm very glad to see you again.\tJe suis très content de vous revoir.\nI'm very glad to see you again.\tJe suis très content de te revoir.\nI'm very glad to see you again.\tJe suis très contente de vous revoir.\nI'm very glad to see you again.\tJe suis très contente de te revoir.\nI'm very happy to be back home.\tJe suis très heureux d'être de retour à la maison.\nI'm very happy with my new car.\tJe suis très content de ma nouvelle voiture.\nI'm very interested in the job.\tJe suis très intéressé par le poste.\nI'm very much in favor of this.\tJe suis très en faveur de cela.\nI'm very proud of our students.\tJe suis très fier de nos étudiants.\nI'm very proud of our students.\tJe suis très fière de nos étudiants.\nI'm working for a trading firm.\tJe travaille pour une entreprise de commerce.\nI've always been a hard worker.\tJ'ai toujours été un travailleur acharné.\nI've always wanted to meet Tom.\tJ'ai toujours voulu rencontrer Tom.\nI've always wanted to meet Tom.\tJ'ai toujours eu envie de rencontrer Tom.\nI've always wanted to meet you.\tJ'ai toujours voulu te rencontrer.\nI've always wanted to meet you.\tJ'ai toujours voulu faire votre connaissance.\nI've been a little sick lately.\tJe suis un peu malade ces derniers temps.\nI've been doing it all my life.\tJ'ai fait ça toute ma vie.\nI've been gone for a long time.\tÇa fait lontemps que je suis parti.\nI've been gone for a long time.\tÇa fait longtemps que je suis partie.\nI've been gone for a long time.\tJ'ai été absent longtemps.\nI've been gone for a long time.\tJ'ai été absente longtemps.\nI've been gone for a long time.\tJe suis parti depuis longtemps.\nI've been having some bad luck.\tJ'ai eu un peu de malchance.\nI've been painting the ceiling.\tJe peignais le plafond.\nI've done everything necessary.\tJ'ai fait tout ce qui était nécessaire.\nI've finally got the whole set!\tJe possède enfin un set complet !\nI've finished reading the book.\tJ'ai fini de lire ce livre.\nI've given it a lot of thought.\tJ'y ai consacré beaucoup de réflexion.\nI've got a bad case of jet lag.\tJ'ai un méchant décalage horaire.\nI've got a lot of good friends.\tJ'ai beaucoup de bons amis.\nI've got real feelings for you.\tJ'ai de vrais sentiments à ton égard.\nI've got real feelings for you.\tJ'ai de vrais sentiments à votre égard.\nI've got some stuff to do here.\tJ'ai des trucs à faire ici.\nI've got to do something first.\tIl me faut faire quelque chose auparavant.\nI've got to do something first.\tJe dois faire quelque chose auparavant.\nI've got to get to the airport.\tIl me faut me rendre à l'aéroport.\nI've got to learn to slow down.\tJe dois apprendre à ralentir.\nI've had a wonderful time here.\tJ'ai passé un merveilleux séjour ici.\nI've lived here my entire life.\tJ'ai vécu ici ma vie entière.\nI've never been in love before.\tJe n'ai jamais été amoureux auparavant.\nI've never been in love before.\tJe n'ai jamais été amoureuse auparavant.\nI've never been in love before.\tJe n'ai encore jamais été amoureuse.\nI've never been in love before.\tJe n'ai encore jamais été amoureux.\nI've never been in love before.\tJamais encore je n'ai été amoureuse.\nI've never been in love before.\tJamais encore je n'ai été amoureux.\nI've never been sedated before.\tJe n'ai jamais été anesthésié auparavant.\nI've never done harm to anyone.\tJe n'ai jamais fait de mal à quiconque.\nI've never done harm to anyone.\tJe n'ai jamais fait de mal à qui que ce soit.\nI've never had problems before.\tJe n'ai jamais eu de problèmes auparavant.\nI've never made a lot of money.\tJe n'ai jamais fait beaucoup d'argent.\nI've never seen you so nervous.\tJe ne t’ai jamais vu aussi nerveux.\nI've never seen you so nervous.\tJe ne t’ai jamais vue aussi nerveuse.\nI've promised Tom I would help.\tJ'ai promis à Tom que j'aiderais.\nI've seen Tom on TV many times.\tJ'ai vu Tom à la télé de nombreuses fois.\nI've still got paperwork to do.\tIl me reste encore de la paperasse à faire.\nIf I had money, I could buy it.\tSi j'avais de l'argent, je pourrais l'acheter.\nIf I knew it, I would tell you.\tSi je le savais, je te le dirais.\nIf I knew it, I would tell you.\tSi je le savais, je vous le dirais.\nIf I knew it, I would tell you.\tSi je le savais, je le dirais.\nIf I were rich, I would travel.\tSi j'étais riche, je voyagerais.\nIf necessary, I will come soon.\tSi nécessaire, je viendrai aussitôt.\nIf something is wrong, tell me.\tSi quelque chose cloche, dis-le moi !\nIf something is wrong, tell me.\tSi quelque chose cloche, dites-le moi !\nIf you bite me, I'll bite back.\tSi tu me mords, je te mordrai en retour.\nIf you bite me, I'll bite back.\tSi tu me mords, je te mordrai à mon tour.\nIf you hurt her, I'll kill you.\tSi tu lui fais du mal, je te tuerai.\nIf you hurt her, I'll kill you.\tSi vous lui faites du mal, je vous tuerai.\nIf you invite him, he may come.\tSi vous l'invitez il viendra peut-être.\nIf you'd kiss me, I'd be happy.\tSi tu m'embrassais, je serais heureux.\nIf you'd kiss me, I'd be happy.\tSi vous m'embrassiez, je serais heureux.\nIf you'd kiss me, I'd be happy.\tSi vous m'embrassiez, je serais heureuse.\nIf you'd kiss me, I'd be happy.\tSi tu m'embrassais, je serais heureuse.\nIn case of emergency, call 119.\tEn cas d'urgence, composez le cent dix-neuf.\nIs French your native language?\tLe français est-il ta langue maternelle ?\nIs bigamy a crime in Australia?\tEst-ce que la bigamie est un crime en Australie?\nIs he done using the telephone?\tA-t-il terminé avec le téléphone ?\nIs he done using the telephone?\tA-t-il fini d'utiliser le téléphone ?\nIs it cruel to declaw your cat?\tEst-il cruel d'arracher les griffes de son chat ?\nIs it cruel to declaw your cat?\tEst-il cruel de retirer les griffes de son chat ?\nIs it difficult to learn Greek?\tApprendre le grec est-il difficile ?\nIs it true that Tom has a twin?\tC’est vrai que Tom a un frère jumeau ?\nIs it true that Tom has a twin?\tC’est vrai que Tom a une sœur jumelle ?\nIs it your first day at school?\tEst-ce ton premier jour à l'école ?\nIs it your first day at school?\tEst-ce votre premier jour à l'école ?\nIs that ring made of real gold?\tEst-ce que cette bague est en or véritable ?\nIs the room big enough for you?\tLa pièce est-elle assez grande pour vous ?\nIs there a cat under the table?\tY a-t-il un chat sous la table ?\nIs there a doctor in the house?\tY a-t-il un médecin dans la maison ?\nIs there a museum in this town?\tY a-t-il un musée dans cette ville ?\nIs there anything on the floor?\tY a-t-il quelque chose sur le plancher ?\nIs there anything on the floor?\tY a-t-il quoi que ce soit sur le plancher ?\nIs there the subtitled version?\tY a-t-il la version sous-titrée ?\nIs this one the bus for Oxford?\tEst-ce celui-ci, le bus pour Oxford ?\nIs this the train for New York?\tC'est le train pour New York ?\nIs this your first trip abroad?\tC'est votre premier voyage à l'étranger ?\nIs this your first trip abroad?\tEst-ce ton premier voyage à l'étranger ?\nIs this your first trip abroad?\tEst-ce votre premier voyage à l'étranger ?\nIsn't Tom a little old for you?\tTom n'est-il pas un peu vieux pour toi ?\nIsn't that just a prairie fire?\tN'est-ce pas un simple feu de prairie ?\nIt ain't like before, you know.\tC'est plus comme avant, tu sais.\nIt appears that he is mistaken.\tIl semblerait qu'il se méprend.\nIt began to rain cats and dogs.\tIl se mit à pleuvoir des cordes.\nIt began to rain cats and dogs.\tIl s'est mis à tomber des cordes.\nIt doesn't make any difference.\tÇa ne fait aucune différence.\nIt doesn't matter what I think.\tCe que je pense n'a pas d'importance.\nIt doesn't sound too bad to me.\tÇa ne me semble pas si terrible.\nIt feels horrible to be pitied.\tLe sentiment de faire l'objet de pitié est horrible.\nIt happened early this morning.\tC'est arrivé tôt ce matin.\nIt happened on Halloween night.\tC'est arrivé la nuit d'Halloween.\nIt has been raining off and on.\tIl a plu par intermittence.\nIt has been snowing on and off.\tIl neige par intermittence.\nIt has nothing to do with luck.\tÇa n'a rien à voir avec la chance.\nIt is about the size of an egg.\tC'est à peu près de la taille d'un œuf.\nIt is certain that he is wrong.\tIl s'est trompé, c'est certain.\nIt is difficult to talk to him.\tIl est difficile de lui parler.\nIt is high time we went to bed.\tC'est l'heure de nous coucher.\nIt is kind of pretty, isn't it?\tC'est assez mignon, n'est-ce pas ?\nIt is necessary to lose weight.\tIl est nécessaire de perdre du poids.\nIt is no good talking about it.\tIl n'y a rien de bon d'en parler.\nIt is no use giving her advice.\tCela ne sert à rien de lui donner des conseils.\nIt is not the correct solution.\tCe n'est pas la solution qui convient.\nIt is obvious that he is right.\tC'est évident qu'il a raison.\nIt is obvious that he is right.\tIl est évident qu'il a raison.\nIt is our duty to obey the law.\tIl est de notre devoir d'obéir à la loi.\nIt is really time for us to go.\tIl est vraiment temps pour nous d'y aller.\nIt is really time for us to go.\tIl est vraiment temps que nous y allions.\nIt is something my mother made.\tC'est quelque chose que ma mère faisait.\nIt is still fresh in my memory.\tC'est encore frais dans ma mémoire.\nIt is too dark to play outside.\tIl fait trop sombre pour jouer dehors.\nIt kept raining for three days.\tIl a plu trois jours d'affilée.\nIt leaves every thirty minutes.\tIl part toutes les trente minutes.\nIt makes me feel uncomfortable.\tÇa me fait me sentir mal à l'aise.\nIt might just be a coincidence.\tCe n'est peut-être qu'une coïncidence.\nIt must be done more carefully.\tCela doit être fait avec davantage de soin.\nIt rained five successive days.\tIl a plu cinq jours consécutifs.\nIt rained five successive days.\tIl a plu cinq jours d'affilée.\nIt rained five successive days.\tIl plut cinq jours de suite.\nIt rained heavily all day long.\tIl plut fort toute la journée.\nIt stopped snowing an hour ago.\tIl s'est arrêté de neiger il y a une heure.\nIt turned out that I was right.\tIl s'avéra que j'avais raison.\nIt was Tom that saved the girl.\tC'est Tom qui a sauvé cette fille.\nIt was a dark and stormy night.\tC'était une nuit sombre et tempétueuse.\nIt was a one-sided love affair.\tC'était une histoire d'amour unilatérale.\nIt was everything he hoped for.\tC'était tout ce qu'il espérait.\nIt was fun playing in the park.\tC'était amusant de jouer dans le parc.\nIt was her wish to go to Paris.\tC'était son souhait d'aller à Paris.\nIt was his wish to go to Paris.\tC'était son souhait d'aller à Paris.\nIt was just a joke. Lighten up!\tC'était juste une blague. Détends-toi !\nIt was just a joke. Lighten up!\tC'était juste une blague. Détendez-vous !\nIt was merely a matter of luck.\tCe n'était qu'une question de chance.\nIt was not clear what she said.\tCe qu'elle a dit n'était pas clair.\nIt was not clear what she said.\tCe qu'elle dit ne fut pas clair.\nIt was not very cold yesterday.\tIl ne faisait pas très froid hier.\nIt was terribly cold yesterday.\tIl faisait terriblement froid hier.\nIt was terribly cold yesterday.\tIl a fait un froid de canard hier.\nIt wasn't my wife on the phone.\tCe n'était pas ma femme au téléphone.\nIt will be fine this afternoon.\tIl fera beau cet après-midi.\nIt will probably snow tomorrow.\tIl va probablement neiger demain.\nIt will soon be breakfast time.\tÇa va bientôt être l'heure du petit-déjeuner.\nIt'll cost over a thousand yen.\tCela coutera plus de mille yen.\nIt's a great honor to meet you.\tC'est un grand honneur que de vous rencontrer.\nIt's a nice day to eat outside.\tC'est une belle journée pour manger dehors.\nIt's a pity when somebody dies.\tC'est dommage quand quelqu'un meurt.\nIt's a risk we'll have to take.\tC'est un risque que nous devrons prendre.\nIt's a waste of time and money.\tC'est une perte de temps et d'argent.\nIt's about time we went to bed.\tIl est temps que nous allions au lit.\nIt's already past your bedtime.\tL'heure d'aller te coucher est déjà passée.\nIt's awfully cold this evening.\tIl fait un froid de canard ce soir.\nIt's awfully cold this evening.\tIl fait horriblement froid ce soir.\nIt's awfully cold this evening.\tComment on se les pèle ce soir.\nIt's better than doing nothing.\tC'est mieux que de ne rien faire.\nIt's better than doing nothing.\tC'est mieux que de rester les bras ballants.\nIt's even worse than I thought.\tC'est même pire que je pensais.\nIt's even worse than I thought.\tC'est même pire que je ne pensais.\nIt's fifty kilometers to Paris.\tIl y a 50 kilomètres jusqu'à Paris.\nIt's frustrating and confusing.\tC'est frustrant et déroutant.\nIt's getting colder and colder.\tIl fait de plus en plus froid.\nIt's getting cooler day by day.\tIl fait plus frais de jour en jour.\nIt's getting darker and darker.\tIl fait de plus en plus sombre.\nIt's getting darker and darker.\tIl fait de plus en plus noir.\nIt's getting warmer and warmer.\tIl fait de plus en plus chaud.\nIt's getting warmer day by day.\tIl fait plus chaud de jour en jour.\nIt's hard to resist temptation.\tIl est difficile de résister à la tentation.\nIt's healthy to breathe deeply.\tIl est bon pour la santé de respirer profondément.\nIt's high time you were in bed.\tIl est grand temps que tu ailles au lit.\nIt's high time you were in bed.\tTu devrais déjà être au lit.\nIt's just a stone's throw away.\tC'est juste à un jet de pierre.\nIt's just that I don't like it.\tC'est juste que je ne l'aime pas.\nIt's necessary to avoid stress.\tIl est nécessaire d'éviter le stress.\nIt's not always cold in Boston.\tIl ne fait pas toujours froid à Boston.\nIt's not easy raising children.\tCe n'est pas facile d'élever des enfants.\nIt's obvious that you're wrong.\tIl est évident que vous avez tort.\nIt's only a temporary solution.\tCe n'est qu'une solution temporaire.\nIt's popular among the elderly.\tC'est populaire chez les anciens.\nIt's really not that expensive.\tCe n'est vraiment pas si cher.\nIt's simpler and more reliable.\tC'est plus simple et plus fiable.\nIt's starting to get cold here.\tIl commence à faire froid ici.\nIt's still too early to get up.\tIl est encore trop tôt pour se lever.\nIt's supposed to snow tomorrow.\tIl doit neiger demain.\nIt's the best job in the world!\tC'est le meilleur métier du monde !\nIt's the best thing I ever did.\tC'est la meilleure chose que j'ai jamais faite.\nIt's thirty degrees below zero.\tIl fait moins trente.\nIt's time to make up your mind.\tIl faut vous décider.\nIt's too early for you to come.\tIl est trop tôt pour que tu viennes.\nIt's too early for you to come.\tIl est trop tôt pour que vous veniez.\nIt's too late to apologize now.\tIl est trop tard pour s'excuser maintenant.\nIt's too late to turn back now.\tIl est trop tard pour faire demi-tour maintenant.\nIt's useless to try and resist.\tLa résistance est inutile.\nItaly invaded Ethiopia in 1935.\tL'Italie envahit l'Éthiopie en dix-neuf-cent-trente-cinq.\nItaly invaded Ethiopia in 1935.\tL'Italie envahit l'Éthiopie en mille-neuf-cent-trente-cinq.\nItaly invaded Ethiopia in 1935.\tL'Italie a envahi l'Éthiopie en dix-neuf-cent-trente-cinq.\nItaly invaded Ethiopia in 1935.\tL'Italie a envahi l'Éthiopie en mille-neuf-cent-trente-cinq.\nI‘m ironing my handkerchiefs.\tJe repasse mes mouchoirs.\nJapan depends on foreign trade.\tLe Japon dépend du commerce extérieur.\nJapan's army was very powerful.\tL'armée japonaise était très puissante.\nJohn Adams took office in 1797.\tJohn Adams prit ses fonctions en 1797.\nJorge can speak four languages.\tJorge sait parler quatre langues.\nJust pretend you don't know me.\tImagine que tu ne me connais pas.\nJust pretend you don't know me.\tFais semblant de ne pas me connaître.\nJust seeing it made me nervous.\tRien que le voir me rendait nerveux.\nJust seeing it made me nervous.\tRien que le voir me rendait nerveuse.\nKamal hasn't read the book yet.\tKamal n'a pas encore lu le livre.\nKeep in mind that you must die.\tSonge que tu dois mourir.\nKeep it at a lower temperature.\tConservez-le au frais.\nKeep the money in a safe place.\tGarde l'argent dans un endroit sûr.\nKeep the money in a safe place.\tGardez l'argent en lieu sûr.\nKeep the money in a safe place.\tGarde l'argent en lieu sûr.\nKeep your hands off my bicycle.\tNe touche pas à mon vélo.\nKeep your hands off my bicycle.\tBas les pattes de mon vélo !\nKeep your hands off my bicycle.\tPas touche à mon vélo !\nLast night's game was exciting.\tLa partie de la nuit dernière était passionnante.\nLet me explain what's happened.\tLaisse-moi expliquer ce qui s'est passé.\nLet me explain what's happened.\tLaissez-moi expliquer ce qui est arrivé.\nLet me hear from you very soon.\tDonne-moi des nouvelles de toi très prochainement.\nLet me hear from you very soon.\tDonnez-moi des nouvelles de vous très prochainement.\nLet me remind you of something.\tLaisse-moi te rappeler quelque chose !\nLet me remind you of something.\tLaissez-moi vous rappeler quelque chose !\nLet me remind you of something.\tLaisse-moi te remémorer quelque chose !\nLet me remind you of something.\tLaissez-moi vous remémorer quelque chose !\nLet me see what's in your hand.\tLaisse-moi voir ce que tu as dans la main !\nLet me see what's in your hand.\tLaissez-moi voir ce que vous avez dans la main !\nLet me show you how to do that.\tLaissez-moi vous montrer comment faire.\nLet us know when you'll arrive.\tFaites-nous savoir quand vous arriverez.\nLet us never speak of it again.\tN'en reparlons jamais plus.\nLet's be frank with each other.\tSoyons francs les uns envers les autres.\nLet's call the whole thing off.\tAnnulons tout.\nLet's do the homework together.\tFaisons nos devoirs ensemble.\nLet's find something to sit on.\tTrouvons quelque chose pour nous asseoir.\nLet's go and swim in the river.\tAllons nager à la rivière.\nLet's go do what we have to do.\tAllons faire ce que nous avons à faire.\nLet's go somewhere tonight, OK?\tAllons quelque part ce soir, OK ?\nLet's go straight to the beach.\tAllons directement à la plage !\nLet's go to a concert together.\tAllons ensemble à un concert.\nLet's hope Tom doesn't do that.\tEspérons que Tom ne fait pas ça.\nLet's hope Tom got our message.\tEspérons que Tom a reçu notre message.\nLet's hope that doesn't happen.\tEspérons que ça n'arrivera pas.\nLet's learn this poem by heart.\tApprenons ce poème par cœur.\nLet's leave when you are ready.\tPartons quand vous serez prêt.\nLet's move on to another topic.\tPassons maintenant à un autre sujet.\nLet's not allow that to happen.\tNe laissons pas cela se produire.\nLet's not beat around the bush.\tNe tournons pas autour du pot.\nLet's not exaggerate the facts.\tN'exagérons pas la situation.\nLet's ponder that for a moment.\tSoupesons cela un instant !\nLet's postpone until next week.\tRemettons à la semaine prochaine.\nLet's rent bicycles over there.\tLouons des vélos là-bas !\nLet's see if Tom can stay away.\tVoyons si Tom peut rester à distance.\nLet's see if they let you talk.\tVoyons s'ils te laissent parler.\nLet's send Tom a sympathy card.\tEnvoyons une carte de condoléances à Tom.\nLet's take a look at the facts.\tJetons un coup d’œil sur les faits.\nLet's take a rest in the shade.\tFaisons une pause à l'ombre.\nLet's take a walk for a change.\tAllons nous promener pour une fois.\nLet's wrap this up and go home.\tFinissons-en et rentrons à la maison.\nLife begins when you are forty.\tLa vie commence à quarante ans.\nLife in a small town is boring.\tLa vie dans une petite ville est ennuyeuse.\nLife is really tough sometimes.\tLa vie est vraiment dure parfois.\nLike it or not, you must do it.\tTu dois le faire, que ça te plaise ou non.\nLike it or not, you must do it.\tQue ça vous plaise ou pas, vous devez le faire.\nLincoln was opposed to slavery.\tLincoln était opposé à l'esclavage.\nListen carefully to what I say.\tÉcoute attentivement ce que je dis.\nLook at the size of that thing!\tRegarde la taille de ce truc !\nLook at the size of that thing!\tRegardez la taille de ce truc !\nLook at the size of that thing!\tRegardez la taille de cette chose !\nLook at the size of that thing!\tRegarde la taille de cette chose !\nLook at those fish in the pond.\tRegarde ces poissons dans l'étang.\nLook at yourself in the mirror.\tRegarde-toi dans le miroir.\nLooks like I will become a dad.\tOn dirait que je vais devenir père.\nLuck had nothing to do with it.\tLa chance n'y avait rien à faire.\nMadrid is the capital of Spain.\tMadrid est la capitale de l'Espagne.\nMan to man, what are the facts?\tD'homme à homme, de quoi s'agit-il?\nMarriage frightens some people.\tLe mariage effraie certaines personnes.\nMary and I became good friends.\tMary et moi sommes devenues bonnes amies.\nMary stayed up late last night.\tMarie a veillé tard la nuit dernière.\nMary wants to become a teacher.\tJe pense que Marie veut devenir professeur.\nMary wore a simple white dress.\tMary portait une simple robe blanche.\nMay I ask you another question?\tPuis-je vous poser une autre question ?\nMay I ask you another question?\tPuis-je te poser une autre question ?\nMay I ask you to do me a favor?\tPuis-je vous demander une faveur ?\nMay I ask you to do me a favor?\tJe peux vous demander un service ?\nMay I leave this book with you?\tJe te laisse ce livre ?\nMay I suggest another strategy?\tPuis-je suggérer une autre stratégie ?\nMay I tell you a little secret?\tPuis-je te dire un petit secret?\nMaybe you should quit drinking.\tPeut-être que vous devriez cesser de boire.\nMeasles can be quite dangerous.\tLa rougeole peut être tout à fait dangereuse.\nMemorize the poem by next week.\tApprends le poème par cœur pour la semaine prochaine.\nMen and women went into battle.\tHommes et femmes engagèrent le combat.\nMinors aren't allowed to enter.\tInterdit aux mineurs.\nMoney makes the world go round.\tL'argent fait tourner le monde.\nMother has old-fashioned ideas.\tSa mère a des idées dépassées.\nMumps is an infectious disease.\tLes oreillons sont une maladie infectieuse.\nMy boss is very cheerful today.\tMon patron est très gai aujourd'hui.\nMy brother did it on my behalf.\tMon frère l'a fait en mon nom.\nMy brother gave me a cute doll.\tMon frère m'a donné une adorable poupée.\nMy brother has become a priest.\tMon frère est devenu prêtre.\nMy brother is in Australia now.\tMon frère est maintenant en Australie.\nMy brother is now in Australia.\tMon frère est maintenant en Australie.\nMy brother is stronger than me.\tMon frère est plus fort que moi.\nMy brother polished the silver.\tMon frère a poli l'argent.\nMy children don't listen to me.\tMes enfants ne m'écoutent pas.\nMy children won't listen to me.\tMes enfants refusent de m'écouter.\nMy cholesterol levels are high.\tMon taux de cholestérol est élevé.\nMy computer was down yesterday.\tIl se trouve que mon ordinateur était en panne hier.\nMy daughter's driving me crazy.\tMa fille me rend dingue.\nMy dog goes everywhere with me.\tMon chien va partout avec moi.\nMy efforts produced no results.\tMes efforts n'ont produit aucun résultat.\nMy family are all early risers.\tDans ma famille, ce sont tous des lève-tôt.\nMy father doesn't drink liquor.\tMon père ne boit pas de liqueur.\nMy father goes to work by bike.\tMon père se rend au travail en vélo.\nMy father has bought a new car.\tMon père a acheté une voiture neuve.\nMy father is an expert surgeon.\tMon père est un chirurgien expert.\nMy father is far from artistic.\tMon père est loin d'être artiste.\nMy father is in the garden now.\tMon père est maintenant dans le jardin.\nMy father made me a nice lunch.\tMon père m'a préparé un délicieux repas pour le déjeuner.\nMy father made me wash the car.\tMon père m'a obligé à laver la voiture.\nMy father might be at home now.\tIl se peut que mon père soit à la maison, à l'heure actuelle.\nMy father might be at home now.\tIl se peut que mon père se trouve à la maison, à l'heure actuelle.\nMy father might be at home now.\tIl se peut que mon père soit chez lui, à l'heure actuelle.\nMy father might be at home now.\tIl se peut que mon père se trouve chez lui, à l'heure actuelle.\nMy favorite dance is the tango.\tMa danse préférée, c'est le tango.\nMy favorite music is pop music.\tMa musique favorite est la pop.\nMy feet are smaller than yours.\tMes pieds sont plus petits que les tiens.\nMy friend gave me a silk scarf.\tMon amie m'a donné un foulard de soie.\nMy girlfriend is a good dancer.\tMa copine sait bien danser.\nMy grandfather was part Indian.\tMon grand-père était en partie indien.\nMy grandma has gotten very old.\tMa mamie est devenue très vieille.\nMy hobby is collecting insects.\tMon passe-temps est de collectionner les insectes.\nMy hobby is collecting insects.\tMon passe-temps consiste à collectionner les insectes.\nMy husband is a very good cook.\tMon mari est très bon cuisinier.\nMy husband is the jealous type.\tMon mari est du genre jaloux.\nMy internet connection is slow.\tMa connexion internet est lente.\nMy mother can't ride a bicycle.\tMa mère ne sait pas faire de vélo.\nMy mother has good handwriting.\tMa mère a une belle écriture.\nMy mother is cooking breakfast.\tMa mère est en train de préparer le petit déjeuner.\nMy mother passed away recently.\tMa mère est décédée récemment.\nMy mother plays the piano well.\tMa mère joue bien du piano.\nMy parents don't understand me.\tMes parents ne me comprennent pas.\nMy parents live in the country.\tMes parents vivent à la campagne.\nMy passport is no longer valid.\tMon passeport n'est plus valide.\nMy plan was eventually adopted.\tEn fin de compte, mon plan a été retenu.\nMy plane leaves at six o'clock.\tMon avion part à six heures.\nMy poor English cost me my job.\tMon anglais médiocre m'a coûté ce travail.\nMy son grew 5 inches last year.\tMon fils a grandi de cinq pouces l'année dernière.\nMy son likes to play with cars.\tMon fils aime jouer aux petites voitures.\nMy son likes to play with cars.\tMon fils aime jouer aux petites autos.\nMy throat hurts when I swallow.\tMa gorge me fait mal quand j'avale.\nMy uncle collects Chinese fans.\tMon oncle collectionne les évantails chinois.\nMy uncle lives in an apartment.\tMon oncle vit dans un appartement.\nMy uncle lives near the school.\tMon oncle vit près de l'école.\nNever have I seen such a thing.\tJe n'avais jamais vu une chose pareille.\nNewly printed books smell good.\tLes livres récemment imprimés ont une odeur agréable.\nNo criminal charges were filed.\tAucune accusation criminelle n'a été enregistrée.\nNo merchandise can be returned.\tAucune marchandise ne peut être retournée.\nNo one I know buys CDs anymore.\tPersonne que je connaisse n'achète plus de CDs.\nNo one can foretell the future.\tPersonne ne peut prédire l'avenir.\nNo one could've predicted this.\tPersonne n'aurait pu prévoir ça.\nNo one knew who owned the land.\tPersonne ne savait qui possédait la terre.\nNo one said anything like that.\tPersonne ne dit quoi que ce soit de tel.\nNo one said anything like that.\tPersonne n'a dit quoi que ce soit de tel.\nNo one spoke up in his defense.\tPersonne ne parla en sa faveur.\nNo one thinks that way anymore.\tPersonne ne pense plus de cette manière.\nNo one wanted to talk about it.\tPersonne n'avait envie d'en parler.\nNo one's going to save you now.\tPersonne ne va désormais te sauver.\nNo one's going to save you now.\tPersonne ne va désormais vous sauver.\nNo, thank you. I've had enough.\tNon, merci. Je suis rassasié.\nNobody has made a decision yet.\tPersonne n'a encore pris de décision.\nNobody invited me to the party.\tPersonne ne m'invita à la fête.\nNobody tells the truth anymore.\tPlus personne ne dit la vérité.\nNobody will believe that rumor.\tPersonne ne croira à cette rumeur.\nNone of those books are useful.\tAucun de ces livres n'est utile.\nNot everybody can be an artist.\tTout le monde ne peut pas être artiste.\nNot everybody succeeds in life.\tTout le monde ne réussit pas dans la vie.\nNothing can be worse than that.\tRien ne peut être pire que ça.\nNow he has nothing to live for.\tIl n'a maintenant plus de moyens de subsistance.\nObesity is a national epidemic.\tL'obésité est une épidémie nationale.\nOh my God! What are you doing!?\tOh mon Dieu ! Qu'est-ce que tu fais ?!\nOh my God! What are you doing!?\tOh mon Dieu ! Qu'est-ce que vous faites ?!\nOlder people often fear change.\tLes personnes âgées ont souvent peur du changement.\nOnce she arrives, we can start.\tUne fois qu'elle est arrivée, nous pouvons commencer.\nOne day you'll be able to walk.\tUn jour, tu seras capable de marcher.\nOne of my suitcases is missing.\tUne de mes valises a disparu.\nOne roll of color film, please.\tUne pellicule de film couleur, s'il vous plait.\nOnly love can break your heart.\tIl n'y a que l'amour pour briser le cœur.\nOranges grow in warm countries.\tLes oranges poussent dans les pays chauds.\nOur concert has been postponed.\tNotre concert a été reporté.\nOur concert has been postponed.\tNotre concert a été remis.\nOur country has a rich history.\tNotre pays a une riche histoire.\nOur headquarters are in Boston.\tNotre quartier général est à Boston.\nOur plans are not yet concrete.\tNos projets ne sont pas encore concrets.\nOur school is across the river.\tNotre école se situe au-delà du fleuve.\nOur school is near the station.\tNotre école est près de la gare.\nOur school was founded in 1990.\tNotre école a été fondée en 1990.\nOur yacht club has ten members.\tNotre club nautique compte dix membres.\nOur yacht club has ten members.\tNotre cercle nautique compte dix membres.\nParents need a lot of patience.\tIl faut beaucoup de patience aux parents.\nParis is the capital of France.\tParis est la capitale de la France.\nPay attention to what Tom says.\tSois attentive à ce que dit Tom.\nPay attention to what Tom says.\tPrêtez attention à ce que dit Tom.\nPeople believed her to be dead.\tLes gens la croyaient morte.\nPeople like you are never busy.\tLes gens comme toi ne sont jamais occupés.\nPeople should love one another.\tLes gens devraient s'aimer les uns les autres.\nPeople shouldn't abuse animals.\tLes gens ne devraient pas maltraiter les animaux.\nPerhaps she will come tomorrow.\tElle viendra peut-être demain.\nPerhaps she will come tomorrow.\tPeut-être qu'elle viendra demain.\nPhysics is my favorite subject.\tLa physique est ma matière favorite.\nPlants don't grow in this soil.\tLes plantes ne poussent pas dans ce sol.\nPlease accept this little gift.\tVeuillez accepter ce petit cadeau.\nPlease accept this little gift.\tJe te prie d'accepter ce petit cadeau.\nPlease add my name to the list.\tS'il te plaît ajoute mon nom à la liste.\nPlease call me back in an hour.\tRappelez-moi dans une heure s'il vous plait.\nPlease call me before you come.\tJe te prie de m'appeler avant de venir.\nPlease call me before you come.\tJe vous prie de m'appeler avant de venir.\nPlease check the attached file.\tVeuillez vérifier le fichier ci-joint.\nPlease circle the right answer.\tEntourez la bonne réponse, s'il vous plaît.\nPlease do not try this at home.\tVeuillez ne pas tenter cela chez vous.\nPlease do not try this at home.\tMerci de ne pas tenter cela chez nous.\nPlease do not try this at home.\tMerci de ne pas tenter cela chez moi.\nPlease do not try this at home.\tJe te prie de ne pas tenter cela chez toi.\nPlease don't take this lightly.\tNe prenez pas ceci à la légère, s'il vous plaît.\nPlease don't take this lightly.\tNe prends pas ceci à la légère, s'il te plaît.\nPlease don't write to me again.\tJe te prie de ne plus m'écrire.\nPlease don't write to me again.\tJe vous prie de ne plus m'écrire.\nPlease follow the school rules.\tJe te prie de te conformer aux règles de l'école.\nPlease follow the school rules.\tVeuillez vous conformer aux règles de l'école.\nPlease give me a cup of coffee.\tVeuillez me donner une tasse de café, je vous prie.\nPlease give me a cup of coffee.\tDonne-moi une tasse de café, je te prie.\nPlease have someone else do it.\tVeuillez le faire faire par quelqu'un d'autre.\nPlease hold this ladder steady.\tS'il te plaît, tiens cette échelle fermement.\nPlease let me introduce myself.\tLaissez-moi me présenter, s'il vous plaît.\nPlease let me know if it hurts.\tDis-moi si ça fait mal, je te prie.\nPlease let me know if it hurts.\tVeuillez me dire si ça fait mal.\nPlease let me know if it hurts.\tFais-moi savoir si ça fait mal, s'il te plaît.\nPlease loan me your dictionary.\tPrête-moi, s'il te plaît, ton dictionnaire !\nPlease loan me your dictionary.\tPrêtez-moi, s'il vous plaît, votre dictionnaire !\nPlease show me what to do next.\tMontre-moi la prochaine chose à faire.\nPlease speak in a louder voice.\tParle un peu plus fort s'il te plait.\nPlease take me to this address.\tAmenez-moi à cette adresse.\nPlease take the pants in a bit.\tVeuillez reprendre un peu le pantalon.\nPlease tell everyone I'm sorry.\tS'il te plaît, dis à tout le monde que je suis désolé.\nPlease tell everyone I'm sorry.\tS'il vous plaît, dites à tout le monde que je suis désolé.\nPlease tell everyone I'm sorry.\tDis à tout le monde que je suis désolé, s'il te plaît.\nPlease tell everyone I'm sorry.\tDites à tout le monde que je suis désolé, s'il vous plaît.\nPlease think about the problem.\tVeuillez réfléchir à la question.\nPlease wait around for a while.\tAttendez ici un moment s'il vous plaît.\nPlease write down what he says.\tPrends note de ce qu'il dit, s'il te plait.\nPlease write down what he says.\tVeuillez prendre note de ce qu'il dit.\nPour a little wine in my glass.\tVerse un peu de vin dans mon verre.\nPour a little wine in my glass.\tVersez un peu de vin dans mon verre.\nProbably it will snow tomorrow.\tIl va probablement neiger demain.\nPull the plant up by the roots.\tArrache la plante par les racines.\nPut it back where you found it.\tRemets-le où tu l'as trouvé.\nPut the book back where it was.\tRemettez le livre où il était.\nPut the pliers in the tool box.\tMets la pince dans la boîte à outils.\nPut this sentence into English.\tTraduisez cette peine en anglais.\nPut your valuables in the safe.\tMets tes objets de valeur dans le coffre.\nPut your valuables in the safe.\tMettez vos objets de valeur dans le coffre.\nQuickly buy all required items.\tAchète rapidement tous les objets requis !\nRead as many books as possible.\tLis le plus de livres possible.\nRead as many books as possible.\tLisez le plus de livres possible.\nRead this book at your leisure.\tQuand vous serez libre, lisez ce livre.\nReading books is very relaxing.\tLire des livres est très reposant.\nRiding a horse is a lot of fun.\tMonter à cheval est très marrant.\nRight now they're all sleeping.\tEn ce moment, ils dorment tous.\nRight now they're all sleeping.\tEn ce moment, elles dorment toutes.\nRight now, I feel like talking.\tÀ l'instant, j'ai envie de parler.\nRing the bell when you want me.\tFais sonner la cloche dès que tu me veux.\nShe accidentally tore the page.\tElle a accidentellement déchiré la page.\nShe accused me of being a liar.\tElle m'a accusé d'être un menteur.\nShe accused me of being a liar.\tElle m'a accusée d'être une menteuse.\nShe accused me of being a liar.\tElle m'accusa d'être un menteur.\nShe accused me of being a liar.\tElle m'accusa d'être une menteuse.\nShe advised him not to do that.\tElle lui conseilla de ne pas faire cela.\nShe advised him on that matter.\tElle le conseilla dans cette affaire.\nShe advised him on that matter.\tElle l'a conseillé en cette affaire.\nShe advised him to be punctual.\tElle lui conseilla d'être ponctuel.\nShe advised him to be punctual.\tElle lui a conseillé d'être ponctuel.\nShe advised him to lose weight.\tElle lui conseilla de perdre du poids.\nShe advised him to lose weight.\tElle lui a conseillé de perdre du poids.\nShe advised him to take a rest.\tElle lui conseilla de prendre du repos.\nShe advised him to take a rest.\tElle lui a conseillé de prendre du repos.\nShe advised him to work harder.\tElle lui conseilla de travailler plus dur.\nShe advised him to work harder.\tElle lui a conseillé de travailler plus dur.\nShe almost always arrives late.\tElle arrive presque toujours en retard.\nShe also bought the dictionary.\tElle a aussi acheté le dictionnaire.\nShe always tries something new.\tElle essaye toujours quelque chose de nouveau.\nShe and her friends love music.\tElle et ses amis adorent la musique.\nShe asked how to cook the fish.\tElle demanda comment cuisiner le poisson.\nShe asked me where I was going.\tElle me demanda où j'allais.\nShe asked us several questions.\tElle nous a posé plusieurs questions.\nShe became drowsy after supper.\tElle s'est mise à somnoler après souper.\nShe belongs to the tennis club.\tElle appartient au club de tennis.\nShe borrowed the book from him.\tElle lui a emprunté le livre.\nShe borrowed the book from him.\tElle lui emprunta le livre.\nShe bought a toy for her child.\tElle a acheté un jouet pour son enfant.\nShe bought the dictionary, too.\tElle a aussi acheté le dictionnaire.\nShe brought a cup of tea to me.\tElle m'apporta une tasse de thé.\nShe brought a cup of tea to me.\tElle m'a apporté une tasse de thé.\nShe called him every other day.\tElle l'appela un jour sur deux.\nShe called him every other day.\tElle l'a appelé tous les deux jours.\nShe called me in the afternoon.\tElle m'a appelé dans l'après-midi.\nShe can say whatever she wants.\tElle peut dire ce qui lui chante.\nShe can't control her children.\tElle n'arrive pas à tenir ses enfants.\nShe caressed her baby lovingly.\tElle caressa son bébé tendrement.\nShe carried off all the prizes.\tElle a remporté tous les prix.\nShe climbed down from the roof.\tElle descendit du toit.\nShe cooked us a wonderful meal.\tElle nous a cuisiné un merveilleux repas.\nShe cut the apple with a knife.\tElle a coupé la pomme avec un couteau.\nShe detests speaking in public.\tElle a horreur de s'exprimer en public.\nShe did her best to rescue him.\tElle fit de son mieux pour le sauver.\nShe did her best to rescue him.\tElle a fait de son mieux pour le sauver.\nShe didn't telephone after all.\tElle n'a finalement pas appelé.\nShe didn't telephone after all.\tElle n'a pas appelé, après tout.\nShe doesn't eat meat, does she?\tElle ne mange pas de viande, n'est-ce pas ?\nShe doesn't yet know the truth.\tElle ignore encore la vérité.\nShe drew the chair towards her.\tElle tira la chaise vers elle.\nShe earns a living as a writer.\tElle gagne sa vie comme écrivain.\nShe earns more than she spends.\tElle gagne davantage qu'elle ne dépense.\nShe earns more than she spends.\tElle gagne plus qu'elle ne dépense.\nShe expected him to leave town.\tElle s'attendait à ce qu'il quitte la ville.\nShe explained the matter to me.\tElle m'expliqua l'affaire.\nShe explained the matter to me.\tElle m'a expliqué l'affaire.\nShe fainted when she saw blood.\tElle s'évanouit quand elle vit du sang.\nShe filled her bag with apples.\tElle a rempli son sac de pommes.\nShe filled the glass with wine.\tElle emplit le verre de vin.\nShe filled the vase with water.\tElle emplit le vase d'eau.\nShe finished the job with ease.\tElle a terminé le boulot avec facilité.\nShe gave him all of her silver.\tElle lui donna tout son argent.\nShe gets good marks in English.\tElle obtient de bonnes notes en anglais.\nShe goes running every morning.\tElle va courir tous les matins.\nShe got the ticket for nothing.\tElle a eu le billet pour rien.\nShe got up to answer the phone.\tElle se leva pour répondre au téléphone.\nShe had a happy time with them.\tElle a passé de bons moments avec eux.\nShe had achieved her objective.\tElle avait atteint son but.\nShe had an unfriendly attitude.\tElle avait une attitude hostile.\nShe has a cheerful personality.\tElle est d'un naturel joyeux.\nShe has a heated swimming pool.\tElle a une piscine chauffée.\nShe has a very beautiful laugh.\tElle a un très joli rire.\nShe has fallen in love with me.\tElle est tombée amoureuse de moi.\nShe has fallen in love with me.\tElle est tombée en amour avec moi.\nShe has put on weight recently.\tElle a pris du poids, ces derniers temps.\nShe has quite a lot of clothes.\tElle a beaucoup de vêtements.\nShe has very few close friends.\tElle a très peu d'amis proches.\nShe helped me pack my suitcase.\tElle m'a aidé à faire ma valise.\nShe hopes to become a designer.\tElle veut devenir designer.\nShe ignored him almost all day.\tElle l'ignora presque toute la journée.\nShe ignored him almost all day.\tElle l'a ignoré presque toute la journée.\nShe insisted on my going there.\tElle a insisté pour que je m'y rende.\nShe is a woman of great beauty.\tC'est une femme d'une grande beauté.\nShe is always dressed in black.\tElle est toujours habillée en noir.\nShe is always dressed in black.\tElle est toujours vêtue de noir.\nShe is always kind to everyone.\tElle est toujours gentille avec tout le monde.\nShe is always kind to everyone.\tElle est toujours gentille à l'égard de tout le monde.\nShe is anxious to visit Europe.\tElle est désireuse de visiter l'Europe.\nShe is appearing on TV tonight.\tElle passe à la télé ce soir.\nShe is appreciated by everyone.\tElle est appréciée de tout le monde.\nShe is aware of my secret plan.\tElle est au courant de mon projet secret.\nShe is certain to be surprised.\tElle est assurée d'être surprise.\nShe is certain to come on time.\tElle est certaine de venir à temps.\nShe is devoted to her children.\tElle est dévouée à ses enfants.\nShe is lacking in common sense.\tElle manque de sens commun.\nShe is not home, but at school.\tElle n'est pas chez elle mais à l'école.\nShe is not home, but at school.\tElle n'est pas à la maison mais à l'école.\nShe is very afraid of the dark.\tElle a très peur du noir.\nShe is very cynical about life.\tElle a une conception cynique de la vie.\nShe is wearing a valuable ring.\tElle porte une bague de prix.\nShe is what we call a bookworm.\tElle est ce que nous appelons un rat de bibliothèque.\nShe isn't adequate to the task.\tElle ne convient pas à la tâche.\nShe kept crying all night long.\tElle a continué à pleurer toute la nuit.\nShe kept the secret to herself.\tElle a gardé le secret pour elle-même.\nShe kept various kinds of pets.\tElle garde des animaux de compagnie variés.\nShe laid the child down gently.\tElle coucha doucement l'enfant.\nShe left home after three days.\tElle est partie de chez elle au bout de trois jours.\nShe likes going to the library.\tElle aime se rendre à la bibliothèque.\nShe likes nothing but the best.\tElle n'aime que ce qu'il y a de mieux.\nShe likes oranges, doesn't she?\tElle aime les oranges, n'est-ce pas ?\nShe likes to go to the library.\tElle aime se rendre à la bibliothèque.\nShe listens to religious music.\tElle écoute de la musique sacrée.\nShe lives in this neighborhood.\tElle vit dans le quartier.\nShe lives in this neighborhood.\tElle vit dans ce quartier.\nShe lives just down the street.\tElle vit juste au bas de la rue.\nShe looks as if she were drunk.\tOn dirait qu'elle est saoule.\nShe looks odd in those clothes.\tElle a l'air bizarre avec ces habits.\nShe looks pretty in that dress.\tElle est jolie avec cette robe.\nShe majors in child psychology.\tElle est diplômée en psychologie infantile.\nShe may not come here tomorrow.\tElle ne viendra peut-être pas ici demain.\nShe mistook the sugar for salt.\tElle a confondu le sucre avec le sel.\nShe must have seen better days.\tElle aura sans doute vécu de meilleurs jours.\nShe must have worked very hard.\tElle a dû travailler beaucoup.\nShe often eats breakfast there.\tElle prend souvent son petit-déjeuner là.\nShe paid to attend the concert.\tElle a payé pour assister au concert.\nShe peeked through the curtain.\tElle jeta un coup d'œil à travers le rideau.\nShe persuaded him to marry her.\tElle le persuada de l'épouser.\nShe persuaded him to marry her.\tElle l'a persuadé de l'épouser.\nShe plays the violin very well.\tElle joue très bien du violon.\nShe practiced typing every day.\tElle pratiquait quotidiennement la dactylographie.\nShe prodded him to work harder.\tElle l'incita à travailler plus dur.\nShe prodded him to work harder.\tElle l'a incité à travailler plus dur.\nShe provided me with some food.\tElle m'a procuré de la nourriture.\nShe put on an air of innocence.\tElle adopta un air d'innocence.\nShe quickly went up the stairs.\tElle a monté les marches quatre à quatre.\nShe really likes writing poems.\tElle aime vraiment écrire des poèmes.\nShe recognized him immediately.\tElle le reconnut immédiatement.\nShe recognized him immediately.\tElle l'a immédiatement reconnu.\nShe refused to accept the post.\tElle a refusé le poste.\nShe revealed the secret to him.\tElle lui révéla le secret.\nShe revealed the secret to him.\tElle lui a révélé le secret.\nShe said she had a slight cold.\tElle a dit qu'elle avait un léger rhume.\nShe said that it might be true.\tElle dit que cela pouvait être vrai.\nShe said that it might be true.\tElle a dit que cela pouvait être vrai.\nShe sat next to him on the bus.\tElle s'assit près de lui dans le bus.\nShe sat next to him on the bus.\tElle s'est assise près de lui dans le bus.\nShe scolded him for being late.\tElle le sermonna pour son retard.\nShe scolded him for being late.\tElle le réprimanda pour son retard.\nShe scolded him for being late.\tElle l'a sermonné pour son retard.\nShe scolded him for being late.\tElle l'a réprimandé pour son retard.\nShe sent me an urgent telegram.\tElle m'a envoyé un télégramme urgent.\nShe speaks English really well.\tElle parle vraiment bien l'anglais.\nShe stood close to her husband.\tElle restait proche de son mari.\nShe thanked me for the present.\tElle m'a remercié pour le cadeau.\nShe thought of a good solution.\tElle pensa à une bonne solution.\nShe threw herself into my arms.\tElle s'est jetée dans mes bras.\nShe told him that he was right.\tElle lui dit qu'il avait raison.\nShe told him that he was right.\tElle lui a dit qu'il avait raison.\nShe took him for all his money.\tElle le prit malgré tout son argent.\nShe took him for all his money.\tElle l'a pris en dépit de tout son argent.\nShe took him for all his money.\tElle l'a dépouillé.\nShe took him for all his money.\tElle l'a nettoyé.\nShe tried to hide her feelings.\tElle tenta de cacher ses sentiments.\nShe turned down every proposal.\tElle a rejeté chaque proposition.\nShe turned down his invitation.\tElle déclina son invitation.\nShe turned the doorknob slowly.\tElle tourna lentement la poignée de porte.\nShe used to be a very shy girl.\tElle était une fille très timide.\nShe used to be a very shy girl.\tC'était une fille très timide.\nShe walked slowly away from me.\tElle s'est lentement éloignée de moi.\nShe walked slowly away from me.\tElle s'éloigna lentement de moi.\nShe wants him to be her friend.\tElle veut qu'il soit son ami.\nShe warmed herself by the fire.\tElle se réchauffait près du feu.\nShe warned him not to go alone.\tElle lui a conseillé de ne pas y aller seul.\nShe was afraid to catch a cold.\tElle craignait de prendre froid.\nShe was afraid to travel alone.\tElle avait peur de voyager seule.\nShe was almost late for school.\tElle était presque en retard à l'école.\nShe was bewitched by his smile.\tElle était envoûtée par son sourire.\nShe was buried in her hometown.\tOn l'a enterrée dans sa ville natale.\nShe was buried in her hometown.\tElle fut enterrée dans sa ville natale.\nShe was buried in her hometown.\tElle fut ensevelie dans sa ville natale.\nShe was busy with her knitting.\tElle était occupée à tricoter.\nShe was coming down the stairs.\tElle descendait les escaliers.\nShe was doing the washing then.\tElle était alors en train de faire la lessive.\nShe was in the mood for a walk.\tElle était d'humeur à faire une promenade.\nShe was kind enough to help me.\tElle a été assez gentille pour m'aider.\nShe was on the verge of crying.\tElle était sur le point de pleurer.\nShe was on the verge of crying.\tElle était au bord des larmes.\nShe was ready to face her fate.\tElle était prête à affronter son destin.\nShe was shaken by the accident.\tElle a été remuée par l'accident.\nShe wasn't able to talk to him.\tElle était incapable de lui parler.\nShe wasn't able to talk to him.\tElle fut incapable de lui parler.\nShe wasn't able to talk to him.\tElle a été incapable de lui parler.\nShe watched him draw a picture.\tElle le regarda tracer un dessin.\nShe watched him draw a picture.\tElle l'a regardé tracer un dessin.\nShe went to the museum by taxi.\tElle se rendit au musée en taxi.\nShe went to the museum by taxi.\tElle s'est rendue au musée en taxi.\nShe whispered something to him.\tElle lui chuchota quelque chose.\nShe whispered something to him.\tElle lui a chuchoté quelque chose.\nShe will always be in my heart.\tElle sera toujours dans mon cœur.\nShe will be back within a week.\tElle sera de retour sous une semaine.\nShe will be back within a week.\tElle sera de retour d'ici une semaine.\nShe will not stick to her word.\tElle ne tiendra pas sa parole.\nShe will report directly to me.\tElle me sera directement rattachée.\nShe will return within an hour.\tElle reviendra dans l'heure.\nShe will return within an hour.\tElle reviendra sous une heure.\nShe witnessed him being killed.\tElle a été témoin de son assassinat.\nShe witnessed him being killed.\tElle fut témoin de sa mise à mort.\nShe wore heart-shaped earrings.\tElle portait des boucles d'oreilles en forme de cœur.\nShe would not follow my advice.\tElle a refusé de suivre mon conseil.\nShe wouldn't be happy with him.\tElle ne serait pas heureuse avec lui.\nShe wouldn't even speak to him.\tElle ne voudrait même pas lui parler.\nShe wrote a book about animals.\tElle a écrit un livre sur les animaux.\nShe'd never been so frightened.\tElle n'avait jamais été aussi effrayée.\nShe's about the same age as me.\tElle a à peu près le même âge que moi.\nShe's dependent on her husband.\tElle dépend de son mari.\nShe's dependent on her husband.\tElle dépend de son époux.\nShe's looking for a better job.\tElle cherche un meilleur emploi.\nShe's the most beautiful woman.\tC'est la plus belle femme.\nShe's two years older than him.\tElle a deux ans de plus que lui.\nShe's used to getting up early.\tElle est habituée à se lever tôt.\nShe's very interested in music.\tElle s'intéresse beaucoup à la musique.\nShe's worrying about her exams.\tElle s'inquiète pour ses examens.\nShould I fill in this form now?\tDois-je remplir ce formulaire maintenant ?\nShould I pick up my ticket now?\tDois-je prendre mon ticket maintenant ?\nShould we go by car or by taxi?\tDevrions-nous y aller en voiture ou en taxi ?\nShouldn't we give Tom a chance?\tNe devrions-nous pas donner une chance à Tom ?\nShut all the doors and windows.\tFermez toutes les portes et fenêtres.\nSmoking is bad for your health.\tFumer est mauvais pour ta santé.\nSmoking is bad for your health.\tFumer est nuisible à la santé.\nSmoking is strictly prohibited.\tIl est strictement interdit de fumer.\nSnow reminds me of my hometown.\tLa neige me rappelle la ville où je suis né.\nSnow reminds me of my hometown.\tLa neige me rappelle la ville où je suis née.\nSo far everything is all right.\tPour l'instant, tout va bien.\nSo far everything is all right.\tJusqu'à présent, tout va bien.\nSo what happened to you anyway?\tAlors que vous est-il arrivé, en définitive ?\nSo what happened to you anyway?\tAlors que t'est-il arrivé, en définitive ?\nSome apples rotted on the tree.\tQuelques pommes ont pourri sur l'arbre.\nSome of his officers protested.\tCertains de ses officiers ont protesté.\nSome stores discount the price.\tQuelques magasins baissent les prix.\nSome things can't be forgotten.\tCertaines choses ne peuvent être oubliées.\nSomebody's going to notice you.\tQuelqu'un va vous remarquer.\nSomebody's going to notice you.\tQuelqu'un va te remarquer.\nSomeday I'll run like the wind.\tUn jour je courrai comme le vent.\nSomeone grabbed me from behind.\tQuelqu'un m'a attrapé par derrière.\nSomeone has cut my kite string.\tQuelqu'un a coupé la corde de mon cerf-volant.\nSomeone is tapping at the door.\tOn frappe à la porte.\nSomeone left the water running.\tQuelqu'un a laissé l'eau couler.\nSomeone left the water running.\tQuelqu'un a laissé l'eau s'écouler.\nSomeone stole my tennis racket.\tQuelqu'un a dérobé ma raquette de tennis.\nSomeone's knocking on the door.\tQuelqu'un frappe à la porte.\nSomeone's ringing the doorbell.\tQuelqu'un sonne à la porte.\nSomething strange is happening.\tIl se passe un truc bizarre.\nSorry to have kept you waiting.\tDésolé de t'avoir fait attendre.\nSpanish is her native language.\tL'espagnol est sa langue maternelle.\nStop acting like such a weirdo.\tArrête de te comporter comme un taré !\nStop crying like a little girl.\tArrête de pleurer comme une fillette !\nStop crying like a little girl.\tArrêtez de pleurer comme une fillette !\nStop crying like a little girl.\tCesse de pleurer comme une fillette !\nStop crying like a little girl.\tCessez de pleurer comme une fillette !\nStop putting off finding a job.\tNe remets plus à plus tard ta recherche d'emploi.\nStop putting off finding a job.\tCesse de reporter ta recherche d'emploi.\nStop sucking up to the teacher.\tArrête de faire de la lèche au prof !\nStop sucking up to the teacher.\tArrêtez de faire de la lèche au prof !\nStop sucking up to the teacher.\tArrête de faire de la lèche à la prof !\nStop sucking up to the teacher.\tArrêtez de faire de la lèche à la prof !\nStrawberries are in season now.\tC'est la saison des fraises en ce moment.\nStrawberries are made into jam.\tOn fait de la confiture avec les fraises.\nStudy hard, and you'll succeed.\tÉtudiez dur, et vous réussirez.\nStupid question, stupid answer.\tQuestion bête, réponse bête.\nSulfur is used to make matches.\tLe soufre est utilisé pour confectionner des allumettes.\nSurprisingly, I agree with Tom.\tÉtonnamment, je suis d'accord avec Tom.\nSwimming at night is dangerous.\tIl est dangereux de nager de nuit.\nSwimming is a form of exercise.\tNager est une sorte d'exercice.\nSwimming is a form of exercise.\tC'est nager qui est une sorte d'exercice.\nTake a little nap on the couch.\tFais un roupillon sur le canapé !\nTake a little nap on the couch.\tFaites un roupillon sur le canapé !\nTake a picture with your phone.\tPrenez une photo à l'aide de votre téléphone !\nTake a picture with your phone.\tPrends une photo à l'aide de ton téléphone !\nTake the table outside, please.\tPorte la table à l'extérieur, s'il te plait.\nTake this medicine after meals.\tPrends ce remède après les repas.\nTake this medicine after meals.\tPrenez ce remède après les repas.\nTake your elbows off the table.\tRetire tes coudes de la table !\nTell Tom that everyone is here.\tDis à Tom que tout le monde est ici.\nTell Tom that everyone is here.\tDites à Tom que tout le monde est ici.\nTell Tom we're waiting for him.\tDis à Tom qu'on l'attend.\nTell Tom we're waiting for him.\tDis à Tom que nous l'attendons.\nTell me about it. I'm all ears.\tRacontez-moi cela, je suis toute ouïe.\nTell me exactly where he lives.\tDites-moi exactement où il habite.\nTell me exactly where he lives.\tDis-moi exactement où il habite.\nTell me what has become of him.\tDites-moi ce qu'il est devenu.\nTell me what you did in Hawaii.\tRaconte-moi ce que tu as fait à Hawaï.\nTell me what you want me to do.\tDis-moi ce que tu veux que je fasse.\nTell me what you're doing here.\tDis-moi ce que tu fais ici.\nTell the maid to make the beds.\tDis à la bonne de faire les lits.\nTell the maid to make the beds.\tDites à la bonne de faire les lits.\nTell the maid to make the beds.\tDis à la domestique de faire les lits.\nTell the maid to make the beds.\tDites à la domestique de faire les lits.\nTell them we need an ambulance.\tDites-leur que nous avons besoin d'une ambulance.\nTell them we need an ambulance.\tDis-leur qu'il nous faut une ambulance.\nThank you for closing the door.\tMerci d'avoir fermé la porte.\nThanks for coming all this way.\tMerci d'avoir fait tout ce chemin.\nThanks for coming over tonight.\tMerci d'être venu ce soir.\nThanks for the invitation, Tom.\tMerci pour l'invitation, Tom.\nThat amounts to the same thing.\tÇa revient au même.\nThat baby does nothing but cry.\tCe bébé ne fait rien d'autre que pleurer.\nThat can't be good for anybody.\tÇa ne peut pas convenir à tout le monde.\nThat child can count to twenty.\tCet enfant sait compter jusqu'à 20.\nThat child is full of mischief.\tCet enfant est plein de malice.\nThat doesn't change how I feel.\tÇa ne change pas ce que je ressens.\nThat flower has a strong smell.\tCette fleur exhale un parfum entêtant.\nThat girl loved climbing trees.\tCette fille adorait grimper aux arbres.\nThat has nothing to do with it.\tÇa n'a rien à voir avec ça.\nThat has nothing to do with it.\tÇa n'a rien à faire avec ça.\nThat is a very complex machine.\tC'est une machine très complexe.\nThat is actually what I wanted.\tJe voulais justement cela.\nThat is the duty of the police.\tC'est le devoir de la police.\nThat isn't exactly what I said.\tCe n'est pas exactement ce que j'ai dit.\nThat makes no sense whatsoever.\tCela n'a aucun sens.\nThat makes perfect sense to me.\tÇa me semble tout à fait sensé.\nThat makes perfect sense to me.\tÇa me semble tomber sous le sens.\nThat man has a very good build.\tL'homme est très bien bâti.\nThat mountain is in the clouds.\tCette montagne est dans les nuages.\nThat really isn't what I meant.\tCe n'est vraiment pas ce que je voulais dire.\nThat should be kept between us.\tQue cela reste entre nous!\nThat shouldn't be hard for you.\tÇa ne devrait pas être dur pour toi.\nThat shouldn't be hard for you.\tÇa ne devrait pas être dur pour vous.\nThat sounds a little dangerous.\tÇa a l'air un peu dangereux.\nThat sounds a little dangerous.\tOn dirait que c'est un peu dangereux.\nThat sounds really interesting.\tÇa a l'air vraiment intéressant.\nThat sounds really interesting.\tÇa a l'air intéressant.\nThat sounds really interesting.\tCela semble fort intéressant.\nThat sword is fit for a prince.\tCette épée convient à un Prince.\nThat was a sight for sore eyes.\tC'était un plaisir pour les yeux.\nThat was a total waste of time.\tC'était une totale perte de temps.\nThat was a valuable experience.\tCe fut une expérience précieuse.\nThat was easier than I thought.\tÇa a été plus facile que je ne pensais.\nThat was easier than I thought.\tCe fut plus facile que je ne pensais.\nThat won't make any difference.\tÇa ne fera aucune différence.\nThat would be quite acceptable.\tJe trouve cela tout à fait acceptable.\nThat'll take a couple of hours.\tÇa va prendre quelques heures.\nThat's a real load off my mind.\tC'est un vrai poids en moins sur mon esprit.\nThat's a really wonderful plan.\tC'est un plan vraiment merveilleux.\nThat's a risk you have to take.\tC'est un risque que vous devez prendre.\nThat's a risk you have to take.\tC'est un risque que tu dois prendre.\nThat's an excellent suggestion.\tC'est une excellente suggestion.\nThat's exactly what I expected.\tC'est exactement ce que j'escomptais.\nThat's exactly what I'm saying.\tC'est exactement ce que je suis en train de dire.\nThat's exactly what Tom thinks.\tC'est exactement ce que Tom pense.\nThat's hardly the point, is it?\tC'est hors sujet, non ?\nThat's not completely accurate.\tCe n'est pas tout à fait exact.\nThat's not even the worst part.\tCe n'est même pas la partie la pire.\nThat's not even the worst part.\tCe n'est même pas le pire rôle.\nThat's not exactly what I said.\tCe n'est pas exactement ce que j'ai dit.\nThat's not good enough for Tom.\tCe n'est pas assez bon pour Tom.\nThat's not good enough for Tom.\tCela n'est pas assez bien pour Tom.\nThat's not good enough for you.\tCe n'est pas assez bien pour toi.\nThat's not good enough for you.\tCe n'est pas assez bien pour vous.\nThat's not important right now.\tCe n'est pas important à l'heure qu'il est.\nThat's not important right now.\tCe n'est pas important à l'instant.\nThat's not quite what I wanted.\tCe n'est pas tout à fait ce que je voulais.\nThat's not what I meant either.\tCe n'est pas ce que je voulais dire non plus.\nThat's not what I was thinking.\tCe n'est pas ce que j'étais en train de penser.\nThat's not what you want to do.\tCe n'est pas ce que tu veux faire.\nThat's not what you want to do.\tCe n'est pas ce que vous voulez faire.\nThat's the last thing you want.\tC'est la dernière chose que vous voulez.\nThat's the last thing you want.\tC'est la dernière chose que tu veux.\nThat's very considerate of you.\tC'est très prévenant de votre part.\nThat's very considerate of you.\tC'est très prévenant de ta part.\nThat's very considerate of you.\tC'est fort prévenant de votre part.\nThat's very considerate of you.\tC'est fort prévenant de ta part.\nThat's very nice of you to say.\tC'est très aimable de ta part de le dire.\nThat's very nice of you to say.\tC'est très aimable de votre part de le dire.\nThat's what I thought at first.\tC'est ce que j'ai pensé tout d'abord.\nThat's what I thought you said.\tC'est ce que je pensais que vous aviez dit.\nThat's what I thought you said.\tC'est ce que je pensais que tu avais dit.\nThat's what I want most of all.\tC'est ce que je veux plus que tout.\nThat's what I was going to say.\tC'est ce que j'allais dire.\nThat's what I was trying to do.\tC'est ce que j'étais en train d'essayer de faire.\nThat's what's driving me crazy.\tC'est ce qui me rend fou.\nThat's what's driving me crazy.\tC'est ce qui me rend folle.\nThat's when I injured my ankle.\tC'est alors que je me suis blessé la cheville.\nThat's why I came back so soon.\tVoilà pourquoi je suis revenu si tôt.\nThe accounts have been audited.\tLes comptes ont été vérifiés.\nThe admiral is never satisfied.\tL'amiral n'est jamais satisfait.\nThe answers are both incorrect.\tLes réponses sont toutes deux incorrectes.\nThe army advanced on the enemy.\tL'armée avança vers l'ennemi.\nThe army had plenty of weapons.\tL'armée disposait de tas d'armes.\nThe arrow glanced off the tree.\tLa flèche a ricoché sur l'arbre.\nThe baby kept crying all night.\tLe bébé n'a pas arrêté de pleurer de la nuit.\nThe balloon is filled with air.\tLe ballon est rempli d'air.\nThe balloon is filled with air.\tLe ballon est plein d'air.\nThe boat sank during the storm.\tLe bateau a coulé durant la tempête.\nThe book costs fifteen dollars.\tLe livre coûte quinze dollars.\nThe book was published in 1689.\tLe livre fut publié en 1689.\nThe boss gave us all a day off.\tLe patron nous donna à tous un jour de congé.\nThe boy I love doesn't love me.\tLe garçon que j'aime ne m'aime pas.\nThe boy got lost in the forest.\tLe garçon se perdit dans la forêt.\nThe boy made his parents happy.\tLe garçon rendait ses parents heureux.\nThe boy takes after his father.\tLe garçon tient de son père.\nThe boy was afraid of the dark.\tLe garçon avait peur du noir.\nThe capital of Ukraine is Kiev.\tLa capitale de l'Ukraine est Kiev.\nThe capital of Ukraine is Kyiv.\tLa capitale de l'Ukraine est Kiev.\nThe car crashed into the truck.\tLa voiture a heurté le camion.\nThe car raised a cloud of dust.\tLa voiture souleva un nuage de poussière.\nThe carrots cost three dollars.\tLes carottes coûtent trois dollars.\nThe castle is across the river.\tLe château se trouve de l'autre coté de la rivière.\nThe cat was basking in the sun.\tLe chat se dorait au soleil.\nThe cat was basking in the sun.\tLe chat se prélassait au soleil.\nThe chair is close to the door.\tLa chaise est près de la porte.\nThe chair is far from the door.\tLa chaise est loin de la porte.\nThe chest contained gold coins.\tLe coffre contenait des pièces d'or.\nThe children are growing tired.\tLes enfants commencent à être fatigués.\nThe children washed their feet.\tLes enfants se lavaient les jambes.\nThe city was destroyed by fire.\tLa ville fut détruite par le feu.\nThe clown fell down on purpose.\tLe clown a fait exprès de tomber.\nThe cola made my tongue tingle.\tLe coca cola me picota la langue.\nThe computer is in the library.\tL'ordinateur est à la bibliothèque.\nThe concert hasn't started yet.\tLe concert n'a pas encore commencé.\nThe cost of living has gone up.\tLe coût de la vie a augmenté.\nThe cottage was clean and tidy.\tLe cottage était propre et net.\nThe cottage was clean and tidy.\tLe cottage était propre et bien rangé.\nThe cottage was clean and tidy.\tLa maisonnette était propre et bien rangée.\nThe countryside is magnificent.\tLe paysage est magnifique.\nThe custom originated in China.\tCette tradition est née en Chine.\nThe director is away on a trip.\tMonsieur le directeur est en déplacement.\nThe doctor pronounced him dead.\tLe médecin a prononcé son décès.\nThe doctor pronounced him dead.\tLe médecin prononça son décès.\nThe dog barked at the stranger.\tLe chien aboya envers l'inconnu.\nThe dog barks at all strangers.\tCe chien aboie envers tous les inconnus.\nThe dog barks at all strangers.\tLe chien aboie après tous les étrangers.\nThe dog barks at all strangers.\tLe chien aboie contre toutes les personnes étrangères.\nThe dog can bring back a stick.\tLe chien peut ramener un bâtonnet.\nThe dog followed me to my home.\tLe chien m'a suivi jusqu'à chez moi.\nThe dog followed me to my home.\tLe chien m'a suivi jusqu'à la maison.\nThe door must not be left open.\tIl ne faut pas laisser la porte ouverte.\nThe door was difficult to open.\tLa porte était difficile à ouvrir.\nThe earth is where we all live.\tLa Terre est l'endroit où nous vivons tous.\nThe earth moves around the sun.\tLa Terre tourne autour du Soleil.\nThe effects are not reversible.\tLes effets sont irréversibles.\nThe end of the world is coming.\tLa fin du monde approche.\nThe enemy attack ended at dawn.\tL'attaque de l'ennemi prit fin à l'aube.\nThe enemy attacked us at night.\tL'ennemi nous a attaqués dans la nuit.\nThe escalator suddenly stopped.\tL'escalier mécanique s'arrêta brusquement.\nThe exhibition is already open.\tL'exposition est déjà ouverte.\nThe fire burnt ten houses down.\tLe feu a réduit en cendres dix maisons.\nThe fire started in Tom's room.\tLe feu s'est déclenché dans la chambre de Tom.\nThe fire started in Tom's room.\tL'incendie a éclos dans la chambre de Tom.\nThe fire was soon extinguished.\tL'incendie a été rapidement maîtrisé.\nThe front door remained locked.\tLa porte de devant resta verrouillée.\nThe fugitive crossed the river.\tLe fugitif a traversé la rivière.\nThe fugitive crossed the river.\tLe fugitif traversa la rivière.\nThe hedgehog is a small animal.\tLe hérisson est un petit animal.\nThe house is in need of repair.\tLa maison a besoin d'être réparée.\nThe ice watered down the juice.\tLa glace a dilué le jus.\nThe injured man cried for help.\tL'homme blessé cria à l'aide.\nThe insulin was making her fat.\tL'insuline la faisait grossir.\nThe investigation is under way.\tL'enquête est en cours.\nThe kitchen lacks a dishwasher.\tIl manque un lave-vaisselle dans la cuisine.\nThe landlord changed the locks.\tLe propriétaire a changé les serrures.\nThe landlord changed the locks.\tLa propriétaire a changé les serrures.\nThe law is full of ambiguities.\tLa loi est pleine d'ambiguïtés.\nThe leaves fell from the trees.\tLes feuilles tombèrent des arbres.\nThe letter was addressed to me.\tLa lettre m'était adressée.\nThe letter was addressed to me.\tLa lettre m'était destinée.\nThe letter was written by hand.\tLa lettre était manuscrite.\nThe letter was written by hand.\tLa lettre était écrite à la main.\nThe lion is the king of beasts.\tLe lion est le roi des animaux.\nThe locals are very hospitable.\tLes gens du pays sont très accueillants.\nThe locals are very hospitable.\tLes autochtones sont très hospitaliers.\nThe loss adds up to $1,000,000.\tLa perte se monte à un million de dollars.\nThe matter is of no importance.\tL'affaire est sans importance.\nThe mayor is not available now.\tLe maire n'est pas disponible pour l'instant.\nThe meeting hasn't started yet.\tLa réunion n'a pas encore débuté.\nThe meeting went on until noon.\tLa réunion se poursuivit jusqu'à midi.\nThe men went hunting for lions.\tLes hommes sont allés à la chasse aux lions.\nThe month is drawing to an end.\tLe mois approche de son terme.\nThe moon was bright last night.\tLa lune était claire la nuit dernière.\nThe murderer is still at large.\tLe meurtrier est toujours en liberté.\nThe murderer is still at large.\tLe meurtrier court toujours.\nThe news spread all over Japan.\tLes nouvelles se répandirent à travers tout le Japon.\nThe next day was Christmas Day.\tLe jour suivant c'était Noël.\nThe nurse attended the patient.\tL'infirmière prenait soin du patient.\nThe old couple had no children.\tLe vieux couple n'avait point d'enfants.\nThe old couple had no children.\tLe vieux couple n'eut point d'enfants.\nThe pain has lessened a little.\tLa douleur a un peu diminué.\nThe pain was almost unbearable.\tLa douleur était quasiment insupportable.\nThe palace was heavily guarded.\tLe palais était fortement gardé.\nThe pamphlet is free of charge.\tLe dépliant est gratuit.\nThe phone rang for a long time.\tLe téléphone a sonné longtemps.\nThe phone rang for a long time.\tLe téléphone sonna longtemps.\nThe place was totally deserted.\tL'endroit était complètement déserté.\nThe point is they're too young.\tLe fait est qu'ils sont trop jeunes.\nThe police are looking into it.\tLa police enquête.\nThe police are looking into it.\tLa police y regarde.\nThe police are looking into it.\tLa police mène son enquête.\nThe police still have no leads.\tLa police n'a pas encore de piste.\nThe possibilities are infinite.\tLes possibilités sont infinies.\nThe press confirmed the rumors.\tLa presse a confirmé les rumeurs.\nThe pressure is getting to him.\tLa pression se fait sentir sur lui.\nThe prices remain as they were.\tLes prix restent comme ils sont.\nThe problem is not settled yet.\tLe problème n'est pas encore résolu.\nThe question is who will do it.\tLa question est : qui le fera ?\nThe rabbit hid behind the tree.\tLe lapin se cacha derrière l'arbre.\nThe rabbit hid behind the tree.\tLe lapin s'est caché derrière l'arbre.\nThe rabbit hid behind the tree.\tLe lapin se dissimula derrière l'arbre.\nThe rabbit hid behind the tree.\tLe lapin s'est dissimulé derrière l'arbre.\nThe rain came down in torrents.\tDes torrents de pluie se sont abattus.\nThe rain lasted for three days.\tLa pluie a duré trois jours.\nThe reason for this is obvious.\tLa raison en est évidente.\nThe refrigerator door was open.\tLa porte du réfrigérateur était ouverte.\nThe room is spacious and light.\tLa chambre est vaste et claire.\nThe school looks like a prison.\tL'école ressemble à une prison.\nThe school year is almost over.\tL'année scolaire est presque terminée.\nThe sea was as smooth as glass.\tLa mer était aussi lisse que le verre.\nThe show starts in ten minutes.\tLe spectacle commence dans dix minutes.\nThe show starts in ten minutes.\tLe spectacle commence dans 10 minutes.\nThe situation has deteriorated.\tLa situation s'est détériorée.\nThe situation is deteriorating.\tLa situation se détériore.\nThe situation is under control.\tLa situation est sous contrôle.\nThe sky grew darker and darker.\tLe ciel devenait de plus en plus sombre.\nThe sky grew darker and darker.\tLe ciel s'assombrit de plus en plus.\nThe sky grew darker and darker.\tLe ciel s'est assombri de plus en plus.\nThe sky is covered with clouds.\tLe ciel est couvert de nuages.\nThe sky is full of dark clouds.\tLe ciel est empli de nuages noirs.\nThe soldiers could see him now.\tLes soldats pouvaient maintenant le voir.\nThe statue is missing its head.\tLa tête manque à la statue.\nThe store closed down for good.\tLe magasin a définitivement fermé.\nThe store is close to my house.\tLe magasin est proche de ma maison.\nThe store was relatively empty.\tLe magasin était relativement vide.\nThe storm has gradually abated.\tLa tempête s'est peu à peu calmée.\nThe storm raged for a few days.\tLa tempête fit rage durant quelques jours.\nThe story was very interesting.\tL'histoire était très intéressante.\nThe stream flows into the pond.\tLe ruisseau coule dans l'étang.\nThe sun doesn't shine at night.\tLe soleil ne brille pas la nuit.\nThe talks will last three days.\tLes pourparlers dureront trois jours.\nThe team approved his proposal.\tL'équipe approuva sa proposition.\nThe theory is not accepted yet.\tLa théorie n'est pas encore admise.\nThe tines of the fork are bent.\tLes dents de la fourchette sont recourbées.\nThe tines of the fork are bent.\tLes dents de la fourchette ont été tordues.\nThe tire on my bicycle is flat.\tLe pneu de mon vélo est à plat.\nThe towel wasn't at all useful.\tLa serviette ne fut pas du tout utile.\nThe towel wasn't useful at all.\tLa serviette n'était pas utile du tout.\nThe tower is going to collapse.\tLa tour va s'effondrer.\nThe traffic light turned green.\tLe feu passa au vert.\nThe train is bound for Niigata.\tLe train se dirige vers Niigata.\nThe trees are beginning to bud.\tLes arbres commencent à bourgeonner.\nThe two men accused each other.\tLes deux hommes s'accusèrent l'un l'autre.\nThe two teams fought very hard.\tLes deux équipes se battirent âprement.\nThe two teams fought very hard.\tLes deux équipes s'affrontèrent âprement.\nThe village has no electricity.\tLe village est dépourvu d'électricité.\nThe visitor sat across from me.\tLe visiteur s'assit en face de moi.\nThe wall was coated with paint.\tLe mur était couvert de peinture.\nThe water here is very shallow.\tL'eau est ici très peu profonde.\nThe weather forecast was right.\tLa prévision météo était juste.\nThe weather is beautiful today.\tIl fait beau aujourd'hui.\nThe widow was dressed in black.\tLa veuve était vêtue de noir.\nThe winters were bitterly cold.\tLes hivers étaient très rudes.\nThe writer is well known to us.\tL'écrivain nous est connu.\nThere are a lot of people here.\tIl y a beaucoup de gens ici.\nThere are many kinds of coffee.\tIl y a de nombreuses sortes de café.\nThere are many parks in Boston.\tIl y a beaucoup de parcs dans Boston.\nThere are many parks in Boston.\tIl y a beaucoup de parcs à Boston.\nThere are seven days in a week.\tUne semaine est composée de sept jours.\nThere are some eggs in the box.\tIl y a des œufs dans la boîte.\nThere is a limit to everything.\tIl y a une limite à toutes choses.\nThere is a time for everything.\tIl y a un temps pour tout.\nThere is an album on the shelf.\tIl y a un album sur l'étagère.\nThere is an apple on the table.\tIl y a une pomme sur la table.\nThere is no chair in this room.\tIl n'y a pas de chaise dans cette pièce.\nThere is no future in this job.\tIl n'y a pas de futur dans ce boulot.\nThere is no life without water.\tIl n'y a pas de vie sans eau.\nThere is no smoke without fire.\tIl n’y a pas de fumée sans feu.\nThere is nothing God cannot do.\tÀ Dieu, rien d'impossible.\nThere is one apple on the desk.\tIl y a une pomme sur le bureau.\nThere is something I must know.\tIl y a quelque chose que je dois savoir.\nThere isn't a cloud in the sky.\tIl n'y a pas un nuage dans le ciel.\nThere isn't any problem at all.\tIl n'y a absolument aucun problème.\nThere isn't anyone in the room.\tIl n'y a personne dans la pièce.\nThere used to be a bridge here.\tIl y avait un pont, ici, auparavant.\nThere used to be a church here.\tAvant, il y avait une église ici.\nThere used to be a prison here.\tAutrefois il y avait ici une prison.\nThere was blood on Tom's shirt.\tIl y avait du sang sur la chemise de Tom.\nThere was no place to buy food.\tIl n'y avait nulle part où acheter de la nourriture.\nThere wasn't any special hurry.\tIl n'y avait pas le feu au lac.\nThere wasn't any special hurry.\tIl n'y avait pas d'urgence particulière.\nThere's a safe in Tom's office.\tIl y a un coffre-fort dans le bureau de Tom.\nThere's a spider in the shower.\tIl y a une araignée dans la douche.\nThere's a stowaway on the ship.\tIl y a un passager clandestin à bord.\nThere's an emergency situation.\tIl y a une situation d'urgence.\nThere's been a change of plans.\tIl y a eu un changement de plan.\nThere's going to be a downpour.\tIl va dracher.\nThere's no film in this camera.\tIl n'y a pas de pellicule dans cet appareil photo.\nThere's no need for an apology.\tIl n'y a pas besoin d'excuse.\nThere's no need to rush things.\tIl n'est point besoin de précipiter les choses.\nThere's not a cloud in the sky.\tIl n'y a pas un nuage dans le ciel.\nThere's nothing fun about that.\tIl n'y a là rien d'amusant.\nThere's nothing wrong with him.\tIl n'y a rien qui cloche avec lui.\nThere's nothing wrong with him.\tIl n'y a rien qui n'aille pas, le concernant.\nThere's something I have to do.\tJ'ai une chose à faire.\nThere's still a bit of it left.\tIl y en reste encore un peu.\nThere's still a lot to be done.\tIl y a encore beaucoup à faire.\nThere's very little paper left.\tIl y a très peu de papier de reste.\nThere's very little paper left.\tIl reste très peu de papier.\nThese are gifts for my friends.\tCe sont des cadeaux pour mes amis.\nThese are serious difficulties.\tCe sont de graves problèmes.\nThese plants are all poisonous.\tCes plantes sont toutes toxiques.\nThese shoes are a little loose.\tCes chaussures sont un peu grandes.\nThese shoes are too big for me.\tCes chaussures sont trop grandes pour moi.\nThey all thought Tom was crazy.\tIls pensaient tous que Tom était fou.\nThey all thought Tom was crazy.\tElles pensaient toutes que Tom était fou.\nThey all thought Tom was crazy.\tTout le monde pensait que Tom était fou.\nThey are a peace-loving people.\tCe sont des personnes pacifiques.\nThey are all innocent children.\tCe sont tous des enfants innocents.\nThey are always short of money.\tIls sont toujours à court d'argent.\nThey are boiling water for tea.\tIls sont en train de faire bouillir l'eau pour le thé.\nThey are happy with the result.\tIls sont contents du résultat.\nThey are in the teachers' room.\tIls sont en salle des professeurs.\nThey are in the teachers' room.\tIls sont en salle des profs.\nThey are loyal to their master.\tIls sont loyaux envers leur maître.\nThey are not at all interested.\tIls ne sont pas du tout intéressés.\nThey are not at all interested.\tElles ne sont pas du tout intéressées.\nThey are probably all dead now.\tIls sont probablement tous morts, à l'heure qu'il est.\nThey are probably all dead now.\tElles sont probablement toutes mortes, à l'heure qu'il est.\nThey arrived there before dawn.\tElles y arrivèrent avant l'aube.\nThey asserted that it was true.\tIls affirmèrent que c'était vrai.\nThey asserted that it was true.\tElles affirmèrent que c'était vrai.\nThey asserted that it was true.\tIls ont affirmé que c'était vrai.\nThey asserted that it was true.\tElles ont affirmé que c'était vrai.\nThey bought a home with a pool.\tElles ont acheté une maison avec piscine.\nThey bought a home with a pool.\tIls ont acheté une maison avec piscine.\nThey chatted about the weather.\tIls discutèrent du temps.\nThey chatted about the weather.\tElles ont discuté du temps.\nThey clung together for warmth.\tIls se cramponnèrent l'un à l'autre pour garder leur chaleur.\nThey clung together for warmth.\tIls se cramponnèrent les uns les autres pour garder leur chaleur.\nThey clung together for warmth.\tElles se cramponnèrent l'une à l'autre pour garder leur chaleur.\nThey clung together for warmth.\tElles se cramponnèrent les unes les autres pour garder leur chaleur.\nThey clung together for warmth.\tIls se cramponnèrent l'un à l'autre pour conserver leur chaleur.\nThey clung together for warmth.\tIls se cramponnèrent les uns les autres pour conserver leur chaleur.\nThey clung together for warmth.\tElles se cramponnèrent l'une à l'autre pour conserver leur chaleur.\nThey clung together for warmth.\tElles se cramponnèrent les unes les autres pour conserver leur chaleur.\nThey clung together for warmth.\tElles se cramponnèrent l'une l'autre pour conserver leur chaleur.\nThey clung together for warmth.\tIls se cramponnèrent l'un l'autre pour garder leur chaleur.\nThey clung together for warmth.\tIls se cramponnèrent l'un l'autre pour conserver leur chaleur.\nThey clung together for warmth.\tElles se cramponnèrent l'une l'autre pour garder leur chaleur.\nThey clung together for warmth.\tElles se cramponnèrent les unes aux autres pour conserver leur chaleur.\nThey clung together for warmth.\tIls se cramponnèrent les uns aux autres pour garder leur chaleur.\nThey couldn't find the problem.\tIls ne purent trouver le problème.\nThey couldn't find the problem.\tElles ne purent trouver le problème.\nThey couldn't find the problem.\tIls n'ont pu trouver le problème.\nThey couldn't find the problem.\tElles n'ont pu trouver le problème.\nThey danced awkwardly together.\tIls dansèrent maladroitement ensemble.\nThey deal in software products.\tIls vendent du logiciel.\nThey didn't keep their promise.\tIls n'ont pas tenu leur promesse.\nThey didn't keep their promise.\tElles n'ont pas tenu leur promesse.\nThey didn't obey their parents.\tIls n'ont pas obéi à leurs parents.\nThey drank two bottles of wine.\tIls burent deux bouteilles de vin.\nThey entered into a discussion.\tIls entamèrent une discussion.\nThey go to church every Sunday.\tIls vont à l'église tous les dimanches.\nThey greeted each other warmly.\tIls se souhaitèrent chaleureusement la bienvenue.\nThey greeted each other warmly.\tElles se souhaitèrent chaleureusement la bienvenue.\nThey greeted each other warmly.\tIls se sont chaleureusement souhaité la bienvenue.\nThey greeted each other warmly.\tElles se sont chaleureusement souhaité la bienvenue.\nThey had to start from scratch.\tIls ont dû commencer à partir de rien.\nThey have everything they need.\tIls ont tout ce dont ils ont besoin.\nThey have everything they need.\tElles ont tout ce dont elles ont besoin.\nThey have no natural predators.\tIls n'ont pas de prédateurs naturels.\nThey have no natural predators.\tElles n'ont pas de prédateurs naturels.\nThey have no natural predators.\tIls n'ont aucun prédateur naturel.\nThey have no natural predators.\tElles n'ont aucun prédateur naturel.\nThey kept talking all the time.\tIls continuaient tout le temps de parler.\nThey kept talking all the time.\tElles continuaient tout le temps de parler.\nThey kept talking all the time.\tIls ont constamment continué à parler.\nThey kept talking all the time.\tElles ont constamment continué à parler.\nThey kicked Tom out of the bar.\tElles ont expulsé Tom du bar.\nThey kicked Tom out of the bar.\tIls ont flanqué Tom hors du bar.\nThey left the problem unsolved.\tIls ont laissé le problème irrésolu.\nThey live on the floor beneath.\tIls vivent à l'étage en-dessous.\nThey live on the floor beneath.\tElles vivent à l'étage en-dessous.\nThey live on the floor beneath.\tIls vivent à l'étage du dessous.\nThey live on the floor beneath.\tElles vivent à l'étage du dessous.\nThey look similar in some ways.\tIls ont l'air semblables par certains aspects.\nThey look similar in some ways.\tElles ont l'air semblables par certains aspects.\nThey made up an unlikely story.\tIls ont inventé une histoire invraisemblable.\nThey make toys at this factory.\tIls fabriquent des jouets dans cette usine.\nThey must have had an accident.\tIls ont dû avoir un accident.\nThey must have had an accident.\tElles ont dû avoir un accident.\nThey never found out the truth.\tIls n'ont jamais découvert la vérité.\nThey never found out the truth.\tElles n'ont jamais découvert la vérité.\nThey never found out the truth.\tIls ne découvrirent jamais la vérité.\nThey never found out the truth.\tElles ne découvrirent jamais la vérité.\nThey read newspapers and books.\tIls lisent des journaux et des livres.\nThey read newspapers and books.\tIls lisent journaux et livres.\nThey really slept on the floor.\tIls ont vraiment dormi à même le sol.\nThey said they would not fight.\tIls dirent qu'ils ne se battraient pas.\nThey said they would not fight.\tIls ont dit qu'ils ne se battraient pas.\nThey say she's good at cooking.\tOn dit qu'elle est bonne cuisinière.\nThey say that I'm an old woman.\tIls disent que je suis une vieille femme.\nThey say that he's still alive.\tOn dit qu'il est encore en vie.\nThey started picking up stones.\tElles se sont mises à ramasser des cailloux.\nThey told me I had to help you.\tElles m'ont dit que je devais t'aider.\nThey told me I had to help you.\tIls m'ont dit que je devais t'aider.\nThey told me I had to help you.\tElles m'ont dit que je devais vous aider.\nThey told me I had to help you.\tIls m'ont dit que je devais vous aider.\nThey told me it was your fault.\tIls m'ont dit que c'était ta faute.\nThey told me it was your fault.\tElles m'ont dit que c'était ta faute.\nThey wear very little clothing.\tIls portent très peu de vêtements.\nThey wear very little clothing.\tElles portent très peu de vêtements.\nThey went on talking for hours.\tIls continuèrent à parler pendant des heures.\nThey went on vacation together.\tIls sont partis en vacances ensemble.\nThey went on vacation together.\tElles sont parties en vacances ensemble.\nThey were caught in a blizzard.\tIls furent pris dans le blizzard.\nThey were caught in a blizzard.\tElles furent prises dans le blizzard.\nThey were dancing to the music.\tIls dansaient sur ​​la musique.\nThey were motivated by revenge.\tElles étaient mues par la vengeance.\nThey were motivated by revenge.\tIls étaient mus par la vengeance.\nThey weren't at home yesterday.\tElles ne se trouvaient pas chez elles hier.\nThey weren't at home yesterday.\tIls ne se trouvaient pas chez eux hier.\nThey will help you to get warm.\tIls vous aideront à vous réchauffer.\nThey would prefer that we wait.\tIls préféreraient que nous attendions.\nThey're eating high on the hog.\tIls mènent grand train.\nThey're going to make mistakes.\tIls vont commettre des erreurs.\nThey're going to make mistakes.\tElles vont commettre des erreurs.\nThey're keeping it under wraps.\tIls le tiennent secret.\nThey're keeping it under wraps.\tIls le gardent secret.\nThey're suffering from malaria.\tIls souffrent du paludisme.\nThings are getting out of hand.\tLes choses sont en train de devenir incontrôlables.\nThings would never be the same.\tLes choses ne seraient plus jamais pareilles.\nThirteen Americans were killed.\tTreize américains ont été tués.\nThis bomb can kill many people.\tCette bombe peut tuer beaucoup de personnes.\nThis book is missing two pages.\tIl manque deux pages à ce livre.\nThis book is still copyrighted.\tLes droits de ce livre sont encore protégés.\nThis book was very interesting.\tCe livre était très intéressant.\nThis booklet is free of charge.\tCe livret est gratuit.\nThis box will serve as a table.\tCette boîte servira de table.\nThis came for you this morning.\tC'est arrivé ce matin pour vous.\nThis can't be the way to do it.\tÇa ne peut pas être la manière de le faire.\nThis car is as big as that car.\tCette voiture est aussi grande que cette voiture.\nThis chair is very comfortable.\tCette chaise est très confortable.\nThis coffee has a bitter taste.\tCe café a un goût amer.\nThis couch is very comfortable.\tCe canapé est très confortable.\nThis desk is too heavy to lift.\tCe bureau est trop lourd pour que l’on puisse le soulever.\nThis dictionary has 12 volumes.\tCe dictionnaire compte 12 volumes.\nThis dictionary has 12 volumes.\tCe dictionnaire comporte douze volumes.\nThis dictionary is my sister's.\tCe dictionnaire appartient à ma sœur.\nThis dictionary isn't any good.\tCe dictionnaire ne vaut rien.\nThis doesn't seem normal to me.\tÇa ne me semble pas normal.\nThis doesn't serve any purpose.\tÇa ne sert à rien.\nThis doesn't serve any purpose.\tÇa n'est en rien utile.\nThis fact proves her innocence.\tCe fait prouve son innocence.\nThis fact proves his innocence.\tCe fait prouve son innocence.\nThis flashlight is getting dim.\tCette lampe-torche faiblit.\nThis guy can do amazing things.\tCe type est capable de faire des trucs vraiment dingues.\nThis has never happened before.\tCe n'est jamais arrivé auparavant.\nThis intersection is dangerous.\tCette intersection est dangereuse.\nThis is a fundamental question.\tC'est une question fondamentale.\nThis is a pretty amazing place.\tC'est un endroit assez étonnant.\nThis is a surprising discovery.\tC'est une découverte surprenante.\nThis is a violation of the law.\tCeci constitue une violation de la loi.\nThis is all I'm taking with me.\tC'est tout ce que j'emporte avec moi.\nThis is all a misunderstanding.\tTout est un malentendu.\nThis is an unexpected surprise.\tQuelle agréable surprise.\nThis is by far the best method.\tC'est de loin la meilleure méthode.\nThis is extremely confidential.\tC'est extrêmement confidentiel.\nThis is hard for me to believe.\tÇa m'est difficile de le croire.\nThis is how it has always been.\tC'est ainsi que ça a toujours été.\nThis is my umbrella, not Tom's.\tC'est mon parapluie, pas celui de Tom.\nThis is one of the basic rules.\tC'est l'une des règles fondamentales.\nThis is pretty tense, isn't it?\tC'est assez tendu, n'est-ce pas ?\nThis is technically impossible.\tC'est techniquement impossible.\nThis is the book I want to buy.\tC'est le livre dont je veux faire l'acquisition.\nThis is the book I want to buy.\tC'est le livre que je veux acheter.\nThis is the cheaper of the two.\tC'est le moins cher des deux.\nThis is twice as large as that.\tC'est deux fois plus grand que ça.\nThis is what I do for a living.\tC'est ce que je fais pour gagner ma vie.\nThis is what I was looking for.\tC'est ce que je cherchais.\nThis is what I was waiting for.\tC'est ce que j'attendais.\nThis isn't fun. This is boring.\tCe n'est pas amusant, c'est ennuyeux.\nThis machine is familiar to me.\tCet appareil m'est familier.\nThis material stretches easily.\tCe matériau s'étire facilement.\nThis material stretches easily.\tCe tissu s'étire facilement.\nThis medicine will do you good.\tCe médicament te fera du bien.\nThis milk has a peculiar smell.\tCe lait a une odeur particulière.\nThis milk has a peculiar taste.\tCe lait a un goût bizarre.\nThis music is making me sleepy.\tCette musique m'endort.\nThis paper does not absorb ink.\tCe papier n'absorbe pas l'encre.\nThis place is really beautiful.\tCette place est vraiment magnifique.\nThis room has air conditioning.\tCette pièce a l'air conditionné.\nThis rule applies to all cases.\tCette règle est d'application dans tous les cas.\nThis seems too good to be true.\tÇa paraît trop beau pour être vrai.\nThis seems too good to be true.\tÇa semble trop beau pour être vrai.\nThis table is made out of wood.\tCette table est en bois.\nThis table's surface is smooth.\tLa surface de cette table est lisse.\nThis telephone is out of order.\tCe téléphone est hors service.\nThis time, you've gone too far.\tCette fois, vous êtes allés trop loin.\nThis time, you've gone too far.\tCette fois, vous êtes allé trop loin.\nThis time, you've gone too far.\tCette fois, vous êtes allée trop loin.\nThis time, you've gone too far.\tCette fois, vous êtes allées trop loin.\nThis time, you've gone too far.\tCette fois, tu es allé trop loin.\nThis time, you've gone too far.\tCette fois, tu es allée trop loin.\nThis train is bound for Boston.\tCe train est à destination de Boston.\nThis was Tom's idea, wasn't it?\tC'était l'idée de Tom, n'est-ce pas ?\nThis was his one and only hope.\tC'était son unique espoir.\nThis was his one and only hope.\tÇa a été son seul espoir.\nThis was supposed to be simple.\tC'était censé être simple.\nThis week I had three midterms.\tCette semaine il y a trois examens partiels.\nThose houses are 500 years old.\tCes maisons ont cinq cents ans.\nThose roses are very beautiful.\tCes roses sont très belles.\nThousands of people were there.\tDes milliers de gens étaient présents.\nThousands of people were there.\tDes milliers de gens étaient là.\nThree people are still missing.\tTrois personnes manquent encore.\nThree people are still missing.\tIl manque encore trois personnes.\nToday is my sixteenth birthday.\tAujourd'hui c'est mon seizième anniversaire.\nToday's my daughter's birthday.\tAujourd'hui est l'anniversaire de ma fille.\nToday, we had two false alarms.\tNous avons eu deux fausses alertes, aujourd'hui.\nTogether, anything is possible.\tEnsemble, tout est possible.\nTom acted the part of a sailor.\tTom jouait le rôle d'un marin.\nTom almost never speaks French.\tTom ne parle quasiment jamais français.\nTom also has a house in Boston.\tTom a également une maison à Boston.\nTom and I used to be neighbors.\tTom et moi étions voisins.\nTom and Mary agreed on a price.\tTom et Marie se sont mis d'accord sur un prix.\nTom and Mary are a nice couple.\tTom est Mary forment un joli couple.\nTom and Mary are playing chess.\tTom et Marie jouent aux échecs.\nTom and Mary dated for 3 years.\tTom et Marie ont été ensemble pendant 3 ans.\nTom and Mary did that together.\tTom et Marie ont fait ça ensemble.\nTom and Mary were both smiling.\tTom et Mary souriaient tous les deux.\nTom and Mary weren't impressed.\tTom et Marie n'étaient pas impressionnés.\nTom and Mary weren't impressed.\tTom et Mary n'étaient pas impressionnés.\nTom and Mary will come at 2:30.\tTom et Mary viendront à 14h30.\nTom asked Mary where she lived.\tTom a demandé à Mary où elle vivait.\nTom began putting on his shoes.\tTom commença à mettre ses chaussures.\nTom bought a camera like yours.\tTom a acheté un appareil photo comme le tien.\nTom bought a new tennis racket.\tTom a acheté une nouvelle raquette de tennis.\nTom bought a new tennis racket.\tTom acheta une nouvelle raquette de tennis.\nTom bought a refurbished phone.\tTom a acheté un téléphone remis à neuf.\nTom called to say he'd be late.\tTom a appelé pour dire qu'il serait en retard.\nTom can be extremely dangerous.\tTom peut être extrêmement dangereux.\nTom can't swim as fast as Mary.\tTom ne peut pas nager aussi vite que Mary.\nTom can't swim as well as Mary.\tTom ne sait pas nager aussi bien que Mary.\nTom could probably tell us why.\tTom pourrait probablement nous dire pourquoi.\nTom couldn't contain his anger.\tTom ne pouvait contenir sa colère.\nTom couldn't contain his anger.\tTom n'a pas pu contenir sa colère.\nTom couldn't finish his dinner.\tTom n'a pas pu finir son dîner.\nTom couldn't finish his dinner.\tTom ne pouvait pas finir son dîner.\nTom couldn't finish his dinner.\tTom ne put finir son dîner.\nTom couldn't get his shoes off.\tTom ne pouvait pas retirer ses chaussures.\nTom decided to call the police.\tTom décida d'appeler la police.\nTom did time for armed robbery.\tTom a purgé sa peine pour vol à main armée.\nTom didn't accept my apologies.\tTom n'a pas accepté mes excuses.\nTom didn't give us any details.\tTom ne nous a donné aucun détail.\nTom didn't leave me any choice.\tTom ne m'a pas laissé le choix.\nTom didn't promise me anything.\tTom ne m'a rien promis.\nTom didn't say anything at all.\tTom n'a rien dit du tout.\nTom didn't see that one coming.\tTom n'a pas vu celle-là venir.\nTom didn't want this to happen.\tTom ne voulait pas que ça arrive.\nTom didn't want to do anything.\tTom ne voulait rien faire.\nTom disappeared into the crowd.\tTom a disparu dans la foule.\nTom disappeared into the crowd.\tTom disparut dans la foule.\nTom disappeared three days ago.\tTom a disparu il y a trois jours.\nTom does all his work at night.\tTom fait tout son travail la nuit.\nTom doesn't drink beer at home.\tTom ne boit pas de bière à la maison.\nTom doesn't know his neighbors.\tTom ne connait pas ses voisins.\nTom doesn't know what he'll do.\tTom ne sait pas ce qu'il fera.\nTom doesn't know where to look.\tTom ne sait pas où regarder.\nTom doesn't seem too convinced.\tTom n'a pas l'air trop convaincu.\nTom doesn't understand a thing.\tTom ne comprend rien.\nTom dragged himself out of bed.\tTom se traîna hors de son lit.\nTom eats a lot of Chinese food.\tTom mange beaucoup de nourriture chinoise.\nTom eats rice almost every day.\tTom mange du riz pratiquement tous les jours.\nTom eats rice almost every day.\tTom mange du riz presque chaque jour.\nTom eventually joined the navy.\tTom s'engagea finalement dans la Marine.\nTom eventually joined the navy.\tTom s'est finalement engagé dans la Marine.\nTom explained his plan to Mary.\tTom a expliqué son plan à Mary.\nTom explained his plan to Mary.\tTom expliqua son plan à Mary.\nTom explained why he was there.\tTom expliqua la raison de sa présence.\nTom explained why he was there.\tTom a expliqué pourquoi il était là.\nTom felt someone touch his arm.\tTom sentit quelqu'un toucher son bras.\nTom felt someone touch his arm.\tTom a senti quelqu'un toucher son bras.\nTom found his bedroom unlocked.\tTom a trouvé sa chambre ouverte\nTom gathered wood for the fire.\tTom a ramassé du bois pour le feu.\nTom gave Mary his phone number.\tTom a donné à Marie son numéro de téléphone.\nTom gave Mary his phone number.\tTom a donné à Mary son numéro de téléphone.\nTom got these tickets for free.\tTom a eu ces billets gratuitement.\nTom handed an envelope to Mary.\tTom tendit une enveloppe à Mary.\nTom handed an envelope to Mary.\tTom a tendu une enveloppe à Mary.\nTom has a 13-year-old daughter.\tTom a une fille de treize ans.\nTom has a high opinion of Mary.\tTom pense beaucoup de bien de Marie.\nTom has a large gun collection.\tTom a une grande collection de pistolets\nTom has a meeting this morning.\tTom a une réunion ce matin\nTom has already gone to school.\tTom est déjà parti à l'école.\nTom has an apartment in Boston.\tTom a un appartement à Boston\nTom has been blind since birth.\tTom est aveugle depuis sa naissance.\nTom has been blind since birth.\tTom est aveugle de naissance.\nTom has been hammering all day.\tTom a planté des clous toute la journée\nTom has begun to look for work.\tTom a commencé à chercher un travail\nTom has changed his mind again.\tTom a encore changé d'avis\nTom has departed for Australia.\tTom est parti pour l'Australie\nTom has done what he had to do.\tTom a fait ce qu'il devait faire.\nTom has forgotten how to do it.\tTom a oublié comment le faire.\nTom has never been to a circus.\tTom n'est jamais allé au cirque.\nTom has never danced with Mary.\tTom n'a jamais dansé avec Mary.\nTom has some pretty good ideas.\tTom a quelques très bonnes idées.\nTom has to go even if it rains.\tTom doit y aller même s'il pleut.\nTom has too many strange ideas.\tTom a trop d'idées étranges\nTom has until Monday to decide.\tTom a jusqu'à lundi pour décider.\nTom has volunteered to help us.\tTom s'est porté volontaire pour nous aider.\nTom helped Mary open the crate.\tTom aida Mary à ouvrir la caisse.\nTom hurt his knee when he fell.\tTom s'est blessé le genou quand il est tombé.\nTom is Mary's former boyfriend.\tTom est l'ancien copain de Marie.\nTom is a bit short for his age.\tTom est légèrement petit pour son âge.\nTom is a bit small for his age.\tTom est légèrement petit pour son âge.\nTom is a cold-hearted murderer.\tTom est un tueur de sang-froid\nTom is a hard person to please.\tTom est quelqu'un de difficile à satisfaire.\nTom is a high school principal.\tTom est le principal du lycée\nTom is a lot shorter than I am.\tTom est beaucoup plus petit que moi.\nTom is a lot shorter than Mary.\tTom est beaucoup plus petit que Mary.\nTom is a thirteen-year-old boy.\tTom est un garçon de treize ans.\nTom is a very ambitious person.\tTom est une personne très ambitieuse.\nTom is a very good-looking guy.\tTom est un très beau jeune homme.\nTom is acting a little strange.\tTom agit un peu étrangement.\nTom is always late to meetings.\tTom est toujours en retard aux réunions.\nTom is an amateur photographer.\tTom est un photographe amateur.\nTom is angry a lot of the time.\tTom est en colère la plupart du temps.\nTom is conscientious, isn't he?\tTom est consciencieux, n'est-ce pas ?\nTom is determined to help Mary.\tTom est décidé à aider Mary.\nTom is determined to stop Mary.\tTom est déterminé à stopper Mary.\nTom is dumb, but not that dumb.\tTom est stupide, mais pas si stupide.\nTom is eager to live in Boston.\tTom est impatient de vivre à Boston.\nTom is exactly like his father.\tTom est tout comme son père.\nTom is exactly three weeks old.\tTom a exactement trois semaines.\nTom is extremely narrow-minded.\tTom est extrêmement étroit d'esprit.\nTom is extremely narrow-minded.\tTom est extrêmement borné.\nTom is familiar with this area.\tTom connaît bien cette zone.\nTom is going to need your help.\tTom aura besoin de ton aide.\nTom is good at telling stories.\tTom sait bien raconter les histoires.\nTom is good at telling stories.\tTom est doué pour raconter des histoires.\nTom is in better shape than me.\tTom est en meilleure forme que moi.\nTom is looking for another job.\tTom cherche un autre emploi.\nTom is looking for his glasses.\tTom cherche ses lunettes.\nTom is madly in love with Mary.\tTom est follement amoureux de Mary.\nTom is not a very friendly guy.\tTom n'est pas vraiment amical.\nTom is not a very friendly guy.\tTom n'est pas un gars très sympathique.\nTom is not able to drive a car.\tTom ne peut pas conduire une voiture.\nTom is on the go day and night.\tTom est actif de jour comme de nuit.\nTom is out of town on business.\tTom est en voyage d'affaires hors de la ville.\nTom is richer than most of you.\tTom est plus riche que la plupart d'entre vous.\nTom is sleeping in his bedroom.\tTom dort dans sa chambre.\nTom is studying in the library.\tTom étudie dans la bibliothèque.\nTom is taking care of the kids.\tTom s'occupe des enfants.\nTom is taking care of the kids.\tTom prend soin des enfants.\nTom is teaching French to Mary.\tTom enseigne le français à Marie.\nTom is too far away to hear us.\tTom est trop loin pour nous entendre.\nTom is too young to drink beer.\tTom est trop jeune pour boire de la bière.\nTom is trying to say something.\tTom essaie de dire quelque chose.\nTom is upstairs in his bedroom.\tTom est à l'étage dans sa chambre.\nTom is used to making speeches.\tTom a l'habitude de tenir des discours.\nTom is very independent-minded.\tTom est très indépendant.\nTom is very interested in jazz.\tTom est très intéressé par le jazz.\nTom is waiting at the bus stop.\tTom attend à l'arrêt de bus.\nTom is working on it right now.\tTom travaille dessus en ce moment même.\nTom is worried sick about Mary.\tTom est malade d'inquiétude à propos de Marie.\nTom isn't going to forget that.\tTom ne va pas oublier cela.\nTom isn't in a good mood today.\tTom n'est pas de bonne humeur, aujourd'hui.\nTom isn't the same age as Mary.\tTom n'a pas le même âge que Marie.\nTom left Mary alone in the car.\tTom a laissé Marie seule dans la voiture.\nTom left his keys on the table.\tTom a oublié les clés sur la table.\nTom left his wife and children.\tTom quitta sa femme et ses enfants.\nTom lied about a lot of things.\tTom a menti à propos de beaucoup de choses.\nTom likes most of his teachers.\tTom aime la plupart de ses professeurs.\nTom likes to cook Chinese food.\tTom aime bien cuisiner chinois.\nTom lived there for many years.\tTom a habité là plusieurs années.\nTom looked a little frightened.\tTom avait l'air un peu effrayé.\nTom looked in the refrigerator.\tTom a regardé dans le frigo.\nTom looked in the refrigerator.\tTom a regardé dans le frigidaire.\nTom looked in the refrigerator.\tTom regarda dans le frigidaire.\nTom looked in the refrigerator.\tTom regarda dans le réfrigérateur.\nTom looked like he was unhappy.\tTom avait l'air malheureux.\nTom lost his fight with cancer.\tTom a perdu son combat contre le cancer.\nTom lost three sons in the war.\tTom a perdu trois fils à la guerre.\nTom loved his family very much.\tTom aimait beaucoup sa famille.\nTom made me go against my will.\tTom m'a fait venir contre ma volonté.\nTom makes more money than Mary.\tTom gagne plus d'argent que Mary.\nTom needs to leave early today.\tTom doit partir tôt aujourd'hui.\nTom never came out of his coma.\tTom ne sortit jamais du coma.\nTom never came out of his coma.\tTom n'est jamais sorti du coma.\nTom never had that opportunity.\tTom n'a jamais eu cette opportunité.\nTom now faces criminal charges.\tTom fait maintenant face à des accusations criminelles.\nTom passed away quite suddenly.\tTom est décédé subitement.\nTom paused to catch his breath.\tTom fit une pause pour reprendre sa respiration.\nTom promised to tell the truth.\tTom a promis de dire la vérité.\nTom promised to tell the truth.\tTom promit de dire la vérité.\nTom pushed Mary out the window.\tTom poussa Marie par la fenêtre.\nTom put the coins into the box.\tTom a mis les pièces dans la boîte.\nTom put the coins into the box.\tTom mit les pièces dans la boîte.\nTom recently dyed his hair red.\tTom s'est récemment teint les cheveux en rouge.\nTom said he had a lot of money.\tTom a dit qu'il avait beaucoup d'argent.\nTom said he tried to kiss Mary.\tTom a dit qu'il avait essayé d'embrasser Mary.\nTom said he'd only talk to you.\tTom a dit qu'il ne parlerait qu'à toi.\nTom said my plan wouldn't work.\tTom a dit que mon plan ne fonctionnera pas.\nTom saw Mary earlier this week.\tTom a vu Mary plus tôt cette semaine.\nTom says he regrets doing that.\tTom dit qu'il regrette d'avoir fait ça.\nTom seems a little disoriented.\tTom semble un peu désorienté.\nTom seems a little disoriented.\tTom a l'air un peu désorienté.\nTom seems to have it in for me.\tTom semble avoir une dent contre moi.\nTom seems to have lost his key.\tTom semble avoir perdu sa clef.\nTom should be back before 2:30.\tTom devrait être de retour avant 2h30.\nTom should do as Mary suggests.\tTom devrait faire comme Mary le suggère.\nTom shouldn't make fun of Mary.\tTom ne devrait pas se moquer de Mary.\nTom showed Mary's letter to me.\tTom m'a montré la lettre de Mary.\nTom stared blankly at the wall.\tTom fixa le mur d'un regard ahuri.\nTom started clearing the table.\tTom commença à débarrasser la table.\nTom still comes here every day.\tTom vient encore ici tous les jours.\nTom still has feelings for you.\tTom a toujours des sentiments pour toi.\nTom still has feelings for you.\tTom a toujours des sentiments pour vous.\nTom stormed out of the meeting.\tTom est parti en claquant la porte.\nTom talked with Mary yesterday.\tTom a parlé avec Mary hier.\nTom told Mary that it was over.\tTom a dit à Mary que c'était fini.\nTom told me he used to be rich.\tTom m'a dit qu'il avait été riche.\nTom told me he was really busy.\tTom m'a dit qu'il était très occupé.\nTom told me that he was lonely.\tTom m'a dit qu'il se sentait seul.\nTom told me to be more careful.\tTom m'a dit d'être plus prudent.\nTom told me to be more careful.\tTom m'a dit de faire plus attention.\nTom told me you were in Boston.\tTom m'a dit que vous étiez à Boston.\nTom told me you were in Boston.\tTom m'a dit que tu étais à Boston.\nTom took a long drink of water.\tTom a pris un grand verre d'eau.\nTom took good care of everyone.\tTom a pris bien soin de tout le monde.\nTom took one of the sandwiches.\tTom prit un des sandwiches.\nTom took one of the sandwiches.\tTom a pris un des sandwichs.\nTom tried to conceal the truth.\tTom essaya de cacher la vérité.\nTom tried to conceal the truth.\tTom a essayé de cacher la vérité.\nTom tried to open the car door.\tTom a essayé d'ouvrir la porte de la voiture.\nTom tried to tell me something.\tTom a essayé de me dire quelque chose.\nTom understands what you don't.\tTom comprend ce que tu ne comprends pas.\nTom wants to come to our party.\tTom veut venir à notre fête.\nTom wants to get married again.\tTom veut se remarier.\nTom wants to know your opinion.\tTom veut savoir ton avis.\nTom wants to try a new shampoo.\tTom veut essayer un nouveau shampoing.\nTom was afraid to go back home.\tTom craignait de retourner chez lui.\nTom was dismissed from his job.\tTom a été renvoyé.\nTom was found dead in his room.\tOn a trouvé Tom mort dans sa chambre.\nTom was given a warm reception.\tTom a reçu un accueil chaleureux.\nTom was given a warm reception.\tTom reçut un accueil chaleureux.\nTom was here just a moment ago.\tTom était encore là il y a quelques instants.\nTom was impatient and restless.\tTom était impatient et agité.\nTom was in trouble financially.\tTom était en difficulté financièrement.\nTom was in trouble financially.\tTom avait des problèmes financiers.\nTom was just telling me a joke.\tTom me disait simplement une blague.\nTom was lucky to find his keys.\tTom a eu de la chance de trouver ses clefs.\nTom was wearing a baseball cap.\tTom portait une casquette de base-ball.\nTom went to the park with Mary.\tTom est allé au parc avec Marie.\nTom won $10,000 in the lottery.\tTom a gagné $10000 à la loterie.\nTom's arm brushed against mine.\tLe bras de Tom a frôlé le mien.\nTom's arm brushed against mine.\tLe bras de Tom frôla le mien.\nTom's father was an accountant.\tLe père de Tom était comptable.\nToo many cooks spoil the broth.\tTrop de cuisiniers gâchent la sauce.\nToward midnight, I fell asleep.\tAux alentours de minuit, je m'endors.\nTowns are larger than villages.\tLes villes sont plus grandes que les villages.\nTrains are running on schedule.\tLes trains fonctionnent selon l'horaire.\nTry to be generous and forgive.\tEssaie d'être généreux et pardonne.\nTurn him down once and for all.\tJette-le une fois pour toutes.\nTwo families live in the house.\tDeux familles résident dans la maison.\nTwo girls played on the seesaw.\tDeux filles jouaient à la bascule.\nTwo problems remained unsolved.\tDeux problèmes sont restés non résolus.\nTwo tears fell down her cheeks.\tDeux larmes ont coulé sur ses joues.\nTwo vanilla ice creams, please.\tDeux glaces à la vanille, s'il vous plait.\nUnfortunately, she didn't come.\tMalheureusement, elle n'est pas venue.\nViolence will not be tolerated.\tLa violence ne sera pas tolérée.\nWar doesn't make anybody happy.\tLa guerre ne rend personne heureux.\nWas she able to write a report?\tÉtait-elle capable d'écrire un rapport ?\nWas the work done by him alone?\tLe travail fut-il exécuté par lui seul ?\nWater and oil are both liquids.\tL'eau et l'huile sont toutes deux des liquides.\nWe advised them to start early.\tNous leur conseillâmes de commencer de bonne heure.\nWe all helped with the harvest.\tNous avons tous aidé à la récolte.\nWe all know what happened here.\tNous savons tous ce qui s'est passé ici.\nWe all know what happened here.\tNous savons tous ce qui est arrivé ici.\nWe all know what happened here.\tNous savons tous ce qui s'est produit ici.\nWe appreciate your cooperation.\tNous vous sommes reconnaissants de votre coopération.\nWe appreciate your kind advice.\tNous apprécions votre aimable conseil.\nWe are facing a violent crisis.\tNous faisons face à une crise violente.\nWe are going to leave tomorrow.\tNous allons partir demain.\nWe are sorry we can't help you.\tNous regrettons de ne pas pouvoir vous aider.\nWe are sorry we can't help you.\tNous sommes désolés de ne pas pouvoir vous aider.\nWe arrived here in the evening.\tNous sommes arrivés ici le soir.\nWe can deliver it this evening.\tNous pouvons le livrer ce soir.\nWe can still get there on time.\tNous pouvons encore y parvenir à temps.\nWe can't get along without Tom.\tNous ne pouvons pas continuer sans Tom.\nWe climbed right up to the top.\tNous sommes montés jusqu'au sommet.\nWe could understand each other.\tNous avons pu nous comprendre.\nWe didn't intend to attack him.\tNous n'avions pas l'intention de l'attaquer.\nWe don't have a lot of trouble.\tNous n'avons pas beaucoup d'ennuis.\nWe don't share the same values.\tNous n'avons pas les mêmes valeurs.\nWe don't want to take anything.\tNous ne voulons pas prendre quoi que ce soit.\nWe finally arrived at the lake.\tNous parvînmes finalement au lac.\nWe finally arrived at the lake.\tNous sommes finalement parvenus au lac.\nWe finally arrived at the lake.\tNous sommes finalement parvenues au lac.\nWe found the front door locked.\tNous avons trouvé la porte de devant fermée à clé.\nWe found the front door locked.\tNous avons trouvé la porte de devant verrouillée.\nWe got married three years ago.\tOn s'est marié il y a trois ans.\nWe got married three years ago.\tNous nous sommes mariés il y a trois ans.\nWe had a lot of rain last year.\tNous avons eu beaucoup de précipitations l'année dernière.\nWe had a lot of rain last year.\tNous avons eu beaucoup de pluie l'année dernière.\nWe had a lot of rain yesterday.\tOn a eu beaucoup de pluie hier.\nWe had a lot of snow last year.\tNous avons eu beaucoup de neige l'année dernière.\nWe had a lunch date, didn't we?\tNous avions rendez-vous pour déjeuner, n'est-ce pas ?\nWe had a lunch date, didn't we?\tNous avions rendez-vous pour dîner, n'est-ce pas ?\nWe had a mild winter last year.\tNous avons eu un hiver doux l'an dernier.\nWe had a very good time indeed.\tNous avons passé un très bon moment en effet.\nWe have a very serious problem.\tNous avons un problème très sérieux.\nWe have an English class today.\tAujourd’hui nous avons cours d'anglais.\nWe have arrived safe and sound.\tNous sommes arrivés sains et saufs.\nWe have many purchases to make.\tNous avons beaucoup d'achats à faire.\nWe have no choice but to do so.\tNous n'avons pas d'autre choix que de faire comme ça.\nWe have no need for assistance.\tNous n'avons pas besoin d'aide.\nWe have not yet begun to fight.\tNous n'avons pas encore commencé à combattre.\nWe have not yet begun to fight.\tNous n'avons pas encore commencé à nous battre.\nWe have plenty of time tonight.\tNous avons énormément de temps ce soir.\nWe have plenty of time tonight.\tNous avons tout le temps ce soir.\nWe have room for thirty people.\tNous avons de la place pour une trentaine de personnes.\nWe have some celebrating to do.\tCélébrons.\nWe have to do better next time.\tNous devons faire mieux la prochaine fois.\nWe have to tell them something.\tNous avons quelque chose à leur dire.\nWe haven't seen Tom in a while.\tNous n'avons pas vu Tom depuis un bout de temps.\nWe haven't seen you in a while.\tOn ne vous a pas vu depuis longtemps.\nWe haven't seen you in a while.\tÇa fait un bail qu'on t'a pas vu.\nWe haven't seen you in a while.\tÇa fait un bout de temps qu'on ne t'a vu.\nWe haven't seen you in a while.\tÇa fait un bout de temps qu'on ne t'a pas vu.\nWe heard shots in the distance.\tNous avons entendu des coups de feu au loin.\nWe heard the sound of gunshots.\tNous entendîmes le bruit de détonations.\nWe heard the sound of gunshots.\tNous avons entendu le bruit de détonations.\nWe heard the sound of gunshots.\tNous entendîmes le bruit de coups de feu.\nWe heard the sound of gunshots.\tNous avons entendu le bruit de coups de feu.\nWe hope to do better this week.\tNous espérons faire mieux cette semaine.\nWe just arrived at the station.\tNous venons tout juste d'arriver à la gare.\nWe just can't stand each other.\tC'est juste qu'on ne se supporte pas les uns les autres.\nWe learn a lot from experience.\tNous apprenons beaucoup de l'expérience.\nWe learn a lot from experience.\tNous apprenons beaucoup par expérience.\nWe listened to music yesterday.\tNous avons écouté de la musique hier.\nWe live in a civilized society.\tNous vivons dans une société civilisée.\nWe live in a complicated world.\tNous vivons dans un monde compliqué.\nWe live near the large library.\tNous vivons à proximité de la grande bibliothèque.\nWe made pancakes for breakfast.\tNous avons fait des crêpes pour le petit-déjeuner.\nWe must do more than yesterday.\tNous devons faire plus qu'hier.\nWe must follow the regulations.\tNous devons suivre la réglementation.\nWe must keep a diary every day.\tNous devons tenir un journal chaque jour.\nWe must not forget our promise.\tNous ne devons pas oublier notre promesse.\nWe must start at the beginning.\tIl nous faut commencer au début.\nWe must take care of ourselves.\tNous devons prendre soin de nous.\nWe need a knife for the butter.\tNous avons besoin d'un couteau pour le beurre.\nWe need a tool to open it with.\tIl nous faut un outil pour l'ouvrir.\nWe need to conserve ammunition.\tNous avons besoin de conserver des munitions.\nWe need to conserve ammunition.\tIl nous faut préserver les munitions.\nWe need to do better than this.\tIl faut que nous fassions mieux que cela.\nWe need to find Tom right away.\tIl nous faut trouver Tom immédiatement.\nWe need to make a big decision.\tOn a une grande décision à prendre.\nWe need you back in the office.\tNous avons besoin de ta présence au bureau.\nWe need you back in the office.\tNous avons besoin de votre présence au bureau.\nWe picked the number at random.\tNous avons choisi le nombre au hasard.\nWe picked the number at random.\tNous avons choisi le numéro au hasard.\nWe plan to go as far as we can.\tNous prévoyons de nous rendre aussi loin que nous le pouvons.\nWe reached the station on time.\tNous parvînmes à la gare à temps.\nWe reached the station on time.\tNous sommes parvenus à la gare à temps.\nWe reached the station on time.\tNous sommes parvenues à la gare à temps.\nWe really can make this happen.\tNous pouvons vraiment le réaliser.\nWe really have a lot in common.\tNous avons vraiment beaucoup en commun.\nWe saved you a seat right here.\tNous vous avons gardé un siège juste là.\nWe saw laborers blasting rocks.\tOn a vu des ouvriers faire sauter des rochers.\nWe saw laborers blasting rocks.\tNous avons vu des ouvriers faire sauter des rochers.\nWe see each other once a month.\tOn se voit une fois par mois.\nWe see each other once a month.\tNous nous voyons une fois par mois.\nWe shared the cost of the meal.\tNous partageâmes le prix du repas.\nWe shared the cost of the meal.\tNous avons partagé le prix du repas.\nWe should've gotten up earlier.\tOn aurait dû se lever plus tôt.\nWe skipped his turn on purpose.\tNous avons volontairement passé son tour.\nWe still have a few hours left.\tIl nous reste encore quelques heures.\nWe still have a long way to go.\tNous avons encore un long chemin à parcourir.\nWe talked about various topics.\tNous parlâmes de divers sujets.\nWe talked about various topics.\tNous avons parlé de divers sujets.\nWe think we are over the worst.\tNous pensons que nous avons traversé le pire.\nWe took a walk along the river.\tNous avons fait une promenade le long de la rivière.\nWe took a walk along the river.\tNous nous sommes promenées le long de la rivière.\nWe took a walk along the river.\tNous nous sommes promenés le long de la rivière.\nWe took turns with the driving.\tNous nous sommes relayés pour conduire.\nWe took turns with the driving.\tNous nous relayâmes pour conduire.\nWe used to play games like tag.\tNous jouions à des jeux comme à chat.\nWe waited, but Tom didn't come.\tNous avons attendu, mais Tom n'est pas venu.\nWe want to have a large family.\tNous voulons avoir une grande famille.\nWe went into the red last year.\tNous étions dans le rouge l'année dernière.\nWe went into the red last year.\tNous sommes entrés dans le rouge l'année dernière.\nWe went to the mountain to ski.\tNous avons été à la montagne pour skier.\nWe were all at school together.\tNous sommes toutes à l'école ensemble.\nWe were all at school together.\tNous sommes tous à l'école ensemble.\nWe were just about to call you.\tOn était sur le point de t'appeler.\nWe were just about to call you.\tNous étions sur le point de vous appeler.\nWe were nearly frozen to death.\tNous étions presque morts gelés.\nWe were studying all afternoon.\tNous avons étudié tout l'après-midi.\nWe will accept your conditions.\tNous accepterons vos conditions.\nWe wish you a pleasant journey.\tNous vous souhaitons un agréable voyage.\nWe'd better think of something.\tNous ferions mieux de songer à quelque chose.\nWe'll go when it quits raining.\tNous irons lorsqu'il s'arrêtera de pleuvoir.\nWe're all after the same thing.\tNous sommes tous après la même chose.\nWe're doing this for the money.\tNous le faisons pour l'argent.\nWe're doing what we want to do.\tNous sommes en train de faire ce que nous voulons faire.\nWe're done answering questions.\tNous avons fini de répondre aux questions.\nWe're going back to square one.\tOn retourne à la case départ.\nWe're going to be working late.\tNous allons travailler tard.\nWe're going to freeze to death.\tNous allons mourir de froid.\nWe're going to have a good day.\tNous passerons une bonne journée.\nWe're going to miss doing this.\tNous allons manquer de faire ceci.\nWe're going to miss doing this.\tNous manquerons de faire ceci.\nWe're going to wait in the car.\tNous allons attendre dans la voiture.\nWe're not doing anything wrong.\tNous ne faisons rien de mal.\nWe're not open on Thanksgiving.\tNous ne sommes pas ouvert pour Thanksgiving.\nWe're not out of the woods yet.\tNous ne sommes pas encore sortis de l'auberge.\nWe're not sure what's going on.\tNous ne sommes pas sûr de que ce qu'il est en train de se passer.\nWe're planning to do just that.\tNous planifions de faire seulement cela.\nWe're so glad to have you here.\tNous sommes tellement contents de vous avoir ici !\nWe're so glad to have you here.\tNous sommes tellement contentes de vous avoir ici !\nWe're so glad to have you here.\tNous sommes tellement contents de t'avoir ici !\nWe're so glad to have you here.\tNous sommes tellement contentes de t'avoir ici !\nWe're waiting for you to leave.\tNous attendons que tu sois parti.\nWe've an obligation to do that.\tNous avons une obligation de faire cela.\nWe've been waiting all morning.\tNous avons attendu toute la matinée.\nWe've come too far to quit now.\tNous sommes arrivés trop loin pour abandonner maintenant.\nWe've decided to remain silent.\tNous avons décidé de nous taire.\nWe've just cleaned the toilets.\tNous venons de nettoyer les toilettes.\nWe've just got to keep talking.\tNous avons seulement continué de parler.\nWe've known her for many years.\tNous l'avons connue pendant des années.\nWe've only got three more days.\tNous n'avons que trois jours de plus.\nWe've only got three more days.\tNous avons seulement trois jours de plus.\nWe've only got three more days.\tIl ne nous reste que trois jours de plus.\nWe've really got to step on it.\tNous devons vraiment accélérer.\nWell, how did it happen anyway?\tEh bien, comment est-ce arrivé, en définitive ?\nWe’ve been waiting for hours.\tNous avons attendu des heures.\nWe’ve been waiting for hours.\tNous avons attendu durant des heures.\nWe’ve been waiting for hours.\tNous avons attendu pendant des heures.\nWe’ve been waiting for hours.\tNous avons attendu des heures durant.\nWhat I need worst is a haircut.\tCe dont j'ai le moins besoin, c'est d'une coupe de cheveux.\nWhat Tom told Mary wasn't true.\tCe que Tom a dit à Mary n'était pas vrai.\nWhat are these things used for?\tÀ quoi servent ces choses ?\nWhat are you complaining about?\tDe quoi vous plaignez-vous ?\nWhat are you doing here anyway?\tQu'est-ce que tu fais ici de toutes façons ?\nWhat are you going to do today?\tQue vas-tu faire aujourd'hui ?\nWhat are you going to do today?\tQu'allez-vous faire aujourd'hui ?\nWhat are your thoughts on this?\tQuelles sont tes réflexions à ce sujet ?\nWhat are your thoughts on this?\tQuelles sont vos réflexions à ce sujet ?\nWhat crimes have you committed?\tQuels crimes as-tu commis ?\nWhat crimes have you committed?\tQuels crimes avez-vous commis ?\nWhat did she buy at that store?\tQu'a-t-elle acheté à ce magasin ?\nWhat did you do at that moment?\tQue faisiez-vous au juste à ce moment-là ?\nWhat did you do on the weekend?\tQu'avez-vous fait du week-end ?\nWhat did you do on the weekend?\tQu'as-tu fait du week-end ?\nWhat did you do with that book?\tQu'as-tu fait de ce livre ?\nWhat did you eat for breakfast?\tQu'avez-vous mangé pour le petit-déjeuner ?\nWhat did you eat for breakfast?\tQu'as-tu mangé au petit-déjeuner ?\nWhat did you eat for breakfast?\tTu as mangé quoi, ce matin ?\nWhat did you get for Christmas?\tQu'est-ce que tu as reçu pour Noël ?\nWhat did you get for Christmas?\tQu'as-tu reçu pour Noël ?\nWhat did you say your name was?\tComment as-tu dit que tu t'appelais ?\nWhat did you say your name was?\tComment avez-vous dit que vous vous appeliez ?\nWhat do I have to be afraid of?\tDe quoi dois-je avoir peur ?\nWhat do you have for breakfast?\tQue prends-tu au petit-déjeuner ?\nWhat do you have your feet for?\tEt si tu te servais de tes pieds ?\nWhat do you need four cars for?\tPourquoi as-tu donc besoin de quatre voitures ?\nWhat do you need the money for?\tEn quoi as-tu besoin de l'argent ?\nWhat do you need the money for?\tPourquoi avez-vous besoin de cet argent ?\nWhat do you think happens then?\tQue penses-tu qu'il arrive alors ?\nWhat do you think happens then?\tQue penses-tu qu'il se produise alors ?\nWhat do you think happens then?\tQue pensez-vous qu'il se produise alors ?\nWhat do you think happens then?\tQue pensez-vous qu'il advienne alors ?\nWhat do you think happens then?\tQue pensez-vous, alors, qu'il advienne ?\nWhat do you think happens then?\tQue pensez-vous, alors, qu'il se produise ?\nWhat do you think happens then?\tQue penses-tu, alors, qu'il se produise ?\nWhat do you think happens then?\tQue penses-tu, alors, qu'il arrive ?\nWhat do you think happens then?\tQue penses-tu, alors, qu'il advienne ?\nWhat do you think of this plan?\tQue penses-tu de ce projet ?\nWhat do you think of this plan?\tQue penses-tu de ce plan ?\nWhat do you think of this plan?\tQue pensez-vous de ce projet ?\nWhat do you think of this plan?\tQue pensez-vous de ce plan ?\nWhat do you think you're doing?\tQue crois-tu être en train de faire ?\nWhat do you want for Christmas?\tQu'est-ce que tu veux pour Noël ?\nWhat do you want for breakfast?\tQue veux-tu pour le petit-déjeuner ?\nWhat do you want for breakfast?\tQue voulez-vous pour le petit-déjeuner ?\nWhat do you want for breakfast?\tQue voulez-vous au petit-déjeuner ?\nWhat do you want to talk about?\tDe quoi voulez-vous parler ?\nWhat do you want to talk about?\tDe quoi veux-tu parler ?\nWhat does an airship look like?\tDe quoi un dirigeable a-t-il l'air ?\nWhat does he say in his letter?\tQue dit-il dans sa lettre ?\nWhat else is on today's agenda?\tQu'y a-t-il d'autre à l'ordre du jour ?\nWhat exactly are we paying for?\tQue sommes-nous censés payer ?\nWhat exactly do you plan to do?\tQue prévois-tu de faire, exactement ?\nWhat exactly do you plan to do?\tQue prévoyez-vous de faire, exactement ?\nWhat foods are you allergic to?\tÀ quels aliments es-tu allergique ?\nWhat foods are you allergic to?\tÀ quels aliments êtes-vous allergique ?\nWhat foods are you allergic to?\tÀ quels aliments êtes-vous allergiques ?\nWhat foods do you avoid eating?\tQuels aliments évites-tu de manger ?\nWhat foods do you avoid eating?\tQuels aliments évitez-vous de manger ?\nWhat goes around, comes around.\tTout finit par se payer.\nWhat happened to all our money?\tQu'est-il arrivé à tout notre argent ?\nWhat has become of your sister?\tQu'est devenue votre sœur ?\nWhat has become of your sister?\tQu'est devenue ta sœur ?\nWhat have you done to yourself?\tQue t'es-tu fait ?\nWhat have you done to yourself?\tQue vous êtes-vous fait ?\nWhat have you done with my bag?\tQu'as-tu fait de mon sac ?\nWhat have you done with my bag?\tQu'avez-vous fait de mon sac ?\nWhat he says is total nonsense.\tCe qu'il dit est complètement insensé.\nWhat high school did you go to?\tQuel lycée avez-vous fréquenté ?\nWhat high school did you go to?\tQuel lycée as-tu fréquenté ?\nWhat in the world got into you?\tQu'est-ce qui a bien pu te prendre ?\nWhat is better than friendship?\tQuoi de mieux que l'amitié ?\nWhat is it you do for a living?\tComment gagnez-vous votre vie ?\nWhat is it you do for a living?\tComment gagnes-tu ta vie ?\nWhat is it you want to tell us?\tQue veux-tu nous dire ?\nWhat is it you want to tell us?\tQue voulez-vous nous dire ?\nWhat is the name of that river?\tQuel est le nom de cette rivière ?\nWhat is the name of this river?\tComment s'appelle ce fleuve ?\nWhat is the weather like today?\tComment est le temps aujourd'hui ?\nWhat is the weather like today?\tQuel temps fait-il aujourd'hui?\nWhat kind of fruit do you want?\tQuelle sorte de fruit veux-tu ?\nWhat kind of fruit do you want?\tQuelle sorte de fruit voulez-vous ?\nWhat kind of music do you like?\tTu aimes quel style de musique ?\nWhat kind of music do you like?\tQuelle sorte de musique aimes-tu ?\nWhat kind of music do you like?\tQuelle sorte de musique aimez-vous ?\nWhat kind of stuff do you need?\tQuelle sorte de trucs te faut-il ?\nWhat language are you speaking?\tQuelle langue parlez-vous ?\nWhat made you change your mind?\tQu'est-ce qui t'a fait changer d'avis ?\nWhat medicine do you recommend?\tQuel médicament recommandez-vous ?\nWhat medicine do you recommend?\tQuel remède recommandez-vous ?\nWhat prevented him from coming?\tQu'est-ce qui l'a empêché de venir ?\nWhat results do you anticipate?\tQuels résultats attendez-vous ?\nWhat results do you anticipate?\tQuels résultats attends-tu ?\nWhat time did you arrive there?\tÀ quelle heure y es-tu arrivé ?\nWhat time did you arrive there?\tÀ quelle heure y es-tu arrivée ?\nWhat time did you arrive there?\tÀ quelle heure y êtes-vous arrivé ?\nWhat time did you arrive there?\tÀ quelle heure y êtes-vous arrivée ?\nWhat time did you arrive there?\tÀ quelle heure y êtes-vous arrivés ?\nWhat time did you arrive there?\tÀ quelle heure y êtes-vous arrivées ?\nWhat time do we leave tomorrow?\tÀ quelle heure partons-nous demain ?\nWhat time does the movie start?\tÀ quelle heure commence le film?\nWhat was it that you did there?\tQu'as-tu fait là ?\nWhat was it that you did there?\tQu'y as-tu fait ?\nWhat was it that you did there?\tQu'y avez-vous fait ?\nWhat was it that you did there?\tQu'avez-vous fait là ?\nWhat was the score at halftime?\tQuel était le score à la mi-temps ?\nWhat were you doing down there?\tQue faisais-tu là-bas ?\nWhat were you doing down there?\tQue faisiez-vous là-bas ?\nWhat would get their attention?\tQu'est-ce qui attirerait leur attention ?\nWhat're you all dressed up for?\tEn quel honneur t'es-tu mis sur ton trente-et-un ?\nWhat're you all dressed up for?\tPourquoi es-tu tout endimanché ?\nWhat're you all dressed up for?\tPourquoi es-tu tout endimanchée ?\nWhat're you all dressed up for?\tPourquoi êtes-vous tout endimanchés ?\nWhat're you all dressed up for?\tPourquoi êtes-vous tout endimanchées ?\nWhat're you all dressed up for?\tPourquoi êtes-vous tout endimanché ?\nWhat're you all dressed up for?\tPourquoi êtes-vous tout endimanchée ?\nWhat're you all dressed up for?\tEn quel honneur t'es-tu mise sur ton trente-et-un ?\nWhat're you all dressed up for?\tEn quel honneur vous êtes-vous mis sur votre trente-et-un ?\nWhat're you all dressed up for?\tEn quel honneur vous êtes-vous mise sur votre trente-et-un ?\nWhat're you all dressed up for?\tEn quel honneur vous êtes-vous mises sur votre trente-et-un ?\nWhat're you all dressed up for?\tPour quelle occasion t'es-tu apprêté ?\nWhat're you all dressed up for?\tPour quelle occasion t'es-tu apprêtée ?\nWhat're you all dressed up for?\tPour quelle occasion vous êtes-vous apprêté ?\nWhat're you all dressed up for?\tPour quelle occasion vous êtes-vous apprêtée ?\nWhat're you all dressed up for?\tPour quelle occasion vous êtes-vous apprêtés ?\nWhat're you all dressed up for?\tPour quelle occasion vous êtes-vous apprêtées ?\nWhat's happening now in Poland?\tQue se passe-t-il à l'heure actuelle en Pologne ?\nWhat's the point in doing that?\tÀ quoi ça sert de faire ça ?\nWhat's the point of not eating?\tÀ quoi sert de ne pas manger ?\nWhat's your favorite war movie?\tQuel est ton film de guerre préféré ?\nWhat's your natural hair color?\tQuelle est ta couleur de cheveux naturelle ?\nWhat's your natural hair color?\tQuelle est votre couleur de cheveux naturelle ?\nWhen I heard the news, I cried.\tLorsque j'ai entendu les nouvelles, je me suis mis à pleurer.\nWhen I woke up, it was snowing.\tQuand je me suis réveillée, il neigeait.\nWhen Tom died, I wanted to die.\tQuand Tom est mort, j'ai voulu mourir.\nWhen did your father come home?\tQuand votre père est-il rentré à la maison ?\nWhen did your father come home?\tQuand ton père est-il rentré à la maison ?\nWhen do you practice the piano?\tQuand est-ce que tu travailles ton piano ?\nWhen do you practice the piano?\tQuand travaillez-vous votre piano ?\nWhen does the next train leave?\tQuand part le prochain train ?\nWhen in Rome, do as the Romans.\tÀ Rome, fais comme les Romains.\nWhen is the ship due to arrive?\tQuand le navire est-il attendu ?\nWhen must I turn in the report?\tQuand dois-je remettre le rapport ?\nWhen will we reach the airport?\tQuand arriverons-nous à l'aéroport ?\nWhen would you like to see him?\tQuand aimeriez-vous le voir ?\nWhen's this supposed to happen?\tQuand est-ce supposé survenir ?\nWhen's this supposed to happen?\tQuand est-ce supposé avoir lieu ?\nWhere are my hat and my gloves?\tOù sont mon chapeau et mes gants ?\nWhere are you planning to stay?\tOù prévois-tu de séjourner ?\nWhere are you planning to stay?\tOù prévoyez-vous de séjourner ?\nWhere are you sleeping tonight?\tOù dors-tu ce soir ?\nWhere are you sleeping tonight?\tOù dormez-vous ce soir ?\nWhere can I pick up my baggage?\tOù est-ce que je peux récupérer mes bagages ?\nWhere did you find my umbrella?\tOù as-tu trouvé mon parapluie ?\nWhere did you find my umbrella?\tOù avez-vous trouvé mon parapluie ?\nWhere did you find this wallet?\tOù as-tu trouvé ce portefeuille ?\nWhere did you find this wallet?\tOù avez-vous trouvé ce portefeuille ?\nWhere did you sleep last night?\tOù as-tu couché la nuit dernière ?\nWhere did you sleep last night?\tOù avez-vous couché la nuit dernière ?\nWhere do you usually eat lunch?\tOù est-ce que tu déjeunes, d’habitude ?\nWhere do you want it delivered?\tOù voulez-vous le faire livrer ?\nWhere is the cathedral located?\tOù est située la cathédrale ?\nWhere is the nearest telephone?\tOù se trouve le téléphone le plus proche ?\nWhere should we pitch the tent?\tOù devrions-nous planter la tente ?\nWhere were you that whole time?\tOù étiez-vous, tout ce temps ?\nWhere were you that whole time?\tOù étais-tu, tout ce temps ?\nWhere's the children's section?\tOù se trouve le département enfants ?\nWhere's the closest restaurant?\tOù se trouve le restaurant le plus proche ?\nWhere's the shirt I bought you?\tOù est la chemise que je t'ai achetée ?\nWhere's the shirt I bought you?\tOù est la chemise que je vous ai achetée ?\nWhich do you suppose she chose?\tLaquelle crois-tu qu'elle choisit ?\nWhich do you suppose she chose?\tLequel penses-tu qu'elle a choisi ?\nWhich is larger, Tokyo or Kobe?\tDe Tokyo et Kobe, laquelle est la plus grande ?\nWhich of you will come with me?\tLequel d'entre vous viendra avec moi ?\nWhich of you will try it first?\tLequel d'entre vous va l'essayer en premier ?\nWho are you trying to convince?\tQui essayez-vous de convaincre ?\nWho are you trying to convince?\tQui essaies-tu de convaincre ?\nWho is the owner of this house?\tQui est le propriétaire de cette maison ?\nWho will take care of the baby?\tQui s'occupera du bébé ?\nWho would you like to speak to?\tÀ qui aimeriez-vous parler ?\nWho would you like to speak to?\tÀ qui désireriez-vous parler ?\nWho would you like to speak to?\tAvec qui aimeriez-vous vous entretenir ?\nWho would you like to speak to?\tAvec qui désireriez-vous vous entretenir ?\nWho would you like to speak to?\tAvec qui aimerais-tu t'entretenir ?\nWho would you like to speak to?\tÀ qui aimerais-tu parler ?\nWho would you like to speak to?\tAvec qui désirerais-tu t'entretenir ?\nWho would you like to speak to?\tÀ qui désirerais-tu parler ?\nWho's at the switchboard today?\tQui est au central, aujourd'hui ?\nWho's in charge of this matter?\tQui est responsable, en cette matière ?\nWho's the captain of this ship?\tQui est le commandant de ce navire ?\nWho's your favorite super hero?\tQuel est ton super-héros préféré ?\nWho's your favorite super hero?\tQuel est votre super-héros préféré ?\nWhoever comes will be welcomed.\tQuiconque viendra, sera bienvenu.\nWhy are there stars in the sky?\tPourquoi y a-t-il des étoiles dans le ciel ?\nWhy are you so nervous tonight?\tPourquoi es-tu aussi nerveux ce soir?\nWhy are you speaking so loudly?\tPourquoi parles-tu si fort ?\nWhy are you speaking so loudly?\tPourquoi parlez-vous si fort ?\nWhy are you washing your hands?\tPourquoi te laves-tu les mains ?\nWhy aren't you listening to me?\tPourquoi ne m'écoutes-tu pas ?\nWhy aren't you studying French?\tPourquoi n'étudies-tu pas le français ?\nWhy aren't you studying French?\tPourquoi n'étudiez-vous pas le français ?\nWhy aren't you studying French?\tPourquoi n'es-tu pas en train d'étudier le français ?\nWhy did you agree to help them?\tPourquoi as-tu accepté de les aider ?\nWhy did you agree to help them?\tPourquoi avez-vous accepté de les aider ?\nWhy did you keep that a secret?\tPourquoi l'avez-vous gardé secret ?\nWhy did you keep that a secret?\tPourquoi l'avez-vous gardé secrète ?\nWhy did you keep that a secret?\tPourquoi l'as-tu gardé secret ?\nWhy did you keep that a secret?\tPourquoi l'as-tu gardé secrète ?\nWhy didn't you ask for my help?\tPourquoi ne m'as-tu pas demandé d'aide?\nWhy didn't you call the police?\tPourquoi n'avez-vous pas appelé la police ?\nWhy do I have to do this alone?\tPourquoi dois-je le faire seul ?\nWhy do I have to do this alone?\tPourquoi dois-je le faire seule ?\nWhy do bees die after stinging?\tPourquoi les abeilles meurent-elles après avoir piqué ?\nWhy do people go to the movies?\tPourquoi est-ce que les gens vont au cinéma ?\nWhy do people go to the movies?\tPourquoi les gens vont-ils au cinéma ?\nWhy do people hate Tom so much?\tPourquoi les gens haïssent-ils autant Tom?\nWhy do we have to take it away?\tPourquoi devons-nous l'emporter ?\nWhy do you like sports so much?\tPourquoi aimes-tu autant le sport?\nWhy do you want to be a doctor?\tPourquoi veux-tu être médecin ?\nWhy do you want to be a doctor?\tPourquoi voulez-vous être médecin ?\nWhy do you want to leave today?\tPourquoi veux-tu partir aujourd'hui ?\nWhy does love make us so happy?\tPourquoi l'amour nous rend-il si heureux ?\nWhy don't you all just shut up?\tPourquoi est-ce que vous ne la fermez simplement pas tous ?\nWhy don't you ask him directly?\tPourquoi ne lui demandez-vous pas directement ?\nWhy don't you ask him directly?\tPourquoi ne lui demandes-tu pas directement ?\nWhy don't you have a boyfriend?\tPourquoi n'avez-vous pas de petit ami ?\nWhy don't you have a boyfriend?\tPourquoi n'avez-vous pas de petit copain ?\nWhy don't you have a boyfriend?\tPourquoi n'avez-vous pas de jules ?\nWhy don't you have a boyfriend?\tPourquoi n'as-tu pas de petit ami ?\nWhy don't you have a boyfriend?\tPourquoi n'as-tu pas de petit copain ?\nWhy don't you have a boyfriend?\tPourquoi n'as-tu pas de jules ?\nWhy don't you see for yourself?\tPourquoi n'en juges-tu pas par toi-même ?\nWhy don't you see for yourself?\tPourquoi n'en jugez-vous pas par vous-même ?\nWhy don't you share it with me?\tPourquoi ne le partages-tu pas avec moi ?\nWhy don't you share it with me?\tPourquoi ne la partages-tu pas avec moi ?\nWhy don't you share it with me?\tPourquoi ne le partagez-vous pas avec moi ?\nWhy don't you share it with me?\tPourquoi ne la partagez-vous pas avec moi ?\nWhy don't you take a seat here?\tPourquoi ne pas vous asseoir ici ?\nWhy don't you take a seat here?\tPourquoi ne pas t'asseoir ici ?\nWhy don't you take the day off?\tPourquoi ne prends-tu pas la journée ?\nWhy don't you take the day off?\tPourquoi ne prenez-vous pas la journée ?\nWhy don't you take the day off?\tPourquoi ne prenez-vous pas votre journée ?\nWhy don't you take the day off?\tPourquoi ne prends-tu pas ta journée ?\nWhy don't you tell me about it?\tPourquoi ne m'en parlez-vous pas ?\nWhy don't you tell me about it?\tPourquoi ne m'en parles-tu pas ?\nWhy is Tom so dressed up today?\tPourquoi Tom est-il si bien habillé aujourd'hui ?\nWhy is my sister so mean to me?\tPourquoi ma sœur est-elle si méchante avec moi ?\nWhy is my sister so mean to me?\tPourquoi ma sœur est-elle si méchante envers moi ?\nWhy is my sister so mean to me?\tPourquoi ma sœur est-elle si méchante à mon égard ?\nWhy is that so hard to believe?\tPourquoi est-ce si difficile à croire ?\nWhy limit yourself to just one?\tPourquoi te limiter à un seul ?\nWhy limit yourself to just one?\tPourquoi vous limiter à un seul ?\nWhy should anyone be surprised?\tPourquoi quiconque devrait-il être surpris ?\nWhy were you late this morning?\tPourquoi est-ce que tu étais en retard ce matin ?\nWhy were you late this morning?\tPourquoi étiez-vous en retard ce matin ?\nWill that be for here or to go?\tSera-ce pour consommer sur place ou pour emporter ?\nWill that be for here or to go?\tEst-ce que ce sera pour consommer sur place ou pour emporter ?\nWill you ever tell me your age?\tMe dévoileras-tu bien un jour quel âge tu as ?\nWill you look after my baggage?\tSurveilleras-tu mes bagages ?\nWill you look after my baggage?\tSurveillerez-vous mes bagages ?\nWill you permit me to go there?\tMe permettrez-vous d'y aller?\nWill you please call me a taxi?\tPourras-tu m'appeler un taxi s'il te plait ?\nWill you please hold this edge?\tPouvez-vous tenir ce bord ?\nWill you stay here for a while?\tResteras-tu ici pendant un certain temps ?\nWill you stay here for a while?\tResterez-vous ici pendant quelque temps ?\nWill you take a personal check?\tPrendrez-vous un chèque de retrait ?\nWill you take a personal check?\tPrendras-tu un chèque de retrait ?\nWindows 95 crashed on me AGAIN!\tWindows 95 m'a ENCORE pété à la gueule !\nWithout water, we cannot exist.\tSans eau, nous ne pouvons exister.\nWives usually outlive husbands.\tLes femmes survivent généralement aux maris.\nWould you care for more coffee?\tVoudriez-vous davantage de café ?\nWould you care for more coffee?\tVeux-tu encore un peu de café ?\nWould you care for more coffee?\tVeux-tu encore boire un peu de café ?\nWould you consider marrying me?\tVoudrais-tu réfléchir à m'épouser ?\nWould you excuse us one moment?\tVous voulez bien nous excuser un moment ?\nWould you happen to be married?\tSeriez-vous marié, par hasard ?\nWould you happen to be married?\tSeriez-vous mariée, par hasard ?\nWould you lend me your bicycle?\tMe prêterais-tu ton vélo ?\nWould you lend me your bicycle?\tMe prêteriez-vous votre vélo ?\nWould you like some more salad?\tVoudriez-vous encore un peu de salade ?\nWould you like some more salad?\tVoudrais-tu encore un peu de salade ?\nWould you like to play with us?\tVoudriez-vous jouer avec nous ?\nWould you like to play with us?\tVoudrais-tu jouer avec nous ?\nWould you like to switch seats?\tVoudriez-vous que nous échangions nos sièges ?\nWould you like to switch seats?\tVoudriez-vous que nous échangions nos fauteuils ?\nWould you like to switch seats?\tVoudrais-tu que nous échangions nos sièges ?\nWould you like to switch seats?\tVoudriez-vous échanger votre siège avec quelqu'un ?\nWould you like to switch seats?\tVoudrais-tu que nous échangions nos fauteuils ?\nWould you like to switch seats?\tVoudrais-tu échanger ton siège avec quelqu'un ?\nWould you like to try it again?\tVoulez-vous essayer encore une fois ?\nWould you mind a little advice?\tÇa te dérange si je te donne un petit conseil ?\nWould you mind if I came along?\tCela te dérangerait-il que je t'accompagne ?\nWould you mind if I kissed you?\tVerrais-tu un inconvénient à ce que je t'embrasse ?\nWould you mind if I kissed you?\tVerriez-vous un inconvénient à ce que je vous embrasse ?\nWould you mind if I left early?\tVerriez-vous un inconvénient à ce que je parte tôt ?\nWould you mind if I left early?\tVerrais-tu un inconvénient à ce que je parte tôt ?\nWould you mind rubbing my feet?\tÇa ne te ferait rien de me frotter les pieds ?\nWould you mind rubbing my feet?\tÇa ne vous ferait rien de me frotter les pieds ?\nWould you please do me a favor?\tM'accorderais-tu une faveur, s'il te plaît ?\nWould you please lock the door?\tPourrais-tu fermer la porte à clé ?\nWrite an essay on \"Friendship\".\tÉcrivez une rédaction sur \"L'amitié\".\nYes. We should be very careful.\tOui. Nous devons être très prudents.\nYesterday I hit on a good idea.\tHier, une idée m'est venue à l'esprit.\nYou are abusing your authority.\tTu abuses de ton autorité.\nYou are abusing your authority.\tVous abusez de votre autorité.\nYou are no longer welcome here.\tVous n'êtes plus le bienvenu ici.\nYou are no longer welcome here.\tVous n'êtes plus les bienvenus ici.\nYou are no longer welcome here.\tVous n'êtes plus les bienvenues ici.\nYou are no longer welcome here.\tVous n'êtes plus la bienvenue ici.\nYou are no longer welcome here.\tTu n'es plus le bienvenu ici.\nYou are no longer welcome here.\tTu n'es plus la bienvenue ici.\nYou are not to leave this room.\tVous ne devez pas quitter cette pièce.\nYou are not to leave this room.\tTu ne dois pas quitter cette pièce.\nYou can bet your boots on that.\tTu peux y miser ton slip.\nYou can come along if you want.\tTu peux venir, si tu veux.\nYou can come along if you want.\tVous pouvez venir, si vous voulez.\nYou can drive a car, can't you?\tTu sais conduire une voiture, n'est-ce pas ?\nYou can get a loan from a bank.\tTu peux obtenir un prêt d'une banque.\nYou can get a loan from a bank.\tVous pouvez obtenir un prêt d'une banque.\nYou can read French, can't you?\tTu peux lire le français, n'est-ce pas ?\nYou can still change your mind.\tVous pouvez encore changer d'avis.\nYou can still change your mind.\tTu peux toujours changer d'avis.\nYou can swim, but I can't swim.\tTu sais nager, mais moi, non.\nYou can take whatever you like.\tPrenez ce que vous voulez.\nYou can trust him with any job.\tVous pouvez lui confier n'importe quel travail.\nYou can't believe a word of it.\tIl ne faut pas croire à ces idioties.\nYou can't change your mind now.\tVous ne pouvez pas changer d'avis maintenant.\nYou can't change your mind now.\tTu ne peux pas changer d'avis maintenant.\nYou can't drink the water here.\tOn ne peut pas boire l'eau, ici.\nYou can't eat soup with a fork.\tOn ne peut manger de soupe avec une fourchette.\nYou can't hold that against me.\tTu ne peux pas m'en tenir rigueur.\nYou can't hold that against me.\tVous ne pouvez pas m'en tenir rigueur.\nYou can't just not do your job.\tTu ne peux simplement pas ne pas faire ton travail.\nYou can't just not do your job.\tTu ne peux simplement pas ne pas faire ton boulot.\nYou can't just not do your job.\tVous ne pouvez simplement pas ne pas faire votre travail.\nYou can't just not do your job.\tVous ne pouvez simplement pas ne pas faire votre boulot.\nYou can't keep doing this, Tom.\tTu ne peux pas continuer comme ça, Tom.\nYou can't learn that in school.\tOn ne peut pas apprendre ça à l'école.\nYou can't rely on this machine.\tOn ne peut pas se fier à cette machine.\nYou can't stay in here all day.\tVous ne pouvez pas rester là-dedans toute la journée.\nYou can't stay in here all day.\tTu ne peux pas rester là-dedans toute la journée.\nYou cannot heal a broken heart.\tTu ne peux pas guérir un cœur brisé.\nYou could've ruined everything.\tTu aurais pu tout gâcher.\nYou could've ruined everything.\tVous auriez pu tout gâcher.\nYou could've told me the truth.\tTu aurais pu me dire la vérité.\nYou could've told me the truth.\tVous auriez pu me dire la vérité.\nYou did not answer my question.\tTu n'as pas répondu à ma question.\nYou did not answer my question.\tTu ne répondis pas à ma question.\nYou did not answer my question.\tVous ne répondîtes pas à ma question.\nYou did not answer my question.\tVous n'avez pas répondu à ma question.\nYou do like living dangerously.\tTu aimes vraiment vivre dangereusement.\nYou do like living dangerously.\tVous aimez vraiment vivre dangereusement.\nYou don't have to be so formal.\tIl n'est pas nécessaire que tu sois aussi formel.\nYou don't have to get up early.\tTu n'as pas besoin de te lever tôt.\nYou don't have to tell me this.\tTu n'es pas obligé me dire ça.\nYou don't have to tell me this.\tTu n'es pas obligée de me dire ça.\nYou don't have to tell me this.\tVous n'êtes pas obligé de me dire ça.\nYou don't have to tell me this.\tVous n'êtes pas obligée de me dire ça.\nYou don't have to tell me this.\tVous n'êtes pas obligés de me dire ça.\nYou don't have to tell me this.\tVous n'êtes pas obligées de me dire ça.\nYou don't know the whole story.\tOn ne connait pas le fin mot de l'histoire.\nYou don't need to explain that.\tVous n'avez pas besoin d'expliquer cela.\nYou don't need to explain that.\tTu n'as pas besoin d'expliquer ça.\nYou don't need to say anything.\tTu n'as pas besoin de dire quoi que ce soit.\nYou don't need to say anything.\tVous n'avez pas besoin de dire quoi que ce soit.\nYou don't owe anybody anything.\tTu ne dois rien à personne.\nYou don't owe anybody anything.\tVous ne devez rien à personne.\nYou don't sound very confident.\tÀ vous entendre, vous n'avez pas l'air très confiant.\nYou don't sound very confident.\tÀ vous entendre, vous n'avez pas l'air très confiante.\nYou don't sound very confident.\tÀ vous entendre, vous n'avez pas l'air très confiants.\nYou don't sound very confident.\tÀ vous entendre, vous n'avez pas l'air très confiantes.\nYou don't sound very confident.\tÀ t'entendre, tu n'as pas l'air très confiant.\nYou don't sound very confident.\tÀ t'entendre, tu n'as pas l'air très confiante.\nYou don't sound very surprised.\tÀ t'entendre, tu n'as pas l'air très surpris.\nYou don't sound very surprised.\tÀ t'entendre, tu n'as pas l'air très surprise.\nYou don't sound very surprised.\tÀ t'entendre, tu n'as pas l'air fort surpris.\nYou don't sound very surprised.\tÀ vous entendre, vous n'avez pas l'air très surpris.\nYou don't sound very surprised.\tÀ vous entendre, vous n'avez pas l'air très surprise.\nYou don't want to be an editor?\tNe veux-tu pas être rédacteur ?\nYou don't want to be an editor?\tNe veux-tu pas être rédactrice ?\nYou don't want to be an editor?\tNe voulez-vous pas être rédacteur ?\nYou don't want to be an editor?\tNe voulez-vous pas être rédactrice ?\nYou had better not drive a car.\tIl serait préférable que tu ne conduises pas de voiture.\nYou had better take her advice.\tTu ferais mieux de suivre son conseil.\nYou had better take her advice.\tVous feriez mieux de suivre son conseil.\nYou have a beautiful apartment.\tTu as un bel appartement.\nYou have a fertile imagination.\tTu as une imagination fertile.\nYou have a fertile imagination.\tVous avez une imagination fertile.\nYou have a good sense of humor.\tTu as un bon sens de l'humour.\nYou have a good sense of humor.\tVous avez un bon sens de l'humour.\nYou have more energy than I do.\tTu as davantage d'énergie que moi.\nYou have more energy than I do.\tVous avez plus d'énergie que moi.\nYou have more energy than I do.\tVous avez davantage d'énergie que moi.\nYou have no need to be ashamed.\tTu ne dois pas avoir honte.\nYou have such a beautiful name.\tVous avez un si beau nom.\nYou have such a beautiful name.\tTu as un nom si beau.\nYou have to speak English here.\tTu dois parler anglais ici.\nYou live here alone, don't you?\tVous vivez seul, ici, n'est-ce pas ?\nYou live here alone, don't you?\tVous vivez seule, ici, n'est-ce pas ?\nYou look good in those clothes.\tTu as belle allure dans ces vêtements.\nYou look great in these photos.\tVous avez l'air splendide sur ces photos.\nYou look great in these photos.\tTu as l'air splendide sur ces photos.\nYou look just like your father.\tTu ressembles parfaitement à ton père.\nYou look just like your father.\tVous ressemblez parfaitement à votre père.\nYou look just like your mother.\tTu ressembles exactement à ta mère.\nYou look just like your mother.\tVous ressemblez exactement à votre mère.\nYou may as well get used to it.\tTu ferais mieux de t'y faire.\nYou may as well get used to it.\tTu ferais mieux de t'y habituer.\nYou may bring whoever you like.\tTu peux emmener qui tu veux.\nYou may bring whoever you like.\tVous pouvez emmener qui vous voulez.\nYou may invite anyone you like.\tTu peux inviter qui tu veux.\nYou may take anything you like.\tTu peux prendre ce que tu veux.\nYou may take anything you like.\tVous pouvez prendre tout ce que vous voulez.\nYou may use my pen at any time.\tTu peux utiliser mon stylo quand tu le souhaites.\nYou mean you're just giving up?\tTu veux dire que tu abandonnes tout simplement ?\nYou must be back by 10 o'clock.\tVous devez rentrer à environ 10 heures.\nYou must be mentally exhausted.\tTu dois être mentalement épuisé.\nYou must keep your hands clean.\tTu dois garder les mains propres.\nYou must stick to your promise.\tTu dois tenir ta promesse.\nYou must stick to your promise.\tVous devez tenir votre promesse.\nYou must study your whole life.\tTu dois étudier pendant toute ta vie.\nYou must study your whole life.\tOn doit étudier sa vie durant.\nYou must take care of your dog.\tTu dois prendre soin de ton chien.\nYou must take care of yourself.\tIl vous faut prendre soin de vous.\nYou must take care of yourself.\tIl te faut prendre soin de toi.\nYou need a key to open the box.\tIl te faut une clé pour ouvrir le coffre.\nYou need a key to open the box.\tIl vous faut une clé pour ouvrir le coffre.\nYou need to be more aggressive.\tIl faut que tu sois plus agressif.\nYou need to be more aggressive.\tTu as besoin d'être plus agressive.\nYou need to take a cold shower.\tTu as besoin d'une bonne douche froide.\nYou need to tell Tom the truth.\tIl faut que tu dises la vérité à Tom.\nYou never cease to surprise me.\tVous ne cessez jamais de me surprendre.\nYou never cease to surprise me.\tTu ne cesses jamais de me surprendre.\nYou owe me an apology for that.\tVous me devez des excuses pour cela.\nYou probably don't remember me.\tVous ne vous souvenez probablement pas de moi.\nYou probably don't remember me.\tTu ne te souviens probablement pas de moi.\nYou really must see that movie.\tVous devez vraiment voir ce film.\nYou recognized him, didn't you?\tVous l'avez reconnu, n'est-ce pas ?\nYou recognized him, didn't you?\tTu l'as reconnu, n'est-ce pas ?\nYou said that it was important.\tVous avez dit que c'était important.\nYou said that it was important.\tTu as dit que c'était important.\nYou said you didn't understand.\tTu as dit que tu n'avais pas compris.\nYou said you didn't understand.\tVous avez dit que vous n'aviez pas compris.\nYou said you didn't understand.\tTu dis que tu n'avais pas compris.\nYou said you didn't understand.\tVous dîtes que vous n'aviez pas compris.\nYou saw that movie, didn't you?\tTu as vu ce film, n'est-ce pas ?\nYou should always do your best.\tOn devrait toujours faire de son mieux.\nYou should buy it for yourself.\tTu devrais te l'acheter.\nYou should carry out your duty.\tVous devriez accomplir votre devoir.\nYou should have kept it secret.\tTu aurais dû garder cela secret.\nYou should have listened to me.\tTu aurais dû m'écouter.\nYou should have seen the movie.\tTu aurais dû voir le film.\nYou should kick that bad habit.\tTu devrais chasser cette mauvaise habitude.\nYou should kick that bad habit.\tVous devriez chasser cette mauvaise habitude.\nYou should listen to your wife.\tIl faut écouter ta femme.\nYou should not do such a thing.\tTu ne devrais pas faire une telle chose.\nYou should not do such a thing.\tVous ne devriez pas faire une chose pareille.\nYou should not waste your time.\tTu ne devrais pas gaspiller ton temps.\nYou should not wear a fur coat.\tVous ne devriez pas porter de manteau de fourrure.\nYou should not wear a fur coat.\tTu ne devrais pas porter de manteau de fourrure.\nYou should put on some clothes.\tTu devrais mettre des vêtements.\nYou should put on some clothes.\tVous devriez mettre des vêtements.\nYou should put on some clothes.\tVous devriez vous vêtir.\nYou should put on some clothes.\tTu devrais te vêtir.\nYou should tell Tom what to do.\tTu devrais dire à Tom quoi faire.\nYou should tell Tom what to do.\tVous devriez dire à Tom quoi faire.\nYou should've taken his advice.\tVous auriez dû accepter son conseil.\nYou shouldn't have followed me.\tTu n'aurais pas dû me suivre.\nYou shouldn't have followed me.\tVous n'auriez pas dû me suivre.\nYou shouldn't have invited Tom.\tTu n'aurais pas dû inviter Tom.\nYou shouldn't look down on him.\tTu ne devrais pas le mépriser.\nYou shouldn't worry about that.\tTu ne devrais pas t'inquiéter pour ça.\nYou sound like a broken record.\tOn dirait un disque rayé.\nYou understand this, don't you?\tTu comprends ceci, n'est-ce pas ?\nYou understand this, don't you?\tVous comprenez ceci, n'est-ce pas ?\nYou want to go out for a drink?\tVeux-tu sortir prendre un verre ?\nYou want to go out for a drink?\tVoulez-vous sortir prendre un verre ?\nYou were beginning to worry me.\tVous commenciez à m'inquiéter.\nYou were beginning to worry me.\tTu commençais à m'inquiéter.\nYou were bluffing, weren't you?\tTu bluffais, pas vrai ?\nYou were bluffing, weren't you?\tVous bluffiez, n'est-ce pas ?\nYou were right and I was wrong.\tTu avais raison et j’avais tort.\nYou were sleeping, weren't you?\tVous dormiez, n'est-ce pas ?\nYou were sleeping, weren't you?\tVous étiez en train de dormir, n'est-ce pas ?\nYou were sleeping, weren't you?\tTu dormais, n'est-ce pas ?\nYou were sleeping, weren't you?\tTu étais en train de dormir, n'est-ce pas ?\nYou were watching, weren't you?\tVous regardiez, n'est-ce pas ?\nYou were watching, weren't you?\tVous étiez en train de regarder, n'est-ce pas ?\nYou were watching, weren't you?\tTu étais en train de regarder, n'est-ce pas ?\nYou were watching, weren't you?\tTu regardais, n'est-ce pas ?\nYou will always be in my heart.\tTu seras toujours dans mon cœur.\nYou will always be in my heart.\tVous serez toujours dans mon cœur.\nYou will find this lesson easy.\tTu trouveras cette leçon facile.\nYou will not get there on time.\tTu n'y arriveras pas à temps.\nYou would make a good diplomat.\tTu ferais un bon diplomate.\nYou would make a good diplomat.\tVous feriez un bon diplomate.\nYou'd be better off without me.\tTu serais mieux sans moi.\nYou'd better do as you're told.\tTu ferais mieux de faire comme on te dit.\nYou'd better go to bed at once.\tTu ferais mieux d'aller au lit immédiatement.\nYou'll be hearing from us soon.\tVous entendrez parler de nous prochainement.\nYou'll be hearing from us soon.\tVous aurez bientôt de nos nouvelles.\nYou'll be hearing from us soon.\tTu auras bientôt de nos nouvelles.\nYou'll forget about me someday.\tTu m'oublieras un jour.\nYou'll forget about me someday.\tVous m'oublierez un jour.\nYou'll need a temporary bridge.\tVous avez besoin d'un bridge provisoire.\nYou'll need a temporary bridge.\tVous aurez besoin d'un pont provisoire.\nYou're a very attractive woman.\tTu es une femme très attirante.\nYou're a very attractive woman.\tVous êtes une femme très séduisante.\nYou're being bossy, aren't you?\tTu es autoritaire, non ?\nYou're being very unfair to me.\tTu deviens très injuste envers moi.\nYou're going to love this book.\tVous allez adorer ce livre.\nYou're going to love this book.\tVous adorerez ce livre.\nYou're going to ruin your eyes.\tTu vas te bousiller les yeux.\nYou're going to ruin your eyes.\tVous allez vous bousiller les yeux.\nYou're in a strange mood today.\tTu es d'une humeur étrange, aujourd'hui.\nYou're much taller than Tom is.\tTu es bien plus grand que Tom.\nYou're my friends, both of you.\tVous êtes mes amis, tous les deux.\nYou're not getting any younger.\tTu ne rajeunis pas.\nYou're not old enough to drink.\tTu n'es pas suffisament âgé pour boire.\nYou're not supposed to be here.\tVous n'êtes pas supposé vous trouver là.\nYou're not supposed to be here.\tTu n'es pas supposé te trouver là.\nYou're not the only woman here.\tTu n'es pas la seule femme ici.\nYou're not the only woman here.\tTu n'es pas l'unique femme ici.\nYou're not the only woman here.\tVous n'êtes pas la seule femme ici.\nYou're not the only woman here.\tVous n'êtes pas l'unique femme ici.\nYou're one of them, aren't you?\tTu es l'un d'eux, n'est-ce pas ?\nYou're one of them, aren't you?\tTu es l'une d'elles, n'est-ce pas ?\nYou're one of them, aren't you?\tTu en fais partie, n'est-ce pas ?\nYou're one of them, aren't you?\tVous en faites partie, n'est-ce pas ?\nYou're one of them, aren't you?\tVous êtes l'une d'elles, n'est-ce pas ?\nYou're one of them, aren't you?\tVous êtes l'un d'eux, n'est-ce pas ?\nYou're smarter than I ever was.\tTu es plus malin que je ne l'ai jamais été.\nYou're starting to warm up now.\tTu commences à t'échauffer maintenant.\nYou're staying with Tom, right?\tTu restes avec Tom, n'est-ce pas ?\nYou're staying with Tom, right?\tVous restez avec Tom, n'est-ce pas ?\nYou're the one that went crazy.\tC'est toi qui t'es emballé.\nYou're the one that went crazy.\tC'est vous qui vous vous êtes emballé.\nYou're the one that went crazy.\tC'est toi qui t'es emballée.\nYou're the one that went crazy.\tC'est vous qui vous vous êtes emballée.\nYou're the only one for me now.\tTu es le seul pour moi maintenant.\nYou're the only one for me now.\tTu es la seule pour moi désormais.\nYou're the only one for me now.\tVous êtes le seul désormais pour moi.\nYou're the only one for me now.\tVous êtes la seule désormais pour moi.\nYou're the tallest person here.\tVous êtes la plus grande personne ici.\nYou're the tallest person here.\tTu es la personne la plus grande ici.\nYou're wanted on the telephone.\tOn vous demande au téléphone.\nYou've got a vivid imagination!\tTu as une imagination débordante !\nYou've got a vivid imagination!\tVous avez une imagination fertile !\nYou've got a vivid imagination!\tVous avez une imagination débordante !\nYou've got a vivid imagination!\tTu as une imagination fertile !\nYou've got everything you need.\tVous avez tout ce dont vous avez besoin.\nYou've got everything you need.\tTu as tout ce dont tu as besoin.\nYour answer doesn't make sense.\tTa réponse n'a aucun sens.\nYour efforts will soon pay off.\tVos efforts vont bientôt payer.\nYour glasses fell on the floor.\tTes lunettes sont tombées par terre.\nYour ideas are all out of date.\tTes idées sont toutes dépassées.\nYour necktie matches your suit.\tVotre cravate est assortie avec votre costume.\nYour problems don't concern me.\tTes problèmes ne me concernent pas.\nYour proposal is a bit extreme.\tVotre proposition est un peu extrême.\nYour questions were too direct.\tVos questions étaient trop directes.\nYour questions were too direct.\tTes questions étaient trop directes.\nYour remarks were out of place.\tVos remarques étaient déplacées.\nYour sacrifice was not in vain.\tTon sacrifice ne fut pas vain.\nYour son is dating my daughter.\tTon fils sort avec ma fille.\nYour son is dating my daughter.\tVotre fils sort avec ma fille.\nYour watch is ten minutes slow.\tTa montre a dix minutes de retard.\nYour watch is ten minutes slow.\tVotre montre a dix minutes de retard.\nYour work has greatly improved.\tTon travail s'est grandement amélioré.\n\"Do you like cake?\" \"Yes, I do.\"\t«Aimez-vous les gâteaux ?» «Oui, j'aime ça.»\n\"Have you eaten?\" \"Yes, I have.\"\t« As-tu mangé ? » « Oui. »\n\"Have you eaten?\" \"Yes, I have.\"\t« Avez-vous mangé ? » « Oui. »\n\"How's it going?\" \"Not too bad.\"\t« Comment ça va ? » « Pas trop mal. »\n\"Who is it?\" \"It's your mother.\"\t« Qui est-ce ? » « C'est ta mère. »\nA bee sting can be very painful.\tUne piqûre d'abeille peut être très douloureuse.\nA bee sting can be very painful.\tUne piqûre d'abeille peut être fort douloureuse.\nA billion adults are illiterate.\tUn milliard d'adultes sont analphabètes.\nA broken mirror brings bad luck.\tUn miroir brisé porte malheur.\nA car went by at terrific speed.\tUne voiture est passée à une vitesse terrifiante.\nA card was attached to the gift.\tUne carte était attachée au cadeau.\nA child today would not do that.\tUn enfant ne ferait pas cela de nos jours.\nA computer is a complex machine.\tL'ordinateur est une machine complexe.\nA fierce battle was fought here.\tUne bataille féroce s'est déroulée ici.\nA fish swims by moving its tail.\tUn poisson nage en bougeant sa queue.\nA full moon can be seen tonight.\tUne pleine lune peut être vue ce soir.\nA good appetite is a good sauce.\tDans le monde, il n'existe aucune sauce comparable à la faim.\nA good idea came across my mind.\tUne bonne idée me traversa l'esprit.\nA good idea suddenly struck her.\tElle eut soudain une bonne idée.\nA lot of my hair has fallen out.\tJ'ai beaucoup de cheveux qui sont tombés.\nA map is available upon request.\tUne carte est fournie sur demande.\nA marathon is pretty exhausting.\tUn marathon est assez épuisant.\nA number of people were drowned.\tNombre de gens furent noyés.\nA number of people were drowned.\tNombre de gens ont été noyés.\nA penny saved is a penny earned.\tUn sou épargné est un sou gagné.\nA rat chewed a hole in the wall.\tUn rat a fait un trou dans le mur.\nA woman asked me for directions.\tUne femme m'a demandé le chemin.\nA wonderful idea occurred to me.\tUne merveilleuse idée me vint à l'esprit.\nA word spoken is past recalling.\tCe qui est dit est dit.\nA young person wants to see you.\tUne jeune personne veut vous voir.\nAbove all, I want to be healthy.\tPar dessus tout je veux être en bonne santé.\nAccording to him, she is honest.\tSelon lui, elle est honnête.\nActions speak louder than words.\tL'action vaut mieux que les mots.\nActions speak louder than words.\tLes actes en disent plus long que les mots.\nActually, that's what I thought.\tC'est ce que je pensais.\nActually, the problem isn't new.\tEn fait, le problème n'est pas nouveau.\nAdd two ounces of grated cheese.\tAjoutez cinquante grammes de fromage râpé.\nAfrica is the poorest continent.\tL'Afrique est le continent le plus pauvre.\nAfter dinner, I did my homework.\tAprès souper, j'ai effectué mes devoirs.\nAfter work, Tom is always tired.\tAprès le travail, Tom est toujours fatigué.\nAll I can do is work in silence.\tTout ce que je peux faire c'est travailler en silence.\nAll at once the lights went out.\tToutes en même temps les lumières s'éteignirent.\nAll at once they began to laugh.\tIls se mirent à rire tous ensemble.\nAll children do not like apples.\tTous les enfants n'aiment pas les pommes.\nAll good things come from above.\tToutes les bonnes choses viennent d'en haut.\nAll his friends backed his plan.\tTous ses amis ont appuyé son projet.\nAll his friends backed his plan.\tToutes ses amies ont appuyé son projet.\nAll men are equal under the law.\tTous les hommes sont égaux devant la loi.\nAll men are equal under the law.\tTous les hommes sont égaux au regard de la loi.\nAll my friends are invited here.\tTous mes amis sont invités ici.\nAll of my friends have bicycles.\tTous mes amis ont des vélos.\nAll of us live in the same dorm.\tNous vivons tous dans la même résidence étudiante.\nAll of us live in the same dorm.\tNous vivons tous dans le même bâtiment de la cité universitaire.\nAll our effort ended in failure.\tTous nos efforts se sont soldés par des échecs.\nAll plants need water and light.\tToutes les plantes ont besoin d'eau et de lumière.\nAll the children laughed at Tom.\tTous les enfants se moquèrent de Tom.\nAll the children laughed at Tom.\tTous les enfants ont ri de Tom.\nAll the children started crying.\tTous les enfants se sont mis à pleurer.\nAll the desk drawers were empty.\tTous les tiroirs du bureau étaient vides.\nAll the desk drawers were empty.\tTous les tiroirs des bureaux étaient vides.\nAll the exams are now behind us.\tTous les examens sont à présent derrière nous.\nAll the guys teased me about it.\tTous les mecs m'ont charriée avec ça.\nAll the guys teased me about it.\tTous les mecs m'ont taquinée avec ça.\nAll the guys teased me about it.\tTous les mecs m'ont taquiné avec ça.\nAll the stories are interesting.\tToutes les histoires sont intéressantes.\nAll the students have gone home.\tTous les étudiants sont rentrés à la maison.\nAll the students look up to him.\tTous les étudiants l'admirent.\nAll this is for my personal use.\tTout ceci est destiné à mon utilisation personnelle.\nAll you have to do is follow me.\tTout ce que tu as à faire, c'est de me suivre.\nAlmost everyone arrived on time.\tIls arrivèrent presque tous à l'heure.\nAm I waiting in the wrong place?\tEst-ce que j'attends au mauvais endroit ?\nAmerica is a land of immigrants.\tL'Amérique est une terre d'immigrants.\nAn expert was called for advice.\tUn expert a été appelé pour avis.\nAn unforgettable event occurred.\tUn évènement inoubliable s'est produit.\nAnd now a word from our sponsor.\tEt maintenant, un mot de notre mécène !\nAnd who did you learn that from?\tEt de qui as-tu appris cela ?\nAnd who did you learn that from?\tEt de qui avez-vous appris cela ?\nAnkara is the capital of Turkey.\tAnkara est la capitale de la Turquie.\nAre there any bags in this shop?\tY a-t-il des sacs dans cette boutique ?\nAre there any bears around here?\tY a-t-il des ours autour d'ici ?\nAre there any tours of the city?\tY a-t-il des circuits touristiques dans la ville ?\nAre there oak trees on the hill?\tY a-t-il des chênes sur la colline ?\nAre we likely to arrive in time?\tAvons-nous une chance d'arriver à l'heure ?\nAre you accusing me of cheating?\tEs-tu en train de m'accuser de tricher ?\nAre you accusing me of cheating?\tÊtes-vous en train de m'accuser de tricher ?\nAre you afraid of a little girl?\tAs-tu peur d'une petite fille ?\nAre you busy tomorrow afternoon?\tTu es occupé demain après-midi ?\nAre you busy tomorrow afternoon?\tÊtes-vous occupé demain après-midi ?\nAre you busy tomorrow afternoon?\tÊtes-vous occupée demain après-midi ?\nAre you done washing your hands?\tAs-tu fini de te laver les mains ?\nAre you falling in love with me?\tEs-tu en train de tomber amoureux de moi ?\nAre you falling in love with me?\tEs-tu en train de tomber amoureuse de moi ?\nAre you falling in love with me?\tÊtes-vous en train de tomber amoureuse de moi ?\nAre you falling in love with me?\tÊtes-vous en train de tomber amoureux de moi ?\nAre you finished with your work?\tAvez-vous fini votre travail ?\nAre you finished with your work?\tAs-tu fini ton travail ?\nAre you finished with your work?\tAvez-vous achevé votre travail ?\nAre you for or against his idea?\tÊtes-vous pour ou contre son idée ?\nAre you for or against his idea?\tEs-tu pour ou contre son idée ?\nAre you for or against the bill?\tÊtes-vous pour ou contre le texte de loi ?\nAre you for or against the plan?\tEs-tu pour ou contre notre plan ?\nAre you free for dinner tonight?\tÊtes-vous libre pour dîner, ce soir ?\nAre you free for dinner tonight?\tÊtes-vous libre pour souper, ce soir ?\nAre you free for dinner tonight?\tEs-tu libre pour dîner, ce soir ?\nAre you free for dinner tonight?\tEs-tu libre pour souper, ce soir ?\nAre you free tomorrow afternoon?\tDisposez-vous de temps demain après-midi ?\nAre you going on foot or by bus?\tY allez-vous à pied ou en bus ?\nAre you going there on business?\tVous y rendrez-vous pour le travail ?\nAre you going there on business?\tVas-tu là pour affaires ?\nAre you going to help us or not?\tVas-tu oui ou non nous aider ?\nAre you going to help us or not?\tAllez-vous nous aider ou pas ?\nAre you good at keeping secrets?\tSais-tu garder un secret ?\nAre you good at keeping secrets?\tSavez-vous garder un secret ?\nAre you good at speaking French?\tParlez-vous bien le français ?\nAre you happy with how you look?\tEs-tu satisfait de ton allure ?\nAre you happy with how you look?\tEs-tu satisfaite de ton allure ?\nAre you in favor of the new law?\tEs-tu pour la nouvelle loi ?\nAre you in favor of this motion?\tEs-tu d'accord avec cette proposition ?\nAre you in trouble with the law?\tAs-tu des ennuis avec la loi ?\nAre you planning to talk to Tom?\tAs-tu l'intention de parler à Tom ?\nAre you planning to talk to Tom?\tEnvisagez-vous de parler à Tom ?\nAre you questioning my judgment?\tRemettez-vous en cause mon jugement ?\nAre you questioning my judgment?\tEs-tu en train de questionner mon jugement ?\nAre you satisfied with your job?\tÊtes-vous content de votre travail ?\nAre you satisfied with your job?\tÊtes-vous satisfait de votre emploi ?\nAre you saying you can't fix it?\tEs-tu en train de dire que tu ne peux pas le réparer ?\nAre you saying you can't fix it?\tÊtes-vous en train de dire que vous ne pouvez pas le réparer ?\nAre you speaking metaphorically?\tParles-tu métaphoriquement ?\nAre you speaking metaphorically?\tParlez-vous métaphoriquement ?\nAre you students at this school?\tÊtes-vous élèves à cette école ?\nAre you sure you don't know Tom?\tÊtes-vous sûre de ne pas connaître Tom ?\nAre you sure you don't know Tom?\tEs-tu sûr de ne pas connaître Tom ?\nAre you sure you don't know Tom?\tEs-tu sûre de ne pas connaître Tom ?\nAre you sure you don't know Tom?\tÊtes-vous sûr de ne pas connaître Tom ?\nAre you sure you're warm enough?\tEs-tu sûr d'avoir assez chaud ?\nAre you sure you're warm enough?\tEs-tu sûre d'avoir assez chaud ?\nAre you sure you're warm enough?\tÊtes-vous sûr d'avoir assez chaud ?\nAre you sure you're warm enough?\tÊtes-vous sûrs d'avoir assez chaud ?\nAre you sure you're warm enough?\tÊtes-vous sûre d'avoir assez chaud ?\nAre you sure you're warm enough?\tÊtes-vous sûres d'avoir assez chaud ?\nAre you the author of this book?\tEs-tu l'auteur de ce livre ?\nAre you the owner of this house?\tEs-tu le propriétaire de cette maison ?\nAs a matter of fact, it is true.\tEn fait, c'est vrai.\nAs far as I know, he isn't lazy.\tPour autant que je sache, il n'est pas fainéant.\nAs far as I know, he won't come.\tPour autant que je sache, il ne viendra pas.\nAsk her how much soup she wants.\tDemande-lui combien elle veut de soupe.\nAsk her when she will come back.\tDemande-lui quand est-ce qu'elle revient.\nAsk him where he parked his car.\tDemande-lui où il a garé sa voiture.\nAsk your parents for permission.\tDemande la permission à tes parents.\nAsk your parents for permission.\tDemandez la permission à vos parents.\nAstronomy is an expensive hobby.\tL'astronomie est un passe-temps coûteux.\nAstronomy is an expensive hobby.\tL'astronomie est un passe-temps onéreux.\nAt last, she hit on a good idea.\tÀ la fin, elle a eu une bonne idée.\nAt last, we got the information.\tEnfin nous avons eu l'information.\nAt that time, I was still awake.\tÀ ce moment-là, j'étais encore éveillé.\nAt that time, Tom was in Boston.\tÀ ce moment, Thomas était à Boston.\nBabies are interesting to watch.\tLes bébés sont intéressants à observer.\nBe careful not to hurt yourself.\tFais attention à ne pas te faire de mal !\nBe careful not to hurt yourself.\tFaites attention à ne pas vous faire de mal !\nBe careful. That knife is sharp.\tSois prudent. Ce couteau est aiguisé.\nBeethoven wrote nine symphonies.\tBeethoven a écrit neuf symphonies.\nBeijing is the capital of China.\tPékin est la capitale de la Chine.\nBelgium is not as big as France.\tLa Belgique n'est pas aussi grande que la France.\nBig people aren't always strong.\tLes gens qui sont grands ne sont pas toujours forts.\nBirds make their nests in trees.\tLes oiseaux font leurs nids dans les arbres.\nBoth countries are now at peace.\tLes deux pays sont maintenant en paix.\nBoth my parents are at home now.\tMes deux parents sont à la maison maintenant.\nBoth of my brothers are married.\tTous mes frères sont mariés.\nBoth of the windows were broken.\tLes deux vitres étaient brisées.\nBoth of them are very brilliant.\tIls sont tous les deux très talentueux.\nBoth sisters are very beautiful.\tLes sœurs sont toutes les deux très belles.\nBoth sisters are very beautiful.\tLes deux sœurs sont très belles.\nBusiness has really slowed down.\tLes affaires se sont vraiment ralenties.\nBy chance, I found a hot spring.\tPar chance, je suis tombé sur une source chaude.\nBy the way, what's your address?\tAu fait, quelle est votre adresse ?\nBy the way, what's your address?\tPar ailleurs, quelle est ton adresse?\nCall me at six tomorrow morning.\tAppelle-moi à six heures demain matin.\nCall me when you get settled in.\tAppelez-moi quand vous serez installé.\nCan I get either of you a drink?\tPuis-je aller chercher une boisson à un de vous deux ?\nCan I see your driver's license?\tPuis-je voir votre permis de conduire ?\nCan I take that as a compliment?\tPuis-je prendre cela comme un compliment ?\nCan I try on this pair of shoes?\tPuis-je essayer cette paire de chaussures?\nCan Tom read and write Japanese?\tEst-ce que Tom sait lire et écrire le japonais ?\nCan anyone report anything good?\tQuiconque peut-il faire part de quoi que ce soit de positif ?\nCan cats really see in the dark?\tEst-ce que les chats peuvent vraiment voir dans le noir ?\nCan the lawyer see me on Friday?\tEst-ce que l'avocat peut me voir vendredi?\nCan you check the tire pressure?\tPeux-tu vérifier la pression des pneus ?\nCan you determine what happened?\tPouvez-vous déterminer ce qui s'est passé ?\nCan you determine what happened?\tPouvez-vous déterminer ce qui est arrivé ?\nCan you determine what happened?\tPouvez-vous déterminer ce qui a eu lieu ?\nCan you determine what happened?\tPeux-tu déterminer ce qui s'est passé ?\nCan you determine what happened?\tPeux-tu déterminer ce qui est arrivé ?\nCan you determine what happened?\tPeux-tu déterminer ce qui a eu lieu ?\nCan you do some shopping for me?\tPouvez-vous me faire les courses ?\nCan you figure out this problem?\tPeux-tu résoudre ce problème ?\nCan you figure out this problem?\tPouvez-vous résoudre ce problème ?\nCan you get Tom to a safe place?\tPeux-tu emmener Tom dans un endroit sûr ?\nCan you give me another example?\tPouvez-vous me fournir un autre exemple ?\nCan you give me another example?\tPeux-tu me fournir un autre exemple ?\nCan you hold on a little longer?\tPouvez-vous attendre un peu plus longtemps ?\nCan you hold on a little longer?\tNe pouvez-vous rester un peu plus longtemps ?\nCan you make sense of this poem?\tPeux-tu décrypter ce poème ?\nCan you please close the window?\tPeux-tu fermer la fenêtre, je te prie ?\nCan you please close the window?\tPouvez-vous fermer la fenêtre, je vous prie ?\nCan you put the children to bed?\tPeux-tu coucher les enfants ?\nCan you see anything over there?\tPeux-tu voir quelque chose là-bas ?\nCan you take Tom to the airport?\tPeux-tu emmener Tom à l'aéroport ?\nCan you take Tom to the airport?\tPouvez-vous emmener Tom à l'aéroport ?\nCarry her to the operating room.\tPortez-la en salle d'opération.\nCars took the place of bicycles.\tLa voiture a remplacé la bicyclette.\nCars took the place of bicycles.\tLes voitures ont pris la place des vélos.\nCash donations will be accepted.\tLes dons en espèces seront acceptés.\nCats are smarter than you think.\tLes chats sont plus malins que tu ne penses.\nCats are smarter than you think.\tLes chats sont plus malins que vous ne pensez.\nCats are smarter than you think.\tLes chats sont plus malins qu'on ne pense.\nChildren need to be disciplined.\tLes enfants ont besoin d'être punis.\nChildren often ask me for money.\tLes enfants me demandent souvent de l'argent.\nChildren often do stupid things.\tLes enfants font souvent des choses stupides.\nChildren often do stupid things.\tLes enfants font souvent des trucs stupides.\nChoose any one from among these.\tChoisissez-en un parmi ceux-ci.\nChristmas is only two weeks off.\tNoël n'est que dans deux semaines.\nClick here for more information.\tCliquez ici pour de l'information additionnelle.\nClick here for more information.\tCliquez ici pour de l'information supplémentaire.\nClick here for more information.\tCliquez ici pour davantage d'information.\nClick here to create an account.\tCliquez ici pour créer un compte.\nClick here to create an account.\tClique ici pour créer un compte.\nClose your eyes and go to sleep.\tFerme les yeux et dors.\nCoffee is Brazil's main product.\tLe café est la principale production du Brésil.\nColds are prevalent this winter.\tIl y a beaucoup de rhumes cet hiver.\nCome and see me once in a while.\tViens me voir de temps en temps.\nCome and see me once in a while.\tVenez me voir de temps en temps.\nCome on! We're going to be late.\tDépêchons-nous ! Nous allons être en retard.\nCome to my house this afternoon.\tVenez chez moi cet après-midi.\nCondors have never bred in zoos.\tLes condors n'ont jamais été élevés au zoo.\nConnect the two cables together.\tConnectez ensemble les deux câbles.\nConnect the two cables together.\tConnecte ensemble les deux câbles.\nCookie is a good name for a dog.\tCookie est un bon nom pour un chien.\nCorrect the following sentences.\tCorrigez les phrases suivantes.\nCorrect the following sentences.\tCorrige les phrases suivantes.\nCould you call a doctor, please?\tPourriez-vous appeler un médecin, s'il vous plaît.\nCould you cancel my reservation?\tPourrais-tu annuler ma réservation ?\nCould you do me a small service?\tPourriez-vous me rendre un petit service?\nCould you do this instead of me?\tPourrais-tu faire ceci à ma place ?\nCould you do this instead of me?\tPourriez-vous faire ceci à ma place ?\nCould you get in touch with him?\tPourrais-tu le contacter ?\nCould you get in touch with him?\tPourrais-tu prendre contact avec lui ?\nCould you get in touch with him?\tPourriez-vous le contacter ?\nCould you get in touch with him?\tPourriez-vous prendre contact avec lui ?\nCould you give me a leg up here?\tPeux-tu me faire la courte échelle, là ?\nCould you give me a leg up here?\tPouvez-vous me faire la courte échelle, là ?\nCould you give me a little help?\tTu pourrais me donner un petit coup de main ?\nCould you give me some examples?\tPourrais-tu me donner quelques exemples ?\nCould you give me some examples?\tPourriez-vous me donner quelques exemples ?\nCould you please do that for me?\tPourriez-vous, je vous prie, le faire pour moi ?\nCould you please do that for me?\tPourrais-tu, je te prie, le faire pour moi ?\nCould you write it down, please?\tPeux-tu l'écrire s'il te plait ?\nCreationism is a pseudo-science.\tLe créationnisme est une pseudo-science.\nCross out all the wrong answers.\tFais une croix sur toutes les mauvaises réponses.\nCuriosity got the better of him.\tIl se laissa aller à la curiosité.\nCuriosity got the better of him.\tIl s'est laissé aller à la curiosité.\nCurrently, he's our best batter.\tActuellement, c'est notre meilleur batteur.\nDeath is preferable to dishonor.\tLa mort est préférable au déshonneur.\nDid I just say something stupid?\tEst-ce que je viens de dire quelque chose d'idiot ?\nDid I understand that correctly?\tAi-je compris cela correctement ?\nDid Tom confess to killing Mary?\tTom a-t-il avoué avoir tué Mary ?\nDid anyone see you come in here?\tQuiconque vous a-t-il vu entrer ici ?\nDid anyone see you come in here?\tQuiconque t'a-t-il vu entrer ici ?\nDid anyone see you come in here?\tQuiconque vous a-t-il vu venir ici ?\nDid anyone see you come in here?\tQuiconque t'a-t-il vu venir ici ?\nDid anyone see you on the beach?\tQui que ce soit vous a-t-il vu sur la plage ?\nDid anyone see you on the beach?\tQui que ce soit t'a-t-il vu sur la plage ?\nDid anyone see you on the beach?\tQuiconque vous a-t-il vu sur la plage ?\nDid anyone see you on the beach?\tQuiconque t'a-t-il vu sur la plage ?\nDid you buy a round trip ticket?\tAs-tu acheté un billet aller-retour ?\nDid you do yesterday's homework?\tAs-tu fait les devoirs d'hier ?\nDid you enjoy reading that book?\tAs-tu pris plaisir à lire le livre ?\nDid you enjoy reading that book?\tAvez-vous pris plaisir à lire le livre ?\nDid you hear my show last night?\tAs-tu écouté mon spectacle hier soir ?\nDid you just hear what you said?\tViens-tu d'entendre ce que tu as dit ?\nDid you just hear what you said?\tVenez-vous d'entendre ce que vous avez dit ?\nDid you play baseball yesterday?\tAs-tu joué au baseball hier ?\nDid you see Tom at school today?\tAs-tu vu Tom à l'école aujourd'hui ?\nDid you see Tom at school today?\tAvez-vous vu Tom à l'école aujourd'hui ?\nDid you see anyone on the beach?\tAvez-vous vu qui que ce soit sur la plage ?\nDid you see anyone on the beach?\tAs-tu vu qui que ce soit sur la plage ?\nDidn't you used to be a teacher?\tN'as-tu pas pris l'habitude d'être enseignant ?\nDinner is probably ready by now.\tLe dîner est probablement prêt à l'heure qu'il est.\nDo I have to take this medicine?\tDois-je prendre ce médicament ?\nDo I have to wear a tie at work?\tDois-je porter une cravate au travail ?\nDo not cast pearls before swine.\tNe donnez pas de la confiture aux cochons.\nDo not give in to those demands.\tNe te soumets pas à ces exigences.\nDo not give in to those demands.\tNe cède pas à ces exigences.\nDo the police have any suspects?\tLa police a-t-elle de quelconques suspects ?\nDo the police have any suspects?\tLa police a-t-elle le moindre suspect ?\nDo we need a universal language?\tAvons-nous besoin d'un langage universel ?\nDo you care for classical music?\tVous intéressez-vous à la musique classique ?\nDo you deny that you went there?\tNiez-vous y être allé ?\nDo you deny that you went there?\tNiez-vous y être allés ?\nDo you deny that you went there?\tNies-tu t'y être rendu ?\nDo you eat rice in your country?\tMangez-vous du riz dans votre pays ?\nDo you enjoy living dangerously?\tTu aimes vivre dangereusement ?\nDo you enjoy living dangerously?\tVous aimez vivre dangereusement ?\nDo you expect me to believe you?\tEspères-tu que je te croie ?\nDo you expect me to believe you?\tEspérez-vous que je vous croie ?\nDo you feel like going swimming?\tAs-tu envie d'aller nager ?\nDo you feel like going swimming?\tAs-tu envie d'aller nager ?\nDo you feel like going swimming?\tAvez-vous envie d'aller nager ?\nDo you feel like having a drink?\tAs-tu envie de prendre un verre ?\nDo you feel like having a drink?\tAvez-vous envie de prendre un verre ?\nDo you get along with your boss?\tT'entends-tu bien avec ton patron ?\nDo you have Japanese newspapers?\tAvez-vous des journaux japonais ?\nDo you have a French dictionary?\tAvez-vous un dictionnaire de français ?\nDo you have a guilty conscience?\tTu as quelque chose sur la conscience ?\nDo you have a guilty conscience?\tAvez-vous quelque chose sur la conscience ?\nDo you have any books in French?\tAs-tu des livres en français ?\nDo you have any messages for me?\tAvez-vous quelques messages pour moi ?\nDo you have any plans for today?\tAs-tu des projets pour la journée ?\nDo you have any plans for today?\tAs-tu quelque chose de prévu aujourd'hui ?\nDo you have change for a dollar?\tAs-tu la monnaie d'un dollar ?\nDo you have change for a dollar?\tAvez-vous la monnaie d'un dollar ?\nDo you have less expensive ones?\tEn avez-vous de moins chers ?\nDo you have school on Saturdays?\tVas-tu à l'école le samedi ?\nDo you know anyone in Australia?\tConnais-tu quelqu'un en Australie ?\nDo you know anyone in Australia?\tConnaissez-vous quelqu'un en Australie ?\nDo you know how his father died?\tSais-tu comment son père est mort ?\nDo you know how his father died?\tSavez-vous comment son père est mort ?\nDo you know how to ride a horse?\tSavez-vous monter à cheval ?\nDo you know how to ride a horse?\tSais-tu monter à cheval ?\nDo you know what they're called?\tSais-tu comment on les appelle ?\nDo you know what this is called?\tSais-tu comment ceci s'appelle ?\nDo you know what this is called?\tSavez-vous comment ceci s'appelle ?\nDo you know who wrote this book?\tEst-ce que tu sais qui a écrit ce livre ?\nDo you know who wrote this book?\tSais-tu qui a écrit ce livre ?\nDo you mind if I take a day off?\tVois-tu un inconvénient à ce que je prenne un jour de congé ?\nDo you mind if I take a day off?\tVoyez-vous un inconvénient à ce que je prenne un jour de congé ?\nDo you mind if I turn on the TV?\tVois-tu un inconvénient à ce que j'allume la télé ?\nDo you need any help doing that?\tAs-tu besoin d'aide pour faire ça ?\nDo you think Tom killed himself?\tCrois-tu que Thomas se soit suicidé ?\nDo you think animals have souls?\tPensez-vous que les animaux ont une âme ?\nDo you think her story is false?\tEst-ce que tu crois que son histoire est fausse ?\nDo you think her story is false?\tPenses-tu que son histoire est fausse ?\nDo you think her story is false?\tPensez-vous que son histoire est fausse ?\nDo you think it's going to snow?\tPenses-tu qu'il va neiger ?\nDo you think it's going to snow?\tPensez-vous qu'il va neiger ?\nDo you think that's significant?\tPenses-tu que ce soit significatif ?\nDo you think that's significant?\tPensez-vous que ce soit important ?\nDo you think that's what I want?\tPenses-tu que c'est ce que je veux ?\nDo you think that's what I want?\tPensez-vous que cela soit ce que je veux ?\nDo you think you could be a cop?\tPensez-vous que vous pourriez être flic ?\nDo you think you could be a cop?\tPenses-tu que tu pourrais être flic ?\nDo you want me to walk you home?\tVeux-tu que je t'accompagne chez toi ?\nDo you want me to walk you home?\tVoulez-vous que je vous accompagne chez vous ?\nDo you want some of these fries?\tVeux-tu quelques-unes de ces frites ?\nDo you want some of these fries?\tVoulez-vous quelques-unes de ces frites ?\nDo you work well under pressure?\tEst-ce que vous travaillez bien sous pression ?\nDo your best in anything you do.\tFais de ton mieux dans tout ce que tu fais.\nDo your parents know about this?\tEst-ce que vos parents savent ça ?\nDo your parents know about this?\tVos parents savent-ils cela ?\nDo your parents know about this?\tTes parents savent-ils cela ?\nDoes anyone here speak Japanese?\tEst-ce que quelqu'un ici parle japonais ?\nDoes anyone here speak Japanese?\tEst-ce que quelqu'un parle japonais ici ?\nDoes anyone want to do anything?\tQuiconque veut-il faire quoi que ce soit ?\nDoes it snow much in the winter?\tNeige-t-il beaucoup en hiver ?\nDoes she know your phone number?\tConnaît-elle votre numéro de téléphone ?\nDoes she know your phone number?\tConnaît-elle ton numéro de téléphone ?\nDoes this medicine work quickly?\tCe médicament agit-il rapidement ?\nDoes your school have a library?\tVotre école dispose-t-elle d'une bibliothèque ?\nDoes your school have a library?\tTon école dispose-t-elle d'une bibliothèque ?\nDon't I even get an explanation?\tN'ai-je pas même droit à une explication ?\nDon't I know you from somewhere?\tEst-ce que je ne vous connais pas de quelque part ?\nDon't be ashamed of who you are.\tN'ayez pas honte de ce que vous êtes.\nDon't be ashamed of who you are.\tN'aie pas honte de ce que tu es.\nDon't believe anything they say.\tNe crois à rien de ce qu'ils disent !\nDon't believe anything they say.\tNe crois à rien de ce qu'elles disent !\nDon't believe anything they say.\tNe croyez à rien de ce qu'ils disent !\nDon't believe anything they say.\tNe croyez à rien de ce qu'elles disent !\nDon't change your mind so often.\tNe change pas d'avis si souvent.\nDon't change your mind so often.\tNe changez pas si souvent d'avis.\nDon't come unless I tell you to.\tÀ moins que je ne vous le dise, ne venez pas.\nDon't depend too much on others.\tNe dépends pas trop des autres.\nDon't depend too much on others.\tNe dépendez pas trop des autres.\nDon't do anything I wouldn't do.\tNe fais rien que je ne ferais.\nDon't do anything you'll regret.\tNe fais rien que tu regretteras.\nDon't do anything you'll regret.\tNe faites rien que vous regretterez.\nDon't drink on an empty stomach.\tNe buvez pas l'estomac vide !\nDon't drive under the influence.\tNe conduis pas sous l'influence de l'alcool.\nDon't expect anyone to help you.\tNe t'attends pas à ce que quiconque t'aide !\nDon't expect anyone to help you.\tNe vous attendez pas à ce que quiconque vous aide !\nDon't expect anyone to help you.\tNe t'attends pas à ce que qui que ce soit t'aide !\nDon't expect anyone to help you.\tNe vous attendez pas à ce que qui que ce soit vous aide !\nDon't fail to come here by five.\tNe manquez pas de venir ici à cinq heures.\nDon't forget that she's a woman.\tN'oubliez pas qu'il s'agit d'une femme !\nDon't forget that she's a woman.\tN'oublie pas qu'il s'agit d'une femme !\nDon't forget to mail the letter.\tN'oublie pas de poster la lettre.\nDon't forget to mail the letter.\tN'oubliez pas de poster la lettre.\nDon't forget to mail the letter.\tN'oublie pas de mettre la lettre au courrier.\nDon't forget to mail the letter.\tN'oubliez pas de mettre la lettre au courrier.\nDon't forget to send the letter.\tN'oublie pas de poster la lettre.\nDon't forget to send the letter.\tN'oubliez pas de poster la lettre.\nDon't forget to take your pills.\tN'oubliez pas de prendre votre pilule !\nDon't forget to take your pills.\tN'oubliez pas de prendre vos pilules !\nDon't forget to take your pills.\tN'oublie pas de prendre ta pilule !\nDon't forget to take your pills.\tN'oublie pas de prendre tes pilules !\nDon't hesitate to ask questions.\tN'hésitez pas à poser des questions.\nDon't judge a book by its cover.\tNe juge pas un livre sur sa couverture.\nDon't let anyone enter the room.\tNe laisse personne pénétrer dans la pièce.\nDon't let her go out after dark.\tNe la laisse pas sortir après la tombée de la nuit.\nDon't let her go out after dark.\tNe la laissez pas sortir après la tombée de la nuit.\nDon't let opportunities pass by.\tNe laisse pas filer les occasions.\nDon't let opportunities pass by.\tNe laissez pas filer les occasions.\nDon't let that dog come near me!\tNe laisse pas ce chien m'approcher !\nDon't let that dog come near me!\tNe laissez pas ce chien m'approcher !\nDon't let your mother know that.\tQue ta mère n'en sache rien !\nDon't let your mother know that.\tQue votre mère n'en sache rien !\nDon't make a decision right now.\tNe prends pas de décision immédiatement !\nDon't make a decision right now.\tNe prenez pas de décision immédiatement !\nDon't open the door for anybody.\tN'ouvrez la porte à personne.\nDon't open the door for anybody.\tN'ouvrez la porte à quiconque.\nDon't open the door for anybody.\tN'ouvre la porte à personne.\nDon't play baseball in the park.\tNe jouez pas au baseball dans le parc.\nDon't risk your fortune on that.\tN'y risquez pas votre fortune !\nDon't talk back to me like that.\tNe me réponds pas comme ça.\nDon't talk back to me like that.\tNe me répondez pas comme cela.\nDon't talk in a loud voice here.\tNe parle pas fort ici.\nDon't talk to me about religion.\tNe me parle pas de religion !\nDon't talk to me about religion.\tNe me parlez pas de religion !\nDon't talk with your mouth full.\tTu ne dois pas parler la bouche pleine.\nDon't tell me you didn't see it.\tNe me dis pas que tu ne l'as pas vu.\nDon't tell me you're not scared.\tNe me dites pas que vous n'avez pas peur !\nDon't tell me you're not scared.\tNe me dis pas que tu n'as pas peur !\nDon't waste your time and money.\tNe gaspille pas ton temps ni ton argent.\nDon't worry. I'll be right back.\tNe vous en faites pas ! Je serai bientôt de retour.\nDon't worry. I'll be right back.\tNe t'en fais pas ! Je serai bientôt de retour.\nDon't worry. I'll be right back.\tNe vous faites pas de souci ! Je serai bientôt de retour.\nDon't worry. I'll be right back.\tNe te fais pas de souci ! Je serai bientôt de retour.\nDon't worry. I'll stay with you.\tNe t'en fais pas, je suis à tes côtés.\nDon't worry. My lips are sealed.\tNe t'en fais pas, je suis muet comme une tombe.\nDon't you check your voice mail?\tNe vérifies-tu pas tes messages vocaux ?\nDon't you check your voice mail?\tNe vérifiez-vous pas vos messages vocaux ?\nDon't you see what you're doing?\tNe vois-tu pas ce que tu es en train de faire ?\nDon't you see what you're doing?\tNe voyez-vous pas ce que vous êtes en train de faire ?\nDon't you want something to eat?\tNe veux-tu pas quelque chose à manger ?\nDon't you want something to eat?\tNe voulez-vous pas quelque chose à manger ?\nDon't you want to see the world?\tNe voulez-vous pas voir le monde ?\nDon't you want to see the world?\tNe veux-tu pas voir le monde ?\nDr. Smith has a lot of patients.\tLe Dr Smith a beaucoup de patients.\nDr. Smith has a lot of patients.\tLe docteur Smith a beaucoup de patients.\nEdison was not a bright student.\tEdison n'était pas un étudiant brillant.\nEducation is the key to success.\tL'éducation est la clé du succès.\nEither you or I will have to go.\tL'un de nous deux devra partir.\nElection day was cold and rainy.\tLe jour de l'élection fut froid et pluvieux.\nEnglish is not my mother tongue.\tL'anglais n'est pas ma langue natale.\nEnglish is not my mother tongue.\tL'anglais n'est pas ma langue maternelle.\nEven children can understand it.\tMême les enfants peuvent comprendre cela.\nEvery cloud has a silver lining.\tÀ toute chose malheur est bon.\nEvery religion prohibits murder.\tChaque religion interdit le meurtre.\nEverybody should have a purpose.\tTout le monde devrait avoir un but.\nEverybody wants permanent peace.\tTout le monde veut une paix durable.\nEverybody wants permanent peace.\tTout le monde voudrait une paix durable.\nEverybody's life is complicated.\tLa vie de tout le monde est compliquée.\nEveryone has to start somewhere.\tIl faut bien commencer.\nEveryone in her class likes her.\tChacun dans sa classe l'aime.\nEveryone in town knows his name.\tEn ville, tout le monde connaît son nom.\nEveryone needs to work together.\tIl faut que tout le monde travaille de concert.\nEverything I did, I did for Tom.\tTout ce que j'ai fait, je l'ai fait pour Tom.\nEverything happened all at once.\tTout s'est passé d'un coup.\nEverything happened all at once.\tTout est arrivé d'un coup.\nEverything happened all at once.\tTout a eu lieu d'un coup.\nEverything happens for a reason.\tIl y a une raison à tout.\nEverything is all right at home.\tTout va bien à la maison.\nEverything is now ready for you.\tTout est maintenant prêt pour vous.\nEverything is now ready for you.\tTout est maintenant prêt pour toi.\nEverything seems to be in order.\tTout semble être en ordre.\nEverything you've heard is true.\tTout ce que tu as entendu est vrai.\nEverything's going be all right.\tTout ira bien.\nEverything's going be all right.\tTout va bien se passer.\nExcuse me, do you have the time?\tExcusez-moi, avez-vous l'heure ?\nExercise makes your body strong.\tL'exercice rend ton corps plus fort.\nFarmers sow seeds in the spring.\tLes paysans sèment au printemps.\nFerrets are playful and curious.\tLes furets sont joueurs et curieux.\nFew girls can even speak to him.\tPeu de filles peuvent même lui parler.\nFive gallons of regular, please.\tCinq gallons d'ordinaire s'il vous plait.\nFrankly, I don't like your idea.\tFranchement, je n'aime pas ton idée.\nFrankly, I don't like your idea.\tFranchement, je ne goûte guère ton idée.\nFrankly, I don't like your idea.\tFranchement, je ne goûte guère votre idée.\nFrankly, I don't like your idea.\tFranchement, je n'aime pas votre idée.\nFrench is Tom's native language.\tLe français est la langue native de Tom.\nFrench isn't difficult to learn.\tLe français n'est pas difficile à apprendre.\nFriendship is a matter of trust.\tL'amitié est question de confiance.\nFriendship is a matter of trust.\tL'amitié est une question de confiance.\nGet it done as soon as possible.\tFais-le faire le plus tôt possible.\nGet out your notebooks and pens.\tSortez vos cahiers et vos stylos.\nGet rid of things you don't use.\tDébarrasse-toi des choses que tu n'utilises pas.\nGet up early, or you'll be late.\tLève-toi tôt sinon tu seras en retard.\nGive credit where credit is due.\tHonneur à celui auquel l'honneur est dû.\nGive credit where credit is due.\tHonorez celui auquel l'honneur revient.\nGive me something cold to drink.\tDonne-moi quelque chose de frais à boire.\nGive me something to write with.\tDonnez-moi quelque chose pour écrire.\nGo straight on down this street.\tAllez tout le long de cette rue.\nGo straight on down this street.\tVa tout droit dans cette rue.\nGrammar is a very complex thing.\tLa grammaire est quelque chose de très compliqué.\nGuess what I found on the beach.\tDevine ce que j'ai trouvé sur la plage.\nGuess what I want to talk about.\tDevine ce dont j'ai envie de parler.\nGuess what I want to talk about.\tDevinez ce dont je veux parler.\nHalf of the students are absent.\tLa moitié des étudiants sont absents.\nHamlet is a play by Shakespeare.\tHamlet est une pièce de Shakespeare.\nHas anybody here been to Hawaii?\tQuelqu'un ici est-il allé à Hawaï ?\nHas anybody solved this mystery?\tEst-ce que quelqu'un a résolu ce mystère ?\nHas anybody solved this mystery?\tQuelqu'un a-t-il résolu le mystère ?\nHas he lived here for two years?\tVit-il ici depuis deux ans ?\nHave I caught you at a bad time?\tEst-ce que je vous surprends au mauvais moment ?\nHave I caught you at a bad time?\tEst-ce que je te surprends au mauvais moment ?\nHave any letters arrived for me?\tY a-t-il quelque lettre pour moi ?\nHave you already read this book?\tAs-tu déjà lu ce livre ?\nHave you already read this book?\tAvez-vous déjà lu le livre ?\nHave you always been so selfish?\tAs-tu toujours été si égoïste ?\nHave you asked if they want one?\tAs-tu demandé s'ils en voulaient un ?\nHave you asked if they want one?\tAs-tu demandé s'ils en voulaient une ?\nHave you asked if they want one?\tAs-tu demandé si elles en voulaient un ?\nHave you asked if they want one?\tAs-tu demandé si elles en voulaient une ?\nHave you asked if they want one?\tAvez-vous demandé si elles en voulaient un ?\nHave you asked if they want one?\tAvez-vous demandé si elles en voulaient une ?\nHave you asked if they want one?\tAvez-vous demandé s'ils en voulaient un ?\nHave you asked if they want one?\tAvez-vous demandé s'ils en voulaient une ?\nHave you been told when to come?\tVous a-t-on dit quand venir ?\nHave you begun studying English?\tEst-ce que tu as commencé à apprendre l'anglais ?\nHave you done all your homework?\tAs-tu fait tous tes devoirs ?\nHave you done all your homework?\tAvez-vous fait tous vos devoirs ?\nHave you ever seen Tom's mother?\tTu as déjà vu la mère de Tom ?\nHave you finished breakfast yet?\tAs-tu déjà fini le petit-déjeuner ?\nHave you finished breakfast yet?\tAs-tu déjà fini ton petit-déjeuner ?\nHave you finished breakfast yet?\tAvez-vous déjà fini le petit-déjeuner ?\nHave you finished breakfast yet?\tAvez-vous déjà fini votre petit-déjeuner ?\nHave you gone completely insane?\tEs-tu devenu complètement dingue ?\nHave you gone completely insane?\tÊtes-vous complètement devenue folle ?\nHave you gone completely insane?\tÊtes-vous devenu complètement fou ?\nHave you made your decision yet?\tAs-tu déjà pris ta décision ?\nHave you made your decision yet?\tAvez-vous déjà pris votre décision ?\nHave you read this book already?\tAs-tu déjà lu ce livre ?\nHave you read this book already?\tAvez-vous déjà lu ce livre ?\nHave you read today's paper yet?\tAvez-vous déjà lu le journal d'aujourd'hui ?\nHave you taken your temperature?\tAs-tu pris ta température ?\nHave you turned off the gas yet?\tAs-tu déjà coupé le gaz ?\nHaven't you learned your lesson?\tN'as-tu pas appris ta leçon ?\nHaven't you learned your lesson?\tN'avez-vous pas appris votre leçon ?\nHe always borrows money from me.\tIl m'emprunte toujours de l'argent.\nHe always gets home at 6:00 p.m.\tIl arrive toujours chez lui à dix-huit heures.\nHe appreciates Japanese culture.\tIl apprécie la culture japonaise.\nHe asked if I like Chinese food.\tIl a demandé si j'aime la nourriture chinoise.\nHe asked me for my phone number.\tIl m'a demandé mon numéro de téléphone.\nHe attended the party yesterday.\tIl s'est rendu à la fête hier.\nHe behaves as if he were insane.\tIl se comporte comme s'il était fou.\nHe believes he knows everything.\tIl croit tout savoir.\nHe believes in the supernatural.\tIl croit au surnaturel.\nHe broke his arm playing soccer.\tIl se cassa le bras en jouant au football.\nHe broke in on our conversation.\tIl interrompit notre discussion.\nHe buried his head in his hands.\tIl se couvrit la tête de ses mains.\nHe came home at almost midnight.\tIl vînt à la maison presqu'à minuit.\nHe came in spite of bad weather.\tIl est venu en dépit du mauvais temps.\nHe can cook as well as his wife.\tIl peut cuisiner aussi bien que sa femme.\nHe can hardly speak any English.\tIl sait à peine parler anglais.\nHe closely resembles his father.\tIl ressemble beaucoup à son père.\nHe confessed that he was guilty.\tIl s'avoua coupable.\nHe couldn't help laughing at it.\tIl ne pouvait s'empêcher d'en rire.\nHe couldn't help laughing at it.\tIl ne put s'empêcher d'en rire.\nHe couldn't hold back his tears.\tIl ne put retenir ses larmes.\nHe couldn't hold back his tears.\tIl n'a pas pu retenir ses larmes.\nHe couldn't remember my address.\tIl ne pouvait se souvenir de mon adresse.\nHe delayed answering the letter.\tIl a retardé la réponse à cette lettre.\nHe deliberately broke the glass.\tIl a délibérément brisé la vitre.\nHe demanded payment of the debt.\tIl exigea le remboursement de la dette.\nHe denied that he knew that man.\tIl nia connaître cet homme.\nHe denied that he was the thief.\tIl nia être le voleur.\nHe described his own experience.\tIl a décrit sa propre expérience.\nHe did it in front of the staff.\tIl le fit devant le personnel.\nHe did it in front of the staff.\tIl le fit au vu et au su du personnel.\nHe did it in front of the staff.\tIl l'a fait devant le personnel.\nHe did it in front of the staff.\tIl l'a fait au vu et au su du personnel.\nHe did it the way I told him to.\tIl l'a fait de la manière dont je lui avais indiqué.\nHe did it the way I told him to.\tIl le fit de la manière que je lui avais indiquée.\nHe did not work on Sunday night.\tIl n'a pas travaillé dimanche soir.\nHe did what I wanted right away.\tIl fit immédiatement ce que je voulais.\nHe didn't carry out his promise.\tIl n'accomplit pas sa promesse.\nHe didn't give me time to think.\tIl ne m'a pas donné le temps de réfléchir.\nHe didn't want to sell the book.\tIl ne voulut pas vendre le livre.\nHe didn't want to sell the book.\tIl ne voulut pas vendre l'ouvrage.\nHe didn't want to sell the book.\tIl n'a pas voulu vendre le livre.\nHe didn't want to sell the book.\tIl n'a pas voulu vendre l'ouvrage.\nHe differs from me in some ways.\tIl est différent de moi en plusieurs points.\nHe disagrees with his relatives.\tIl n'est pas d'accord avec sa famille.\nHe disguised himself as a woman.\tIl s'est déguisé en femme.\nHe does everything very quickly.\tIl fait tout très rapidement.\nHe does not like being punished.\tIl n'aime pas être puni.\nHe does not live there any more.\tIl n'habite plus là.\nHe does nothing but read comics.\tIl ne fait rien d'autre que de lire des bandes dessinées.\nHe doesn't look happy to see me.\tIl n'a pas l'air heureux de me voir.\nHe doesn't look happy to see us.\tIl n'a pas l'air heureux de nous voir.\nHe doesn't read many newspapers.\tIl ne lit pas beaucoup de journaux.\nHe doesn't read many newspapers.\tIl ne lit guère de journaux.\nHe doesn't understand the risks.\tIl ne comprend pas les risques.\nHe doesn't want to get involved.\tIl ne veut pas être impliqué.\nHe drank three glasses of water.\tIl a bu trois verres d'eau.\nHe dropped the cup and broke it.\tIl laissa tomber la tasse, qui se cassa.\nHe earns his living by teaching.\tIl gagne sa vie en enseignant.\nHe feels weak after his illness.\tIl se sent faible après sa maladie.\nHe felt himself being lifted up.\tIl se sentit être soulevé.\nHe felt himself being lifted up.\tIl s'est senti être soulevé.\nHe filled the bottle with water.\tIl remplit la bouteille d'eau.\nHe filled the bottle with water.\tIl a rempli la bouteille avec de l'eau.\nHe filled the bucket with water.\tIl remplit le seau d'eau.\nHe finally fulfilled my request.\tIl a finalement accédé à ma demande.\nHe fixed the problem in a jiffy.\tIl régla le problème en un éclair.\nHe forgot to turn off the light.\tIl a oublié d'éteindre la lumière.\nHe gave her a peck on the cheek.\tIl lui donna un baiser sur la joue.\nHe gave his seat to the old man.\tIl céda sa place au vieil homme.\nHe gets hives when he eats eggs.\tIl fait de l'urticaire lorsqu'il consomme des œufs.\nHe gets hives when he eats eggs.\tIl fait de l'urticaire lorsqu'il mange des œufs.\nHe goes fishing every other day.\tIl va pêcher tous les deux jours.\nHe goes to Karuizawa every year.\tIl va à Karuizawa chaque année.\nHe goes to bed at eight o'clock.\tIl va au lit à huit heures.\nHe got dressed and went outside.\tIl se vêtit et sortit.\nHe got dressed and went outside.\tIl s'habilla et sortit.\nHe got the twelve o'clock train.\tIl a eu le train de midi.\nHe grows tomatoes in his garden.\tIl cultive des tomates dans son jardin.\nHe had a second helping of soup.\tOn lui donna une seconde fois de la soupe.\nHe has a daughter who is pretty.\tIl a une fille qui est jolie.\nHe has a natural bent for music.\tIl a un penchant naturel pour la musique.\nHe has an estate in the country.\tIl possède un domaine à la campagne.\nHe has an uncontrollable temper.\tIl a un caractère incontrôlable.\nHe has been dead for five years.\tIl est mort depuis cinq ans.\nHe has been dead for five years.\tIl est mort depuis 5 ans.\nHe has been like a father to me.\tIl a été comme un père pour moi.\nHe has been very busy this week.\tIl était très occupé cette semaine.\nHe has been waiting for an hour.\tCela fait une heure qu'il attend.\nHe has many tenants on his land.\tIl a de nombreux locataires sur sa terre.\nHe has no friends to advise him.\tIl n'a pas d'amis pour le conseiller.\nHe has no hope of getting ahead.\tIl n'a aucun espoir d'avancement.\nHe has started acting strangely.\tIl s'est mis à se comporter bizarrement.\nHe has started to write a novel.\tIl s'est mis à écrire un roman.\nHe has started to write a novel.\tIl a commencé à écrire un roman.\nHe hastily wrote down our names.\tIl a écrit hâtivement nos noms.\nHe held on firmly to the branch.\tIl se tint fermement à la branche.\nHe held on firmly to the branch.\tIl s'est tenu fermement à la branche.\nHe helped the lady into the car.\tIl aida la dame à monter dans la voiture.\nHe hired a private investigator.\tIl a engagé un détective privé.\nHe hired a private investigator.\tIl engagea un détective privé.\nHe hit the ball with his racket.\tIl frappa la balle avec sa raquette.\nHe hit two birds with one stone.\tIl fit d'une pierre deux coups.\nHe hung a lamp from the ceiling.\tIl accrocha une lampe au plafond.\nHe inserted the key in the lock.\tIl introduisit la clef dans la serrure.\nHe intends to buy a new bicycle.\tIl a l'intention d'acheter un nouveau vélo.\nHe introduced me to his parents.\tIl me présenta à ses parents.\nHe invested his money in stocks.\tIl a investi son argent en actions.\nHe is a good speaker of English.\tIl est bon en anglais.\nHe is a member in good standing.\tC'est un membre estimé.\nHe is a member of the committee.\tC'est un membre du comité.\nHe is a very imaginative writer.\tC'est un écrivain très imaginatif.\nHe is a very imaginative writer.\tC'est un écrivain plein d'imagination.\nHe is about to leave for London.\tIl est sur le point de partir pour Londres.\nHe is absent because of illness.\tIl est absent pour cause de maladie.\nHe is acquainted with the mayor.\tIl connaît le maire.\nHe is afraid of his grandfather.\tIl a peur de son grand-père.\nHe is afraid of making mistakes.\tIl a peur de faire des erreurs.\nHe is afraid of making mistakes.\tIl craint de commettre des erreurs.\nHe is always at home on Mondays.\tIl est toujours chez lui le lundi.\nHe is always looking for praise.\tIl cherche toujours les compliments.\nHe is careful about his manners.\tIl fait attention à ses manières.\nHe is getting better bit by bit.\tIl s'améliore petit à petit.\nHe is going to explain it to me.\tIl va me l'expliquer.\nHe is included among my friends.\tIl compte parmi mes amis.\nHe is included among my friends.\tIl fait partie de mes amis.\nHe is my brother, not my father.\tC'est mon frère, pas mon père.\nHe is not as tall as his father.\tIl n'est pas aussi grand que son père.\nHe is not ashamed of being poor.\tIl n'a pas honte d'être pauvre.\nHe is not my son, but my nephew.\tCe n'est pas mon fils, c'est mon neveu.\nHe is old enough to drive a car.\tIl est assez âgé pour conduire une voiture.\nHe is proud of being a musician.\tIl est fier d'être musicien.\nHe is reasonable in his demands.\tIl est raisonnable dans ses exigences.\nHe is related to me by marriage.\tIl est mon parent par alliance.\nHe is satisfied with the result.\tIl est satisfait du résultat.\nHe is suffering from a headache.\tIl souffre d'un mal de tête.\nHe is taller than any other boy.\tIl est plus grand que tous les autres garçons.\nHe is the happiest man on earth.\tC'est l'homme le plus heureux du monde.\nHe is unpopular for some reason.\tIl est impopulaire pour une raison quelconque.\nHe is very afraid of his mother.\tIl a très peur de sa mère.\nHe isn't back from the mountain.\tIl n'est pas revenu de la montagne.\nHe keeps on asking me for money.\tIl n'arrête pas de me demander de l'argent.\nHe keeps on asking me for money.\tIl n'arrête pas de me taper de l'argent.\nHe keeps on asking me for money.\tIl n'arrête pas de me taper.\nHe kept a diary during the trip.\tIl a tenu un carnet de voyage pendant son périple.\nHe kept standing against a tree.\tIl se tenait constamment contre un arbre.\nHe kicked him while he was down.\tIl le frappa tandis qu'il était à terre.\nHe kicked him while he was down.\tIl l'a frappé tandis qu'il était à terre.\nHe kindly answered the question.\tIl a gentiment répondu à la question.\nHe knows he did something wrong.\tIl sait qu'il a fait quelque chose de mal.\nHe knows he did something wrong.\tIl sait qu'il a commis quelque chose de mal.\nHe knows nothing about politics.\tIl ne sait rien de la politique.\nHe knows nothing about politics.\tIl ignore tout de la politique.\nHe left for New York a week ago.\tIl est parti pour New York il y a une semaine.\nHe left his son a large fortune.\tIl a laissé à son fils une grosse fortune.\nHe left without saying anything.\tIl est parti sans rien dire.\nHe likes swimming in the summer.\tIl aime à nager durant l'été.\nHe likes swimming in the summer.\tIl aime à nager au cours de l'été.\nHe likes swimming in the summer.\tIl aime nager durant l'été.\nHe likes swimming in the summer.\tIl aime nager au cours de l'été.\nHe likes to cook for his family.\tIl aime cuisiner pour sa famille.\nHe likes to sing in the bathtub.\tIl aime chanter dans la baignoire.\nHe lived to be eighty years old.\tIl vécut jusqu'à quatre-vingts ans.\nHe lived to be eighty years old.\tIl a vécu jusqu'à quatre-vingts ans.\nHe lives all alone in the woods.\tIl vit tout seul dans les bois.\nHe lives apart from his parents.\tIl vit séparément de ses parents.\nHe lives at the top of the hill.\tIl vit au sommet de la colline.\nHe lives far away from my house.\tIl habite très loin de chez moi.\nHe lives far away from my house.\tIl vit très loin de chez moi.\nHe lives in a cozy little house.\tIl vit dans une petite maison douillette.\nHe lives in a cozy little house.\tIl vit dans une confortable petite maison.\nHe lives just around the corner.\tIl vit juste au coin.\nHe looks down on everybody else.\tIl méprise tous les autres.\nHe lost his life in an accident.\tIl a perdu la vie dans un accident.\nHe made a gesture of impatience.\tIl fit un geste d'impatience.\nHe made believe he was a doctor.\tIl fit croire qu'il était médecin.\nHe made up his mind to go there.\tIl s'est décidé à y aller.\nHe made up his mind to go there.\tIl se décida à y aller.\nHe made up his mind to go there.\tIl se décida à s'y rendre.\nHe made up his mind to go there.\tIl s'est décidé à s'y rendre.\nHe majors in English literature.\tIl est diplômé en littérature anglaise.\nHe makes everybody feel at ease.\tIl met tout le monde à l'aise.\nHe may be able to come tomorrow.\tIl est peut-être en mesure de venir demain.\nHe may be able to come tomorrow.\tIl se peut qu'il soit en mesure de venir demain.\nHe must be stopped at all costs.\tOn doit l'arrêter à tout prix.\nHe needs to answer the question.\tIl doit répondre à cette question.\nHe needs to lower his standards.\tIl doit abaisser ses exigences.\nHe never gave way to temptation.\tIl ne céda jamais à la tentation.\nHe never speaks of the accident.\tIl ne parle jamais de l'accident.\nHe ordered me to sweep the room.\tIl m'ordonna de balayer la pièce.\nHe ordered me to sweep the room.\tIl m'a ordonné de balayer la pièce.\nHe owes his wealth to good luck.\tIl doit sa richesse à la bonne fortune.\nHe owns many valuable paintings.\tIl possède de nombreux tableaux de valeur.\nHe paid 1,000 yen for this book.\tIl a payé 1000 yens pour ce livre.\nHe paused to look at the poster.\tIl s'arrêta pour regarder l'affiche.\nHe placed the book on the shelf.\tIl plaça le livre sur l'étagère.\nHe pocketed the company's money.\tIl s'est mis l'argent de la société dans la poche.\nHe prefers football to baseball.\tIl préfère le football au baseball.\nHe prefers not to talk about it.\tIl préfère ne pas en parler.\nHe probably won't become famous.\tIl ne deviendra probablement jamais célèbre.\nHe put his hand to his forehead.\tIl porta la main à son front.\nHe put his hands in his pockets.\tIl mit ses mains dans les poches.\nHe put his things down and left.\tIl a mis ses affaires en bas et à gauche.\nHe really likes traveling a lot.\tIl aime vraiment beaucoup voyager.\nHe received a registered letter.\tIl a reçu une lettre recommandée.\nHe remained single all his life.\tIl resta célibataire toute sa vie.\nHe remained single all his life.\tIl est resté célibataire toute sa vie.\nHe reminds me of my grandfather.\tIl me rappelle mon grand-père.\nHe replied that he did not know.\tIl a répondu qu'il ne savait pas.\nHe replied that he did not know.\tIl répondit qu'il ne savait pas.\nHe said we must keep the secret.\tIl a dit que nous devions garder le secret.\nHe secretly showed me her photo.\tIl m'a montré sa photo en secret.\nHe seemed surprised at the news.\tIl sembla surpris par cette nouvelle.\nHe seems to have lived in Spain.\tIl semble qu'il ait vécu en Espagne.\nHe seldom stays home on Sundays.\tIl reste rarement chez lui le dimanche.\nHe showed me how to make a cake.\tIl m'a appris à faire un gâteau.\nHe showed me how to make a cake.\tIl me montra comment confectionner un gâteau.\nHe showed me how to make a cake.\tIl me montra comment faire un gâteau.\nHe solved the difficult problem.\tIl résolut le difficile problème.\nHe solved the difficult problem.\tIl a résolu le difficile problème.\nHe solved the problem with ease.\tIl résolut le problème facilement.\nHe started taking salsa lessons.\tIl se mit à prendre des cours de salsa.\nHe stood aside for her to enter.\tIl se mit sur le côté pour qu'elle entre.\nHe stood at the end of the line.\tIl se tenait au bout de la queue.\nHe stood at the end of the line.\tIl se tenait au bout de la file.\nHe stood gazing at the painting.\tIl se tenait devant le tableau, à le contempler.\nHe studied economics at college.\tIl a étudié l'économie à la fac.\nHe suspects me of telling a lie.\tIl me soupçonne de mentir.\nHe threatened to make it public.\tIl menaça de le rendre public.\nHe threatened to make it public.\tIl menaça de la rendre public.\nHe threw a stone at the big dog.\tIl lança un caillou sur le gros chien.\nHe told me an interesting story.\tIl m'a raconté une histoire intéressante.\nHe told me an interesting story.\tIl me raconta une histoire intéressante.\nHe told me to speak more slowly.\tIl me dit que je devais parler plus lentement.\nHe took a walk before breakfast.\tIl fit une promenade avant de petit-déjeuner.\nHe took back everything he said.\tIl a retiré tout ce qu'il a dit.\nHe took me for everything I had.\tIl m'a complètement dépouillé.\nHe took me for everything I had.\tIl m'a complètement dépouillée.\nHe took the eggs out one by one.\tIl sortit les œufs un à un.\nHe took what little money I had.\tIl prit le peu d'argent que j'avais.\nHe tried it over and over again.\tIl l'essaya encore et encore.\nHe tried many different methods.\tIl a essayé beaucoup de méthodes différentes.\nHe tried to get rid of the ants.\tIl essaya de se débarrasser des fourmis.\nHe tried to hold back his anger.\tIl essayait de contenir sa colère.\nHe tried to keep back his tears.\tIl essaya de retenir ses larmes.\nHe tried to put the blame on me.\tIl a essayé de rejeter la faute sur moi.\nHe turned the table upside down.\tIl retourna la table sur son plateau.\nHe wants to be more independent.\tIl veut être davantage indépendant.\nHe wants to get rid of the ants.\tIl veut se débarrasser des fourmis.\nHe was bleeding from his wounds.\tIl saignait de ses blessures.\nHe was born in the 19th century.\tIl est né au XIXe siècle.\nHe was buried in this graveyard.\tIl fut enterré dans ce cimetière.\nHe was busy yesterday afternoon.\tIl était occupé, hier après-midi.\nHe was conscious of his mistake.\tIl était conscient de son erreur.\nHe was desperate to get married.\tIl était désespéré de se marier.\nHe was discharged from the army.\tIl a été déchargé de l'armée.\nHe was finally forced to resign.\tIl a été finalement forcé de démissionner.\nHe was impatient to see his son.\tIl était impatient de voir son fils.\nHe was in time for the last bus.\tIl est arrivé à temps pour le dernier bus.\nHe was killed by a blunt weapon.\tIl a été tué par une arme émoussée.\nHe was killed in a car accident.\tIl est mort dans un accident de voiture.\nHe was killed in the earthquake.\tIl a été tué dans le tremblement de terre.\nHe was kind enough to invite me.\tIl fut assez aimable pour m'inviter.\nHe was late because of the snow.\tIl fut en retard à cause de la neige.\nHe was leaning against the wall.\tIl s'appuyait contre le mur.\nHe was lonely after his divorce.\tIl était solitaire, après son divorce.\nHe was right to give up smoking.\tIl a eu raison d'arrêter de fumer.\nHe was spotted stealing cookies.\tOn l'a repéré en train de dérober des biscuits.\nHe was taken in by the salesman.\tIl s'est fait avoir par le vendeur.\nHe was the one who suggested it.\tC'est lui qui l'a suggéré.\nHe was tired from his long walk.\tIl était fatigué par sa longue marche.\nHe was too embarrassed to do it.\tIl était trop embarrassé pour le faire.\nHe was unaware of the situation.\tIl n'était pas conscient de la situation.\nHe was unconscious of his guilt.\tIl était inconscient de sa culpabilité.\nHe was walking ahead of the car.\tIl marchait devant la voiture.\nHe went to London two years ago.\tIl est allé à Londres il y a deux ans.\nHe went to New York on business.\tIl est allé à New York pour affaires.\nHe went to stay with his cousin.\tIl est parti pour rester avec son cousin.\nHe who laughs last, laughs best.\tRira bien qui rira le dernier.\nHe will be delighted to see you.\tIl sera ravi de te voir.\nHe will be delighted to see you.\tIl sera ravi de vous voir.\nHe will be here in half an hour.\tIl sera ici dans une demi-heure.\nHe will come back in a few days.\tIl reviendra dans quelques jours.\nHe will travel abroad next year.\tIl va voyager à l'étranger l'année prochaine.\nHe wiped his nose on his sleeve.\tIl essuya la morve sur sa manche.\nHe wiped his nose on his sleeve.\tIl s'essuya le nez dans sa manche.\nHe wiped the sweat off his face.\tIl essuya la sueur de son visage.\nHe wishes to erase bad memories.\tIl souhaite effacer de mauvais souvenirs.\nHe won't live more than one day.\tIl ne vivra pas plus d'un jour.\nHe worked hard to promote peace.\tIl travailla dur à promouvoir la paix.\nHe works as hard as any student.\tIl travaille aussi dur que n'importe quel autre étudiant.\nHe works in a big city hospital.\tIl travaille dans un grand hôpital urbain.\nHe wouldn't look at my proposal.\tIl refusait de regarder ma proposition.\nHe writes letters to his mother.\tIl écrit des lettres à sa mère.\nHe writes to me once in a while.\tIl m'écrit une fois de temps en temps.\nHe wrote about plants and trees.\tIl a écrit à propos des plantes et des arbres.\nHe's a foreign exchange student.\tC'est un étudiant étranger d'un programme d'échange.\nHe's an expert with a slingshot.\tC'est un expert à la fronde.\nHe's been teaching for 20 years.\tIl enseigne depuis 20 ans.\nHe's been teaching for 20 years.\tCela fait vingt ans qu'il enseigne.\nHe's good at this sort of thing.\tIl est bon à ce genre de choses.\nHe's in danger of being evicted.\tIl risque d'être expulsé.\nHe's in good physical condition.\tIl est en bonne condition physique.\nHe's leaving for Tokyo tomorrow.\tIl part pour Tokyo demain.\nHe's lived here his entire life.\tIl a vécu ici sa vie entière.\nHe's lived here his entire life.\tIl a vécu ici toute sa vie.\nHe's my friend. Do you know him?\tC'est mon ami. Le connaissez-vous ?\nHe's my friend. Do you know him?\tC'est mon ami. Le connais-tu ?\nHe's saving up to go to college.\tIl économise de l'argent afin qu'il puisse aller à l'université.\nHe's saving up to go to college.\tIl économise pour pouvoir aller à l'université.\nHe's starting to feel desperate.\tIl commence à se sentir désespéré.\nHe's the most likely to succeed.\tIl est celui qui a le plus de chances de réussir.\nHe's used to speaking in public.\tIl est habitué à parler en public.\nHelen Keller was deaf and blind.\tHellen Keller était sourde et aveugle.\nHer dream has come true at last.\tSon rêve s'est enfin réalisé.\nHer eyes were filled with tears.\tSes yeux étaient emplis de larmes.\nHer hair comes to her shoulders.\tSes cheveux lui tombent sur les épaules.\nHer oldest daughter got married.\tSa fille aînée s'est mariée.\nHer oldest daughter got married.\tSa fille aînée a été mariée.\nHer story turned out to be true.\tSon histoire s'est avérée exacte.\nHer voice sounds very beautiful.\tSa voix est très belle.\nHis business is growing rapidly.\tSon entreprise croît rapidement.\nHis childlike laugh is charming.\tSon rire enfantin est charmant.\nHis criticisms were very severe.\tSes critiques étaient très sévères.\nHis criticisms were very severe.\tSes critiques furent très sévères.\nHis debts amount to 100,000 yen.\tSa dette se monte à 100.000 yen.\nHis father approved of his plan.\tSon père approuva son projet.\nHis horse jumped over the fence.\tSon cheval sauta par-dessus la clôture.\nHis horse jumped over the fence.\tSon cheval sauta par-dessus la palissade.\nHis house is there on the right.\tSa maison est là à droite.\nHis mother is worried about him.\tSa mère se fait du souci à son sujet.\nHis old car is on its last legs.\tSa vieille voiture est à bout de souffle.\nHis record will never be broken.\tSon record ne sera jamais battu.\nHis story turned out to be true.\tSon histoire s'est avérée exacte.\nHis way of speaking offended me.\tSa manière de parler m'a offensé.\nHis way of speaking offended me.\tSa manière de parler m'a offensée.\nHis wife is our Italian teacher.\tSa femme est notre professeur d’italien.\nHollywood marriages rarely last.\tLes mariages à Hollywood tiennent rarement.\nHope to see you again next year.\tEn espérant vous revoir l'an prochain.\nHow about another piece of cake?\tQue diriez-vous d'un autre truc facile ?\nHow about playing chess tonight?\tQue dirais-tu d'une partie d'échecs ce soir ?\nHow about playing chess tonight?\tQue diriez-vous d'une partie d'échecs ce soir ?\nHow about playing golf tomorrow?\tEt si on faisait un golf demain ?\nHow about playing golf tomorrow?\tQue diriez-vous d'un golf demain ?\nHow are you planning to do that?\tComment tu prévois de faire ça ?\nHow are you planning to do that?\tComment prévoyez-vous de faire cela ?\nHow can I get in touch with you?\tComment puis-je vous joindre ?\nHow could I not see this coming?\tComment ai-je pu ne pas le voir arriver ?\nHow could anybody not like this?\tComment quiconque pourrait ne pas apprécier cela ?\nHow could anyone not like music?\tComment quiconque pourrait ne pas aimer la musique ?\nHow could you not say something?\tComment avez-vous pu ne rien dire ?\nHow could you not say something?\tComment pourriez-vous ne rien dire ?\nHow could you not say something?\tComment as-tu pu ne rien dire ?\nHow could you not say something?\tComment pourrais-tu ne rien dire ?\nHow did that whole thing happen?\tComment tout ce truc est-il arrivé ?\nHow did that whole thing happen?\tComment tout ce truc est-il survenu ?\nHow did that whole thing happen?\tComment tout ce truc a-t-il eu lieu ?\nHow did you lose so much weight?\tComment as-tu perdu autant de poids ?\nHow did you lose so much weight?\tComment avez-vous perdu autant de poids ?\nHow did you spend your vacation?\tQu'as-tu fait de tes vacances ?\nHow did you spend your vacation?\tComment as-tu passé tes vacances ?\nHow did you vote on that matter?\tComment as-tu voté en cette affaire ?\nHow did you vote on that matter?\tComment avez-vous voté en cette affaire ?\nHow do I get to the bus station?\tComment puis-je parvenir à la gare routière ?\nHow do you assess your students?\tComment évaluez-vous vos étudiants ?\nHow do you feel about the issue?\tQuel est votre sentiment à ce sujet ?\nHow do you feel about the issue?\tQuel est ton sentiment à ce sujet ?\nHow do you know I don't have it?\tComment savez-vous que je ne l'ai pas ?\nHow do you know I don't have it?\tComment sais-tu que je ne l'ai pas ?\nHow do you know how heavy it is?\tComment savez-vous quel poids ça a ?\nHow do you know how heavy it is?\tComment sais-tu quel poids ça a ?\nHow do you know how thick it is?\tComment savez-vous de quelle épaisseur c'est ?\nHow do you know how thick it is?\tComment sais-tu de quelle épaisseur c'est ?\nHow do you spell your last name?\tComment épelez-vous votre nom de famille ?\nHow do you spell your last name?\tComment épelles-tu ton nom de famille ?\nHow do you write your last name?\tComment écrivez-vous votre nom de famille ?\nHow do you write your last name?\tComment écris-tu ton nom de famille ?\nHow far are we from the airport?\tA quelle distance sommes-nous de l'aéroport ?\nHow is your family name written?\tComment votre nom de famille s'écrit-il ?\nHow is your family name written?\tComment s'écrit votre nom de famille ?\nHow is your family name written?\tComment s'écrit ton nom de famille ?\nHow is your family name written?\tComment ton nom de famille s'écrit-il ?\nHow long did you stay in Canada?\tCombien de temps es-tu resté au Canada ?\nHow long do I have to stay here?\tCombien de temps dois-je rester ici ?\nHow long has Tom been like this?\tDepuis combien de temps Tom est-il comme ça ?\nHow long has Tom studied French?\tCombien de temps Tom a-t-il étudié le français ?\nHow long have you been in Japan?\tCombien de temps êtes-vous resté au Japon ?\nHow long have you been in Japan?\tCombien de temps avez-vous été au Japon ?\nHow long will you stay in Japan?\tCombien de temps vas-tu rester au Japon ?\nHow long will you stay in Japan?\tCombien de temps resterez-vous au Japon ?\nHow long will you stay in Kyoto?\tCombien de temps resterez-vous à Kyoto?\nHow long will you stay in Tokyo?\tCombien de temps resteras-tu à Tokyo ?\nHow long would you like to stay?\tCombien de temps aimerais-tu rester ?\nHow many boys are in this class?\tCombien de garçons sont-ils dans cette classe ?\nHow many boys are in this class?\tCombien de garçons y a-t-il dans cette classe ?\nHow many songs have you written?\tCombien de chansons avez-vous écrites ?\nHow many songs have you written?\tCombien de chansons as-tu écrites ?\nHow many words should you write?\tCombien de mots devrais-tu écrire ?\nHow many words should you write?\tCombien de mots devriez-vous écrire ?\nHow much did these glasses cost?\tCombien ont coûté ces lunettes-là ?\nHow much does my debt amount to?\tA combien se monte ma dette ?\nHow much is the tour per person?\tCombien coûte l'excursion par personne ?\nHow often do you use your phone?\tÀ quelle fréquence utilisez-vous votre téléphone ?\nHow often do you use your phone?\tÀ quelle fréquence utilises-tu ton téléphone ?\nHow often do you wash your hair?\tÀ quelle fréquence te laves-tu les cheveux ?\nHow soon are you going shopping?\tQuand vas-tu faire des courses ?\nHow soon will the meeting begin?\tQuand commencera la réunion ?\nHow soon will the meeting begin?\tQuand la réunion va-t-elle commencer ?\nHow would you describe yourself?\tComment te décrirais-tu ?\nHow would you describe yourself?\tComment vous décririez-vous ?\nHow's your project coming along?\tComment progresse ton projet ?\nHow's your project coming along?\tComment progresse votre projet ?\nHow's your project coming along?\tComment se présente ton projet ?\nHow's your project coming along?\tComment se présente votre projet ?\nHuman relationships are complex.\tLes relations humaines sont complexes.\nHumans only live about 70 years.\tLes êtres humains ne vivent qu'environ soixante-dix ans.\nHumans only live about 70 years.\tLes êtres humains ne vivent qu'à peu près soixante-dix ans.\nHundreds of animals were killed.\tDes centaines d'animaux furent tués.\nHundreds of animals were killed.\tDes centaines d'animaux ont été tués.\nHurry, or you'll miss the train.\tDépêchez-vous ou vous manquerez le train.\nHurry, or you'll miss the train.\tPressez-vous ou vous manquerez le train.\nHurry, or you'll miss the train.\tDépêche-toi ou tu vas manquer le train.\nHurry, or you'll miss the train.\tPresse-toi ou tu vas manquer le train.\nI accepted that a long time ago.\tJ'ai accepté cela il y a longtemps.\nI accepted that a long time ago.\tJe l'ai accepté il y a longtemps.\nI accomplished what I wanted to.\tJ'ai accompli ce que je voulais.\nI agree with you to some extent.\tJe suis d'accord avec vous, dans une certaine mesure.\nI agreed with him on that point.\tJe suis d'accord avec lui sur ce point.\nI always try to stay optimistic.\tJ'essaie toujours de rester optimiste.\nI always wanted to be a teacher.\tJ'ai toujours voulu être enseignant.\nI always wanted to be different.\tJ'ai toujours voulu être différent.\nI always wanted to go to Boston.\tJ'ai toujours voulu aller à Boston.\nI am accustomed to cold weather.\tJe suis accoutumé au temps froid.\nI am accustomed to living alone.\tJe suis habitué à vivre seul.\nI am accustomed to living alone.\tJe suis habituée à vivre seule.\nI am accustomed to working hard.\tJe suis habitué à travailler dur.\nI am accustomed to working hard.\tJe suis habituée à travailler dur.\nI am acquainted with the author.\tJe connais l'auteur.\nI am acquainted with the custom.\tJ'ai connaissance de cette coutume.\nI am afraid I ate something bad.\tJe crains d'avoir mangé quelque chose de mauvais.\nI am afraid I must be going now.\tJ'ai peur de devoir partir maintenant.\nI am against working on Sundays.\tJe suis contre le travail du dimanche.\nI am badly in need of your help.\tJ'ai vraiment besoin de ton aide.\nI am concerned about his health.\tJe suis concerné par sa santé.\nI am convinced of his innocence.\tJe suis convaincu de son innocence.\nI am familiar with this subject.\tJe connais bien ce sujet.\nI am familiar with this subject.\tJe suis habitué à ce problème.\nI am fixing the washing machine.\tJe répare le lave-linge.\nI am going on a picnic tomorrow.\tJe me rends à un pic-nic demain.\nI am going to the swimming pool.\tJe vais à la piscine.\nI am not always free on Sundays.\tJe ne suis pas toujours libre le dimanche.\nI am not frightened of anything.\tJe n'ai peur de rien.\nI am not in the least surprised.\tJe ne suis absolument pas surpris.\nI am relieved that you are safe.\tJe suis soulagé que vous soyez sain et sauf.\nI am seeing Mary this afternoon.\tJe vais voir Mary cet après-midi.\nI am seeing Mary this afternoon.\tJe vois Mary cette après-midi.\nI am sorry to have troubled you.\tVeuillez m'excuser de vous avoir dérangé.\nI am thinking about my children.\tJe pense à mes enfants.\nI am thinking about that matter.\tJe suis en train de penser à cette affaire.\nI am too tired to walk any more.\tJe suis trop fatigué pour marcher davantage.\nI am very sensitive to the cold.\tJe suis très sensible au froid.\nI am very sorry for what I said.\tJe suis vraiment désolé pour ce que j'ai dit.\nI am very sorry for what I said.\tJe suis vraiment désolée pour ce que j'ai dit.\nI appreciate what he did for me.\tJ'estime ce qu'il a fait pour moi.\nI appreciate what you did today.\tJe vous suis reconnaissant pour ce que vous avez fait aujourd'hui.\nI appreciate what you did today.\tJe te suis reconnaissant pour ce que tu as fait aujourd'hui.\nI asked him if he would help me.\tJe lui ai demandé s'il m'aiderait.\nI asked my boss for a pay raise.\tJ'ai réclamé une augmentation à mon patron.\nI asked my boss for a pay raise.\tJ'ai réclamé une augmentation à ma patronne.\nI asked what he was going to do.\tJ'ai demandé ce qu'il allait faire.\nI ate a hamburger at McDonald's.\tJ'ai mangé un hamburger chez McDonald's.\nI attend scientific conferences.\tJ'assiste à des conférences scientifiques.\nI believe Tom will be acquitted.\tJe suis sûr que Tom sera acquitté.\nI believe Tom will be acquitted.\tJe suis sûre que Tom sera acquitté.\nI believe Tom will be acquitted.\tJe pense que Tom sera acquitté.\nI believe Tom will be acquitted.\tJe crois que Tom sera acquitté.\nI believe he is coming tomorrow.\tJe crois qu'il vient demain.\nI believe it will snow tomorrow.\tJe crois qu'il va neiger demain.\nI believe what you said is true.\tJe crois que ce que tu as dit est vrai.\nI believed that he was a doctor.\tJe croyais qu'il était médecin.\nI blew on my hands to warm them.\tJ'ai soufflé sur mes mains pour les réchauffer.\nI bought a camera the other day.\tL'autre jour j'ai acheté un appareil photo.\nI bought this book at Kakuzen's.\tJ'ai acheté ce livre chez Kakuzen.\nI brought these flowers for you.\tJ'ai apporté ces fleurs pour toi.\nI brought these flowers for you.\tJ'ai apporté ces fleurs pour vous.\nI built this doghouse by myself.\tJ'ai construit cette niche par mes propres moyens.\nI built this doghouse by myself.\tJ'ai construit moi-même cette niche.\nI came here of my own free will.\tJe suis venu ici de mon plein gré.\nI came to talk to you about Tom.\tJe suis venu pour te parler de Tom.\nI can barely stand his behavior.\tJe peux difficilement supporter son comportement.\nI can barely stand his behavior.\tJe peux à peine tolérer sa conduite.\nI can be assertive if necessary.\tJe sais m'affirmer, lorsque c'est nécessaire.\nI can get us there more quickly.\tJe peux nous y faire parvenir plus rapidement.\nI can only tell you what I know.\tJe ne peux vous dire que ce que je sais.\nI can recommend this restaurant.\tJe peux recommander ce restaurant.\nI can see a ship on the horizon.\tJe peux voir un bateau à l'horizon.\nI can't afford to buy a new car.\tJe ne peux pas me permettre d'acheter une nouvelle voiture.\nI can't believe I was so stupid.\tJe n'arrive pas à croire que j'aie été aussi stupide.\nI can't believe I'm kissing you.\tJe n'arrive pas à croire que je t'embrasse.\nI can't believe I'm kissing you.\tJe n'arrive pas à croire que je vous embrasse.\nI can't believe I'm kissing you.\tJe n'arrive pas à croire que je sois en train de t'embrasser.\nI can't believe I'm kissing you.\tJe n'arrive pas à croire que je sois en train de vous embrasser.\nI can't believe I'm really here.\tJe n'arrive pas à croire que je sois vraiment ici.\nI can't believe I'm really here.\tJe n'arrive pas à croire que je sois vraiment là.\nI can't believe I'm still alive.\tJe n'arrive pas à croire que je sois encore en vie.\nI can't believe I'm still alive.\tJe n'arrive pas à croire que je sois toujours en vie.\nI can't believe it's really you.\tJe n'arrive pas à croire que ce soit vraiment toi.\nI can't believe it's really you.\tJe n'arrive pas à croire que ce soit vraiment vous.\nI can't believe it's really you.\tJe n'arrive pas à croire qu'il s'agisse vraiment de toi.\nI can't believe it's really you.\tJe n'arrive pas à croire qu'il s'agisse vraiment de vous.\nI can't believe what I'm seeing.\tJe n'arrive pas à croire à ce que je vois.\nI can't believe you bought this.\tJe n'arrive pas à croire que tu aies acheté ça.\nI can't believe you bought this.\tJe n'arrive pas à croire que vous ayez acheté ça.\nI can't blame Tom for hating me.\tJe ne peux pas reprocher à Tom de me haïr.\nI can't blame Tom for hating me.\tJe ne peux pas en vouloir à Tom de me détester.\nI can't breathe through my nose.\tJe ne peux pas respirer par le nez.\nI can't decide which car to buy.\tJe n'arrive pas à décider quelle voiture acheter.\nI can't do this job without you.\tJe n'arrive pas à faire ce boulot sans toi.\nI can't do this job without you.\tJe n'arrive pas à faire ce boulot sans vous.\nI can't do this job without you.\tJe ne peux pas faire ce boulot sans toi.\nI can't do this job without you.\tJe ne peux pas faire ce boulot sans vous.\nI can't explain why it happened.\tJe ne peux pas expliquer pourquoi cela est arrivé.\nI can't feel at home in a hotel.\tJe ne peux pas me sentir chez moi à l'hôtel.\nI can't feel at home in a hotel.\tJe ne peux pas me sentir chez moi dans un hôtel.\nI can't get anyone to assist me.\tJe n'arrive pas à obtenir l'aide de quelqu'un.\nI can't hear what you're saying.\tJe n'arrive pas à entendre ce que vous dites.\nI can't hear what you're saying.\tJe ne parviens pas à entendre ce que tu dis.\nI can't let Tom keep doing that.\tJe ne peux pas laisser Tom continuer à faire ça.\nI can't stand this cold anymore.\tJe ne peux plus supporter ce froid.\nI can't stay long. I have plans.\tJe ne peux pas rester longtemps. J'ai des trucs de prévu.\nI can't stop thinking about Tom.\tJe n'arrive pas à ne pas penser à Tom.\nI can't teach you anything else.\tJe ne peux rien vous enseigner de plus.\nI can't teach you anything else.\tJe ne peux rien t'enseigner de plus.\nI can't tell you all my secrets.\tJe ne peux pas te dire tous mes secrets.\nI can't tell you all my secrets.\tJe ne peux pas vous dire tous mes secrets.\nI can't tell you how to do that.\tJe ne peux pas te dire comment faire ça.\nI can't think of any other plan.\tJe ne peux pas imaginer une autre solution.\nI can't tolerate Tom's behavior.\tJe ne peux tolérer le comportement de Tom.\nI can't understand his feelings.\tJe n'arrive pas à comprendre ses sentiments.\nI can't wait for him any longer.\tJe ne peux l'attendre plus longtemps.\nI can't wait for him any longer.\tJe ne peux pas l'attendre davantage.\nI canceled my hotel reservation.\tJ'ai annulé ma réservation d'hôtel.\nI cannot agree to your proposal.\tJe ne peux pas être d'accord avec votre proposition.\nI cannot bear the pain any more.\tJe ne supporte plus la douleur.\nI cannot put up with this noise.\tJe ne peux pas supporter ce bruit.\nI caught him stealing the money.\tJe l'ai surpris en train de voler de l'argent.\nI certainly have had great luck.\tJ'ai certainement eu beaucoup de chance.\nI certainly hope that'll happen.\tJ'espère que ça arrivera.\nI certainly would like a refund.\tJe voudrais certainement un remboursement.\nI change my underwear every day.\tJe change de sous-vêtements tous les jours.\nI changed my address last month.\tJ'ai changé d'adresse le mois dernier.\nI checked the time on the clock.\tJ'ai vérifié l'heure sur l'horloge.\nI climbed in through the window.\tJe suis entré par la fenêtre.\nI come from a family of doctors.\tJe viens d'une famille de médecins.\nI come from a humble background.\tJe viens d'un milieu modeste.\nI could eat this for every meal.\tJe pourrais manger cela à chaque repas.\nI could get you fired, you know.\tJe pourrais vous faire virer, vous savez.\nI could get you fired, you know.\tJe pourrais te faire virer, tu sais.\nI could not attend the ceremony.\tJe ne pouvais pas assister à la cérémonie.\nI could not have done otherwise.\tJe n'aurais pu faire autrement.\nI could really get used to this.\tJe pourrais facilement m'y habituer.\nI could see something was wrong.\tJe pouvais voir que quelque chose n'allait pas.\nI could've done better, I think.\tJ'aurais pu faire mieux, je pense.\nI couldn't do anything about it.\tJe ne pouvais rien y faire.\nI couldn't keep from snickering.\tJe n'ai pas pu m'empêcher de pouffer.\nI couldn't tell her from sister.\tJe ne pouvais la distinguer de sa sœur.\nI declined for personal reasons.\tJ'ai refusé pour des raisons personnelles.\nI did not play tennis yesterday.\tHier, je n'ai pas joué au tennis.\nI did not read a book yesterday.\tJe n'ai pas lu de livre hier.\nI didn't enjoy the party at all.\tJe ne me suis pas du tout amusé à la fête.\nI didn't expect to see you here.\tJe ne m'attendais pas à vous voir ici.\nI didn't expect to see you here.\tJe ne m'attendais pas à te voir ici.\nI didn't go to school yesterday.\tJe n'ai pas été à l'école hier.\nI didn't know that he was there.\tJ'ignorais qu'il se trouvait là.\nI didn't know that he was there.\tJ'ignorais qu'il s'y trouvait.\nI didn't know that woman at all.\tJe ne connaissais absolument pas cette femme.\nI didn't know that woman at all.\tJe ne connaissais pas du tout cette femme.\nI didn't know you had a brother.\tJe ne savais pas que tu avais un frère.\nI didn't know you had hay fever.\tJ'ignorais que tu avais le rhume des foins.\nI didn't know you had hay fever.\tJ'ignorais que vous aviez le rhume des foins.\nI didn't know you were a doctor.\tJe ne savais pas que tu étais médecin.\nI didn't like beer at that time.\tJe n'aimais pas la bière à cette époque.\nI didn't mean to keep it secret.\tJe n'avais pas l'intention de le garder secret.\nI didn't mean to keep it secret.\tJe n'avais pas l'intention de la garder secrète.\nI didn't meet any of my friends.\tJe n'ai rencontré aucun de mes amis.\nI didn't quite know what to say.\tJe ne savais pas bien quoi dire.\nI didn't realize you were awake.\tJe n'ai pas réalisé que vous étiez éveillé.\nI didn't realize you were awake.\tJe n'ai pas réalisé que tu étais éveillé.\nI didn't realize you were awake.\tJe n'ai pas réalisé que tu étais éveillée.\nI didn't realize you were awake.\tJe n'ai pas réalisé que vous étiez éveillée.\nI didn't realize you were awake.\tJe n'ai pas réalisé que vous étiez éveillés.\nI didn't realize you were awake.\tJe n'ai pas réalisé que vous étiez éveillées.\nI didn't realize you were awake.\tJe n'ai pas pris conscience que vous étiez éveillé.\nI didn't realize you were awake.\tJe n'ai pas pris conscience que vous étiez éveillée.\nI didn't realize you were awake.\tJe n'ai pas pris conscience que vous étiez éveillés.\nI didn't realize you were awake.\tJe n'ai pas pris conscience que vous étiez éveillées.\nI didn't realize you were awake.\tJe n'ai pas pris conscience que tu étais éveillé.\nI didn't realize you were awake.\tJe n'ai pas pris conscience que tu étais éveillée.\nI didn't really care about that.\tJe ne m'en suis pas vraiment soucié.\nI didn't really care about that.\tJe ne m'en souciais pas vraiment.\nI didn't really want to do that.\tJe ne voulais pas vraiment faire cela.\nI didn't see a doctor last year.\tJe n'ai pas vu de docteur l'année dernière.\nI didn't take it that seriously.\tJe ne l'ai pas pris au sérieux.\nI didn't think it was a problem.\tJe ne pensais pas que c'était un problème.\nI didn't think it was important.\tJe n'ai pas pensé que c'était important.\nI didn't think we could do that.\tJe ne croyais pas que nous pouvions faire cela.\nI didn't think you'd be so late.\tJe ne pensais pas que vous seriez tellement en retard.\nI didn't think you'd be so late.\tJe n'ai pas pensé que vous seriez tellement en retard.\nI didn't think you'd be so late.\tJe ne pensais pas que tu serais tellement en retard.\nI didn't think you'd be so late.\tJe n'ai pas pensé que tu serais tellement en retard.\nI didn't think you'd believe me.\tJe ne pensais pas que vous me croiriez.\nI didn't think you'd believe me.\tJe ne pensais pas que tu me croirais.\nI didn't understand any of that.\tJe n'y ai rien compris.\nI didn't understand any of that.\tJe n'en compris rien.\nI didn't understand the meaning.\tJe n'ai pas compris ce que ça signifiait.\nI didn't want to get out of bed.\tJe ne voulais pas sortir du lit.\nI disagree with this completely.\tJe suis en complet désaccord avec ça.\nI do not like any of these hats.\tJe n'aime aucun de ces chapeaux.\nI do not like any of these hats.\tAucun de ces chapeaux ne me plaît.\nI do the shopping every morning.\tJe vais faire les courses tous les matins.\nI don't answer stupid questions.\tJe ne réponds pas aux questions stupides.\nI don't believe a word Tom says.\tJe ne crois pas un mot de ce que dit Tom.\nI don't believe that to be true.\tJe ne crois pas que cela soit vrai.\nI don't care if it's a bit cold.\tJe m'en fiche s'il fait un peu froid.\nI don't care what happens to me.\tJe me fiche de ce qui m'arrive.\nI don't deserve your friendship.\tJe ne mérite pas ton amitié.\nI don't deserve your friendship.\tJe ne mérite pas votre amitié.\nI don't even have a car anymore.\tJe n'ai même plus de voiture.\nI don't even know where to look.\tJe ne sais même pas où regarder.\nI don't expect you to start now.\tJe ne m'attends pas à ce que vous commenciez maintenant.\nI don't expect you to start now.\tJe ne m'attends pas à ce que tu commences maintenant.\nI don't feel like a man anymore.\tJe ne me sens plus comme un homme.\nI don't feel like playing cards.\tJ'ai pas envie de jouer au cartes.\nI don't feel like smoking today.\tJe n'ai pas envie de fumer, aujourd'hui.\nI don't feel like working today.\tJe n'ai pas envie de travailler, aujourd'hui.\nI don't feel much like laughing.\tJe n'ai guère le cœur à rire.\nI don't feel much like laughing.\tJe n'ai pas très envie de rire.\nI don't feel much like laughing.\tJe ne suis guère d'humeur à rire.\nI don't get along with that guy.\tJe ne m'entends pas avec ce type.\nI don't have any rooms for rent.\tJe n'ai aucune chambre à louer.\nI don't have my glasses with me.\tJe n'ai pas mes lunettes avec moi.\nI don't have that kind of money.\tJe ne dispose pas d'une telle quantité d'argent.\nI don't have the slightest clue.\tJe n'en ai pas la moindre idée.\nI don't have the slightest idea.\tJe n'en ai pas la moindre idée.\nI don't know anything about him.\tJe ne sais rien de lui.\nI don't know how else to put it.\tJe ne sais pas comment le formuler autrement.\nI don't know how else to say it.\tJe ne sais comment le dire autrement.\nI don't know how else to say it.\tJe ne sais pas comment le dire autrement.\nI don't know how else to say it.\tJ'ignore comment le dire autrement.\nI don't know how long we've got.\tJe ne sais pas de combien de temps nous disposons.\nI don't know how long we've got.\tJ'ignore de combien de temps nous disposons.\nI don't know how to address you.\tJe ne sais pas comment m'adresser à vous.\nI don't know how to address you.\tJe ne sais pas comment m'adresser à toi.\nI don't know how to contact you.\tJ'ignore comment vous contacter.\nI don't know how to contact you.\tJ'ignore comment te contacter.\nI don't know how to contact you.\tJe ne sais pas comment vous contacter.\nI don't know how to contact you.\tJe ne sais pas comment te contacter.\nI don't know how to contact you.\tJe ne sais pas comment prendre contact avec vous.\nI don't know how to contact you.\tJe ne sais pas comment prendre contact avec toi.\nI don't know how to describe it.\tJe ne sais comment le décrire.\nI don't know how to describe it.\tJe ne sais pas comment le décrire.\nI don't know how to handle this.\tJ'ignore comment traiter ceci.\nI don't know how to handle this.\tJe ne sais pas comment traiter ceci.\nI don't know if I can trust you.\tJe ne sais pas si je peux te faire confiance.\nI don't know if I still have it.\tJe ne sais pas si je l'ai encore.\nI don't know if I'm staying yet.\tJe ne sais pas encore si je reste.\nI don't know if that's possible.\tJe ne sais pas si c'est possible.\nI don't know the answer to that.\tJ'en ignore la réponse.\nI don't know what I'm doing yet.\tJe ne sais pas encore ce que je fais.\nI don't know what I'm doing yet.\tJ'ignore encore ce que je fais.\nI don't know what it's like yet.\tJe ne sais pas encore à quoi cela ressemble.\nI don't know what that thing is.\tJe ne sais pas ce qu'est cette chose.\nI don't know what the answer is.\tJe ne sais pas quelle est la réponse.\nI don't know what the matter is.\tJe ne sais pas quel est le problème.\nI don't know what this is about.\tJ'ignore de quoi il s'agit.\nI don't know what this is about.\tJe ne sais pas de quoi il s'agit.\nI don't know what this is about.\tJ'ignore de quoi il retourne.\nI don't know what this is about.\tJe ne sais pas de quoi il retourne.\nI don't know what to do anymore.\tJe ne sais plus quoi faire.\nI don't know what to do with it.\tJe ne sais pas quoi en faire.\nI don't know what to do with it.\tJ'ignore quoi en faire.\nI don't know what to say to Tom.\tJe ne sais pas quoi dire à Thomas.\nI don't know what you call this.\tJe ne sais pas comment on appelle cela.\nI don't know what's best for me.\tJe ne sais pas ce qui est le mieux pour moi.\nI don't know when I should come.\tJ'ignore quand je devrais venir.\nI don't know when I should come.\tJe ne sais pas quand je devrais venir.\nI don't know when he'll be here.\tJ'ignore quand il sera là.\nI don't know where I am exactly.\tJe ne sais pas où je me trouve exactement.\nI don't know where it came from.\tJ'ignore d'où il est venu.\nI don't know where it came from.\tJ'ignore d'où elle est venue.\nI don't know where it came from.\tJe ne sais pas d'où il est venu.\nI don't know where it came from.\tJe ne sais pas d'où elle est venue.\nI don't know who any of you are.\tJ'ignore qui est chacun d'entre vous.\nI don't know why it didn't work.\tJe ne sais pas pourquoi cela n'a pas marché.\nI don't like any kind of sports.\tJe n'aime aucun sport.\nI don't like being interrogated.\tJe n'apprécie pas d'être interrogée.\nI don't like being interrogated.\tJe n'apprécie pas d'être interrogé.\nI don't like being interrogated.\tJe n'aime pas faire l'objet d'un interrogatoire.\nI don't like his taste in color.\tJe n'aime pas ses goûts en matière de couleurs.\nI don't like his way of talking.\tJe n'aime pas sa façon de parler.\nI don't like meeting new people.\tJe n'aime pas rencontrer des gens nouveaux.\nI don't like that kind of music.\tJe n'aime pas ce genre de musique.\nI don't like the way she speaks.\tJe n'aime pas la façon dont elle parle.\nI don't like this type of house.\tJe n'aime pas ce genre de maison.\nI don't like to be kept waiting.\tJe n'aime pas qu'on me fasse attendre.\nI don't like to be kept waiting.\tJe n'apprécie pas qu'on me fasse attendre.\nI don't like to speak in public.\tJe n'aime pas parler en public.\nI don't mean half of what I say.\tJe ne pense pas la moitié de ce que je dis.\nI don't need to be here anymore.\tJe n'ai plus besoin d'être ici.\nI don't need you to wait for me.\tJe n'ai pas besoin que vous m'attendiez.\nI don't need you to wait for me.\tJe n'ai pas besoin que tu m'attendes.\nI don't really have a boyfriend.\tJe n'ai pas vraiment de petit ami.\nI don't really know what to say.\tJe ne sais pas vraiment quoi dire.\nI don't really like any of that.\tJe n'apprécie vraiment rien de tout ça.\nI don't remember that happening.\tJe ne me souviens pas que ce soit arrivé.\nI don't remember that happening.\tJe ne me souviens pas que ce soit survenu.\nI don't remember that happening.\tJe ne me rappelle pas cet évènement.\nI don't remember where you live.\tJe ne me rappelle pas où tu habites.\nI don't respond well to threats.\tJe ne réagis pas bien aux menaces.\nI don't see a problem with this.\tJe ne vois pas de problème à ça.\nI don't see how it can end well.\tJe ne vois pas comment ça peut bien se terminer.\nI don't see how that would help.\tJe ne vois pas en quoi ça aiderait.\nI don't see that it matters now.\tJe ne vois pas en quoi ça importe, désormais.\nI don't see what else we can do.\tJe ne vois pas ce que nous pouvons faire d'autre.\nI don't spend much time at home.\tJe ne passe pas beaucoup de temps chez moi.\nI don't tell people what to eat.\tJe ne dis pas aux gens quoi manger.\nI don't tell people what to eat.\tJe ne dis pas aux gens ce qu'ils doivent manger.\nI don't think I can answer that.\tJe ne pense pas que je puisse répondre à cela.\nI don't think I can answer that.\tJe ne pense pas pouvoir répondre à cela.\nI don't think I can do anything.\tJe ne pense pas que je puisse faire quoi que ce soit.\nI don't think I can do anything.\tJe ne pense pas pouvoir faire quoi que ce soit.\nI don't think I can leave early.\tJe ne pense pas pouvoir partir tôt.\nI don't think I can leave early.\tJe ne pense pas que je puisse partir tôt.\nI don't think I'm unimaginative.\tJe ne pense pas être dénué d'imagination.\nI don't think it works that way.\tJe ne pense pas que ça fonctionne de cette manière.\nI don't think this is a problem.\tJe ne pense pas que ce soit un problème.\nI don't think we should do that.\tJe ne pense pas que l'on devrait faire ça.\nI don't think you can sell that.\tJe ne pense pas que vous puissiez vendre ça.\nI don't think you can sell that.\tJe ne pense pas que tu puisses vendre ça.\nI don't understand what he said.\tJe ne comprends pas ce qu'il a dit.\nI don't want my mother to worry.\tJe ne veux pas que ma mère s'inquiète.\nI don't want to force you to go.\tJe ne veux pas te forcer à y aller.\nI don't want to force you to go.\tJe ne veux pas vous forcer à y aller.\nI don't want to get my feet wet.\tJe ne veux pas me mouiller les pieds.\nI don't want to lose this match.\tJe ne veux pas perdre ce match.\nI don't want to open the window.\tJe ne veux pas ouvrir la fenêtre.\nI don't want to regret anything.\tJe ne veux rien regretter.\nI don't want to regret anything.\tJe ne veux pas regretter quoi que ce soit.\nI don't want to run such a risk.\tJe n'ai pas envie de courir un tel risque.\nI don't want to take a walk now.\tJe ne veux pas aller me promener maintenant.\nI don't want to tell my parents.\tJe ne veux pas le dire à mes parents.\nI don't want to waste your time.\tJe ne veux pas gaspiller votre temps.\nI don't want to waste your time.\tJe ne veux pas gaspiller ton temps.\nI doubt if he will come on time.\tJe doute qu'il arrive à l'heure.\nI doubt the truth of the report.\tJe doute de la véracité de ce rapport.\nI dreamed I was in Boston again.\tJ'ai rêvé que j'étais de nouveau à Boston.\nI drove the car into the garage.\tJe conduisis la voiture dans le garage.\nI drove the car into the garage.\tJ'ai conduit la voiture dans le garage.\nI enjoy looking at my old diary.\tJ'aime bien compulser mon vieux journal intime.\nI expect to be back next Monday.\tJ'estime être de retour lundi prochain.\nI expect to be back next Monday.\tJ'espère être de retour lundi prochain.\nI expected him to fail the exam.\tJe m'attendais à ce qu'il échoue à l'examen.\nI expected you home an hour ago.\tJe t'attendais chez moi il y a une heure.\nI expected you home an hour ago.\tJe vous attendais chez moi il y a une heure.\nI expected you home an hour ago.\tJe vous attendais chez nous il y a une heure.\nI expected you home an hour ago.\tJe t'attendais chez nous il y a une heure.\nI explained the accident to him.\tJe lui ai décrit l'accident.\nI explained why we had to do it.\tJ'ai expliqué pourquoi nous devions le faire.\nI feel a lot better than before.\tJe me sens beaucoup mieux qu'avant.\nI feel great and I feel healthy.\tJe me sens bien et je me sens en bonne santé.\nI feel like I let the team down.\tJ'ai l'impression d'avoir laissé tomber l'équipe.\nI feel like I'm making progress.\tJ'ai la sensation de faire des progrès.\nI feel like I'm making progress.\tJ'ai le sentiment de faire des progrès.\nI feel like having an ice cream.\tJ'ai envie d'une glace.\nI feel like singing in the rain.\tJ'ai envie de chanter sous la pluie.\nI feel really strongly about it.\tCela me tient beaucoup à cœur.\nI feel there is just no way out.\tJ'ai l'impression qu'il n'y a pas d'issue.\nI feel way more comfortable now.\tJe me sens beaucoup plus à l'aise maintenant.\nI felt a sudden pain in my side.\tJe ressentis une douleur soudaine au côté.\nI felt a sudden pain in my side.\tJ'ai ressenti une douleur soudaine au côté.\nI felt my heart beating rapidly.\tJe sentais mon cœur battre rapidement.\nI figured I might find you here.\tJe me suis imaginée que je pourrais vous trouver là.\nI figured I might find you here.\tJe me suis imaginée que je pourrais te trouver là.\nI figured I might find you here.\tJe me suis imaginé que je pourrais vous trouver là.\nI figured I might find you here.\tJe me suis imaginé que je pourrais te trouver là.\nI figured I might find you here.\tJ'ai songé que je pourrais vous trouver là.\nI figured I might find you here.\tJ'ai songé que je pourrais te trouver là.\nI figured I might find you here.\tJ'ai songé qu'il se pourrait que je vous trouve là.\nI figured I might find you here.\tJ'ai songé qu'il se pourrait que je te trouve là.\nI figured I might find you here.\tJ'ai songé qu'il se pourrait que je vous trouve ici.\nI figured I might find you here.\tJ'ai songé qu'il se pourrait que je te trouve ici.\nI figured I might find you here.\tJ'ai songé que je pourrais te trouver ici.\nI figured I might find you here.\tJ'ai songé que je pourrais vous trouver ici.\nI filled up the vase with water.\tJ'ai rempli le vase d'eau.\nI first met him three years ago.\tJe l'ai rencontré pour la première fois il y a 3 ans.\nI first met him three years ago.\tJe l'ai rencontré pour la première fois il y a trois ans.\nI fixed myself something to eat.\tJe me préparai quelque chose à manger.\nI fixed myself something to eat.\tJe me suis préparé quelque chose à manger.\nI forgot my credit card at home.\tJ'ai oublié ma carte de crédit à la maison.\nI forgot to buy a birthday cake.\tJ'ai oublié d'acheter un gâteau d'anniversaire.\nI forgot to telephone him today.\tJ'ai oublié de lui téléphoner aujourd'hui.\nI forgot you don't like carrots.\tJ'ai oublié que tu n'aimes pas les carottes.\nI forgot you don't like carrots.\tJ'ai oublié que vous n'aimez pas les carottes.\nI found the man I want to marry.\tJ'ai trouvé l'homme que je veux épouser.\nI found the subject fascinating.\tJ'ai trouvé le sujet passionnant.\nI found this column interesting.\tJ'ai trouvé cette colonne intéressante.\nI gave her a comic book to read.\tJe lui donnai une bande dessinée à lire.\nI gave her just what she needed.\tJe lui ai seulement donné ce dont elle avait besoin.\nI get asked that question a lot.\tOn me pose beaucoup cette question.\nI go for a walk every other day.\tJe fais une promenade un jour sur deux.\nI go to the barber once a month.\tJe vais chez le coiffeur une fois par mois.\nI go to the movies once a month.\tJe vais au cinéma une fois par mois.\nI go to work every day by train.\tJe me rends chaque jour au travail en train.\nI got a nasty sting from a wasp.\tJe me suis fait méchamment piqué par une guêpe.\nI got here a little early today.\tJe suis arrivée un peu tôt aujourd'hui.\nI got here a little early today.\tJe suis arrivé un peu tôt aujourd'hui.\nI got my son to repair the door.\tJ'ai fait réparer la porte par mon fils.\nI got up to go and look outside.\tJe me levai pour aller regarder dehors.\nI got up very late this morning.\tJe me suis levé très tard ce matin.\nI grow orchids in my greenhouse.\tJe cultive des orchidées dans ma serre.\nI guess I could use some advice.\tJe suppose que des conseils ne seraient pas du luxe pour moi.\nI guess I could use some advice.\tJe suppose que je ne refuserais pas des conseils.\nI guess I could use the company.\tJe suppose que je pourrais utiliser l'entreprise.\nI guess I just got carried away.\tJe suppose que je me suis laissé emporter.\nI guess I just got carried away.\tJe suppose que je me suis laissée emporter.\nI guess I'll find out next week.\tJe suppose que je vais le découvrir la semaine prochaine.\nI guess that doesn't concern me.\tJe suppose que cela ne me regarde pas.\nI guess that she is over thirty.\tJe lui donne plus de trente ans.\nI guess that she is over thirty.\tElle doit sûrement avoir plus de trente ans.\nI guess that would be all right.\tJe pense que ça devrait aller.\nI guess we were happy back then.\tJe suppose que nous étions alors heureux.\nI guess we were happy back then.\tJe suppose que nous étions alors heureuses.\nI guess we're both going to die.\tJe suppose que nous allons tous les deux mourir.\nI guess you must be very hungry.\tJe suppose que vous devez avoir très faim.\nI guess you're right about that.\tJe suppose que vous avez raison à ce sujet.\nI had a chance to travel abroad.\tJ'eus la chance de voyager à l'étranger.\nI had a hunch you would do that.\tJ'ai eu le pressentiment que vous feriez cela.\nI had a hunch you would do that.\tJ'ai eu le pressentiment que tu ferais ça.\nI had a job when I was your age.\tJ'avais un boulot lorsque j'avais votre âge.\nI had a job when I was your age.\tJ'avais un boulot lorsque j'avais ton âge.\nI had a job when I was your age.\tJ'ai eu un boulot lorsque j'avais votre âge.\nI had a job when I was your age.\tJ'ai eu un boulot lorsque j'avais ton âge.\nI had a lot of fun last weekend.\tJe me suis beaucoup amusée, le week-end dernier.\nI had a lot of fun last weekend.\tJe me suis beaucoup amusé, le week-end dernier.\nI had a problem to take care of.\tIl a fallu que je m'occupe d'un problème.\nI had a son who died in the war.\tJ'avais un fils qui est mort à la guerre.\nI had a very good day yesterday.\tJ'ai passé une très bonne journée hier.\nI had an out-of-body experience.\tJ'ai vécu une expérience extra-corporelle.\nI had bought it the week before.\tJe l'avais acheté la semaine précédente.\nI had issues I had to deal with.\tJ'ai eu des problèmes qu'il m'a fallu traiter.\nI had my watch stolen yesterday.\tJe me suis fait voler ma montre hier.\nI had no idea Tom would do that.\tJe n'avais aucune idée que Tom ferait cela.\nI had no idea you felt that way.\tJe n'avais pas idée que vous ressentiez cela.\nI had no idea you felt that way.\tJe n'avais pas idée que tu ressentais cela.\nI had no idea you felt that way.\tJe n'avais pas idée que vous vous sentiez ainsi.\nI had no idea you felt that way.\tJe n'avais pas idée que tu te sentais ainsi.\nI had no idea you were involved.\tJe n'avais pas idée que vous étiez impliquée.\nI had no idea you were involved.\tJe n'avais pas idée que vous étiez impliqués.\nI had no idea you were involved.\tJe n'avais pas idée que vous étiez impliquées.\nI had no idea you were involved.\tJe n'avais pas idée que vous étiez impliqué.\nI had no idea you were involved.\tJe n'avais pas idée que tu étais impliquée.\nI had no idea you were involved.\tJe n'avais pas idée que tu étais impliqué.\nI had no idea you were so young.\tJe n'avais pas idée que vous étiez si jeune.\nI had no idea you were so young.\tJe n'avais pas idée que vous étiez si jeunes.\nI had no idea you were so young.\tJe n'avais pas idée que tu étais si jeune.\nI had something else on my mind.\tJ'eus autre chose à l'esprit.\nI had something else on my mind.\tJ'ai eu autre chose à l'esprit.\nI had something else on my mind.\tJ'avais autre chose à l'esprit.\nI had things I had to deal with.\tJ'ai eu des choses qu'il m'a fallu traiter.\nI had to beg my friends to come.\tJ'ai dû supplier mes amis de venir.\nI had to see a doctor yesterday.\tJe devais aller voir un docteur hier.\nI had to wait for Tom to finish.\tJe devais attendre Tom pour finir.\nI hate being alone at Christmas.\tJe déteste être seul à Noël.\nI hate that you have to be here.\tJe suis désolé qu'il vous faille être ici.\nI hate that you have to be here.\tJe suis désolée qu'il vous faille être ici.\nI hate that you have to be here.\tJe suis désolé qu'il te faille être ici.\nI hate that you have to be here.\tJe suis désolée qu'il te faille être ici.\nI hate the color of these walls.\tJe déteste la couleur de ces cloisons.\nI hate the color of these walls.\tJe déteste la couleur de ces murs.\nI have a bad feeling about this.\tJ'ai une mauvaise impression à ce sujet.\nI have a great deal to do today.\tJ'ai beaucoup à faire aujourd'hui.\nI have a lot in common with him.\tJ'ai beaucoup en commun avec lui.\nI have a rough idea where it is.\tJ'ai une vague idée d'où ça se trouve.\nI have a rough idea where it is.\tJ'ai une vague idée où ça se situe.\nI have a sharp pain in my chest.\tJ'ai une douleur aiguë dans la poitrine.\nI have a twitch in my right eye.\tJ'ai un tic dans l'œil droit.\nI have a week to do my homework.\tJ'ai une semaine pour effectuer mes devoirs.\nI have absolutely nothing to do.\tJe n'ai strictement rien à faire.\nI have absolutely nothing to do.\tJe n'ai absolument rien à faire.\nI have already done my homework.\tJ'ai déjà fait mes devoirs.\nI have already finished the job.\tJ'ai déjà fini le travail.\nI have already had my breakfast.\tJ'ai déjà pris mon petit-déjeuner.\nI have already had my breakfast.\tJ'ai déjà mangé mon petit déjeuner.\nI have already written a letter.\tJ'ai déjà écrit une lettre.\nI have as many books as he does.\tJ'ai autant de livres que lui.\nI have as many books as he does.\tJe dispose d'autant de livres que lui.\nI have bruises all over my body.\tJ'ai des bleus sur tout mon corps.\nI have difficulty concentrating.\tJ'ai des difficultés à me concentrer.\nI have enclosed your order form.\tJ'ai joint votre bon de commande.\nI have enjoyed myself very much.\tJe me suis bien amusé.\nI have enjoyed myself very much.\tJe me suis beaucoup amusé.\nI have enough money to buy this.\tJ'ai assez d'argent pour acheter ceci.\nI have everything under control.\tJ'ai tout sous contrôle.\nI have finally reached my limit.\tJ'ai finalement atteint ma limite.\nI have hardly any English books.\tJe n'ai pratiquement pas de livres anglais.\nI have hardly any English books.\tJe n'ai pratiquement pas de livres d'anglais.\nI have hardly any money with me.\tJe n'ai presque pas d'argent sur moi.\nI have lived here for ten years.\tJe vis ici depuis dix années.\nI have lost all respect for you.\tJ'ai perdu tout respect pour toi.\nI have lost my new fountain pen.\tJ'ai perdu mon nouveau stylo plume.\nI have never heard him complain.\tJe ne l'ai jamais entendu se plaindre.\nI have never tried Chinese food.\tJe n'ai jamais essayé la cuisine chinoise.\nI have no friends supporting me.\tJe n'ai pas d'amis qui me soutiennent.\nI have no intention of changing.\tJe n'ai pas l'intention de changer.\nI have no one to say goodbye to.\tJe n'ai personne à qui dire au revoir.\nI have no proof to the contrary.\tJe n'ai aucune preuve du contraire.\nI have nothing more to do today.\tJe n'ai rien d'autre à faire aujourd'hui.\nI have nothing particular to do.\tJe n'ai rien de particulier à faire.\nI have nothing to report so far.\tJe n'ai rien à signaler jusqu'à présent.\nI have nothing to report so far.\tJe n'ai rien à signaler pour l'instant.\nI have nothing to say right now.\tJe n'ai rien à dire maintenant.\nI have some stuff to do at home.\tJ'ai des trucs à faire chez moi.\nI have to be back home by seven.\tJe dois être rentré chez moi pour sept heures.\nI have to be back home by seven.\tJe dois être rentrée chez moi pour sept heures.\nI have to be back home by seven.\tJe dois être rentré chez moi pour dix-neuf heures.\nI have to be back home by seven.\tJe dois être rentrée chez moi pour dix-neuf heures.\nI have to finish what I started.\tIl me faut finir ce que j'ai entrepris.\nI have to finish what I started.\tIl me faut terminer ce que j'ai entrepris.\nI have to finish what I started.\tIl me faut finir ce que j'ai commencé.\nI have to finish what I started.\tIl me faut terminer ce que j'ai commencé.\nI have to finish what I started.\tIl me faut achever ce que j'ai entrepris.\nI have to go back to the office.\tIl me faut retourner au bureau.\nI have to go back to the office.\tIl faut que je retourne au bureau.\nI have to go back to the office.\tJe dois retourner au bureau.\nI haven't always been a teacher.\tJe n'ai pas toujours été professeur.\nI haven't been feeling so great.\tJe ne me sens pas si bien.\nI haven't got all day, you know.\tJe n'ai pas toute la journée, tu sais.\nI haven't met with Tom recently.\tJe n'ai pas rencontré Tom récemment.\nI haven't read any of his books.\tJe n'ai lu aucun de ses livres.\nI haven't seen any of his films.\tJe n'ai vu aucun de ses films.\nI haven't thought much about it.\tJe n'y ai pas beaucoup réfléchi.\nI hear you, but I don't see you.\tJe t'entends mais je ne te vois pas.\nI heard her singing in her room.\tJe l'ai entendue chanter dans sa chambre.\nI heard someone calling my name.\tJ'entendis quelqu'un appeler mon nom.\nI heard someone calling my name.\tJ'ai entendu quelqu'un appeler mon nom.\nI heard the front doorbell ring.\tJ'ai entendu sonner la cloche de la porte de l'entrée.\nI heard the song sung in French.\tJ'ai entendu cette chanson en version française.\nI heard voices through the wall.\tJ'ai entendu des voix à travers le mur.\nI heard you paid a visit to Tom.\tJ'ai entendu dire que tu as rendu visite à Tom.\nI hope he won't be disappointed.\tJ'espère qu'il ne sera pas déçu.\nI hope our luck doesn't run out.\tJ'espère que notre chance ne va pas s'épuiser.\nI hope that it is fine tomorrow.\tJ'espère qu'il fera beau demain.\nI hope this is resolved quickly.\tJ'espère que cela soit résolu rapidement.\nI hope you feel better tomorrow.\tJ'espère que tu te sentiras mieux demain.\nI hope you feel better tomorrow.\tJ'espère que vous vous sentirez mieux demain.\nI hope you stop telling me lies.\tJ'espère que tu cesseras de me raconter des bobards.\nI hope you stop telling me lies.\tJ'espère que tu t'arrêteras de me raconter des mensonges.\nI hope you stop telling me lies.\tJ'espère que vous vous arrêterez de me raconter des mensonges.\nI hope you stop telling me lies.\tJ'espère que vous cesserez de me raconter des mensonges.\nI hope you stop telling me lies.\tJ'espère que vous arrêterez de me raconter des mensonges.\nI hope you stop telling me lies.\tJ'espère que tu arrêteras de me raconter des mensonges.\nI hope your wish will come true.\tJ'espère que ton souhait se réalisera.\nI hope your wish will come true.\tJ'espère que votre souhait se réalisera.\nI introduced Mary to my parents.\tJ'ai présenté Marie à mes parents.\nI just can't help you right now.\tJe ne peux simplement pas vous aider à l'instant.\nI just can't help you right now.\tJe ne peux simplement pas t'aider à l'instant.\nI just can't help you this time.\tJe ne peux simplement pas t'aider, cette fois.\nI just can't help you this time.\tJe ne peux simplement pas vous aider, cette fois.\nI just can't wait to go to work.\tJe suis impatient d'aller au travail.\nI just can't wait to go to work.\tJe suis impatiente d'aller au travail.\nI just couldn't let that happen.\tJe ne pouvais simplement pas laisser ça arriver.\nI just couldn't let that happen.\tJe ne pourrais simplement pas laisser ça arriver.\nI just couldn't take it anymore.\tJe n'en pouvais simplement plus.\nI just didn't want to upset you.\tJe ne voulais simplement pas te contrarier.\nI just didn't want to upset you.\tJe ne voulais simplement pas vous contrarier.\nI just didn't want to upset you.\tJe n'ai simplement pas voulu te contrarier.\nI just didn't want to upset you.\tJe n'ai simplement pas voulu vous contrarier.\nI just didn't want you to worry.\tJe ne voulais simplement pas que tu te fasses du souci.\nI just didn't want you to worry.\tJe ne voulais simplement pas que vous vous fassiez du souci.\nI just don't have what it takes.\tJe n'ai simplement pas le cran.\nI just don't want to believe it.\tJe ne veux pas y croire, un point c'est tout.\nI just don't want to believe it.\tJe ne veux tout simplement pas y croire.\nI just feel a little inadequate.\tJe me sens juste pas à ma place.\nI just figured out how to do it.\tJe viens de comprendre comment le faire.\nI just got back three hours ago.\tJe viens de rentrer il y a trois heures.\nI just got bitten by a mosquito.\tJe viens de me faire mordre par un moustique.\nI just got here a few hours ago.\tJe viens d'arriver ici il y a quelques heures.\nI just haven't gotten to it yet.\tJe n'y suis simplement pas encore parvenu.\nI just haven't gotten to it yet.\tJe n'y suis simplement pas encore parvenue.\nI just need you to trust me, OK?\tJ'ai juste besoin que tu me fasses confiance, d'accord ?\nI just need you to trust me, OK?\tJ'ai juste besoin que vous me fassiez confiance, d'accord ?\nI just want things to be normal.\tJe veux simplement que les choses soient normales.\nI just want things to be normal.\tJe veux que les choses soient normales, un point c'est tout.\nI just want to be a good person.\tJe veux juste être une bonne personne.\nI just want to do something fun.\tJe veux juste faire quelque chose d'amusant.\nI just want to get it over with.\tJe veux juste m'en débarrasser.\nI just want to get my work done.\tJe veux faire mon travail, un point c'est tout.\nI just want to get my work done.\tJe veux tout simplement faire mon travail.\nI just want to go back to class.\tJe veux juste retourner en classe.\nI just want to have a good time.\tJe veux juste prendre du bon temps.\nI just want us to stay together.\tJe veux simplement que nous restions ensemble.\nI just want what I was promised.\tJe veux simplement ce qui m'a été promis.\nI just want what everyone wants.\tJe veux seulement ce que tout le monde veut.\nI just want what's best for you.\tJe veux seulement le meilleur pour toi.\nI just want what's best for you.\tJe veux seulement ce qu'il y a de meilleur pour vous.\nI just want what's best for you.\tJe veux juste ce qui est le meilleur pour toi.\nI just want you out of my house.\tJe veux simplement que tu sois en dehors de ma maison.\nI just want you out of my house.\tJe veux simplement que vous soyez en dehors de ma maison.\nI just want you to listen to me.\tJe veux juste que tu m'écoutes.\nI just wanted to check my email.\tJe voulais juste vérifier mes emails.\nI just wanted to check my email.\tJe voulais juste vérifier mon courrier électronique.\nI just wanted to check my email.\tJe voulais juste vérifier mes courriels.\nI just wanted to make a gesture.\tJe voulais juste faire un geste.\nI just wanted to thank everyone.\tJe voulais juste remercier tout le monde.\nI just wanted us to be together.\tJe voulais seulement que nous soyons ensemble.\nI keep my hammer in the toolbox.\tJe garde mon marteau dans la caisse à outils.\nI knew Tom would be heartbroken.\tJe savais que Tom aurait le cœur brisé.\nI knew it would be an adventure.\tJe savais que cela allait être une aventure.\nI knew this was a waste of time.\tJe savais que c'était un gaspillage de temps.\nI knew this was going to happen.\tJe savais que ça allait arriver.\nI knew what was going to happen.\tJe savais ce qui allait arriver.\nI know I can't take Tom's place.\tJe sais que je ne peux pas prendre la place de Tom.\nI know I got it right this time.\tJe sais que j'ai trouvé, cette fois.\nI know I got it right this time.\tJe sais que j'ai donné la bonne réponse, cette fois.\nI know I got it right this time.\tJe sais que j'ai fourni la bonne réponse, cette fois.\nI know I got it right this time.\tJe sais que j'ai compris, cette fois.\nI know I got it right this time.\tJe sais que j'ai saisi, cette fois.\nI know I'm going to regret this.\tJe sais que je vais regretter ça.\nI know Tom doesn't speak French.\tJe sais que Tom ne parle pas français.\nI know almost nothing about you.\tJe ne sais presque rien de toi.\nI know exactly what I should do.\tJe sais exactement ce que je devrais faire.\nI know how we can have some fun.\tJe sais comment on pourrait s'amuser.\nI know it's a great opportunity.\tJe sais qu'il s'agit d'une occasion en or.\nI know somebody who can help us.\tJe connais quelqu'un qui peut nous aider.\nI know someone who can help you.\tJe connais quelqu'un qui peut t'aider.\nI know someone who can help you.\tJe connais quelqu'un qui peut vous aider.\nI know that I don't deserve you.\tJe sais que je ne te mérite pas.\nI know that better than anybody.\tJe le sais mieux que quiconque.\nI know that can't really happen.\tJe sais que ça ne peut pas vraiment arriver.\nI know that you are vegetarians.\tJe sais que vous êtes végétariens.\nI know they're as happy as I am.\tJe sais qu'ils sont autant contents que moi.\nI know we're a pretty good team.\tJe sais que nous sommes une assez bonne équipe.\nI know what they're going to do.\tJe sais ce qu'ils vont faire.\nI know what they're going to do.\tJe sais ce qu'elles vont faire.\nI know what you were hoping for.\tJe sais ce que tu espérais.\nI know what you were hoping for.\tJe sais ce que vous espériez.\nI know where they're taking Tom.\tJe sais où ils emmènent Tom.\nI know where they're taking Tom.\tJe sais où elles emmènent Tom.\nI know who painted this picture.\tJe sais qui a peint ce tableau.\nI know you're smarter than that.\tJe sais que tu es plus intelligent que ça.\nI know you're telling the truth.\tJe sais que tu dis la vérité.\nI know you're telling the truth.\tJe sais que vous dites la vérité.\nI know you're thinking about me.\tJe sais que tu penses à moi.\nI know you're thinking about me.\tJe sais que vous pensez à moi.\nI know you're working part-time.\tJe sais que vous travaillez à temps partiel.\nI lather my face before shaving.\tJe me savonne le visage avant de me raser.\nI learned not to ignore my pain.\tJ'ai appris à ne pas ignorer ma douleur.\nI learned that when I was a kid.\tJ'ai appris cela lorsque j'étais enfant.\nI left my calculator on my desk.\tJ'ai laissé ma calculatrice sur mon bureau.\nI left my calculator on my desk.\tJ'ai laissé ma calculette sur mon bureau.\nI left my dictionary downstairs.\tJ'ai laissé mon dictionnaire en bas.\nI left my gloves in the library.\tJ'ai laissé mes gants à la bibliothèque.\nI left my guitar in your office.\tJ'ai laissé ma guitare dans ton bureau.\nI left my guitar in your office.\tJ'ai laissé ma guitare dans votre bureau.\nI left part of the meal uneaten.\tJ'ai laissé une partie du repas.\nI left the keys in the ignition.\tJ'ai laissé les clés dans le contact.\nI let my guard down momentarily.\tJ'ai momentanément baissé la garde.\nI like bananas more than apples.\tJ'aime plus les bananes que les pommes.\nI like being part of this group.\tJ'aime faire partie de ce groupe.\nI like him because he is honest.\tJe l'apprécie parce qu'il est honnête.\nI like hot tea better than cold.\tJe préfère le thé chaud que froid.\nI like to be with my classmates.\tJ'aime être avec mes camarades de classe.\nI like to swim in the afternoon.\tJ'aime aller nager l'après-midi.\nI like trains better than buses.\tJe préfère les trains aux bus.\nI like working for this company.\tJ'aime travailler pour cette entreprise.\nI liked having you here tonight.\tJ'ai apprécié de vous avoir ici ce soir.\nI liked having you here tonight.\tJ'ai apprécié de t'avoir ici ce soir.\nI listened, but I heard nothing.\tJ'écoutai, mais je n'entendis rien.\nI lived in Sanda City last year.\tL'année dernière je vivais à Sanda City.\nI locked myself out of my house.\tJe me suis enfermé à l'extérieur de ma maison.\nI look on you as my best friend.\tJe te considère comme mon meilleur ami.\nI look on you as my best friend.\tJe te considère comme ma meilleure amie.\nI looked around, but saw nobody.\tJ'ai regardé autour mais n'ai vu personne.\nI love the beaches in Australia.\tJ'adore les plages en Australie.\nI love the view from my balcony.\tJ'adore la vue de mon balcon.\nI love what I'm doing right now.\tJ'aime ce que je fais en ce moment.\nI love you just the way you are.\tJe t'aime exactement comme tu es.\nI love you just the way you are.\tJe vous aime exactement comme vous êtes.\nI made myself a turkey sandwich.\tJe me suis confectionné un sandwich à la dinde.\nI may be old, but I'm not crazy.\tJe suis peut-être vieux, mais pas fou.\nI may be old, but I'm not crazy.\tJe suis peut-être vieille, mais pas folle.\nI met him on my way from school.\tJe l'ai rencontré en revenant de l'école.\nI met him while he was in Japan.\tJe l'ai rencontré pendant qu'il était au Japon.\nI miss my family and my country.\tMa famille et ma patrie me manquent.\nI miss my family and my friends.\tMa famille et mes amis me manquent.\nI miss you when you're not here.\tTu me manques quand tu n'es pas là.\nI miss you when you're not here.\tTu me manques lorsque tu n'es pas là.\nI miss you when you're not here.\tVous me manquez lorsque vous n'êtes pas là.\nI missed the last bus yesterday.\tJ'ai raté le dernier bus hier.\nI must be doing something wrong.\tNous devons être en train de faire quelque chose de travers.\nI must get my homework finished.\tJe dois terminer mes devoirs.\nI must hand in the report today.\tJe dois remettre le rapport aujourd'hui.\nI must have my bicycle repaired.\tJe dois faire réparer mon vélo.\nI must know the truth about him.\tIl faut que je sache la vérité à son sujet.\nI must learn this poem by heart.\tJe dois apprendre ce poème par cœur.\nI need everyone's help tomorrow.\tDemain, j'aurai besoin de l'aide de tout le monde.\nI need it for the parking meter.\tJ'en ai besoin pour le parcmètre.\nI need someone to understand me.\tJ'ai besoin de quelqu'un pour me comprendre.\nI need that as soon as possible.\tJ'ai besoin de cela dès que possible.\nI need to take your temperature.\tIl me faut prendre ta température.\nI need to take your temperature.\tIl me faut prendre votre température.\nI need to talk to you in person.\tJ'ai besoin de te parler en personne.\nI need to talk to you in person.\tJe dois vous parler en personne.\nI needed a break, so I took one.\tJ'avais besoin d'une pause, alors j'en ai fait une.\nI negotiated the price with him.\tJ'ai négocié le prix avec lui.\nI never actually studied French.\tJe n'ai jamais vraiment étudié le français.\nI never drink beer before lunch.\tJe ne bois jamais de bière avant le déjeuner.\nI never expected that to happen.\tJe ne m'étais jamais attendu à ce que ça arrive.\nI never had a girlfriend before.\tJe n'ai jamais eu de petite amie auparavant.\nI never had a girlfriend before.\tJe n'ai jamais eu de petite copine auparavant.\nI never had a girlfriend before.\tJe n'ai jamais eu de nana auparavant.\nI never said it would be simple.\tJe n’ai jamais dit que ça serait simple.\nI never said that I wanted that.\tJe n'ai jamais dit que je voulais cela.\nI never spoke to him after that.\tJe ne lui ai plus reparlé depuis.\nI never stop thinking about you.\tJe ne cesse de penser à toi.\nI never stop thinking about you.\tJe ne cesse de penser à vous.\nI never thought I would do that.\tJe n'ai jamais pensé que je ferais cela.\nI never thought Tom could do it.\tJe n’aurais jamais pensé que Tom pourrait le faire.\nI never thought about it before.\tJe n'y ai jamais pensé auparavant.\nI never thought about it before.\tJe n'y ai jamais songé auparavant.\nI never thought it would happen.\tJe n'ai jamais pensé que cela arriverait.\nI never want to leave you again.\tJe ne veux plus jamais te laisser.\nI never want to leave you again.\tJe ne veux plus jamais te quitter.\nI never wanted to have children.\tJe n'ai jamais voulu avoir des enfants.\nI no longer want to hurt anyone.\tJe ne veux plus faire de mal à personne.\nI often hear her play the piano.\tJe l'entends souvent jouer du piano.\nI often refer to the dictionary.\tJe me réfère souvent au dictionnaire.\nI often think of my dead mother.\tJe pense souvent à ma mère morte.\nI only did it for your own good.\tJe ne l'ai fait que pour ton bien.\nI only did it for your own good.\tJe ne l'ai fait que pour votre bien.\nI only did it for your own good.\tJe ne l'ai fait que pour ton bien à toi.\nI only did it for your own good.\tJe ne l'ai fait que pour votre bien à vous.\nI only feed my dog dry dog food.\tJe ne donne que des croquettes à manger à mon chien.\nI only hope you're not too late.\tJ'espère seulement que vous n'êtes pas trop en retard.\nI only hope you're not too late.\tJ'espère seulement que tu n'es pas trop en retard.\nI only wish I were able to help.\tJe souhaiterais seulement être en mesure de vous aider.\nI only wish I were able to help.\tJe souhaiterais seulement être en mesure de t'aider.\nI ordered the book from Britain.\tJ'ai commandé ce livre depuis l'Angleterre.\nI ordered the book from England.\tJ'ai commandé le livre en Angleterre.\nI ordered the book from England.\tJ'ai commandé le livre depuis l'Angleterre.\nI paid 2,000 yen for this atlas.\tJ'ai payé 2 000 yens pour cet atlas.\nI paid a lot of money for these.\tJ'ai payé beaucoup d'argent pour ceux-ci.\nI paid a lot of money for these.\tJ'ai payé beaucoup d'argent pour celles-ci.\nI paid for the purchase in cash.\tJ'ai réglé cet achat en espèces.\nI paid ten dollars for this cap.\tJ'ai payé dix dollars pour cette casquette.\nI plan on being there in person.\tJe prévois d'y être en personne.\nI play guitar in an oldies band.\tJe joue de la guitare dans un groupe qui chante des vieux tubes.\nI prefer a hotel by the airport.\tJe préfère un hôtel proche de l'aéroport.\nI prefer not to discuss it here.\tJe préfère ne pas en discuter ici.\nI prefer red wine to white wine.\tJe préfère le vin rouge au vin blanc.\nI pretended that I was sleeping.\tJe faisais semblant de dormir.\nI pretended that I was sleeping.\tJ'ai fait semblant de dormir.\nI pretended that I was sleeping.\tJe faisais semblant d'être en train de dormir.\nI pretended that I was sleeping.\tJ'ai fait semblant d'être en train de dormir.\nI promise I won't do this again.\tJe promets que je ne referai plus ça.\nI read that report before lunch.\tJ'ai lu ce rapport avant le déjeuner.\nI read that report before lunch.\tJ'ai lu ce rapport avant de déjeuner.\nI read your letter to my family.\tJ'ai lu ta lettre à ma famille.\nI really appreciate your coming.\tJ'apprécie vraiment que vous soyez venu.\nI really appreciate your coming.\tJ'apprécie vraiment que vous soyez venue.\nI really appreciate your coming.\tJ'apprécie vraiment que vous soyez venues.\nI really appreciate your coming.\tJ'apprécie vraiment que vous soyez venus.\nI really appreciate your coming.\tJ'apprécie vraiment votre venue.\nI really appreciate your coming.\tJ'apprécie vraiment ta venue.\nI really appreciate your coming.\tJ'apprécie vraiment que tu sois venu.\nI really appreciate your coming.\tJ'apprécie vraiment que tu sois venue.\nI really believed it would work.\tJ'ai vraiment cru que ça marcherait.\nI really don't know what to say.\tJe ne sais vraiment pas quoi dire.\nI really don't understand women.\tJe ne comprends vraiment pas les femmes.\nI really see no reason to leave.\tJe ne vois vraiment pas de raison de partir.\nI really think you should leave.\tJe pense vraiment que vous devriez partir.\nI really think you should leave.\tJe pense vraiment que tu devrais partir.\nI really want to hold your hand.\tJe veux vraiment te tenir la main.\nI recognized her at first sight.\tJe la reconnus du premier coup d'œil.\nI recognized her at first sight.\tJe la reconnus au premier coup d'œil.\nI refuse to answer the question.\tJe me refuse à répondre à cette question.\nI refuse to answer the question.\tJe refuse de répondre à la question.\nI refuse to obey you any longer.\tJe refuse de vous obéir plus longtemps.\nI regret that this all happened.\tJe regrette que tout cela se soit produit.\nI remember meeting him in Paris.\tJe me rappelle l'avoir rencontré à Paris.\nI remember meeting him in Paris.\tJe me souviens l'avoir rencontré à Paris.\nI remember seeing her somewhere.\tJe me souviens l'avoir vue quelque part.\nI remember seeing him somewhere.\tJe me souviens de l'avoir vu quelque part.\nI remember seeing you last year.\tJe me rappelle t'avoir vu l'année passée.\nI remember seeing you last year.\tJe me rappelle t'avoir vue l'année passée.\nI remember seeing you last year.\tJe me rappelle vous avoir vue l'année passée.\nI remember seeing you last year.\tJe me rappelle vous avoir vues l'année passée.\nI remember seeing you last year.\tJe me rappelle vous avoir vus l'année passée.\nI remember seeing you last year.\tJe me rappelle vous avoir vu l'année passée.\nI remember seeing you somewhere.\tJe me souviens vous avoir vu quelque part.\nI remember when I first saw you.\tJe me rappelle quand je t'ai vu pour la première fois.\nI remember when I first saw you.\tJe me rappelle quand je t'ai vue pour la première fois.\nI remember when I first saw you.\tJe me rappelle quand je vous ai vu pour la première fois.\nI remember when I first saw you.\tJe me rappelle quand je vous ai vue pour la première fois.\nI remember when I first saw you.\tJe me rappelle quand je vous ai vus pour la première fois.\nI remember when I first saw you.\tJe me rappelle quand je vous ai vues pour la première fois.\nI respect you and your opinions.\tJe te respecte, toi et tes opinions.\nI respect you and your opinions.\tJe vous respecte, ainsi que vos opinions.\nI said nothing about the matter.\tJe ne dis rien à propos de l'affaire.\nI said nothing about the matter.\tJe n'ai rien dit à propos de l'affaire.\nI said that wasn't what I meant.\tJ'ai dit que ça n'était pas ce que je voulais dire.\nI sat down and opened my laptop.\tJe m'assis et ouvris mon ordinateur portable.\nI saw a boy crossing the street.\tJe vis un garçon traverser la rue.\nI saw a boy crossing the street.\tJ'ai vu un garçon traverser la rue.\nI saw a cottage in the distance.\tJe vis une petite maison au loin.\nI saw a cottage in the distance.\tJe vis un cottage au loin.\nI saw a cottage in the distance.\tJe vis un chalet au loin.\nI saw a dog crossing the street.\tJ'ai vu un chien traverser la rue.\nI saw his car make a right turn.\tJ'ai vu sa voiture tourner à droite.\nI saw you in the park yesterday.\tJe t'ai vu au parc, hier.\nI saw you in the park yesterday.\tJe t'ai vu dans le parc, hier.\nI saw you in the park yesterday.\tJe t'ai vue au parc, hier.\nI saw you in the park yesterday.\tJe t'ai vue dans le parc, hier.\nI saw you in the park yesterday.\tJe vous ai vu dans le parc, hier.\nI saw you in the park yesterday.\tJe vous ai vue dans le parc, hier.\nI saw you in the park yesterday.\tJe vous ai vus dans le parc, hier.\nI saw you in the park yesterday.\tJe vous ai vues dans le parc, hier.\nI saw you in the park yesterday.\tJe vous ai vu au parc, hier.\nI saw you in the park yesterday.\tJe vous ai vue au parc, hier.\nI saw you in the park yesterday.\tJe vous ai vus au parc, hier.\nI saw you in the park yesterday.\tJe vous ai vues au parc, hier.\nI seem to have the wrong number.\tIl semble que je dispose du mauvais numéro.\nI share the room with my sister.\tJe partage la chambre avec ma sœur.\nI should never have stolen that.\tJe n'aurais jamais dû volé ça.\nI should've gone there with you.\tJ'aurais dû y aller avec toi.\nI should've gone there with you.\tJ'aurais dû y aller avec vous.\nI still find it hard to believe.\tJe trouve toujours ça difficile à croire.\nI succeeded in my first attempt.\tJe réussis à ma première tentative.\nI suddenly feel very much alone.\tJe me sens très seul, d'un seul coup.\nI suddenly feel very much alone.\tJe me sens très seule, d'un seul coup.\nI suggest we go out for a drink.\tJe suggère que nous sortions prendre un verre.\nI suggest you leave immediately.\tJe suggère que vous partiez immédiatement.\nI suggest you leave immediately.\tJe suggère que tu partes immédiatement.\nI support you a hundred percent.\tJe te soutiens à cent pour cent.\nI support you a hundred percent.\tJe vous soutiens à cent pour cent.\nI suppose it couldn't be helped.\tJe suppose qu'on n'y pourrait rien.\nI suppose you know all about it.\tJe suppose que tu sais tout à ce sujet.\nI suppose you know all about it.\tJe suppose que vous savez tout à ce sujet.\nI sure am glad you weren't hurt.\tJe me réjouis certainement que vous n'ayez pas été blessé.\nI sure am glad you weren't hurt.\tJe me réjouis certainement que vous n'ayez pas été blessés.\nI sure am glad you weren't hurt.\tJe me réjouis certainement que vous n'ayez pas été blessées.\nI sure am glad you weren't hurt.\tJe me réjouis certainement que vous n'ayez pas été blessée.\nI sure am glad you weren't hurt.\tJe me réjouis certainement que tu n'aies pas été blessé.\nI sure am glad you weren't hurt.\tJe me réjouis certainement que tu n'aies pas été blessée.\nI sure appreciate all your help.\tJe suis certainement reconnaissant pour toute votre aide.\nI sure appreciate all your help.\tJe suis certainement reconnaissante pour toute votre aide.\nI sure appreciate all your help.\tJe suis certainement reconnaissant pour toute ton aide.\nI sure appreciate all your help.\tJe suis certainement reconnaissante pour toute ton aide.\nI think I'll snooze for a while.\tJe pense que je vais somnoler un moment.\nI think I'll take a look around.\tJe pense que je vais jeter un œil aux alentours.\nI think I'm a pretty normal guy.\tJe pense que je suis un gars plutôt normal.\nI think I'm going back to sleep.\tJe pense que je vais rentrer me coucher…\nI think I've made a big mistake.\tJe pense avoir fait une grosse erreur.\nI think Mary's skirt's too long.\tJe pense que la jupe de Marie est trop longue.\nI think Tom doesn't like to ski.\tJe pense que Tom n'aime pas skier.\nI think Tom is hiding from Mary.\tJe pense que Tom se cache aux yeux de Marie.\nI think Tom is in love with you.\tJe pense que Tom est amoureux de toi.\nI think Tom is pulling your leg.\tJe pense que Tom te fait marcher.\nI think Tom may be mentally ill.\tJe pense qu'il se peut que Tom soit fou.\nI think Tom was looking for you.\tJe pense que Tom te cherchait.\nI think Tom was looking for you.\tJe pense que Tom vous cherchait.\nI think it's obvious, don't you?\tJe pense que c'est évident, pas vous ?\nI think it's obvious, don't you?\tJe pense que c'est évident, pas toi ?\nI think maybe that was my fault.\tJe pense que c'était peut-être de ma faute.\nI think my German is really bad.\tJe pense que mon allemand est vraiment mauvais.\nI think my German is really bad.\tJe pense que mon Allemand est vraiment mauvais.\nI think that I'm just exhausted.\tJe pense que je suis exténué.\nI think that's already happened.\tJe pense c'est déjà arrivé.\nI think that's enough for today.\tJe pense que c'est tout pour aujourd'hui.\nI think that's really important.\tJe pense que c'est vraiment important.\nI think the wind's dropping off.\tJe crois que le vent faiblit.\nI think there's something wrong.\tJe pense qu'il y a quelque chose qui ne va pas.\nI think there's something wrong.\tJe pense que quelque chose ne va pas.\nI think this is a waste of time.\tJe pense que c'est une perte de temps.\nI think we have a lot in common.\tJe pense que nous avons beaucoup en commun.\nI think we should all go inside.\tJe pense que nous devrions tous aller à l'intérieur.\nI think we should all go inside.\tJe pense que nous devrions toutes aller à l'intérieur.\nI think you did the right thing.\tJe pense que vous avez fait la chose qu'il fallait.\nI think you did the right thing.\tJe pense que tu as fait la chose qu'il fallait.\nI think you have a problem, Tom.\tJe pense que vous avez un problème, Tom.\nI think you should grow a beard.\tJe pense que vous devriez vous faire pousser la barbe.\nI think you should grow a beard.\tJe pense que tu devrais te faire pousser la barbe.\nI think you should listen to me.\tJe pense que tu devrais m'écouter.\nI think you should listen to me.\tJe pense que vous devriez m'écouter.\nI think you should see a doctor.\tJe pense que vous devriez voir un médecin.\nI think you'll be able to do it.\tJe pense que tu seras capable de le faire.\nI think you'll be able to do it.\tJe pense que vous serez capable de le faire.\nI think you're completely right.\tJe pense que tu as totalement raison.\nI think you're going to make it.\tJe pense que tu vas réussir.\nI think you're going to make it.\tJe pense que vous allez réussir.\nI think you're going to survive.\tJe pense que tu vas survivre.\nI think you're going to survive.\tJe pense que vous allez survivre.\nI thought I'd dropped something.\tJe pensais avoir laissé tomber quelque chose.\nI thought Tom said it was a dog.\tJe pensais que Tom avait dit que c'était un chien.\nI thought perhaps you'd give up.\tJe pensais que, peut-être, tu abandonnerais.\nI thought perhaps you'd give up.\tJe pensais que, peut-être, vous abandonneriez.\nI thought that she was pregnant.\tJe croyais que elle était enceinte.\nI thought you could use a break.\tJe me suis dit qu'une pause te ferait du bien.\nI thought you didn't want to go.\tJe pensais que tu ne voulais pas y aller.\nI thought you didn't want to go.\tJe pensais que vous ne vouliez pas y aller.\nI thought you were Tom's friend.\tJe pensais que tu étais l'ami de Tom.\nI thought you'd be more helpful.\tJe pensais que tu serais plus serviable.\nI thought you'd be more helpful.\tJe pense que vous seriez plus serviable.\nI thought you'd be more helpful.\tJe pense que vous seriez plus serviables.\nI thought you'd seen this movie.\tJe pensais que tu avais vu ce film.\nI thought you'd seen this movie.\tJe pensais que vous aviez vu ce film.\nI thought you'd want to help me.\tJe pensais que tu voudrais m'aider.\nI thought you'd want to help me.\tJe pensais que vous voudriez m'aider.\nI thought your parents liked me.\tJe pensais que tes parents m'appréciaient.\nI thought your parents liked me.\tJe pensais que vos parents m'appréciaient.\nI thrust my hand into my pocket.\tJe mettais ma main dans la poche.\nI told him what the problem was.\tJe lui ai dit quel était le problème.\nI told them they shouldn't move.\tJe leur dis de ne pas bouger.\nI told them they shouldn't move.\tJe leur dis qu'ils ne devaient pas bouger.\nI told them they shouldn't move.\tJe leur dis qu'elles ne devaient pas bouger.\nI told you to sign the document.\tJe vous ai dit de signer le document.\nI told you to sign the document.\tJe t'ai dit de signer le document.\nI told you to stay away from me.\tJe vous ai dit de vous tenir à l'écart de ma personne.\nI told you to stay in the house.\tJe t'ai dit de rester dans la maison.\nI told you to stay in the house.\tJe vous ai dit de rester dans la maison.\nI took control of the situation.\tJe pris le contrôle de la situation.\nI took control of the situation.\tJ'ai pris le contrôle de la situation.\nI took his side in the argument.\tJ'ai pris son parti dans la dispute.\nI took the cake out of the oven.\tJ'ai retiré le gâteau du four.\nI took the cake out of the oven.\tJ'ai sorti le gâteau du four.\nI took your umbrella by mistake.\tJ'ai pris ton parapluie par erreur.\nI tried to tell you this before.\tJ'ai essayé de te le dire auparavant.\nI understand that it's not fair.\tJe comprends que ce n'est pas juste.\nI understand what you're saying.\tJe comprends ce que tu es en train de dire.\nI visited her on Sunday morning.\tJe suis allé lui rendre visite dimanche matin.\nI visited him on Sunday morning.\tJe suis allé lui rendre visite dimanche matin.\nI visited many parts of England.\tJ'ai parcouru beaucoup de parties de l'Angleterre.\nI walked in the woods by myself.\tJe me promenais seul en forêt.\nI want a match. Do you have one?\tJe veux une allumette. En as-tu une ?\nI want a match. Do you have one?\tJe veux une allumette. En avez-vous une ?\nI want everything to be perfect.\tJe veux que tout soit parfait.\nI want him to solve the problem.\tJe veux qu'il résolve le problème.\nI want people to know the truth.\tJ'en veux que les gens sachent la vérité.\nI want these people out of here.\tJe veux que ces gens sortent d'ici.\nI want things the way they were.\tJe veux que les choses retournent à leur état antérieur.\nI want this garbage out of here.\tJe veux que ces détritus soient sortis d'ici.\nI want to be in your life again.\tJe veux revenir dans ta vie.\nI want to be in your life again.\tJe veux être de nouveau dans ta vie.\nI want to do this the right way.\tJe veux faire ça de la bonne façon.\nI want to go back to my cubicle.\tJe veux retourner à mon réduit.\nI want to go on a trip with you.\tJe veux partir en vacances avec toi.\nI want to go to America someday.\tUn jour, je voudrais aller en Amérique.\nI want to know how they do that.\tJe veux savoir comment elles font cela.\nI want to know how they do that.\tJe veux savoir comment ils font cela.\nI want to know why you did that.\tJe veux savoir pourquoi tu as fait ça.\nI want to know why you did that.\tJe veux savoir pourquoi vous avez fait ça.\nI want to make her acquaintance.\tJe souhaite faire sa connaissance.\nI want to make my parents proud.\tJe veux rendre mes parents fiers.\nI want to marry a girl like her.\tJe veux me marier avec une fille comme elle.\nI want to sit down for a change.\tJe veux m'asseoir, pour une fois.\nI want to sleep a little longer.\tJe veux dormir un peu plus longtemps.\nI want to speak to your manager.\tJe veux parler à votre supérieur.\nI want to talk about the future.\tJe veux parler du futur.\nI want to talk to your superior.\tJe veux m'entretenir avec votre supérieur.\nI want you to keep your promise.\tJe veux que tu tiennes ta promesse.\nI want you to stop following me.\tJe veux que vous cessiez de me suivre.\nI want you to stop following me.\tJe veux que tu cesses de me suivre.\nI want you to tell me the truth.\tJe voudrais que tu me dises la vérité.\nI wanted to learn from the best.\tJe voulais apprendre des meilleurs.\nI wanted to learn from the best.\tJe voulais apprendre des meilleures.\nI wanted to sell Tom my old car.\tJe voulais vendre ma vieille voiture à Tom.\nI was able to solve the problem.\tJ’étais capable de résoudre ce problème.\nI was at home all day yesterday.\tJ'étais à la maison toute la journée d'hier.\nI was beginning to lose my cool.\tJe commençai à perdre mon sang froid.\nI was discharged without notice.\tJ'ai été licencié sans préavis.\nI was home for a couple of days.\tJ'étais à la maison pendant quelques jours.\nI was homeless for three months.\tJ'étais sans-abri pendant trois mois.\nI was impatient for her arrival.\tJ'étais très impatient de son arrivée.\nI was impressed with what I saw.\tJ'ai été impressionné par ce que j'ai vu.\nI was impressed with what I saw.\tJ'ai été impressionnée par ce que j'ai vu.\nI was in the hospital last week.\tJ'étais à l'hôpital, la semaine dernière.\nI was just trying to be helpful.\tJ'essayais juste d'aider.\nI was kicked out of high school.\tJ'ai été expulsé du lycée.\nI was kicked out of high school.\tJ'ai été expulsée du lycée.\nI was late for school yesterday.\tJ'étais en retard pour l'école hier.\nI was never a very good athlete.\tJe n'ai jamais été un très bon athlète.\nI was quite at a loss for words.\tJe suis resté bouche bée.\nI was really apathetic at first.\tJ'étais vraiment apathique, au début.\nI was the happiest man on earth.\tJ'étais l'homme le plus heureux de la terre.\nI was too afraid to do anything.\tJ'avais trop peur pour faire quoi que ce soit.\nI was too scared to do anything.\tJ'étais trop effrayée pour faire quoi que ce soit.\nI was too scared to do anything.\tJ'avais trop peur pour faire quelque chose.\nI was very rich until I met her.\tJ'étais très riche, jusqu'à ce que je la rencontre.\nI was waiting for that question.\tJ'attendais cette question.\nI was writing her a love letter.\tJe lui écrivais une lettre d'amour.\nI wasn't listening to the radio.\tJe n'écoutais pas la radio.\nI wasn't planning on doing that.\tJe n'avais pas l'intention de le faire.\nI wasn't present at the meeting.\tJ'étais absent de la réunion.\nI wasn't the one who wrote this.\tJe n'en suis pas l'auteur.\nI wasn't trying to hurt anybody.\tJe ne voulais blesser personne.\nI wasn't trying to hurt anybody.\tJe n'essayais pas de blesser qui que ce soit.\nI watch television after supper.\tJe regarde la télévision après le dîner.\nI watch television all day long.\tJe regarde la télévision tout au long de la journée.\nI wear white shirts on weekdays.\tJe porte des chemises blanches en semaine.\nI went out in spite of the rain.\tJe suis sorti malgré la pluie.\nI went swimming after I woke up.\tJe suis allé nager au réveil.\nI went through a lot of trouble.\tJ'ai été confronté à divers problèmes.\nI went to Europe before the war.\tJe suis allé en Europe avant guerre.\nI went to Europe before the war.\tJe suis allé en Europe avant la guerre.\nI will advise you on the matter.\tJe vous donnerai des conseils à ce sujet.\nI will answer within three days.\tJe répondrai d'ici trois jours.\nI will be able to pass the test.\tJe serai capable de réussir le test.\nI will be sixteen next birthday.\tJ'aurai 16 ans à mon prochain anniversaire.\nI will buy a watch at the store.\tJ'achèterai une montre au magasin.\nI will come, weather permitting.\tJe viendrai, si le temps le permet.\nI will complete what he started.\tJe vais terminer ce qu'il a commencé.\nI will do anything that you ask.\tJe ferai tout ce que vous demanderez.\nI will give you what help I can.\tJe vous donnerai toute l'aide que je peux.\nI will go to New York next week.\tJ'irai à New York la semaine prochaine.\nI will go with you if necessary.\tJ'irai avec toi, si nécessaire.\nI will go with you if necessary.\tJ'irai avec vous, si nécessaire.\nI will keep your advice in mind.\tJe garde ton conseil en tête.\nI will see him after I get back.\tJe le verrai après mon retour.\nI will show you around the city.\tJe vais te montrer la ville.\nI will show you around the city.\tJe te montrerai la ville.\nI will show you around the city.\tJe vous montrerai la ville.\nI will show you how to solve it.\tJe te montrerai comment le résoudre.\nI wish I could be more specific.\tJ'aimerais pouvoir être plus précis.\nI wish I could've spoken to Tom.\tJ'aurais aimé pouvoir parler à Tom.\nI wish I could've stayed longer.\tJ'aurais aimé pouvoir rester plus longtemps.\nI wish I had a reason not to go.\tJ'aimerais avoir une raison de ne pas y aller.\nI wish I had been with her then.\tJ'aurais aimé avoir été avec elle, alors.\nI wish I had known how to do it.\tJ'aurais voulu savoir comment le faire.\nI wish I had more money with me.\tJe voudrais avoir plus d'argent sur moi.\nI wish I knew what I should say.\tJ'aimerais savoir ce que je devrais dire.\nI wish I were as rich as Tom is.\tJe voudrais être aussi riche que Tom.\nI wish it were tomorrow already.\tJ'aimerais qu'on soit déjà demain.\nI wish my dream would come true.\tJ'aimerais que mon rêve se réalise.\nI wish they would stop fighting.\tJ'aimerais qu'ils cessent de se disputer.\nI wish they would stop fighting.\tJ'aimerais qu'elles cessent de se disputer.\nI wish you could stay the night.\tJ'aimerais que tu puisses rester pour la nuit.\nI wish you could stay the night.\tJ'aimerais que vous puissiez rester pour la nuit.\nI wish you success in your work.\tJe vous souhaite du succès dans votre travail.\nI wish you success in your work.\tJe te souhaite du succès dans ton travail.\nI wonder if Tom has another one.\tJe me demande si Tom en a un autre.\nI wonder if Tom has another one.\tJe me demande si Tom en a une autre.\nI wonder if anybody can help us.\tJe me demande si quiconque peut nous aider.\nI wonder if this is really true.\tJe me demande si c'est réellement vrai.\nI wonder if this is really true.\tJe me demande si c'est vraiment réel.\nI wonder if you are truly happy.\tJe me demande si tu es vraiment heureux.\nI wonder if you are truly happy.\tJe me demande si tu es vraiment heureuse.\nI wonder if you are truly happy.\tJe me demande si vous êtes vraiment heureux.\nI wonder if you are truly happy.\tJe me demande si vous êtes vraiment heureuse.\nI wonder what I should do today.\tJe me demande ce que je devrais faire aujourd'hui.\nI wonder what Tom thought of it.\tJe me demande ce que Tom en a pensé.\nI wonder what ear lobes are for.\tJe me demande à quoi servent les lobes d'oreilles.\nI wonder what has become of her.\tJe me demande ce qu'elle est devenue.\nI wonder what this phrase means.\tJe me demande ce que veut dire cette phrase.\nI wonder who started that rumor.\tJe me demande qui a lancé cette rumeur.\nI work in a hospital laboratory.\tJe travaille dans un laboratoire d'hôpital.\nI would do it again if I had to.\tJe le referais, s'il le fallait.\nI would like some sugar, please.\tJ'aimerais avoir du sucre, s'il vous plaît.\nI would like to charter a yacht.\tJ'aimerais bien affréter un yacht.\nI would like to drink something.\tJ'aimerais bien boire quelque chose.\nI would like to meet his father.\tJe voudrais rencontrer son père.\nI would like you to sing a song.\tJe voudrais que vous chantiez une chanson.\nI would like you to sing a song.\tJe voudrais que tu chantes une chanson.\nI would never have guessed that.\tJe ne l'aurais jamais deviné.\nI would sooner die than give up.\tJe souhaiterais plutôt mourir que d'abandonner.\nI would tend to agree with that.\tJe suis plutôt d'accord avec cela.\nI would've liked to stay longer.\tJ'aurais aimé rester plus longtemps.\nI wrote some poems last weekend.\tJ'ai écrit quelques poèmes, le week-end dernier.\nI'd better get back to work now.\tJe ferais mieux de retourner travailler maintenant.\nI'd like to believe that's true.\tJ'aimerais croire que c'est vrai.\nI'd like to breast-feed my baby.\tJ'aimerais allaiter mon enfant.\nI'd like to drink something hot.\tJe voudrais boire quelque chose de chaud.\nI'd like to insure this, please.\tJ'aimerais assurer ceci s'il vous plaît.\nI'd like to know more about Tom.\tJ'aimerais en savoir plus sur Tom.\nI'd like to know the exact time.\tJ'aimerais savoir l'heure exacte.\nI'd like to know the reason why.\tJ'aimerais en connaître la raison.\nI'd like to reconfirm my flight.\tJ'aimerais reconfirmer mon vol.\nI'd like to see Tom immediately.\tJe voudrais voir Tom immédiatement.\nI'd like to set things straight.\tJ'aimerais mettre les choses au clair.\nI'd like to sleep late tomorrow.\tDemain, j'aimerais dormir tard.\nI'd like us to be friends again.\tJe voudrais qu'on soit amis de nouveau.\nI'd like you to meet my husband.\tJ'aimerais que vous rencontriez mon mari.\nI'd like you to meet my husband.\tJ'aimerais que tu rencontres mon mari.\nI'd like you to meet my husband.\tJ'aimerais que vous rencontriez mon époux.\nI'd like you to meet my husband.\tJ'aimerais que tu rencontres mon époux.\nI'd like your attention, please.\tJ'aimerais avoir votre attention, s'il vous plait.\nI'd lock my doors if I were you.\tJe fermerais mes portes à clef si j'étais toi.\nI'd love to come back next week.\tJ'aimerais revenir la semaine prochaine.\nI'd never do anything so stupid.\tJe ne ferais jamais quelque chose d'aussi stupide.\nI'd never seen anything like it.\tJe n'avais jamais vu quelque chose comme ça.\nI'd never seen anything like it.\tJe n'avais jamais rien vu de tel.\nI'd rather just let people talk.\tJe préfère laisser les gens parler.\nI'd rather walk than take a bus.\tJe préfère marcher plutôt que de prendre le bus.\nI'll always be here to help you.\tJe serai toujours là pour t'aider.\nI'll always be here to help you.\tJe serai toujours là pour vous aider.\nI'll be back before you know it.\tJe serai de retour en un tournemain.\nI'll be back before you know it.\tJe serai de retour en un rien de temps.\nI'll be back before you know it.\tJe serai de retour en moins de temps qu'il ne faut pour le dire.\nI'll be gone for an entire week.\tJe serai parti pour une semaine entière.\nI'll be more than happy to help.\tJe serai plus qu'heureux d'aider.\nI'll be more than happy to help.\tJe serai plus qu'heureuse d'aider.\nI'll be staying here for a week.\tJe resterai ici pendant une semaine.\nI'll be waiting for you outside.\tJe vous attendrai dehors.\nI'll begin by asking a question.\tJe vais commencer par poser une question.\nI'll believe that when I see it.\tJe veux le voir pour le croire.\nI'll bring you something to eat.\tJe t'apporterai quelque chose à manger.\nI'll bring you something to eat.\tJe vous apporterai quelque chose à manger.\nI'll call back as soon as I can.\tJe rappellerai aussi vite que je peux.\nI'll call you as soon as I know.\tJe t'appellerai dès que je le sais.\nI'll find friends wherever I go.\tJe trouverai des amis où que j'aille.\nI'll find friends wherever I go.\tJe trouverai des amis où que je me rende.\nI'll get fired if I don't do it.\tJe vais me faire virer si je ne le fais pas.\nI'll give Tom whatever he wants.\tJe donnerai à Tom tout ce qu'il veut.\nI'll give you a couple examples.\tJe vais vous donner quelques exemples.\nI'll give you a piece of advice.\tJe vais te donner un conseil.\nI'll give you a piece of advice.\tJe vais vous donner un conseil.\nI'll give you anything but this.\tJe te donnerai tout sauf ça.\nI'll go get us something to eat.\tJe vais aller nous chercher quelque chose à manger.\nI'll go to the dentist tomorrow.\tJe vais aller chez le dentiste demain.\nI'll graduate this year, I hope.\tJ'obtiendrai mon diplôme cette année, j'espère.\nI'll have lunch waiting for you.\tJ'aurai un déjeuner qui t'attendra.\nI'll just have one or two beers.\tJe ne vais prendre qu'une ou deux bières.\nI'll keep Thursday open for you.\tJe garderai jeudi de libre pour toi.\nI'll never forget this incident.\tJe n'oublierai jamais cet incident.\nI'll never forget your kindness.\tJe n'oublierai jamais votre gentillesse.\nI'll not be at home next Sunday.\tJe ne serai pas chez moi dimanche prochain.\nI'll put you out of your misery.\tJe vais mettre fin à ton supplice.\nI'll put you out of your misery.\tJe vais mettre fin à votre supplice.\nI'll see you tomorrow at school.\tJe te verrai demain à l'école.\nI'll see you tomorrow at school.\tJe vous verrai demain à l'école.\nI'll show you how to catch fish.\tJe vais te montrer comment attraper un poisson.\nI'll show you that you're wrong.\tJe vais te prouver que tu as tort.\nI'll study harder in the future.\tDorénavant je travaillerai plus dur.\nI'll take it into consideration.\tJ'y réfléchirai.\nI'll take my dog out for a walk.\tJe vais aller promener mon chien.\nI'll take two or three days off.\tJe prendrai deux ou trois jours de congé.\nI'll tell everyone what you did.\tJe dirai à tout le monde ce que tu as fait.\nI'll tell everyone what you did.\tJe dirai à tout le monde ce que vous avez fait.\nI'll tell you when we get there.\tJe te le dirai lorsque nous y serons.\nI'll tell you when we get there.\tJe vous le dirai lorsque nous y serons.\nI'm afraid I have no experience.\tJe crains de ne pas avoir d'expérience.\nI'm afraid it may rain tomorrow.\tJ'ai bien peur qu'il pleuve demain.\nI'm afraid it will rain tonight.\tJ'ai peur qu'il pleuve ce soir.\nI'm afraid it's not a good idea.\tJe crains que ce ne soit pas une bonne idée.\nI'm afraid it's not that simple.\tJe crains que ce ne soit pas si simple.\nI'm afraid that I might be late.\tJe crains d'être éventuellement en retard.\nI'm afraid you misunderstood me.\tJe crains que tu m'aies mal compris.\nI'm afraid you misunderstood me.\tJe crains que tu m'aies mal comprise.\nI'm at Narita Airport right now.\tActuellement, je me trouve à l’aéroport de Narita.\nI'm busy preparing for the trip.\tJe suis occupé à préparer le voyage.\nI'm concerned with Tom's safety.\tJe me fais du soucis par rapport à la sécurité de Tom.\nI'm considering going with them.\tJe réfléchis à aller avec eux.\nI'm employed by a French lawyer.\tJe suis employé par un avocat français.\nI'm expecting a letter from her.\tJ'attends une lettre d'elle.\nI'm experiencing some heartburn.\tJe ressens des brûlures d'estomac.\nI'm familiar with the situation.\tJe suis habitué à la situation.\nI'm familiar with the situation.\tJe suis habituée à la situation.\nI'm friends with all those guys.\tJe suis ami avec tous ces gars-là.\nI'm getting married next Sunday.\tJe me marie dimanche prochain.\nI'm getting ready for the worst.\tJe me prépare au pire...\nI'm glad I got to see you again.\tJe suis heureux d'avoir eu l'occasion de vous revoir.\nI'm glad you're all right again.\tJe suis content que tu ailles de nouveau bien.\nI'm going on vacation next week.\tJe pars en vacances la semaine prochaine.\nI'm going to New York next week.\tJ'irai à New York la semaine prochaine.\nI'm going to ask for a new desk.\tJe vais demander un nouveau bureau.\nI'm going to catch the next bus.\tJe vais attraper le bus suivant.\nI'm going to go call the police.\tJe vais appeler la police.\nI'm going to put a curse on you.\tJe vais lancer sur toi une malédiction.\nI'm going to put a curse on you.\tJe vais lancer sur vous une malédiction.\nI'm going to take some pictures.\tJe vais prendre quelques photos.\nI'm going to teach you a lesson.\tJe vais te donner une leçon.\nI'm going to teach you a lesson.\tJe vais vous donner une leçon.\nI'm going to tell you the truth.\tJe vais te dire la vérité.\nI'm going to the police station.\tJe vais au commissariat.\nI'm happy to report that we won.\tJe suis heureux d'annoncer que nous avons gagné.\nI'm just as confused as you are.\tJe suis aussi perplexe que vous l'êtes.\nI'm just as confused as you are.\tJe suis aussi perplexe que tu l'es.\nI'm just getting back to basics.\tJe reviens à l'essentiel.\nI'm just glad no one was killed.\tJe suis content que personne n'ait été tué.\nI'm just looking out for myself.\tJe m'inquiète pour moi.\nI'm kind of busy right now, Tom.\tJe suis assez occupé, Tom.\nI'm leaving for Canada tomorrow.\tJe pars pour le Canada demain.\nI'm leaving town for a few days.\tJe quitte la ville pour quelques jours.\nI'm leaving town for a few days.\tJe m'éloigne de la ville pour quelques jours.\nI'm looking for a French penpal.\tJe cherche un correspondant français.\nI'm looking for a part-time job.\tJe cherche un travail à mi-temps.\nI'm looking for a room for rent.\tJe cherche une chambre à louer.\nI'm no longer afraid of spiders.\tJe n'ai plus peur des araignées.\nI'm not a doctor, but a teacher.\tJe ne suis pas médecin, mais professeur.\nI'm not a doctor, but a teacher.\tJe ne suis pas médecin, mais enseignant.\nI'm not a doctor, but a teacher.\tJe ne suis pas médecin, mais instituteur.\nI'm not a hundred percent wrong.\tJe ne me suis pas trompé à cent pour cent.\nI'm not afraid to be criticized.\tJe n'ai pas peur d'être critiqué.\nI'm not allowed to say anything.\tJe ne suis pas autorisé à dire quoi que ce soit.\nI'm not allowed to say anything.\tJe ne suis pas autorisée à dire quoi que ce soit.\nI'm not as intelligent as he is.\tJe ne suis pas plus intelligent que lui.\nI'm not going to argue with you.\tJe ne vais pas me disputer avec toi !\nI'm not going to argue with you.\tJe ne vais pas me disputer avec vous !\nI'm not going to close the door.\tJe ne vais pas fermer la porte.\nI'm not going to play this game.\tJe ne vais pas jouer à ce jeu.\nI'm not going to tell you again.\tJe ne vais pas vous le répéter.\nI'm not going to tell you again.\tJe ne vais pas te le répéter.\nI'm not going to waste my money.\tJe ne vais pas gaspiller mon argent.\nI'm not good at public speaking.\tJe ne suis pas bon pour parler en public.\nI'm not good at public speaking.\tJe ne suis pas bonne pour parler en public.\nI'm not in favor of such a plan.\tJe ne suis pas en faveur d'un tel plan.\nI'm not in that much of a hurry.\tIl n'y a pas le feu au lac.\nI'm not in that much of a hurry.\tJe ne suis pas si pressé.\nI'm not in that much of a hurry.\tJe ne suis pas si pressée.\nI'm not in that much of a hurry.\tJe ne suis pas tant pressé.\nI'm not in that much of a hurry.\tJe ne suis pas tant pressée.\nI'm not living with him anymore.\tJe ne vis plus avec lui.\nI'm not prepared to do that yet.\tJe ne suis pas encore prêt à faire cela.\nI'm not rich enough to buy that.\tJe ne suis pas assez riche pour acheter ça.\nI'm not sure I'm ready for this.\tJe ne suis pas sûr d'y être prêt.\nI'm not sure I'm ready for this.\tJe ne suis pas sûre d'y être prête.\nI'm not sure how to answer this.\tJe ne suis pas sûr de la manière avec laquelle répondre à ça.\nI'm not sure how to answer this.\tJe ne suis pas sûr de quoi répondre à cette question.\nI'm not sure if this is correct.\tJe ne suis pas sûr que ce soit correct.\nI'm not sure when he'll turn up.\tJe ne suis pas sûr de quand il va se montrer.\nI'm not sure when he'll turn up.\tJe ne suis pas sûr de quand il va faire surface.\nI'm not sure, but he might come.\tJe n'en suis pas certain, mais il se pourrait qu'il vienne.\nI'm not taking no for an answer.\tJe ne prends pas « non » pour une réponse.\nI'm obviously very disappointed.\tJe suis évidemment très déçu.\nI'm obviously very disappointed.\tJe suis évidemment très déçue.\nI'm only going to say this once.\tJe ne le dirai pas deux fois.\nI'm only going to say this once.\tJe ne vais le dire qu'une seule fois.\nI'm only going to show you once.\tJe ne vais vous le montrer qu'une fois.\nI'm only going to show you once.\tJe ne vais te le montrer qu'une fois.\nI'm pretty sure Tom's competent.\tJe suis assez sûr que Tom est compétent.\nI'm rather surprised to hear it.\tJe suis plutôt surpris d'entendre cela.\nI'm reading an interesting book.\tJe suis en train de lire un livre intéressant.\nI'm ready for my next challenge.\tJe suis prêt pour mon prochain défi.\nI'm ready to face any challenge.\tJe suis prêt à affronter n'importe quel défi.\nI'm ready to roll up my sleeves.\tJe suis prêt à retrousser mes manches.\nI'm ready to throw in the towel.\tJe suis prêt à jeter l'éponge.\nI'm running out of closet space.\tJe manque d'espace dans ma penderie.\nI'm running out of closet space.\tJe manque d'espace dans mon placard.\nI'm satisfied with his progress.\tJe suis satisfait de ses progrès.\nI'm saving money for my old age.\tJ'économise pour ma vieillesse.\nI'm seeking a solution even now.\tMême maintenant, je suis en quête d'une solution.\nI'm short of cash at the moment.\tEn ce moment, je manque de liquidités.\nI'm sleepy, so I am leaving now.\tJ'ai sommeil, alors je pars maintenant.\nI'm so sorry that I lied to you.\tJe suis si désolé de t'avoir menti.\nI'm so sorry that I lied to you.\tJe suis si désolée de t'avoir menti.\nI'm sorry for the late response.\tJe suis désolé de la réponse tardive.\nI'm sorry to have disturbed you.\tJe suis désolé de t'avoir dérangé.\nI'm sorry to have disturbed you.\tJe suis désolée de t'avoir dérangé.\nI'm sorry to have disturbed you.\tJe suis désolé de vous avoir dérangé.\nI'm sorry to have disturbed you.\tJe suis désolée de vous avoir dérangé.\nI'm sorry, I don't speak French.\tJe suis désolé, je ne parle pas français.\nI'm sorry, I don't speak French.\tJe suis désolée, je ne parle pas français.\nI'm sorry, I don't speak French.\tJe suis désolé, je ne parle pas le français.\nI'm sorry, I don't speak French.\tJe suis désolée, je ne parle pas le français.\nI'm sorry, Tom, I can't do that.\tJe suis désolée, Tom, je ne peux pas faire ça.\nI'm sorry, but I can't help you.\tJe suis désolé mais je ne peux pas t'aider.\nI'm sorry, but I can't help you.\tJe suis désolée mais je ne peux pas vous aider.\nI'm sorry, my father's not here.\tJe suis désolé, mon père n'est pas là.\nI'm sorry, my father's not here.\tJe suis désolée, mon père n'est pas là.\nI'm sorry. I know I overreacted.\tJe suis désolé. Je sais que j'ai réagi de façon exagérée.\nI'm sure Tom would be delighted.\tJe suis sûr que Tom serait ravi.\nI'm sure Tom would be delighted.\tJe suis sûre que Tom serait ravi.\nI'm sure there'll be no problem.\tJe suis certain que ça ira.\nI'm taking a couple of days off.\tJe prends deux jours de congé.\nI'm taking a couple of days off.\tJe pars en vacances pour quelques jours.\nI'm taking a couple of days off.\tJe prends quelques jours de congé.\nI'm thirty years older than you.\tJ'ai trente ans de plus que toi.\nI'm thirty years older than you.\tJ'ai trente ans de plus que vous.\nI'm tired of him bawling me out.\tJ'en ai marre qu'il m'engueule.\nI'm too busy to talk to you now.\tJe suis trop occupé pour te parler maintenant.\nI'm too tired to go out jogging.\tJe suis trop fatigué pour sortir courir.\nI'm very grateful for your help.\tJe suis très reconnaissant pour votre aide.\nI'm very happy with my purchase.\tJe suis très satisfait de mon achat.\nI'm very impressed by your work.\tJe suis très impressionné par votre travail.\nI'm very pleased with your work.\tJe suis très heureux de ton travail.\nI'm very pleased with your work.\tJe suis ravi de votre travail.\nI'm waiting for him to get back.\tJ'attends qu'il revienne.\nI'm waiting for your assistance.\tJ'attends ton aide.\nI'm waiting to see if it's true.\tJ'attends de voir si c'est vrai.\nI've already done the hard part.\tJ'ai déjà fait la partie difficile.\nI've already done the hard part.\tJ'ai déjà fait la portion difficile.\nI've already lost too much time.\tJ'ai déjà perdu trop de temps.\nI've been away too long already.\tJe suis parti depuis trop longtemps, déjà.\nI've been away too long already.\tJe suis au loin depuis trop longtemps, déjà.\nI've been saying that all along.\tJe n'ai pas arrêté de le répéter.\nI've been sober for three years.\tJe suis sobre depuis trois ans.\nI've decided to leave on Monday.\tJ'ai décidé de partir lundi.\nI've forgotten my email address.\tJ'ai oublié mon adresse électronique.\nI've forgotten my email address.\tJ'ai oublié mon adresse mail.\nI've given you everything I had.\tJe t'ai donné tout ce que j'avais.\nI've got a bad memory for names.\tJe n'ai pas la mémoire des noms.\nI've got all the friends I need.\tJ'ai tous les amis dont j'ai besoin.\nI've got all the friends I need.\tJ'ai toutes les amies dont j'ai besoin.\nI've got someplace I need to be.\tIl me faut être quelque part.\nI've got this all under control.\tJ'ai ceci sous contrôle complet.\nI've had enough of your excuses.\tJ'en ai assez de vos excuses.\nI've had enough of your excuses.\tJ'en ai assez de tes excuses.\nI've just found out who you are.\tJe viens de trouver qui tu es.\nI've just found out who you are.\tJe viens de trouver qui vous êtes.\nI've known about this for years.\tJe suis au courant depuis des années.\nI've lived here for three years.\tJe vis ici depuis trois ans.\nI've never done this in my life.\tJe n'ai jamais fait ça de ma vie.\nI've never even told my husband.\tJe ne l'ai jamais même dit à mon mari.\nI've never even told my husband.\tJe ne l'ai jamais même dit à mon époux.\nI've never flown in an airplane.\tJe n'ai jamais volé en avion.\nI've seen a lot of him recently.\tJe l'ai vu souvent ces derniers temps.\nI've seen a lot of him recently.\tJe l'ai souvent vu récemment.\nI've seen a lot of him recently.\tJe l'ai beaucoup vu, ces derniers temps.\nI've seen a lot of him recently.\tJe l'ai vu abondamment, ces derniers temps.\nI've tried everything I know of.\tJ'ai tout essayé.\nI've tried to explain it to Tom.\tJ'ai essayé de l'expliquer à Tom.\nIf I could stay longer, I would.\tSi je pouvais rester plus longtemps, je le ferais.\nIf I were you, I wouldn't do it.\tSi j'étais toi, je ne le ferais pas.\nIf I were you, I wouldn't do it.\tSi j'étais vous, je ne le ferais pas.\nIf I were you, I'd buy that one.\tSi j'étais toi, j'achèterais celui-là.\nIf I were you, I'd buy that one.\tSi j'étais toi, j'achèterais celui-ci.\nIf I were you, I'd buy that one.\tSi j'étais vous, j'achèterais celui-là.\nIf I were you, I'd buy that one.\tSi j'étais vous, j'achèterais celui-ci.\nIf I were you, I'd study harder.\tSi j'étais toi, je travaillerais avec davantage d'application.\nIf I were you, I'd study harder.\tSi j'étais vous, je travaillerais avec davantage d'application.\nIf it ain't broke, don't fix it.\tLorsque ce n'est pas cassé, il ne faut pas le réparer !\nIf it ain't broke, don't fix it.\tOn ne change pas une équipe qui gagne.\nIf it gets boring, I'll go home.\tSi ça devient ennuyeux, j'irai chez moi.\nIf only I had taken your advice.\tSi seulement j'avais pris votre conseil.\nIf you are free, give me a hand.\tSi vous êtes libre, donnez-moi un coup de main.\nIf you can't lick 'em, join 'em.\tSi tu ne peux pas les lécher, joins-toi à elles.\nIf you make a mess, clean it up.\tSi tu fais du désordre, tu le nettoies.\nIf you need anything, just call.\tSi tu as besoin de quoi que ce soit, appelle simplement !\nIf you need anything, just call.\tSi vous avez besoin de quoi que ce soit, appelez simplement !\nIf you want quality, pay for it.\tSi vous voulez de la qualité, payez-en le prix !\nIf you want quality, pay for it.\tSi tu veux de la qualité, payes-en le prix !\nIf you want quality, pay for it.\tSi vous voulez de la qualité, payez-la !\nIf you want quality, pay for it.\tSi tu veux de la qualité, paye-la !\nIf you want to talk, let's talk.\tSi tu veux discuter, discutons !\nIf you want to talk, let's talk.\tSi vous voulez discuter, discutons !\nIn England, Labor Day is in May.\tEn Angleterre, la fête du travail est en mai.\nIn June, it rains day after day.\tEn juin, il pleut jour après jour.\nIn fact, she's quite unreliable.\tEn fait, on ne peut pas compter sur elle.\nIn life there are ups and downs.\tDans la vie il y a des hauts et des bas.\nIs English harder than Japanese?\tL'anglais est-il plus difficile que le japonais ?\nIs everybody having a good time?\tTout le monde s'amuse-t-il ?\nIs everybody having a good time?\tEst-ce que tout le monde s'amuse ?\nIs everybody ready for the trip?\tEst-ce que tout le monde est prêt pour le voyage?\nIs everything all right at home?\tTout va bien à la maison ?\nIs everything all right at home?\tEst-ce que tout va bien à la maison ?\nIs it a compliment or an insult?\tEst-ce un compliment ou une insulte ?\nIs it a compliment or an insult?\tS'agit-il d'un compliment ou d'une insulte ?\nIs lunch included in this price?\tEst-ce que le déjeuner est inclus dans le prix ?\nIs someone knocking on the door?\tQuelqu'un est-il en train de frapper à la porte ?\nIs something bothering you, Tom?\tEst-ce que quelque chose t'ennuie, Tom?\nIs something else going on here?\tQuelque chose d'autre est-il en train de se passer, ici ?\nIs that supposed to cheer me up?\tEst-ce que c'est censé me donner du baume au cœur ?\nIs that what you want me to say?\tEst-ce ce que tu veux que je dise ?\nIs that what you want me to say?\tEst-ce ce que vous voulez que je dise ?\nIs that why you want to hurt me?\tEst-ce pour cela que tu veux me faire du mal ?\nIs that why you want to hurt me?\tEst-ce pour cela que vous voulez me faire du mal ?\nIs that why you want to kill me?\tEst-ce pour cela que tu veux me tuer ?\nIs that why you want to kill me?\tEst-ce pour cela que vous voulez me tuer ?\nIs the chairman going to resign?\tLe Président va-t-il démissionner ?\nIs there a hospital around here?\tIl y a un hôpital aux alentours ?\nIs there an information counter?\tY a-t-il un comptoir d'information ?\nIs there an information counter?\tY a-t-il un guichet d'information ?\nIs there anybody else I can ask?\tY a-t-il qui que ce soit d'autre à qui je puisse demander ?\nIs there anything I should know?\tY a-t-il quelque chose que je devrais savoir ?\nIs there anything else I can do?\tY a-t-il quoi que ce soit d'autre que je puisse faire ?\nIs this place far from the bank?\tEst-ce que cet endroit est loin de la banque ?\nIs this place far from the bank?\tCet endroit se trouve-t-il loin de la banque ?\nIt becomes warmer day after day.\tJour après jour, il fait de plus en plus chaud.\nIt can't be kept secret forever.\tCela ne peut pas rester secret pour toujours.\nIt doesn't get better than this.\tÇa n'est pas mieux que ça.\nIt doesn't have to be like this.\tIl n'est pas nécessaire qu'il en soit ainsi.\nIt fell short of my expectation.\tCe ne fut pas à la mesure de mes attentes.\nIt fits on a single floppy disk.\tÇa tient sur une seule disquette.\nIt has become noticeably colder.\tIl fait sensiblement plus froid.\nIt hasn't always been like this.\tCela n'a pas toujours été ainsi.\nIt is a pity that he can't come.\tDommage qu'il ne puisse pas venir !\nIt is difficult for me to skate.\tIl m'est difficile de patiner.\nIt is extraordinarily hot today.\tIl fait extraordinairement chaud aujourd'hui.\nIt is getting darker and darker.\tIl fait de plus en plus sombre.\nIt is getting warmer and warmer.\tIl fait de plus en plus chaud.\nIt is getting warmer day by day.\tÇa devient plus chaud de jour en jour.\nIt is getting warmer day by day.\tIl fait plus chaud de jour en jour.\nIt is high time you went to bed.\tIl est grand temps que vous alliez au lit.\nIt is high time you went to bed.\tIl est grand temps que tu ailles au lit.\nIt is high time you were in bed.\tIl est grand temps que tu ailles au lit.\nIt is rare for him to get angry.\tIl lui est inhabituel de se mettre en colère.\nIt is really quite a good story.\tC'est vraiment une assez bonne histoire.\nIt is said the house is haunted.\tOn dit que la maison est hantée.\nIt is ten minutes before eleven.\tIl est onze heures moins dix.\nIt is terribly hot this morning.\tIl fait horriblement chaud, ce matin.\nIt is time for you to go to bed.\tC'est l'heure pour toi d'aller au lit.\nIt is very cold today, isn't it?\tIl fait très froid aujourd'hui n'est-ce pas ?\nIt isn't something I want to do.\tCe n'est pas quelque chose que je veux faire.\nIt isn't worthwhile going there.\tÇa ne vaut pas le coup d'aller là.\nIt looks a lot worse than it is.\tÇa a l'air bien pire que ça n'est.\nIt makes a big difference to me.\tPour moi, ça compte beaucoup.\nIt may be that he likes his job.\tIl se peut qu'il aime son travail.\nIt may well rain before tonight.\tIl va certainement pleuvoir avant ce soir.\nIt occurred to me spontaneously.\tCela me vint spontanément à l'esprit.\nIt occurred to me spontaneously.\tCela m'est venu spontanément à l'esprit.\nIt rained for three days on end.\tIl a plu trois jours de rang.\nIt rains a lot in June in Japan.\tIl pleut beaucoup en juin au Japon.\nIt seems that he knows about it.\tIl semble être au courant.\nIt used to be nearly impossible.\tC'était presque impossible.\nIt used to be nearly impossible.\tC'était autrefois presque impossible.\nIt was a bitter pill to swallow.\tC'était une amère pilule à avaler.\nIt was a bitter pill to swallow.\tCe fut une amère pilule à avaler.\nIt was a warm, friendly meeting.\tC'était une réunion chaleureuse et amicale.\nIt was an ideal day for walking.\tC'était un jour idéal pour marcher.\nIt was bound to happen some day.\tÇa devait arriver un jour.\nIt was impolite of him to do so.\tC'était impoli de sa part d'agir ainsi.\nIt was in 1950 that he was born.\tC'est en 1950 qu'il est né.\nIt was kind of you to invite us.\tMerci beaucoup pour l'invitation.\nIt was not easy to convince him.\tCe n'était pas facile de le convaincre.\nIt was shorter than he expected.\tCe fut plus court que ce à quoi il s'attendait.\nIt was shorter than he expected.\tÇa a été plus court que ce à quoi il s'attendait.\nIt wasn't much of an earthquake.\tÇa n'avait pas grand-chose d'un séisme.\nIt would be nice to get married.\tÇa serait chouette de me marier.\nIt would be nice to get married.\tÇa serait chouette de nous marier.\nIt would be nice to get married.\tÇa serait chouette de te marier.\nIt would be nice to get married.\tÇa serait chouette de vous marier.\nIt's a fun way to pass the time.\tC'est une manière amusante de passer le temps.\nIt's a fundamental human desire.\tC'est un désir humain fondamental.\nIt's a good way to make friends.\tC'est une bonne manière de se faire des amis.\nIt's a good way to make friends.\tC'est une bonne manière de se faire des amies.\nIt's a little late for that now.\tC'est un peu tard pour cela, maintenant.\nIt's a matter of life and death.\tC'est une question de vie ou de mort.\nIt's a matter of national pride.\tC'est une question de fierté nationale.\nIt's a matter of personal taste.\tC'est affaire de goût personnel.\nIt's a pity that you can't come.\tC'est dommage que tu ne puisses pas venir.\nIt's a pity that you can't come.\tIl est dommage que vous ne puissiez pas venir.\nIt's a very difficult situation.\tC'est une situation très difficile.\nIt's about time to go to school.\tIl est presque temps d'aller à l'école.\nIt's about time you got married.\tIl était temps que tu te maries.\nIt's all a big misunderstanding.\tTout ça est un énorme malentendu.\nIt's all part of their strategy.\tÇa fait partie de leur stratégie.\nIt's almost midnight. Go to bed.\tIl est presque minuit. Va au lit !\nIt's almost time to get started.\tIl est presque l'heure de commencer.\nIt's an art more than a science.\tIl s'agit davantage d'un art que d'une science.\nIt's been raining since morning.\tIl a plu depuis le matin.\nIt's boring to wait for a train.\tC'est ennuyeux d'attendre un train.\nIt's easy to pick up bad habits.\tIl est facile de prendre de mauvaises habitudes.\nIt's getting darker outside now.\tLe temps commence à s'obscurcir.\nIt's hard for me to talk to Tom.\tIl m'est difficile de parler à Tom.\nIt's hard to speak English well.\tIl est difficile de bien parler l'anglais.\nIt's hard to steal from a thief.\tIl est difficile de voler chez un voleur.\nIt's heavy, but I can manage it.\tC'est lourd, mais je peux m'en sortir.\nIt's ideal weather for a picnic.\tLe temps est idéal pour un pique-nique.\nIt's important that I hear this.\tIl est important que j'entende cela.\nIt's like being in a candy shop.\tC'est comme être dans une confiserie.\nIt's like being in a candy shop.\tC'est comme être dans un magasin de bonbons.\nIt's more complicated than that.\tC'est plus compliqué que ça.\nIt's no use asking me for money.\tIl est inutile de me demander de l'argent.\nIt's not about the money, is it?\tIl ne s'agit pas d'argent, au moins ?\nIt's not an either-or situation.\tCe n'est pas un dilemme.\nIt's not for the faint of heart.\tCe n'est pas pour les mauviettes.\nIt's not for the faint of heart.\tCe n'est pas pour les âmes sensibles.\nIt's nothing short of a miracle.\tCe n'est rien moins qu'un miracle.\nIt's nothing to get upset about.\tC'est bon, pas de quoi s'inquiéter.\nIt's possible, but not probable.\tC'est possible, mais improbable.\nIt's true that he saw a monster.\tC'est vrai qu'il a vu un monstre.\nIt's two o'clock in the morning.\tIl est 2h du matin.\nIt's unlike him to get so angry.\tCe n'est pas son genre de se mettre en colère à ce point.\nIt's very kind of you to say so.\tC'est très aimable à vous de dire cela.\nIt's warm for this time of year.\tIl fait chaud pour la saison.\nJapanese is harder than English.\tLe japonais est plus difficile que l'anglais.\nJust stay away from my daughter.\tTiens-toi juste à distance de ma fille !\nJust stay away from my daughter.\tTenez-vous juste à distance de ma fille !\nJust tell Tom to leave me alone.\tDis juste à Tom de me laisser seule.\nJust tell Tom to leave me alone.\tDis simplement à Tom de me laisser tranquille.\nKeep your hands above the table.\tLaissez vos mains au-dessus de la table.\nKeep your hands above the table.\tLaisse tes mains au-dessus de la table.\nKeep your hands off my daughter!\tNe touchez pas ma fille !\nKeeping a diary is a good habit.\tTenir un journal intime est une bonne habitude.\nKeeping a diary is a good habit.\tTenir un journal est une bonne habitude.\nKids are smarter than you think.\tLes enfants sont plus malins que tu ne penses.\nKids are smarter than you think.\tLes enfants sont plus malins qu'on ne pense.\nKids are smarter than you think.\tLes enfants sont plus malins que vous ne pensez.\nKids love pasta in tomato sauce.\tLes enfants aiment bien les pâtes à la sauce tomate.\nLast night was great, wasn't it?\tLa soirée d'hier était géniale, pas vrai ?\nLast night, I listened to radio.\tHier soir, j'ai écouté la radio.\nLast summer we went to Hokkaido.\tL'été dernier nous sommes allés à Hokkaido.\nLaughing is really good for you.\tRire est vraiment bon pour toi.\nLeave your umbrella in the hall.\tLaisse ton parapluie dans le vestibule.\nLend me your dictionary, please.\tPrête-moi ton dictionnaire s'il te plait.\nLet a porter carry your baggage.\tLaissez un porteur porter vos bagages.\nLet me give you a bit of advice.\tLaisse-moi te donner un conseil.\nLet me give you a bit of advice.\tPermettez-moi de vous donner un conseil.\nLet me give you my phone number.\tLaisse-moi te donner mon numéro de téléphone.\nLet me give you my phone number.\tLaissez-moi vous donner mon numéro de téléphone.\nLet me help you clear the table.\tLaisse-moi t'aider à débarrasser la table.\nLet me help you with the dishes.\tLaisse-moi t'aider à faire la vaisselle.\nLet me know as soon as he comes.\tFais-moi savoir aussitôt qu'il arrive !\nLet me know as soon as you know.\tFais-le moi savoir dès que tu le sais.\nLet me know what you want to do.\tFais-moi savoir ce que tu veux faire.\nLet me know what you want to do.\tFaites-moi savoir ce que vous voulez faire.\nLet me reiterate what I've said.\tLaisse-moi répéter ce que j'ai dit.\nLet me reiterate what I've said.\tLaissez-moi redire ce que j'ai dit.\nLet's act like we're foreigners.\tFaisons semblant d'être des étrangers.\nLet's be honest with each other.\tSoyons honnêtes l'un avec l'autre.\nLet's be honest with each other.\tSoyons honnêtes l'une avec l'autre.\nLet's be honest with each other.\tSoyons honnêtes les uns avec les autres.\nLet's be honest with each other.\tSoyons honnêtes les unes avec les autres.\nLet's dispense with formalities.\tPassons-nous des formalités.\nLet's find Tom before Mary does.\tTrouvons Tom avant Mary.\nLet's get rid of all this stuff.\tDébarrassons-nous de tous ces trucs.\nLet's have a glass of champagne.\tNous allons boire une coupe de champagne.\nLet's just drop the subject, OK?\tLaissons simplement tomber le sujet ! D'accord ?\nLet's just keep this between us.\tGardons ça juste entre nous !\nLet's just say I'm here to stay.\tDisons simplement que je suis là pour rester.\nLet's look on the positive side.\tRegardons du bon côté.\nLet's meet up for a drink later.\tRencontrons-nous pour prendre un verre, plus tard !\nLet's not get carried away here.\tNe nous laissons pas dévier ici !\nLet's not get that carried away.\tNe nous laissons pas dévier à ce point !\nLet's start after he comes home.\tCommençons une fois qu'il sera rentré.\nLet's start with the easy stuff.\tOn commence avec les choses faciles.\nLet's talk over a cup of coffee.\tParlons autour d'une tasse de café.\nLetters are delivered every day.\tLe courrier est distribué chaque jour.\nLife cannot exist without water.\tLa vie ne peut exister sans eau.\nLife is getting hard these days.\tLa vie devient dure, ces temps-ci.\nLight travels faster than sound.\tLa lumière se déplace plus vite que le son.\nListen to what the teacher says.\tÉcoutez ce que dit le professeur.\nLiving costs are getting higher.\tLe coût de la vie augmente.\nLondon was bombed several times.\tLondres fut bombardé plusieurs fois.\nLong hair is out of fashion now.\tLes cheveux longs sont démodés.\nLook at that pole in the square.\tRegarde ce poteau sur la place.\nLook at the picture on the wall.\tRegarde l'image sur le mur.\nLook at the picture on the wall.\tRegardez l'image sur le mur.\nLots of famous people come here.\tDe nombreuses personnes célèbres viennent ici.\nMany factors must be considered.\tDe nombreux facteurs doivent être pris en considération.\nMany friends came to see me off.\tDe nombreux amis vinrent me faire leurs adieux.\nMany friends came to see me off.\tDe nombreux amis sont venus me faire leurs adieux.\nMany of the students were tired.\tNombre des étudiants étaient fatigués.\nMany paintings hang in the shop.\tDe nombreux tableaux sont suspendus dans le magasin.\nMany plants bloom in the spring.\tDe nombreuses plantes fleurissent au printemps.\nMarimbas are made from rosewood.\tLes marimbas sont faits de palissandre.\nMars has a very thin atmosphere.\tMars est pourvue d'une atmosphère raréfiée.\nMary is as pretty as her sister.\tMary est aussi jolie que sa sœur.\nMary is the prettier of the two.\tMary est la plus jolie des deux.\nMary isn't like the other girls.\tMary n'est pas comme les autres filles.\nMary made her own wedding dress.\tMarie a confectionné sa propre robe de mariée.\nMary really is a very cute girl.\tMary est vraiment une fille très mignonne.\nMary really is a very cute girl.\tMary est vraiment une très jolie fille.\nMary works part-time as a nurse.\tMarie travaille comme infirmière à temps partiel.\nMathematics is difficult for me.\tLes mathématiques me sont difficiles.\nMathematics is difficult for me.\tJ'ai du mal avec les mathématiques.\nMathematics is difficult for me.\tLes mathématiques sont difficiles pour moi.\nMay I ask a couple of questions?\tPuis-je poser quelques questions ?\nMay I come and see you tomorrow?\tPuis-je venir te voir demain ?\nMay I disturb you just a moment?\tPuis-je vous déranger un instant ?\nMaybe he will be a good teacher.\tPeut-être sera-t-il un bon instituteur.\nMaybe it really was an accident.\tPeut-être que c'était vraiment un accident.\nMaybe it was just a coincidence.\tPeut-être n'était-ce qu'une coïncidence.\nMaybe we should come back later.\tPeut-être que nous devrions revenir plus tard.\nMaybe you'd better come with us.\tVous feriez peut-être mieux de venir avec nous.\nMichael Jackson has passed away.\tMichael Jackson n’est plus.\nMom bought a pretty doll for me.\tMaman m'a acheté une jolie poupée.\nMother and I were in the garden.\tMa mère et moi nous étions dans le jardin.\nMother bakes cookies on Sundays.\tMaman fait cuire des biscuits le dimanche.\nMovie making is an exciting job.\tProducteur est un travail passionnant.\nMovie making is an exciting job.\tFaire des films est un travail alléchant.\nMusic is the universal language.\tLa musique est une langue commune pour l'humanité.\nMusic is the universal language.\tLa musique constitue le langage universel.\nMy English is anything but good.\tMon anglais est tout sauf bon.\nMy advice is for you to go home.\tJe te conseille de rentrer à la maison.\nMy attitude towards him changed.\tMon attitude à son égard a changé.\nMy aunt is older than my mother.\tMa tante est plus âgée que ma mère.\nMy bicycle is in need of repair.\tMon vélo a besoin de réparations.\nMy bicycle is in need of repair.\tMon vélo a besoin d'être réparé.\nMy bicycle needs to be repaired.\tMon vélo a besoin d'être réparé.\nMy blood pressure is quite high.\tMa pression artérielle est assez élevée.\nMy boss is twice as old as I am.\tMon patron est deux fois plus âgé que moi.\nMy brother is a college student.\tMon frère est étudiant.\nMy children were born in Boston.\tMes enfants sont nés à Boston.\nMy dad died when I was thirteen.\tMon père est mort quand j'avais treize ans.\nMy dad died when I was thirteen.\tMon père est décédé quand j'avais treize ans.\nMy dog eats just about anything.\tMon chien mange à peu près n'importe quoi.\nMy dog follows me wherever I go.\tMon chien me suit partout où je vais.\nMy dream is to become a teacher.\tMon rêve est de devenir enseignant.\nMy dream is to become a teacher.\tMon rêve est de devenir instituteur.\nMy family is not all that large.\tMa famille n'est pas aussi grande que ça.\nMy father doesn't like football.\tLe football ne plaît pas à mon père.\nMy father drives a very old car.\tMon père conduit une très vieille voiture.\nMy father hates the summer heat.\tMon père déteste la chaleur de l'été.\nMy father is absent on business.\tMon père est absent à cause de son travail.\nMy father is very angry with me.\tMon père est très en colère après moi.\nMy father repaired my old watch.\tMon père a réparé ma vieille montre.\nMy father sometimes goes abroad.\tMon père se rend parfois à l'étranger.\nMy favorite flavor is chocolate.\tMa saveur préférée, c'est le chocolat.\nMy friend is a talkative person.\tMon ami parle beaucoup.\nMy friends invited me to dinner.\tDes amis m’ont invité à dîner.\nMy grandfather comes from Osaka.\tMon grand-père vient d'Osaka.\nMy grandmother lives by herself.\tMa grand-mère vit toute seule.\nMy hands are stained with paint.\tMes mains sont maculées de peinture.\nMy hands are stained with paint.\tMes mains sont tachées de peinture.\nMy heart was filled with sorrow.\tMon cœur était rempli de chagrin.\nMy home is close to the station.\tMa maison est près de la gare.\nMy house is close to a bus stop.\tMon domicile est proche d'un arrêt de bus.\nMy house seems small beside his.\tMa demeure a l'air petite à côté de la sienne.\nMy idea is different from yours.\tMon opinion est différente de la tienne.\nMy idea is different from yours.\tJe suis d'un autre avis que toi.\nMy idea is different from yours.\tJe suis d'une opinion différente de la tienne.\nMy idea is different from yours.\tJ'ai une opinion différente de la tienne.\nMy idea is different from yours.\tMon avis diffère du tien.\nMy idea is different from yours.\tMon opinion se distingue de la tienne.\nMy kids don't usually lie to me.\tD'habitude, mes enfants ne me mentent pas.\nMy mother cut my hair too short.\tMa mère m'a coupé les cheveux trop courts.\nMy mother died when I was a kid.\tMa mère est morte lorsque j'étais enfant.\nMy mother hates writing letters.\tMa mère déteste rédiger des lettres.\nMy mother is not always at home.\tMa mère n'est pas toujours à la maison.\nMy mother made a sweater for me.\tMa mère m'a fait un pull-over.\nMy mother made a sweater for me.\tMa mère m'a confectionné un pull-over.\nMy mother made a sweater for me.\tMa mère m'a confectionné un chandail.\nMy mother made some new clothes.\tMa mère a confectionné de nouveaux vêtements.\nMy mother was sick for two days.\tMa mère a été malade pendant deux jours.\nMy mother was usually very busy.\tMa mère était d'ordinaire très occupée.\nMy office is on the fifth floor.\tMon bureau est au cinquième étage.\nMy older brother is watching TV.\tMon frère aîné est en train de regarder la télévision.\nMy parents are no longer living.\tMes parents sont morts.\nMy parents call me up every day.\tMes parents me téléphonent quotidiennement.\nMy parents want me to come home.\tMes parents veulent que je rentre à la maison.\nMy pen is old. I want a new one.\tMon stylo est vieux. J'en veux un nouveau.\nMy plan is different from yours.\tMon plan est différent du tien.\nMy sister is a very good typist.\tMa sœur est une très bonne dactylo.\nMy sister is crazy about tennis.\tMa sœur est fan de tennis.\nMy sister is playing with dolls.\tMa sœur joue aux poupées.\nMy sister isn't used to cooking.\tMa sœur n'a pas l'habitude de cuisiner.\nMy sister plays piano every day.\tMa sœur joue du piano tous les jours.\nMy sister showers every morning.\tMa sœur prend une douche tous les matins.\nMy sister showers every morning.\tMa sœur se douche chaque matin.\nMy sister was a beautiful woman.\tMa sœur était une très belle femme.\nMy wife is away for the weekend.\tMon épouse est partie pour le week-end.\nMy wife is away for the weekend.\tMa femme est partie pour le week-end.\nMy wife wanted to adopt a child.\tMon épouse voulait adopter un enfant.\nMy wife wanted to adopt a child.\tMa femme voulait adopter un enfant.\nMy work is not as easy as yours.\tMon travail n'est pas aussi facile que le tien.\nNegotiations are still going on.\tLes négociations sont toujours en cours.\nNever rely too much upon others.\tNe compte jamais trop sur les autres.\nNext week a family will move in.\tLa semaine prochaine, une famille emménagera.\nNight is when most people sleep.\tLa nuit, c'est quand la plupart des gens dorment.\nNight is when most people sleep.\tC'est à la nuit que la plupart des gens dorment.\nNight is when most people sleep.\tC'est la nuit que la plupart des gens dorment.\nNo one can match him in English.\tPersonne ne peut l’égaler en anglais.\nNo one cares about that anymore.\tPersonne ne se soucie plus de ça.\nNo one could tell where she was.\tPersonne ne pouvait dire où elle se trouvait.\nNo one had anything left to say.\tPersonne n'avait plus rien à dire.\nNo one had anything left to say.\tPersonne n'eut plus rien à dire.\nNo one lets me have fun anymore.\tPersonne ne me laisse plus m'amuser.\nNo one said anything about that.\tPersonne ne dit quoi que ce soit à ce sujet.\nNo one said anything about that.\tPersonne n'a dit quoi que ce soit à ce sujet.\nNo one seems to know the answer.\tPersonne ne semble connaître la réponse.\nNo one seems to know the answer.\tPersonne ne semble en connaître la réponse.\nNo one was in the swimming pool.\tPersonne ne se trouvait dans la piscine.\nNo one will vote for the budget.\tPersonne ne votera le budget.\nNo security system is foolproof.\tAucun système de sécurité n'est infaillible.\nNo, thank you. I'm just looking.\tNon merci. Je ne fais que regarder.\nNobody had anything else to say.\tPersonne n'avait autre chose à dire.\nNone of us are against his idea.\tAucun de nous n'est contre son idée.\nNot all of us can speak English.\tNous ne savons pas tous parler anglais.\nNot everything can be explained.\tTout ne peut être expliqué.\nNothing's gonna change my world.\tRien ne changera mon monde.\nNow it's time to say good night.\tMaintenant c'est l'heure de dire bonne nuit.\nNow she understands what I mean.\tMaintenant elle comprend ce que je veux dire.\nNow, what else can I do for you?\tMaintenant, que puis-je faire d'autre pour vous?\nOf course she can speak English.\tÉvidemment qu'elle peut parler anglais.\nOn Mondays, he's always at home.\tIl est toujours chez lui le lundi.\nOne more bottle of wine, please.\tUne bouteille de vin supplémentaire, je vous prie.\nOne of the dogs started barking.\tL'un des chiens se mit à aboyer.\nOne should always do one's best.\tOn devrait toujours donner le meilleur de soi.\nOne should respect one's spouse.\tOn doit respecter son conjoint.\nOnly adults may watch that film.\tSeuls les adultes peuvent regarder ce film.\nOnly girls' shoes are sold here.\tOn ne vend ici que des chaussures pour dames.\nOpportunity seldom knocks twice.\tL'occasion se présente rarement deux fois.\nOranges are sweeter than lemons.\tLes oranges sont plus douces que les citrons.\nOranges are sweeter than lemons.\tLes oranges sont plus sucrées que les citrons.\nOranges have a lot of vitamin C.\tLes oranges contiennent beaucoup de vitamine C.\nOttawa is the capital of Canada.\tOttawa est la capitale du Canada.\nOur garden has two cherry trees.\tNotre jardin compte deux cerisiers.\nOur native language is Japanese.\tNotre langue maternelle est le japonais.\nOur new head office is in Tokyo.\tNotre nouveau quartier général se trouve à Tokyo.\nOur school was reduced to ashes.\tNotre école a été réduite en cendres.\nOur stay has been very pleasant.\tNotre séjour a été très agréable.\nOur supply of food is exhausted.\tNotre réserve de nourriture est épuisée.\nOutside advice may be necessary.\tUn conseil extérieur peut être nécessaire.\nPeople live only about 70 years.\tLes gens ne vivent qu'environ soixante-dix ans.\nPeople live only about 70 years.\tLes gens ne vivent qu'à peu près soixante-dix ans.\nPerhaps there are other reasons.\tIl y a peut-être d'autres raisons.\nPerhaps we overlooked something.\tPeut-être avons-nous négligé quelque chose.\nPlease answer all the questions.\tRépondez à toutes les questions, s'il vous plaît.\nPlease bear in mind what I said.\tGarde en tête ce que je t'ai dit, je te prie.\nPlease bear in mind what I said.\tGardez en tête ce que je vous ai dit, je vous prie.\nPlease bring a cup of tea to me.\tApportez-moi une tasse de thé s'il vous plaît.\nPlease call the fire department.\tS'il vous plaît appelez les pompiers.\nPlease come as soon as possible.\tS'il te plaît, viens le plus vite possible.\nPlease correct my pronunciation.\tMerci de corriger ma prononciation.\nPlease do not walk on the grass.\tVeuillez ne pas marcher sur la pelouse.\nPlease don't do anything stupid.\tS'il te plaît, ne fais rien de stupide.\nPlease don't ever do that again.\tJe te prie de ne plus jamais refaire ça.\nPlease don't ever do that again.\tJe vous prie de ne plus jamais refaire ça.\nPlease don't take pictures here.\tNe prenez pas de photos ici s'il vous plaît.\nPlease excuse me for being rude.\tExcusez ma rudesse, s'il vous plaît.\nPlease explain how to get there.\tS'il vous plait, expliquez comment s'y rendre.\nPlease explain how to get there.\tS'il te plait, explique comment s'y rendre.\nPlease freeze the fish and meat.\tSurgelez le poisson et la viande, s'il vous plaît.\nPlease give me a glass of water.\tDonnez-moi un verre d’eau, s’il vous plaît.\nPlease give me a piece of bread.\tDonnez-moi un morceau de pain, s'il vous plait.\nPlease give me a piece of bread.\tDonne-moi un morceau de pain, je te prie.\nPlease give me a sheet of paper.\tVeuillez me donner une feuille de papier, je vous prie.\nPlease give me something to eat.\tS'il vous plaît, donnez-moi à manger.\nPlease knock before you come in.\tVeuillez frapper avant d'entrer.\nPlease knock before you come in.\tFrappez avant d'entrer, s'il vous plait.\nPlease let me take your picture.\tLaissez-moi s'il vous plaît prendre votre photo.\nPlease put it back in its place.\tVeuillez le remettre à sa place, je vous prie.\nPlease put it back in its place.\tRemets-le à sa place, je te prie.\nPlease put your age on the form.\tMerci de porter votre âge sur le formulaire.\nPlease put yourself in my place.\tMets-toi à ma place, s'il te plaît.\nPlease remember to write to her.\tRappelle-toi de lui écrire, s'il te plaît.\nPlease say hello to your family.\tDis bonjour à ta famille, s'il te plaît.\nPlease serve him his meal first.\tVeuillez lui servir son repas en premier.\nPlease show me your injured arm.\tMontrez-moi votre bras blessé, s'il vous plaît.\nPlease show me your stamp album.\tS'il vous plaît faites-moi voir votre album de timbres.\nPlease shut the door behind you.\tFerme la porte derrière toi, s'il te plaît.\nPlease shut the door behind you.\tFermez la porte derrière vous, s'il vous plaît.\nPlease shut the door behind you.\tVeuillez fermer la porte derrière vous.\nPlease stay as long as you wish.\tJe vous en prie, prenez votre temps.\nPlease stay at my house tonight.\tVeuillez rester chez moi ce soir.\nPlease stay at my house tonight.\tReste chez moi ce soir, s'il te plait.\nPoverty is the root of all evil.\tLa pauvreté est à la racine de tout mal.\nPreheat the oven to 130 degrees.\tPréchauffer le four à 130 degrés.\nPreheat the oven to 130 degrees.\tPréchauffe le four à 130 degrés.\nPreheat the oven to 130 degrees.\tPréchauffez le four à 130 degrés.\nPrices are about to go up again.\tLes prix vont encore augmenter.\nPrinting ink is in short supply.\tIl y a pénurie d'encre d'imprimerie.\nPrinting ink is in short supply.\tIl reste peu d'encre pour imprimer.\nPut the book where you found it.\tRepose le livre là où tu l'as trouvé.\nRead the instructions carefully.\tLis les instructions attentivement.\nRight now I don't have any time.\tMaintenant, je n'ai pas le temps.\nSame-sex marriage is legal here.\tLe mariage homosexuel est légal, ici.\nSay hello to your father for me.\tSaluez votre père de ma part.\nSay hello to your father for me.\tDites bonjour à votre père de ma part.\nSay hello to your sister for me.\tDis bonjour à ta petite sœur de ma part.\nSay hello to your sister for me.\tDis bonjour à ta sœur de ma part.\nSay hello to your sister for me.\tDis \"bonjour\" à ta sœur de ma part.\nSee you tomorrow in the library.\tOn se voit demain à la bibliothèque.\nSevere weather frightens people.\tLe très mauvais temps fait peur aux gens.\nSewage often pollutes the ocean.\tLes eaux usées polluent souvent la mer.\nShall I prepare you a warm meal?\tDois-je vous préparer un repas chaud ?\nShe accompanied me on the piano.\tElle m'accompagna au piano.\nShe accompanied me on the piano.\tElle m'a accompagné au piano.\nShe accused me of telling a lie.\tElle m'accusa de dire un mensonge.\nShe accused me of telling a lie.\tElle m'a accusé de dire un mensonge.\nShe achieved remarkable results.\tElle a obtenu des résultats remarquables.\nShe admitted that she was wrong.\tElle admit qu'elle avait tort.\nShe advised him to see a lawyer.\tElle lui conseilla de voir un avocat.\nShe advised him to see a lawyer.\tElle lui a conseillé de voir un avocat.\nShe advised him to stop smoking.\tElle lui conseilla d'arrêter de fumer.\nShe advised him to stop smoking.\tElle lui a conseillé d'arrêter de fumer.\nShe advised him to study harder.\tElle lui conseilla d'étudier davantage.\nShe always keeps her hair clean.\tElle garde toujours ses cheveux propres.\nShe always speaks ill of others.\tElle parle toujours mal des autres.\nShe and I are in the same class.\tElle et moi sommes dans la même classe.\nShe appears to have few friends.\tElle paraît avoir peu d'amis.\nShe argued with him about money.\tElle se disputa avec lui au sujet de l'argent.\nShe argued with him about money.\tElle se disputa avec lui sur une question d'argent.\nShe argued with him about money.\tElle s'est disputée avec lui sur une question d'argent.\nShe asked him to call her later.\tElle lui demanda de l'appeler plus tard.\nShe asked him to call her later.\tElle lui a demandé de l'appeler plus tard.\nShe asked him why he was crying.\tElle lui demanda pourquoi il pleurait.\nShe asked him why he was crying.\tElle lui a demandé pourquoi il pleurait.\nShe asked me to open the window.\tElle me dit, ouvre la fenêtre.\nShe asserted that she was right.\tElle a affirmé qu'elle avait raison.\nShe attacked him with her fists.\tElle l'attaqua à coups de poings.\nShe attacked him with her fists.\tElle l'a attaqué à coups de poings.\nShe bought the dress on impulse.\tElle a acheté la robe par impulsion.\nShe broke the window on purpose.\tElle a fait exprès de casser la vitre.\nShe can naturally speak English.\tElle sait parler l'anglais de manière naturelle.\nShe can speak English very well.\tElle sait fort bien parler anglais.\nShe can swim further than I can.\tElle peut nager plus loin que moi.\nShe can't suppress her emotions.\tElle ne peut réprimer ses émotions.\nShe can't tell right from wrong.\tElle ne fait pas la différence entre le bien et le mal.\nShe cleaned her room in a hurry.\tElle nettoya sa chambre en vitesse.\nShe cleaned her room in a hurry.\tElle a nettoyé sa chambre en vitesse.\nShe committed suicide yesterday.\tElle s'est suicidée hier.\nShe could not cope with anxiety.\tElle ne pouvait faire face à l'anxiété.\nShe demanded to see the manager.\tElle a exigé de voir le responsable.\nShe demanded to see the manager.\tElle a exigé de voir la responsable.\nShe demanded to see the manager.\tElle exigea de voir le responsable.\nShe demanded to see the manager.\tElle exigea de voir la responsable.\nShe demanded to see the manager.\tElle exigea de voir le gérant.\nShe demanded to see the manager.\tElle exigea de voir la gérante.\nShe demanded to see the manager.\tElle exigea de voir le directeur.\nShe demanded to see the manager.\tElle exigea de voir la directrice.\nShe demanded to see the manager.\tElle exigea de voir l'imprésario.\nShe demanded to see the manager.\tElle a exigé de voir l'imprésario.\nShe demanded to see the manager.\tElle a exigé de voir la directrice.\nShe demanded to see the manager.\tElle a exigé de voir le directeur.\nShe demanded to see the manager.\tElle a exigé de voir la gérante.\nShe demanded to see the manager.\tElle a exigé de voir le gérant.\nShe did nothing but cry all day.\tElle ne fait que pleurer toute la journée.\nShe did nothing but look around.\tElle n'a fait que regarder aux alentours.\nShe dumped him for a richer man.\tElle le laissa tomber pour un homme plus riche.\nShe dumped him for a richer man.\tElle l'a laissé tomber pour un homme plus riche.\nShe eats nothing but vegetables.\tElle ne mange que des légumes.\nShe enjoyed conversing with him.\tElle eut plaisir à converser avec lui.\nShe enjoyed conversing with him.\tElle a eu plaisir à converser avec lui.\nShe explained her reasons to us.\tElle nous a expliqué ses raisons.\nShe failed every time she tried.\tElle a échoué à chaque fois qu'elle a essayé.\nShe failed every time she tried.\tElle échoua à chaque fois qu'elle essaya.\nShe failed every time she tried.\tElle échoua chaque fois qu'elle essaya.\nShe failed every time she tried.\tElle a échoué chaque fois qu'elle a essayé.\nShe fell down and hurt her knee.\tElle est tombée et s'est blessée le genou.\nShe felt her heart beat quickly.\tElle sentit son cœur s'affoler.\nShe felt someone touch her back.\tElle sentit quelqu'un lui toucher le dos.\nShe found her baby still asleep.\tElle trouva son bébé toujours endormi.\nShe gave him something to drink.\tElle lui donna quelque chose à boire.\nShe gave him something to drink.\tElle lui a donné quelque chose à boire.\nShe gave me a fake phone number.\tElle me donna un faux numéro de téléphone.\nShe gave me a fake phone number.\tElle m'a donné un faux numéro de téléphone.\nShe gave me a wonderful present.\tElle m'a donné un superbe cadeau.\nShe got off at the next station.\tElle est descendue à la station suivante.\nShe greeted him waving her hand.\tElle le salua en agitant la main.\nShe grows many kinds of flowers.\tElle cultive de nombreuses sortes de fleurs.\nShe had a basket full of apples.\tElle avait un panier rempli de pommes.\nShe had a basket full of apples.\tElle avait un panier plein de pommes.\nShe had a basket full of apples.\tElle avait une corbeille remplie de pommes.\nShe had a basket full of apples.\tElle avait une corbeille pleine de pommes.\nShe had nothing to do yesterday.\tElle n'avait rien à faire hier.\nShe had nothing to say about it.\tElle n'avait rien à dire à ce sujet.\nShe had the kindness to help me.\tElle a eu la gentillesse de m'aider.\nShe has a scarf around her neck.\tElle a une écharpe autour de son cou.\nShe has a wonderful personality.\tElle a une merveilleuse personnalité.\nShe has already left the office.\tElle a déjà quitté le bureau.\nShe has the air of being a lady.\tElle a l'air d'être une dame.\nShe hasn't cleaned her room yet.\tElle n'a pas encore nettoyé sa chambre.\nShe hired him as an interpreter.\tElle l'engagea comme interprète.\nShe hired him as an interpreter.\tElle l'a engagé comme interprète.\nShe hired him as an interpreter.\tElle l'engagea en tant qu'interprète.\nShe hired him as an interpreter.\tElle l'a engagé en tant qu'interprète.\nShe informed me of her decision.\tElle m'a fait part de sa décision.\nShe introduced me to her father.\tElle m'a présenté à son père.\nShe introduced me to her sister.\tElle m'a présenté à sa sœur.\nShe is a most gracious neighbor.\tC'est une voisine des plus courtoises.\nShe is an expert in mathematics.\tElle est experte en mathématiques.\nShe is anxious about her safety.\tElle est inquiète pour sa sécurité.\nShe is as thin as a broom stick.\tElle est maigre comme un manche à balai.\nShe is being blackmailed by him.\tIl lui fait du chantage.\nShe is being blackmailed by him.\tIl exerce sur elle du chantage.\nShe is certain to pass the exam.\tElle est certaine de réussir les examens.\nShe is distantly related to him.\tElle lui est vaguement apparentée.\nShe is distantly related to him.\tElle lui est apparentée de manière lointaine.\nShe is expecting a baby in June.\tElle attend un bébé pour juin.\nShe is good at speaking English.\tElle parle bien anglais.\nShe is looking for her car keys.\tElle cherche ses clés de voiture.\nShe is looking for her car keys.\tElle cherche les clés de sa voiture.\nShe is on a diet to lose weight.\tElle fait un régime pour perdre du poids.\nShe is two years older than you.\tElle est deux ans plus vieille que vous.\nShe is two years older than you.\tElle est deux ans plus vieille que toi.\nShe is two years older than you.\tElle est plus vieille que vous de deux ans.\nShe is two years older than you.\tElle est plus vieille que toi de deux ans.\nShe is two years older than you.\tElle a deux ans de plus que toi.\nShe is two years older than you.\tElle a deux ans de plus que vous.\nShe just laughed the matter off.\tElle a juste éludé l'affaire en riant.\nShe kissed away the boy's tears.\tElle effaça les larmes du garçon de ses baisers.\nShe liked talking about herself.\tElle aimait parler d'elle-même.\nShe listened to music for hours.\tElle écoutait de la musique durant des heures.\nShe listened to music for hours.\tElle a écouté de la musique durant des heures.\nShe listened to music for hours.\tElle écouta de la musique durant des heures.\nShe lived with him all her life.\tElle vécut avec lui toute sa vie.\nShe lived with him all her life.\tElle a vécu avec lui toute sa vie.\nShe lives in an apartment alone.\tElle vit seule en appartement.\nShe looked him right in the eye.\tElle le regarda droit dans les yeux.\nShe looked him right in the eye.\tElle l'a regardé droit dans les yeux.\nShe looked out through the hole.\tElle regarda au dehors par le trou.\nShe looks a lot like her mother.\tElle ressemble beaucoup à sa mère.\nShe loves to wear tight clothes.\tElle adore porter des vêtements moulants.\nShe made the same mistake again.\tElle a encore commis la même erreur.\nShe made the same mistake again.\tElle a encore commis la même faute.\nShe made the same mistake again.\tElle refit la même erreur.\nShe made the same mistake again.\tElle a refait la même erreur.\nShe made the same mistake again.\tElle a commis à nouveau la même erreur.\nShe majors in French literature.\tElle est spécialisée en littérature française.\nShe majors in organic chemistry.\tElle se spécialise en chimie organique.\nShe must have done it yesterday.\tElle l'a certainement fait hier soir.\nShe passed by without seeing me.\tElle est passée sans me voir.\nShe planted roses in the garden.\tElle a planté des roses dans le jardin.\nShe poured water into the basin.\tElle a versé de l'eau dans la cuvette.\nShe praised him for his honesty.\tElle le loua pour son honnêteté.\nShe promised me that she'd come.\tElle me promit qu'elle viendrait.\nShe promised not to tell anyone.\tElle promit de ne le dire à personne.\nShe promised not to tell anyone.\tElle a promis de ne le dire à personne.\nShe put her elbows on her knees.\tElle posa les coudes sur les genoux.\nShe refused to accept the money.\tElle se refusa à accepter l'argent.\nShe refused to accept the money.\tElle s'est refusée à accepter l'argent.\nShe refused to accept the money.\tElle a refusé d'accepter l'argent.\nShe risked her life to save him.\tElle risqua sa vie pour le sauver.\nShe risked her life to save him.\tElle a risqué sa vie pour le sauver.\nShe said she must leave at once.\tElle a dit qu'elle devait partir tout de suite.\nShe said she would be back soon.\tElle a dit qu'elle reviendrait très bientôt.\nShe said she would be back soon.\tElle a dit qu'elle serait vite de retour.\nShe sang a Japanese song for us.\tElle a chanté une chanson japonaise pour nous.\nShe sang a Japanese song for us.\tElle nous a chanté une chanson japonaise.\nShe saw him driving his new car.\tElle l'a vu conduire sa nouvelle voiture.\nShe saw him driving his new car.\tElle le vit conduire sa nouvelle voiture.\nShe saw many animals on the way.\tEn chemin, elle a vu beaucoup d'animaux.\nShe says that she likes flowers.\tElle dit qu'elle aime les fleurs.\nShe showed me around the campus.\tElle m'a fait faire le tour du campus.\nShe spent all afternoon cooking.\tElle passa toute l'après-midi à cuisiner.\nShe spent all afternoon cooking.\tElle passa tout l'après-midi à cuisiner.\nShe spent all afternoon cooking.\tElle a passé toute l'après-midi à cuisiner.\nShe spent all afternoon cooking.\tElle a passé tout l'après-midi à cuisiner.\nShe started for Kyoto yesterday.\tElle est partie hier pour Kyoto.\nShe suddenly lost consciousness.\tElle a soudainement perdu connaissance.\nShe takes private piano lessons.\tElle prend des cours particuliers de piano.\nShe teaches reading and writing.\tElle enseigne à lire et à écrire.\nShe tends to be late for school.\tElle a tendance à arriver en retard à l'école.\nShe thought that I was a doctor.\tElle pensait que j'étais médecin.\nShe thought that I was a doctor.\tElle pensait que j'étais toubib.\nShe told him that she loved him.\tElle lui dit qu'elle l'aimait.\nShe told him that she was happy.\tElle lui dit qu'elle était heureuse.\nShe told him that she was happy.\tElle lui a dit qu'elle était heureuse.\nShe told us not to make a noise.\tElle nous dit de ne pas faire un bruit.\nShe told us not to make a noise.\tElle nous a dit de ne pas faire un bruit.\nShe told us the road was closed.\tElle nous dit que la route était fermée.\nShe took the taxi to the museum.\tElle prit le taxi pour le musée.\nShe touched him on the shoulder.\tElle lui toucha l'épaule.\nShe touched him on the shoulder.\tElle lui a touché l'épaule.\nShe translated it word for word.\tElle l'a traduit mot à mot.\nShe traveled all over the world.\tElle a bourlingué partout dans le monde.\nShe tried in vain to please him.\tElle a essayé en vain de lui faire plaisir.\nShe tried to lower her expenses.\tElle essaya de diminuer ses dépenses.\nShe tried to lower her expenses.\tElle a essayé de diminuer ses dépenses.\nShe visited him on October 20th.\tElle lui rendit visite le 20 octobre.\nShe visited him on October 20th.\tElle lui a rendu visite le 20 octobre.\nShe waited for him to come home.\tElle attendit qu'il vienne à la maison.\nShe waited for him to come home.\tElle a attendu qu'il vienne à la maison.\nShe wants to work in a hospital.\tElle veut travailler dans un hôpital.\nShe was a genius in mathematics.\tElle était un génie en mathématiques.\nShe was a pioneer in this field.\tElle était un précurseur en ce domaine.\nShe was amazed to hear the news.\tElle était stupéfaite d'entendre la nouvelle.\nShe was astonishingly beautiful.\tElle était incroyablement belle.\nShe was born in a small village.\tElle est née dans le petit village.\nShe was busy doing her homework.\tElle s'était occupée de ses devoirs.\nShe was busy with the housework.\tElle était occupée aux tâches ménagères.\nShe was nearly hit by a bicycle.\tElle a failli être heurtée par un vélo.\nShe was on the point of leaving.\tElle était sur le point de partir.\nShe was overcome with happiness.\tElle était submergée de bonheur.\nShe was overcome with happiness.\tElle fut submergée de bonheur.\nShe was sticking her tongue out.\tElle tirait la langue.\nShe was very happy with my gift.\tElle fut très heureuse de mon cadeau.\nShe was very happy with my gift.\tElle a été très heureuse de mon cadeau.\nShe was washing the dishes then.\tPendant ce temps, elle lavait la vaisselle.\nShe went to see him reluctantly.\tElle alla le voir à contrecœur.\nShe went to see him reluctantly.\tElle est allée le voir à contrecœur.\nShe went with him to the movies.\tElle se rendit avec lui au cinéma.\nShe went with him to the movies.\tElle s'est rendue avec lui au cinéma.\nShe will give a party next week.\tElle donnera une fête la semaine prochaine.\nShe will have a baby next month.\tElle va avoir un bébé le mois prochain.\nShe will pay 50 dollars at most.\tElle paiera au plus cinquante dollars.\nShe wondered which door to open.\tElle se demandait quelle porte ouvrir ?\nShe wrote a book about the bird.\tElle a écrit un livre sur cet oiseau.\nShe wrote about it in her diary.\tElle y a fait référence dans son journal.\nShe wrote to me to come at once.\tElle m'écrivit de venir sur-le-champ.\nShe'll be seventeen in February.\tElle aura dix-sept ans en février.\nShe's a very interesting person.\tElle est une personne très intéressante.\nShe's asking for the impossible.\tElle demande l'impossible.\nShe's good at handling children.\tElle est bonne pour se débrouiller avec les enfants.\nShe's materialistic and shallow.\tElle est matérialiste et superficielle.\nShe's not admitting her mistake.\tElle n'admet pas son erreur.\nShe's six years older than I am.\tElle a six ans de plus que moi.\nShe's six years older than I am.\tElle est six ans plus âgée que moi.\nShe's worried about your safety.\tElle est inquiète de ta sécurité.\nShe's worried about your safety.\tElle est inquiète pour ta sécurité.\nShe's worried about your safety.\tElle est inquiète pour votre sécurité.\nShould we tell everybody or not?\tDevrions-nous le dire à tout le monde ou non ?\nShow me how much money you have.\tMontre-moi combien d'argent tu as.\nShow me the way to the bus stop.\tMontre-moi le chemin jusqu'à l'arrêt de bus.\nShow me the way to the bus stop.\tMontrez-moi le chemin jusqu'à l'arrêt de bus.\nShow me the way to the bus stop.\tMontre-moi le chemin jusqu'à l'arrêt du bus.\nShow me the way to the bus stop.\tMontrez-moi le chemin jusqu'à l'arrêt du bus.\nShow me what you've done so far.\tMontre-moi ce que tu as fait pour l'instant.\nSince I was tired, I took a nap.\tComme j'étais fatigué, j'ai fait une sieste.\nSince I'm here, let me help you.\tPuisque je suis ici, laisse-moi t'aider.\nSince I'm here, let me help you.\tPuisque je suis ici, laissez-moi vous aider.\nSing the song once more, please.\tChante la chanson encore une fois, s'il te plaît.\nSit down here and warm yourself.\tAsseyez-vous là et réchauffez-vous.\nSlaves were considered property.\tLes esclaves étaient considérés comme des biens.\nSmall children are very curious.\tLes jeunes enfants sont très curieux.\nSmell is one of the five senses.\tL'odorat est l'un des cinq sens.\nSmoke poured out of the chimney.\tDe la fumée s'échappait de la cheminée.\nSmoking has affected his health.\tLe tabac a affecté sa santé.\nSo what is it you want me to do?\tAlors, que voulez-vous que je fasse ?\nSo what is it you want me to do?\tAlors, c'est quoi que tu veux que je fasse ?\nSo what is it you want me to do?\tAlors c'est quoi que vous voulez que je fasse ?\nSome animals are afraid of fire.\tCertains animaux craignent le feu.\nSome girls are naturally pretty.\tCertaines filles sont naturellement jolies.\nSomebody has stolen my suitcase.\tQuelqu'un a volé ma valise.\nSomebody's coming up the stairs.\tQuelqu'un monte les escaliers.\nSomebody's coming up the stairs.\tQuelqu'un est en train de monter les escaliers.\nSomeday my dream will come true.\tUn jour, mon rêve se réalisera.\nSomeday my dream will come true.\tUn jour, mon rêve deviendra réalité.\nSomeone broke into my apartment.\tQuelqu'un s'est introduit par effraction dans mon appartement.\nSomeone called on her yesterday.\tQuelqu'un lui a rendu visite hier.\nSomeone has stolen all my money.\tQuelqu'un a volé tout mon argent.\nSomeone has stolen all my money.\tQuelqu'un m'a volé tout mon argent.\nSomeone has stolen all my money.\tQuelqu'un m'a dérobé tout mon argent.\nSomeone has stolen all my money.\tQuelqu'un a dérobé tout mon argent.\nSomeone is hiding in the corner.\tQuelqu'un est caché dans le coin.\nSomeone is knocking at the door.\tOn frappe à la porte.\nSomeone is knocking at the door.\tQuelqu'un frappe à la porte.\nSomeone is knocking on the door.\tQuelqu'un frappe à la porte.\nSomeone must have left it there.\tQuelqu'un doit l'avoir laissé là.\nSomething bad's going to happen.\tQuelque chose de néfaste va arriver.\nSomething did happen, didn't it?\tQuelque chose s'est passé, pas vrai ?\nSomething did happen, didn't it?\tQuelque chose s'est passé, n'est-ce pas ?\nSomething did happen, didn't it?\tQuelque chose est arrivé, pas vrai ?\nSomething weird's going on here.\tIl y a quelque chose qui cloche, je crois.\nSomething weird's going on here.\tIl se passe un truc bizarre.\nSometimes I see him at the club.\tJe le vois parfois au cercle.\nSometimes everything goes wrong.\tParfois, tout va mal.\nSorry, but I am unable to do so.\tDésolé mais je suis incapable de le faire.\nSpring will be here before long.\tLe printemps est pour bientôt.\nStars were twinkling in the sky.\tLes étoiles scintillaient dans le ciel nocturne.\nStay here all night if you want.\tReste ici toute la nuit, si tu veux.\nStay here all night if you want.\tRestez ici toute la nuit, si vous voulez.\nStop it. You're making me blush.\tArrêtez ! Vous me faites rougir.\nStop it. You're making me blush.\tArrête ! Tu me fais rougir.\nStrange rumors are going around.\tD'étranges rumeurs circulent.\nStudents are hurrying to school.\tLes élèves se hâtent vers leur école.\nSuch incidents are quite common.\tDe tels incidents sont assez courants.\nSupper is served at nine-thirty.\tLe dîner est servi à neuf heures et demie.\nSweat is dripping from his face.\tLa sueur dégouline de son visage.\nSwimming makes your legs strong.\tNager renforce les jambes.\nTake your coat in case it rains.\tPrenez votre imperméable au cas où il pleuvrait.\nTake your time. There's no rush.\tPrends ton temps, il n'y a pas d'urgence.\nTake your time. There's no rush.\tPrenez votre temps, il n'y a pas d'urgence.\nTell Tom I don't have his money.\tDis à Tom que je n'ai pas son argent.\nTell Tom I don't have his money.\tDites à Tom que je n'ai pas son argent.\nTell me the object of your plan.\tFaites-moi part de l'objet de votre plan.\nTell us a little about yourself.\tDites-nous en un peu sur vous !\nTell us a little about yourself.\tDis-nous en un peu sur toi !\nTell whoever comes that I'm out.\tDis à quiconque se présente que je suis sorti !\nTell whoever comes that I'm out.\tDis à quiconque se présente que je suis sortie !\nTell whoever comes that I'm out.\tDites à quiconque se présente que je suis sorti !\nTen prisoners broke out of jail.\tDix prisonniers se sont évadés de prison.\nTen prisoners broke out of jail.\tDix détenus se sont échappés de la prison.\nThank you for coming to meet me.\tMerci de venir me rencontrer.\nThank you for coming to meet me.\tMerci d'être venu me rencontrer.\nThank you for making it so easy.\tMerci de le faciliter autant.\nThank you for making it so easy.\tMerci de le rendre aussi facile.\nThank you so much for coming by.\tMerci beaucoup d'être passé.\nThanks a lot. I appreciate that.\tMerci beaucoup. Je t'en sais gré.\nThanks a lot. I appreciate that.\tMerci beaucoup. Je vous en sais gré.\nThanks for telling me the truth.\tMerci de m'avoir dit la vérité !\nThat boy won't tell me his name.\tCe garçon ne veut pas me dire son nom.\nThat dress matches her red hair.\tCette robe va bien avec ses cheveux roux.\nThat has nothing to do with him.\tÇa n'a rien à voir avec lui.\nThat is how he always treats me.\tIl me traite tout le temps comme ça.\nThat is not exactly what I said.\tCe n'est pas exactement ce que j'ai dit.\nThat is not what I meant to say.\tCe n'est pas ce que je voulais dire.\nThat is sold at hardware stores.\tC'est vendu en quincaillerie.\nThat is the book I want to read.\tC'est le livre que je veux lire.\nThat isn't what I'm looking for.\tCe n'est pas ce que je cherche.\nThat law is full of ambiguities.\tLa loi est pleine d'ambiguïtés.\nThat man stole all of his money.\tL'homme lui vola tout son argent.\nThat never even crossed my mind.\tCela ne m'a jamais traversé l'esprit.\nThat never even crossed my mind.\tCela ne m’a jamais effleuré l’esprit.\nThat place is open to everybody.\tCe lieu est ouvert à tous.\nThat runs against my principles.\tCela va à l'encontre de mes principes.\nThat song reminds me of my home.\tCette chanson me rappelle chez moi.\nThat sounds too good to be true.\tÇa a l'air trop beau pour être vrai.\nThat was absolutely unnecessary.\tC'était tout à fait inutile.\nThat was just icing on the cake.\tC'était la cerise sur le gâteau.\nThat was rather good, wasn't it?\tC'était plutôt bien, non ?\nThat was well worth the trouble.\tCela en valait bien la peine.\nThat will benefit the community.\tÇa profitera à la communauté.\nThat work was done very quickly.\tCe travail a été fait très rapidement.\nThat work was done very quickly.\tCe boulot a été fait très rapidement.\nThat would appear to be correct.\tÇa semblerait être correct.\nThat would've been embarrassing.\tC'eût été embarrassant.\nThat's a very personal question.\tC'est une question très personnelle.\nThat's all I have to say to you.\tC'est tout ce que j'ai à vous dire.\nThat's all I have to say to you.\tC'est tout ce que j'ai à te dire.\nThat's exactly what I think too.\tC'est exactement ce que je pense moi aussi.\nThat's exactly what I was doing.\tC'est exactement ce que j'étais en train de faire.\nThat's exactly what I've needed.\tC'est exactement ce dont j'avais besoin.\nThat's how I found out about it.\tC'est ainsi que je l'ai découvert.\nThat's just what I want to hear.\tC'est précisément ce que je veux entendre.\nThat's not exactly what I meant.\tCe n'est pas exactement ce que je voulais dire.\nThat's not fair and you know it.\tCe n'est pas juste et tu le sais.\nThat's not fair and you know it.\tCe n'est pas juste et vous le savez.\nThat's not funny at all anymore.\tCe n'est plus du tout marrant.\nThat's not the end of the story.\tCe n'est pas la fin de l'histoire.\nThat's not true and you know it.\tCe n'est pas vrai et tu le sais.\nThat's not true and you know it.\tCe n'est pas vrai et vous le savez.\nThat's not what I'm going to do.\tCe n'est pas ce que je vais faire.\nThat's not what I'm looking for.\tCe n'est pas ce que je recherche.\nThat's not what you said before.\tCe n'est pas ce que vous avez dit avant.\nThat's not what you said before.\tCe n'est pas ce que tu as dit avant.\nThat's not what you used to say.\tCe n'est pas ce que tu disais.\nThat's not what you used to say.\tCe n'est pas ce que tu avais l'habitude de dire.\nThat's nothing to be ashamed of.\tTu n'as aucune honte à avoir.\nThat's probably not a good idea.\tCe n'est probablement pas une bonne idée.\nThat's the car I told you about.\tC'est la voiture dont je vous ai parlé.\nThat's the car I told you about.\tC'est la voiture dont je t'ai parlé.\nThat's the one thing I can't do.\tC'est la seule chose que je ne puisse faire.\nThat's the only reason I'm here.\tC'est la seule raison pour laquelle je suis ici.\nThat's the safest way, isn't it?\tC'est le moyen le plus sûr, n'est-ce pas ?\nThat's what I thought you meant.\tC'est ce que je pensais que vous vouliez dire.\nThat's what I thought you meant.\tC'est ce que je pensais que tu voulais dire.\nThat's what I was thinking, too.\tC'est également ce à quoi j'étais en train de penser.\nThat's where I injured my ankle.\tC'est là que je me suis blessé la cheville.\nThat's why I wanted you to know.\tC'est pourquoi je voulais que tu le saches.\nThat's why I wanted you to know.\tC'est pourquoi je voulais que vous le sachiez.\nThe Ferris wheel is my favorite.\tLa grande roue est ma préférée.\nThe Prime Minister has resigned.\tLe premier ministre a démissionné.\nThe accident occurred on Friday.\tL'accident a eu lieu vendredi.\nThe artist always painted alone.\tL'artiste peignait toujours seul.\nThe baby cannot use a spoon yet.\tLe bébé ne sait pas encore utiliser une cuillère.\nThe baby cannot use a spoon yet.\tLe bébé ne sait pas encore se servir d'une cuillère.\nThe baby takes after his mother.\tCe bébé ressemble à sa mère.\nThe baby was shaking the rattle.\tLe bébé secouait le hochet.\nThe ball rolled across the road.\tLe ballon roula en travers de la rue.\nThe ball rolled across the road.\tLe ballon roula en travers de la route.\nThe band played several marches.\tLa fanfare joua plusieurs marches.\nThe bank was held up last night.\tLa banque a été cambriolée la nuit dernière.\nThe bathtub needs to be cleaned.\tIl faut nettoyer la baignoire.\nThe bicycle by the door is mine.\tLe vélo à côté de la porte est le mien.\nThe bicycle by the door is mine.\tLe vélo à côté de la porte est à moi.\nThe boss said that we are fired.\tLe patron a dit que nous sommes virés.\nThe boy threw stones at the dog.\tLe garçon a lancé des pierres au chien.\nThe buses run every ten minutes.\tLe bus passe toutes les dix minutes.\nThe cake was crawling with ants.\tLe gâteau grouillait de fourmis.\nThe capital of Poland is Warsaw.\tLa capitale de la Pologne est Varsovie.\nThe car he's driving is not his.\tLe véhicule qu'il conduit n'est pas le sien.\nThe car he's driving is not his.\tLa voiture qu'il conduit n'est pas la sienne.\nThe car he's driving is not his.\tLa voiture qu'il conduit n'est pas à lui.\nThe car is not illegally parked.\tLa voiture n'est pas garée de manière illicite.\nThe cheesecake tasted too sweet.\tLe gâteau au fromage était trop sucré.\nThe child was hiding in the box.\tL'enfant se cachait dans la boîte.\nThe children caught butterflies.\tLes enfants ont attrapé des papillons.\nThe clock has just struck three.\tL'horloge vient de marquer trois heures.\nThe company employs 500 workers.\tLa société emploie 500 ouvriers.\nThe company suffered big losses.\tL'entreprise a subi de grosses pertes.\nThe concert was a great success.\tLe concert fut un grand succès.\nThe conclusion is crystal clear.\tLa conclusion est limpide.\nThe delegates voted immediately.\tLes délégués votèrent sur-le-champ.\nThe doctor is not available now.\tLe docteur n'est pas disponible maintenant.\nThe dog seems to have been sick.\tLe chien a l'air d'avoir été malade.\nThe dog was sleeping on the mat.\tLe chien dormait sur le tapis.\nThe dogs bayed at the full moon.\tLes chiens hurlaient à la pleine Lune.\nThe door opens into the bedroom.\tCette porte donne sur la chambre.\nThe door was locked from within.\tLa porte était fermée de l'intérieur.\nThe dressing room is over there.\tLe vestiaire est par là.\nThe drunk driver damaged a tree.\tLe conducteur ivre a endommagé un arbre.\nThe eagle had to be fed by hand.\tL'aigle a dû être nourri à la main.\nThe early bird catches the worm.\tL'avenir appartient à ceux qui se lèvent tôt.\nThe early bird catches the worm.\tLa fortune appartient à ceux qui se lèvent tôt.\nThe earthquake shook the houses.\tLe tremblement de terre a secoué les maisons.\nThe employees are all unionized.\tTous les employés sont syndiqués.\nThe epidemic has been contained.\tL'épidémie a été contenue.\nThe experiment ended in failure.\tL'expérience échoua.\nThe factory produces ammunition.\tL'usine fabrique des munitions.\nThe fire was on the first floor.\tLe feu était au rez-de-chaussée.\nThe first round is on the house.\tLa première tournée est pour la maison.\nThe food didn't taste very good.\tLa nourriture n'était pas très bonne.\nThe girl had a large red hat on.\tLa fille portait un grand chapeau rouge.\nThe ground is covered with snow.\tLe sol est recouvert de neige.\nThe guitar player is my brother.\tLe garçon qui joue de la guitare est mon frère.\nThe guys are playing basketball.\tLes gars jouent au basket-ball.\nThe house is said to be haunted.\tOn dit la maison hantée.\nThe house is said to be haunted.\tOn dit que la maison est hantée.\nThe ice is too thin to skate on.\tLa glace est trop fine pour y pouvoir patiner.\nThe key was nowhere to be found.\tOn ne pouvait trouver la clé nulle part.\nThe key was nowhere to be found.\tNulle part on ne pouvait trouver la clef.\nThe kite got caught in the tree.\tLe cerf-volant s'est pris dans l'arbre.\nThe last train has already gone.\tLe dernier train est déjà parti.\nThe lecture started on schedule.\tLe cours commença à l'heure.\nThe letter will arrive tomorrow.\tLa lettre arrivera demain.\nThe library is on the 4th floor.\tLa bibliothèque se situe au quatrième étage.\nThe little boy said hello to me.\tLe petit garçon m'a dit bonjour.\nThe loss amounted to $2,000,000.\tLa perte se monta à 2.000.000 $.\nThe machine takes a lot of room.\tCette machine prend beaucoup de place.\nThe mailman emptied the mailbox.\tLe postier vida la boîte aux lettres.\nThe man answers the description.\tL'homme correspond à la description.\nThe man's behavior was very odd.\tLe comportement de ce type était très étrange.\nThe meeting was just about over.\tLa réunion touchait à sa fin.\nThe meeting was just about over.\tLa réunion prenait fin.\nThe meeting was just about over.\tLa réunion était sur le point de se terminer.\nThe meeting was just about over.\tLa réunion était pour ainsi dire close.\nThe milk froze and became solid.\tLe lait se gela et devint solide.\nThe more I get, the more I want.\tPlus j'en obtiens, plus j'en veux.\nThe movie starts at ten o'clock.\tLe film commence à dix heures.\nThe museum is closed on Mondays.\tLe musée est fermé le lundi.\nThe neighbors called the police.\tLes voisins appelèrent la police.\nThe neighbors called the police.\tLes voisins ont appelé la police.\nThe new furniture arrived today.\tLes nouveaux meubles sont arrivés aujourd'hui.\nThe new medicine saved his life.\tLe nouveau médicament lui sauva la vie.\nThe news filled her with sorrow.\tLes nouvelles l'emplirent de chagrin.\nThe news is too good to be true.\tCette nouvelle est trop belle pour être vraie.\nThe noise will wake the baby up.\tLe bruit va réveiller le bébé.\nThe nurses were very nice to me.\tLes infirmières ont été très gentilles avec moi.\nThe old couple sat side by side.\tLe vieux couple était assis côte-à-côte.\nThe old man begged me for money.\tLe vieil homme me demanda l'aumône.\nThe old man is angry and bitter.\tLe vieil homme est en colère et amer.\nThe old man tends to exaggerate.\tLe vieux exagère volontiers.\nThe old man tends to exaggerate.\tLe vieux a tendance à exagérer.\nThe one who said that is a liar.\tCelui qui a dit ça est un menteur.\nThe pain in my stomach has gone.\tLa douleur à mon estomac est partie.\nThe pain still hasn't gone away.\tLa douleur n'a toujours pas disparu.\nThe patient didn't have a fever.\tLe patient n'avait pas de fièvre.\nThe place is surrounded by cops.\tL'endroit est cerné par les flics.\nThe plane flew above the clouds.\tL'avion volait au-dessus des nuages.\nThe plane flew above the clouds.\tL'avion vola au-dessus des nuages.\nThe plane takes off at 8:00 a.m.\tCet avion décolle à huit heures du matin.\nThe plane was about to take off.\tL'avion était sur le point de décoller.\nThe plane will land before long.\tL'avion atterrira sous peu.\nThe plane will take off at five.\tL'avion décollera à cinq heures.\nThe police accused him of theft.\tLa police l'a accusé de vol.\nThe police arrested the suspect.\tLa police arrêta le suspect.\nThe police arrested the suspect.\tLa police a arrêté le suspect.\nThe police want to question you.\tLa police veut te poser des questions.\nThe police want to question you.\tLa police veut vous questionner.\nThe post office is closed today.\tLe bureau de poste est fermé aujourd'hui.\nThe present time is a good time.\tLe moment présent est un bon moment.\nThe president abolished slavery.\tLe président a aboli l'esclavage.\nThe prize won't be given to her.\tLe prix ne lui sera pas donné.\nThe problem was too much for me.\tLe problème était trop pour moi.\nThe rent is paid for six months.\tLe loyer est payé pour six mois.\nThe rest of them will come soon.\tLes autres viendront bientôt.\nThe road is too narrow for cars.\tLa route est trop étroite pour les voitures.\nThe room was filled with people.\tLa pièce était emplie de monde.\nThe room was in a perfect order.\tLa pièce était parfaitement rangée.\nThe rope broke under the strain.\tLa corde a cassé sous la charge.\nThe rules were recently relaxed.\tLes règles ont été récemment assouplies.\nThe same holds true for Germany.\tIl en va de même pour l'Allemagne.\nThe same holds true for Germany.\tIl en est de même pour l'Allemagne.\nThe same holds true for Germany.\tC'est également vrai pour l'Allemagne.\nThe ship hasn't even docked yet.\tLe navire n'est même pas encore à quai.\nThe ship hasn't even docked yet.\tLe navire n'est même pas encore amarré.\nThe ship was scuttled last year.\tLe navire a été sabordé l'année dernière.\nThe situation appears desperate.\tLa situation semble désespérée.\nThe soldiers guarded the bridge.\tLes soldats gardaient le pont.\nThe stock market is very active.\tLe marché des changes est très actif.\nThe storm caused a power outage.\tLa tempête a provoqué une panne d'électricité.\nThe storm caused a power outage.\tL'orage a causé une coupure de courant.\nThe storm caused a power outage.\tL'orage a occasionné une coupure de courant.\nThe storm raged in all its fury.\tLa tempête fit rage dans toute sa fureur.\nThe story was in all the papers.\tL'histoire était dans tous les journaux.\nThe sun gives us light and heat.\tLe soleil nous procure de la lumière et de la chaleur.\nThe sun gives us light and heat.\tLe soleil nous procure lumière et chaleur.\nThe teachers teach all day long.\tLes professeurs enseignent toute la journée.\nThe tide is turning against Tom.\tLe vent tourne en défaveur de Tom.\nThe tie doesn't go with my suit.\tLa cravate ne va pas avec mon costume.\nThe tower can be seen from here.\tLa tour peut être vue d'ici.\nThe traffic lights were all red.\tTous les feus étaient au rouge.\nThe train came to a smooth stop.\tLe train s'arrêta en douceur.\nThe train is 30 minutes overdue.\tLe train a 30 minutes de retard.\nThe train is 30 minutes overdue.\tLe train a trente minutes de retard.\nThe train was late this morning.\tLe train avait du retard ce matin.\nThe tsunami alert was cancelled.\tL'alerte au tsunami a été levée.\nThe two of them are in the room.\tIls sont tous les deux dans la pièce.\nThe two of us are finally alone.\tNous sommes enfin seuls.\nThe two of us are finally alone.\tNous sommes enfin seules.\nThe two of us don't belong here.\tTous deux nous n'appartenons pas à ce milieu artificiel.\nThe virus is starting to mutate.\tLe virus commence à muter.\nThe war began three years later.\tLa guerre commença trois ans après.\nThe waves swallowed up the boat.\tLes vagues engloutirent le bateau.\nThe whole class passed the test.\tToute la classe a passé le test.\nThe whole town was in an uproar.\tToute la ville était en effervescence.\nThe world did not recognize him.\tLe monde ne l'a pas reconnu.\nThe world did not recognize him.\tLe monde ne le reconnut pas.\nThe wound left a scar on my arm.\tLa blessure me laissa une cicatrice sur le bras.\nThere are many rats on the ship.\tIl y a de nombreux rats sur le navire.\nThere are many tourists in town.\tDans la ville il y a beaucoup de touristes.\nThere are no secrets between us.\tIl n'y a pas de secrets entre nous.\nThere are no tables in the room.\tIl n'y a pas de table dans la salle.\nThere are six apples in the box.\tIl y a six pommes dans la boîte.\nThere are some pears in the box.\tIl y a quelques poires dans la boite.\nThere are too many things to do!\tIl y a trop de choses à faire !\nThere is a red rose in the vase.\tIl y a une rose rouge dans le vase.\nThere is an orange on the table.\tIl y a une orange sur la table.\nThere is little hope of success.\tIl n'y a que peu d'espoir de succès.\nThere is no film in this camera.\tIl n'y a pas de film dans cette caméra.\nThere is no shame in being poor.\tÊtre pauvre n'est pas une honte.\nThere is no shame in being poor.\tÊtre pauvre n'est pas déshonorant.\nThere is no wine in that bottle.\tIl n'y a pas de vin dans cette bouteille.\nThere is nothing to worry about.\tIl n'y a pas de quoi s'inquiéter.\nThere is nothing wrong with him.\tTout va bien avec lui.\nThere may be a problem with Tom.\tIl se peut qu'il y ait un problème avec Tom.\nThere may be some truth to this.\tIl y a peut-être là quelque verité.\nThere was a bottle of wine left.\tIl restait une bouteille de vin.\nThere was no warning whatsoever.\tIl n'y eut aucun avertissement, quel qu'il soit.\nThere was some dew this morning.\tIl y avait de la rosée ce matin.\nThere wasn't anyone in the room.\tIl n'y avait personne dans la pièce.\nThere wasn't anyone in the room.\tPersonne n'était dans la pièce.\nThere wasn't anyone in the room.\tPersonne ne se trouvait dans la pièce.\nThere's a big hole in your sock.\tIl y a un gros trou dans ta chaussette.\nThere's a big hole in your sock.\tIl y a un gros trou dans votre chaussette.\nThere's ample room in the attic.\tIl y a suffisamment de place dans le grenier.\nThere's an answer to everything.\tIl y a une réponse à tout.\nThere's no mistaking about that.\tIl n'y a pas de doute à ce sujet.\nThere's no need to be insulting.\tIl n'est pas nécessaire d'être grossière.\nThere's nothing to be afraid of.\tIl n'y a pas de quoi avoir peur.\nThere's nothing to be scared of.\tIl n'y a pas de quoi avoir peur.\nThere's nothing to be scared of.\tIl n'y a pas de quoi être effrayé.\nThere's nothing to be scared of.\tIl n'y a pas de quoi s'effrayer.\nThere's nothing worse than that.\tIl n'y a rien de pire.\nThere's nowhere for you to hide.\tIl n'y a nulle part où tu puisses te cacher.\nThere's nowhere for you to hide.\tIl n'y a nul endroit où tu puisses te cacher.\nThere's nowhere for you to hide.\tIl n'y a nulle part où vous puissiez vous cacher.\nThere's nowhere for you to hide.\tIl n'y a nul endroit où vous puissiez vous cacher.\nThere's someone here to see you.\tIl y a ici quelqu'un qui vient te voir.\nThere's someone here to see you.\tIl y a ici quelqu'un qui vient vous voir.\nThere's something I want to try.\tIl y a quelque chose que je veux tenter.\nThere's something going on here.\tQuelque chose ne va pas.\nThere's something going on here.\tIl y a quelque chose qui se passe, ici.\nThere's something under the bed.\tIl y a quelque chose sous le lit.\nThere's something we have to do.\tIl nous faut faire quelque chose.\nThese are my sister's magazines.\tCe sont les magazines de ma sœur.\nThese are questions that matter.\tCe sont des questions importantes.\nThese books aren't for children.\tCes livres ne sont pas pour les enfants.\nThese boxes are made of plastic.\tCes boîtes sont faites en plastique.\nThese cameras are made in Japan.\tCes appareils photo sont fabriqués au Japon.\nThese fields produce fine crops.\tCes champs produisent de belles récoltes.\nThese fireworks are spectacular!\tCes feux d'artifice sont spectaculaires !\nThese flowers come from Holland.\tCes fleurs viennent de Hollande.\nThese flowers you see are roses.\tCes fleurs que tu vois sont des roses.\nThese peaches aren't very sweet.\tCes pêches ne sont pas très sucrées.\nThese windows look to the south.\tLes fenêtres sont orientées vers le sud.\nThey abandoned the sinking ship.\tIls abandonnèrent le navire en perdition.\nThey abandoned the sinking ship.\tIls ont abandonné le navire en perdition.\nThey abandoned the sinking ship.\tIls abandonnèrent le navire en train de couler.\nThey abandoned the sinking ship.\tIls ont abandonné le navire en train de couler.\nThey accomplished their mission.\tIls accomplirent leur mission.\nThey accused me of being a liar.\tIls m'accusèrent d'être un menteur.\nThey accused me of being a liar.\tElles m'accusèrent d'être un menteur.\nThey accused me of being a liar.\tIls m'accusèrent d'être une menteuse.\nThey accused me of being a liar.\tElles m'accusèrent d'être une menteuse.\nThey accused me of being a liar.\tIls m'ont accusée d'être une menteuse.\nThey accused me of being a liar.\tElles m'ont accusée d'être une menteuse.\nThey accused me of being a liar.\tIls m'ont accusé d'être un menteur.\nThey accused me of being a liar.\tElles m'ont accusé d'être un menteur.\nThey admired the lovely scenery.\tIls admirèrent l'adorable décor.\nThey admired the lovely scenery.\tIls admirèrent le charmant décor.\nThey admired the lovely scenery.\tIls admirèrent l'adorable paysage.\nThey admired the lovely scenery.\tIls admirèrent le charmant paysage.\nThey admired the lovely scenery.\tIls ont admiré le charmant décor.\nThey admired the lovely scenery.\tIls ont admiré le charmant paysage.\nThey admired the lovely scenery.\tIls ont admiré l'adorable paysage.\nThey admired the lovely scenery.\tIls ont admiré l'adorable décor.\nThey all laughed at their error.\tIls ont ri de leur erreur.\nThey all laughed at their error.\tElles ont ri de leur erreur.\nThey all understood your speech.\tIls ont tous compris ton discours.\nThey all went to the restaurant.\tIls sont tous allés au restaurant.\nThey all went to the restaurant.\tIls allèrent tous au restaurant.\nThey all went to the restaurant.\tElles allèrent toutes au restaurant.\nThey are at 229 Broadway Avenue.\tIls sont au 229 Broadway Avenue.\nThey are discussing the problem.\tIls discutent du problème.\nThey are from the United States.\tElles sont des États-Unis.\nThey are jealous of our success.\tIls sont jaloux de notre succès.\nThey are jealous of our success.\tIls jalousent notre succès.\nThey are jealous of our success.\tElles sont jalouses de notre succès.\nThey are jealous of our success.\tElles jalousent notre succès.\nThey are leaving Japan tomorrow.\tIls quittent le Japon demain.\nThey are talking in the kitchen.\tElles parlent dans la cuisine.\nThey are willing to help us out.\tIls veulent bien nous aider.\nThey armed themselves with guns.\tIls s'armèrent de fusils.\nThey both want to say something.\tIls veulent tous deux dire quelque chose.\nThey both want to say something.\tElles veulent toutes deux dire quelque chose.\nThey broke off their engagement.\tIls ont rompu leurs fiançailles.\nThey come from the same country.\tIls proviennent du même pays.\nThey come from the same country.\tElles proviennent du même pays.\nThey come from the same village.\tIls proviennent du même village.\nThey come from the same village.\tElles proviennent du même village.\nThey come from the same village.\tIls viennent du même village.\nThey come from the same village.\tElles viennent du même village.\nThey couldn't agree on anything.\tIls ne surent s'accorder sur quoi que ce fut.\nThey couldn't agree on anything.\tElles ne surent s'accorder sur quoi que ce fut.\nThey don't look happy to see me.\tIls n'ont pas l'air heureux de me voir.\nThey don't look happy to see me.\tElles n'ont pas l'air heureuses de me voir.\nThey don't look happy to see us.\tIls n'ont pas l'air heureux de nous voir.\nThey don't look happy to see us.\tElles n'ont pas l'air heureuses de nous voir.\nThey don't work with us anymore.\tIls ne travaillent plus avec nous.\nThey don't work with us anymore.\tElles ne travaillent plus avec nous.\nThey grow flowers in the garden.\tIls cultivent des fleurs dans le jardin.\nThey grow flowers in the garden.\tElles cultivent des fleurs dans le jardin.\nThey grow oranges in California.\tIls font pousser des oranges en Californie.\nThey grow oranges in California.\tEn Californie, ils font pousser des oranges.\nThey had a lovely time together.\tIls passèrent ensemble une période merveilleuse.\nThey had no idea what to expect.\tIls n'avaient aucune idée à quoi s'attendre.\nThey had no idea what to expect.\tElles n'avaient aucune idée à quoi s'attendre.\nThey had once helped each other.\tIls s'étaient entraidés une fois.\nThey had once helped each other.\tIls s'étaient entraidés à une occasion.\nThey have access to the library.\tIls ont accès à la bibliothèque.\nThey have access to the library.\tElles ont accès à la bibliothèque.\nThey haven't changed their mind.\tIls n'ont pas changé d'avis.\nThey haven't changed their mind.\tElles n'ont pas changé d'avis.\nThey hold me responsible for it.\tIls m'ont tenu pour responsable.\nThey just want someone to blame.\tIls veulent juste quelqu'un à qui faire endosser la responsabilité.\nThey just want someone to blame.\tElles veulent juste quelqu'un à qui faire endosser la responsabilité.\nThey made equally tough demands.\tIls présentèrent des exigences aussi dures.\nThey moved here three years ago.\tIls ont déménagé ici il y a trois ans.\nThey moved here three years ago.\tElles ont déménagé ici il y a trois ans.\nThey often make fun of the boss.\tIls se moquent souvent du chef.\nThey often make fun of the boss.\tIls se moquent souvent du patron.\nThey said that it was important.\tIls ont dit que c'était important.\nThey said that it was important.\tElles ont dit que c'était important.\nThey sat on a bench in the park.\tIls étaient assis sur un banc dans le parc.\nThey sat on a bench in the park.\tIls s'assirent sur un banc dans le parc.\nThey started working right away.\tIls se mirent immédiatement à travailler.\nThey told me to stay in the car.\tIls m'ont dit de rester dans la voiture.\nThey told me to stay in the car.\tElles m'ont dit de rester dans la voiture.\nThey treat their employees well.\tIls traitent bien leurs employés.\nThey treat their employees well.\tElles traitent bien leurs employées.\nThey treat their employees well.\tElles traitent bien leurs employés.\nThey unwrapped their sandwiches.\tIls ont déballé leurs sandwichs.\nThey unwrapped their sandwiches.\tElles ont déballé leurs sandwichs.\nThey walked along a narrow path.\tIls ont marché le long d'un chemin étroit.\nThey wash their hands with soap.\tIls se lavent les mains avec du savon.\nThey went to America last month.\tIls sont allés en Amérique le mois dernier.\nThey were afraid of the big dog.\tIls avaient peur du gros chien.\nThey were afraid of the big dog.\tElles avaient peur du gros chien.\nThey would like to stay at home.\tIls aimeraient rester à la maison.\nThey're looking for a scapegoat.\tIls cherchent un bouc émissaire.\nThey're looking for a scapegoat.\tElles cherchent un bouc émissaire.\nThings might get a little rough.\tLes choses vont peut-être être un peu rudes.\nThis bed is way too soft for me.\tCe lit est bien trop mou pour moi.\nThis book goes on the top shelf.\tCe livre va sur l'étagère du haut.\nThis book goes on the top shelf.\tCe livre va sur l'étagère supérieure.\nThis book has a lot of pictures.\tCe livre a beaucoup d'images.\nThis book is a fascinating read.\tCe livre est une lecture fascinante.\nThis book is really interesting.\tCe livre est vraiment intéressant.\nThis book should help you a lot.\tCe livre devrait beaucoup t'aider.\nThis camera was made in Germany.\tCet appareil photo a été fabriqué en Allemagne.\nThis computer runs on batteries.\tCet ordinateur fonctionne sur batteries.\nThis computer runs on batteries.\tCet ordinateur fonctionne grâce à une batterie.\nThis could become a big problem.\tCela peut devenir un gros problème.\nThis doctor is a man of culture.\tCe médecin est un homme de culture.\nThis does not apply to students.\tCeci ne s'applique pas aux étudiants.\nThis fact must not be forgotten.\tIl ne faut pas oublier ce fait.\nThis is a photograph of my home.\tC'est une photo de ma maison.\nThis is a very nutritious lunch.\tC'est un déjeuner très nourrissant.\nThis is an entirely new problem.\tC'est un tout nouveau problème.\nThis is going to be a challenge.\tÇa va être un défi.\nThis is just a misunderstanding.\tC'est juste un malentendu.\nThis is just between you and me.\tC'est juste entre toi et moi.\nThis is mine, and this is yours.\tCeci est à moi et cela est à vous.\nThis is probably a real diamond.\tC'est probablement un diamant authentique.\nThis is the book I want to read.\tC'est le livre que je veux lire.\nThis is the watch that I'd lost.\tC'est la montre que j'avais égarée.\nThis is where the magic happens.\tC'est là que la magie opère.\nThis isn't a government project.\tCe n'est pas un projet du gouvernement.\nThis jacket is a little too big.\tCette veste est un poil trop grande.\nThis letter is addressed to you.\tCette lettre t'est adressée.\nThis looks like a gunshot wound.\tÇa a l'air d'une blessure par balle.\nThis looks like a gunshot wound.\tOn dirait une blessure par balle.\nThis medication works instantly.\tCe traitement fonctionne instantanément.\nThis message doesn't make sense.\tCe message n'a pas de sens.\nThis mission entails huge risks.\tCette mission comporte de grands risques.\nThis mouse was killed by my cat.\tCette souris a été tuée par mon chat.\nThis movie is incredibly stupid.\tCe film est incroyablement idiot.\nThis movie was very interesting.\tCe film était très intéressant.\nThis neighborhood is very scary.\tCe quartier fait très peur.\nThis one is as good as that one.\tCelui-ci est aussi bien que celui-là.\nThis one is similar to that one.\tCelui-ci ressemble à celui-là.\nThis phrase might come in handy.\tCette expression peut se révéler utile.\nThis phrase seems correct to me.\tCette phrase m'a l'air correcte.\nThis place is open to everybody.\tCe lieu est ouvert à tous.\nThis school was founded in 1650.\tCette école fut fondée en 1650.\nThis school was founded in 1970.\tCette école fut fondée en 1970.\nThis sentence contains an error.\tCette phrase comporte une erreur.\nThis sentence contains an error.\tIl y a une faute dans cette phrase.\nThis sentence is not in English.\tCette sentence n'est pas en anglais.\nThis should be more than enough.\tÇa devrait être plus que suffisant.\nThis stone is too heavy to lift.\tCette pierre est trop lourde pour être soulevée.\nThis stuff happens all the time.\tCe truc se produit tout le temps.\nThis suit is anything but cheap.\tCe costume est tout sauf bon marché.\nThis sword is in fair condition.\tCette épée est en assez bon état.\nThis text is aimed at beginners.\tCe texte est destiné aux débutants.\nThis text is aimed at beginners.\tCe texte est destiné aux débutantes.\nThis truck is in need of repair.\tCe camion a besoin d'être réparé.\nThis was not supposed to happen.\tCe n'était pas supposé se produire.\nThis was not supposed to happen.\tCe n'était pas supposé survenir.\nThis was not supposed to happen.\tCe n'était pas supposé arriver.\nThis will do for the time being.\tCela fera l'affaire pour le moment.\nThis will make a big difference.\tCeci fera une grosse différence.\nThis word is derived from Latin.\tCe mot vient du latin.\nThis word is derived from Latin.\tCe mot est dérivé du latin.\nThree crew members were rescued.\tTrois membres d'équipage ont été secourus.\nThree of them were hospitalized.\tTrois d'entre eux ont été hospitalisés.\nThree of them were hospitalized.\tTrois d'entre elles ont été hospitalisées.\nThree people have been arrested.\tTrois personnes ont été arrêtées.\nTime is the most precious thing.\tLe temps est la chose la plus précieuse au monde.\nToday is election day in Poland.\tAujourd'hui est une journée d'élections en Pologne.\nToday is our last day of school.\tAujourd'hui est notre dernier jour d'école.\nTom allowed Mary to leave early.\tTom laissa Marie s’en aller plus tôt.\nTom allowed his dog to run free.\tTom autorisa son chien à courir librement.\nTom always likes to joke around.\tTom aime toujours faire des blagues.\nTom and I are in the same class.\tTom et moi sommes dans la même classe.\nTom and I study French together.\tTom et moi étudions le français ensemble.\nTom and Mary are playing tennis.\tTom et Marie sont en train de jouer au tennis.\nTom and Mary broke up last week.\tTom et Marie ont rompu la semaine dernière.\nTom and Mary danced all evening.\tTom et Marie ont dansé toute la soirée.\nTom and Mary fight all the time.\tTom et Mary se battent tout le temps.\nTom and Mary got into their car.\tTom et Mary sont montés dans leur voiture.\nTom and Mary have been drinking.\tTom et Marie ont bu.\nTom and Mary were both suspects.\tTom et Marie étaient tous deux suspects.\nTom asked Mary if she loved him.\tTom a demandé à Mary si elle l'aimait.\nTom asked Mary why she was late.\tTom a demandé à Mary pourquoi elle était en retard.\nTom assigned Mary to do the job.\tTom a chargé Mary de faire le boulot.\nTom believes whatever Mary says.\tTom croit tout ce que dit Mary.\nTom bought Mary lots of jewelry.\tTom a acheté à Mary beaucoup de bijoux.\nTom bought himself a microscope.\tTom s'est acheté un microscope.\nTom bought three pairs of shoes.\tTom a acheté trois paires de chaussures.\nTom bought three pairs of shoes.\tTom acheta trois paires de chaussures.\nTom can't explain what happened.\tTom ne peut pas expliquer ce qui s'est passé.\nTom certainly drives a nice car.\tTom conduit certainement une jolie voiture.\nTom certainly goes to bed early.\tTom va certainement au lit de bonne heure.\nTom changes his passwords often.\tTom change souvent ses mots de passe.\nTom comes here every three days.\tTom vient ici tous les trois jours.\nTom comes here nearly every day.\tTom vient ici presque tous les jours.\nTom comes here nearly every day.\tTom vient ici presque quotidiennement.\nTom could've done it by himself.\tTom aurait pu le faire tout seul.\nTom could've hurt himself today.\tTom aurait pu se blesser aujourd'hui.\nTom did all he could do to help.\tTom a fait tout ce qu'il a pu pour aider.\nTom did all he could do to help.\tTom fit tout ce qu'il put pour aider.\nTom didn't actually do anything.\tTom n'a en réalité rien fait.\nTom didn't do what he was asked.\tTom n'a pas fait ce qui lui avait été demandé.\nTom didn't even know I was here.\tTom ne savait même pas que j'étais là.\nTom didn't even know I was here.\tTom ne savait même pas que j'étais ici.\nTom didn't have anything to say.\tTom n'avait rien à dire.\nTom didn't keep me waiting long.\tTom ne m'a pas fait attendre longtemps.\nTom didn't know what else to do.\tTom ne savait pas quoi faire d'autre.\nTom didn't know what to believe.\tTom ne savait pas quoi penser.\nTom didn't know what to believe.\tTom ne sut pas quoi penser.\nTom didn't leave me much choice.\tTom ne m'a pas laissé beaucoup de choix.\nTom didn't tell Mary everything.\tTom n'a pas tout dit à Marie.\nTom didn't tell Mary everything.\tTom ne disait pas tout à Marie.\nTom didn't want me to touch him.\tTom ne voulait pas que je le touche.\nTom doesn't care, but Mary does.\tTom ne s'en soucie pas, mais Mary oui.\nTom doesn't eat as much as Mary.\tTom ne mange pas autant que Mary.\nTom doesn't even live in Boston.\tTom n'habite même pas à Boston.\nTom doesn't even live in Boston.\tTom ne vit même pas à Boston.\nTom doesn't have enough friends.\tTom n'a pas assez d'amis.\nTom doesn't take criticism well.\tTom a du mal à accepter les critiques.\nTom dove into the swimming pool.\tTom plongea dans la piscine.\nTom dove into the swimming pool.\tTom a plongé dans la piscine.\nTom explained the problem to me.\tTom m'a expliqué le problème.\nTom finished washing the dishes.\tTom a fini de laver la vaisselle.\nTom finished washing the dishes.\tTom a fini de faire la vaisselle.\nTom followed Mary into the room.\tTom a suivi Mary dans la pièce.\nTom gave Mary half of the apple.\tTom a donné la moitié de la pomme à Mary.\nTom gave me everything I needed.\tTom m'a donné tout ce dont j'avais besoin.\nTom got there long after we did.\tTom est arrivé bien après nous.\nTom had a package under his arm.\tTom avait un paquet sous son bras.\nTom had every right to be angry.\tTom avait tous les droits d'être fâché.\nTom hadn't seen Mary in a while.\tTom n'avait pas vu Marie depuis un moment.\nTom handed Mary a cup of coffee.\tTom tendit une tasse de café à Marie.\nTom has a lot of valuable books.\tTom a beaucoup de livres de valeur.\nTom has a son who's a policeman.\tTom a un fils qui est policier.\nTom has a warped sense of humor.\tTom a un sens de l'humour tordu.\nTom has decided to sell his car.\tTom a décidé de vendre sa voiture.\nTom has done the best he can do.\tTom a fait du mieux qu'il pouvait.\nTom has no idea what that means.\tTom n'a aucune idée de ce que cela signifie.\nTom has put his car up for sale.\tTom a mis sa voiture en vente.\nTom has requested my assistance.\tTom m'a demandé mon aide.\nTom has stopped going to school.\tTom a cessé de fréquenter l'école.\nTom has the information we need.\tTom a les informations dont nous avons besoin.\nTom has told me a lot about you.\tTom m'en a dit beaucoup sur vous.\nTom hurried out of the building.\tTom se précipita hors de l'immeuble.\nTom hurried out of the building.\tTom se précipita hors du bâtiment.\nTom introduced his sister to me.\tTom m'a présenté sa sœur.\nTom is Mary's biological father.\tTom est le père biologique de Mary.\nTom is a former student of mine.\tTom est l'un de mes anciens élèves.\nTom is a perfect stranger to me.\tTom est un parfait inconnu pour moi.\nTom is afraid of Mary, isn't he?\tTom a peur de Mary, n'est-ce pas ?\nTom is always open to new ideas.\tTom est toujours ouvert aux nouvelles idées.\nTom is always trying to be cool.\tTom essaye toujours d'être cool.\nTom is deeply in love with Mary.\tTom est profondément amoureux de Mary.\nTom is going to cross the river.\tTom va traverser la rivière.\nTom is going to make it on time.\tTom va le faire à temps.\nTom is much older than he looks.\tTom est bien plus vieux qu'il n'en a l'air.\nTom is much older than he looks.\tTom est beaucoup plus âgé qu'il n'y paraît.\nTom is much taller than you are.\tTom est bien plus grand que vous ne l'êtes.\nTom is much taller than you are.\tTom est beaucoup plus grand que toi.\nTom is not playing by the rules.\tTom ne suit pas les règles.\nTom is one of my oldest friends.\tTom est l'un de mes plus vieux amis.\nTom is probably in the building.\tTom est probablement dans le bâtiment.\nTom is the best man for the job.\tTom est le meilleur homme pour ce travail.\nTom is the tallest in his class.\tTom est le plus grand de sa classe.\nTom is throwing stones at birds.\tTom jette des pierres aux oiseaux.\nTom is too tired to do anything.\tTom est trop fatigué pour faire quoi que ce soit.\nTom is wearing a pirate costume.\tTom porte un costume de pirate.\nTom is writing a letter to Mary.\tTom est en train d'écrire une lettre à Mary.\nTom isn't going to listen to me.\tTom ne va pas m'écouter.\nTom jumped off the diving board.\tTom a sauté du plongeoir.\nTom just wants to be left alone.\tTom veut juste qu'on le laisse seul.\nTom kept his opinion to himself.\tTom garda son opinion pour lui.\nTom kissed Mary on the forehead.\tTom déposa un baiser sur le front de Mary.\nTom knew Mary would arrive late.\tTom savait que Mary arriverait en retard.\nTom knew something wasn't right.\tTom savait que quelque chose n'allait pas.\nTom knew that he'd been tricked.\tTom savait qu'il s'était fait avoir.\nTom knows he's not going to win.\tTom sait qu'il ne gagnera pas.\nTom knows how to cook spaghetti.\tTom sait cuisiner les spaghettis.\nTom knows how to cook spaghetti.\tTom sait préparer les spaghettis.\nTom knows that I don't like him.\tTom sait que je ne l'aime pas.\nTom lacks confidence in himself.\tTom manque de confiance en lui.\nTom lives on the floor above me.\tTom habite au-dessus de chez moi.\nTom looked like a weight lifter.\tTom avait l'air d'un haltérophile.\nTom looked really uncomfortable.\tTom ne semblait pas du tout à l'aise.\nTom made the same mistake again.\tTom a récidivé.\nTom moved here three months ago.\tTom a emménagé ici il y a trois mois.\nTom must be aware of the danger.\tTom doit être conscient du danger.\nTom never gave in to temptation.\tTom n'a jamais cédé à la tentation.\nTom noticed several differences.\tTom remarqua plusieurs différences.\nTom often cries when he's drunk.\tTom pleure souvent quand il est ivre.\nTom pointed out Mary's mistakes.\tTom a souligné les erreurs de Mary.\nTom poured Mary a cup of coffee.\tTom a versé une tasse de café à Mary.\nTom prefers whole-grain cereals.\tTom préfère les céréales complètes.\nTom pressed the intercom button.\tTom appuya sur le bouton de l'interphone.\nTom pressed the intercom button.\tTom a appuyé sur le bouton de l'interphone.\nTom punched John in the stomach.\tTom a frappé John dans l'estomac.\nTom punched John in the stomach.\tTom a mis un coup de poing dans l'estomac à John.\nTom punched John in the stomach.\tTom frappa John dans l'estomac.\nTom put on one of John's shirts.\tTom a mis une chemise de John.\nTom really wants to lose weight.\tTom veut vraiment perdre du poids.\nTom refused to tell us anything.\tTom refusa de nous dire quoi que ce soit.\nTom refused to tell us anything.\tTom a refusé de nous dire quoi que ce soit.\nTom said he didn't drink coffee.\tTom dit qu'il ne buvait pas de café.\nTom said that he'd pay the bill.\tTom a dit qu'il paierait la facture.\nTom said you were good at chess.\tTom a dit que tu étais bon aux échecs.\nTom said you were good at chess.\tTom a dit que vous étiez bons aux échecs.\nTom saw something on the ground.\tTom vit quelque chose par terre.\nTom says he has nothing to hide.\tTom dit qu'il n'a rien à cacher.\nTom says that he hates to study.\tTom dit qu'il déteste étudier.\nTom should be back here by 2:30.\tTom devrait être de retour pour 2h30.\nTom should have told me earlier.\tTom aurait dû me le dire plus tôt.\nTom shouldn't have married Mary.\tTom n'aurait pas dû épouser Marie.\nTom shut the door and locked it.\tTom referma la porte et la verrouilla.\nTom speaks French very fluently.\tTom parle français avec beaucoup d'aisance.\nTom spent three weeks in Boston.\tTom passa trois semaines à Boston.\nTom spent three years in prison.\tTom passa trois ans en prison.\nTom still isn't quite convinced.\tTom n'est toujours pas très convaincu.\nTom still thinks Mary likes him.\tTom pense encore que Mary l'aime.\nTom still wants you to help him.\tTom veut toujours que tu l'aides.\nTom still wants you to help him.\tTom veut tout de même que vous l'aidiez.\nTom struggles with this concept.\tTom a du mal à comprendre ce concept.\nTom takes himself too seriously.\tTom se prend très au sérieux.\nTom thought he was going to die.\tTom pensait qu'il allait mourir.\nTom thought that Mary loved him.\tTom pensait que Marie l'aimait.\nTom told Mary he wasn't married.\tTom a dit à Mary qu'il n'était pas marié.\nTom told Mary to tell the truth.\tTom a dit à Mary de dire la vérité.\nTom told Mary what had happened.\tTom a dit à Mary ce qu'il s'était passé.\nTom told me about your concerns.\tTom m'a parlé de tes soucis.\nTom told me not to talk to Mary.\tTom m'a dit de ne pas parler à Mary.\nTom took a couple of steps back.\tTom a pris du recul.\nTom took a taxi to the hospital.\tTom a pris un taxi pour aller à l'hôpital.\nTom took a taxi to the hospital.\tTom alla à l'hôpital en taxi.\nTom waited for Mary to continue.\tTom attendit Marie pour continuer.\nTom wants to ask Mary something.\tTom veut demander quelque chose à Marie.\nTom wants to buy a Japanese car.\tTom veut acheter une voiture japonaise.\nTom wants to show you something.\tTom veut te montrer quelque chose.\nTom wants you to do him a favor.\tTom veut que vous lui fassiez une faveur.\nTom wants you to do him a favor.\tTom veut que tu lui fasses une faveur.\nTom was beginning to feel tired.\tTom commençait à se sentir fatigué.\nTom was killed in the explosion.\tTom a été tué dans l'explosion.\nTom was killed in the explosion.\tTom fut tué dans l'explosion.\nTom was my first real boyfriend.\tTom fut mon premier vrai petit ami.\nTom was only three minutes late.\tTom était en retard de trois minutes seulement.\nTom was sick in bed last Sunday.\tTom était malade au lit dimanche dernier.\nTom was stretched out on a sofa.\tTom était étendu sur un canapé.\nTom wasn't his usual self today.\tTom n'était pas dans son état normal aujourd’hui.\nTom wasn't scared of the police.\tTom n'était pas effrayé par la police.\nTom wasn't scared of the police.\tTom n'avait pas peur de la police.\nTom went to high school with me.\tTom est allé au lycée avec moi.\nTom will always be here for you.\tTom sera toujours là pour toi.\nTom will be arriving any moment.\tTom sera là dans d'ici peu.\nTom will be here any minute now.\tTom va arriver d'ici quelques minutes.\nTom will be in Boston next year.\tTom sera à Boston l'année prochaine.\nTom will know what we should do.\tTom saura ce que nous devrions faire.\nTom will never believe me again.\tTom ne me croira plus jamais.\nTom won't tell us what he knows.\tTom ne nous dira pas ce qu'il sait.\nTom would never do that to Mary.\tTom ne ferait jamais ça à Marie.\nTom's grandmother looks healthy.\tLa grand-mère de Tom a l'air d'être en bonne santé.\nTom's grandmother looks healthy.\tLa grand-mère de Tom semble être en bonne santé.\nTom, someone is here to see you.\tTom, quelqu'un est ici pour te voir.\nTourism generated many new jobs.\tLe tourisme génère de nombreux emplois nouveaux.\nTravel agencies' profits soared.\tLes profits des agences de voyages explosèrent.\nTry to get a good night's sleep.\tEssayez de passer une bonne nuit de sommeil !\nTry to get a good night's sleep.\tEssaie de passer une bonne nuit de sommeil !\nTry to see how far you can jump.\tEssaie de voir jusqu'où tu peux sauter.\nTurkey was stronger than Greece.\tLa Turquie a été plus forte que la Grèce.\nTurn on the rice cooker, please.\tAllume l'autocuiseur à riz, je te prie.\nTurn on the rice cooker, please.\tAllumez l'autocuiseur à riz, je vous prie.\nTurn right at the second corner.\tTourne à droite au second carrefour.\nTwelve divided by three is four.\tDouze divisé par trois donne quatre.\nTwo families live in that house.\tDeux familles vivent dans cette maison.\nTwo sheep were killed by a wolf.\tDeux moutons ont été tués par un loup.\nUnfortunately, she lives abroad.\tMalheureusement, elle réside à l'étranger.\nVery little is known about them.\tOn connaît très peu de choses à leur propos.\nVery little is known about them.\tIls sont mal connus.\nVladivostok is a city in Russia.\tVladivostok est une ville de Russie.\nWait till the light turns green.\tAttendez jusqu'à ce que le feu passe au vert.\nWait till the light turns green.\tAttends que le feu soit vert.\nWait, why am I telling you this?\tAttends ! Pourquoi est-ce que je suis en train de te dire ça ?\nWait, why am I telling you this?\tAttendez ! Pourquoi est-ce que je suis en train de vous dire ça ?\nWait, why am I telling you this?\tAttendez ! Pourquoi suis-je en train de vous dire ça ?\nWait, why am I telling you this?\tAttends ! Pourquoi suis-je en train de te dire ça ?\nWar is a crime against humanity.\tLa guerre est un crime contre l'humanité.\nWas this letter written by Mary?\tCette lettre a-t-elle été écrite par Mary ?\nWe advertise our products on TV.\tNous faisons la publicité de nos produits à la télévision.\nWe are anxious for their safety.\tNous sommes inquiets pour leur sécurité.\nWe are leaving Japan next month.\tNous quittons le Japon le mois prochain.\nWe are pretty much in agreement.\tJe suis assez d'accord avec vous.\nWe asked him what he was called.\tNous lui demandâmes comment il s'appelait.\nWe asked him what he was called.\tNous lui avons demandé comment il s'appelait.\nWe ate fresh fruit after dinner.\tNous mangeâmes des fruits frais après le déjeuner.\nWe ate fresh fruit after dinner.\tNous mangeâmes des fruits frais après le dîner.\nWe ate fresh fruit after dinner.\tNous avons mangé des fruits frais après le déjeuner.\nWe ate fresh fruit after dinner.\tNous avons mangé des fruits frais après le dîner.\nWe ate sandwiches for breakfast.\tNous avons mangé des sandwichs pour le petit-déjeuner.\nWe bought a new washing machine.\tNous avons acheté une nouvelle machine à laver.\nWe can depend on her to help us.\tNous pouvons nous fier à elle pour nous aider.\nWe can see his house over there.\tNous pouvons voir sa maison par là.\nWe can't get close to the enemy.\tNous ne pouvons approcher l'ennemi.\nWe can't see Mt. Fuji from here.\tNous ne pouvons pas voir le mont Fuji de là où nous sommes.\nWe can't tell anyone about this.\tNous ne pouvons en parler à quiconque.\nWe can't use cellphones in here.\tNous ne pouvons pas utiliser de téléphones cellulaires, là-dedans.\nWe decorated the room ourselves.\tNous décorâmes la pièce nous-mêmes.\nWe decorated the room ourselves.\tNous avons décoré la pièce nous-mêmes.\nWe didn't reach any conclusions.\tNous ne sommes parvenus à aucune conclusion.\nWe don't even know if it's true.\tOn ne sait même pas ci c'est vrai.\nWe don't even know if it's true.\tNous ne savons même pas si c'est vrai.\nWe don't get many visitors here.\tNous n'avons guère de visiteurs, ici.\nWe eat to live, not live to eat.\tNous mangeons pour vivre, nous ne vivons pas pour manger.\nWe gave blood to help the child.\tNous avons fait un don de sang pour aider l'enfant.\nWe had a lot of rain last month.\tOn a eu beaucoup de pluie le mois dernier.\nWe had a lot of rain last month.\tIl a beaucoup plu le mois dernier.\nWe had an earthquake last night.\tNous avons subi un tremblement de terre la nuit dernière.\nWe had fine weather on that day.\tIl faisait beau temps ce jour-là.\nWe have a cat. We all love cats.\tNous avons un chat. Nous aimons tous les chats.\nWe have an unusual relationship.\tNous avons une relation inhabituelle.\nWe have lunch at noon every day.\tNous déjeunons à midi tous les jours.\nWe have plenty of time to spare.\tNous disposons de plein de temps libre.\nWe have to deal with that first.\tNous devons nous occuper de cela d'abord.\nWe have to get something to eat.\tNous devons trouver quelque chose à manger.\nWe have to keep working on that.\tNous devons continuer de travailler cela.\nWe have to learn how to do that.\tNous devons apprendre à faire ça.\nWe have to make sure we do that.\tNous devons être certains que nous faisons ça.\nWe have to save him immediately.\tNous devons immédiatement le sauver.\nWe haven't caught the thief yet.\tNous n'avons pas encore attrapé le voleur.\nWe heard a noise in the bedroom.\tOn entendait un bruit dans la chambre.\nWe hit it off right off the bat.\tOn s'est bien entendu dès le départ.\nWe intended to start right away.\tOn avait l'intention de commencer de suite.\nWe just have to get out of here.\tIl nous faut juste sortir d'ici.\nWe just have to get out of here.\tIl nous suffit de sortir d'ici.\nWe look up to Tom as our leader.\tOn respecte Tom en tant que notre chef.\nWe look up to him as our leader.\tNous le respectons en tant que notre dirigeant.\nWe managed to get there on time.\tOn est parvenu à s'y rendre à temps.\nWe managed to get there on time.\tOn s'est débrouillé pour être là-bas à temps.\nWe managed to get there on time.\tOn s'est débrouillé pour être là-bas à l'heure.\nWe may as well keep it a secret.\tOn pourrait aussi le garder secret.\nWe met them at the youth hostel.\tNous les rencontrâmes à l'auberge de jeunesse.\nWe might need to sell our house.\tIl se pourrait qu'il nous faille vendre notre maison.\nWe must go to bed early tonight.\tNous devons nous coucher tôt ce soir.\nWe need that report by tomorrow.\tNous avons besoin de ce rapport pour demain.\nWe need this report by tomorrow.\tNous avons besoin de ce rapport pour demain.\nWe need to come to an agreement.\tNous devons arriver à un accord.\nWe need to discuss this further.\tNous devons en discuter de manière plus approfondie.\nWe need to do this report again.\tNous devons refaire ce rapport.\nWe need to make a slight detour.\tIl nous faut faire un léger détour.\nWe often talk about the weather.\tNous parlons souvent du temps.\nWe play football every Saturday.\tNous jouons au football chaque samedi.\nWe saw a castle in the distance.\tOn a aperçu un château au loin.\nWe saw the child get on the bus.\tNous vîmes l'enfant monter dans le bus.\nWe set up our tents before dark.\tNous avons monté nos tentes avant que la nuit tombe.\nWe should be proud of ourselves.\tNous devrions êtres fiers de nous.\nWe should be proud of ourselves.\tNous devrions êtres fiers de nous-mêmes.\nWe should be proud of ourselves.\tNous devrions êtres fières de nous.\nWe should be proud of ourselves.\tNous devrions êtres fières de nous-mêmes.\nWe should have departed earlier.\tNous aurions dû partir plus tôt.\nWe should have taken his advice.\tOn aurait dû suivre son conseil.\nWe should let sleeping dogs lie.\tIl faut laisser les chiens qui dorment tranquilles.\nWe should let sleeping dogs lie.\tOn devrait laisser les chiens qui dorment mentir.\nWe sometimes go out for a drive.\tNous sortons parfois faire un tour en voiture.\nWe stood at the door and waited.\tNous nous tenions à la porte et attendions.\nWe talk to each other every day.\tNous nous parlons tous les jours.\nWe took turns cleaning the room.\tNous nous sommes relayés pour nettoyer la chambre.\nWe took turns cleaning the room.\tNous nettoyions la chambre à tour de rôle.\nWe use a lot of water every day.\tNous utilisons quotidiennement beaucoup d'eau.\nWe want new ideas, not old ones.\tNous voulons de nouvelles idées, pas des vieilles.\nWe want to know where you stand.\tNous voulons savoir où vous restez.\nWe want to make a simple change.\tNous voulons faire un simple changement.\nWe want to make everybody happy.\tNous voulons rendre tout le monde heureux.\nWe want to thank you for coming.\tNous voulons te remercier d'être venu.\nWe wanted to wish you good luck.\tNous voulions vous souhaiter bonne chance.\nWe went back to the living room.\tNous sommes revenus dans le salon.\nWe went for a walk on the beach.\tNous allâmes faire une promenade sur la plage.\nWe went for a walk on the beach.\tNous sommes allés faire une promenade sur la plage.\nWe went for a walk on the beach.\tNous sommes allées faire une promenade sur la plage.\nWe went to high school together.\tNous allions au lycée ensemble.\nWe went to the mountains to ski.\tNous sommes allés à la montagne pour faire du ski.\nWe went to the mountains to ski.\tNous sommes allés à la montagne pour skier.\nWe went to the museum last week.\tNous avons visité le musée la semaine dernière.\nWe went to the same high school.\tNous sommes allés au même lycée.\nWe were expecting a lot of snow.\tNous nous attendions à beaucoup de neige.\nWe work every day except Sunday.\tNous travaillons tous les jours sauf le dimanche.\nWe'll begin rehearsals tomorrow.\tNous commencerons demain les répétitions.\nWe'll go to church this evening.\tCe soir nous allons à l'église.\nWe'll have to do this ourselves.\tNous allons devoir faire ceci nous-mêmes.\nWe'll never go back there again.\tNous ne retournerons plus là-bas.\nWe'll probably all be dead soon.\tNous serons bientôt probablement tous morts.\nWe'll talk again in the morning.\tNous reparlerons dans la matinée.\nWe're competitors, not partners.\tNous sommes concurrents, pas partenaires.\nWe're competitors, not partners.\tNous sommes concurrents, non partenaires.\nWe're competitors, not partners.\tNous sommes concurrentes, pas partenaires.\nWe're concerned for your safety.\tNous nous faisons du souci pour votre sécurité.\nWe're concerned for your safety.\tNous nous soucions de ta sécurité.\nWe're going to have so much fun.\tNous allons beaucoup nous amuser.\nWe're just getting ready to eat.\tNous nous apprêtons justement à manger.\nWe're no longer working for Tom.\tNous ne travaillons plus pour Tom.\nWe're not trying to make amends.\tNous ne sommes pas en train de nous repentir.\nWe're on a tight schedule today.\tNous avons aujourd'hui un emploi du temps chargé.\nWe're working as fast as we can.\tNous travaillons aussi vite que nous pouvons.\nWe're working as fast as we can.\tNous travaillons aussi vite que nous le pouvons.\nWe've already talked about this.\tNous en avons déjà parlé.\nWe've been married for 30 years.\tNous sommes mariés depuis 30 ans.\nWe've looked at a lot of things.\tNous avons regardé beaucoup de choses.\nWe've lost three games in a row.\tNous avons perdu trois jeux dans un rang.\nWe've used almost all the money.\tNous avons utilisé presque tout l'argent.\nWell, aren't you glad to see me?\tAlors, t'es pas content de me voir ?\nWell, aren't you glad to see me?\tEh bien, n'êtes-vous pas heureux de me voir ?\nWhat are you doing in my office?\tQue fais-tu dans mon bureau ?\nWhat are you doing in my office?\tQue faites-vous dans mon bureau ?\nWhat are you doing to stop this?\tQue faites-vous pour l'arrêter ?\nWhat are you doing to stop this?\tQue faites-vous pour arrêter cela ?\nWhat are you learning at school?\tQu'apprends-tu à l'école ?\nWhat are you punishing them for?\tPour quoi les punissez-vous ?\nWhat are you punishing them for?\tPourquoi les punis-tu ?\nWhat are your plans for tonight?\tQu'as-tu prévu pour ce soir ?\nWhat bothers me is his attitude.\tCe qui me préoccupe, c'est son attitude.\nWhat can be the meaning of this?\tQuelle peut en être la signification ?\nWhat can be the meaning of this?\tQuelle peut être la signification de ceci ?\nWhat color did Tom dye his hair?\tDe quelle couleur Tom s'est-il teint les cheveux ?\nWhat could be the meaning of it?\tQuelle pourrait en être la signification ?\nWhat could be the meaning of it?\tQue pourrait en être la signification ?\nWhat department do you work for?\tDans quel département travaillez-vous ?\nWhat department do you work for?\tPour quel département travailles-tu ?\nWhat did you do at school today?\tQu'as-tu fait à l'école aujourd'hui ?\nWhat did you do at school today?\tQu'avez-vous fait à l'école aujourd'hui ?\nWhat did you do to get grounded?\tQu'as-tu fait pour avoir une punition ?\nWhat did you do with my luggage?\tQu'as-tu fait de mes bagages ?\nWhat did you do with the camera?\tQu'avez-vous fait de l'appareil photo ?\nWhat did you think of the party?\tQu’as-tu pensé de la fête ?\nWhat do they know that we don't?\tQue savent-ils que nous ignorons ?\nWhat do they want to talk about?\tDe quoi veulent-ils parler ?\nWhat do they want to talk about?\tDe quoi veulent-elles parler ?\nWhat do you base your theory on?\tSur quoi appuyez-vous votre théorie?\nWhat do you do in the afternoon?\tQue fais-tu l'après-midi ?\nWhat do you do in the afternoon?\tQue faites-vous l'après-midi ?\nWhat do you do to stay in shape?\tQu'est-ce que tu fais pour rester en forme ?\nWhat do you know about all this?\tQue savez-vous de tout ceci ?\nWhat do you know about all this?\tQue sais-tu de tout ceci ?\nWhat do you think is down there?\tQue penses-tu qu'il y a en bas ?\nWhat do you think is down there?\tQue pensez-vous qu'il y ait là-bas ?\nWhat do you think is in the box?\tQue penses-tu qu'il y ait dans la boite ?\nWhat do you think of my costume?\tQue pensez-vous de mon costume ?\nWhat do you think they're after?\tAprès quoi en ont-ils, selon vous ?\nWhat do you think they're after?\tAprès quoi en ont-elles, selon toi ?\nWhat do you want me to tell Tom?\tQue veux-tu que je dise à Tom ?\nWhat do you want to do about it?\tQue voulez-vous qu'on y fasse ?\nWhat do you want to do about it?\tQue veux-tu qu'on y fasse ?\nWhat do you want to do tomorrow?\tQue voulez-vous faire demain ?\nWhat do you want to do tomorrow?\tQue veux-tu faire demain ?\nWhat does this look like to you?\tComment cela te semble-t-il ?\nWhat else have you got going on?\tQu'avez-vous d'autre en train ?\nWhat else have you got going on?\tQu'as-tu d'autre en train ?\nWhat else have you got going on?\tQu'avez-vous d'autre sur le feu ?\nWhat else have you got going on?\tQu'as-tu d'autre sur le feu ?\nWhat else would you like to eat?\tQu'aimeriez-vous manger d'autre ?\nWhat else would you like to eat?\tQu'aimerais-tu manger d'autre ?\nWhat exactly is your book about?\tEt ton livre, de quoi il parle ?\nWhat fruit do you like the best?\tQuel fruit aimes-tu le plus ?\nWhat fruit do you like the best?\tQuel fruit aimez-vous le plus ?\nWhat gives you the right to ask?\tQu'est-ce qui te donne le droit de demander ?\nWhat gives you the right to ask?\tQu'est-ce qui vous donne le droit de demander ?\nWhat happened to all that money?\tQu'est-il advenu de tout cet argent ?\nWhat happened to you last night?\tQu'est-ce qui t'est arrivé hier soir ?\nWhat happened to your other car?\tQu'est-il arrivé à votre autre voiture?\nWhat have you been up to lately?\tQu'as-tu fait ces derniers temps ?\nWhat in the world are you doing?\tMais qu'êtes-vous en train de faire, Bon Dieu ?\nWhat is the exchange rate today?\tQuel est le taux de change aujourd'hui ?\nWhat is the price of this watch?\tQuel est le prix de cette montre ?\nWhat is the reason for that lie?\tQuelle est la raison de ce mensonge ?\nWhat kind of shampoo do you use?\tQuel type de shampoing utilises-tu ?\nWhat kinds of beers do you have?\tQuelles sortes de bière avez-vous ?\nWhat other movies did you watch?\tQuels autres films as-tu regardé ?\nWhat shall I do with her letter?\tQue dois-je faire de sa lettre ?\nWhat should I tell the kids now?\tQue dois-je dire aux enfants maintenant?\nWhat time are you going on duty?\tÀ quelle heure prends-tu ton service ?\nWhat time are you going on duty?\tÀ quelle heure prenez-vous votre service ?\nWhat time do you start check-in?\tÀ partir de quelle heure peut-on s'enregistrer ?\nWhat time do you usually get up?\tÀ quelle heure te lèves-tu d'habitude ?\nWhat time do you usually get up?\tÀ quelle heure vous levez-vous d'habitude ?\nWhat time does your plane leave?\tÀ quelle heure part ton avion ?\nWhat time does your plane leave?\tÀ quelle heure part votre avion ?\nWhat time will dinner be served?\tÀ quelle heure le diner sera-t-il servi ?\nWhat were you doing before this?\tQue faisiez-vous avant ceci ?\nWhat were you doing before this?\tQue faisais-tu avant ça ?\nWhat were you doing that moment?\tQue faisiez-vous au juste à ce moment-là ?\nWhat were you two talking about?\tDe quoi étiez-vous en train de parler tous les deux ?\nWhat were you two talking about?\tDe quoi étiez-vous en train de parler toutes les deux ?\nWhat would life be without hope?\tQue serait la vie sans espoir ?\nWhat would you like for dessert?\tQue voudrais-tu pour dessert ?\nWhat would you like for dessert?\tQue voudrais-tu comme dessert ?\nWhat would you like for dessert?\tQue voudriez-vous pour dessert ?\nWhat would you like for dessert?\tQue voudriez-vous comme dessert ?\nWhat would you like to do today?\tQu'aimerais-tu faire aujourd'hui ?\nWhat would you like to do today?\tQu'aimeriez-vous faire aujourd'hui ?\nWhat would you take for the lot?\tQue voudriez-vous pour le tout ?\nWhat's all the excitement about?\tQu'est-ce que c'est que ce vacarme ?\nWhat's all the excitement about?\tPourquoi tant d'enthousiasme ?\nWhat's life like where you live?\tÀ quoi ressemble la vie où tu vis ?\nWhat's life like where you live?\tÀ quoi ressemble la vie où vous vivez ?\nWhat's the matter? Just tell me.\tQue se passe-t-il ? Dis-le-moi !\nWhat's the matter? Just tell me.\tQue se passe-t-il ? Dites-le-moi !\nWhat's the purpose of your trip?\tQuel est le but de votre voyage ?\nWhat's the purpose of your trip?\tQuel est l'objet de votre voyage ?\nWhat's the purpose of your trip?\tQuel est l'objet de ton voyage ?\nWhat's this commotion all about?\tÀ quel sujet est toute cette agitation ?\nWhat's your favorite board game?\tQuel est ton jeu de plateau préféré ?\nWhat's your favorite board game?\tQuel est votre jeu de plateau préféré ?\nWhat's your favorite hair style?\tQuelle est ta coiffure préférée ?\nWhat's your favorite toothpaste?\tQuel est ton dentifrice préféré ?\nWhat's your favorite toothpaste?\tQuel est votre dentifrice préféré ?\nWhat's your schedule like today?\tComment est ton emploi du temps, aujourd'hui ?\nWhatever happened to your pride?\tQu'est-il advenu de votre fierté ?\nWhatever happened to your pride?\tQu'est-il advenu de ta fierté ?\nWhen did the robbery take place?\tQuand le vol a-t-il eu lieu ?\nWhen did the wedding take place?\tQuand le mariage a-t-il eu lieu ?\nWhen did you find out the truth?\tQuand as-tu découvert la vérité?\nWhen did you visit your friends?\tQuand avez-vous rendu visite à vos amis ?\nWhen did you visit your friends?\tQuand avez-vous rendu visite à vos amies ?\nWhen did you visit your friends?\tQuand as-tu rendu visite à tes amis ?\nWhen did you visit your friends?\tQuand as-tu rendu visite à tes amies ?\nWhen do you think he'll be back?\tQuand pensez-vous qu'il va revenir ?\nWhen do you think he'll be back?\tQuand penses-tu qu'il sera de retour ?\nWhen does the performance begin?\tQuand la représentation commence-t-elle ?\nWhere are you going on vacation?\tOù vous rendez-vous en vacances ?\nWhere did you get all this from?\tOù as-tu pêché tout ça ?\nWhere did you get all this from?\tOù avez-vous pêché tout ça ?\nWhere did you get your hair cut?\tOù vous êtes-vous fait couper les cheveux ?\nWhere did you get your hair cut?\tOù t'es-tu fait couper les cheveux ?\nWhere do you get your hair done?\tOù vous faites-vous coiffer ?\nWhere do you get your hair done?\tOù te fais-tu coiffer ?\nWhere do you think we came from?\tD'où pensiez-vous que nous étions ?\nWhere do you think we came from?\tD'où pensais-tu que nous étions ?\nWhere do you think we came from?\tD'où penses-tu que nous sommes venus ?\nWhere do you think we came from?\tD'où penses-tu que nous sommes venues ?\nWhere do you think we came from?\tD'où pensez-vous que nous sommes venus ?\nWhere do you think we came from?\tD'où pensez-vous que nous sommes venues ?\nWhere do you think you're going?\tOù crois-tu que tu vas ?\nWhere do you usually go fishing?\tOù vas-tu habituellement pêcher ?\nWhere is the Australian embassy?\tOù est l’ambassade australienne ?\nWhere is the admission's office?\tOù se trouve le bureau des admissions ?\nWhere on earth did you meet him?\tOù diable l'as-tu rencontré ?\nWhere will you have lunch today?\tOù allez-vous déjeuner aujourd'hui ?\nWhere will you have lunch today?\tOù déjeunerez-vous aujourd'hui ?\nWhere would you like to go next?\tOù souhaiterais-tu aller ensuite ?\nWhere would you like to go next?\tOù souhaiteriez-vous aller ensuite ?\nWhere would you like to go next?\tOù aimeriez-vous aller ensuite ?\nWhere would you like to go next?\tOù aimerais-tu aller ensuite ?\nWhere's the nearest supermarket?\tOù est le supermarché le plus proche ?\nWhere've you been all afternoon?\tOù avez-vous été toute l'après-midi ?\nWhere've you been all afternoon?\tOù as-tu été toute l'après-midi ?\nWhich is the heavier of the two?\tLequel est le plus lourd des deux ?\nWhich of these rackets is yours?\tLaquelle de ces raquettes est la tienne ?\nWhich of these rackets is yours?\tLaquelle de ces raquettes est la vôtre ?\nWhich one of you is the psychic?\tLequel d'entre vous est le télépathe ?\nWho cares when she gets married?\tQui se soucie de quand elle va se marier ?\nWho could have spread that news?\tQui aurait pu répandre cette nouvelle ?\nWho do you think she lives with?\tAvec qui crois-tu qu'elle vit ?\nWho picked you for this mission?\tQui vous a choisi pour cette mission ?\nWho picked you for this mission?\tQui t'a choisi pour cette mission ?\nWho wants another piece of cake?\tQui veut une autre part de gâteau ?\nWho was this picture painted by?\tQui a peint ce tableau ?\nWho was this picture painted by?\tPar qui ce tableau a-t-il été peint ?\nWho was this picture painted by?\tQui a peint ce tableau ?\nWho's going to pay for all this?\tQui va payer pour tout ceci ?\nWhoever guesses the number wins.\tQuiconque devine le nombre, gagne.\nWhoever told you that is a liar.\tQuiconque vous a dit cela est un menteur.\nWhoever told you that is a liar.\tQuiconque t'a dit cela est un menteur.\nWhy are you so hard on yourself?\tPourquoi es-tu si dur avec toi-même ?\nWhy are you so hard on yourself?\tPourquoi êtes-vous si dure avec vous-même ?\nWhy are you two always fighting?\tPourquoi vous disputez-vous toujours, tous les deux ?\nWhy are you two always fighting?\tPourquoi vous disputez-vous toujours, toutes les deux ?\nWhy are you two always fighting?\tPourquoi vous disputez-vous toujours, vous deux ?\nWhy couldn't you come yesterday?\tPourquoi n'avez-vous pas pu venir hier ?\nWhy did God create the universe?\tPourquoi Dieu a-t-il créé l'univers ?\nWhy did you make such a mistake?\tPourquoi as-tu commis une telle erreur ?\nWhy did you make such a mistake?\tPourquoi avez-vous commis une telle erreur ?\nWhy did you paint the bench red?\tPourquoi as-tu peint le banc en rouge ?\nWhy did you stay home yesterday?\tPourquoi es-tu resté chez toi, hier ?\nWhy did you turn down his offer?\tPourquoi as-tu refusé sa proposition  ?\nWhy didn't the police notify us?\tPourquoi la police ne nous en a-t-elle pas informés ?\nWhy didn't the police notify us?\tPourquoi la police ne nous en a-t-elle pas informées ?\nWhy didn't you follow my advice?\tPourquoi n'as-tu pas suivi mon conseil ?\nWhy didn't you say it like that?\tPourquoi ne l'avez-vous pas dit ainsi ?\nWhy didn't you say it like that?\tPourquoi ne l'as-tu pas dit ainsi ?\nWhy do you always do that to me?\tPourquoi me faites-vous ça ?\nWhy do you always do that to me?\tPourquoi me fais-tu ça ?\nWhy do you always wear that hat?\tPourquoi portez-vous toujours ce chapeau ?\nWhy do you always wear that hat?\tPourquoi portes-tu toujours ce chapeau ?\nWhy do you have to be like that?\tPourquoi te faut-il être ainsi ?\nWhy do you have to be like that?\tPourquoi vous faut-il être ainsi ?\nWhy do you want such an old car?\tPourquoi veux-tu une telle vieille voiture ?\nWhy do you want such an old car?\tPourquoi voulez-vous une telle vieille voiture ?\nWhy do you want to learn French?\tPourquoi veux-tu apprendre le français ?\nWhy do you want to learn French?\tPourquoi voulez-vous apprendre le français ?\nWhy do you want to study abroad?\tPourquoi voulez-vous étudier à l'étranger ?\nWhy do you want to study abroad?\tPourquoi veux-tu étudier à l'étranger ?\nWhy does catnip drive cats nuts?\tPourquoi l'herbe à chats rend-elle les chats fous ?\nWhy does catnip make cats loopy?\tPourquoi l'herbe à chats rend-elle les chats fous ?\nWhy does nobody eat my potatoes?\tPourquoi personne ne mange mes pommes de terre ?\nWhy doesn't anyone listen to me?\tPourquoi personne ne m'écoute-t-il ?\nWhy don't we drop by to see her?\tPourquoi ne passons-nous pas la voir ?\nWhy don't we go and see a movie?\tPourquoi n'allons-nous pas voir un film ?\nWhy don't we go and see a movie?\tN'irions-nous pas au cinéma ?\nWhy don't you give tennis a try?\tPourquoi n'essayez-vous pas le tennis ?\nWhy don't you have a girlfriend?\tPourquoi n'as-tu pas de petite amie ?\nWhy don't you have a girlfriend?\tPourquoi n'as-tu pas de petite copine ?\nWhy don't you have a girlfriend?\tPourquoi n'as-tu pas de nana ?\nWhy don't you have a girlfriend?\tPourquoi n'avez-vous pas de petite amie ?\nWhy don't you have a girlfriend?\tPourquoi n'avez-vous pas de petite copine ?\nWhy don't you have a girlfriend?\tPourquoi n'avez-vous pas de nana ?\nWhy don't you run for president?\tPourquoi ne te présentes-tu pas comme président ?\nWhy don't you run for president?\tPourquoi ne vous présentez-vous pas comme président ?\nWhy don't you sit here a moment?\tPourquoi ne t'assieds-tu pas ici, un moment ?\nWhy don't you sit here a moment?\tPourquoi ne vous asseyez-vous pas ici, un moment ?\nWhy is it that she looks so sad?\tPourquoi a-t-elle l'air si triste ?\nWhy is it that she looks so sad?\tComment se fait-il qu'elle ait l'air si triste ?\nWhy not try that delicious wine?\tPourquoi ne pas essayer ce vin délicieux ?\nWild animals live in the forest.\tDes animaux sauvages vivent dans la forêt.\nWill you explain the rule to me?\tM'expliqueras-tu la règle ?\nWill you help me clean the room?\tM'aideras-tu à nettoyer la pièce ?\nWill you help me clean the room?\tM'aiderez-vous à nettoyer la pièce ?\nWill you please show me the way?\tMe montreras-tu le chemin, s'il te plait ?\nWill you please show me the way?\tVeux-tu me montrer le chemin, je te prie ?\nWill you please show me the way?\tMe montrerez-vous le chemin, s'il vous plait ?\nWill you please show me the way?\tVoulez-vous me montrer le chemin, je vous prie ?\nWill you sell your house to him?\tLui vendras-tu ta maison ?\nWill you sell your house to him?\tLui vendrez-vous votre maison ?\nWill you turn on the television?\tPeux-tu me faire le plaisir d'allumer la télé ?\nWill you turn on the television?\tPeux-tu allumer la télévision ?\nWipe your feet before coming in.\tEssuyez-vous les pieds avant d'entrer.\nWipe your feet before coming in.\tEssuie-toi les pieds avant d'entrer.\nWithout your help, I would fail.\tSans ton aide, j'échouerais.\nWon't you have some tea with me?\tVoudras-tu prendre un thé avec moi ?\nWords cannot convey my feelings.\tLes mots ne peuvent exprimer mes sentiments.\nWords cannot convey my feelings.\tJe ne peux exprimer ce que je ressens avec des mots.\nWould anyone else like to speak?\tQuiconque d'autre aimerait-il parler ?\nWould you care for more cookies?\tVoudriez-vous davantage de biscuits ?\nWould you check the oil, please?\tVeuillez contrôler l'huile, je vous prie.\nWould you like a glass of water?\tVeux-tu un verre d'eau ?\nWould you like me to explain it?\tSouhaitez-vous que je vous l'explique ?\nWould you like something easier?\tVoudriez-vous quelque chose de plus facile ?\nWould you like something easier?\tVoudrais-tu quelque chose de plus facile ?\nWould you like to dance with me?\tVoudrais-tu danser avec moi ?\nWould you like to eat something?\tVeux-tu manger quelque chose ?\nWould you like to eat something?\tVoulez-vous manger quelque chose ?\nWould you like to eat something?\tVeux-tu manger un bout ?\nWould you like to eat something?\tVeux-tu manger un morceau ?\nWould you like to give it a try?\tAimerais-tu l'essayer ?\nWould you like to give it a try?\tAimeriez-vous l'essayer ?\nWould you like to go for a walk?\tAimeriez-vous faire une promenade ?\nWould you like to go for a walk?\tCela vous chanterait-il de faire une promenade ?\nWould you like to go for a walk?\tAimerais-tu aller en promenade ?\nWould you like to go for a walk?\tAimerais-tu partir en promenade ?\nWould you like to have some tea?\tVoudriez-vous un peu de thé ?\nWould you like to have some tea?\tVoudrais-tu un peu de thé ?\nWould you like to join our team?\tVoudrais-tu rejoindre notre équipe ?\nWould you like to join our team?\tVoudriez-vous vous joindre à notre équipe ?\nWould you like to see your room?\tVoudriez-vous voir votre chambre ?\nWould you like to see your room?\tVoudrais-tu voir ta chambre ?\nWould you like to take a recess?\tVoudrais-tu prendre des congés ?\nWould you like to take a recess?\tVoudriez-vous prendre des congés ?\nWould you like to take a recess?\tVoudrais-tu prendre un congé ?\nWould you like to take a recess?\tVoudriez-vous prendre un congé ?\nWould you like to travel abroad?\tAimeriez-vous voyager à l'étranger ?\nWould you like to travel abroad?\tAimerais-tu voyager à l'étranger ?\nWould you mind closing the door?\tPourrais-tu refermer la porte ?\nWould you mind if I have a look?\tVerriez-vous un inconvénient à ce que je jette un œil ?\nWould you mind if I have a look?\tVerrais-tu un inconvénient à ce que je jette un œil ?\nWould you mind paying this time?\tCela vous dérangerait-il de payer cette fois ?\nWould you mind paying this time?\tCela te dérangerait-il de payer cette fois ?\nWould you move your car, please?\tPourriez-vous déplacer votre voiture, s'il vous plaît ?\nWould you please turn on the TV?\tPeux-tu me faire le plaisir d'allumer la télé ?\nWould you teach me how to dance?\tPourrais-tu m'apprendre à danser ?\nWould you work for minimum wage?\tTravaillerais-tu au SMIC ?\nWould you work for minimum wage?\tTravailleriez-vous au SMIC ?\nYesterday a truck hit this wall.\tHier un camion a percuté le mur.\nYesterday, he told me the truth.\tIl m'a dit la vérité hier.\nYou always take things too easy.\tTu prends les choses avec trop de désinvolture.\nYou are a good cook, aren't you?\tVous êtes bon cuisinier, n'est-ce pas ?\nYou are a good cook, aren't you?\tTu es bon cuisinier, non ?\nYou are a good cook, aren't you?\tTu es bonne cuisinière, n'est-ce pas ?\nYou are a good cook, aren't you?\tVous êtes bonne cuisinière, non ?\nYou are always as busy as a bee.\tTu es toujours aussi affairé qu'une abeille.\nYou are always doubting my word.\tTu doutes toujours de ma parole.\nYou are old enough to know this.\tTu es suffisamment vieux pour savoir ça.\nYou are twice as strong as I am.\tTu es deux fois plus fort que moi.\nYou are twice as strong as I am.\tTu es deux fois plus forte que moi.\nYou are twice as strong as I am.\tVous êtes deux fois plus fort que moi.\nYou are twice as strong as I am.\tVous êtes deux fois plus forte que moi.\nYou are twice as strong as I am.\tVous êtes deux fois plus forts que moi.\nYou are twice as strong as I am.\tVous êtes deux fois plus fortes que moi.\nYou are very attractive in blue.\tLe bleu vous sied superbement.\nYou are very attractive in blue.\tLe bleu vous va très bien.\nYou are very attractive in blue.\tVous êtes très jolie en bleu.\nYou are very early this morning.\tVous êtes là de bonne heure ce matin !\nYou came at just the right time.\tTu es venu juste au bon moment.\nYou came at just the right time.\tTu es venue juste au bon moment.\nYou came at just the right time.\tVous êtes venu juste au bon moment.\nYou came at just the right time.\tVous êtes venue juste au bon moment.\nYou came at just the right time.\tVous êtes venus juste au bon moment.\nYou came at just the right time.\tVous êtes venues juste au bon moment.\nYou can do whatever you want to.\tTu peux faire ce qui te chante.\nYou can do whatever you want to.\tVous pouvez faire ce qui vous chante.\nYou can eat as much as you want.\tTu peux manger autant que tu veux.\nYou can go or stay, as you wish.\tTu peux partir ou rester, comme tu le souhaites.\nYou can only smoke on the patio.\tVous pouvez fumer seulement en terrasse.\nYou can rent a boat by the hour.\tOn loue les bateaux à l'heure.\nYou can rent a boat by the hour.\tVous pouvez louer un bateau à l'heure.\nYou can run, but you can't hide.\tTu peux courir, mais tu ne peux pas te cacher.\nYou can run, but you can't hide.\tVous pouvez courir, mais vous ne pouvez pas vous cacher.\nYou can't be two places at once.\tOn ne peut pas être à deux endroits au même moment.\nYou can't break the appointment.\tTu ne peux pas rompre le rendez-vous.\nYou can't do two things at once.\tVous ne pouvez pas faire deux choses à la fois.\nYou can't do two things at once.\tTu ne peux pas faire deux choses à la fois.\nYou can't do two things at once.\tOn ne peut pas faire deux choses en même temps.\nYou can't do two things at once.\tIl n'est pas possible de faire deux choses à la fois.\nYou can't have fun all the time.\tTu ne peux pas t'amuser sans cesse.\nYou can't just change your mind.\tTu ne peux pas juste changer d'avis.\nYou can't just change your mind.\tVous ne pouvez pas juste changer d'avis.\nYou can't just sit here all day.\tTu ne peux pas simplement être assis là toute la journée.\nYou can't pick who you fall for.\tOn ne choisit pas de qui on tombe amoureux.\nYou could come and live with me.\tTu pourrais venir vivre avec moi.\nYou could come and live with me.\tTu pouvais venir vivre avec moi.\nYou could get arrested for that.\tLa police pourrait t'arrêter pour cela.\nYou didn't need to tell me that.\tVous n'aviez pas besoin de me dire cela.\nYou didn't need to tell me that.\tTu n'avais pas besoin de me dire ça.\nYou do your thing, I'll do mine.\tTu fais ton truc, je ferai le mien.\nYou don't have to be so nervous.\tVous n'avez pas besoin d'être si anxieux.\nYou don't have to come tomorrow.\tVous n'avez pas besoin de venir demain.\nYou don't have to tell me twice.\tVous n'avez pas besoin de me le dire deux fois.\nYou don't have to tell me twice.\tTu n'as pas besoin de me le dire deux fois.\nYou don't look very comfortable.\tVous n'avez pas l'air très à l'aise.\nYou don't look very comfortable.\tTu n'as pas l'air très à l'aise.\nYou don't need to come so early.\tIl ne t'est pas nécessaire de venir si tôt.\nYou don't need to come so early.\tIl ne vous est pas nécessaire de venir si tôt.\nYou don't need to worry anymore.\tTu n'a plus besoin de t'en faire.\nYou don't need to worry anymore.\tVous n'avez plus besoin de vous en faire.\nYou don't sound very optimistic.\tÀ vous entendre, vous n'avez pas l'air très optimiste.\nYou don't sound very optimistic.\tÀ vous entendre, vous n'avez pas l'air très optimistes.\nYou don't sound very optimistic.\tÀ t'entendre, tu n'as pas l'air très optimiste.\nYou don't speak English, do you?\tVous ne pouvez pas parler anglais, n'est-ce pas ?\nYou don't understand women, Tom.\tTu ne comprends pas les femmes, Tom.\nYou don't understand women, Tom.\tVous ne comprenez pas les femmes, Tom.\nYou found something they didn't.\tVous avez trouvé quelque chose que eux n'ont pas trouvé.\nYou found something they didn't.\tVous avez trouvé quelque chose qu'elles n'ont pas trouvé.\nYou found something they didn't.\tTu as trouvé quelque chose que eux n'ont pas trouvé.\nYou found something they didn't.\tTu as trouvé quelque chose qu'elles n'ont pas trouvé.\nYou had better do what they say.\tTu ferais mieux de faire ce qu'ils disent.\nYou had better not eat too much.\tVous feriez mieux de ne pas manger trop.\nYou have gone too far this time.\tTu es allé trop loin, cette fois.\nYou have gone too far this time.\tTu es allée trop loin, cette fois.\nYou have gone too far this time.\tVous êtes allé trop loin, cette fois.\nYou have gone too far this time.\tVous êtes allée trop loin, cette fois.\nYou have gone too far this time.\tVous êtes allés trop loin, cette fois.\nYou have gone too far this time.\tVous êtes allées trop loin, cette fois.\nYou have lovely eyes, don't you?\tVous avez des yeux adorables, n'est-ce pas ?\nYou have to be over 18 to drive.\tTu dois avoir plus de dix-huit ans pour conduire.\nYou have to believe in yourself.\tTu dois croire en toi.\nYou have to believe in yourself.\tVous devez croire en vous.\nYou have to protect your family.\tTu dois protéger ta famille.\nYou know quite a lot about Sumo.\tTu en sais beaucoup sur le sumo.\nYou know what I'm talking about.\tVous savez de quoi je parle.\nYou know what I'm talking about.\tTu sais de quoi je parle.\nYou know where the problem lies.\tTu sais où se trouve le problème.\nYou know where the problem lies.\tTu sais où réside le problème.\nYou look gorgeous in that dress.\tVous avez l'air superbe dans cette robe.\nYou look gorgeous in that dress.\tTu as l'air superbe dans cette robe.\nYou may invite whoever you like.\tTu peux inviter qui tu veux.\nYou might be interested in this.\tIl se pourrait que tu sois intéressé par ceci.\nYou might be interested in this.\tIl se pourrait que tu sois intéressée par ceci.\nYou might be interested in this.\tIl se pourrait que vous soyez intéressé par ceci.\nYou might be interested in this.\tIl se pourrait que vous soyez intéressés par ceci.\nYou might be interested in this.\tIl se pourrait que vous soyez intéressées par ceci.\nYou might be interested in this.\tIl se pourrait que vous soyez intéressée par ceci.\nYou must answer these questions.\tTu dois répondre à ces questions.\nYou must not be late for school.\tTu ne dois pas être en retard à l'école.\nYou must obey the traffic rules.\tTu dois obéir aux règles de circulation.\nYou must obey the traffic rules.\tVous devez vous conformer aux règles de circulation.\nYou must obey the traffic rules.\tIl faut obéir aux règles de circulation.\nYou must return the book to him.\tC'est à lui que tu dois rendre ce livre.\nYou must teach me what you know.\tIl faut que vous m'enseigniez ce que vous savez.\nYou must teach me what you know.\tIl faut que tu m'enseignes ce que tu sais.\nYou must teach me what you know.\tTu dois m'enseigner ce que tu sais.\nYou must teach me what you know.\tVous devez m'enseigner ce que vous savez.\nYou need not have come so early.\tTu n'étais pas obligé de venir si tôt.\nYou need not have come so early.\tVous n'aviez pas besoin de venir aussi tôt.\nYou need to respect the elderly.\tOn doit respecter les personnes âgées.\nYou ought not to have done that.\tTu n'aurais pas dû faire cela.\nYou really didn't know, did you?\tTu ne savais vraiment pas, n'est-ce pas ?\nYou really didn't know, did you?\tVous ne saviez vraiment pas, n'est-ce pas ?\nYou really don't get it, do you?\tVous ne pigez vraiment pas, hein ?\nYou really don't get it, do you?\tTu ne piges vraiment pas, hein ?\nYou really should buy a new car.\tVous devriez vraiment acheter une nouvelle voiture.\nYou really should buy a new car.\tTu devrais vraiment acheter une nouvelle voiture.\nYou said there was an emergency.\tVous avez dit qu'il y avait urgence.\nYou said there was an emergency.\tTu as dit qu'il y avait urgence.\nYou should be proud of yourself.\tVous devriez être fier de vous.\nYou should be proud of yourself.\tVous devriez être fière de vous.\nYou should conform to the rules.\tTu devrais te conformer aux règles.\nYou should conform to the rules.\tVous devriez vous conformer aux règles.\nYou should follow Tom's example.\tTu devrais suivre l'exemple de Tom.\nYou should follow Tom's example.\tVous devriez suivre l'exemple de Tom.\nYou should have done it with us.\tTu aurais dû le faire avec nous.\nYou should have done it with us.\tVous auriez dû le faire avec nous.\nYou should keep your mouth shut.\tTu ferais mieux de te taire.\nYou should listen to his advice.\tTu devrais écouter son conseil.\nYou should listen to his advice.\tVous devriez écouter son conseil.\nYou should lower your standards.\tTu devrais abaisser tes prétentions.\nYou should lower your standards.\tVous devriez abaisser vos prétentions.\nYou should study English harder.\tTu devrais étudier l'anglais plus intensivement.\nYou should've gotten up earlier.\tVous auriez dû vous lever plus tôt.\nYou should've gotten up earlier.\tTu aurais dû te lever plus tôt.\nYou should've seen what Tom did.\tTu aurais dû voir ce qu'a fait Tom.\nYou should've told me yesterday.\tTu aurais dû me le dire hier.\nYou shouldn't eat anything cold.\tVous ne devriez rien manger de froid.\nYou shouldn't eat anything cold.\tTu ne devrais rien manger de froid.\nYou stick out like a sore thumb.\tVous ne passez pas inaperçu !\nYou stick out like a sore thumb.\tVous ne passez pas inaperçue !\nYou stick out like a sore thumb.\tTu ne passes pas inaperçu !\nYou stick out like a sore thumb.\tTu ne passes pas inaperçue !\nYou take your job too seriously.\tTu prends ton travail trop au sérieux.\nYou think I'm scared, don't you?\tTu penses que j'ai peur, n'est-ce pas ?\nYou think I'm scared, don't you?\tVous pensez que je suis effrayée, n'est-ce pas ?\nYou were terrified, weren't you?\tTu étais terrifié, n'est-ce pas ?\nYou were terrified, weren't you?\tTu étais terrifiée, n'est-ce pas ?\nYou were terrified, weren't you?\tVous étiez terrifié, n'est-ce pas ?\nYou were terrified, weren't you?\tVous étiez terrifiée, n'est-ce pas ?\nYou were terrified, weren't you?\tVous étiez terrifiés, n'est-ce pas ?\nYou were terrified, weren't you?\tVous étiez terrifiées, n'est-ce pas ?\nYou were very busy, weren't you?\tTu étais très occupé, n'est-ce pas ?\nYou were very busy, weren't you?\tTu étais très occupée, n'est-ce pas ?\nYou were very busy, weren't you?\tVous étiez très occupé, n'est-ce pas ?\nYou were very busy, weren't you?\tVous étiez très occupée, n'est-ce pas ?\nYou were very busy, weren't you?\tVous étiez très occupés, n'est-ce pas ?\nYou were very busy, weren't you?\tVous étiez très occupées, n'est-ce pas ?\nYou won't be needing that again.\tVous n'aurez plus besoin de ça.\nYou won't be the only one there.\tVous ne serez pas le seul là-bas.\nYou won't believe what I've got.\tTu ne croiras pas ce que j'ai dégoté.\nYou'd better consult the doctor.\tTu ferais mieux de consulter le médecin.\nYou'd better consult the doctor.\tVous feriez mieux de consulter le médecin.\nYou'd better not argue with Tom.\tIl vaut mieux que tu ne discutes pas avec Tom.\nYou'd better tell him the truth.\tTu ferais mieux de lui dire la vérité.\nYou'd better tell him the truth.\tVous feriez mieux de lui dire la vérité.\nYou'd better try something else.\tTu ferais mieux d'essayer quelque chose d'autre.\nYou'd better try something else.\tVous feriez mieux d'essayer quelque chose d'autre.\nYou'd better watch what you say.\tTu ferais mieux de peser ce que tu dis.\nYou'll have to ask someone else.\tIl te faudra demander à quelqu'un d'autre.\nYou'll have to ask someone else.\tTu devras demander à quelqu'un d'autre.\nYou'll understand it right away.\tVous allez le comprendre tout de suite.\nYou'll understand it right away.\tTu vas le comprendre tout de suite.\nYou're Tom's friend, aren't you?\tTu es l'ami de Tom, pas vrai ?\nYou're disappointed, aren't you?\tVous êtes déçue, n'est-ce pas ?\nYou're disappointed, aren't you?\tVous êtes déçues, n'est-ce pas ?\nYou're disappointed, aren't you?\tVous êtes déçus, n'est-ce pas ?\nYou're disappointed, aren't you?\tVous êtes déçu, n'est-ce pas ?\nYou're disappointed, aren't you?\tTu es déçue, n'est-ce pas ?\nYou're disappointed, aren't you?\tTu es déçu, n'est-ce pas ?\nYou're done working, aren't you?\tVous avez fini de travailler, non ?\nYou're done working, aren't you?\tTu as fini de travailler, non ?\nYou're not a city girl, are you?\tTu n'es pas citadine, si ?\nYou're not a city girl, are you?\tVous n'êtes pas citadine, si ?\nYou're not allowed to eat those.\tTu n'es pas autorisé à manger ceux-ci.\nYou're not allowed to eat those.\tTu n'es pas autorisé à manger ceux-là.\nYou're not allowed to eat those.\tTu n'es pas autorisée à manger ceux-ci.\nYou're not allowed to eat those.\tTu n'es pas autorisée à manger ceux-là.\nYou're not allowed to eat those.\tVous n'êtes pas autorisé à manger ceux-ci.\nYou're not allowed to eat those.\tVous n'êtes pas autorisé à manger ceux-là.\nYou're not allowed to eat those.\tVous n'êtes pas autorisée à manger ceux-ci.\nYou're not allowed to eat those.\tVous n'êtes pas autorisée à manger ceux-là.\nYou're not allowed to eat those.\tVous n'êtes pas autorisés à manger ceux-ci.\nYou're not allowed to eat those.\tVous n'êtes pas autorisés à manger ceux-là.\nYou're not allowed to eat those.\tVous n'êtes pas autorisées à manger ceux-là.\nYou're not allowed to eat those.\tVous n'êtes pas autorisées à manger ceux-ci.\nYou're not allowed to park here.\tVous n'êtes pas autorisé à vous garer ici.\nYou're not allowed to park here.\tTu n'es pas autorisée à te garer ici.\nYou're not allowed to park here.\tTu n'es pas autorisé à te garer ici.\nYou're not allowed to park here.\tVous n'êtes pas autorisée à vous garer ici.\nYou're not one of them, are you?\tTu n'es pas des leurs, si ?\nYou're not one of them, are you?\tVous n'êtes pas des leurs, si ?\nYou're obviously in great shape.\tTu es de toute évidence en grande forme.\nYou're still single, aren't you?\tVous êtes toujours célibataire, n'est-ce pas ?\nYou're still single, aren't you?\tTu es toujours célibataire, pas vrai ?\nYou're the best man for the job.\tTu es le meilleur pour ce travail.\nYou're the best man for the job.\tTu es le meilleur pour le boulot.\nYou're the champion, aren't you?\tTu es le champion, n'est-ce pas ?\nYou're the champion, aren't you?\tVous êtes le champion, n'est-ce pas ?\nYou're the only Canadian I know.\tTu es la seule Canadienne que je connaisse.\nYou're the only Canadian I know.\tTu es le seul Canadien que je connaisse.\nYou're wasting both of our time.\tTu gaspilles notre temps à tous les deux.\nYou're wasting both of our time.\tVous gaspillez notre temps à tous les deux.\nYou've been kissed, haven't you?\tVous vous êtes fait embrasser, n'est-ce pas ?\nYou've been kissed, haven't you?\tTu t'es fait embrasser, n'est-ce pas ?\nYou've done the best you can do.\tVous avez fait de votre mieux.\nYou've got a pretty good memory.\tTu as une assez bonne mémoire.\nYou've got a pretty good memory.\tTu es doté d'une assez bonne mémoire.\nYou've got a pretty good memory.\tVous avez une assez bonne mémoire.\nYou've got a pretty good memory.\tVous êtes doté d'une assez bonne mémoire.\nYou've got a pretty good memory.\tVous êtes dotée d'une assez bonne mémoire.\nYou've got a pretty good memory.\tTu es dotée d'une assez bonne mémoire.\nYou've got bags under your eyes.\tT'as des poches sous les yeux.\nYou've got bags under your eyes.\tVous avez des poches sous les yeux.\nYou've got to be making this up.\tTu dois être en train d'inventer ça.\nYou've got to be making this up.\tVous devez être en train d'inventer ça.\nYou've told me that joke before.\tTu m'as déjà dit cette blague.\nYou've told me that joke before.\tVous m'avez déjà raconté cette blague.\nYoung people like popular music.\tLes jeunes gens aiment la musique populaire.\nYour Chinese is awesome already.\tTon chinois est super, déjà.\nYour English has improved a lot.\tTon anglais s'est grandement amélioré.\nYour English has improved a lot.\tVotre anglais s'est sensiblement amélioré.\nYour English has improved a lot.\tTon anglais s'est beaucoup amélioré.\nYour answer is far from perfect.\tTa réponse est loin d'être parfaite.\nYour answer is far from perfect.\tVotre réponse est loin d'être parfaite.\nYour bicycle is similar to mine.\tTon vélo est similaire au mien.\nYour car has a broken taillight.\tVotre voiture a un feu arrière de cassé.\nYour car has a broken taillight.\tTa voiture a un feu arrière de cassé.\nYour dog is still barking at me.\tTon chien m'aboie toujours dessus.\nYour friend Tom hasn't returned.\tTon ami Tom n'est pas revenu.\nYour idea is not entirely crazy.\tVotre idée n'est pas complètement folle.\nYour idea is not entirely crazy.\tTon idée n'est pas complètement dingue.\nYour kiss is sweeter than honey.\tTon baiser est plus doux que du miel.\nYour mother is going to kill me.\tTa mère va me tuer.\nYour mother is going to kill me.\tVotre mère va me tuer.\nYour name sounds familiar to me.\tVotre nom m'est familier.\nYour parents know where you are.\tTes parents savent où tu es.\nYour parents know where you are.\tVos parents savent où vous êtes.\nYour problem is similar to mine.\tVotre problème est similaire au mien.\nYour problem is similar to mine.\tTon problème est similaire au mien.\nYour pronunciation is excellent.\tVotre prononciation est excellente.\nYour pronunciation is excellent.\tTa prononciation est excellente.\nYour question is hard to answer.\tIl est difficile de répondre à ta question.\nYour question is hard to answer.\tIl est difficile de répondre à votre question.\nYour shirt button is coming off.\tTon bouton de chemise est en train de partir.\nYour team is stronger than ours.\tVotre équipe est plus forte que la nôtre.\nYour team is stronger than ours.\tTon équipe est meilleure que la nôtre.\nYour wristwatch is on the table.\tTa montre est sur la table.\nYour wristwatch is on the table.\tTa montre se trouve sur la table.\nYour wristwatch is on the table.\tVotre montre se trouve sur la table.\n\"Are you a teacher?\" \"Yes, I am.\"\t« Vous êtes enseignant ? » « Oui, c'est cela. »\n\"Are you a teacher?\" \"Yes, I am.\"\tÊtes-vous enseignant ? Oui, je le suis.\n\"Are you a teacher?\" \"Yes, I am.\"\tÊtes-vous enseignante ? Oui, je le suis.\n\"Can somebody help me?\" \"I will.\"\t\"Est-ce que quelqu'un peut m'aider ?\" \"Je veux bien.\"\n\"Fast\" is the opposite of \"slow.\"\t\"Rapide\" c'est le contraire de \"lent.\"\n\"How old are you?\" \"I'm sixteen.\"\t« Quel âge as-tu ? » « Seize ans. »\n\"I am not tired.\" \"Neither am I.\"\t\"Je ne suis pas fatigué.\" \"Moi non plus.\"\n\"May I call you tonight?\" \"Sure.\"\t« Puis-je t'appeler ce soir ? » « Bien sûr. »\n\"May I go with you?\" \"Of course.\"\t«Puis-je venir avec toi ?» - «Bien sûr !»\nA baby is sleeping in the cradle.\tUn bébé dort dans le berceau.\nA big wave turned over his canoe.\tUne grosse vague a renversé le canoë.\nA chain is made up of many links.\tUne chaîne se compose de nombreux maillons.\nA coat is an article of clothing.\tUn manteau est un vêtement.\nA coin dropped out of his pocket.\tUne pièce est tombée de sa poche.\nA conductor directs an orchestra.\tUn chef d'orchestre dirige un orchestre.\nA crowd soon gathered around him.\tBientôt une foule se rassembla autour de lui.\nA curfew was imposed on the city.\tUn couvre-feu a été imposé dans la ville.\nA dog has a sharp sense of smell.\tUn chien a un flair très développé.\nA driver was sleeping in the car.\tUn chauffeur dormait dans la voiture.\nA father provides for his family.\tUn père pourvoit à sa famille.\nA few people came to the lecture.\tQuelques personnes vinrent au cours.\nA good book is a great companion.\tUn bon bouquin fait un merveilleux compagnon.\nA housewife should be economical.\tUne ménagère devrait être économe.\nA man's worth lies in what he is.\tLa valeur d'un homme réside dans ce qu'il est.\nA new road is under construction.\tUne nouvelle rue est en construction.\nA plane is flying above the city.\tUn avion vole au-dessus de la ville.\nA revolution broke out in Mexico.\tUne révolution a éclaté au Mexique.\nA right angle has ninety degrees.\tUn angle droit mesure 90 degrés.\nA ring and some cash are missing.\tIl manque une bague et un peu de liquide.\nA river flows through the valley.\tUne rivière coule à travers la vallée.\nA rope was thrown into the water.\tUne corde a été jetée à l'eau.\nA rope was thrown into the water.\tUne corde fut jetée à l'eau.\nA sin confessed is half forgiven.\tPéché avoué est à moitié pardonné.\nA toothache deprived me of sleep.\tMon mal de dents m'a empêché de dormir.\nA true friend would've helped me.\tUn véritable ami m'aurait aidé.\nA woman without a man is nothing.\tUne femme sans un homme ne vaut rien.\nAI means Artificial Intelligence.\tIA signifie Intelligence Artificielle.\nAbout how many books do you have?\tÀ peu près combien de livres possèdes-tu ?\nAbout how many books do you have?\tÀ peu près combien de livres détenez-vous ?\nAbout how many books do you have?\tÀ peu près combien de livres détiens-tu ?\nAbout how much money do you need?\tD'à peu près combien d'argent as-tu besoin ?\nAbout how much money do you need?\tD'à peu près combien d'argent avez-vous besoin ?\nAbout twenty people were injured.\tEnviron vingt personnes ont été blessées.\nAfter he said it, he was ashamed.\tAprès l'avoir dit, il avait honte.\nAll I want is some companionship.\tTout ce que je veux, c'est de la compagnie.\nAll her money went to her nephew.\tTout son argent est allé à son neveu.\nAll of the students were present.\tTous les étudiants étaient présents.\nAll of them were handmade things.\tC'étaient toutes des choses faites main.\nAll of us climbed aboard quickly.\tNous sommes tous montés rapidement à bord.\nAll right, everyone, remain calm.\tBien, tout le monde reste calme !\nAll the parking spots were taken.\tToutes les places de parking étaient prises.\nAll the players were in position.\tTous les joueurs étaient en position.\nAll the students passed the test.\tTous les élèves ont réussi l'examen.\nAll we can do is to wait for him.\tTout ce qu'on peut faire c'est l'attendre.\nAll we need is a little patience.\tTout ce dont nous avons besoin, c'est d'un peu de patience.\nAll you have to do is to join us.\tTout ce que tu as à faire c'est de nous rejoindre.\nAlmost all of the dogs are alive.\tPresque tous les chiens sont vivants.\nAlmost all of the dogs are alive.\tPresque tous les chiens sont en vie.\nAlmost all the doors were closed.\tPresque toutes les portes étaient fermées.\nAm I interrupting something here?\tSuis-je en train d'interrompre quelque chose ?\nAn olive branch symbolizes peace.\tUne branche d'olivier symbolise la paix.\nApparently, not much has changed.\tApparemment, guère n'a changé.\nAre there any apples on the tree?\tY a-t-il des pommes sur l'arbre ?\nAre there still some empty seats?\tY a-t-il encore des places libres ?\nAre these all the sizes you have?\tSont-ce là toutes les tailles dont vous disposez ?\nAre these the only ones you have?\tEst-ce que ce sont les seules que vous avez ?\nAre these the only ones you have?\tSont-ce là les seules que vous ayez ?\nAre they taking good care of you?\tPrennent-ils bien soin de toi ?\nAre they taking good care of you?\tPrennent-ils bien soin de vous ?\nAre you accusing me of something?\tÊtes-vous en train de m'accuser de quelque chose ?\nAre you accusing me of something?\tEs-tu en train de m'accuser de quelque chose ?\nAre you allergic to any medicine?\tÊtes-vous allergique aux médicaments ?\nAre you allergic to any medicine?\tAs-tu une allergie médicamenteuse ?\nAre you and Tom working together?\tEst-ce que tu travailles avec Tom ?\nAre you aware of what's happened?\tÊtes-vous au courant de ce qui est arrivé?\nAre you free on Friday afternoon?\tEs-tu libre le vendredi après-midi ?\nAre you going to eat those fries?\tVas-tu manger ces frites ?\nAre you going to eat those fries?\tAllez-vous manger ces frites ?\nAre you guys stupid or something?\tLes mecs, vous êtes cons, ou quoi ?\nAre you lazy or just incompetent?\tEs-tu fainéant ou simplement incompétent ?\nAre you lazy or just incompetent?\tEs-tu paresseuse ou simplement incompétente ?\nAre you lazy or just incompetent?\tÊtes-vous fainéant ou simplement incompétent ?\nAre you lazy or just incompetent?\tÊtes-vous fainéants ou simplement incompétents ?\nAre you lazy or just incompetent?\tÊtes-vous paresseuses ou simplement incompétentes ?\nAre you seeing anybody right now?\tVois-tu qui que ce soit en ce moment ?\nAre you seeing anybody right now?\tVoyez-vous qui que ce soit en ce moment ?\nAre you still playing the guitar?\tEst-ce que tu joues encore de la guitare ?\nAre you sure this is a good idea?\tÊtes-vous sûr que ce soit une bonne idée ?\nAre you sure this is a good idea?\tÊtes-vous sûre que ce soit une bonne idée ?\nAre you sure this is a good idea?\tÊtes-vous sûrs que ce soit une bonne idée ?\nAre you sure this is a good idea?\tÊtes-vous sûres que ce soit une bonne idée ?\nAre you sure this is a good idea?\tEs-tu sûr que ce soit une bonne idée ?\nAre you sure this is a good idea?\tEs-tu sûre que ce soit une bonne idée ?\nAre you sure we have enough beer?\tEs-tu sûr que nous avons assez de bière ?\nAre you sure you just want water?\tTu es sûr que tu ne veux que de l'eau ?\nAre you sure you just want water?\tÊtes-vous sûre de ne vouloir que de l'eau ?\nAre you sure you just want water?\tEs-tu sûre de ne vouloir que de l'eau ?\nAre you sure you just want water?\tVous êtes sûrs de ne vouloir que de l'eau ?\nAre you tired of waiting in line?\tEs-tu fatigué de faire la queue ?\nAre you tired of waiting in line?\tEs-tu fatiguée de faire la queue ?\nAre you tired of waiting in line?\tÊtes-vous fatigué de faire la queue ?\nAre you tired of waiting in line?\tÊtes-vous fatiguée de faire la queue ?\nAre you trying to be funny again?\tVous essayez de faire de l'humour ?\nAs for me, I have nothing to say.\tEn ce qui me concerne, je n'ai rien à dire.\nAsk at the police box over there.\tDemandez à la guérite là-bas.\nAt any rate, I hope you can come.\tQuoi qu'il en soit, j'espère que tu pourras venir.\nAt last, they came to a decision.\tFinalement, ils ont pris une décision.\nAt what time did the show finish?\tÀ quelle heure le spectacle s'est-il terminé ?\nAt what time did the show finish?\tÀ quelle heure le spectacle a-t-il pris fin ?\nAt what time does your class end?\tÀ quelle heure finit votre cours ?\nAt what time does your class end?\tÀ quelle heure finit ton cours ?\nBe careful not to drink too much.\tFais attention à ne pas trop boire !\nBe careful not to drink too much.\tFaites attention à ne pas trop boire !\nBe careful on your way back home.\tSois prudent sur le chemin de la maison !\nBe careful when you cross a road.\tSois prudent quand tu traverses une route.\nBe quiet and get back in the car.\tTais-toi et retourne dans la voiture.\nBecause he's sick, he can't come.\tParce qu'il est malade, il ne peut pas venir.\nBerlin is the capital of Germany.\tBerlin est la capitale de l'Allemagne.\nBirds are flying above the trees.\tLes oiseaux volent au-dessus des arbres.\nBoth Tom and Mary are my friends.\tTom et Mary sont tous deux mes amis.\nBoth of us want to see the movie.\tNous voulons tous deux voir le film.\nBreakfast and lunch are included.\tLe petit-déjeuner et le déjeuner sont inclus.\nBrush your teeth after each meal.\tBrosse tes dents après chaque repas.\nBy the way, are you free tonight?\tAu fait, serais-tu libre ce soir ?\nBy the way, what is your address?\tAu fait, quelle est votre adresse ?\nCall me if you have any problems.\tAppelle-moi si tu as des problèmes.\nCall me if you have any problems.\tAppelez-moi si vous avez des problèmes.\nCall me when you are ready to go.\tAppelle-moi quand tu es prêt à partir.\nCan I ask you something personal?\tPuis-je vous demander quelque chose de personnel ?\nCan I ask you something personal?\tPuis-je te demander quelque chose de personnel ?\nCan I borrow cash with this card?\tPuis-je emprunter du liquide avec cette carte ?\nCan I borrow some money from you?\tPuis-je t'emprunter de l'argent ?\nCan I borrow some money from you?\tPuis-je vous emprunter l'argent ?\nCan I get you something to drink?\tPuis-je vous offrir quelque chose à boire ?\nCan I get you something to drink?\tPuis-je t'apporter quelque chose à boire ?\nCan I get you something to drink?\tPuis-je vous ramener quelque chose à boire ?\nCan I get your attention, please?\tPuis-je avoir votre attention, s'il vous plaît ?\nCan I get your attention, please?\tPuis-je avoir ton attention, s'il te plaît ?\nCan I go swimming this afternoon?\tPuis-je aller nager cet après-midi ?\nCan I have a few minutes, please?\tPuis-je avoir quelques minutes, je vous prie ?\nCan I have a few minutes, please?\tPuis-je avoir quelques minutes, je te prie ?\nCan I have a word with you alone?\tEst-ce que je peux te parler en privé ?\nCan I have a word with you alone?\tPuis-je vous entretenir en privé ?\nCan I have your telephone number?\tPuis-je avoir ton numéro de téléphone ?\nCan I have your telephone number?\tEst-ce que je peux prendre ton numéro de téléphone ?\nCan I talk to you about your son?\tPuis-je te parler de ton fils ?\nCan I talk to you about your son?\tPuis-je vous parler de votre fils ?\nCan it be phrased in another way?\tEst-ce qu'on peut formuler ça d'une autre manière ?\nCan my friend sleep over tonight?\tMon ami peut-il rester dormir ce soir ?\nCan my friend sleep over tonight?\tMon amie peut-elle rester dormir ce soir ?\nCan somebody give me a hand here?\tQuelqu'un ici peut-il me donner un coup de main ?\nCan someone please open the door?\tEst-ce que quelqu'un peut ouvrir la porte, s'il vous plaît ?\nCan we get started with the game?\tPouvons-nous commencer la partie ?\nCan we roller-skate in this park?\tPouvons-nous faire du patin à roulettes dans ce parc ?\nCan you at least be happy for me?\tPeux-tu au moins être heureux pour moi ?\nCan you at least be happy for me?\tPeux-tu au moins être heureuse pour moi ?\nCan you give me a slice of bread?\tPeux-tu me donner une tranche de pain ?\nCan you give me your cell number?\tPeux-tu me donner ton numéro de portable ?\nCan you help look after the kids?\tPeux-tu aider à s'occuper des enfants ?\nCan you help look after the kids?\tPouvez-vous aider à s'occuper des enfants ?\nCan you pass me the salt, please?\tPouvez-vous me passer le sel, s’il vous plait ?\nCan you ship it to New York City?\tPouvez-vous l'envoyer à New York ?\nCan you ship it to New York City?\tPouvez-vous le faire parvenir à New York ?\nCan you show me how to tie a tie?\tPeux-tu me montrer comment nouer une cravate ?\nCan you sing a song for everyone?\tPeux-tu chanter une chanson pour tout le monde ?\nCan you tell me the time, please?\tPouvez-vous me donner l'heure, s'il vous plaît ?\nCan you tell me the time, please?\tPeux-tu me dire l'heure, s'il te plaît ?\nCan you tell me the time, please?\tPouvez-vous me dire l'heure, s'il vous plaît ?\nCan you tell me why you like him?\tPeux-tu me dire pourquoi tu l'aimes ?\nCan you tell me why you like him?\tPouvez-vous me dire pourquoi vous l'aimez ?\nCan you tell us how that'll work?\tPouvez-vous nous dire comment ça fonctionnera ?\nCan you tell us how that'll work?\tPeux-tu nous dire comment ça fonctionnera ?\nCan you wrap these neatly for me?\tPouvez-vous me les envelopper proprement ?\nCan't you tell me how to do this?\tNe peux-tu pas me dire comment faire ça ?\nCan't you tell me how to do this?\tNe pouvez-vous pas me dire comment faire ceci ?\nCanned food doesn't interest her.\tLa nourriture en conserve ne l'intéresse pas.\nCats can see even in dark places.\tLes chats peuvent voir même dans les endroits sombres.\nChange your mind, if you want to.\tChange d'avis, si tu veux.\nChange your mind, if you want to.\tChangez d'avis, si vous voulez.\nChoose your next words carefully.\tChoisissez soigneusement vos prochains mots !\nChoose your next words carefully.\tChoisis soigneusement tes prochains mots !\nChristmas is rapidly approaching.\tNoël arrive à grands pas.\nCicadas aren't harmful to humans.\tLes cigales ne sont pas dangereuses pour l'Homme.\nCigarette smoke bothers me a lot.\tLa fumée de cigarette m'incommode beaucoup.\nCleanliness is next to godliness.\tLa propreté est sœur de la divinité.\nComb your hair before you go out.\tCoiffe-toi avant de sortir.\nComb your hair before you go out.\tCoiffez-vous avant de sortir.\nCome here at exactly six o'clock.\tViens ici à six heures précises.\nCome here at exactly six o'clock.\tVenez ici à dix-huit heures précises.\nCopper conducts electricity well.\tLe cuivre conduit bien l'électricité.\nCould I have some coffee, please?\tPourrais-je avoir du café, s'il vous plait ?\nCould we take you somewhere else?\tPourrions-nous t'emmener ailleurs ?\nCould we take you somewhere else?\tPourrions-nous vous emmener ailleurs ?\nCould you download a file for me?\tPeux-tu me télécharger un fichier ?\nCould you explain it more simply?\tPourrais-tu l'expliquer plus simplement ?\nCould you explain it more simply?\tPourriez-vous l'expliquer plus simplement ?\nCould you please clear the table?\tPourrais-tu desservir la table, s'il te plait ?\nCould you please clear the table?\tPourriez-vous desservir la table, s'il vous plait ?\nCould you show me how to do that?\tPourrais-tu me montrer comment faire ça ?\nCould you show me how to do that?\tPourriez-vous me montrer comment faire cela ?\nCould you spare me a few minutes?\tPeux-tu m'accorder quelques minutes ?\nCould you spare me a few minutes?\tPouvez-vous me consacrer quelques minutes ?\nCould you spare me a little time?\tPouvez-vous me consacrer un peu de temps ?\nDNA tests showed he was innocent.\tLes examens ADN ont montré qu'il était innocent.\nDNA tests showed he was innocent.\tLes examens ADN montrèrent qu'il était innocent.\nDad's in an impatient mood today.\tPapa est impatient aujourd'hui.\nDarkness is the absence of light.\tL'obscurité est l'absence de lumière.\nDeath is often compared to sleep.\tOn compare souvent la mort au sommeil.\nDescribe that accident in detail.\tDécrivez cet accident en détail.\nDid I miss something interesting?\tAi-je manqué quelque chose d'intéressant ?\nDid you already do your homework?\tAs-tu déjà fini tes devoirs ?\nDid you already do your homework?\tAvez-vous déjà fait vos devoirs ?\nDid you also invite your friends?\tAvez-vous bien invité aussi vos amis ?\nDid you enjoy yourself yesterday?\tEst-ce que vous vous êtes bien amusé hier ?\nDid you enjoy yourself yesterday?\tEst-ce que tu t'es bien amusé hier ?\nDid you enjoy yourself yesterday?\tT'es-tu bien amusée, hier ?\nDid you enjoy yourself yesterday?\tVous êtes-vous bien amusées, hier ?\nDid you find everything you want?\tAs-tu trouvé tout ce que tu voulais ?\nDid you find everything you want?\tAvez-vous trouvé tout ce que vous vouliez ?\nDid you go to any famous gardens?\tÊtes-vous allés dans un des jardins célèbres?\nDid you hear what we were saying?\tTu as entendu ce que nous disions ?\nDid you tell Tom why you're here?\tAs-tu dit à Tom pourquoi tu es ici ?\nDid you tell Tom why you're here?\tAvez-vous dit à Tom pourquoi vous êtes ici ?\nDidn't I show you my new Mustang?\tJe ne t'ai pas montré ma nouvelle Mustang ?\nDidn't you hear your name called?\tN'avez-vous pas entendu appeler votre nom ?\nDidn't you hear your name called?\tN'as-tu pas entendu appeler ton nom ?\nDidn't you write a letter to him?\tNe lui as-tu pas écrit une lettre ?\nDidn't you write a letter to him?\tNe lui avez-vous pas écrit une lettre ?\nDinosaurs used to rule the earth.\tLes dinosaures faisaient la loi sur terre.\nDo I need to go to the dentist's?\tDois-je aller chez le dentiste ?\nDo not talk with your mouth full.\tNe parlez pas la bouche pleine.\nDo not talk with your mouth full.\tNe parle pas la bouche pleine.\nDo these paintings appeal to you?\tEst-ce que ces tableaux vous tentent ?\nDo these paintings appeal to you?\tCes tableaux vous plaisent-ils ?\nDo we need an universal language?\tA-t-on besoin d'une langue universelle ?\nDo you ever think about that guy?\tPenses-tu jamais à ce type ?\nDo you ever think about that guy?\tPensez-vous jamais à ce type ?\nDo you have a table on the patio?\tDisposez-vous d'une table sur le patio ?\nDo you have a table on the patio?\tDisposes-tu d'une table sur le patio ?\nDo you have any one dollar bills?\tEst-ce que tu aurais un billet d'un dollar ?\nDo you have brothers and sisters?\tAs-tu des frères et sœurs ?\nDo you have one a little smaller?\tEn avez-vous un un peu plus petit ?\nDo you have safety deposit boxes?\tAvez-vous des coffres ?\nDo you have something to show me?\tAs-tu quelque chose à me montrer ?\nDo you have something to show me?\tAvez-vous quelque chose à me montrer ?\nDo you have your laptop with you?\tAs-tu ton ordinateur portable avec toi ?\nDo you have your laptop with you?\tAvez-vous votre ordinateur portable avec vous ?\nDo you know how to open this box?\tSais-tu comment ouvrir cette boîte ?\nDo you know how to open this box?\tSavez-vous comment ouvrir cette boîte ?\nDo you know how to speak English?\tSavez-vous parler anglais ?\nDo you know how to speak English?\tSais-tu parler anglais ?\nDo you know what Tom was wearing?\tSais-tu ce que Tom portait ?\nDo you know what color she likes?\tSais-tu quelle couleur elle aime ?\nDo you know what color she likes?\tSavez-vous quelle couleur elle aime ?\nDo you know what day it is today?\tSais-tu le quantième est aujourd'hui ?\nDo you know what day it is today?\tSavez-vous le quantième est aujourd'hui ?\nDo you know what day it is today?\tSavez-vous quel jour nous sommes ?\nDo you know what day it is today?\tSais-tu quel jour nous sommes ?\nDo you know where Tokyo Tower is?\tSais-tu où se trouve la tour de Tokyo ?\nDo you know where Tokyo Tower is?\tSavez-vous où se trouve la tour de Tokyo ?\nDo you know where the girl lives?\tSavez-vous où vit cette fille ?\nDo you know where they come from?\tSavez-vous d'où ils viennent ?\nDo you know where they come from?\tSavez-vous d'où elles viennent ?\nDo you know where they come from?\tSais-tu d'où ils viennent ?\nDo you know where they come from?\tSais-tu d'où elles viennent ?\nDo you know who wrote this novel?\tSavez-vous qui a écrit ce roman ?\nDo you know who wrote this novel?\tSavez-vous qui a rédigé ce roman ?\nDo you know who wrote this novel?\tSais-tu qui a écrit ce roman ?\nDo you know who wrote this novel?\tSais-tu qui a rédigé ce roman ?\nDo you love each other very much?\tVous aimez-vous beaucoup ?\nDo you love each other very much?\tVous aimez-vous beaucoup l'un l'autre ?\nDo you mind if I open the window?\tÇa te gêne si j'ouvre la fenêtre ?\nDo you mind if I open the window?\tVois-tu un inconvénient à ce que j'ouvre la fenêtre ?\nDo you mind if I open the window?\tVoyez-vous un inconvénient à ce que j'ouvre la fenêtre ?\nDo you mind if I turn off the AC?\tVois-tu un inconvénient à ce que je coupe le courant ?\nDo you mind if I turn off the AC?\tVoyez-vous un inconvénient à ce que je coupe le courant ?\nDo you mind waiting for a minute?\tEst-ce que cela vous dérange d'attendre une minute ?\nDo you realize what you're doing?\tPrends-tu conscience de ce que tu es en train de faire ?\nDo you realize what you're doing?\tPrenez-vous conscience de ce que vous êtes en train de faire ?\nDo you really think Tom is happy?\tPenses-tu vraiment que Tom est heureux ?\nDo you really think Tom is happy?\tPensez-vous vraiment que Tom est heureux ?\nDo you really think it's no good?\tPenses-tu vraiment que ce ne soit pas bon ?\nDo you really think it's no good?\tPensez-vous vraiment que ce ne soit pas bon ?\nDo you remember seeing me before?\tTe rappelles-tu m'avoir vu auparavant ?\nDo you remember seeing me before?\tVous rappelez-vous m'avoir vu auparavant ?\nDo you remember seeing me before?\tTe rappelles-tu m'avoir vue auparavant ?\nDo you remember seeing me before?\tVous rappelez-vous m'avoir vue auparavant ?\nDo you remember your grandfather?\tTe rappelles-tu ton grand-père ?\nDo you remember your grandfather?\tVous rappelez-vous votre grand-père ?\nDo you remember your grandfather?\tTe souviens-tu de ton grand-père ?\nDo you remember your grandfather?\tVous souvenez-vous de votre grand-père ?\nDo you remember your grandfather?\tVous remémorez-vous votre grand-père ?\nDo you remember your grandfather?\tTe remémores-tu ton grand-père ?\nDo you see that house? It's mine.\tVoyez-vous cette maison, là ? C'est la mienne.\nDo you sell advance tickets here?\tVendez-vous ici des billets à l'avance ?\nDo you still have Tom's umbrella?\tAs-tu encore le parapluie de Tom ?\nDo you still have Tom's umbrella?\tAvez-vous encore le parapluie de Tom ?\nDo you think I can pull this off?\tPenses-tu que je puisse l'exécuter ?\nDo you think I can pull this off?\tPensez-vous que je puisse l'exécuter ?\nDo you think I'm wasting my time?\tPenses-tu que je perde mon temps ?\nDo you think I'm wasting my time?\tPensez-vous que je perde mon temps ?\nDo you think animals have a soul?\tPensez-vous que les animaux ont une âme ?\nDo you think he is a good driver?\tPenses-tu qu'il soit un bon conducteur ?\nDo you think he's really into me?\tPenses-tu qu'il s'intéresse vraiment à moi ?\nDo you think he's really into me?\tPensez-vous qu'il s'intéresse vraiment à moi ?\nDo you think that'll happen soon?\tPensez-vous que ça se produira bientôt ?\nDo you want another one of these?\tEn veux-tu encore un ?\nDo you want another one of these?\tEn veux-tu encore une ?\nDo you want another one of these?\tVeux-tu encore l'un de ceux-ci ?\nDo you want another one of these?\tVeux-tu encore l'une de celles-ci ?\nDo you want another one of these?\tVoulez-vous encore l'un de ceux-ci ?\nDo you want another one of these?\tVoulez-vous encore l'une de celles-ci ?\nDo you want another one of these?\tEn voulez-vous encore un ?\nDo you want another one of these?\tEn voulez-vous encore une ?\nDo you want any of these flowers?\tVeux-tu une de ces fleurs ?\nDo you want him to know about it?\tVeux-tu qu'il le sache ?\nDo you want him to know about it?\tVoulez-vous qu'il le sache ?\nDo you want me to comb your hair?\tVeux-tu que je te peigne ?\nDo you want sugar in your coffee?\tVoulez-vous du sucre dans votre café ?\nDo you want to ask me a question?\tVoulez-vous me poser une question ?\nDo you want to come out and play?\tVeux-tu aller jouer dehors?\nDo you want to come out and play?\tVoulez-vous sortir jouer?\nDo you want to come over tonight?\tVeux-tu venir ici ce soir ?\nDo you want to come over tonight?\tVoulez-vous venir ici ce soir ?\nDo you want to come over tonight?\tVeux-tu venir ce soir ?\nDo you want to come over tonight?\tVoulez-vous venir ce soir ?\nDo you want to join me for lunch?\tVoulez-vous vous joindre à moi pour déjeuner ?\nDo you want to join me for lunch?\tVeux-tu te joindre à moi pour déjeuner ?\nDo you want to know why Tom left?\tVeux-tu savoir pourquoi Tom est parti ?\nDo you want to know why Tom left?\tVoulez-vous savoir pourquoi Tom est parti ?\nDo you want to see her very much?\tTu as vraiment très envie de la voir ?\nDoes Australia have four seasons?\tEst-ce qu'il y a quatre saisons en Australie ?\nDoes anyone else know about this?\tQui que ce soit d'autre est-il au courant de ça ?\nDoes it snow a lot in the winter?\tNeige-t-il beaucoup en hiver ?\nDoes someone here speak Japanese?\tEst-ce que quelqu'un ici parle japonais ?\nDoes someone here speak Japanese?\tQuelqu'un ici parle-t-il le japonais ?\nDoes the price include breakfast?\tLe prix inclut-il le petit déjeuner ?\nDoes this backpack belong to him?\tEst-ce que ce sac à dos lui appartient ?\nDoesn't anything ever get to you?\tQuoi que ce soit vous affecte-t-il jamais ?\nDoesn't anything ever get to you?\tQuoi que ce soit t'affecte-t-il jamais ?\nDoesn't it interest you a little?\tCela ne t'intéresse-t-il pas un peu ?\nDoesn't it interest you a little?\tCela ne vous intéresse-t-il pas un peu ?\nDoing that will take a long time.\tLe faire prendra beaucoup de temps.\nDon't be afraid to ask questions.\tN'ayez pas peur de poser des questions.\nDon't be afraid to ask questions.\tN'aie pas peur de poser des questions.\nDon't be deceived by appearances.\tNe vous laissez pas abuser par les apparences.\nDon't be too dependent on others.\tNe soyez pas trop dépendant des autres.\nDon't blame me for your mistakes.\tNe me reproche pas tes erreurs.\nDon't blame me for your mistakes.\tNe me reprochez pas vos erreurs.\nDon't bury your head in the sand.\tNe te détourne pas du problème !\nDon't cry. Everything will be OK.\tNe pleurez pas. Tout ira bien.\nDon't cut in while we're talking.\tN'interrompez pas quand nous sommes en discussion.\nDon't do that. It's not your job.\tNe faites pas ça ! Ce n'est pas votre boulot.\nDon't do that. It's not your job.\tNe fais pas ça ! Ce n'est pas ton boulot.\nDon't forget to flush the toilet.\tN'oublie pas de tirer le chasse d'eau.\nDon't forget to mail this letter.\tN'oubliez pas de poster cette lettre.\nDon't forget to mail this letter.\tN'oublie pas de poster cette lettre.\nDon't forget to mail this letter.\tN'oubliez pas de mettre cette lettre à la poste.\nDon't forget to put on sunscreen.\tN'oublie pas de mettre de la crème solaire !\nDon't forget to put on sunscreen.\tN'oubliez pas de mettre de la crème solaire !\nDon't forget to put out the fire.\tN'oubliez pas d'éteindre le feu.\nDon't forget to send that letter.\tN'oublie pas d'envoyer cette lettre.\nDon't hesitate to ask for advice.\tN'hésite pas à demander des conseils.\nDon't interrupt our conversation.\tN'interromps pas notre conversation.\nDon't judge a man by his clothes.\tNe juge pas un homme à ses habits.\nDon't judge people by appearance.\tNe juge pas quelqu'un sur son apparence.\nDon't judge people by appearance.\tNe jugez pas les gens sur l'apparence.\nDon't judge people by appearance.\tNe juge pas les gens sur l'apparence.\nDon't leave things half finished.\tNe laisse pas les choses à moitié terminées.\nDon't leave things half finished.\tNe laissez pas les choses à moitié terminées.\nDon't let the cat out of the bag.\tNe laisse pas le chat sortir du sac.\nDon't let them see you're afraid.\tNe les laissez pas s'apercevoir que vous avez peur !\nDon't let them see you're afraid.\tNe les laisse pas s'apercevoir que tu as peur !\nDon't make it any more difficult.\tNe le rendez pas plus difficile !\nDon't make it any more difficult.\tNe le rends pas plus difficile !\nDon't make me change that policy.\tNe me faites pas changer ce règlement !\nDon't open that door for anybody.\tN'ouvrez cette porte à personne !\nDon't open that door for anybody.\tN'ouvre cette porte à personne !\nDon't put any sugar in my coffee.\tNe mets pas de sucre dans mon café.\nDon't say it in a roundabout way.\tNe le dis pas de manière détournée.\nDon't say it in a roundabout way.\tDis-le sans détour.\nDon't say it in a roundabout way.\tDites-le sans détour.\nDon't say it in a roundabout way.\tNe le dites pas de manière détournée.\nDon't speak with your mouth full!\tOn ne parle pas la bouche pleine !\nDon't speak with your mouth full.\tNe parlez pas la bouche pleine.\nDon't speak with your mouth full.\tNe parle pas la bouche pleine.\nDon't take yourself so seriously.\tNe vous prenez pas tant au sérieux !\nDon't take yourself so seriously.\tNe te prends pas tant au sérieux !\nDon't talk to anybody about this.\tN'en parle à personne !\nDon't talk to anybody about this.\tN'en parlez à personne !\nDon't waste your time on trifles.\tNe perds pas ton temps avec des futilités.\nDon't waste your time on trifles.\tNe perdez pas votre temps dans les détails.\nDon't waste your time on trifles.\tNe perds pas ton temps en futilités.\nDon't worry. I am not mad at you.\tNe t'inquiète pas. Je ne suis pas en colère contre toi.\nDon't worry. We'll get the money.\tNe t'en fais pas ! Nous obtiendrons l'argent.\nDon't worry. We'll get the money.\tNe vous en faites pas ! Nous obtiendrons l'argent.\nDon't worry. You can count on me.\tNe vous inquiétez pas. Vous pouvez me faire confiance.\nDon't write me such long letters.\tNe m'écris pas de si longues lettres.\nDon't you feel the house shaking?\tTu ne sens pas la maison trembler ?\nDon't you remember what you said?\tNe te souviens-tu pas de ce que tu as dit ?\nDon't you remember what you said?\tNe te rappelles-tu pas ce que tu as dit ?\nDon't you remember what you said?\tNe vous souvenez-vous pas de ce que vous avez dit ?\nDon't you remember what you said?\tNe vous rappelez-vous pas ce que vous avez dit ?\nDon't you see what you've become?\tNe voyez-vous pas ce que vous êtes devenu ?\nDon't you see what you've become?\tNe voyez-vous pas ce que vous êtes devenue ?\nDon't you see what you've become?\tNe voyez-vous pas ce que vous êtes devenus ?\nDon't you see what you've become?\tNe voyez-vous pas ce que vous êtes devenues ?\nDon't you see what you've become?\tNe vois-tu pas ce que tu es devenu ?\nDon't you see what you've become?\tNe vois-tu pas ce que tu es devenue ?\nDon't you see who's following us?\tNe vois-tu pas qui nous suit ?\nDon't you see who's following us?\tNe voyez-vous pas qui nous suit ?\nDon't you think that's a bit odd?\tNe penses-tu pas que c'est un peu bizarre ?\nDon't you think that's a bit odd?\tNe penses-tu pas que ce soit un peu bizarre ?\nDon't you think that's a bit odd?\tNe pensez-vous pas que ce soit un peu bizarre ?\nDon't you think the dog is smart?\tPenses-tu que ce chien est intelligent ?\nDon't you think you deserve that?\tNe pensez-vous pas le mériter ?\nDon't you think you deserve that?\tNe penses-tu pas le mériter ?\nDust had accumulated on the desk.\tLa poussière s'était accumulée sur le bureau.\nEach country has its own customs.\tChaque pays à ses propres coutumes.\nEither you or I have to go there.\tSoit toi soit moi doit y aller.\nEngland was invaded by the Danes.\tL'Angleterre a été envahie par les Danois.\nEnglish is also studied in China.\tL'anglais est aussi étudié en Chine.\nEnglish is not my first language.\tL'anglais n'est pas ma première langue.\nEnglish is studied in China, too.\tL'anglais est aussi étudié en Chine.\nEthics is a branch of philosophy.\tL'éthique est une branche de la philosophie.\nEven a teacher can make mistakes.\tMême un professeur peut faire des erreurs.\nEven chocolate contains vitamins.\tMême le chocolat contient des vitamines.\nEven if he is busy, he will come.\tMême s'il est occupé, il viendra.\nEvery action has its consequence.\tToute action a ses conséquences.\nEvery time they talk, they argue.\tChaque fois qu'ils parlent, ils se disputent.\nEvery time they talk, they argue.\tÀ chaque fois qu'ils discutent, ils se disputent.\nEverybody knew her true feelings.\tTout le monde savait quels étaient ses vrais sentiments.\nEverybody needs food, don't they?\tTout le monde a besoin de nourriture, pas vrai ?\nEverybody plays the game of love.\tTout le monde joue au jeu de l'amour.\nEverybody should help each other.\tTout le monde devrait s'entraider.\nEveryone laughed at this mistake.\tTout le monde rit de cette erreur.\nEveryone pretended not to listen.\tTout le monde faisait semblant de ne pas écouter.\nEveryone started talking at once.\tTout le monde se mit à parler en même temps.\nEveryone started talking at once.\tTout le monde s'est mis à parler en même temps.\nEveryone was shocked by the news.\tTout le monde fut choqué par les nouvelles.\nEveryone was silent for a minute.\tTout le monde fut silencieux durant une minute.\nEverything is better without you.\tTout est mieux sans toi.\nEverything is now back to normal.\tTout est maintenant rentré dans l'ordre.\nEverything is now back to normal.\tTout est maintenant de retour à la normale.\nEverything that Tom said is true.\tTout ce que Tom a dit est vrai.\nExcess of politeness is annoying.\tL'excès de politesse est ennuyeux.\nExcuse me. Can you speak English?\tVeuillez m'excuser ! Savez-vous parler anglais ?\nExcuse me. Can you speak English?\tJe vous prie de m'excuser ! Savez-vous parler anglais ?\nExercise is good for your health.\tLes exercices sont bons pour la santé.\nExercise is good for your health.\tFaire des exercices est bon pour la santé.\nFaded jeans are still in fashion.\tLes jeans délavés sont encore à la mode.\nFather got the drink for nothing.\tPapa a eu la boisson gratis.\nFather showed him into the study.\tPère l'introduisit dans le bureau.\nFather wants to make me a doctor.\tPère veut que je sois médecin.\nFew people know the true meaning.\tPeu de gens savent ce que cela veut réellement dire.\nFigure up how much it amounts to.\tCalculez à combien ça se monte !\nFigure up how much it amounts to.\tCalcule à combien ça se monte !\nFind Tom before he tells someone.\tTrouvez Tom avant qu'il ne le dise à quelqu'un.\nFind Tom before he tells someone.\tTrouve Tom avant qu'il ne le dise à quelqu'un.\nFirst, you must protect yourself.\tPour commencer, tu dois te protéger.\nFirst, you must protect yourself.\tPour commencer, vous devez vous protéger.\nFor example, do you like English?\tPar exemple, est-ce que tu aimes l’anglais ?\nFor my part, I have no objection.\tPour ma part, je n'ai pas d'objection.\nFor that reason, he lost his job.\tPour cette raison, il perdit son emploi.\nFoxes have few natural predators.\tLe renard a peu de prédateurs naturels.\nFrom now on, let's keep in touch.\tDésormais, restons en contact.\nGermany produced many scientists.\tL'Allemagne a produit beaucoup de scientifiques.\nGermany then had a powerful army.\tL'Allemagne avait alors une armée puissante.\nGet in. I'll drive you somewhere.\tMonte, je te conduirai quelque part.\nGet in. I'll drive you somewhere.\tMontez, je vous conduirai quelque part.\nGive me a glass of water, please.\tDonnez-moi un verre d’eau, s’il vous plaît.\nGive me a glass of water, please.\tDonne-moi un verre d'eau, je te prie.\nGo and buy three bottles of coke.\tVa acheter trois bouteilles de coca.\nGo away before they see you here.\tTire-toi avant qu'ils ne te voient ici.\nGo away before they see you here.\tTire-toi avant qu'elles ne te voient ici.\nGo away before they see you here.\tCasse-toi avant qu'ils ne te voient ici.\nGo away before they see you here.\tCasse-toi avant qu'elles ne te voient ici.\nGo away before they see you here.\tCassez-vous avant qu'ils ne vous voient ici.\nGo away before they see you here.\tCassez-vous avant qu'elles ne vous voient ici.\nGo away before they see you here.\tTirez-vous avant qu'ils ne vous voient ici.\nGo away before they see you here.\tTirez-vous avant qu'elles ne vous voient ici.\nGo away before they see you here.\tÉloignez-vous avant qu'ils ne vous voient ici.\nGo away before they see you here.\tÉloignez-vous avant qu'elles ne vous voient ici.\nGo away before they see you here.\tÉloigne-toi avant qu'ils ne te voient ici.\nGo away before they see you here.\tÉloigne-toi avant qu'elles ne te voient ici.\nGo away. I don't want to see you.\tVa-t'en ! Je ne veux pas te voir.\nGo away. I don't want to see you.\tAllez-vous en ! Je ne veux pas vous voir.\nGod created man in his own image.\tDieu créa l'homme à son image.\nGuess whose birthday it is today.\tDevine de qui c'est l'anniversaire, aujourd'hui !\nHave a good look at this picture.\tRegarde bien cette photo.\nHave a good look at this picture.\tRegardez bien cette photo.\nHave you called an ambulance yet?\tAvez-vous déjà appelé une ambulance?\nHave you called the boss already?\tAs-tu déjà appelé le patron ?\nHave you called the boss already?\tAs-tu déjà appelé la patronne ?\nHave you called the boss already?\tAvez-vous déjà appelé le patron ?\nHave you called the boss already?\tAvez-vous déjà appelé la patronne ?\nHave you decoded the message yet?\tAvez-vous enfin décodé le message ?\nHave you decoded the message yet?\tAs-tu enfin décodé le message ?\nHave you ever been kissed before?\tVous a-t-on jamais embrassé auparavant ?\nHave you ever been kissed before?\tVous a-t-on jamais embrassée auparavant ?\nHave you ever been kissed before?\tVous a-t-on jamais embrassées auparavant ?\nHave you ever been kissed before?\tVous a-t-on jamais embrassés auparavant ?\nHave you ever been kissed before?\tT'a-t-on jamais embrassé auparavant ?\nHave you ever been kissed before?\tT'a-t-on jamais embrassée auparavant ?\nHave you ever cheated on an exam?\tAs-tu jamais triché à un examen ?\nHave you ever cheated on an exam?\tAvez-vous jamais triché à un examen ?\nHave you ever eaten a banana pie?\tTu as déjà mangé de la tarte à la banane ?\nHave you ever eaten a banana pie?\tAs-tu déjà mangé une tarte à la banane ?\nHave you ever heard such a story?\tAvez-vous déjà entendu pareille histoire ?\nHave you ever heard such a story?\tAs-tu déjà entendu pareille histoire ?\nHave you ever kissed another guy?\tAs-tu déjà embrassé un autre mec ?\nHave you ever kissed another guy?\tAvez-vous déjà embrassé un autre type ?\nHave you found any good solution?\tEst-ce que tu as trouvé une quelconque bonne solution ?\nHave you heard from her recently?\tAvez-vous eu des nouvelles d'elle récemment ?\nHave you heard from him recently?\tAs-tu eu des nouvelles de lui, récemment ?\nHave you taken your medicine yet?\tAs-tu déjà pris ta médication ?\nHave you taken your medicine yet?\tAs-tu déjà pris ton médicament ?\nHave you taken your medicine yet?\tAvez-vous déjà pris votre médication ?\nHave you taken your medicine yet?\tAvez-vous déjà pris vos médicaments ?\nHe acted like he owned the place.\tIl s'est comporté comme s'il possédait l'endroit.\nHe acted like he owned the place.\tIl se comporta comme s'il possédait l'endroit.\nHe acts like he knows everything.\tIl se comporte comme s'il savait tout.\nHe advertised his house for sale.\tIl faisait de la publicité pour sa maison à vendre.\nHe advertised his house for sale.\tIl fit de la publicité pour sa maison en vente.\nHe advertised his house for sale.\tIl a fait de la publicité pour la vente de sa maison.\nHe always cries when he is drunk.\tIl pleure toujours lorsqu'il est saoul.\nHe always treats me like a child.\tIl me traite toujours comme un enfant.\nHe asked me if I knew his father.\tIl me demanda si je connaissais son père.\nHe asked me to pass him the salt.\tIl m'a demandé de lui passer le sel.\nHe asked me to speak more slowly.\tIl me pria de parler plus lentement.\nHe asked me to speak more slowly.\tIl m'a prié de parler plus lentement.\nHe asked me where my uncle lived.\tIl me demanda où vivait mon oncle.\nHe asked me where my uncle lived.\tIl m'a demandé où vivait mon oncle.\nHe barely passed the examination.\tIl a réussi l'examen de justesse.\nHe became rich through hard work.\tIl devint riche par un dur labeur.\nHe became rich through hard work.\tIl est devenu riche par un dur labeur.\nHe became wiser as he grew older.\tIl devint plus sage en vieillissant.\nHe believes that he can prove it.\tIl croit pouvoir le prouver.\nHe bought a bottle of cheap wine.\tIl a acheté une bouteille de piquette.\nHe bought a bottle of cheap wine.\tIl acheta une bouteille de piquette.\nHe built on his father's fortune.\tIl a construit sur la fortune de son père.\nHe calculated the speed of light.\tIl calcula la vitesse de la lumière.\nHe called me up almost every day.\tIl m'a appelé presque chaque jour.\nHe came to Japan seven years ago.\tIl est venu au Japon il y a sept ans.\nHe can also speak a little Greek.\tIl sait aussi parler un peu de grec.\nHe can't afford to buy a new car.\tIl n'a pas les moyens de s'acheter une nouvelle voiture.\nHe can't afford to buy a new car.\tIl ne peut pas se permettre d'acheter une nouvelle voiture.\nHe can't stop thinking like that.\tIl ne peut s'empêcher de penser ainsi.\nHe cannot have done such a thing.\tIl ne peut pas avoir fait une telle chose.\nHe collected bits of information.\tIl a rassemblé des bouts d'informations.\nHe collected various information.\tIl a amassé différentes informations.\nHe commanded me to shut the gate.\tIl m'a ordonné de fermer le portail.\nHe continued walking for a while.\tIl a continué de marcher pendant un moment.\nHe convinced me of his innocence.\tIl m'a convaincu de son innocence.\nHe convinced us of her innocence.\tIl nous a convaincu de son innocence.\nHe could not hold back his tears.\tIl ne put retenir ses larmes.\nHe could not hold back his tears.\tIl ne pourrait retenir ses larmes.\nHe could not hold back his tears.\tIl n'a pas pu retenir ses larmes.\nHe couldn't pass the examination.\tIl a raté son examen.\nHe cut his finger with the knife.\tIl s'est coupé le doigt avec le couteau.\nHe dared not jump over the brook.\tIl n'osa pas sauter par-dessus le ruisseau.\nHe decided to have the operation.\tIl se décida à subir l'opération.\nHe dedicated himself to research.\tIl s'est consacré à la recherche.\nHe dedicates himself to research.\tIl se consacre à la recherche.\nHe did exactly as I had told him.\tIl a fait exactement ce que je lui ai dit de faire.\nHe did the work against his will.\tIl a accompli sa tâche sans entrain.\nHe didn't eat anything yesterday.\tIl n'a rien mangé hier.\nHe didn't go and I didn't either.\tIl n'y est pas allé et moi non plus.\nHe didn't look like a clever boy.\tIl n'avait pas l'air intelligent.\nHe didn't respond to my question.\tIl n'a pas répondu à ma question.\nHe didn't try to answer her back.\tIl n'essaya pas de rétorquer.\nHe didn't try to answer her back.\tIl n'a pas essayé de rétorquer.\nHe didn't want to antagonize her.\tIl ne voulait pas la heurter.\nHe died of old age two years ago.\tIl est mort de vieillesse il y a deux ans.\nHe doesn't have any real friends.\tIl n'a pas de véritables amis.\nHe doesn't have any real friends.\tIl n'a aucun véritable ami.\nHe doesn't know how to play golf.\tIl ne sait pas jouer au golf.\nHe doesn't know much about Japan.\tIl ne sait pas grand-chose du Japon.\nHe doesn't want to talk about it.\tIl ne veut pas en parler.\nHe explained the facts at length.\tIl a expliqué longuement les faits.\nHe felt nervous about the result.\tIl se sentait nerveux au sujet du résultat.\nHe found the box under the table.\tIl trouva la boîte sous la table.\nHe found the box under the table.\tIl a trouvé la boîte sous la table.\nHe gave body and soul to his job.\tIl s'est donné corps et âme à son travail.\nHe gave me a lecture on drinking.\tIl m'a fait la morale sur le fait que je boive.\nHe gave me his stamp of approval.\tIl m'a donné son approbation.\nHe goes there three times a week.\tIl y va trois fois par semaine.\nHe goes to a school for the deaf.\tIl va à une école pour les sourds.\nHe had a good look at the papers.\tIl regarda attentivement les papiers.\nHe had every reason for doing so.\tIl avait toutes les raisons de le faire.\nHe had never seen such a bad boy.\tIl n'avait jamais vu un garçon aussi méchant.\nHe had no memory of the accident.\tIl n'avait aucun souvenir de l'accident.\nHe had no memory of the accident.\tIl n'eut aucun souvenir de l'accident.\nHe has a brother and two sisters.\tIl a un frère et deux sœurs.\nHe has a car which I gave to him.\tIl a une voiture que je lui ai donnée.\nHe has a large family to support.\tIl a une grande famille à entretenir.\nHe has a lot of books on history.\tIl a beaucoup de livres d'Histoire.\nHe has a very dry sense of humor.\tIl est très pince-sans-rire.\nHe has already finished his work.\tIl a déjà fini son travail.\nHe has an intriguing personality.\tIl a une personnalité intrigante.\nHe has been sick for a long time.\tIl a été longtemps malade.\nHe has been sick in bed all week.\tIl est resté malade toute la semaine au lit.\nHe has his hair cut once a month.\tIl se fait couper les cheveux une fois par mois.\nHe has no house in which to live.\tIl n'a pas de maison où vivre.\nHe has nothing to complain about.\tIl n'a aucune raison de se plaindre.\nHe has overstepped his authority.\tIl a outrepassé son autorité.\nHe has some knowledge of editing.\tIl a quelque connaissance en édition.\nHe has the ability to do the job.\tIl a les capacités pour faire ce travail.\nHe has the least money of us all.\tC'est lui qui a le moins d'argent de nous tous.\nHe has the same camera as I have.\tIl a le même appareil photo que moi.\nHe has trouble remembering names.\tIl a des difficultés à se rappeler les noms.\nHe has trouble remembering names.\tIl éprouve des difficultés à se souvenir des noms.\nHe has trouble waking up on time.\tIl a du mal à se réveiller à l'heure.\nHe hasn't answered my letter yet.\tIl n'a pas encore répondu à ma lettre.\nHe hasn't written the letter yet.\tIl n'a pas encore écrit la lettre.\nHe inherited an old wooden chest.\tIl a hérité d'un vieux coffre en bois.\nHe inherited an old wooden chest.\tIl hérita d'un vieux coffre de bois.\nHe introduced his daughter to me.\tIl me présenta sa fille.\nHe introduced his daughter to me.\tIl m'a présenté sa fille.\nHe is a man who loves ceremonies.\tC'est un homme qui adore les cérémonies.\nHe is a potential world champion.\tC'est un champion du monde en puissance.\nHe is a student at a high school.\tIl est lycéen.\nHe is a wolf in sheep's clothing.\tLe garçon est un loup déguisé en mouton.\nHe is accustomed to working hard.\tIl a l'habitude de travailler dur.\nHe is acquainted with the custom.\tIl a connaissance de la tradition.\nHe is ahead of us in mathematics.\tIl est devant nous en mathématiques.\nHe is always losing his umbrella.\tIl perd tout le temps son parapluie.\nHe is always making a fool of me.\tIl se moque toujours de moi.\nHe is anxious to know the result.\tIl est impatient de connaître le résultat.\nHe is beginning to lose his hair.\tIl commence à perdre ses cheveux.\nHe is expected to come home soon.\tOn s'attend à ce qu'il rentre bientôt à la maison.\nHe is fond of this kind of music.\tIl aime beaucoup ce genre de musique.\nHe is fond of this kind of music.\tIl aime ce genre de musique.\nHe is in good physical condition.\tIl est en bonne condition physique.\nHe is independent of his parents.\tIl est indépendant de ses parents.\nHe is living apart from his wife.\tIl vit séparé de sa femme.\nHe is not a singer, but an actor.\tIl n'est pas chanteur, mais acteur.\nHe is not as tall as his brother.\tIl n'est pas aussi grand que son frère.\nHe is nothing more than a coward.\tIl n'est rien d'autre qu'un lâche.\nHe is old enough to travel alone.\tIl est assez grand pour voyager seul.\nHe is pleased with his new shoes.\tIl est content de ses nouvelles chaussures.\nHe is staying with his relatives.\tIl reste avec sa famille.\nHe is still sitting on the bench.\tIl est toujours assis sur le banc.\nHe is still sitting on the bench.\tIl est encore assis sur le banc.\nHe is the chief of my department.\tIl est le chef de mon département.\nHe is the father of two children.\tIl est père de deux fils.\nHe is the greatest living artist.\tC'est le plus grand artiste vivant.\nHe is the last man I want to see.\tC'est bien la dernière personne que je veux voir.\nHe is twice as heavy as his wife.\tIl est deux fois plus lourd que sa femme.\nHe is uncertain about his future.\tIl n'est pas sûr de ce que l'avenir lui réserve.\nHe is very stingy with his money.\tIl est très radin avec son argent.\nHe is well liked by his students.\tIl est très apprécié de ses étudiants.\nHe is, indeed, a man of his word.\tC'est vraiment un homme de parole.\nHe keeps making the same mistake.\tIl fait constamment la même erreur.\nHe keeps making the same mistake.\tIl commet toujours la même erreur.\nHe kicked the ball with his foot.\tIl tira dans le ballon avec son pied.\nHe knows a lot about butterflies.\tIl s'y connait beaucoup sur les papillons.\nHe knows every inch of this area.\tIl connaît chaque recoin de cet endroit.\nHe knows every inch of this area.\tIl connaît tout dans ce domaine.\nHe knows every inch of this area.\tIl connaît cet endroit comme sa poche.\nHe knows how to behave in public.\tIl sait comment se tenir en public.\nHe knows how to fly a helicopter.\tIl sait piloter un hélicoptère.\nHe knows what he's talking about.\tIl sait de quoi il parle.\nHe leaped over the shallow ditch.\tIl sauta par-dessus le fossé peu profond.\nHe leaves for New York next week.\tIl part pour New York la semaine prochaine.\nHe left Japan never to come back.\tIl a quitté le Japon pour ne jamais revenir.\nHe left for no reason whatsoever.\tIl partit sans aucune raison.\nHe left for no reason whatsoever.\tIl est parti sans aucune raison.\nHe let the dog loose in the yard.\tIl laissa le chien en liberté dans la cour.\nHe let the dog loose in the yard.\tIl a laissé le chien en liberté dans la cour.\nHe likes French more than German.\tIl aime le français plus que l'allemand.\nHe likes sports as well as music.\tIl aime le sport en plus de la musique.\nHe lived in Ankara for six years.\tIl a vécu à Ankara pendant six ans.\nHe lived to be seventy years old.\tIl a vécu jusqu'à soixante-dix ans.\nHe lives by himself in the woods.\tIl vit tout seul dans les bois.\nHe looked back over his shoulder.\tIl regarda par-dessus son épaule.\nHe lost his ticket for the movie.\tIl a perdu son billet pour le film.\nHe made up a story about the dog.\tIl inventa une histoire au sujet du chien.\nHe made up a story about the dog.\tIl a inventé une histoire au sujet du chien.\nHe made up his mind to marry her.\tIl s'est fait à l'idée de l'épouser.\nHe made up his mind to marry her.\tIl se fit à l'idée de l'épouser.\nHe made up his mind to marry her.\tIl s'est décidé à l'épouser.\nHe made up his mind to marry her.\tIl se décida à l'épouser.\nHe makes good use of his talents.\tIl fait bon usage de ses talents.\nHe managed to climb the mountain.\tIl a réussi à escalader la montagne.\nHe may have missed his usual bus.\tIl peut avoir manqué son bus habituel.\nHe narrowly escaped being killed.\tIl a échappé à la mort de justesse.\nHe never gets invited to parties.\tIl ne se fait jamais inviter à des fêtes.\nHe never speaks unless spoken to.\tIl ne parle jamais si on ne lui parle pas.\nHe never takes me out for dinner.\tIl ne m'emmène jamais dîner dehors.\nHe often drives his father's car.\tIl conduit souvent la voiture de son père.\nHe often quotes from Shakespeare.\tIl cite souvent Shakespeare.\nHe owes his success to good luck.\tIl doit son succès à la chance.\nHe owes his success to good luck.\tIl doit son succès à la bonne fortune.\nHe played the piano and she sang.\tIl jouait du piano et elle chantait.\nHe pressed the button and waited.\tIl appuya sur le bouton et attendit.\nHe pretended not to be listening.\tIl faisait semblant de ne pas écouter.\nHe promises not to drink anymore.\tIl promet de ne plus boire.\nHe proved to be an ideal husband.\tIl s'avéra être un mari idéal.\nHe put the ring on Mary's finger.\tIl passa l'anneau au doigt de Marie.\nHe put the ring on Mary's finger.\tIl passa la bague au doigt de Marie.\nHe quickly scanned my manuscript.\tIl parcourut rapidement mon manuscrit.\nHe raised his hat when he saw me.\tIl leva son chapeau quand il me vit.\nHe ran away as soon as he saw me.\tIl s'est éclipsé dès qu'il m'a vu.\nHe ran past without noticing her.\tIl courut à côté, sans la remarquer.\nHe ran through the streets naked.\tIl courut nu à travers les rues.\nHe ran through the streets naked.\tIl a couru nu à travers les rues.\nHe read the letter over and over.\tIl relut la lettre à plusieurs reprises.\nHe readily agreed to my proposal.\tIl a accepté tout de suite ma proposition.\nHe repaired his watch by himself.\tIl répara sa montre par lui-même.\nHe repaired his watch by himself.\tIl a réparé sa montre par lui-même.\nHe repaired his watch by himself.\tIl répara sa montre par ses propres moyens.\nHe repaired his watch by himself.\tIl a réparé sa montre par ses propres moyens.\nHe risked losing all his fortune.\tIl a risqué de perdre toute sa fortune.\nHe robbed me of every cent I had.\tIl m'a volé chaque centime que j'avais.\nHe sacrificed everything for you.\tIl vous a tout sacrifié.\nHe sacrificed everything for you.\tIl t'a tout sacrifié.\nHe said that it was nine o'clock.\tIl a dit qu'il était neuf heures.\nHe said, \"I want to be a doctor.\"\tIl a dit : \"Je veux devenir médecin.\"\nHe sat and listened to the radio.\tIl s'assit et écouta la radio.\nHe sat at the edge of the stream.\tIl s'est assis au bord du ruisseau.\nHe sat surrounded by young girls.\tIl s'assît entouré par des jeunes filles.\nHe scraped the mud off his boots.\tIl gratta la boue de ses bottes.\nHe seldom, if ever, reads a book.\tIl lit rarement, sinon jamais.\nHe severely criticized the mayor.\tIl critiqua sévèrement le maire.\nHe shook his son by the shoulder.\tIl secoua son fils par les épaules.\nHe shook his son by the shoulder.\tIl a secoué son fils par les épaules.\nHe should be back any minute now.\tIl devrait être de retour à tout moment maintenant.\nHe should be back any minute now.\tIl devrait être de retour à tout instant maintenant.\nHe showed signs of great emotion.\tIl montra des signes de grande émotion.\nHe silently went out of the room.\tIl quitta la pièce en silence.\nHe sold his business and retired.\tIl vendit son affaire et partit à la retraite.\nHe speaks English better than me.\tIl parle mieux l'anglais que moi.\nHe stared at me and said nothing.\tIl me fixa et ne dit rien.\nHe stopped reading the newspaper.\tIl a cessé de lire le journal.\nHe stuck his knife into the tree.\tIl planta son couteau dans l'arbre.\nHe supports the Democratic Party.\tIl soutient le parti démocrate.\nHe talks as if he were a teacher.\tIl parle comme s'il était un professeur.\nHe taught a group of Indian boys.\tIl a enseigné au groupe de garçons indiens.\nHe taught me how to write a poem.\tIl m'a appris à écrire un poème.\nHe telephoned me again and again.\tIl m'a téléphoné sans arrêt.\nHe thanked her for her kind help.\tIl l'a remerciée pour son aide attentionnée.\nHe thinks of nothing but himself.\tIl ne pense à rien d'autre qu'à lui-même.\nHe thought that I was very tired.\tIl pensait que j'étais très fatigué.\nHe told me good things about you.\tIl m'a dit de bonnes choses à ton sujet.\nHe told me good things about you.\tIl m'a dit de bonnes choses à votre sujet.\nHe told me he would go to Venice.\tIl m'a dit qu'il irait à Venise.\nHe told me not to drive too fast.\tIl me demanda de ne pas conduire trop vite.\nHe told me the story of his life.\tIl me raconta l'histoire de sa vie.\nHe told me the story of his life.\tIl me conta l'histoire de sa vie.\nHe told the students to be quiet.\tIl a dit aux étudiants d'être silencieux.\nHe took a coin out of his pocket.\tIl sortit une pièce de sa poche.\nHe took the wrong bus by mistake.\tIl a pris le mauvais bus par erreur.\nHe tried to soothe the angry man.\tIl a essayé de calmer l'homme en colère.\nHe turned to his friend for help.\tIl se tourna vers son ami pour qu'il l'aide.\nHe turned to his friend for help.\tIl s'est tourné vers son ami pour qu'il l'aide.\nHe used his umbrella as a weapon.\tIl a utilisé son parapluie comme arme.\nHe usually goes to work at 8 a.m.\tHabituellement, il part au travail à 8 heures du matin.\nHe usually went to bed at eleven.\tIl allait se coucher à onze heures d'habitude.\nHe wants a watch just like yours.\tIl veut exactement la même montre que la tienne.\nHe wants something cold to drink.\tIl veut boire quelque chose de froid.\nHe wants to get a new dictionary.\tIl veut se procurer un nouveau dictionnaire.\nHe wants to get rid of his books.\tIl veut se débarrasser de ses livres.\nHe was a weak and delicate child.\tC'était un enfant chétif et délicat.\nHe was absent because of illness.\tIl était absent pour cause de maladie.\nHe was accused of stealing money.\tIl fut accusé d'avoir volé de l'argent.\nHe was accused of stealing money.\tIl fut accusé de vol d'argent.\nHe was accused of stealing money.\tIl était accusé de vol d'argent.\nHe was banished from the kingdom.\tIl fut banni du royaume.\nHe was busy when I called him up.\tIl était occupé lorsque je l'ai appelé.\nHe was conscious of her presence.\tIl était conscient de sa présence.\nHe was elected mayor of the city.\tIl a été élu Maire de la ville.\nHe was framed on a murder charge.\tIl s'est fait incriminer de meurtre.\nHe was holding a pen in his hand.\tIl tenait un stylo dans la main.\nHe was involved in a murder case.\tIl fut impliqué dans une affaire de meurtre.\nHe was satisfied with the result.\tIl a été satisfait du résultat.\nHe was successful in the attempt.\tSon essai a été réussi.\nHe was the last person to arrive.\tIl fut le dernier à arriver.\nHe was wearing a threadbare suit.\tIl portait un costume élimé.\nHe was worn out when he got home.\tIl était épuisé quand il est rentré chez lui.\nHe weighed the stone in his hand.\tIl soupesa la pierre dans sa main.\nHe weighs a lot more than before.\tIl pèse beaucoup plus qu'avant.\nHe went backstage after the show.\tIl est allé en coulisses après le spectacle.\nHe went backstage after the show.\tIl est allé dans les coulisses après le show.\nHe went out in spite of the rain.\tIl sortit malgré la pluie.\nHe went to see her the other day.\tIl est allé la voir l'autre jour.\nHe will arrive in Kyoto tomorrow.\tIl arrivera à Kyoto demain.\nHe will arrive in Paris tomorrow.\tIl arrivera à Paris demain.\nHe will be in time for the train.\tIl sera à l'heure pour le train.\nHe will forever be in our hearts.\tIl demeurera à jamais dans nos cœurs.\nHe will make a good team captain.\tIl fera un bon capitaine.\nHe will make a good team captain.\tIl fera un bon capitaine d'équipe.\nHe wiped the sweat from his brow.\tIl essuya la sueur de son front.\nHe wiped the sweat from his face.\tIl essuya la sueur de son visage.\nHe wondered why she did not come.\tIl se demanda pourquoi elle n'était pas venue.\nHe works for an American company.\tIl travaille pour une société étasunienne.\nHe wrote it down in his notebook.\tIl le nota dans son carnet.\nHe wrote to me from time to time.\tIl m'écrivit de temps à autre.\nHe wrote to me from time to time.\tIl m'écrivit de temps en temps.\nHe wrote to me from time to time.\tIl m'a écrit de temps à autre.\nHe wrote to me from time to time.\tIl m'a écrit de temps en temps.\nHe'll come on foot or by bicycle.\tIl viendra à pied ou à bicyclette.\nHe'll do whatever you ask him to.\tIl fera tout ce que tu lui demanderas.\nHe'll finish the job by tomorrow.\tIl finira le travail pour demain.\nHe'll have to do this task again.\tIl devra refaire cette tâche.\nHe's English, but lives in India.\tIl est Anglais mais habite en Inde.\nHe's a carbon copy of his father.\tC'est le portrait craché de son père.\nHe's a carbon copy of his father.\tIl ressemble comme deux gouttes d’eau à son père.\nHe's a crybaby, just like always.\tC'est un pleurnichard, comme toujours.\nHe's a professional photographer.\tIl est photographe professionnel.\nHe's getting soft in his old age.\tIl devient ramollo avec l'âge.\nHe's more than likely to be late.\tIl est plus que probable qu'il sera en retard.\nHe's not at all afraid of snakes.\tIl n'a pas du tout peur des serpents.\nHe's not at all afraid of snakes.\tIl ne craint pas du tout les serpents.\nHe's old enough to be her father.\tIl est assez vieux pour être son père.\nHe's sitting in the waiting room.\tIl est assis dans la salle d'attente.\nHe's sitting in the waiting room.\tIl est assis en salle d'attente.\nHe's three years older than I am.\tIl a trois ans de plus que moi.\nHe's wanted for grand theft auto.\tIl est recherché pour vol de véhicule.\nHealth is essential to happiness.\tLa santé est indispensable au bonheur.\nHelp me with my homework, please.\tAide-moi avec mon devoir, s’il te plaît.\nHelp yourself to a piece of cake.\tServez-vous de gâteau.\nHelp yourself to a piece of cake.\tServez-vous une part de gâteau.\nHelp yourself to a piece of cake.\tPrenez une part de gâteau.\nHelp yourself to a piece of cake.\tPrends une part de gâteau.\nHer beauty cast a spell over him.\tSa beauté le charma.\nHer dream will one day come true.\tUn jour ses rêves se réaliseront.\nHer face was drenched with sweat.\tSon visage était trempé de sueur.\nHer father passed away last week.\tSon père est décédé la semaine dernière.\nHer husband is an excellent cook.\tSon mari est un excellent cuisinier.\nHer late husband was a violinist.\tSon dernier mari était violoniste.\nHer late husband was a violinist.\tSon défunt mari était violoniste.\nHer long hair was completely wet.\tSa longue chevelure était complètement mouillée.\nHer mother will continue to work.\tSa mère continuera à travailler.\nHer red dress made her stand out.\tSa robe rouge la particularisa.\nHer red dress made her stand out.\tSa robe rouge la distingua.\nHer red dress made her stand out.\tSa robe rouge l'a distinguée.\nHer red dress made her stand out.\tSa robe rouge l'a particularisée.\nHere is the fish my mother baked.\tVoici le poisson que ma mère a cuit.\nHere is the house where he lived.\tVoici la maison où il a vécu.\nHere's an important announcement.\tVoici une annonce importante.\nHey, where did you two come from?\tEh, d'où êtes-vous venus, tous les deux ?\nHey, where did you two come from?\tEh, d'où êtes-vous venues, toutes les deux ?\nHey, you two! What are you doing?\tHé, vous deux ! Que faites-vous ?\nHis behavior is worthy of praise.\tSa conduite est digne d'éloges.\nHis brother was lost in the town.\tSon frère s'est perdu en ville.\nHis criticisms were out of place.\tSes critiques étaient déplacées.\nHis father has never scolded him.\tSon père ne l'a jamais grondé.\nHis guess turned out to be right.\tSa supposition se révéla juste.\nHis house is surrounded by trees.\tSa maison est entourée d'arbres.\nHis identity must be kept secret.\tSon identité doit être gardée secrète.\nHis office is very close to mine.\tSon bureau est très proche du mien.\nHis opinion was the same as mine.\tSon opinion était la même que la mienne.\nHis paintings seem strange to me.\tSes tableaux me semblent étranges.\nHis picture was in the newspaper.\tSa photo était dans le journal.\nHis rude behavior makes me angry.\tSon comportement insultant m'a énervé.\nHis shirt was stained with sauce.\tSa chemise était tachée de sauce.\nHis son was expelled from school.\tSon fils a été expulsé de l'école.\nHis story turned out to be false.\tSon histoire se révéla être fausse.\nHis wife doesn't seem ugly to me.\tSa femme ne me semble pas laide.\nHis wife doesn't seem ugly to me.\tSa femme ne me parait pas laide.\nHis wife opened the door for him.\tSa femme lui ouvrit la porte.\nHis wife seems to be a foreigner.\tSa femme semble être étrangère.\nHis words rendered me speechless.\tÀ ses mots, je restais sans voix.\nHistory is not his major subject.\tL'Histoire n'est pas sa spécialité.\nHonesty will pay in the long run.\tL'honnêteté paye à la longue.\nHow about making me a cup of tea?\tEt si vous me faisiez une tasse de thé ?\nHow about wearing contact lenses?\tPourquoi ne portes-tu pas de lentilles de contact ?\nHow about wearing contact lenses?\tPourquoi ne portez-vous pas de lentilles de contact ?\nHow are you feeling this morning?\tComment te sens-tu ce matin ?\nHow are you feeling this morning?\tComment vous sentez-vous, ce matin ?\nHow come you didn't say anything?\tPourquoi n'as-tu rien dit ?\nHow could we have been so stupid?\tComment aurions-nous pu être aussi stupides ?\nHow did Tom get that information?\tComment Tom a-t-il eu cette information ?\nHow did you deal with the matter?\tComment avez-vous appréhendé le problème ?\nHow did you get out of your room?\tComment es-tu sorti de ta chambre ?\nHow did you get out of your room?\tComment es-tu sortie de ta chambre ?\nHow did you get out of your room?\tComment êtes-vous sorti de votre chambre ?\nHow did you get out of your room?\tComment êtes-vous sortis de votre chambre ?\nHow did you get out of your room?\tComment êtes-vous sorties de votre chambre ?\nHow did you get out of your room?\tComment êtes-vous sortie de votre chambre ?\nHow did you handle the situation?\tComment as-tu géré la situation ?\nHow did you handle the situation?\tComment avez-vous géré la situation ?\nHow did you know one was missing?\tComment savais-tu qu'il en manquait un ?\nHow did you know one was missing?\tComment saviez-vous qu'il en manquait un ?\nHow did you obtain this painting?\tComment avez-vous obtenu ce tableau ?\nHow did you obtain this painting?\tComment as-tu obtenu ce tableau ?\nHow did you spend your free time?\tComment avez-vous passé votre temps libre ?\nHow do they expect us to survive?\tComment comptent-ils que nous survivions ?\nHow do they expect us to survive?\tComment comptent-elles que nous survivions ?\nHow do we know this isn't a trap?\tComment sais-tu qu'il ne s'agit pas d'un piège ?\nHow do we know this isn't a trap?\tComment savez-vous qu'il ne s'agit pas d'un piège ?\nHow do you know so much about it?\tComment en savez-vous tant à ce sujet ?\nHow do you know so much about it?\tComment en sais-tu tant à ce sujet ?\nHow do you know what color it is?\tComment savez-vous de quelle couleur il s'agit ?\nHow do you know what color it is?\tComment sais-tu de quelle couleur il s'agit ?\nHow do you say \"hello\" in French?\tComment dit-on \"hello\" en français ?\nHow do you tell each other apart?\tComment les distingue-t-on l'un de l'autre ?\nHow do you tell each other apart?\tComment les distingue-t-on l'une de l'autre ?\nHow do you think it made me feel?\tComment penses-tu que ça m'a fait me sentir ?\nHow do you think it made me feel?\tComment pensez-vous que ça m'a fait me sentir ?\nHow does it feel to be back home?\tQu'est-ce que ça fait d'être de retour chez soi ?\nHow is the investigation's going?\tComment se déroule l'enquête ?\nHow is your weekend going so far?\tComment ton week-end se déroule-t-il jusqu'à présent ?\nHow is your weekend going so far?\tComment votre week-end se déroule-t-il jusqu'à présent ?\nHow long have you lived in Sanda?\tCombien de temps as-tu vécu à Sanda ?\nHow long is your spring vacation?\tCombien de temps durent tes vacances de printemps ?\nHow many are there in your class?\tCombien y en a-t-il dans ta classe ?\nHow many are there in your class?\tCombien sont là dans ta classe ?\nHow many fingers am I holding up?\tCombien de doigts ?\nHow many people are in your crew?\tCombien de gens font-ils partie de votre équipage ?\nHow many people are in your crew?\tCombien de gens font-ils partie de ton équipage ?\nHow many people are in your crew?\tCombien de gens compte votre équipage ?\nHow many people are in your crew?\tCombien de gens compte ton équipage ?\nHow many people do you know well?\tCombien de personnes est-ce que vous connaissez bien ?\nHow many years was Tom in Boston?\tCombien d'années Tom a-t-il été à Boston ?\nHow much does this umbrella cost?\tCombien coûte ce parapluie ?\nHow much does this umbrella cost?\tQuel est le prix de ce parapluie ?\nHow much is this tour per person?\tCombien coûte cette excursion par personne ?\nHow old might his grandfather be?\tQuel âge pourrait bien avoir son grand-père ?\nHow soon can you get to my house?\tEn combien de temps peux-tu arriver chez moi ?\nHow soon can you get to my house?\tEn combien de temps pouvez-vous arriver chez moi ?\nHow would you like us to proceed?\tComment voudriez-vous que nous procédions ?\nHow would you like us to proceed?\tComment voudrais-tu que nous procédions ?\nHurry up, or you'll miss the bus.\tDépêche-toi ou tu vas manquer le bus.\nHurry up, or you'll miss the bus.\tDépêchez-vous ou vous allez manquer le car.\nI actually don't know the answer.\tJe ne connais en réalité pas la réponse.\nI admit there are a few problems.\tJ'admets qu'il y a quelques problèmes.\nI advised him to give up smoking.\tJe lui ai conseillé d'arrêter de fumer.\nI advised him to give up smoking.\tJe lui conseillai d'arrêter de fumer.\nI advised him to keep the secret.\tJe lui ai conseillé de garder le secret.\nI agree with what you've written.\tJe suis d'accord avec ce que vous avez écrit.\nI agree with what you've written.\tJe suis d'accord avec ce que tu as écrit.\nI agreed to help him in his work.\tJe fus d'accord de l'aider dans son travail.\nI agreed to help him in his work.\tJ'ai été d'accord de l'aider dans son travail.\nI allowed her to go to the party.\tJe lui ai permis d'aller à la soirée.\nI already told you he isn't here.\tJe vous ai déjà dit qu'il n'est pas ici.\nI already told you he isn't here.\tJe t'ai déjà dit qu'il n'est pas ici.\nI always counted you as a friend.\tJe t'ai toujours compté au nombre de mes amis.\nI always counted you as a friend.\tJe t'ai toujours comptée au nombre de mes amis.\nI always counted you as a friend.\tJe t'ai toujours comptée au nombre de mes amies.\nI always counted you as a friend.\tJe vous ai toujours comptée au nombre de mes amis.\nI always counted you as a friend.\tJe vous ai toujours comptée au nombre de mes amies.\nI always counted you as a friend.\tJe vous ai toujours compté au nombre de mes amis.\nI am ashamed of my son's conduct.\tJ'ai honte du comportement de mon fils.\nI am convinced of your innocence.\tJe suis convaincu de ton innocence.\nI am eating lunch with my sister.\tJe suis en train de déjeuner avec ma sœur.\nI am expecting a letter from her.\tJe m'attendais à une lettre de sa part.\nI am in favor of the proposition.\tJe suis d'accord avec cette proposition.\nI am interested in Asian history.\tJe suis intéressé par l'histoire de l'Asie.\nI am leaving town for a few days.\tJe quitte la ville pour quelques jours.\nI am leaving town for a few days.\tJe m'éloigne de la ville pour quelques jours.\nI am looking for a jewelry store.\tJe cherche une bijouterie.\nI am losing my patience with you.\tJe perds patience avec toi.\nI am losing my patience with you.\tJe perds patience avec vous.\nI am married and I have two sons.\tJe suis mariée et j'ai deux fils.\nI am married and I have two sons.\tJe suis marié et j'ai deux fils.\nI am not a doctor, but a teacher.\tJe ne suis pas médecin, mais professeur.\nI am not a doctor, but a teacher.\tJe ne suis pas médecin, mais enseignant.\nI am not a doctor, but a teacher.\tJe ne suis pas médecin, mais instituteur.\nI am not the person I used to be.\tJe ne suis pas la personne que je fus.\nI am not the person I used to be.\tJe ne suis pas la personne que j'étais.\nI am responsible for the mistake.\tJe suis responsable de cette erreur.\nI am taking a couple of days off.\tJe me prends quelques jours libres.\nI am taking a couple of days off.\tJe prends quelques jours de congé.\nI am thankful for the food I eat.\tMerci pour le repas, je vous en suis reconnaissant.\nI am tired of my monotonous life.\tJ'en ai assez de ma vie monotone.\nI am very glad to meet you today.\tJe suis très heureux de te rencontrer aujourd'hui.\nI appreciate anything you can do.\tJ'apprécie tout ce que tu peux faire.\nI appreciate anything you can do.\tJ'apprécie tout ce que vous pouvez faire.\nI appreciate what you did for me.\tJ'apprécie ce que tu as fait pour moi.\nI asked Tom to keep an open mind.\tJ'ai demandé à Tom de garder un esprit ouvert.\nI asked him not to drive so fast.\tJe lui ai demandé de ne pas conduire si vite.\nI attempted to solve the problem.\tJ'ai essayé de résoudre le problème.\nI attended the meeting yesterday.\tJ'ai assisté à la réunion d'hier.\nI barely know anything about you.\tJe n'en sais guère à votre sujet.\nI barely know anything about you.\tJe n'en sais guère à ton sujet.\nI beg of you to listen carefully.\tJe te prie d'écouter attentivement.\nI believe she is a charming girl.\tJe pense que c'est une fille charmante.\nI believe that there's a mistake.\tJe crois qu'il y a une erreur.\nI believe things will get better.\tJe crois que les choses vont s'améliorer.\nI bet you didn't see that coming.\tJe parie que tu n'as pas vu ça venir.\nI bet you didn't see that coming.\tJe parie que vous n'avez pas vu ça venir.\nI bought this book the other day.\tJ'ai acheté ce livre l'autre jour.\nI bought this book the other day.\tJ'ai fait l'acquisition de ce livre l'autre jour.\nI brought you a little something.\tJe t'ai apporté un petit quelque chose.\nI brush my teeth after breakfast.\tJe me lave les dents après le petit-déjeuner.\nI can hardly wait to get started.\tJ'ai du mal à me retenir de commencer.\nI can hardly wait until tomorrow.\tÇa va être dur d'attendre jusqu'à demain.\nI can hear a saxophone somewhere.\tJe peux entendre un saxophone quelque part.\nI can hear the wind in the trees.\tJ'entends le vent dans les arbres.\nI can't answer all the questions.\tJe ne peux pas répondre à toutes les questions.\nI can't believe I just said that.\tJe n'arrive pas à croire que je vienne de dire ça.\nI can't believe I'm hearing this.\tJe n'arrive pas à croire que j'entends ça.\nI can't believe how stupid I was.\tJe n'arrive pas à croire combien j'ai été stupide.\nI can't believe it's that simple.\tJe n'arrive pas à croire que ce soit aussi simple.\nI can't believe that didn't work.\tJe n'arrive pas à croire que ça n'ait pas fonctionné.\nI can't believe they made us pay.\tJe n'arrive pas à croire qu'ils nous aient fait payer.\nI can't believe they made us pay.\tJe n'arrive pas à croire qu'elles nous aient fait payer.\nI can't believe we fell for that.\tJe n'arrive pas à croire que nous nous soyons fait berner par cela.\nI can't believe we're doing this.\tJe n'arrive pas à croire que nous le fassions.\nI can't believe what I'm hearing.\tJe n'arrive pas à croire à ce que j'entends.\nI can't believe you're giving up.\tJe n'arrive pas à croire que vous abandonniez.\nI can't believe you're giving up.\tJe n'arrive pas à croire que tu abandonnes.\nI can't come up with a good idea.\tJe n'arrive pas à trouver une bonne idée.\nI can't do this without you guys.\tJe ne peux pas faire ça sans vous, les mecs.\nI can't eat fruit in the morning.\tJe ne peux pas manger de fruits le matin.\nI can't force you to do anything.\tJe ne peux vous forcer à faire quoi que ce soit.\nI can't force you to do anything.\tJe ne peux te forcer à faire quoi que ce soit.\nI can't force you to do anything.\tJe ne peux pas vous forcer à faire quoi que ce soit.\nI can't force you to do anything.\tJe ne peux pas te forcer à faire quoi que ce soit.\nI can't hear what they're saying.\tJe ne parviens pas à entendre ce qu'ils disent.\nI can't hear what they're saying.\tJe ne parviens pas à entendre ce qu'elles disent.\nI can't help admiring his talent.\tJe ne peux pas m'empêcher d'admirer son talent.\nI can't imagine life without you.\tJe ne peux imaginer la vie sans vous.\nI can't imagine living like that.\tJe ne peux pas imaginer de vivre ainsi.\nI can't keep you here any longer.\tJe ne peux pas te garder ici plus longtemps.\nI can't keep you here any longer.\tJe ne peux pas vous garder ici plus longtemps.\nI can't remember all their names.\tJe ne peux me souvenir de tous leurs noms.\nI can't remember all their names.\tJe ne parviens pas à me souvenir de tous leurs noms.\nI can't remember all their names.\tJe n'arrive pas à me souvenir de tous leurs noms.\nI can't remember his explanation.\tJe n'arrive pas à me rappeler de son explication.\nI can't remember how to go there.\tJe n'arrive pas à me rappeler comment s'y rendre.\nI can't remember how to go there.\tJe n'arrive pas à me rappeler comment y aller.\nI can't remember the combination.\tJe ne me souviens pas de la combinaison.\nI can't sing as well as Mary did.\tJe ne peux pas chanter aussi bien que Marie l'a fait.\nI can't spend money I don't have.\tJe ne peux pas dépenser l'argent que je n'ai pas.\nI can't stand the sight of blood.\tJe ne supporte pas la vue du sang.\nI can't stand the sight of blood.\tJe ne peux pas supporter la vue du sang.\nI can't stand this pain any more.\tJe ne peux plus supporter cette douleur.\nI can't stand this pain any more.\tJe n'arrive plus à supporter cette douleur.\nI can't stop thinking about that.\tJe ne peux pas m'empêcher d'y penser.\nI can't tell you where Tom lives.\tJe ne peux pas vous dire où Tom vit.\nI can't tell you where Tom lives.\tJe ne peux pas te dire où Tom vit.\nI can't understand what happened.\tJe n'arrive pas à comprendre ce qui s'est passé.\nI can't understand what happened.\tJe ne parviens pas à comprendre ce qui est arrivé.\nI can't understand what she says.\tCe qu'elle dit est incompréhensible.\nI can't wait for Valentine's Day!\tVivement la Saint-Valentin !\nI can't wait for school to start.\tJe suis impatient que l'école commence.\nI can't wait for school to start.\tJe suis impatiente que l'école commence.\nI can't wait for school to start.\tJ'ai hâte que ce soit la rentrée.\nI can't wait to go on a vacation.\tJ'ai hâte de partir en vacances.\nI cannot be understood in German.\tJe ne puis me faire comprendre en allemand.\nI cannot understand what you say.\tJe ne comprends pas ce que tu dis.\nI carried the box on my shoulder.\tJ'ai porté la boîte sur mon épaule.\nI consider him a great scientist.\tJe le considère comme un grand scientifique.\nI could answer all the questions.\tJe pourrais répondre à toutes les questions.\nI could answer all the questions.\tJe pouvais répondre à toutes les questions.\nI could see Tokyo Tower far away.\tJe pouvais voir la tour de Tokyo au loin.\nI could sense that Tom was upset.\tJe pouvais sentir que Tom était contrarié.\nI did not mean to disappoint her.\tJe ne voulais pas la décevoir.\nI didn't ask you to come with us.\tJe ne vous ai pas demandé de venir avec nous.\nI didn't ask you to come with us.\tJe ne t'ai pas demandé de venir avec nous.\nI didn't ask you to stay with me.\tJe ne t'ai pas demandé de rester avec moi.\nI didn't deserve to go to prison.\tJe ne méritais pas d'aller en prison.\nI didn't expect to find you here.\tJe ne m'attendais pas à vous trouver ici.\nI didn't expect to find you here.\tJe ne m'attendais pas à te trouver ici.\nI didn't go to school last month.\tJe ne suis pas allé à l'école le mois dernier.\nI didn't have the sense to do so.\tJe n'eus pas le bon sens de le faire.\nI didn't have the sense to do so.\tJe n'ai pas eu le bon sens de le faire.\nI didn't know what to say to her.\tJe n'ai pas su que lui dire.\nI didn't know what to say to him.\tJe ne sus pas quoi lui dire.\nI didn't know what to say to him.\tJe n'ai pas su quoi lui dire.\nI didn't know what to say to him.\tJe ne savais pas quoi lui dire.\nI didn't know what to say to him.\tJe ne savais quoi lui dire.\nI didn't know you were a dentist.\tJe ne savais pas que tu étais dentiste.\nI didn't know you were a dentist.\tJe ne savais pas que vous étiez dentiste.\nI didn't need to paint the fence.\tJe n'ai pas eu besoin de peindre la clôture.\nI didn't need to paint the fence.\tJe n'ai pas eu besoin de peindre la palissade.\nI didn't need to paint the fence.\tJe n'eus pas besoin de peindre la clôture.\nI didn't need to paint the fence.\tJe n'eus pas besoin de peindre la palissade.\nI didn't say it wasn't OK to eat.\tJe n'ai pas dit que c'était mal de manger.\nI didn't sleep at all last night.\tJe n'ai pas dormi du tout la nuit dernière.\nI didn't take the wrong umbrella.\tJe n'ai pas pris le mauvais parapluie.\nI didn't think I needed any help.\tJe ne pensais pas avoir besoin d'une aide quelconque.\nI didn't think I needed any help.\tJe ne pensais pas avoir besoin d'une quelconque aide.\nI didn't think I'd meet you here.\tJe ne pensais pas vous rencontrer ici.\nI didn't think I'd meet you here.\tJe ne pensais pas que je vous rencontrerais ici.\nI didn't think it really existed.\tJe ne pensais pas que ça existait vraiment.\nI didn't want to be presumptuous.\tJe n'ai pas voulu être présomptueux.\nI didn't want to be presumptuous.\tJe n'ai pas voulu être présomptueuse.\nI didn't want you to make a fuss.\tJe ne voulais pas que vous fassiez d'histoires.\nI didn't want you to make a fuss.\tJe ne voulais pas que tu fasses d'histoires.\nI do hope you enjoyed the dinner.\tJ'espère vraiment que vous avez apprécié le dîner.\nI do not believe in magic spells.\tJe ne crois pas aux sortilèges.\nI do not believe that God exists.\tJe ne crois pas que Dieu existe.\nI do not have anything in my bag.\tJe n'ai rien dans mon sac.\nI do not know anything about him.\tJe ne sais rien de lui.\nI do not know how to drive a car.\tJ'ignore comment conduire une voiture.\nI do not know how to drive a car.\tJe ne sais pas conduire une voiture.\nI do not think that he will come.\tJe ne pense pas qu'il viendra.\nI don't appreciate being lied to.\tJe n'apprécie pas qu'on me mente.\nI don't appreciate your attitude.\tJe n'apprécie pas votre attitude.\nI don't appreciate your attitude.\tJe n'apprécie pas ton attitude.\nI don't believe in group therapy.\tJe ne crois pas à la thérapie de groupe.\nI don't believe that's the truth.\tJe ne crois pas que ça soit la vérité.\nI don't believe what I'm hearing.\tJe n'en crois pas mes oreilles.\nI don't blame you for doing that.\tJe ne vous reproche pas de le faire.\nI don't blame you for doing that.\tJe ne te reproche pas de le faire.\nI don't care about my reputation.\tJe me fiche de ma réputation.\nI don't care how long ago it was.\tJe me fiche d'il y a combien de temps c'était.\nI don't care if Tom comes or not.\tPeu m'importe si Tom vient ou non.\nI don't care what you do with it.\tJe me fiche de ce que vous en faites.\nI don't care what you do with it.\tJe me fiche de ce que tu en fais.\nI don't deserve to be this happy.\tJe ne mérite pas d'être aussi heureux.\nI don't deserve to be this happy.\tJe ne mérite pas d'être aussi heureuse.\nI don't drink all that much beer.\tJe ne bois pas autant de bière.\nI don't even know where to begin.\tJe ne sais même pas par où commencer.\nI don't even know where to start.\tJe ne sais même pas par où commencer.\nI don't even know your real name.\tJe ne connais même pas votre vrai nom.\nI don't even know your real name.\tJe ne connais même pas ton vrai nom.\nI don't ever want us to be apart.\tJe ne veux jamais que nous soyons séparés.\nI don't ever want us to be apart.\tJe ne veux jamais que nous soyons séparées.\nI don't expect anything from you.\tJe n'attends rien de ta part.\nI don't expect anything from you.\tJe n'attends rien de vous.\nI don't expect anything from you.\tJe n'attends rien de toi.\nI don't expect you to forgive me.\tJe ne m'attends pas à ce que vous me pardonniez.\nI don't expect you to forgive me.\tJe ne m'attends pas à ce que tu me pardonnes.\nI don't feel like doing it today.\tJe n'ai pas envie de le faire aujourd'hui.\nI don't feel like drinking vodka.\tJe n'ai pas envie de boire de vodka.\nI don't feel like playing either.\tJe n'ai pas envie de jouer non plus.\nI don't feel like playing either.\tJe ne suis pas d'humeur à jouer non plus.\nI don't have a guilty conscience.\tJe n'ai pas la conscience coupable.\nI don't have a problem with this.\tJe n'ai pas de problème avec ça.\nI don't have any comment on that.\tJe n'ai pas de commentaire à ce sujet.\nI don't have any further details.\tJe n'ai pas d'autres détails.\nI don't have any issue with that.\tÇa ne me pose aucun problème.\nI don't have any problems at all.\tJe n'ai absolument aucun problème.\nI don't have anything to declare.\tJe n'ai rien à déclarer.\nI don't have anywhere else to go.\tJe n'ai nulle part ailleurs où aller.\nI don't have that much time left.\tJe ne dispose pas encore d'autant de temps.\nI don't have the address with me.\tJe n'ai pas l'adresse sur moi.\nI don't have the right equipment.\tJe n'ai pas le bon matériel.\nI don't have the slightest doubt.\tJe n'ai pas le moindre doute.\nI don't have to put up with this.\tJe n'ai pas à supporter ça.\nI don't know and neither does he.\tJe ne sais pas et lui non plus.\nI don't know any of those people.\tJe ne connais aucune de ces personnes.\nI don't know anything about that.\tJ'ignore tout à ce propos.\nI don't know how long I can stay.\tJ'ignore combien de temps je peux rester.\nI don't know how long I can stay.\tJe ne sais pas combien de temps je peux rester.\nI don't know how long it'll last.\tJ'ignore combien de temps ça durera.\nI don't know how long it'll take.\tJe ne sais pas combien de temps cela prendra.\nI don't know how long it'll take.\tJ'ignore combien de temps cela prendra.\nI don't know how to buy a ticket.\tJe ne sais pas comment acheter un billet.\nI don't know how to play mahjong.\tJe ne sais pas jouer au mah-jong.\nI don't know how to talk to kids.\tJe ne sais pas parler aux enfants.\nI don't know how to talk to kids.\tJ'ignore comment parler à des enfants.\nI don't know how, but you did it.\tJ'ignore comment, mais vous l'avez fait.\nI don't know how, but you did it.\tJ'ignore comment, mais tu l'as fait.\nI don't know much more than that.\tJe n'en sais pas beaucoup plus.\nI don't know that much about you.\tJe n'en sais pas tant que ça sur toi.\nI don't know that much about you.\tJe n'en sais pas tant que ça sur vous.\nI don't know what I was thinking.\tJe ne sais pas à quoi je pensais.\nI don't know what I was thinking.\tJe ne sais pas à quoi je réfléchissais.\nI don't know what I was thinking.\tJ'ignore à quoi je pensais.\nI don't know what I was thinking.\tJ'ignore à quoi je réféchissais.\nI don't know what I'm doing here.\tJe ne sais pas ce que je fais ici.\nI don't know what I'm doing here.\tJe ne sais pas ce que je fais là.\nI don't know what I'm doing here.\tJ'ignore ce que je fais ici.\nI don't know what I'm doing here.\tJ'ignore ce que je fais là.\nI don't know what else I can say.\tJe ne sais pas ce que je peux dire d'autre.\nI don't know what else we can do.\tJe ne sais pas ce que nous pouvons faire d'autre.\nI don't know what else we can do.\tJ'ignore ce que nous pouvons faire d'autre.\nI don't know what more I can say.\tJe ne sais quoi ajouter.\nI don't know what more I can say.\tJe ne sais pas quoi ajouter.\nI don't know what to do about it.\tJe ne sais pas quoi y faire.\nI don't know what to do about it.\tJe ne sais pas quoi faire à ce sujet.\nI don't know what to do tomorrow.\tJe ne sais pas quoi faire demain !\nI don't know what to feed my dog.\tJe ne sais pas quoi donner à manger à mon chien.\nI don't know what's got into her.\tJe ne sais pas ce qui lui prend.\nI don't know when I can get away.\tJe ne sais pas quand je peux m'échapper.\nI don't know when I can get away.\tJ'ignore quand je peux m'échapper.\nI don't know when it was exactly.\tJ'ignore quand c'était exactement.\nI don't know where I should look.\tJe ne sais pas où je devrais regarder.\nI don't know where he comes from.\tJe ne sais pas d'où il vient.\nI don't know who you are anymore.\tJe ne sais plus qui tu es.\nI don't know who you are anymore.\tJe ne sais plus qui vous êtes.\nI don't know why I just did that.\tJ'ignore pourquoi je viens de faire ça.\nI don't know why we have to stop.\tJ'ignore pourquoi nous devons nous arrêter.\nI don't like it when you do that.\tJe n'aime pas que vous fassiez cela.\nI don't like it when you do that.\tJe n'aime pas que tu fasses cela.\nI don't like to be away too long.\tJe n'aime pas être partie trop longtemps.\nI don't like to be away too long.\tJe n'aime pas être parti trop longtemps.\nI don't like to swim in the pool.\tJe n'aime pas nager dans la piscine.\nI don't like what you did to Tom.\tJe n'aime pas ce que tu as fait à Tom.\nI don't like what you did to Tom.\tJe n'aime pas ce que vous avez fait à Tom.\nI don't like your taste in color.\tJe n'aime pas votre goût pour les couleurs.\nI don't like your taste in color.\tJe n'aime pas ton goût pour les couleurs.\nI don't mind walking in the rain.\tÇa ne me dérange pas de marcher sous la pluie.\nI don't need a suitcase that big.\tJe n'ai pas besoin d'une aussi grosse valise.\nI don't need an answer right now.\tJe n'ai pas besoin d'une réponse immédiate.\nI don't need this kind of stress.\tJe n'ai pas besoin de ce genre d'épreuve.\nI don't need to go to the doctor.\tJe n'ai pas besoin de me rendre chez le médecin.\nI don't need you or anybody else.\tJe n'ai pas besoin de vous ni de quiconque d'autre.\nI don't need you or anybody else.\tJe n'ai pas besoin de toi ni de quiconque d'autre.\nI don't play tennis after school.\tJe ne joue pas au tennis après l'école.\nI don't really feel like reading.\tJe n'ai pas vraiment envie de lire.\nI don't really feel like reading.\tJe n'ai pas vraiment le cœur à lire.\nI don't really feel like reading.\tJe ne suis pas vraiment d'humeur à lire.\nI don't remember saying anything.\tJe ne me rappelle pas avoir dit quoi que ce soit.\nI don't remember that guy's name.\tJe ne me souviens plus du nom de ce mec.\nI don't remember that guy's name.\tJe ne me rappelle pas le nom de ce mec.\nI don't see a problem doing that.\tJe ne vois pas quel problème il y a à faire ça.\nI don't see what the big deal is.\tJe ne vois pas où est le drame.\nI don't think Tom will come back.\tJe ne pense pas que Tom reviendra.\nI don't think about it that much.\tJe n'y pense pas tant.\nI don't think that she will come.\tJe ne pense pas qu'elle viendra.\nI don't think that's appropriate.\tJe ne pense pas que cela soit approprié.\nI don't think we should buy this.\tJe ne pense pas que nous devrions acheter ceci.\nI don't understand German at all.\tJe ne comprends pas du tout l'allemand.\nI don't understand that question.\tJe ne comprends pas cette question.\nI don't understand this sentence.\tJe ne comprends pas cette phrase.\nI don't understand what he wants.\tJe ne comprends pas ce qu'il veut.\nI don't understand your question.\tJe ne comprends pas ta question.\nI don't understand your question.\tJe ne comprends pas votre question.\nI don't usually wait for anybody.\tJe n'attends habituellement personne.\nI don't want to ask you anything.\tJe ne veux rien te demander.\nI don't want to be late for work.\tJe ne veux pas être en retard au travail.\nI don't want to break my promise.\tJe ne veux pas rompre ma promesse.\nI don't want to get into trouble.\tJe ne veux pas me fourrer dans les ennuis.\nI don't want to watch television.\tJe ne veux pas regarder la télé.\nI don't want you to do that, Tom.\tJe ne veux pas que tu fasses ça, Tom.\nI don't want you to do that, Tom.\tJe ne veux pas que vous fassiez ça, Tom.\nI don't want you to get involved.\tJe ne veux pas que tu t'en mêles.\nI don't want you to get involved.\tJe ne veux pas que vous vous en mêliez.\nI don't want you to see me naked.\tJe ne veux pas que tu me voies nue.\nI don't want you to see me naked.\tJe ne veux pas que tu me voies nu.\nI don't want you to see me naked.\tJe ne veux pas que vous me voyiez nue.\nI don't want you to see me naked.\tJe ne veux pas que vous me voyiez nu.\nI don't work late tomorrow night.\tJe ne travaille pas tard, demain soir.\nI don't work well under pressure.\tJe ne travaille pas bien sous la pression.\nI eat my breakfast in the office.\tJ'ai pris mon petit-déjeuner au bureau.\nI expect you all to do your best.\tJ'attends le meilleur de chacun d'entre vous.\nI explained the procedure to him.\tJe lui ai expliqué la procédure.\nI fear for the future of mankind.\tJe crains pour l'avenir de l'humanité.\nI fear for the future of mankind.\tJe crains pour l'avenir de l'espèce humaine.\nI feel dizzy every time I get up.\tJ'ai la tête qui tourne à chaque fois que je me lève.\nI feel dizzy every time I get up.\tJ'ai le vertige à chaque fois que je me lève.\nI feel like I'm thirty years old.\tJ'ai l'impression d'avoir trente ans.\nI feel lucky to have been chosen.\tJe me sens chanceux d'avoir été choisi.\nI feel lucky to have been chosen.\tJe me sens chanceuse d'avoir été choisie.\nI feel sick whenever I see blood.\tJe me sens mal quand je vois du sang.\nI feel very comfortable with you.\tJe me sens très à l'aise avec vous.\nI feel very comfortable with you.\tJe me sens très à l'aise avec toi.\nI fell asleep listening to music.\tJe me suis endormi en écoutant de la musique.\nI fell asleep listening to music.\tJe me suis endormie en écoutant de la musique.\nI felt like going out for a walk.\tJ'avais envie d'aller me promener.\nI figured it would be easy to do.\tJe suis imaginé que ça serait facile à faire.\nI figured that might be the case.\tJe me suis imaginé que ça pouvait être le cas.\nI figured that might be the case.\tJ'ai songé que ça pouvait être le cas.\nI figured you might want a drink.\tJ'ai pensé que vous pouviez vouloir un verre.\nI figured you might want a drink.\tJ'ai pensé qu'il se pouvait que tu veuilles boire un coup.\nI figured you'd enjoy this movie.\tJ'imaginais que vous aimeriez ce film.\nI figured you'd enjoy this movie.\tJ'imaginais que tu aimerais ce film.\nI finally got a driver's license.\tJ'ai finalement obtenu le permis de conduire.\nI finally have everything I need.\tJ'ai en définitive tout ce dont j'ai besoin.\nI finally have everything I need.\tJe dispose finalement de tout ce dont j'ai besoin.\nI find that difficult to believe.\tJe trouve cela difficile à croire.\nI find this difficult to believe.\tJe trouve ceci difficile à croire.\nI forgot that today was Saturday.\tJ’ai oublié qu’on était samedi, aujourd’hui.\nI forgot to give him the message.\tJ'ai oublié de lui donner le message.\nI forgot what I was going to say.\tJ'ai oublié ce que j'allais dire.\nI forgot what I was going to say.\tJ'ai oublié ce que je voulais dire.\nI found her cat in an empty room.\tJ'ai trouvé son chat dans une pièce vide.\nI found her cat in an empty room.\tJe trouvai son chat dans une pièce vide.\nI found the bed very comfortable.\tJ’ai trouvé le lit très confortable.\nI fully understand your concerns.\tJe comprends parfaitement tes inquiétudes.\nI fully understand your concerns.\tJe comprends parfaitement vos inquiétudes.\nI gave Tom detailed instructions.\tJ'ai donné à Tom des instructions détaillées.\nI gave up smoking six months ago.\tJ'ai arrêté de fumer il y a six mois.\nI get arrested from time to time.\tJe me fais arrêter, de temps en temps.\nI get arrested from time to time.\tJe me fais arrêter, de temps à autre.\nI get up at six almost every day.\tJe me lève à six heures presque tous les jours.\nI go swimming every chance I get.\tJe vais à la piscine chaque fois que j'en ai l'occasion.\nI go to the country every summer.\tTous les étés, je vais à la campagne.\nI got a lot of mail this morning.\tCe matin j'ai beaucoup de courrier.\nI got up very early this morning.\tJe me suis levé très tôt, ce matin.\nI got up very early this morning.\tJe me suis levé fort tôt, ce matin.\nI got up very early this morning.\tJe me suis levée très tôt, ce matin.\nI got up very early this morning.\tJe me suis levée fort tôt, ce matin.\nI got up while it was still dark.\tJe me levai pendant qu'il faisait encore noir.\nI guess I'd better start packing.\tJe suppose que je ferais mieux de commencer à faire mes bagages.\nI guess I'd better start packing.\tJ'imagine que je ferais mieux de commencer à faire mes bagages.\nI guess I'm just a little sleepy.\tJe suppose que j'ai juste un peu sommeil.\nI guess that means we're winning.\tJ'imagine que ça veut dire que nous avons gagné.\nI guess you know I've missed you.\tJe suppose que tu sais que tu m'as manqué.\nI guess you know I've missed you.\tJe suppose que tu sais que tu m'as manquée.\nI guess you know I've missed you.\tJe suppose que vous savez que vous m'avez manqué.\nI guess you know I've missed you.\tJe suppose que vous savez que vous m'avez manquée.\nI guess you know I've missed you.\tJe suppose que vous savez que vous m'avez manqués.\nI guess you know I've missed you.\tJe suppose que vous savez que vous m'avez manquées.\nI had a nightmare about vampires.\tJ'ai fait un cauchemar à propos de vampires.\nI had a really nice time tonight.\tJ'ai vraiment passé du bon temps, ce soir.\nI had a strange dream last night.\tJ'ai eu un rêve étrange la nuit dernière.\nI had a strange dream last night.\tJ'ai fait un rêve étrange, la nuit dernière.\nI had my bicycle fixed yesterday.\tMa bicyclette a été réparée hier.\nI had my bicycle fixed yesterday.\tJ'ai fait réparer mon vélo, hier.\nI had no idea things were so bad.\tJe n'avais pas idée que les choses étaient aussi mauvaises.\nI had no idea what was happening.\tJe n'avais pas idée de ce qui se passait.\nI had no idea what was happening.\tJe n'avais pas idée de ce qui arrivait.\nI had no idea you were so stupid.\tJe n'avais pas idée que vous étiez si stupide.\nI had no idea you were so stupid.\tJe n'avais pas idée que vous étiez si stupides.\nI had no idea you were so stupid.\tJe n'avais pas idée que tu étais si stupide.\nI had to do everything by myself.\tJ'ai dû tout faire tout seul.\nI had to do everything by myself.\tJ'ai dû tout faire toute seule.\nI had to do everything on my own.\tJe dus tout faire par moi-même.\nI had to do everything on my own.\tJ'ai dû tout faire par moi-même.\nI had to finish what I'd started.\tJ'ai dû terminer ce que j'avais commencé.\nI had to finish what I'd started.\tIl m'a fallu terminer ce que j'avais commencé.\nI had to help with the housework.\tJ'ai dû aider aux tâches ménagères.\nI had to look after the children.\tJ'ai dû surveiller les enfants.\nI had to postpone my appointment.\tJ'ai dû reporter mon rendez-vous.\nI had to see someone on business.\tJe devais rencontrer quelqu'un pour des affaires.\nI had to stay in bed for a while.\tJe dus rester au lit quelques temps.\nI had to work overtime yesterday.\tJ'ai dû faire des heures supplémentaires hier.\nI hardly know anything about you.\tJe n'en sais guère à votre propos.\nI hardly know anything about you.\tJe n'en sais guère à ton propos.\nI hate pretending I'm interested.\tJe déteste faire semblant d'être intéressé.\nI hate pretending I'm interested.\tJe déteste faire semblant d'être intéressée.\nI have a brand new pair of socks.\tJ'ai une paire de chaussettes toute neuve.\nI have a coat, but I have no hat.\tJ'ai un manteau, mais je n'ai pas de chapeau.\nI have a craving for fresh fruit.\tJ'ai une envie irrésistible de fruits frais.\nI have a daughter in high school.\tJ'ai une fille au lycée.\nI have a desire to go to England.\tJe désire aller en Angleterre.\nI have a first-aid kit in my car.\tJ'ai une trousse de premiers soins dans ma voiture.\nI have a friend living in London.\tJ'ai un ami qui vit à Londres.\nI have a hunch that it will rain.\tQuelque chose me dit qu'il va pleuvoir.\nI have a hunch that it will rain.\tQuelque chose me dit qu'il pleuvra.\nI have a lot of responsibilities.\tJ'ai beaucoup de responsabilités.\nI have a lot of work to do today.\tJ'ai fort à faire, aujourd'hui.\nI have a lot of work to do today.\tJ'ai beaucoup de travail à faire, aujourd'hui.\nI have a ton of work to do today.\tJ'ai une tonne de travail à faire, aujourd'hui.\nI have courage and a strong will.\tJ'ai du courage et une forte volonté.\nI have difficulty paying my rent.\tJ'ai du mal à payer mon loyer.\nI have enough money to buy a car.\tJ'ai assez d'argent pour acheter une voiture.\nI have left my umbrella in a bus.\tJ'ai oublié mon parapluie dans un bus.\nI have lived in Tokyo since 1985.\tJe vis à Tôkyô depuis 1985.\nI have looked for it up and down.\tJe l'ai cherché partout.\nI have looked for it up and down.\tJ'ai cherché après partout.\nI have never fed my dog a banana.\tJe n'ai jamais donné de banane à manger à mon chien.\nI have no idea of what to expect.\tJe n'ai aucune idée de ce qui m'attend.\nI have no intention of resigning.\tJe n'ai pas l'intention de démissionner.\nI have no place to sleep tonight.\tJe n'ai pas d'endroit où dormir cette nuit.\nI have no time to do my homework.\tJe n'ai pas de temps pour faire mes devoirs.\nI have nothing particular to say.\tJe n'ai rien de particulier à dire.\nI have nothing to say against it.\tJe n'ai rien à dire contre cela.\nI have plenty of time to do that.\tJ'ai plein de temps pour faire ça.\nI have quit smoking and drinking.\tJ'ai arrêté de fumer et de boire.\nI have recently given up smoking.\tJ'ai récemment arrêté de fumer.\nI have some pictures to show you.\tJ'ai quelques photos à vous montrer.\nI have something I'd like to say.\tIl y a quelque chose que j'aimerais dire.\nI have thirteen names on my list.\tJ'ai treize noms sur ma liste.\nI have to be there for my family.\tIl me faut être là-bas, pour ma famille.\nI have to buy a new pair of skis.\tJe dois m'acheter une nouvelle paire de skis.\nI have to choose between the two.\tJe dois choisir entre les deux.\nI have to go and buy a newspaper.\tJe dois aller acheter un journal.\nI have to support a large family.\tJe dois entretenir une grande famille.\nI have two brothers and a sister.\tJ'ai deux frères et une sœur.\nI have very few books in English.\tJe dispose de très peu de livres en langue anglaise.\nI haven't decided what to do yet.\tJe n'ai pas encore décidé quoi faire.\nI haven't read any of his novels.\tJe n'ai lu aucun de ses romans.\nI haven't seen him in a few days.\tJe ne l'ai pas vu depuis quelques jours.\nI haven't seen you around before.\tJe ne vous ai pas vu auparavant dans les environs.\nI haven't seen you around before.\tJe ne vous ai pas vus auparavant dans les environs.\nI haven't seen you around before.\tJe ne vous ai pas vue auparavant dans les environs.\nI haven't seen you around before.\tJe ne vous ai pas vues auparavant dans les environs.\nI haven't seen you around before.\tJe ne t'ai pas vu auparavant dans les environs.\nI haven't seen you around before.\tJe ne t'ai pas vue auparavant dans les environs.\nI haven't swum since last summer.\tJe n'ai pas nagé depuis l'été dernier.\nI hear that his father is abroad.\tJ'entends que son père est à l'étranger.\nI heard him speak fluent English.\tJe l'ai entendue parler l'anglais couramment.\nI hope I haven't offended anyone.\tJ'espère ne pas avoir offensé quiconque.\nI hope I haven't offended anyone.\tJ'espère ne pas avoir offensé qui que ce soit.\nI hope I haven't offended anyone.\tJ'espère n'avoir offensé personne.\nI hope I'm not bothering anybody.\tJ'espère que je ne vais déranger personne.\nI hope I'm wrong, but I doubt it.\tJ'espère avoir tort, mais j'en doute.\nI hope I'm wrong, but I doubt it.\tJ'espère que je me trompe, mais j'en doute.\nI hope Tom knows what he's doing.\tJ'espère que Tom sait ce qu'il fait.\nI hope all your dreams come true.\tJ'espère que tous vos rêves s'incarneront.\nI hope all your dreams come true.\tJ'espère que tous tes rêves se réaliseront.\nI hope it does not rain tomorrow.\tJ'espère qu'il ne pleuvra pas demain.\nI hope you won't be disappointed.\tJ'espère que tu ne seras pas déçu.\nI hope you won't be disappointed.\tJ'espère que tu ne seras pas déçue.\nI hope you won't be disappointed.\tJ'espère que vous ne serez pas déçu.\nI hope you won't be disappointed.\tJ'espère que vous ne serez pas déçue.\nI hope you won't be disappointed.\tJ'espère que vous ne serez pas déçues.\nI hope you won't be disappointed.\tJ'espère que vous ne serez pas déçus.\nI imagine Tom will be a finalist.\tJ'imagine que Tom sera finaliste.\nI intend to go to the barbershop.\tJ'ai l'intention d'aller chez le coiffeur.\nI intend to listen to it tonight.\tJ'ai l'intention de l'écouter ce soir.\nI just assumed you wouldn't mind.\tJ'ai supposé que vous n'y verriez pas d'inconvénient.\nI just assumed you wouldn't mind.\tJ'ai supposé que tu n'y verrais pas d'inconvénient.\nI just don't think this is funny.\tJe ne pense simplement pas que ce soit drôle.\nI just don't want to do it again.\tJe ne veux simplement pas le refaire.\nI just don't want to do it again.\tJe ne veux simplement pas le faire à nouveau.\nI just don't want to go with you.\tJe ne veux simplement pas aller avec toi.\nI just don't want to go with you.\tJe ne veux simplement pas aller avec vous.\nI just don't want to hurt anyone.\tJe ne veux simplement pas blesser quiconque.\nI just don't want to talk to you.\tJe ne veux simplement pas te parler.\nI just don't want to talk to you.\tJe ne veux simplement pas vous parler.\nI just don't want you to have it.\tJe ne veux juste pas que tu l'aies.\nI just don't want you to have it.\tJe ne veux juste pas que vous l'ayez.\nI just downloaded a lot of files.\tJe viens de télécharger de nombreux fichiers.\nI just dropped in to say goodbye.\tJe suis venu simplement pour faire mes adieux.\nI just finished reading the book.\tJe viens juste de terminer la lecture du livre.\nI just got a call from my office.\tJe viens d'avoir un appel de mon bureau.\nI just got a call from my office.\tJe viens de recevoir un appel de mon bureau.\nI just got a little carried away.\tJe me suis un petit peu laissé emporter.\nI just got a little carried away.\tJe me suis un petit peu laissée emporter.\nI just got a little carried away.\tJe me suis un petit peu laissé griser.\nI just got a little carried away.\tJe me suis un petit peu laissée griser.\nI just got out of a relationship.\tJe viens de sortir d'une relation.\nI just got your letter yesterday.\tJe n'ai reçu ta lettre qu'hier.\nI just got your letter yesterday.\tJe n'ai reçu votre lettre qu'hier.\nI just had to check on something.\tIl m'a fallu vérifier quelque chose, un point c'est tout.\nI just had to check on something.\tIl m'a tout simplement fallu vérifier quelque chose.\nI just have one question for you.\tJ'ai simplement une question pour vous.\nI just have one question for you.\tJ'ai simplement une question pour toi.\nI just want to go home and sleep.\tJe veux simplement aller chez moi et dormir.\nI just want to hang out with you.\tJe veux juste traîner avec toi.\nI just want to have a little fun.\tJe veux juste m'amuser un peu.\nI just want to hear your reasons.\tJe veux juste entendre tes raisons.\nI just want to hear your reasons.\tJe veux juste entendre vos raisons.\nI just want to make it up to you.\tJe veux juste te le rendre.\nI just want to make it up to you.\tJe veux juste vous le rendre.\nI just want to make it up to you.\tJe veux juste te rendre la pareille.\nI just want to make it up to you.\tJe veux juste vous rendre la pareille.\nI just want to take a quick look.\tJe veux juste y jeter un œil.\nI just wanted to make that clear.\tJe voulais juste le clarifier.\nI just wanted to see if you knew.\tJe voulais juste voir si tu savais.\nI knew I'd get blamed eventually.\tJe savais qu'in fine, la faute m'en serait attribuée.\nI knew I'd get blamed eventually.\tJe savais qu'au bout du compte, la faute m'en serait attribuée.\nI knew I'd get blamed eventually.\tJe savais qu'un jour, la faute m'en serait attribuée.\nI knew something Tom didn't know.\tJe savais quelque chose que Tom ne savait pas.\nI knew something Tom didn't know.\tJe savais quelque chose que Tom ignorait.\nI knew this wasn't going to work.\tJe savais que ça n'allait pas fonctionner.\nI knew you wouldn't listen to me.\tJe savais que tu ne m'aurais pas écouté.\nI know I've told you this before.\tJe sais que je t'ai déjà dit ceci auparavant.\nI know I've told you this before.\tJe sais que je vous ai déjà dit ceci auparavant.\nI know a good Italian restaurant.\tJe connais un bon restaurant italien.\nI know a lot about this computer.\tJ'en sais beaucoup sur cet ordinateur.\nI know how hard it is to do that.\tJe sais à quel point c'est difficile de faire cela.\nI know that Tom likes basketball.\tJe sais que Tom aime le basketball.\nI know that he keeps his promise.\tJe sais qu'il tient sa parole.\nI know that your work isn't easy.\tJe sais que ton travail n'est pas facile.\nI know this must come as a shock.\tJe sais que ça doit être un choc.\nI know what it's like to be poor.\tJe sais ce que c'est d'être pauvre.\nI know what it's like to be poor.\tJe sais ce que ça fait d'être pauvre.\nI know what those books are like.\tJe sais à quoi ces livres ressemblent.\nI know what those books are like.\tJe sais à quoi ces ouvrages ressemblent.\nI know what those books are like.\tJe sais de quoi ces livres ont l'air.\nI know what those books are like.\tJe sais de quoi ces ouvrages ont l'air.\nI know where you hide your diary.\tJe sais où tu caches ton journal intime.\nI know where you hide your diary.\tJe sais où tu caches ton journal.\nI know who's pulling the strings.\tJe sais qui tire les ficelles.\nI know you think there's no hope.\tJe sais que tu penses qu'il n'y a pas d'espoir.\nI know you want to make me happy.\tJe sais que tu veux me rendre heureux.\nI know you want to make me happy.\tJe sais que tu veux me rendre heureuse.\nI know you want to make me happy.\tJe sais que vous voulez me rendre heureux.\nI know you want to make me happy.\tJe sais que vous voulez me rendre heureuse.\nI know you want to make me happy.\tJe sais que vous voulez mon bonheur.\nI know you want to make me happy.\tJe sais que tu veux mon bonheur.\nI laughed so hard I almost cried.\tJ'ai tellement ri que j'ai presque pleuré.\nI laughed so hard I almost cried.\tJ'ai tellement ri que j'en ai presque pleuré.\nI learned to cook from my mother.\tJ'ai appris à cuisiner par ma mère.\nI left one of my books at school.\tJ'ai laissé un de mes livres à l'école.\nI left one of my books at school.\tJ'ai laissé l'un de mes livres à l'école.\nI let my friend copy my homework.\tJe laisse mon copain copier mes devoirs.\nI let my friend copy my homework.\tJe permets à mon copain de copier mes devoirs.\nI let my friend copy my homework.\tJe laisse ma copine copier mes devoirs.\nI let my friend copy my homework.\tJe permets à ma copine de copier mes devoirs.\nI like English better than music.\tJ’aime plus l'anglais que la musique.\nI like butter better than cheese.\tJe préfère le beurre au fromage.\nI like coffee much more than tea.\tJe préfère beaucoup plus le café que le thé.\nI like having breakfast with you.\tJ'aime prendre le petit déjeuner avec vous.\nI like having breakfast with you.\tJ'apprécie de prendre le petit-déjeuner avec toi.\nI like having breakfast with you.\tJ'apprécie de prendre le petit-déjeuner avec vous.\nI like my life the way it is now.\tJ'aime ma vie telle qu'elle est à présent.\nI like my life the way it is now.\tJ'aime ma vie telle qu'elle est maintenant.\nI like summer better than winter.\tJe préfère l'été à l'hiver.\nI like taking walks in the woods.\tJ'aime faire des marches dans les bois.\nI like to cook all kinds of food.\tJ'aime cuisiner toute sorte de nourriture.\nI like watching movies in French.\tJ'aime regarder des films en français.\nI liked your idea and adopted it.\tJ'ai aimé ton idée et l'ai adopté.\nI live on the outskirts of Tokyo.\tJe vis à la périphérie de Tokyo.\nI lived in this house as a child.\tEnfant, j'ai vécu dans cette maison.\nI looked at myself in the mirror.\tJe me suis regardé dans le miroir.\nI lost sight of her in the crowd.\tJe l'ai perdue de vue dans la foule.\nI lost ten kilos in three months.\tJ'ai perdu dix kilos en trois mois.\nI lost ten kilos in three months.\tJe perdis dix kilos en trois mois.\nI love the outfit you're wearing.\tJ'adore la tenue que vous portez.\nI love the outfit you're wearing.\tJ'adore la tenue que tu portes.\nI love the sound of rain falling.\tJ'aime le son de la pluie qui tombe.\nI love to paint with watercolors.\tJ'adore peindre à l'aquarelle.\nI love you more than anyone else.\tJe t'aime davantage que qui que ce soit d'autre.\nI love you more than you love me.\tJe t'aime plus que tu ne m'aimes.\nI made a complete fool of myself.\tJe me suis complètement ridiculisée.\nI made a complete fool of myself.\tJe me suis complètement ridiculisé.\nI made some mistakes on the test.\tJ'ai commis des erreurs à l'examen.\nI made some mistakes on the test.\tJe commis des erreurs à l'examen.\nI made the best of my small room.\tJ'ai tiré le meilleur parti de ma petite chambre.\nI make a point of being punctual.\tJe mets un point d'honneur à être ponctuel.\nI may go out if the rain lets up.\tJ'irai peut-être dehors si la pluie s'arrête.\nI meant to have that done by now.\tJ'avais l'intention d'avoir fini ça à l'heure qu'il est.\nI might as well get a head start.\tAutant agir en prévision.\nI missed you very much yesterday.\tTu m'as beaucoup manqué hier.\nI must admit that I was mistaken.\tJe dois admettre que je me suis trompé.\nI need it as quickly as possible.\tJ'en ai besoin aussi vite que possible.\nI need pens, notebooks and so on.\tJ'ai besoin de stylos, de cahiers, etc.\nI need some sugar to make a cake.\tJ'ai besoin de sucre pour faire un gâteau.\nI need someone who I can talk to.\tIl me faut quelqu'un à qui je puisse parler.\nI need someone who I can talk to.\tIl me faut quelqu'un avec qui je puisse discuter.\nI need someone who I can talk to.\tIl me faut quelqu'un avec qui je puisse m'entretenir.\nI need to finish reading my book.\tJe dois finir de lire mon livre.\nI need you to check on something.\tJ'ai besoin que vous vérifiiez quelque chose.\nI need you to check on something.\tJ'ai besoin que tu vérifies quelque chose.\nI never had to worry about money.\tJe n'ai jamais eu à m'en faire pour l'argent.\nI never really wanted to do that.\tJe n'ai jamais vraiment voulu faire ça.\nI never want to see you get sick.\tJe ne veux jamais te voir devenir malade.\nI never want to see you get sick.\tJe ne veux jamais vous voir devenir malade.\nI no longer want to visit Boston.\tJe ne veux plus visiter Boston.\nI often go fishing in that river.\tJe vais souvent pêcher dans cette rivière.\nI often go fishing in that river.\tJe vais souvent pêcher dans ce fleuve.\nI often play soccer after school.\tAprès les cours, je joue souvent au football.\nI often play tennis after school.\tJe joue souvent au tennis après l'école.\nI often receive letters from him.\tJe reçois souvent des lettres de lui.\nI only got your letter yesterday.\tJe n'ai reçu ta lettre qu'hier.\nI only got your letter yesterday.\tJe n'ai reçu votre lettre qu'hier.\nI only have fifty meters of rope.\tJe ne dispose que de cinquante mètres de corde.\nI ought to go there, but I won't.\tJe dois y aller, mais je ne le ferai pas.\nI participated in the discussion.\tJ'ai participé à la discussion.\nI plan to go to France next year.\tJ'ai l'intention d'aller en France l'année prochaine.\nI played with Tom and Mary today.\tJ'ai joué avec Tom et Marie aujourd'hui.\nI pretended that I didn't see it.\tJe prétendis ne pas l'avoir vu.\nI pretended that I didn't see it.\tJ'ai prétendu ne pas l'avoir vu.\nI promise I'll make it up to you.\tJe te promets que je te revaudrai ça.\nI promise I'll make it up to you.\tJe vous promets que je vous revaudrai ça.\nI promise you I'll keep you safe.\tJe te promets que je te garderai en sécurité.\nI promise you I'll keep you safe.\tJe te promets que je te maintiendrai en sécurité.\nI promise you I'll keep you safe.\tJe vous promets que je vous garderai en sécurité.\nI promise you I'll keep you safe.\tJe vous promets que je vous maintiendrai en sécurité.\nI promised him to keep it secret.\tJe lui ai promis de garder ça secret.\nI put my family before my career.\tJe fais passer ma famille avant ma carrière.\nI ran all the way to the station.\tJe courus tout le chemin jusqu'à la gare.\nI ran all the way to the station.\tJ'ai couru tout le chemin jusqu'à la gare.\nI read about it in the newspaper.\tJe l'ai lu dans le journal.\nI read the whole book in one day.\tJ'ai lu tout le livre en une journée.\nI read this book again and again.\tJ'ai lu ce livre plusieurs fois.\nI realize it's probably too late.\tJe prends conscience qu'il est probablement trop tard.\nI realize that there's a problem.\tJe réalise qu'il y a un problème.\nI realize that there's a problem.\tJe me rends compte qu'il y a un problème.\nI really appreciate your company.\tJ'apprécie beaucoup votre compagnie.\nI really can't make any promises.\tJe ne peux vraiment pas faire de quelconques promesses.\nI really can't talk about it now.\tJe ne peux vraiment pas en parler maintenant.\nI really don't feel like talking.\tJe n'ai vraiment pas envie de parler.\nI really don't have enough money.\tJe ne dispose vraiment pas de suffisamment d'argent.\nI really don't have enough money.\tJe n'ai vraiment pas assez d'argent.\nI really don't want to live here.\tJe ne veux vraiment pas vivre ici.\nI really don't want to miss that.\tJe ne veux vraiment pas manquer ça.\nI really need to talk to someone.\tJ'ai vraiment besoin de parler à quelqu'un.\nI really think we should do this.\tJe pense vraiment que nous devrions faire ça.\nI really want to figure this out.\tJe veux vraiment résoudre ça.\nI received your letter yesterday.\tJ'ai reçu votre lettre hier.\nI received your letter yesterday.\tJ'ai reçu ta lettre hier.\nI recognized him at first glance.\tJe l'ai reconnu au premier coup d'œil.\nI recommend we keep our distance.\tJe recommande que nous gardions nos distances.\nI refuse to discuss the question.\tJe refuse de discuter de ce sujet.\nI regret losing that opportunity.\tJe regrette d'avoir manqué cette occasion.\nI remember giving Tom some money.\tJe me souviens avoir donné de l'argent à Tom.\nI remember meeting her somewhere.\tJe me rappelle l'avoir rencontrée quelque part.\nI remember meeting her somewhere.\tJe me souviens de l'avoir rencontrée quelque part.\nI remember telling her that news.\tJe me rappelle lui avoir parlé de cette nouvelle.\nI remember the first time we met.\tJe me rappelle la première fois que nous nous sommes rencontrés.\nI remember the first time we met.\tJe me rappelle la première fois que nous nous sommes rencontrées.\nI remember the first time we met.\tJe me souviens de la première fois que nous nous sommes rencontrés.\nI remember the first time we met.\tJe me souviens de la première fois que nous nous sommes rencontrées.\nI saw a bum at the train station.\tJ'ai vu un clochard à la gare.\nI saw a koala for the first time.\tJ'ai vu un koala pour la première fois.\nI saw your brother the other day.\tJ'ai vu ton grand frère l'autre jour.\nI screwed up the very first note.\tJ'ai foiré la toute première note.\nI seem to have caught a bad cold.\tIl semble que j'aie contracté un mauvais rhume.\nI seem to have caught a bad cold.\tIl semble que j'aie attrapé un mauvais rhume.\nI share this room with my sister.\tJe partage cette chambre avec ma sœur.\nI should've been honest with you.\tJ'aurais dû être honnête avec toi.\nI should've been honest with you.\tJ'aurais dû être honnête avec vous.\nI should've finished that sooner.\tJ'aurais dû terminer cela plus tôt.\nI shouldn't have sent that email.\tJe n'aurais pas dû envoyer ce courriel.\nI shouldn't have to say anything.\tJe ne devrais pas avoir à dire quoi que ce soit.\nI slept through the entire movie.\tJ'ai dormi tout le long du film.\nI sliced the sandwich diagonally.\tJ'ai coupé le sandwich en diagonale.\nI speak Chinese almost every day.\tJe parle chinois presque chaque jour.\nI speak French every day at work.\tJe parle le français tous les jours au travail.\nI speak French with Tom and Mary.\tJe parle français avec Tom et Mary.\nI spent my vacation at the beach.\tJ'ai passé mes congés à la plage.\nI spoke with the minister myself.\tJ'ai moi-même parlé avec le ministre.\nI stayed there until he had left.\tJ'y suis resté jusqu'à ce qu'il soit parti.\nI stayed with an American family.\tJ'étais chez une famille américaine.\nI stepped aside so he could pass.\tJe me suis écarté pour qu'il puisse passer.\nI still don't write Chinese well.\tJe n'écris toujours pas bien le chinois.\nI still have a lot of work to do.\tJ'ai encore beaucoup de travail à faire.\nI still have some homework to do.\tJ'ai encore des devoirs à faire.\nI stopped listening to the radio.\tJ'ai arrêté d'écouter la radio.\nI studied all week for that quiz.\tJ'ai étudié toute la semaine pour ce questionnaire.\nI study math harder than English.\tJ'étudie les mathématiques plus sérieusement que l'anglais.\nI study math harder than English.\tJe travaille les mathématiques plus sérieusement que l'anglais.\nI succeeded thanks to his advice.\tJ'ai réussi grâce à son conseil.\nI suppose it doesn't hurt to try.\tJe suppose que ça ne fait pas de mal d'essayer.\nI suppose you'll be needing this.\tJe suppose que vous aurez besoin de ça.\nI suppose you'll be needing this.\tJe suppose que tu auras besoin de ça.\nI suspect that you won't like it.\tJe soupçonne que vous n'aimerez pas ça.\nI suspect that you won't like it.\tJe soupçonne que tu n'aimeras pas ça.\nI talked to my friend in the FBI.\tJ'ai parlé à mon ami des Renseignements Généraux.\nI talked to my friend in the FBI.\tJ'ai parlé à mon amie des Renseignements Généraux.\nI think I could get used to this.\tJe pense que je pourrais m'y habituer.\nI think I left the water running.\tJe pense que j'ai laissé couler l'eau.\nI think I'd like to be a teacher.\tJe pense que j'aimerais être enseignant.\nI think I'll take a bath tonight.\tJe pense que je vais prendre un bain ce soir.\nI think I'm a pretty good singer.\tJe pense que je suis un assez bon chanteur.\nI think I'm a pretty good singer.\tJe pense que je suis une assez bonne chanteuse.\nI think I'm a pretty good writer.\tJe pense être assez bon écrivain.\nI think I've forgotten something.\tJe pense que j'ai oublié quelque chose.\nI think I've forgotten something.\tJe pense avoir oublié quelque chose.\nI think Tom does a fantastic job.\tJe pense que Tom fait un travail fantastique.\nI think Tom had a real good year.\tJe pense que Tom a passé une bonne année.\nI think Tom has a long way to go.\tJe pense que Tom a encore beaucoup de chemin à parcourir.\nI think Tom is a really nice kid.\tJe pense que Tom est un gamin vraiment gentil.\nI think Tom is going to call you.\tJe pense que Tom va vous appeler.\nI think Tom is in the front yard.\tJe pense que Tom est dans la cour avant.\nI think Tom is smarter than that.\tJe pense que Tom est plus malin que ça.\nI think Tom works in this office.\tJe pense que Tom travaille dans ce bureau.\nI think Tom would tell the truth.\tJe pense que Tom dirait la vérité.\nI think Tom's idea is a good one.\tJe pense que l'idée de Tom est bonne.\nI think Tom's number is unlisted.\tJe pense que le numéro de Tom est sur liste rouge.\nI think everything is functional.\tJe pense que tout est fonctionnel.\nI think jogging is good exercise.\tJe pense que le jogging est un bon exercice.\nI think life is what you make it.\tJe pense que la vie est ce qu'on en fait.\nI think life is what you make it.\tJe pense que la vie est ce que vous en faites.\nI think life is what you make it.\tJe pense que la vie est ce que tu en fais.\nI think our relationship is over.\tJe crois que notre relation est terminée.\nI think that he's a good teacher.\tJe pense que c'est un bon enseignant.\nI think that he's a good teacher.\tJe pense que c'est un bon instituteur.\nI think that she knows the truth.\tJe pense qu'elle connaît la vérité.\nI think that we should try again.\tJe crois que nous devrions encore essayer.\nI think that's for Tom to decide.\tJe pense que c'est à Tom de décider.\nI think that's kind of dishonest.\tJe trouve que c'est un peu malhonnête.\nI think that's kind of dishonest.\tJe pense que c'est un peu malhonnête.\nI think the train will come soon.\tJe pense que le train va bientôt arriver.\nI think this coat should fit you.\tJe pense que ce manteau doit vous aller.\nI think we can finish this later.\tJe pense que nous pouvons finir cela plus tard.\nI think we could be good friends.\tJe pense que nous pourrions être bons amis.\nI think we could help each other.\tJe pense que nous pourrions nous aider mutuellement.\nI think we could help each other.\tJe pense que nous pourrions mutuellement nous aider.\nI think we could help each other.\tJe pense que nous pourrions nous aider l'un l'autre.\nI think we could help each other.\tJe pense que nous pourrions nous aider l'une l'autre.\nI think we need more information.\tJe pense que nous avons besoin de plus d'information.\nI think we need more information.\tJe pense qu'il nous faut davantage d'information.\nI think we should all go outside.\tJe pense que nous devrions tous aller dehors.\nI think we should all go outside.\tJe pense que nous devrions toutes aller dehors.\nI think we should all go outside.\tJe pense que nous devrions tous aller à l'extérieur.\nI think we should all go outside.\tJe pense que nous devrions toutes aller à l'extérieur.\nI think we should go take a look.\tJe pense que nous devrions aller y jeter un œil.\nI think we should stick together.\tJe pense que nous devrions rester ensemble.\nI think we should stick together.\tJe pense que nous devrions rester solidaires.\nI think we'd better take a break.\tJe pense que nous ferions mieux de faire une pause.\nI think we've waited long enough.\tJe pense que nous avons attendu assez longtemps.\nI think you did an excellent job.\tJe pense que vous avez fait un excellent boulot.\nI think you did an excellent job.\tJe pense que tu as fait un excellent boulot.\nI think you know that's not true.\tJe pense que vous savez que ce n'est pas vrai.\nI think you know that's not true.\tJe pense que tu sais que ce n'est pas vrai.\nI think you might need some help.\tJe pense que vous pourriez avoir besoin d'aide.\nI think you might need some help.\tJe pense que tu pourrais avoir besoin d'aide.\nI think you should go to college.\tJe pense que tu devrais aller au lycée.\nI think you should go to college.\tJe pense que tu devrais aller au collège.\nI think you should take vitamins.\tJe pense que tu devrais prendre des vitamines.\nI think you should take vitamins.\tJe pense que vous devriez prendre des vitamines.\nI think you're a really nice guy.\tJe trouve que tu es vraiment un gars sympa.\nI thought I might be of some use.\tJe pensais que je pourrais être d'une quelconque utilité.\nI thought I would find you there.\tJe pensais vous y trouver.\nI thought I would find you there.\tJe pensais t'y trouver.\nI thought it would be easy to do.\tJe pensais que ce serait simple à faire.\nI thought they wouldn't like you.\tJe pensais qu'ils ne t'apprécieraient pas.\nI thought they wouldn't like you.\tJe pensais qu'elles ne t'apprécieraient pas.\nI thought they wouldn't like you.\tJe pensais qu'ils ne vous apprécieraient pas.\nI thought they wouldn't like you.\tJe pensais qu'elles ne vous apprécieraient pas.\nI thought we were going to crash.\tJ'ai pensé que nous allions nous écraser.\nI thought we'd have fun together.\tJe pensais que nous nous amuserions ensemble.\nI thought you could use a friend.\tJ'ai pensé que tu pourrais avoir besoin d'un ami.\nI thought you might want a drink.\tJe pensais qu'il se pourrait que tu veuilles une boisson.\nI thought you might want a drink.\tJe pensais que peut-être tu voudrais une boisson.\nI thought you might want a drink.\tJe pensais qu'il se pourrait que vous veuillez une boisson.\nI thought you might want a drink.\tJe pensais que peut-être vous voudriez une boisson.\nI thought you might want to know.\tJe pensais que tu voudrais peut-être savoir.\nI thought you might want to know.\tJe pensais qu'il se pourrait que tu veuilles savoir.\nI thought you might want to know.\tJe pensais que vous voudriez peut-être savoir.\nI thought you might want to know.\tJe pensais qu'il se pourrait que vous veuilliez savoir.\nI thought you were older than me.\tJe pensais que vous étiez plus âgé que moi.\nI thought you were older than me.\tJe pensais que vous étiez plus âgée que moi.\nI thought you were older than me.\tJe pensais que vous étiez mon aînée.\nI thought you were older than me.\tJe pensais que vous étiez mon aîné.\nI thought you were older than me.\tJe pensais être votre cadet.\nI thought you were older than me.\tJe pensais être votre cadette.\nI thought you were older than me.\tJe pensais être ton cadet.\nI thought you were older than me.\tJe pensais être ta cadette.\nI thought you were older than me.\tJe pensais que tu étais mon aîné.\nI thought you were older than me.\tJe pensais que tu étais mon aînée.\nI thought you were older than me.\tJe pensais que tu étais plus âgée que moi.\nI thought you were older than me.\tJe pensais que tu étais plus âgé que moi.\nI thought you'd gone and left me.\tJe pensais que vous seriez parti et m'auriez quitté.\nI thought you'd gone and left me.\tJe pensais que vous seriez partie et m'auriez quitté.\nI thought you'd gone and left me.\tJe pensais que vous seriez parti et m'auriez quittée.\nI thought you'd gone and left me.\tJe pensais que vous seriez partie et m'auriez quittée.\nI thought you'd gone and left me.\tJe pensais que vous seriez partis et m'auriez quitté.\nI thought you'd gone and left me.\tJe pensais que vous seriez partis et m'auriez quittée.\nI thought you'd gone and left me.\tJe pensais que vous seriez parties et m'auriez quitté.\nI thought you'd gone and left me.\tJe pensais que vous seriez parties et m'auriez quittée.\nI thought you'd gone and left me.\tJe pensais que tu serais parti et m'aurais quitté.\nI thought you'd gone and left me.\tJe pensais que tu serais parti et m'aurais quittée.\nI thought you'd gone and left me.\tJe pensais que tu serais partie et m'aurais quittée.\nI thought you'd gone and left me.\tJe pensais que tu serais partie et m'aurais quitté.\nI thought you'd want to see this.\tJe pensais que tu voudrais voir ça.\nI thought you'd want to see this.\tJe pensais que vous voudriez voir ça.\nI told Tom to take off his shoes.\tJ'ai dit à Tom d'enlever ses chaussures.\nI treated her as my own daughter.\tJe l'ai traitée comme ma propre fille.\nI tried to maintain my composure.\tJ'ai essayé de garder mon sang-froid.\nI understand, but I cannot agree.\tJe comprends, mais je ne peux pas être d'accord.\nI used to be the same age as you.\tJ'avais le même âge que toi.\nI used to be the same age as you.\tJ'ai eu le même âge que toi.\nI used to be the same age as you.\tJ'ai eu le même âge que vous.\nI used to be the same age as you.\tJ'avais le même âge que vous.\nI used to go to church on Sunday.\tJ'allais à l'église le dimanche.\nI used to go to church on Sunday.\tJ'avais pour habitude d'aller à l'église le dimanche.\nI usually have a light breakfast.\tJe prends habituellement un petit-déjeuner léger.\nI usually stay indoors on Sunday.\tJ'ai l'habitude de rester à la maison le dimanche.\nI usually wake up at six o'clock.\tJe me lève généralement à six heures.\nI usually wake up at six o'clock.\tJe me lève habituellement à six heures.\nI visited my grandmother's house.\tJe visitai la maison de ma grand-mère.\nI visited my grandmother's house.\tJ'ai visité la maison de ma grand-mère.\nI walked three-fourths of a mile.\tJ'ai marché trois quarts de mile.\nI want a full report before 2:30.\tJe veux un rapport complet avant quatorze heures trente.\nI want a piece of chocolate cake.\tJe veux un morceau de gâteau au chocolat.\nI want more detailed information.\tJ'aimerais avoir des informations plus détaillées.\nI want to apologize to everybody.\tJe veux présenter mes excuses à tout le monde.\nI want to ask you one last favor.\tJe veux te demander une dernière faveur.\nI want to ask you one last favor.\tJe veux vous demander une dernière faveur.\nI want to ask you some questions.\tJe veux te poser des questions.\nI want to ask you some questions.\tJe veux te poser quelques questions.\nI want to ask you some questions.\tJe veux vous poser des questions.\nI want to ask you some questions.\tJe veux vous poser quelques questions.\nI want to get a sightseeing visa.\tJe veux me procurer un visa touristique.\nI want to go back to my quarters.\tJe veux rentrer dans mes quartiers.\nI want to go home to see my wife.\tJe veux rentrer à la maison pour voir ma femme.\nI want to go somewhere on a trip.\tJ'ai envie de partir en voyage.\nI want to go to America some day.\tJe veux aller aux États-Unis un jour.\nI want to have a job that I love.\tJe veux disposer d'un boulot que j'adore.\nI want to know how you know that.\tJe veux savoir comment tu sais cela.\nI want to know how you know that.\tJe veux savoir d'où tu tiens ça.\nI want to know how you know that.\tJe veux savoir comment vous savez cela.\nI want to know how you know that.\tJe veux savoir d'où vous tenez cela.\nI want to know what time to come.\tJe veux savoir à quelle heure venir.\nI want to know who paid for this.\tJe veux savoir qui a payé ceci.\nI want to know who told you that.\tJe veux savoir qui t'a dit cela.\nI want to know who told you that.\tJe veux savoir qui vous a dit cela.\nI want to know who told you that.\tJe veux savoir qui t'a dit ça.\nI want to know who told you that.\tJe veux savoir qui vous a dit ça.\nI want to know who was in charge.\tJe veux savoir qui était responsable.\nI want to know why this happened.\tJe veux savoir pourquoi ceci est survenu.\nI want to know why this happened.\tJe veux savoir pourquoi ceci s'est produit.\nI want to know why this happened.\tJe veux savoir pourquoi ceci a eu lieu.\nI want to learn how to snowboard.\tJe veux apprendre à faire du snowboard.\nI want to learn to sing like you.\tJe veux apprendre à chanter comme vous.\nI want to learn to sing like you.\tJe veux apprendre à chanter comme toi.\nI want to make a good impression.\tJe veux faire bonne impression.\nI want to punch you in your face.\tJe veux vous mettre mon poing à la figure.\nI want to punch you in your face.\tJe veux te mettre mon poing à la figure.\nI want to see him no matter what.\tJe dois le voir à tout prix.\nI want to speak to my lawyer now.\tJe veux maintenant parler à mon avocat.\nI want to spend my life with you.\tJe veux passer ma vie avec toi.\nI want to spend my life with you.\tJe veux passer ma vie avec vous.\nI want to study abroad next year.\tJe veux étudier à l'étranger l'année prochaine.\nI want to write all of this down.\tJe veux prendre note de tout ça.\nI want to write all of this down.\tJe veux noter tout ça.\nI want you out of here right now.\tJe veux que vous sortiez d'ici immédiatement.\nI want you out of here right now.\tJe veux que tu sortes d'ici immédiatement.\nI want you to be my friend again.\tJe veux que tu sois à nouveau mon ami.\nI want you to be my friend again.\tJe veux que tu sois à nouveau mon amie.\nI want you to be my friend again.\tJe veux que vous soyez à nouveau mon ami.\nI want you to be my friend again.\tJe veux que vous soyez à nouveau mon amie.\nI want you to call off the fight.\tJe veux que tu annules le combat.\nI want you to call off the fight.\tJe veux que vous annuliez le combat.\nI want you to come to my wedding.\tJe veux que tu viennes à mon mariage.\nI want you to come to my wedding.\tJe veux que vous veniez à mon mariage.\nI want you to get your own place.\tJe veux que tu trouves ta propre piaule.\nI want you to get your own place.\tJe veux que vous preniez votre propre logement.\nI want you to lay back and relax.\tJe veux que tu t'allonges et que tu te détendes.\nI want you to lay back and relax.\tJe veux que vous vous allongiez et que vous vous détendiez.\nI want you to stay here with her.\tJe veux que vous restiez ici avec elle.\nI want you to stay where you are.\tJe veux que vous restiez où vous êtes.\nI want you to stay where you are.\tJe veux que tu restes où tu es.\nI want you to take this medicine.\tJe veux que tu prennes ce médicament.\nI want you to take this medicine.\tJe veux que vous preniez ce médicament.\nI want you to take this with you.\tJe veux que tu prennes ceci avec toi.\nI want you to take this with you.\tJe veux que vous preniez ceci avec vous.\nI want you to tell me what to do.\tJe veux que tu me dises quoi faire.\nI want you to tell me what to do.\tJe veux que vous me disiez quoi faire.\nI wanted to get my mind off work.\tJe voulais me sortir le travail de la tête.\nI wanted to get my mind off work.\tJe voulais m'extirper le travail de la tête.\nI wanted to have a beer with you.\tJe voulais prendre une bière avec toi.\nI wanted to have a beer with you.\tJe voulais prendre une bière avec vous.\nI wanted to speak with you first.\tJe voulais parler avec toi en premier.\nI wanted to speak with you first.\tJe voulais parler avec vous en premier.\nI was absent from work yesterday.\tJ'étais absent du travail hier.\nI was allowed to take a week off.\tJe fus autorisé à prendre une semaine de congé.\nI was allowed to take a week off.\tJ'ai été autorisé à prendre une semaine de congé.\nI was asked to identify the body.\tOn m'a demandé d'identifier le corps.\nI was bitten on the leg by a dog.\tJ'ai été mordu à la jambe par un chien.\nI was born and raised right here.\tJe suis né et j'ai été élevé juste ici.\nI was called on in English class.\tJ'étais appelé dans une classe d'anglais.\nI was deceived by her appearance.\tJ'ai été trompé par son apparence.\nI was expecting you at 11:00 a.m.\tJe pensais que vous viendriez à 11h.\nI was in the hospital for a week.\tJ'étais à l'hôpital pendant une semaine.\nI was injured while I was skiing.\tJe fus blessé en skiant.\nI was injured while I was skiing.\tJ'ai été blessé en skiant.\nI was just thinking of a new job.\tJe pensais justement à un nouveau travail.\nI was just trying to be friendly.\tJ'essayais seulement d'être amical.\nI was just trying to impress him.\tJ'essayais juste de l'impressionner.\nI was just trying to protect you.\tJ'essayais simplement de te protéger.\nI was raised eating Mexican food.\tOn m'a élevé à la nourriture Mexicaine.\nI was too afraid to say anything.\tJ'avais trop peur pour dire quoi que ce soit.\nI was too tired to walk any more.\tJ'étais trop fatigué pour continuer à marcher.\nI was too tired to walk any more.\tJ'étais trop fatiguée pour continuer à marcher.\nI was unable to stand any longer.\tJ'étais incapable de me tenir debout plus longtemps.\nI was unable to stand any longer.\tJe fus incapable de me tenir debout plus longtemps.\nI was very glad to hear the news.\tJ'étais très heureux d'entendre les nouvelles.\nI was very surprised at the news.\tJ'ai été très surpris de ces nouvelles.\nI was with Tom from 8:30 to 2:30.\tJ'étais avec Tom de 8h30 à 14h30.\nI was with Tom from 8:30 to 2:30.\tJ'étais avec Tom de 20h30 à 2h30.\nI was wondering if we could talk.\tJe me demandais si nous pouvions parler.\nI was wondering if we could talk.\tJe me demandais si nous pouvions discuter.\nI went home to change my clothes.\tJe suis allée chez moi pour changer de vêtements.\nI went into partnership with him.\tJe me suis associé à lui.\nI went to Tokyo to buy this book.\tJe suis allé à Tokyo pour acheter ce livre.\nI went to a shoe store yesterday.\tJ'ai été dans un magasin de chaussures hier.\nI went to the hospital yesterday.\tJ'ai été à l'hôpital hier.\nI went to the park last Saturday.\tJe suis allé au parc samedi dernier.\nI went to the scene of the crime.\tJe me rendis sur le lieu des faits.\nI went to the scene of the crime.\tJe me rendis sur le lieu du crime.\nI went to two concerts last week.\tJe suis allé à deux concerts la semaine dernière.\nI will ask him about it tomorrow.\tJe lui poserai la question demain.\nI will ask him about it tomorrow.\tJe le questionnerai demain à ce sujet.\nI will do anything to please her.\tJe ferai n'importe quoi pour lui plaire.\nI will go there even if it rains.\tJ'irai, même s'il pleut.\nI will go there even if it rains.\tJe m'y rendrai, même s'il pleut.\nI wish I could go to the concert.\tJ'aimerais pouvoir aller au concert.\nI wish I could go with you today.\tJ'espère pouvoir y aller avec toi aujourd'hui.\nI wish I could remember her name.\tJ'aimerais me rappeler son nom.\nI wish I could remember his name.\tJ'aimerais me rappeler son nom.\nI wish I had been there with you.\tJ'aurais aimé y avoir été avec vous.\nI wish I had been there with you.\tJ'aurais aimé y avoir été avec toi.\nI wish he would write more often.\tJe souhaite qu'il écrive plus souvent.\nI wish he would write more often.\tJ'aimerais qu'il écrive plus souvent.\nI wish you had told me the truth.\tJ'eusse aimé que vous m'ayez dit la vérité.\nI wish you had told me the truth.\tJ'eusse aimé que tu m'aies dit la vérité.\nI wish you were here with me now.\tJ'aimerais que tu sois là avec moi en ce moment.\nI wish you were here with me now.\tJ'aimerais que vous soyez là avec moi en ce moment.\nI won't have to leave work early.\tJe n'aurai pas à quitter tôt mon travail.\nI wonder if there's a connection.\tJe me demande s'il y a une relation.\nI wonder if they'll get divorced.\tJe me demande s'ils divorceront.\nI wonder if you ever think of me.\tJe me demande si tu penses jamais à moi.\nI wonder if you ever think of me.\tJe me demande si vous pensez jamais à moi.\nI wonder what to make for dinner.\tJe me demande quoi faire pour le dîner.\nI wonder what to make for dinner.\tJe me demande quoi faire pour le déjeuner.\nI wonder why women don't go bald.\tJe me demande pourquoi les femmes ne deviennent pas chauves.\nI work different hours every day.\tJe travaille à différentes heures chaque jour.\nI would do anything to get a job.\tJe ferais n'importe quoi pour obtenir un emploi.\nI would lay down my life for you.\tJe laisserais ma vie pour toi.\nI would lay down my life for you.\tJ'abandonnerais ma vie pour vous.\nI would like to buy some aspirin.\tJ'aimerais acheter de l'aspirine.\nI would like to come and see you.\tJe voudrais venir te voir.\nI would like to come and see you.\tJe voudrais venir vous voir.\nI would like to order a sandwich.\tJe voudrais acheter un sandwich.\nI would like to see the festival.\tJ'aimerais voir la fête.\nI would like you to come with me.\tJ'ai envie que tu viennes avec moi.\nI would like you to stay with me.\tJ'aimerais que tu restes avec moi.\nI wouldn't be so sure about that.\tJe n'en serais pas si sûr.\nI wouldn't be so sure about that.\tJe n'en serais pas si sûre.\nI wouldn't do that if I were you.\tJe ne le ferais pas si j'étais vous.\nI wouldn't do that if I were you.\tJe ne le ferais pas si j'étais toi.\nI wouldn't mind a beer right now.\tJe ne dirais pas non à une bière, là.\nI wouldn't want anyone to see us.\tJe ne voudrais pas que quiconque nous voie.\nI write letters almost every day.\tJ'écris des lettres presque tous les jours.\nI'd be delighted to sing for you.\tJe serais ravi de chanter pour toi.\nI'd be delighted to sing for you.\tJe serais ravi de chanter pour vous.\nI'd be delighted to sing for you.\tJe serais ravie de chanter pour toi.\nI'd be delighted to sing for you.\tJe serais ravie de chanter pour vous.\nI'd like a cup of coffee, please.\tJ'aimerais une tasse de café, je vous prie.\nI'd like a cup of coffee, please.\tJ'aimerais une tasse de café, je te prie.\nI'd like a cup of coffee, please.\tJ'aimerais une tasse de café, s'il vous plaît.\nI'd like a cup of coffee, please.\tJ'aimerais une tasse de café, s'il te plaît.\nI'd like a room with a good view.\tJ'aimerais une chambre avec une belle vue.\nI'd like an 80-yen stamp, please.\tJ'aimerais un timbre à 80 yens, s'il vous plaît.\nI'd like an 80-yen stamp, please.\tJe voudrais un timbre à quatre-vingts yens, s'il vous plaît.\nI'd like some more bread, please.\tJ'aimerais un peu plus de pain, s'il vous plaît.\nI'd like some time alone, please.\tJ'aimerais disposer d'un peu de temps seul, je te prie.\nI'd like some time alone, please.\tJ'aimerais disposer d'un peu de temps seule, je te prie.\nI'd like some time alone, please.\tJ'aimerais disposer d'un peu de temps seul, je vous prie.\nI'd like some time alone, please.\tJ'aimerais disposer d'un peu de temps seule, je vous prie.\nI'd like to ask you one question.\tJ'aimerais vous poser une question.\nI'd like to ask you one question.\tJ'aimerais te poser une question.\nI'd like to be as rich as Tom is.\tJ'aimerais être aussi riche que Tom.\nI'd like to do that, but I can't.\tJ'aimerais faire ça mais je ne peux pas.\nI'd like to earn some more money.\tJ'aimerais gagner davantage d'argent.\nI'd like to go to Boston someday.\tJ'aimerais aller à Boston un jour.\nI'd like to graduate next spring.\tJ'aimerais être diplômé au printemps prochain.\nI'd like to graduate next spring.\tJ'aimerais être diplômée au printemps prochain.\nI'd like to have a glass of wine.\tJ'aimerais avoir un verre de vin.\nI'd like to have a word with you.\tJ'aimerais vous toucher un mot.\nI'd like to have a word with you.\tJ'aimerais m'entretenir avec vous.\nI'd like to have a word with you.\tJ'aimerais m'entretenir avec toi.\nI'd like to have my hair trimmed.\tJ'aimerais me faire raccourcir les cheveux.\nI'd like to have you on our team.\tJ'aimerais vous avoir dans notre équipe.\nI'd like to have you on our team.\tJ'aimerais t'avoir dans notre équipe.\nI'd like to hear more about that.\tJ'aimerais en entendre plus à propos de cela.\nI'd like to know what's going on.\tJ'aimerais savoir ce qui se passe.\nI'd like to run a big stock farm.\tJe voudrais régir une grosse ferme d'élevage.\nI'd like to run a few more tests.\tJ'aimerais effectuer quelques examens additionnels.\nI'd like to run a few more tests.\tJ'aimerais dérouler quelques examens supplémentaires.\nI'd like to run a few more tests.\tJ'aimerais faire quelques examens additionnels.\nI'd like to run a few more tests.\tJ'aimerais faire quelques examens supplémentaires.\nI'd like to sit here for a while.\tJ'aimerais m'asseoir ici un instant.\nI'd like to speak to the manager.\tJ'aimerais parler au patron.\nI'd like to speak with my lawyer.\tJ'aimerais parler à mon avocat.\nI'd like to visit Boston someday.\tJ'aimerais visiter Boston, un jour.\nI'd like you to be more punctual.\tJ'aimerais que vous soyez plus ponctuel.\nI'd like you to come work for me.\tJ'aimerais que tu viennes travailler pour moi.\nI'd like you to come work for me.\tJ'aimerais que vous veniez travailler pour moi.\nI'd like you to mail this letter.\tJ'aimerais que tu postes cette lettre.\nI'd never do something like that.\tJe ne ferais jamais quelque chose comme ça.\nI'd prefer not to take that risk.\tJe ne préférerais pas prendre ce risque.\nI'd prefer to not take that risk.\tJe préférerais ne pas prendre ce risque.\nI'd rather be a bird than a fish.\tJe préférerais être un oiseau plutôt qu'un poisson.\nI'd suggest the following change.\tJe conseillerais le changement suivant.\nI'll ask him if he's busy or not.\tJe lui demanderai s'il est occupé ou pas.\nI'll be with you in five minutes.\tJe serai à toi dans cinq minutes.\nI'll be with you in five minutes.\tJe serai à vous dans cinq minutes.\nI'll carry this suitcase for you.\tJe vais porter cette valise pour vous.\nI'll do anything to get Tom back.\tJe ferai tout pour faire revenir Tom.\nI'll give you a local anesthetic.\tJe vais vous administrer un anesthésique local.\nI'll go even if it rains heavily.\tJe m'y rendrai, même s'il pleut des cordes.\nI'll let you know in a day or so.\tJe vous le ferai savoir d'ici un jour ou deux.\nI'll let you know in a day or so.\tJe te le ferai savoir d'ici un jour ou deux.\nI'll meet you at the bus station.\tJe vous rejoindrai à la gare routière.\nI'll meet you at the bus station.\tJe vais vous rejoindre à la gare routière.\nI'll meet you at the bus station.\tJe te rejoindrai à la gare routière.\nI'll meet you at the bus station.\tJe vais te rejoindre à la gare routière.\nI'll meet you at the usual place.\tJe te retrouverai à l'endroit habituel.\nI'll meet you at the usual place.\tJe vous retrouverai à l'endroit habituel.\nI'll meet you right after school.\tJe te verrai immédiatement après l'école.\nI'll need to run some more tests.\tJ'aurais besoin de faire quelques tests supplémentaires.\nI'll never be able to play again.\tJe ne serai jamais plus capable d'y jouer.\nI'll never forget our first date.\tJe n'oublierai jamais la première fois que nous sommes sortis ensemble.\nI'll never leave you alone again.\tJe ne te laisserai plus jamais seul.\nI'll never leave you alone again.\tJe ne te laisserai plus jamais seule.\nI'll never leave you alone again.\tJe ne vous laisserai plus jamais seul.\nI'll never leave you alone again.\tJe ne vous laisserai plus jamais seule.\nI'll never leave you alone again.\tJe ne vous laisserai plus jamais seuls.\nI'll never leave you alone again.\tJe ne vous laisserai plus jamais seules.\nI'll not make that mistake again.\tJe ne commettrai pas à nouveau cette erreur.\nI'll stay here till you get back.\tJe reste ici jusqu'à ce que tu reviennes.\nI'll stay there till six o'clock.\tJe resterai là jusqu'à six heures.\nI'll take back everything I said.\tJe retirerai tout ce que j'ai dit.\nI'll tell him when he comes here.\tJe le lui dirai quand il viendra ici.\nI'll try to persuade Tom to help.\tJ'essayerai de persuader Tom d'aider.\nI'm about to tell you the answer.\tJe suis sur le point de te dire la réponse.\nI'm afraid this key does not fit.\tJ'ai bien peur que cette clé ne marche pas.\nI'm assuming this is your father.\tJe suppose que c'est votre père.\nI'm assuming this is your father.\tJe suppose que c'est ton père.\nI'm assuming this is your father.\tJe suppose qu'il s'agit de votre père.\nI'm assuming this is your father.\tJe suppose qu'il s'agit de ton père.\nI'm astonished by her cleverness.\tJe suis étonné par son habileté.\nI'm aware of my responsibilities.\tJe suis consciente de mes responsabilités.\nI'm aware of my responsibilities.\tJe suis conscient de mes responsabilités.\nI'm cold. May I close the window?\tJ'ai froid. Puis-je fermer la fenêtre ?\nI'm delighted that it's all over.\tJe me réjouis que tout soit terminé.\nI'm fed up with this wet weather.\tJ'en ai marre de ce temps humide.\nI'm getting off at the next stop.\tJe descends au prochain arrêt.\nI'm getting too old for this job.\tJe me fais trop vieux pour ce travail.\nI'm getting used to eating alone.\tJe m'habitue à manger seul.\nI'm getting used to eating alone.\tJe m'habitue à manger seule.\nI'm glad that he passed the exam.\tJe suis heureux qu'il ait réussi à l'examen.\nI'm glad to hear of your success.\tJe suis heureux d'entendre parler de ton succès.\nI'm glad to hear of your success.\tJe suis heureux d'entendre parler de votre succès.\nI'm glad to see you in one piece.\tHeureux de vous voir en un seul morceau !\nI'm glad to see you in one piece.\tHeureuse de vous voir en un seul morceau !\nI'm glad to see you in one piece.\tHeureux de te voir en un seul morceau !\nI'm glad to see you in one piece.\tHeureuse de te voir en un seul morceau !\nI'm glad you asked me for advice.\tJe suis content que tu m'aies demandé conseil.\nI'm going to America this summer.\tJe vais en Amérique cet été.\nI'm going to be away a long time.\tJe vais m'absenter pendant un certain temps.\nI'm going to chop this tree down.\tJe vais couper cet arbre.\nI'm going to get on the next bus.\tJe vais prendre le bus suivant.\nI'm going to have to dye my hair.\tJe vais devoir me teindre les cheveux.\nI'm going to need some more time.\tJe vais avoir besoin de plus de temps.\nI'm going to need some more time.\tJe vais avoir besoin de davantage de temps.\nI'm going to rewrite this report.\tJe vais réécrire ce rapport.\nI'm going to send Tom some money.\tJe vais envoyer de l'argent à Tom.\nI'm just a little busy right now.\tJe suis seulement un peu occupé en ce moment.\nI'm just a regular office worker.\tJe suis juste un employé de bureau normal.\nI'm just worried about my weight.\tJe suis juste préoccupé par mon poids.\nI'm just worried about my weight.\tJe suis juste préoccupée par mon poids.\nI'm just worried about my weight.\tJe me fais juste du souci au sujet de mon poids.\nI'm looking forward to the party.\tJ'attends la fête avec impatience.\nI'm more than just a pretty face.\tJe suis davantage qu'un joli visage.\nI'm not able to fix the computer.\tJe ne peux pas réparer l'ordinateur.\nI'm not as young as I used to be.\tJe ne suis plus aussi jeune qu'auparavant.\nI'm not hiding anything from you.\tJe ne te cache rien.\nI'm not privy to their decisions.\tJe ne suis pas au courant de leurs décisions.\nI'm not qualified to do this job.\tJe ne suis pas qualifié pour faire ce travail.\nI'm not sure what I was thinking.\tJe ne suis pas certain de ce que je pensais.\nI'm not sure what I was thinking.\tJe ne suis pas certaine de ce que je pensais.\nI'm not trying to impress anyone.\tJe n'essaie d'impressionner personne.\nI'm not trying to impress anyone.\tJe n'essaie pas d'impressionner qui que ce soit.\nI'm old enough to live by myself.\tJe suis assez grand pour vivre par mes propres moyens.\nI'm pleased with his performance.\tJe suis satisfait de sa performance.\nI'm pleased with his performance.\tJe suis satisfaite de sa performance.\nI'm pleased with his performance.\tJe suis satisfait de sa représentation.\nI'm pleased with his performance.\tJe suis satisfaite de sa représentation.\nI'm pleased with his performance.\tJe suis satisfait de sa prestation.\nI'm pleased with his performance.\tJe suis satisfaite de sa prestation.\nI'm practically an adult already.\tJe suis déjà pratiquement adulte.\nI'm probably just being paranoid.\tIl est probable que je suis juste paranoïaque, là.\nI'm responsible for Tom's safety.\tJe suis responsable de la sécurité de Tom.\nI'm sick and tired of hamburgers.\tJe n'en peux plus des hamburgers.\nI'm sorry I didn't answer sooner.\tJe suis désolé de ne pas avoir répondu plus tôt.\nI'm sorry I missed your birthday.\tJe suis désolée d'avoir raté ton anniversaire.\nI'm sorry I missed your birthday.\tJe suis désolé d'avoir raté votre anniversaire.\nI'm sorry things didn't work out.\tJe suis désolé que les choses n'aient pas fonctionné.\nI'm sorry things didn't work out.\tJe suis désolée que les choses n'aient pas fonctionné.\nI'm sorry to bother you so often.\tJe suis désolé de vous déranger si souvent.\nI'm sorry to bother you so often.\tJe suis désolée de vous déranger si souvent.\nI'm sorry to bother you so often.\tJe suis désolé de te déranger si souvent.\nI'm sorry to bother you so often.\tJe suis désolée de te déranger si souvent.\nI'm sorry to bother you so often.\tJe suis désolé de vous ennuyer si souvent.\nI'm sorry to bother you so often.\tJe suis désolée de vous ennuyer si souvent.\nI'm sorry to bother you so often.\tJe suis désolé de t'ennuyer si souvent.\nI'm sorry to bother you so often.\tJe suis désolée de t'ennuyer si souvent.\nI'm sorry, I don't recognize you.\tJe suis désolé, je ne vous reconnais pas.\nI'm sorry, I don't recognize you.\tJe suis désolé, je ne vous remets pas.\nI'm sorry, I don't recognize you.\tJe suis désolé, je ne te reconnais pas.\nI'm sorry, I don't recognize you.\tJe suis désolé, je ne te remets pas.\nI'm sorry, I don't recognize you.\tJe suis désolée, je ne vous remets pas.\nI'm sorry, I don't recognize you.\tJe suis désolée, je ne te remets pas.\nI'm sorry, I don't recognize you.\tJe suis désolée, je ne te reconnais pas.\nI'm sorry, I don't recognize you.\tJe suis désolée, je ne vous reconnais pas.\nI'm sorry, I just wanted to help.\tDésolé, je voulais juste donner un coup de main.\nI'm sorry, but you need to leave.\tJe suis désolée, mais tu dois partir.\nI'm sorry, but you need to leave.\tJe suis désolé, mais tu dois partir.\nI'm sorry, but you need to leave.\tJe suis désolée, mais vous devez partir.\nI'm sorry, but you need to leave.\tJe suis désolé, mais vous devez partir.\nI'm sorry, it won't happen again.\tJe suis désolé, ça ne se reproduira pas.\nI'm sorry, it won't happen again.\tJe suis désolée, ça ne se reproduira pas.\nI'm sorry, today is fully booked.\tJe suis désolé, mais les réservations sont closes pour aujourd'hui.\nI'm still cooking the brown rice.\tJe suis encore en train de faire cuire le riz brun.\nI'm still not sure I can do that.\tJe ne suis toujours pas sûr que je puisse faire ça.\nI'm still not sure I can do that.\tJe ne suis toujours pas sûre que je puisse faire ça.\nI'm still not sure I can do that.\tJe ne suis toujours pas certain de pouvoir faire cela.\nI'm still not sure I can do that.\tJe ne suis toujours pas certaine de pouvoir faire cela.\nI'm still suffering from jet lag.\tJe souffre encore à cause du décalage horaire.\nI'm sure I have the right number.\tJe suis convaincu d'avoir le bon numéro.\nI'm sure I'll be able to find it.\tJe suis sûr que je pourrais le trouver.\nI'm sure everything will be fine.\tJe suis sûr que tout ira bien.\nI'm sure everything will be fine.\tJe suis sûre que tout ira bien.\nI'm sure that he'll come on time.\tJe suis persuadé qu'il viendra à temps.\nI'm sure that we'll all miss her.\tJe suis certain qu'elle va tous nous manquer.\nI'm sure that won't be necessary.\tJe suis certain que ce ne sera pas nécessaire.\nI'm sure that won't be necessary.\tJe suis certaine que ce ne sera pas nécessaire.\nI'm sure there's another way out.\tJe suis sûre qu'il y a un autre chemin de sortie.\nI'm sure there's another way out.\tJe suis sûr qu'il y a un autre chemin de sortie.\nI'm sure you have many questions.\tJe suis certain que vous avez beaucoup de questions.\nI'm sure you won't disappoint me.\tJe suis certain que vous ne me décevrez pas.\nI'm sure you won't disappoint me.\tJe suis certain que tu ne me décevras pas.\nI'm sure you won't disappoint me.\tJe suis certaine que vous ne me décevrez pas.\nI'm sure you won't disappoint me.\tJe suis certaine que tu ne me décevras pas.\nI'm taking care of my grandfather\tJe m'occupe de mon grand-père.\nI'm taking care of my grandfather\tJe prends soin de mon grand-père.\nI'm the only one who can do that.\tJe suis le seul à pouvoir faire cela.\nI'm the only one who can do that.\tJe suis la seule qui peut faire cela.\nI'm the tallest one in the class.\tJe suis le plus grand de la classe.\nI'm three years younger than you.\tJe suis trois ans plus jeune que toi.\nI'm tired of watching television.\tJe suis fatigué de regarder la télévision.\nI'm too sleepy to do my homework.\tJe suis trop fatigué pour faire mes devoirs.\nI'm too sleepy to do my homework.\tJ'ai trop sommeil pour faire mes devoirs.\nI'm too tired to walk any longer.\tJe suis trop fatigué pour marcher plus longtemps.\nI'm very sorry about the mistake.\tJe suis vraiment désolé pour l'erreur.\nI'm waiting for her to come here.\tJ'attends qu'elle vienne ici.\nI'm willing to accept your offer.\tJe suis d'accord d'accepter votre offre.\nI've already apologized for that.\tJ'ai déjà présenté mes excuses pour ça.\nI've already apologized for that.\tJ'ai déjà présenté mes excuses pour cela.\nI've already hidden the diamonds.\tJ'ai déjà caché les diamants.\nI've already told Tom what to do.\tJ'ai déjà dit à Tom ce qu'il y a à faire.\nI've already told Tom what to do.\tJ'ai déjà dit à Tom ce qu'il faut faire.\nI've been a teacher for 15 years.\tCela fait quinze ans que je suis enseignant.\nI've been feeling bad for a week.\tJe me suis senti mal pendant une semaine.\nI've been thinking about it, too.\tJ'y ai également réfléchi.\nI've changed my website's layout.\tJ'ai changé la disposition de mon site web.\nI've changed my website's layout.\tJ'ai changé l'agencement de mon site web.\nI've decided never to vote again.\tJ'ai décidé de ne plus jamais voter.\nI've decided never to vote again.\tJ'ai pris la décision de ne plus jamais voter.\nI've finally gotten over my cold.\tJ'ai finalement réussi à vaincre mon rhume.\nI've finally gotten over my cold.\tJ'ai finalement réussi à surmonter mon rhume.\nI've given this a lot of thought.\tJ'y ai consacré beaucoup de réflexion.\nI've got as much money as he has.\tJ'ai autant d'argent que lui.\nI've got no quarrel with you two.\tJe n'ai pas de querelle avec vous deux.\nI've got nothing to do with this.\tJe n'ai rien à faire avec ceci.\nI've got to get away for a while.\tIl faut que je m'absente un peu.\nI've got to get ready for school.\tIl me faut me préparer pour l'école.\nI've got to go to the men's room.\tIl faut que j'aille aux toilettes.\nI've got to learn some new songs.\tIl me faut apprendre de nouvelles chansons.\nI've got to learn some new songs.\tIl faut que j'apprenne de nouvelles chansons.\nI've got to learn some new songs.\tJe dois apprendre de nouvelles chansons.\nI've gotten used to this climate.\tJe me suis habitué à ce climat.\nI've had a lot on my mind lately.\tJ'ai eu beaucoup de choses à l'esprit, ces derniers temps.\nI've just arrived at the station.\tJe viens d’arriver à la gare.\nI've just arrived at the station.\tJe viens d’arriver à la station.\nI've never even had a girlfriend.\tJe n'ai jamais même eu de petite amie.\nI've never even had a girlfriend.\tJe n'ai jamais même eu de petite copine.\nI've never even had a girlfriend.\tJe n'ai jamais même eu de nana.\nI've never felt like this before.\tJe ne me suis jamais sentie comme ceci auparavant.\nI've never felt like this before.\tJe ne me suis jamais senti comme ceci avant.\nI've never heard of such a thing.\tJamais je n'ai entendu une telle chose.\nI've never hit anyone in my life.\tJe n'ai jamais frappé qui que ce soit de ma vie.\nI've never seen a whale that big.\tJe n'ai jamais vu une aussi grosse baleine.\nI've never seen a whale that big.\tJe n'ai jamais vu une baleine aussi grosse.\nI've never seen a whale that big.\tJamais n'ai-je vu baleine aussi grande.\nI've never seen a whale that big.\tJamais n'ai-je vu baleine aussi grosse.\nI've never seen anything like it.\tJe n'ai encore jamais rien vu de tel.\nI've never seen anything like it.\tJ'ai jamais rien vu d'pareil.\nI've packed my suitcases already.\tJ'ai déjà bouclé mes valises.\nI've told you not to call me Tom.\tJe t'ai dit de ne pas m'appeler Tom.\nIf I were free, I could help you.\tSi j'avais été libre, j'aurais pu t'aider.\nIf I were you, I would ignore it.\tSi j'étais toi, je l'ignorerais.\nIf I were you, I would ignore it.\tSi j’étais toi, j’ignorerais ça.\nIf I were you, I would not do it.\tÀ ta place, je ne le ferais pas.\nIf I were you, I would trust her.\tSi j'étais vous, je lui ferais confiance.\nIf I were you, I would trust her.\tSi j'étais toi, je lui ferais confiance.\nIf he comes, give him my regards.\tS'il vient, saluez-le de ma part.\nIf he comes, give him this paper.\tS'il vient, remets-lui ce papier !\nIf he comes, give him this paper.\tS'il vient, remettez-lui ce papier !\nIf it is worth doing, do it well.\tSi ça vaut le coup, fais-le bien.\nIf it rains tomorrow, I won't go.\tS'il pleut demain, je n'y vais pas.\nIf only I'd been a little taller!\tSi seulement j'avais été un peu plus grand !\nIf only I'd been a little taller!\tSi seulement j'avais été un peu plus grande !\nIf possible, I'd like to see him.\tSi c'est possible, j'aimerais le voir.\nIf you ask him, he will help you.\tSi tu lui demandes, il t'aidera.\nIf you came, that would be great.\tSi tu venais, ce serait génial.\nIf you don't go, I won't, either.\tSi tu n'y vas pas, je n'irai pas moi non plus.\nIf you don't go, I won't, either.\tSi vous n'y allez pas, moi non plus.\nIn a sense, life is only a dream.\tEn un sens, la vie n'est qu'un rêve.\nIn autumn the leaves turn yellow.\tEn automne, les feuilles virent au jaune.\nIn autumn the leaves turn yellow.\tEn automne, les feuilles deviennent jaunes.\nIn case of fire, push the button.\tEn cas d'incendie, appuyez sur le bouton.\nIn hindsight, this was a mistake.\tAvec le recul, c'était une erreur.\nIn spite of the rain, I went out.\tJe suis sorti malgré la pluie.\nInvite him over to watch a movie.\tInvite-le à venir voir un film.\nInvite him over to watch a movie.\tInvitez-le à venir voir un film.\nIs Tom well enough to work today?\tEst-ce que Tom est assez en forme pour travailler aujourd'hui ?\nIs eating cockroaches a bad idea?\tManger des cafards est-il une mauvaise idée ?\nIs everything all right in there?\tTout va-t-il bien, là-dedans ?\nIs everything all right up there?\tEst-ce que tout va bien là-haut ?\nIs it always a sin to tell a lie?\tDire un mensonge est-il toujours un péché ?\nIs it cheaper to call after nine?\tEst-ce moins cher, d'appeler après neuf heures ?\nIs it safe to skate on this lake?\tEst-ce sans risque de patiner sur ce lac ?\nIs it safe to swim in this river?\tEst-il raisonnable de nager dans cette rivière ?\nIs that seriously what you think?\tEst-ce là sérieusement ce que vous pensez ?\nIs that seriously what you think?\tEst-ce là sérieusement ce que tu penses ?\nIs that the train I have to take?\tC'est celui-ci le train que je dois prendre ?\nIs that your car in the driveway?\tEst-ce ta voiture, dans l'allée ?\nIs that your car in the driveway?\tEst-ce votre voiture, dans l'allée ?\nIs the meeting today or tomorrow?\tLa réunion se tient-elle aujourd'hui ou demain ?\nIs there a bank near the station?\tY a-t-il une banque proche de la gare ?\nIs there a gas station near here?\tY a-t-il une station-service dans les environs ?\nIs there anywhere you want to go?\tY a-t-il un endroit quelconque où tu veuilles te rendre ?\nIs there room in your car for me?\tY a-t-il de la place pour moi dans ta voiture ?\nIs there something troubling you?\tQuelque chose te trouble-t-il ?\nIs there something wrong with me?\tY a-t-il un problème ?\nIs there something wrong with me?\tJe te pose un problème ?\nIs there something wrong with me?\tJe vous pose un problème ?\nIs this your first investigation?\tEst-ce votre première enquête ?\nIs this your first time in Japan?\tEst-ce la première fois que vous venez au Japon ?\nIs this your idea of a good time?\tEst-ce là votre conception d'un bon moment ?\nIs this your idea of a good time?\tEst-ce là ta conception d'un bon moment ?\nIt all depends how you handle it.\tCela dépend de comment vous le gérez.\nIt all depends how you handle it.\tCela dépend de ta manière de le gérer.\nIt appears that he is a musician.\tIl semble qu'il soit musicien.\nIt doesn't bother me if you stay.\tÇa ne me dérange pas que vous restiez.\nIt doesn't matter what I believe.\tCe que je crois n'a pas d'importance.\nIt has been snowing for two days.\tIl neige depuis deux jours.\nIt is 5 miles from here to Tokyo.\tTokyo est à 5 miles d'ici.\nIt is Paris that I want to visit.\tC'est Paris que je veux visiter.\nIt is about time we were leaving.\tIl est grand temps que nous partions.\nIt is becoming warmer day by day.\tIl fait de plus en plus chaud jour après jour.\nIt is cold there, even in summer.\tIl fait froid, là-bas, même en été !\nIt is cold there, even in summer.\tIl y fait froid, même en été !\nIt is expensive to live in Japan.\tVivre au Japon est très onéreux.\nIt is impossible for me to do so.\tIl m'est impossible de le faire.\nIt is likely to be fine tomorrow.\tIl est probable que le temps sera beau demain.\nIt is likely to be fine tomorrow.\tIl est probable que ça conviendra demain.\nIt is no use asking me for money.\tÇa ne sert à rien de me demander de l'argent.\nIt is obvious that that is a lie.\tC'est clairement un mensonge.\nIt is safe to skate on this lake.\tOn peut patiner de ce coté du lac en toute sécurité.\nIt is said that he was very rich.\tOn dit qu'il était très riche.\nIt is said that he was very rich.\tOn raconte qu'il était pété de tune.\nIt is two o'clock in the morning.\tIl est deux heures du matin.\nIt is two o'clock in the morning.\tIl est 2h du matin.\nIt just was not my day yesterday.\tHier n'était juste pas mon jour.\nIt looks like it's going to rain.\tIl semble qu'il se met à pleuvoir.\nIt looks like it's working again.\tÇa semble fonctionner à nouveau.\nIt looks like you've been crying.\tOn dirait que tu as pleuré.\nIt looks like you've been crying.\tOn dirait que vous avez pleuré.\nIt may possibly be fine tomorrow.\tÇa peut peut-être convenir demain.\nIt may possibly be fine tomorrow.\tLe temps peut être beau demain.\nIt may well be that you're right.\tIl se peut bien que tu aies raison.\nIt may well be that you're right.\tIl se peut bien que vous ayez raison.\nIt rained hard yesterday morning.\tIl a plu des cordes hier matin.\nIt seems obvious that he is sick.\tIl semble évident qu'il est malade.\nIt seems that he knows the truth.\tIl semble qu'il connaisse la vérité.\nIt seems to me that he is honest.\tIl me semble qu'il est honnête.\nIt seems we are in the same boat.\tIl semble que nous soyons sur le même bateau.\nIt seems we are in the same boat.\tIl semble que nous soyons dans le même bateau.\nIt sounds like someone is crying.\tOn dirait que quelqu'un est en train de pleurer.\nIt was frustrating and confusing.\tCe fut frustrant et déroutant.\nIt was getting louder and louder.\tÇa devenait de plus en plus fort.\nIt was less than fifteen dollars.\tÇa coûtait moins de quinze dollars.\nIt was obvious that he was lying.\tIl était évident qu'il mentait.\nIt was shorter than she expected.\tCe fut plus court que ce à quoi elle s'attendait.\nIt was shorter than she expected.\tÇa a été plus court que ce à quoi elle s'attendait.\nIt was so hot I took my coat off.\tIl faisait si chaud que j'ai enlevé mon manteau.\nIt was that dog that bit my hand.\tC'est ce chien là-bas qui m'a mordu la main.\nIt was the best night of my life.\tÇa a été la plus belle nuit de ma vie.\nIt was the best night of my life.\tÇa a été la plus belle soirée de ma vie.\nIt was the calm before the storm.\tC’était le calme avant la tempête.\nIt was very dark inside the mine.\tIl faisait très sombre à l'intérieur de la mine.\nIt would be interesting, I think.\tCe serait intéressant, je pense.\nIt would be nice to have a party.\tCe serait chouette d'organiser une fête.\nIt would only be a waste of time.\tCe serait juste une perte de temps.\nIt wouldn't have mattered anyway.\tDe toute façon, ça n'aurait rien changé.\nIt'll cost at least five dollars.\tCela coûtera au moins cinq dollars.\nIt's a great night to go dancing.\tC'est une belle nuit pour aller danser.\nIt's a great pleasure to be here.\tC'est un grand plaisir d'être ici.\nIt's a great way to make friends.\tC'est une super manière de se faire des amis.\nIt's a lot easier than I thought.\tC'est beaucoup plus facile que je pensais.\nIt's a lot of fun to be with you.\tC'est très amusant d'être avec vous.\nIt's a question of life or death.\tC'est une question de vie ou de mort.\nIt's a real pleasure to meet you.\tC'est un véritable plaisir que de vous rencontrer.\nIt's about time I was going home.\tIl est temps que je rentre chez moi.\nIt's about time I was going home.\tIl est l'heure de rentrer chez moi.\nIt's actually not that difficult.\tCe n'est vraiment pas si difficile.\nIt's already time to go to sleep.\tC'est déjà l'heure de dormir.\nIt's an idea whose time has come.\tC'est une idée dont le moment est venu.\nIt's as much an art as a science.\tC'est tout autant un art qu'une science.\nIt's at the back of the building.\tC'est à l'arrière du bâtiment.\nIt's been warm the last few days.\tIl a fait chaud ces derniers jours.\nIt's difficult to peel chestnuts.\tC'est difficile de décortiquer les châtaignes.\nIt's easy to make and it's cheap.\tC'est facile à faire et c'est simple.\nIt's essential that we find them.\tIl est vital que nous les trouvions.\nIt's essential that we find them.\tIl est essentiel que nous les retrouvions.\nIt's evident that you told a lie.\tIl est évident que vous racontez un mensonge.\nIt's impossible to change it now.\tC'est impossible de le changer maintenant.\nIt's impossible to change it now.\tIl est impossible de la changer maintenant.\nIt's like being in a candy store.\tC'est comme être dans une confiserie.\nIt's like being in a candy store.\tC'est comme être dans un magasin de bonbons.\nIt's natural for you to think so.\tC'est naturel pour toi de penser ainsi.\nIt's not as easy as people think.\tCe n'est pas aussi simple qu'on le croit.\nIt's not clear when he came here.\tQuand il est venu ici n'est pas clair.\nIt's not clear when he came here.\tLa date de son arrivée ici n'est pas claire.\nIt's not clear when he came here.\tL'heure de son arrivée ici n'est pas claire.\nIt's not easy to thread a needle.\tCe n'est pas facile d'enfiler une aiguille.\nIt's not quite as simple as that.\tCe n'est pas aussi simple que ça.\nIt's not something anyone can do.\tCe n'est pas quelque chose que n'importe qui peut faire.\nIt's not worth worrying about it.\tÇa ne vaut pas la peine de s'en soucier.\nIt's nothing to be alarmed about.\tIl n'y a là pas de quoi s'alarmer.\nIt's nothing to write home about.\tRien d'extraordinaire à raconter.\nIt's really not that interesting.\tCe n'est vraiment pas si intéressant.\nIt's right in front of your eyes.\tC'est juste devant tes yeux.\nIt's right in front of your eyes.\tC'est juste devant vos yeux.\nIt's so good to finally meet you.\tIl est si bon de finalement te rencontrer.\nIt's so good to finally meet you.\tIl est si bon de finalement vous rencontrer.\nIt's the rule, not the exception.\tC'est la règle, pas l'exception.\nIt's the rule, not the exception.\tC'est la règle, non l'exception.\nIt's the shortest route to Paris.\tC'est le plus court chemin vers Paris.\nIt's there someone you can trust?\tY a-t-il quelqu'un à qui vous puissiez vous fier ?\nIt's too dark to play tennis now.\tIl fait trop sombre pour jouer au tennis.\nIt's very kind of you to help me.\tC'est très gentil de ta part de m'aider.\nIt's worth three hundred dollars.\tÇa vaut trois cents dollars.\nIt's your duty to finish the job.\tIl est de ton devoir de terminer ce travail.\nIt's your duty to finish the job.\tIl est de ton devoir de terminer ce boulot.\nIt's your duty to finish the job.\tIl est de ton devoir d'achever ce travail.\nIt's your duty to finish the job.\tIl est de ton devoir d'achever ce boulot.\nIt's your duty to finish the job.\tIl est de votre devoir de terminer ce travail.\nIt's your duty to finish the job.\tIl est de votre devoir de terminer ce boulot.\nIt's your duty to finish the job.\tIl est de votre devoir d'achever ce travail.\nIt's your duty to finish the job.\tIl est de votre devoir d'achever ce boulot.\nJust sit back and enjoy the show.\tAppuie-toi sur ton dossier et prends plaisir au spectacle !\nKeep away from that pond, please.\tÉloignez-vous de cet étang.\nKeep children away from the pond.\tGardez les enfants loin de l'étang.\nLast night, I heard dogs howling.\tLa nuit dernière j'ai entendu des aboiements au loin.\nLaughter is good for your health.\tLe rire est bon pour la santé.\nLet me ask you a stupid question.\tLaisse-moi te poser une question stupide.\nLet me ask you a stupid question.\tLaissez-moi vous poser une question stupide.\nLet me explain it with a diagram.\tJe vous explique avec un schéma.\nLet me explain it with a diagram.\tLaissez-moi l'expliquer à l'aide d'un diagramme.\nLet me explain it with a diagram.\tLaisse-moi l'expliquer à l'aide d'un diagramme.\nLet me help you put on your coat.\tLaissez-moi vous aider à mettre votre manteau.\nLet me help you put on your coat.\tLaissez-moi vous aider à enfiler votre manteau.\nLet me help you put on your coat.\tLaisse-moi t'aider à mettre ton manteau.\nLet me help you put on your coat.\tLaisse-moi t'aider à enfiler ton manteau.\nLet me know when you've finished.\tPréviens-moi quand tu as fini !\nLet me know where you're staying.\tFaites-moi savoir où vous restez.\nLet me show you around our house.\tLaissez-moi vous faire visiter notre maison.\nLet me treat you next time, then.\tLaisse-moi t'inviter la prochaine fois, alors.\nLet me treat you next time, then.\tLaissez-moi vous inviter la prochaine fois, alors.\nLet them take care of themselves.\tLaisse-les prendre soin d'eux-mêmes.\nLet us know whether you can come.\tFaites-nous savoir si vous pouvez venir.\nLet us never speak of this again.\tN'en parlons jamais plus !\nLet's discuss that problem later.\tDiscutons de ce problème plus tard.\nLet's forget the whole thing, OK?\tOublions toute l'affaire, d'accord ?\nLet's get this over with quickly.\tFinissons-en rapidement !\nLet's go to a Chinese restaurant.\tAllons à un restaurant chinois.\nLet's go to the theater together.\tAllons ensemble au théâtre !\nLet's hear the rest of the story.\tÉcoutons la suite de l'histoire.\nLet's mosey on down to the river.\tDescendons en flânant jusqu'à la rivière.\nLet's not get ahead of ourselves.\tNe mettons pas la charrue avant les bœufs !\nLet's not think about it anymore.\tN'y pensons plus.\nLet's not waste this opportunity.\tNe gâchons pas cette occasion !\nLet's play tennis this afternoon.\tJouons au tennis cet après-midi.\nLet's see how Tom reacts to that.\tVoyons comment Tom réagit à cela.\nLet's see if I've got that right.\tVoyons si j'ai compris.\nLet's see what happens this time.\tVoyons ce qui se passe cette fois-ci.\nLet's shake hands and be friends.\tSerrons-nous la main et soyons amis.\nLet's take turns rowing the boat.\tRelayons-nous pour ramer.\nLet's talk about it after school.\tParlons-en après l'école.\nLet's wait and see how things go.\tAttendons de voir comment les choses tournent.\nLet's wait for another 5 minutes.\tAttendons 5 minutes de plus.\nLife is not fair. Get used to it.\tLa vie est injuste. Habitues-y toi.\nLife without love has no meaning.\tLa vie sans amour n'a pas de sens.\nLife without love is meaningless.\tLa vie, sans amour, est dépourvue de sens.\nLiquor is not sold at this store.\tOn ne vend pas d'alcool dans ce magasin.\nLiving on a small income is hard.\tVivre avec un petit revenu est difficile.\nLondon is the capital of England.\tLondres est la capitale de l'Angleterre.\nLook at the blackboard, everyone.\tVeuillez regarder le tableau, tous.\nLook at the blackboard, everyone.\tRegardez tous le tableau noir.\nLook on both sides of the shield.\tRegarde des deux côtés du panneau.\nLook out! There's a truck coming!\tAttention ! Voici un camion qui arrive !\nLook! The airplane is taking off.\tRegarde ! L'avion est en train de décoller.\nLook! There goes a shooting star.\tRegarde ! Une étoile filante.\nLots of people make that mistake.\tBeaucoup de gens commettent cette erreur.\nLuckily, he won the championship.\tPar chance, il a gagné le championnat.\nMalaria is carried by mosquitoes.\tLa malaria est transmise par les moustiques.\nMany boys and girls were present.\tBeaucoup de garçons et de filles étaient présents.\nMany languages use English words.\tDe nombreuses langues utilisent des mots anglais.\nMary claims you stole her pearls.\tMarie prétend que tu lui as volé ses perles.\nMary is now studying in her room.\tMarie étudie dans sa chambre.\nMary is now studying in her room.\tEn ce moment, Marie est en train d'étudier dans sa chambre.\nMary is prettier than her sister.\tMary est plus jolie que sa sœur.\nMary is the kind of woman I like.\tMary est le genre de femme que j'aime.\nMary loves shoes with high heels.\tMarie aime les chaussures à talons hauts.\nMary wants kids, but Tom doesn't.\tMarie veut des enfants, mais Tom, non.\nMay I accompany you on your walk?\tPuis-je vous accompagner dans votre promenade ?\nMay I accompany you on your walk?\tPuis-je t'accompagner dans ta promenade ?\nMay I ask what you're working on?\tPuis-je demander sur quoi vous travaillez ?\nMay I ask what you're working on?\tPuis-je demander à quoi tu travailles ?\nMay I have a look at your ticket?\tPuis-je voir votre ticket ?\nMay I have a look at your ticket?\tPuis-je voir ton ticket ?\nMay I have another piece of cake?\tPuis-je avoir une autre part de gâteau ?\nMay I have your name and address?\tPuis-je avoir votre nom et adresse ?\nMay I move to the other side now?\tPuis-je me déplacer de l'autre côté maintenant ?\nMay I see your invitation please?\tPuis-je voir votre invitation, s'il vous plaît ?\nMay I see your invitation please?\tPuis-je voir votre invitation, je vous prie ?\nMaybe I shouldn't have done that.\tPeut-être que je n'aurais pas dû faire ça.\nMaybe I shouldn't have done that.\tPeut-être n'aurais-je pas dû faire cela.\nMaybe Tom will help us find Mary.\tPeut-être que Tom nous aidera à trouver Mary.\nMaybe he has lots of girlfriends.\tPeut-être a-t-il plein de petites amies.\nMaybe you should call the police.\tPeut-être devrais-tu appeler la police ?\nMaybe you should call the police.\tPeut-être devriez-vous appeler la police ?\nMaybe you should turn off the TV.\tPeut-être devrais-tu éteindre la télé.\nMaybe you'd like to come with us.\tPeut-être aimeriez-vous venir avec nous.\nMaybe you'd like to come with us.\tPeut-être aimerais-tu venir avec nous.\nMen don't drive as well as women.\tLes hommes ne conduisent pas aussi bien que les femmes.\nMoney cannot compensate for life.\tL'argent ne peut constituer une compensation à la vie.\nMoney is the last thing he wants.\tL'argent est la dernière chose qu'il veuille.\nMore than twenty boys went there.\tPlus de vingt garçons sont venus ici.\nMost Englishmen are conservative.\tLa plupart des Anglais sont conservateurs.\nMost Japanese eat rice every day.\tLa plupart des Japonais mangent du riz tous les jours.\nMother has not cooked dinner yet.\tMère n'a pas encore préparé le dîner.\nMother is cooking in the kitchen.\tMère fait à manger dans la cuisine.\nMotivation is the key to success.\tLa motivation est la clé du succès.\nMuammar Kaddafi escaped unharmed.\tMouammar Kadhafi s'en est sorti indemne.\nMy baby has a hereditary disease.\tMon bébé souffre d'une maladie héréditaire.\nMy boss turned down his proposal.\tMon patron a rejeté sa proposition.\nMy brother and I shared the room.\tMon frère et moi partagions la même chambre.\nMy brother and I were very close.\tMon frère et moi étions très proches.\nMy brother sends you his regards.\tMon frère vous envoie ses amitiés.\nMy brother took me to the museum.\tMon frère m'a emmené au musée.\nMy cat is hiding under the stove.\tMon chat se cache sous la cuisinière.\nMy cat is hiding under the stove.\tMon chat se cache sous le poêle.\nMy colleague doctored the report.\tMon collègue a trafiqué le rapport.\nMy dad is not home at the moment.\tMon père n'est pas à la maison pour le moment.\nMy daughter is in her late teens.\tMa fille va sur ses vingt ans.\nMy explanation may sound strange.\tMon explication peut sembler étrange.\nMy father bought this hat for me.\tMon père m'a acheté ce chapeau.\nMy father can speak English well.\tMon père parle très bien anglais.\nMy father died before I was born.\tMon père est mort avant ma naissance.\nMy father doesn't waste his time.\tMon père ne gaspille pas son temps.\nMy father is a bit old-fashioned.\tMon papa est un peu démodé.\nMy father is free this afternoon.\tMon père est libre cette après-midi.\nMy father is sweeping the garage.\tMon père balaie le garage.\nMy father is very strict with me.\tMon père est très sévère avec moi.\nMy father likes traveling by air.\tMon père aime voyager par avion.\nMy father stretched after dinner.\tMon père s'est étendu après le déjeuner.\nMy father takes a walk every day.\tMon père se promène tous les jours.\nMy father would often go fishing.\tMon père allait souvent à la pêche.\nMy friend only eats organic food.\tMon ami ne mange que de la nourriture bio.\nMy friends don't know where I am.\tMes amis ignorent où je me trouve.\nMy friends don't know where I am.\tMes amies ignorent où je me trouve.\nMy girlfriend often cuts my hair.\tMa copine me coupe souvent les cheveux.\nMy grandmother has a green thumb.\tMa grand-mère a la main verte.\nMy hobby is collecting old coins.\tMon passe-temps est la collection de pièces anciennes.\nMy house is a long way from here.\tMa maison est loin d'ici.\nMy house is covered by insurance.\tMa maison est couverte par l'assurance.\nMy house is north of the library.\tMa maison est au nord de la bibliothèque.\nMy husband earns $100,000 a year.\tMon mari gagne 100.000$ par an.\nMy joints ache when it gets cold.\tMes articulations me font mal quand il se met à faire froid.\nMy little brother is watching TV.\tMon petit frère regarde la télé.\nMy little sister is kind of lazy.\tMa petite sœur est un peu paresseuse.\nMy mother almost never complains.\tMa mère ne se plaint presque jamais.\nMy mother died during my absence.\tMa mère est morte durant mon absence.\nMy mother died during my absence.\tMa mère est morte au cours de mon absence.\nMy mother does not speak English.\tMa mère ne parle pas anglais.\nMy mother is busy cooking dinner.\tMa mère est occupée à cuisiner le déjeuner.\nMy mother is busy cooking dinner.\tMa mère est occupée à cuire le dîner.\nMy mother is in the hospital now.\tMa mère est à l'hôpital, en ce moment.\nMy mother is preparing breakfast.\tMa mère est en train de préparer le petit déjeuner.\nMy opinion doesn't really matter.\tMon opinion n'a pas vraiment d'importance.\nMy parent's house is comfortable.\tLa maison de mes parents est confortable.\nMy parents aren't home right now.\tMes parents ne sont pas chez eux en ce moment.\nMy sister always makes fun of me.\tMa sœur se fout toujours de ma gueule.\nMy sister always makes fun of me.\tMa sœur se moque toujours de moi.\nMy sister is also my best friend.\tMa sœur est aussi ma meilleure amie.\nMy sister will prepare breakfast.\tMa sœur préparera le petit-déjeuner.\nMy son likes books about animals.\tMon fils aime les livres sur les animaux.\nMy uncle gave me a pair of shoes.\tMon oncle m'a donné une paire de chaussures.\nMy watch is different from yours.\tMa montre est différente de la tienne.\nMy watch loses ten minutes a day.\tMa montre perd dix minutes par jour.\nMy watch loses two minutes a day.\tMa montre retarde de deux minutes par jour.\nNanako is really cute, isn't she?\tNakano est très mignonne, n'est ce pas ?\nNever forget to put out the fire.\tN'oublie jamais d'éteindre le feu.\nNever hesitate to tell the truth.\tN'ayez aucune hésitation à dire la vérité.\nNever hesitate to tell the truth.\tN'hésitez jamais à dire la vérité.\nNever mix business with pleasure.\tNe mélangez jamais les affaires et les plaisirs !\nNewspapers carry weather reports.\tLes journaux font circuler les bulletins météo.\nNext time, you won't be so lucky.\tLa prochaine fois, tu ne seras pas aussi chanceux.\nNext time, you won't be so lucky.\tLa prochaine fois, tu ne seras pas aussi chanceuse.\nNext time, you won't be so lucky.\tLa prochaine fois, vous ne serez pas aussi chanceux.\nNext time, you won't be so lucky.\tLa prochaine fois, vous ne serez pas aussi chanceuses.\nNext time, you won't be so lucky.\tLa prochaine fois, vous ne serez pas aussi chanceuse.\nNo doubt she will win in the end.\tElle finira assurément par gagner.\nNo matter where I go, I get lost.\tOù que j'aille, je m'égare.\nNo matter where I go, I get lost.\tOù que je me rende, je me perds.\nNo one I know goes there anymore.\tPersonne que je connaisse n'y va plus.\nNo one comes to visit me anymore.\tPersonne ne vient plus me rendre visite.\nNo one knows his address but Tom.\tPersonne à part Tom ne connaît son adresse.\nNo one knows his address but Tom.\tIl n'y a que Tom qui connaît son adresse.\nNo one listens to me when I talk.\tPersonne ne m'écoute quand je parle.\nNo one loves you as much as I do.\tJe t'aime comme personne ne t'a jamais aimée.\nNo students went there yesterday.\tAucun étudiant ne s'est rendu là-bas hier.\nNo students went there yesterday.\tAucun étudiant n'est allé là-bas hier.\nNobody but you can make me happy.\tAucun autre que toi peut me rendre heureuse.\nNobody has a landline these days.\tPlus personne n'a de téléphone fixe de nos jours.\nNobody told me Tom would be here.\tPersonne ne m'avait dit que Tom serait là.\nNot a single person arrived late.\tPas une seule personne n'arriva en retard.\nNot all of the staff was present.\tTout le personnel n'était pas présent.\nNot every community was affected.\tToutes les communautés n'ont pas été affectées.\nNothing is as important as peace.\tRien n'est aussi important que la paix.\nNothing is as simple as it seems.\tRien n'est aussi simple que ça en a l'air.\nNothing ventured, nothing gained.\tIl n'y a pas de profit sans risque.\nNothing ventured, nothing gained.\tÀ vaincre sans péril, on triomphe sans gloire.\nNothing was to be seen but water.\tOn ne voyait rien d'autre que l'eau.\nNow I'll add the finishing touch.\tJe vais maintenant ajouter la touche finale.\nNow tell us what we want to know.\tMaintenant dites-nous ce que nous voulons savoir !\nNow tell us what we want to know.\tMaintenant dis-nous ce que nous voulons savoir !\nObviously, Tom didn't want to go.\tVisiblement, Tom ne voulait pas y aller.\nOne cannot make dogs out of cats.\tOn ne fait pas des chiens avec des chats.\nOne is new, and the other is old.\tL'un est neuf, l'autre est ancien.\nOne of the girls was left behind.\tL'une des filles fut laissée en arrière.\nOne of the girls was left behind.\tL'une des filles a été laissée en arrière.\nOne of your neighbors complained.\tUn de tes voisins s'est plaint.\nOne of your neighbors complained.\tUne de tes voisines s'est plainte.\nOne of your neighbors complained.\tUn de vos voisins s'est plaint.\nOne of your neighbors complained.\tUne de vos voisines s'est plainte.\nOnly you can answer the question.\tSeul toi peut répondre à cette question.\nOpen the door and let in the dog.\tOuvrez la porte et laissez rentrer le chien.\nOpinion is divided on this point.\tL'opinion est partagée sur cette question.\nOur cow doesn't give us any milk.\tNotre vache ne nous donne pas de lait.\nOur debt is more than we can pay.\tNotre dette est supérieure à ce que nous pouvons payer.\nOur only daughter died of cancer.\tNotre fille unique est morte d'un cancer.\nOur only daughter died of cancer.\tNotre fille unique est décédée d'un cancer.\nOur passports were all we needed.\tNos passeports étaient tout ce dont nous avions besoin.\nOur plane is thirty minutes late.\tNotre avion est en retard de trente minutes.\nOur refrigerator is out of order.\tNotre réfrigérateur est en panne.\nOur school is larger than theirs.\tNotre école est plus grande que les leurs.\nPeace talks will begin next week.\tLes pourparlers de paix commenceront la semaine prochaine.\nPeople like Tom lie all the time.\tLes gens comme Tom mentent tout le temps.\nPeople say that he's still alive.\tLes gens disent qu'il est encore en vie.\nPeople thought that she was dead.\tLes gens pensaient qu'elle était morte.\nPeople thought that she was dead.\tLes gens la croyaient morte.\nPlease breathe through your nose.\tVeuillez respirer par le nez !\nPlease breathe through your nose.\tRespire par le nez, je te prie !\nPlease call me at my hotel later.\tS'il vous plaît, appelez-moi plus tard à mon hôtel.\nPlease close the door behind you.\tS'il te plaît, ferme la porte derrière toi.\nPlease close the door behind you.\tVeuillez refermer la porte derrière vous.\nPlease close the door behind you.\tPrière de refermer la porte derrière soi.\nPlease close the door behind you.\tRefermez la porte derrière vous, s'il vous plaît.\nPlease close the door behind you.\tReferme la porte derrière toi, s'il te plaît.\nPlease cut along the dotted line.\tVeuillez découper le long des pointillés.\nPlease excuse my bad handwriting.\tVeuillez excuser mon écriture illisible.\nPlease forgive me for being late.\tS'il vous plaît excusez-moi d'être en retard.\nPlease help me take this lid off.\tS'il te plait aide-moi à retirer ce couvercle.\nPlease help yourself to the cake.\tJe t'en prie, prends du gâteau.\nPlease help yourself to the cake.\tSers-toi un bout de gâteau.\nPlease help yourself to the cake.\tVous pouvez vous servir du gâteau.\nPlease help yourself to the cake.\tServez-vous du gâteau je vous prie.\nPlease make yourself comfortable.\tMettez-vous à l'aise.\nPlease make yourself comfortable.\tDétendez-vous.\nPlease move the desk to the left.\tS'il vous plaît, déplacez le bureau vers la gauche.\nPlease pardon me for coming late.\tDésolé de venir si tard.\nPlease refrain from smoking here.\tMerci de vous abstenir de fumer ici.\nPlease refrain from smoking here.\tVeuillez vous abstenir de fumer ici.\nPlease refrain from smoking here.\tMerci de t'abstenir de fumer ici.\nPlease refrain from smoking here.\tAbstiens-toi de fumer ici, je te prie.\nPlease refrain from smoking here.\tAbstenez-vous de fumer ici, je vous prie.\nPlease reserve this table for us.\tS'il vous plaît, réservez cette table pour nous.\nPlease say hello to your parents.\tMerci de saluer tes parents.\nPlease say hello to your parents.\tMerci de dire bonjour à tes parents.\nPlease tell Tom that Mary called.\tTu peux dire à Tom que Mary a appelé, s'il te plait?\nPlease tell me what you saw then.\tDites-moi ce que vous avez vu à ce moment-là.\nPlease tell us about your family.\tVeuillez nous parler de votre famille.\nPlease wait outside of the house.\tVeuillez attendre à l'extérieur de la maison.\nProduction of rice has decreased.\tLa production du riz a diminué.\nPut the book on the bottom shelf.\tPose le livre sur l'étagère du bas.\nRelationships involve compromise.\tLes relations impliquent des compromis.\nRemember what happened last time.\tSouviens-toi de ce qui s'est passé la dernière fois.\nRules are important for everyone.\tLes règles sont valables pour tous.\nSadly, many Japanese people died.\tMalheureusement, de nombreux Japonais moururent.\nSchool begins at half past eight.\tL'école commence à huit heures et demie.\nSchool begins on April the tenth.\tL'école commence le 10 avril.\nSchool violence is a big problem.\tLa violence à l'école est un gros problème.\nSchools are closed for Christmas.\tLes écoles sont fermées pour Noël.\nSea turtles have a long lifespan.\tLes tortues marines ont une haute espérance de vie.\nShe accompanied him on the piano.\tElle l'accompagna au piano.\nShe accompanied him on the piano.\tElle l'a accompagné au piano.\nShe acted as if she knew nothing.\tElle a fait comme si elle ne savait rien.\nShe advised him about what to do.\tElle lui conseilla quoi faire.\nShe advised him against doing it.\tElle le dissuada de le faire.\nShe advised him against doing it.\tElle l'a dissuadé de le faire.\nShe advised him to go by bicycle.\tElle lui conseilla de s'y rendre en vélo.\nShe advised him to go by bicycle.\tElle lui a conseillé de s'y rendre en vélo.\nShe advised him to go home early.\tElle lui conseilla de rentrer tôt chez lui.\nShe advised him to go home early.\tElle lui a conseillé de rentrer tôt chez lui.\nShe advised him to leave earlier.\tElle lui conseilla de partir plus tôt.\nShe advised him to leave earlier.\tElle lui a conseillé de partir plus tôt.\nShe advised him to stop drinking.\tElle lui conseilla d'arrêter de boire.\nShe advised him to stop drinking.\tElle lui a conseillé d'arrêter de boire.\nShe advised him to use a bicycle.\tElle lui conseilla d'utiliser un vélo.\nShe advised him to use a bicycle.\tElle lui a conseillé d'utiliser un vélo.\nShe and I are brother and sister.\tElle et moi sommes frère et sœur.\nShe appears to have many friends.\tElle semble avoir beaucoup d'amis.\nShe appears to have many friends.\tOn dirait qu'elle a beaucoup d'amis.\nShe appears to have many friends.\tElle semble avoir beaucoup d'amies.\nShe became a true friend of mine.\tJ'ai trouvé en elle une amie sincère.\nShe began to like him right away.\tElle commença à l'aimer immédiatement.\nShe began to like him right away.\tElle a commencé à l'aimer immédiatement.\nShe bolted the doors and windows.\tElle verrouilla les portes et fenêtres.\nShe came to like the new teacher.\tElle se mît à aimer la nouvelle institutrice.\nShe came to like the new teacher.\tElle se mît à apprécier le nouvel instituteur.\nShe came to see me the other day.\tElle est venue me voir l'autre jour.\nShe can play the piano very well.\tElle sait très bien jouer du piano.\nShe cast an eye in his direction.\tElle jeta un regard dans sa direction.\nShe closely resembles her mother.\tElle ressemble beaucoup à sa mère.\nShe cooked us a delicious dinner.\tElle nous a cuisiné un déjeuner délicieux.\nShe could feel her knees shaking.\tElle pouvait sentir ses genoux trembler.\nShe cried as she read the letter.\tElle pleura en lisant la lettre.\nShe cried as she read the letter.\tElle a pleuré en lisant la carte.\nShe decided to take legal advice.\tElle décida de prendre conseil auprès d'un expert juridique.\nShe did her best to persuade him.\tElle fit de son mieux pour le convaincre.\nShe didn't exactly agree with me.\tElle n'était pas vraiment d'accord avec moi.\nShe didn't give me back my money.\tElle ne m'a pas rendu mon argent.\nShe didn't mind doing the dishes.\tÇa lui était égal de faire la vaisselle.\nShe didn't want to sell the book.\tElle n'a pas voulu vendre le livre.\nShe didn't want to sell the book.\tElle ne voulut pas vendre le livre.\nShe didn't want to sell the book.\tElle n'a pas voulu vendre l'ouvrage.\nShe didn't want to sell the book.\tElle ne voulut pas vendre l'ouvrage.\nShe dived into the swimming pool.\tElle plongea dans la piscine.\nShe doesn't care how she dresses.\tElle se fiche de comment elle s'habille.\nShe doesn't care how she dresses.\tComment elle s'habille lui est indifférent.\nShe doesn't like the way I speak.\tElle n'aime pas ma manière de parler.\nShe drowned herself in some lake.\tElle se noya dans quelque lac.\nShe dumped him for a younger man.\tElle le laissa tomber pour un homme plus jeune.\nShe dumped him for a younger man.\tElle l'a laissé tomber pour un homme plus jeune.\nShe earns her living by teaching.\tElle gagne sa vie en enseignant.\nShe felt herself being lifted up.\tElle se sentait remontée.\nShe found employment as a typist.\tElle a trouvé un emploi de dactylo.\nShe gave birth to a healthy baby.\tElle a mis au monde un bébé bien portant.\nShe gave birth to a healthy baby.\tElle donna naissance à un bébé en bonne santé.\nShe gave me a book for Christmas.\tElle m'a offert un livre pour Noël.\nShe gave me a nice pair of shoes.\tElle me donna une belle paire de chaussures.\nShe gladly accepted his proposal.\tElle accepta sa proposition avec joie.\nShe glanced through the magazine.\tElle parcourut le magazine.\nShe got married at the age of 17.\tElle s'est mariée à l'âge de dix-sept ans.\nShe got married at the age of 17.\tElle s'est mariée à dix-sept ans.\nShe got married at the age of 25.\tElle s'est mariée à 25 ans.\nShe grows tomatoes in her garden.\tElle fait pousser des tomates dans son jardin.\nShe had the decency to apologize.\tElle a eu la décence de présenter ses excuses.\nShe happened to have the day off.\tElle avait justement ce jour-là de libre.\nShe happened to know his address.\tIl se trouvait qu'elle connaissait son adresse.\nShe has a little money put aside.\tElle a un peu d'argent de côté.\nShe has an eye for the beautiful.\tElle a l'œil pour le beau.\nShe has broken the toaster again.\tElle a encore cassé le grille-pain.\nShe has brought up five children.\tElle a élevé cinq enfants.\nShe has had quite a lot to drink.\tElle a pas mal bu.\nShe has left her umbrella behind.\tElle a laissé son parapluie.\nShe has no more than 100 dollars.\tElle n'a que 100 dollars.\nShe has the same bag as you have.\tElle a le même sac que toi.\nShe has the same bag as you have.\tElle a le même sac que vous.\nShe has to look after her mother.\tIl lui faut s'occuper de sa mère.\nShe hasn't done her homework yet.\tElle n'a pas encore fait ses devoirs.\nShe informed me of her departure.\tElle m'a informé de son départ.\nShe introduced her sister to him.\tElle lui présenta sa sœur.\nShe introduced her sister to him.\tElle lui a présenté sa sœur.\nShe introduced me to her brother.\tElle m'a présenté à son frère.\nShe introduced me to her brother.\tElle me présenta à son frère.\nShe is beautiful like her mother.\tElle est belle comme sa mère.\nShe is convinced of my innocence.\tElle est convaincue de mon innocence.\nShe is familiar with the subject.\tElle est familière du sujet.\nShe is fond of singing old songs.\tElle adore chanter de vieilles chansons.\nShe is getting better day by day.\tElle va mieux de jour en jour.\nShe is not a nurse, but a doctor.\tElle n'est pas infirmière, mais docteur.\nShe is not a poet but a novelist.\tElle n'est pas poète mais romancière.\nShe is poor, but she looks happy.\tElle est pauvre, mais elle a l'air heureuse.\nShe is practicing the violin now.\tElle est actuellement en train de pratiquer le violon.\nShe is saving money to go abroad.\tElle économise de l'argent pour aller à l'étranger.\nShe is the one who feeds our dog.\tC'est elle qui nourrit notre chien.\nShe is two years younger than me.\tElle est deux ans plus jeune que moi.\nShe is two years younger than me.\tElle a deux ans de moins que moi.\nShe is very much like her mother.\tElle ressemble beaucoup à sa mère.\nShe kept on talking while eating.\tElle ne cessait de parler tout en mangeant.\nShe knitted her father a sweater.\tElle a tricoté un pull à son père.\nShe likes cooking for her family.\tElle aime cuisiner pour sa famille.\nShe likes to cook for her family.\tElle aime cuisiner pour sa famille.\nShe likes to dress up as a nurse.\tElle aime se déguiser en infirmière.\nShe lived there about five years.\tElle a vécu là-bas environ cinq années.\nShe lived up to our expectations.\tElle s'est montrée à la hauteur de nos espérances.\nShe lives in quite a big mansion.\tElle vit dans une demeure plutôt grande.\nShe looked back on her childhood.\tElle songea à son enfance.\nShe looked better than last time.\tElle avait l'air mieux que la dernière fois.\nShe looked him right in the eyes.\tElle le regarda droit dans les yeux.\nShe loved him with all her heart.\tElle l'aima de tout son cœur.\nShe loved him with all her heart.\tElle l'a aimé de tout son cœur.\nShe married him at the age of 20.\tElle s'est mariée avec lui à 20 ans.\nShe might have met him yesterday.\tElle pourrait l'avoir rencontré hier.\nShe nodded her head in agreement.\tElle hocha la tête en signe d'approbation.\nShe ordered the book from London.\tElle a commandé le livre à Londres.\nShe ordered the book from London.\tElle a commandé le livre depuis Londres.\nShe picked flowers in the garden.\tElle cueillit des fleurs dans le jardin.\nShe picked him up at the station.\tElle le prit à la gare.\nShe picked him up at the station.\tElle l'a pris à la gare.\nShe played the piano beautifully.\tElle a magnifiquement joué au piano.\nShe pretty much keeps to herself.\tElle reste plutôt dans son coin.\nShe promised not to go out alone.\tElle promit de ne pas sortir seule.\nShe promised not to go out alone.\tElle a promis de ne pas sortir seule.\nShe quit her job for some reason.\tElle a démissionné pour je ne sais quelle raison.\nShe refused my offer to help her.\tElle déclina mon offre d'assistance.\nShe refuses to say more about it.\tElle refuse d'en dire plus.\nShe refuses to say more about it.\tElle refuse d'en dire davantage.\nShe remained single all her life.\tElle a fini vieille fille.\nShe remained single all her life.\tElle resta toute sa vie célibataire.\nShe reproached me for being lazy.\tElle m'a reproché d'être feignant.\nShe ripped her dress on a branch.\tElle a déchiré sa robe à une branche.\nShe said that she had been happy.\tElle a dit qu'elle avait été heureuse.\nShe said that she had been happy.\tElle disait qu'elle avait été heureuse.\nShe says she will call you later.\tElle dit qu'elle t'appellera plus tard.\nShe showed up early for practice.\tElle est venue tôt pour pratiquer.\nShe showed up early for practice.\tElle est arrivée tôt pour l'entraînement.\nShe solved the problem with ease.\tElle a résolu le problème facilement.\nShe spent the weekend by herself.\tElle a passé le week-end seule.\nShe spoke through an interpreter.\tElle s'est exprimée par l'intermédiaire d'un interprète.\nShe still depends on her parents.\tElle dépend encore de ses parents.\nShe stopped to smoke a cigarette.\tElle s'arrêta pour fumer une cigarette.\nShe succeeded in opening the box.\tElle parvint à ouvrir la caisse.\nShe suffocated him with a pillow.\tElle l'étouffa avec un oreiller.\nShe suffocated him with a pillow.\tElle l'a étouffé avec un oreiller.\nShe takes a shower every morning.\tElle prend une douche chaque matin.\nShe takes everything for granted.\tElle prend tout pour argent comptant.\nShe thanked him for all his help.\tElle l'a remercié pour toute son aide.\nShe told me an interesting story.\tElle me raconta une histoire intéressante.\nShe told me an interesting story.\tElle m'a raconté une histoire intéressante.\nShe told us an interesting story.\tElle nous a raconté une histoire intéressante.\nShe took a walk before breakfast.\tElle s'est promenée avant le petit-déjeuner.\nShe took a walk before breakfast.\tElle se promena avant le petit-déjeuner.\nShe turned away and began to cry.\tElle se détourna et se mit à pleurer.\nShe urged him to drive carefully.\tElle l'exhorta à conduire prudemment.\nShe urged him to drive carefully.\tElle l'a exhorté à conduire prudemment.\nShe used to enjoy being with him.\tElle prenait plaisir à être avec lui.\nShe used to play tennis with him.\tElle jouait au tennis avec lui.\nShe waited for him for two hours.\tElle l'a attendu deux heures.\nShe waited for you for two hours.\tElle vous a attendu pendant deux heures.\nShe wants a serious relationship.\tElle veut une relation sérieuse.\nShe wants to marry a millionaire.\tElle veut épouser un millionnaire.\nShe wants to marry a millionaire.\tElle veut épouser une millionnaire.\nShe was about to leave the house.\tElle allait partir de la maison.\nShe was accused of telling a lie.\tElle a été accusée d'avoir menti.\nShe was advised by him not to go.\tIl lui conseilla de ne pas y aller.\nShe was advised by him not to go.\tIl lui a conseillé de ne pas y aller.\nShe was advised by him not to go.\tIl lui conseilla de ne pas partir.\nShe was advised by him not to go.\tIl lui a conseillé de ne pas partir.\nShe was alone on Valentine's Day.\tElle était seule le jour de la Saint-Valentin.\nShe was already in love with him.\tElle était déjà amoureuse de lui.\nShe was anxious about his health.\tElle était préoccupée par sa santé.\nShe was busy with household work.\tElle était occupée au ménage.\nShe was heard playing the violin.\tOn l'a entendue jouer du violon.\nShe was poor, but she was honest.\tElle était pauvre, mais elle était honnête.\nShe was very proud of her father.\tElle était très fière de son père.\nShe was wearing dark brown shoes.\tElle portait des chaussures brun foncé.\nShe wasn't dancing with him then.\tElle ne dansait alors pas avec lui.\nShe went down to the fifth floor.\tElle descendit au cinquième étage.\nShe went to Paris to study music.\tElle se rendit à Paris pour étudier la musique.\nShe went to the hospital by taxi.\tElle se rendit à l'hôpital en taxi.\nShe will have a child next month.\tElle va avoir un bébé le mois prochain.\nShe will leave the hospital soon.\tElle quittera bientôt l'hôpital.\nShe will leave the hospital soon.\tElle va bientôt sortir de l'hôpital.\nShe wrapped the present in paper.\tElle enveloppa le cadeau dans du papier.\nShe wrapped the present in paper.\tElle a emballé le cadeau dans du papier.\nShe's a successful businesswoman.\tC'est une femme d'affaire à succès.\nShe's a violinist of some renown.\tC'est une violoniste d'une certaine renommée.\nShe's a violinist of some renown.\tElle est une violoniste d'un certain renom.\nShe's about the same age as I am.\tElle est à peu près du même âge que moi.\nShe's an intelligent young woman.\tC'est une jeune fille intelligente.\nShe's asking how that's possible.\tElle demande comment c’est possible.\nShe's completely crazy about him.\tElle est raide dingue de lui.\nShe's five years younger than me.\tElle a cinq ans de moins que moi.\nShe's pleased with her new dress.\tSa nouvelle robe lui plaît.\nShe's promised to give me a ring.\tElle a promis qu'elle allait m'appeler.\nShould I have my tooth extracted?\tFaut-il que je me fasse extraire ma dent ?\nShouldn't you be telling us that?\tNe devrais-tu pas nous le dire ?\nSince I was tired, I went to bed.\tComme j'étais fatigué, je suis allé au lit.\nSkating on the pond is dangerous.\tFaire du patin à glace sur la mare est dangereux.\nSleeping in class is not allowed.\tDormir en classe n'est pas permis.\nSmiling sadly, she began to talk.\tAvec un sourire triste, elle se mit à parler.\nSmoking is harmful to the health.\tFumer est dangereux pour la santé.\nSnow completely covered the town.\tLa neige recouvrait complètement la ville.\nSome animals are active at night.\tCertains animaux vivent la nuit.\nSome even accused him of treason.\tQuelques-uns l'accusèrent même de trahison.\nSome people pursue only pleasure.\tCertaines personnes ne recherchent que le plaisir.\nSome voters waited hours to vote.\tCertains électeurs ont attendu des heures pour voter.\nSomeday you should give it a try.\tTu devrais essayer, un de ces jours.\nSomeday you should give it a try.\tVous devriez essayer, un de ces jours.\nSomeday you should give it a try.\tVous devriez vous y essayer, un de ces jours.\nSomeday you should give it a try.\tTu devrais t'y essayer, un de ces jours.\nSomeday you should give it a try.\tTu devrais le tenter, un de ces jours.\nSomehow I thought you'd say that.\tJe pensais bien que tu dirais ça.\nSomething has happened to my car.\tQuelque chose est arrivé à ma voiture.\nSomething is wrong with my watch.\tIl y a quelque chose qui ne va pas dans ma montre.\nSorry, I don't think I can do it.\tDésolé, je ne crois pas que je puisse le faire.\nSorry, I wasn't paying attention.\tDésolé, je ne faisais pas attention.\nSorry, I wasn't paying attention.\tDésolé, j'étais ailleurs.\nSpeaking Japanese is easy for me.\tParler le japonais m'est aisé.\nSpring is just around the corner.\tC’est bientôt le printemps.\nSpring is just around the corner.\tLe printemps est bientôt là.\nStand up when I'm talking to you!\tLevez-vous lorsque je vous parle !\nStart reading where you left off.\tCommence à lire là où tu t'es arrêté.\nStart reading where you left off.\tCommence à lire là où tu t'es arrêtée.\nStart reading where you left off.\tCommencez à lire là où vous vous êtes arrêté.\nStart reading where you left off.\tCommencez à lire là où vous vous êtes arrêtée.\nStart reading where you left off.\tCommencez à lire là où vous vous êtes arrêtés.\nStart reading where you left off.\tCommencez à lire là où vous vous êtes arrêtées.\nStop me if you've heard this one.\tArrête-moi si tu as déjà entendu celle-là.\nStop taking things so personally.\tArrête de prendre les choses personnellement.\nStories often have happy endings.\tLes histoires ont souvent une fin heureuse.\nStrictly speaking, you are wrong.\tStrictement parlant, tu as tort.\nSuccess depends mostly on effort.\tLe succès dépend principalement de l'effort.\nSuddenly, he changed the subject.\tSoudain, il changea de sujet.\nSuicide is an act of desperation.\tLe suicide est un acte désespéré.\nSummer is the season I like best.\tL'été est la saison que je préfère.\nSupplies of oil are not infinite.\tLes ressources de pétrole ne sont pas infinies.\nSwimming in the sea is great fun.\tC'est un grand plaisir de nager dans la mer.\nSwimming is good for your health.\tNager, c'est bon pour la santé.\nSwitzerland is a neutral country.\tLa Suisse est un pays neutre.\nTake as many cookies as you want.\tPrends autant de biscuits que tu veux.\nTake as many cookies as you want.\tPrenez autant de biscuits que vous voulez.\nTake as many peaches as you like.\tPrends autant de pêches que tu veux.\nTake this medicine between meals.\tPrends ce médicament entre les repas.\nTake whichever of these you want.\tPrends n'importe lequel que tu veux, parmi ceux-ci.\nTake whichever of these you want.\tPrends n'importe laquelle que tu veux, parmi ceux-ci.\nTake your time. There's no hurry.\tPrends ton temps. Il n'y a pas d'urgence.\nTaking a taxi is a luxury for me.\tC'est du luxe pour moi que de prendre un taxi.\nTalking during a concert is rude.\tBavarder pendant un concert est grossier.\nTell me where to put these books.\tDites-moi où mettre ces livres !\nTell me where to put these books.\tDis-moi où mettre ces livres !\nTell me why I shouldn't fire you.\tDites-moi pourquoi je ne devrais pas vous renvoyer.\nTell me why I shouldn't fire you.\tDis-moi pourquoi je ne devrais pas te virer.\nTell me why you want to go there.\tDis-moi pourquoi tu veux aller là-bas.\nTell them what you're doing here.\tDites-leur ce que vous êtes en train de faire ici !\nTell them what you're doing here.\tDis-leur ce que tu es en train de faire ici !\nTelling lies is a very bad habit.\tRaconter des mensonges, est une très vilaine habitude.\nTen years is a long time to wait.\t10 ans est une longue période à attendre.\nThank you for the Christmas gift.\tMerci pour le cadeau de Noël !\nThank you for the wonderful meal.\tMerci pour ce merveilleux repas.\nThank you for your understanding.\tMerci de votre compréhension.\nThanks for adding me as a friend.\tMerci de m'avoir ajouté comme ami.\nThanks for adding me as a friend.\tMerci de m'ajouter en tant qu'ami.\nThanks to you, I arrived on time.\tGrâce à toi, je suis arrivé à l'heure.\nThanks to you, I arrived on time.\tGrâce à vous, je suis arrivée à l'heure.\nThat almost sounds like a threat.\tCela sonne presque comme une menace.\nThat box is bigger than this one.\tCette boîte-là est plus grande que celle-ci.\nThat bridge is anything but safe.\tCe pont est tout sauf sûr.\nThat company produces microchips.\tCette société produit des circuits intégrés.\nThat day will go down in history.\tCe jour entrera dans l'histoire.\nThat doesn't sound so good to me.\tÇa ne me semble pas si bien.\nThat doesn't sound too dangerous.\tÇa n'a pas l'air trop dangereux.\nThat dress looks stunning on you.\tCette robe a l'air éblouissante sur toi.\nThat dress looks stunning on you.\tCette robe a l'air éblouissante sur vous.\nThat flower has a powerful smell.\tCette fleur exhale un parfum entêtant.\nThat happened to me this morning.\tCela m'est arrivé ce matin.\nThat hotel is very near the lake.\tCet hôtel est très proche du lac.\nThat is the house where he lives.\tC'est la maison où il réside.\nThat man didn't give me his name.\tCet homme ne m'a pas donné son nom.\nThat movie was a real tearjerker.\tCe film est une vraie pleurnicherie.\nThat nickname fits him perfectly.\tCe pseudo lui convient parfaitement.\nThat patient may die at any time.\tCe patient peut mourir à tout moment.\nThat plane will take off at five.\tCet avion s'envolera à cinq heures.\nThat play was an immense success.\tLa pièce de théâtre a été un immense succès.\nThat shouldn't be too hard to do.\tÇa ne devrait pas être trop difficile à faire.\nThat small star is the brightest.\tCette petite étoile est la plus lumineuse.\nThat sounds credible, doesn't it?\tÇa semble crédible, n'est-ce pas ?\nThat was only a figure of speech.\tCe n'était que manière de style.\nThat was some pretty good advice.\tC'était un assez bon conseil.\nThat was what I was going to say.\tC'est ce que j'allais dire.\nThat word describes it perfectly.\tCe mot le décrit parfaitement.\nThat would be a really good idea.\tÇa serait vraiment une bonne idée.\nThat'll be seven dollars, please.\tCela fera sept dollars, s'il vous plaît.\nThat's a beautiful piece of meat.\tC'est une belle pièce de viande.\nThat's a frightening possibility.\tC'est une possibilité effrayante.\nThat's a hard question to answer.\tC'est une question à laquelle il est difficile de répondre.\nThat's a nice rack of pork chops.\tC'est un beau travers de porc.\nThat's a nice tie you're wearing.\tC'est une belle cravate que tu portes !\nThat's a secret I can't tell you.\tC'est un secret que je ne peux pas te dire.\nThat's a very difficult question.\tCette question est très difficile.\nThat's a very interesting theory.\tC'est une théorie vraiment intéressante.\nThat's a waste of time and money.\tC'est un gaspillage de temps et d'argent.\nThat's a waste of time and money.\tIl s'agit d'un gaspillage de temps et d'argent.\nThat's certainly one possibility.\tC'est assurément une possibilité.\nThat's just what I'm going to do.\tC'est justement ce que je vais faire.\nThat's not how you spell my name.\tMon nom ne s'écrit pas comme ça.\nThat's only a temporary solution.\tC'est juste une solution temporaire.\nThat's the last thing I remember.\tC'est la dernière chose dont je me souvienne.\nThat's the last thing I remember.\tC'est la dernière chose dont je me souviens.\nThat's the last thing I would do.\tC'est la dernière chose que je ferais.\nThat's the one thing I'm sure of.\tC'est l'unique chose dont je sois certain.\nThat's the one thing I'm sure of.\tC'est l'unique chose dont je sois certaine.\nThat's the other reason I'm here.\tC'est l'autre raison pour laquelle je suis ici.\nThat's the tricky part, isn't it?\tC'est la partie délicate, n'est-ce pas ?\nThat's what I want to understand.\tC'est ce que je veux comprendre.\nThat's what I wanted to find out.\tC'est ce que je voulais découvrir.\nThat's what I was hoping to hear.\tC'est ce que j'espérais entendre.\nThat's what I'm asking you to do.\tC'est ce que je vous demande de faire.\nThat's what I'm asking you to do.\tC'est ce que je te demande de faire.\nThat's what you don't understand.\tC'est ce que tu ne comprends pas.\nThat's what you don't understand.\tC'est ce que vous ne comprenez pas.\nThat's what you've always wanted.\tC'est ce que vous avez toujours voulu.\nThat's what you've always wanted.\tC'est ce que tu as toujours voulu.\nThat's when I went to the police.\tC'est alors que je suis allé à la police.\nThat's why you're here, isn't it?\tC'est pour ça que vous êtes ici, n'est-ce pas ?\nThat’s the man whose wife died.\tIl s'agit de l'homme qui a perdu sa femme.\nThe Confederate flag was lowered.\tLe drapeau des confédérés fut amené.\nThe Inca were a religious people.\tLes Incas étaient un peuple religieux.\nThe Japanese live mainly on rice.\tLes Japonais mangent principalement du riz.\nThe United States borders Canada.\tLes États-Unis bordent le Canada.\nThe appendix is about 10 cm long.\tL'appendice est long d'à peu près dix centimètres.\nThe appendix is about 10 cm long.\tL'appendice fait environ dix centimètres de long.\nThe atomic number for iron is 26.\tLe numéro atomique du fer est le 26.\nThe audience was deeply affected.\tL'audience fut profondément affectée.\nThe audience were all foreigners.\tL'assistance n'était composée que d'étrangers.\nThe ball bounced high in the air.\tLa balle rebondit haut dans les airs.\nThe bill amounted to 100 dollars.\tLa facture se montait à 100 dollars.\nThe birds were flying in a group.\tLes oiseaux volaient en groupe.\nThe birds were flying in a group.\tLes oiseaux volaient en formation.\nThe blood stain can't be removed.\tLa tache de sang ne peut être ôtée.\nThe blood stain can't be removed.\tLa tache de sang ne peut être retirée.\nThe boat drifted down the stream.\tLe bateau dériva au gré du courant.\nThe boy complained of a headache.\tLe garçon s'est plaint de mal de tête.\nThe boys played cops and robbers.\tLes garçons jouaient aux gendarmes et aux voleurs.\nThe bridge is under construction.\tLe pont est en construction.\nThe bullet cut through an artery.\tLa balle sectionna une artère.\nThe bus leaves every ten minutes.\tIl y a un bus qui part toutes les dix minutes.\nThe bus stopped in every village.\tLe bus s'est arrêté dans chaque village.\nThe bus turned around the corner.\tLe bus tourna à l'angle.\nThe bus turned around the corner.\tLe bus a tourné à l'angle.\nThe buses left one after another.\tLes cars partirent l'un après l'autre.\nThe cat is sleeping on the table.\tLe chat est en train de dormir sur la table.\nThe cat sleeps next to the couch.\tLe chat dort à côté du canapé.\nThe children are playing outside.\tLes enfants jouent dehors.\nThe city was blanketed with snow.\tLa ville était recouverte de neige.\nThe clock is made in Switzerland.\tL'horloge est fabriquée en Suisse.\nThe cold weather kept us indoors.\tLe temps froid nous a cloués à l'intérieur.\nThe company stopped losing money.\tLa compagnie a arrêté de perdre de l'argent.\nThe conference will end tomorrow.\tLa conférence finira demain.\nThe cops are keeping tabs on him.\tLes flics l'ont à l'œil.\nThe cost of living has gone down.\tLe coût de la vie a baissé.\nThe customer is not always right.\tLe client n'a pas toujours raison.\nThe day we arrived was a holiday.\tLe jour où nous arrivâmes était férié.\nThe day we arrived was a holiday.\tLe jour où nous sommes arrivés était férié.\nThe day we arrived was a holiday.\tLe jour où nous sommes arrivées était férié.\nThe doctor is taking care of Tom.\tLe docteur prend soin de Tom.\nThe doctor she visited is famous.\tLe médecin qu'elle a été voir est célèbre.\nThe dog follows me wherever I go.\tLe chien me suit où que j'aille.\nThe dogs howled at the full moon.\tLes chiens hurlaient à la pleine Lune.\nThe door of the office is yellow.\tLa porte du bureau est jaune.\nThe door remained closed all day.\tLa porte est restée fermée toute la journée.\nThe fire was put out immediately.\tL'incendie fut immédiatement éteint.\nThe floor was covered with blood.\tLe sol était couvert de sang.\nThe food was finger-licking good.\tLa nourriture était bonne à s'en lécher les doigts.\nThe frost killed all the flowers.\tLe gel a tué toutes les fleurs.\nThe fuel tank in the car is full.\tLe réservoir d'essence de la voiture est plein.\nThe future will come soon enough.\tLe futur adviendra bien assez tôt.\nThe general inspected the troops.\tLe général passa les troupes en revue.\nThe girl was aware of the danger.\tLa fille était consciente du danger.\nThe girl was trembling with fear.\tLa fille tremblait de peur.\nThe hat costs less than the coat.\tLe chapeau coûte moins que le manteau.\nThe heat kept me awake all night.\tLa chaleur m'a tenu éveillé toute la nuit.\nThe hills were covered with snow.\tLes collines étaient recouvertes de neige.\nThe horse ran through the fields.\tLe cheval traversait les champs au galop.\nThe hotel has a homey atmosphere.\tL'hôtel a une atmosphère accueillante.\nThe house burned down completely.\tLa maison était en cendres.\nThe house collapsed a week later.\tLa maison s'écroula une semaine plus tard.\nThe house is built of red bricks.\tLa maison est faite de briques rouges.\nThe ice cracked under the weight.\tLa glace craqua sous le poids.\nThe implications are frightening.\tLes implications en sont effrayantes.\nThe installation is now complete.\tL'installation est maintenant terminée.\nThe job isn't anywhere near done.\tLe travail est loin d'être terminé.\nThe king reigned over the island.\tLe roi a régné sur l'île.\nThe lady came from a good family.\tLa dame venait d'une bonne famille.\nThe lake is a long way from here.\tLe lac est loin d'ici.\nThe lake is deepest at this spot.\tLe lac est le plus profond à cet endroit.\nThe land had never been ploughed.\tLa terre n'avait jamais été labourée.\nThe leaves blew away in the wind.\tLes feuilles s'envolèrent au vent.\nThe letter was wrongly addressed.\tLa lettre était mal adressée.\nThe locking mechanism has jammed.\tLe mécanisme de fermeture s'est coincé.\nThe locking mechanism has jammed.\tLe mécanisme de verrouillage s'est bloqué.\nThe mail is delivered once a day.\tLe courrier est distribué une fois par jour.\nThe man took the boy by the hand.\tL'homme prit le garçon par la main.\nThe meeting took place yesterday.\tLa réunion a eu lieu hier.\nThe meeting took place yesterday.\tLa réunion s'est tenue hier.\nThe middle finger is the longest.\tLe majeur est le plus long doigt.\nThe moment he saw me he ran away.\tAu moment où il me vit, il s'enfuit en courant.\nThe movie received mixed reviews.\tLe film a été accueilli de manière mitigée par la critique.\nThe murderer confessed his crime.\tLe meurtrier confessa son crime.\nThe museum is not open on Monday.\tLe musée n'est pas ouvert le lundi.\nThe museum is open to the public.\tLe musée est ouvert au public.\nThe museum isn't open on Sundays.\tLe musée n'est pas ouvert les dimanches.\nThe new film was a great success.\tLe nouveau film fut un grand succès.\nThe new museum is worth visiting.\tLa visite du nouveau musée vaut le coup.\nThe news confirmed my suspicions.\tLes nouvelles ont confirmé mes soupçons.\nThe old castle is in a sad state.\tLe vieux château est en piteux état.\nThe old lady stepped off the bus.\tLa vieille dame descendit du bus.\nThe old man was starved to death.\tLe vieil homme fut affamé jusqu'à la mort.\nThe owners appointed him manager.\tLes propriétaires l'ont nommé directeur.\nThe painting is all but finished.\tLe tableau est presque terminé.\nThe paper didn't carry the story.\tLe journal n'a pas publié l'histoire.\nThe peace talks ended in failure.\tLes négociations de paix se soldèrent par un échec.\nThe phone doesn't work right now.\tLe téléphone ne fonctionne pas actuellement.\nThe plan was discussed in detail.\tLe plan fut discuté en détail.\nThe plane flew over the mountain.\tL'avion survola la montagne.\nThe plane made a perfect landing.\tL'avion a effectué un atterrissage parfait.\nThe plane was approaching London.\tL'avion approchait Londres.\nThe planes flew over the village.\tLes avions volèrent au-dessus du village.\nThe plot twists were predictable.\tLes péripéties de l'intrigue étaient prévisibles.\nThe police accused him of murder.\tLa police l'a accusé de meurtre.\nThe police chased the stolen car.\tLa police poursuivit la voiture volée.\nThe police have arrested someone.\tLa police a arrêté quelqu'un.\nThe policeman arrested the thief.\tLe policier a arrêté le voleur.\nThe president appeared powerless.\tLe président apparaissait impuissant.\nThe prince was lost in the woods.\tLe prince était perdu dans les bois.\nThe prisoner escaped from prison.\tLe prisonnier s'échappa de prison.\nThe problem remains to be solved.\tLe problème reste à résoudre.\nThe problem was under discussion.\tLe problème était en discussion.\nThe ring was nowhere to be found.\tNulle part on ne trouvait la bague.\nThe road turns a bit to the west.\tLa route vire légèrement vers l'ouest.\nThe room is being painted by him.\tIl est en train de peindre la pièce.\nThe rule holds good in this case.\tDans ce cas la règle s'applique dans toute sa rigueur.\nThe rule holds good in this case.\tLa règle reste valide en ce cas.\nThe rumor turned out to be false.\tLa rumeur se révéla fausse.\nThe rumor turned out to be false.\tLa rumeur s'avéra infondée.\nThe rumor was not based on facts.\tLa rumeur ne reposait pas sur des faits.\nThe rumor was without foundation.\tLa rumeur était sans fondement.\nThe sales of this model took off.\tLes ventes de ce modèle se sont envolées.\nThe ship wasn't ready for battle.\tLe navire n'était pas en ordre de bataille.\nThe sign indicates the way to go.\tLe panneau indique le chemin.\nThe situation is growing serious.\tLa situation devient sérieuse.\nThe situation left him perplexed.\tLa situation l'a laissé perplexe.\nThe situation there was critical.\tLa situation là-bas était critique.\nThe sky became darker and darker.\tLe ciel devenait de plus en plus sombre.\nThe sky became darker and darker.\tLe ciel devint de plus en plus sombre.\nThe snow was several meters deep.\tLa neige était profonde de plusieurs mètres.\nThe sooner you leave, the better.\tLe plus tôt tu partiras, le mieux ce sera.\nThe sooner you leave, the better.\tLe plus tôt vous partirez, le mieux ce sera.\nThe stars are shining in the sky.\tLes étoiles brillent dans le ciel.\nThe storm caused a lot of damage.\tLa tempête occasionna beaucoup de dommage.\nThe story begins a long time ago.\tL'histoire commence il y a longtemps.\nThe streets aren't safe at night.\tDe nuit, les rues ne sont pas sûres.\nThe students made her life happy.\tLes élèves ont rendu sa vie heureuse.\nThe sun always rises in the east.\tLe Soleil se lève toujours à l'Est.\nThe swimmers were numb with cold.\tLes nageurs étaient transis de froid.\nThe table was covered with paper.\tLa table était recouverte de papier.\nThe talks continued for two days.\tLes pourparlers se sont poursuivis pendant deux jours.\nThe telephone rang several times.\tLe téléphone a sonné plusieurs fois.\nThe town has many tall buildings.\tIl y a de nombreux bâtiments de grande taille dans cette ville.\nThe town has many tall buildings.\tCette ville comporte de nombreux bâtiments de grande taille.\nThe traffic light changed to red.\tLe feu de circulation est passé au rouge.\nThe tree was struck by lightning.\tL'arbre a été frappé par la foudre.\nThe troops advanced twenty miles.\tLes troupes progressèrent de vingt milles.\nThe truck cut in front of my car.\tLe poids lourd traversa devant ma voiture.\nThe two answers are both correct.\tLes deux réponses sont correctes.\nThe two brothers are still alive.\tLes deux frères sont toujours vivants.\nThe two of us split up last year.\tNous nous sommes tous deux séparés l'année dernière.\nThe water flows under the bridge.\tL'eau s'écoule sous le pont.\nThe water was calm and very blue.\tL'eau était calme et très bleue.\nThe whole family was sick in bed.\tToute la famille était malade au lit.\nThe word is not in my dictionary.\tCe mot n'est pas dans mon dictionnaire.\nThe work is practically finished.\tLe travail est pratiquement terminé.\nThe world is full of dumb people.\tLe monde est plein d’idiots.\nThe wound left a scar on her arm.\tLa blessure lui laissa une cicatrice sur le bras.\nThe young adapt to change easily.\tLes jeunes s'adaptent facilement.\nThe young girl lost her bracelet.\tLa fillette a perdu son bracelet.\nThe young should respect the old.\tLes jeunes devraient respecter les vieux.\nTheir friendship moved us deeply.\tLeur amitié nous a profondément touchés.\nThere are 50 members in the club.\tIl y a 50 membres dans le club.\nThere are few houses around here.\tIl y a peu de maisons dans le coin.\nThere are four seasons in a year.\tIl y a quatre saisons dans une année.\nThere are many fish in this lake.\tIl y a beaucoup de poisson dans ce lac.\nThere are many islands in Greece.\tIl y a beaucoup d'îles en Grèce.\nThere are many mysteries in life.\tIl y a de nombreux mystères dans la vie.\nThere are many parks in our town.\tIl y a de nombreux parcs dans notre ville.\nThere are no chairs in this room.\tIl n'y a pas de chaises dans cette salle.\nThere are some books on the desk.\tIl y a quelques livres sur le bureau.\nThere are some flies on the wall.\tIl y a des mouches posées sur le mur.\nThere is a television in my room.\tIl y a une télévision dans ma chambre.\nThere is an apple under the desk.\tIl y a une pomme en dessous du bureau.\nThere is no chance of rain today.\tIl n'y a aucun risque de pluie aujourd'hui.\nThere is no hope of his recovery.\tIl n'y a pas d'espoir pour son rétablissement.\nThere is no need for him to work.\tIl n'a pas besoin de travailler.\nThere is no need for him to work.\tIl n'est pas nécessaire qu'il travaille.\nThere is no need for us to hurry.\tIl n'est pas nécessaire de nous dépêcher.\nThere is no reason for this fear.\tIl n'y a pas de raison à cette crainte.\nThere is no school during August.\tIl n'y a pas cours en août.\nThere is nothing wrong with this.\tIl n'y a rien de mauvais à cela.\nThere is something you must know.\tIl y a quelque chose que vous devez savoir.\nThere is something you must know.\tIl y a quelque chose que tu dois savoir.\nThere must be a misunderstanding.\tIl doit y avoir un malentendu.\nThere must be something in there.\tIl doit y avoir quelque chose là-dedans.\nThere was a good reason for this.\tIl y avait une bonne raison à cela.\nThere was a heavy rain yesterday.\tIl y avait une grosse pluie hier.\nThere was a light rain yesterday.\tIl est tombé une légère pluie hier.\nThere was no question about that.\tIl n'en était pas question.\nThere was only one small problem.\tIl y avait juste un petit problème.\nThere's a church behind my house.\tIl y a une église derrière chez moi.\nThere's no need for you to study.\tVous n'avez pas besoin d'étudier.\nThere's no need for you to study.\tTu n'as pas besoin d'étudier.\nThere's no need to speak so loud.\tIl n'est pas nécessaire de parler si fort.\nThere's no one to look after her.\tIl n'y a personne qui prendra soin d'elle.\nThere's nothing funny about that.\tIl n'y a là rien d'amusant.\nThere's nothing left for me here.\tIl ne reste rien pour moi, ici.\nThere's something fishy going on.\tIl se passe quelque chose de louche.\nThere's something fishy going on.\tQuelque chose de suspect est en train de se passer.\nThere's still so much left to do.\tIl reste encore tant à faire.\nThere's still so much left to do.\tIl y a encore tellement à faire.\nThermometers often go below zero.\tLe thermomètre descend souvent en dessous de zéro.\nThese gloves kept her hands warm.\tCes gants gardaient ses mains au chaud.\nThese houses were dark and dirty.\tCes maisons étaient sombres et sales.\nThese people hate all foreigners.\tCes gens détestent tous les étrangers.\nThese shoes are very comfortable.\tCes chaussures sont très confortables.\nThese trees were planted by them.\tCe sont eux qui ont planté ces arbres.\nThey appointed him as a director.\tIls le nommèrent directeur.\nThey are both colleagues of mine.\tCe sont tous deux des collègues à moi.\nThey are expected any minute now.\tIls devraient venir d'un moment à l'autre.\nThey are looking to you for help.\tIls attendent que vous les aidiez.\nThey are looking to you for help.\tIls attendent que tu les aides.\nThey are the ones who want to go.\tCe sont ceux qui veulent y aller.\nThey are the ones who want to go.\tCe sont celles qui veulent y aller.\nThey are the ones who want to go.\tCe sont ceux qui veulent partir.\nThey are the ones who want to go.\tCe sont celles qui veulent partir.\nThey are the ones who want to go.\tCe sont ceux qui veulent s'y rendre.\nThey are the ones who want to go.\tCe sont celles qui veulent s'y rendre.\nThey aren't telling us the truth.\tIls ne nous disent pas la vérité.\nThey charge too much for parking.\tIls demandent beaucoup trop d'argent pour un stationnement.\nThey could not find work at home.\tIls ne pouvaient trouver de travail par chez eux.\nThey could not get there quickly.\tIls n'ont pas pu y aller rapidement.\nThey did not have good equipment.\tIls n'avaient pas de bon matériel.\nThey don't take care of that dog.\tIls ne prennent pas soin de ce chien.\nThey don't take care of that dog.\tElles ne prennent pas soin de ce chien.\nThey elected her to be the mayor.\tIls l'ont choisie pour être maire.\nThey enjoy one another's company.\tIls apprécient la compagnie de l'autre.\nThey fell into each other's arms.\tIls tombèrent dans les bras l'un de l'autre.\nThey fell into each other's arms.\tIls tombèrent dans les bras les uns des autres.\nThey fell into each other's arms.\tElles tombèrent dans les bras l'une de l'autre.\nThey fell into each other's arms.\tElles tombèrent dans les bras les unes des autres.\nThey fit each other so perfectly.\tIls vont tellement bien l'un avec l'autre.\nThey fit each other so perfectly.\tIls conviennent parfaitement l'un à l'autre.\nThey gave us very little trouble.\tIl nous ont fait très peu de difficultés.\nThey have very little to live on.\tIls ont très peu pour vivre.\nThey have very little to live on.\tIls disposent de très peu pour vivre.\nThey hurried by without a glance.\tIls passèrent en se hâtant, sans un regard.\nThey hurried by without a glance.\tElles passèrent en se hâtant, sans un regard.\nThey kept me waiting for an hour.\tIls m'ont fait attendre une heure.\nThey looked as if they would cry.\tIls semblaient être sur le point de pleurer.\nThey looked as if they would cry.\tElles semblaient être sur le point de pleurer.\nThey mistook him for his brother.\tIls le confondirent avec son frère.\nThey mistook him for his brother.\tElles le confondirent avec son frère.\nThey moved in just the other day.\tIls ont emménagé juste l'autre jour.\nThey refused to think of leaving.\tIls refusèrent de songer à partir.\nThey relaxed around the campfire.\tIls se détendirent autour du feu de camp.\nThey relaxed around the campfire.\tElles se sont détendues autour du feu de camp.\nThey rushed towards their mother.\tIls se précipitèrent vers leur mère.\nThey rushed towards their mother.\tElles se précipitèrent vers leur mère.\nThey stayed at a five-star hotel.\tIls ont séjourné dans un hôtel cinq étoiles.\nThey stood up for what was right.\tIls se dressèrent pour ce qui était juste.\nThey stood up for what was right.\tElles se dressèrent pour ce qui était juste.\nThey were better than I expected.\tIls étaient meilleurs que ce à quoi je m'attendais.\nThey were better than I expected.\tElles étaient meilleures que ce à quoi je m'attendais.\nThey were in a hurry to get home.\tIls étaient pressés de rentrer à la maison.\nThey were not listening to music.\tIls n'écoutaient pas de musique.\nThey were not listening to music.\tElles n'écoutaient pas de musique.\nThey were scolded by the teacher.\tIls furent grondés par l'instituteur.\nThey were scolded by the teacher.\tElles furent grondées par l'instituteur.\nThey were scolded by the teacher.\tIls furent grondés par l'institutrice.\nThey were scolded by the teacher.\tElles furent grondées par l'institutrice.\nThey were scolded by the teacher.\tElles ont été grondées par l'instituteur.\nThey were scolded by the teacher.\tElles ont été grondées par l'institutrice.\nThey were scolded by the teacher.\tIls ont été grondés par l'instituteur.\nThey were scolded by the teacher.\tIls ont été grondés par l'institutrice.\nThey will get married next month.\tIls vont se marier le mois prochain.\nThey wouldn't have done anything.\tIls n'auraient rien fait.\nThey wouldn't have done anything.\tElles n'auraient rien fait.\nThey're barely paid minimum wage.\tIls sont à peine payés le SMIC.\nThey're giving away samples free.\tIls distribuent des échantillons gratuits.\nThey're not telling us the truth.\tIls ne nous disent pas la vérité.\nThirty-four of them were lawyers.\tTrente cinq d'entre eux étaient avocats.\nThis T-shirt is too small for me.\tCe T-shirt est trop petit pour moi.\nThis ball is that boy's treasure.\tCe ballon est le trésor de ce garçon.\nThis bed is too hard to sleep on.\tCe lit est trop dur pour y dormir.\nThis blue sweater is very pretty.\tCe pull bleu est très beau.\nThis boat is no longer seaworthy.\tLe bateau n'est plus en état de naviguer.\nThis book contains many pictures.\tCe livre contient de nombreuses images.\nThis book is easy for me to read.\tC'est très facile pour moi de lire ce livre.\nThis book is hard for me to read.\tCe livre m'est d'une lecture difficile.\nThis book is worth reading again.\tCe livre vaut la peine d'être relu.\nThis book is worth reading twice.\tCe livre vaut la peine d'être relu.\nThis building has five elevators.\tCet immeuble a cinq ascenseurs.\nThis building is near completion.\tCe bâtiment est bientôt terminé.\nThis can't be what I think it is.\tÇa ne peut pas être ce que je pense que c'est.\nThis can't be what it looks like.\tÇa ne peut pas être ce que ça paraît.\nThis can't be what it looks like.\tÇa ne peut pas être ce que ça semble.\nThis car has no air conditioning.\tCette voiture ne dispose pas d'air conditionné.\nThis computer is yours, isn't it?\tCet ordinateur est le tien, n'est-ce pas ?\nThis conversation never happened.\tCette conversation n'a jamais eu lieu.\nThis day will go down in history.\tCe jour entrera dans l'histoire.\nThis desk is a little low for me.\tCe bureau est un peu bas pour moi.\nThis desk takes up too much room.\tCe bureau prend trop de place.\nThis does not concern you at all.\tVous n'êtes pas du tout concerné.\nThis doll costs only sixty cents.\tCette poupée ne coûte que soixante centimes.\nThis doll is a gift from my aunt.\tCette poupée est un cadeau de ma tante.\nThis hut is a very special place.\tCette cabane est un endroit très spécial.\nThis hut is a very special place.\tCette cabane est un lieu très particulier.\nThis ink stain will not wash out.\tCette tache d'encre ne veut pas s'en aller.\nThis is a real diamond, isn't it?\tC'est un authentique diamant, n'est-ce pas ?\nThis is all that is known so far.\tC'est tout ce qu'on sait jusqu'à maintenant.\nThis is an exception to the rule.\tC'est une exception à la règle.\nThis is how I solved the problem.\tC'est ainsi que j'ai résolu le problème.\nThis is kind of sudden, isn't it?\tC'est en quelque sorte soudain, n'est-ce pas ?\nThis is more expensive than that.\tC'est plus cher que ça.\nThis is the house he was born in.\tC'est la maison où il est né.\nThis is the letter for my friend.\tC'est la lettre pour mon ami.\nThis is the reason why he did it.\tC'est la raison pour laquelle il le fit.\nThis is the very book you wanted.\tC'est précisément le livre que vous vouliez.\nThis is the very book you wanted.\tC'est exactement le livre que tu voulais.\nThis is what I found in the cave.\tC'est ce que j'ai trouvé dans la grotte.\nThis isn't everyone's cup of tea.\tCe n'est pas du goût de tout le monde.\nThis isn't exactly what I wanted.\tCe n'est pas exactement ce que je voulais.\nThis isn't the time or the place.\tCe n'est ni le moment, ni l'endroit.\nThis isn't where I parked my car.\tCe n'est pas là que j'ai garé ma voiture.\nThis key doesn't fit in the lock.\tCette clef ne rentre pas dans la serrure.\nThis knife was very useful to me.\tCe couteau m'a beaucoup servi.\nThis lawn mower runs on gasoline.\tCette tondeuse à gazon fonctionne à l'essence.\nThis letter is wrongly addressed.\tCette lettre porte une mauvaise adresse.\nThis milk will keep for two days.\tCe lait peut se garder deux jours.\nThis offer is good for five days.\tCette offre est valable cinq jours.\nThis offer is good for five days.\tCette offre vaut pour cinq jours.\nThis packaging is hard to remove.\tCet emballage est difficile à retirer.\nThis painting isn't complete yet.\tCe tableau n'est pas encore terminé.\nThis plant grew little by little.\tCette plante a poussé petit à petit.\nThis restaurant is badly managed.\tCe restaurant est mal géré.\nThis sentence doesn't make sense.\tCette phrase n'a pas de sens.\nThis sentence doesn't make sense.\tCette peine n'a pas de sens.\nThis shop carries men's clothing.\tCe magasin propose des vêtements pour homme.\nThis shop is a rental video shop.\tCe magasin est un magasin de location de vidéo.\nThis should be clear to everyone.\tÇa devrait être clair pour tout le monde.\nThis story has an unhappy ending.\tCette histoire se termine mal.\nThis sword has a strange history.\tCette épée a une étrange histoire.\nThis textbook is too hard for me.\tCe manuel scolaire est trop dur pour moi.\nThis train is bound for New York.\tCe train se dirige vers New-York.\nThis train stops at all stations.\tCe train s'arrête à toutes les stations.\nThis tree is older than that car.\tCet arbre est plus vieux que cette voiture.\nThis tree is three meters around.\tCet arbre a une circonférence de trois mètres.\nThis will be a great opportunity.\tCe sera une excellente occasion.\nThose men are armed to the teeth.\tCes hommes sont armés jusqu'aux dents.\nThree beers and a tequila please.\tTrois bières et une tequila s'il vous plaît !\nTo put it bluntly, he's mistaken.\tPour le dire brutalement, il se trompe.\nTo tell the truth, I felt lonely.\tÀ dire vrai, je me sentais seul.\nTo tell the truth, I felt lonely.\tEn vérité, je me sentais seule.\nTom admired Mary for her bravery.\tTom admirait Marie pour son courage.\nTom and I have nothing in common.\tTom et moi n'avons rien en commun.\nTom and Mary are both professors.\tTom et Mary sont tous les deux professeurs.\nTom and Mary are looking for you.\tTom et Marie sont en train de te chercher.\nTom and Mary are looking for you.\tTom et Marie sont en train de vous chercher.\nTom and Mary are older than John.\tTom et Mary sont plus vieux que John.\nTom and Mary are the same height.\tTom et Marie font la même taille.\nTom and Mary can't both be right.\tTom et Marie ne peuvent pas avoir raison tous les deux.\nTom and Mary seem happy together.\tTom et Marie ont l'air heureux ensemble.\nTom and Mary value their privacy.\tTom et Mary donnent de la valeur à leur vie privée.\nTom asked Mary several questions.\tTom posa plusieurs questions à Mary.\nTom asked Mary several questions.\tTom a posé plusieurs questions à Mary.\nTom asked Mary where the dog was.\tTom a demandé à Mary où était le chien.\nTom asked me what the matter was.\tTom m'a demandé quel était le problème.\nTom borrowed a car from a friend.\tTom a emprunté une voiture d'un ami.\nTom bought some land near Boston.\tTom a acheté un terrain près de Boston.\nTom came out of his hiding place.\tTom est sorti de sa cachette.\nTom can play the guitar, I think.\tTom sait jouer de la guitare, je pense.\nTom can ski just as well as Mary.\tTom peut skier tout aussi bien que Mary.\nTom can't do anything about that.\tTom ne peut rien y faire.\nTom can't do anything about that.\tTom ne peut rien faire à cela.\nTom can't give you an answer now.\tTom ne peut pas vous donner une réponse maintenant.\nTom can't give you an answer now.\tTom ne peut pas te donner une réponse maintenant.\nTom carried the suitcases for me.\tTom a porté les valises pour moi.\nTom could have told me the truth.\tTom aurait pu me dire la vérité.\nTom could hear the phone ringing.\tTom pouvait entendre le téléphone sonner.\nTom couldn't help but feel happy.\tTom ne pouvait s'empêcher de se sentir heureux.\nTom couldn't walk without a cane.\tTom ne pouvait pas marcher sans canne.\nTom crossed the border illegally.\tTom a traversé la frontière illégalement.\nTom didn't give me back my money.\tTom ne m'a pas rendu mon argent.\nTom didn't give me what I needed.\tTom ne m'a pas donné ce dont j'avais besoin.\nTom didn't know what else to say.\tTom ne savait pas quoi dire d'autre.\nTom didn't know what to say next.\tTom ne savait pas quoi dire ensuite.\nTom didn't know what to say next.\tTom n'a pas su quoi dire après.\nTom didn't listen to what I said.\tTom ne m'écoutait pas.\nTom didn't look as bored as Mary.\tTom n'avait pas l'air aussi ennuyé que Mary.\nTom didn't look as happy as Mary.\tTom n'avait pas l'air aussi heureux que Mary.\nTom didn't look as happy as Mary.\tTom ne semblait pas aussi heureux que Mary.\nTom didn't need to come so early.\tTom n'avait pas besoin de venir si tôt.\nTom died before his son was born.\tTom est mort avant que son fils naisse.\nTom died in prison ten years ago.\tTom est mort en prison il y a dix ans.\nTom doesn't have anything to eat.\tTom n'a rien à manger.\nTom doesn't know much about guns.\tTom ne connaît pas grand-chose aux armes à feu.\nTom doesn't know the whole story.\tTom ne connaît pas toute l'histoire.\nTom doesn't know what he's doing.\tTom ne sait pas ce qu'il fait.\nTom doesn't know what's going on.\tTom ne sait pas ce qui se passe.\nTom doesn't like poker very much.\tTom n'aime pas beaucoup le poker.\nTom doesn't like to speak French.\tTom n'aime pas parler français.\nTom doesn't look troubled at all.\tTom n'a pas du tout l'air inquiet.\nTom doesn't read books in French.\tTom ne lit pas de livres en français.\nTom doesn't speak French at home.\tTom ne parle pas français chez lui.\nTom doesn't talk to Mary anymore.\tTom ne parle plus à Marie.\nTom doesn't think it's his fault.\tTom ne pense pas que ce soit sa faute.\nTom doesn't want you to get hurt.\tTom ne veut pas que tu te blesses.\nTom doesn't want you to get hurt.\tTom ne veut pas que vous soyez blessée.\nTom drives everybody up the wall.\tTom rend tout le monde dingues.\nTom eats the same food every day.\tTom mange la même nourriture tous les jours.\nTom enjoys watching sports on TV.\tTom aime regarder le sport à la télévision.\nTom enjoys working here, I think.\tTom apprécie de travailler ici, je pense.\nTom felt helpless and frightened.\tTom se sentait impuissant et effrayé.\nTom forgot the keys on the table.\tTom a oublié les clés sur la table.\nTom forgot to bring a flashlight.\tTom a oublié d'apporter une lampe torche.\nTom gets up at six every morning.\tTom se lève à 6h tous les matins.\nTom had to do everything himself.\tTom a dû tout faire lui-même.\nTom had to spend a night in jail.\tTom a dû passer une nuit en prison.\nTom has a new girlfriend already.\tTom a déjà une nouvelle petite amie.\nTom has a tattoo on his left arm.\tTom a un tatouage sur son bras gauche.\nTom has a tendency to exaggerate.\tTom a tendance à exagérer.\nTom has been watching TV all day.\tTom a regardé la télé toute la journée.\nTom has begun writing a new book.\tTom a commencé à écrire un nouveau livre.\nTom has changed a lot since then.\tTom a beaucoup changé depuis.\nTom has done other stupid things.\tTom a fait d'autres choses stupides.\nTom has made up his mind already.\tTom s'est déjà décidé.\nTom has never asked me for money.\tTom ne m'a jamais demandé d'argent.\nTom has no prior criminal record.\tTom n'a pas d'antécédents judiciaires.\nTom has no prior criminal record.\tTom n'a pas de casier judiciaire.\nTom has sold his house in Boston.\tTom a vendu sa maison à Boston.\nTom has sold his house in Boston.\tTom a vendu sa maison de Boston.\nTom hasn't bought his ticket yet.\tTom n'a pas encore acheté son ticket.\nTom hasn't violated his contract.\tTom n'a pas violé son contrat.\nTom insisted that he acted alone.\tTom a insisté pour qu'il agisse seul.\nTom is a member of the SWAT team.\tTom est un membre de l'équipe du GIGN.\nTom is afraid of making mistakes.\tTom a peur de faire des fautes.\nTom is apparently a truck driver.\tTom est apparemment chauffeur de camion.\nTom is determined to lose weight.\tTom est déterminé à perdre du poids.\nTom is driving without a license.\tTom conduit sans permis.\nTom is in reasonably good health.\tTom est en bonne santé.\nTom is interested in mathematics.\tTom s'intéresse aux mathématiques.\nTom is never at a loss for words.\tTom n'est jamais à court de mots.\nTom is on his way back to Boston.\tTom est sur le chemin du retour pour Boston.\nTom is on his way back to Boston.\tTom est en train de rentrer à Boston.\nTom is refusing to pay his bills.\tTom refuse de payer ses factures.\nTom is the fattest person I know.\tTom est la plus grosse personne que je connais.\nTom is the right man for the job.\tTom est le bon choix pour ce travail.\nTom is the right man for the job.\tTom est l'homme qu'il faut pour ce travail.\nTom is the tallest in his family.\tTom est le plus grand de sa famille.\nTom is three years older than me.\tTom a trois ans de plus que moi.\nTom is too stubborn to apologize.\tTom est trop têtu pour s'excuser.\nTom is too young to go to school.\tTom est trop jeune pour aller à l'école.\nTom is too young to go to school.\tTom est trop petit pour aller à l'école.\nTom is too young to travel alone.\tTom est trop jeune pour voyager seul.\nTom is usually not very reliable.\tTom n'est généralement pas très fiable.\nTom is writing on the blackboard.\tTom est en train d'écrire sur le tableau.\nTom is writing on the blackboard.\tTom écrit sur le tableau.\nTom isn't ashamed of what he did.\tTom n'a pas honte de ce qu'il a fait.\nTom knew he needed to leave town.\tTom savait qu'il devait quitter la ville.\nTom knew that Mary was a teacher.\tTom savait que Mary était professeur.\nTom knew that Mary was a teacher.\tTom savait que Mary était institutrice.\nTom knew that Mary was a teacher.\tTom savait que Mary était maîtresse d'école.\nTom knew that Mary was in Boston.\tTom savait que Marie était à Boston\nTom knew that Mary was in danger.\tTom savait que Mary était en danger.\nTom knew what Mary wanted to eat.\tTom savait ce que Marie voulait manger.\nTom knows exactly how Mary feels.\tTom sait exactement ce que ressent Mary.\nTom knows he did something wrong.\tTom sait qu'il a fait quelque chose de mal.\nTom knows the man Mary came with.\tTom connaît l'homme avec qui Mary est venue.\nTom knows the police suspect him.\tTom sait que la police le suspecte.\nTom left the lights on all night.\tTom a laissé la lumière allumée toute la nuit.\nTom likes Mary's long black hair.\tTom aime les longs cheveux noirs de Marie.\nTom likes making paper airplanes.\tTom aime faire des avions en papier.\nTom lives in a poor neighborhood.\tTom habite dans un quartier pauvre.\nTom looked a little disappointed.\tTom avait l'air un peu déçu.\nTom looks a little uncomfortable.\tTom a l'air un peu mal à l'aise.\nTom looks a little uncomfortable.\tTom semble un peu mal à l'aise.\nTom looks just like a guy I know.\tTom ressemble exactement à un gars que je connais.\nTom made good money on that deal.\tTom s'est fait beaucoup d'argent avec cette affaire.\nTom married a much younger woman.\tTom s'est marié à une femme beaucoup plus jeune.\nTom needs us to show him the way.\tTom a besoin que nous lui montrions la route.\nTom never listens to the teacher.\tTom n'écoute jamais le professeur.\nTom never talks about his family.\tTom ne parle jamais de sa famille.\nTom never told me he was married.\tTom ne m'a jamais dit qu'il était marié.\nTom offered Mary a slice of cake.\tTom a offert une tranche de gâteau à Mary.\nTom offered Mary a slice of cake.\tTom offrit une tranche de gâteau à Mary.\nTom opened his eyes and saw Mary.\tTom ouvra les yeux et vit Mary.\nTom opened his eyes and saw Mary.\tTom a ouvert les yeux et a vu Mary.\nTom poured Mary a glass of water.\tTom servit un verre d'eau à Marie.\nTom poured a cup of tea for Mary.\tTom versa du thé pour Mary.\nTom prefers not to talk about it.\tTom préfère ne pas en parler.\nTom put a flea collar on his dog.\tTom a mis un collier anti-puces à son chien.\nTom refused to sign the document.\tTom refusa de signer le document.\nTom refused to sign the document.\tTom a refusé de signer le document.\nTom said he wants to talk to you.\tTom a dit qu'il voulait te parler.\nTom said he wants to talk to you.\tTom a dit qu'il voulait vous parler.\nTom sat on a stool in the corner.\tTom s'assit sur un tabouret dans un coin.\nTom says he can wait a long time.\tTom dit qu'il ne peut pas attendre longtemps.\nTom seems to be an honest person.\tTom semble être une personne honnête.\nTom sees this in a different way.\tTom voit ça d'une manière différente.\nTom seldom wears his black shirt.\tTom porte rarement sa chemise noire.\nTom sensed Mary's disappointment.\tTom perçut la déception de Marie.\nTom shot at Mary with a crossbow.\tTom a tiré sur Mary avec une arbalète.\nTom should ask Mary how to do it.\tTom devrait demander à Mary comment le faire.\nTom speaks two foreign languages.\tTom parle deux langues étrangères.\nTom started packing his suitcase.\tTom a commencé à préparer sa valise.\nTom stopped reading for a moment.\tTom arrêta de lire un moment.\nTom stopped reading for a moment.\tTom a arrêté de lire un moment.\nTom stopped reading for a moment.\tTom cessa de lire pendant un moment.\nTom stopped reading for a moment.\tTom a cessé de lire pendant un moment.\nTom takes everything for granted.\tTom prend tout pour acquis.\nTom takes good care of the birds.\tTom s'occupe bien des oiseaux.\nTom thanked everyone for waiting.\tTom remercia tout le monde d'avoir attendu.\nTom thanked everyone for waiting.\tTom a remercié tout le monde pour leur attente.\nTom thinks the plan may backfire.\tTom pense que le plan pourrait se retourner contre nous.\nTom thought about what Mary said.\tTom pensa à ce que Mary avait dit.\nTom thought that Mary was asleep.\tTom pensait que Mary était endormie.\nTom threatened Mary with a knife.\tTom a menacé Marie avec un couteau.\nTom told me he wasn't happy here.\tTom m'a dit qu'il n'était pas heureux ici.\nTom told me he's getting married.\tTom m'a dit qu'il allait se marier.\nTom told me not to lock the door.\tTom m'a dit de ne pas verrouiller la porte.\nTom took the ring off his finger.\tTom retira la bague de son doigt.\nTom tried climbing the tall tree.\tTom essaya de grimper le grand arbre.\nTom waited for more than an hour.\tTom a attendu pendant plus d'une heure.\nTom waited for more than an hour.\tTom a attendu plus d'une heure.\nTom was afraid to cross the road.\tTom avait peur de traverser la route.\nTom was complaining of back pain.\tTom se plaignait d'un mal de dos.\nTom was expecting you to say yes.\tTom s'attendait à ce que tu lui dises oui.\nTom was lying in bed watching TV.\tTom regardait la télé, allongé dans son lit.\nTom was pardoned by the governor.\tTom a été gracié par le gouverneur.\nTom was surprised by what he saw.\tTom a été surpris par ce qu'il a vu.\nTom was the only one who laughed.\tTom fut le seul à rire.\nTom was the only one who laughed.\tTom a été le seul à rire.\nTom wasn't the first person here.\tTom ne fut pas la première personne ici.\nTom went to the circus with Mary.\tTom est allé au cirque avec Marie.\nTom went to the museum with Mary.\tTom est allé au musée avec Mary.\nTom went to the museum with Mary.\tTom alla au musée avec Mary.\nTom will be delighted to see you.\tTom sera ravi de te voir.\nTom will be delighted to see you.\tTom sera enchanté de vous voir.\nTom will be in Boston for a week.\tTom sera à Boston pendant une semaine.\nTom wishes he could speak French.\tTom aimerait avoir le pouvoir de parler la langue de Molière.\nTom woke up at the crack of dawn.\tTom se réveilla à l'aube.\nTom woke up at the crack of dawn.\tTom s'est réveillé aux aurores.\nTom works at a nearby restaurant.\tTom travaille dans un restaurant des environs.\nTom wrote a very detailed report.\tTom a écrit un rapport très détaillé.\nTom's computer is not responding.\tL'ordinateur de Tom ne répond pas.\nTom's nervousness was noticeable.\tLa nervosité de Tom était perceptible.\nTom's password was easy to guess.\tLe mot de passe de Tom était facile à deviner.\nTom's question was an accusation.\tLa question de Tom était une accusation.\nTom, I've got a surprise for you.\tTom, j'ai une surprise pour toi.\nTomorrow is my first day of work.\tDemain est mon premier jour de travail.\nTraffic is a major urban problem.\tLa circulation est un problème urbain majeur.\nTraffic lights work all the time.\tLes feux tricolores fonctionnent en continu.\nTrust me, you don't want to know.\tFais-moi confiance, tu ne veux pas savoir.\nTrust me, you don't want to know.\tFaites-moi confiance, vous ne voulez pas savoir.\nTwo tickets to San Diego, please.\tDeux billets pour San Diego, s'il vous plaît.\nUnfortunately he refused to come.\tMalheureusement il a refusé de venir.\nUnfortunately he refused to come.\tMalheureusement, il refusa de venir.\nUnfortunately, it's not possible.\tMalheureusement, ce n'est pas possible.\nUnited we stand, divided we fall.\tL'union fait la force.\nVery few fat men have long noses.\tTrès peu d'hommes gros ont de longs nez.\nWait until your father gets home.\tAttends que ton père rentre à la maison.\nWait until your father gets home.\tAttends que ton père rentre chez lui.\nWait until your father gets home.\tAttendez que votre père rentre à la maison.\nWait until your father gets home.\tAttendez que votre père rentre chez lui.\nWalking is an excellent exercise.\tMarcher est une excellente activité.\nWas it cloudy in Tokyo yesterday?\tLe ciel était-il couvert à Tokyo hier ?\nWe accept all major credit cards.\tNous acceptons toutes les principales cartes de crédit.\nWe adopted an alternative method.\tNous adoptâmes une méthode alternative.\nWe adopted an alternative method.\tNous avons adopté une méthode alternative.\nWe all breathed a sigh of relief.\tNous soupirâmes tous de soulagement.\nWe always have to obey the rules.\tNous devons toujours obéir aux règlements.\nWe appreciate your understanding.\tNous vous sommes reconnaissants pour votre compréhension.\nWe are anxious about your health.\tNous sommes anxieux à propos de ta santé.\nWe arrived at the office on time.\tNous arrivâmes à temps au bureau.\nWe arrived at the office on time.\tNous sommes arrivés à temps au bureau.\nWe arrived at the office on time.\tNous sommes arrivées à temps au bureau.\nWe associate Egypt with the Nile.\tNous associons l'Égypte au Nil.\nWe came back to camp before dark.\tNous revînmes au camp avant la nuit.\nWe came back to camp before dark.\tNous sommes revenus au camp avant la nuit.\nWe came back to camp before dark.\tNous sommes revenues au camp avant la nuit.\nWe can solve this problem easily.\tNous pouvons facilement résoudre ce problème.\nWe can't have you working for us.\tNous ne pouvons pas vous avoir à travailler avec nous.\nWe can't just do nothing all day.\tNous ne pouvons pas juste ne rien faire de toute la journée.\nWe climbed up the steep mountain.\tNous gravissions la montagne abrupte.\nWe couldn't understand her logic.\tNous ne pûmes comprendre sa logique.\nWe discussed a number of options.\tNous avons discuté de nombre de possibilités.\nWe discussed the topic at length.\tNous avons amplement discuté du sujet.\nWe don't have a landline anymore.\tNous n'avons plus de ligne fixe.\nWe don't live in a perfect world.\tNous ne vivons pas dans un monde parfait.\nWe find the defendant not guilty.\tNous jugeons l'accusé non coupable.\nWe gain more knowledge every day.\tNous acquérons chaque jour davantage de connaissances.\nWe got behind the car and pushed.\tNous nous plaçâmes derrière la voiture et poussâmes.\nWe got behind the car and pushed.\tNous nous sommes placés derrière la voiture et avons poussé.\nWe got behind the car and pushed.\tNous nous sommes placées derrière la voiture et avons poussé.\nWe grow vegetables in our garden.\tNous cultivons des légumes dans notre jardin.\nWe had a good time playing chess.\tOn a passé un bon moment à jouer aux échecs.\nWe had lots of fun at the picnic.\tNous nous sommes beaucoup amusés lors du pique-nique.\nWe had lots of fun at the picnic.\tNous nous sommes beaucoup amusées lors du pique-nique.\nWe have a party tomorrow evening.\tNous faisons une fête demain soir.\nWe have different points of view.\tNous avons des points de vue différents.\nWe have had bad weather recently.\tNous avons connu du mauvais temps, ces derniers temps.\nWe have little chance of winning.\tNous avons peu de chances de gagner.\nWe have something else in common.\tNous avons quelque chose d'autre en commun.\nWe have the whole summer to play.\tNous disposons de tout l'été pour jouer.\nWe have the whole summer to play.\tNous avons tout l'été pour jouer.\nWe have to do this the right way.\tIl nous faut faire cela de la manière correcte.\nWe have to do this the right way.\tIl nous faut faire cela de la bonne manière.\nWe have to find out who did this.\tNous devons découvrir qui a fait ça.\nWe have to respect local customs.\tNous devons respecter les coutumes locales.\nWe haven't been around that long.\tNous n'avons pas été par ici aussi longtemps.\nWe haven't been there in a while.\tNous n'y avons pas été depuis un moment.\nWe heard gunshots from next door.\tNous entendîmes une détonation en provenance d'à côté.\nWe heard gunshots from next door.\tNous avons entendu une détonation en provenance d'à côté.\nWe heard gunshots from next door.\tNous entendîmes un coup de feu en provenance d'à côté.\nWe heard gunshots from next door.\tNous avons entendu un coup de feu en provenance d'à côté.\nWe helped them out when we could.\tNous les avons aidés lorsque nous le pouvions.\nWe helped them out when we could.\tNous les avons aidées lorsque nous le pouvions.\nWe hope this never happens again.\tNous espérons que ça n'arrivera plus jamais.\nWe just want Tom to keep working.\tNous voulons seulement que Tom continue de travailler.\nWe left Boston at 2:30 yesterday.\tNous avons quitté Boston à 2h30 hier.\nWe left Boston at 2:30 yesterday.\tNous avons quitté Boston à 14h30 hier.\nWe like doing things our own way.\tNous aimons faire les choses à notre manière.\nWe listened to her for some time.\tNous l'écoutâmes quelque temps.\nWe listened to her for some time.\tNous l'avons écoutée quelque temps.\nWe look up to him as our teacher.\tNous l'admirons en tant que notre professeur.\nWe must cancel our trip to Japan.\tNous devons annuler notre voyage pour le Japon.\nWe must not speak in the library.\tNous ne devons pas parler dans la bibliothèque.\nWe must take care of the elderly.\tOn doit prendre soin des personnes âgées.\nWe need to burn all these leaves.\tNous devons brûler toutes ces feuilles.\nWe need to clarify a few details.\tNous avons besoin de clarifier quelques détails.\nWe need to get you to a hospital.\tNous devons t'emmener à l'hôpital.\nWe need to get you to a hospital.\tNous devons vous emmener à l'hôpital.\nWe need to make up for lost time.\tIl nous faut rattrapper le temps perdu.\nWe need to prepare for the worst.\tNous avons besoin de nous préparer au pire.\nWe protested, but it was in vain.\tNous avons protesté en vain.\nWe saw a funny movie last Sunday.\tNous avons vu un film drôle, dimanche dernier.\nWe saw the tower in the distance.\tNous vîmes la tour au loin.\nWe should have been more careful.\tNous aurions dû faire plus attention.\nWe should not resort to violence.\tNous ne devrions pas recourir à la violence.\nWe should probably ask Tom first.\tNous devrions probablement demander à Tom d'abord.\nWe should probably ask Tom first.\tNous devrions probablement demander à Tom en premier.\nWe solved that problem in a week.\tNous avons résolu ce problème en une semaine.\nWe spent the day in the open air.\tNous passâmes la journée en plein air.\nWe spent the day in the open air.\tNous avons passé la journée au grand air.\nWe stayed at a hotel by the lake.\tNous sommes restés dans un hôtel au bord du lac.\nWe stayed there for three months.\tNous sommes restés là-bas pendant trois mois.\nWe still have a lot of food left.\tNous avons encore beaucoup de nourriture de reste.\nWe stood on the brink of a cliff.\tNous étions au bord du précipice.\nWe talked about what we could do.\tNous avons parlé de ce que nous pourrions faire.\nWe talked over the plan with him.\tNous avons parlé du plan avec lui.\nWe thought that you were married.\tNous pensions que vous étiez mariés.\nWe took turns in washing the car.\tNous lavions la voiture à tour de rôle.\nWe used to talk about our future.\tNous discutions souvent de notre futur.\nWe want to buy a house in Boston.\tNous voulons acheter une maison à Boston.\nWe watched the soccer game on TV.\tNous avons vu le match de football à la télévision.\nWe went for a walk in the forest.\tNous sommes allés nous promener dans la forêt.\nWe went to Australia last summer.\tNous sommes allés en Australie l'été dernier.\nWe were all present at the party.\tNous étions tous présents à la fête.\nWe were destined to meet one day.\tNous étions destinés à nous rencontrer un jour.\nWe were destined to meet one day.\tNous étions destinées à nous rencontrer un jour.\nWe were not invited to the party.\tNous n'étions pas invités à la fête.\nWe were not invited to the party.\tOn ne nous a pas invités à la fête.\nWe were surprised at his conduct.\tNous fûmes surpris par son comportement.\nWe will reach London before dark.\tNous atteindrons Londres avant la tombée de la nuit.\nWe'd like you to sing some songs.\tNous aimerions que vous chantiez quelques chansons.\nWe'd like you to sing some songs.\tNous aimerions que tu chantes quelques chansons.\nWe'll be there in plenty of time.\tNous y serons suffisamment à l'avance.\nWe'll have to find Tom ourselves.\tNous devrons trouver Tom nous-mêmes.\nWe'll look into the case at once.\tNous allons immédiatement enquêter sur l'affaire.\nWe'll never forget your kindness.\tNous n'oublierons pas votre gentillesse.\nWe'll never forget your kindness.\tNous n'oublierons pas ta gentillesse.\nWe'll only wait three more hours.\tNous n'attendrons que trois heures de plus.\nWe'll think about it in due time.\tNous y réfléchirons en temps voulu.\nWe're all very worried about you.\tNous sommes tous très inquiets pour toi.\nWe're choosing among those ideas.\tNous choisissons parmi ces idées.\nWe're going to have a test today.\tNous aurons un examen aujourd'hui.\nWe're not really friends anymore.\tNous ne sommes plus vraiment amies.\nWe're waiting for the right time.\tNous attendons le bon moment.\nWe're wasting valuable time here.\tNous gâchons un temps précieux.\nWe've already wasted enough time.\tOn a déjà assez perdu de temps.\nWe've just spent two weeks apart.\tNous venons de passer deux semaines séparés.\nWe've just spent two weeks apart.\tNous venons de passer deux semaines séparées.\nWe've still got a couple of days.\tOn a encore deux jours devant nous.\nWe've still got a long way to go.\tNous avons encore un long chemin à parcourir.\nWere your mother and father home?\tVos parents étaient-ils chez eux ?\nWhales are classified as mammals.\tLes baleines sont classifiées comme mammifères.\nWhat an interesting book this is!\tQuel livre intéressant !\nWhat are the rules of engagement?\tQuelles sont les règles de combat ?\nWhat are you going to do tonight?\tQu'est-ce que tu fais ce soir ?\nWhat are you going to do tonight?\tQue fais-tu ce soir ?\nWhat are you going to do tonight?\tQu'est-ce que tu vas faire ce soir ?\nWhat are you going to do tonight?\tQu'allez-vous faire cette nuit ?\nWhat are you going to do tonight?\tQue vas-tu faire ce soir ?\nWhat are you going to do tonight?\tQu'allez-vous faire ce soir ?\nWhat are you going to do with it?\tQu'allez-vous en faire ?\nWhat are you going to do with it?\tQue vas-tu en faire ?\nWhat did Tom tell Mary not to do?\tQu'est-ce que Tom a dit à Marie de ne pas faire?\nWhat did you do on your vacation?\tQu'as-tu fait de tes vacances ?\nWhat did you do on your vacation?\tQu'avez-vous fait de vos vacances ?\nWhat did you do with those books?\tQu'as-tu fait de ces livres ?\nWhat did you eat for lunch today?\tQu’as-tu mangé au déjeuner aujourd'hui ?\nWhat did you eat for lunch today?\tQu’avez-vous mangé au déjeuner aujourd'hui ?\nWhat did you eat for lunch today?\tQu’as-tu mangé pour le déjeuner aujourd'hui ?\nWhat did you eat for lunch today?\tQu’as-tu mangé à déjeuner aujourd'hui ?\nWhat did you eat for lunch today?\tQu’avez-vous mangé à déjeuner aujourd'hui ?\nWhat did you eat for lunch today?\tQu’avez-vous mangé pour le déjeuner aujourd'hui ?\nWhat do you do in your free time?\tQue faites-vous de votre temps libre ?\nWhat do you do in your free time?\tQue fais-tu pendant ton temps libre ?\nWhat do you do in your free time?\tQue faites-vous pendant votre temps libre ?\nWhat do you say to playing cards?\tQue dites-vous de jouer aux cartes ?\nWhat do you say to taking a rest?\tEt si on faisait une pause ?\nWhat do you say we go for a swim?\tQue dis-tu d'aller nager ?\nWhat do you say we go for a swim?\tQue dites-vous d'aller nager ?\nWhat do you think I should write?\tQue penses-tu que je devrais écrire ?\nWhat do you think I should write?\tQue pensez-vous que je devrais écrire ?\nWhat do you think of these shoes?\tQue penses-tu de ces chaussures ?\nWhat do you think of these shoes?\tQue pensez-vous de ces chaussures ?\nWhat do you think of these shoes?\tQue penses-tu de ces chaussures?\nWhat does this hat remind you of?\tQue vous rappelle ce chapeau ?\nWhat exactly are you looking for?\tQue cherches-tu exactement ?\nWhat exactly are you looking for?\tQue cherchez-vous exactement ?\nWhat have you done with your car?\tQu'as-tu fait de ta voiture ?\nWhat have you done with your car?\tQu'avez-vous fait de votre voiture ?\nWhat he needs most is a good job.\tCe dont il a le plus besoin est un bon travail.\nWhat is the purpose of education?\tQuel est le but de l'éducation ?\nWhat is your idea of a good time?\tQuelle est votre conception d'un bon moment ?\nWhat is your idea of a good time?\tQuelle est ta conception d'un bon moment ?\nWhat is your registration number?\tQuel est votre numéro d'inscription ?\nWhat is your registration number?\tQuel est ton numéro d'inscription ?\nWhat kind of a sick joke is this?\tQu'est-ce que c'est que cette blague de malade ?\nWhat kind of camera does Tom own?\tQuel type d'appareil photo Tom possède ?\nWhat kind of car are you driving?\tQuel genre de voiture conduis-tu ?\nWhat kind of car are you driving?\tQuel genre de voiture conduisez-vous ?\nWhat kind of flowers do you like?\tQuelle sorte de fleurs aimes-tu ?\nWhat kind of flowers do you like?\tQuelle sorte de fleurs aimez-vous ?\nWhat kind of music does Tom like?\tQuelle sorte de musique aime Tom ?\nWhat kind of sick weirdo are you?\tQuelle sorte de dingue es-tu ?\nWhat kind of wine should I bring?\tQuelle sorte de vin devrais-je amener ?\nWhat language is spoken in Egypt?\tQuelle langue parle-t-on en Égypte ?\nWhat language were they speaking?\tQuelle langue parlaient-ils ?\nWhat language were they speaking?\tQuelle langue parlaient-elles ?\nWhat made you come here so early?\tQu'est-ce qui t'a fait venir ici si tôt ?\nWhat on earth are you doing here?\tQue faites-vous diable là ?\nWhat on earth are you doing here?\tQue fais-tu diable ici ?\nWhat part of Canada are you from?\tDe quelle partie du Canada es-tu ?\nWhat part of Canada are you from?\tDe quelle partie du Canada êtes-vous ?\nWhat season do you like the best?\tQuelle est votre saison préférée ?\nWhat season do you like the best?\tQuelle est ta saison préférée ?\nWhat season do you like the best?\tQuelle saison préférez-vous ?\nWhat season do you like the best?\tQuelle saison préfères-tu ?\nWhat should I do in the meantime?\tQue devrais-je faire en attendant ?\nWhat should I do to stop hiccups?\tQue devrais-je faire pour arrêter le hoquet ?\nWhat time does your plane depart?\tÀ quelle heure votre avion part-il ?\nWhat time does your plane depart?\tÀ quelle heure ton avion part-il ?\nWhat time will you go home today?\tÀ quelle heure rentreras-tu aujourd'hui ?\nWhat train you are going to take?\tQuel train allez-vous prendre ?\nWhat train you are going to take?\tQuel train vas-tu prendre ?\nWhat was his motive for doing it?\tQuelle était son motif de le faire ?\nWhat was his motive for doing it?\tQuelles étaient ses raisons de le faire ?\nWhat were you doing at that time?\tQu'étiez-vous donc en train de faire à cet instant là ?\nWhat were you doing at that time?\tQue faisiez-vous au juste à ce moment-là ?\nWhat were you doing at that time?\tQu'étiez-vous en train de faire à ce moment-là ?\nWhat were you doing at that time?\tQue faisiez-vous à cette époque ?\nWhat were you doing in that cave?\tQue faisiez-vous dans cette caverne ?\nWhat were you doing in that cave?\tQue faisais-tu dans cette grotte ?\nWhat would you like to be called?\tComment aimeriez-vous qu'on vous appelle ?\nWhat would you like to be called?\tComment aimerais-tu qu'on t'appelle ?\nWhat you decided to do is insane.\tCe que vous avez décidé de faire est insensé.\nWhat you're saying isn't logical.\tCe que vous dites n'est pas logique.\nWhat'll you be doing this summer?\tQu'allez-vous faire cet été ?\nWhat'll you be doing this summer?\tQue vas-tu faire cet été ?\nWhat's the air temperature today?\tQuelle est la température de l'air aujourd'hui ?\nWhat's the air temperature today?\tQuelle est la température ambiante aujourd'hui ?\nWhat's the forecast for tomorrow?\tQuelles sont les prévisions météorologiques pour demain ?\nWhat's the name of your pharmacy?\tQuel est le nom de ta pharmacie ?\nWhat's the purpose of your visit?\tQuel est le but de votre venue ?\nWhat's your favorite racing game?\tQuel est ton jeu de course préféré ?\nWhat's your favorite web browser?\tQuel est ton navigateur Internet préféré ?\nWhen I phone them nobody answers.\tQuand je leur téléphone, personne ne répond.\nWhen I was your age, I had a job.\tLorsque j'avais ton âge, j'avais un boulot.\nWhen I was your age, I had a job.\tLorsque j'avais votre âge, j'avais un boulot.\nWhen are you getting out of here?\tQuand te barres-tu d'ici ?\nWhen are you getting out of here?\tQuand vous barrez-vous d'ici ?\nWhen did she leave the classroom?\tQuand a-t-elle quitté la salle de classe ?\nWhen did the accident take place?\tQuand l'accident a-t-il eu lieu ?\nWhen did the accident take place?\tQuand l'accident est-il arrivé ?\nWhen did you change your address?\tQuand avez-vous changé d'adresse ?\nWhen did you change your address?\tQuand as-tu changé d'adresse ?\nWhen did you last see my brother?\tQuand avez-vous vu mon frère pour la dernière fois ?\nWhen did you last see my brother?\tQuand as-tu vu mon frère pour la dernière fois ?\nWhen did you start writing songs?\tQuand avez-vous commencé à écrire des chansons ?\nWhen did you start writing songs?\tQuand as-tu commencé à écrire des chansons ?\nWhen did you start writing songs?\tQuand vous êtes-vous mis à écrire des chansons ?\nWhen did you start writing songs?\tQuand vous êtes-vous mise à écrire des chansons ?\nWhen did you start writing songs?\tQuand vous êtes-vous mises à écrire des chansons ?\nWhen did you start writing songs?\tQuand t'es-tu mis à écrire des chansons ?\nWhen did you start writing songs?\tQuand t'es-tu mise à écrire des chansons ?\nWhen do you usually get off work?\tQuand quittes-tu habituellement ton travail ?\nWhen do you usually get off work?\tQuand quittez-vous habituellement votre travail ?\nWhen ice melts, it becomes water.\tQuand la glace fond, elle se transforme en eau.\nWhen it rains, she takes the bus.\tLorsqu'il pleut, elle prend le bus.\nWhen it rains, she takes the bus.\tElle prend toujours le bus lorsqu'il pleut.\nWhen was this university founded?\tQuand cette université fut-elle fondée ?\nWhen will you harvest your wheat?\tQuand allez-vous moissonner les blés ?\nWhen will your book be published?\tQuand votre livre sera-t-il publié ?\nWhen will your book be published?\tQuand ton livre sera-t-il publié ?\nWhen you come back, I'll be gone.\tQuand tu reviendras, je serai parti.\nWhenever they meet, they quarrel.\tIls se disputent chaque fois qu'ils se rencontrent.\nWhere are you having lunch today?\tOù déjeunez-vous aujourd'hui ?\nWhere can I get a telephone card?\tOù puis-je avoir une carte téléphonique ?\nWhere did you get your hair done?\tOù vous êtes-vous fait coiffer ?\nWhere did you get your hair done?\tOù t'es-tu fait coiffer ?\nWhere did you have the suit made?\tOù avez-vous fait faire le costume ?\nWhere did you have the suit made?\tOù as-tu fait faire le costume ?\nWhere do I have to change trains?\tOù dois-je changer de train ?\nWhere do we know each other from?\tD'où nous connaissons-nous ?\nWhere do you get your ideas from?\tOù piochez-vous vos idées ?\nWhere do you get your ideas from?\tOù prenez-vous vos idées ?\nWhere do you get your ideas from?\tOù pioches-tu tes idées ?\nWhere do you want to go tomorrow?\tOù veux-tu aller demain ?\nWhere do you want to go tomorrow?\tOù voulez-vous aller demain ?\nWhere does your friend come from?\tD'où vient ton ami ?\nWhere is the nearest supermarket?\tOù est le supermarché le plus proche ?\nWhere shall I hang this calendar?\tOù dois-je suspendre ce calendrier ?\nWhere were you when I needed you?\tOù étais-tu quand j'avais besoin de toi ?\nWhere were you when I needed you?\tOù étiez-vous quand j'avais besoin de vous ?\nWhere would you like to go first?\tOù aimerais-tu aller en premier ?\nWhere's the source of this river?\tOù se situe la source de ce fleuve ?\nWhich meat dishes do you propose?\tQuels plats de viande proposez-vous ?\nWhich newspaper would you prefer?\tQuel journal préféreriez-vous ?\nWhile driving, mind the potholes.\tEn voiture, faites attention aux nid-de-poules.\nWho are you and what do you want?\tQui es-tu et qu'est-ce que tu veux ?\nWho are you and what do you want?\tQui êtes-vous et que voulez-vous ?\nWho are you and why are you here?\tQui êtes-vous et pourquoi êtes-vous ici ?\nWho do you think the murderer is?\tQui, pensez-vous, est le meurtrier ?\nWho do you think will come first?\tQui, penses-tu, viendra le premier ?\nWho do you think will come first?\tQui, pensez-vous, viendra le premier ?\nWho does this suitcase belong to?\tÀ qui appartient cette valise ?\nWho else knows about your secret?\tQui d'autre connaît votre secret ?\nWho else knows about your secret?\tQui d'autre connaît ton secret ?\nWho is hiding behind the curtain?\tQui se cache derrière le rideau ?\nWho is the man playing the piano?\tQui est cet homme qui joue du piano ?\nWho is the woman dressed in pink?\tQui est la femme vêtue de rose ?\nWho is the woman dressed in pink?\tQui est la femme habillée de rose ?\nWho knows what's going to happen?\tQui sait ce qui va advenir ?\nWho knows what's going to happen?\tQui sait ce qui va arriver ?\nWho knows what's going to happen?\tQui sait ce qui va avoir lieu ?\nWho knows when Tom's birthday is?\tQui sait quand est l'anniversaire de Tom ?\nWho left this mess in the toilet?\tQui a laissé ce bordel dans les chiottes ?\nWho left this mess in the toilet?\tQui a laissé ce bazar dans les toilettes ?\nWho wants to go shopping with me?\tQui veut aller faire les courses avec moi ?\nWho will compensate for the loss?\tQui compensera la perte ?\nWho would you like to speak with?\tAvec qui aimeriez-vous vous entretenir ?\nWho would you like to speak with?\tAvec qui désireriez-vous vous entretenir ?\nWho would you like to speak with?\tAvec qui aimerais-tu t'entretenir ?\nWho would you like to speak with?\tAvec qui désirerais-tu t'entretenir ?\nWho would've thought it possible?\tQui aurait pensé que ce fut possible ?\nWho's the woman with the red hat?\tQui est la femme au chapeau rouge ?\nWhose house is across from yours?\tÀ qui est la maison en face de la vôtre ?\nWhose house is across from yours?\tÀ qui est la maison en face de la tienne ?\nWhy are people always so cynical?\tPourquoi les gens sont-ils toujours aussi cyniques ?\nWhy are you building a wall here?\tPourquoi y construis-tu un mur ?\nWhy are you so interested in him?\tPourquoi lui portez-vous autant d'intérêt ?\nWhy are you so interested in him?\tPourquoi lui portes-tu autant d'intérêt ?\nWhy can't I play with my friends?\tPourquoi ne puis-je pas jouer avec mes amis ?\nWhy can't I play with my friends?\tPourquoi ne puis-je pas jouer avec mes amies ?\nWhy did Tom want to talk to Mary?\tPourquoi Tom voulait-il parler à Mary ?\nWhy did she need to send for him?\tPourquoi avait-elle besoin de l'envoyer chercher ?\nWhy did you let me sleep so late?\tPourquoi m'as-tu laissé dormir si tard ?\nWhy did you let me sleep so late?\tPourquoi m'avez-vous laissé dormir si tard ?\nWhy did you name your dog Cookie?\tPourquoi as-tu appelé ton chien Cookie ?\nWhy did you name your dog Cookie?\tPourquoi avez-vous appelé votre chienne Cookie ?\nWhy did you use up all the money?\tPourquoi as-tu dépensé tout l'argent ?\nWhy didn't you apply for the job?\tPourquoi n'avez-vous pas postuler pour le poste ?\nWhy didn't you apply for the job?\tPourquoi n'as-tu pas postulé pour le travail ?\nWhy didn't you come to the party?\tPourquoi n'êtes-vous pas venu à la fête ?\nWhy didn't you come to the party?\tPourquoi n'êtes-vous pas venue à la fête ?\nWhy didn't you come to the party?\tPourquoi n'êtes-vous pas venus à la fête ?\nWhy didn't you come to the party?\tPourquoi n'êtes-vous pas venues à la fête ?\nWhy didn't you come to the party?\tPourquoi n'es-tu pas venu à la fête ?\nWhy didn't you come to the party?\tPourquoi n'es-tu pas venue à la fête ?\nWhy didn't you read the magazine?\tPourquoi n'avez-vous pas lu le magazine ?\nWhy didn't you read the magazine?\tPourquoi n'as-tu pas lu le magazine ?\nWhy do you keep giving him money?\tPourquoi ne cesses-tu de lui donner de l'argent ?\nWhy do you keep giving him money?\tPourquoi lui donnes-tu sans cesse de l'argent ?\nWhy do you keep giving him money?\tPourquoi ne cessez-vous de lui donner de l'argent ?\nWhy do you keep giving him money?\tPourquoi lui donnez-vous sans cesse de l'argent ?\nWhy do you keep giving him money?\tPourquoi continues-tu à lui donner de l'argent ?\nWhy do you want to join the navy?\tPourquoi veux-tu rejoindre la Marine ?\nWhy does everything happen to me?\tPourquoi est-ce à moi que tout arrive ?\nWhy don't you admit your mistake?\tPourquoi n'admets-tu pas ton erreur ?\nWhy don't you admit your mistake?\tPourquoi n'admettez-vous pas votre erreur ?\nWhy don't you ask your boyfriend?\tPourquoi ne demandes-tu pas à ton petit ami ?\nWhy don't you just buy a new one?\tPourquoi n'en achètes-tu pas simplement un nouveau ?\nWhy don't you just buy a new one?\tPourquoi n'en achètes-tu pas simplement une nouvelle ?\nWhy don't you just buy a new one?\tPourquoi n'en achetez-vous pas simplement un nouveau ?\nWhy don't you just buy a new one?\tPourquoi n'en achetez-vous pas simplement une nouvelle ?\nWhy don't you let me take a look?\tPourquoi ne me laissez-vous pas y jeter un œil ?\nWhy don't you let me take a look?\tPourquoi ne me laisses-tu pas y jeter un œil ?\nWhy don't you let us go with you?\tPourquoi ne nous laissez-vous pas y aller avec vous ?\nWhy don't you let us go with you?\tPourquoi ne nous laisses-tu pas y aller avec toi ?\nWhy don't you repaint your house?\tPourquoi ne repeignez-vous pas votre maison ?\nWhy don't you repaint your house?\tPourquoi ne repeins-tu pas ta maison ?\nWhy don't you take a closer look?\tPourquoi ne t'y penches-tu pas plus en détail ?\nWhy don't you take a closer look?\tPourquoi n'y regardes-tu pas de plus près ?\nWhy don't you take a closer look?\tPourquoi n'y regardez-vous pas de plus près ?\nWhy don't you take off your coat?\tPourquoi n'ôtez-vous pas votre manteau ?\nWhy don't you take off your coat?\tPourquoi n'ôtes-tu pas ton manteau ?\nWhy don't you take off your coat?\tPourquoi ne retirez-vous pas votre manteau ?\nWhy don't you take off your coat?\tPourquoi ne retires-tu pas ton manteau ?\nWhy don't you take your coat off?\tPourquoi n'ôtez-vous pas votre manteau ?\nWhy don't you take your coat off?\tPourquoi n'ôtes-tu pas ton manteau ?\nWhy don't you take your coat off?\tPourquoi ne retirez-vous pas votre manteau ?\nWhy don't you take your coat off?\tPourquoi ne retires-tu pas ton manteau ?\nWhy don't you tell me what to do?\tPourquoi ne me dites-vous pas quoi faire ?\nWhy don't you tell me what to do?\tPourquoi ne me dis-tu pas quoi faire ?\nWhy is life so full of suffering?\tPourquoi la vie est-elle si remplie de souffrance ?\nWhy isn't anybody doing anything?\tPourquoi personne ne fait-il rien ?\nWhy would anyone do such a thing?\tPourquoi quiconque ferait une telle chose ?\nWhy would anyone want to kill me?\tPourquoi quelqu'un voudrait me tuer ?\nWhy wouldn't you go out with him?\tPourquoi ne sortiriez-vous pas avec lui ?\nWhy wouldn't you go out with him?\tPourquoi ne sortirais-tu pas avec lui ?\nWill he be able to come tomorrow?\tEst-ce qu'il pourra venir demain ?\nWill he be able to come tomorrow?\tSera-t-il en mesure de venir demain ?\nWill she go to America next year?\tIra-t-elle en Amérique l'an prochain ?\nWill you go to the dance with me?\tViendras-tu au bal avec moi ?\nWill you go to the dance with me?\tVeux-tu venir au bal avec moi ?\nWill you go to the dance with me?\tViendrez-vous au bal avec moi ?\nWill you go to the dance with me?\tVoulez-vous venir au bal avec moi ?\nWill you have another cup of tea?\tVeux-tu encore une tasse de thé ?\nWill you lend me your dictionary?\tVeux-tu me prêter ton dictionnaire ?\nWill you lend me your dictionary?\tMe prêterez-vous votre dictionnaire ?\nWill you please wait on me, miss?\tPourriez-vous me servir, Mademoiselle, je vous prie ?\nWill you show me what you bought?\tMe montres-tu ce que tu as acheté ?\nWill you try to play the trumpet?\tVas-tu essayer de jouer de la trompette ?\nWinter has gone. Spring has come.\tL'hiver s'en est allé. Le printemps est venu.\nWithout your help, he would fail.\tSans ton aide, il aurait échoué.\nWomen don't drive as well as men.\tLes femmes ne conduisent pas aussi bien que les hommes.\nWomen today drink as much as men.\tLes femmes, de nos jours, boivent autant que les hommes.\nWorrying never does you any good.\tSe faire du souci ne fait jamais de bien.\nWould you be happier if I stayed?\tSerais-tu davantage contente si je restais ?\nWould you be happier if I stayed?\tSerais-tu davantage contenté si je restais ?\nWould you be happier if I stayed?\tSeriez-vous davantage contentée si je restais ?\nWould you be happier if I stayed?\tSeriez-vous davantage contenté si je restais ?\nWould you be happier if I stayed?\tSeriez-vous davantage contentés si je restais ?\nWould you be happier if I stayed?\tSeriez-vous davantage contentées si je restais ?\nWould you care for a little wine?\tUn peu de vin vous dirait-il ?\nWould you care for a little wine?\tUn peu de vin te dirait-il ?\nWould you ever go skinny dipping?\tIrais-tu jamais nager nu ?\nWould you ever go skinny dipping?\tIrais-tu jamais nager nue ?\nWould you like something smaller?\tAimeriez-vous quelque chose de plus petit ?\nWould you like something smaller?\tAimerais-tu quelque chose de plus petit ?\nWould you like to drink anything?\tVoulez-vous boire quoi que ce soit ?\nWould you like to drink anything?\tVeux-tu boire quoi que ce soit ?\nWould you like to see my new car?\tAimeriez-vous voir ma nouvelle voiture ?\nWould you like to see my new car?\tAimerais-tu voir ma nouvelle voiture ?\nWould you like to visit the city?\tAimeriez-vous visiter la ville ?\nWould you mind if I took a break?\tVerrais-tu un inconvénient à ce que je fasse une pause ?\nWould you mind if I took a break?\tVerriez-vous un inconvénient à ce que je fasse une pause ?\nWould you mind shutting the door?\tVeux-tu bien fermer la porte ?\nWould you mind shutting the door?\tCela vous dérangerait-il de fermer la porte ?\nWould you mind shutting the door?\tCela te dérangerait-il de fermer la porte ?\nWould you please open the window?\tVoudriez-vous ouvrir la fenêtre, je vous prie ?\nWould you please open the window?\tVoudrais-tu ouvrir la fenêtre, je te prie ?\nWould you please shut the window?\tPourriez-vous fermer la fenêtre, s'il vous plait ?\nWould you please take my picture?\tVoudrais-tu me prendre en photo, s'il te plait ?\nWould you please take my picture?\tVoudriez-vous me prendre en photo, je vous prie ?\nWould you please tell me the way?\tM'indiqueriez-vous le chemin, je vous prie ?\nWould you please tell me the way?\tM'indiquerais-tu le chemin, je te prie ?\nYesterday, I put honey in my tea.\tHier, j'ai mis du miel dans mon thé.\nYou all know what you have to do.\tVous savez tous ce que vous avez à faire.\nYou are entitled to your opinion.\tVous avez droit à votre opinion.\nYou are entitled to your opinion.\tTu as droit à ton opinion.\nYou are watching TV all the time.\tTu regardes tout le temps la télé.\nYou aren't allowed to park there.\tTu n'es pas autorisé à stationner là.\nYou aren't allowed to park there.\tVous n'êtes pas autorisés à stationner là.\nYou aren't supposed to swim here.\tTu n'es pas censé nager ici.\nYou aren't supposed to swim here.\tVous n'êtes pas censés nager ici.\nYou aren't supposed to swim here.\tVous n'êtes pas censé nager ici.\nYou aren't supposed to swim here.\tVous n'êtes pas censées nager ici.\nYou aren't supposed to swim here.\tVous n'êtes pas censée nager ici.\nYou aren't supposed to swim here.\tTu n'es pas censée nager ici.\nYou can call me anytime you like.\tTu peux m'appeler quand tu veux.\nYou can call me anytime you like.\tTu peux m'appeler quand ça te plait.\nYou can call me anytime you like.\tTu peux m'appeler quand ça te chante.\nYou can go to the station by bus.\tTu peux aller à la gare en bus.\nYou can go to the station by bus.\tTu peux te rendre à la gare en bus.\nYou can go to the station by bus.\tVous pouvez vous rendre à la gare en bus.\nYou can go to the station by bus.\tVous pouvez aller à la gare en bus.\nYou can go to the station by bus.\tVous pouvez vous rendre à la gare par le bus.\nYou can go to the station by bus.\tVous pouvez aller à la gare par le bus.\nYou can go to the station by bus.\tTu peux te rendre à la gare par le bus.\nYou can go to the station by bus.\tTu peux aller à la gare par le bus.\nYou can say whatever you want to.\tTu peux dire tout ce que tu veux.\nYou can say whatever you want to.\tTu peux dire ce qui te chante.\nYou can say whatever you want to.\tVous pouvez dire tout ce que vous voulez.\nYou can say whatever you want to.\tVous pouvez dire ce qui vous chante.\nYou can stay as long as you like.\tTu peux rester aussi longtemps que tu veux.\nYou can't believe a word he says.\tOn ne peut pas croire un mot de ce qu'il dit.\nYou can't believe a word he says.\tOn ne peut pas croire à un mot de ce qu'il dit.\nYou can't give up on your dreams.\tVous ne pouvez pas renoncer à vos rêves.\nYou can't give up on your dreams.\tTu ne peux pas abandonner tes rêves.\nYou can't tell anyone about this.\tOn ne peut parler de ça à quiconque.\nYou can't tell anyone about this.\tTu ne peux parler de ça à quiconque.\nYou can't tell anyone about this.\tTu ne peux raconter ça à personne.\nYou can't tell anyone about this.\tVous ne pouvez parler de ça à quiconque.\nYou can't tell anyone about this.\tVous ne pouvez en parler à quiconque.\nYou can't tell anyone about this.\tTu ne peux en parler à quiconque.\nYou can't trust anything he says.\tOn ne peut pas se fier à quoi que ce soit qu'il dise.\nYou can't trust anything he says.\tTu ne peux pas te fier à quoi que ce soit qu'il dise.\nYou can't trust anything he says.\tVous ne pouvez pas vous fier à quoi que ce soit qu'il dise.\nYou couldn't possibly understand.\tTu ne pourrais pas comprendre, de toutes manières.\nYou couldn't possibly understand.\tVous ne pourriez pas comprendre, de toutes manières.\nYou did it in front of the staff.\tTu l'as fait au vu et au su du personnel.\nYou did it in front of the staff.\tVous l'avez fait au vu et au su du personnel.\nYou didn't have to come so early.\tTu n'étais pas obligé de venir si tôt.\nYou don't even know who they are.\tTu ne sais même pas qui ils sont.\nYou don't even know who they are.\tVous ne savez même pas qui ils sont.\nYou don't even know who they are.\tTu ne sais même pas qui elles sont.\nYou don't even know who they are.\tVous ne savez même pas qui elles sont.\nYou don't even know why I'm here.\tTu ne sais même pas pourquoi je suis ici.\nYou don't even know why I'm here.\tVous ne savez même pas pourquoi je suis ici.\nYou don't have enough experience.\tTu n'as pas suffisamment d'expérience.\nYou don't have enough experience.\tVous n'avez pas suffisamment d'expérience.\nYou don't have enough experience.\tTu ne disposes pas de suffisamment d'expérience.\nYou don't know how lucky you are.\tTu te rends pas compte de la chance que t'as.\nYou don't know how lucky you are.\tTu ne sais pas à quel point tu peux être chanceux.\nYou don't know what you're doing.\tTu ne sais pas ce que tu fais.\nYou don't know what you're doing.\tVous ne savez pas ce que vous faites.\nYou don't like chocolate, do you?\tTu n'aimes pas le chocolat, n'est-ce pas ?\nYou don't look pleased to see me.\tTu n'as pas l'air content de me voir.\nYou don't look pleased to see me.\tVous n'avez pas l'air ravi de me voir.\nYou get out only what you put in.\tC'est l'auberge espagnole.\nYou get out only what you put in.\tOn n'en ressort que ce qu'on y a introduit.\nYou get out only what you put in.\tTu n'en ressors que ce que tu y as introduit.\nYou get out only what you put in.\tVous n'en ressortez que ce que vous y avez introduit.\nYou get out only what you put in.\tVous n'en ressortez que ce que vous y avez mis.\nYou get out only what you put in.\tTu n'en ressors que ce que tu y as mis.\nYou get out only what you put in.\tOn n'en ressort que ce qu'on y a mis.\nYou get out only what you put in.\tOn n'en ressort que ce qu'on y met.\nYou get out only what you put in.\tTu n'en ressors que ce que tu y mets.\nYou get out only what you put in.\tVous n'en ressortez que ce que vous y mettez.\nYou get out only what you put in.\tVous n'en retirez que ce que vous y avez mis.\nYou get out only what you put in.\tVous n'en retirez que ce que vous y mettez.\nYou get out only what you put in.\tTu n'en retires que ce que tu y mets.\nYou get out only what you put in.\tOn n'en retire que ce qu'on y met.\nYou get out only what you put in.\tOn n'en retire que ce qu'on y a mis.\nYou had better go to the dentist.\tTu ferais mieux d'aller chez le dentiste.\nYou had better put on a raincoat.\tTu ferais mieux de mettre un imperméable.\nYou had better put on a raincoat.\tVous feriez mieux de mettre un imperméable.\nYou have good reason to be angry.\tVous avez une bonne raison d'être en colère.\nYou have good reason to be angry.\tTu as une bonne raison d'être en colère.\nYou have only to watch what I do.\tIl faut juste que tu regardes ce que je fais.\nYou have only to watch what I do.\tTu n'as qu'à regarder ce que je fais.\nYou have only to watch what I do.\tVous n'avez qu'à regarder ce que je fais.\nYou have only to watch what I do.\tIl faut juste que vous regardiez ce que je fais.\nYou have the same camera as mine.\tTu as le même appareil photo que moi.\nYou have the same camera as mine.\tVous avez le même appareil photo que le mien.\nYou have to choose your own path.\tIl vous faut choisir votre propre voie.\nYou have to choose your own path.\tIl te faut choisir ta propre voie.\nYou have to see it to believe it.\tVous devez le voir pour le croire.\nYou have to see it to believe it.\tTu dois le voir pour le croire.\nYou have to tighten those screws.\tIl te faut resserrer ces vis.\nYou have to tighten those screws.\tIl vous faut resserrer ces vis.\nYou hit the center of the target.\tTu as touché au centre de la cible.\nYou just don't know how it feels.\tTu ignores complètement comme ça fait.\nYou know Tom better than anybody.\tTu connais Tom mieux que quiconque.\nYou look a lot like your brother.\tTu ressembles beaucoup à ton frère.\nYou look familiar. Do I know you?\tVous me semblez familier. Est-ce que je vous connais ?\nYou look familiar. Do I know you?\tVous me semblez familière. Est-ce que je vous connais ?\nYou look familiar. Do I know you?\tVous me semblez familiers. Est-ce que je vous connais ?\nYou look familiar. Do I know you?\tVous me semblez familières. Est-ce que je vous connais ?\nYou look familiar. Do I know you?\tTu me sembles familière. Est-ce que je te connais ?\nYou look familiar. Do I know you?\tTu me sembles familier. Est-ce que je te connais ?\nYou may choose any book you like.\tTu peux choisir n'importe quel livre que tu aimes.\nYou may stay here if you want to.\tVous pouvez rester ici si vous voulez.\nYou may stay here if you want to.\tTu peux rester ici si tu veux.\nYou may talk as much as you like.\tTu peux parler tant que tu veux.\nYou may talk as much as you like.\tVous pouvez parler tant que vous voulez.\nYou must always do what is right.\tOn doit toujours faire ce qui est juste.\nYou must be very busy these days.\tTu dois être très occupé ces jours-ci.\nYou must be very busy these days.\tTu dois être très occupée ces temps-ci.\nYou must be very busy these days.\tVous devez être très occupé ces jours-ci.\nYou must be very busy these days.\tVous devez être très occupés en ce moment.\nYou must be very busy these days.\tVous devez être très occupées ces jours-ci.\nYou must be very busy these days.\tVous devez être très occupée ces jours-ci.\nYou must get up a little earlier.\tTu dois te lever un peu plus tôt.\nYou must get up a little earlier.\tVous devez vous lever un peu plus tôt.\nYou must make your parents happy.\tTu dois rendre tes parents heureux.\nYou must not indulge in drinking.\tTu ne dois pas t'adonner à la boisson.\nYou must not jump to conclusions.\tTu ne dois pas sauter aux conclusions.\nYou must not jump to conclusions.\tVous ne devez pas sauter aux conclusions.\nYou must not smoke while working.\tTu ne dois pas fumer pendant que tu travailles.\nYou must not touch the paintings.\tVous ne devez pas toucher les tableaux.\nYou must not touch the paintings.\tVous ne devez pas toucher les toiles.\nYou must not touch the paintings.\tVous ne devez pas toucher les peintures.\nYou must not touch the paintings.\tTu ne dois pas toucher les peintures.\nYou must not touch the paintings.\tTu ne dois pas toucher les tableaux.\nYou must not touch the paintings.\tTu ne dois pas toucher les toiles.\nYou must not yield to temptation.\tTu ne dois pas céder à la tentation.\nYou must not yield to temptation.\tVous ne devez pas céder à la tentation.\nYou must respect senior citizens.\tOn doit respecter les personnes âgées.\nYou need to lower your standards.\tTu dois abaisser tes exigences.\nYou need to lower your standards.\tVous devez abaisser vos exigences.\nYou need to reboot your computer.\tVous avez besoin de redémarrer votre ordinateur.\nYou need to reboot your computer.\tTu as besoin de redémarrer ton ordinateur.\nYou need to redecorate your room.\tIl vous faut redécorer votre chambre.\nYou need to redecorate your room.\tIl te faut redécorer ta chambre.\nYou ought not to stay up so late.\tTu ne dois pas veiller si tard.\nYou ought not to stay up so late.\tVous ne devez pas veiller si tard.\nYou ought to love your neighbors.\tOn doit aimer ses voisins.\nYou really have an ear for music.\tTu as vraiment l'oreille musicale.\nYou really have an ear for music.\tVous avez vraiment l'oreille musicale.\nYou remember it better than I do.\tTu t'en souviens mieux que moi.\nYou should always tell the truth.\tTu devrais toujours dire la vérité.\nYou should always tell the truth.\tOn devrait toujours dire la vérité.\nYou should always tell the truth.\tVous devriez toujours dire la vérité.\nYou should fulfill your promises.\tTu devrais remplir tes promesses.\nYou should fulfill your promises.\tVous devriez remplir vos promesses.\nYou should get your eyes checked.\tTu devrais faire contrôler tes yeux.\nYou should get your eyes checked.\tVous devriez faire contrôler vos yeux.\nYou should make up your own mind.\tTu devrais te décider par toi-même !\nYou should make up your own mind.\tVous devriez vous décider par vous-même !\nYou should make up your own mind.\tVous devriez vous décider par vous-mêmes !\nYou should obey all traffic laws.\tVous devriez respecter toutes les règles de circulation.\nYou should rewrite this sentence.\tVous devriez récrire cette phrase.\nYou should take care of yourself.\tTu devrais prendre soin de toi.\nYou should take care of yourself.\tVous devriez prendre soin de vous.\nYou should take the number 5 bus.\tVous devez prendre le bus numéro 5.\nYou should've started without me.\tTu aurais dû commencer sans moi.\nYou should've started without me.\tVous auriez dû commencer sans moi.\nYou shouldn't have paid the bill.\tTu n'aurais pas dû payer l'addition.\nYou shouldn't have paid the bill.\tVous n'auriez pas dû régler la note.\nYou shouldn't have paid the bill.\tVous n'auriez pas dû payer la facture.\nYou sure have a beautiful garden!\tVous avez vraiment un beau jardin !\nYou talk as if you were the boss.\tTu parles comme si tu étais le chef.\nYou understand Korean, don't you?\tTu comprends le coréen, non ?\nYou were pretending, weren't you?\tTu faisais semblant, n'est-ce pas ?\nYou were pretending, weren't you?\tVous faisiez semblant, n'est-ce pas ?\nYou will know the truth some day.\tTu connaîtras la vérité un jour.\nYou will know the truth some day.\tVous connaîtrez la vérité, un jour.\nYou won't regret this. I promise.\tVous ne le regretterez pas, je vous le promets !\nYou won't regret this. I promise.\tTu ne le regretteras pas, je te le promets !\nYou work harder than anyone here.\tTu travailles plus dur que quiconque ici.\nYou work harder than anyone here.\tVous travaillez plus dur que quiconque ici.\nYou wouldn't have won without me.\tTu n'aurais pas gagné sans moi.\nYou wouldn't have won without me.\tVous ne l'auriez pas emporté sans moi.\nYou'd be better off staying home.\tTu ferais mieux de rester à la maison.\nYou'll have to ask somebody else.\tTu devras demander à quelqu'un d'autre.\nYou'll never want what they want.\tTu ne voudras jamais ce qu'ils veulent.\nYou'll never want what they want.\tTu ne voudras jamais ce qu'elles veulent.\nYou'll never want what they want.\tVous ne voudrez jamais ce qu'ils veulent.\nYou'll never want what they want.\tVous ne voudrez jamais ce qu'elles veulent.\nYou'll thank me for this someday.\tTu m'en remercieras un jour.\nYou'll thank me for this someday.\tVous m'en remercierez un jour.\nYou're acting like a small child.\tTu te comportes comme un petit enfant.\nYou're going to have to call Tom.\tTu vas devoir appeler Tom.\nYou're going to have to call Tom.\tVous allez devoir appeler Tom.\nYou're in better shape than I am.\tTu es en meilleure forme que moi.\nYou're lucky that you have a job.\tTu es chanceux d'avoir un travail.\nYou're lucky that you have a job.\tTu es chanceuse d'avoir un travail.\nYou're lucky that you have a job.\tVous êtes chanceux d'avoir un travail.\nYou're lucky that you have a job.\tVous êtes chanceuse d'avoir un travail.\nYou're making a terrible mistake.\tVous faites une grossière erreur.\nYou're making a terrible mistake.\tTu fais une grave erreur.\nYou're not being very supportive.\tTu ne me soutiens pas beaucoup.\nYou're not being very supportive.\tVous ne me soutenez pas beaucoup.\nYou're not even paying attention.\tTu ne prêtes même pas attention.\nYou're not even paying attention.\tVous ne prêtez même pas attention.\nYou're not going to believe this.\tTu ne vas pas le croire.\nYou're not going to believe this.\tVous n'allez pas le croire.\nYou're not interrupting anything.\tVous n'interrompez rien.\nYou're not interrupting anything.\tVous n'interrompez rien du tout.\nYou're not staying here, are you?\tVous ne restez pas ici, si ?\nYou're not staying here, are you?\tTu ne restes pas ici, si ?\nYou're old enough to know better.\tTu es assez vieux pour savoir mieux.\nYou're old enough to know better.\tTu devrais le savoir à ton âge.\nYou're out of touch with reality.\tTu n'es plus en prise avec la réalité.\nYou're out of touch with reality.\tVous n'êtes plus en prise avec la réalité.\nYou're putting words in my mouth.\tVous me mettez les mots dans la bouche.\nYou're the laziest person I know.\tTu es la personne la plus paresseuse que je connaisse.\nYou're the laziest person I know.\tVous êtes la personne la plus paresseuse que je connaisse.\nYou've always been so good to me.\tT'as toujours été si gentil avec moi.\nYou've forgotten me, haven't you?\tVous m'avez oublié, n'est-ce pas ?\nYou've forgotten me, haven't you?\tVous m'avez oubliée, n'est-ce pas ?\nYou've forgotten me, haven't you?\tTu m'as oublié, pas vrai ?\nYou've forgotten me, haven't you?\tTu m'as oubliée, pas vrai ?\nYour bicycle is better than mine.\tVotre vélo est meilleur que le mien.\nYour bicycle is better than mine.\tTon vélo est meilleur que le mien.\nYour composition is the best yet.\tTa dissertation est la meilleure jusqu'à présent.\nYour composition is the best yet.\tTa rédaction est la meilleure jusqu'à présent.\nYour composition is the best yet.\tVotre dissertation est la meilleure jusqu'à présent.\nYour composition is the best yet.\tVotre rédaction est la meilleure jusqu'à présent.\nYour garden needs some attention.\tVotre jardin a besoin d'un peu d'attention.\nYour idea sounds like a good one.\tTon idée semble être une bonne idée.\nYour plan seems better than mine.\tVotre plan semble meilleur que le mien.\nYour secret will be safe with me.\tTon secret sera bien gardé.\nYour sister is beautiful as ever.\tTa sœur est belle comme toujours.\nYour smile always makes me happy.\tTon sourire me rend toujours heureux.\nYour smile always makes me happy.\tVotre sourire me rend toujours heureux.\nYour suggestion seems reasonable.\tTa suggestion semble raisonnable.\n1980 was the year that I was born.\t1980 est l'année où je suis né.\n\"Anything else?\" \"No, that's all.\"\t\"Autre chose ?\" \"Non, c'est tout.\"\n\"Are you students?\" \"Yes, we are.\"\t«Êtes-vous étudiants ?» «Oui, en effet.»\n\"Are you tired?\" \"No, not at all.\"\t\"Es-tu fatigué ?\" \"Non, pas du tout.\"\nA DNA test showed he was innocent.\tUn test A.D.N. prouva son innocence.\nA ball is floating down the river.\tUn ballon descend la rivière en flottant.\nA ball is floating down the river.\tUne balle descend la rivière en flottant.\nA bear will not touch a dead body.\tUn ours ne touchera pas un cadavre.\nA closed fist can indicate stress.\tUn poing fermé peut être une indication de stress.\nA convict has escaped from prison.\tUn détenu s'est échappé de prison.\nA crazy thing just happened to me.\tIl vient de m’arriver un truc de fou.\nA crazy thing just happened to me.\tUn truc dingue vient de m'arriver.\nA customs declaration is required.\tUne déclaration en douanes est requise.\nA fallen tree obstructed the road.\tUn arbre tombé obstruait la rue.\nA fallen tree obstructed the road.\tUn arbre tombé obstruait la chaussée.\nA few days' rest will do you good.\tQuelques jours de repos vous feront du bien.\nA few days' rest will do you good.\tQuelques jours de repos te feront du bien.\nA few were drunk most of the time.\tQuelques-uns étaient soûls la plupart du temps.\nA fire broke out during the night.\tUn feu démarra durant la nuit.\nA laptop is better than a desktop.\tUn portable est mieux qu'un ordinateur de bureau.\nA mustache grows on the upper lip.\tUne moustache pousse sur la lèvre supérieure.\nA rack of lamb makes a great meal.\tUn travers d'agneau constitue un repas de choix.\nA rainbow is a natural phenomenon.\tUn arc-en-ciel est un phénomène naturel.\nA rose's petals are very delicate.\tLes pétales d'une rose sont très délicats.\nA sleeping child is like an angel.\tUn enfant endormi est comme un ange.\nA small company employs 50 people.\tUne petite entreprise emploie 50 personnes.\nA smell of lilies filled the room.\tUn parfum de lys emplit la chambre.\nA smell of lilies filled the room.\tUn parfum de lys emplit la pièce.\nA squirrel hid among the branches.\tUn écureuil se cachait parmi les branches.\nA stranger came into the building.\tUn étranger entra dans l'immeuble.\nA stranger spoke to me in the bus.\tUn étranger m'a parlé dans le bus.\nA stranger spoke to me on the bus.\tUn étranger m'a parlé dans le bus.\nA stranger spoke to me on the bus.\tUn inconnu m'a parlé dans le bus.\nA thief believes everybody steals.\tUn voleur croit que tout le monde vole.\nA traffic accident happened there.\tIl y a eu un accident de la route ici.\nA treatment will cure the disease.\tUn traitement permettra de guérir la maladie.\nA war may break out at any moment.\tUne guerre peut éclater à tout moment.\nAfter I watched TV, I went to bed.\tAprès avoir regardé la télévision, je suis allé me coucher.\nAfter dinner, I walk on the beach.\tAprès le dîner, je marche sur la plage.\nAfter the storm, the sea was calm.\tAprès la tempête, la mer était calme.\nAir is a mixture of several gases.\tL'air est un mélange de plusieurs gaz.\nAir is a mixture of various gases.\tL'air est un mélange de différents gaz.\nAll I found is a pair of scissors.\tTout ce que j'ai trouvé, c'est une paire de ciseaux.\nAll I want is for you to be happy.\tTout ce que je veux, c'est que tu sois heureuse.\nAll I want is for you to be happy.\tTout ce que je veux, c'est que tu sois heureux.\nAll I want is for you to be happy.\tTout ce que je veux, c'est que vous soyez heureuses.\nAll I want is for you to be happy.\tTout ce que je veux, c'est que vous soyez heureuse.\nAll I want is for you to be happy.\tTout ce que je veux, c'est que vous soyez heureux.\nAll of a sudden, it became cloudy.\tTout à coup, le temps devint nuageux.\nAll of a sudden, it began raining.\tTout à coup, il se mit à pleuvoir.\nAll of my children live in Boston.\tTous mes enfants vivent à Boston.\nAll sorts of people live in Tokyo.\tToutes sortes de gens vivent à Tokyo.\nAll the boys in class worked hard.\tTous les garçons de la classe ont travaillé dur.\nAll the boys in class worked hard.\tTous les garçons de la classe travaillèrent dur.\nAll the other boys laughed at him.\tTous les autres garçons riaient de lui.\nAll took part in the negotiations.\tTous prirent part aux négociations.\nAll you have to do is to meet her.\tTout ce que tu as à faire c'est de la rencontrer.\nAlmost all the leaves have fallen.\tPresque toutes les feuilles sont tombées.\nAnarchy can happen during wartime.\tL'anarchie peut survenir en temps de guerre.\nAny chance of us getting approved?\tY a-t-il la moindre chance que nous soyons approuvés ?\nAny chance of us getting approved?\tY a-t-il la moindre chance que nous soyons approuvées ?\nAnyone else want to give it a try?\tQuiconque d'autre veut-il le tenter ?\nApparently, Tom doesn't like Mary.\tApparemment, Tom n'aime pas Mary.\nApples were served as the dessert.\tOn servit des pommes comme dessert.\nAre eggs a good source of protein?\tLes œufs sont-ils une bonne source de protéines ?\nAre there many animals in the zoo?\tY a-t-il beaucoup d'animaux au zoo ?\nAre they able to read these words?\tSont-ils capables de lire ces mots ?\nAre we expecting any other guests?\tAttendons-nous d'autres invités ?\nAre we talking about the same Tom?\tParlons-nous du même Tom ?\nAre you Tom Jackson by any chance?\tEs-tu Tom Jackson par hasard ?\nAre you allergic to anything else?\tEst-ce que tu es allergique à quelque chose d'autre ?\nAre you allergic to anything else?\tEst-ce que vous êtes allergiques à quelque chose d'autre ?\nAre you feeling under the weather?\tTe sens-tu indisposé ?\nAre you feeling under the weather?\tTe sens-tu indisposée ?\nAre you feeling under the weather?\tVous sentez-vous indisposé ?\nAre you feeling under the weather?\tVous sentez-vous indisposée ?\nAre you going to buy a dictionary?\tVas-tu acheter un dictionnaire ?\nAre you going to the tennis court?\tTu vas au cours de tennis ?\nAre you going to work until 10:00?\tVas-tu travailler jusqu'à dix heures ?\nAre you going to work until 10:00?\tVas-tu travailler jusqu'à vingt-deux heures ?\nAre you going to work until 10:00?\tAllez-vous travailler jusqu'à dix heures ?\nAre you going to work until 10:00?\tAllez-vous travailler jusqu'à vingt-deux heures ?\nAre you married or are you single?\tÊtes-vous marié ou célibataire ?\nAre you pleased with your new job?\tVotre nouveau travail vous plaît-il ?\nAre you responsible for this mess?\tEs-tu responsable de cette pagaille ?\nAre you responsible for this mess?\tÊtes-vous responsable de cette pagaille ?\nAre you satisfied or dissatisfied?\tEs-tu satisfait ou mécontent ?\nAre you still playing the bassoon?\tJouez-vous encore du basson ?\nAre you still playing the bassoon?\tJouez-vous toujours du basson ?\nAre you still playing the bassoon?\tJoues-tu encore du basson ?\nAre you still playing the bassoon?\tJoues-tu toujours du basson ?\nAre you suggesting another theory?\tSuggérez-vous une autre théorie ?\nAre you talking to yourself again?\tTe parles-tu encore à toi-même ?\nAre you talking to yourself again?\tConverses-tu encore avec toi-même ?\nAre you talking to yourself again?\tVous parlez-vous encore à vous-même ?\nAre you talking to yourself again?\tConversez-vous encore avec vous-même ?\nAren't you contradicting yourself?\tTu n'es pas en train de te contredire ?\nAren't you contradicting yourself?\tN'êtes-vous pas en train de vous contredire ?\nAren't you going to say something?\tNe vas-tu pas dire quelque chose ?\nAren't you going to say something?\tN'allez-vous pas dire quelque chose ?\nArguing never got anyone anywhere.\tSe disputer n'a jamais conduit qui que ce soit où que ce soit.\nAs far as I know, he's a nice guy.\tPour autant que je sache, c'est un chic type.\nAs long as you're here, I'll stay.\tTant que tu seras là, je resterai.\nAs soon as he saw me, he ran away.\tDès qu'il m'a vu, il s'est enfui.\nAs was expected, he won the prize.\tComme on s'y attendait, il a gagné le prix.\nAt first, he sounded very sincere.\tAu début, il semblait très sincère.\nAt first, they didn't believe him.\tAu début, ils ne le crurent pas.\nAt last, he realized his mistakes.\tFinalement, il s'est rendu compte de ses erreurs.\nAt last, the gem was in his hands.\tEnfin, la pierre précieuse était dans ses mains.\nAt least we're still in one piece.\tAu moins, on est toujours en un seul morceau.\nAt this point, I don't need money.\tPour l'instant, je n'ai pas besoin d'argent.\nAustralia is abundant in minerals.\tLes minéraux sont abondants en Australie.\nBe careful. The floor is slippery.\tFais attention. Le sol est glissant.\nBe careful. The floor is slippery.\tFaites attention. Le sol est glissant.\nBears hibernate during the winter.\tLes ours hibernent durant l'hiver.\nBehave yourself during my absence.\tTenez-vous bien pendant mon absence.\nBigger doesn't always mean better.\tPlus grand ne veut pas toujours dire meilleur.\nBlood circulates through the body.\tLe sang circule dans le corps.\nBring me a glass of water, please.\tApportez-moi un verre d'eau, s'il vous plaît.\nBring me a sheet of paper, please.\tApporte-moi une feuille de papier, s'il te plaît.\nBrush your teeth after every meal.\tBrosse-toi les dents après chaque repas.\nBrush your teeth after every meal.\tBrosse-toi les dents à l'issue de chaque repas.\nBut I don't think it's at all odd.\tMais je ne pense pas que ce soit du tout curieux.\nBy then, however, it was too late.\tÀ ce moment-là, cependant, c'était trop tard.\nCan I ask you a personal question?\tPuis-je vous poser une question personnelle ?\nCan I ask you a personal question?\tPuis-je te poser une question personnelle ?\nCan I be of any assistance to you?\tEn quoi puis-je vous aider ?\nCan I get an advance on my salary?\tPourrais-je avoir une avance sur mon salaire ?\nCan I make a reservation for golf?\tPuis-je faire une réservation pour un golf ?\nCan I reserve a flight to Chicago?\tEst-ce que je peux réserver un vol pour Chicago ?\nCan I ride this horse for a while?\tPuis-je monter ce cheval un moment ?\nCan somebody open the door please?\tEst-ce que quelqu'un peut ouvrir la porte, s'il vous plaît ?\nCan you give me your phone number?\tPouvez-vous me donner votre numéro de téléphone?\nCan you go to the office by train?\tPeux-tu aller au bureau en train ?\nCan you guys tell us where we are?\tEh les mecs, pouvez-vous nous dire où nous nous trouvons ?\nCan you help me wash these dishes?\tPouvez-vous m'aider à faire la vaisselle ?\nCan you help me wash these dishes?\tPeux-tu m'aider à laver cette vaisselle ?\nCan you help me wash these dishes?\tTu peux m'aider à laver ces plats ?\nCan you meet me in the auditorium?\tPouvez-vous me rejoindre dans la salle ?\nCan you meet me in the auditorium?\tPeux-tu me retrouver dans l'auditorium ?\nCan you narrow that down a little?\tTu peux être un peu plus précis?\nCan you pick me up at the station?\tPeux-tu me prendre à la gare ?\nCan you pick me up at the station?\tPouvez-vous me prendre à la gare ?\nCan you please look the other way?\tPeux-tu détourner le regard, je te prie ?\nCan you please look the other way?\tPouvez-vous détourner le regard, je vous prie ?\nCan you please look the other way?\tPeux-tu regarder de l'autre côté, s'il te plaît ?\nCan you please look the other way?\tPouvez-vous regarder de l'autre côté, je vous prie ?\nCan you really predict the future?\tPeux-tu vraiment prédire l'avenir?\nCan you see where I'm coming from?\tTu vois où je veux en venir ?\nCan you supply me with all I need?\tEst-ce que tu peux me fournir tout ce dont j'ai besoin ?\nCan you supply me with all I need?\tEst-ce que vous pouvez me fournir tout ce dont j'ai besoin ?\nCan you supply me with all I need?\tPeux-tu me fournir tout ce dont j'ai besoin ?\nCan you supply me with all I need?\tPouvez-vous me fournir tout ce dont j'ai besoin ?\nCan you take the lid off this box?\tPeux-tu retirer le couvercle de cette boîte ?\nCan you take the lid off this box?\tPouvez-vous retirer le couvercle de cette boîte ?\nCan you tell me what is happening?\tPourriez-vous me dire ce qui se passe ?\nCan you tell what's wrong with it?\tPouvez-vous dire ce qui ne va pas ?\nCan you tell what's wrong with it?\tPeux-tu dire ce qui ne va pas ?\nCan you write a letter in English?\tArrives-tu à écrire une lettre en anglais ?\nCan't you do something to help me?\tNe peux-tu pas faire quelque chose pour m'aider ?\nCan't you do something to help me?\tNe pouvez-vous pas faire quelque chose pour m'aider ?\nCareless driving causes accidents.\tUne conduite insouciante est cause d'accidents.\nCareless driving causes accidents.\tConduire nonchalamment provoque des accidents.\nCareless driving causes accidents.\tUne conduite imprudente génère des accidents.\nCarrots are good for the eyesight.\tLes carottes sont bonnes pour la vue.\nCentral Park is near where I work.\tCentral Park est proche de mon lieu de travail.\nChildren like watching television.\tLes enfants aiment regarder la télévision.\nChoose either of the two T-shirts.\tChoisissez l'un de ces deux tee-shirts.\nChristmas is only a few days away.\tNoël n'est qu'à quelques jours d'ici.\nClocks used to be wound every day.\tL'horloge devait être remontée chaque jour.\nClose your eyes for three minutes.\tFerme tes yeux trois minutes.\nClose your eyes, and count to ten.\tFerme les yeux, et compte jusqu'à 10.\nCome and see me any time you like.\tPasse me voir quand tu veux.\nCome and see me whenever you like.\tVenez me voir quand vous le désirez.\nCompare your translation with his.\tCompare ta traduction à la sienne.\nCompare your translation with his.\tComparez votre traduction à la sienne.\nComplaining won't change anything.\tSe plaindre ne changera rien.\nCopper and silver are both metals.\tLe cuivre et l'argent sont deux métaux.\nCorrect my spelling if it's wrong.\tCorrigez mon orthographe si elle est incorrecte.\nCorrect my spelling if it's wrong.\tCorrige mon orthographe si elle est inexacte.\nCould I get one more beer, please?\tPourrais-je avoir une bière supplémentaire, s'il vous plait ?\nCould I get one more beer, please?\tPourrais-je avoir une bière supplémentaire, s'il te plait ?\nCould I get one more beer, please?\tPourrais-je avoir une bière supplémentaire, je vous prie ?\nCould I see your driver's license?\tPourrais-je voir votre permis de conduire ?\nCould you call me tonight, please?\tEst-ce que tu peux m'appeler ce soir s'il te plaît ?\nCould you check the tire pressure?\tPourriez-vous vérifier la pression des pneus ?\nCould you check the tire pressure?\tPourrais-tu vérifier la pression des pneumatiques ?\nCould you get me some cough drops?\tPourrais-tu aller me chercher du sirop pour la toux ?\nCould you get me some cough drops?\tPourriez-vous aller me chercher du sirop pour la toux ?\nCould you help me wash the dishes?\tPeux-tu m'aider à laver la vaisselle ?\nCould you please repeat it slowly?\tPourriez-vous le répéter lentement, je vous prie ?\nCould you please stop saying that?\tPourrais-tu, je te prie, cesser de dire cela ?\nCould you please stop saying that?\tPourriez-vous, je vous prie, cesser de dire cela ?\nCould you send it to this address?\tPouvez-vous l'envoyer à cette adresse ?\nCould you spell your name, please?\tPouvez-vous épeler votre nom, je vous prie.\nCould you tell me what's going on?\tPourrais-tu me dire ce qu'il se passe ?\nCould you tell me what's going on?\tPourriez-vous me dire ce qui est en train de se passer ?\nCould you tell me your name again?\tPourriez-vous me redire votre nom ?\nCould you tell me your name again?\tPourriez-vous me dire à nouveau votre nom ?\nCould you tell me your name again?\tPourriez-vous me dire votre nom, à nouveau ?\nCould you tell me your name again?\tPourriez-vous, de nouveau, me dire votre nom ?\nCould you tell me your name again?\tPourrais-tu me répéter ton nom ?\nCould you translate this sentence?\tPourriez-vous traduire cette phrase ?\nCould you type this letter for me?\tPourriez-vous taper cette lettre pour moi ?\nCould you wrap them up separately?\tPeux-tu les emballer séparément ?\nCrossing that desert is dangerous.\tTraverser ce désert est dangereux.\nCut the chit-chat and get to work.\tCesse les jacasseries et mets-toi au travail.\nDad extended his legs on the sofa.\tPapa allongea ses jambes sur le sofa.\nDeath is an integral part of life.\tLa mort est une part intégrante de la vie.\nDid I hear you talking to someone?\tT'ai-je entendu parler à quelqu'un ?\nDid I hear you talking to someone?\tVous ai-je entendu parler à quelqu'un ?\nDid I hear you talking to someone?\tT'ai-je entendue parler à quelqu'un ?\nDid I hear you talking to someone?\tVous ai-je entendue parler à quelqu'un ?\nDid I hear you talking to someone?\tVous ai-je entendus parler à quelqu'un ?\nDid I hear you talking to someone?\tVous ai-je entendues parler à quelqu'un ?\nDid I miss something this morning?\tAi-je manqué quelque chose, ce matin ?\nDid anybody call on you yesterday?\tPersonne n'est venu prendre de tes nouvelles hier ?\nDid you actually see the accident?\tAvez-vous réellement vu l'accident ?\nDid you drive her home last night?\tL'as-tu reconduite chez elle la nuit dernière ?\nDid you enjoy the party yesterday?\tT'es-tu amusé hier à la fête ?\nDid you enjoy the party yesterday?\tT'es-tu amusée hier à la fête ?\nDid you enjoy the party yesterday?\tVous êtes-vous amusé hier à la fête ?\nDid you enjoy the party yesterday?\tVous êtes-vous amusée hier à la fête ?\nDid you enjoy the party yesterday?\tVous êtes-vous amusés hier à la fête ?\nDid you enjoy the party yesterday?\tVous êtes-vous amusées hier à la fête ?\nDid you enjoy the party yesterday?\tAs-tu aimé la soirée d'hier ?\nDid you feed the dog this morning?\tAs-tu nourri le chien ce matin ?\nDid you have fun over the weekend?\tTu t'es bien amusé ce weekend ?\nDid you know this was coming down?\tSavais-tu que ça allait nous tomber dessus ?\nDid you know this was coming down?\tSaviez-vous que ça allait nous tomber dessus ?\nDid you know this was coming down?\tSavais-tu que ça allait te tomber dessus ?\nDid you know this was coming down?\tSaviez-vous que ça allait vous tomber dessus ?\nDid you see the eclipse yesterday?\tAs-tu vu l'éclipse, hier ?\nDid you see the eclipse yesterday?\tAvez-vous vu l'éclipse, hier ?\nDid you think I wouldn't tell Tom?\tPensais-tu que je ne le dirais pas à Tom ?\nDid you think I wouldn't tell Tom?\tPensiez-vous que je n'en informerais pas Tom ?\nDid you visit the Tower of London?\tAs-tu visité la Tour de Londres ?\nDid you vote in the last election?\tAs-tu voté à la dernière élection ?\nDid you vote in the last election?\tAvez-vous voté à la dernière élection ?\nDo I have to stay in the hospital?\tDois-je rester à l'hôpital ?\nDo I look like a policeman to you?\tAi-je l'air d'un policier, selon vous ?\nDo I look like a policeman to you?\tAi-je l'air d'un policier, selon toi ?\nDo not oversleep tomorrow morning.\tNe dors pas trop demain matin.\nDo you believe in guardian angels?\tCrois-tu aux anges gardiens ?\nDo you believe in guardian angels?\tCroyez-vous aux anges gardiens ?\nDo you cook by gas or electricity?\tCuisinez-vous au gaz ou à l'électricité ?\nDo you ever think about that girl?\tPenses-tu jamais à cette fille ?\nDo you ever think about that girl?\tPensez-vous jamais à cette fille ?\nDo you feel like eating something?\tAvez-vous envie de manger quelque chose ?\nDo you feel like eating something?\tAs-tu envie de manger quelque chose ?\nDo you have a crush on my brother?\tAs-tu le béguin pour mon frère ?\nDo you have a crush on my brother?\tAvez-vous le béguin pour mon frère ?\nDo you have a crush on my brother?\tT'es-tu entichée de mon frère ?\nDo you have a crush on my brother?\tVous êtes-vous entichée de mon frère ?\nDo you have a crush on my brother?\tT'es-tu amourachée de mon frère ?\nDo you have a crush on my brother?\tVous êtes-vous amourachée de mon frère ?\nDo you have a crush on my brother?\tEs-tu amoureuse de mon frère ?\nDo you have a non-smoking section?\tAvez-vous un coin non-fumeur ?\nDo you have an English dictionary?\tAs-tu un dictionnaire d'anglais ?\nDo you have any French newspapers?\tAvez-vous de quelconques journaux français ?\nDo you have any French newspapers?\tAs-tu de quelconques journaux français ?\nDo you have any further questions?\tAvez-vous d'autres questions ?\nDo you have any idea who did this?\tAvez-vous la moindre idée de qui l'a fait ?\nDo you have any idea who did this?\tAs-tu la moindre idée de qui l'a fait ?\nDo you have any plans for tonight?\tAs-tu quelque chose de prévu pour ce soir ?\nDo you have any plans for tonight?\tAvez-vous des projets pour la soirée ?\nDo you have any plans for tonight?\tAs-tu des plans pour ce soir ?\nDo you have any travelers' checks?\tAs-tu des chèques de voyage ?\nDo you have any travelers' checks?\tAvez-vous des chèques de voyage ?\nDo you have any trouble with that?\tAs-tu un problème avec ça ?\nDo you have anything hot to drink?\tQu'est-ce que vous avez de fort à boire ?\nDo you have anything hot to drink?\tComme boisson, qu'est-ce que vous avez de fort ?\nDo you have renaissance paintings?\tAuriez-vous des peintures de la Renaissance ?\nDo you have to do this very often?\tDois-tu faire ça très souvent  ?\nDo you have to do this very often?\tDevez-vous faire ceci très souvent ?\nDo you have to go there every day?\tDevez-vous y aller tous les jours ?\nDo you have your driver's license?\tAs-tu ton permis de conduire ?\nDo you have your driver's license?\tAvez-vous votre permis de conduire ?\nDo you know how dangerous that is?\tSavez-vous combien cela est dangereux ?\nDo you know how dangerous that is?\tSais-tu combien cela est dangereux ?\nDo you know how to cook rice well?\tSavez-vous bien cuisiner le riz ?\nDo you know how to tie your shoes?\tSais-tu comment attacher tes chaussures?\nDo you know how to use a computer?\tSavez-vous utiliser un ordinateur ?\nDo you know that boy who's crying?\tConnais-tu ce garçon qui pleure ?\nDo you know that boy who's crying?\tConnaissez-vous ce garçon qui pleure ?\nDo you know what's going on there?\tSavez-vous ce qu'il se passe là-bas?\nDo you know when they will arrive?\tSais-tu quand ils arriveront ?\nDo you know when they will arrive?\tSais-tu quand elles arriveront ?\nDo you know where the bathroom is?\tSais-tu où sont les toilettes ?\nDo you know where the bathroom is?\tSavez-vous où sont les toilettes ?\nDo you like looking in the mirror?\tAimes-tu regarder dans le miroir ?\nDo you like the new school better?\tAimes-tu davantage la nouvelle école ?\nDo you like the new school better?\tAimez-vous davantage la nouvelle école ?\nDo you mind if I turn down the TV?\tCela te dérangerait-il que je baisse le son de la télévision ?\nDo you mind if I turn down the TV?\tVois-tu un inconvénient à ce que j'éteigne la télé ?\nDo you mind if I turn down the TV?\tVoyez-vous un inconvénient à ce que j'éteigne le téléviseur ?\nDo you often listen to audiobooks?\tÉcoutes-tu souvent des livres enregistrés ?\nDo you often listen to audiobooks?\tÉcoutes-tu souvent des audiolivres ?\nDo you really want Tom to do that?\tVoulez-vous vraiment que Tom fasse ça ?\nDo you really want Tom to do that?\tVeux-tu vraiment que Tom fasse ça ?\nDo you study any foreign language?\tTu étudies quelque langue étrangère ?\nDo you study any foreign language?\tVous étudiez quelque langue étrangère ?\nDo you subscribe to any magazines?\tÊtes-vous abonné à de quelconques magazines ?\nDo you subscribe to any magazines?\tEs-tu abonné à de quelconques magazines ?\nDo you subscribe to any magazines?\tÊtes-vous abonnée à de quelconques magazines ?\nDo you subscribe to any magazines?\tEs-tu abonnée à de quelconques magazines ?\nDo you think English is difficult?\tPenses-tu que l'anglais soit difficile ?\nDo you think English is difficult?\tPensez-vous que l'anglais soit difficile ?\nDo you think Tom wants to eat now?\tPenses-tu que Tom a envie de manger, maintenant ?\nDo you think he will like my gift?\tPenses-tu qu'il appréciera mon cadeau ?\nDo you think he will like my gift?\tPensez-vous qu'il appréciera mon cadeau ?\nDo you think that dress suits her?\tPensez-vous que cette robe lui aille ?\nDo you think that dress suits her?\tPenses-tu que cette robe lui aille ?\nDo you think there's a connection?\tPensez-vous qu'il y ait une connexion ?\nDo you think there's a connection?\tPenses-tu qu'il y ait une connexion ?\nDo you understand what I'm saying?\tComprends-tu ce que je suis en train de dire ?\nDo you understand what's going on?\tComprends-tu ce qui arrive ?\nDo you understand what's going on?\tComprends-tu ce qui se passe ?\nDo you understand what's going on?\tComprends-tu ce qui se produit ?\nDo you understand what's going on?\tComprends-tu ce qui est en train d'arriver ?\nDo you understand what's going on?\tComprends-tu ce qui est en train de se passer ?\nDo you understand what's going on?\tComprends-tu ce qui est en train de se produire ?\nDo you understand what's going on?\tComprenez-vous ce qui est en train de se passer ?\nDo you understand what's going on?\tComprenez-vous ce qui est en train de se produire ?\nDo you understand what's going on?\tComprenez-vous ce qui est en train d'arriver ?\nDo you want me to call the police?\tVoulez-vous que j'appelle la police ?\nDo you want me to call the police?\tVeux-tu que j'appelle la police ?\nDo you want me to call the police?\tVoulez-vous que je prévienne la police ?\nDo you want me to call the police?\tVeux-tu que je prévienne la police ?\nDo you want to cancel the meeting?\tVeux-tu annuler la réunion ?\nDo you want to cancel the meeting?\tVoulez-vous annuler la réunion ?\nDo you want to get us both killed?\tVeux-tu que nous nous fassions tuer tous les deux ?\nDo you want to get us both killed?\tVoulez-vous que nous nous fassions tuer tous les deux ?\nDo you want to get us both killed?\tVeux-tu que nous nous fassions tuer toutes les deux ?\nDo you want to get us both killed?\tVoulez-vous que nous nous fassions tuer toutes les deux ?\nDo you want to go fishing with me?\tVeux-tu aller à la pêche avec moi ?\nDo you want to go to the aquarium?\tTu veux aller à l'aquarium ?\nDo you want to go to the aquarium?\tVoulez-vous aller à l'aquarium ?\nDo you want to leave it like that?\tVoulez-vous le laisser ainsi ?\nDo you want to leave it like that?\tVeux-tu le laisser ainsi ?\nDo you want to play hide and seek?\tTu veux jouer à cache-cache ?\nDo you want to play hide and seek?\tVous voulez jouer à cache-cache ?\nDo you want to read this magazine?\tVoulez-vous lire ce magazine ?\nDo you want to sleep on the couch?\tVoulez-vous dormir sur le canapé?\nDo you want to sleep on the couch?\tVeux-tu dormir sur le canapé?\nDo you want to watch this program?\tVoulez-vous regarder cette émission ?\nDoes Tom want me to say something?\tTom veut-il que je dise quelque chose ?\nDoes anyone else use your account?\tQuiconque d'autre utilise-t-il votre compte ?\nDoes she still have a temperature?\tA-t-elle encore de la fièvre ?\nDoes that price include breakfast?\tEst-ce que le prix inclut le petit déjeuner ?\nDoes this actually make you happy?\tCela vous rend-il vraiment heureux ?\nDoes this actually make you happy?\tCela te rend-il vraiment heureux ?\nDoes this actually make you happy?\tCela vous rend-il vraiment heureuses ?\nDoes this actually make you happy?\tCela vous rend-il vraiment heureuse ?\nDoes this actually make you happy?\tCela te rend-il vraiment heureuse ?\nDoes your girlfriend like flowers?\tEst-ce que ta petite amie aime les fleurs ?\nDoesn't that mean anything to you?\tCela ne signifie-t-il rien pour toi ?\nDoesn't that mean anything to you?\tCela ne signifie-t-il rien pour vous ?\nDogs aren't allowed in this hotel.\tLes chiens ne sont pas autorisés dans cet hôtel.\nDon't ask me such a hard question.\tNe me pose pas une question si difficile.\nDon't be afraid. I won't hurt you.\tN'aie pas peur. Je ne te ferai pas de mal.\nDon't be afraid. I won't hurt you.\tN'ayez pas peur. Je ne vous ferai pas de mal.\nDon't be fooled by her appearance.\tNe te laisse pas tromper par son apparence.\nDon't be fooled by her appearance.\tNe vous laissez pas tromper par son apparence.\nDon't be fooled by his good looks.\tNe te laisse pas avoir par sa belle apparence.\nDon't be fooled by his good looks.\tNe vous laissez pas avoir par sa belle apparence.\nDon't believe everything you hear.\tNe crois pas tout ce que tu entends.\nDon't believe everything you hear.\tNe croyez pas tout ce que vous entendez.\nDon't believe everything you read.\tNe crois pas tout ce que tu lis.\nDon't bother me with such trifles.\tNe m'ennuyez pas avec de pareils détails.\nDon't come near me. I have a cold.\tNe m'approchez pas. J'ai attrapé un rhume.\nDon't come to me with any excuses.\tNe viens pas à moi avec de quelconques excuses !\nDon't come to me with any excuses.\tNe venez pas à moi avec de quelconques excuses !\nDon't do anything like that again.\tNe faites plus jamais de choses comme celle-là.\nDon't dwell on your past failures.\tNe ressasse pas tes erreurs passées.\nDon't dwell on your past mistakes!\tNe ressasse pas tes erreurs passées !\nDon't dwell on your past mistakes!\tNe ressassez pas vos erreurs passées !\nDon't forget to answer his letter.\tN'oublie pas de répondre à sa lettre !\nDon't forget to call your parents.\tN'oublie pas d'appeler tes parents !\nDon't forget to call your parents.\tN'oubliez pas d'appeler vos parents !\nDon't forget to remind me of that.\tN'oublie pas de me le rappeler.\nDon't forget what I just told you.\tN'oublie pas ce que je viens de te dire.\nDon't forget what I just told you.\tN'oubliez pas ce que je viens de vous dire.\nDon't go to such a place at night.\tNe va pas dans un endroit pareil en pleine nuit.\nDon't let this get out of control.\tPerds pas le contrôle.\nDon't make such careless mistakes.\tNe faites pas une telle erreur de négligence.\nDon't make the same mistake I did.\tNe commettez pas la même erreur que moi !\nDon't make the same mistake I did.\tNe commets pas la même erreur que moi !\nDon't make the same mistake I did.\tNe commettez pas la même erreur que la mienne !\nDon't make the same mistake I did.\tNe commets pas la même erreur que la mienne !\nDon't make the same mistake again.\tNe fais pas encore la même erreur.\nDon't make the same mistake again.\tNe commets pas de nouveau la même erreur.\nDon't make the same mistake again.\tNe refais pas la même erreur.\nDon't make the same mistake twice.\tNe commets pas deux fois la même erreur !\nDon't make the same mistake twice.\tNe commettez pas deux fois la même erreur !\nDon't mention our plan to anybody.\tNe parle de notre plan à personne.\nDon't sleep with the windows open.\tNe dors pas les fenêtres ouvertes.\nDon't smoke while you are on duty.\tNe fume pas pendant le travail.\nDon't tell anyone we've done this.\tNe dis à personne que nous avons fait cela.\nDon't tell anyone we've done this.\tNe dites à personne que nous avons fait cela.\nDon't tell me what I already know.\tNe me dites pas ce que je sais déjà !\nDon't tell me what I already know.\tNe me dis pas ce que je sais déjà !\nDon't tell me what I already know.\tNe me racontez pas ce que je sais déjà !\nDon't tell me what I already know.\tNe me raconte pas ce que je sais déjà !\nDon't think about stuff like that.\tNe pense pas à de tels trucs !\nDon't think about stuff like that.\tNe pensez pas à de tels trucs !\nDon't try to blame this all on me.\tN'essayez pas de me mettre tout ça sur le dos.\nDon't try to blame this all on me.\tN'essaie pas de me mettre tout ça sur le dos.\nDon't underestimate your opponent.\tNe sous-estime pas tes rivaux.\nDon't worry about making mistakes.\tNe craignez pas de faire des erreurs.\nDon't worry about making mistakes.\tNe crains pas de commettre des erreurs.\nDon't worry about what others say.\tNe te préoccupe pas de ce que disent les autres.\nDon't worry about what others say.\tNe te soucie pas de ce que les autres disent.\nDon't worry. I've got you covered.\tNe vous faites pas de souci ! Je vous couvre.\nDon't worry. I've got you covered.\tNe te fais pas de souci ! Je te couvre.\nDon't you have a sense of justice?\tN'avez-vous donc pas le sens de l'équité ?\nDon't you have a sense of justice?\tN'as-tu donc pas le sens de la justice ?\nDon't you have an air conditioner?\tNe disposez-vous pas d'un appareil pour l'air conditionné ?\nDon't you have an air conditioner?\tNe disposes-tu pas d'un appareil pour l'air conditionné ?\nDon't you want to go to the party?\tNe veux-tu pas te rendre à la fête ?\nDon't you want to go to the party?\tNe voulez-vous pas vous rendre à la fête ?\nDozens of students gathered there.\tDes douzaines d'étudiants se rassemblèrent là.\nDrop me a line when you get there.\tAppelle-moi quand tu arrives.\nEach one of us should do his best.\tChacun de nous devrait faire de son mieux.\nEat your soup before it gets cold.\tBois ta soupe avant qu'elle ne refroidisse.\nEat your soup before it gets cold.\tMange ta soupe avant qu'elle ne refroidisse.\nEdison invented the electric lamp.\tEdison inventa l'ampoule électrique.\nEinstein loved playing the violin.\tEinstein adorait jouer du violon.\nEither you or she has to go there.\tL'un de vous deux, elle ou toi, doit aller là-bas.\nElephants live in Asia and Africa.\tLes éléphants vivent en Asie et en Afrique.\nEmpty the water out of the bucket.\tVidez l'eau hors du seau.\nEngland established many colonies.\tL'Angleterre a établi beaucoup de colonies.\nEvery country has its own history.\tChaque pays a sa propre histoire.\nEvery door in the house is locked.\tToutes les portes de la maison sont fermées.\nEverybody in the village knew him.\tAu village, tout le monde le connaissait.\nEverybody is equal before the law.\tTout le monde est égal devant la loi.\nEverybody knows that he is honest.\tTout le monde sait qu'il est honnête.\nEverybody wants to sit beside her.\tTout le monde veut s'asseoir à côté d'elle.\nEverybody's got something to hide.\tTout le monde a quelque chose à cacher.\nEveryone deserves a second chance.\tTout le monde mérite une seconde chance.\nEveryone deserves a second chance.\tTout le monde a le droit à une deuxième chance.\nEveryone deserves a second chance.\tTout le monde a droit à une seconde chance.\nEveryone hoped that she would win.\tChacun espérait qu'elle gagnât.\nEveryone knows what happened next.\tTout le monde sait ce qui arriva ensuite.\nEveryone knows what happened next.\tTout le monde sait ce qui est arrivé ensuite.\nEveryone makes a mistake at times.\tTout le monde peut se tromper.\nEveryone seemed sad to see Tom go.\tTout le monde avait l'air triste de voir Tom partir.\nEveryone seemed sad to see Tom go.\tTout le monde semblait triste de voir Tom s'en aller.\nEveryone seemed sad to see Tom go.\tTout le monde avait l'air triste de voir Tom s'en aller.\nEveryone seemed sad to see Tom go.\tTout le monde semblait triste de voir Tom partir.\nEveryone who knew him admired him.\tTous ceux qui le connaissaient l'admiraient.\nEverything was better in the past.\tTout était mieux autrefois.\nEverything went according to plan.\tTout s'est déroulé selon le plan.\nFew people understood his comment.\tPeu de gens comprirent son commentaire.\nFew people understood his comment.\tPeu de gens ont compris son commentaire.\nFlowers are growing in the meadow.\tDes fleurs croissent dans le pré.\nFor all his wealth, he is unhappy.\tMalgré son opulence, il est malheureux.\nFor months, he did almost nothing.\tIl ne fit presque rien durant des mois.\nFor now, I will wait at the hotel.\tJe reste à l'hôtel pour le moment.\nFor what purpose did he come here?\tDans quel but est-il venu ici ?\nFortunately, I have a green thumb.\tHeureusement, j'ai la main verte.\nFortunately, the weather was good.\tHeureusement il faisait beau.\nFortunately, the weather was good.\tHeureusement, il faisait beau.\nFortunately, the weather was good.\tHeureusement, le temps était beau.\nFortunately, the weather was good.\tHeureusement, le temps était au beau.\nForward this to everyone you know.\tRedirige ceci à tous les gens que tu connais !\nForward this to everyone you know.\tRedirigez ceci à tous les gens que vous connaissez !\nFrance is to the south of England.\tLa France est au sud de l'Angleterre.\nFrench is an interesting language.\tLe français est un langage intéressant.\nFurther investigation is required.\tUne enquête plus approfondie est nécessaire.\nGet in the car and lock the doors.\tMontez dans la voiture et verrouillez les portes !\nGet in the car and lock the doors.\tMonte dans la voiture et verrouille les portes !\nGive him the benefit of the doubt.\tDonne-lui le bénéfice du doute.\nGive him the benefit of the doubt.\tAccordez-lui le bénéfice du doute.\nGold is similar in color to brass.\tL'or a une couleur similaire au cuivre.\nGood movies broaden your horizons.\tLes bons films élargissent nos horizons.\nGuess what I'm holding in my hand.\tDevine ce que je tiens dans ma main !\nGuess what I'm holding in my hand.\tDevinez ce que je tiens dans ma main !\nHas anyone ever broken your heart?\tQuiconque vous a-t-il jamais brisé le cœur ?\nHas anyone ever broken your heart?\tQuiconque t'a-t-il jamais brisé le cœur ?\nHave you already settled the bill?\tAs-tu déjà réglé la note ?\nHave you already settled the bill?\tAvez-vous déjà réglé la note ?\nHave you ever driven a sports car?\tAs-tu jamais conduit une voiture de sport ?\nHave you ever driven a sports car?\tAvez-vous jamais conduit une voiture de sport ?\nHave you ever eaten Japanese food?\tAs-tu déjà mangé de la nourriture japonaise ?\nHave you ever gone skinny dipping?\tAvez-vous jamais été vous baigner nu ?\nHave you ever gone skinny dipping?\tAvez-vous jamais été vous baigner nue ?\nHave you ever gone skinny dipping?\tAvez-vous jamais été vous baigner nus ?\nHave you ever gone skinny dipping?\tAvez-vous jamais été vous baigner nues ?\nHave you ever gone skinny dipping?\tAs-tu jamais été te baigner nue ?\nHave you ever gone skinny dipping?\tAs-tu jamais été te baigner nu ?\nHave you ever had a narrow escape?\tT'en es-tu déjà tiré de justesse ?\nHave you ever kissed another girl?\tAs-tu déjà embrassé une autre nana ?\nHave you ever kissed another girl?\tAvez-vous déjà embrassé une autre fille ?\nHave you ever seen a car accident?\tAs-tu jamais vu un accident de voiture ?\nHave you ever seen a car accident?\tAvez-vous jamais vu un accident de voiture ?\nHave you ever studied archaeology?\tAvez-vous déjà étudié l'archéologie ?\nHave you ever studied archaeology?\tAs-tu déjà étudié l'archéologie ?\nHave you ever traveled in a plane?\tAvez-vous déjà voyagé en avion ?\nHave you seen Tom medical records?\tAvez-vous vu le dossier médical de Tom ?\nHave you seen Tom medical records?\tAs-tu vu le dossier médical de Tom ?\nHave you seen my glasses anywhere?\tAs-tu vu mes lunettes quelque part ?\nHave you seen their new apartment?\tAs-tu vu leur nouvel appartement ?\nHaving done his work, he went out.\tAyant fait son travail, il sortit.\nHe adapted the story for children.\tIl adapta l'histoire pour les enfants.\nHe affirmed that he saw the crash.\tIl affirma avoir vu l'accident.\nHe agreed to give us an interview.\tIl nous a accordé un entretien.\nHe agreed to give us an interview.\tIl nous a accordé une entrevue.\nHe agreed to give us an interview.\tIl nous accorda un entretien.\nHe agreed to give us an interview.\tIl nous accorda une entrevue.\nHe always comes here at this time.\tIl vient toujours à cette heure-ci.\nHe applied for the job and got it.\tIl postula pour l'emploi et l'obtint.\nHe applied for the job and got it.\tIl a postulé pour l'emploi et l'a obtenu.\nHe arrived here ten minutes early.\tIl est arrivé ici dix minutes en avance.\nHe asked her where her mother was.\tIl lui a demandé où était sa mère.\nHe asked me what I had been doing.\tIl me demanda ce que j'avais fait.\nHe asked me what I had been doing.\tIl m'a demandé ce que j'avais fait.\nHe asked us not to make any noise.\tIl nous a demandé de ne pas faire de bruit.\nHe asked us not to make any noise.\tIl nous a demandé de ne faire aucun bruit.\nHe backed his car into the garage.\tIl a rentré sa voiture en marche arrière dans le garage.\nHe became financially independent.\tIl est devenu financièrement indépendant.\nHe blames his failure on bad luck.\tIl met son échec au compte du manque de chance.\nHe blew on the tip of his fingers.\tIl souffla sur le bout de ses doigts.\nHe bored us with his long stories.\tIl nous a ennuyés avec ses longues histoires.\nHe broke the window intentionally.\tIl a fait exprès de briser la vitre.\nHe brought back several souvenirs.\tIl a ramené des souvenirs.\nHe can sing better than any of us.\tIl sait chanter mieux que n'importe lequel d'entre nous.\nHe congratulated me on my success.\tIl me félicita pour mon succès.\nHe could not answer that question.\tIl n'a pas pu répondre à cette question.\nHe could not answer that question.\tIl ne put répondre à cette question.\nHe cut some branches off the tree.\tIl a abattu quelques branches de l'arbre.\nHe decided not to wait any longer.\tIl décida de ne pas attendre plus longtemps.\nHe dedicated his life to medicine.\tIl a consacré sa vie à la médecine.\nHe demanded that we leave at once.\tIl exigea que nous partions sans délai.\nHe devoted a lot of time to study.\tIl consacra beaucoup de temps à l'étude.\nHe devoted a lot of time to study.\tIl a consacré beaucoup de temps à l'étude.\nHe devoted a lot of time to study.\tIl consacra beaucoup de temps à étudier.\nHe devoted a lot of time to study.\tIl a consacré beaucoup de temps à étudier.\nHe did not eat anything yesterday.\tIl n'a rien mangé hier.\nHe did not speak unless spoken to.\tIl ne parlait pas à moins qu'on s'adresse à lui.\nHe didn't really go to the church.\tIl ne se rendit pas vraiment à l'église.\nHe died and his soul went to hell.\tIl est mort et son âme est allée en enfer.\nHe discovered how to open the box.\tIl a compris la manière d'ouvrir la boîte.\nHe discovered how to open the box.\tIl découvrit comment ouvrir la boîte.\nHe does not seem to be very tired.\tIl ne semble pas très fatigué.\nHe doesn't care much for baseball.\tLe baseball ne l'intéresse pas beaucoup.\nHe doesn't have enough experience.\tIl n'a pas suffisamment d'expérience.\nHe doesn't have enough experience.\tIl ne dispose pas de suffisamment d'expérience.\nHe doesn't show his true feelings.\tIl ne montre pas ses véritables sentiments.\nHe doesn't want to get out of bed.\tIl ne veut pas sortir du lit.\nHe drank straight from the bottle.\tIl but directement à la bouteille.\nHe drank straight from the bottle.\tIl a bu directement à la bouteille.\nHe drank very little of the water.\tIl but très peu de l'eau.\nHe drinks a lot of milk every day.\tIl boit beaucoup de lait chaque jour.\nHe earns three times more than me.\tIl gagne trois fois plus que moi.\nHe enlisted in the Foreign Legion.\tIl s'est engagé dans la Légion étrangère.\nHe explained the matter in detail.\tIl expliqua l'affaire en détail.\nHe felt a sharp pain in his chest.\tIl a ressenti une douleur aiguë dans la poitrine.\nHe filled up the hole in the wall.\tIl a bouché le trou dans le mur.\nHe forgave me breaking my promise.\tIl m'a pardonné de n'avoir pas tenu ma promesse.\nHe forgot his promise to go there.\tIl oublia sa promesse de s'y rendre.\nHe gave me a good piece of advice.\tIl me donna un bon conseil.\nHe gave me a smile of recognition.\tIl me fit un sourire reconnaissant.\nHe gave me a smile of recognition.\tIl me sourit avec gratitude.\nHe gave me authority to fire them.\tIl m'a autorisé à les virer.\nHe gave me food and money as well.\tIl me donna de la nourriture ainsi que de l'argent.\nHe gave the same answer as before.\tIl donna la même réponse qu'avant.\nHe gave us quite a lot of trouble.\tIl nous a donné du fil à retordre.\nHe gets his hair cut once a month.\tIl se fait couper les cheveux une fois par mois.\nHe got hurt in the game yesterday.\tIl s'est blessé pendant la partie, hier.\nHe got more than he bargained for.\tIl en a eu davantage qu'il en a négocié.\nHe got more than he bargained for.\tIl en eut davantage qu'il en négocia.\nHe got more than he bargained for.\tIl en a obtenu davantage qu'il en a négocié.\nHe got more than he bargained for.\tIl en obtint davantage qu'il en négocia.\nHe grows vegetables in his garden.\tIl fait pousser des légumes dans son jardin.\nHe had a lot of money in the bank.\tIl avait beaucoup d'argent en banque.\nHe had called the rebels traitors.\tIl avait appelé des traîtres, les rebelles.\nHe had called the rebels traitors.\tIl avait traité les rebelles de traîtres.\nHe had called the rebels traitors.\tIl avait appelé les rebelles, des traîtres.\nHe had friends all over the world.\tIl avait des amis partout dans le monde.\nHe had no distinguishing features.\tIl est dépourvu de signes distinctifs.\nHe had nothing to say, so he left.\tIl n'avait rien à dire, alors il est parti.\nHe has a few friends in this town.\tIl a quelques amis dans cette ville.\nHe has a very good sense of humor.\tIl a un grand sens de l'humour.\nHe has ambition, so he works hard.\tIl a de l'ambition, alors il travaille dur.\nHe has been to Switzerland before.\tIl est allé en Suisse avant.\nHe has coached us for half a year.\tIl nous a entrainé pendant six mois.\nHe has done better than last time.\tIl a fait mieux que la dernière fois.\nHe has had a long teaching career.\tIl a eu une longue carrière dans l'enseignement.\nHe has half as many books as I do.\tIl possède moitié moins de livres que moi.\nHe has never been late for school.\tIl n'a jamais été en retard à l'école.\nHe has the ability to do the work.\tIl a la capacité d'accomplir le travail.\nHe has this large room to himself.\tIl dispose de cette grande pièce pour lui-même.\nHe imitated the works of Van Gogh.\tIl imitait les œuvres de Van Gogh.\nHe is a gentleman among gentlemen.\tC'est un monsieur.\nHe is able to speak ten languages.\tIl est capable de parler 10 langues.\nHe is an archeologist's assistant.\tC'est un assistant en archéologie.\nHe is apt to forget people's name.\tIl est capable d'oublier le nom des gens.\nHe is busy preparing for the trip.\tIl est occupé à préparer son voyage.\nHe is busy preparing for the trip.\tIl s'affaire aux préparatifs du voyage.\nHe is by nature a generous person.\tC'est par nature une personne généreuse.\nHe is enrolled at that university.\tIl est entré à cette université.\nHe is known to the entire country.\tIl est connu dans le pays entier.\nHe is learning how to drive a car.\tIl est en train d'apprendre comment conduire une voiture.\nHe is married to an American lady.\tIl est marié à une Américaine.\nHe is no more a fool than you are.\tIl n'est pas plus stupide que toi.\nHe is not as clever as my brother.\tIl n'est pas aussi malin que mon frère.\nHe is not scared of snakes at all.\tIl n'a pas du tout peur des serpents.\nHe is nothing more than a dreamer.\tIl n'est qu'un rêveur.\nHe is old enough to understand it.\tIl est assez âgé pour le comprendre.\nHe is quick to voice his concerns.\tIl est prompt à exprimer ses inquiétudes.\nHe is studying in the library now.\tIl étudie à la bibliothèque maintenant.\nHe is the best player on our team.\tIl est le meilleur joueur de notre équipe.\nHe is the son of a wealthy family.\tC'est le fils d'une riche famille.\nHe is the stingiest person I know.\tC'est la personne la plus pingre que je connaisse.\nHe is to come here at six o'clock.\tIl doit venir ici à six heures.\nHe is to come to my house tonight.\tIl va venir chez moi ce soir.\nHe is too young to go there alone.\tIl est trop jeune pour y aller seul.\nHe is unsatisfied with the result.\tIl n'est pas content du résultat.\nHe is unsatisfied with the result.\tIl est insatisfait du résultat.\nHe is very good at playing violin.\tIl est très doué pour jouer du violon.\nHe is very sensitive to criticism.\tIl est très sensible à la critique.\nHe is walking towards the station.\tIl marche en direction de la gare.\nHe is well spoken of by everybody.\tTout le monde parle de lui en bien.\nHe isn't any older than I thought.\tIl n'est pas plus vieux que ce que je pensais.\nHe kept silent during the meeting.\tIl garda le silence pendant la réunion.\nHe knows a lot about wild animals.\tIl connaît beaucoup de choses sur les animaux sauvages.\nHe knows everything about Germany.\tIl sait tout de l'Allemagne.\nHe likes animals more than people.\tIl aime les animaux davantage que les hommes.\nHe likes taking a walk by himself.\tIl aime se promener seul.\nHe lived alone in the countryside.\tIl vécut seul à la campagne.\nHe lives in the suburbs of London.\tIl vit dans la banlieue de Londres.\nHe locked himself in the bathroom.\tIl s'est enfermé dans la salle de bain.\nHe lost his balance and fell down.\tIl perdit l'équilibre et tomba.\nHe lost his sight in the accident.\tIl a perdu la vue dans l'accident.\nHe made his way through the crowd.\tIl s'est frayé un passage au milieu de la foule.\nHe made sure nobody could see her.\tIl s'est assuré que personne ne pouvait la voir.\nHe made sure nobody could see her.\tIl s'assura que personne ne pouvait la voir.\nHe made sure nobody could see him.\tIl s'est assuré que personne ne pouvait le voir.\nHe made sure nobody could see him.\tIl s'assura que personne ne pouvait le voir.\nHe made up his mind to be a pilot.\tIl s'est décidé à être pilote.\nHe makes no half-hearted attempts.\tIl met toute son énergie dans ses tentatives.\nHe may be jogging around the park.\tIl est peut-être en train de courir autour du parc.\nHe measured the length of the bed.\tIl mesura la longueur du lit.\nHe meets his girlfriend Saturdays.\tIl rencontre sa petite amie le samedi.\nHe missed the train by one minute.\tIl a manqué le train d'une minute.\nHe missed the train by one minute.\tIl manqua le train à une minute près.\nHe mistook me for my twin brother.\tIl m'a pris pour mon frère jumeau.\nHe must finish his homework today.\tIl doit terminer aujourd'hui ses devoirs.\nHe must finish his homework today.\tIl doit terminer ses devoirs aujourd'hui.\nHe must have gotten over his cold.\tIl a dû se remettre de son rhume.\nHe often reads far into the night.\tIl lit souvent jusque tard dans la nuit.\nHe often suffered from toothaches.\tIl souffrait fréquemment de maux de dents.\nHe paid his loan back to the bank.\tIl a remboursé son emprunt à la banque.\nHe paid no attention to my advice.\tIl ne prêta pas attention à mon conseil.\nHe passed his English examination.\tIl a réussi à son examen d'anglais.\nHe plays cello exceptionally well.\tC'est un virtuose du violoncelle.\nHe plays the piano better than me.\tIl joue mieux du piano que moi.\nHe poured cold water over himself.\tIl s'est versé de l'eau froide sur lui.\nHe pretended not to hear his boss.\tIl fit comme s'il n'entendait pas son patron.\nHe pretended that he was a lawyer.\tIl a prétendu être avocat.\nHe proceeded to the next question.\tIl en vint à la question suivante.\nHe proceeded to the next question.\tIl passa à la question suivante.\nHe put the skis on top of the car.\tIl plaça les skis sur le dessus de la voiture.\nHe raised his hand to stop a taxi.\tIl leva la main pour arrêter un taxi.\nHe ran a great risk in the jungle.\tIl a pris de gros risques dans la jungle.\nHe read a book written in English.\tIl a lu un livre écrit en anglais.\nHe refused to do much campaigning.\tIl refusa de faire campagne.\nHe regrets having wasted his time.\tIl regrette d'avoir perdu son temps.\nHe remained silent the whole time.\tIl est resté silencieux tout le temps.\nHe remained silent the whole time.\tIl resta silencieux tout le temps.\nHe resembles his father very much.\tIl ressemble beaucoup à son père.\nHe rested his hand on my shoulder.\tIl posa sa main sur mon épaule.\nHe returned from abroad yesterday.\tIl est revenu hier de l'étranger.\nHe runs a supermarket in the town.\tIl gère un supermarché en ville.\nHe said good night to his parents.\tIl souhaita la bonne nuit à ses parents.\nHe said that he wanted some money.\tIl dit qu'il voulait un peu d'argent.\nHe secretly showed me her picture.\tIl m'a montré sa photo en secret.\nHe seems to have left the country.\tIl semble avoir quitté le pays.\nHe seems to have missed the point.\tIl semble qu'il n'ait pas tout saisi.\nHe sent me an affectionate letter.\tIl m’a écrit une lettre pleine d'affection.\nHe set out for Tokyo this morning.\tIl est parti à Tokyo ce matin.\nHe showed me his photograph album.\tIl m'a montré son album photo.\nHe showed me the way to the store.\tIl m'indiqua le chemin du magasin.\nHe speaks as if he were an expert.\tIl parle comme s'il était un expert.\nHe stared at me from head to foot.\tIl m'observa de la tête aux pieds.\nHe stood on the edge of the cliff.\tIl se tenait au bord de la falaise.\nHe stood with his feet wide apart.\tIl était debout avec les jambes bien écartées.\nHe swallowed detergent by mistake.\tIl a avalé du détergent par erreur.\nHe swore never to trust her again.\tIl jura de ne plus jamais lui faire confiance.\nHe talks as if he knew everything.\tIl parle comme s'il connaissait tout.\nHe talks as if he knew the secret.\tIl parle comme s'il connaissait le secret.\nHe talks as if he knew the secret.\tIl parle comme s'il connaissait ce secret.\nHe teaches English to his friends.\tIl enseigne l'anglais à ses amis.\nHe thought maybe this was a trick.\tIl pensa que c'était peut-être un piège.\nHe threw a piece of meat to a dog.\tIl jeta un bout de viande au chien.\nHe threw the letter into the fire.\tIl jeta la lettre au feu.\nHe threw the letter into the fire.\tIl jeta la lettre dans le feu.\nHe timed her in the marathon race.\tIl la chronométra au marathon.\nHe took a book from the bookshelf.\tIl prit un livre de l'étagère.\nHe took a room at the Yaesu Hotel.\tIl a pris une chambre au Yaesu Hotel.\nHe tried to attract her attention.\tIl a cherché à attirer son attention.\nHe tried to make up for lost time.\tIl essaya de rattraper le temps perdu.\nHe tried to pull a fast one on me.\tIl a essayé de m'arnaquer.\nHe turned to his friends for help.\tIl se tourna vers ses amis pour obtenir de l'aide.\nHe used pigeons in his experiment.\tIl utilisa des pigeons dans son expérience.\nHe visited many countries in Asia.\tIl a visité beaucoup de pays en Asie.\nHe wants to live closer to nature.\tIl veut vivre plus près de la nature.\nHe wants to study music and dance.\tIl veut étudier la musique et la danse.\nHe was at work till late at night.\tIl était au travail jusque tard la nuit.\nHe was caught with his pants down.\tIl s'est fait prendre en fâcheuse posture.\nHe was conspicuous by his absence.\tIl brillait par son absence.\nHe was exhausted when he got home.\tIl était épuisé quand il est rentré chez lui.\nHe was fascinated with her beauty.\tIl était fasciné par sa beauté.\nHe was in good health last summer.\tIl était en bonne santé l'été dernier.\nHe was jealous of their happiness.\tIl était jaloux de leur bonheur.\nHe was raised by his grandparents.\tIl fut élevé par ses grands-parents.\nHe was satisfied with his new car.\tIl était content de sa nouvelle voiture.\nHe was scared you would shoot him.\tIl avait peur que vous lui tiriez dessus.\nHe was scared you would shoot him.\tIl avait peur que vous le descendiez.\nHe was sick, so he did not go out.\tIl était malade, il ne pouvait donc pas sortir.\nHe was sitting and reading a book.\tIl était assis et lisait un livre.\nHe was tired, but he kept working.\tIl était fatigué, mais il continua à travailler.\nHe was tired, but he kept working.\tIl était fatigué, mais il a continué à travailler.\nHe was too tired to walk any more.\tIl était trop fatigué pour continuer à marcher.\nHe was unconscious for three days.\tIl resta inconscient durant trois jours.\nHe was willing to work for others.\tIl était disposé à travailler pour les autres.\nHe went to the hospital yesterday.\tIl est allé à l'hôpital hier.\nHe will advise you on that matter.\tIl te conseillera en cette affaire.\nHe will advise you on that matter.\tIl vous conseillera en cette affaire.\nHe will do anything to make money.\tPour gagner de l'argent il serait prêt à tout.\nHe will go to New York next month.\tIl part pour New York le mois prochain.\nHe will have to go to the station.\tIl devra aller à la gare.\nHe will have to go to the station.\tIl devra se rendre à la gare.\nHe worked from morning till night.\tIl travailla du matin au soir.\nHe worked from morning till night.\tIl a travaillé du matin au soir.\nHe works from nine to five-thirty.\tIl travaille de neuf heures à dix-sept-heures trente.\nHe'll be here around four o'clock.\tIl sera ici vers quatre heures.\nHe's a bit rough around the edges.\tIl est un peu rugueux.\nHe's a bit rough around the edges.\tIl est un peu revêche.\nHe's a little taller than you are.\tIl est un peu plus grand que vous.\nHe's afraid that he might be late.\tIl craint d'être en retard.\nHe's always running short of cash.\tIl est toujours à court de liquide.\nHe's an expert at throwing knives.\tC'est un expert du lancer de couteaux.\nHe's bound to notice your mistake.\tIl est forcé de remarquer votre erreur.\nHe's busy and can't meet with you.\tPuisqu'il est occupé il ne peut pas vous rencontrer.\nHe's decided to leave the company.\tIl a décidé de quitter la troupe.\nHe's going to have a heart attack.\tIl va avoir une attaque cardiaque.\nHe's had many unhappy experiences.\tIl a eu beaucoup d'expériences malheureuses.\nHe's not sure he wants to do this.\tIl n'est pas sûr de vouloir le faire.\nHe's the one who's lagging behind.\tC'est lui qui est à la traîne.\nHe's two years older than Mary is.\tIl est deux ans plus vieux que Mary.\nHe's two years older than Mary is.\tIl a deux ans de plus que Mary.\nHe's wearing a white cotton shirt.\tIl porte une chemise de coton blanc.\nHer beauty was beyond description.\tSa beauté était indescriptible.\nHer desires were fully fullfilled.\tSes désirs ont été pleinement assouvis.\nHer husband smokes like a chimney.\tSon mari fume comme un pompier.\nHer mother always accompanies her.\tSa mère l'accompagne toujours.\nHer mother is a wonderful pianist.\tSa mère est une excellente pianiste.\nHere's some medicine for diarrhea.\tVoici un médicament contre la diarrhée.\nHey, Tom, can I ask you something?\tHé, Tom, je peux te demander un truc ?\nHey, Tom, can I ask you something?\tHé, Tom, je peux te demander quelque chose ?\nHis behavior is worthy of respect.\tSon comportement force le respect.\nHis condition got worse every day.\tSa santé empirait de jour en jour.\nHis family didn't have much money.\tSa famille ne disposait pas de beaucoup d'argent.\nHis house is somewhere about here.\tSa maison est quelque part par là.\nHis house is somewhere about here.\tSa maison est quelque part par ici.\nHis house was struck by lightning.\tSa maison a été frappée par la foudre.\nHis ideas never earned him a dime.\tSes idées ne lui ont jamais rapporté un sou.\nHis ideas never earned him a dime.\tSes idées ne lui ont jamais valu un sou.\nHis leg was bitten by a crocodile.\tUn crocodile lui a mordu la jambe.\nHis office is on the eighth floor.\tSon bureau est au huitième étage.\nHis office is on the eighth floor.\tSon bureau se situe au huitième étage.\nHis policies were too progressive.\tSa politique était trop progressiste.\nHis remark was really out of line.\tSa remarque était vraiment hors de propos.\nHis sleeve touched the greasy pan.\tSa manche a touché la casserole graisseuse.\nHis son had been killed in a duel.\tSon fils fut tué en duel.\nHis speech impressed us very much.\tSon discours nous a beaucoup impressionnés.\nHis speech was not altogether bad.\tSon discours n'était en somme pas mauvais.\nHis success delighted his parents.\tSon succès réjouissait ses parents.\nHis wealth has not made him happy.\tSa fortune ne l'a pas rendu heureux.\nHistory is repeating itself again.\tL'Histoire se répète à nouveau.\nHold down the fort while I'm gone.\tGarde la baraque pendant que je suis parti.\nHold down the fort while I'm gone.\tGarde la maison pendant que je suis parti.\nHold down the fort while I'm gone.\tGarde la taule pendant que je suis parti.\nHold down the fort while I'm gone.\tGarde la turne pendant que je suis parti.\nHold down the fort while I'm gone.\tGarde la bicoque pendant que je suis parti.\nHow about dining out for a change?\tIrions-nous manger dehors pour changer ?\nHow are you going to deal with it?\tComment vas-tu gérer ça?\nHow can we be sure of his honesty?\tComment pouvons-nous être sûrs de son honnêteté ?\nHow can you justify your behavior?\tComment pouvez-vous justifier votre conduite ?\nHow come you know English so well?\tComment se fait-il que tu connaisses si bien l'anglais ?\nHow come you know English so well?\tComment se fait-il que tu saches si bien l'anglais ?\nHow come you know English so well?\tComment se fait-il que vous connaissiez si bien l'anglais ?\nHow come you know English so well?\tComment se fait-il que vous sachiez si bien l'anglais ?\nHow could you not see this coming?\tComment as-tu pu ne pas voir ça venir ?\nHow could you not see this coming?\tComment n'as-tu pas pu voir ça arriver ?\nHow did you come by this painting?\tComment êtes-vous entré en possession de ce tableau ?\nHow did you come by this painting?\tComment êtes-vous entré en possession de cette toile ?\nHow did you come by this painting?\tComment êtes-vous entré en possession de cette peinture ?\nHow did you come by this painting?\tComment es-tu entré en possession de ce tableau ?\nHow did you come by this painting?\tComment es-tu entré en possession de cette toile ?\nHow did you come by this painting?\tComment es-tu entré en possession de cette peinture ?\nHow did you come by this painting?\tComment es-tu entrée en possession de ce tableau ?\nHow did you come by this painting?\tComment es-tu entrée en possession de cette peinture ?\nHow did you come by this painting?\tComment es-tu entrée en possession de cette toile ?\nHow did you come by this painting?\tComment êtes-vous entrée en possession de cette peinture ?\nHow did you come by this painting?\tComment êtes-vous entrés en possession de cette peinture ?\nHow did you come by this painting?\tComment êtes-vous entrées en possession de cette peinture ?\nHow did you come by this painting?\tComment êtes-vous entrée en possession de cette toile ?\nHow did you come by this painting?\tComment êtes-vous entrés en possession de cette toile ?\nHow did you come by this painting?\tComment êtes-vous entrées en possession de cette toile ?\nHow did you come by this painting?\tComment êtes-vous entrée en possession de ce tableau ?\nHow did you come by this painting?\tComment êtes-vous entrés en possession de ce tableau ?\nHow did you come by this painting?\tComment êtes-vous entrées en possession de ce tableau ?\nHow did you get interested in art?\tComment t'es-tu intéressé à l'art ?\nHow did you get interested in art?\tComment t'es-tu intéressée à l'art ?\nHow did you get interested in art?\tComment vous êtes-vous intéressé à l'art ?\nHow did you get interested in art?\tComment vous êtes-vous intéressée à l'art ?\nHow did you get interested in art?\tComment vous êtes-vous intéressés à l'art ?\nHow did you get interested in art?\tComment vous êtes-vous intéressées à l'art ?\nHow did you get so good at French?\tComment es-tu devenu si bon en français ?\nHow did you get so good at French?\tComment es-tu devenue si bonne en français ?\nHow did you get so good at French?\tComment êtes-vous devenu si bon en français ?\nHow did you get so good at French?\tComment êtes-vous devenue si bonne en français ?\nHow did you get so good at French?\tComment êtes-vous devenus si bons en français ?\nHow did you get so good at French?\tComment êtes-vous devenues si bonnes en français ?\nHow did you get to know about her?\tComment as-tu appris son existence ?\nHow did you get to know about her?\tComment avez-vous appris son existence ?\nHow did you learn about that news?\tComment as-tu appris cette nouvelle ?\nHow did you learn to cook so well?\tComment as-tu appris à cuisiner si bien ?\nHow did you learn to cook so well?\tComment avez-vous appris à cuisiner si bien ?\nHow do I get to the train station?\tComment puis-je parvenir à la gare ?\nHow do I know you're not bluffing?\tComment sais-je que vous ne bluffez pas ?\nHow do I know you're not bluffing?\tComment sais-je que tu ne bluffes pas ?\nHow do you feel about gun control?\tQuel est votre sentiment au sujet du contrôle des armes ?\nHow do you know I'm not from here?\tComment savez-vous que je ne suis pas d'ici ?\nHow do you know you can trust Tom?\tComment sais-tu que tu peux faire confiance à Tom ?\nHow do you know you can trust Tom?\tComment savez-vous que vous pouvez faire confiance à Tom ?\nHow do you spell your family name?\tComment épelez-vous votre nom de famille ?\nHow do you spell your family name?\tComment épelles-tu ton nom de famille ?\nHow do you want me to handle that?\tComment voulez-vous que j'agisse en la matière ?\nHow do you want me to handle that?\tComment veux-tu que je m'y prenne ?\nHow long are you staying in Japan?\tCombien de temps comptez-vous rester au Japon ?\nHow long can you hold your breath?\tCombien de temps peux-tu retenir ta respiration ?\nHow long did they live in England?\tCombien de temps ont-ils vécu en Angleterre ?\nHow long did you sleep last night?\tCombien de temps as-tu dormi la nuit dernière ?\nHow long do you have to eat lunch?\tDe combien de temps disposes-tu pour déjeuner ?\nHow long do you have to eat lunch?\tDe combien de temps disposez-vous pour déjeuner ?\nHow long do you have to eat lunch?\tPendant combien de temps dois-tu déjeuner ?\nHow long do you have to eat lunch?\tPendant combien de temps devez-vous déjeuner ?\nHow long have you been in Kushiro?\tCela fait combien de temps que tu es à Kushiro ?\nHow long were you at school today?\tCombien de temps as-tu été à l'école, aujourd'hui ?\nHow long were you at school today?\tCombien de temps avez-vous été à l'école, aujourd'hui ?\nHow long will the train stop here?\tCombien de temps le train s'arrête-t-il ici ?\nHow many days are there in a week?\tCombien y a-t-il de jours dans une semaine ?\nHow many days are there in a week?\tCombien y a-t-il de jours dans une semaine ?\nHow many days do you plan to stay?\tCombien de jours as-tu prévu de rester ?\nHow many people live in Australia?\tCombien de personnes vivent en Australie ?\nHow many people live in your town?\tCombien d'habitants vivent dans votre ville ?\nHow many times have you done this?\tCombien de fois l'avez-vous fait ?\nHow many times have you done this?\tCombien de fois l'as-tu fait ?\nHow much did the tickets cost you?\tCombien t'ont coûté les billets ?\nHow much did the tickets cost you?\tCombien vous ont coûté les billets ?\nHow much does your daughter weigh?\tCombien pèse votre fille ?\nHow much farther do we have to go?\tQuelle distance avons-nous encore à parcourir ?\nHow much further do we have to go?\tCombien nous faut-il encore avancer ?\nHow much is that going to cost me?\tCombien est-ce que cela va me coûter ?\nHow much is that going to cost me?\tCombien ça va me coûter ?\nHow often do you brush your teeth?\tÀ quelle fréquence te brosses-tu les dents ?\nHow often do you brush your teeth?\tÀ quelle fréquence vous brossez-vous les dents ?\nHow often do you wash your sheets?\tÀ quelle fréquence laves-tu tes draps ?\nHow often do you wash your sheets?\tÀ quelle fréquence lavez-vous vos draps ?\nHow thoughtless of you to do that.\tQu'est ce que c'était inconsidéré de ta part de faire ça.\nHow will you manage without a job?\tComment vas-tu t'en sortir sans boulot ?\nHuman beings are social creatures.\tLes êtres humains sont des créatures sociales.\nHurry up, or we'll miss the train.\tPlus vite, ou nous allons rater le train.\nI almost forgot to do my homework.\tJ'ai failli oublier de faire mes devoirs.\nI am allowed to swim in the river.\tJe peux nager dans la rivière.\nI am ashamed of my son's laziness.\tJ'ai honte de la paresse de mon fils.\nI am determined to be a scientist.\tJe suis déterminé à devenir un scientifique.\nI am fed up with this wet weather.\tJ'en ai assez de ce temps humide.\nI am fed up with this wet weather.\tJ'en ai marre de ce temps humide.\nI am glad that you have succeeded.\tJe suis heureuse que vous ayez réussi.\nI am going to a concert next week.\tJe me rends à un concert la semaine prochaine.\nI am going to a concert next week.\tJe vais à un concert la semaine prochaine.\nI am going to a concert next week.\tJe vais aller à un concert la semaine prochaine.\nI am looking forward to Christmas.\tJ'attends Noël avec impatience.\nI am not about to pay ten dollars.\tJe ne vais tout de même pas payer dix dollars.\nI am ready to do anything for you.\tJe suis prêt à tout faire pour vous.\nI am ready to do anything for you.\tJe suis prêt à tout faire pour toi.\nI am ready to do anything for you.\tJe suis prête à tout faire pour toi.\nI am ready to do anything for you.\tJe suis prête à tout faire pour vous.\nI am sure we have a lot in common.\tJe suis certain que nous avons beaucoup en commun.\nI am too tired to keep on walking.\tJe suis trop fatigué pour continuer de marcher.\nI appreciate what you did earlier.\tJe vous suis reconnaissant pour ce que vous avez fait précédemment.\nI appreciate what you did earlier.\tJe te suis reconnaissant pour ce que tu as fait précédemment.\nI arrived here about five o'clock.\tJe suis arrivé ici à 5 heures environ.\nI asked my father to buy this toy.\tJ'ai demandé à mon père de m'acheter ce jouet.\nI asked myself that same question.\tJe me suis posé la même question.\nI asked the doctor some questions.\tJ'ai posé quelques questions au médecin.\nI avoid going there late at night.\tJ'évite de m'y rendre tard le soir.\nI awoke to find a bird in my room.\tJe me réveillai et trouvai un oiseau dans ma chambre.\nI awoke to find a bird in my room.\tJe me suis réveillé et ai trouvé un oiseau dans ma chambre.\nI believe it is a genuine Picasso.\tJe crois que c'est un authentique Picasso.\nI believe they're a perfect match.\tJe crois qu'ils se correspondent parfaitement.\nI believe you'll get over it soon.\tJe crois que tu seras bientôt sur pieds.\nI believe you'll get over it soon.\tJe crois que tu t'en remettras bientôt.\nI believe you'll get over it soon.\tJe crois que vous vous en remettrez bientôt.\nI bet you've never climbed a tree.\tJe parie que tu n'as jamais escaladé un arbre.\nI bet you've never climbed a tree.\tJe parie que vous n'êtes jamais grimpé à un arbre.\nI bought the book for ten dollars.\tJ'ai acheté le livre pour dix dollars.\nI bought this coat at a low price.\tJ'ai acheté ce manteau à bas prix.\nI broke his heart, but I love him.\tJe lui ai brisé le cœur mais je l'aime.\nI broke the lock opening the door.\tEn ouvrant la porte, j'ai cassé la serrure.\nI brought some samples of my work.\tJ'ai apporté quelques échantillons de mon travail.\nI can solve the problem by myself.\tJe peux résoudre le problème moi-même.\nI can't afford the time to travel.\tJe ne peux me permettre le temps de voyager.\nI can't bear the noise any longer.\tJe ne peux pas supporter ce bruit plus longtemps.\nI can't believe I listened to you.\tJe n'arrive pas à croire que je t'aie écouté.\nI can't believe I listened to you.\tJe n'arrive pas à croire que je vous aie écouté.\nI can't believe I listened to you.\tJe n'arrive pas à croire que je t'aie écoutée.\nI can't believe I listened to you.\tJe n'arrive pas à croire que je vous aie écoutée.\nI can't believe I listened to you.\tJe n'arrive pas à croire que je vous aie écoutés.\nI can't believe I listened to you.\tJe n'arrive pas à croire que je vous aie écoutées.\nI can't believe I never knew that.\tJe n'arrive pas à croire que je n'aie jamais su ça.\nI can't believe I showed you that.\tJe n'arrive pas à croire que je t'aie montré ça.\nI can't believe I showed you that.\tJe n'arrive pas à croire que je vous aie montré ça.\nI can't believe no one heard that.\tJe n'arrive pas à croire que personne n'ait entendu ça.\nI can't believe no one heard that.\tJe n'arrive pas à croire que personne ne l'ait entendu.\nI can't believe that this is real.\tJe ne parviens pas à croire que ce soit réel.\nI can't believe this has happened.\tJe n'arrive pas à croire que tout ceci soit arrivé.\nI can't believe this has happened.\tJe n'arrive pas à croire que tout ceci soit survenu.\nI can't believe this is happening.\tJe n'arrive pas à croire que ça se produit.\nI can't believe this is happening.\tJe n'arrive pas à croire que ça a lieu.\nI can't believe you chickened out.\tJe n'arrive pas à croire que tu aies eu les foies.\nI can't believe you chickened out.\tJe n'arrive pas à croire que vous ayez eu les chocottes.\nI can't believe you fell for that.\tJe n'arrive pas à croire que vous soyez tombé dans le panneau.\nI can't believe you fell for that.\tJe n'arrive pas à croire que vous soyez tombée dans le panneau.\nI can't believe you fell for that.\tJe n'arrive pas à croire que vous soyez tombés dans le panneau.\nI can't believe you fell for that.\tJe n'arrive pas à croire que vous soyez tombées dans le panneau.\nI can't believe you fell for that.\tJe n'arrive pas à croire que tu sois tombé dans le panneau.\nI can't believe you fell for that.\tJe n'arrive pas à croire que tu sois tombée dans le panneau.\nI can't believe you just did that.\tJe n'arrive pas à croire que tu viennes de faire cela.\nI can't believe you just did that.\tJe n'arrive pas à croire que vous veniez de faire cela.\nI can't believe you just did that.\tJe ne parviens pas à croire que vous veniez de faire ça.\nI can't believe you just did that.\tJe ne parviens pas à croire que tu viennes de faire ça.\nI can't believe you're doing this.\tJe n'arrive pas à croire que vous fassiez cela.\nI can't believe you're doing this.\tJe n'arrive pas à croire que tu fasses cela.\nI can't blame Tom for not waiting.\tJe ne peux pas reprocher à Tom de ne pas attendre.\nI can't even remember my own name.\tJe ne peux même pas me souvenir de mon propre nom.\nI can't figure out why he said so.\tJe n'arrive pas à me figurer pourquoi il a dit ça.\nI can't find the right man for me.\tJe ne parviens pas à trouver l'homme qu'il me faut.\nI can't find the right man for me.\tJe n'arrive pas à trouver l'homme qui me convient.\nI can't get in touch with him yet.\tJe n'arrive pas à le contacter pour l'instant.\nI can't go now. I have work to do.\tJe ne peux pas m'y rendre pour le moment. J'ai du travail à faire.\nI can't help doubting his honesty.\tJe peux pas m'empêcher de mettre en doute son honnêteté.\nI can't imagine a day without you.\tJe ne peux pas imaginer une journée sans toi.\nI can't imagine a day without you.\tJe ne peux pas imaginer une journée sans vous.\nI can't let you go in there alone.\tJe ne peux pas te laisser aller là-dedans tout seul.\nI can't let you go in there alone.\tJe ne peux pas te laisser aller là-dedans toute seule.\nI can't let you go in there alone.\tJe ne peux pas vous laisser aller là-dedans tout seul.\nI can't let you go in there alone.\tJe ne peux pas vous laisser aller là-dedans toute seule.\nI can't let you go in there alone.\tJe ne peux pas vous laisser aller là-dedans tous seuls.\nI can't let you go in there alone.\tJe ne peux pas vous laisser aller là-dedans toutes seules.\nI can't make that kind of promise.\tJe ne peux pas faire ce genre de promesses.\nI can't put up with his arrogance.\tJe ne peux pas supporter son arrogance.\nI can't put up with these insults.\tJe ne peux pas tolérer ces insultes.\nI can't tell you what Tom told me.\tJe ne peux pas te raconter ce que Tom m'a dit.\nI can't tell you what Tom told me.\tJe ne peux pas vous raconter ce que Tom m'a dit.\nI can't wait for tomorrow to come.\tJ'ai hâte d'être à demain.\nI can't wait for tomorrow to come.\tJe suis impatient d'être à demain.\nI can't wait for tomorrow to come.\tJe suis impatiente d'être à demain.\nI cannot entertain such a request.\tJe ne peux pas répondre à cette demande.\nI cannot put up with her behavior.\tJe ne peux pas supporter son attitude.\nI cannot understand what happened.\tJe n'arrive pas à comprendre ce qui s'est passé.\nI captured butterflies with a net.\tJ'ai attrapé des papillons avec un filet.\nI captured butterflies with a net.\tJ'ai capturé des papillons au filet.\nI confessed to stealing the money.\tJ'avouai avoir volé l'argent.\nI constantly quarrel with my wife.\tJe me dispute constamment avec ma femme.\nI convinced him that he was wrong.\tJe l'ai convaincu qu'il avait tort.\nI could have sworn I saw somebody.\tJ'aurais pu jurer avoir vu quelqu'un.\nI could recite the story by heart.\tJe pourrais réciter l'histoire par cœur.\nI could scarcely stand on my feet.\tJe pouvais à peine tenir debout.\nI could see that Tom was grinning.\tJe pouvais voir que Tom souriait.\nI could've met you at the airport.\tJ'aurais pu vous rencontrer à l'aéroport.\nI could've met you at the airport.\tJ'aurais pu te rencontrer à l'aérodrome.\nI could've met you at the airport.\tJ'aurais pu te rencontrer à l'aéroport !\nI could've objected, but I didn't.\tJ'aurais pu contester, mais je ne l'ai pas fait.\nI couldn't hear anything you said.\tJe n'ai rien pu entendre de ce que tu as dit.\nI couldn't hear anything you said.\tJe n'ai rien pu entendre de ce que vous avez dit.\nI cut myself shaving this morning.\tJe me suis coupé en me rasant ce matin.\nI did nothing during the holidays.\tJe n'ai rien fait des vacances.\nI did something I regretted doing.\tJ'ai fait quelque chose que j'ai regretté avoir fait.\nI didn't do what I was told to do.\tJe n'ai pas fait ce qu'on me disait de faire.\nI didn't do what I was told to do.\tJe ne fis pas ce qu'on me disait de faire.\nI didn't finish reading that book.\tJe n'avais pas fini de lire ce livre.\nI didn't go to school last Monday.\tJe ne suis pas allé à l'école lundi passé.\nI didn't know exactly what to say.\tJe ne savais pas vraiment quoi dire.\nI didn't know that dogs swim well.\tJe ne savais pas que les chiens nageaient bien.\nI didn't know tofu was this tasty.\tJe ne savais pas que le tofu c'était aussi bon que ça.\nI didn't know you had a boyfriend.\tJ'ignorais que tu avais un petit ami.\nI didn't know you had a boyfriend.\tJ'ignorais que tu avais un petit copain.\nI didn't know you had a boyfriend.\tJ'ignorais que vous aviez un petit ami.\nI didn't know you had a boyfriend.\tJ'ignorais que tu avais un jules.\nI didn't manage to see who it was.\tJe ne suis pas parvenu à voir qui c'était.\nI didn't manage to see who it was.\tJe ne suis pas parvenue à voir qui c'était.\nI didn't need to pay for the food.\tJe n'ai pas eu besoin de payer pour la nourriture.\nI didn't promise anybody anything.\tJe n'ai rien promis à quiconque.\nI didn't realize you were serious.\tJe n'ai pas pris conscience que tu étais sérieux.\nI didn't realize you were serious.\tJe n'ai pas pris conscience que tu étais sérieuse.\nI didn't realize you were serious.\tJe n'ai pas pris conscience que vous étiez sérieux.\nI didn't realize you were serious.\tJe n'ai pas pris conscience que vous étiez sérieuse.\nI didn't realize you were serious.\tJe n'ai pas pris conscience que vous étiez sérieuses.\nI didn't realize you were so rich.\tJe n'avais pas réalisé que tu étais si riche.\nI didn't see anybody following us.\tJe n'ai vu personne nous suivre.\nI didn't see him again after that.\tJe ne l'ai pas revu après cela.\nI didn't think I was going to win.\tJe ne pensais pas que j'allais gagner.\nI didn't think anybody was coming.\tJe ne pensais pas que quiconque venait.\nI didn't think anybody was coming.\tJe n'ai pas pensé que quiconque venait.\nI didn't think this was your seat.\tJe ne pensais pas que c'était ton siège.\nI didn't understand what you said.\tJe n'ai pas compris ce que vous avez dit.\nI didn't want you to get involved.\tJe ne voulais pas que vous soyez impliqué.\nI didn't want you to get involved.\tJe ne voulais pas que vous soyez impliquée.\nI didn't want you to get involved.\tJe ne voulais pas que vous soyez impliqués.\nI didn't want you to get involved.\tJe ne voulais pas que vous soyez impliquées.\nI didn't want you to get involved.\tJe ne voulais pas que tu sois impliqué.\nI didn't want you to get involved.\tJe ne voulais pas que tu sois impliquée.\nI dipped my finger into the honey.\tJ'ai trempé le doigt dans le miel.\nI dipped my finger into the honey.\tJe trempai le doigt dans le miel.\nI disagree with you on the matter.\tJe ne suis pas d'accord avec toi sur le sujet.\nI dislike her unfriendly attitude.\tJe n'apprécie guère son comportement hostile.\nI do not doubt that he is sincere.\tJe n'ai aucun doute concernant sa sincérité.\nI don't believe such things exist.\tJe ne crois pas que de telles choses existent.\nI don't believe that ghosts exist.\tJe ne crois pas à l'existence des fantômes.\nI don't believe this is happening.\tJe ne parviens pas à croire que ça se produise.\nI don't believe this is happening.\tJe ne parviens pas à croire que ce soit en train de se produire.\nI don't blame you for hitting him.\tJe ne vous blâme pas pour l'avoir frappé.\nI don't care for the way he talks.\tJe n'aime pas sa façon de parler.\nI don't care how long the list is.\tJe me fiche de la longueur de la liste.\nI don't even know what that means.\tJ'ignore même ce que cela signifie.\nI don't even know why we're going.\tJe ne sais même pas pourquoi nous y allons.\nI don't even know why we're going.\tJ'ignore même pourquoi nous y allons.\nI don't feel like eating anything.\tJe n'ai pas le cœur à manger quoi que ce soit.\nI don't feel like eating anything.\tJe n'ai pas envie de manger quoi que ce soit.\nI don't feel like speaking German.\tJe n'ai pas envie de parler allemand.\nI don't feel like talking anymore.\tJe n'ai plus envie de parler.\nI don't go to school on Saturdays.\tJe ne vais pas en cours le samedi.\nI don't have any Canadian friends.\tJe n'ai aucun ami Canadien.\nI don't have any time to watch TV.\tJe n'ai pas le temps de regarder la télévision.\nI don't have that many years left.\tJe ne dispose pas de tant d'années de reste.\nI don't have the money to do that.\tJe ne dispose pas de l'argent pour le faire.\nI don't have time for all of this.\tJe n'ai pas le temps pour tout ça.\nI don't have to tell you anything.\tJe n'ai pas à vous dire quoi que ce soit.\nI don't intend to be staying long.\tJe ne prévois pas de rester longtemps.\nI don't know any more than you do.\tJe n'en sais pas plus que vous.\nI don't know any more than you do.\tJe n'en sais pas plus que toi.\nI don't know anybody by that name.\tJe ne connais personne de ce nom.\nI don't know anything about Japan.\tJe ne connais rien du Japon.\nI don't know how deep the lake is.\tJe ne connais pas la profondeur de ce lac.\nI don't know if I should tell him.\tC'est moi qui ignore si je devrais le lui dire.\nI don't know if I should tell him.\tJ'ignore si je devrais le lui dire.\nI don't know if I should tell you.\tJ'ignore si je devrais te le dire.\nI don't know if I should tell you.\tJ'ignore si je devrais vous le dire.\nI don't know if I should tell you.\tC'est moi qui ignore si je devrais te le dire.\nI don't know if I should tell you.\tC'est moi qui ignore si je devrais vous le dire.\nI don't know if I want to do that.\tJe ne sais si je veux faire cela.\nI don't know if I want to do that.\tJe ne sais pas si je veux faire cela.\nI don't know much about Australia.\tJe ne sais pas grand chose sur l'Australie.\nI don't know much about computers.\tJe ne m'y connais pas trop en ordinateurs.\nI don't know what I was expecting.\tJe ne sais pas ce que j'attendais.\nI don't know what I was expecting.\tJe ne sais pas ce que j'espérais.\nI don't know what I was expecting.\tJ'ignore ce que j'attendais.\nI don't know what I was expecting.\tJ'ignore ce que j'espérais.\nI don't know what I'm going to do.\tJe ne sais pas ce que je vais faire.\nI don't know what I'm going to do.\tJ'ignore ce que je vais faire.\nI don't know what Tom wants to do.\tJe ne sais pas ce que Tom veut faire.\nI don't know what that word means.\tJ'ignore ce que signifie ce mot.\nI don't know what that word means.\tJ'ignore ce que veut dire ce mot.\nI don't know what the big deal is.\tJ'ignore à propos de quoi on fait tout ce foin.\nI don't know what this word means.\tJ'ignore ce que ce mot signifie.\nI don't know what to do right now.\tJe ne sais pas quoi faire là.\nI don't know what to make of this.\tJe ne sais pas quoi faire de ça.\nI don't know what you really want.\tJe ne sais pas ce que vous voulez vraiment.\nI don't know what you really want.\tJ'ignore ce que vous voulez vraiment.\nI don't know what you really want.\tJe ne sais pas ce que tu veux vraiment.\nI don't know what you really want.\tJ'ignore ce que tu veux vraiment.\nI don't know what your problem is.\tJ'ignore ce qu'est ton problème.\nI don't know what your problem is.\tJ'ignore ce qu'est votre problème.\nI don't know what your problem is.\tJe ne sais pas ce qu'est ton problème.\nI don't know what your problem is.\tJe ne sais pas ce qu'est votre problème.\nI don't know when he'll come back.\tJe ne sais pas quand il va revenir.\nI don't know when he'll come back.\tJ'ignore quand il va revenir.\nI don't know when she got married.\tJe ne sais pas quand elle s'est mariée.\nI don't know where that came from.\tJ'ignore d'où c'est venu.\nI don't know where that came from.\tJe ne sais pas d'où c'est venu.\nI don't know which button to push.\tJe ne sais pas sur quel bouton appuyer.\nI don't know which button to push.\tJe ne sais pas sur quel bouton je dois appuyer.\nI don't know who Tom gave that to.\tJe ne sais pas à qui Tom a donné cela.\nI don't know who these people are.\tJe ne sais pas qui sont ces gens.\nI don't know who these people are.\tJ'ignore qui sont ces gens.\nI don't know why Tom didn't do it.\tJe ne sais pas pourquoi Tom ne l'a pas fait.\nI don't know why and I don't care.\tJ'ignore pourquoi et je m'en fiche.\nI don't know why and I don't care.\tJ'ignore pourquoi et ça m'est égal.\nI don't know why it's not working.\tJe ne sais pas pourquoi ça ne marche pas.\nI don't like any of these records.\tJe n'aime aucun de ces disques.\nI don't like being made a fool of.\tJe n'aime pas qu'on se moque de moi.\nI don't like being made a fool of.\tJe n'aime pas qu'on me prenne pour un idiot.\nI don't like either tea or coffee.\tJe n'aime ni le thé, ni le café.\nI don't like feeling so powerless.\tJe n'aime pas me sentir si impuissant.\nI don't like feeling so powerless.\tJe n'aime pas me sentir si impuissante.\nI don't like it when he does that.\tJe n'aime pas qu'il fasse cela.\nI don't like people looking at me.\tJe n'aime pas que les gens me regardent.\nI don't like people looking at me.\tJe n'apprécie pas que les gens me regardent.\nI don't like to go out after dark.\tJe n'aime pas sortir après la tombée de la nuit.\nI don't like your going out alone.\tJe n’aime pas que tu sortes seule.\nI don't need anybody's permission.\tJe n'ai besoin de la permission de personne.\nI don't need to be here right now.\tJe n'ai pas besoin d'être ici, à l'instant.\nI don't need to tell you anything.\tJe n'ai pas besoin de vous dire quoi que ce soit.\nI don't need to tell you anything.\tJe n'ai pas besoin de te dire quoi que ce soit.\nI don't plan to be here that long.\tJe ne prévois pas d'être ici aussi longtemps.\nI don't really care how you do it.\tComment vous le faites ne m'intéresse pas plus que ça.\nI don't really care how you do it.\tComment tu le fais ne m'intéresse pas plus que ça.\nI don't really know what you mean.\tJe ne sais pas vraiment ce que vous voulez dire.\nI don't really know what you mean.\tJe ne sais pas vraiment ce que tu veux dire.\nI don't really want you mad at me.\tJe ne veux pas vraiment que vous soyez en colère après moi.\nI don't really want you mad at me.\tJe ne veux pas vraiment que tu sois en colère après moi.\nI don't remember agreeing to that.\tJe ne me souviens pas avoir approuvé ça.\nI don't remember her name anymore.\tJe ne me rappelle plus son nom.\nI don't remember her name anymore.\tJe ne me rappelle plus de son nom.\nI don't see any way of doing that.\tJe ne vois aucun moyen de faire ça.\nI don't think Tom wants to see me.\tJe ne pense pas que Tom veuille me voir.\nI don't think any of us should go.\tJe ne pense pas qu'aucun d'entre nous ne devrait y aller.\nI don't think any of us should go.\tJe ne pense pas qu'aucune d'entre nous ne devrait y aller.\nI don't think it'll rain tomorrow.\tJe ne crois pas qu'il va pleuvoir demain.\nI don't think that's allowed here.\tJe ne pense pas que cela soit autorisé ici.\nI don't think this is a good idea.\tJe ne pense pas que ce soit une bonne idée.\nI don't think your plan will work.\tJe ne pense pas que ton plan va marcher.\nI don't think your plan will work.\tJe ne pense pas que votre plan va fonctionner.\nI don't understand how this works.\tJe ne comprends pas comment ça marche.\nI don't want to be alone with Tom.\tJe ne veux pas être seul avec Tom.\nI don't want to be alone with Tom.\tJe ne veux pas être seule avec Tom.\nI don't want to be your boyfriend.\tJe ne veux pas être ton petit ami.\nI don't want to be your boyfriend.\tJe ne veux pas être ton copain.\nI don't want to do anything risky.\tJe ne veux rien faire de risqué.\nI don't want to go back to Boston.\tJe ne veux pas retourner à Boston.\nI don't want to go back to prison.\tJe ne veux pas retourner en prison.\nI don't want to hear your excuses.\tJe ne veux pas entendre tes excuses.\nI don't want to lose my boyfriend.\tJe ne veux pas perdre mon petit copain.\nI don't want to lose my boyfriend.\tJe ne veux pas perdre mon petit ami.\nI don't want to meet your parents.\tJe ne veux pas rencontrer vos parents.\nI don't want to meet your parents.\tJe ne veux pas rencontrer tes parents.\nI don't want to raise false hopes.\tJe ne veux pas générer de faux espoirs.\nI don't want to see anybody today.\tAujourd'hui je ne veux voir personne.\nI don't want to step on your toes.\tJe ne veux pas te marcher sur les orteils.\nI don't want to tell my boyfriend.\tJe ne veux pas le dire à mon petit ami.\nI don't want to wake my neighbors.\tJe ne veux pas réveiller mes voisins.\nI exchanged a camera for a guitar.\tJ'ai échangé mon appareil-photo contre une guitare.\nI expect to sing better next time.\tJ'espère chanter mieux la prochaine fois.\nI explained the procedures to him.\tJe lui ai expliqué les procédures.\nI fail to understand his true aim.\tJe n'arrive pas à comprendre son véritable objectif.\nI feel inclined to agree with her.\tJe suis tenté d'être en accord avec elle.\nI feel like I could sleep all day.\tJe sens que je pourrais dormir toute la journée.\nI feel so happy when I'm with you.\tJe me sens tellement heureux lorsque je suis avec toi.\nI feel so happy when I'm with you.\tJe me sens tellement heureux lorsque je suis avec vous.\nI feel so happy when I'm with you.\tJe me sens tellement heureuse lorsque je suis avec toi.\nI feel so happy when I'm with you.\tJe me sens tellement heureuse lorsque je suis avec vous.\nI felt my heart beating violently.\tJ’ai senti mon cœur battre violemment.\nI felt my heart beating violently.\tJe sentis mon cœur battre violemment.\nI figured I could be of some help.\tJ'ai pensé que je pourrais être utile.\nI figured I might be able to help.\tJe me suis imaginée que je pourrais être en mesure de donner un coup de main.\nI figured I might be able to help.\tJe me suis imaginé que je pourrais être en mesure de donner un coup de main.\nI figured Tom would never find it.\tJ'ai supposé que Tom n'allait jamais le trouver.\nI figured you could use some help.\tJ'ai pensé que tu ne refuserais pas un coup de main.\nI figured you could use some help.\tJ'ai pensé que vous ne refuseriez pas d'aide.\nI finally found out what happened.\tJ'ai enfin découvert ce qui s'est passé.\nI finished my work at six o'clock.\tJ'ai fini mon travail à six heures.\nI forgot my shopping list at home.\tJ’ai oublié ma liste de courses à la maison.\nI forgot to tell Tom when to come.\tJ'ai oublié de dire à Tom quand venir.\nI forgot to tell you when to come.\tJ'ai oublié de vous indiquer quand venir.\nI forgot to tell you when to come.\tJ'ai oublié de t'indiquer quand venir.\nI found a good Mexican restaurant.\tJ'ai trouvé un bon restaurant mexicain.\nI found the earring that you lost.\tJ'ai trouvé la boucle d'oreille que tu avais perdue.\nI found the earring that you lost.\tJ'ai trouvé la boucle d'oreille que vous aviez perdue.\nI found the key I was looking for.\tJ'ai trouvé la clef que j'avais cherchée.\nI found this watch at the station.\tJ’ai trouvé cette montre à la gare.\nI get drunk at least once a month.\tJe me saoule au moins une fois par mois.\nI go to any party I am invited to.\tJe vais à n'importe quelle fête où je suis invité.\nI go to any party I am invited to.\tJe vais à n'importe quelle fête à laquelle je suis invité.\nI go to any party I am invited to.\tJe me rends à n'importe quelle fête où je suis invité.\nI go to any party I am invited to.\tJe me rends à n'importe quelle fête à laquelle je suis invité.\nI go to any party I am invited to.\tJe vais à n'importe quelle fête à laquelle je suis invitée.\nI go to any party I am invited to.\tJe me rends à n'importe quelle fête où je suis invitée.\nI go to any party I am invited to.\tJe vais à n'importe quelle fête où je suis invitée.\nI go to the barber's once a month.\tJe vais chez le coiffeur une fois par mois.\nI got a famous singer's autograph.\tJ'ai eu l'autographe d'un chanteur célèbre.\nI got a long letter from my folks.\tJ'ai reçu une longue lettre de mes parents.\nI got a telescope for my birthday.\tJ'ai reçu un téléscope pour mon anniversaire.\nI got a temporary job at the firm.\tJ'ai un job temporaire dans l'entreprise.\nI got five hours sleep last night.\tJ'ai dormi cinq heures, cette nuit.\nI got five hours sleep last night.\tJ'ai dormi cinq heures, la nuit dernière.\nI got my leg hurt in the accident.\tJe me suis fait mal à la jambe dans l'accident.\nI graduated from Kyoto University.\tJ'ai été diplômé de l'université de Kyôto.\nI guess it depends on the weather.\tJ'imagine que ça dépend du temps.\nI guess it doesn't matter anymore.\tJe suppose que ça n'a plus d'importance.\nI guess that's all I need to know.\tJe suppose que c'est tout ce que j'ai besoin de savoir.\nI guess this still belongs to you.\tJe suppose que ceci t'appartient toujours ?\nI had a dreadful dream last night.\tJ'ai fait un rêve épouvantable cette nuit.\nI had a feeling you would be late.\tJ'ai eu le sentiment que vous seriez en retard.\nI had a feeling you would be late.\tJ'ai eu le sentiment que tu serais en retard.\nI had a good time during the trip.\tJe me suis bien amusé pendant ce voyage.\nI had a good time during the trip.\tJe me suis éclaté pendant ce voyage.\nI had a good time during the trip.\tJe me suis bien amusée pendant ce voyage.\nI had a good time during the trip.\tJe me suis éclatée pendant ce voyage.\nI had a horrible dream last night.\tJ'ai fait un horrible rêve, la nuit dernière.\nI had a little fever this morning.\tJ'avais un peu de fièvre ce matin.\nI had a little help from a friend.\tJ'ai reçu un peu d'aide d'un ami.\nI had a little help from a friend.\tJ'ai reçu un peu d'aide d'une amie.\nI had a pleasant dream last night.\tJ'ai fait un rêve agréable la nuit dernière.\nI had a really great time tonight.\tJ'ai passé un très bon moment ce soir.\nI had a situation to take care of.\tIl m'a fallu prendre soin de la situation.\nI had a terrible dream last night.\tJ'ai fait un rêve terrible la nuit dernière.\nI had expected him at the meeting.\tJ'avais espéré qu'il assisterait à la réunion.\nI had expected him at the meeting.\tJ'avais compté sur lui à la réunion.\nI had him write the letter for me.\tJe lui ai fait écrire la lettre pour moi.\nI had my wallet stolen on the bus.\tJe me suis fait voler mon portefeuille dans le bus.\nI had no idea what I should write.\tJe n'avais aucune idée de ce que je devais écrire.\nI had problems I had to deal with.\tJ'ai eu des problèmes qu'il m'a fallu traiter.\nI had some things to take care of.\tJ'ai eu des choses dont j'ai dû prendre soin.\nI had to get everyone's attention.\tIl me fallait recueillir l'attention de tout le monde.\nI had to get everyone's attention.\tIl me fallait capter l'attention de tout le monde.\nI hardly got any sleep last night.\tJ'ai mal dormi la nuit dernière.\nI hate it when Tom and Mary fight.\tJe déteste quand Tom et Mary se battent.\nI hate it when Tom and Mary fight.\tJe déteste quand Tom et Mary se disputent.\nI have a great deal to do tonight.\tJ'ai beaucoup de choses à faire ce soir.\nI have a little something for you.\tJ'ai un petit quelque chose pour toi.\nI have a little something for you.\tJ'ai un petit quelque chose pour vous.\nI have a lot of problems to solve.\tJ'ai un tas de problèmes à résoudre.\nI have a right to be on this ship.\tJ'ai le droit de me trouver sur ce navire.\nI have a score to settle with him.\tJ'ai un compte à régler avec lui.\nI have already changed my clothes.\tJe me suis déjà changé.\nI have already read today's paper.\tJ'ai déjà lu le journal d'aujourd'hui.\nI have an urgent message from Tom.\tJ'ai un message urgent de Tom.\nI have decided to learn shorthand.\tJ'ai décidé d'apprendre la sténographie.\nI have eight brothers and sisters.\tJ'ai huit frères et sœurs.\nI have enjoyed reading this novel.\tCe roman m'a bien plu.\nI have enjoyed reading this novel.\tJ'ai lu ce roman avec plaisir.\nI have good news in store for you.\tJ'ai de bonnes nouvelles en réserve pour toi.\nI have good news in store for you.\tJ'ai de bonnes nouvelles en réserve pour vous.\nI have just come back from school.\tJe viens de rentrer de l'école.\nI have just finished eating lunch.\tJ'ai juste fini de déjeuner.\nI have just returned from Britain.\tJe viens de rentrer de Grande-Bretagne.\nI have just washed all the dishes.\tJe viens juste de laver tous les plats.\nI have known that for a long time.\tIl y a belle lurette que je le savais.\nI have little interest in history.\tJe porte peu d'intérêt à l'Histoire.\nI have little interest in history.\tJ'ai peu d'intérêt pour l'Histoire.\nI have lived here for a long time.\tJ'ai vécu ici pendant longtemps.\nI have lived here for a long time.\tJ'habite ici depuis longtemps.\nI have many friends I can talk to.\tJ'ai de nombreux amis auxquels je peux parler.\nI have many friends I can talk to.\tJ'ai de nombreuses amies auxquelles je peux parler.\nI have never seen anyone like him.\tJe n'ai jamais vu quelqu'un comme lui.\nI have never seen anyone like you.\tJe n'ai jamais vu quelqu'un comme toi.\nI have never seen anyone like you.\tJe n'ai jamais vu quelqu'un comme vous.\nI have no idea what that could be.\tJe n'ai aucune idée de ce que cela pourrait être.\nI have no idea what the reason is.\tJe n'ai aucune idée de ce qu'en est la raison.\nI have no idea who that is either.\tJe n'ai aucune idée non plus de qui il s'agit.\nI have no more money in my wallet.\tJe n'ai plus d'argent dans mon portefeuille.\nI have no one to blame but myself.\tJe n'ai personne d'autre à blâmer que moi-même.\nI have no one to go to for advice.\tJe n'ai personne auprès de qui trouver conseil.\nI have not been busy for two days.\tJe n'ai pas été occupé pendant deux jours.\nI have not finished breakfast yet.\tJe n'ai pas encore fini mon petit-déjeuner.\nI have nothing in common with her.\tJe n'ai rien de commun avec elle.\nI have problems with my wife, too.\tMoi aussi j'ai des problèmes avec ma femme.\nI have seen him once on the train.\tJe l'ai vu une fois dans le train.\nI have some idea of what happened.\tJ'ai une idée de ce qui est arrivé.\nI have someone I want you to meet.\tIl y a quelqu'un que je veux que tu rencontres.\nI have someone I want you to meet.\tIl y a quelqu'un que je veux que vous rencontriez.\nI have the minutes of the meeting.\tJe dispose du compte-rendu de la réunion.\nI have three chickens in my house.\tJ'ai trois poulets à la maison.\nI have to admit that you're right.\tJe dois admettre que tu as raison.\nI have to admit that you're right.\tJe dois admettre que vous avez raison.\nI have to find someone to help me.\tIl me faut trouver quelqu'un pour m'aider.\nI have two daughters and two sons.\tJ'ai deux filles et deux fils.\nI have two sons and two daughters.\tJ'ai deux fils et deux filles.\nI have visited Boston three times.\tJ'ai visité Boston trois fois.\nI haven't heard from him for ages.\tJe n'ai pas entendu parler de lui depuis des lustres.\nI haven't read all of these books.\tJe n'ai pas lu tous ces livres.\nI haven't read any of his letters.\tJe n'ai lu aucune de ses lettres.\nI haven't read both of his novels.\tJe n'ai pas lu ses deux romans.\nI haven't renewed my subscription.\tJe n'ai pas renouvelé mon abonnement.\nI haven't seen you in a long time.\tJe ne vous ai pas vu depuis longtemps.\nI haven't seen you in a long time.\tJe ne vous ai pas vue depuis longtemps.\nI haven't seen you in a long time.\tJe ne vous ai pas vus depuis longtemps.\nI haven't seen you in a long time.\tJe ne vous ai pas vues depuis longtemps.\nI haven't seen you in a long time.\tJe ne t'ai pas vu depuis longtemps.\nI haven't seen you in a long time.\tJe ne t'ai pas vue depuis longtemps.\nI haven't tried doing it that way.\tJe n'ai pas tenté de le faire ainsi.\nI haven't tried doing it that way.\tJe n'ai pas essayé de le faire de cette manière.\nI hear a dog barking in the woods.\tJ'entends un chien aboyer dans les bois.\nI heard Tom is filing for divorce.\tJ'ai entendu dire que Tom demande le divorce.\nI heard him humming in the shower.\tJe l'ai entendu chantonner sous la douche.\nI heard him humming in the shower.\tJe l'ai entendu fredonner sous la douche.\nI heard it from a reliable source.\tJe l'ai entendu d'une source fiable.\nI heard someone knock on the door.\tJ'entendis quelqu'un frapper à la porte.\nI helped you when you needed help.\tJe t'ai aidé quand tu avais besoin d'aide.\nI helped you when you needed help.\tJe vous ai aidé quand vous aviez besoin d'aide.\nI hope we didn't keep you waiting.\tVous n'avez pas trop attendu, j'espère ?\nI hope your wishes will come true.\tJ'espère que vos souhaits se réaliseront.\nI hope your wishes will come true.\tJ'espère que tes souhaits se réaliseront.\nI hung my coat in the hall closet.\tJe suspendis mon manteau dans le placard de l'entrée.\nI hung my coat in the hall closet.\tJe suspendis mon manteau dans la penderie de l'entrée.\nI hung my coat in the hall closet.\tJ'ai suspendu mon manteau dans le placard de l'entrée.\nI hung my coat in the hall closet.\tJ'ai suspendu mon manteau dans la penderie de l'entrée.\nI insist on being paid in advance.\tJe tiens à être payé à l'avance.\nI intend on fighting till the end.\tJ'ai l'intention de lutter jusqu'à la fin.\nI intended to have been a teacher.\tJ'avais l'intention de devenir enseignant.\nI intended to have been a teacher.\tJ'eus l'intention de devenir enseignant.\nI introduced her to you last week.\tJe vous l'ai présentée la semaine dernière.\nI just bought a new pair of shoes.\tJe viens d'acheter une nouvelle paire de chaussures.\nI just can't wait to go to school.\tJe suis impatient d'aller à l'école.\nI just can't wait to go to school.\tJe suis impatiente d'aller à l'école.\nI just couldn't keep my eyes open.\tJe ne pouvais simplement pas garder les yeux ouverts.\nI just couldn't resist doing that.\tJe n'ai simplement pas pu résister à le faire.\nI just did what you told me to do.\tJ'ai simplement fait ce que vous m'avez dit de faire.\nI just did what you told me to do.\tJ'ai simplement fait ce que tu m'as dit de faire.\nI just don't get modern sculpture.\tJe ne comprends vraiment pas la sculpture moderne.\nI just don't want to let you down.\tJe ne veux tout simplement pas te laisser tomber.\nI just don't want to let you down.\tJe ne veux tout simplement pas vous laisser tomber.\nI just don't want you to get hurt.\tJe ne veux tout simplement pas que vous soyez blessé.\nI just don't want you to get hurt.\tJe ne veux tout simplement pas que vous soyez blessées.\nI just don't want you to get hurt.\tJe ne veux tout simplement pas que vous soyez blessée.\nI just don't want you to get hurt.\tJe ne veux tout simplement pas que vous soyez blessés.\nI just don't want you to get hurt.\tJe ne veux tout simplement pas que tu sois blessé.\nI just don't want you to get hurt.\tJe ne veux tout simplement pas que tu sois blessée.\nI just don't want you to get hurt.\tJe ne veux pas que tu sois blessé, un point c'est tout.\nI just don't want you to get hurt.\tJe ne veux pas que tu sois blessée, un point c'est tout.\nI just don't want you to get hurt.\tJe ne veux pas que vous soyez blessé, un point c'est tout.\nI just don't want you to get hurt.\tJe ne veux pas que vous soyez blessés, un point c'est tout.\nI just don't want you to get hurt.\tJe ne veux pas que vous soyez blessées, un point c'est tout.\nI just don't want you to get hurt.\tJe ne veux pas que vous soyez blessée, un point c'est tout.\nI just followed your instructions.\tJe n'ai fait que suivre vos instructions.\nI just followed your instructions.\tJe n'ai fait que suivre tes instructions.\nI just got a call from the police.\tJe viens d'avoir un appel de la police.\nI just graduated from high school.\tJe viens d'avoir mon bac.\nI just had to see this for myself.\tIl fallait que je vois ça de mes propres yeux.\nI just have a couple of questions.\tJe n'ai que quelques questions.\nI just have one other thing to do.\tJ'ai juste une autre chose à faire.\nI just need to know what happened.\tIl me faut juste savoir ce qui s'est passé.\nI just started to learn Esperanto.\tJ'ai commencé à apprendre l'espéranto.\nI just want Tom to leave me alone.\tJe veux juste que Tom me laisse tranquille.\nI just want a little more of that.\tJe veux juste un peu plus de ça.\nI just want a little more of that.\tJ'en veux juste un peu plus.\nI just want them both to be happy.\tJe veux simplement qu'ils soient tous les deux heureux.\nI just want them both to be happy.\tJe veux simplement qu'elles soient toutes les deux heureuses.\nI just want to be a good neighbor.\tJe veux être un bon voisin, un point c'est tout.\nI just want to be a good neighbor.\tJe veux tout simplement être un bon voisin.\nI just want to be a good neighbor.\tJe veux tout simplement être une bonne voisine.\nI just want to be a good neighbor.\tJe veux être une bonne voisine, un point c'est tout.\nI just want to check on something.\tJe veux seulement vérifier quelque chose.\nI just want to live a normal life.\tJe veux simplement mener une vie normale.\nI just want to tell Tom something.\tJe veux juste dire quelque chose à Tom.\nI just want tonight to be special.\tJe veux simplement que la soirée d'aujourd'hui soit spéciale.\nI just want you to know I'm sorry.\tJe veux juste que tu saches que je suis désolé.\nI just want you to know I'm sorry.\tJe veux juste que tu saches que je suis désolée.\nI just want you to know I'm sorry.\tJe veux juste que vous sachiez que je suis désolé.\nI just want you to know I'm sorry.\tJe veux juste que vous sachiez que je suis désolée.\nI just want you to think about it.\tJe veux simplement que vous y réfléchissiez.\nI just want you to think about it.\tJe veux simplement que tu y réfléchisses.\nI killed two birds with one stone.\tJ'ai fait d'une pierre deux coups.\nI knew this day was going to come.\tJe savais que ce jour allait advenir.\nI knew this would be hard for you.\tJe savais que ce serait dur pour toi.\nI knew this would be hard for you.\tJe savais que ce serait dur pour vous.\nI know Tom talks about Mary a lot.\tJe sais que Tom parle beaucoup de Mary.\nI know exactly where I want to go.\tJe sais exactement où je veux me rendre.\nI know exactly where I want to go.\tJe sais exactement où je veux aller.\nI know my keys are here somewhere.\tJe sais que mes clés sont quelque part par là.\nI know several good places to eat.\tJe connais plusieurs bons endroits où manger.\nI know the cure for what ails you.\tJe connais le remède à ce qui te fait souffrir.\nI know the cure for what ails you.\tJe connais le remède à ce qui vous fait souffrir.\nI know what it's like to be alone.\tJe sais ce qu'est être seul.\nI know what it's like to be alone.\tJe sais ce que c'est d'être seul.\nI know what it's like to be alone.\tJe sais ce qu'est être seule.\nI know what it's like to be alone.\tJe sais ce que c'est d'être seule.\nI know what the three of you want.\tJe sais ce que vous voulez tous les trois.\nI know what the three of you want.\tJe sais ce que vous voulez toutes les trois.\nI know what they'll want me to do.\tJe sais ce qu'ils voudront que je fasse.\nI know what they'll want me to do.\tJe sais ce qu'elles voudront que je fasse.\nI know you've been trying to help.\tJe sais que vous avez essayé de nous aider.\nI know you've been trying to help.\tJe sais que vous avez essayé de l'aider.\nI know you've been trying to help.\tJe sais que vous avez essayé de les aider.\nI know you've been trying to help.\tJe sais que vous avez essayé de m'aider.\nI know you've been trying to help.\tJe sais que tu as essayé de nous aider.\nI know you've been trying to help.\tJe sais que tu as essayé de m'aider.\nI know you've been trying to help.\tJe sais que tu as essayé de l'aider.\nI know you've been trying to help.\tJe sais que tu as essayé de les aider.\nI learned a lot from what I heard.\tJ'ai beaucoup appris de ce que j'ai entendu.\nI learned a valuable lesson today.\tJ'ai pris une précieuse leçon, aujourd'hui.\nI left Tom a message this morning.\tJ'ai laissé un message à Tom ce matin.\nI left my address book in my room.\tJ'ai oublié mon carnet d'adresse dans ma chambre.\nI left my jacket in the classroom.\tJ'ai laissé ma veste dans la classe.\nI left my jacket in the classroom.\tJ'ai laissé ma veste dans la salle de classe.\nI like learning ancient languages.\tJ’aime apprendre des langues anciennes.\nI like red wine better than white.\tJ'aime le vin rouge plus que le vin blanc.\nI like red wine better than white.\tJe préfère le vin rouge au vin blanc.\nI like the way this flower smells.\tJ'aime le parfum de cette fleur.\nI like this coat. May I try it on?\tJ'aime bien ce manteau. Je peux l'essayer ?\nI like to relax with a good novel.\tJ'aime me détendre avec un bon roman.\nI like to study foreign languages.\tJ'aime étudier les langues étrangères.\nI listened to some CDs last night.\tJ'ai écouté quelques CDs la nuit dernière.\nI live in a small fishing village.\tJe vis dans un petit village de pêcheurs.\nI live in a small fishing village.\tJ'habite dans un petit village de pêcheurs.\nI lived in Sasayama two years ago.\tJ'ai vécu à Sasayama il y a deux ans.\nI love listening to you guys sing.\tJ'adore vous écouter chanter.\nI love my grandfather's anecdotes.\tJ'adore les anecdotes de mon grand-père.\nI love old prewar gangster movies.\tJ'aime les vieux films de gangsters d'avant-guerre.\nI love you more and more each day.\tJe vous aime de plus en plus chaque jour.\nI love you more and more each day.\tJe t'aime de plus en plus chaque jour.\nI managed to catch the last train.\tJ'ai réussi à prendre le dernier train.\nI may not be completely objective.\tIl se peut que je ne sois pas complètement objectif.\nI met Tom at his office in Boston.\tJ'ai rencontré Tom à son bureau à Boston.\nI met an old man near the station.\tJ'ai rencontré un vieil homme près de la gare.\nI met her on a certain winter day.\tJe la rencontrai un certain jour d'hiver.\nI met him on the street by chance.\tJe l'ai rencontré par chance dans la rue.\nI met him then for the first time.\tJe le rencontrai alors pour la première fois.\nI met some hikers on the mountain.\tJ'ai rencontré des randonneurs dans la montagne.\nI might not be at tonight's party.\tIl se pourrait que je ne sois pas à la fête de ce soir.\nI missed the bus by three minutes.\tJ'ai manqué le bus de trois minutes.\nI must adjust my watch. It's slow.\tJe dois régler ma montre. Elle est lente.\nI must remind you of your promise.\tIl faut que je te rappelle ta promesse.\nI myself will repair that machine.\tJe réparerai cette machine tout seul.\nI need to get to this meeting now.\tJe dois aller à cette réunion maintenant.\nI need to put the children to bed.\tIl faut que j'aille mettre les enfants au lit.\nI never imagined meeting you here.\tJe n'aurais jamais imaginé te rencontrer ici.\nI never really knew what happened.\tJe n’ai jamais vraiment su ce qu’il s’était passé.\nI never should've gotten divorced.\tJamais je n’aurais dû divorcer.\nI never should've listened to you.\tJamais je n’aurais dû t’écouter.\nI never thought I'd see Tom again.\tJe n’aurais jamais pensé que je reverrais Tom.\nI never thought I'd see Tom again.\tJe n’aurais jamais pensé revoir Tom.\nI never thought I'd see her there.\tJe n'aurais jamais pensé que je la verrais là.\nI never thought I'd see her there.\tJe n’aurais jamais pensé la voir là.\nI never thought about it that way.\tJe n'y ai jamais pensé de cette manière.\nI never thought about it that way.\tJe n'y ai jamais songé de cette manière.\nI never thought that would happen.\tJe n'ai jamais pensé que ça arriverait.\nI never thought that would happen.\tJe n'ai jamais pensé que ça surviendrait.\nI never thought that would happen.\tJe n'ai jamais pensé que ça aurait lieu.\nI never want to get married again.\tJe ne veux jamais plus me marier.\nI never want to talk to you again.\tJe ne veux plus jamais te parler.\nI never wanted all this to happen.\tJe n'ai jamais voulu que tout ça arrive.\nI object to her going there alone.\tJe ne suis pas d'accord pour qu'elle y aille seule.\nI object to her going there alone.\tJe m'oppose à ce qu'elle y aille seule.\nI object to her going there alone.\tJe m'oppose à ce qu'elle s'y rende seule.\nI objected to his paying the bill.\tJe m'opposai à ce qu'il paie la note.\nI often catch colds in the winter.\tJe contracte souvent des rhumes en hiver.\nI often catch colds in the winter.\tJ'attrape souvent des rhumes en hiver.\nI only found out about that today.\tJe ne l'ai découvert qu'aujourd'hui.\nI only found out about that today.\tJe l'ai seulement découvert aujourd'hui.\nI owe what I am today to my uncle.\tJe dois à mon oncle ce que je suis aujourd'hui.\nI owe what I am today to my uncle.\tJe dois à mon oncle d'être ce que je suis aujourd'hui.\nI persuaded him that he was wrong.\tJe le persuadai qu'il avait tort.\nI planned to introduce him to her.\tJ'ai prévu de le lui présenter.\nI played with the baby on my knee.\tJ'ai joué avec le bébé sur mon genou.\nI prefer being poor to being rich.\tJe préfère être pauvre que riche.\nI prefer working to doing nothing.\tJe préfère travailler que de ne rien faire.\nI presented him with a gold watch.\tJe lui ai offert une montre en or.\nI presented my ticket at the door.\tJ'ai présenté mon billet à la porte.\nI probably won't watch TV tonight.\tJe ne vais probablement pas regarder la télévision ce soir.\nI promise you I won't do it again.\tJe vous promets que je ne le ferai plus.\nI promise you I won't do it again.\tJe te promets que je ne le ferai plus.\nI promise you I'll look after you.\tJe te promets de m'occuper de toi.\nI promise you I'll look after you.\tJe te promets que je m'occuperai de toi.\nI promise you I'll look after you.\tJe vous promets de m'occuper de vous.\nI promise you I'll look after you.\tJe vous promets que je m'occuperai de vous.\nI promised I'd tell you the truth.\tJ'ai promis que je te dirais la vérité.\nI promised I'd tell you the truth.\tJ'ai promis que je vous dirais la vérité.\nI put your suitcases in your room.\tJe mets vos valises dans votre chambre.\nI ran away from the training camp.\tJe me suis enfui du camp d'entraînement.\nI reached the village before dark.\tJe suis arrivé au village avant qu'il ne fasse nuit.\nI read a lot of books last summer.\tJ'ai lu beaucoup de livres l'été dernier.\nI read about him in the newspaper.\tJ'ai lu à son sujet dans le journal.\nI read the letter again and again.\tJ'ai relu la lettre encore et encore.\nI really appreciate all your help.\tJ'apprécie vraiment toute votre aide.\nI really appreciate all your help.\tJ'apprécie vraiment toute ton aide.\nI really don't have time for this.\tJe n'ai vraiment pas de temps pour ça.\nI really have nothing else to say.\tJe n'ai vraiment rien d'autre à dire.\nI really should be getting to bed.\tJe devrais vraiment me mettre au lit.\nI really wish I could believe you.\tJe souhaiterais vraiment pouvoir vous croire.\nI really wish I could believe you.\tJe souhaiterais vraiment pouvoir te croire.\nI received your message yesterday.\tJ'ai reçu votre message hier.\nI received your message yesterday.\tJ'ai reçu ton message hier.\nI refuse to be ignored any longer.\tJe refuse d'être ignoré plus longtemps.\nI regret having done such a thing.\tJe regrette d'avoir fait une telle chose.\nI remember everything you tell me.\tJe me rappelle tout ce que vous me dites.\nI remember everything you tell me.\tJe me rappelle tout ce que tu me dis.\nI remember everything you tell me.\tJe me souviens de tout ce que vous me dites.\nI remember everything you tell me.\tJe me souviens de tout ce que tu me dis.\nI remember hearing the story once.\tJe me rappelle avoir entendu cette histoire déjà une fois.\nI remember one poem in particular.\tJe me souviens d'un poème en particulier.\nI remember that I closed the door.\tJe me rappelle avoir fermé la porte.\nI remember the warmth of his arms.\tJe me rappelle la chaleur de ses bras.\nI repaid him the money I owed him.\tJe lui ai remboursé l'argent que je lui devais.\nI sat down and opened my notebook.\tJe m'assis et ouvris mon carnet.\nI sat down and opened my notebook.\tJe m'assis et ouvris mon ordinateur portable.\nI saw Tom and Mary leave together.\tJ'ai vu Tom et Mary partir ensemble.\nI saw Tom kill the neighbor's cat.\tJ'ai vu Tom tuer le chat du voisin.\nI saw Tom kill the neighbor's cat.\tJ'ai vu Tom tuer le chat de la voisine.\nI saw a cat running after the dog.\tJ'ai vu un chat courir après le chien.\nI saw a dog swim across the river.\tJe vis un chien traverser la rivière en nageant.\nI saw a dog swim across the river.\tJ'ai vu un chien traverser la rivière en nageant.\nI saw a horse galloping toward me.\tJe vis un cheval galoper dans ma direction.\nI saw a stranger enter that house.\tJe vis un étranger entrer dans cette maison.\nI saw a stranger enter that house.\tJe vis un étranger pénétrer dans cette maison.\nI saw a stranger enter that house.\tJ'ai vu un étranger entrer dans cette maison.\nI saw a stranger enter that house.\tJ'ai vu un étranger pénétrer dans cette maison.\nI saw a white bird on my way home.\tEn rentrant à la maison, j'ai vu un oiseau blanc.\nI saw my reflection in the window.\tJe vis mon reflet dans la vitre.\nI saw my reflection in the window.\tJ'ai vu mon reflet dans la vitre.\nI say this from my own experience.\tJe dis ça à partir de mon expérience personnelle.\nI screamed at the top of my lungs.\tJ'ai crié à gorge déployée.\nI screamed at the top of my lungs.\tJe criai à gorge déployée.\nI sharpened a pencil with a knife.\tJ'ai aiguisé un crayon avec un couteau.\nI should have done this weeks ago.\tJ'aurais dû le faire il y a des semaines.\nI should have done this years ago.\tJ'aurais dû faire ça il y a des années.\nI should've gotten that promotion.\tJ'aurais dû recevoir cette promotion.\nI should've gotten that promotion.\tJ'aurais dû obtenir cette promotion.\nI should've guessed you'd be busy.\tJ'aurais dû deviner que tu serais occupé.\nI should've guessed you'd be busy.\tJ'aurais dû deviner que tu serais occupée.\nI should've guessed you'd be busy.\tJ'aurais dû deviner que vous seriez occupé.\nI should've guessed you'd be busy.\tJ'aurais dû deviner que vous seriez occupés.\nI should've guessed you'd be busy.\tJ'aurais dû deviner que vous seriez occupée.\nI should've guessed you'd be busy.\tJ'aurais dû deviner que vous seriez occupées.\nI shouldn't have to do that again.\tJe ne devrais pas avoir à le refaire.\nI sometimes hear rumors about her.\tJ'entends parfois des rumeurs à son sujet.\nI spent all morning chopping wood.\tJ'ai passé toute la matinée à fendre du bois.\nI spent twelve hours on the train.\tJ’ai passé douze heures dans le train.\nI spilled my coffee on the carpet.\tJ'ai renversé mon café sur le tapis.\nI stayed at Tom's house in Boston.\tJ'ai séjourné chez Tom à Boston.\nI stayed at Tom's house in Boston.\tJe suis resté chez Tom à Boston.\nI stayed home because of the rain.\tJe suis resté à la maison à cause de la pluie.\nI still have trouble believing it.\tJ'ai encore du mal à y croire.\nI still need to renew my passport.\tIl me reste à renouveler mon passeport.\nI strongly advise you to use this.\tJe vous conseille vivement d'employer ceci.\nI strongly advise you to use this.\tJe te conseille vivement d'employer ceci.\nI succeeded because of his advice.\tGrâce à son conseil, j'ai réussi.\nI suggest we change clothes first.\tJe suggère que nous changions d'abord de vêtements.\nI support you one hundred percent.\tJe te soutiens à cent pour cent.\nI support you one hundred percent.\tJe vous soutiens à cent pour cent.\nI suppose I felt a little jealous.\tJe pense que je suis un peu jaloux.\nI suppose we have nothing to lose.\tJe suppose que nous n'avons rien à perdre.\nI think I know why Tom isn't here.\tJe pense savoir pourquoi Tom n'est pas ici.\nI think I know why Tom isn't here.\tJe pense que je sais pourquoi Tom n'est pas ici.\nI think I look fat in these jeans.\tJe pense avoir l'air grosse, dans ce jean.\nI think I look fat in these jeans.\tJe pense avoir l'air gros, dans ce jean.\nI think I look fat in these jeans.\tJe pense que j'ai l'air grosse, dans ce jean.\nI think I look fat in these jeans.\tJe pense que j'ai l'air gros, dans ce jean.\nI think I'll lie down for a while.\tJe pense que je vais m'allonger un peu.\nI think I've got a touch of fever.\tJe pense que j'ai attrapé un peu de fièvre.\nI think Tom did a really nice job.\tJe pense que Tom a fait du très bon travail.\nI think Tom did the best he could.\tJe pense que Tom a fait de son mieux.\nI think Tom didn't understand you.\tJe pense que Tom ne t'a pas compris.\nI think Tom didn't understand you.\tJe pense que Tom ne vous a pas compris.\nI think Tom is going to come back.\tJe pense que Tom va revenir.\nI think Tom knows what he's doing.\tJe pense que Tom sait ce qu'il fait.\nI think Tom wants to come with us.\tJe pense que Tom veut venir avec nous.\nI think Tom wants to kill himself.\tJe pense que Tom veut se tuer.\nI think Tom will be well prepared.\tJe pense que Tom sera bien préparé.\nI think he is something of a poet.\tJe crois qu'il a quelque chose d'un poète.\nI think he will come to our party.\tJe pense qu'il viendra à notre fête.\nI think it's better not to try it.\tJe pense qu'il vaut mieux ne pas essayer.\nI think it's time for me to leave.\tJe pense qu'il est temps pour moi de partir.\nI think it's time for me to split.\tJe pense qu'il est temps pour moi de rompre.\nI think it's time for me to study.\tJe pense qu'il est temps pour moi d'étudier.\nI think it's time for us to leave.\tJe pense qu'il est temps, pour nous, de partir.\nI think my German isn't very good.\tJe pense que mon allemand n'est pas très bon.\nI think my German isn't very good.\tJe pense que mon Allemand n'est pas très bon.\nI think my Japanese is really bad.\tJe pense que mon japonais est vraiment mauvais.\nI think my Japanese is really bad.\tJe pense que mon japonais est à chier.\nI think perhaps Tom can help Mary.\tJe pense que Tom peut peut-être donner un coup de main à Mary.\nI think that Tom is an honest man.\tJe pense que Tom est honnête homme.\nI think that might be a good idea.\tJe pense que ce serait une bonne idée.\nI think there's been some mistake.\tJe pense qu'il y a eu une erreur.\nI think we both know why I'm here.\tJe pense que nous savons tous deux pourquoi je suis ici.\nI think we both know why I'm here.\tJe pense que nous savons toutes deux pourquoi je suis ici.\nI think we both know why I'm here.\tJe pense que nous savons tous les deux pourquoi je suis ici.\nI think we both know why I'm here.\tJe pense que nous savons toutes les deux pourquoi je suis ici.\nI think we can work something out.\tJe pense que nous pouvons arranger quelque chose.\nI think we could be great friends.\tJe pense que nous pourrions être de grands amis.\nI think we should all go together.\tJe pense que nous devrions y aller tous ensemble.\nI think we should all go together.\tJe pense que nous devrions y aller toutes ensemble.\nI think we should be getting back.\tJe pense que nous devrions commencer à rentrer.\nI think we should call the police.\tJe pense que nous devrions appeler la police.\nI think we should just be friends.\tJe pense que nous devrions être simplement amis.\nI think we should stop doing that.\tJe pense que nous devrions arrêter de faire ça.\nI think we'll make it if we hurry.\tJe pense que nous pouvons y arriver si nous nous dépêchons.\nI think you and he wanna be alone.\tJe pense que toi et lui voulez être seuls.\nI think you made the right choice.\tJe pense que vous avez fait le bon choix.\nI think you made the right choice.\tJe pense que tu as fait le bon choix.\nI think you might be overreacting.\tJe pense qu'il se pourrait que tu dramatises.\nI think you might be overreacting.\tJe pense qu'il se pourrait que vous dramatisiez.\nI think you might be overreacting.\tJe pense qu'il se pourrait que tu réagisses de manière excessive.\nI think you might be overreacting.\tJe pense qu'il se pourrait que vous réagissiez de manière excessive.\nI think you must be getting tired.\tJe pense que tu dois être fatigué.\nI think you must be getting tired.\tJe pense que tu dois être fatiguée.\nI think you must be getting tired.\tJe pense que vous devez être fatigué.\nI think you must be getting tired.\tJe pense que vous devez être fatiguée.\nI think you must be getting tired.\tJe pense que vous devez être fatiguées.\nI think you must be getting tired.\tJe pense que vous devez être fatigués.\nI think you ought to rest a while.\tJe pense que vous devriez vous reposer un moment.\nI think you ought to rest a while.\tJe pense que tu devrais te reposer un moment.\nI think you owe me an explanation.\tJe pense que tu me dois une explication.\nI think you owe me an explanation.\tJe pense que vous me devez une explication.\nI think you should do it yourself.\tJe pense que tu devrais le faire toi-même.\nI think you're on the right track.\tJe pense que tu es sur la bonne voie.\nI think you're sitting in my seat.\tJe pense que vous êtes assis à ma place.\nI think you've been very immature.\tJe pense que tu as été très immature.\nI think you've been very immature.\tJe pense que vous avez été très immature.\nI thought I might be able to help.\tJ'ai pensé que je pourrais peut-être être utile.\nI thought I'd never see you again.\tJe pensais ne jamais te revoir.\nI thought I'd never see you again.\tJe pensais ne jamais vous revoir.\nI thought I'd never see you again.\tJe pensais que je ne te reverrais jamais.\nI thought I'd never see you again.\tJe pensais que je ne vous reverrais jamais.\nI thought Tom would be at the bar.\tJe pensais que Tom serait au bar.\nI thought Tom would want the work.\tJe pensais que Tom voudrait le travail.\nI thought it might be of some use.\tJe pensais que ça pourrait être utile.\nI thought it would make you laugh.\tJe pensais que ça te ferait rire.\nI thought the food was too greasy.\tJ'ai pensé que la nourriture était trop grasse.\nI thought the questions were easy.\tJe pensais que les questions étaient faciles.\nI thought we had an understanding.\tJe pensais que nous nous étions entendus.\nI thought we had an understanding.\tJe pensais que nous nous étions entendues.\nI thought you had all the answers.\tJe pensais que tu avais toutes les réponses.\nI thought you had all the answers.\tJe pensais que tu disposais de toutes les réponses.\nI thought you had all the answers.\tJe pensais que vous aviez toutes les réponses.\nI thought you had all the answers.\tJe pensais que vous disposiez de toutes les réponses.\nI thought your house was downtown.\tJe pensais que ta maison se trouvait au centre-ville.\nI thought your house was downtown.\tJe pensais que votre maison se situait au centre-ville.\nI told you not to call me at work.\tJe vous ai dit de ne pas m'appeler au travail.\nI told you not to call me at work.\tJe t'ai dit de ne pas m'appeler au travail.\nI took on the job of proofreading.\tJ'ai pris un emploi de correcteur.\nI took part in the sporting event.\tJe pris part à la manifestation sportive.\nI took the liberty of calling her.\tJ'ai pris la liberté de l'appeler.\nI took the liberty of calling her.\tJe me suis permis de l'appeler.\nI totally agree with what you say.\tJe suis entièrement d'accord avec ce que tu dis.\nI totally agree with what you say.\tJe suis entièrement d'accord avec ce que vous dites.\nI tried writing with my left hand.\tJ'ai tenté d'écrire de la main gauche.\nI try to never eat after 8:00 p.m.\tJ'essaie de ne jamais manger après huit heures.\nI usually get up at eight o'clock.\tJ'ai l'habitude de me lever à huit heures.\nI usually got to bed about eleven.\tJe vais d'habitude au lit vers onze heures environ.\nI value your friendship very much.\tJ'apprécie énormément ton amitié.\nI want a massage. I need to relax.\tJ’ai envie d’un massage. J'ai besoin de me détendre.\nI want a tie to go with this suit.\tJe veux une cravate qui aille avec ce costume.\nI want for you and me to be happy.\tJe veux que vous et moi soyons heureux.\nI want for you and me to be happy.\tJe veux que vous et moi soyons heureuses.\nI want for you and me to be happy.\tJe veux que toi et moi soyons heureux.\nI want for you and me to be happy.\tJe veux que toi et moi soyons heureuses.\nI want my father to see the movie.\tJe veux que mon père voie le film.\nI want to be the first to do that.\tJe veux être le premier à faire ça.\nI want to be treated with respect.\tJe veux qu'on me traite avec respect.\nI want to buy a pair of ski boots.\tJe veux acheter une paire de chaussures de ski.\nI want to eat meat and vegetables.\tJe veux manger de la viande et des légumes.\nI want to hear you play the piano.\tJe veux t'entendre jouer du piano.\nI want to hear you play the piano.\tJe veux vous entendre jouer du piano.\nI want to hear you play the piano.\tJe veux t'entendre jouer au piano.\nI want to hear you play the piano.\tJe veux vous entendre jouer au piano.\nI want to keep on living with him.\tJe veux continuer à vivre avec lui.\nI want to know where it came from.\tJe veux savoir d'où c'est venu.\nI want to name the baby after you.\tJe veux donner ton nom au bébé.\nI want to name the baby after you.\tJe veux donner votre nom au bébé.\nI want to see what I'm up against.\tJe veux voir à quoi je fais face.\nI want to see what I'm up against.\tJe veux voir à quoi je me confronte.\nI want to see what I'm up against.\tJe veux voir à quoi je suis confronté.\nI want to see what I'm up against.\tJe veux voir à quoi je suis confrontée.\nI want to set the record straight.\tJe veux remettre les pendules à l'heure.\nI want to talk to you after class.\tJe veux vous parler après le cours.\nI want to talk to you after class.\tJe veux te parler après le cours.\nI want to thank you for your time.\tJe veux vous remercier pour votre temps.\nI want to thank you for your time.\tJe veux te remercier pour ton temps.\nI want to travel around the world.\tJe voudrais voyager autour du monde.\nI want what's best for both of us.\tJe veux ce qui est mieux pour nous deux.\nI want you all to be very careful.\tJe veux que vous soyez toutes très prudentes.\nI want you all to be very careful.\tJe veux que vous soyez tous très prudents.\nI want you to find out about that.\tJe veux que tu te renseignes à ce sujet.\nI want you to find out about that.\tJe veux que vous vous renseigniez à ce sujet.\nI want you to have a copy of this.\tJe veux que vous ayez une copie de ceci.\nI want you to have a copy of this.\tJe veux que tu aies une copie de ceci.\nI want you to help me clean it up.\tJe veux que tu m'aides à le nettoyer.\nI want you to help me clean it up.\tJe veux que tu m'aides à la nettoyer.\nI want you to help me clean it up.\tJe veux que vous m'aidiez à le nettoyer.\nI want you to help me clean it up.\tJe veux que vous m'aidiez à la nettoyer.\nI want you to keep your eyes open.\tJe veux que tu gardes les yeux ouverts.\nI want you to keep your eyes open.\tJe veux que vous gardiez les yeux ouverts.\nI want you to know how sorry I am.\tJe veux que vous sachiez combien je suis désolé.\nI want you to know how sorry I am.\tJe veux que vous sachiez combien je suis désolée.\nI want you to know how sorry I am.\tJe veux que tu saches combien je suis désolé.\nI want you to know how sorry I am.\tJe veux que tu saches combien je suis désolée.\nI want you to listen to this song.\tJe veux que vous écoutiez cette chanson.\nI want you to listen to this song.\tJe veux que tu écoutes cette chanson.\nI want you to look out the window.\tJe veux que vous regardiez par la fenêtre.\nI want you to look out the window.\tJe veux que tu regardes par la fenêtre.\nI want you to return to your seat.\tJe veux que tu retournes à ta place.\nI want you to return to your seat.\tJe veux que tu retournes sur ta chaise.\nI want you to return to your seat.\tJe veux que vous retourniez à votre place.\nI want you to return to your seat.\tJe veux que vous retourniez sur votre chaise.\nI want you to take a look at this.\tJe veux que tu jettes un œil à ceci.\nI want you to take a look at this.\tJe veux que vous jetiez un œil à ceci.\nI want your name and badge number.\tJe veux votre nom et votre numéro de plaque d'identification.\nI want your name and badge number.\tJe veux votre nom et votre numéro de carte d'identification.\nI want your name and badge number.\tJe veux votre nom et votre numéro de passe.\nI wanted to make you feel at home.\tJe voulais vous faire sentir comme chez vous.\nI wanted to make you feel at home.\tJe voulais te faire sentir comme chez toi.\nI wanted to see what would happen.\tJe voulais voir ce qui arriverait.\nI wanted to see what would happen.\tJe voulais voir ce qui surviendrait.\nI wanted you to have a little fun.\tJe voulais que vous ayez un peu de distraction.\nI wanted you to have a little fun.\tJe voulais que tu aies un peu de distraction.\nI was able to answer the question.\tJ'ai été capable de répondre à la question.\nI was already married at your age.\tÀ votre âge, j'étais déjà mariée.\nI was astonished by his ignorance.\tJ'étais étonné de son ignorance.\nI was born the year the war ended.\tJe suis né l'année où la guerre s'est terminée.\nI was born the year the war ended.\tJe suis née l'année où la guerre s'est terminée.\nI was born the year the war ended.\tJe suis né l'année où la guerre s'est achevée.\nI was born the year the war ended.\tJe suis née l'année où la guerre s'est achevée.\nI was chained to the desk all day.\tJ'étais enchaîné au bureau toute la journée.\nI was going to ask Tom to do that.\tJ'allais demander à Tom de faire cela.\nI was moved to tears by the story.\tJe fus ému aux larmes par l'histoire.\nI was moved to tears by the story.\tJ'ai été ému aux larmes par l'histoire.\nI was moved to tears by the story.\tJe fus émue aux larmes par l'histoire.\nI was moved to tears by the story.\tJ'ai été émue aux larmes par l'histoire.\nI was obliged to go out yesterday.\tJ'ai été obligé de sortir, hier.\nI was present at school yesterday.\tJ'étais présent à l'école, hier.\nI was present at school yesterday.\tC'est moi qui étais présent à l'école, hier.\nI was really young when I met you.\tJ'étais vraiment jeune lorsque je t'ai rencontré.\nI was really young when I met you.\tJ'étais vraiment jeune lorsque je t'ai rencontrée.\nI was really young when I met you.\tJ'étais vraiment jeune lorsque je vous ai rencontré.\nI was really young when I met you.\tJ'étais vraiment jeune lorsque je vous ai rencontrés.\nI was stupid enough to believe it.\tJe fus assez stupide pour le croire.\nI was surprised by Tom's strength.\tJ'ai été surpris par la force de Tom.\nI was surprised by what I learned.\tJe fus surpris par ce que j'appris.\nI was surprised by what I learned.\tJ'ai été surpris par ce que j'ai appris.\nI was surprised by what I learned.\tJe fus surprise par ce que j'appris.\nI was surprised by what I learned.\tJ'ai été surprise par ce que j'ai appris.\nI was taken aback by his rudeness.\tJ'ai été affligé par sa grossièreté.\nI was ten minutes late for school.\tJe suis arrivé 10 minutes en retard à l'école.\nI was the first to begin speaking.\tJe fus le premier à prendre la parole.\nI was the first to begin speaking.\tJe fus le premier à commencer à m'exprimer.\nI was tired, but I couldn't sleep.\tJ'étais fatigué, mais je ne pouvais pas dormir.\nI was tired, but I couldn't sleep.\tJ'étais fatiguée, mais je ne pouvais pas dormir.\nI was totally unprepared for this.\tJe n'étais absolument pas préparé à ceci.\nI was trapped in a vicious circle.\tJe me suis retrouvé piégé dans un cercle vicieux.\nI was trapped in a vicious circle.\tJe me suis retrouvée piégée dans un cercle vicieux.\nI was walking to the station then.\tJe marchai vers la gare, à ce moment-là.\nI watch television before I study.\tJe regarde la télévision avant d'étudier.\nI went for a drive in the country.\tJ'allai faire un tour en voiture dans la campagne.\nI went for a drive in the country.\tJe suis allé faire un tour en voiture dans la campagne.\nI went to sleep during the lesson.\tJe me suis endormi pendant le cours.\nI went to the park to play tennis.\tJe suis allé au parc pour jouer au tennis.\nI will come tomorrow without fail.\tJe viendrai demain sans faute.\nI will finish my homework by nine.\tJ'aurai fini mes devoirs à 9 heures.\nI will follow you wherever you go.\tJe te suivrai où que tu ailles.\nI will follow you wherever you go.\tJe te suivrai partout où tu iras.\nI will give him the book tomorrow.\tDemain je lui donnerai le livre.\nI will give him the book tomorrow.\tJe lui donnerai le livre demain.\nI will give you anything you want.\tJe te donnerai tout ce que tu veux.\nI will give you whatever you want.\tJe te donnerai tout ce que tu veux.\nI will have him repair this watch.\tJe lui ferai réparer cette montre.\nI will have it uploaded by Friday.\tJe l'aurai téléchargé d'ici vendredi.\nI will have it uploaded by Friday.\tJe l'aurai fait télécharger d'ici vendredi.\nI will leave it to your judgement.\tJe laisse cela à votre jugement.\nI will pick him up at the station.\tJ'irai le chercher à la gare.\nI will play tennis this afternoon.\tJe vais jouer au tennis cet après-midi.\nI wish I had a reason not to stay.\tSi seulement j'avais une raison de ne pas rester !\nI wish I had asked you for advice.\tJ'aurais dû te demander conseil.\nI wish I had asked you for advice.\tJ'aurais dû vous demander conseil.\nI wish I had eaten something else.\tJ'aurais aimé avoir mangé quelque chose d'autre.\nI wish I were as smart as you are.\tJ'aimerais être aussi malin que vous ne l'êtes.\nI wish I were as smart as you are.\tJ'aimerais être aussi intelligent que vous.\nI wish it would happen more often.\tJ'aimerais que ça se produise plus souvent.\nI wish my father had lived longer.\tJ'aurais aimé que mon père vive plus longtemps.\nI wish you had told me what to do.\tJ'aurais aimé que tu m'aies dit quoi faire.\nI wish you had told me what to do.\tJ'aurais aimé que vous m'ayez dit quoi faire.\nI won't bore you with the details.\tJe ne vais pas t'ennuyer avec les détails.\nI wonder if it will rain tomorrow.\tJe me demande s'il pleuvra demain.\nI wonder if the weather will hold.\tJe me demande si le temps se maintiendra.\nI wonder what Tom actually thinks.\tJe me demande ce que Tom pense vraiment.\nI wonder what has happened to her.\tJe me demande ce qui lui est arrivé.\nI wonder who this package is from.\tJe me demande de qui provient ce paquet.\nI wonder whose these scissors are.\tJe me demande à qui sont ces ciseaux.\nI wonder why the dogs are barking.\tJe me demande pourquoi les chiens aboient.\nI would like to make a phone call.\tJ'aimerais passer un appel.\nI would like to see Tom once more.\tJ’aimerais voir Tom une fois de plus.\nI would like to visit South Korea.\tJ'aimerais visiter la Corée du Sud.\nI would rather die than marry him.\tJe préférerais plutôt mourir que de l'épouser.\nI would rather die than surrender.\tJe préfère mourir que de me rendre.\nI would rather not go there alone.\tJe ne voudrais pas aller là-bas tout seul.\nI wouldn't sell that at any price.\tJe ne vendrais ça à aucun prix.\nI'd hate to see that happen again.\tJe détesterais voir cela se reproduire.\nI'd like a word with you if I may.\tJ'aimerais vous toucher un mot si je peux me permettre.\nI'd like to buy a good dictionary.\tJ'aimerais acheter un bon dictionnaire.\nI'd like to buy a good dictionary.\tJ'aimerais faire l'acquisition d'un bon dictionnaire.\nI'd like to buy a washing machine.\tJ'aimerais acheter une machine à laver.\nI'd like to buy a washing machine.\tJ'aimerais acquérir une machine à laver.\nI'd like to buy a washing machine.\tJ'aimerais faire l'acquisition d'une machine à laver.\nI'd like to cancel my reservation.\tJ'aimerais annuler ma réservation.\nI'd like to find out what this is.\tJ'aimerais découvrir ce que c'est.\nI'd like to find out what this is.\tJ'aimerais découvrir ce qu'est ceci.\nI'd like to get a little shut eye.\tJ'aimerais faire un petit somme.\nI'd like to get medical insurance.\tJe voudrais souscrire une assurance maladie.\nI'd like to go back to the office.\tJ'aimerais retourner au bureau.\nI'd like to go somewhere else now.\tJ'aimerais désormais aller quelque part ailleurs.\nI'd like to go somewhere else now.\tJ'aimerais désormais me rendre quelque part ailleurs.\nI'd like to go to France sometime.\tJ'aimerais aller en France, un jour.\nI'd like to have a glass of water.\tJe prendrais bien un verre d'eau.\nI'd like to join a night bus tour.\tJ'aimerais me joindre à une visite guidée en bus, de nuit.\nI'd like to reserve a single room.\tJ'aimerais réserver une chambre simple.\nI'd like to sail around the world.\tJ'aimerais voguer autour du monde.\nI'd like to sail around the world.\tJ'aimerais naviguer autour du monde.\nI'd like to sail around the world.\tJ'aimerais naviguer autour du monde à la voile.\nI'd like to see that ring, please.\tJ'aimerais voir cette bague, je vous prie.\nI'd like to see that ring, please.\tJ'aimerais voir cette bague, je te prie.\nI'd like to sit here for a moment.\tJ'aimerais m'assoir ici pendant un instant.\nI'd like to speak to your manager.\tJ'aimerais parler à votre gérant.\nI'd like to speak to your manager.\tJ'aimerais parler à votre directeur.\nI'd like to speak to your manager.\tJ'aimerais parler à votre supérieur.\nI'd like to visit England someday.\tJe voudrais visiter l'Angleterre un jour.\nI'd like to visit England someday.\tUn jour, j'aimerais visiter l'Angleterre.\nI'd like you to have a blood test.\tJ'aimerais que vous fassiez un test sanguin.\nI'd like you to leave immediately.\tJ'aimerais que tu partes immédiatement.\nI'd like you to leave immediately.\tJ'aimerais que vous partiez immédiatement.\nI'd like you to look after my dog.\tJ'aimerais que tu t'occupes de mon chien.\nI'd like you to look after my dog.\tJ'aimerais que vous vous occupiez de mon chien.\nI'd like you to look at something.\tJ'aimerais que tu regardes quelque chose.\nI'd like you to look at something.\tJ'aimerais que vous regardiez quelque chose.\nI'd love to go to Boston with you.\tJ'aimerais aller à Boston avec toi.\nI'd never played that game before.\tJe n'ai jamais joué à ce jeu avant.\nI'd never played that game before.\tJe n'ai jamais joué à ce jeu auparavant.\nI'd rather die than give you this.\tJe préférerais crever plutôt que de te donner ça.\nI'd rather die than give you this.\tJ'aimerais mieux mourir plutôt que vous le donner.\nI'd rather not talk about it here.\tJe préfèrerais ne pas en parler ici.\nI'd rather ride my bike than walk.\tJe préférerais y aller à vélo plutôt qu'à pied.\nI'll be able to see you next year.\tJe pourrai te voir l'année prochaine.\nI'll be with you in a few minutes.\tJe serai à toi dans quelques minutes.\nI'll be with you in a few minutes.\tJe serai à vous dans quelques minutes.\nI'll be with you in just a second.\tJ'arrive dans deux secondes.\nI'll bring my sister to the party.\tJ'emmènerai ma sœur à la fête.\nI'll call you around five o'clock.\tJe t'appellerai vers 5 heures.\nI'll come again when you are free.\tJe reviendrai quand tu seras libre.\nI'll find someone else to help me.\tJe trouverai quelqu'un d'autre pour m'aider.\nI'll give them an answer tomorrow.\tJe leur donnerai une réponse demain.\nI'll give you as many as you like.\tJe vous en donnerai autant que vous en voulez.\nI'll go out there and look around.\tJe vais aller jeter un coup d'œil là-bas.\nI'll have to find a part-time job.\tJe devrai trouver un emploi à temps partiel.\nI'll introduce you to a nice girl.\tJe te présenterai une gentille fille.\nI'll invite whoever wants to come.\tJ'invite qui veut bien venir.\nI'll let you know when I need you.\tJe te ferai savoir lorsque j'aurai besoin de toi.\nI'll let you know when I need you.\tJe vous ferai savoir lorsque j'aurai besoin de vous.\nI'll let you know when I need you.\tJe te préviendrai lorsque j'aurai besoin de toi.\nI'll miss you very much if you go.\tVous me manquerez beaucoup si vous partez.\nI'll need to make some more tests.\tJ'aurai besoin de faire quelques examens supplémentaires.\nI'll never forget this experience.\tJe n'oublierai jamais cette expérience.\nI'll see you again this afternoon.\tJe te reverrai cette après-midi.\nI'll see you again this afternoon.\tJe te reverrai cet après-midi.\nI'll see you again this afternoon.\tJe vous reverrai cette après-midi.\nI'll see you again this afternoon.\tJe vous reverrai cet après-midi.\nI'll stand by you in time of need.\tJe serai à ton côté en cas de besoin.\nI'll take that into consideration.\tJ'y réfléchirai.\nI'll teach you how to drive a car.\tJe t'apprendrai comment conduire une voiture.\nI'll tell you exactly what to say.\tJe te dirai exactement quoi dire.\nI'll tell you exactly what to say.\tJe vous dirai exactement quoi dire.\nI'll turn around while you change.\tJe vais me tourner pendant que tu te changes.\nI'll wait here till he comes back.\tJ'attendrai ici jusqu'à ce qu'il revienne.\nI'm afraid I don't agree with you.\tJe crains de ne pas être d'accord avec vous.\nI'm afraid I don't agree with you.\tJ'ai peur de ne pas être d'accord avec toi.\nI'm afraid I took the wrong train.\tJ'ai peur d'avoir pris le mauvais train.\nI'm afraid I'm a bit out of shape.\tJe crains d'être un peu défait.\nI'm afraid I'm a bit out of shape.\tJe crains d'être un peu défaite.\nI'm afraid she may have the mumps.\tJ'ai peur qu'elle ait les oreillons.\nI'm afraid we don't have any left.\tJ'ai peur que nous n'en ayons plus.\nI'm ashamed to say that it's true.\tJ'ai honte de dire que c'est vrai.\nI'm careful not to spend too much.\tJe fais attention à ne pas trop dépenser.\nI'm confident that you'll succeed.\tJe suis sûr que vous allez réussir.\nI'm confident that you'll succeed.\tJe suis sûr que tu vas réussir.\nI'm confident that you'll succeed.\tJe suis certain que tu réussiras.\nI'm going to Izu over the weekend.\tJ'irai à Izu pendant le week-end.\nI'm going to join a demonstration.\tJe vais rejoindre une manifestation.\nI'm going to need some more money.\tJe vais avoir besoin de plus d'argent.\nI'm happy to see you in one piece.\tHeureux de vous voir en un seul morceau !\nI'm happy to see you in one piece.\tHeureuse de vous voir en un seul morceau !\nI'm happy to see you in one piece.\tHeureux de te voir en un seul morceau !\nI'm happy to see you in one piece.\tHeureuse de te voir en un seul morceau !\nI'm impressed you've done so well.\tJe suis impressionné que tu aies si bien réussi.\nI'm impressed you've done so well.\tJe suis impressionnée que vous ayez si bien réussi.\nI'm in absolutely total agreement.\tJe suis totalement d'accord.\nI'm in love with a wonderful girl.\tJe suis amoureux d'une fille géniale.\nI'm leaving tonight for Australia.\tJe pars ce soir pour l'Australie.\nI'm looking for a bag for my wife.\tJe cherche un sac pour ma femme.\nI'm looking for a bag for my wife.\tJe cherche un sac pour mon épouse.\nI'm looking forward to seeing him.\tJe me réjouis de le voir.\nI'm looking forward to seeing you.\tJ'ai hâte de vous voir.\nI'm lucky to have you as a friend.\tJe suis chanceux de t'avoir comme ami.\nI'm lucky to have you as a friend.\tJe suis chanceux de vous avoir comme ami.\nI'm lucky to have you as a friend.\tJe suis chanceux de t'avoir comme amie.\nI'm lucky to have you as a friend.\tJe suis chanceuse de t'avoir comme ami.\nI'm lucky to have you as a friend.\tJe suis chanceuse de vous avoir comme ami.\nI'm lucky to have you as a friend.\tJe suis chanceuse de t'avoir comme amie.\nI'm lucky to have you as a friend.\tJe suis chanceuse de vous avoir comme amie.\nI'm lucky to have you as a friend.\tJe suis chanceuse de t'avoir pour ami.\nI'm lucky to have you as a friend.\tJe suis chanceuse de t'avoir pour amie.\nI'm lucky to have you as a friend.\tJe suis chanceux de t'avoir pour ami.\nI'm lucky to have you as a friend.\tJe suis chanceux de t'avoir pour amie.\nI'm lucky to have you as a friend.\tJe suis chanceux de vous avoir pour ami.\nI'm lucky to have you as a friend.\tJe suis chanceux de vous avoir pour amie.\nI'm lucky to have you as a friend.\tJe suis chanceuse de vous avoir pour amie.\nI'm lucky to have you as a friend.\tJe suis chanceux de vous avoir comme amie.\nI'm lucky to have you as a friend.\tJe suis chanceuse de vous avoir pour ami.\nI'm not free to go this afternoon.\tJe ne suis pas libre de mes mouvements cet après-midi.\nI'm not free to go this afternoon.\tJe ne suis pas libre cette après-midi.\nI'm not giving you any more money.\tJe ne te donnerai pas davantage d'argent.\nI'm not giving you any more money.\tJe ne vous donnerai pas davantage d'argent.\nI'm not going to tell you my name.\tJe ne vais pas te dire mon nom.\nI'm not going to tell you my name.\tJe ne vais pas vous dire mon nom.\nI'm not happy with this situation.\tJe ne suis pas content de cette situation.\nI'm not in the least afraid of it.\tÇa ne me fait pas du tout peur.\nI'm not rich, nor do I wish to be.\tJe ne suis pas riche, et ne souhaite pas l'être.\nI'm not saying this is your fault.\tJe ne dis pas que c'est de ta faute.\nI'm not sure I'm ready to do this.\tJe ne suis pas sûr d'être prêt à le faire.\nI'm not sure I'm ready to do this.\tJe ne suis pas sûre d'être prête à le faire.\nI'm not sure if I'm stupid or not.\tJe ne suis pas sûr d'être idiot ou pas.\nI'm not sure if I'm stupid or not.\tJe ne suis pas sûre d'être idiote ou pas.\nI'm not sure what he was thinking.\tJe ne suis pas certain de ce qu'il pensait.\nI'm not sure what he was thinking.\tJe ne suis pas certaine de ce qu'il pensait.\nI'm not the kind to kiss and tell.\tJe ne suis pas du genre à étaler mes histoires de fesses.\nI'm not the only one with a child.\tJe ne suis pas la seule avec un enfant.\nI'm not the only one with a child.\tJe ne suis pas le seul avec un enfant.\nI'm often compared to my brothers.\tJe suis souvent comparé à mes frères.\nI'm pretty sure I didn't say that.\tJe suis plutôt sûr que je n'ai pas dit ça.\nI'm pretty sure I didn't say that.\tJe suis plutôt sûre que je n'ai pas dit ça.\nI'm pretty sure Tom could do that.\tJe suis certain que Tom pourrait le faire.\nI'm pretty sure that's Tom's goal.\tJe suis presque sûr que c'est le but de Tom.\nI'm pretty sure that's Tom's goal.\tJe suis presque sûre que c'est le but de Tom.\nI'm proud to have him as a friend.\tJe suis fier de le tenir pour ami.\nI'm proud to have him as a friend.\tJe suis fier de l'avoir pour ami.\nI'm really flattered to hear that.\tJe suis très flatté d'entendre cela.\nI'm so embarrassed, I want to die.\tJe suis tellement gêné que je veux mourir.\nI'm so embarrassed, I want to die.\tJe suis tellement gênée que je veux mourir.\nI'm sorry I dragged you into this.\tJe suis désolé de t'avoir entraîné là-dedans.\nI'm sorry I dragged you into this.\tJe suis désolée de t'avoir entraîné là-dedans.\nI'm sorry I dragged you into this.\tJe suis désolé de t'avoir entraînée là-dedans.\nI'm sorry I dragged you into this.\tJe suis désolé de vous avoir entraîné là-dedans.\nI'm sorry I dragged you into this.\tJe suis désolée de vous avoir entraîné là-dedans.\nI'm sorry I dragged you into this.\tJe suis désolé de vous avoir entraînées là-dedans.\nI'm sorry I dragged you into this.\tJe suis désolé de vous avoir entraînés là-dedans.\nI'm sorry I dragged you into this.\tJe suis désolée de vous avoir entraînés là-dedans.\nI'm sorry I dragged you into this.\tJe suis désolée de vous avoir entraînée là-dedans.\nI'm sorry I'm calling you at work.\tJe suis désolé de t'appeler au travail.\nI'm sorry I'm calling you at work.\tJe suis désolé de vous appeler au travail.\nI'm sorry I'm calling you at work.\tJe suis désolée de t'appeler au travail.\nI'm sorry I'm calling you at work.\tJe suis désolée de vous appeler au travail.\nI'm sorry, I didn't recognize you.\tJe suis désolé, je ne vous ai pas reconnu.\nI'm sorry, I didn't recognize you.\tJe suis désolé, je ne vous ai pas reconnue.\nI'm sorry, I didn't recognize you.\tJe suis désolé, je ne vous ai pas reconnus.\nI'm sorry, I didn't recognize you.\tJe suis désolé, je ne vous ai pas reconnues.\nI'm sorry, I didn't recognize you.\tJe suis désolé, je ne t'ai pas reconnu.\nI'm sorry, I didn't recognize you.\tJe suis désolé, je ne t'ai pas reconnue.\nI'm sorry, I didn't recognize you.\tJe suis désolée, je ne t'ai pas reconnu.\nI'm sorry, I didn't recognize you.\tJe suis désolée, je ne t'ai pas reconnue.\nI'm sorry, I didn't recognize you.\tJe suis désolée, je ne vous ai pas reconnues.\nI'm sorry, I didn't recognize you.\tJe suis désolée, je ne vous ai pas reconnus.\nI'm sorry, I didn't recognize you.\tJe suis désolée, je ne vous ai pas reconnue.\nI'm sorry, I didn't recognize you.\tJe suis désolée, je ne vous ai pas reconnu.\nI'm sorry, but I don't understand.\tJe suis désolé mais je ne comprends pas.\nI'm sorry, but I don't understand.\tJe suis désolée mais je ne comprends pas.\nI'm sorry, but I'm busy right now.\tJe suis désolé mais pour l'instant je suis occupé.\nI'm sorry, we don't accept checks.\tJe suis désolé, nous n'acceptons pas les chèques.\nI'm sorry. I got the wrong number.\tExcusez-moi, je me suis trompé de numéro.\nI'm still waiting for your answer.\tJ'attends toujours ta réponse.\nI'm still waiting for your answer.\tJ'attends toujours votre réponse.\nI'm sure that I'll miss her a lot.\tJe suis sûr qu'elle va beaucoup me manquer.\nI'm sure that I'll miss her a lot.\tJe suis sûre qu'elle va beaucoup me manquer.\nI'm sure you're going to enjoy it.\tJe suis sûre que ça va te plaire.\nI'm sure you're going to enjoy it.\tJe suis sûr que ça va te plaire.\nI'm surprised you weren't invited.\tJe suis étonné qu'on ne vous ait pas invité.\nI'm surprised you weren't invited.\tJe suis étonné qu'on ne vous ait pas invitée.\nI'm surprised you weren't invited.\tJe suis étonné qu'on ne vous ait pas invitées.\nI'm taking tomorrow afternoon off.\tJe prends mon après-midi, demain.\nI'm the guy who gave Tom that hat.\tJe suis le gars qui a donné à Tom ce chapeau.\nI'm the happiest man in the world.\tJe suis l'homme le plus heureux du monde.\nI'm the happiest man in the world.\tJe suis l'homme le plus heureux au monde.\nI'm thinking about something else.\tJe suis en train de penser à autre chose.\nI'm too tired to walk any further.\tJe suis trop fatigué pour continuer de marcher.\nI'm very glad to finally meet you.\tJe suis ravie de te rencontrer enfin.\nI'm very much aware of the danger.\tJe suis très conscient du danger.\nI'm very much aware of the danger.\tJe suis extrêmement consciente du danger.\nI'm what the world calls an idiot.\tJe suis ce que le monde appelle un idiot.\nI'm willing to go anywhere you go.\tJe suis partant pour aller où que tu ailles.\nI'm willing to go anywhere you go.\tJe suis disposé à me rendre où que vous alliez.\nI've always wanted to be a father.\tJ'ai toujours voulu être père.\nI've always wanted to be a mother.\tJ'ai toujours voulu être mère.\nI've been meaning to get in touch.\tJ'ai l'intention d'entrer en contact.\nI've been thinking about you, too.\tJ'ai moi aussi pensé à toi.\nI've been thinking about you, too.\tJ'ai moi aussi pensé à vous.\nI've been thinking about you, too.\tJ'ai pensé à toi, moi aussi.\nI've been thinking about you, too.\tJ'ai pensé à vous, moi aussi.\nI've done everything you've asked.\tJ'ai fait tout ce que tu as demandé.\nI've done everything you've asked.\tJ'ai fait tout ce que vous avez demandé.\nI've got some rather serious news.\tJ'ai quelques nouvelles sérieuses.\nI've got something better in mind.\tJ'ai quelque chose de meilleur en tête.\nI've got things under control now.\tJ'ai la situation en main maintenant.\nI've just eaten so I'm not hungry.\tJe viens de manger, donc je n'ai pas faim.\nI've just eaten so I'm not hungry.\tJe n'ai pas faim, je viens juste de manger.\nI've known her since I was little.\tJe la connais depuis mon enfance.\nI've managed to stop the bleeding.\tJe suis parvenu à arrêter le saignement.\nI've never felt better in my life.\tJamais je ne me suis mieux senti dans la vie.\nI've never had a traffic accident.\tJe n'ai jamais eu d'accident de la circulation.\nI've never heard this song before.\tJe n'ai jamais entendu cette chanson auparavant.\nI've never seen him wearing jeans.\tJe ne l'ai jamais vu porter des jeans.\nI've never seen him wearing jeans.\tJe ne l'ai jamais vu porter de jeans.\nI've never studied French grammar.\tJe n'ai jamais étudié la grammaire française.\nI've never taught anyone anything.\tJe n’ai jamais rien appris à personne.\nI've warned you before about this.\tJe t'ai prévenu auparavant.\nI've warned you before about this.\tJe vous ai prévenu auparavant.\nI've warned you before about this.\tJe t'ai prévenue auparavant.\nI've warned you before about this.\tJe vous ai prévenue auparavant.\nI've warned you before about this.\tJe vous ai prévenus auparavant.\nI've warned you before about this.\tJe vous ai prévenues auparavant.\nIf I were rich, I would go abroad.\tSi j'étais riche, je me rendrais à l'étranger.\nIf I were you, I would stay quiet.\tSi j'étais toi, je resterais tranquille.\nIf I were you, I would stay quiet.\tSi j'étais vous, je resterais tranquille.\nIf it gets boring, I will go home.\tSi ça devient ennuyeux, j'irai chez moi.\nIf it rains, bring the washing in.\tS'il pleut, rentre le linge.\nIf only I'd hadn't stayed so long!\tSi seulement je n'étais pas resté si longtemps !\nIf only I'd hadn't stayed so long!\tSi seulement je n'étais pas restée si longtemps !\nIf you can't beat them, join them.\tSi tu ne peux pas les battre, allie-toi avec eux.\nIf you can't beat them, join them.\tSi vous n'arrivez pas à les vaincre, joignez-vous à eux.\nIf you can't beat them, join them.\tSi vous n'arrivez pas à les vaincre, joignez-vous à elles.\nIf you don't want it, I'll eat it.\tSi tu n'en veux pas, je le mangerai.\nIf you don't want it, I'll eat it.\tSi vous n'en voulez pas, je le mangerai.\nIf you help me, I'll try it again.\tSi tu m'aides, alors je réessayerai.\nIf you need anything, let me know.\tSi tu as besoin de quoi que ce soit, fais-le-moi savoir.\nIf you need anything, let me know.\tSi vous avez besoin de quoi que ce soit, faites-le-moi savoir.\nIf you want that, you can have it.\tSi tu veux ça, tu peux l'avoir.\nIf you want that, you can have it.\tSi vous voulez ça, vous pouvez l'avoir.\nIf you want to stay, you can stay.\tSi vous voulez rester, vous pouvez rester.\nIf you want, you can easily do it.\tSi tu veux, tu peux le faire aisément.\nIf you'd listen, you'd understand.\tSi tu écoutais, tu comprendrais.\nIn any case, it's always my fault.\tDe toutes façons, c'est toujours de ma faute.\nIn case of a fire, use the stairs.\tEn cas d'incendie, veuillez utiliser les escaliers.\nIn case of a fire, use the stairs.\tEn cas d'incendie, utilisez les escaliers.\nIn case of an emergency, dial 110.\tEn cas d'urgence, composez le cent dix.\nIs anyone else excited about this?\tQuelqu'un d'autre est-il enthousiasmé par cela ?\nIs it really necessary to do that?\tEst-il vraiment nécessaire de faire ça ?\nIs that all you wanted to tell us?\tEst-ce là tout ce que tu voulais nous dire ?\nIs that all you wanted to tell us?\tEst-ce là tout ce que vous vouliez nous dire ?\nIs that supposed to be a question?\tEst-ce supposé être une question ?\nIs that what the government wants?\tEst-ce cela que veut le gouvernement?\nIs the Orient too foreign for you?\tL'Orient vous est-il trop étranger ?\nIs the Orient too foreign for you?\tL'Orient t'est-il trop étranger ?\nIs there a youth hostel near here?\tEst-ce qu'il y a une auberge de jeunesse près d'ici ?\nIs there another way to get there?\tY a-t-il un autre moyen de s'y rendre ?\nIs there another word for synonym?\tY a t-il un autre mot pour « synonyme » ?\nIs there anything else you'd like?\tY a-t-il quoi que ce soit d'autre que tu aimerais ?\nIs there anything else you'd like?\tY a-t-il quoi que ce soit d'autre que vous aimeriez ?\nIs there anything you want to add?\tVoulez-vous ajouter quelque chose ?\nIs there anything you want to say?\tY a-t-il quoi que ce soit que tu veuilles dire ?\nIs there anything you want to say?\tY a-t-il quoi que ce soit que vous vouliez dire ?\nIs there enough food for everyone?\tY a-t-il assez à manger pour tout le monde ?\nIs there somebody you want to see?\tY a-t-il quelqu'un que tu veuilles voir ?\nIs there somebody you want to see?\tY a-t-il quelqu'un que vous vouliez voir ?\nIs this what you were looking for?\tEst-ce ce que tu cherchais ?\nIs this what you were looking for?\tEst-ce ce que vous cherchiez ?\nIs your new computer working well?\tTon nouvel ordinateur marche bien ?\nIs your new computer working well?\tVotre nouvel ordinateur fonctionne-t-il bien ?\nIs your school far from your home?\tTon école est-elle loin de ta maison ?\nIsn't that an amazing coincidence?\tN'est-ce pas une coïncidence incroyable ?\nIsn't that what you always wanted?\tN'est-ce pas ce que vous avez toujours voulu ?\nIsn't that what you always wanted?\tN'est-ce pas ce que tu as toujours voulu ?\nIsn't there going to be a wedding?\tUn marriage ne va-t-il pas avoir lieu ?\nIt appears that he was in a hurry.\tIl semble qu'il était pressé.\nIt cost $300 to get the car fixed.\tÇa coûte trois-cents dollars de faire réparer la voiture.\nIt cost less than fifteen dollars.\tÇa coûtait moins de quinze dollars.\nIt could just be your imagination.\tCe pourrait n'être que votre imagination.\nIt could just be your imagination.\tCe pourrait n'être que ton imagination.\nIt could just be your imagination.\tCe pourrait simplement être votre imagination.\nIt could just be your imagination.\tCe pourrait simplement être ton imagination.\nIt doesn't matter how old you are.\tTon âge n'a pas d'importance.\nIt doesn't matter how old you are.\tVotre âge n'a pas d'importance.\nIt doesn't matter how small it is.\tSa petitesse n'a pas d'importance.\nIt doesn't seem possible, does it?\tÇa ne semble pas possible, si ?\nIt feels very similar to this one.\tOn a la même sensation qu'avec celui-là.\nIt has been raining since Tuesday.\tIl pleut depuis mardi.\nIt has no bearing on this problem.\tCela n'a aucune incidence sur le problème.\nIt is a great pleasure to be here.\tC'est un grand plaisir pour moi de me trouver ici.\nIt is a lot of fun to drive a car.\tC'est très amusant de conduire une voiture.\nIt is a very difficult job for us.\tC'est pour nous un travail très difficile.\nIt is easy to answer the question.\tIl est facile de répondre à la question.\nIt is hard for me to believe this.\tJe trouve cela difficile à croire.\nIt is impossible for him to do it.\tIl lui est impossible de le faire.\nIt is impossible for you to do so.\tIl est impossible pour toi de faire ça.\nIt is not far away from the hotel.\tCe n'est pas loin de l'hôtel.\nIt is not good to laugh at others.\tCe n'est pas bien de rire des autres.\nIt is premature to discuss it now.\tIl est prématuré d'en débattre maintenant.\nIt is probable that she will come.\tIl se peut qu'elle vienne.\nIt is probable that she will come.\tIl est probable qu'elle vienne.\nIt is time you told her the truth.\tIl est temps que tu lui dises la vérité.\nIt is time you told her the truth.\tIl est temps que vous lui disiez la vérité.\nIt is too cold for a picnic today.\tIl fait trop froid aujourd'hui pour un pique-nique.\nIt is too expensive for me to buy.\tC'est trop cher pour que je l'achète.\nIt is useless to go on strike now.\tIl est inutile de faire une grève maintenant.\nIt is very hard to date this vase.\tIl est très dur de dater ce vase.\nIt is warmer today than yesterday.\tIl fait plus chaud aujourd'hui qu'hier.\nIt looks as if it's going to rain.\tOn dirait qu'il va pleuvoir.\nIt looks fun. Why don't we try it?\tÇa a l'air marrant. Pourquoi n'essayons-nous pas ?\nIt looks like we fell into a trap.\tIl semble que nous soyons tombé dans un piège.\nIt looks like you had a tough day.\tOn dirait que tu as eu une journée difficile.\nIt looks like your dog is thirsty.\tTon chien semble avoir soif.\nIt makes no difference who I meet.\tPeu importe qui je rencontre.\nIt seems that I have lost my keys.\tJ'ai l'impression d'avoir perdu mes clés.\nIt seems that I have lost my keys.\tIl semble que j'ai perdu ma clé.\nIt seems that he knows everything.\tIl semble tout savoir.\nIt seems to me that you are wrong.\tIl me semble que vous avez tort.\nIt was a waste time for all of us.\tC'était une perte de temps pour nous tous.\nIt was a waste time for all of us.\tC'était une perte de temps pour nous toutes.\nIt was almost noon when I woke up.\tIl était presque midi quand je me suis réveillé.\nIt was crowded here all last week.\tIl y avait foule ici toute la semaine dernière.\nIt was just a passing infatuation.\tCe n'était qu'une toquade.\nIt was just a passing infatuation.\tCe n'était qu'une lubie.\nIt was obvious that they had lied.\tIl était évident qu'ils avaient menti.\nIt was proved that he was a thief.\tIl fut prouvé qu'il était un voleur.\nIt was quite dark when I got home.\tIl faisait assez sombre lorsque j'atteignis mon domicile.\nIt was quite dark when I got home.\tIl faisait assez sombre lorsque j'ai atteint mon domicile.\nIt was supposed to be kept secret.\tC'était supposé être gardé secret.\nIt was very nice seeing you again.\tC'était un plaisir de vous revoir.\nIt was very nice seeing you again.\tC'était vraiment sympathique de te revoir.\nIt wasn't Tom's idea. It was mine.\tCe n'était pas l'idée de Tom, c'était la mienne.\nIt wasn't exactly a piece of cake.\tÇa n'a pas exactement été une partie de plaisir.\nIt wasn't supposed to be this way.\tCe n'était pas censé être comme ça.\nIt would be a good idea if I went.\tCe serait une bonne idée que j'y aille.\nIt would be a good idea if I went.\tCe serait une bonne idée que je m'y rende.\nIt would be sad if that were true.\tÇa serait triste, si c'était vrai.\nIt's a bit too complicated for me.\tC'est un peu trop compliqué pour moi.\nIt's a cloak-and-dagger operation.\tC'est une opération clandestine.\nIt's a fairly complicated problem.\tC'est un problème très compliqué.\nIt's a magnificent view, isn't it?\tC'est une vue magnifique, n'est-ce pas ?\nIt's a matter of vital importance.\tC'est une question d'importance vitale.\nIt's a wonder they're still awake.\tC'est un miracle qu'ils soient toujours éveillés.\nIt's about time you got a haircut.\tIl serait temps que tu te coupes les cheveux.\nIt's already ten o'clock at night.\tIl est déjà 10 heures du soir.\nIt's always a pleasure to see you.\tC'est toujours un plaisir de te voir.\nIt's always a pleasure to see you.\tC'est toujours un plaisir de vous voir.\nIt's easy for her to make friends.\tIl lui est aisé de se faire des amis.\nIt's easy for her to make friends.\tIl lui est aisé de se faire des amies.\nIt's easy for him to make friends.\tIl lui est aisé de se faire des amis.\nIt's easy for him to make friends.\tIl lui est aisé de se faire des amies.\nIt's easy to fall into bad habits.\tC'est facile de prendre de mauvaises habitudes.\nIt's eight o'clock in the morning.\tIl est huit heures du matin.\nIt's going to be harder this time.\tÇa va être plus difficile cette fois.\nIt's going to be harder this time.\tÇa va être plus dur cette fois.\nIt's hard to get people to change.\tIl est difficile de faire changer les gens.\nIt's hard to understand his ideas.\tIl est difficile de comprendre ses idées.\nIt's important that he hears this.\tIl est important qu'il entende cela.\nIt's important that you hear this.\tIl est important que tu entendes cela.\nIt's important that you hear this.\tIl est important que vous entendiez cela.\nIt's me that went there yesterday.\tC'est moi qui me suis rendu là-bas hier.\nIt's me that went there yesterday.\tC'est moi qui suis allé là-bas hier.\nIt's mean of you to talk that way.\tC'est mesquin de ta part de parler ainsi.\nIt's more trouble than it's worth.\tC'est davantage de problèmes que ça ne vaut.\nIt's morning here in my time zone.\tC'est le matin ici, dans mon fuseau horaire.\nIt's my turn to tell you a secret.\tC'est mon tour de te raconter un secret.\nIt's probably just my imagination.\tCe n'est probablement que mon imagination.\nIt's quite likely that he'll come.\tIl est assez probable qu'il vienne.\nIt's really difficult to describe.\tC'est vraiment difficile à décrire.\nIt's the best-kept secret in town.\tC'est le secret le mieux gardé du moment.\nIt's time to get down to business.\tIl est temps de se concentrer sur les affaires.\nIt's very likely to rain tomorrow.\tIl est fort probable qu'il pleuve demain.\nIt's warm here all the year round.\tIl fait chaud ici toute l'année.\nIt's what we've always dreamed of.\tC'est ce dont nous avons toujours rêvé.\nIt's your turn to wash the dishes.\tC'est ton tour de faire la vaisselle.\nItaly is a very beautiful country.\tL'Italie est un très beau pays.\nI’ll introduce you to my mother.\tJe vais te présenter ma maman.\nI’ve started learning Esperanto.\tJ'ai commencé à apprendre l'espéranto.\nJob security became a major worry.\tLa sécurité de l'emploi est devenue un souci majeur.\nJohn is two years older than I am.\tJohn a deux ans de plus que moi.\nKarima hasn't read the letter yet.\tKarima n'a pas encore lu la lettre.\nKeep it in mind for the next time.\tGarde-le en tête pour la prochaine fois !\nKeep it in mind for the next time.\tGardez-le en tête pour la prochaine fois !\nKeep the child away from the pond.\tTiens le gosse à l'écart de l'étang !\nKeep the child away from the pond.\tTenez le gosse à l'écart de l'étang !\nKeep your room as neat as you can.\tGarde ta chambre aussi propre que tu peux.\nKeep your room as neat as you can.\tTiens ta chambre aussi propre que tu peux.\nKeep your room as neat as you can.\tGarde ta chambre aussi nette que tu peux.\nKeep your room as neat as you can.\tTiens ta chambre aussi nette que tu peux.\nKeep your room as neat as you can.\tTenez votre chambre aussi propre que vous pouvez.\nKeep your room as neat as you can.\tGardez votre chambre aussi propre que vous pouvez.\nKeep your room as neat as you can.\tTenez votre chambre aussi nette que vous pouvez.\nKeep your room as neat as you can.\tGardez votre chambre aussi nette que vous pouvez.\nKeep your room as neat as you can.\tMaintenez votre chambre aussi propre que vous pouvez.\nKeep your room as neat as you can.\tMaintenez votre chambre aussi nette que vous pouvez.\nKeep your room as neat as you can.\tMaintiens ta chambre aussi nette que tu peux.\nKeep your room as neat as you can.\tMaintiens ta chambre aussi propre que tu peux.\nKobe is the city where I was born.\tKobe est la ville où je suis né.\nKobe is the city where I was born.\tKobé est ma ville natale.\nKobe is the city where I was born.\tKobe est la ville où je suis née.\nKyoto is visited by many tourists.\tBeaucoup de touristes visitent Kyoto.\nLanguage can be used in many ways.\tLe langage peut-être employé de diverses manières.\nLet me get you something to drink.\tLaissez-moi aller vous chercher quelque chose à boire.\nLet me help you with your baggage.\tLaissez-moi vous aider avec vos bagages.\nLet me tell you about our special.\tPermettez-moi de vous expliquer le plat du jour.\nLet me tell you everything I know.\tLaisse-moi te dire tout ce que je sais.\nLet me tell you everything I know.\tLaissez-moi vous conter tout ce que je sais.\nLet me tell you how I really feel.\tLaissez-moi vous dire comment je me sens vraiment.\nLet me tell you how I really feel.\tLaisse-moi te dire comment je me sens vraiment !\nLet's decorate the Christmas tree.\tDécorons l'arbre de Noël !\nLet's establish some ground rules.\tPosons quelques règles de base.\nLet's establish some ground rules.\tEtablissons quelques règles de base.\nLet's hope we did the right thing.\tEspérons qu'on a fait le bon choix.\nLet's meet the day after tomorrow.\tRencontrons-nous après-demain.\nLet's pretend this never happened.\tFaisons comme si ça n'était jamais arrivé.\nLet's pretend this never happened.\tFaisons comme si ça ne s'était jamais produit.\nLet's pretend we didn't hear that.\tFaisons comme si nous n'avions pas entendu cela !\nLet's see what we're dealing with.\tVoyons voir à quoi nous avons affaire.\nLet's take a walk along the river.\tAllons nous promener le long de la rivière.\nLet's take your temperature first.\tCommençons par prendre votre température.\nLet's visit some temples tomorrow.\tAllons visiter des temples demain.\nLife is boring in a small village.\tLa vie est monotone dans un petit village.\nLife isn't all roses and sunshine.\tLa vie n'est pas un long fleuve tranquille.\nListening to music is lots of fun.\tÉcouter de la musique est très divertissant.\nLondon is small compared to Tokyo.\tLondres est petite comparée à Tokyo.\nLook, I don't want to lose my job.\tÉcoute, je ne veux pas perdre mon boulot.\nLook, I don't want to lose my job.\tÉcoutez, je ne veux pas perdre mon boulot.\nLook, I don't want to lose my job.\tÉcoute, je ne veux pas perdre mon travail.\nLook, I don't want to lose my job.\tÉcoutez, je ne veux pas perdre mon travail.\nLook, I don't want to lose my job.\tÉcoute, je ne veux pas perdre mon emploi.\nLook, I don't want to lose my job.\tÉcoutez, je ne veux pas perdre mon emploi.\nLook, I don't want to lose my job.\tÉcoute, je ne veux pas perdre mon poste.\nLook, I don't want to lose my job.\tÉcoutez, je ne veux pas perdre mon poste.\nLook, I want you to do me a favor.\tÉcoute, je veux que tu me fasses une faveur.\nLook, I want you to do me a favor.\tÉcoutez, je veux que vous me fassiez une faveur.\nLost in thought, I missed my stop.\tPerdu dans mes pensées, j'ai raté mon arrêt.\nMake good use of this opportunity.\tFais bon usage de cette occasion.\nMary doesn't usually wear jewelry.\tMarie ne porte généralement pas de bijoux.\nMary is going to help us tomorrow.\tMarie va nous aider demain.\nMary prided herself on her beauty.\tMary était fière de sa propre beauté.\nMay I ask you a personal question?\tPuis-je vous poser une question personnelle ?\nMay I ask you a personal question?\tPuis-je te poser une question personnelle ?\nMay I ask you some more questions?\tPourrais-je te poser d'autres questions ?\nMay I ask you some more questions?\tPourrais-je vous poser d'autres questions ?\nMay I ask you to close the window?\tPuis-je vous demander de fermer la fenêtre ?\nMay I have something hot to drink?\tPourrais-je avoir quelque chose de chaud à boire ?\nMay I have your attention, please?\tPuis-je avoir votre attention, s'il vous plaît ?\nMay we accompany you on your walk?\tPeut-être que nous pourrions t'accompagner sur le chemin ?\nMaybe Tom's got something to hide.\tPeut-être Tom a-t-il quelque chose à cacher.\nMeat won't keep long in this heat.\tLa viande ne se gardera pas longtemps avec cette chaleur.\nMen are better at this than women.\tLes hommes y sont meilleurs que les femmes.\nMen talk about women all the time.\tLes hommes parlent des femmes tout le temps.\nMight I ask your name and address?\tPuis-je vous demander votre nom et votre adresse ?\nMom! Stop! You're embarrassing me.\tMaman ! Arrête ! Tu me mets mal à l'aise !\nMom! Stop! You're embarrassing me.\tMaman ! Arrêtez ! Vous me mettez mal à l'aise !\nMonkeys can learn a lot of tricks.\tLes singes peuvent apprendre de nombreux tours.\nMore and more Americans go abroad.\tDe plus en plus d'Étatsuniens se rendent à l'étranger.\nMost people consider murder wrong.\tLa plupart des gens pensent que le meurtre est mauvais.\nMost signs are written in English.\tLa plupart des panneaux sont écrits en anglais.\nMost were unable to read or write.\tLa plupart étaient incapables de lire ou d'écrire.\nMother is getting breakfast ready.\tMa mère est en train de préparer le petit déjeuner.\nMy aunt inherited the huge estate.\tMa tante a hérité de l'immense propriété.\nMy belief is that he will succeed.\tJe crois qu'il connaîtra le succès.\nMy best friend dances really well.\tMon meilleur ami danse vraiment bien.\nMy best friend stole my boyfriend.\tMa meilleure amie m'a piqué mon petit copain.\nMy boss is keeping me pretty busy.\tMon patron ne me laisse pas chômer.\nMy brother is good at mathematics.\tMon frère est fort en mathématiques.\nMy camera is different from yours.\tMon appareil photo est différent du tien.\nMy camera is different from yours.\tMon appareil-photo est différent du tien.\nMy camera is different from yours.\tMon appareil photo est différent du vôtre.\nMy camera is much better than his.\tMon appareil photo est bien meilleur que le sien.\nMy cat is suffering from the heat.\tMon chat souffre de la chaleur.\nMy doctor told me to quit smoking.\tMon médecin m'a dit d'arrêter de fumer.\nMy explanation was not sufficient.\tMon explication n'était pas suffisante.\nMy family isn't such a big family.\tMa famille n'est pas si grande que ça.\nMy family isn't such a big family.\tNous ne sommes pas si nombreux que ça dans ma famille.\nMy family will be away for a week.\tMa famille sera au loin pour une semaine.\nMy family will be away for a week.\tMa famille sera en déplacement pour une semaine.\nMy father does not eat much fruit.\tMon père ne mange pas beaucoup de fruits.\nMy father has a blue and gray tie.\tMon père a une cravate bleue et grise.\nMy father is always getting angry.\tMon père se met toujours en colère.\nMy father is coming home tomorrow.\tMon père vient à la maison, demain.\nMy father is retiring next spring.\tMon père part à la retraite au printemps prochain.\nMy father often washes the dishes.\tMon père fait souvent la vaisselle.\nMy father painted the mailbox red.\tMon père a peint la boîte aux lettres en rouge.\nMy father slept through the movie.\tMon père a dormi tout le long du film.\nMy friends celebrated my birthday.\tMes amis ont célébré mon anniversaire.\nMy grandfather is in his nineties.\tMon grand-père est nonagénaire.\nMy hens laid fewer eggs last year.\tMes poules ont pondu moins d'œufs l'année passée.\nMy house is only a mile from here.\tMa maison est seulement à un mille d'ici.\nMy house is only a mile from here.\tMa maison ne se situe qu'à un mile d'ici.\nMy ideas are different from yours.\tMes idées sont différentes des vôtres.\nMy ideas are different from yours.\tMes idées sont différentes des tiennes.\nMy job is giving me a stomachache.\tMon travail me cause des maux d'estomac.\nMy mother allowed me to go abroad.\tMa mère m'autorisa à aller à l'étranger.\nMy mother allowed me to go abroad.\tMa mère m'a autorisé à aller à l'étranger.\nMy mother died when I was a child.\tMa mère est morte quand j'étais petit.\nMy mother knows how to make cakes.\tMa mère sait comment faire les gâteaux.\nMy mother looks young for her age.\tMa mère paraît jeune pour son âge.\nMy mother looks young for her age.\tMa mère a l'air jeune pour son âge.\nMy mother looks young for her age.\tMa mère fait jeune pour son âge.\nMy mother told me to mow the lawn.\tMa mère m'a dit de tondre la pelouse.\nMy name was omitted from the list.\tMon nom a été omis de la liste.\nMy older sister is good at typing.\tMa sœur aînée est bonne en dactylo.\nMy parents are constantly arguing.\tMes parents se disputent constamment.\nMy parents are very old fashioned.\tMes parents sont très vieux-jeu.\nMy primary concern is your safety.\tMon premier souci est votre sécurité.\nMy primary concern is your safety.\tMa première préoccupation est ta sécurité.\nMy shoes are the same size as his.\tMes chaussures ont la même taille que les siennes.\nMy sister usually walks to school.\tD'habitude ma sœur va à l'école à pied.\nMy son is ashamed of his behavior.\tMon fils a honte de son comportement.\nMy uncle lives next to the school.\tMon oncle habite à côté de l'école.\nMy upper right wisdom tooth hurts.\tMa dent de sagesse en haut à droite me fait mal.\nMy watch gains five seconds a day.\tMa montre avance de cinq secondes par jour.\nMy watch loses five minutes a day.\tMa montre retarde de 5 minutes tous les jours.\nMy wife is obsessed with cleaning.\tMa femme est obsédée par le nettoyage.\nMy wife isn't beautiful. Yours is.\tMa femme n'est pas belle. La tienne oui.\nMy younger brother is watching TV.\tMon petit frère regarde la télé.\nMy younger brother is watching TV.\tMon petit frère est en train de regarder la télé.\nNo meal is complete without bread.\tAucun repas n'est complet sans pain.\nNo medicine can cure this disease.\tAucun médicament ne peut guérir cette maladie.\nNo one I know wears a tie anymore.\tPersonne que je connaisse ne porte plus de cravate.\nNo one informed me of his failure.\tPersonne ne m'a informé de son échec.\nNo one told me that he had failed.\tPersonne ne m'a dit qu'il avait échoué.\nNo one wanted to insult these men.\tPersonne ne voulait offenser ces messieurs.\nNo stars could be seen in the sky.\tAucune étoile ne pouvait être vue dans le ciel.\nNobody is paying attention to Tom.\tPersonne ne fait attention à Tom.\nNobody knows why he left the town.\tPersonne ne sait pourquoi il a quitté la ville.\nNoh is a traditional Japanese art.\tLe nô est un art traditionnel japonais.\nNot a sound was heard in the room.\tPas un bruit ne se fit entendre dans la pièce.\nNot all of those books are useful.\tTous ces livres ne sont pas forcément intéressants.\nNot all teachers behave like that.\tTous les enseignants ne se comportent pas ainsi.\nNot all the students were present.\tTous les élèves n'étaient pas présents.\nNot everybody knows about my plan.\tTout le monde n'est pas au courant de mon projet.\nNot everything is black and white.\tTout n'est pas noir et blanc.\nNothing could sway his conviction.\tRien ne pouvait changer ses convictions.\nNothing's going to happen tonight.\tIl ne va rien se passer ce soir.\nNowadays jobs are hard to come by.\tDe nos jours il est difficile de trouver du travail.\nOnce you begin, you must continue.\tUne fois que tu commences, tu dois continuer.\nOnce you begin, you must continue.\tUne fois que vous commencez, vous devez poursuivre.\nOne is red and the other is white.\tL'un est rouge, l'autre est blanc.\nOne of the boys suddenly ran away.\tUn des garçons s'est soudainement enfui.\nOne word is enough for a wise man.\tUn mot est assez pour un homme sage.\nOne-fifth of my wages go to taxes.\tUn cinquième de mon salaire part en impôt.\nOnions can be eaten raw or cooked.\tOn peut manger les oignons crus ou cuits.\nOpposition to the bill was strong.\tL'opposition au texte de loi était forte.\nOur cat's fur has lost its luster.\tLa fourrure de notre chat a perdu de sa splendeur.\nOur class has forty-five students.\tNotre classe compte quarante-cinq étudiants.\nOur main problem remains unsolved.\tNotre principal problème reste sans solution.\nOur school library has many books.\tLa bibliothèque de notre école dispose de nombreux livres.\nOur school library has many books.\tLa bibliothèque de notre école possède de nombreux livres.\nOur teachers are highly qualified.\tNos professeurs sont hautement qualifiés.\nOur troops engaged with the enemy.\tNos troupes attaquèrent l'ennemi.\nOur uncle bought us movie tickets.\tNotre oncle nous a acheté des places de cinéma.\nPaper was first invented in China.\tLe papier fut en premier lieu inventé en Chine.\nPeel the potatoes and the carrots.\tÉpluche les pommes de terre et les carottes.\nPeople are playing near the beach.\tDes gens sont en train de jouer à proximité de la plage.\nPeople came to like her paintings.\tLes gens se mirent à apprécier ses tableaux.\nPeople grow more cynical with age.\tLes gens deviennent plus cyniques avec l'âge.\nPeople notice every move he makes.\tLes gens remarquent chacun de ses mouvements.\nPeople of all ages like this song.\tCette chanson plaît aux personnes de tous âges.\nPerhaps he'll never become famous.\tPeut-être qu'il ne deviendra jamais célèbre.\nPhoenix is the capital of Arizona.\tPhoenix est la capitale de l'Arizona.\nPhotography is an expensive hobby.\tLa photographie est un passe-temps coûteux.\nPhotography is an expensive hobby.\tLa photographie est un passe-temps onéreux.\nPlace the ladder against the wall.\tMettez l'échelle contre le mur.\nPlaying go is my favorite pastime.\tMon passe-temps favori est le jeu de go.\nPlease choose a stronger password.\tVeuillez choisir un mot de passe plus robuste.\nPlease don't cut me off like that.\tNe me coupe pas la parole comme ça, s'il te plaît.\nPlease don't think of it that way.\tJe te prie de ne pas y songer de cette manière.\nPlease don't think of it that way.\tJe vous prie de ne pas y songer de cette manière.\nPlease drop me off at the station.\tDépose-moi à la gare s'il te plaît.\nPlease feel free to ask questions.\tN'hésitez pas à poser des questions, je vous prie.\nPlease feel free to ask questions.\tJe te prie de ne pas hésiter à poser des questions.\nPlease help yourself to the fruit.\tJe vous en prie, servez-vous de fruits.\nPlease help yourself to the salad.\tS'il vous plaît, prenez de la salade.\nPlease keep my place in this line.\tS'il vous plait, gardez ma place dans cette rangée.\nPlease make yourself at home here.\tS'il vous plaît, faites comme chez vous.\nPlease put on your safety glasses.\tMettez vos lunettes de protection, je vous prie !\nPlease say the alphabet backwards.\tPrononce l'alphabet à l'envers, s'il te plaît.\nPlease sit on this chair and wait.\tVeuillez prendre place sur cette chaise-ci et attendre.\nPlease stop playing with your hat.\tArrête de jouer avec ton chapeau, s'il te plaît.\nPlease stop playing with your hat.\tArrêtez de jouer avec votre chapeau, s'il vous plaît.\nPlease take good care of yourself.\tPrends bien soin de toi.\nPlease take good care of yourself.\tS'il te plaît, prends bien soin de toi.\nPlease take me to the Grand Hotel.\tVeuillez me conduire au Grand Hôtel.\nPlease wake me up at six tomorrow.\tS'il te plaît, réveille-moi à six heures demain.\nRain is forecast for this evening.\tDe la pluie est prévue dans la soirée.\nRaise your hand before you answer.\tLève la main avant de répondre.\nRead Lesson 10 from the beginning.\tLisez la leçon dix depuis le début.\nRead Lesson 10 from the beginning.\tLisez la leçon dix à partir du début.\nRead Lesson 10 from the beginning.\tLis la leçon dix à partir du début.\nReading books is very interesting.\tLire des livres est très intéressant.\nReading books is very interesting.\tLire des livres est fort intéressant.\nRenting a car was the best option.\tLouer une voiture était l'alternative la plus avantageuse.\nRumors of defeat were circulating.\tDes rumeurs circulaient à propos d'une défaite.\nRumors of defeat were circulating.\tDes rumeurs couraient au sujet d'un échec.\nScott was a contemporary of Byron.\tScott était contemporain de Byron.\nSee that this never happens again.\tFaites en sorte que ça ne se produise plus.\nSee that this never happens again.\tFais en sorte que ça ne se produise plus.\nShe advised him to go there alone.\tElle lui conseilla d'y aller seul.\nShe advised him to go there alone.\tElle lui conseilla de s'y rendre seul.\nShe advised him to go there alone.\tElle lui a conseillé d'y aller seul.\nShe advised him to go there alone.\tElle lui a conseillé de s'y rendre seul.\nShe advised him to take the money.\tElle lui conseilla de prendre l'argent.\nShe advised him to take the money.\tElle lui a conseillé de prendre l'argent.\nShe always buys expensive clothes.\tElle achète toujours des vêtements coûteux.\nShe always buys expensive clothes.\tElle achète toujours de coûteux vêtements.\nShe always expects me to help her.\tElle attend toujours de moi que je l'aide.\nShe answered my letter right away.\tElle répondit sans attendre à ma lettre.\nShe answered my letter right away.\tElle répondit sans délai à ma lettre.\nShe answered my letter right away.\tElle répondit immédiatement à ma lettre.\nShe asked him to not quit his job.\tElle le pria de ne pas quitter son emploi.\nShe asked him to not quit his job.\tElle l'a prié de ne pas quitter son emploi.\nShe asked me if I knew how to sew.\tElle m'a demandé si je savais coudre.\nShe asked me to pass her the salt.\tElle m'a demandé de lui passer le sel.\nShe avoided him whenever possible.\tElle l'évita chaque fois que possible.\nShe avoided him whenever possible.\tElle l'a évité chaque fois que possible.\nShe backed out at the last moment.\tElle recula au dernier moment.\nShe backed out at the last moment.\tElle fit machine arrière au dernier moment.\nShe begged for something to drink.\tElle quémanda quelque chose à boire.\nShe bought this pen at that store.\tElle a acheté ce stylo dans ce magasin.\nShe can speak English pretty well.\tElle parle vraiment bien l'anglais.\nShe cannot have done such a thing.\tElle n'a pas pu faire une chose pareille.\nShe carried that table by herself.\tElle a transporté cette table toute seule.\nShe decided to have the operation.\tElle se décida à subir l'opération.\nShe declined to say more about it.\tElle refusa d'en dire davantage.\nShe decorated her room with roses.\tElle a décoré sa chambre avec des roses.\nShe described the scene in detail.\tElle décrivit la scène en détail.\nShe devoted her life to education.\tElle a voué sa vie à l'éducation.\nShe didn't appear to recognize me.\tElle ne sembla pas me reconnaître.\nShe didn't appear to recognize me.\tElle n'a pas semblé me reconnaître.\nShe didn't feel like eating lunch.\tElle n'eut pas envie de déjeuner.\nShe didn't feel like eating lunch.\tElle n'a pas eu envie de déjeuner.\nShe didn't feel like eating lunch.\tElle n'était pas d'humeur à déjeuner.\nShe didn't let him touch her baby.\tElle ne l'a pas laissé toucher son bébé.\nShe didn't try to evade the truth.\tElle n'essaya pas de se dérober à la vérité.\nShe didn't try to evade the truth.\tElle n'a pas essayé de se dérober à la vérité.\nShe didn't want him to play poker.\tElle ne voulait pas qu'il joue au poker.\nShe didn't want him to play poker.\tElle ne voulut pas qu'il joue au poker.\nShe didn't want him to play poker.\tElle n'a pas voulu qu'il joue au poker.\nShe didn't want him to play poker.\tElle n'a pas voulu qu'il jouât au poker.\nShe didn't want him to play poker.\tElle ne voulait pas qu'il jouât au poker.\nShe doesn't understand me, either.\tElle ne me comprend pas non plus.\nShe doesn't want to talk about it.\tElle ne veut pas en parler.\nShe drinks a little wine at times.\tElle boit un peu de vin de temps en temps.\nShe entered this school last year.\tElle est entrée dans cette école l'année dernière.\nShe fell unconscious to the floor.\tElle tomba au sol, inconsciente.\nShe felt something touch her neck.\tElle sentit quelque chose toucher son cou.\nShe gave him everything she owned.\tElle lui donna tout ce qu'elle possédait.\nShe gave me a bag made of leather.\tElle me donna un sac de cuir.\nShe gave me a bag made of leather.\tElle m'a donné un sac de cuir.\nShe gave me access to her records.\tElle m'a autorisé l'accès à ses enregistrements.\nShe gave me some practical advice.\tElle m'a donné des conseils pratiques.\nShe gets hives when she eats eggs.\tElle fait de l'urticaire lorsqu'elle consomme des œufs.\nShe gets hives when she eats eggs.\tElle fait de l'urticaire lorsqu'elle mange des œufs.\nShe goes to a school for the deaf.\tElle va à une école pour les sourds.\nShe got him to eat his vegetables.\tElle lui a fait manger ses légumes.\nShe grew up to be a famous doctor.\tElle devint un docteur célèbre.\nShe had a narrow escape yesterday.\tElle l'a échappé belle hier.\nShe had only a small sum of money.\tElle avait seulement une petite somme d'argent.\nShe has a distinct English accent.\tElle a un accent anglais différent.\nShe has a very strong personality.\tElle a une très forte personnalité.\nShe has been busy since yesterday.\tElle est occupée depuis hier.\nShe has been sick since last week.\tElle a été malade depuis la semaine dernière.\nShe has been sick since last week.\tElle est malade depuis la semaine dernière.\nShe has known him for a long time.\tElle le connaît depuis longtemps.\nShe has no opinion about religion.\tElle est dépourvue d'opinion en matière de religion.\nShe has put her house up for sale.\tElle a mis sa maison en vente.\nShe hates fish and never eats any.\tElle déteste le poisson et n'en a jamais mangé aucun.\nShe hates fish and never eats any.\tElle a horreur du poisson et n'en mange jamais.\nShe helped me out countless times.\tElle m'a aidé un nombre incalculable de fois.\nShe helped me out countless times.\tElle m'a aidée un nombre incalculable de fois.\nShe hung the calendar on the wall.\tElle accrocha le calendrier au mur.\nShe insisted that it was my fault.\tElle insistait sur le fait que c'était ma faute.\nShe intended to become an actress.\tElle eut l'intention de devenir actrice.\nShe intended to become an actress.\tElle a eu l'intention de devenir actrice.\nShe is apparently an honest woman.\tElle est apparemment une honnête femme.\nShe is around twenty years of age.\tElle a aux alentours de vingt ans.\nShe is as beautiful as Snow White.\tElle est belle comme Blanche-Neige.\nShe is as beautiful as her mother.\tElle est belle comme sa mère.\nShe is ashamed of her old clothes.\tElle a honte de ses vieux vêtements.\nShe is ashamed of what she's done.\tElle a honte de ce qu'elle a fait.\nShe is constantly writing letters.\tElle écrit constamment des lettres.\nShe is constantly writing letters.\tElle est constamment en train d'écrire des lettres.\nShe is five years younger than me.\tElle a cinq ans de moins que moi.\nShe is more pretty than beautiful.\tElle est davantage mignonne que belle.\nShe is on friendly terms with him.\tElle est en bons termes avec lui.\nShe is related to him by marriage.\tElle lui est apparentée par alliance.\nShe is traveling around the world.\tElle voyage autour du monde.\nShe is unable to cope with stress.\tElle est incapable de faire face à la tension.\nShe is very proud of her daughter.\tElle est très fière de sa fille.\nShe is working hard this semester.\tElle travaille dur, ce semestre.\nShe isn't paid monthly, but daily.\tElle n'est pas payée mensuellement mais de manière journalière.\nShe kept silent about the problem.\tElle a gardé le silence au sujet de ce problème.\nShe learned her part very quickly.\tElle a très rapidement appris son rôle.\nShe left her son alone in the car.\tElle a laissé son fils seul dans la voiture.\nShe left the hospital an hour ago.\tElle a quitté l'hôpital il y a une heure.\nShe likes being looked at by boys.\tElle aime quand un garçon la regarde.\nShe looks beautiful in that dress.\tElle a l'air belle dans cette robe.\nShe made an excuse for being late.\tElle trouva une excuse pour être en retard.\nShe made cookies for the children.\tElle a fait des cookies pour les enfants.\nShe made her husband an apple pie.\tElle a fait une tarte aux pommes à son mari.\nShe made him a cake for his party.\tElle lui confectionna un gâteau pour sa fête.\nShe made up her mind to go abroad.\tElle s'est décidée à partir à l'étranger.\nShe may be a nurse. I am not sure.\tElle est peut-être infirmière. Je n'en suis pas sûr.\nShe must have been very beautiful.\tElle doit avoir été très belle.\nShe must still be in her twenties.\tElle doit encore être dans la vingtaine.\nShe ordered the book from England.\tElle a commandé le livre en Angleterre.\nShe played the guitar and he sang.\tElle jouait de la guitare et il chantait.\nShe pleaded with him to not leave.\tElle l'implora de ne pas partir.\nShe practices the piano every day.\tElle pratique quotidiennement le piano.\nShe presented him with the trophy.\tElle lui a remis le trophée.\nShe pressured him to quit his job.\tElle le pressa de quitter son emploi.\nShe pressured him to quit his job.\tElle l'a pressé de quitter son emploi.\nShe put up the new curtains today.\tAujourd'hui elle a accroché de nouveaux rideaux.\nShe should be charged with murder.\tElle devrait être inculpée pour meurtre.\nShe should have been more careful.\tElle aurait dû être plus prudente.\nShe should have bought a used car.\tElle aurait dû s'acheter une voiture d'occasion.\nShe showed me which dress to wear.\tElle me montra quelle robe porter.\nShe spoke to him about the matter.\tElle lui parla de l'affaire.\nShe spoke to him about the matter.\tElle lui a parlé de l'affaire.\nShe stared at him in astonishment.\tElle le fixa avec stupéfaction.\nShe stole a lot of money from him.\tElle lui a volé beaucoup d'argent.\nShe thinks about him all the time.\tElle pense tout le temps à lui.\nShe thought that I was the doctor.\tElle pensa que j'étais le médecin.\nShe told him that she was leaving.\tElle lui dit qu'elle partait.\nShe told him that she was leaving.\tElle lui a dit qu'elle partait.\nShe translated that word for word.\tElle l'a traduit mot à mot.\nShe translated that word for word.\tElle le traduisit mot à mot.\nShe turned against her old friend.\tElle détesta son ancien ami.\nShe visited her husband in prison.\tElle rendait visite à son mari en prison.\nShe walked around looking for him.\tElle se promenait autour à sa recherche.\nShe wanted him to help her father.\tElle voulait qu'il aide son père.\nShe wanted him to sing her a song.\tElle voulait qu'il lui chante une chanson.\nShe wants him to be just a friend.\tElle veut qu'il soit seulement un ami.\nShe was accompanied by her mother.\tElle était accompagnée de sa mère.\nShe was afraid of waking the baby.\tElle craignait de réveiller le bébé.\nShe was engaged as an interpreter.\tElle a été engagée en tant qu'interprète.\nShe was fined 10 dollars for that.\tElle a eu une amende de 10 dollars pour ça.\nShe was laughed at by her friends.\tSes amis rirent d'elle.\nShe was laughed at by her friends.\tElle fut moquée par ses amis.\nShe was laughed at by her friends.\tElle fut moquée par ses amies.\nShe was never disrespectful to me.\tElle ne m'a jamais manqué de respect.\nShe was not in the mood for lunch.\tElle n'était pas d'humeur à déjeuner.\nShe was on the point of going out.\tElle était sur le point de sortir.\nShe was satisfied with the result.\tElle a été satisfaite du résultat.\nShe was sore at me for being late.\tElle était agacée en raison de mon retard.\nShe was successful in the attempt.\tElle a réussi sa tentative.\nShe was the first one to help him.\tElle fut la première à l'aider.\nShe was the first one to help him.\tElle a été la première à l'aider.\nShe wasn't friendly with him then.\tElle n'était pas sympa avec lui, alors.\nShe wasn't friendly with him then.\tElle n'était pas gentille avec lui, alors.\nShe watched him drawing a picture.\tElle le regarda tracer un dessin.\nShe watched him drawing a picture.\tElle l'a regardé tracer un dessin.\nShe went to a movie the other day.\tElle est allée voir un film l'autre jour.\nShe went to see him the other day.\tElle est allée le voir l'autre jour.\nShe went to see him the other day.\tElle est allée le voir, l'autre jour.\nShe went to the movies by herself.\tElle est allé au cinéma toute seule.\nShe works as hard as anybody does.\tElle travaille aussi dur que n'importe qui.\nShe works for French intelligence.\tElle travaille pour le compte du Renseignement Français.\nShe works for French intelligence.\tElle travaille pour les services secrets français.\nShe would not disclose the secret.\tElle refusait de dévoiler le secret.\nShe would not disclose the secret.\tElle ne dévoilerait pas le secret.\nShe would often play tricks on me.\tElle me fait souvent des blagues.\nShe would often play tricks on me.\tElle me joue souvent des tours.\nShe's a professional photographer.\tElle est photographe professionnelle.\nShe's putting the children to bed.\tElle est en train de coucher les enfants.\nShe's putting the children to bed.\tElle est en train de mettre les enfants au lit.\nShe's wearing a great-looking hat.\tElle porte un chapeau qui a l'air superbe.\nShoes are stiff when they are new.\tLes chaussures sont raides quand elles sont neuves.\nSix months is a long time to wait.\tSix mois, c'est long à attendre.\nSmoke was rising from the chimney.\tDe la fumée sortait de la cheminée.\nSmoking is harmful to your health.\tFumer nuit à la santé.\nSmoking is harmful to your health.\tFumer est mauvais pour votre santé.\nSmoking will do you a lot of harm.\tFumer vous fera beaucoup de mal.\nSmoking will do you a lot of harm.\tFumer te fera beaucoup de mal.\nSo, do you really want to do this?\tAlors, voulez-vous vraiment faire cela ?\nSo, do you really want to do this?\tAlors, veux-tu vraiment faire cela ?\nSo, what is it you want me to say?\tAlors, que veux-tu que je dise ?\nSo, what is it you want me to say?\tAlors, que voulez-vous que je dise ?\nSome friends invited me to dinner.\tDes amis m'ont invité à diner.\nSome of them did very little work.\tCertains d'entre eux effectuèrent très peu de travail.\nSome of us might be willing to go.\tIl se pourrait que certains d'entre nous veuillent y aller.\nSome people are afraid of spiders.\tCertaines personnes ont peur des araignées.\nSome people have a terror of mice.\tCertaines personnes ont une peur bleue des souris.\nSome people think it's a bad idea.\tCertaines personnes pensent que c'est une mauvaise idée.\nSomeday your dream will come true.\tUn jour ton rêve deviendra réalité.\nSomething bad was about to happen.\tQuelque chose de mauvais était sur le point de se produire.\nSomething has gone terribly wrong.\tQuelque chose a vraiment foiré.\nSomething unexpected has happened.\tIl s'est passé un imprévu.\nSometimes I go, sometimes I don't.\tParfois je vais, parfois non.\nSorry, I didn't mean to interrupt.\tDésolé, je n'avais pas l'intention de vous interrompre.\nSorry, I didn't mean to interrupt.\tDésolée, je n'avais pas l'intention de vous interrompre.\nSorry, I didn't mean to interrupt.\tDésolé, je n'avais pas l'intention de t'interrompre.\nSorry, I didn't mean to interrupt.\tDésolée, je n'avais pas l'intention de t'interrompre.\nSorry, I didn't mean to scare you.\tDésolé, je n'avais pas l'intention de te faire peur.\nSorry, I didn't mean to scare you.\tDésolée, je n'avais pas l'intention de te faire peur.\nSorry, I didn't mean to scare you.\tDésolé, je n'avais pas l'intention de vous faire peur.\nSorry, I didn't mean to scare you.\tDésolée, je n'avais pas l'intention de vous faire peur.\nSorry, I've got my hands full now.\tDésolé, j'ai les mains pleines à l'instant.\nSorry, I've got my hands full now.\tDésolée, j'ai les mains pleines à l'instant.\nSorry, but I have to work tonight.\tDésolé, mais je dois travailler ce soir.\nSpace travel is no longer a dream.\tVoyager dans l'espace n'est plus un rêve.\nSpare the rod and spoil the child.\tQui aime bien châtie bien.\nSpeech is silver, silence is gold.\tLa parole est d'argent mais le silence est d'or.\nStay where you are. I'm on my way.\tBouge pas. J'arrive.\nSteam is coming out of the engine.\tDe la vapeur s'échappe du moteur.\nSteam is coming out of the engine.\tDe la vapeur sort du moteur.\nStop hiding your head in the sand.\tArrête de te cacher la tête dans le sable.\nStrong winds accompanied the rain.\tDes vents forts ont accompagné la pluie.\nSuch painters as Picasso are rare.\tLes peintres tels que Picasso sont rares.\nSuddenly, all the lights went out.\tTout à coup, toutes les lampes s'éteignirent.\nSummer days can be very, very hot.\tLes jours d'été peuvent être extrêmement chauds.\nTake a deep breath and then relax.\tRespire à fond et ensuite relâche-toi.\nTake a deep breath and then relax.\tInspire profondément et puis relâche-toi.\nTake your hand out of your pocket.\tSors la main de ta poche !\nTake your hand out of your pocket.\tSortez la main de votre poche !\nTake your time when you eat meals.\tPrends ton temps lorsque tu prends tes repas.\nTake your time when you eat meals.\tPrenez votre temps lorsque vous prenez vos repas.\nTaking care of the baby is my job.\tPrendre soin du bébé est mon travail.\nTaking off is easier than landing.\tLe décollage est plus facile que l'atterrissage.\nTelevision is ruining family life.\tLa télé ruine la vie de famille.\nTell him to mind his own business.\tDis-lui de s'occuper de ses affaires.\nTell me how the robbery went down.\tDis-moi comment le vol s'est déroulé.\nTell me how the robbery went down.\tDites-moi comment le vol s'est déroulé.\nTell me your story. I am all ears.\tRaconte-moi ton histoire. Je suis tout ouïe.\nTell me your story. I am all ears.\tConte-moi ton histoire. Je suis tout ouïe.\nTen is ten percent of one hundred.\tDix, c'est dix pour cent de cent.\nTen is ten percent of one hundred.\tC'est dix qui est dix pour cent de cent.\nThank you for your recommendation.\tMerci pour votre recommandation.\nThank you very much for your help.\tMerci beaucoup pour votre aide.\nThank you, sir, for your kindness.\tMerci, monsieur, de votre gentillesse.\nThanks for photocopying it for me.\tMerci de me le télécopier.\nThat bicycle is too small for you.\tCe vélo est trop petit pour toi.\nThat bicycle is too small for you.\tCe vélo est trop petit pour vous.\nThat country's economy is growing.\tL'économie de ce pays est en croissance.\nThat doesn't make any sense to me.\tÇa n'a pour moi aucun sens.\nThat ended better than I expected.\tÇa s'est terminé mieux que je le prévoyais.\nThat ended better than I expected.\tCela se termina mieux que je ne m'y attendais.\nThat girl over there is my sister.\tLa fille là-bas, est ma sœur.\nThat hotel has a homey atmosphere.\tCet hôtel a une atmosphère accueillante.\nThat hotel was very near the lake.\tCet hôtel était très proche du lac.\nThat is how the accident occurred.\tC'est ainsi que l'accident survint.\nThat is not how we do things here.\tCe n'est pas la manière que nous avons de faire les choses, ici.\nThat is not how we do things here.\tCe n'est pas la manière avec laquelle nous faisons les choses, ici.\nThat is the office where he works.\tC'est le bureau dans lequel il travaille.\nThat isn't what I'm talking about.\tCe n'est pas ce dont je parle.\nThat man sometimes talks nonsense.\tCet homme dit parfois n'importe quoi.\nThat one over there's really cute.\tCelle-là, là-bas, est vraiment mignonne.\nThat one over there's really cute.\tCelui-là, là-bas, est vraiment mignon.\nThat pair of pliers came in handy.\tLa pince se révéla utile.\nThat pair of pliers came in handy.\tLes tenailles se révélèrent bien utiles.\nThat pair of pliers came in handy.\tCette pince s'avéra utile.\nThat question is under discussion.\tCette question est en délibération.\nThat reporter has a nose for news.\tCe journaliste a du flair pour les nouvelles.\nThat shouldn't be too hard to get.\tCela ne devrait pas être trop difficile à obtenir.\nThat speech lost Tom the election.\tCe discours a fait perdre à Tom l'élection.\nThat student's studying sociology.\tCet étudiant étudie la sociologie.\nThat town has many tall buildings.\tIl y a de nombreux bâtiments de grande taille dans cette ville.\nThat town has many tall buildings.\tCette ville comporte de nombreux bâtiments de grande taille.\nThat was a big mistake, wasn't it?\tC'était une grave erreur, non ?\nThat was a big mistake, wasn't it?\tCe fut une grave erreur, n'est-ce pas ?\nThat will cost you a lot of money.\tCela vous coûtera beaucoup d'argent.\nThat will cost you a lot of money.\tÇa va te coûter beaucoup d'argent.\nThat woman has wrongly accused me.\tCette femme m'a accusé à tort.\nThat would be ironic, wouldn't it?\tCe serait ironique, n'est-ce pas ?\nThat's a pretty dress you have on.\tC'est une jolie robe que tu portes.\nThat's a pretty dress you have on.\tC'est une jolie robe que vous portez.\nThat's a tough question to answer.\tC'est une question difficile à répondre.\nThat's it. I've done all I can do.\tÇa y est. J'ai fait tout ce que je peux.\nThat's just what I need right now.\tC'est précisément ce qu'il me faut à l'instant.\nThat's just what I need right now.\tC'est précisément ce dont j'ai besoin à l'instant.\nThat's just what I wanted to hear.\tC'est précisément ce que je voulais entendre.\nThat's not exactly a top priority.\tCe n'est pas exactement une des priorités.\nThat's not something I want to do.\tCe n'est pas quelque chose que je veux faire.\nThat's not something I want to do.\tCe n'est pas quelque chose que je veuille faire.\nThat's not what I'm trying to say.\tCe n'est pas ce que j'essaie de dire.\nThat's not where I was last night.\tCe n'est pas là que j'étais hier soir.\nThat's the reason he became angry.\tC'est la raison pour laquelle il s'est mis en colère.\nThat's the worst thing you can do!\tC'est la pire chose que tu puisses faire !\nThat's the worst thing you can do!\tC'est la pire chose que vous puissiez faire !\nThat's what I want most right now.\tC'est ce que je veux le plus, à l'instant.\nThat's what we have to figure out.\tC'est ce que nous devons découvrir.\nThe 1990s began with the Gulf War.\tLes années 90 ont commencé avec la guerre du golfe.\nThe American flag has fifty stars.\tLe drapeau des USA a cinquante étoiles.\nThe Greens are against everything.\tLes verts sont contre tout.\nThe actress is learning her lines.\tL'actrice apprend son texte.\nThe answer is anything but simple.\tLa réponse est tout sauf simple.\nThe answer to your question is no.\tLa réponse à ta question est non.\nThe answer was pretty astonishing.\tLa réponse était assez étonnante.\nThe apartment building is on fire.\tL'immeuble est en feu.\nThe arrow indicates the way to go.\tLa flèche indique la voie à suivre.\nThe auto industry is hiring again.\tLe secteur automobile embauche à nouveau.\nThe baby can stand but can't walk.\tLe bébé peut se tenir debout mais il ne peut marcher.\nThe baby seemed to be fast asleep.\tLe bébé semblait dormir à poings fermés.\nThe bags were piled up behind him.\tLes sacs étaient empilés derrière lui.\nThe beach is swarming with people.\tLa plage grouille de monde.\nThe boy didn't change his opinion.\tLe garçon n'a pas changé son opinion.\nThe boy didn't change his opinion.\tLe garçon ne changea pas d'avis.\nThe boy has never been to the zoo.\tLe garçon n'est jamais allé au zoo.\nThe boy narrowly escaped drowning.\tLe garçon a échappé de justesse à la noyade.\nThe boy talks as if he were a man.\tL'enfant parle comme s'il était un homme.\nThe boy told me why he was crying.\tL'enfant me dit pourquoi il pleurait.\nThe boy told me why he was crying.\tLe garçon me conta pourquoi il pleurait.\nThe bus stop is across the street.\tL'arrêt de bus est de l'autre côté de la rue.\nThe capital of Brazil is Brasilia.\tLa capitale du Brésil est Brasilia.\nThe car has been acting strangely.\tLa voiture s'est comportée bizarrement.\nThe cat is hiding under the couch.\tLe chat est caché sous le canapé.\nThe chickens were killed by a fox.\tLes poulets ont été tués par un renard.\nThe child came near being drowned.\tL'enfant a failli se noyer.\nThe child picked up a small stone.\tL'enfant a ramassé un caillou.\nThe children made a giant snowman.\tLes enfants érigèrent un bonhomme de neige colossal.\nThe city wants to extend the road.\tLa ville veut prolonger la route.\nThe coat doesn't have any pockets.\tLe manteau n'a aucune poche.\nThe committee meets twice a month.\tLe comité se réunit deux fois par mois.\nThe company will soon go bankrupt.\tL'entreprise va bientôt faire faillite.\nThe competition has become fierce.\tLa concurrence est devenue féroce.\nThe crowd cried out for an encore.\tLa foule criait pour un rappel.\nThe data hasn't been compiled yet.\tLes données n'ont pas encore été compilées.\nThe days are longer in the summer.\tLes jours sont plus longs durant l'été.\nThe decision hasn't yet been made.\tLa décision n'a pas encore été prise.\nThe desk seems small in this room.\tLe bureau semble petit, dans cette pièce.\nThe doctor started to examine her.\tLe docteur a commencé à l'examiner.\nThe door will be painted tomorrow.\tLa porte sera peinte demain.\nThe driver of the bus was injured.\tLe chauffeur du bus a été blessé.\nThe drowning man shouted for help.\tL'homme qui se noyait a crié à l'aide.\nThe drug problem is international.\tLe problème de la drogue est international.\nThe economic situation grew worse.\tLa situation économique empira.\nThe export of arms was prohibited.\tL'exportation d'armes était interdite.\nThe family had its dinner at noon.\tLa famille prit son déjeuner à midi.\nThe family had its dinner at noon.\tLa famille a pris son déjeuner à midi.\nThe file cabinet drawers are open.\tLes tiroirs du classeur sont ouverts.\nThe fire was extinguished at once.\tLe feu fut rapidement éteint.\nThe fire was extinguished at once.\tLe feu a immédiatement été éteint.\nThe girl treated her horse kindly.\tLa fille traitait son cheval gentiment.\nThe gunman was found to be insane.\tLe tireur se révéla être fou.\nThe heater is warming up the room.\tLe radiateur réchauffe la pièce.\nThe helicopter landed on the roof.\tL'hélicoptère s'est posé sur le toit.\nThe hunters aimed at the elephant.\tLes chasseurs mirent l'éléphant en joue.\nThe hunters aimed at the elephant.\tLes chasseurs ont mis l'éléphant en joue.\nThe ice gave way under his weight.\tLa glace a cédé sous son poids.\nThe interview began at 10 o'clock.\tL'entrevue commença à 10 heures.\nThe issue is quite familiar to us.\tCe problème ne nous est pas inconnu.\nThe issue is quite familiar to us.\tCe problème nous est connu.\nThe job must be finished by 3 p.m.\tCe travail doit être terminé à 15 heures.\nThe kids jumped on the trampoline.\tLes enfants sautèrent sur le trampoline.\nThe kids jumped on the trampoline.\tLes enfants ont sauté sur le trampoline.\nThe lake is deepest at this point.\tC'est le point le plus profond du lac.\nThe landscape is unfamiliar to me.\tCe paysage ne m'est pas familier.\nThe little girl hid in the closet.\tLa petite fille s'est cachée dans l'armoire.\nThe mailman left a letter for her.\tLe facteur a laissé une lettre pour elle.\nThe man was given a life sentence.\tL'homme a été condamné à perpétuité.\nThe mechanic assembled the engine.\tLe mécanicien assembla le moteur.\nThe meeting is held twice a month.\tLa réunion se tient deux fois par mois.\nThe money on the desk is not mine.\tL'argent sur le comptoir n'est pas à moi.\nThe more laws, the more offenders.\tPlus il y a de lois, plus il y a de délinquants.\nThe mountain is covered with snow.\tCette montagne est recouverte de neige.\nThe mountain is covered with snow.\tLa montagne est recouverte de neige.\nThe new boy had a nervous stammer.\tLe nouveau bégayait lorsqu'il était énervé.\nThe noise kept me awake all night.\tLe bruit m'a gardé éveillé toute la nuit.\nThe noise kept me awake all night.\tLe bruit m'a gardée éveillée toute la nuit.\nThe noise kept me awake all night.\tLe bruit me garda éveillé toute la nuit.\nThe noise kept me awake all night.\tLe bruit me garda éveillée toute la nuit.\nThe old man gave her a small doll.\tLe vieil homme lui donna une petite poupée.\nThe old woman was nearly run over.\tLa vieille femme s'est presque fait rouler dessus.\nThe origin of the fire is unknown.\tL'origine de l'incendie est inconnue.\nThe paraglider landed in the tree.\tLe parapentiste atterrit dans l'arbre.\nThe parking lot is free of charge.\tLe parking est gratuit.\nThe peace talks failed once again.\tLes pourparlers de paix ont de nouveau échoué.\nThe plan calls for a lot of money.\tLe projet demande beaucoup d'argent.\nThe plane is approaching New York.\tL'avion s'approche de New York.\nThe price of everything increased.\tLe prix de tout augmenta.\nThe prince became a king that day.\tLe prince devint un roi ce jour-là.\nThe problem is as good as settled.\tLe problème est pour ainsi dire réglé.\nThe problem is difficult to solve.\tIl est difficile de résoudre ce problème\nThe puppy licked her on the cheek.\tLe chiot la lécha à la joue.\nThe rain prevented me from coming.\tLa pluie m'a empêché de venir.\nThe rebels sabotaged the railroad.\tLes rebelles ont saboté la voie de chemin de fer.\nThe rebels sabotaged the railroad.\tLes rebelles sabotèrent la voie de chemin de fer.\nThe report turned out to be false.\tLe rapport s'est révélé faux.\nThe report turned out to be false.\tLe rapport se révéla faux.\nThe river's water level has risen.\tLe niveau de la rivière s'est élevé.\nThe road is in a deplorable state.\tLa route se trouve dans un état déplorable.\nThe roof was damaged by the storm.\tLe toit a été endommagé par la tempête.\nThe room became filled with smoke.\tLa pièce s'emplit de fumée.\nThe room is crawling with spiders.\tLa pièce grouille d'araignées.\nThe room will be painted tomorrow.\tLa pièce sera peinte demain.\nThe sculptures are of great value.\tLes sculptures sont de grande valeur.\nThe ship ran aground on a sandbar.\tLa bateau s'est échoué sur un banc de sable.\nThe soldiers began returning home.\tLes soldats commencèrent à rentrer chez eux.\nThe source of the fire is unknown.\tLa cause de l'incendie est inconnue.\nThe store might be closed already.\tIl se pourrait que le magasin soit déjà fermé.\nThe storm didn't cause any damage.\tLa tempête n'a causé aucun dommage.\nThe storm didn't cause any damage.\tLa tempête n'a occasionné aucun dommage.\nThe sun is brighter than the moon.\tLe soleil est plus brillant que la lune.\nThe suspect is a caucasian female.\tLa suspecte est une femme de type européen.\nThe taxi picked up two passengers.\tLe taxi prit deux passagers.\nThe taxi picked up two passengers.\tLe taxi a pris deux passagers.\nThe teachers greeted the children.\tLes enseignants saluèrent les enfants.\nThe teachers greeted the children.\tLes instituteurs saluèrent les enfants.\nThe teachers greeted the children.\tLes institutrices saluèrent les enfants.\nThe theory is too abstract for me.\tLa théorie est trop abstraite pour moi.\nThe thief got away with the money.\tLe voleur s'est tiré avec l'argent.\nThe thief got away with the money.\tLe voleur s'est échappé avec l'argent.\nThe thief got away with the money.\tLe voleur a fui avec l'argent.\nThe thief was bound hand and foot.\tLe voleur était pieds et poings liés.\nThe toilet doesn't flush properly.\tLa chasse d'eau ne marche pas correctement.\nThe toilet doesn't flush properly.\tLa chasse d'eau ne fonctionne pas correctement.\nThe train lurched to a standstill.\tLe train s'arrêta après une embardée.\nThe train was thirty minutes late.\tLe train était en retard de trente minutes.\nThe tree fell over in the typhoon.\tL'arbre est tombé lors du typhon.\nThe two sides negotiated for days.\tLes deux parties négocièrent durant des jours.\nThe typhoon destroyed many houses.\tLe typhon a détruit beaucoup de maisons.\nThe vegetation was thick and lush.\tLa végétation était épaisse et luxuriante.\nThe very idea of it is disgusting.\tL'idée même, derrière ça, est dégoûtante.\nThe village is beyond those trees.\tLe village se situe au-delà de ces arbres.\nThe village was dead after sunset.\tLe village était désert après le coucher du soleil.\nThe violence lasted for two weeks.\tLa violence dura deux semaines.\nThe violence lasted for two weeks.\tLa violence persista durant deux semaines.\nThe wall is covered with graffiti.\tLe mur est couvert de graffitis.\nThe weather is cold all year here.\tIci, il fait très froid tout au long de l'année.\nThe weather was perfect yesterday.\tLe temps était, hier, parfait.\nThe whole world hungers for peace.\tLe monde entier aspire à la paix.\nThe wind is blowing from the east.\tLe vent souffle de l'est.\nThe wind is blowing from the west.\tLe vent souffle de l'ouest.\nTheir marriage broke up last year.\tLeur mariage s'est rompu l'année dernière.\nTheir marriage broke up last year.\tLeur mariage s'est rompu l'année passée.\nThere are a few boats on the lake.\tQuelques bateaux sont sur le lac.\nThere are many people in the park.\tIl y a beaucoup de gens dans le parc.\nThere are no roses without thorns.\tIl n’y a pas de roses sans épines.\nThere are some apples in that box.\tIl y a des pommes dans cette boite.\nThere are students in the library.\tIl y a des étudiants dans la bibliothèque.\nThere are ten people in this room.\tIl y a dix personnes dans cette chambre.\nThere are too many ads on YouTube.\tIl y a trop de publicités sur YouTube.\nThere are various kinds of coffee.\tIl y a différentes sortes de café.\nThere didn't seem to be a problem.\tIl ne semblait pas y avoir de problème.\nThere is a cookie under the table.\tIl y a un biscuit sous la table.\nThere is a fence around the house.\tIl y a une clôture autour de la maison.\nThere is a television in the room.\tIl y a un poste de télévision dans la pièce.\nThere is an urgent need for money.\tIl y a un besoin urgent d'argent.\nThere is an urgent need for water.\tIl y a un besoin urgent d'eau.\nThere is honor even among thieves.\tL'honneur existe même parmi les voleurs.\nThere is milk in the refrigerator.\tIl y a du lait dans le frigo.\nThere is no accounting for tastes.\tLes goûts ça ne s'explique pas.\nThere is no cure for lovesickness.\tIl n'y a aucun remède à la maladie de l'amour.\nThere is no limit to the universe.\tIl n'y a pas de limites à l'univers.\nThere is no need to talk about it.\tIl n'est point besoin d'en parler.\nThere is no use in making excuses.\tLes excuses sont inutiles.\nThere is often fog in the morning.\tIl y a souvent du brouillard le matin.\nThere isn't any milk in the glass.\tIl n'y a pas de lait dans le verre.\nThere was a lot of snow last year.\tIl y a eu beaucoup de neige l'année dernière.\nThere was fighting in the streets.\tIl y avait des combats dans les rues.\nThere was no one else on the road.\tIl n'y avait personne d'autre sur la route.\nThere was no one there besides me.\tIl n'y avait personne ici à part moi.\nThere was nothing I could've done.\tIl n'y avait rien que j'eusse pu faire.\nThere were some boats on the lake.\tIl y avait quelques bateaux sur le lac.\nThere were two murders this month.\tIl y a eu deux meurtres ce mois-ci.\nThere's definitely something else.\tIl y a vraiment quelque chose d'autre.\nThere's nothing I can do about it.\tJe ne peux rien y faire.\nThere's nothing unusual to report.\tIl n'y a rien d'inhabituel à signaler.\nThere's one thing I must tell you.\tIl y a une chose que je dois te dire.\nThere's one thing I must tell you.\tIl y a une chose que je dois vous dire.\nThere's something not quite right.\tIl y a quelque chose qui ne tourne pas rond ici.\nThere's very little we can do now.\tIl y a très peu que nous puissions faire actuellement.\nThese facts support my hypothesis.\tCes faits soutiennent mon hypothèse.\nThese flowers have a unique smell.\tCes fleurs ont un parfum unique.\nThese machines aren't working now.\tCes machines ne fonctionnent pas en ce moment.\nThese toys are suitable for girls.\tCes jouets conviennent aux filles.\nThey absolutely detest each other.\tIls se détestent absolument.\nThey absolutely detest each other.\tIls se détestent suprêmement.\nThey accused him of telling a lie.\tIls l'accusèrent de dire un mensonge.\nThey accused him of telling a lie.\tElles l'accusèrent de dire un mensonge.\nThey accused him of telling a lie.\tIls l'ont accusé de dire un mensonge.\nThey accused him of telling a lie.\tElles l'ont accusé de dire un mensonge.\nThey admitted her to the hospital.\tIls l'admirent à l'hôpital.\nThey all objected to his proposal.\tIls firent tous objection à sa proposition.\nThey all objected to his proposal.\tElles firent toutes objection à sa proposition.\nThey all objected to his proposal.\tIls ont tous fait objection à sa proposition.\nThey all objected to his proposal.\tElles ont toutes fait objection à sa proposition.\nThey are not enemies, but friends.\tCe ne sont pas des ennemis, mais des amis.\nThey are not enemies, but friends.\tCe ne sont pas des ennemies, mais des amies.\nThey are reading their newspapers.\tIls sont en train de lire leurs journaux.\nThey are spraying the fruit trees.\tIls épandent les arbres fruitiers.\nThey armed themselves with rifles.\tIls s'armèrent de fusils.\nThey came at an inconvenient time.\tIls vinrent à un moment malencontreux.\nThey de-iced the bridge with salt.\tIls ont dé-verglacé le pont avec du sel.\nThey did away with the old system.\tIls se débarrassèrent de l'ancien système.\nThey did it in front of the staff.\tIls le firent devant le personnel.\nThey did it in front of the staff.\tElles le firent devant le personnel.\nThey did it in front of the staff.\tIls l'ont fait devant le personnel.\nThey did it in front of the staff.\tElles l'ont fait devant le personnel.\nThey did it in front of the staff.\tIls l'ont fait au vu et au su du personnel.\nThey did it in front of the staff.\tElles l'ont fait au vu et au su du personnel.\nThey didn't so much as hint at it.\tIls l'ont à peine mentionné.\nThey didn't want me to examine it.\tIls ne voulurent pas que je l'examine.\nThey didn't want me to examine it.\tElles ne voulurent pas que je l'examine.\nThey didn't want me to examine it.\tIls n'ont pas voulu que je l'examine.\nThey didn't want me to examine it.\tElles n'ont pas voulu que je l'examine.\nThey drive on the left in England.\tIls roulent à gauche en Angleterre.\nThey drive on the left in England.\tOn roule à gauche en Angleterre.\nThey forced him to tell the truth.\tIls le contraignirent à dire la vérité.\nThey got married three months ago.\tIls se sont mariés il y a trois mois.\nThey ironed out their differences.\tIls ont aplani les différences.\nThey just want to get to know you.\tIls veulent simplement faire ta connaissance.\nThey just want to get to know you.\tElles veulent simplement faire ta connaissance.\nThey just want to get to know you.\tIls veulent simplement faire votre connaissance.\nThey just want to get to know you.\tElles veulent simplement faire votre connaissance.\nThey laugh at him behind his back.\tIls rient dans son dos.\nThey lifted her above their heads.\tIls la soulevèrent au-dessus de leurs têtes.\nThey look like they're having fun.\tOn dirait qu'ils s'amusent bien.\nThey look like they're having fun.\tIls ont l'air de bien s'amuser.\nThey made me wait for a long time.\tIls m'ont fait attendre longtemps.\nThey made me wait for a long time.\tVous m'avez fait attendre longtemps.\nThey make good use of their rooms.\tIls font un bon usage de leurs chambres.\nThey make good use of their rooms.\tIls utilisent leurs chambres à bon escient.\nThey married when they were young.\tIls se sont mariés lorsqu'ils étaient jeunes.\nThey married when they were young.\tIls se sont mariés jeunes.\nThey married when they were young.\tElles se sont mariées lorsqu'elles étaient jeunes.\nThey married when they were young.\tElles se sont mariées jeunes.\nThey must have known it all along.\tIls doivent l'avoir su tout le temps.\nThey must have known it all along.\tElles doivent l'avoir su tout le temps.\nThey need to change their mindset.\tIl faut qu'ils changent leur état d'esprit.\nThey need to change their mindset.\tIl faut qu'elles changent leur état d'esprit.\nThey only sell women's shoes here.\tOn ne vend ici que des chaussures pour dames.\nThey parted with a firm handshake.\tIls se séparèrent sur une poignée de main ferme.\nThey plan to get married tomorrow.\tIls prévoient de se marier demain.\nThey planned their first vacation.\tIls ont planifié leurs premières vacances.\nThey relaxed in front of the fire.\tIls se détendirent face au feu.\nThey relaxed in front of the fire.\tElles se détendirent devant le feu.\nThey say that he is seriously ill.\tOn dit qu'il serait gravement malade.\nThey say that he knows the secret.\tOn dit qu'il connaît le secret.\nThey say that he knows the secret.\tIls disent qu'il connaît le secret.\nThey say that he knows the secret.\tElles disent qu'il connaît le secret.\nThey sell eggs at the supermarket.\tIls vendent des œufs au supermarché.\nThey spent the night on the beach.\tIls passèrent la nuit sur la plage.\nThey spent the night on the beach.\tIls ont passé la nuit sur la plage.\nThey stood on the top of the hill.\tIls se tenaient au haut de la colline.\nThey stood on the top of the hill.\tElles se tenaient au haut de la colline.\nThey teach Chinese at that school.\tOn enseigne le chinois dans cette école.\nThey want to know what's going on.\tIls veulent savoir ce qui se passe.\nThey want to know what's going on.\tElles veulent savoir ce qui se passe.\nThey want to talk to you a moment.\tIls veulent vous parler, un moment.\nThey want to talk to you a moment.\tElles veulent vous parler, un moment.\nThey want to tell you their story.\tIls veulent te raconter leur histoire.\nThey want to tell you their story.\tElles veulent vous raconter leur histoire.\nThey wanted to know what happened.\tIls voulaient savoir ce qui s'était passé.\nThey wanted to know what happened.\tIls voulaient savoir ce qui était arrivé.\nThey wanted to know what happened.\tElles voulaient savoir ce qui s'était passé.\nThey wanted to know what happened.\tElles voulaient savoir ce qui était arrivé.\nThey were all dressed in uniforms.\tIls arboraient tous des uniformes.\nThey were all dressed in uniforms.\tIls étaient tous en uniforme.\nThey were drinking dry white wine.\tIls étaient en train de boire du vin blanc sec.\nThey were high school sweethearts.\tIls étaient amoureux au lycée.\nThey were shoveling the snow away.\tIls pelletaient la neige.\nThey were sunbathing on the beach.\tIls étaient en train de se faire dorer sur la plage.\nThey were sunbathing on the beach.\tIls étaient en train de se faire bronzer sur la plage.\nThey wouldn't have recognized Tom.\tIls n'auraient pas reconnu Tom.\nThey're living in a fantasy world.\tElles vivent dans un monde de fantaisie.\nThey're two very different things.\tCe sont deux choses absolument différentes.\nThings are starting to take shape.\tLes choses commencent à prendre forme.\nThis TV show is aimed at children.\tCette émission télé est destinée aux enfants.\nThis applies to your case as well.\tCela vous concerne aussi.\nThis applies to your case as well.\tCela s'applique aussi à vous.\nThis beef is very nice and tender.\tCette viande est très bonne et tendre.\nThis book is mine. Where is yours?\tCe livre est le mien. Où est le tien ?\nThis bracelet is very inexpensive.\tCe bracelet est très bon marché.\nThis company sold unsafe products.\tCette société a vendu des produits dangereux.\nThis criminal is morally depraved.\tCe criminel est moralement dépravé.\nThis desk is better than that one.\tCe bureau est mieux que celui-là.\nThis desk is better than that one.\tCe bureau-ci est mieux que celui-là.\nThis doesn't make any sense to me.\tÇa n'a pour moi aucun sens.\nThis dress would look good on you.\tCette robe t'irait bien.\nThis dress would look good on you.\tCette robe vous irait bien.\nThis house has a solid foundation.\tCette maison a de solides fondations.\nThis is a beautiful piece of meat.\tC'est une belle pièce de viande.\nThis is a hard question to answer.\tC'est une question à laquelle il est difficile de répondre.\nThis is a very entertaining story.\tC'est une histoire très divertissante.\nThis is all that I know about him.\tC'est tout ce que je sais de lui.\nThis is how the accident happened.\tC'est ainsi que s'est déroulé l'accident.\nThis is how the accident happened.\tC'est ainsi que s'est passé l'accident.\nThis is how the accident happened.\tC'est ainsi que l'accident est survenu.\nThis is strictly a private matter.\tCeci est mon affaire purement privée.\nThis is the calm before the storm.\tC’est le calme avant la tempête.\nThis is too good a chance to miss.\tC'est une occasion trop belle pour la manquer.\nThis is too important to overlook.\tC'est trop important pour le négliger.\nThis medicine has no side effects.\tCe médicament n'a pas d'effets secondaires.\nThis old book is worth 50,000 yen.\tCe vieux livre vaut cinquante mille yens.\nThis pair of shoes doesn't fit me.\tCes chaussures ne me vont pas.\nThis park is famous for its roses.\tLe parc est réputé pour ses roses.\nThis proverb is worth remembering.\tCe proverbe vaut la peine qu'on s'en souvienne.\nThis sentence needs to be checked.\tCette phrase doit être vérifiée.\nThis shot will help numb the pain.\tCette injection aidera à atténuer la douleur.\nThis story is worth reading again.\tCette histoire vaut la peine d'être relue.\nThis train stops at every station.\tCe train s'arrête à toutes les stations.\nThis was built some 500 years ago.\tCe fut construit il y a environs 500 ans.\nThis watch was your grandfather's.\tCette montre était celle de ton grand-père.\nThis week is Fire Prevention Week.\tCette semaine est la semaine de prévention des incendies.\nThis work is not necessarily easy.\tCe travail n'est pas forcément facile.\nThose shoes won't do for climbing.\tCes chaussures ne feront pas l'affaire pour l'escalade.\nThree other soldiers were wounded.\tTrois autres soldats ont été blessés.\nTo be honest, I really don't know.\tPour être honnête, je ne sais vraiment pas.\nTo live without air is impossible.\tVivre sans air est impossible.\nTo make money one must want money.\tPour faire de l'argent, il faut en vouloir.\nTo put it briefly, I do not agree.\tPour le dire brièvement, je ne suis pas d'accord.\nToday's meeting has been canceled.\tLa réunion d'aujourd'hui a été annulée.\nTom Jackson is my favorite writer.\tTom Jackson est mon écrivain préféré.\nTom Jackson is my favorite writer.\tTom Jackson est mon auteur favori.\nTom accidentally swallowed a coin.\tTom a accidentellement avalé une pièce.\nTom adopted Mary's three children.\tTom a adopté les trois enfants de Mary.\nTom always treats me like a child.\tTom me traite toujours comme un enfant.\nTom always treats me like a child.\tTom me traite toujours comme une enfant.\nTom and Mary are devout Catholics.\tTom et Marie sont de fervents catholiques.\nTom and Mary are looking for John.\tTom et Mary cherchent John.\nTom and Mary got into an argument.\tTom et Marie se sont disputés.\nTom and Mary have three daughters.\tTom et Marie ont trois filles.\nTom and Mary know each other well.\tTom et Mary se connaissent bien.\nTom and Mary want to learn French.\tTom et Mary veulent apprendre le français.\nTom and Mary were both alcoholics.\tTom et Marie étaient tout deux alcooliques.\nTom and Mary were both alcoholics.\tTom et Marie étaient tous les deux alcooliques.\nTom announced his decision Monday.\tTom a annoncé sa décision lundi.\nTom asked Mary to call the police.\tTom a demandé à Marie d'appeler la police.\nTom asked Mary to call the police.\tTom demanda à Marie d'appeler la police.\nTom asked Mary to read the letter.\tTom a demandé à Marie de lire la lettre.\nTom asked Mary to read the letter.\tTom demanda à Marie de lire la lettre.\nTom asked Mary to sweep the floor.\tTom a demandé à Mary de balayer par terre.\nTom asked Mary why she was crying.\tTom a demandé à Mary pourquoi elle pleurait.\nTom asked me whether I was hungry.\tTom me demanda si j'avais faim.\nTom asked the stranger who he was.\tTom a demandé à l'étranger qui il était.\nTom asked the stranger who he was.\tTom demanda à l'étranger qui il était.\nTom backed out at the last moment.\tTom y a renoncé au dernier moment.\nTom began to feel a little guilty.\tTom commença à se sentir coupable.\nTom believes everything Mary says.\tTom croit tout ce que Marie lui dit.\nTom bought a nice house in Boston.\tTom a acheté une jolie maison à Boston.\nTom bought me everything I wanted.\tTom m'a acheté tout ce que je voulais.\nTom can't remember Mary's address.\tTom ne peut pas se rappeler de l'adresse de Mary.\nTom can't see without his glasses.\tTom ne voit pas sans ses lunettes.\nTom carried Mary on his shoulders.\tTom porta Mary sur ses épaules.\nTom carried Mary on his shoulders.\tTom porta Marie sur ses épaules.\nTom caught a whole string of fish.\tTom a attrapé toute une série de poissons.\nTom caused quite a lot of trouble.\tTom a causé pas mal d'ennuis.\nTom caused quite a lot of trouble.\tTom a causé tout un tas d'ennuis.\nTom certainly didn't vote for her.\tTom n'a certainement pas voté pour elle.\nTom cleaned his room this morning.\tTom a nettoyé sa chambre ce matin.\nTom commutes to school by bicycle.\tTom fait la navette à l'école en vélo.\nTom concealed his anger from Mary.\tTom dissimulait sa colère à Mary.\nTom concealed his anger from Mary.\tTom dissimulait sa colère à Marie.\nTom couldn't stop talking to Mary.\tTom ne pouvait pas s'arrêter de parler à Marie.\nTom did his best to persuade Mary.\tTom a fait de son mieux pour persuader Marie.\nTom didn't attend class last week.\tTom n'a pas été en cours la semaine dernière.\nTom didn't attend today's meeting.\tTom n'a pas assisté à la réunion d'aujourd'hui.\nTom didn't feel like playing golf.\tTom n'avait pas envie de jouer au golf.\nTom didn't get home till midnight.\tTom n'est pas rentré chez moi avant minuit.\nTom didn't have dinner last night.\tTom n'a pas diné hier soir.\nTom didn't keep his promise to me.\tTom n'a pas tenu sa promesse envers moi.\nTom didn't know Mary was so funny.\tTom ne savait pas que Mary était si marrante.\nTom didn't know he'd hurt anybody.\tTom ignorait qu'il ferait du mal à quelqu'un.\nTom didn't know he'd hurt anybody.\tTom ne savait pas qu'il ferait du mal à quelqu'un.\nTom didn't seem to be very hungry.\tTom ne semblait pas avoir très faim.\nTom didn't take a bath last night.\tTom n'a pas pris de bain la nuit dernière.\nTom didn't understand Mary's joke.\tTom n'a pas compris la plaisanterie de Marie.\nTom didn't want to sit next to me.\tTom ne voulait pas s'asseoir à coté de moi.\nTom didn't want to talk to anyone.\tTom ne voulait parler à personne.\nTom didn't want to talk to anyone.\tTom n'a voulu parler à personne.\nTom died with a knife in his back.\tTom est mort avec un couteau dans le dos.\nTom disguised himself as a priest.\tTom se déguisa en prêtre.\nTom does only what he wants to do.\tTom ne fait que ce qu'il veut.\nTom doesn't have to come tomorrow.\tTom n'a pas à venir demain.\nTom doesn't like being criticized.\tTom n'aime pas être critiqué.\nTom doesn't like the rainy season.\tTom n'aime pas la saison des pluies.\nTom doesn't speak French, does he?\tTom ne parle pas français, n'est-ce pas ?\nTom doesn't want any part of this.\tTom ne va pas du tout y être mêlé.\nTom doesn't want to eat lunch now.\tTom ne veut pas déjeuner maintenant.\nTom doesn't want to talk about it.\tTom ne veut pas en parler.\nTom doesn't want to work tomorrow.\tTom ne veut pas travailler demain.\nTom explained the project to Mary.\tTom expliqua le projet à Mary.\nTom explained the project to Mary.\tTom a expliqué le projet à Mary.\nTom gave Mary a box of chocolates.\tTom a donné une boîte de chocolats à Mary.\nTom gave away everything he owned.\tTom donna tout ce qu'il possédait.\nTom goes there three times a week.\tTom y va trois fois par semaine.\nTom got a job at a local pizzeria.\tTom a obtenu un emploi dans une pizzeria locale.\nTom got up and walked to the door.\tTom se leva et marcha vers la porte.\nTom got up and walked to the door.\tTom s'est levé et a marché vers la porte.\nTom got up and walked to the door.\tTom se leva et se dirigea vers la porte.\nTom had no idea how rich Mary was.\tTom n'avait pas idée de combien Marie était riche.\nTom had one of his legs amputated.\tTom s'est fait amputer d'une jambe.\nTom handed Mary a bottle of water.\tTom tendit une bouteille d'eau à Mary.\nTom handed Mary a bottle of water.\tTom a tendu une bouteille d'eau à Mary.\nTom has a lot of responsibilities.\tTom a beaucoup de responsabilités.\nTom has been expelled from school.\tTom a été renvoyé de l'école.\nTom has committed a serious crime.\tTom a commis un crime grave.\nTom has decided to major in music.\tTom a décidé de se spécialiser dans la musique.\nTom has lots of friends in Boston.\tTom a beaucoup d'amis à Boston.\nTom has never been to Mary's home.\tTom n'est jamais allé chez Marie.\nTom hasn't regained consciousness.\tTom n'a pas repris connaissance.\nTom hid behind the shower curtain.\tTom se cacha derrière le rideau de douche.\nTom introduced Mary to his family.\tTom a présenté Marie à sa famille.\nTom introduced Mary to his family.\tTom présenta Marie à sa famille.\nTom introduced Mary to his mother.\tTom a présenté Marie à sa mère.\nTom introduced Mary to his mother.\tTom présenta Marie à sa mère.\nTom is always playing video games.\tTom joue tout le temps aux jeux vidéo.\nTom is always watching television.\tTom regarde la télévision en permanence.\nTom is always watching television.\tTom regarde toujours la télévision.\nTom is both a doctor and a writer.\tTom est à la fois médecin et écrivain.\nTom is complaining to the manager.\tTom est en train de se plaindre au gérant.\nTom is currently living in Boston.\tTom vit actuellement à Boston.\nTom is eating breakfast right now.\tTom est en train de manger son petit déjeuner en ce moment.\nTom is fairly ambitious, isn't he?\tTom est assez ambitieux, n'est-ce pas ?\nTom is getting married next month.\tTom va se marier le mois prochain.\nTom is kind of worked up about it.\tTom est plutôt énervé à ce sujet.\nTom is more intelligent than Mary.\tTom est plus intelligent que Mary.\nTom is now taller than his father.\tTom est maintenant plus grand que son père.\nTom is on the swim team at school.\tTom est dans l'équipe de natation à l'école.\nTom is the best drummer in Boston.\tTom est le meilleur batteur de Boston.\nTom is the person I saw yesterday.\tTom est la personne que j'ai vue hier.\nTom is the person who helped Mary.\tTom est la personne qui a aidé Mary.\nTom is three years older than you.\tTom est trois ans plus vieux que toi.\nTom is three years older than you.\tTom est trois ans plus vieux que vous.\nTom is three years older than you.\tTom a trois ans de plus que toi.\nTom is three years older than you.\tTom a trois ans de plus que vous.\nTom is unable to cope with stress.\tTom n'est pas capable de gérer le stress.\nTom is usually at home on Sundays.\tTom est en général chez lui le dimanche.\nTom is worried about his children.\tTom s'inquiète pour ses enfants.\nTom is your best friend, isn't he?\tTom est ton meilleur ami, n'est-ce pas ?\nTom isn't a professional musician.\tTom n'est pas un musicien professionnel.\nTom isn't very spontaneous, is he?\tTom n'est pas très spontané, n'est-ce pas ?\nTom just got back to Boston today.\tTom vient de rentrer à Boston aujourd'hui.\nTom kept Mary waiting for an hour.\tTom a fait attendre Marie pendant une heure.\nTom knew Mary wouldn't want to go.\tTom savait que Mary ne voudrait pas y aller.\nTom knew who Mary's boyfriend was.\tTom savait qui était le petit ami de Mary.\nTom knew who Mary's boyfriend was.\tTom savait qui était le copain de Mary.\nTom knows how to have a good time.\tTom sait comment passer du bon temps.\nTom knows how to have a good time.\tTom sait comment passer un bon moment.\nTom knows how to repair computers.\tTom sait comment réparer les ordinateurs.\nTom knows what he's talking about.\tTom sait de quoi il parle.\nTom lived in Boston before, right?\tTom vivait à Boston avant, n'est-ce pas ?\nTom looked through the binoculars.\tTom regarda à travers les jumelles.\nTom looks older than he really is.\tTom fait plus vieux qu'il ne l'ait vraiment.\nTom looks older than he really is.\tTom semble plus âgé qu'il ne l'ait réellement.\nTom loved Mary and Mary loved him.\tTom aimait Marie et Marie l'aimait.\nTom loves his children, of course.\tTom aime ses enfants, bien sûr.\nTom made himself something to eat.\tTom s'est fait quelque chose à manger.\nTom met Mary on his way to school.\tTom a rencontré Mary en allant à l'école.\nTom met Mary on his way to school.\tTom rencontra Mary sur son chemin en allant à l'école.\nTom met Mary on the way to school.\tTom a rencontré Mary en allant à l'école.\nTom must've been imagining things.\tTom doit avoir imaginer des choses.\nTom must've taken the wrong train.\tTom a dû prendre le mauvais train.\nTom never gets invited to parties.\tTom n'est jamais invité à des fêtes.\nTom never lets anyone do anything.\tTom ne laisse jamais personne faire quoi que ce soit.\nTom often wears tie-dyed T-shirts.\tTom porte souvent des T-shirts tie-dye.\nTom opened the car door to get in.\tTom a ouvert la porte de la voiture pour monter.\nTom pressed the button and waited.\tTom appuya sur le bouton puis attendit.\nTom promised not to smoke anymore.\tTom a promis de ne plus fumer.\nTom put on a pair of latex gloves.\tTom a mis une paire de gants en latex.\nTom put on a pair of latex gloves.\tTom mit une paire de gants en latex.\nTom put the envelope on the table.\tTom posa l'enveloppe sur la table.\nTom ran as fast as he was able to.\tTom a couru aussi vite qu'il a pu.\nTom said he'd play tennis with us.\tTom a dit qu'il jouerait au tennis avec nous.\nTom saw Mary walking up the steps.\tTom vit Marine monter les marches.\nTom saw a play in the new theater.\tTom a vu une pièce dans le nouveau théâtre.\nTom says he'll only speak to Mary.\tTom dit qu'il ne parlera qu'à Mary uniquement.\nTom seems more annoyed than angry.\tTom semble être plus ennuyé qu'en colère.\nTom seems really happy to be here.\tTom semble vraiment heureux d'être ici.\nTom seems to have trouble walking.\tTom semble avoir du mal à marcher.\nTom seldom speaks to Mary anymore.\tTom ne parle plus que rarement à Mary.\nTom showed Mary his baby pictures.\tTom montra à Mary les photos de son bébé.\nTom spent three years behind bars.\tTom a passé trois ans derrière les barreaux.\nTom still has the book I lent him.\tTom a toujours le livre que je lui ai prêté.\nTom struggled to climb to the top.\tTom eu du mal à grimper tout en haut.\nTom teaches French to my children.\tTom enseigne le français à mes enfants.\nTom told me you needed some money.\tTom m'a dit que tu avais besoin d'argent.\nTom told me you needed some money.\tTom m'a dit que vous aviez besoin d'argent.\nTom took notes during the meeting.\tTom prit des notes pendant la réunion.\nTom tried to control his emotions.\tTom essaya de contrôler ses émotions.\nTom tried to control his emotions.\tTom a essayé de contrôler ses émotions.\nTom tried to cover up his mistake.\tTom a essayé de dissimuler son erreur.\nTom usually goes to school by bus.\tTom va généralement à l'école en bus.\nTom usually goes to school by bus.\tTom va habituellement à l'école en bus.\nTom wanted to be a better teacher.\tTom voulait être un meilleur professeur.\nTom wanted to say goodbye to Mary.\tTom voulait dire au revoir à Mary.\nTom was annoyed by Mary's silence.\tTom était ennuyé par le silence de Mary.\nTom was annoyed by Mary's silence.\tTom était agacé par le silence de Mary.\nTom was one of the invited guests.\tTom était l'un des invités.\nTom was sitting alone in his room.\tTom était assis seul dans sa chambre.\nTom was sitting alone in his room.\tTom était assis seul dans son bureau.\nTom was sitting at a nearby table.\tTom était assis à une table voisine.\nTom was stabbed twice in the back.\tTom a été poignardé deux fois dans le dos.\nTom was the first boy to hug Mary.\tLe premier garçon qui a embrassé Marie fut Tom.\nTom was the only one in the house.\tTom était le seul dans la maison.\nTom went to sleep three hours ago.\tTom est parti se coucher il y a trois heures.\nTom will drive you to the airport.\tTom va vous conduire à l'aéroport.\nTom will likely accept your offer.\tTom acceptera probablement votre offre.\nTom will likely accept your offer.\tTom acceptera probablement ton offre.\nTom wiped his feet on the doormat.\tTom essuya ses pieds sur le paillasson.\nTom won't let anyone in the house.\tTom ne laissera entrer personne dans la maison.\nTom works at a hospital near here.\tTom travaille dans un hôpital près d'ici.\nTom wouldn't let anybody help him.\tTom ne laisserait personne lui venir en aide.\nTom's job was outsourced to China.\tL'emploi de Tom a été délocalisé en Chine.\nTom's shoes are too small for him.\tLes chaussures de Tom sont trop petites pour lui.\nTom, I have something to tell you.\tTom, j'ai quelque chose à te dire.\nTraining for a marathon is taxing.\tS'entraîner pour un marathon est exigeant.\nTrains come more often than buses.\tLes trains passent plus fréquemment que les bus.\nTraveling by boat is a lot of fun.\tVoyager par bateau est très amusant.\nTry not to be late again tomorrow.\tEssaye de ne pas être encore en retard demain.\nTry not to be late again tomorrow.\tEssaie de ne pas être encore en retard demain.\nTry not to be late again tomorrow.\tEssayez de ne pas être encore en retard demain.\nTry not to be late again tomorrow.\tEssaie de ne pas être en retard à nouveau demain.\nTry not to be late again tomorrow.\tEssaye de ne pas être en retard à nouveau demain.\nTry not to be late again tomorrow.\tEssayez de ne pas être en retard à nouveau demain.\nTry to make the most of your time.\tEssaie d'utiliser au mieux ton temps.\nTwelve years old is old for a dog.\tDouze ans, c'est vieux pour un chien.\nUnfortunately, it's raining today.\tMalheureusement, il pleut aujourd'hui.\nUnfortunately, that rumor is true.\tMalheureusement, cette rumeur est avérée.\nUnfortunately, the report is true.\tMalheureusement, le compte-rendu est vrai.\nVigorous exercise makes you sweat.\tUn exercice intense suffit pour suer.\nViolence increased soon afterward.\tLa violence augmenta peu après.\nWas there anybody else in the bar?\tY avait-il qui que ce soit d'autre dans le bar ?\nWatch out for thieves around here.\tFais attention aux voleurs autour d'ici.\nWatch out for thieves around here.\tFais gaffe aux voleurs dans le coin.\nWatch out! This monkey is vicious.\tAttention ! Ce singe est violent.\nWatch your mouth or you'll get it.\tRetiens ta langue, ou tu seras tué.\nWatching TV is a passive activity.\tRegarder la télé est une activité passive.\nWe all live in the same dormitory.\tNous vivons tous dans la même résidence étudiante.\nWe all live in the same dormitory.\tNous vivons tous dans le même bâtiment de la cité universitaire.\nWe always take it easy on Sundays.\tNous nous mettons toujours à l'aise, le dimanche.\nWe are all eager to see the movie.\tOn est tous impatients de voir le film.\nWe are concerned about our planet.\tNous nous occupons de notre planète.\nWe are in part responsible for it.\tNous en sommes en partie responsables.\nWe are leaving for Hawaii tonight.\tNous partons pour Hawaï ce soir.\nWe are not here for fun and games.\tNous ne sommes pas ici pour jouer et nous amuser.\nWe are sorry for the interruption.\tNous sommes désolés pour l'interruption.\nWe are sorry for the interruption.\tNous sommes désolées pour l'interruption.\nWe are supposed to know the rules.\tNous sommes supposés connaître les règles.\nWe ate a nice meal and drank wine.\tNous avons mangé un bon repas et avons bu du vin.\nWe bought the goods at $3 a dozen.\tNous avons acheté les produits à 3$ la douzaine.\nWe can't just ignore this problem.\tNous ne pouvons nous contenter d'ignorer ce problème.\nWe can't work without electricity.\tNous ne pouvons pas travailler sans électricité.\nWe can't work without electricity.\tOn ne peut pas travailler sans électricité.\nWe didn't need to call the doctor.\tNous n'eûmes pas besoin d'appeler le médecin.\nWe didn't want anybody to find us.\tNous ne voulions pas que quiconque nous trouve.\nWe didn't want to get in your way.\tNous ne voulions pas être dans vos pattes.\nWe didn't want to get in your way.\tNous ne voulions pas être dans tes pattes.\nWe don't know why he had to leave.\tNous ignorons pourquoi il a dû partir.\nWe don't meet very often recently.\tNous ne nous rencontrons pas très souvent ces temps-ci.\nWe don't want anybody to find out.\tNous ne voulons pas que quiconque le découvre.\nWe don't want anyone getting hurt.\tNous ne voulons pas que quiconque soit blessé.\nWe don't want to take any chances.\tNous ne voulons prendre aucun risque.\nWe enjoyed ourselves at the party.\tOn s'est bien amusé à la fête.\nWe feed our dog three times a day.\tNous donnons à manger à notre chien trois fois par jour.\nWe found a nail stuck in the tire.\tNous avons trouvé un clou enfoncé dans le pneu.\nWe found that everyone was asleep.\tNous constatâmes que tous étaient endormis.\nWe found that everyone was asleep.\tNous avons constaté que tous étaient endormis.\nWe found that we had lost our way.\tNous découvrîmes que nous avions perdu notre chemin.\nWe got all the materials together.\tNous assemblâmes tout l'équipement.\nWe had a heavy frost this morning.\tCe matin nous avons eu une épaisse couche de givre.\nWe had a heavy frost this morning.\tCe matin nous avons eu un froid rigoureux.\nWe hang out together all the time.\tNous traînons tout le temps ensemble.\nWe have enough seats for everyone.\tIl y a assez de places pour tout le monde.\nWe have just a tiny bit of garden.\tNous disposons juste d'un minuscule bout de jardin.\nWe have no choice but to carry on.\tNous n'avons d'autre choix que de poursuivre.\nWe have no choice but to carry on.\tNous n'avons d'autre choix que de continuer.\nWe have nothing to complain about.\tNous n'avons aucun motif de nous plaindre.\nWe have plenty of time to do that.\tNous avons plein de temps pour faire cela.\nWe have to do the work in one day.\tIl nous faut faire le travail en un jour.\nWe have to follow the regulations.\tNous devons suivre la réglementation.\nWe have to postpone our departure.\tNous devons reporter notre départ.\nWe have two daughters and one son.\tNous avons deux filles et un garçon.\nWe haven't come to a decision yet.\tNous ne sommes, jusqu'à présent, pas parvenus à une décision.\nWe haven't come to a decision yet.\tNous ne sommes, jusqu'à présent, pas parvenues à une décision.\nWe haven't heard the last of this.\tNous en entendrons encore parler.\nWe left home early in the morning.\tNous quittâmes la maison de bon matin.\nWe left the final decision to him.\tNous lui laissâmes la décision finale.\nWe left the final decision to him.\tNous lui avons laissé la décision finale.\nWe must ask the bank for the loan.\tNous devons solliciter le prêt à la banque.\nWe must finish our homework first.\tNous devons d'abord finir nos devoirs.\nWe must try to break the deadlock.\tNous devons essayer de sortir de l'impasse.\nWe need to finish what we started.\tNous devons finir ce que nous avons commencé.\nWe need to finish what we started.\tOn doit finir ce qu'on a commencé.\nWe need to focus on our strengths.\tIl nous faut nous concentrer sur nos points forts.\nWe need to keep this confidential.\tNous avons besoin de garder cela confidentiel.\nWe need to take this into account.\tIl nous faut prendre ça en compte.\nWe noticed the man enter her room.\tNous avons remarqué l'homme, qui entrait dans sa chambre à elle.\nWe noticed the man enter her room.\tNous avons remarqué que l'homme entrait dans sa chambre à elle.\nWe noticed the man enter her room.\tNous avons remarqué que l'homme entrait dans sa chambre.\nWe only sell top quality products.\tNous ne vendons que des produits de haute qualité.\nWe saw a stranger walking outside.\tNous vîmes un étranger marcher à l'extérieur.\nWe saw a stranger walking outside.\tNous vîmes un étranger marcher dehors.\nWe saw a stranger walking outside.\tNous avons vu un étranger marcher dehors.\nWe saw a stranger walking outside.\tNous avons vu un étranger marcher à l'extérieur.\nWe saw her when leaving the house.\tNous la vîmes en quittant la maison.\nWe saw her when leaving the house.\tNous l'avons vue en quittant la maison.\nWe shared the profit among us all.\tNous partageâmes les profits entre nous tous.\nWe should do everything ourselves.\tNous devrions faire tout nous-mêmes.\nWe should do everything ourselves.\tNous devrions tout faire nous-mêmes.\nWe should have told him the truth.\tNous aurions dû lui dire la vérité.\nWe should observe the speed limit.\tNous devons respecter les limitations de vitesse.\nWe spent the weekend with friends.\tNous avons passé le weekend avec des amis.\nWe still have plenty of time left.\tIl nous reste encore beaucoup de temps.\nWe suggest you come early tonight.\tNous vous conseillons de venir tôt, ce soir.\nWe suggest you come early tonight.\tNous te conseillons de venir tôt, ce soir.\nWe talked about it just yesterday.\tNous en avons parlé pas plus tard qu'hier.\nWe talked about it just yesterday.\tOn en a parlé pas plus tard qu'hier.\nWe thank you for your cooperation.\tNous vous remercions pour votre coopération.\nWe thank you for your cooperation.\tNous te remercions pour ta coopération.\nWe walked more quickly than usual.\tNous avons marché plus vite qu'à l'habitude.\nWe walked more quickly than usual.\tNous avons marché plus vite que d'habitude.\nWe want to reach a wider audience.\tNous voulons atteindre un public plus large.\nWe want to reach a wider audience.\tNous voulons atteindre un public plus étendu.\nWe want to talk to you about that.\tNous voulons t'en parler.\nWe want to talk to you about that.\tNous voulons vous en parler.\nWe watch television every evening.\tNous regardons la télévision tous les soirs.\nWe were deeply moved by her story.\tNous fûmes profondément émus par son histoire.\nWe were late because of the storm.\tL'orage nous a retardés.\nWe were startled by the explosion.\tL'explosion nous fit sursauter.\nWe were startled by the explosion.\tL'explosion nous a fait sursauter.\nWe were surprised by his behavior.\tNous fûmes surpris par son comportement.\nWe were surprised by his behavior.\tNous avons été surpris par son comportement.\nWe were surprised by his behavior.\tNous fûmes surprises par son comportement.\nWe were surprised by his behavior.\tNous avons été surprises par son comportement.\nWe will have to postpone the game.\tIl nous faudra reporter le match.\nWe will leave as soon as he comes.\tNous partirons dès qu'elle arrivera.\nWe will take care of this for you.\tNous prendrons soin de cela pour vous.\nWe will take care of this for you.\tNous prendrons soin de cela pour toi.\nWe will take part in the marathon.\tNous participerons au marathon.\nWe'd like a double room with bath.\tNous aimerions une chambre double avec bain.\nWe'll have to find another option.\tNous devrons trouver une autre option.\nWe'll have to pull an all-nighter.\tNous devrons faire une nuit blanche.\nWe're afraid we'll miss our train.\tNous craignons de manquer notre train.\nWe're not ready to have a kid now.\tNous ne sommes pas prêts à avoir un enfant, actuellement.\nWe're not really asking for money.\tNous ne demandons pas vraiment d'argent.\nWe're not so different, you and I.\tNous ne sommes pas si différents, toi et moi.\nWe're up a creek without a paddle.\tNous sommes dans le pétrin.\nWe're working on a limited budget.\tNous travaillons dans un budget limité.\nWe've got to fight fire with fire!\tIl nous faut combattre le feu avec le feu.\nWe've had a lot of rain this year.\tNous avons eu beaucoup de pluie cette année.\nWe've had this discussion already.\tNous avons déjà eu cette discussion.\nWe've made too many bad decisions.\tNous avons pris trop de mauvaises décisions.\nWell, Tom, shouldn't we tell Mary?\tEh bien, Tom, ne devrions-nous pas le dire à Mary ?\nWhat I really want to do is sleep.\tCe que je veux vraiment faire, c'est dormir.\nWhat I want isn't tea, but coffee.\tCe que je veux, ce n'est pas du thé mais du café.\nWhat I want to know are the facts.\tCe que je veux connaître, ce sont les faits.\nWhat are you doing buying a house?\tPourquoi te piques-tu d'acheter une maison ?\nWhat are you going to tell me now?\tQu'allez-vous me dire là ?\nWhat are you two conspiring about?\tQu'êtes-vous en train de manigancer ?\nWhat are you two conspiring about?\tQu'est-ce que vous complotez tous les deux ?\nWhat are your plans for Christmas?\tQuels sont tes projets pour Noël ?\nWhat are your plans for Christmas?\tQuels sont vos projets pour Noël ?\nWhat are your plans for the night?\tQuels sont vos projets pour la soirée ?\nWhat are your plans for the night?\tQuels sont tes projets pour la soirée ?\nWhat can you see from your window?\tQue peux-tu voir de ta fenêtre ?\nWhat condition is the building in?\tEn quel état se trouve le bâtiment ?\nWhat did happen to all that money?\tQu'est-il advenu de tout cet argent ?\nWhat did he want to know about me?\tQue voulait-il savoir à mon sujet ?\nWhat did you have for lunch today?\tQu’as-tu mangé au déjeuner aujourd'hui ?\nWhat did you want to see me about?\tAu sujet de quoi voulais-tu me voir ?\nWhat did you want to see me about?\tAu sujet de quoi vouliez-vous me voir ?\nWhat do you associate with summer?\tQu'associes-tu à l'été ?\nWhat do you call that contraption?\tComment appelles-tu ce machin ?\nWhat do you call that contraption?\tComment appelles-tu ce bazar ?\nWhat do you like to cook the most?\tQue préférez-vous cuisiner ?\nWhat do you like to cook the most?\tQue préfères-tu cuisiner ?\nWhat do you like to eat for lunch?\tQu'aime-t-on manger au déjeuner ?\nWhat do you like to eat for lunch?\tQu'aimes-tu manger au déjeuner ?\nWhat do you like to eat for lunch?\tQu'aimez-vous manger au déjeuner ?\nWhat do you plan on doing tonight?\tQue prévois-tu de faire ce soir ?\nWhat do you plan on doing tonight?\tQue prévoyez-vous de faire ce soir ?\nWhat do you say we go to my house?\tQue dis-tu que nous allions chez moi ?\nWhat do you say we go to my house?\tQue dites-vous que nous allions chez moi ?\nWhat do you think I've been doing?\tQu'est-ce que tu crois que j'étais en train de faire ?\nWhat do you think about this plan?\tQue penses-tu de ce plan ?\nWhat do you think about this plan?\tQue pensez-vous de ce plan ?\nWhat do you think of this red hat?\tComment trouves-tu ce chapeau rouge ?\nWhat do you usually eat for lunch?\tQu'est-ce que tu manges habituellement au déjeuner ?\nWhat does \"There is a tide\" imply?\tQue faut-il entendre par « There is a tide » ?\nWhat does that have to do with me?\tQu'est-ce que ça a à voir avec moi ?\nWhat does that have to do with me?\tEn quoi cela me concerne-t-il ?\nWhat does this have to do with us?\tQu'est-ce que ceci a à voir avec nous ?\nWhat does this painting represent?\tQue représente ce tableau ?\nWhat exactly do you want me to do?\tQue veux-tu que je fasse, exactement ?\nWhat exactly do you want me to do?\tQue voulez-vous que je fasse, exactement ?\nWhat exactly do you want us to do?\tQue veux-tu que nous fassions, exactement ?\nWhat exactly do you want us to do?\tQue voulez-vous que nous fassions, exactement ?\nWhat game do you want to play now?\tÀ quel jeu veux-tu jouer, maintenant ?\nWhat game do you want to play now?\tÀ quel jeu voulez-vous jouer, maintenant ?\nWhat happened to all those people?\tQu'est-il arrivé à tous ces gens ?\nWhat has become of him since then?\tQu'est-il advenu de lui, depuis lors ?\nWhat has become of him since then?\tQue lui est-il advenu, depuis lors ?\nWhat have you done with the books?\tQu'as-tu fait des livres ?\nWhat have you done with the books?\tQu'avez-vous fait des livres ?\nWhat he's saying is actually true.\tCe qu'il dit est en fait vrai.\nWhat hotel will you be staying at?\tDans quel hotel séjourneras-tu ?\nWhat hotel will you be staying at?\tDans quel hotel séjournerez-vous ?\nWhat is it that you want me to do?\tQue veux-tu que je fasse ?\nWhat is it that you want me to do?\tQue voulez-vous que je fasse ?\nWhat is it you want to sell to us?\tQue voulez-vous nous vendre ?\nWhat is it you want to sell to us?\tQue veux-tu nous vendre ?\nWhat is it you want to talk about?\tDe quoi voulez-vous parler ?\nWhat is it you want to talk about?\tDe quoi veux-tu parler ?\nWhat is it you want to talk about?\tDe quoi voulez-vous parler ?\nWhat kind of game are you playing?\tÀ quelle sorte de jeu jouez-vous ?\nWhat kind of game are you playing?\tÀ quelle sorte de jeu joues-tu ?\nWhat makes you think that'll work?\tQu'est-ce qui te fait penser que ça va marcher ?\nWhat makes you think that'll work?\tQu'est-ce qui vous fait penser que ça va marcher ?\nWhat nonsense are you talking now?\tDe quelles sottises parles-tu là ?\nWhat period is this painting from?\tDe quelle période est ce tableau ?\nWhat seems to be the problem here?\tQuel est le problème?\nWhat should I eat for lunch today?\tQue devrais-je manger au déjeuner, aujourd'hui ?\nWhat time and where could we meet?\tÀ quelle heure et où pourrions-nous nous rencontrer ?\nWhat time did your friend go home?\tÀ quelle heure votre ami est-il rentré chez lui ?\nWhat time did your friend go home?\tÀ quelle heure ton ami est-il rentré chez lui ?\nWhat time did your friend go home?\tÀ quelle heure votre amie est-elle rentrée chez elle ?\nWhat time did your friend go home?\tÀ quelle heure ton amie est-elle rentrée chez elle ?\nWhat time do you get up every day?\tÀ quelle heure te lèves-tu chaque jour ?\nWhat time do you get up every day?\tÀ quelle heure vous levez-vous chaque jour ?\nWhat time do you leave for school?\tÀ quelle heure pars-tu à l'école ?\nWhat time do you leave for school?\tÀ quelle heure partez-vous à l'école ?\nWhat time is it now by your watch?\tQuelle heure est-il à votre montre, maintenant ?\nWhat time will you have breakfast?\tÀ quelle heure prendrez-vous votre petit-déjeuner ?\nWhat time will you have breakfast?\tÀ quelle heure prendras-tu ton petit déjeuner ?\nWhat were you doing when she came?\tQue faisiez-vous quand elle est arrivée?\nWhat were your impressions of Tom?\tQu'as-tu pensé de Tom ?\nWhat will you do when you grow up?\tQue ferez-vous lorsque vous deviendrez grands ?\nWhat will you do when you grow up?\tQue feras-tu lorsque tu deviendras grand ?\nWhat will you do with this camera?\tQu'est-ce que tu vas faire avec cette caméra ?\nWhat would you like for breakfast?\tQu'aimerais-tu pour ton petit-déjeuner ?\nWhat would you like for breakfast?\tQu'aimeriez-vous pour votre petit-déjeuner ?\nWhat you're suggesting won't work.\tCe que tu suggères ne marchera pas.\nWhat's the accusation against him?\tQuelle est l'accusation portée contre lui ?\nWhat's the best sleeping position?\tQuelle est la meilleure position pour dormir  ?\nWhat's the longest word in French?\tQuel est le plus long mot en français ?\nWhat's the point of your question?\tQuel est l'objet de ta question ?\nWhat's the point of your question?\tQuel est l'objet de votre question ?\nWhat's the weather like in Boston?\tComment est le temps à Boston ?\nWhat's your favorite kind of fish?\tQuel est ton poisson préféré ?\nWhat's your favorite kind of fish?\tQuel genre de poisson est votre préféré ?\nWhen are you going to finish this?\tQuand allez-vous terminer ça ?\nWhen are you going to finish this?\tQuand vas-tu terminer ça ?\nWhen are you going to get married?\tQuand te marieras-tu ?\nWhen are you going to get married?\tQuand vous marierez-vous ?\nWhen are you going to get married?\tQuand allez-vous vous marier ?\nWhen did you get back from Boston?\tQuand es-tu revenu de Boston ?\nWhen did you get back from Boston?\tQuand êtes-vous rentré de Boston ?\nWhen did you get back from Boston?\tQuand êtes-vous rentrés de Boston ?\nWhen did you get back from Boston?\tQuand es-tu rentrée de Boston ?\nWhen did you get back from Boston?\tQuand êtes-vous revenues de Boston ?\nWhen did you go to bed last night?\tTu t'es couché à quelle heure hier soir ?\nWhen did you start studying Latin?\tQuand as-tu commencé à étudier le latin ?\nWhen did you start studying Latin?\tQuand avez-vous commencé à étudier le latin ?\nWhen in Rome, do as the Romans do.\tÀ Rome, fais comme les Romains.\nWhen was the last time you hunted?\tA quand remonte la dernière fois où vous êtes parti chasser?\nWhen water freezes it becomes ice.\tLorsque l'eau gèle, elle se transforme en glace.\nWhen will your new novel come out?\tQuand votre nouveau roman sera-t-il publié ?\nWhen will your new novel come out?\tQuand ton nouveau roman sera-t-il publié ?\nWhere are the bags from Flight 57?\tOù sont les bagages du vol 57?\nWhere did the accident take place?\tOù est-ce que l'accident a eu lieu ?\nWhere did the accident take place?\tOù l'accident s'est-il produit ?\nWhere did you find this awful dog?\tOù as-tu dégoté cet affreux clébard ?\nWhere did you go for spring break?\tOù es-tu allé pour les congés de printemps ?\nWhere did you go for spring break?\tOù es-tu allée pour les congés de printemps ?\nWhere did you go for spring break?\tOù êtes-vous allé pour les congés de printemps ?\nWhere did you go for spring break?\tOù êtes-vous allée pour les congés de printemps ?\nWhere did you go for spring break?\tOù êtes-vous allées pour les congés de printemps ?\nWhere did you go for spring break?\tOù êtes-vous allés pour les congés de printemps ?\nWhere did you go for spring break?\tOù vous êtes-vous rendu pour les congés de printemps ?\nWhere did you go for spring break?\tOù vous êtes-vous rendue pour les congés de printemps ?\nWhere did you go for spring break?\tOù vous êtes-vous rendus pour les congés de printemps ?\nWhere did you go for spring break?\tOù vous êtes-vous rendues pour les congés de printemps ?\nWhere did you go for spring break?\tOù t'es-tu rendu pour les congés de printemps ?\nWhere did you go for spring break?\tOù t'es-tu rendue pour les congés de printemps ?\nWhere did you have your suit made?\tOù as-tu fait faire ton costume ?\nWhere did you have your suit made?\tOù avez-vous fait faire votre costume ?\nWhere did you meet your boyfriend?\tOù as-tu rencontré ton petit-ami ?\nWhere did you meet your boyfriend?\tOù avez-vous rencontré votre petit-ami ?\nWhere did you meet your boyfriend?\tOù as-tu rencontré ton copain ?\nWhere did you meet your boyfriend?\tOù as-tu rencontré ton mec ?\nWhere did you spend your holidays?\tOù as-tu passé tes vacances ?\nWhere do you know each other from?\tD'où vous connaissez-vous ?\nWhere do you want these suitcases?\tOù veux-tu que ces valises soient mises ?\nWhere do you want these suitcases?\tOù voulez-vous que ces valises soient mises ?\nWhere have you been all afternoon?\tOù avez-vous été toute l'après-midi ?\nWhere have you been all afternoon?\tOù as-tu été toute l'après-midi ?\nWhere have you been all this time?\tOù as-tu été tout ce temps ?\nWhere have you been all this time?\tOù avez-vous été tout ce temps ?\nWhere is the captain of this ship?\tOù est le capitaine de ce bateau ?\nWhere will we eat breakfast today?\tOù prendrons-nous notre petit-déjeuner aujourd'hui ?\nWhere will we eat breakfast today?\tOù petit-déjeunerons-nous aujourd'hui ?\nWhere's the closest train station?\tOù est la gare la plus proche ?\nWhere's the nearest shopping mall?\tOù se trouve le centre commercial le plus proche?\nWhich CD do you want to listen to?\tQuel CD veux-tu écouter ?\nWhich dictionary did you refer to?\tÀ quel dictionnaire t'es-tu reporté ?\nWhich is larger, Japan or England?\tEntre le Japon et l'Angleterre, lequel est le plus grand ?\nWhich season do you like the best?\tQuelle est votre saison préférée ?\nWhich students will take the test?\tQuels étudiants vont passer l'examen ?\nWhich students will take the test?\tQuels sont les étudiants qui vont passer l'examen ?\nWhich students will take the test?\tQuels sont les élèves qui vont passer l'examen ?\nWhich students will take the test?\tQuels élèves vont passer l'examen ?\nWhile in Europe, she visited Rome.\tLorsqu'elle était en Europe, elle a visité Rome.\nWho asked for your opinion anyway?\tOn t'a demandé ton avis ?\nWho can run fastest in your class?\tQui court le plus vite dans ta classe ?\nWho is able to explain this to me?\tQui peut m'expliquer ça ?\nWho is it that you're working for?\tPour qui travailles-tu ?\nWho is it that you're working for?\tPour qui travaillez-vous ?\nWho is that boy running toward us?\tQui est le garçon qui vient en courant vers nous ?\nWho is the girl in the pink dress?\tQui est la fille à la robe rose ?\nWho is the man playing the violin?\tQui est cet homme qui joue du violon ?\nWho should look after the elderly?\tQui devrait s'occuper des personnes âgées ?\nWho was that woman I saw you with?\tQui était cette femme avec qui je t'ai vu ?\nWho's the boy swimming over there?\tQui est le garçon qui nage là-bas ?\nWho's your favorite movie villain?\tQui est ton personnage de méchant préféré au cinéma ?\nWhy are these photos so important?\tPourquoi ces photos sont-elles si importantes ?\nWhy are these photos so important?\tPourquoi ces photos sont-elles tellement importantes ?\nWhy are these two always fighting?\tPourquoi ces deux-là se disputent-ils toujours ?\nWhy are these two always fighting?\tPourquoi ces deux-là se disputent-elles toujours ?\nWhy are we wasting time like this?\tPourquoi perd-on du temps comme ça?\nWhy are we wasting time with this?\tPourquoi perd-on du temps avec ça?\nWhy are you so obsessed with cars?\tPourquoi es-tu autant obsédé par les voitures?\nWhy couldn't you sleep last night?\tPourquoi n'es-tu pas arrivé à dormir la nuit dernière ?\nWhy did you paint this wall black?\tPourquoi as-tu peint le mur en noir ?\nWhy did you want to speak with us?\tPourquoi voulais-tu nous parler ?\nWhy did you want to speak with us?\tPourquoi vouliez-vous nous parler ?\nWhy didn't Tom tell us what to do?\tPourquoi Tom ne nous a-t-il pas dit quoi faire ?\nWhy didn't you call me last night?\tPourquoi ne m'as-tu pas appelé hier soir ?\nWhy didn't you call me last night?\tPourquoi ne m'as-tu pas appelé la nuit dernière ?\nWhy didn't you call me last night?\tPourquoi ne m'avez-vous pas appelé la nuit dernière ?\nWhy didn't you call me last night?\tPourquoi ne m'avez-vous pas appelé hier soir ?\nWhy didn't you call me last night?\tPourquoi ne m'avez-vous pas appelée la nuit dernière ?\nWhy didn't you call me last night?\tPourquoi ne m'avez-vous pas appelée hier soir ?\nWhy didn't you call me last night?\tPourquoi ne m'as-tu pas appelée la nuit dernière ?\nWhy didn't you call me last night?\tPourquoi ne m'as-tu pas appelée hier soir ?\nWhy didn't you tell me about this?\tPourquoi ne m'en avez-vous pas parlé ?\nWhy didn't you tell me about this?\tPourquoi ne m'en as-tu pas parlé ?\nWhy do I tell you people anything?\tPourquoi est-ce que je vous cause, d'abord ?\nWhy do Tom and Mary fight so much?\tPourquoi Tom et Mary se battent-ils si souvent ?\nWhy do Tom and Mary fight so much?\tPourquoi Tom et Mary se disputent-ils si souvent ?\nWhy do so many people visit Kyoto?\tPourquoi est-ce que tant de personnes visitent Kyoto ?\nWhy do you like squirrels so much?\tPourquoi aimes-tu autant les écureuils ?\nWhy do you like squirrels so much?\tPourquoi aimez-vous tant les écureuils ?\nWhy do you want to become a nurse?\tPourquoi veux-tu devenir infirmière ?\nWhy do you want to become a nurse?\tPourquoi voulez-vous devenir infirmière ?\nWhy do you want to commit suicide?\tPourquoi veux-tu te suicider ?\nWhy do you want to commit suicide?\tPourquoi voulez-vous vous suicider ?\nWhy do you want to do that anyway?\tPourquoi veux-tu faire ça, de toutes façons ?\nWhy do you want to do that anyway?\tPourquoi voulez-vous faire ça, de toutes façons ?\nWhy do you want to go out with me?\tPourquoi veux-tu sortir avec moi ?\nWhy do you want to go out with me?\tPourquoi voulez-vous sortir avec moi ?\nWhy does Tom always look so tired?\tPourquoi Tom a-t-il l'air toujours aussi fatigué ?\nWhy don't we go out and get drunk?\tPourquoi ne sortons-nous pas nous saouler ?\nWhy don't we go out and get drunk?\tPourquoi ne sortons-nous pas nous bourrer la gueule ?\nWhy don't you give me what I want?\tPourquoi ne me donnes-tu pas ce que je veux ?\nWhy don't you give me what I want?\tPourquoi ne me donnez-vous pas ce que je souhaite ?\nWhy don't you put some clothes on?\tEt si tu mettais des vêtements ?\nWhy don't you put some clothes on?\tEt si vous mettiez des vêtements ?\nWhy don't you put some clothes on?\tPourquoi ne mettez-vous pas des vêtements ?\nWhy don't you put some clothes on?\tPourquoi ne mets-tu pas des vêtements ?\nWhy don't you talk to me about it?\tPourquoi ne m'en parles-tu pas, maintenant ?\nWhy don't you talk to me about it?\tPourquoi ne m'en parlez-vous pas, maintenant ?\nWhy don't you wear summer clothes?\tPourquoi ne portes-tu pas de vêtements d'été ?\nWhy is he asking me that question?\tPourquoi il me pose cette question ?\nWhy was I turned down for the job?\tPourquoi m'a-t-on refusé pour le poste ?\nWhy won't anybody talk about this?\tPourquoi personne ne veut-il en parler ?\nWhy won't anybody talk about this?\tPourquoi quiconque refuse-t-il d'en parler ?\nWhy would anybody want to do that?\tPourquoi quiconque voudrait-il faire cela ?\nWhy would anybody want to hurt me?\tPourquoi quiconque voudrait-il me faire du mal ?\nWill the weather be good tomorrow?\tEst-ce qu'il ferra beau demain ?\nWill you go to the movies with me?\tViendras-tu au cinéma avec moi ?\nWill you help me with my homework?\tM'aideras-tu pour mes devoirs ?\nWill you pass me the salt, please?\tTu veux bien me passer le sel, s'il te plaît?\nWill you show me your photo album?\tVous me montrerez votre album photo ?\nWill you tell me why you like her?\tPourrais-tu me dire pourquoi tu l'aimes ?\nWinter is right around the corner.\tL'hiver est au coin du bois.\nWinter is right around the corner.\tL'hiver commence à poindre.\nWithout water, nothing could live.\tSans eau, rien ne pourrait vivre.\nWithout water, you could not live.\tSans eau tu ne pourrais pas vivre.\nWomen are better at this than men.\tLes femmes y sont meilleures que les hommes.\nWould you care for some more cake?\tVoudriez-vous davantage de gâteau ?\nWould you care for some more cake?\tVoudrais-tu davantage de gâteau ?\nWould you get me a glass of water?\tTu veux bien me donner un verre d'eau?\nWould you like another cup of tea?\tVoulez-vous une autre tasse de thé ?\nWould you like something to drink?\tVeux-tu quelque chose à boire ?\nWould you like to go have a drink?\tVoudriez-vous aller prendre un verre ?\nWould you like to go have a drink?\tVoudrais-tu aller prendre un verre ?\nWould you like to leave a message?\tVoudriez-vous laisser un message ?\nWould you like to leave a message?\tVoudrais-tu laisser un message ?\nWould you mind if I borrowed this?\tVerriez-vous un inconvénient à ce que j'emprunte ceci ?\nWould you mind if I borrowed this?\tVerrais-tu un inconvénient à ce que j'emprunte ceci ?\nWould you mind opening the window?\tCela vous dérangerait-il d'ouvrir la fenêtre ?\nWould you mind sharing your table?\tCela ne vous dérangerait-il pas de partager votre table ?\nWould you open the window, please?\tOuvririez-vous la fenêtre, s'il vous plait ?\nWould you please close the window?\tVoudriez-vous fermer la fenêtre, je vous prie ?\nWould you tell me when to get off?\tPourriez-vous me dire quand descendre ?\nYesterday we painted the town red.\tHier, on a fait la bringue.\nYokohama is a beautiful port town.\tYokohama est une jolie ville portuaire.\nYou almost gave me a heart attack.\tVous m'avez presque causé une crise cardiaque.\nYou almost gave me a heart attack.\tTu m'as presque causé une crise cardiaque.\nYou are expecting too much of her.\tTu attends trop d'elle.\nYou are too young to travel alone.\tTu es trop jeune pour voyager seul.\nYou are too young to travel alone.\tVous êtes trop jeune pour voyager seul.\nYou are too young to travel alone.\tVous êtes trop jeune pour voyager seule.\nYou are too young to travel alone.\tVous êtes trop jeunes pour voyager seuls.\nYou are too young to travel alone.\tVous êtes trop jeunes pour voyager seules.\nYou are too young to travel alone.\tTu es trop jeune pour voyager seule.\nYou can see it with the naked eye.\tVous pouvez le voir à l'œil nu.\nYou can't help now. It's too late.\tMaintenant tu ne peux plus aider. C'est trop tard.\nYou don't have to be so sarcastic.\tTu n'es pas obligé d'être sarcastique.\nYou don't have to be so sarcastic.\tTu n'es pas obligée d'être sarcastique.\nYou don't have to be so sarcastic.\tVous n'êtes pas obligé d'être sarcastique.\nYou don't have to be so sarcastic.\tVous n'êtes pas obligée d'être sarcastique.\nYou don't have to be so sarcastic.\tVous n'êtes pas obligés d'être sarcastiques.\nYou don't have to be so sarcastic.\tVous n'êtes pas obligées d'être sarcastiques.\nYou don't have to get up so early.\tTu n'es pas obligé de te lever si tôt.\nYou don't have to get up so early.\tTu n'es pas obligée de te lever si tôt.\nYou don't have to get up so early.\tVous n'êtes pas obligé de vous lever si tôt.\nYou don't have to get up so early.\tVous n'êtes pas obligée de vous lever si tôt.\nYou don't have to get up so early.\tVous n'êtes pas obligés de vous lever si tôt.\nYou don't have to get up so early.\tVous n'êtes pas obligées de vous lever si tôt.\nYou don't have to obey such a law.\tTu n'es pas obligé d'obéir à une loi comme ça.\nYou don't have to stay to the end.\tTu n'es pas obligé de rester jusqu'à la fin.\nYou don't have to work on Sundays.\tTu n'as pas à travailler le dimanche.\nYou don't know what it is, do you?\tTu ignores ce que c'est, non ?\nYou don't look like a millionaire.\tVous n'avez pas l'air d'un millionnaire.\nYou don't look like a millionaire.\tTu n'as pas l'air d'un millionnaire.\nYou don't look like a millionaire.\tTu n'as pas l'air d'une millionnaire.\nYou don't look like a millionaire.\tVous n'avez pas l'air d'une millionnaire.\nYou expect too much of your child.\tTu en demandes trop à ton enfant.\nYou have a strange sense of humor.\tVous avez un sens de l'humour étrange.\nYou have no obligation to help us.\tTu n'es pas obligé de nous aider.\nYou have only to ask for his help.\tIl te suffit de demander son aide.\nYou have only to ask for his help.\tIl vous suffit de demander son aide.\nYou have only to push this button.\tVous devez juste pousser sur ce bouton.\nYou have only to push this button.\tTu dois juste pousser sur ce bouton.\nYou have only to touch the button.\tTu dois seulement toucher le bouton.\nYou have only to touch the button.\tVous devez juste toucher le bouton.\nYou have reached your destination.\tTu as atteint ta destination.\nYou have reached your destination.\tVous avez atteint votre destination.\nYou know very well what Tom wants.\tTu sais très bien ce que Tom désire.\nYou know we don't need to do that.\tTu sais que nous n'en n'avons pas besoin.\nYou know what song I want to sing.\tTu sais quelle chanson je veux chanter.\nYou know what song I want to sing.\tVous savez quelle chanson je veux chanter.\nYou learn something new every day.\tOn apprend quelque chose de nouveau tous les jours.\nYou may as well tell me the truth.\tTu pourrais aussi bien me dire la vérité.\nYou may choose whichever you want.\tTu peux choisir celui que tu veux.\nYou may not be as lucky next time.\tTu n'auras peut-être pas autant de chance, la prochaine fois.\nYou may not be as lucky next time.\tVous n'aurez peut-être pas autant de chance, la prochaine fois.\nYou might as well just enjoy life.\tTu ferais mieux de simplement profiter de la vie.\nYou might want to grab some sleep.\tPeut-être voudrais-tu prendre un peu de sommeil.\nYou might want to reconsider that.\tPeut-être voudrais-tu y réfléchir à nouveau.\nYou might want to try it sometime.\tPeut-être voudrais-tu l'essayer un jour.\nYou must do exactly as I tell you.\tTu dois faire exactement comme je te dis.\nYou must do exactly as I tell you.\tVous devez faire exactement comme je vous dis.\nYou must learn from your mistakes.\tVous devez apprendre de vos erreurs.\nYou must learn from your mistakes.\tTu dois apprendre de tes erreurs.\nYou must steer clear of that gang.\tTu dois te tenir à l'écart de cette bande.\nYou must think I'm really strange.\tVous devez penser que je suis vraiment étrange.\nYou must think I'm really strange.\tTu dois penser que je suis vraiment étrange.\nYou need a license to drive a car.\tOn a besoin d'un permis pour conduire une voiture.\nYou need a license to drive a car.\tTu as besoin d'un permis pour conduire une voiture.\nYou need a license to drive a car.\tVous avez besoin d'un permis pour conduire une voiture.\nYou need to stop saying no to Tom.\tVous devez arrêter de dire constamment \"non\" à Tom.\nYou never have any doubts, do you?\tVous n'êtes jamais en proie au doute, n'est-ce pas ?\nYou never have any doubts, do you?\tTu n'es jamais en proie au doute, n'est-ce pas ?\nYou never have any doubts, do you?\tVous n'êtes jamais sujet au doute, n'est-ce pas ?\nYou never have any doubts, do you?\tTu n'es jamais sujet au doute, n'est-ce pas ?\nYou ought not to make fun of them.\tTu ne devrais pas te moquer d'eux.\nYou ought not to make fun of them.\tVous ne devriez pas vous moquer d'eux.\nYou really lucked out on this one.\tVous avez vraiment eu de la chance sur ce coup.\nYou really lucked out on this one.\tTu as vraiment eu de la chance sur ce coup.\nYou said the same thing about Tom.\tTu as dit la même chose à propos de Tom.\nYou said you'd do anything for me.\tTu as dit que tu ferais n'importe quoi pour moi.\nYou said you'd do anything for me.\tVous avez dit que vous feriez n'importe quoi pour moi.\nYou said your boss was a nice guy.\tTu as dit que ton patron était un chic type.\nYou said your boss was a nice guy.\tVous avez dit que votre patron était un chic type.\nYou seem to have the wrong number.\tVous avez dû vous tromper de numéro.\nYou seem to have the wrong number.\tTu sembles disposer du mauvais numéro.\nYou seem to have the wrong number.\tVous semblez détenir le mauvais numéro.\nYou shall have my answer tomorrow.\tVous aurez ma réponse demain.\nYou shall have my answer tomorrow.\tTu auras ma réponse demain.\nYou should be proud of yourselves.\tVous devriez être fiers de vous.\nYou should be proud of yourselves.\tVous devriez être fières de vous.\nYou should face up to the reality.\tVous devriez affronter la réalité.\nYou should face up to the reality.\tTu devrais affronter la réalité.\nYou should get rid of these weeds.\tTu devrais te débarrasser de ces vêtements de deuil.\nYou should get rid of these weeds.\tTu devrais te débarrasser de ces mauvaises herbes.\nYou should get rid of these weeds.\tTu devrais te débarrasser de ces parasites.\nYou should get your eyes examined.\tVous devriez faire contrôler vos yeux.\nYou should get your eyes examined.\tTu devrais faire examiner tes yeux.\nYou should get your eyes examined.\tVous devriez faire examiner vos yeux.\nYou should have been more careful.\tTu aurais dû être plus prudent.\nYou should have been more careful.\tTu aurais dû être plus prudente.\nYou should have been more careful.\tVous auriez dû être plus prudent.\nYou should have been more careful.\tVous auriez dû être plus prudente.\nYou should have been more careful.\tVous auriez dû être plus prudents.\nYou should have been more careful.\tVous auriez dû être plus prudentes.\nYou should have been more prudent.\tTu aurais dû être plus prudent.\nYou should have been more prudent.\tTu aurais dû être plus prudente.\nYou should have gotten up earlier.\tVous auriez dû vous lever plus tôt.\nYou should have gotten up earlier.\tTu aurais dû te lever plus tôt.\nYou should have refused his offer.\tTu aurais dû décliner sa proposition.\nYou should have refused his offer.\tVous auriez dû décliner son offre.\nYou should marry someone you love.\tTu devrais épouser quelqu'un que tu aimes.\nYou should marry someone you love.\tOn devrait épouser quelqu'un qu'on aime.\nYou should marry someone you love.\tVous devriez épouser quelqu'un que vous aimez.\nYou should mind your own business.\tTu devrais t'occuper de tes affaires.\nYou should mind your own business.\tVous devriez vous occuper de vos affaires.\nYou should not break your promise.\tTu ne devrais pas rompre ta promesse.\nYou should not break your promise.\tVous ne devriez pas rompre votre promesse.\nYou should prepare for the future.\tTu devrais t'apprêter pour le futur.\nYou should prepare for the future.\tVous devriez vous apprêter pour le futur.\nYou should read between the lines.\tIl faut lire entre les lignes.\nYou should return what you borrow.\tIl faut rendre ce qu'on a emprunté.\nYou underestimate your importance.\tTu sous-estimes ton importance.\nYou underestimate your importance.\tVous sous-estimez votre importance.\nYou want to leave here, don't you?\tTu veux partir d'ici, n'est-ce pas ?\nYou want to leave here, don't you?\tVous voulez partir d'ici, n'est-ce pas ?\nYou were told to stay on the ship.\tOn t'avait dit de rester sur le bateau.\nYou were told to stay on the ship.\tOn vous avait dit de rester sur le bateau.\nYou will be able to speak English.\tTu pourras parler anglais.\nYou'd better not stay up too late.\tTu ferais mieux de ne pas veiller trop tard.\nYou'd better not stay up too late.\tVous feriez mieux de ne pas veiller trop tard.\nYou'll catch the bus if you hurry.\tSi tu te dépêches tu attraperas le bus.\nYou'll feel better in a few hours.\tTu te sentiras mieux dans quelques heures.\nYou'll get there by three o'clock.\tVous y serez à trois heures.\nYou'll get there by three o'clock.\tTu y seras à trois heures.\nYou're confused again, aren't you?\tVous vous embrouillez à nouveau, non ?\nYou're confused again, aren't you?\tTu t'embrouilles à nouveau, non ?\nYou're free of all responsibility.\tVous êtes libéré de toute responsabilité.\nYou're free of all responsibility.\tVous êtes libérée de toute responsabilité.\nYou're free of all responsibility.\tVous êtes libérées de toute responsabilité.\nYou're free of all responsibility.\tVous êtes libérés de toute responsabilité.\nYou're free of all responsibility.\tTu es libéré de toute responsabilité.\nYou're free of all responsibility.\tTu es libérée de toute responsabilité.\nYou're just the man I want to see.\tVous êtes précisément l'homme que je veux voir.\nYou're just the man I want to see.\tTu es précisément l'homme que je veux voir.\nYou're not supposed to be in here.\tVous n'êtes pas censé être là-dedans.\nYou're not supposed to be in here.\tVous n'êtes pas censée être là-dedans.\nYou're not supposed to be in here.\tVous n'êtes pas censés être là-dedans.\nYou're not supposed to be in here.\tVous n'êtes pas censées être là-dedans.\nYou're not supposed to be in here.\tTu n'es pas censé être là-dedans.\nYou're not supposed to be in here.\tTu n'es pas censée être là-dedans.\nYou're so beautiful in that dress.\tTu es si belle dans cette robe !\nYou're so beautiful in that dress.\tTu es tellement belle dans cette robe !\nYou're so beautiful in that dress.\tVous êtes si belle dans cette robe !\nYou're so beautiful in that dress.\tVous êtes tellement belle dans cette robe !\nYou're the last hope for humanity.\tVous êtes le dernier espoir de l'humanité.\nYou're the last hope for humanity.\tTu es le dernier espoir de l'humanité.\nYou're the only one I think about.\tJe ne pense qu'à toi.\nYou're the only one who can do it.\tNul autre que toi ne peut le faire.\nYou're very religious, aren't you?\tVous êtes très religieux, n'est-ce pas ?\nYou're very religious, aren't you?\tVous êtes très religieuses, n'est-ce pas ?\nYou're very religious, aren't you?\tVous êtes très religieuse, n'est-ce pas ?\nYou're very religious, aren't you?\tTu es très religieux, n'est-ce pas ?\nYou're very religious, aren't you?\tTu es très religieuse, n'est-ce pas ?\nYou've been drinking, haven't you?\tVous avez bu, n'est-ce pas ?\nYou've been drinking, haven't you?\tTu as bu, pas vrai ?\nYou've just opened a can of worms.\tTu viens d'ouvrir une boîte de Pandore.\nYou've put on weight, haven't you?\tTu as pris du poids, n'est-ce pas ?\nYou've put on weight, haven't you?\tVous avez pris du poids, n'est-ce pas ?\nYou've run out of things to drink.\tVous avez épuisé vos réserves de boissons.\nYou've run out of things to drink.\tTu es à court de boissons.\nYoung people must respect the law.\tLes jeunes doivent respecter la loi.\nYour being here means a lot to me.\tLe fait que tu sois là signifie beaucoup pour moi.\nYour being here means a lot to me.\tLe fait que vous soyez là signifie beaucoup pour moi.\nYour boyfriend is cheating on you.\tTon petit copain te trompe.\nYour boyfriend is cheating on you.\tVotre petit ami vous trompe.\nYour driver's license has expired.\tTon permis de conduire est expiré.\nYour driver's license has expired.\tVotre permis de conduire est expiré.\nYour driver's license has expired.\tTon permis de conduire a expiré.\nYour driver's license has expired.\tVotre permis de conduire a expiré.\nYour friendship means a lot to me.\tTon amitié signifie beaucoup pour moi.\nYour name's further down the list.\tVotre nom figure plus bas dans la liste.\nYour name's further down the list.\tTon nom figure plus bas dans la liste.\nZoos are like prisons for animals.\tLes zoos sont, pour les animaux, comme des prisons.\n\"Are you hungry?\" \"No, not really.\"\t« T’as faim ? » « Non, pas trop. »\n\"May I park here?\" \"No, you can't.\"\t\"Puis-je me garer ici ?\" \"Non, vous ne le pouvez pas.\"\nA bill came along with the package.\tUne facture accompagnait le paquet.\nA car drew up in front of my house.\tUne voiture s'arrêta devant ma maison.\nA car was coming in this direction.\tUne voiture s'approchait d'ici.\nA cat appeared from under the desk.\tUn chat apparut d'en dessous du bureau.\nA cat came out from under the desk.\tUn chat a surgi de sous le bureau.\nA childhood illness left her blind.\tElle a été rendue aveugle par une maladie d'enfance.\nA curtain of mist blocked our view.\tUn rideau de brume nous obstruait la vue.\nA delicate balance must be reached.\tUn subtil équilibre doit être trouvé.\nA fire broke out during that night.\tUn incendie éclata pendant cette nuit.\nA great future is reserved for him.\tUn grand avenir lui est réservé.\nA group of young men were fighting.\tUn groupe de jeunes hommes se battait.\nA growing child requires more food.\tUn enfant qui grandit exige davantage de nourriture.\nA heavy tax was imposed on whiskey.\tLe whisky fut imposé d'une lourde taxe.\nA hug from you would make me happy.\tUn câlin de vous me ferait plaisir.\nA lot of soldiers were killed here.\tBeaucoup de soldats ont été tués ici.\nA man came to visit you last night.\tUn homme est venu te rendre visite la nuit dernière.\nA man is responsible for his deeds.\tUn homme est responsable de ses actes.\nA man's life has its ups and downs.\tLa vie d'un homme a des hauts et des bas.\nA mouse is running around the room.\tUne souris court autour de la pièce.\nA passing car splashed water on us.\tUne voiture qui passait nous a éclaboussés.\nA really bad thing happened to him.\tUne chose vraiment affreuse lui est arrivée.\nA screen divided the room into two.\tUn écran séparait la pièce en deux.\nA storm confined them to the house.\tUne tempête les a contraints à rester à la maison.\nA storm confined them to the house.\tUne tempête les a contraintes à rester à la maison.\nA swarm of mosquitoes followed him.\tUne nuée de moustiques le suivait.\nA true friend would not betray you.\tUn vrai ami ne peut pas vous trahir.\nA young man barged in unexpectedly.\tUn jeune homme s'est mêlé à l'improviste à la conversation.\nAchilles was an ancient Greek hero.\tAchille était un ancien héros Grec.\nAfrica is exporting beef to Europe.\tL'Afrique exporte du bœuf en Europe.\nAfter that, I didn't see him again.\tAprès cela, je ne l'ai pas revu.\nAim the video camera at that group.\tDirigez la caméra vers ce groupe.\nAir is to us what water is to fish.\tL'air est à l'homme ce que l'eau est aux poissons.\nAlgebra is a branch of mathematics.\tL'algèbre est une branche des mathématiques.\nAll I want now is a glass of water.\tTout ce que je veux maintenant, c'est un verre d'eau.\nAll I want you to do is talk to us.\tTout ce que je veux que tu fasses est de nous parler.\nAll I want you to do is talk to us.\tTout ce que je veux que vous fassiez est de nous parler.\nAll at once there was an explosion.\tTout à coup, il y eut une explosion.\nAll my friends and family are dead.\tTous mes amis et ma famille sont morts.\nAll my friends are getting married.\tTous mes amis se marient.\nAll my friends are getting married.\tToutes mes amies se marient.\nAll of a sudden, he proposed to me.\tTout à coup, il m'a demandée en mariage.\nAll of them agreed to the proposal.\tTous ont donné leur accord pour cette proposition.\nAll of us were shocked by the news.\tNous avons tous été choqués par les nouvelles.\nAll of us will die sooner or later.\tNous mourrons tous tôt ou tard.\nAll possible means have been tried.\tTous les moyens possibles ont été tentés.\nAll the money was spent on clothes.\tTout l'argent a été dépensé dans des vêtements.\nAll the old magazines are sold out.\tTous les vieux magazines sont épuisés.\nAll you have to do is study harder.\tTout ce que tu as à faire est de travailler plus dur.\nAll you have to do is study harder.\tTout ce que vous avez à faire est d'étudier avec davantage d'application.\nAll your problems have been solved.\tTous tes problèmes ont été résolus.\nAll your problems have been solved.\tTous vos problèmes ont été résolus.\nAlthough I was sick, I did my best.\tMême si j'étais malade, j'ai fait de mon mieux.\nAmerica is a country of immigrants.\tL'Amérique est un pays d'immigrants.\nAmsterdam is famous for its canals.\tAmsterdam est célèbre pour ses canaux.\nAn accident may happen at any time.\tUn accident peut se produire à tout moment.\nAn actor has to memorize his lines.\tUn acteur doit mémoriser son texte.\nAn elephant is a very large animal.\tUn éléphant est un très grand animal.\nAn image is worth a thousand words.\tUne illustration vaut mille mots.\nAnts have a well-organized society.\tLes fourmis vivent au sein d'une société bien organisée.\nAny student can solve this problem.\tN'importe quel étudiant peut résoudre ce problème.\nAnyone who protested, lost his job.\tTous ceux qui protestaient perdaient leur emploi.\nAre there any books under the desk?\tY a-t-il quelque livre sous le bureau ?\nAre there two windows in your room?\tY a-t-il deux fenêtres dans ta chambre ?\nAre we allowed to use the elevator?\tSommes-nous autorisés à utiliser l’ascenseur ?\nAre we allowed to use the elevator?\tSommes-nous autorisées à utiliser l’ascenseur ?\nAre we still on for tomorrow night?\tÇa tient toujours pour demain soir ?\nAre you finished reading the paper?\tAs-tu fini de lire le journal ?\nAre you finished reading the paper?\tAvez-vous fini de lire le journal ?\nAre you going to go with me or not?\tVas-tu y aller avec moi ou non ?\nAre you going to go with me or not?\tAllez-vous y aller avec moi ou non ?\nAre you going to open the envelope?\tVas-tu ouvrir cette enveloppe?\nAre you going to tell me your name?\tAllez-vous me dire votre nom ?\nAre you in a bad mood or something?\tEs-tu de mauvaise humeur, ou quoi ?\nAre you in a bad mood or something?\tÊtes-vous de mauvaise humeur, ou quoi ?\nAre you ready to hear the bad news?\tEs-tu prêt à entendre la mauvaise nouvelle ?\nAre you sure this is what you want?\tEs-tu sûr que c'est ce que tu veux ?\nAre you sure this is what you want?\tEs-tu sûre que c'est ce que tu veux ?\nAre you sure this is what you want?\tÊtes-vous sûr que c'est ce que vous voulez ?\nAre you sure this is what you want?\tÊtes-vous sûre que c'est ce que vous voulez ?\nAre you sure this is what you want?\tÊtes-vous sûrs que c'est ce que vous voulez ?\nAre you sure this is what you want?\tÊtes-vous sûres que c'est ce que vous voulez ?\nAre you sure you don't want coffee?\tÊtes-vous sûr de ne pas vouloir de café ?\nAre you sure you don't want coffee?\tÊtes-vous sûre de ne pas vouloir de café ?\nAre you sure you don't want coffee?\tÊtes-vous certain de ne pas vouloir de café ?\nAre you sure you don't want coffee?\tÊtes-vous certaine de ne pas vouloir de café ?\nAre you sure you don't want coffee?\tÊtes-vous certaines de ne pas vouloir de café ?\nAre you sure you don't want coffee?\tÊtes-vous certains de ne pas vouloir de café ?\nAre you sure you don't want coffee?\tEs-tu certain de ne pas vouloir de café ?\nAre you sure you don't want coffee?\tEs-tu certaine de ne pas vouloir de café ?\nAre you sure you don't want coffee?\tÊtes-vous sûrs de ne pas vouloir de café ?\nAre you sure you don't want coffee?\tÊtes-vous sûres de ne pas vouloir de café ?\nAre you sure you don't want coffee?\tEs-tu sûr de ne pas vouloir de café ?\nAre you sure you don't want coffee?\tEs-tu sûre de ne pas vouloir de café ?\nAre you sure you want to leave now?\tEs-tu sûr de vouloir partir maintenant ?\nAre you sure you want to leave now?\tEs-tu sûre de vouloir partir maintenant ?\nAre you sure you want to leave now?\tÊtes-vous sûr de vouloir partir maintenant ?\nAre you sure you want to leave now?\tÊtes-vous sûre de vouloir partir maintenant ?\nAre you sure you want to leave now?\tÊtes-vous sûrs de vouloir partir maintenant ?\nAre you sure you want to leave now?\tÊtes-vous sûres de vouloir partir maintenant ?\nAre you telling me that I can't go?\tEs-tu en train de me dire que je ne peux pas y aller ?\nAre you telling me that I can't go?\tÊtes-vous en train de me dire que je ne peux pas y aller ?\nAre you telling this story or am I?\tTu racontes cette histoire ou c'est moi ?\nAre you through with the newspaper?\tEn avez-vous terminé avec le journal ?\nAre you through with the newspaper?\tEn as-tu terminé avec le journal ?\nAre you through with the newspaper?\tEn avez-vous fini avec le journal ?\nAre you through with the newspaper?\tEn as-tu fini avec le journal ?\nAs a matter of fact, I dislike him.\tEn fait, je ne l'aime pas.\nAsia is much larger than Australia.\tL'Asie est beaucoup plus grande que l'Australie.\nAsk him when the next plane leaves.\tDemandez-lui quand part le prochain avion.\nAsk him when the next plane leaves.\tDemande-lui quand part le prochain vol !\nAt first, I didn't know what to do.\tAu début je ne savais pas quoi faire.\nAt last, we arrived at the village.\tNous sommes enfin arrivés au village.\nAt what point do we start to worry?\tÀ quel point commençons-nous à nous faire du souci ?\nAt your age, I would think so, too.\tÀ ton âge, je le penserais aussi.\nBacteria will not breed in alcohol.\tLes bactéries ne se reproduisent pas dans l'alcool.\nBad weather kept us from going out.\tLe mauvais temps nous empêcha de sortir.\nBad weather kept us from going out.\tLe mauvais temps nous a empêchés de sortir.\nBad weather kept us from going out.\tLe mauvais temps nous a empêchées de sortir.\nBangkok is Thailand's capital city.\tBangkok est la capitale de la Thaïlande.\nBangkok is the capital of Thailand.\tBangkok est la capitale de la Thaïlande.\nBe quiet, or the baby will wake up.\tReste calme, sinon le bébé va se réveiller.\nBeing with you makes me feel happy.\tLorsque je suis avec toi, je suis heureux.\nBern is the capital of Switzerland.\tBerne est la capitale de la Suisse.\nBetween us, he is a little foolish.\tEntre nous, il est un peu fou.\nBilingual dictionaries are allowed.\tLes dictionnaires bilingues sont autorisés.\nBoth of my sisters are not married.\tAucune de mes deux sœurs n'est mariée.\nBring it back when you are through.\tRamène-le quand tu as fini.\nBring me a cup of coffee, will you?\tVeux-tu bien m’apporter une tasse de café ?\nBuffalo bones were made into tools.\tLes os de bisons étaient façonnés en outils.\nBy the way, do you play the violin?\tAu fait, est-ce que tu joues du violon ?\nBy the way, do you play the violin?\tAu fait, jouez-vous du violon ?\nCalifornia is famous for its fruit.\tLa Californie est célèbre pour ses fruits.\nCall me up at seven in the morning.\tAppelle-moi à sept heures du matin.\nCan I come to your office tomorrow?\tPuis-je venir à ton bureau demain ?\nCan I come to your office tomorrow?\tPuis-je venir à votre bureau demain ?\nCan I make a couple of suggestions?\tPuis-je faire quelques suggestions ?\nCan I tell my father what you want?\tPuis-je dire à mon père ce que tu veux ?\nCan I tell them you'll be visiting?\tPuis-je leur dire que vous viendrez rendre visite ?\nCan I tell them you'll be visiting?\tPuis-je leur dire que tu viendras rendre visite ?\nCan anyone translate this sentence?\tQuelqu'un peut-il traduire cette phrase ?\nCan you explain why Tom isn't here?\tPeux-tu expliquer pourquoi Tom n'est pas ici ?\nCan you explain why Tom isn't here?\tPouvez-vous expliquer pourquoi Tom n'est pas ici ?\nCan you get away from your parents?\tPeux-tu t'émanciper de tes parents ?\nCan you give us your point of view?\tPeux-tu nous donner ton point de vue ?\nCan you give us your point of view?\tPouvez-vous nous donner votre point de vue ?\nCan you give us your point of view?\tPouvez-vous nous donner vos points de vue ?\nCan you guess where I am right now?\tPeux-tu deviner où je me trouve à l'instant ?\nCan you guess where I am right now?\tPouvez-vous deviner où je me trouve à l'instant ?\nCan you move this desk by yourself?\tPeux-tu déplacer ce bureau seul ?\nCan you please repeat the question?\tPouvez-vous répéter la question, s'il vous plaît ?\nCan you please repeat the question?\tPeux-tu répéter la question, s'il te plaît ?\nCan you read that sign ahead of us?\tArrives-tu à lire cette indication au-dessus de nous ?\nCan you read that sign ahead of us?\tArrivez-vous à lire cette indication au-dessus de nous ?\nCan you show me your boarding pass?\tPouvez-vous me montrer votre carte d'embarquement ?\nCan you walk with your eyes closed?\tPeux-tu marcher les yeux fermés ?\nCan't we have a snack or something?\tNe pouvons-nous pas avoir un petit truc à manger ?\nCan't you do anything to stop them?\tNe peux-tu rien faire pour les arrêter ?\nCan't you do anything to stop them?\tNe pouvez-vous rien faire pour les arrêter ?\nCareful driving prevents accidents.\tUne conduite prudente évite les accidents.\nCheese is easy to cut with a knife.\tLe fromage est facile à couper avec un couteau.\nCherry blossoms are very beautiful.\tLa floraison des cerisiers est très belle.\nChildren don't like to take a bath.\tLes enfants n'aiment pas prendre leur bain.\nChildren like playing on the beach.\tLes enfants aiment jouer sur la plage.\nChildren should be taught to share.\tOn devrait apprendre aux enfants à partager.\nChildren should obey their parents.\tLes enfants devraient obéir à leurs parents.\nChina is rich in natural resources.\tLa Chine est riche en ressources naturelles.\nChocolate is toxic to many animals.\tLe chocolat est toxique pour de nombreux animaux.\nChoose the color you like the best.\tChoisis la couleur que tu préfères.\nChoose the color you like the best.\tChoisissez la couleur que vous préférez.\nClimate change is a global problem.\tLe changement climatique est un problème mondial.\nCoat the chicken breast with flour.\tCouvrez les blancs de poulet de farine.\nCompare the copy with the original.\tCompare la copie à l'original.\nCompared to Tokyo, London is small.\tPar rapport à Tokyo, Londres est petit.\nCopy this program on your computer.\tCopiez ce programme sur votre ordinateur.\nCould I have a minute of your time?\tPuis-je vous parler une minute?\nCould I have a slice of cheesecake?\tPuis-je avoir une tranche de gâteau au fromage ?\nCould I have another glass of beer?\tPourrais-je avoir un autre verre de bière ?\nCould I see the menu and wine list?\tPuis-je voir le menu et la carte des vins ?\nCould you call again later, please?\tEst-ce que tu pourrais retéléphoner plus tard s'il te plaît ?\nCould you call me back a bit later?\tPourrais-tu me rappeler un peu plus tard ?\nCould you call me back a bit later?\tPourriez-vous me rappeler un peu plus tard ?\nCould you come and see me tomorrow?\tPourriez-vous venir me voir demain ?\nCould you come back a little later?\tPourriez-vous revenir un peu plus tard ?\nCould you come back a little later?\tPourrais-tu revenir un peu plus tard ?\nCould you give us a minute, please?\tPouvez-vous nous donner une minute, s'il vous plaît ?\nCould you give us a minute, please?\tPeux-tu nous donner une minute, s'il te plaît ?\nCould you pass me the salt, please?\tPouvez-vous me passer le sel, s’il vous plait ?\nCould you pass me the salt, please?\tPouvez-vous me passer le sel, s'il vous plaît ?\nCould you please sign the register?\tPourriez-vous signer le registre ?\nCould you please take me back home?\tPourrais-tu me ramener chez moi, s'il te plait ?\nCould you please take me back home?\tPourriez-vous me ramener chez moi, je vous prie ?\nCould you take some pictures of us?\tPourriez-vous prendre quelques photos de nous ?\nCould you take some pictures of us?\tPourrais-tu nous prendre en photo quelques fois ?\nCould you turn on the light please?\tPourrais-tu allumer la lumière s'il te plaît ?\nCricket is a game that takes skill.\tLe cricket est un jeu qui exige de l'habileté.\nDefense lawyers appealed for mercy.\tLes avocats de la défense en appelèrent à la pitié.\nDefense lawyers appealed for mercy.\tLes avocats de la défense ont fait appel à leur clémence.\nDid Tom tell you where he got this?\tTom t'a-t-il dit où il avait eu ça ?\nDid anyone call me while I was out?\tQuelqu'un m'a-t-il appelé pendant que j'étais sorti ?\nDid anyone notice anything unusual?\tQuiconque a-t-il remarqué quoi que ce soit d'inhabituel ?\nDid you bring an umbrella with you?\tAs-tu pris un parapluie avec toi ?\nDid you bring an umbrella with you?\tAvez-vous pris un parapluie avec vous ?\nDid you buy it on the black market?\tL'as-tu acheté au marché noir ?\nDid you buy it on the black market?\tL'as-tu achetée au marché noir ?\nDid you double-check these figures?\tAvez-vous contre-vérifié ces chiffres ?\nDid you enjoy your winter holidays?\tAvez-vous passé de bonnes vacances d'hiver ?\nDid you forget to do your homework?\tAs-tu oublié de faire tes devoirs ?\nDid you forget to do your homework?\tAvez-vous oublié de faire vos devoirs ?\nDid you have a good time yesterday?\tVous êtes-vous bien amusés hier ?\nDid you have a good time yesterday?\tVous êtes-vous bien amusé hier ?\nDid you have a good time yesterday?\tVous êtes-vous bien amusée hier ?\nDid you have a good time yesterday?\tVous êtes-vous bien amusées hier ?\nDid you have a good time yesterday?\tT'es-tu bien amusé hier ?\nDid you have a good time yesterday?\tT'es-tu bien amusée hier ?\nDid you have a good time yesterday?\tEst-ce que vous vous êtes bien amusé hier ?\nDid you have a good time yesterday?\tEst-ce que tu t'es bien amusé hier ?\nDid you have a good time yesterday?\tT'es-tu bien amusée, hier ?\nDid you have a good time yesterday?\tVous êtes-vous bien amusées, hier ?\nDid you hear the roar of the lions?\tAs-tu entendu le rugissement des lions ?\nDid you hear the roar of the lions?\tAvez-vous entendu le rugissement des lions ?\nDid you listen to music last night?\tAs-tu écouté de la musique la nuit dernière ?\nDid you listen to music last night?\tAvez-vous écouté de la musique la nuit dernière ?\nDid you make this doll by yourself?\tT'es-tu fait cette poupée toi-même ?\nDo I have your permission to do so?\tAi-je votre permission pour procéder ainsi ?\nDo I have your permission to do so?\tAi-je ta permission pour procéder ainsi ?\nDo I have your permission to do so?\tAi-je votre permission pour le faire ?\nDo I have your permission to do so?\tAi-je ta permission pour le faire ?\nDo any of your friends play guitar?\tQuiconque de tes amis joue-t-il de la guitare ?\nDo any of your friends play guitar?\tQuiconque de vos amis joue-t-il de la guitare ?\nDo circuses still have freak shows?\tLes cirques montrent-ils encore des monstres ?\nDo penguins live at the North Pole?\tEst-ce que les pingouins vivent au pôle Nord ?\nDo the new neighbors have any kids?\tLes nouveaux voisins ont-ils des enfants ?\nDo you approve of what he is doing?\tApprouves-tu ce qu'il fait ?\nDo you approve of what he is doing?\tApprouvez-vous ce qu'il fait ?\nDo you feel up for a game of chess?\tQue dis-tu d'une partie d'échecs ?\nDo you get much snow in the winter?\tAvez-vous beaucoup de neige en hiver ?\nDo you have a lot of time to relax?\tAvez-vous beaucoup de temps pour vous détendre?\nDo you have any plans for tomorrow?\tAs-tu des projets pour demain ?\nDo you have any plans for tomorrow?\tAvez-vous prévu quelque chose pour demain ?\nDo you have any plans for tomorrow?\tTu as quelque chose de prévu, demain ?\nDo you have any problems with that?\tVoyez-vous un inconvénient à cela?\nDo you have anything non-alcoholic?\tAvez-vous quelque chose sans alcool ?\nDo you have anything to do tonight?\tAs-tu quelque chose à faire ce soir ?\nDo you have anything to do tonight?\tAvez-vous quelque chose à faire ce soir ?\nDo you have plans for this weekend?\tVous avez des projets pour ce week-end ?\nDo you have something to say to me?\tAs-tu quelque chose à me dire ?\nDo you have these shoes in my size?\tAvez-vous ces chaussures dans ma taille ?\nDo you know something I don't know?\tVous savez quelque chose que je ne sais pas ?\nDo you know something I don't know?\tTu sais quelque chose que je ne sais pas ?\nDo you know something I don't know?\tSais-tu quelque chose que j'ignore ?\nDo you know something I don't know?\tSavez-vous quelque chose que j'ignore ?\nDo you know that nice-looking girl?\tConnais-tu cette jolie fille ?\nDo you know the capital of Belgium?\tConnaissez-vous la capitale de la Belgique ?\nDo you know the man staring at you?\tConnais-tu l'homme qui te regarde ?\nDo you know the man staring at you?\tConnaissez-vous l'homme qui vous regarde ?\nDo you know the man staring at you?\tConnais-tu l'homme qui te dévisage ?\nDo you know the man staring at you?\tConnaissez-vous l'homme qui vous dévisage ?\nDo you know what UNESCO stands for?\tSavez-vous ce que UNESCO veut dire ?\nDo you know what this is all about?\tSavez-vous de quoi tout ça retourne ?\nDo you know what this is all about?\tSais-tu de quoi tout ça retourne ?\nDo you know when Tom will get back?\tSais-tu quand Tom reviendra ?\nDo you know when Tom will get back?\tSavez-vous quand Tom reviendra ?\nDo you know where your father went?\tSais-tu où ton père est allé ?\nDo you like to live in the country?\tAimez-vous vivre à la campagne ?\nDo you like to live in the country?\tAimes-tu vivre à la campagne ?\nDo you mind if I take my shirt off?\tVois-tu un inconvénient à ce que j'enlève ma chemise ?\nDo you mind if I take my shirt off?\tVoyez-vous un inconvénient à ce que j'enlève ma chemise ?\nDo you mind if I turn on the radio?\tCela vous dérange-t-il si j'allume la radio ?\nDo you mind if I turn on the radio?\tCela te dérange-t-il si j'allume la radio ?\nDo you mind if I turn on the radio?\tVois-tu un inconvénient à ce que j'allume la radio ?\nDo you mind if I turn on the radio?\tVoyez-vous un inconvénient à ce que j'allume la radio ?\nDo you mind if I use your computer?\tVois-tu un inconvénient à ce que je me serve de ton ordinateur ?\nDo you mind if I use your computer?\tVoyez-vous un inconvénient à ce que je me serve de votre ordinateur ?\nDo you mind if I use your computer?\tVois-tu un inconvénient à ce que j'utilise ton ordinateur ?\nDo you mind if I use your computer?\tVoyez-vous un inconvénient à ce que j'utilise votre ordinateur ?\nDo you mind my making a suggestion?\tCela vous dérange-t-il que je fasse une suggestion ?\nDo you prefer blondes or brunettes?\tPréfères-tu les blondes ou les brunes ?\nDo you prefer blondes or brunettes?\tPréférez-vous les blondes ou les brunes ?\nDo you really think we'll find Tom?\tPensez-vous vraiment que nous trouverons Tom ?\nDo you really think we'll find Tom?\tPenses-tu vraiment que nous trouverons Tom ?\nDo you really want to work with us?\tVeux-tu vraiment travailler avec nous ?\nDo you really want to work with us?\tVoulez-vous vraiment travailler avec nous ?\nDo you still have feelings for her?\tÉprouves-tu toujours des sentiments à son endroit ?\nDo you still have feelings for her?\tÉprouves-tu toujours des sentiments à son égard ?\nDo you still have feelings for her?\tÉprouvez-vous toujours des sentiments à son endroit ?\nDo you still have feelings for her?\tÉprouvez-vous toujours des sentiments à son égard ?\nDo you still have feelings for her?\tÉprouvez-vous toujours des sentiments pour elle ?\nDo you still have feelings for her?\tÉprouves-tu toujours des sentiments pour elle ?\nDo you still have feelings for him?\tÉprouves-tu toujours des sentiments à son endroit ?\nDo you still have feelings for him?\tÉprouves-tu toujours des sentiments à son égard ?\nDo you still have feelings for him?\tÉprouves-tu toujours des sentiments pour lui ?\nDo you still have feelings for him?\tÉprouvez-vous toujours des sentiments à son endroit ?\nDo you still have feelings for him?\tÉprouvez-vous toujours des sentiments à son égard ?\nDo you still have feelings for him?\tÉprouvez-vous toujours des sentiments pour lui ?\nDo you still remember how to do it?\tTe rappelles-tu comment le faire ?\nDo you still remember how to do it?\tVous rappelez-vous comment le faire ?\nDo you still want to be an officer?\tVeux-tu toujours être officier ?\nDo you still want to be an officer?\tVoulez-vous toujours être officier ?\nDo you still want to give me a hug?\tVeux-tu toujours m'enlacer ?\nDo you still want to give me a hug?\tVoulez-vous toujours m'enlacer ?\nDo you think I should go by myself?\tPensez-vous que je devrais m'y rendre par mes propres moyens ?\nDo you think I should go by myself?\tPenses-tu que je devrais m'y rendre par mes propres moyens ?\nDo you think I should go by myself?\tPenses-tu que je devrais aller seul ?\nDo you think I should write to Tom?\tCrois-tu que je devrais écrire à Tom ?\nDo you think I should write to Tom?\tCroyez-vous que je devrais écrire à Tom ?\nDo you think I'm too materialistic?\tPenses-tu que je sois trop matérialiste ?\nDo you think I'm too materialistic?\tPensez-vous que je sois trop matérialiste ?\nDo you think your car will make it?\tPenses-tu que ta voiture y parvienne ?\nDo you think your car will make it?\tPensez-vous que votre voiture y parvienne ?\nDo you understand what I am saying?\tComprends-tu ce que je dis ?\nDo you understand what I am saying?\tComprenez-vous ce que je dis ?\nDo you want this room painted, too?\tVeux-tu que cette pièce soit également peinte ?\nDo you want this room painted, too?\tVoulez-vous que cette pièce soit également peinte ?\nDo you want to give it another try?\tVeux-tu essayer encore une fois ?\nDo you want to give it another try?\tVoulez-vous essayer encore une fois ?\nDo you want to go fishing tomorrow?\tVeux-tu aller pêcher, demain ?\nDo you want to go fishing tomorrow?\tVoulez-vous aller pêcher, demain ?\nDo you want to go for a walk later?\tVeux-tu aller faire une promenade, plus tard ?\nDo you want to go for a walk later?\tVoulez-vous aller faire une promenade, plus tard ?\nDo you want to go shopping with me?\tVeux-tu venir faire des courses avec moi ?\nDo you want to go shopping with me?\tVoulez-vous venir faire des achats avec moi ?\nDo you want to go to a soccer game?\tVeux-tu aller à un match de foot ?\nDo you want to go to a soccer game?\tVoulez-vous aller à un match de football ?\nDo you want to play tennis with us?\tVeux-tu jouer au tennis avec nous ?\nDo you want to see my translations?\tVeux-tu voir mes traductions ?\nDo you want to see my translations?\tVoulez-vous voir mes traductions ?\nDo you want to see something gross?\tVeux-tu voir un truc cochon ?\nDo you want to see something gross?\tVeux-tu voir un truc dégoûtant ?\nDo you want to stay here all night?\tVeux-tu rester ici toute la nuit ?\nDo you want to stay here all night?\tVoulez-vous rester ici toute la nuit ?\nDo you want to talk about anything?\tVeux-tu parler de quoi que ce soit ?\nDo you want to talk about anything?\tVoulez-vous parler de quoi que ce soit ?\nDo you want us to take you with us?\tVeux-tu que nous t'emmenions avec nous ?\nDo you want us to take you with us?\tVoulez-vous que nous vous emmenions avec nous ?\nDoes Mary want me to walk her home?\tMary veut-elle que je la raccompagne chez elle ?\nDoes anybody here have a corkscrew?\tQuelqu'un a-t-il un tire-bouchon ?\nDoes anybody here have a corkscrew?\tQuelqu'un dispose-t-il d'un tire-bouchon ?\nDoes anybody here have a corkscrew?\tQuelqu'un ici a-t-il un tire-bouchon ?\nDoes anyone have a picture of this?\tQuelqu'un a-t-il une photo de ça ?\nDoes that guy look familiar to you?\tCe type vous dit-il quelque chose ?\nDoes that mean you'll have to stay?\tCela signifie-t-il que vous devrez rester ?\nDoes that mean you'll have to stay?\tCela signifie-t-il que tu devras rester ?\nDoes the story have a happy ending?\tL'histoire a-t-elle une fin heureuse ?\nDoes the story have a happy ending?\tL'histoire se termine-t-elle bien ?\nDoesn't anyone want to speak to me?\tPersonne ne veut-il me parler ?\nDoing homework is extremely boring.\tFaire ses devoirs est extrêmement ennuyeux.\nDon't be afraid of making mistakes.\tN'ayez pas peur de vous tromper.\nDon't be afraid of making mistakes.\tN'aie pas peur de te tromper.\nDon't be afraid of making mistakes.\tN'aie pas peur de faire des erreurs.\nDon't be scared of making mistakes.\tTu n'as pas à avoir peur de faire des erreurs.\nDon't be scared to meet new people.\tNe craignez pas de rencontrer des gens nouveaux !\nDon't be scared to meet new people.\tNe craignez pas de rencontrer de nouvelles gens !\nDon't be scared to meet new people.\tNe crains pas de rencontrer des gens nouveaux !\nDon't be scared to meet new people.\tNe soyez pas effrayé de rencontrer des gens nouveaux !\nDon't be scared to meet new people.\tNe soyez pas effrayée de rencontrer des gens nouveaux !\nDon't be scared to meet new people.\tNe soyez pas effrayés de rencontrer des gens nouveaux !\nDon't be scared to meet new people.\tNe soyez pas effrayées de rencontrer des gens nouveaux !\nDon't be scared to meet new people.\tNe sois pas effrayé de rencontrer des gens nouveaux !\nDon't be scared to meet new people.\tNe sois pas effrayée de rencontrer des gens nouveaux !\nDon't be so sensitive to criticism.\tNe soyez pas si sensible à la critique.\nDon't bother to answer this letter.\tNe t'embête pas à répondre à cette lettre.\nDon't confuse comets and asteroids.\tNe confondez pas les comètes et les astéroïdes.\nDon't do anything you might regret.\tNe fais rien que tu pourrais regretter.\nDon't do anything you might regret.\tNe faites rien que vous pourriez regretter.\nDon't eat for at least three hours.\tNe mangez pas pendant au moins trois heures.\nDon't forget that we have homework.\tN'oubliez pas que nous avons des devoirs à faire.\nDon't forget to pay the phone bill.\tN'oublie pas de payer la facture de téléphone.\nDon't forget to pay the phone bill.\tN'oubliez pas de payer la facture de téléphone.\nDon't forget to turn the light off.\tN'oublie pas d'éteindre la lumière.\nDon't forget to write the zip code.\tN'oubliez pas d'écrire le code postal !\nDon't forget to write the zip code.\tN'oublie pas d'écrire le code postal !\nDon't forget to write the zip code.\tN'oubliez pas de mentionner le code postal !\nDon't get angry. It won't help you.\tNe te fâche pas. Ça ne va pas t'aider.\nDon't interfere in others' affairs.\tNe vous mêlez pas des affaires des autres.\nDon't keep me in the dark about it.\tNe me laissez pas dans l'ignorance à ce sujet.\nDon't leave without saying goodbye.\tNe pars pas sans dire au revoir.\nDon't leave without saying goodbye.\tNe partez pas sans dire au revoir.\nDon't let the dog sleep in our bed.\tNe laisse pas le chien dormir dans notre lit !\nDon't let the dog sleep in our bed.\tNe laissez pas le chien dormir dans notre lit !\nDon't let the kid play with knives.\tNe laissez pas les enfants jouer avec des couteaux.\nDon't make me answer that question.\tNe me forcez pas à répondre à cette question !\nDon't make me answer that question.\tNe me force pas à répondre à cette question !\nDon't put the wet towel in the bag.\tNe mets pas la serviette mouillée dans le sac.\nDon't tell anyone we're doing this.\tNe dis à personne que nous faisons cela.\nDon't tell anyone we're doing this.\tNe dites à personne que nous faisons cela.\nDon't tell anyone what we're doing.\tNe dis à personne ce que nous sommes en train de faire.\nDon't tell me if you don't want to.\tNe me le dis pas si tu ne veux pas.\nDon't tell me if you don't want to.\tNe me le dites pas si vous ne voulez pas.\nDon't tell me you're tired already.\tNe me dites pas que vous êtes déjà fatigué !\nDon't tell me you're tired already.\tNe me dites pas que vous êtes déjà fatiguée !\nDon't tell me you're tired already.\tNe me dites pas que vous êtes déjà fatigués !\nDon't tell me you're tired already.\tNe me dites pas que vous êtes déjà fatiguées !\nDon't tell me you're tired already.\tNe me dis pas que tu es déjà fatigué !\nDon't tell me you're tired already.\tNe me dis pas que tu es déjà fatiguée !\nDon't try to pull a fast one on me!\tN'essaie pas de m'arnaquer !\nDon't try to pull a fast one on me!\tN'essayez pas de m'arnaquer !\nDon't use slang if you can help it.\tN'utilise pas d'argot, si possible.\nDon't use slang if you can help it.\tN'utilisez pas d'argot, si possible.\nDon't worry, I'm going to help you.\tNe te fais pas de souci, je vais t'aider.\nDon't worry, I'm going to help you.\tNe t'en fais pas, je vais t'aider.\nDon't worry, I'm going to help you.\tNe vous faites pas de souci, je vais vous aider.\nDon't worry, I'm going to help you.\tNe vous en faites pas, je vais vous aider.\nDon't worry. Everything'll be fine.\tNe vous en faites pas ! Tout ira bien.\nDon't worry. Everything'll be fine.\tNe t'en fais pas ! Tout ira bien.\nDon't worry. It's a common mistake.\tNe t'inquiète pas. C'est une erreur fréquente.\nDon't worry. Tom won't let us down.\tNe t'inquiète pas. Tom ne nous laissera pas tomber.\nDon't worry. Tom won't let us down.\tNe vous inquiètez pas. Tom ne nous laissera pas tomber.\nDon't you have an interesting face?\tN'avez-vous pas un visage intéressant ?\nDon't you have an interesting face?\tN'as-tu pas un visage intéressant ?\nDon't you think it's time you left?\tNe pensez-vous pas qu'il soit l'heure pour vous de partir ?\nDon't you think it's time you left?\tNe pensez-vous pas qu'il soit l'heure que vous partiez ?\nDon't you think it's time you left?\tNe penses-tu pas qu'il soit l'heure pour toi de partir ?\nDon't you think it's time you left?\tNe penses-tu pas qu'il soit l'heure que tu partes ?\nDon't you think that's a bit weird?\tNe penses-tu pas que c'est un peu étrange ?\nDon't you think that's a bit weird?\tNe penses-tu pas que ce soit un peu étrange ?\nDon't you think that's a bit weird?\tNe pensez-vous pas que ce soit un peu étrange ?\nDon't you think this is ridiculous?\tNe penses-tu pas que ceci est ridicule ?\nDon't you think this is ridiculous?\tNe pensez-vous pas que ceci est ridicule ?\nDon't you want a little excitement?\tNe veux-tu pas un peu d'effervescence ?\nDon't you want a little excitement?\tNe voulez-vous pas un peu d'effervescence ?\nDon't you want to be in love again?\tNe veux-tu pas être à nouveau amoureux ?\nDon't you want to be in love again?\tNe veux-tu pas être à nouveau amoureuse ?\nDon't you want to be in love again?\tNe voulez-vous pas être à nouveau amoureux ?\nDon't you want to be in love again?\tNe voulez-vous pas être à nouveau amoureuse ?\nDon't you want to be in love again?\tNe voulez-vous pas être à nouveau amoureuses ?\nDon't you want to know what I want?\tNe veux-tu pas savoir ce que je veux ?\nDon't you want to know what I want?\tNe voulez-vous pas savoir ce que je veux ?\nDon't you want to know where I was?\tNe veux-tu pas savoir où j'étais ?\nDon't you want to know where I was?\tNe voulez-vous pas savoir où j'étais ?\nDon't your neighbors ever complain?\tTes voisins ne se plaignent-ils jamais ?\nDon't your neighbors ever complain?\tTes voisines ne se plaignent-elles jamais ?\nDon't your neighbors ever complain?\tVos voisins ne se plaignent-ils jamais ?\nDon't your neighbors ever complain?\tVos voisines ne se plaignent-elles jamais ?\nDozens of letters are awaiting you.\tDes douzaines de lettres vous attendent.\nDrinking warm milk makes me sleepy.\tBoire du lait chaud me donne sommeil.\nDutch is closely related to German.\tLe néerlandais est très proche de l'allemand.\nEach of the three boys got a prize.\tChacun des trois garçons a reçu un prix.\nEach of the three boys got a prize.\tChacun des trois garçons a eu un prix.\nEach of the three boys won a prize.\tChacun des trois garçons a gagné un prix.\nEdison invented many useful things.\tEdison a inventé beaucoup de choses utiles.\nEither you or I will have to do it.\tL'un de nous deux devra le faire.\nEither you or your friend is wrong.\tSoit toi, soit ton ami est dans l'erreur.\nEven a loser can dress for success.\tMême un raté peut se vêtir pour la réussite.\nEvery man cannot be a good pianist.\tTout le monde ne peut pas être un bon pianiste.\nEvery spring the river floods here.\tChaque printemps, la rivière déborde ici.\nEverybody has their favorite drink.\tChacun a sa boisson préférée.\nEveryone always speaks well of Tom.\tTout le monde parle toujours de Tom en bien.\nEveryone says that he's a good man.\tTout le monde dit que c'est un homme bon.\nEverything comes to those who wait.\tTout vient à point à qui sait attendre.\nEverything goes wrong when I leave.\tQuand je m'absente, tout va mal.\nEverything's happening too quickly.\tTout se passe trop vite.\nExcuse me, I dropped my chopsticks.\tExcusez-moi, j'ai laissé tomber mes baguettes.\nFather always says, \"Do your best.\"\tPère dit toujours : \"Fais de ton mieux.\"\nFather can swim, but Mother cannot.\tMon père sait nager mais ma mère, non.\nFew people will admit their faults.\tPeu de gens admettent leurs erreurs.\nFew people will admit their faults.\tPeu de gens reconnaissent leurs fautes.\nFinal exams are two weeks from now.\tLes examens finaux sont dans deux semaines.\nFirst we'll eat, and then we'll go.\tD’abord nous allons manger, puis nous partirons.\nFood is still scarce in the region.\tLa nourriture est toujours insuffisante dans cette région.\nFor many, it was a dream come true.\tPour beaucoup, c'était la réalisation d'un rêve.\nFrankly speaking, I don't like her.\tÀ dire vrai, je ne l'aime pas.\nFrankly speaking, I don't like him.\tPour le dire franchement, je ne l'aime pas.\nFrankly speaking, I don't like you.\tPour parler franchement, je ne vous aime pas.\nFrankly speaking, I don't like you.\tPour parler franchement, je ne t'aime pas.\nGasoline is no longer a cheap fuel.\tL'essence n'est plus un carburant bon marché.\nGenerally, Japanese people are shy.\tGénéralement, les Japonais sont timides.\nGeorge Washington was born in 1732.\tGeorge Washington est né en 1732.\nGermans are said to be hardworking.\tOn dit que les Allemands sont très travailleurs.\nGermany was once allied with Italy.\tL'Allemagne fut autrefois l'alliée de l'Italie.\nGive me some time to think it over.\tDonnez-moi du temps pour y penser.\nGive me what you have in your hand.\tDonne-moi ce que tu as dans la main.\nGive me what you have in your hand.\tDonnez-moi ce que vous avez dans la main.\nGive the book to whomever wants it.\tDonne le livre à qui le veut.\nGo ahead. I'll meet you downstairs.\tPars devant ! Je te retrouverai en bas.\nGo ahead. I'll meet you downstairs.\tPars devant ! Je te rejoindrai en bas.\nGo ahead. I'll meet you downstairs.\tPartez devant ! Je vous retrouverai en bas.\nGo ahead. I'll meet you downstairs.\tPartez devant ! Je vous rejoindrai en bas.\nGood evening, ladies and gentlemen.\tBonsoir Mesdames et Messieurs !\nGood things come in small packages.\tLes bonnes choses viennent en petites quantités.\nGuys are supposed to respect girls.\tLes garçons sont supposés respecter les filles.\nHandling dynamite can be dangerous.\tManier de la dynamite peut être dangereux.\nHandling dynamite can be dangerous.\tManipuler de la dynamite peut être dangereux.\nHave you arrived at a decision yet?\tAvez-vous arrêté une décision finalement ?\nHave you finished reading the book?\tAs-tu fini de lire le livre ?\nHave you finished reading the book?\tAvez-vous fini de lire le livre ?\nHave you found your contact lenses?\tEst-ce que tu as trouvé tes lentilles de contact ?\nHave you gotten over your cold yet?\tT'es-tu déjà remis de ton rhume ?\nHave you gotten over your cold yet?\tT'es-tu déjà remise de ton rhume ?\nHave you gotten over your cold yet?\tVous êtes-vous déjà remis de votre rhume ?\nHave you gotten over your cold yet?\tVous êtes-vous déjà remise de votre rhume ?\nHave you known him for a long time?\tLe connaissez-vous depuis longtemps ?\nHave you learned the poem by heart?\tAs-tu appris le poème par cœur ?\nHave you taken a bath yet, Takashi?\tTakashi, as-tu déjà pris ton bain?\nHaving finished it, he went to bed.\tIl alla se coucher après avoir fini.\nHawaii is a popular tourist resort.\tHawaï est une destination touristique populaire.\nHe adapted himself to his new life.\tIl s'adapta à sa nouvelle vie.\nHe adapted himself to his new life.\tIl s'est adapté à sa nouvelle vie.\nHe added that he didn't believe it.\tIl dit aussi qu'il n'y croyait pas.\nHe and his friend sat on the bench.\tSon ami et lui s'assirent sur le banc.\nHe arched his eyebrows in surprise.\tIl arqua ses sourcils de surprise.\nHe arrived at the station at seven.\tIl est arrivé à la gare à sept heures.\nHe asked me if I liked mathematics.\tIl m'a demandé si j'aime les mathématiques.\nHe broke up the chair for firewood.\tIl brisa la chaise pour en faire du petit bois pour le feu.\nHe came in spite of the heavy snow.\tIl vint, en dépit de l'épaisse neige.\nHe can speak just a little English.\tIl sait parler juste un peu d'anglais.\nHe can't even butter his own bread.\tIl ne sait même pas beurrer son propre pain.\nHe cares about no one, but himself.\tIl ne se préoccupe de personne d'autre que lui-même.\nHe caught a boy stealing his watch.\tIl attrapa un garçon en train de lui voler sa montre.\nHe censured me for what I had done.\tIl a critiqué ce que j'ai fait.\nHe chipped the edge of the tea cup.\tIl ébrécha le bord de la tasse à thé.\nHe claims to have visions from God.\tIl prétend avoir des visions divines.\nHe comes home almost every weekend.\tIl revient chez lui presque tous les weekends.\nHe could read me like an open book.\tIl pourrait lire en moi comme à livre ouvert.\nHe could read me like an open book.\tIl savait lire en moi comme à livre ouvert.\nHe could read me like an open book.\tIl saurait lire en moi comme à livre ouvert.\nHe declined the offer and so did I.\tIl refusa l'offre et moi aussi.\nHe denied having said such a thing.\tIl nia avoir dit une telle chose.\nHe denied having said such a thing.\tIl a démenti avoir dit une telle chose.\nHe denies having broken the window.\tIl nie avoir cassé la fenêtre.\nHe described exactly what happened.\tIl décrivit exactement ce qui s'était produit.\nHe described exactly what happened.\tIl a décrit exactement ce qui s'était produit.\nHe did his best only to fail again.\tIl a fait de son mieux mais il a encore perdu.\nHe did not accept their invitation.\tIl n'accepta pas leur invitation.\nHe did the reverse of what I asked.\tIl a fait le contraire de ce que je lui ai demandé de faire.\nHe didn't come to school yesterday.\tIl n'est pas venu à l'école hier.\nHe didn't come to the last meeting.\tIl n'était pas venu à la dernière réunion.\nHe didn't say a word to me all day.\tIl ne m'a pas dit un mot de la journée.\nHe didn't say a word to me all day.\tIl ne me dit mot de la journée.\nHe died on the day his son arrived.\tIl est décédé le jour de l'arrivée de son fils.\nHe died without having made a will.\tIl est mort sans avoir fait de testament.\nHe distanced himself from politics.\tIl a pris ses distances avec la politique.\nHe doesn't know where he should be.\tIl ne sait pas où il devrait être.\nHe doesn't like traveling by plane.\tIl n'aime pas voyager en avion.\nHe doesn't live in my neighborhood.\tIl n'habite pas dans mon quartier.\nHe doesn't watch television at all.\tIl ne regarde pas du tout la télé.\nHe earns his living as a hotel boy.\tIl gagne sa vie comme garçon d'hôtel.\nHe erased his speech from the tape.\tIl effaça son discours de la bande.\nHe follows the rules to the letter.\tIl suit les règles à la lettre.\nHe found a nice apartment for Mary.\tIl a trouvé un bel appartement pour Mary.\nHe gathered up his things and left.\tIl rassembla ses affaires et s'en fut.\nHe gathered up his things and left.\tIl a rassemblé ses affaires et s'en est allé.\nHe gathered up his things and left.\tIl a rassemblé ses affaires et est parti.\nHe gave an angry shake of his head.\tIl secoua la tête avec colère.\nHe gave me clothes as well as food.\tIl me donna aussi bien de quoi me vêtir et de quoi manger.\nHe gets angry if he's contradicted.\tIl se met en colère lorsqu'on le contredit.\nHe got bored after fifteen minutes.\tIl s'est lassé après quinze minutes.\nHe grabbed the chance to get a job.\tIl a saisi l'opportunité d'obtenir un emploi.\nHe graduated from Tokyo University.\tIl est diplômé de l'Université de Tôkyô.\nHe grasped the rope with two hands.\tIl attrapa la corde des deux mains.\nHe has been in Japan for two years.\tIl est resté au Japon pendant deux ans.\nHe has been sick in bed for a week.\tIl a été cloué au lit depuis une semaine.\nHe has been sick since last Sunday.\tIl est malade depuis dimanche dernier.\nHe has been studying for two hours.\tIl a étudié pendant deux heures.\nHe has been waiting here some time.\tIl attend ici depuis un moment.\nHe has done it in just a few years.\tIl l'a réalisé en à peine quelques années.\nHe has great confidence in himself.\tIl a beaucoup de confiance en lui-même.\nHe has just graduated from college.\tIl est fraîchement diplômé de l'université.\nHe has made a significant decision.\tIl a pris une importante décision.\nHe has much more money than I have.\tIl a plus d'argent que moi.\nHe has much more money than I have.\tIl a bien plus d'argent que moi.\nHe has twice as many books as I do.\tIl a deux fois plus de livres que moi.\nHe has two daughters, both married.\tIl a deux filles, toutes deux mariées.\nHe held out his hand and I took it.\tIl tendit sa main et je la saisis.\nHe helped poor people all his life.\tIl a aidé les pauvres toute sa vie.\nHe hid himself behind a large rock.\tIl s'est caché derrière un grand rocher.\nHe hurried in order to get the bus.\tIl se hâta pour attraper le bus.\nHe hurt his left foot when he fell.\tIl s'est blessé au pied gauche lorsqu'il est tombé.\nHe hurt his left foot when he fell.\tIl s'est blessé le pied droit en tombant.\nHe hurt his left hand with a knife.\tIl s'est blessé la main gauche avec un couteau.\nHe instantly fell in love with her.\tIl tomba instantanément amoureux d'elle.\nHe instantly fell in love with her.\tIl est instantanément tombé amoureux d'elle.\nHe is a reporter for Time magazine.\tIl est reporter pour le Time.\nHe is able to speak five languages.\tIl peut parler cinq langues.\nHe is afraid to fly in an airplane.\tIl a peur de prendre l'avion.\nHe is always looking to the future.\tIl regarde toujours vers l'avenir.\nHe is captain of the football team.\tIl est capitaine de l'équipe de football.\nHe is content with the simple life.\tIl est content de sa vie simple.\nHe is engaged to my younger sister.\tIl est fiancé à ma jeune sœur.\nHe is immediately above me in rank.\tIl est d'un rang juste au-dessus du mien.\nHe is less strict than our teacher.\tIl est moins sévère que notre professeur.\nHe is likely to be late for school.\tIl est sûrement en retard pour l'école.\nHe is looked up to as their leader.\tIl est considéré comme leur chef.\nHe is madly in love with that girl.\tIl est follement amoureux de cette fille.\nHe is madly in love with that girl.\tIl est fou amoureux de cette fille.\nHe is not interested in art at all.\tIl ne porte aucun intérêt à l'art.\nHe is not old enough to live alone.\tIl n'a pas encore l'âge d'habiter tout seul.\nHe is not very good at mathematics.\tIl n'est pas très bon en mathématiques.\nHe is responsible for the accident.\tIl est responsable de cet accident.\nHe is responsible for the accident.\tIl est responsable de l'accident.\nHe is sometimes absent from school.\tIl est quelquefois absent de l'école.\nHe is supposed to be at home today.\tIl est censé être chez lui aujourd'hui.\nHe is terrible at speaking English.\tIl parle horriblement mal anglais.\nHe is the father of three children.\tIl est père de trois enfants.\nHe is tired of watching television.\tIl est fatigué de regarder la télévision.\nHe is very clever for a boy of ten.\tIl est très intelligent pour un garçon de dix ans.\nHe is wandering around in a trance.\tIl déambule aux alentours, en transe.\nHe kept me waiting for a long time.\tIl m'a fait attendre longtemps.\nHe kept us waiting for a long time.\tIl nous a fait attendre longtemps.\nHe knows many amusing magic tricks.\tIl connaît beaucoup de trucs amusants.\nHe knows nothing about electronics.\tIl ne connaît rien en électronique.\nHe left a large fortune to his son.\tIl a laissé une grosse fortune à son fils.\nHe let his books fall to the floor.\tIl laissa ses livres tomber à terre.\nHe let the dog loose in the garden.\tIl a lâché le chien dans le jardin.\nHe let the dog loose in the garden.\tIl laissa le chien en liberté dans le jardin.\nHe likes taking care of the garden.\tIl aime s'occuper du jardin.\nHe likes that video game very much.\tIl aime beaucoup ce jeu vidéo.\nHe listened closely to the speaker.\tIl écouta attentivement l'orateur.\nHe lives somewhere around the park.\tIl vit quelque part aux alentours du parc.\nHe looked at her from head to foot.\tIl la regarda de la tête aux pieds.\nHe looked at me for an explanation.\tIl me regarda pour une explication.\nHe looked young beside his brother.\tIl avait l'air jeune à côté de son frère.\nHe looks young considering his age.\tIl paraît jeune pour son âge.\nHe lost his temper and hit the boy.\tIl perdit patience et frappa le garçon.\nHe lured her away from her husband.\tIl l'a détournée de son mari.\nHe made a mistake and drank poison.\tIl s'est trompé et a bu du poison.\nHe maintained that he was innocent.\tIl maintenait qu'il était innocent.\nHe managed to pass the examination.\tIl a réussi à avoir son examen.\nHe moved out of his parents' place.\tIl a déménagé de chez ses parents.\nHe must have taken the wrong train.\tIl a dû prendre le mauvais train.\nHe narrowly escaped being run over.\tIl a vraiment failli se faire renverser.\nHe narrowly escaped being run over.\tIl manqua de justesse de se faire renverser.\nHe owns a very valuable wristwatch.\tIl possède une montre-bracelet de grande valeur.\nHe passed the entrance examination.\tIl a réussi l'examen d'entrée.\nHe passed the test as was expected.\tIl a réussi le test comme prévu.\nHe played a minor part in the play.\tIl jouait un rôle mineur dans la pièce.\nHe pointed to the tower over there.\tIl a pointé la tour, là-bas.\nHe promised to provide information.\tIl promit de fournir des informations.\nHe ran faster than his brother did.\tIl courait plus vite que son frère.\nHe ran to school, arriving in time.\tIl courut à l'école, arrivant à l'heure.\nHe ran to school, arriving in time.\tIl a couru à l'école et est arrivé à l'heure.\nHe read the poem with a loud voice.\tIl lut le poème à voix haute.\nHe remained abroad ever since then.\tIl est demeuré à l'étranger depuis lors.\nHe runs the business with his sons.\tIl fait tourner l'entreprise avec ses fils.\nHe runs the business with his sons.\tIl fait tourner la boîte avec ses fils.\nHe said it was out of the question.\tIl a dit que c'était hors de question.\nHe said to himself, \"I will do it.\"\tIl se dit : « Je vais le faire. »\nHe sat there with his legs crossed.\tIl était assis là, les jambes croisées.\nHe saw suicide as the only way out.\tIl voyait le suicide comme la seule issue.\nHe searched all day for the letter.\tIl chercha toute la journée après la lettre.\nHe searched all day for the letter.\tIl chercha la lettre toute la journée.\nHe seems to have finished his work.\tIl semble avoir terminé son travail.\nHe seems to have no sense of humor.\tIl semble n'avoir aucun sens de l'humour.\nHe seems to have no sense of humor.\tIl parait être dépourvu de tout sens de l'humour.\nHe seldom, if ever, goes to church.\tIl se rend rarement, sinon jamais à l'église.\nHe sent me some American magazines.\tIl m'a envoyé quelques magazines américains.\nHe sent money to help care for her.\tIl envoya de l'argent pour contribuer à prendre soin d'elle.\nHe shot at the bird, but missed it.\tIl tira sur l'oiseau mais le manqua.\nHe should have bought some pencils.\tIl aurait dû acheter quelques stylos.\nHe should have kept his mouth shut.\tIl aurait dû la fermer.\nHe sneaked around to the back door.\tIl se faufila jusqu'à la porte de derrière.\nHe sounded very tired on the phone.\tIl avait l'air très fatigué au téléphone.\nHe speaks English better than I do.\tIl parle mieux l'anglais que moi.\nHe stared at her hand for a moment.\tIl fixa sa main durant un moment.\nHe stood up and took a deep breath.\tIl se dressa et prit une longue inspiration.\nHe stood up and took a deep breath.\tIl s'est dressé et a pris une longue inspiration.\nHe stood with his back to the wall.\tIl se tenait le dos au mur.\nHe stuck his pencil behind his ear.\tIl plaça son crayon derrière l'oreille.\nHe stuck his pencil behind his ear.\tIl a placé son crayon derrière l'oreille.\nHe studies contemporary literature.\tIl étudie la littérature contemporaine.\nHe studies much harder than before.\tIl étudie plus qu'avant.\nHe suggested that we go for a swim.\tIl proposa que nous allions nager.\nHe talks as if he knows everything.\tIl parle comme s'il connaissait tout.\nHe taught me how to spell the word.\tIl m'a appris comment épeler ce mot.\nHe teaches in a girls' high school.\tIl enseigne dans un collège de filles.\nHe tends to get upset over nothing.\tIl a tendance à se fâcher pour rien.\nHe took over his father's business.\tIl a repris l'affaire de son père.\nHe took the wrong train by mistake.\tIl a pris le mauvais train par erreur.\nHe transferred his office to Osaka.\tIl a transféré ses bureaux à Osaka.\nHe traveled throughout the country.\tIl voyagea à travers le pays.\nHe traveled throughout the country.\tIl a voyagé à travers le pays.\nHe tried several times, but failed.\tIl essaya plusieurs fois mais ne réussit pas.\nHe uses a pencil with a fine point.\tIl utilise un crayon avec une pointe fine.\nHe wants to reach a wider audience.\tIl veut toucher un auditoire plus étendu.\nHe wants to reach a wider audience.\tIl veut toucher un auditoire plus large.\nHe warned us not to enter the room.\tIl nous avertit de ne pas pénétrer dans la pièce.\nHe warned us not to enter the room.\tIl nous a avertis de ne pas pénétrer dans la pièce.\nHe was absent because of the storm.\tIl était absent, en raison de la tempête.\nHe was always faithful to his wife.\tIl a toujours été fidèle à sa femme.\nHe was covered all over with paint.\tIl était recouvert de peinture.\nHe was dazed by a blow to the head.\tIl fut étourdi par un coup sur la tête.\nHe was educated by her grandfather.\tIl a été éduqué par son grand-père.\nHe was educated by his grandfather.\tIl a été éduqué par son grand-père.\nHe was found mysteriously murdered.\tIl fut trouvé mystérieusement assassiné.\nHe was found mysteriously murdered.\tOn le trouva mystérieusement assassiné.\nHe was found mysteriously murdered.\tOn l'a trouvé mystérieusement assassiné.\nHe was left all alone in the woods.\tIl fut laissé tout seul dans les bois.\nHe was looking for this very thing.\tIl cherchait justement cette chose-là.\nHe was named after his grandfather.\tIl fut prénommé d'après le prénom de son grand-père.\nHe was reading a book at that time.\tIl était alors en train de lire un livre.\nHe was sick, but he went to school.\tIl était malade, mais il se rendit à l'école.\nHe was sick, but he went to school.\tIl était malade, mais il s'est rendu à l'école.\nHe was sick, but he went to school.\tIl était malade, mais il alla à l'école.\nHe was sick, but he went to school.\tIl était malade, mais il est allé à l'école.\nHe was silly enough to believe her.\tIl a été suffisamment stupide pour la croire.\nHe was successful in several areas.\tIl avait du succès dans plusieurs domaines.\nHe was too tired to go any farther.\tIl était trop fatigué pour aller plus loin.\nHe was too tired to go any further.\tIl était trop fatigué pour poursuivre.\nHe was very good at playing tennis.\tIl était très bon au tennis.\nHe was walking in front of the car.\tIl déambulait devant la voiture.\nHe was watching television all day.\tIl regardait la télé toute la journée.\nHe was weak from the loss of blood.\tIl était affaibli par les pertes de sang.\nHe was weak from the loss of blood.\tLa perte de sang l'avait affaibli.\nHe went away without saying a word.\tIl partit sans mot dire.\nHe went away without saying a word.\tIl partit sans dire un mot.\nHe went away without saying a word.\tIl est parti sans dire un mot.\nHe went to Paris at the end of May.\tIl est allé à Paris fin mai.\nHe will get nowhere with his plans.\tIl n'ira nulle part avec ses plans.\nHe will live forever in our hearts.\tIl survivra à jamais dans nos cœurs.\nHe will never visit the town again.\tIl ne visitera plus jamais la ville.\nHe will not be able to do the work.\tIl n'est pas capable de faire le travail.\nHe works for an advertising agency.\tIl travaille pour une agence de publicité.\nHe's about the same age as you are.\tIl a environ votre âge.\nHe's about the same age as you are.\tIl a à peu près le même âge que toi.\nHe's about the same age as you are.\tIl a à peu près le même âge que vous.\nHe's better at the piano than I am.\tIl est meilleur que moi au piano.\nHe's nervous and easily frightened.\tIl est nerveux et facilement effrayé.\nHe's never been abroad in his life.\tIl n'a jamais été à l'étranger de toute sa vie.\nHe's not always at home on Sundays.\tIl n'est pas toujours chez lui le dimanche.\nHe's not good at remembering names.\tIl n'est pas doué pour retenir les noms.\nHe's the black sheep of the family.\tIl est le mouton noir de la famille.\nHe's the chairman of the committee.\tIl est le président du comité.\nHe's worried that he might be late.\tIl est préoccupé par la possibilité d'être en retard.\nHer condition got worse last night.\tSa santé s'est aggravée la nuit dernière.\nHer daughter can recite many poems.\tSa fille sait réciter de nombreux poèmes.\nHer fears gradually quietened down.\tSa peur s'apaisait progressivement.\nHer hobby was collecting old coins.\tSon passe-temps était de collectionner les pièces de monnaie anciennes.\nHer sister is not going to America.\tSa sœur ne va pas en Amérique.\nHer voice is pleasant to listen to.\tSa voix est agréable à écouter.\nHis achievements were acknowledged.\tSes résultats furent reconnus.\nHis brother passed away last month.\tSon frère est décédé le mois dernier.\nHis brother passed away last month.\tSon frère est mort le mois dernier.\nHis debt reached a hundred dollars.\tSa dette se montait à cent dollars.\nHis family did not have much money.\tSa famille ne disposait pas de beaucoup d'argent.\nHis hobby is collecting old stamps.\tSon passe-temps est la collection de vieux timbres.\nHis house is somewhere around here.\tSa maison est quelque part par ici.\nHis name was becoming widely known.\tSon nom devenait largement connu.\nHis parents expect too much of him.\tSes parents attendent trop de lui.\nHis room is twice as large as mine.\tSa chambre est deux fois plus grande que la mienne.\nHis sister can't talk to you today.\tSa sœur ne peut pas te parler aujourd'hui.\nHis sister is not going to America.\tSa sœur ne va pas en Amérique.\nHis voice is pleasant to listen to.\tSa voix est agréable à écouter.\nHis youngest son is five years old.\tSon plus jeune enfant a cinq ans.\nHistory is merely repeating itself.\tL'histoire ne fait que se répéter.\nHokkaido is to the north of Honshu.\tHokkaido est au nord de Honshu.\nHokkaido is to the north of Honshu.\tHokkaido est située au nord de Honshu.\nHollywood isn't what it used to be.\tHollywood n'est plus ce qu'il était.\nHow can I get to the zoo from here?\tComment puis-je aller au zoo à partir ici ?\nHow can you even ask that question?\tComment peux-tu même poser cette question ?\nHow can you even ask that question?\tComment pouvez-vous même poser cette question ?\nHow cold is it in Boston right now?\tIl fait froid à Boston là ?\nHow dare you speak like that to me?\tDe quel droit me parlez-vous sur ce ton ?\nHow dare you speak like that to me?\tComment oses-tu me parler ainsi ?\nHow dare you speak to me like that!\tComment oses-tu me parler ainsi !\nHow dare you speak to me like that!\tComment osez-vous me parler ainsi !\nHow dare you speak to me like that?\tComment oses-tu me parler comme ça ?\nHow dare you speak to me like that?\tComment oses-tu me parler sur ce ton ?\nHow dare you speak to me like that?\tComment osez-vous me parler sur ce ton ?\nHow did we get into this situation?\tComment nous sommes-nous fourrés dans cette situation ?\nHow did we get into this situation?\tComment nous sommes-nous fourrées dans cette situation ?\nHow did you come by all this money?\tComment es-tu venu en possession de tout cet argent ?\nHow did you come by all this money?\tComment êtes-vous venu en possession de tout cet argent ?\nHow did you come by all this money?\tComment êtes-vous venus en possession de tout cet argent ?\nHow did you come by all this money?\tComment êtes-vous venue en possession de tout cet argent ?\nHow did you come by all this money?\tComment êtes-vous venues en possession de tout cet argent ?\nHow did you come to know about her?\tComment as-tu appris son existence ?\nHow did you learn to dance so well?\tComment as-tu appris à si bien danser ?\nHow did you learn to dance so well?\tComment avez-vous appris à si bien danser ?\nHow did you make a living in Tokyo?\tComment as-tu gagné ta vie à Tokyo ?\nHow did you make a living in Tokyo?\tComment avez-vous gagné votre vie à Tokyo ?\nHow do you know so much about this?\tComment en savez-vous autant à ce sujet ?\nHow do you know so much about this?\tComment en sais-tu autant à ce sujet ?\nHow do you plan on paying for that?\tComment prévois-tu de payer ça ?\nHow do you plan on paying for that?\tComment prévoyez-vous de payer ça ?\nHow far is it from here to the sea?\tQuelle distance y a-t-il d'ici à la mer ?\nHow long did you stay at the party?\tCombien de temps es-tu resté à la soirée ?\nHow long did you stay at the party?\tCombien de temps es-tu resté à la fête ?\nHow long did you stay at the party?\tCombien de temps es-tu restée à la soirée ?\nHow long did you stay at the party?\tCombien de temps es-tu restée à la fête ?\nHow long did you stay at the party?\tCombien de temps êtes-vous resté à la fête ?\nHow long did you stay at the party?\tCombien de temps êtes-vous restée à la fête ?\nHow long did you stay at the party?\tCombien de temps êtes-vous restés à la fête ?\nHow long did you stay at the party?\tCombien de temps êtes-vous restées à la fête ?\nHow long did you stay at the party?\tCombien de temps êtes-vous resté à la soirée ?\nHow long did you stay at the party?\tCombien de temps êtes-vous restée à la soirée ?\nHow long did you stay at the party?\tCombien de temps êtes-vous restés à la soirée ?\nHow long did you stay at the party?\tCombien de temps êtes-vous restées à la soirée ?\nHow long have you known about this?\tDepuis combien de temps le savez-vous ?\nHow long have you known about this?\tDepuis combien de temps le sais-tu ?\nHow long is the Golden Gate Bridge?\tQuelle longueur mesure le pont de Golden Gate ?\nHow long will it take to get there?\tCombien de temps cela prendra-t-il pour arriver là-bas ?\nHow many English words do you know?\tCombien de mots anglais connais-tu ?\nHow many English words do you know?\tCombien de mots anglais connaissez-vous ?\nHow many close friends do you have?\tCombien d'amis proches avez-vous ?\nHow many hours a day does Tom swim?\tCombien d'heures par jour Tom nage-t-il ?\nHow many men named Tom do you know?\tCombien de personnes appelées Tom connaissez-vous ?\nHow many men named Tom do you know?\tCombien de personnes appelées Tom connais-tu ?\nHow many of your students are here?\tCombien de vos élèves sont ici ?\nHow many of your students are here?\tCombien de vos élèves se trouvent ici ?\nHow many of your students are here?\tCombien de vos élèves se trouvent-ils ici ?\nHow many of your students are here?\tCombien de vos élèves se trouvent-elles ici ?\nHow many pairs of shoes do you own?\tCombien de paires de chaussures avez-vous ?\nHow many people were at your party?\tCombien de gens étaient à ta fête ?\nHow many people were at your party?\tCombien de gens étaient à votre fête ?\nHow many sandwiches are there left?\tCombien reste-t-il encore de sandwichs ?\nHow many sandwiches are there left?\tCombien reste-t-il encore de sandwiches ?\nHow many times do I have to say it?\tCombien de fois dois-je le dire ?\nHow many times have you been there?\tCombien de fois y as-tu été ?\nHow many times have you been there?\tCombien de fois y avez-vous été ?\nHow many times have you lied to me?\tCombien de fois m'as-tu menti ?\nHow many times have you lied to me?\tCombien de fois m'avez-vous menti ?\nHow many ways are there to do that?\tCombien de façons y a-t-il de faire ça ?\nHow many ways are there to do that?\tCombien de façons y a-t-il de faire cela ?\nHow much did you pay for the dress?\tCombien as-tu payé pour la robe ?\nHow much did you pay for the dress?\tCombien avez-vous payé pour la robe ?\nHow much is the most expensive car?\tCombien coûte la voiture la plus chère ?\nHow much thinner do you want to be?\tDe combien veux-tu être plus mince ?\nHow much thinner do you want to be?\tDe combien voulez-vous être plus mince ?\nHow much thinner do you want to be?\tDe combien voulez-vous être plus minces ?\nHow would you like it if I hit you?\tAimeriez-vous que je vous frappe ?\nHow would you like it if I hit you?\tAimerais-tu que je te frappe ?\nHow would you like your steak done?\tQuelle cuisson voudrais-tu pour ton bifteck ?\nHurry up, and you'll catch the bus.\tSi tu te dépêches tu attraperas le bus.\nHurry up, and you'll catch the bus.\tDépêche-toi et tu attraperas l'autobus.\nHurry up, or you will miss the bus.\tDépêche-toi, ou tu vas rater le bus.\nHurry up, or you'll miss the train.\tDépêchez-vous, ou vous manquerez le train.\nI advised him to come back at once.\tJe lui ai conseillé de revenir immédiatement.\nI advised him to come back at once.\tJe lui ai conseillé de revenir sans tarder.\nI advised him to keep that promise.\tJe lui ai conseillé de garder le secret.\nI almost never listen to the radio.\tJe n'écoute presque jamais la radio.\nI always catch colds in the winter.\tJ'attrape toujours froid en hiver.\nI always catch colds in the winter.\tJe contracte toujours des rhumes en hiver.\nI always drive at a moderate speed.\tJe conduis toujours à une vitesse modérée.\nI am a student at Hyogo University.\tJe suis étudiant à l'Université de Hyogo.\nI am able to swim across the river.\tJe suis en mesure de traverser la rivière à la nage.\nI am about as big as my father now.\tJe suis presque aussi grand que mon père maintenant.\nI am accustomed to staying up late.\tJe suis habitué à veiller tard.\nI am afraid he will make a mistake.\tJe crains qu'il commette une erreur.\nI am afraid he will make a mistake.\tJ'ai peur qu'il commette une erreur.\nI am afraid he will make a mistake.\tJe crains qu'il ne commette une erreur.\nI am afraid he will make a mistake.\tJ'ai peur qu'il ne commette une erreur.\nI am afraid that he might get hurt.\tJ'ai peur qu'il ne se blesse.\nI am afraid that you will get lost.\tJe crains que vous vous égariez.\nI am afraid that you will get lost.\tJe crains que vous vous perdiez.\nI am afraid that you will get lost.\tJe crains que tu te perdes.\nI am afraid that you will get lost.\tJe crains que tu t'égares.\nI am afraid to jump over the ditch.\tJ'ai peur de sauter par-dessus le fossé.\nI am convinced that he is innocent.\tJe suis convaincu de son innocence.\nI am convinced that he is innocent.\tJe suis convaincu qu'il est innocent.\nI am determined to give up smoking.\tJe suis résolu à arrêter de fumer.\nI am doubtful whether he will come.\tJe doute qu'il vienne.\nI am going to leave my present job.\tJe vais quitter mon emploi actuel.\nI am going to play soccer tomorrow.\tJe prévois de jouer au football demain.\nI am going to play soccer tomorrow.\tDemain je jouerai au football.\nI am grateful to you for your help.\tJe vous suis reconnaissant pour votre aide.\nI am interested in taking pictures.\tPrendre des photos m'intéresse.\nI am looking forward to seeing you.\tJe suis impatient de vous rencontrer.\nI am lost. Can you help me, please?\tJe suis perdu, pouvez-vous m'aider, s'il vous plait ?\nI am married and have two children.\tJe suis mariée et j'ai deux enfants.\nI am not always at home on Sundays.\tJe ne suis pas toujours à la maison le dimanche.\nI am not rich, nor do I wish to be.\tJe ne suis pas riche, et ne souhaite pas l'être.\nI am on good terms with my brother.\tJe suis en bons termes avec mon frère.\nI am repairing the washing machine.\tJe répare le lave-linge.\nI am so busy that I can't help you.\tJe suis tellement occupé que je ne peux pas vous aider.\nI am so busy that I can't help you.\tJe suis tellement occupé que je ne peux pas t'aider.\nI am staying for another few weeks.\tJe reste pour quelques autres semaines.\nI am sure that he is an honest man.\tJe suis sûr que c'est un homme honnête.\nI am taking a holiday at the beach.\tJe prends des vacances à la plage.\nI am thinking of resigning at once.\tJe songe à démissionner immédiatement.\nI am unable to agree on that point.\tJe ne peux pas être d'accord sur ce point.\nI am very tired from the hard work.\tJe suis très fatigué par le dur labeur.\nI am very tired from the hard work.\tJe suis très fatiguée par le dur labeur.\nI am waiting for the store to open.\tJ'attends que le magasin ouvre.\nI am yawning because I feel sleepy.\tJe bâille parce que j'ai sommeil.\nI asked my teacher what to do next.\tJ'ai demandé à mon professeur quoi faire ensuite.\nI asked my teacher what to do next.\tJ'ai demandé à mon instituteur quoi faire ensuite.\nI asked my teacher what to do next.\tJ'ai demandé à mon institutrice quoi faire ensuite.\nI asked my teacher what to do next.\tJe demandai à mon professeur quoi faire ensuite.\nI ate nothing but bread and butter.\tJe n'ai mangé que du pain et du beurre.\nI ate nothing but bread and butter.\tJe ne mangeai rien d'autre que du pain beurre.\nI ate nothing but bread and butter.\tJe n'ai rien mangé d'autre que du pain beurre.\nI bought a new computer last month.\tJ'ai acheté un nouvel ordinateur le mois dernier.\nI bought that record in this store.\tJ'ai acheté ce disque-là dans ce magasin.\nI bought the car at a 10% discount.\tJ'ai acheté la voiture avec une remise de dix pour cent.\nI bought two tickets for a concert.\tJ'ai acheté deux billets pour le concert.\nI brought that back from Australia.\tJ'ai ramené cela d'Australie.\nI buy loads of stuff at that store.\tJ'achète des tas de trucs dans ce magasin.\nI can hardly make out what he says.\tJe peux à peine comprendre ce qu'il dit.\nI can look at it when you're ready.\tJe peux y regarder lorsque vous serez prêt.\nI can look at it when you're ready.\tJe peux y regarder lorsque vous serez prêts.\nI can look at it when you're ready.\tJe peux y regarder lorsque vous serez prête.\nI can look at it when you're ready.\tJe peux y regarder lorsque vous serez prêtes.\nI can look at it when you're ready.\tJe peux y regarder lorsque tu seras prêt.\nI can look at it when you're ready.\tJe peux y regarder lorsque tu seras prête.\nI can make the time to talk to you.\tJe peux prendre le temps de m'entretenir avec vous.\nI can not bear this noise any more.\tJe ne peux plus supporter ce bruit.\nI can not bear this noise any more.\tJe ne peux pas supporter ce bruit plus longtemps.\nI can run the fastest of the three.\tJe peux courir plus rapidement que les trois autres.\nI can seldom find time for reading.\tJ'ai rarement du temps pour lire.\nI can walk to school in 10 minutes.\tJe peux aller à l'école à pied en 10 minutes.\nI can't afford a new car this year.\tCette année, je ne peux pas m'acheter une nouvelle voiture.\nI can't believe I just shot myself.\tJe n'arrive pas à croire que je vienne de me tirer dessus.\nI can't believe I just shot myself.\tJe n'arrive pas à croire que je vienne de me faire une injection.\nI can't believe it's raining again.\tJe n'arrive pas à croire qu'il pleuve à nouveau.\nI can't believe we finally made it.\tJe n'arrive pas à croire que nous y avons finalement réussi.\nI can't believe you eat that stuff.\tJe n'arrive pas à croire que tu manges ce truc.\nI can't believe you eat that stuff.\tJe n'arrive pas à croire que vous mangiez ce truc.\nI can't believe you just said that.\tJe n'arrive pas à croire que tu viennes de dire cela.\nI can't believe you just said that.\tJe n'arrive pas à croire que vous veniez de dire cela.\nI can't believe you'd be so stupid.\tJe n'arrive pas à croire que vous seriez assez stupide.\nI can't believe you'd be so stupid.\tJe n'arrive pas à croire que tu serais assez stupide.\nI can't believe you're really here.\tJe n'arrive pas à croire que vous soyez vraiment là.\nI can't believe you're really here.\tJe n'arrive pas à croire que tu sois vraiment là.\nI can't blame you. It was my fault.\tJe ne peux pas t'accabler. Ça a été ma faute.\nI can't decide if I'm happy or sad.\tJe ne peux pas décider si je suis heureux ou triste.\nI can't do without this dictionary.\tJe ne peux pas me passer de ce dictionnaire.\nI can't drink coffee without sugar.\tJe ne peux pas boire de café sans sucre.\nI can't find time to read the book.\tJe n'arrive pas à trouver le temps de lire le livre.\nI can't help you because I am busy.\tJe ne peux pas vous aider car je suis occupé.\nI can't keep looking the other way.\tje ne peux pas continuer à détourner le regard.\nI can't play tennis as well as Tom.\tJe ne joue pas aussi bien que Tom au tennis.\nI can't put up with all that noise.\tJe ne peux pas supporter tout ce bruit.\nI can't put up with all that noise.\tJe n'arrive pas à supporter tout ce bruit.\nI can't put up with her any longer.\tJe ne peux la supporter plus longtemps.\nI can't put up with her any longer.\tJe ne peux pas la supporter plus longtemps.\nI can't put up with him any longer.\tJe ne peux le supporter plus longtemps.\nI can't put up with him any longer.\tJe ne peux pas le supporter plus longtemps.\nI can't sleep because of the noise.\tJe ne peux pas dormir à cause du bruit.\nI can't stand his behavior anymore.\tJe ne peux supporter son comportement plus longtemps.\nI can't tell you how thrilled I am.\tTu ne peux pas savoir comme je suis ému.\nI can't think of his name just now.\tJe ne peux pas me rappeler son nom à l'instant.\nI carried the heavy bag on my back.\tJe portai le lourd sac sur le dos.\nI caught sight of her in the crowd.\tJe l'ai aperçue au milieu de la foule.\nI could sure use that reward money.\tJe pourrais certainement faire usage de cette récompense.\nI couldn't figure out how to do it.\tJe ne suis pas parvenu à comprendre comment le faire.\nI couldn't figure out how to do it.\tJe ne suis pas parvenue à comprendre comment le faire.\nI couldn't figure out how to do it.\tJe ne parviendrais à comprendre comment le faire.\nI couldn't sleep at all last night.\tJe n'ai pas pu dormir du tout la nuit dernière.\nI couldn't think of anything worse.\tJe ne pourrais penser à rien de pire.\nI did it without consulting anyone.\tJe l'ai fait sans consulter qui que ce soit.\nI did not expect it to be that big.\tJe ne m'attendais pas à ce que ce soit aussi grand.\nI did not expect it to be that big.\tJe ne m'attendais pas à ce que ce soit aussi gros.\nI did so for the sake of my health.\tJe l'ai fait pour préserver ma santé.\nI did so for the sake of my health.\tJe l'ai fait pour le bien de ma santé.\nI didn't come here for that reason.\tJe ne suis pas venu ici pour cette raison.\nI didn't come here for that reason.\tJe ne suis pas venue ici pour cette raison.\nI didn't get much sleep last night.\tJe n'ai pas beaucoup dormi, cette nuit.\nI didn't know that she had a child.\tJ'ignorais qu'elle avait un enfant.\nI didn't know that you could drive.\tJ'ignorais que vous saviez conduire.\nI didn't know that you could drive.\tJ'ignorais que tu savais conduire.\nI didn't know where to get the bus.\tJe ne savais pas où prendre le bus.\nI didn't know you had a girlfriend.\tJ'ignorais que tu avais une petite amie.\nI didn't know you had a girlfriend.\tJ'ignorais que tu avais une petite copine.\nI didn't know you had a girlfriend.\tJ'ignorais que tu avais une nana.\nI didn't know you were from Boston.\tJe ne savais pas que tu étais de Boston.\nI didn't meet him again after that.\tJe ne l'ai pas rencontré de nouveau après cela.\nI didn't notice the light turn red.\tJe n'ai pas remarqué que le feu passait au rouge.\nI didn't pretend to be your friend.\tJe n'ai pas prétendu être ton ami.\nI didn't pretend to be your friend.\tJe n'ai pas prétendu être votre ami.\nI didn't pretend to be your friend.\tJe n'ai pas prétendu être ton amie.\nI didn't pretend to be your friend.\tJe n'ai pas prétendu être votre amie.\nI didn't realize you were Canadian.\tJe n'ai pas pris conscience que vous étiez canadien.\nI didn't realize you were Canadian.\tJe n'ai pas pris conscience que vous étiez canadienne.\nI didn't think of the consequences.\tJe n'ai pas pensé aux conséquences.\nI didn't want to believe it myself.\tJe ne voulais pas y croire moi-même.\nI didn't want to wait for anything.\tJe ne voulais pas attendre après quoi que ce soit.\nI didn't want to wait for anything.\tJe ne voulais pas attendre après quoi que ce fut.\nI didn't want you involved in this.\tJe ne voulais pas que tu sois mêlé à ça.\nI didn't want you involved in this.\tJe ne voulais pas que tu sois mêlée à ça.\nI didn't want you involved in this.\tJe ne voulais pas que vous soyez mêlé à ça.\nI didn't want you involved in this.\tJe ne voulais pas que vous soyez mêlée à ça.\nI didn't want you involved in this.\tJe ne voulais pas que vous soyez mêlés à ça.\nI didn't want you involved in this.\tJe ne voulais pas que vous soyez mêlées à ça.\nI didn't want you to miss your bus.\tJe ne voulais pas que tu manques ton bus.\nI didn't want you to miss your bus.\tJe ne voulais pas que vous manquiez votre bus.\nI didn't want you to miss your bus.\tJe ne voulais pas que tu manques ton car.\nI didn't want you to miss your bus.\tJe ne voulais pas que vous manquiez votre car.\nI do not think that she is at home.\tJe ne pense pas qu'elle se trouve chez elle.\nI don't always follow instructions.\tJe ne suis pas toujours les instructions.\nI don't believe I caught your name.\tJe ne crois pas avoir retenu votre nom.\nI don't believe I caught your name.\tJe ne crois pas avoir retenu ton nom.\nI don't believe it was an accident.\tJe ne crois pas qu'il s'agissait d'un accident.\nI don't believe it was an accident.\tJe ne crois pas que c'était un accident.\nI don't believe you just said that.\tJe n'arrive pas à croire que tu viennes de dire ça.\nI don't believe you just said that.\tJe n'arrive pas à croire que vous veniez de dire ça.\nI don't care for flowers very much.\tJe n'aime pas beaucoup les fleurs.\nI don't care who Tom is talking to.\tJe me fiche de savoir avec qui Tom est en train de parler.\nI don't care who Tom is talking to.\tÇa m'est égal, avec qui Tom est en train de parler.\nI don't care who you're going with.\tJe me fiche de savoir avec qui tu vas.\nI don't care who you're going with.\tJe me fiche de savoir avec qui vous allez.\nI don't dare tell him such a thing.\tJe n'ose pas lui dire une telle chose.\nI don't doubt that he will help me.\tJe ne doute pas qu'il veuille m'aider.\nI don't ever want to see you again.\tJe ne veux plus jamais te revoir.\nI don't ever want to see you again.\tJe ne veux plus jamais vous revoir.\nI don't ever want to talk about it.\tJe ne veux jamais en parler.\nI don't expect you to be my friend.\tJe ne m'attends pas à ce que tu sois mon ami.\nI don't expect you to be my friend.\tJe ne m'attends pas à ce que tu sois mon amie.\nI don't expect you to be my friend.\tJe ne m'attends pas à ce que vous soyez mon ami.\nI don't expect you to be my friend.\tJe ne m'attends pas à ce que vous soyez mon amie.\nI don't feed my dog in the morning.\tJe ne nourris pas mon chien le matin.\nI don't feel like sleeping anymore.\tJe n'ai plus envie de dormir.\nI don't have an opinion either way.\tJe n'ai pas d'opinion, d'un côté comme de l'autre.\nI don't have any money on me today.\tJe n'ai pas d'argent sur moi, aujourd'hui.\nI don't have any objection to that.\tJe n'ai aucune objection à ça.\nI don't have any objection to that.\tJe n'ai aucune objection à cela.\nI don't have the patience for this.\tJe n'ai pas la patience pour ça.\nI don't have time to do that today.\tJe n'ai pas le temps de faire ça aujourd'hui.\nI don't know anything about racing.\tJe ne connais rien aux courses.\nI don't know how I've offended you.\tJ'ignore comment je t'ai offensé.\nI don't know how I've offended you.\tJ'ignore comment je t'ai offensée.\nI don't know how long this'll take.\tJe ne sais pas combien de temps ça prendra.\nI don't know how long this'll take.\tJ'ignore combien de temps ça prendra.\nI don't know how much time we have.\tJe ne sais pas de combien de temps nous disposons.\nI don't know how much time we have.\tJ'ignore de combien de temps nous disposons.\nI don't know how to deal with this.\tJe ne sais pas comment gérer ça.\nI don't know how to make you happy.\tJ'ignore comment vous rendre heureuses.\nI don't know how to make you happy.\tJ'ignore comment vous rendre heureux.\nI don't know how to make you happy.\tJ'ignore comment vous rendre heureuse.\nI don't know how to make you happy.\tJ'ignore comment te rendre heureuse.\nI don't know how to make you happy.\tJ'ignore comment te rendre heureux.\nI don't know how to spell the word.\tJe ne sais pas comment épeler ce mot.\nI don't know if I can believe that.\tJe ne sais pas si je suis capable de croire ça.\nI don't know if I have enough time.\tJ'ignore si je dispose de suffisamment de temps.\nI don't know if I have enough time.\tJe ne sais pas si je dispose de suffisamment de temps.\nI don't know if I'm ready for this.\tJe ne sais pas si je suis prêt à ça.\nI don't know if I'm ready for this.\tJe ne sais pas si je suis prête à ça.\nI don't know if I'm ready for this.\tJe ne sais pas si j'y suis prêt.\nI don't know if I'm ready for this.\tJe ne sais pas si j'y suis prête.\nI don't know if he locked the door.\tJe ne sais pas s'il a fermé la porte à clé.\nI don't know if it's what he wants.\tJ'ignore si c'est ce qu'il veut.\nI don't know if that's a good idea.\tJ'ignore si c'est une bonne idée.\nI don't know if that's a good idea.\tJe ne sais si c'est une bonne idée.\nI don't know if that's a good idea.\tJe ne sais pas si c'est une bonne idée.\nI don't know if that's wise or not.\tJ'ignore si c'est sage ou pas.\nI don't know if that's wise or not.\tJe ne sais pas si c'est sage ou non.\nI don't know if we want to do that.\tJ'ignore si nous voulons faire ça.\nI don't know if we want to do that.\tJ'ignore si nous voulons le faire.\nI don't know very many people here.\tJe ne connais pas grand monde ici.\nI don't know what I can do to help.\tJe ne sais pas ce que je peux faire pour aider.\nI don't know what I want right now.\tJ'ignore ce que je veux pour le moment.\nI don't know what I want to do yet.\tJe ne sais pas encore ce que je veux faire.\nI don't know what Tom said to Mary.\tJe ne sais pas ce que Tom a dit à Mary.\nI don't know what else to tell you.\tJe ne sais pas quoi vous dire d'autre.\nI don't know what else to tell you.\tJe ne sais pas quoi te dire d'autre.\nI don't know what plan he will try.\tJe ne sais pas quel plan il essaiera.\nI don't know what that's all about.\tJ'ignore de quoi tout ceci retourne.\nI don't know what you want to hear.\tJ'ignore ce que tu veux entendre.\nI don't know what you want to hear.\tJ'ignore ce que vous voulez entendre.\nI don't know where the bus stop is.\tJ'ignore où se trouve l'arrêt de bus.\nI don't know where to wait for her.\tJe ne sais pas où l'attendre.\nI don't know which of you is older.\tJe ne sais lequel d'entre vous est le plus âgé.\nI don't know which of you is older.\tJ'ignore lequel d'entre vous est le plus âgé.\nI don't know which of you is older.\tJe ne sais laquelle d'entre vous est la plus âgée.\nI don't know which of you is older.\tJ'ignore laquelle d'entre vous est la plus âgée.\nI don't know why I bother with you.\tJ'ignore pourquoi je me tracasse pour toi.\nI don't know why I bother with you.\tJ'ignore pourquoi je prends de la peine pour toi.\nI don't know why I bother with you.\tJ'ignore pourquoi je me tracasse pour vous.\nI don't know why I bother with you.\tJe ne sais pas pourquoi je me tracasse pour toi.\nI don't know why I bother with you.\tJe ne sais pas pourquoi je me tracasse pour vous.\nI don't know why I have to do this.\tJe ne sais pas pourquoi je dois faire ceci.\nI don't know why I keep doing that.\tJ'ignore pourquoi je continue à faire ça.\nI don't know why Tom is whispering.\tJe ne sais pas pourquoi Tom chuchote.\nI don't know yet what I want to do.\tJe ne sais pas encore ce que je veux faire.\nI don't like any of these pictures.\tJe n'aime aucune de ces photos.\nI don't like any of these pictures.\tJe n'aime aucune de ces images.\nI don't like being told what to do.\tJe n'aime pas qu'on me dise quoi faire.\nI don't like living in the country.\tJe n'aime pas vivre à la campagne.\nI don't like novels without heroes.\tJe n'aime pas les romans sans héros.\nI don't like studying in this heat.\tJe n'aime pas étudier par cette chaleur.\nI don't like the house he lives in.\tJe n'aime pas la maison dans laquelle il demeure.\nI don't like the taste of tomatoes.\tJe n'aime pas le goût des tomates.\nI don't like the way you're acting.\tJe n'aime pas ta façon de jouer.\nI don't like the way you're acting.\tJe n'aime pas votre façon de jouer.\nI don't like you when you're angry.\tJe ne vous aime pas quand vous êtes en colère.\nI don't need that kind of pressure.\tJe n'ai pas besoin de plus de pression.\nI don't need to be lectured by you.\tJe n'ai pas besoin de me faire sermonner par toi.\nI don't need to be lectured by you.\tJe n'ai pas besoin de me faire sermonner par vous.\nI don't often think about the past.\tJe ne pense pas souvent au passé.\nI don't particularly want to do it.\tJe ne veux pas particulièrement le faire.\nI don't quite believe what he says.\tJe ne crois pas tout à fait à ce qu'il dit.\nI don't quite know how it happened.\tJe ne sais pas exactement comment ça s'est produit.\nI don't really care what you think.\tJe me fiche un peu de ce que vous pensez.\nI don't really care what you think.\tJe me fiche un peu de ce que tu penses.\nI don't remember that conversation.\tJe ne me rappelle pas cette conversation.\nI don't remember that conversation.\tJe ne me souviens pas de cette conversation.\nI don't remember what it was about.\tJe ne me rappelle pas de quoi il était question.\nI don't remember what it was about.\tJe ne me rappelle pas de quoi il retournait.\nI don't remember, but I wish I did.\tJe ne me le rappelle pas mais j'aimerais le faire.\nI don't remember, but I wish I did.\tJe ne m'en souviens pas mais j'aimerais le faire.\nI don't see what the fuss is about.\tJe ne vois pas la raison de faire toutes ces histoires.\nI don't see what's wrong with that.\tJe ne vois pas ce qu'il y a de mal à ça.\nI don't think I can wait that long.\tJe ne pense pas que je puisse attendre aussi longtemps.\nI don't think I can wait that long.\tJe ne pense pas pouvoir attendre aussi longtemps.\nI don't think I could ever do that.\tJe ne pense pas que je puisse jamais faire cela.\nI don't think I could ever do that.\tJe ne pense pas pouvoir jamais faire cela.\nI don't think it's such a bad idea.\tJe ne pense pas que ce soit une si mauvaise idée.\nI don't think that'll be necessary.\tJe ne pense pas que ce sera nécessaire.\nI don't think that'll be necessary.\tJe ne pense pas qu'il le faudra.\nI don't think we can afford it now.\tJe crois pas que nous ne pouvons pas nous le permettre maintenant.\nI don't think you have much choice.\tJe ne pense pas que tu aies vraiment le choix.\nI don't think you have much choice.\tJe ne pense pas que vous ayez vraiment le choix.\nI don't think you're schizophrenic.\tJe ne pense pas que vous soyez schizophrène.\nI don't think you're schizophrenic.\tJe ne pense pas que tu sois schizophrène.\nI don't understand what that means.\tJe ne comprend pas ce que cela signifie.\nI don't understand why Tom is here.\tJe ne comprends pas pourquoi Tom est ici.\nI don't understand why it happened.\tJe ne comprends pas pourquoi c'est survenu.\nI don't understand why it happened.\tJe ne comprends pas pourquoi c'est arrivé.\nI don't understand why it happened.\tJe ne comprends pas pourquoi ça a eu lieu.\nI don't understand why you want it.\tJe ne comprends pas pourquoi tu le veux.\nI don't understand why you want it.\tJe ne comprends pas pourquoi tu la veux.\nI don't understand why you want it.\tJe ne comprends pas pourquoi vous le voulez.\nI don't understand why you want it.\tJe ne comprends pas pourquoi vous la voulez.\nI don't want to be a burden to you.\tJe ne veux pas être un poids pour toi.\nI don't want to be a burden to you.\tJe ne veux pas être un poids pour vous.\nI don't want to be told what to do.\tJe ne veux pas qu'on me dise quoi faire.\nI don't want to be treated special.\tJe ne veux pas de traitement spécial.\nI don't want to be treated special.\tJe ne veux pas de traitement particulier.\nI don't want to discuss it anymore.\tJe ne veux plus en discuter.\nI don't want to do your dirty work.\tJe ne veux pas exécuter tes basses œuvres.\nI don't want to get my hands dirty.\tJe ne veux pas me salir les mains.\nI don't want to get you in trouble.\tJe ne veux pas t'attirer d'ennuis.\nI don't want to get you in trouble.\tJe ne veux pas vous attirer d'ennuis.\nI don't want to hear your theories.\tJe ne veux pas entendre vos théories.\nI don't want to hear your theories.\tJe ne veux pas entendre tes théories.\nI don't want to live by your rules.\tJe ne veux pas vivre selon tes règles.\nI don't want to live by your rules.\tJe ne veux pas vivre selon vos règles.\nI don't want to see you here again.\tJe ne veux pas te revoir ici.\nI don't want to see you here again.\tJe ne veux pas vous revoir ici.\nI don't want to take care of a dog.\tJe ne veux pas prendre soin d'un chien.\nI don't want to tell my girlfriend.\tJe ne veux pas le dire à ma copine.\nI don't want you to think I'm nuts.\tJe ne veux pas que vous pensiez que je suis dingue.\nI don't want you to think I'm nuts.\tJe ne veux pas que tu penses que je suis dingue.\nI don't want you to worry about me.\tJe ne veux pas que tu te fasses du souci à mon sujet.\nI don't want you to worry about me.\tJe ne veux pas que vous vous fassiez du souci à mon sujet.\nI don't want you touching my stuff.\tJe ne veux pas que tu touches à mes affaires.\nI don't want you touching my stuff.\tJe ne veux pas que vous touchiez à mes affaires.\nI don't want you touching my stuff.\tJe ne veux pas que tu touches à mes trucs.\nI don't want you touching my stuff.\tJe ne veux pas que vous touchiez à mes trucs.\nI enjoy the time we spend together.\tJ'apprécie le temps que nous passons ensemble.\nI exercise for two hours every day.\tJe m'entraîne deux heures par jour.\nI expect Tom won't want to do that.\tJ'imagine que Tom ne voudra pas faire ça.\nI expect to take a vacation in May.\tJe compte prendre des vacances en mai.\nI feel bad that I can't come today.\tJe me sens mal de ne pas pouvoir venir aujourd'hui.\nI feel better today than yesterday.\tJe me sens mieux aujourd'hui qu'hier.\nI feel it's a tad risky to do that.\tJ'ai le sentiment que c'est un peu risqué de faire ça.\nI feel like I've known you forever.\tJ'ai l'impression de t'avoir toujours connu.\nI feel like I've known you forever.\tJ'ai l'impression de vous avoir toujours connu.\nI feel like getting some fresh air.\tJ'ai envie de prendre l'air.\nI feel like someone is watching me.\tJ'ai le sentiment que quelqu'un m'observe.\nI feel like someone is watching us.\tJ'ai le sentiment que quelqu'un nous regarde.\nI feel like someone is watching us.\tJ'ai le sentiment que quelqu'un nous observe.\nI fell asleep while reading a book.\tJe me suis endormi en lisant un livre.\nI fell down the stairs in my haste.\tDans ma précipitation, je suis tombé au bas de l'escalier.\nI figured this might come in handy.\tJ'ai songé que ça pourrait être bien utile.\nI figured you might need some help.\tJe me suis imaginé qu'il se pouvait que vous ayez besoin d'aide.\nI figured you might need some help.\tJe me suis imaginé qu'il se pouvait que tu aies besoin d'aide.\nI forced him to carry the suitcase.\tJe l'ai forcé à porter la mallette.\nI forgot how beautiful it was here.\tJ'avais oublié à quel point c'était beau, ici.\nI found a note on my door from Tom.\tJ'ai trouvé un mot de Tom sur ma porte.\nI found a rare stamp at that store.\tJ'ai trouvé un timbre rare dans ce magasin.\nI found it difficult to please her.\tJe trouvai difficile de la satisfaire.\nI found it difficult to please her.\tJ'ai trouvé difficile de la satisfaire.\nI found it necessary to get a loan.\tJ'ai trouvé nécessaire d'obtenir un prêt.\nI found it while I was cleaning up.\tJe l'ai trouvé en nettoyant.\nI found it while I was cleaning up.\tJe l'ai trouvée en nettoyant.\nI found no money left in my pocket.\tJe n'ai trouvé aucun argent restant dans ma poche.\nI found the key underneath the mat.\tJ'ai trouvé cette clé sous le paillasson.\nI found your letter in the mailbox.\tJ'ai vu ta lettre dans la boîte aux lettres.\nI gave the beggar what money I had.\tJ'ai donné au mendiant tout l'argent que j'avais.\nI get along well with my neighbors.\tJe m'entends bien avec mes voisins.\nI get scared just walking past him.\tJ'ai peur rien qu'en passant près de lui.\nI go to the beach almost every day.\tJe vais à la plage quasiment tous les jours.\nI go to the movies once in a while.\tJe vais au cinéma de temps en temps.\nI got a call from her this morning.\tJ'ai eu un appel d'elle ce matin.\nI got a call from the school today.\tJ'ai eu un appel de l'école aujourd'hui.\nI greatly appreciate your kindness.\tJ'apprécie profondément votre gentillesse.\nI guess I shouldn't have done that.\tJe suppose que je n'aurais pas dû faire ça.\nI guess I'll have to think it over.\tJe pense qu'il faut que j'y réfléchisse.\nI guess it shouldn't really matter.\tJe suppose que ça ne devrait pas vraiment avoir d'importance.\nI had a dream about you last night.\tJ'ai fait un rêve à ton sujet la nuit dernière.\nI had a long conversation with Tom.\tJ'ai eu une longue conversation avec Tom.\nI had a really good time yesterday.\tJ'ai vraiment passé du bon temps, hier.\nI had already heard that song once.\tJ'avais déjà entendu une fois cette musique.\nI had chicken pox when I was a kid.\tJ'ai eu la varicelle lorsque j'étais enfant.\nI had my bicycle stolen last night.\tOn m'a volé ma bicyclette hier soir.\nI had my hat blown off by the wind.\tMon chapeau s'est envolé à cause du vent.\nI had my secretary type the letter.\tJ'ai fait taper la lettre à ma secrétaire.\nI had no idea you collected stamps.\tJe n'avais pas idée que vous collectionniez les timbres.\nI had no idea you collected stamps.\tJe n'avais pas idée que tu collectionnais les timbres.\nI had no idea you were so ruthless.\tJe n'avais pas idée que vous étiez si impitoyable.\nI had no idea you were so ruthless.\tJe n'avais pas idée que vous étiez si impitoyables.\nI had no idea you were so ruthless.\tJe n'avais pas idée que tu étais si impitoyable.\nI had no other choice but to do it.\tJe n'ai eu d'autre choix que de le faire.\nI had nothing in particular to say.\tJe n'avais rien de particulier à dire.\nI had some help painting the fence.\tOn m'a aidé à peindre la clôture.\nI had this suit custom made for me.\tJe me suis fait faire ce costume sur mesure.\nI had to park two blocks from here.\tJ'ai dû me garer à deux pâtés de maison.\nI had to pay 5 dollars in addition.\tJ'ai dû payer en plus 5 dollars.\nI had to pay 5 dollars in addition.\tJ'ai dû payer un supplément de 5 dollars.\nI had to pay 5 dollars in addition.\tJ'ai dû payer 5 dollars de plus.\nI had too much to drink last night.\tJ'ai trop bu, hier soir.\nI had too much to drink last night.\tJ'ai trop bu, hier au soir.\nI had too much to drink last night.\tJ'ai trop bu, la nuit dernière.\nI had trouble pronouncing his name.\tJ'ai eu des difficultés à prononcer son nom.\nI had trouble pronouncing his name.\tJ'ai eu du mal à prononcer son nom.\nI hadn't really thought about that.\tJe n'y avais pas vraiment pensé.\nI hate the guy who lives next door.\tJe déteste le type qui habite la porte d'à côté.\nI have a bad pain in my lower back.\tJ'ai une sale douleur dans le bas du dos.\nI have a fever and I ache all over.\tJ'ai de la fièvre et mon corps entier me fait souffrir.\nI have a friend who lives in Tokyo.\tJ'ai un ami qui vit à Tokyo.\nI have a lot of friends to help me.\tJ'ai beaucoup d'amis pour m'aider.\nI have a lot of things to do today.\tJ'ai beaucoup de choses à faire aujourd'hui.\nI have a lot of things to tell you.\tJ'ai plein de choses à te dire.\nI have a lot of things to tell you.\tJ'ai de nombreuses choses à te raconter.\nI have a son in junior high school.\tJ'ai un fils qui est en début de secondaire.\nI have already started my vacation.\tJ'ai déjà commencé mes vacances.\nI have an idea she will come today.\tJ'ai dans l'idée qu'elle viendra aujourd'hui.\nI have an uncle who lives in Kyoto.\tJ'ai un oncle qui vit à Kyoto.\nI have been a teacher for 15 years.\tJe suis instituteur depuis quinze ans.\nI have been a teacher for 15 years.\tÇa fait quinze ans que je suis instituteur.\nI have been a teacher for 15 years.\tÇa fait quinze ans que je suis professeur.\nI have been silent for a long time.\tJe me suis longtemps tut.\nI have complete faith in my doctor.\tJ'ai une entière confiance en mon médecin.\nI have confidence in his abilities.\tJ'ai confiance dans ses capacités.\nI have heard quite a lot about you.\tJ'ai entendu dire pas mal de choses sur toi.\nI have lived here for thirty years.\tJ'ai vécu ici pendant trente ans.\nI have more dresses than my sister.\tJ'ai plus de robes que ma sœur.\nI have never eaten with chopsticks.\tJe n'ai jamais mangé avec des baguettes.\nI have never seen anything like it.\tJe n'ai jamais vu quoi que ce soit de semblable.\nI have no money, but I have dreams.\tJe n'ai pas d'argent, mais j'ai des rêves.\nI have no one to leave my money to.\tJe n'ai personne à qui léguer mon argent.\nI have not heard from her recently.\tJe n'ai pas entendu parler d'elle ces derniers temps.\nI have one brother and two sisters.\tJ'ai un frère et deux sœurs.\nI have some things to take care of.\tIl me faut m'occuper de certaines choses.\nI have the same trouble as you had.\tJ'ai le même problème que celui que tu as eu.\nI have to get away from this place.\tIl me faut m'échapper de cet endroit.\nI have to go to the police station.\tJe dois me rendre au poste de police.\nI have to solve the problem myself.\tJe dois résoudre le problème moi-même.\nI have two brothers and one sister.\tJ'ai deux frères et une sœur.\nI have two sisters and one brother.\tJ'ai deux sœurs et un frère.\nI have urgent matters to attend to.\tJ'ai des affaires urgentes à régler.\nI haven't bought anything recently.\tJe n'ai rien acheté, récemment.\nI haven't downloaded the files yet.\tJe n'ai pas encore téléchargé les fichiers.\nI haven't eaten anything yet today.\tJe n'ai rien encore mangé aujourd'hui.\nI haven't heard from Tom in a year.\tCela fait un an que je n'ai pas eu de nouvelles de Tom.\nI haven't seen any of his pictures.\tJe n'ai vu aucune de ses photos.\nI haven't seen any of his pictures.\tJe n'ai vu aucun de ses tableaux.\nI haven't seen them in a long time.\tJe ne les ai pas vus depuis longtemps.\nI haven't seen you guys in a while.\tJe ne vous ai pas vus depuis un moment.\nI haven't talked to you in a while.\tJe ne t'ai pas parlé depuis un bon moment.\nI hear from him every now and then.\tJ'entends parler de lui de temps à autre.\nI hear that she's a famous actress.\tJ'entends dire qu'elle est une actrice célèbre.\nI hear you've got a new girlfriend.\tJ’ai entendu dire que tu as une nouvelle copine.\nI heard a voice I didn't recognize.\tJ'entendis une voix que je ne reconnus pas.\nI heard a voice I didn't recognize.\tJ'ai entendu une voix que je n'ai pas reconnue.\nI heard a young girl call for help.\tJ'ai entendu une jeune fille appeler à l'aide.\nI heard a young girl call for help.\tJ'entendis une jeune fille appeler à l'aide.\nI heard it thunder in the distance.\tJe l'ai entendu gronder au loin.\nI heard someone come into the room.\tJ'ai entendu quelqu'un entrer dans la chambre.\nI hope Tom's predictions are wrong.\tJ'espère que les prédictions de Tom sont fausses.\nI hope that she will get well soon.\tJ'espère qu'elle ira bientôt mieux.\nI hope that you will get well soon.\tJ'espère que vous allez vous rétablir bientôt.\nI hope that your brother is better.\tJ'espère que votre frère est mieux.\nI hope that your brother is better.\tJ'espère que votre frère se porte mieux.\nI hope to own my own house someday.\tJ'espère posséder un jour ma propre maison.\nI hope you are not catching a cold.\tJ'espère que tu n'as pas attrapé froid.\nI insist that he should go with us.\tJ'insiste pour qu'il vienne avec nous.\nI insist that we leave immediately.\tJ'insiste pour que nous partions sur-le-champ.\nI intend to study abroad next year.\tJe compte aller étudier à l'étranger l'année prochaine.\nI invited my neighbor to breakfast.\tJ'ai invité mon voisin pour le petit-déjeuner.\nI just banged my head on something.\tJe viens de me cogner la tête dans un truc.\nI just changed my mind. That's all.\tJ'ai simplement changé d'avis. C'est tout.\nI just changed my mind. That's all.\tJ'ai simplement changé d'avis. Voilà tout.\nI just couldn't go through with it.\tJe ne pouvais simplement pas le mettre à exécution.\nI just couldn't go through with it.\tJe ne pouvais simplement pas le mener jusqu'à son terme.\nI just couldn't go through with it.\tJe ne pourrais simplement pas le mettre à exécution.\nI just decided I'd come home early.\tJ'ai simplement décidé que je rentrerais tôt chez moi.\nI just did what they told me to do.\tJ'ai simplement fait ce qu'ils m'ont dit de faire.\nI just did what they told me to do.\tJ'ai simplement fait ce qu'elles m'ont dit de faire.\nI just did what you asked me to do.\tJ'ai simplement fait ce que tu m'as demandé de faire.\nI just did what you asked me to do.\tJ'ai simplement fait ce que vous m'avez demandé de faire.\nI just didn't feel like getting up.\tJe n'avais simplement pas envie de me lever.\nI just didn't want you to get hurt.\tJe ne voulais simplement pas que tu sois blessé.\nI just didn't want you to get hurt.\tJe ne voulais simplement pas que tu sois blessée.\nI just didn't want you to get hurt.\tJe ne voulais simplement pas que vous soyez blessé.\nI just didn't want you to get hurt.\tJe ne voulais simplement pas que vous soyez blessée.\nI just didn't want you to get hurt.\tJe ne voulais simplement pas que vous soyez blessés.\nI just didn't want you to get hurt.\tJe ne voulais simplement pas que vous soyez blessées.\nI just don't want to be left alone.\tJe ne veux simplement pas être laissé tout seul.\nI just don't want to be left alone.\tJe ne veux simplement pas être laissée toute seule.\nI just don't want to talk about it.\tJe ne veux juste pas en parler.\nI just don't want you to get upset.\tJe ne veux juste pas que tu sois contrarié.\nI just don't want you to get upset.\tJe ne veux juste pas que tu sois contrariée.\nI just don't want you to get upset.\tJe ne veux juste pas que vous soyez contrarié.\nI just don't want you to get upset.\tJe ne veux juste pas que vous soyez contrariée.\nI just don't want you to get upset.\tJe ne veux juste pas que vous soyez contrariés.\nI just don't want you to get upset.\tJe ne veux juste pas que vous soyez contrariées.\nI just finished cleaning the attic.\tJe viens de finir de nettoyer le grenier.\nI just found out what was going on.\tJe viens de découvrir ce qui se passait.\nI just got a call from your school.\tJe viens d'avoir un appel de ton école.\nI just got a call from your school.\tJe viens d'avoir un appel de votre école.\nI just had a talk with your doctor.\tJe viens d'avoir une conversation avec ton médecin.\nI just had a talk with your doctor.\tJe viens d'avoir une conversation avec votre médecin.\nI just had a talk with your lawyer.\tJe viens d'avoir une conversation avec ton avocat.\nI just had a talk with your lawyer.\tJe viens d'avoir une conversation avec votre avocat.\nI just need to blow off some steam.\tJ'ai simplement besoin de décompresser.\nI just really need some time alone.\tJe n'ai réellement besoin que de me trouver seul un moment.\nI just really need some time alone.\tJe n'ai réellement besoin que de me trouver seule un moment.\nI just want to be a little happier.\tJe veux juste être un peu plus heureux.\nI just want to be a little happier.\tJe veux juste être un peu plus heureuse.\nI just want to know if you love me.\tJe veux seulement savoir si tu m'aimes.\nI just want to know if you love me.\tJe veux seulement savoir si vous m'aimez.\nI just want to know what to expect.\tJe veux juste savoir à quoi m'attendre.\nI just wanted a shoulder to cry on.\tJe voulais juste une épaule pour pleurer.\nI just wanted to drop by to say hi.\tJe voulais juste passer pour dire bonjour.\nI just wanted to drop by to say hi.\tJe voulais juste passer pour vous saluer.\nI just wanted to drop by to say hi.\tJe voulais juste passer pour te saluer.\nI just wanted to drop by to say hi.\tJe voulais juste passer pour les saluer.\nI just wanted to drop by to say hi.\tJe voulais juste passer pour la saluer.\nI just wanted to drop by to say hi.\tJe voulais juste passer pour le saluer.\nI just wanted to have a little fun.\tJe voulais juste m'amuser un peu.\nI knew we shouldn't have done this.\tJe savais que nous n'aurions pas dû faire ça.\nI know how important Tom is to you.\tJe sais à quel point Tom est important pour toi.\nI know how important Tom is to you.\tJe sais à quel point Tom est important pour vous.\nI know that Tom can't speak French.\tJe sais que Tom ne parle pas français.\nI know that money isn't everything.\tJe sais que l'argent n'est pas tout.\nI know the house where he was born.\tJe connais la maison où il est né.\nI know this from bitter experience.\tJe le tiens d'une amère expérience.\nI know what you want to talk about.\tJe sais ce dont tu veux parler.\nI know what you want to talk about.\tJe sais de quoi tu veux parler.\nI know what you want to talk about.\tJe sais ce dont vous voulez parler.\nI know what you want to talk about.\tJe sais de quoi vous voulez parler.\nI know you don't like me very much.\tJe sais que vous ne m'appréciez guère.\nI know you don't like me very much.\tJe sais que tu ne m'apprécies guère.\nI learned nothing from the teacher.\tJe n'ai rien appris du professeur.\nI learned nothing from the teacher.\tJe n'ai rien appris de l'instituteur.\nI learned nothing from the teacher.\tJe n'ai rien appris de l'institutrice.\nI left my umbrella here last night.\tJ'ai laissé mon parapluie ici, hier au soir.\nI like rice more than I like bread.\tJ'aime le riz davantage que le pain.\nI like vanilla ice cream very much.\tJ'adore la glace à la vanille.\nI like what you did with your hair.\tJ'aime ce que vous avez fait de vos cheveux.\nI like what you did with your hair.\tJ'aime ce que vous avez fait avec vos cheveux.\nI like what you did with your hair.\tJ'aime ce que tu as fait de tes cheveux.\nI like what you did with your hair.\tJ'aime ce que tu as fait avec tes cheveux.\nI like writing with a fountain pen.\tJ'aime écrire au stylo-plume.\nI like writing with a fountain pen.\tJ'aime écrire au stylo à plume.\nI listen to the radio after dinner.\tJ'écoute la radio, après le dîner.\nI look forward to hearing from you.\tJ’attends avec impatience de vos nouvelles.\nI look forward to hearing from you.\tJ'attends avec impatience d'avoir de tes nouvelles.\nI look forward to our next meeting.\tJe me réjouis par avance de notre nouvelle rencontre.\nI look forward to our next meeting.\tJe suis impatient que nous nous rencontrions à nouveau.\nI look forward to our next meeting.\tJe suis impatiente que nous nous rencontrions à nouveau.\nI look forward to our next meeting.\tJe me réjouis par avance de notre prochaine rencontre.\nI look forward to seeing you again.\tJe me réjouis de te revoir.\nI look forward to seeing you again.\tJe me réjouis de vous revoir.\nI lost my keys somewhere yesterday.\tJ'ai perdu mes clés quelque part, hier.\nI lost my ticket. What should I do?\tJ'ai perdu mon ticket. Que dois-je faire ?\nI love you more and more every day.\tJe vous aime de plus en plus chaque jour.\nI love you more and more every day.\tJe t'aime de plus en plus chaque jour.\nI loved reading when I was a child.\tJ'adorais lire quand j'étais petit.\nI made a lot of mistakes back then.\tEn ce temps-là, j'ai commis de nombreuses erreurs.\nI made an effort to finish my work.\tJe fis un effort pour terminer mon travail.\nI may not get anything I asked for.\tIl se peut que je n'obtienne rien de ce que j'ai demandé.\nI meet him on occasion at the club.\tJe le rencontre parfois au cercle.\nI need some sugar. Do you have any?\tJ'ai besoin de sucre. En as-tu un peu ?\nI need some sugar. Do you have any?\tJ'ai besoin de sucre. En avez-vous un peu ?\nI need some time to think about it.\tJ'ai besoin d'un peu de temps pour y réfléchir.\nI need to ask you a silly question.\tJe dois te poser une question idiote.\nI needed to be sure he'd come here.\tJe voulais m’assurer qu’il vienne ici.\nI never dreamed of seeing you here.\tJe n'ai jamais rêvé de te voir ici.\nI never saw anyone like Tom before.\tJe n’ai jamais vu quelqu’un comme Tom auparavant.\nI never thought I'd get that lucky.\tJe n'ai jamais pensé que serais aussi chanceux.\nI never thought I'd get that lucky.\tJe n'ai jamais pensé que serais aussi chanceuse.\nI never thought Tom would hit Mary.\tJe n’aurais jamais pensé que Tom tomberait sur Mary.\nI never thought Tom would hit Mary.\tJe n’aurais jamais pensé que Tom frapperait Mary.\nI never wanted to compete with you.\tJe n'ai jamais voulu vous concurrencer.\nI never wanted to compete with you.\tJe n'ai jamais voulu te concurrencer.\nI no longer want to live in Boston.\tJe ne veux plus vivre à Boston.\nI only found out a couple days ago.\tJe ne l'ai découvert qu'il y a quelques jours.\nI only found out a couple days ago.\tJe l'ai seulement découvert il y a quelques jours.\nI only wish it wasn't so hot today.\tJ'aimerais seulement qu'il ne fasse pas aussi chaud, aujourd'hui.\nI opened the box and looked inside.\tJ'ai ouvert la boîte et regardé dedans.\nI opened the box, but it was empty.\tJ'ouvris la boîte, mais elle était vide.\nI ordered those books from Germany.\tJ'ai commandé ces livres en Allemagne.\nI ought to have told her the truth.\tJ'étais obligé de lui dire la vérité.\nI owe what I am today to education.\tJe dois ce que je suis aujourd'hui à mon éducation.\nI owe what I am today to my father.\tJe dois ce que je suis aujourd'hui à mon père.\nI pawned my guitar to pay the rent.\tJ'ai mis ma guitare en gage pour payer le loyer.\nI persuaded him to go to the party.\tJe le convainquis de se rendre à la fête.\nI persuaded him to go to the party.\tJe l'ai convaincu de se rendre à la fête.\nI plan to go to her cocktail party.\tJ'envisage de me rendre à sa soirée cocktail.\nI planted an apple tree in my yard.\tJ'ai planté un pommier dans mon jardin.\nI play the guitar in my spare time.\tJe joue de la guitare pendant mon temps libre.\nI promise I'll bring it right back.\tJe promets de le rapporter tout de suite.\nI promise you I'll never leave you.\tJe te promets de ne jamais te quitter.\nI promise you I'll never leave you.\tJe vous promets de ne jamais vous quitter.\nI promised I wouldn't say anything.\tJ'ai promis que je ne dirais rien.\nI promised I wouldn't say anything.\tJe promis que je ne dirais rien.\nI put on a little weight last year.\tJ'ai pris un peu de poids l'année dernière.\nI raised my hand to ask a question.\tJe levai la main pour poser une question.\nI raised my hand to ask a question.\tJ'ai levé la main pour poser une question.\nI ran upstairs two steps at a time.\tJe courus à l'étage, grimpant les marches deux à deux.\nI really appreciate you helping me.\tJ'apprécie vraiment que tu m'aides.\nI really appreciate you helping me.\tJ'apprécie vraiment que vous m'aidiez.\nI really don't have a lot of money.\tJe n'ai vraiment pas beaucoup d'argent.\nI really don't know where to start.\tJe ne sais vraiment pas par où commencer.\nI really don't understand anything.\tJe ne comprends vraiment rien.\nI really need to talk with someone.\tJ'ai vraiment besoin de parler à quelqu'un.\nI really wish you hadn't done that.\tJ'aimerais vraiment que vous n'ayez pas fait cela.\nI really wish you hadn't done that.\tJ'aimerais vraiment que tu n'aies pas fait cela.\nI really wish you hadn't seen that.\tJ'aimerais vraiment que vous n'ayez pas vu cela.\nI really wish you hadn't seen that.\tJ'aimerais vraiment que tu n'aies pas vu cela.\nI really wish you hadn't seen that.\tJ'aimerais vraiment que toi tu n'aies pas vu cela.\nI really wish you hadn't seen that.\tJ'aimerais vraiment que vous vous n'ayez pas vu cela.\nI really wish you wouldn't do that.\tJe souhaiterais vraiment que tu ne fasses pas ça.\nI really wish you wouldn't do that.\tJe souhaiterais vraiment que vous ne fassiez pas ça.\nI reckon it's time for us to leave.\tIl m'est d'avis qu'il est temps, pour nous, de partir.\nI refreshed myself with a hot bath.\tJe me suis rafraîchi avec un bain chaud.\nI refuse to listen to your excuses.\tJe refuse d'écouter tes excuses.\nI refuse to reply to these charges.\tJe refuse de répondre à ces accusations.\nI regret to say he's gone for good.\tJe déplore de dire qu'il est parti pour de bon.\nI remember that I gave him the key.\tJe me rappelle lui avoir donné la clé.\nI returned the book to the library.\tJ'ai rapporté le livre à la bibliothèque.\nI revealed the truth of the matter.\tJ'ai révélé la vérité à propos du sujet.\nI said some things I wish I didn't.\tJ'ai dit des choses que j'aurais souhaité ne pas avoir dites.\nI saw Tom entering that restaurant.\tJ'ai vu Tom entrer dans ce restaurant.\nI saw Tom sitting in the third row.\tJ'ai vu Tom assis au troisième rang.\nI saw many birds yesterday morning.\tJ'ai vu de nombreux oiseaux hier matin.\nI saw my sister tear up the letter.\tJ'ai vu ma sœur déchirer la lettre.\nI saw some cars in the parking lot.\tJ'ai vu des voitures sur le parking.\nI saw something strange in the sky.\tJ'ai vu quelque chose d'étrange dans le ciel.\nI shop for groceries every morning.\tJe vais faire les courses tous les matins.\nI should think she is under thirty.\tJe pense qu'elle a moins de trente ans.\nI shouldn't have told you anything.\tJe n'aurais rien dû vous dire.\nI spoke to Tom about what Mary did.\tJ'ai parlé à Tom à propos de ce que Mary a fait.\nI stayed indoors because it rained.\tJe suis resté à l'intérieur car il pleuvait.\nI still have a lot of time for fun.\tJe dispose d'encore beaucoup de temps pour m'amuser.\nI stopped smoking once and for all.\tJ'ai arrêté de fumer une bonne fois pour toutes.\nI studied English when I was there.\tJ'ai étudié l'anglais pendant que j'y étais.\nI submitted the application myself.\tJ'ai moi-même soumis la candidature.\nI submitted the application myself.\tJe soumis la candidature en personne.\nI suggest that we go out on Friday.\tJe propose que l'on sorte le vendredi.\nI suggest trying to get some sleep.\tJe suggère d'essayer de prendre un peu de sommeil.\nI suggest we swim across the river.\tJe suggère que nous traversions la rivière à la nage.\nI think I saw a ghost in the woods.\tJe pense avoir vu un fantôme dans les bois.\nI think I'd like to be your friend.\tJe pense que j'aimerais être ton ami.\nI think I'd like to be your friend.\tJe pense que j'aimerais être ton amie.\nI think I'd like to be your friend.\tJe pense que j'aimerais être votre ami.\nI think I'd like to be your friend.\tJe pense que j'aimerais être votre amie.\nI think Tom and Mary are Canadians.\tJe pense que Tom et Mary sont Canadiens.\nI think Tom did that intentionally.\tJe pense que Tom a fait cela intentionnellement.\nI think Tom may be right this time.\tJe pense qu'il se peut que Tom ait raison cette fois-ci.\nI think Tom really enjoyed himself.\tJe pense que Tom s'est vraiment amusé.\nI think Tom wants something to eat.\tJe pense que Tom veut quelque chose à manger.\nI think he will object to our plan.\tJe pense qu'il va critiquer notre plan.\nI think it's somewhere around here.\tJe pense que c'est quelque part dans les alentours.\nI think it's time for me to retire.\tJe pense qu'il est temps pour moi de prendre ma retraite.\nI think it's time for me to retire.\tJe pense qu'il est temps pour moi de me retirer.\nI think it's time for me to retire.\tJe pense qu'il est temps pour moi de battre en retraite.\nI think that will be all for today.\tJe pense que ce sera tout pour aujourd'hui.\nI think that's exactly what I'd do.\tJe pense que c'est exactement ce que je ferais.\nI think we both know how Tom feels.\tJe pense que nous savons tous les deux comment Tom se sent.\nI think we should get back to work.\tJe pense que nous devrions retourner au travail.\nI think we should sell our old car.\tJe pense que nous devrions vendre notre vieille voiture.\nI think we should sell our old car.\tJe pense que nous devrions vendre notre vieille guimbarde.\nI think we should sell our old car.\tJe pense que nous devrions vendre notre vieille chignole.\nI think we're going to need it all.\tJe pense que nous allons avoir besoin du tout.\nI think we're going to need it all.\tJe pense que nous allons avoir besoin de l'ensemble.\nI think what Tom is doing is great.\tJe pense que ce que Tom est en train de faire est formidable.\nI think what you want is over here.\tJe pense que ce que tu veux se trouve ici.\nI think what you want is over here.\tJe pense que ce que vous voulez se trouve ici.\nI think you deserve more than this.\tJe pense que vous méritez plus que ça.\nI think you deserve more than this.\tJe pense que tu mérites plus que ça.\nI think you deserve more than this.\tJe pense que tu mérites davantage que ça.\nI think you deserve more than this.\tJe pense que vous méritez davantage que ça.\nI think you had better take a rest.\tJe pense que vous feriez bien de vous reposer.\nI think you know that's impossible.\tJe pense que tu sais que c'est impossible.\nI think you know that's impossible.\tJe pense que vous savez que c'est impossible.\nI think you owe her an explanation.\tJe pense que tu lui dois une explication.\nI think you should leave Tom alone.\tJe pense que tu devrais laisser Tom seul.\nI think you should leave Tom alone.\tJe pense que vous devriez laisser Tom seul.\nI think you should talk to someone.\tJe pense que tu devrais parler à quelqu'un.\nI think you'll want to hear me out.\tJe pense que tu voudras m'écouter jusqu'au bout.\nI think you'll want to hear me out.\tJe pense que vous voudrez m'écouter jusqu'au bout.\nI thought Tom was going to be here.\tJe pensais que Tom allait être ici.\nI thought doing this would be easy.\tJe pensais que ce serait simple à faire.\nI thought it best to remain silent.\tJ'ai pensé qu'il valait mieux rester silencieux.\nI thought we were all going to die.\tJe pensais que nous allions tous mourir.\nI thought we were on the same side.\tJe pensais que nous étions du même côté.\nI thought you might need some help.\tJ'ai pensé que tu pourrais avoir besoin d'aide.\nI thought you might need some help.\tJ'ai pensé que vous pourriez avoir besoin d'aide.\nI thought you might want this back.\tJe pensais que tu pourrais vouloir que ceci te soit rendu.\nI thought you might want this back.\tJe pensais que vous pourriez vouloir que ceci vous soit rendu.\nI thought you said you worked here.\tJe pensais que tu avais dit que tu travaillais ici.\nI told Tom I wanted to go with him.\tJ'ai dit à Tom que je voulais aller avec lui.\nI told Tom how to get to our house.\tJ'ai dit à Tom comment se rendre à notre maison.\nI took advantage of an opportunity.\tJ'ai profité d'une occasion.\nI took the little girl by the hand.\tJe pris la petite fille par la main.\nI tried not to cry in front of him.\tJ'ai essayé de ne pas pleurer devant lui.\nI tried to call you but I couldn't.\tJ'ai essayé de t'appeler mais je n'ai pas pu.\nI tried to call you but I couldn't.\tJ'ai essayé de vous appeler mais je n'ai pas pu.\nI tried to do that, but I couldn't.\tJ'ai essayé de faire ça, mais je n'ai pas pu.\nI tried to listen to him carefully.\tJ'essayai de l'écouter avec attention.\nI tried to listen to him carefully.\tJ'ai essayé de l'écouter avec attention.\nI tried to write with my left hand.\tJ'ai tenté d'écrire de la main gauche.\nI tried to write with my left hand.\tJe tentai d'écrire de la main gauche.\nI usually eat rice with chopsticks.\tJe mange d'habitude le riz avec des baguettes.\nI want a book to read on the train.\tJe veux un livre à lire dans le train.\nI want everything to be just right.\tJe veux que tout soit parfait.\nI want permission to go home early.\tJe veux la permission de rentrer tôt chez moi.\nI want those back when you're done.\tJe veux que tu me rendes ceux-ci lorsque tu en auras terminé.\nI want those back when you're done.\tJe veux que vous me rendiez ceux-ci lorsque vous en aurez terminé.\nI want to be very clear about that.\tJe veux être très clair à ce propos.\nI want to be very clear about that.\tJe veux être très claire à ce propos.\nI want to do my job the best I can.\tJe veux faire mon boulot du mieux que je peux.\nI want to finish this work by five.\tJe veux finir ce travail pour 5 heures.\nI want to go back to where we were.\tJe veux revenir là où nous en étions.\nI want to go wherever you're going.\tJe veux aller où que tu ailles.\nI want to go wherever you're going.\tJe veux me rendre où que vous vous rendiez.\nI want to hear all about your trip.\tJe veux tout entendre au sujet de votre voyage.\nI want to hear all about your trip.\tJe veux tout entendre au sujet de ton voyage.\nI want to help you figure this out.\tJe veux vous aider à comprendre ceci.\nI want to help you figure this out.\tJe veux t'aider à comprendre ceci.\nI want to know everything about it.\tJe veux tout savoir à ce sujet.\nI want to know everything you know.\tJe veux savoir tout ce que tu sais.\nI want to know everything you know.\tJe veux savoir tout ce que vous savez.\nI want to know more about you, Tom.\tJe veux en savoir plus sur toi, Tom.\nI want to know more about you, Tom.\tJe veux en savoir plus sur vous, Tom.\nI want to leave this place quickly.\tJe veux quitter rapidement cet endroit.\nI want to let go of your hands now.\tJe veux maintenant sortir de ton emprise.\nI want to let go of your hands now.\tJe veux maintenant sortir de votre emprise.\nI want to lodge a formal complaint.\tJe veux faire enregistrer une plainte en bonne et due forme.\nI want to meet people and have fun.\tJe veux rencontrer des gens et m'amuser.\nI want to see what there is inside.\tJe veux voir ce qu'il y a à l'intérieur.\nI want to spend some time with you.\tJe veux passer du temps avec toi.\nI want to stay at the Hilton Hotel.\tJe veux rester au Hilton Hotel.\nI want to take another look around.\tJe veux jeter un nouveau regard à la ronde.\nI want to tell you a strange thing.\tJe veux te dire quelque chose de bizarre.\nI want us all under one roof again.\tJe veux que nous soyons tous à nouveau sous le même toit.\nI want you out of here by tomorrow.\tJe vous veux hors d'ici pour demain.\nI want you out of here by tomorrow.\tJe te veux hors d'ici pour demain.\nI want you to come with us tonight.\tJe veux que tu viennes avec nous ce soir.\nI want you to come with us tonight.\tJe veux que vous veniez avec nous ce soir.\nI want you to love me for who I am.\tJe veux que vous m'aimiez pour ce que je suis.\nI want you to love me for who I am.\tJe veux que tu m'aimes pour ce que je suis.\nI want you to promise me something.\tJe veux que vous me promettiez quelque chose.\nI want you to promise me something.\tJe veux que tu me promettes quelque chose.\nI want you to remember this moment.\tJe veux que vous vous rappeliez cet instant.\nI want you to remember this moment.\tJe veux que vous vous souveniez de cet instant.\nI want you to remember this moment.\tJe veux que tu te rappelles cet instant.\nI want you to remember this moment.\tJe veux que tu te souviennes de cet instant.\nI want you to see what you've done.\tJe veux que tu voies ce que tu as fait.\nI want you to see what you've done.\tJe veux que vous voyiez ce que vous avez fait.\nI wanted to buy you something nice.\tJe voulais t'acheter quelque chose de chouette.\nI wanted to buy you something nice.\tJe voulais vous acheter quelque chose de chouette.\nI wanted to know what would happen.\tJe voulais savoir ce qui arriverait.\nI wanted to know what would happen.\tJe voulais savoir ce qui surviendrait.\nI wanted to make a few phone calls.\tJe voulais passer quelques appels.\nI wanted to make a few phone calls.\tJe voulais effectuer quelques appels.\nI wanted to retire three years ago.\tJe voulais prendre ma retraite il y a trois ans.\nI was able to find out his address.\tJ'ai pu trouver son adresse.\nI was able to play piano very well.\tJe pouvais très bien jouer du piano.\nI was absent from school yesterday.\tJ'étais absent de l'école hier.\nI was absent from school yesterday.\tJ'ai été absente de l'école hier.\nI was almost afraid to talk to you.\tJ'avais presque peur de te parler.\nI was beginning to worry about you.\tJe commençais à m'inquiéter à ton sujet.\nI was beginning to worry about you.\tJe commençais à me faire du souci à ton sujet.\nI was beginning to worry about you.\tJe commençais à m'inquiéter à votre sujet.\nI was beginning to worry about you.\tJe commençais à me faire du souci à votre sujet.\nI was convinced by his explanation.\tJ'étais convaincu par son explication.\nI was disappointed with his speech.\tJ'ai été déçu par son discours.\nI was disappointed with your paper.\tJ'ai été déçu par votre papier.\nI was disappointed with your paper.\tJ'ai été déçu par ton papier.\nI was foolish enough to believe it.\tJ'étais assez bête pour y croire.\nI was fortunate to find a good job.\tJ'ai eu la chance de trouver un bon boulot.\nI was glad to hear of your success.\tJ'étais content d'apprendre ta réussite.\nI was in London most of the summer.\tJ'étais à Londres presque tout l'été.\nI was involved in a petty argument.\tJ'étais impliqué dans une dispute insignifiante.\nI was just going to write a letter.\tJ'allais écrire une lettre.\nI was late for school this morning.\tJ'étais en retard à l'école ce matin.\nI was moved to tears by her speech.\tSon discours m'a ému jusqu'aux larmes.\nI was reading a book while walking.\tJe lisais un livre en me promenant.\nI was stupid enough to believe Tom.\tJ'étais suffisament idiot pour croire Tom.\nI was stupid enough to believe Tom.\tJ'étais suffisament idiote pour croire Tom.\nI was thinking of buying a new car.\tJe pensais acheter une nouvelle voiture.\nI was tired from doing my homework.\tJ'en avais marre de faire mes devoirs.\nI was young and I needed the money.\tJ'étais jeune et j'avais besoin de l'argent.\nI wasn't expecting Tom to be there.\tJe ne m'attendais pas à ce que Tom soit là.\nI wasn't the only one who was late.\tJe n'étais le seul à être en retard.\nI wasn't the only one who was late.\tJe n'étais la seule à être en retard.\nI went to bed at twelve last night.\tJe me suis couché à minuit la nuit dernière.\nI went to see his sister last week.\tJe suis allé voir sa sœur la semaine dernière.\nI went to the mall with my friends.\tJe me suis rendu avec mes amis, dans la galerie commerciale.\nI went to the mall with my friends.\tJe me suis rendue avec mes amis, dans la galerie commerciale.\nI went to the mall with my friends.\tJe me suis rendue avec mes amies, dans la galerie commerciale.\nI will be glad to help you anytime.\tJe serai heureux de vous aider n'importe quand.\nI will be glad to help you anytime.\tJe serai heureux de vous aider à tout moment.\nI will be glad to help you anytime.\tJe serai heureux de vous aider à n'importe quel moment.\nI will call back in twenty minutes.\tJe rappellerai dans vingt minutes.\nI will call in order to confirm it.\tJ'appellerai pour le confirmer.\nI will get him to come and help me.\tJe le ferai venir, afin qu'il m'aide.\nI will get the work done in a week.\tJe terminerai ce travail endéans une semaine.\nI will give you the money tomorrow.\tJe te donnerai l'argent demain.\nI will go cycling even if it rains.\tJe ferai du vélo même s'il pleut.\nI will introduce you to my parents.\tJe te présenterai à mes parents.\nI will make every effort to get it.\tJe ferai tous les efforts pour l'obtenir.\nI will start working on July first.\tJe commencerai à travailler le premier juillet.\nI will teach you how to play chess.\tJe vous apprendrai à jouer aux échecs.\nI wish I could be more spontaneous.\tSi seulement j'étais plus spontané.\nI wish I could be more spontaneous.\tSi seulement je pouvais être plus spontané.\nI wish I could be more spontaneous.\tSi seulement j'étais plus spontanée.\nI wish I could be more spontaneous.\tSi seulement je pouvais être plus spontanée.\nI wish I could have spoken Spanish.\tJ'aimerais avoir pu parler espagnol.\nI wish I could sing as well as Tom.\tJ'aimerais pouvoir chanter aussi bien que Tom.\nI wish I had time for a girlfriend.\tJ'aimerais avoir le temps pour une petite amie.\nI wish I had time for a girlfriend.\tJ'aimerais avoir le temps pour une petite copine.\nI wish that she would stop smoking.\tJe souhaiterais qu'elle arrête de fumer.\nI wish you could have come with me.\tJ'aurais aimé que vous puissiez être venu avec moi.\nI wish you could have come with me.\tJ'aurais aimé que vous puissiez être venue avec moi.\nI wish you could have come with me.\tJ'aurais aimé que vous puissiez être venus avec moi.\nI wish you could have come with me.\tJ'aurais aimé que vous puissiez être venues avec moi.\nI wish you would do as you're told.\tJe souhaiterais que tu fasses comme on te dit.\nI won't be at the opening ceremony.\tJe ne serai pas à la cérémonie d'ouverture.\nI wonder if something has happened.\tJe me demande s'il est arrivé quelque chose.\nI wonder if something has happened.\tJe me demande si quelque chose est survenu.\nI wonder if there's any connection.\tJe me demande s'il y a la moindre relation.\nI wonder what I'll find in the box.\tJe me demande ce que je vais trouver dans la boite.\nI wonder which one I should choose.\tJe me demande lequel je devrais choisir.\nI wonder which way is the shortest.\tJe me demande quel est le chemin le plus court.\nI wonder why karaoke is so popular.\tJe me demande pourquoi le karaoké est aussi populaire.\nI would like a chocolate ice cream.\tJ'aimerais une glace au chocolat.\nI would like to tell you something.\tJ'aimerais vous dire quelque chose.\nI would never question his honesty.\tJe ne mettrais jamais son honnêteté en doute.\nI would never question his honesty.\tJe ne douterais jamais de son honnêteté.\nI wouldn't have worried about that.\tÇa ne m'aurait pas inquiété.\nI wouldn't miss this for the world.\tJe ne manquerai ceci pour rien au monde.\nI'd appreciate it if you'd help me.\tJ'apprécierais que vous m'aidiez.\nI'd appreciate it if you'd help me.\tJ'apprécierais que tu m'aides.\nI'd like to ask you some questions.\tJ'aimerais te poser quelques questions.\nI'd like to ask you some questions.\tJ'aimerais vous poser quelques questions.\nI'd like to forget the whole thing.\tJ'aimerais oublier tout ça.\nI'd like to get started right away.\tJ'aimerais démarrer immédiatement.\nI'd like to get started right away.\tJ'aimerais m'y mettre sans délai.\nI'd like to get to know you better.\tJ'aimerais faire davantage votre connaissance.\nI'd like to get to know you better.\tJ'aimerais faire davantage ta connaissance.\nI'd like to have my blood examined.\tJ'aimerais faire une analyse de sang.\nI'd like to have that gift wrapped.\tJ'aimerais que vous me fassiez un paquet cadeau.\nI'd like to learn to play the harp.\tJ'aimerais apprendre à jouer de la harpe.\nI'd like to open a savings account.\tJ'aimerais ouvrir un compte d'épargne.\nI'd like to see you this afternoon.\tJ'aimerais te voir cet après-midi.\nI'd like to see you this afternoon.\tJ'aimerais te voir cette après-midi.\nI'd like to see you this afternoon.\tJ'aimerais vous voir cet après-midi.\nI'd like to see you this afternoon.\tJ'aimerais vous voir cette après-midi.\nI'd like to study French next year.\tJ'aimerais étudier le français l'année prochaine.\nI'd like to welcome you all aboard.\tJ'aimerais tous vous souhaiter la bienvenue à bord.\nI'd like to welcome you all aboard.\tJ'aimerais toutes vous souhaiter la bienvenue à bord.\nI'd like you to answer my question.\tJ'aimerais que tu répondes à ma question.\nI'd like you to answer my question.\tJ'aimerais que vous répondiez à ma question.\nI'd like you to keep this a secret.\tJ'aimerais que tu le gardes secret.\nI'd like you to keep this a secret.\tJ'aimerais que tu gardes ceci secret.\nI'd like you to keep this a secret.\tJ'aimerais que vous le gardiez secret.\nI'd like you to keep this a secret.\tJ'aimerais que vous gardiez ceci secret.\nI'd like you to postpone your trip.\tJ'aimerais que tu remettes ton voyage.\nI'd like you to postpone your trip.\tJ'aimerais que vous remettiez votre voyage.\nI'd like you to sing a song for me.\tJ'aimerais que tu chantes une chanson pour moi.\nI'd like you to sing a song for me.\tJ'aimerais que vous chantiez une chanson pour moi.\nI'd like your permission to use it.\tJ'aimerais ta permission pour l'employer.\nI'd like your permission to use it.\tJ'aimerais votre permission pour l'employer.\nI'd like your permission to use it.\tJ'aimerais ta permission pour l'utiliser.\nI'd like your permission to use it.\tJ'aimerais votre permission pour l'utiliser.\nI'd rather not go out this evening.\tJe préférerais ne pas sortir ce soir.\nI'll accompany you to the hospital.\tIl va vous accompagner à l'hôpital.\nI'll always remember your kindness.\tJe me souviendrai toujours de ta gentillesse.\nI'll be out of town for a few days.\tJe serai hors de la ville pour quelques jours.\nI'll be whatever you want me to be.\tJe serai tout ce que tu veux que je sois.\nI'll be whatever you want me to be.\tJe serai tout ce que vous voulez que je sois.\nI'll do whatever I can to help you.\tJe ferai tout ce que je peux pour vous aider.\nI'll finish it as quickly as I can.\tJe finirai ça aussi vite que je pourrai.\nI'll go wherever you want me to go.\tJ'irai là où tu veux que j'aille.\nI'll go wherever you want me to go.\tJ'irai partout où tu veux que j'aille.\nI'll go wherever you want me to go.\tJ'irai là où vous voulez que j'aille.\nI'll go wherever you want me to go.\tJ'irai partout où vous voulez que j'aille.\nI'll have it here for you tomorrow.\tJe le tiendrai à ta disposition, ici, demain.\nI'll have it here for you tomorrow.\tJe le tiendrai à votre disposition, ici, demain.\nI'll have to confiscate your knife.\tJe vais devoir confisquer ton couteau.\nI'll keep it a secret. Don't worry.\tJe le garderai secret. Ne t'en fais pas.\nI'll keep it a secret. Don't worry.\tJe le garderai secret. Ne vous en faites pas.\nI'll keep it a secret. Don't worry.\tJe le garderai secret. Ne te fais pas de souci.\nI'll keep it a secret. Don't worry.\tJe le garderai secret. Ne vous faites pas de souci.\nI'll leave Tokyo for Osaka tonight.\tJe quitterai Tokyo pour Osaka ce soir.\nI'll let you know when she arrives.\tJe t'avertirai quand elle arrivera.\nI'll never forget what you told me.\tJe n'oublierai jamais ce que tu m'as dit.\nI'll pay you back as soon as I can.\tJe vous rembourserai dès que je peux.\nI'll pay you back as soon as I can.\tJe vous rembourserai dès que je le peux.\nI'll pay you back as soon as I can.\tJe te rembourserai dès que je peux.\nI'll pay you back as soon as I can.\tJe te rembourserai dès que je le peux.\nI'll split it with you fifty-fifty.\tOn fera moitié-moitié.\nI'll wait here until he comes back.\tJe vais attendre ici qu'il revienne.\nI'm OK with having just one friend.\tÇa me va de n'avoir qu'un ami.\nI'm OK with having just one friend.\tN'avoir qu'un ami me convient.\nI'm beginning to see what you mean.\tJe commence à voir ce que tu veux dire.\nI'm beginning to see what you mean.\tJe commence à percevoir ce que vous voulez dire.\nI'm glad that the rain has stopped.\tJe suis content que la pluie se soit arrêtée.\nI'm glad to be of some help to you.\tJe suis ravi de pouvoir vous aider.\nI'm glad to be of some help to you.\tJe suis ravie de pouvoir vous aider.\nI'm glad you were able to meet Tom.\tJe suis heureux que tu puisses rencontrer Tom.\nI'm going to a monster truck rally.\tJe me rends à un rassemblement de camions géants.\nI'm going to go out this afternoon.\tJe vais sortir cet après-midi.\nI'm going to leave one night early.\tJe vais partir une nuit plus tôt.\nI'm going to teach you some karate.\tJe vais t'enseigner un peu de karaté.\nI'm going to teach you some karate.\tJe vais vous enseigner un peu de karaté.\nI'm going to teach you some karate.\tJe vais t'enseigner des rudiments de karaté.\nI'm going to teach you some karate.\tJe vais vous enseigner des rudiments de karaté.\nI'm hungry because I haven't eaten.\tJ'ai faim car je n'ai pas mangé.\nI'm hungry because I haven't eaten.\tJ'ai faim car je n'ai encore rien mangé.\nI'm interested in oriental pottery.\tJe suis intéressé par la céramique orientale.\nI'm interested in oriental pottery.\tJe suis intéressée par la céramique orientale.\nI'm invited to Tom's party tonight.\tJe suis invité à la fête de Tom ce soir.\nI'm invited to Tom's party tonight.\tJe suis invitée à la fête de Tom ce soir.\nI'm just a plain old office worker.\tJe ne suis qu'un simple employé de bureau.\nI'm looking for a gift for my wife.\tJe cherche un cadeau pour ma femme.\nI'm looking for a gift for my wife.\tJe cherche un cadeau pour mon épouse.\nI'm looking for a gift for my wife.\tJe cherche un cadeau à l'intention de ma femme.\nI'm looking for a gift for my wife.\tJe cherche un cadeau à l'intention de mon épouse.\nI'm not familiar with French poets.\tJe connais mal les poètes français.\nI'm not gonna do anything about it.\tJe ne vais rien y faire.\nI'm not good at classifying things.\tJe ne suis pas bon pour classer les choses.\nI'm not good at classifying things.\tClasser les choses n'est pas mon fort.\nI'm not interested in your opinion.\tJe ne suis pas intéressé par ton opinion.\nI'm not interested in your opinion.\tJe ne suis pas intéressée par ton opinion.\nI'm not interested in your opinion.\tJe ne suis pas intéressé par votre opinion.\nI'm not interested in your opinion.\tJe ne suis pas intéressée par votre opinion.\nI'm not really asleep, just dozing.\tJe ne dors pas vraiment, je sommeille.\nI'm not sure I want to do anything.\tJe ne suis pas certain de vouloir faire quoi que ce soit.\nI'm not sure I want to do anything.\tJe ne suis pas certaine de vouloir faire quoi que ce soit.\nI'm not sure I want to do this now.\tJe ne suis pas certain que je veuille faire ça maintenant.\nI'm not sure I want to do this now.\tJe ne suis pas certaine que je veuille faire ça maintenant.\nI'm not sure I'd want to live here.\tJe ne suis pas certain que je voudrais vivre ici.\nI'm not sure I'd want to live here.\tJe ne suis pas certaine que je voudrais vivre ici.\nI'm not sure when Tom will be back.\tJe ne suis pas sûr de quand Tom va revenir.\nI'm not sure why Tom asked me that.\tJe ne sais pas pourquoi Tom m'a demandé cela.\nI'm now about as tall as my father.\tJe suis presque aussi grand que mon père maintenant.\nI'm on crutches for the next month.\tJe suis en béquilles pour un mois.\nI'm pleased with their performance.\tJe suis satisfait de leur représentation.\nI'm pleased with their performance.\tJe suis satisfaite de leur représentation.\nI'm pleased with their performance.\tJe suis satisfait de leur prestation.\nI'm pleased with their performance.\tJe suis satisfaite de leur prestation.\nI'm pleased with their performance.\tJe suis satisfait de leur performance.\nI'm pleased with their performance.\tJe suis satisfaite de leur performance.\nI'm really feeling kind of strange.\tJe me sens étrange, d'une certaine manière.\nI'm really not supposed to do this.\tJe ne suis vraiment pas supposé faire ça.\nI'm really not supposed to do this.\tJe ne suis vraiment pas supposée faire ça.\nI'm really not very good at French.\tJe ne suis vraiment pas très bon en français.\nI'm really not very good at French.\tJe ne suis vraiment pas très bonne en français.\nI'm really starting to get worried.\tJe commence vraiment à m'inquiéter.\nI'm sick of conferences these days.\tJ'en ai assez des conférences, ces temps-ci.\nI'm sorry I had to leave you alone.\tJe suis désolé de devoir te laisser seul.\nI'm sorry to have kept you waiting.\tJe suis désolé de vous avoir fait attendre.\nI'm sorry we can't stay any longer.\tJe suis désolé, nous ne pouvons rester plus longtemps.\nI'm sorry we can't stay any longer.\tJe suis désolée, nous ne pouvons rester plus longtemps.\nI'm sorry, I don't really remember.\tJe suis désolé, je ne me rappelle pas vraiment.\nI'm sorry, I don't really remember.\tJe suis désolée, je ne me rappelle pas vraiment.\nI'm sorry, I don't really remember.\tJe suis désolé, je ne m'en souviens pas vraiment.\nI'm sorry, I don't really remember.\tJe suis désolée, je ne m'en souviens pas vraiment.\nI'm sorry, but I can't go with you.\tDésolé, mais je ne peux pas venir avec vous.\nI'm sorry, my mother's not at home.\tJe suis désolé, ma mère n'est pas à la maison.\nI'm studying French and web design.\tJe suis en train d'étudier le français et le web design.\nI'm sure I'll win the tennis match.\tJe suis sûre de remporter le match de tennis.\nI'm sure Tom told you I was coming.\tJe suis sûr que Tom t'a dit que je venais.\nI'm sure Tom told you I was coming.\tJe suis sûre que Tom vous a dit que je venais.\nI'm sure Tom told you I was coming.\tJe suis sûre que Tom t'a dit que je venais.\nI'm sure Tom told you I was coming.\tJe suis sûr que Tom vous a dit que je venais.\nI'm sure you don't want to do that.\tJe suis certain que tu ne veux pas faire ça.\nI'm sure you don't want to do that.\tJe suis certaine que tu ne veux pas faire ça.\nI'm sure you don't want to do that.\tJe suis certain que ce n'est pas là ce que tu veux faire.\nI'm sure you don't want to do that.\tJe suis certaine que ce n'est pas là ce que tu veux faire.\nI'm surprised you didn't know that.\tJe suis surpris que vous ignoriez cela.\nI'm surprised you didn't know that.\tJe suis surprise que vous ignoriez cela.\nI'm surprised you didn't know that.\tJe suis surpris que tu ignorais cela.\nI'm surprised you didn't know that.\tJe suis surprise que tu ignorais cela.\nI'm thinking of having dinner at 5.\tJe pense dîner à 5 heures.\nI'm too old for this sort of thing.\tJe suis trop vieux pour ce genre de choses.\nI'm too old for this sort of thing.\tJe suis trop vieille pour ce genre de choses.\nI'm trying to get my children back.\tJ'essaye de récupérer mes enfants.\nI'm very busy so don't count on me.\tJe suis très occupé, alors ne comptez pas sur moi.\nI'm very busy so don't count on me.\tJe suis très occupée, alors ne comptez pas sur moi.\nI'm very busy so don't count on me.\tJe suis très occupé, alors ne compte pas sur moi.\nI'm very busy so don't count on me.\tJe suis très occupée, alors ne compte pas sur moi.\nI'm very slow at making up my mind.\tJe suis très lent pour me décider.\nI'm very sorry I came home so late.\tJe suis vraiment désolé d'être rentré à la maison aussi tard.\nI'm very sorry I came home so late.\tJe suis vraiment désolée d'être rentré à la maison aussi tard.\nI'm very worried about your health.\tJe me fais beaucoup de souci au sujet de votre santé.\nI'm very worried about your health.\tJe me fais beaucoup de souci au sujet de ta santé.\nI'm way stronger than I used to be.\tJe suis bien plus forte que je ne l'étais avant.\nI'm way stronger than I used to be.\tJe suis bien plus fort que je ne l'étais avant.\nI've already told you what I think.\tJe t'ai déjà dit ce que je pense.\nI've already told you what I think.\tJe vous ai déjà dit ce que je pense.\nI've always played with my brother.\tJ'ai toujours joué avec mon frère.\nI've always wanted to learn French.\tJ'ai toujours voulu apprendre le français.\nI've arranged for a bit of privacy.\tJ'ai ménagé un peu d'intimité.\nI've been drinking too much coffee.\tJ'ai bu trop de café.\nI've been feeling this way all day.\tJe me suis senti comme ça toute la journée.\nI've been feeling this way all day.\tJe me suis sentie comme ça toute la journée.\nI've been feeling this way all day.\tJe me suis senti ainsi toute la journée.\nI've been looking all over for you.\tJe vous ai cherché partout.\nI've been looking all over for you.\tJe vous ai cherchée partout.\nI've been looking all over for you.\tJe vous ai cherchés partout.\nI've been looking all over for you.\tJe vous ai cherchées partout.\nI've been looking all over for you.\tJe t'ai cherché partout.\nI've been looking all over for you.\tJe t'ai cherchée partout.\nI've been way busier than expected.\tJ'ai été bien plus occupé que prévu.\nI've been way busier than expected.\tJ'ai été bien plus occupée que prévu.\nI've completely forgotten his name.\tJ'ai complètement oublié son nom.\nI've decided to end our friendship.\tJ'ai décidé de mettre un terme à notre amitié.\nI've drifted apart from my friends.\tJe me suis éloigné de mes amis.\nI've drifted apart from my friends.\tJe me suis éloignée de mes amis.\nI've drifted apart from my friends.\tJe me suis éloigné de mes amies.\nI've drifted apart from my friends.\tJe me suis éloignée de mes amies.\nI've finished watering the flowers.\tJ'ai fini d'arroser les fleurs.\nI've got all the time in the world.\tJ'ai tout mon temps devant moi.\nI've got to get dressed for school.\tIl me faut m'habiller pour l'école.\nI've got to get dressed for school.\tJe dois m'habiller pour l'école.\nI've got two brothers and a sister.\tJ'ai deux frères et une sœur.\nI've hurt your feelings, haven't I?\tJe vous ai blessé, n'est-ce pas ?\nI've hurt your feelings, haven't I?\tJe vous ai blessée, n'est-ce pas ?\nI've hurt your feelings, haven't I?\tJe t'ai blessé, n'est-ce pas ?\nI've hurt your feelings, haven't I?\tJe t'ai blessée, n'est-ce pas ?\nI've just put new sheets on my bed.\tJe viens de mettre de nouveaux draps sur mon lit.\nI've locked myself out of my house.\tJe me suis enfermé à l'extérieur de ma maison.\nI've locked myself out of my house.\tJe me suis enfermée à l'extérieur de ma maison.\nI've made a couple of friends here.\tJe me suis fait, ici, quelques amis.\nI've made a couple of friends here.\tJe me suis fait, ici, quelques amies.\nI've never cared about such things.\tJe ne me suis jamais soucié de telles choses.\nI've never cared about such things.\tJe ne me suis jamais souciée de telles choses.\nI've never felt so good in my life.\tJe ne me suis encore jamais senti aussi bien dans la vie.\nI've never heard that sound before.\tJe n'ai jamais entendu ce son auparavant.\nI've never seen anything like that.\tJe n'ai jamais rien vu de pareil.\nI've never seen anything like that.\tJe n'ai jamais rien vu de semblable.\nI've never seen anything like this.\tJamais je n'ai vu quoi que ce soit de tel.\nI've never seen such a large whale.\tJe n'ai jamais vu une aussi grosse baleine.\nI've never seen such a large whale.\tJe n'ai jamais vu une baleine aussi grande.\nI've never seen such a large whale.\tJe n'ai jamais vu baleine aussi grande.\nI've never told anyone that before.\tJe n'ai jamais dit cela à personne auparavant.\nI've never told anyone that before.\tJe n'ai jamais dit cela à quiconque auparavant.\nI, too, didn't understand anything.\tMoi non plus, je n'ai rien compris.\nIf I don't do it now, I never will.\tSi je ne le fais pas maintenant, je ne le ferai jamais.\nIf I had wings, I would fly to you.\tSi j'avais des ailes, je volerais vers toi.\nIf I'd known it, I'd have told you.\tSi je l'avais su, je vous l'aurais dit.\nIf I'd known it, I'd have told you.\tSi je l'avais su, je te l'aurais dit.\nIf I'd known it, I'd have told you.\tL'aurais-je su, je te l'aurais dit.\nIf I'd known it, I'd have told you.\tL'aurais-je su, je vous l'aurais dit.\nIf I'd only listened to my parents!\tSi seulement j'avais écouté mes parents !\nIf he doesn't come, what'll you do?\tS'il ne vient pas, que feras-tu ?\nIf he were here, what would he say?\tS'il était ici, que dirait-il ?\nIf it were true, what would you do?\tSi c'était vrai, que feriez-vous ?\nIf it were true, what would you do?\tSi c'était vrai, que ferais-tu ?\nIf the car breaks down, we'll walk.\tSi la voiture tombe en panne, nous marcherons.\nIf we leave now, we should make it.\tSi nous partons maintenant, nous devrions y parvenir.\nIf we leave now, we should make it.\tSi nous partons maintenant, ça devrait le faire.\nIf you want any help, just call me.\tSi tu veux la moindre aide, appelle-moi simplement !\nIf you want any help, just call me.\tSi vous voulez la moindre aide, appelez-moi simplement !\nIn case I forget, please remind me.\tAu cas où j'oublie, rappelle-moi, s'il te plaît.\nIn case of fire, break this window.\tEn cas d'incendie, brisez cette fenêtre.\nIn spite of the storm, he went out.\tIl sortit en dépit de la tempête.\nIn the summer, it is very hot here.\tEn été, il fait très chaud, ici.\nIs Tom staying at the Hilton Hotel?\tTom séjourne-t-il au Hilton Hotel ?\nIs it all right to eat out tonight?\tEst-ce que ça va si on dîne dehors, ce soir ?\nIs it all right to eat out tonight?\tEst-ce que ça va de dîner dehors, ce soir ?\nIs it possible to drink salt water?\tEst-il possible de boire de l'eau salée ?\nIs it something you can get rid of?\tEst-ce quelque chose dont tu peux te débarrasser ?\nIs it something you can get rid of?\tEst-ce quelque chose dont vous pouvez vous débarrasser ?\nIs it something you can get rid of?\tS'agit-il de quelque chose dont tu peux te débarrasser ?\nIs it something you can get rid of?\tS'agit-il de quelque chose dont vous pouvez vous débarrasser ?\nIs it true Tom can't read or write?\tEst-ce vrai que Tom ne sait ni lire ni écrire ?\nIs that what you really want to do?\tEst-ce là ce que tu veux vraiment faire ?\nIs that what you really want to do?\tEst-ce là ce que vous voulez vraiment faire ?\nIs there a flight in the afternoon?\tY a-t-il un vol dans l'après-midi ?\nIs there a gas station around here?\tY a-t-il une station-service dans les environs ?\nIs there a photo shop in the hotel?\tY a-t-il un photographe dans l'hôtel ?\nIs there a problem between you two?\tY a-t-il un problème entre vous deux ?\nIs there any coffee in the kitchen?\tY a-t-il encore du café dans la cuisine ?\nIs there anyone who speaks English?\tY a-t-il quelqu'un qui parle anglais ?\nIs there anything I can do for you?\tPuis-je faire quelque chose pour vous ?\nIs there anything you want to know?\tY a-t-il quoi que ce soit que vous vouliez savoir ?\nIs there anything you want to know?\tY a-t-il quoi que ce soit que vous veuilliez savoir ?\nIs there anything you want to know?\tY a-t-il quoi que ce soit que tu veuilles savoir ?\nIs there somebody you want to call?\tY a-t-il quelqu'un que vous vouliez appeler ?\nIs there somebody you want to call?\tY a-t-il quelqu'un que vous veuilliez appeler ?\nIs there somebody you want to call?\tY a-t-il quelqu'un que tu veuilles appeler ?\nIs there something you want to ask?\tY a-t-il quelque chose que vous vouliez demander ?\nIs there something you want to ask?\tY a-t-il quelque chose que vous veuilliez demander ?\nIs there something you want to ask?\tY a-t-il quelque chose que tu veuilles demander ?\nIs there something you want to say?\tY a-t-il quelque chose que vous vouliez dire ?\nIs there something you want to say?\tY a-t-il quelque chose que vous veuilliez dire ?\nIs there something you want to say?\tY a-t-il quelque chose que tu veuilles dire ?\nIs there space for one more person?\tY a-t-il de la place pour une personne de plus ?\nIs there space for one more person?\tY a-t-il la place pour une personne supplémentaire ?\nIs this really what you want to do?\tEst-ce là réellement ce que tu veux faire ?\nIs this really what you want to do?\tEst-ce là réellement ce que vous voulez faire ?\nIt began to rain before I got home.\tIl commença à pleuvoir avant que je n'arrive chez moi.\nIt began to rain before I got home.\tIl se mit à pleuvoir avant que je ne parvienne chez moi.\nIt cost a lot more than I expected.\tÇa coûte plus cher que je pensais.\nIt doesn't make any sense, does it?\tÇa ne veut rien dire, n'est-ce pas ?\nIt happened to me about a year ago.\tÇa m'est arrivé il y a environ un an.\nIt happened when Tom was in Boston.\tC'est arrivé quand Tom était à Boston.\nIt happened while I wasn't looking.\tÇa s'est passé quand je ne regardais pas.\nIt is difficult to give up smoking.\tIl est difficile d'arrêter de fumer.\nIt is going to rain this afternoon.\tIl va pleuvoir cet après-midi.\nIt is kind of you to drive me home.\tC'est gentil de votre part de me conduire à la maison.\nIt is starting to look pretty cool.\tÇa commence à avoir de la gueule.\nIt is true that he won first prize.\tC'est vrai qu'il a gagné le premier prix.\nIt is true that the earth is round.\tIl est vrai que la terre est ronde.\nIt is worthwhile to read this book.\tCela vaut la peine de lire ce livre.\nIt is worthwhile to read this book.\tCela vaut le coup de lire ce livre.\nIt isn't as cold here as in Alaska.\tIl ne fait pas aussi froid ici qu'en Alaska.\nIt isn't polite to stare at people.\tIl n'est pas poli de regarder fixement les gens.\nIt just doesn't make sense anymore.\tÇa n'a simplement plus de sens.\nIt keeps getting harder and harder.\tÇa devient de plus en plus difficile.\nIt looks as if it is going to rain.\tOn dirait qu'il va pleuvoir.\nIt may already be too late for him.\tIl se peut qu'il soit trop tard pour lui.\nIt may be that he is not a bad man.\tIl se peut qu'il ne soit pas un homme mauvais.\nIt reminds me of the good old days.\tÇa me rappelle le bon vieux temps.\nIt saddens me to hear you say that.\tÇa m'attriste de t'entendre dire cela.\nIt scared the daylights out of him.\tÇa lui a fait une peur bleue.\nIt seems my dreams never come true.\tIl semble que mes rêves ne se réalisent jamais.\nIt seems that Tom isn't here today.\tIl semble que Tom n'est pas là aujourd'hui.\nIt seems that everybody likes golf.\tIl semble que tout le monde aime le golf.\nIt seems that he is unable to swim.\tIl semble être incapable de nager.\nIt seems to me that you are honest.\tIl me semble que tu es honnête.\nIt snowed for ten consecutive days.\tIl a neigé pendant dix jours consécutifs.\nIt took courage to do what Tom did.\tIl fallait du courage pour faire ce que Tom a fait.\nIt was Tom that told me this story.\tC'est Tom qui m'a raconté cette histoire.\nIt was Tom who helped us find Mary.\tC'est Tom qui nous a aidé à trouver Mary.\nIt was a case of mistaken identity.\tC'était un cas de confusion d'identité.\nIt was a miracle that he recovered.\tC'est un miracle qu'il se soit rétabli.\nIt was a pleasure meeting you, Tom.\tCe fut un plaisir de vous rencontrer, Tom.\nIt was a pleasure meeting you, Tom.\tC'était un plaisir de te rencontrer, Tom.\nIt was a pretty amazing experience.\tC'était une expérience assez incroyable.\nIt was a pretty amazing experience.\tCe fut une expérience assez incroyable.\nIt was colder yesterday than today.\tIl faisait plus froid hier qu'aujourd'hui.\nIt was his bicycle that was stolen.\tC'est son vélo qui fut volé.\nIt was his bicycle that was stolen.\tC'est son vélo qui a été volé.\nIt was his first trip as a captain.\tC'était son premier voyage en tant que capitaine.\nIt was his first trip as a captain.\tCe fut son premier voyage en tant que capitaine.\nIt was hot, so I turned on the fan.\tIl faisait chaud donc j'ai allumé le ventilateur.\nIt was nothing less than a miracle.\tC'était vraiment un miracle.\nIt was nothing less than a miracle.\tC'était un vrai miracle.\nIt was nothing less than a miracle.\tCe n'était rien moins qu'un miracle.\nIt was so cold that we made a fire.\tIl faisait si froid que nous avons fait un feu.\nIt was very cold yesterday morning.\tIl faisait très froid hier matin.\nIt wasn't me who started the fight.\tCe n'est pas moi qui ai commencé la dispute.\nIt wasn't me who started the fight.\tCe n'est pas moi qui ai commencé le combat.\nIt won't hurt you to skip one meal.\tÇa ne va pas te tuer de sauter un repas.\nIt would be crazy to do that again.\tCe serait de la folie de recommencer.\nIt's Tom's turn to wash the dishes.\tC'est au tour de Tom de faire la vaisselle.\nIt's a dog eat dog world out there.\tC'est un monde de requins.\nIt's a good start, don't you think?\tC'est un bon départ, ne penses-tu pas ?\nIt's a good start, don't you think?\tC'est un bon départ, ne pensez-vous pas ?\nIt's a lot of fun playing outdoors.\tJouer dehors est très amusant.\nIt's a matter of national security.\tC'est une question de sécurité nationale.\nIt's a pity that you couldn't come.\tC'est dommage que tu n'aies pas pu venir.\nIt's about time you went to school.\tIl est temps que tu ailles à l'école.\nIt's cold there even in the summer.\tIl fait froid là-bas, même l'été.\nIt's illegal to park your car here.\tC'est illégal de garer votre voiture ici.\nIt's illegal to park your car here.\tC'est illégal de garer ta voiture ici.\nIt's important that you understand.\tC'est important que tu comprennes.\nIt's important that you understand.\tC'est important que vous compreniez.\nIt's more dangerous than I thought.\tC'est plus dangereux que je ne le pensais.\nIt's more difficult than you think.\tC'est plus difficile que tu ne crois.\nIt's more fun than drinking coffee.\tC'est plus marrant que de boire du café.\nIt's my dream to win a Nobel Prize.\tMon rêve est de gagner un prix Nobel.\nIt's no use crying over spilt milk.\tCe qui est fait est fait.\nIt's not easy to solve the problem.\tÇa n'est pas facile de résoudre le problème.\nIt's not much of a surprise, is it?\tCe n'est pas tellement une surprise, non ?\nIt's not polite to point at others.\tC'est pas poli de montrer les autres du doigt.\nIt's not polite to stare at others.\tIl est impoli de dévisager les autres.\nIt's not worth reading any further.\tÇa ne vaut pas le coup de lire plus loin.\nIt's not worth reading any further.\tÇa ne vaut pas le coup de lire au-delà.\nIt's not worth reading any further.\tLire plus loin ne vaut pas la chandelle.\nIt's only effective at close range.\tCe n'est efficace qu'à courte portée.\nIt's popular among senior citizens.\tC'est populaire chez les anciens.\nIt's possible that Tom is a genius.\tIl est possible que Tom soit un génie.\nIt's possible that Tom lied to you.\tTom vous a peut-être menti.\nIt's possible that Tom lied to you.\tIl est possible que Tom vous ait menti.\nIt's rarely nice weather at Easter.\tÀ Pâques il fait rarement beau temps.\nIt's said that he knows the secret.\tOn dit qu'il connaît le secret.\nIt's the only thing I can think of.\tC'est la seule chose à laquelle je puisse penser.\nIt's time for you to buy a new car.\tIl est temps que tu achètes une nouvelle voiture.\nIt's time you went to the barber's.\tIl est temps que tu ailles chez le barbier.\nIt's too dark to play baseball now.\tIl fait trop sombre pour jouer au baseball maintenant.\nJapan has become a powerful nation.\tLe Japon est devenu une nation puissante.\nJust at that time, the bus stopped.\tJuste à ce moment-là, le bus s'arrêta.\nJust at that time, the bus stopped.\tJuste à ce moment-là, le bus s'est arrêté.\nJust give me your name and address.\tDonnez-moi juste votre nom et adresse.\nKyoto and Boston are sister cities.\tKyoto et Boston sont des villes jumelées.\nLast night, we went to the theater.\tHier soir nous sommes allés au théâtre.\nLast night, we went to the theater.\tHier soir nous sommes allées au théâtre.\nLast year, there was a bad harvest.\tL'année passée, il y a eu une mauvaise récolte.\nLearning English requires patience.\tApprendre l'anglais demande de la patience.\nLearning a foreign language is fun.\tApprendre une langue étrangère est amusant.\nLeave more space between the lines.\tLaissez plus d'espace entre les lignes.\nLemons and limes are acidic fruits.\tLes citrons et les citrons verts sont des fruits acides.\nLend him as much money as he needs.\tPrêtez-lui autant d'argent qu'il en a besoin.\nLend him as much money as he needs.\tPrête-lui autant d'argent qu'il en a besoin.\nLet me have a look at it, will you?\tLaissez-moi voir un peu, s'il vous plaît.\nLet me introduce my parents to you.\tLaisse-moi te présenter mes parents.\nLet's begin with the first chapter.\tCommençons par le premier chapitre.\nLet's discuss the matter right now.\tDiscutons de l'affaire dès maintenant.\nLet's discuss the matter right now.\tDiscutons tout de suite de ce problème.\nLet's eat now. I'm dying of hunger.\tMangeons maintenant. Je meurs de faim.\nLet's get a picture of us together.\tPrenons nous ensemble en photo.\nLet's go over what we already know.\tPassons en revue ce que nous savons déjà !\nLet's just forget it ever happened.\tOublions ce qui s'est passé.\nLet's meet in front of the library.\tOn se retrouve en face de la bibliothèque.\nLet's not deviate from the subject.\tNe nous éloignons pas du sujet.\nLet's not discuss the matter today.\tNe discutons pas de cette affaire aujourd'hui.\nLet's pick flowers from the garden.\tCueillons des fleurs dans le jardin.\nLet's split the reward fifty-fifty.\tPartageons la récompense cinquante-cinquante.\nLet's stop at the next gas station.\tArrêtons-nous à la prochaine station d'essence.\nLet's stop this fruitless argument.\tCessons cette vaine dispute.\nLet's try to make our world better.\tEssayons de rendre notre monde meilleur.\nLets play video games or something.\tJouons aux jeux vidéo ou à d'autres choses.\nLife is like a roller coaster ride.\tLa vie est comme un tour sur les montagnes russes.\nLife is often compared to a voyage.\tOn compare souvent la vie à un voyage.\nLife is often compared to a voyage.\tLa vie est souvent comparée à un voyage.\nLife without books is unimaginable.\tLa vie sans livre est inimaginable.\nLife's too short to drink bad wine.\tLa vie est trop courte pour boire du mauvais vin.\nLong skirts are out of fashion now.\tLes longues jupes sont démodées maintenant.\nLook at me when I'm talking to you!\tRegarde-moi quand je te parle !\nLook at me when I'm talking to you!\tRegardez-moi quand je vous parle !\nLook at me when I'm talking to you!\tRegarde-moi lorsque je te parle !\nLook at me when I'm talking to you!\tRegardez-moi lorsque je vous parle !\nLook at the sign just ahead of you.\tRegarde l'enseigne juste derrière toi.\nLook up the word in the dictionary.\tRenseigne-toi sur le mot dans le dictionnaire.\nLook up the word in the dictionary.\tRecherche le mot dans le dictionnaire.\nLook up the word in the dictionary.\tVoyez ce mot dans le dictionnaire.\nLove began to grow between the two.\tL'amour commença à croître entre les deux.\nMagda is going to marry a Spaniard.\tMagda épousera un Espagnol.\nMahjong is a game four people play.\tLe Mahjong est un jeu auquel quatre personnes jouent.\nManuela's clothes are very stylish.\tLes vêtements de Manuela sont très élégants.\nManuela's dresses are very elegant.\tLes robes de Manuela sont très élégantes.\nMany Asians are lactose intolerant.\tDe nombreux Asiatiques sont intolérants au lactose.\nMany museums are closed on Mondays.\tLe lundi beaucoup de musées sont fermés.\nMany of the workers died of hunger.\tBeaucoup des ouvriers moururent de faim.\nMany small companies went bankrupt.\tDe nombreuses petites entreprises ont fait faillite.\nMany students have failed the test.\tBien des étudiants ont échoué à l'examen.\nMarriage customs differ by country.\tLes coutumes du mariage sont différentes dans chaque pays.\nMary came up to me when she saw me.\tMary s'est dirigée vers moi quand elle m'a vu.\nMary isn't as pretty as her sister.\tMary n'est pas aussi jolie que sa sœur.\nMary knows how to have a good time.\tMarie sait comment s'amuser.\nMathematics is my favorite subject.\tLes mathématiques sont ma matière préférée.\nMathematics is my favorite subject.\tLes mathématiques sont ma matière favorite.\nMay I accompany you to the airport?\tPuis-je vous accompagner à l'aéroport ?\nMay I have a glass of wine, please?\tPuis-je avoir un verre de vin, je vous prie ?\nMay I take a shower in the morning?\tPuis-je prendre une douche le matin ?\nMaybe it's not as hard as it looks.\tCe n'est peut-être pas aussi dur que ça paraît.\nMaybe it's not as hard as it looks.\tCe n'est peut-être pas aussi dur que cela paraît.\nMaybe we can talk about that later.\tPeut-être pouvons-nous en parler plus tard.\nMaybe we should sit somewhere else.\tPeut-être devrions nous nous asseoir autre part.\nMiyazaki is not what it used to be.\tMiyazaki est différent d'autrefois.\nMost boys take after their fathers.\tLa plupart des garçons tiennent de leur père.\nMr. Jackson is a very good teacher.\tM. Jackson est un très bon professeur.\nMr. Jackson is my favorite teacher.\tM. Jackson est mon professeur préféré.\nMr. Jackson is our science teacher.\tM. Jackson est notre professeur de sciences.\nMy aunt sent me a birthday present.\tMa tante m'a envoyé un cadeau d'anniversaire.\nMy baby brother still wets his bed.\tMon petit frère mouille encore son lit.\nMy bike is not anything like yours.\tMon vélo n'a rien à voir avec le vôtre.\nMy bike is not anything like yours.\tMon vélo n'a rien à voir avec le tien.\nMy brother gave me a pair of jeans.\tMon frère m'a donné un jean.\nMy brother is a first-year student.\tMon frère est étudiant de première année.\nMy brother likes to collect stamps.\tMon frère aime collectionner les timbres.\nMy brother's room is always a mess.\tLa chambre de mon frère est toujours en désordre.\nMy car is parked not far from here.\tMa voiture est garée près d'ici.\nMy computer won't start up anymore.\tMon ordinateur ne s'allume plus.\nMy daughter is the apple of my eye.\tMa fille est la prunelle de mes yeux.\nMy daughter studies in that school.\tMa fille étudie dans cette école.\nMy daughter was taken away from me.\tMa fille m'a été retirée.\nMy dog often pretends to be asleep.\tMon chien fait souvent semblant de dormir.\nMy dream is to go to Japan someday.\tMon rêve, ce serait de connaître un jour le Japon.\nMy father lives and works in Tokyo.\tMon père vit et, donc, travaille à Tokyo.\nMy father objected to our marriage.\tMon père désapprouva notre mariage.\nMy father objected to our marriage.\tMon père a désapprouvé notre mariage.\nMy friend says that she's suicidal.\tMon ami dit qu'elle est suicidaire.\nMy grandfather died when I was boy.\tMon grand-père est décédé lorsque j'étais un garçon.\nMy grandmother can't see very well.\tMa grand-mère ne voit pas très bien.\nMy heart was filled with happiness.\tMon cœur était rempli de joie.\nMy husband is away for the weekend.\tMon époux est parti pour le week-end.\nMy husband is away for the weekend.\tMon mari est en vadrouille pour le week-end.\nMy internet connection was cut off.\tMa connexion Internet a été coupée.\nMy internet connection was cut off.\tMa liaison Internet a été coupée.\nMy internet connection was cut off.\tMa liaison Internet fut coupée.\nMy little brother can read English.\tMon petit frère sait lire l'anglais.\nMy meals are prepared by my mother.\tMes repas sont confectionnés par ma mère.\nMy mother is busy preparing supper.\tMa mère est occupée à préparer le dîner.\nMy mother is busy preparing supper.\tMa mère est occupée à préparer le souper.\nMy mother set the table for dinner.\tMa mère a mis la table pour le dîner.\nMy mother set the table for dinner.\tMa mère mit la table pour le dîner.\nMy mother teaches flower arranging.\tMa mère enseigne l'arrangement floral.\nMy opinion is different from yours.\tMon avis diffère du tien.\nMy parents will be home about 2:30.\tMes parents seront à la maison vers 14h30.\nMy parents won't let me have a dog.\tMes parents ne veulent pas que j'aie un chien.\nMy promotion hangs on his decision.\tMon avancement dépend de sa décision.\nMy room is twice as large as yours.\tMa chambre est deux fois plus grande que la tienne.\nMy school grades have been average.\tMes notes scolaires ont été moyennes.\nMy sister and I went to the castle.\tMa sœur et moi sommes allés au château.\nMy sister and I went to the castle.\tMa sœur et moi sommes allées au château.\nMy sister became a college student.\tMa sœur est devenue lycéenne.\nMy sister became a college student.\tMa sœur est devenue étudiante.\nMy sister became a college student.\tMa sœur devint étudiante.\nMy sister got married in her teens.\tMa sœur s'est mariée alors qu'elle était adolescente.\nMy sister is a very beautiful girl.\tMa sœur est une très jolie fille.\nMy sister is afraid of all doctors.\tMa sœur a peur de tous les docteurs.\nMy sister is older than my brother.\tMa sœur est plus âgée que mon frère.\nMy sister is very fond of children.\tMa sœur adore les enfants.\nMy sister likes melons and so do I.\tMa sœur aime les melons, et moi aussi.\nMy sister made me a beautiful doll.\tMa sœur m'a fait une belle poupée.\nMy sister saw it with her own eyes.\tMa sœur l'a vu de ses propres yeux.\nMy sister showed a new watch to me.\tMa sœur m'a montré une nouvelle montre.\nMy success was largely due to luck.\tMa réussite est en grande partie due à la chance.\nMy uncle has a farm in the village.\tMon oncle a une ferme dans le village.\nMy wallet and passport are missing.\tIl manque mon portefeuille et mon passeport.\nMy watch loses three minutes a day.\tMa montre retarde de trois minutes par jour.\nNearly all Japanese have dark hair.\tPratiquement tous les Japonais ont les cheveux foncés.\nNeither of us wants to get married.\tAucun d'entre nous ne veut se marier.\nNeither of us wants to get married.\tAucune d'entre nous ne veut se marier.\nNever bite the hand that feeds you.\tIl ne faut jamais mordre la main qui vous nourrit.\nNever hit a man who can fight back.\tNe frappez jamais un homme qui peut répliquer.\nNice weather added to our pleasure.\tLe beau temps ajouta à notre plaisir.\nNo further discussion is necessary.\tPlus besoin de discuter davantage.\nNo one here seems to want our help.\tPersonne ici ne semble vouloir notre aide.\nNo one told me that she had failed.\tPersonne ne m'a dit qu'elle avait échoué.\nNo one was punished for the fiasco.\tPersonne n'a été puni pour le fiasco.\nNo one was punished for the fiasco.\tPersonne ne fut puni pour le fiasco.\nNobody but a fool would believe it.\tSeul un fou croirait ça.\nNobody has the right to control us.\tPersonne n'a le droit de nous contrôler.\nNobody was paying attention to her.\tPersonne ne lui prêtait attention.\nNone of Tom's classmates liked him.\tAucun des camarades de classe de Tom ne l'aimait.\nNone of his advice was very useful.\tAucun de ses conseils n'a été très utile.\nNone of these things look tempting.\tRien de ces choses n'est tentante.\nNone of this makes any sense to me.\tRien de tout ça n'a aucun sens pour moi.\nNormally, we eat three times a day.\tNormalement, nous avons trois repas par jour.\nNot every student has a dictionary.\tTous les élèves n'ont pas de dictionnaires.\nNothing can force me to give it up.\tRien ne pourra m'obliger à abandonner.\nNothing could be done, except wait.\tIl n'y a rien à faire, à part attendre.\nNothing is achieved without effort.\tRien n'est accompli sans effort.\nNothing seemed out of the ordinary.\tRien ne semblait sortir de l'ordinaire.\nNothing seems to grow in this soil.\tRien ne semble pousser sur ce sol.\nNothing will take me away from you.\tRien ne m'enlèvera à toi.\nNothing will take me away from you.\tRien ne m'enlèvera à vous.\nNowadays many people travel by car.\tDe nos jours beaucoup de personnes voyagent en voiture.\nNowadays nobody believes in ghosts.\tPersonne ne croit aux fantômes de nos jours.\nNowadays nobody believes in ghosts.\tDe nos jours, personne ne croit aux fantômes.\nOne after another the animals died.\tLes animaux moururent l'un après l'autre.\nOne must always keep one's promise.\tOn doit toujours tenir ses promesses.\nOne of my friends bought a red car.\tUn de mes amis a acheté une voiture rouge.\nOne of my friends bought a red car.\tUne de mes amies a acheté une voiture rouge.\nOne of my pleasures is watching TV.\tUn de mes plaisirs est de regarder la télévision.\nOne stayed and the other went away.\tL'un resta et l'autre s'en alla.\nOnly 514 people have been in space.\tIl n'y a que cinq-cent-quatorze personnes qui soient allées dans l'espace.\nOur budget won't allow that luxury.\tNotre budget ne permettra pas ce luxe.\nOur country's climate is temperate.\tLe climat de notre pays est tempéré.\nOur dog buries bones in the garden.\tNotre chien enterre des os dans le jardin.\nOur fate depends on your decisions.\tNotre destin dépend de nos décisions.\nOur feelings towards him are mixed.\tNos sentiments à son égard sont mitigés.\nOur financial problems are serious.\tNos problèmes financiers sont graves.\nOur success was due to his efforts.\tNotre réussite fut grâce à ses efforts.\nOur team is likely to win the game.\tIl est probable que notre équipe va gagner le match.\nPay attention to what you're doing.\tPrête attention à ce que tu fais !\nPay attention to what you're doing.\tPrêtez attention à ce que vous faites !\nPeople like him because he is kind.\tLes gens l'aiment parce qu'il est bon.\nPerhaps I shouldn't have done that.\tPeut-être que je n'aurais pas dû faire ça.\nPerhaps I shouldn't have done that.\tPeut-être que je n'aurais pas dû faire cela.\nPerhaps the train has been delayed.\tPeut-être le train a-t-il été retardé.\nPersonal computers are very useful.\tLes ordinateurs personnels sont très utiles.\nPersonal computers are very useful.\tLes ordinateurs individuels sont très utiles.\nPersonal hygiene is very important.\tL'hygiène personnelle est très importante.\nPhysics doesn't interest me at all.\tLa physique ne m'intéresse pas du tout.\nPlants take in water from the soil.\tLes plantes tirent l'eau du sol.\nPlaying cards is a popular pastime.\tJouer aux cartes est un passe-temps populaire.\nPlease bring us two cups of coffee.\tApportez-nous deux tasses de café, s'il vous plaît.\nPlease deposit the money in a bank.\tDéposez l'argent dans une banque s'il vous plait.\nPlease don't let this happen again.\tJe te prie de ne pas laisser ceci se reproduire.\nPlease don't let this happen again.\tJe vous prie de ne pas laisser ceci se reproduire.\nPlease enjoy yourself at the dance.\tProfitez de la soirée au bal.\nPlease give me a dozen cream puffs.\tMettez-moi une douzaine de choux à la crème, s'il vous plait.\nPlease help yourself to some fruit.\tJe vous en prie, servez-vous de fruits.\nPlease move the TV set to the left.\tS'il te plait, déplace le poste de télévision vers la gauche.\nPlease move to the rear of the bus.\tS'il vous plaît, avancez vers l'arrière du bus.\nPlease pass me the salt and pepper.\tPasse-moi le sel et le poivre, s'il te plaît.\nPlease pass me the salt and pepper.\tPassez-moi le sel et le poivre, s'il vous plaît.\nPlease remember to mail the letter.\tRappelez-vous de poster la lettre.\nPlease say the alphabet in reverse.\tDis l'alphabet à l'envers, je te prie !\nPlease shuffle the cards carefully.\tVeuillez mélanger les cartes avec soin.\nPlease speak as clearly as you can.\tVeuillez parler aussi clairement que vous le pouvez.\nPlease take a look at that picture.\tRegardez cette photo, s'il vous plaît.\nPlease take a look at this picture.\tRegardez cette image s'il vous plaît.\nPlease tell me the story once more.\tRaconte-moi l'histoire encore une fois, s'il te plaît.\nPlease turn up the air conditioner.\tAugmente la climatisation s'il te plait.\nPlease write down everything I say.\tVeuillez noter tout ce que je dis !\nPlease write to me once in a while.\tVeuillez m'écrire de temps en temps.\nPlease write to me once in a while.\tÉcris-moi, s'il te plait, de temps en temps.\nPrices have reached a 13-year high.\tLes prix ont atteint un pic de treize ans.\nPromise me you won't do that again.\tPromets-moi que tu ne feras plus ça !\nPromise me you won't do that again.\tPromettez-moi que vous ne ferez plus ça !\nPut me through to the boss, please.\tPassez-moi le patron, s'il vous plait.\nPut the chair in front of the desk.\tPlace la chaise devant le bureau.\nPut this book on top of the others.\tMets ce livre au-dessus des autres.\nRussian is very difficult to learn.\tLe russe est très difficile à apprendre.\nSafety is the most important thing.\tLa sécurité est la chose la plus importante.\nSalmon can jump up to 12 feet high.\tLes saumons parviennent à sauter jusqu'à quatre mètres de haut.\nSecurity was increased in the city.\tLa sécurité a été renforcée dans la ville.\nSecurity was increased in the city.\tC'est la sécurité qui a été renforcée dans la ville.\nShare your lunch with your brother.\tPartage ton déjeuner avec ton frère.\nShe accompanied me to the hospital.\tElle m'a accompagné à l'hôpital.\nShe accused me of making a mistake.\tElle m'accusa de commettre une faute.\nShe accused me of making a mistake.\tElle m'a accusé de commettre une faute.\nShe acquired a knowledge of French.\tElle a acquis des connaissances en français.\nShe advised him to be more careful.\tElle lui conseilla d'être plus prudent.\nShe advised him to be more careful.\tElle lui a conseillé d'être plus prudent.\nShe advised him to drink more milk.\tElle lui conseilla de boire davantage de lait.\nShe advised him to drink more milk.\tElle lui a conseillé de boire davantage de lait.\nShe advised him to give up smoking.\tElle lui conseilla d'arrêter de fumer.\nShe advised him to give up smoking.\tElle lui a conseillé d'arrêter de fumer.\nShe advised him to read more books.\tElle lui conseilla de lire davantage d'ouvrages.\nShe advised him to read more books.\tElle lui a conseillé de lire davantage d'ouvrages.\nShe advised him to see the dentist.\tElle lui conseilla de voir le dentiste.\nShe advised him to see the dentist.\tElle lui a conseillé de voir le dentiste.\nShe applied a bandage to the wound.\tElle pansa la plaie.\nShe assumed an air of indifference.\tElle prit un air indifférent.\nShe assumed an air of indifference.\tElle a pris un air indifférent.\nShe avoided answering my questions.\tElle a évité de répondre à mes questions.\nShe avoided answering my questions.\tElle a esquivé mes questions.\nShe avoided answering my questions.\tElle esquiva mes questions.\nShe avoided answering my questions.\tElle évita de répondre à mes questions.\nShe baked her husband an apple pie.\tElle a fait cuire une tarte aux pommes pour son mari.\nShe blamed her failure on bad luck.\tElle mit son échec sur le compte de la malchance.\nShe blamed her failure on bad luck.\tElle a mis son échec sur le compte de la malchance.\nShe cannot have broken her promise.\tElle ne peut pas avoir rompu sa promesse.\nShe choked him with her bare hands.\tElle l'étrangla de ses propres mains.\nShe choked him with her bare hands.\tElle l'a étranglé de ses propres mains.\nShe complained about my low salary.\tElle se plaignit de mon salaire modeste.\nShe complained about my low salary.\tElle s'est plainte de mon bas salaire.\nShe congratulated me on my success.\tElle m'a félicité pour mon succès.\nShe considered his offer carefully.\tElle considéra sa proposition avec soin.\nShe couldn't suppress her emotions.\tElle n'a pas pu réprimer ses émotions.\nShe couldn't take her eyes off him.\tElle ne pouvait détacher ses yeux de lui.\nShe cried when she heard the story.\tElle a pleuré lorsqu'elle a entendu l'histoire.\nShe did come, but didn't stay long.\tElle est venue mais elle n'est pas restée longtemps.\nShe didn't intend to let him drive.\tElle n'avait pas l'intention de le laisser conduire.\nShe didn't know what to say to him.\tElle ne savait pas quoi lui dire.\nShe didn't know what to say to him.\tElle n'a pas su quoi lui dire.\nShe didn't know what to say to him.\tElle ne sut pas quoi lui dire.\nShe didn't like living in the city.\tElle n'aimait pas vivre en ville.\nShe didn't like living in the city.\tElle n'appréciait pas de vivre en ville.\nShe didn't like the horse at first.\tElle n'aimait pas le cheval au début.\nShe didn't want him to go overseas.\tElle ne voulait pas qu'il aille à l'étranger.\nShe didn't want him to go overseas.\tElle ne voulait pas qu'il se rende outre-mer.\nShe doesn't listen to music at all.\tElle n'écoute pas du tout de musique.\nShe doesn't speak Japanese at home.\tElle ne parle pas japonais à la maison.\nShe extended her stay by five days.\tElle a prolongé son séjour de cinq jours.\nShe feeds her dog a meat-free diet.\tElle fait suivre à son chien un régime sans viande.\nShe feeds her dog a meat-free diet.\tElle fait suivre à son chien un régime non carné.\nShe folded her handkerchief neatly.\tElle plia soigneusement son mouchoir.\nShe folded her handkerchief neatly.\tElle a soigneusement plié son mouchoir.\nShe found a need and she filled it.\tElle trouva un besoin et le remplit.\nShe gave birth to twins a week ago.\tElle a donné naissance à des jumeaux il y a une semaine.\nShe gave him money as well as food.\tElle lui donna de l'argent aussi bien que de la nourriture.\nShe gave it her personal attention.\tElle y a prêté son attention personnelle.\nShe gave me a smile of recognition.\tElle m'adressa un sourire indiquant qu'elle me reconnaissait.\nShe glanced shyly at the young man.\tElle a timidement jeté un regard au jeune homme.\nShe goes to the movies once a week.\tElle va au cinéma une fois par semaine.\nShe got into the car and drove off.\tElle s'introduisit dans la voiture et partit.\nShe got into the car and drove off.\tElle s'est introduite dans la voiture et a filé.\nShe got to the hotel late at night.\tElle arriva à l'hôtel tard dans la nuit.\nShe got to the hotel late at night.\tElle arriva tard dans la nuit à l'hôtel.\nShe got up at seven in the morning.\tElle s'est levée à sept heures du matin.\nShe had the box carried downstairs.\tElle fit porter la caisse en bas.\nShe had to take care of her sister.\tElle eut à prendre soin de sa sœur.\nShe had to take care of her sister.\tElle a eu à prendre de soin de sa sœur.\nShe has a large bedroom to herself.\tElle a une grande chambre pour elle toute seule.\nShe has a natural talent for music.\tElle a un talent naturel pour la musique.\nShe has a piano lesson once a week.\tElle a une leçon de piano une fois par semaine.\nShe has gone, but I still love her.\tElle est partie, mais je l'aime encore.\nShe has her faults, but I like her.\tElle a des défauts, mais je l'aime.\nShe has her faults, but I like her.\tElle a des défauts, mais je l'aime bien.\nShe has her faults, but I like her.\tElle a des défauts, mais je l'apprécie.\nShe has never sung a song with him.\tElle n'a jamais chanté de chanson avec lui.\nShe has nothing in common with him.\tElle n'a rien de commun avec lui.\nShe has remained abroad ever since.\tElle est restée à l'étranger depuis lors.\nShe has the large house to herself.\tElle dispose de la grande maison pour elle toute seule.\nShe heard someone calling for help.\tElle entendit quelqu'un appeler à l'aide.\nShe is able to speak ten languages.\tElle sait parler dix langues.\nShe is afraid of falling ill again.\tElle a peur de retomber malade.\nShe is always trying to please him.\tElle essaie toujours de lui faire plaisir.\nShe is among those unaccounted for.\tElle compte parmi ceux dont on est sans nouvelles.\nShe is busy preparing for the trip.\tElle est occupée à préparer le voyage.\nShe is connected with that company.\tElle est en relation avec cette société.\nShe is going to learn how to drive.\tElle va apprendre à conduire.\nShe is handicapped by poor hearing.\tElle souffre d'une mauvaise audition.\nShe is learning how to drive a car.\tElle apprend à conduire une voiture.\nShe is too young to know the truth.\tElle est trop jeune pour connaître la vérité.\nShe is very popular among the boys.\tElle a beaucoup de succès auprès des garçons.\nShe is very thoughtful and patient.\tElle est vraiment attentive et patiente.\nShe knows everything about cooking.\tElle sait tout sur ​​la cuisine.\nShe knows everything about cooking.\tElle sait tout de la cuisine.\nShe knows everything about cooking.\tElle sait tout en matière de cuisine.\nShe laid the magazine on the table.\tElle posa le magazine sur la table.\nShe left her umbrella in the train.\tElle a laissé son parapluie dans le train.\nShe likes to go walking by herself.\tElle aime se promener seule.\nShe lives in this house by herself.\tElle vit seule dans cette maison.\nShe lost her son in a car accident.\tElle a perdu son fils dans un accident de voiture.\nShe lost what little money she had.\tElle a perdu le peu d'argent qu'elle avait.\nShe makes herself up every morning.\tElle se maquille tous les matins.\nShe managed to keep up appearances.\tElle se débrouilla pour préserver les apparences.\nShe may not be aware of the danger.\tElle n'est peut-être pas consciente du danger.\nShe mixed him up with someone else.\tElle l'a pris pour quelqu'un d'autre.\nShe mixed him up with someone else.\tElle le prit pour quelqu'un d'autre.\nShe parked her car in a vacant lot.\tElle gara sa voiture sur une place libre.\nShe parked her car in a vacant lot.\tElle a garé sa voiture sur une place libre.\nShe put down her thoughts on paper.\tElle mit sur papier ses idées.\nShe put her head out of the window.\tElle passa la tête par la fenêtre.\nShe put me in a delicate situation.\tElle me met dans une situation délicate.\nShe put me in a delicate situation.\tElle me place dans une situation délicate.\nShe quit school for health reasons.\tElle quitta l'école pour des raisons de santé.\nShe reminded him to go to the bank.\tElle lui rappela de se rendre à la banque.\nShe reminded him to go to the bank.\tElle lui a rappelé de se rendre à la banque.\nShe seems to be living by the lake.\tOn dirait qu'elle habite près du lac.\nShe seems to understand what I say.\tElle a l'air de comprendre ce que je dis.\nShe spends a lot of money on books.\tElle dépense beaucoup d'argent en livres.\nShe spends a lot of money on shoes.\tElle dépense beaucoup d'argent pour des chaussures.\nShe stayed there for a short while.\tElle était restée là pendant un moment.\nShe studied English in the morning.\tElle étudiait l'anglais le matin.\nShe taught him everything she knew.\tElle lui a enseigné tout ce qu'elle savait.\nShe taught him everything she knew.\tElle lui enseigna tout ce qu'elle savait.\nShe testified that she saw the man.\tElle témoigna qu'elle avait vu l'homme.\nShe testified that she saw the man.\tElle a témoigné qu'elle a vu l'homme.\nShe tied up the parcel with string.\tElle lia le paquet avec une ficelle.\nShe told him to rewrite his resume.\tElle lui dit de réécrire son curriculum vitae.\nShe told him to rewrite his resume.\tElle lui a dit de réécrire son curriculum vitae.\nShe took advantage of my ignorance.\tElle tira avantage de mon ignorance.\nShe wants a fourth generation iPad.\tElle veut un iPad de quatrième génération.\nShe was a child, but she was brave.\tC'était une enfant, mais elle était courageuse.\nShe was at a loss as to what to do.\tElle n'avait aucune idée quoi faire.\nShe was burning to tell the secret.\tElle brûlait de dire le secret.\nShe was fortunate to pass the exam.\tElle a eu la chance de réussir l'examen.\nShe was lying face down on the bed.\tElle était couchée à plat ventre sur le lit.\nShe was lying face down on the bed.\tElle était étendue à plat ventre sur le lit.\nShe was pleased to see the results.\tElle fut contente de voir les résultats.\nShe was pleased with the new dress.\tElle fut contente de la nouvelle robe.\nShe was quite eager in her studies.\tElle était assez motivée dans ses études.\nShe was reading a gardening manual.\tElle était en train de lire un manuel de jardinage.\nShe was similar to me in many ways.\tElle me ressemblait sur beaucoup de points.\nShe was too tired to go on working.\tElle était trop fatiguée pour continuer à travailler.\nShe was unconscious for three days.\tElle fut inconsciente durant trois jours.\nShe was unconscious for three days.\tElle a été inconsciente durant trois jours.\nShe was unconscious of her mistake.\tElle n'était pas consciente de son erreur.\nShe was unwilling to tell her name.\tElle n'était pas disposée à dire son nom.\nShe was very surprised at the news.\tElle fut très surprise par la nouvelle.\nShe was very surprised at the news.\tElle a été très surprise par la nouvelle.\nShe went out without saying a word.\tElle sortit sans dire un mot.\nShe went shopping at a supermarket.\tElle est allée faire les courses au supermarché.\nShe went to the hospital yesterday.\tElle s'est rendue hier à l'hôpital.\nShe will accompany me on the piano.\tElle m'accompagnera au piano.\nShe will come even if she is tired.\tElle viendra même si elle est fatiguée.\nShe will have to cook for everyone.\tElle devra cuisiner pour tout le monde.\nShe won the one hundred meter race.\tElle a gagné le 100 mètres.\nShe worked from morning till night.\tElle travaillait du matin au soir.\nShe'd like him to leave right away.\tElle aimerait qu'il parte immédiatement.\nShe'd like him to leave right away.\tElle aimerait qu'il parte sur-le-champ.\nShe'd like him to leave right away.\tElle aimerait qu'il parte séance tenante.\nShe's a lot smarter than she looks.\tElle est bien plus intelligente qu'elle ne paraît.\nShe's a smart and independent girl.\tC'est une fille intelligente et indépendante.\nShe's about the same height as you.\tElle est à peu près de la même taille que toi.\nShe's about the same height as you.\tElle est approximativement de la même taille que toi.\nShe's as good a cook as her mother.\tElle cuisine aussi bien que sa mère.\nShe's five years younger than I am.\tElle a cinq ans de moins que moi.\nShe's giving each child two apples.\tElle donne, à chaque enfant, deux pommes.\nShe's got a good eye for paintings.\tElle a l'œil pour la peinture.\nShe's in the garden planting roses.\tElle plante des roses dans le jardin.\nShe's not prettier than her mother.\tElle n’est pas plus belle que sa mère.\nShepherd tried to run and was shot.\tShepherd a essayé de s'enfuir et a été abattu.\nShould I wait for her to come back?\tDevrais-je attendre qu'elle revienne ?\nShouldn't that count for something?\tEst-ce que cela ne devrait pas compter pour quelque chose ?\nShouldn't you be at school already?\tNe devrais-tu pas déjà être à l'école?\nShucks! It was too good to be true.\tZut ! C'était trop beau pour être vrai.\nShucks! It was too good to be true.\tMince ! C'était trop beau pour être vrai.\nSince he was tired, he went to bed.\tÉtant fatigué il est allé au lit.\nSince it's very cold, we can skate.\tComme il fait très froid, nous pouvons faire du patin.\nSince you're here, you can help me.\tPuisque tu es ici, tu peux m'aider.\nSit back, relax and enjoy the ride.\tAppuie-toi sur ton dossier, détends-toi et prends plaisir à la ballade !\nSitting all day isn't good for you.\tRester assis toute la journée n'est pas bon pour toi.\nSitting all day isn't good for you.\tÊtre assis toute la journée n'est pas bon pour toi.\nSitting all day isn't good for you.\tÊtre assis toute la journée n'est pas bon pour vous.\nSitting all day isn't good for you.\tÊtre assise toute la journée n'est pas bon pour toi.\nSitting all day isn't good for you.\tÊtre assise toute la journée n'est pas bon pour vous.\nSitting all day isn't good for you.\tÊtre assises toute la journée n'est pas bon pour vous.\nSix o'clock will suit me very well.\tSix heures me conviendrait très bien.\nSleep is necessary for good health.\tLe sommeil est nécessaire à une bonne santé.\nSmoking is prohibited on the train.\tFumer est interdit dans le train.\nSome newspapers distorted the news.\tCertains journaux déformèrent la vérité.\nSome newspapers distorted the news.\tCertains journaux ont déformé la vérité.\nSome people questioned his honesty.\tCertaines personnes mettaient en cause son honnêteté.\nSome people questioned his honesty.\tQuelques personnes mettent en doute son honnêteté.\nSome people seem to agree with you.\tCertaines personnes semblent être d'accord avec vous.\nSome people seem to agree with you.\tCertaines personnes semblent être d'accord avec toi.\nSome things are better left unsaid.\tCertaines choses se trouvent mieux de ne pas être dites.\nSomehow or other I found his house.\tC'était assez facile pour trouver sa maison.\nSomehow or other I found his house.\tD'une façon ou d'une autre j'ai trouvé sa maison.\nSomeone has brought us some grapes.\tQuelqu'un nous a apporté des raisins.\nSomeone said Tom is looking for us.\tQuelqu'un a dit que Tom nous cherche.\nSomething is grating on her nerves.\tQuelque chose lui tape sur les nerfs.\nSomething is making the door stick.\tQuelque chose fait adhérer la porte.\nSomething is wrong with the engine.\tIl y a quelque chose qui ne va pas dans le moteur.\nSomething may have happened to him.\tPeut-être lui est-il arrivé quelque chose.\nSomething very strange is going on.\tIl se passe quelque chose de très étrange.\nSomething was wrong with the watch.\tQuelque chose n'allait pas avec la montre.\nSomething went wrong with my watch.\tQuelque chose est allé de travers avec ma montre.\nSomething's on your mind, isn't it?\tQuelque chose te tracasse, n'est-ce pas ?\nSomething's on your mind, isn't it?\tQuelque chose vous préoccupe, n'est-ce pas ?\nSports help to develop our muscles.\tLe sport aide nos muscles à se développer.\nStop complaining about the weather.\tArrête de te plaindre du temps !\nStop complaining about the weather.\tArrêtez de vous plaindre du temps !\nStudents should try not to be late.\tLes étudiants devraient essayer de ne pas être en retard.\nSwitzerland is a beautiful country.\tLa Suisse est un beau pays.\nTake good care of my daughter, Tom.\tPrends bien soin de ma fille, Tom.\nTake the first street to the right.\tPrends la première rue sur le côté droit.\nTake the oranges out of the fridge.\tSortez les oranges du réfrigérateur.\nTake this medicine after each meal.\tPrends ce médicament après chaque repas.\nTake this medicine after each meal.\tPrenez ce médicament après chaque repas.\nTalking to Tom isn't going to help.\tParler à Tom ne va pas aider.\nTeaching English is his profession.\tEnseigner l'anglais est sa profession.\nTeaching young children isn't easy.\tEnseigner à de jeunes enfants n'est pas facile.\nTeenagers love playing video games.\tLes adolescents adorent jouer aux jeux vidéo.\nTell Tom I still have his umbrella.\tDis à Tom que j'ai toujours son parapluie.\nTell me how you solved the problem.\tDis-moi comment tu as résolu le problème.\nTell me how you solved the problem.\tDis-moi comment tu as résolu ce problème.\nTermites are destroying the houses.\tLes termites détruisent les maisons.\nThank you for the pleasant evening.\tMerci pour cette agréable soirée.\nThank you for the wonderful dinner.\tMerci pour le merveilleux dîner.\nThank you in advance for your help.\tJe vous remercie d'avance pour votre aide.\nThank you in advance for your help.\tJe te remercie d'avance pour ton aide.\nThank you very much for everything.\tMerci beaucoup pour tout.\nThat cost me a lot in the long run.\tCela m'a beaucoup coûté sur le long terme.\nThat distinction was well-deserved.\tCette distinction a été fort méritée.\nThat doesn't give us a lot of time.\tCela ne nous donne pas beaucoup de temps.\nThat is the house where I was born.\tCeci est la maison où je suis né.\nThat is the worst thing you can do!\tC'est la pire chose que tu puisses faire !\nThat is the worst thing you can do!\tC'est la pire chose que vous puissiez faire !\nThat is why he was late for school.\tVoilà pourquoi il était en retard à l'école.\nThat jacket is way too big for you.\tCette veste est beaucoup trop large pour toi.\nThat jacket is way too big for you.\tCette veste est beaucoup trop large pour vous.\nThat kind of thing isn't important.\tCe genre de choses n'est pas important.\nThat nurse is very kind and polite.\tCette infirmière est très gentille et polie.\nThat river is dangerous to swim in.\tIl est dangereux de se baigner dans ce fleuve.\nThat rock band gives me a headache.\tCe groupe de rock me file mal au crâne.\nThat student runs fast, doesn't he?\tCet étudiant court vite n'est-ce pas ?\nThat toy is selling like hot cakes.\tCe jouet se vend comme des petits pains.\nThat was exactly what she intended.\tC'était exactement son intention.\nThat would be nice if it were true.\tÇa serait bien si c'était vrai.\nThat's a student my father teaches.\tC'est un élève auquel mon père enseigne.\nThat's a very interesting question.\tC'est une question très intéressante.\nThat's all I can say at the moment.\tC'est tout ce que je peux dire pour le moment.\nThat's enough for today. I'm tired.\tC'en est assez pour aujourd'hui, je suis fatigué.\nThat's exactly what I want to hear.\tC'est exactement ce que je veux entendre.\nThat's exactly what I want to know.\tC'est précisément ce que je veux savoir.\nThat's exactly what I wanted to do.\tC'est exactement ce que je voulais faire.\nThat's how he discovered the comet.\tC'est ainsi qu'il découvrit la comète.\nThat's how he discovered the comet.\tC'est comme ça qu'il découvrit la comète.\nThat's how he invented the machine.\tVoilà comment il inventa la machine.\nThat's how he invented the machine.\tC'est ainsi qu'il inventa la machine.\nThat's how he invented the machine.\tC'est comme ça qu'il a inventé la machine.\nThat's never happened to me before.\tCela ne m'est jamais arrivé avant.\nThat's never happened to us before.\tCela ne nous est jamais arrivé avant.\nThat's not exactly how it happened.\tCe n'est pas exactement la manière dont ça s'est passé.\nThat's not exactly how it happened.\tCe n'est pas exactement la manière dont ça s'est produit.\nThat's not how I want things to be.\tCe n'est pas la manière dont je veux que les choses soient.\nThat's not how I want things to be.\tCe n'est pas comme ça que je veux que les choses soient.\nThat's one question I can't answer.\tC'est une question à laquelle je ne peux pas répondre.\nThat's only the tip of the iceberg.\tCe n'est que la partie visible de l'iceberg.\nThat's the book I bought yesterday.\tC'est le livre que j'ai acheté hier.\nThat's the last thing I want to do.\tC'est la dernière chose que je veuille faire.\nThat's the last thing I want to do.\tC'est la dernière chose que je veux faire.\nThat's what I'm always telling Tom.\tC'est ce que je dis toujours à Tom.\nThat's why I'm not getting married.\tC'est pourquoi je ne me marie pas.\nThat's why we moved back to Boston.\tC'est pourquoi nous sommes retournés à Boston.\nThe Bible has it written like this.\tC'est écrit ainsi dans la Bible.\nThe English lesson started at 8:30.\tLe cours d'anglais commença à 8h30.\nThe Giants got clobbered yesterday.\tLes Giants se sont pris une raclée hier.\nThe Japanese live on rice and fish.\tLes Japonais vivent de riz et de poisson.\nThe Netherlands is a small country.\tLes Pays-Bas sont un petit pays.\nThe North won the Battle of Shiloh.\tC'est le Nord qui a vaincu lors de la Bataille de Shiloh.\nThe Queen's crown was made of gold.\tLa couronne de la Reine était d'or.\nThe Queen's crown was made of gold.\tLa couronne de la Reine était en or.\nThe Union soldiers fought fiercely.\tLes soldats de l'Union combattirent énergiquement.\nThe accused was sentenced to death.\tL'accusé a été condamné à mort.\nThe air was full of flying bullets.\tLes balles volaient partout dans l'air.\nThe army has advanced to the river.\tL'armée a progressé jusqu'à la rivière.\nThe article was written in Russian.\tL'article était écrit en russe.\nThe article was written in Russian.\tL'article a été écrit en russe.\nThe baby fell asleep in the cradle.\tLe bébé s'endormit dans le berceau.\nThe baby is sleeping in the cradle.\tLe bébé dort dans le berceau.\nThe banks aren't open on Saturdays.\tLes banques ne sont pas ouvertes le samedi.\nThe bill passed at the last moment.\tLe projet de loi a été approuvé au dernier moment.\nThe book was better than the movie.\tLe livre était meilleur que le film.\nThe boss just chewed him out again.\tLe chef vient de le réprimander à nouveau.\nThe boy came running into the room.\tLe garçon entra dans la pièce en courant.\nThe boy caught the cat by the tail.\tL'enfant attrapa le chat par la queue.\nThe boy enjoyed painting a picture.\tLe garçon prit plaisir à peindre un tableau.\nThe boy has an apple in his pocket.\tLe garçon a une pomme dans sa poche.\nThe boy lay listening to the radio.\tLe garçon était allongé en train d'écouter la radio.\nThe bridge connects the two cities.\tLe pont joint les deux villes.\nThe bridge was built by the Romans.\tLe pont a été construit par les Romains.\nThe building is under construction.\tLe bâtiment est en construction.\nThe bus stops in front of my house.\tLe bus s'arrête devant ma maison.\nThe camera will cost at least $500.\tL'appareil-photo coûtera au moins 500 dollars.\nThe capital of Hungary is Budapest.\tLa capitale de la Hongrie est Budapest.\nThe cat dug its claws into my hand.\tLe chat planta ses griffes dans ma main.\nThe cat dug its claws into my hand.\tLe chat a planté ses griffes dans ma main.\nThe cause of the fire is not known.\tLa cause de l'incendie est inconnue.\nThe ceremony began with his speech.\tLa cérémonie débuta par son discours.\nThe child threw a stone at the dog.\tL'enfant jeta une pierre au chien.\nThe child threw a stone at the dog.\tL'enfant a jeté une pierre sur le chien.\nThe children broke the ancient urn.\tLes enfants brisèrent l'urne antique.\nThe children got lost in the woods.\tLes enfants perdirent leur chemin dans la forêt.\nThe children returned home at dusk.\tLes enfants rentrèrent à la maison à la tombée de la nuit.\nThe clean towels are in the drawer.\tLes serviettes propres sont dans le tiroir.\nThe commander refused to negotiate.\tLe commandant refusa de négocier.\nThe company abandoned that project.\tLa société abandonna ce projet.\nThe company abandoned that project.\tLa société a abandonné ce projet.\nThe company issued a press release.\tL'entreprise a publié un communiqué de presse.\nThe conference ended two hours ago.\tLa conférence s'est achevée il y a deux heures.\nThe country was gearing up for war.\tLe pays se préparait à la guerre.\nThe decision has already been made.\tLa décision a déjà été prise.\nThe decision has not yet been made.\tLa décision n'a pas encore été prise.\nThe diamond was set in a gold ring.\tLe diamant était enchâssé dans une bague en or.\nThe diamond was set in a gold ring.\tLe diamant était enchâssé dans une monture d'or.\nThe dictionary on the desk is mine.\tLe dictionnaire qui est sur le bureau est à moi.\nThe disease spread in several ways.\tLa maladie se répandit de plusieurs manières.\nThe door is locked at nine o'clock.\tLa porte est verrouillée à neuf heures.\nThe door opened and a man came out.\tLa porte s'ouvrit et un homme sortit.\nThe driver felt like taking a rest.\tLe chauffeur a eu envie de prendre du repos.\nThe elevator is out of order today.\tL'ascenseur est hors service aujourd'hui.\nThe enemy launched an attack on us.\tL'ennemi a lancé une attaque contre nous.\nThe exhibition was very impressive.\tL'exposition était très impressionnante.\nThe exhibition was very impressive.\tL'exposition fut très impressionnante.\nThe first attack missed the target.\tLa première attaque a manqué la cible.\nThe first few years were difficult.\tLes quelques premières années furent difficiles.\nThe flood deposited a layer of mud.\tLa crue déposa une couche de boue.\nThe flowers brightened up the room.\tLes fleurs ont éclairci la chambre.\nThe flowers brightened up the room.\tLes fleurs égayaient la pièce.\nThe forest is teeming with monkeys.\tLes singes pullulent dans cette forêt.\nThe furniture belongs to my mother.\tLes meubles appartiennent à ma mère.\nThe garden was filled with flowers.\tLe jardin était plein de fleurs.\nThe goods were transported by ship.\tLes marchandises furent transportées par bateau.\nThe goods were transported by ship.\tLes marchandises ont été transportées par bateau.\nThe hill was all covered with snow.\tLa colline était toute recouverte de neige.\nThe house has all the conveniences.\tLa maison est dotée de tous les équipements.\nThe house has been empty for years.\tLa maison est vide depuis des années.\nThe house was surrounded by fields.\tLa maison est entourée de champs.\nThe kids are making too much noise.\tLes enfants font trop de bruit.\nThe king once lived in that palace.\tIl fut un temps où le roi vivait dans ce palais.\nThe king went hunting this morning.\tLe roi est allé chasser ce matin.\nThe library is on the second floor.\tLa bibliothèque est au premier étage.\nThe lion is the king of the beasts.\tLe lion est le roi des animaux.\nThe lion is the king of the jungle.\tLe lion est le roi de la jungle.\nThe market is completely saturated.\tLe marché est complètement saturé.\nThe meat was crawling with maggots.\tLa viande grouillait de larves.\nThe medicine didn't do me any good.\tCe médicament ne m'a fait aucun bien.\nThe medicine didn't do me any good.\tCe médicament ne m'a été d'aucun secours.\nThe money has been put to good use.\tL'argent a été employé à bon escient.\nThe more we have, the more we want.\tPlus nous avons, plus nous voulons.\nThe mountain was covered with snow.\tLa montagne était recouverte de neige.\nThe news was unbelievably terrible.\tLa nouvelle était incroyablement horrible.\nThe next holiday falls on a Sunday.\tLe prochain jour férié tombe un dimanche.\nThe number of students is dropping.\tLe nombre d'étudiants diminue.\nThe nurse has given Tom a sedative.\tL'infirmière a donné un sédatif à Tom.\nThe offer is too good to turn down.\tL'offre est trop intéressante pour être rejetée.\nThe offer is too good to turn down.\tL'offre est trop intéressante pour qu'on la rejette.\nThe papers didn't print this story.\tLes journaux n'ont pas imprimé cette histoire.\nThe patient requires constant care.\tCe patient a besoin de soins constants.\nThe plane crash was only last week.\tLe crash de l'avion ne s'est produit que la semaine dernière.\nThe plane gets in at eight o'clock.\tL'avion arrive à huit heures.\nThe play was based on a true story.\tLa pièce était tirée d'une histoire vraie.\nThe players scrambled for the ball.\tLes joueurs luttaient pour la possession du ballon.\nThe police aren't after us anymore.\tLa police ne nous pourchasse plus.\nThe police eventually arrested Tom.\tLa police arrêta finalement Tom.\nThe police will be here any minute.\tLa police sera là d'un instant à l'autre.\nThe policeman signaled him to stop.\tLe policier lui intima de s'arrêter.\nThe pond is 100 meters in diameter.\tL'étang fait 100 mètres de diamètre.\nThe postman was bitten by that dog.\tLe facteur a été mordu par ce chien.\nThe price of gold fluctuates daily.\tLe prix de l'or fluctue quotidiennement.\nThe price of oil is down this week.\tLe prix du pétrole est en baisse cette semaine.\nThe price of this car is very high.\tLe prix de cette voiture est très élevé.\nThe prince succeeded to the throne.\tLe prince accéda au trône.\nThe prisoner was given his freedom.\tOn rendit sa liberté au prisonnier.\nThe problem is being discussed now.\tOn est en train de parler du problème en ce moment.\nThe program starts at nine o'clock.\tLe programme commence à neuf heures.\nThe rain shows no sign of stopping.\tLa pluie ne montre aucun signe de répit.\nThe report on the meeting is ready.\tLe compte-rendu de la réunion est prêt.\nThe result is neither good nor bad.\tLe résultat n'est ni bon ni mauvais.\nThe results were very satisfactory.\tLes résultats étaient très satisfaisants.\nThe river flooded the whole region.\tLe fleuve a inondé toute la région.\nThe robber was nabbed this morning.\tLe voleur a été arrêté ce matin.\nThe robber was nabbed this morning.\tLe voleur a été attrapé ce matin.\nThe rumor spread all over the town.\tLa rumeur s'est répandue partout dans la ville.\nThe saying is quite familiar to us.\tL'adage nous est tout à fait familier.\nThe scenery was beyond description.\tLe paysage défiait la description.\nThe school was established in 1650.\tCette école a été fondée en 1650.\nThe school was established in 1650.\tCette école fut fondée en 1650.\nThe situation gets worse and worse.\tLa situation ne fait qu'empirer.\nThe situation resulted in violence.\tLa situation se solda par la violence.\nThe sky was clear when I left home.\tLe ciel était clair lorsque j'ai quitté mon domicile.\nThe sky was clear when I left home.\tLe ciel était clair lorsque je quittai mon domicile.\nThe smell of roses filled the room.\tLe parfum de roses emplit la pièce.\nThe soldier was wounded in the leg.\tLe soldat fut blessé à la jambe.\nThe storm became even more violent.\tLa tempête devint encore plus violente.\nThe storm destroyed the whole town.\tLa tempête a détruit toute la ville.\nThe storm developed into a typhoon.\tLa tempête évolua en un typhon.\nThe storm developed into a typhoon.\tLa tempête a évolué en un typhon.\nThe street is clogged with traffic.\tLa rue est encombrée par la circulation.\nThe streets were covered with snow.\tLes rues étaient couvertes de neige.\nThe summer vacation begins in July.\tLes vacances d'été commencent en juillet.\nThe sushi at this shop tastes good.\tLes sushis dans ce magasin sont bons.\nThe suspect is armed and dangerous.\tLe suspect est armé et dangereux.\nThe suspect is armed and dangerous.\tLa suspecte est armée et dangereuse.\nThe tape recorder was on the table.\tLe magnétophone était sur la table.\nThe teacher allowed him to go home.\tL'instituteur l'autorisa à rentrer chez lui.\nThe teacher and I sat face to face.\tL'instituteur et moi étions assis face à face.\nThe telephone was invented by Bell.\tLe téléphone a été inventé par Bell.\nThe tickets sold out within a week.\tLes tickets furent épuisés en une semaine.\nThe train departs here at 9:00 a.m.\tLe train part d'ici à 9h00 du matin.\nThe train is 10 minutes late today.\tLe train a 10 minutes de retard aujourd'hui.\nThe trip will take at least a week.\tLe voyage prendra au moins une semaine.\nThe two men were business partners.\tLes deux hommes étaient partenaires en affaires.\nThe two sides hold talks this week.\tLes deux parties ont des pourparlers cette semaine.\nThe two sides hold talks this week.\tLes deux parties ont des discussions cette semaine.\nThe view is beautiful beyond words.\tLa vue est d'une beauté indescriptible.\nThe waiters bumped into each other.\tLes serveurs se sont téléscopés.\nThe walls were painted light brown.\tLes murs étaient peints de couleur sable.\nThe walls were painted light brown.\tLes murs étaient peints de couleur ocre.\nThe walls were painted light brown.\tLes murs étaient peints de couleur bistre.\nThe whole thing doesn't make sense.\tRien de tout ça n'a de sens.\nThe wind is blowing from the north.\tLe vent souffle du nord.\nThe word \"theory\" is often misused.\tLe vocable « théorie » est souvent employé de travers.\nThe world is changing every minute.\tLe monde change à chaque minute.\nTheir intimacy grew with the years.\tLeur intimité s'accrut avec les années.\nTheir rude behavior makes me angry.\tLeur comportement insultant m'a énervé.\nThere are a lot of parks in London.\tIl y a beaucoup de parcs à Londres.\nThere are a lot of parks in London.\tIl y a de nombreux parcs à Londres.\nThere are exceptions to every rule.\tToute règle a ses exceptions.\nThere are five fish in my aquarium.\tIl y a cinq poissons dans mon aquarium.\nThere are lots of eggs in that box.\tDans cette boîte, il y a beaucoup d'œufs.\nThere are only 28 days in February.\tIl n'y a que vingt-huit jours en février.\nThere are six people including him.\tIl y a six personnes, lui inclus.\nThere is a military base near here.\tIl y a une base militaire à proximité.\nThere is a path through the fields.\tIl y a un chemin à travers les champs.\nThere is a television in this room.\tDans cette pièce se trouve un poste de télévision.\nThere is an error in this sentence.\tIl y a une erreur dans cette phrase.\nThere is an urgent message for you.\tIl y a un message urgent pour vous.\nThere is more water than is needed.\tIl y a beaucoup plus d'eau que nécessaire.\nThere is more water than is needed.\tIl y a plus d'eau qu'il n'en faut.\nThere is no cure for schizophrenia.\tIl n'y a pas de remède à la schizophrénie.\nThere is nothing new under the sun.\tRien de nouveau sous le soleil.\nThere is nothing new under the sun.\tIl n'y a rien de nouveau sous le soleil.\nThere must be some kind of problem.\tÇa doit être sérieux.\nThere was a car accident yesterday.\tIl y a eu un accident de la route, hier.\nThere was a ton of pressure on him.\tIl y avait sur lui une tonne de pression.\nThere wasn't much else we could do.\tNous ne pouvions plus faire grand chose de plus.\nThere were no radios in those days.\tEn ce temps-là, il n'y avait pas de radios.\nThere were soldiers on these ships.\tSur ces navires se trouvaient des soldats.\nThere will be a math test tomorrow.\tIl y aura un contrôle de math demain.\nThere's a peacock in the courtyard.\tIl y a un paon dans la cour.\nThere's a sucker born every minute.\tUn jobard naît à chaque minute.\nThere's been a death in his family.\tIl y a eu un décès dans sa famille.\nThere's nothing good on television.\tIl n'y a rien de bien à la télévision.\nThere's nothing we can do about it.\tIl n'y a rien que nous y puissions faire.\nThere's nothing we can do about it.\tIl n'y a rien que nous puissions y faire.\nThere's really nothing else to say.\tIl n'y a vraiment rien d'autre à dire.\nThere's so much I want to show you.\tIl y a tant que je veuille te montrer !\nThere's so much I want to show you.\tIl y a tant que je veuille vous montrer !\nThere's so much I want to tell you.\tIl y a tant que je veuille te dire !\nThere's so much I want to tell you.\tIl y a tant que je veuille vous dire !\nThere's someone I want you to meet.\tIl y a quelqu'un que je veux que tu rencontres.\nThere's someone I want you to meet.\tIl y a quelqu'un que je veux que vous rencontriez.\nThere's still room for improvement.\tLes choses peuvent encore s'améliorer dans ce domaine.\nThere's too much salt in this soup.\tCette soupe est trop salée.\nThese articles cannot be exchanged.\tCes articles ne sont pas échangeables.\nThese implements are in common use.\tCes ustensiles sont d'usage courant.\nThese light bulbs can't all be bad.\tCes ampoules ne peuvent pas toutes être mauvaises.\nThese new immigrants had no skills.\tLes nouveaux immigrants n'étaient pas qualifiés.\nThese pictures were painted by him.\tCes tableaux ont été peints par lui.\nThese pills come in a blister pack.\tCes comprimés se présentent sous forme de plaquettes.\nThese shirts are all the same size.\tCes chemises sont toutes de la même taille.\nThey all stood up at the same time.\tIls se levèrent tous en même temps.\nThey all thought that Tom was crazy\tIls pensaient tous que Tom était fou.\nThey are aware of the difficulties.\tIls sont conscients des difficultés.\nThey are disappointed in their son.\tIls sont déçus par leur fils.\nThey are facing financial problems.\tIls se voient confrontés à des difficultés financières.\nThey are proud of their clever son.\tIls sont fiers de l'intelligence de leur fils.\nThey arrived here safely yesterday.\tIls sont arrivés ici sains et saufs hier.\nThey arrived in England a week ago.\tIls sont arrivés en Angleterre il y a une semaine.\nThey brought trouble on themselves.\tIls se sont attirés des ennuis.\nThey brush their teeth twice a day.\tIls se brossent les dents deux fois par jour.\nThey brush their teeth twice a day.\tElles se brossent les dents deux fois par jour.\nThey climbed to the top of a cliff.\tIls escaladèrent jusqu'en haut de la falaise.\nThey collected shells on the beach.\tIls ramassèrent des coquillages sur la plage.\nThey collected shells on the beach.\tElles ramassèrent des coquillages sur la plage.\nThey collected shells on the beach.\tIls ont ramassé des coquillages sur la plage.\nThey crossed the border into Spain.\tIls ont traversé la frontière espagnole.\nThey did not have much food to eat.\tIls n'avaient guère à manger.\nThey had trouble finding the place.\tIls eurent du mal à trouver l'endroit.\nThey have elected a new government.\tIls ont élu un nouveau gouvernement.\nThey hid themselves in the shadows.\tIls se dissimulèrent dans l'obscurité.\nThey kissed inside the planetarium.\tIls s'embrassèrent au planétarium.\nThey never pay any attention to me.\tIls ne me prêtent jamais aucune attention.\nThey ran through the streets naked.\tIls coururent nus à travers les rues.\nThey ran through the streets naked.\tElles coururent nues à travers les rues.\nThey rescued the boy from drowning.\tIls ont sauvé le garçon de la noyade.\nThey say that he will never return.\tIls disent qu'il ne reviendra jamais plus.\nThey say that old house is haunted.\tIls disent que cette vieille maison est hantée.\nThey sell that at a hardware store.\tIls le vendent en quincaillerie.\nThey stood talking for a long time.\tIls restèrent debout à parler pendant un long moment.\nThey want me to organize the party.\tIls veulent que j'organise une fête.\nThey want me to organize the party.\tElles veulent que j'organise une fête.\nThey want to know what's happening.\tElles veulent savoir ce qui se passe.\nThey want us to come in right away.\tIls veulent que nous entrions immédiatement.\nThey want us to come in right away.\tIls veulent que nous entrions de suite.\nThey want us to come in right away.\tElles veulent que nous entrions immédiatement.\nThey want us to come in right away.\tElles veulent que nous entrions de suite.\nThey went on a trip a few days ago.\tIls sont partis en voyage il y a quelques jours.\nThey were having marriage problems.\tIls avaient des problèmes de couple.\nThey were satisfied with the meals.\tIls étaient satisfaits de leur repas.\nThey will survey the desert island.\tIls vont inspecter cette île déserte.\nThey're back where they want to be.\tIls sont de retour là où ils veulent être.\nThey're back where they want to be.\tElles sont de retour là où elles veulent être.\nThey're sunbathing around the pool.\tIls bronzent autour de la piscine.\nThey're sunbathing around the pool.\tElles bronzent autour de la piscine.\nThings are only going to get worse.\tLes choses ne vont faire qu'empirer.\nThings are only going to get worse.\tLes choses ne vont qu'empirer.\nThirteen homes have been destroyed.\tTreize maisons ont été détruites.\nThis bicycle belongs to my brother.\tCe vélo appartient à mon frère.\nThis bomb can kill a lot of people.\tCette bombe peut tuer beaucoup de personnes.\nThis book contains a lot of photos.\tCe livre contient beaucoup de photos.\nThis book is selling like hotcakes.\tCe livre se vend comme des petits pains.\nThis broken vase can't be repaired.\tCe vase cassé ne peut pas être réparé.\nThis building belongs to my family.\tCe bâtiment appartient à ma famille.\nThis building is about to collapse.\tCet édifice menace de s'effondrer.\nThis car is very economical on gas.\tCette voiture est très économique en essence.\nThis clock gains two minutes a day.\tCette horloge avance de deux minutes par jour.\nThis conversation is a masterpiece.\tCette conversation est un chef-d'œuvre.\nThis dictionary is by far the best.\tCe dictionnaire est de loin le meilleur.\nThis doesn't taste like pork to me.\tÇa n'a pas, selon moi, le goût de porc.\nThis flower is beautiful, isn't it?\tCette fleur est belle, n'est-ce pas ?\nThis fruit has an unpleasant smell.\tCe fruit a une odeur désagréable.\nThis is a support group for widows.\tC'est un groupe de soutien pour veuves.\nThis is a very time-consuming task.\tC'est une tâche très consommatrice de temps.\nThis is a very time-consuming task.\tC'est une tâche chronophage.\nThis is all a big misunderstanding.\tTout ça est un grand malentendu.\nThis is always the way it has been.\tIl en a toujours été ainsi.\nThis is an international community.\tC'est une communauté internationale.\nThis is someone I want you to meet.\tC'est quelqu'un que je veux que tu rencontres.\nThis is someone I want you to meet.\tC'est quelqu'un que je veux que vous rencontriez.\nThis is the best restaurant I know.\tC'est le meilleur restaurant que je connaisse.\nThis is the dress I made last week.\tC'est la robe que j'ai confectionnée la semaine dernière.\nThis is the girl you wanted to see.\tC'est la fille que tu voulais voir.\nThis is the hospital I was born in.\tVoici l'hôpital dans lequel je suis né.\nThis is the house where I was born.\tC'est la maison dans laquelle je suis né.\nThis is the house where I was born.\tCeci est la maison où je suis né.\nThis is the house where I was born.\tC'est la maison où je suis né.\nThis is the place I told Tom about.\tC'est l'endroit dont j'ai parlé à Tom.\nThis is the place I told you about.\tC'est l'endroit dont je t'ai parlé.\nThis is the tallest tower in Japan.\tC'est la plus grande tour au Japon.\nThis is the town where he was born.\tC'est la ville où il est né.\nThis is the very best way to do it.\tC'est la toute meilleure manière de le faire.\nThis is what you're supposed to do.\tVoici ce que vous êtes supposé faire.\nThis is what you're supposed to do.\tVoici ce que vous êtes supposée faire.\nThis is what you're supposed to do.\tVoici ce que vous êtes supposés faire.\nThis is what you're supposed to do.\tVoici ce que vous êtes supposées faire.\nThis is what you're supposed to do.\tVoici ce que tu es supposé faire.\nThis is what you're supposed to do.\tVoici ce que tu es supposée faire.\nThis isn't too hard for you, is it?\tCeci n'est pas trop difficile pour vous, n'est-ce pas ?\nThis isn't too hard for you, is it?\tCe n'est pas trop dur pour toi, n'est-ce pas ?\nThis lake is deepest at this point.\tLe lac est le plus profond à cet endroit.\nThis lesson should be kept in mind.\tOn devrait garder cette leçon à l'esprit.\nThis might not be such a good idea.\tIl se pourrait que ce ne soit pas une si bonne idée.\nThis movie is highly controversial.\tCe film est très polémique.\nThis novel consists of three parts.\tCe roman se compose de trois parties.\nThis place is worth visiting twice.\tCet endroit vaut la peine d'être visité deux fois.\nThis problem is difficult to solve.\tCe problème est difficile à résoudre.\nThis region has completely changed.\tCette région s'est complètement transformée.\nThis river is the widest in Europe.\tCe fleuve est le plus large d'Europe.\nThis river runs through my village.\tCette rivière coule à travers mon village.\nThis safe is for keeping valuables.\tCe coffre est destiné à conserver les objets de valeur.\nThis song is very popular in Japan.\tCette chanson est très populaire au Japon.\nThis song was popular in the 1970s.\tCette chanson était populaire dans les années soixante-dix.\nThis suitcase is too heavy for you.\tCette valise est trop lourde pour toi.\nThis suitcase is too heavy for you.\tCette valise est trop lourde pour vous.\nThis ticket is good for three days.\tCe ticket vaut pour trois jours.\nThis watch is better than that one.\tCette montre-ci est meilleure que celle-là.\nThis word is also French in origin.\tCe mot est également d’origine française.\nThose are the leftovers from lunch.\tCe sont les restes du repas de midi.\nThose pictures were painted by him.\tCes tableaux ont été peints par lui.\nThose who want to remain may do so.\tCeux qui veulent rester le peuvent.\nThose who want to remain may do so.\tCelles qui veulent rester peuvent le faire.\nThousands of people gathered there.\tDes milliers de personnes se rassemblèrent là.\nThree hours is a long time to wait.\tC'est long d'attendre trois heures.\nThree people were slightly injured.\tTrois personnes ont été légèrement blessées.\nThree years have passed since then.\tTrois ans se sont écoulés depuis.\nTo drive a car, you need a license.\tPour conduire une voiture, on a besoin d'un permis.\nTo drive a car, you need a license.\tOn a besoin d'un permis pour conduire une voiture.\nTo drive a car, you need a license.\tTu as besoin d'un permis pour conduire une voiture.\nTo drive a car, you need a license.\tVous avez besoin d'un permis pour conduire une voiture.\nTo drive a car, you need a license.\tPour conduire, il faut un permis.\nTo err is human, to forgive divine.\tSe tromper est humain, pardonner, divin.\nToday is the hottest day this year.\tAujourd'hui, c'est le jour le plus chaud de l'année.\nToday, I do not have time for this.\tJe n'ai pas de temps pour ça aujourd'hui.\nTom almost always wears sunglasses.\tTom porte presque toujours des lunettes de soleil.\nTom always shouts when he is angry.\tTom hurle toujours lorsqu'il est en colère.\nTom and Mary are young and healthy.\tTom et Mary sont jeunes et en bonne santé.\nTom and Mary both started to laugh.\tTom et Marie ont tous les deux commencés à rire.\nTom and Mary raised three children.\tTom et Marie ont élevé trois enfants.\nTom asked Mary to brew some coffee.\tTom demanda à Marie de faire du café.\nTom asked Mary why she was smiling.\tTom a demandé à Mary pourquoi elle souriait.\nTom asked Mary why she was so late.\tTom demanda à Marie pourquoi elle était autant en retard.\nTom asked how much the ticket cost.\tTom demanda combien le ticket coûtait.\nTom asked me to come back tomorrow.\tTom m'a demandé de revenir demain.\nTom asked me to give you a message.\tTom m'a demandé de te transmettre un message.\nTom barricaded himself in his room.\tTom s'est barricadé dans sa chambre.\nTom began to shiver uncontrollably.\tTom a commencé à trembler de manière incontrôlable.\nTom believes that Mary is innocent.\tTom croit que Marie est innocente.\nTom believes that Mary is innocent.\tTom croit Marie innocente.\nTom bought a gift for his daughter.\tTom a acheté un cadeau pour sa fille.\nTom broke his arm playing football.\tTom a cassé son bras en jouant au football.\nTom built an igloo in his backyard.\tTom a construit un igloo dans son jardin.\nTom can ski as well as his brother.\tTom peut skier aussi bien que son frère.\nTom can't read without his glasses.\tTom ne peut pas lire sans ses lunettes.\nTom can't swim as well as Mary can.\tTom ne sait pas nager aussi bien que Marie.\nTom canceled his hotel reservation.\tTom a annulé sa réservation d'hôtel.\nTom canceled his hotel reservation.\tTom annula sa réservation d'hôtel.\nTom certainly didn't expect to win.\tTom ne s'attendait certainement pas à gagner.\nTom certainly had something to say.\tTom avait certainement quelque chose à dire.\nTom closed the door of his bedroom.\tTom ferma la porte de sa chambre.\nTom closed the door of his bedroom.\tTom a fermé la porte de sa chambre.\nTom could see that Mary was crying.\tTom pouvait voir que Mary pleurait.\nTom couldn't help but be impressed.\tTom ne put s'empêcher d'être impressionné.\nTom couldn't persuade Mary to stay.\tTom n'a pas pu persuader Mary de rester.\nTom currently lives with his uncle.\tTom vit actuellement avec son oncle.\nTom decided to ask for Mary's help.\tTom décida de demander de l'aide auprès de Marie.\nTom denied having stolen the money.\tTom nia avoir volé l'argent.\nTom deserved the punishment he got.\tTom a mérité la punition qu'il a subi.\nTom didn't complain about anything.\tTom ne s'est plaint de rien.\nTom didn't get Mary's phone number.\tTom n'a pas obtenu le numéro de téléphone de Mary.\nTom didn't give me any alternative.\tTom ne m'a donné aucune alternative.\nTom didn't have to get up so early.\tTom ne devait pas se lever si tôt.\nTom didn't know anyone in the room.\tTom ne connaissait personne dans la pièce.\nTom didn't understand the question.\tTom n'a pas compris la question.\nTom died at the age of ninety-nine.\tTom est mort à l'âge de quatre-vingt-dix-neuf ans.\nTom disguised himself as a fireman.\tTom s'est déguisé en pompier.\nTom doesn't believe what Mary says.\tTom ne croit pas à ce que dit Marie.\nTom doesn't blame you for anything.\tTom ne te reproche rien.\nTom doesn't blame you for anything.\tTom ne vous reproche rien.\nTom doesn't have to worry about me.\tTom n'a pas à s'inquiéter pour moi.\nTom doesn't know Mary is in Boston.\tTom ne sait pas que Mary est à Boston.\nTom doesn't know anything about it.\tTom ne sait rien de cela.\nTom doesn't know anything about it.\tTom ne sait rien à ce sujet.\nTom doesn't know how to milk a cow.\tTom ne sait pas traire une vache.\nTom doesn't know how to milk a cow.\tTom ne sait pas comment traire une vache.\nTom doesn't know that he's adopted.\tTom ne sait pas qu'il est adopté.\nTom doesn't know that he's adopted.\tTom ignore qu'il est adopté.\nTom doesn't know where he was born.\tTom ne sait pas où il est né.\nTom doesn't know who he should ask.\tTom ne sait pas à qui demander.\nTom doesn't like any kind of music.\tTom n'aime aucun genre de musique.\nTom doesn't remember what happened.\tTom ne se souvient plus de ce qui s'est passé.\nTom doesn't think before he speaks.\tTom ne réfléchit pas avant de parler.\nTom doesn't think he could do that.\tTom ne pense pas pouvoir faire ça.\nTom doesn't want Mary to touch him.\tTom ne veut pas que Mary le touche.\nTom doesn't want anything to drink.\tTom ne veut rien à boire.\nTom doesn't want to live in Boston.\tTom ne veut pas vivre à Boston.\nTom doesn't want to read that book.\tTom ne veut pas lire ce livre.\nTom doesn't want to wait that long.\tTom ne veut pas attendre aussi longtemps.\nTom drives a black car, doesn't he?\tTom conduit une voiture noire, n'est-ce pas ?\nTom easily guessed Mary's password.\tTom devina facilement le mot de passe de Mary.\nTom emigrated to Australia in 2013.\tTom a émigré en Australie en 2013.\nTom expected it to cost a lot more.\tTom s'attendait à ce que cela coûte beaucoup plus cher.\nTom finished the job in three days.\tTom a fini le travail en trois jours.\nTom forgot his umbrella in his car.\tTom a oublié son parapluie dans sa voiture.\nTom gave Mary all the money he had.\tTom donna à Marie tout l'argent qu'il avait.\nTom gave Mary all the money he had.\tTom donna tout l'argent qu'il avait à Marie.\nTom goes swimming almost every day.\tTom va nager presque tous les jours.\nTom had Mary's undivided attention.\tTom avait toute l'attention de Mary.\nTom had difficulty learning French.\tTom a eu des difficultés à apprendre le français.\nTom had never seen Mary that angry.\tTom n'avait jamais vu Marie autant en colère.\nTom had no idea how tired Mary was.\tTom n'avait aucune idée de la fatigue de Marie.\nTom has a lot of money in the bank.\tTom a beaucoup d'argent en banque.\nTom has barely said a word all day.\tTom a à peine décroché un mot de toute la journée.\nTom has caused me a lot of trouble.\tTom m'a causé beaucoup d'ennuis.\nTom has decided to propose to Mary.\tTom a décidé de demander Marie en mariage.\nTom has friends all over the world.\tTom a des amis partout à travers le monde.\nTom has no intention of doing that.\tTom n'a pas l'intention de faire ça.\nTom has quite a quirky personality.\tTom a une personnalité assez originale.\nTom hasn't seen Mary since October.\tTom n'a pas vu Marie depuis le mois d'octobre.\nTom intends to become a journalist.\tTom compte devenir journaliste.\nTom introduced himself to everyone.\tTom s'est présenté à tout le monde.\nTom is a much better liar than you.\tTom est un meilleur menteur que toi.\nTom is a much better liar than you.\tTom est un meilleur menteur que vous.\nTom is a nice guy with a big heart.\tTom est un mec sympa au grand cœur.\nTom is always one step ahead of us.\tTom a toujours une longueur d'avance sur nous.\nTom is busy preparing for his trip.\tTom est occupé à préparer son voyage.\nTom is hiding something. I know it.\tTom nous cache des choses. Je le sais.\nTom is ill at ease among strangers.\tTom est mal à l'aise au milieu d'étrangers.\nTom is impulsive and self-centered.\tTom est impulsif et égocentrique.\nTom is in his room studying French.\tTom est dans sa chambre à étudier le français.\nTom is probably not busy right now.\tTom n'est probablement pas occupé maintenant.\nTom is really overweight, isn't he?\tTom a vraiment de l'embonpoint, n'est-ce-pas?\nTom is taking good care of himself.\tTom prend bien soin de lui-même.\nTom is tall, but not as tall as me.\tTom est grand, mais pas aussi grand que moi.\nTom is three years older than I am.\tTom a trois ans de plus que moi.\nTom is working as a security guard.\tTom travaille comme agent de sécurité.\nTom isn't going to let you do that.\tTom ne va pas te laisser faire ça.\nTom isn't going to let you do that.\tTom ne va pas vous laisser faire cela.\nTom isn't invited to parties often.\tTom n'est pas souvent invité aux fêtes.\nTom isn't invited to parties often.\tTom n'est pas souvent invité aux soirées.\nTom isn't listed in the phone book.\tTom n'est pas listé dans l'annuaire téléphonique.\nTom isn't really in love with Mary.\tTom n'est pas vraiment amoureux de Mary.\nTom isn't sure he wants to do this.\tTom n'est pas sûr de vouloir faire ceci.\nTom knew where he had put his keys.\tTom savait où il avait mis ses clés.\nTom knows how to tell a good story.\tTom sait comment raconter une bonne histoire.\nTom left his sunglasses in his car.\tTom a laissé ses lunettes de soleil dans sa voiture.\nTom likes Mary just the way she is.\tTom aime Mary tout simplement comme elle est.\nTom likes to do things his own way.\tTom aime faire les choses à sa façon.\nTom lives in the middle of nowhere.\tTom vit au milieu de nulle part.\nTom lives on the same street as me.\tTom habite sur la même rue que moi.\nTom looked at his appointment book.\tTom regarda son agenda.\nTom made his way through the crowd.\tTom s'est frayé un chemin à travers la foule.\nTom must've been home at that time.\tTom devait être chez lui à cette heure.\nTom must've left the water running.\tTom a dû laisser couler l'eau.\nTom never forgave himself for that.\tTom ne s'est jamais pardonné pour ça.\nTom never seems to finish anything.\tTom semble ne jamais rien terminer.\nTom obviously didn't know about it.\tDe toute évidence, Tom ne le savait pas.\nTom offered to pay for the damages.\tTom a offert de payer pour les dégâts.\nTom poured himself a cup of coffee.\tTom se servit une tasse de café.\nTom poured some cereal into a bowl.\tTom versa des céréales dans un bol.\nTom poured some cereal into a bowl.\tTom a versé des céréales dans un bol.\nTom pushed the raft into the water.\tTom poussa le radeau dans l'eau.\nTom puts too much sugar in his tea.\tTom met trop de sucre dans son thé.\nTom really wants to be your friend.\tTom veut vraiment être ton ami.\nTom said he didn't know the answer.\tTom a dit qu'il ne connaissait pas la réponse.\nTom said he'd like to visit Boston.\tTom a dit qu'il aimerait visiter Boston.\nTom said that the soup was too hot.\tTom a dit que la soupe était trop chaude.\nTom seems to know all that already.\tTom a l'air de déjà savoir tout ça.\nTom seems to want to say something.\tOn dirait que Tom a envie de dire quelque chose.\nTom shares a room with his brother.\tTom partage une chambre avec son frère.\nTom should have apologized to Mary.\tTom aurait dû s'excuser auprès de Mary.\nTom spilled some wine on his shirt.\tTom renversa du vin sur sa chemise.\nTom spilled some wine on his shirt.\tTom a renversé du vin sur sa chemise.\nTom spoke to the doctors in French.\tTom parla aux médecins en français.\nTom spoke to the doctors in French.\tTom a parlé aux médecins en français.\nTom started shaking uncontrollably.\tTom se mit à sauter partout.\nTom started to take off his jacket.\tTom commença à retirer sa veste.\nTom started to take off his jacket.\tTom a commencé à enlever sa veste.\nTom stole a lot of money from Mary.\tTom a volé beaucoup d'argent à Marie.\nTom takes everything too seriously.\tTom prend tout trop au sérieux.\nTom told Mary an interesting story.\tTom a raconté à Marie une histoire intéressante.\nTom told Mary not to wait for John.\tTom dit à Marie de ne pas attendre John.\nTom told me I shouldn't swim there.\tTom m'a dit que je ne devrais pas nager là-bas.\nTom told us that he had a headache.\tTom nous a dit qu'il avait un mal de tête.\nTom took a shower before breakfast.\tTom a pris une douche avant le petit-déjeuner.\nTom took out a bag of marshmallows.\tTom sortit un sac de guimauves.\nTom tossed another log on the fire.\tTom lança une autre bûche dans le feu.\nTom tried in vain to hide his pain.\tTom essaya en vain de cacher sa douleur.\nTom tried in vain to hide his pain.\tTom a essayé en vain de cacher sa douleur.\nTom turned off the air conditioner.\tTom a éteint le climatiseur.\nTom used to come here all the time.\tTom avait l'habitude de venir ici tout le temps.\nTom wanted Mary to accept his gift.\tTom voulait que Marie accepte son cadeau.\nTom wanted to turn over a new leaf.\tTom voulait tourner la page.\nTom wants Mary to keep him company.\tTom veut que Mary lui tienne compagnie.\nTom wants me to stay away from him.\tTom veut que je reste éloigné de lui.\nTom wants to buy a house in Boston.\tTom veut acheter une maison à Boston.\nTom wants to go home, but he can't.\tTom veut retourner chez lui mais il ne peut pas.\nTom wants to say yes, but he can't.\tTom veut dire oui, mais il ne peut pas.\nTom was apparently very convincing.\tTom était apparemment très convainquant.\nTom was in no mood to talk to Mary.\tTom n'était pas d'humeur à parler à Marie.\nTom was offended by what Mary said.\tTom a été blessé par ce que Mary a dit.\nTom was sitting on the couch alone.\tTom était assis seul sur le canapé.\nTom was the first person to arrive.\tTom était la première personne à arriver.\nTom was the first person to arrive.\tTom fut la première personne à arriver.\nTom wasn't my husband at that time.\tTom n'était pas mon mari à ce moment-là.\nTom wasn't my husband at that time.\tTom n'était pas mon mari à cette époque.\nTom will be happy to see you again.\tTom sera heureux de te revoir.\nTom will be happy to see you again.\tTom sera heureux de vous revoir.\nTom wondered why his wife left him.\tTom se demandait pourquoi sa femme l'avait quitté.\nTom works for a translation agency.\tTom travaille pour une agence de traduction.\nTom wrote a lot of letters to Mary.\tTom a écrit beaucoup de lettres à Mary.\nTom wrote down Mary's phone number.\tTom nota le numéro de téléphone de Marie.\nTom's a great guy to hang out with.\tTom est un mec super sympa avec qui traîner.\nTom's diet resulted in weight loss.\tLe régime de Tom lui a fait perdre du poids.\nTom's dog is a pretty good swimmer.\tLe chien de Tom est assez bon nageur.\nTom's funeral will be this weekend.\tLes funérailles de Tom auront lieu ce weekend.\nTom's the one who broke the window.\tTom est celui qui a cassé la fenêtre.\nTomorrow, he will land on the moon.\tDemain, il va alunir.\nTraffic was blocked by a landslide.\tLe trafic était bloqué par un glissement de terrain.\nTranslate the underlined sentences.\tTraduisez les phrases soulignées.\nTrees are planted along the street.\tDes arbres sont plantés le long de la rue.\nTruer words have never been spoken.\tOn n'a jamais prononcé de paroles plus vraies.\nTurn off the light and go to sleep.\tÉteins la lumière et va te coucher.\nTurn off the light and go to sleep.\tÉteignez la lumière et allez dormir.\nUltraviolet rays are harmful to us.\tLes rayons ultraviolets nous sont nuisibles.\nUnfortunately, it rained yesterday.\tMalheureusement, il pleuvait hier.\nUnfortunately, it rained yesterday.\tMalheureusement, il a plu hier.\nWait. I want to show you something.\tAttends ! Je veux te montrer quelque chose.\nWait. I want to show you something.\tAttendez ! Je veux vous montrer quelque chose.\nWait. I want to tell you something.\tAttends ! Je veux te dire quelque chose.\nWait. I want to tell you something.\tAttendez ! Je veux vous dire quelque chose.\nWaiter, please bring me some water.\tGarçon ! De l'eau, je vous prie.\nWanna go upstairs and have a drink?\tTu veux monter prendre un verre ?\nWanna go upstairs and have a drink?\tVous voulez monter prendre un verre ?\nWas he still here when you arrived?\tÉtait-il encore ici quand tu es arrivée ?\nWater pollution is another problem.\tLa pollution de l'eau est un autre problème.\nWe all need help from time to time.\tNous avons tous besoin d'aide de temps à autre.\nWe always have to follow the rules.\tNous devons toujours suivre les règles.\nWe apologize for any inconvenience.\tNous présentons nos excuses pour le moindre dérangement.\nWe are about to sit down to dinner.\tNous sommes sur le point de nous mettre à table pour dîner.\nWe are about to sit down to dinner.\tNous sommes sur le point de nous mettre à table pour souper.\nWe are accustomed to wearing shoes.\tNous sommes habitués à porter des chaussures.\nWe are accustomed to wearing shoes.\tNous sommes habituées à porter des chaussures.\nWe are all eager to know the truth.\tNous sommes tous avides de connaître la vérité.\nWe are in the era of atomic energy.\tNous sommes à l'ère de l'énergie nucléaire.\nWe are looking for a place to stay.\tNous sommes à la recherche d'un endroit où séjourner.\nWe are playing tennis this weekend.\tNous jouons au tennis, ce week-end.\nWe are sorry for the inconvenience.\tNous sommes désolés pour le dérangement.\nWe are sorry for the inconvenience.\tNous sommes désolées pour le dérangement.\nWe are traveling on a tight budget.\tNous voyageons avec un budget serré.\nWe are traveling on a tight budget.\tNous voyageons à petit budget.\nWe believe in the existence of God.\tNous croyons en l'existence de Dieu.\nWe can talk about it in the future.\tNous pouvons en parler à l'avenir.\nWe can't do this without some help.\tNous n'arrivons pas à le faire sans aide.\nWe can't do this without some help.\tNous ne pouvons pas le faire sans aide.\nWe can't do this without some help.\tNous ne pouvons le faire sans aide.\nWe can't keep on fooling ourselves.\tNous ne pouvons pas continuer à nous abuser.\nWe can't put a young boy in prison.\tNous ne pouvons pas mettre un jeune garçon derrière les barreaux.\nWe can't put a young boy in prison.\tNous ne pouvons pas mettre un jeune garçon en prison.\nWe can't say any more at this time.\tNous ne pouvons pas en dire plus pour le moment.\nWe criticized her for her behavior.\tNous la critiquâmes pour son comportement.\nWe discussed the problem at length.\tNous discutâmes longuement du problème.\nWe discussed the problem at length.\tNous avons discuté longuement du problème.\nWe discussed the subject at length.\tNous discutons du sujet en détail.\nWe don't have any eggs left either.\tNous non plus n'avons plus d'œufs.\nWe don't need to do this every day.\tOn n'a pas besoin de faire ça tous les jours.\nWe don't need to do this every day.\tNous n'avons pas besoin de faire cela tous les jours.\nWe don't negotiate with terrorists.\tNous ne négocions pas avec des terroristes.\nWe don't want to cause any trouble.\tNous ne voulons causer aucun ennui.\nWe don't want to do anything hasty.\tNous ne voulons rien faire de précipité.\nWe don't want to take the time now.\tNous ne voulons pas prendre le temps maintenant.\nWe don't want to take the time now.\tNous ne voulons pas en prendre le temps maintenant.\nWe don't want you to hurt yourself.\tNous ne voulons pas que vous vous blessiez.\nWe don't want you to hurt yourself.\tNous ne voulons pas que tu te blesses.\nWe easily figured out the password.\tNous avons facilement deviné le mot de passe.\nWe elected her captain of our team.\tNous l'avons élue capitaine de notre équipe.\nWe enjoyed ourselves at the picnic.\tNous nous sommes bien amusés au pique-nique.\nWe go to Boston as often as we can.\tNous allons à Boston le plus souvent possible.\nWe got married on October 20, 2013.\tNous nous sommes mariés le 20 octobre 2013.\nWe had a heavy rainfall last night.\tNous avons eu une forte pluie la nuit dernière.\nWe had a very good time last night.\tNous avons passé un très bon moment la nuit dernière.\nWe had a very hot summer this year.\tNous avons connu un été très chaud cette année.\nWe had no alternative but to fight.\tNous n'avions pas d'autres choix que de nous battre.\nWe happened to be in Hokkaido then.\tIl se trouvait qu'on était à Hokkaido à ce moment-là.\nWe happened to meet at the station.\tIl advint que nous nous rencontrâmes à la gare.\nWe happened to meet at the station.\tIl se trouve qu'on s'est vu à la gare.\nWe happened to meet at the station.\tIl se trouve qu'on s'est rencontré à la gare.\nWe happened to ride the same train.\tIl advint que nous voyagions dans le même train.\nWe happened to take the same train.\tIl se trouvait qu'on a pris le même train.\nWe have a long journey ahead of us.\tUn long voyage nous attend.\nWe have decided to adopt your idea.\tNous avons décidé d'adopter ton idée.\nWe have decided to adopt your idea.\tNous avons décidé d'adopter votre idée.\nWe have different ways of thinking.\tNous avons des façons de penser différentes.\nWe have known each other for years.\tNous nous connaissons depuis des années.\nWe have less than three hours left.\tIl nous reste moins de trois heures.\nWe have no means of transportation.\tNous ne disposons d'aucun moyen de transport.\nWe have no options but to continue.\tNous n'avons pas d'autres choix que de continuer.\nWe have no secrets from each other.\tNous n'avons aucun secret l'un pour l'autre.\nWe have to come together as a team.\tNous devons former une équipe.\nWe have to get you to the hospital.\tTu dois aller à l'hôpital !\nWe have to get you to the hospital.\tIl faut qu'on t'emmène à l'hôpital.\nWe have to make sure they're ready.\tNous devons nous assurer qu'ils sont prêts.\nWe have to weigh the pros and cons.\tNous devons peser les avantages et les inconvénients.\nWe have walked all around the lake.\tNous avons marché tout autour du lac.\nWe haven't actually set a date yet.\tNous n'avons pas encore fixé de date.\nWe haven't even discussed that yet.\tNous n'en avons même pas encore discuté.\nWe haven't had any major accidents.\tNous n'avons eu aucun accident majeur.\nWe haven't had much rain this year.\tNous n'avons pas eu beaucoup de pluie cette année.\nWe headed for the mountain cottage.\tNous nous dirigions vers notre maison de montagne.\nWe just want you to tell the truth.\tNous voulons simplement que tu dises la vérité.\nWe just want you to tell the truth.\tNous voulons simplement que vous disiez la vérité.\nWe learned that he had an accident.\tNous avons appris qu'il avait eu un accident.\nWe like to learn foreign languages.\tNous aimons apprendre des langues étrangères.\nWe like to learn foreign languages.\tNous aimons à apprendre des langues étrangères.\nWe loaded our baggage into the car.\tNous chargeâmes nos bagages dans la voiture.\nWe loaded our baggage into the car.\tNous avons chargé nos bagages dans la voiture.\nWe made a good impression, I think.\tNous avons fait bonne impression, je pense.\nWe must have something to live for.\tNous devons avoir une raison de vivre.\nWe need a bit more time to prepare.\tNous avons besoin d'un peu plus de temps pour nous préparer.\nWe need a firm quotation by Monday.\tNous avons besoin d'un devis ferme pour lundi.\nWe need to advertise on television.\tNous devons faire de la publicité à la télévision.\nWe often played chess after school.\tOn jouait souvent aux échecs après l'école.\nWe often played chess after school.\tNous jouions souvent aux échecs après l'école.\nWe often went skiing in the winter.\tNous allions souvent skier durant l'hiver.\nWe often went skiing in the winter.\tNous allions souvent skier au cours de l'hiver.\nWe only see each other on weekends.\tNous ne nous voyons que lors des week-ends.\nWe owe part of our success to luck.\tNous devons une part de notre succès à la chance.\nWe reached the top of the mountain.\tNous avons atteint le sommet de la montagne.\nWe reached the top of the mountain.\tNous atteignîmes le sommet de la montagne.\nWe reached the top of the mountain.\tNous parvînmes au sommet de la montagne.\nWe saw the children enter the room.\tNous avons vu les enfants rentrer dans la pièce.\nWe should make something like that.\tNous devrions faire quelque chose comme ça.\nWe should sometimes pause to think.\tNous devrions nous arrêter pour réfléchir de temps en temps.\nWe still have to look for the hook.\tIl nous reste à chercher l'hameçon.\nWe want you to be the team captain.\tNous voulons que vous soyez le capitaine de l'équipe.\nWe want you to be the team captain.\tNous voulons que tu sois le capitaine de l'équipe.\nWe were all present at her wedding.\tNous étions tous présents à son mariage.\nWe were all present at the meeting.\tNous étions tous présents à la réunion.\nWe were attacked by swarms of bees.\tNous étions attaqués par un essaim d'abeilles.\nWe were greeted by a cute waitress.\tNous fûmes accueillis par une ravissante serveuse.\nWe were greeted by a cute waitress.\tNous avons été accueillis par une ravissante serveuse.\nWe were greeted by a cute waitress.\tNous fûmes accueillies par une ravissante serveuse.\nWe were greeted by a cute waitress.\tNous avons été accueillies par une ravissante serveuse.\nWe were on the train for ten hours.\tNous sommes restés dans le train pendant dix heures.\nWe were rowing against the current.\tNous ramions à contre-courant.\nWe were surprised to hear the news.\tNous fûmes surpris d'entendre les nouvelles.\nWe were surprised to hear the news.\tNous avons été surpris d'entendre les nouvelles.\nWe were unable to follow his logic.\tNous étions incapables de suivre sa logique.\nWe will know the truth before long.\tAvant peu nous connaîtrons la vérité.\nWe will make every effort to do so.\tNous mettrons tout en œuvre pour le faire.\nWe won't get to you until tomorrow.\tNous ne te rejoindrons pas avant demain.\nWe would like to stay here tonight.\tNous aimerions passer la nuit ici.\nWe'll have little snow this winter.\tNous aurons peu de neige cet hiver.\nWe'll have to postpone the meeting.\tNous allons devoir reporter la réunion.\nWe'll make a sailor out of you yet.\tNous finirons par faire de toi un matelot.\nWe'll see each other again someday.\tOn se reverra un jour.\nWe'll start whenever you are ready.\tNous commencerons dès que vous êtes prêt.\nWe'll start whenever you are ready.\tNous commencerons dès que tu es prêt.\nWe're expecting Tom any minute now.\tNous attendons Tom d'une minute à l'autre maintenant.\nWe're getting a lot of things done.\tNous faisons beaucoup de choses.\nWe're getting a new car next month.\tNous aurons une nouvelle voiture le mois prochain.\nWe're going to give it another try.\tNous allons essayer à nouveau.\nWe're going to give it another try.\tOn va essayer encore une fois.\nWe're looking for a friend of ours.\tNous cherchons l'un de nos amis.\nWe're looking for a place to sleep.\tNous cherchons un endroit où dormir.\nWe're not doing this for the money.\tNous ne le faisons pas pour l'argent.\nWe're not going to make it in time.\tOn ne réussira pas à arriver à l'heure.\nWe're totally different people now.\tNous sommes désormais des gens complètement différents.\nWe've accomplished a lot of things.\tNous avons accompli beaucoup de choses.\nWe've already covered this subject.\tNous avons déjà couvert ce sujet.\nWe've been friends for a long time.\tNous avons été longtemps amis.\nWe've been friends for a long time.\tNous avons été longtemps amies.\nWe've got to get you to a hospital.\tIl nous faut t'emmener dans un hôpital.\nWe've got to get you to a hospital.\tIl nous faut vous emmener dans un hôpital.\nWere they in the library yesterday?\tÉtaient-ils hier à la bibliothèque ?\nWere you able to solve the problem?\tAs-tu pu résoudre le problème ?\nWere you able to solve the problem?\tAs-tu été en mesure de résoudre le problème ?\nWere you able to solve the problem?\tAvez-vous pu résoudre le problème ?\nWere you able to solve the problem?\tAvez-vous été en mesure de résoudre le problème ?\nWhat Tom did was incredibly stupid.\tCe que Tom a fait était incroyablement stupide.\nWhat am I supposed to do with that?\tQue suis-je censé en faire ?\nWhat am I supposed to do with that?\tQue suis-je censée en faire ?\nWhat am I supposed to do with them?\tQue suis-je supposé en faire ?\nWhat am I supposed to do with them?\tQue suis-je supposé faire d'eux ?\nWhat am I supposed to do with them?\tQue suis-je supposé faire d'elles ?\nWhat am I supposed to tell Tom now?\tQu'est-ce que je suis censé dire à Tom maintenant ?\nWhat am I supposed to tell Tom now?\tQue suis-je censé dire à Tom maintenant ?\nWhat am I supposed to tell Tom now?\tQue suis-je supposé dire à Tom maintenant ?\nWhat am I supposed to tell Tom now?\tQu'est-ce que je suis supposé dire à Tom maintenant ?\nWhat are the doctor's office hours?\tQuand le médecin tient-il sa consultation ?\nWhat are the doctor's office hours?\tQuels sont les horaires du cabinet du médecin ?\nWhat are the terms of the contract?\tQuels sont les termes du contrat ?\nWhat are you going to do with that?\tQu'allez-vous faire avec cela ?\nWhat are you going to do with that?\tQue vas-tu faire avec ça ?\nWhat did Tom get you for Christmas?\tQu'est-ce que Tom t'a offert à Noël ?\nWhat did he do during the holidays?\tQu'a-t-il fait pendant les vacances ?\nWhat do you have to complain about?\tDe quoi dois-tu te plaindre ?\nWhat do you love? What do you hate?\tQu'est-ce que tu aimes ? Qu'est-ce que tu détestes ?\nWhat do you love? What do you hate?\tQu'aimez-vous ? Que détestez-vous ?\nWhat do you love? What do you hate?\tQu'aimes-tu ? Que détestes-tu ?\nWhat do you say to a game of chess?\tQue dirais-tu d'une partie d'échecs ?\nWhat do you say to a game of chess?\tQue diriez-vous d'une partie d'échecs ?\nWhat do you suppose is in this box?\tQue supposez-vous qu'il y ait dans cette boîte ?\nWhat do you suppose is in this box?\tQue supposes-tu qu'il y ait dans cette boîte ?\nWhat do you think he meant by that?\tQue pensez-vous qu'il voulait dire par là ?\nWhat do you think he meant by that?\tQue penses-tu qu'il voulait dire par là ?\nWhat do you think of his new novel?\tQue penses-tu de son nouveau roman ?\nWhat do you think she is doing now?\tQue penses-tu qu'elle soit en train de faire ?\nWhat do you think she is doing now?\tQue pensez-vous qu'elle soit maintenant en train de faire ?\nWhat do you think she is doing now?\tQue penses-tu qu'elle soit maintenant en train de faire ?\nWhat do you think they'll do to me?\tQue pensez-vous qu'ils me feront ?\nWhat do you think they'll do to me?\tQue penses-tu qu'ils me feront ?\nWhat do you want for your birthday?\tQue veux-tu pour ton anniversaire ?\nWhat do you want for your birthday?\tQue voulez-vous pour votre anniversaire ?\nWhat do you want me to do about it?\tQue voulez-vous que j'y fasse ?\nWhat do you want me to do about it?\tQue veux-tu que j'y fasse ?\nWhat do you want the message to be?\tQue veux-tu que le message soit ?\nWhat do you want the message to be?\tQue voulez-vous que le message soit ?\nWhat does everyone do after school?\tQue fait chacun après l'école ?\nWhat grade did you get on the test?\tQuelle note avez-vous obtenue à l'examen ?\nWhat grade did you get on the test?\tQuelle note as-tu obtenue à l'examen ?\nWhat happened at that intersection?\tQu'est-il arrivé à ce croisement ?\nWhat happened at that intersection?\tQue c'est-il passé à ce croisement ?\nWhat has brought you here so early?\tQu'est-ce qui vous a amené si tôt ?\nWhat have you done with my luggage?\tQu'as-tu fait de mes bagages ?\nWhat he said turned out to be true.\tCe qu'il avait dit se révéla vrai.\nWhat he says is absolutely correct.\tCe qu'il dit est absolument exact.\nWhat he says makes no sense at all.\tCe qu'il raconte n'a vraiment aucun sens.\nWhat he's doing is against the law.\tCe qu'il fait est contraire à la loi.\nWhat is the local time in New York?\tQuelle heure est-il à New York ?\nWhat is the meaning of this phrase?\tQue veut dire cette phrase ?\nWhat is the meaning of this phrase?\tQue signifie cette phrase ?\nWhat is the most popular movie now?\tQuel est le film le plus populaire actuellement ?\nWhat is the origin of the universe?\tQuelle est l'origine de l'univers ?\nWhat kind of man do you think I am?\tQuelle sorte d'homme croyez-vous que je sois ?\nWhat kind of training have you had?\tQuelle sorte d'entraînement as-tu reçu ?\nWhat kind of training have you had?\tQuelle sorte de formation as-tu reçue ?\nWhat kind of wine do you recommend?\tQuelle sorte de vin recommandez-vous ?\nWhat magazines do you subscribe to?\tÀ quels magazines t'abonnes-tu ?\nWhat makes you think I'm not happy?\tQu'est-ce qui te fait croire que je ne suis pas heureux ?\nWhat makes you think I'm not happy?\tQu'est-ce qui te fait croire que je ne suis pas heureuse ?\nWhat makes you think I'm not happy?\tQu'est-ce qui vous fait croire que je ne suis pas heureux ?\nWhat makes you think I'm not happy?\tQu'est-ce qui vous fait croire que je ne suis pas heureuse ?\nWhat newspaper do you subscribe to?\tÀ quel journal es-tu abonné ?\nWhat newspaper do you subscribe to?\tÀ quel journal êtes-vous abonné ?\nWhat newspaper do you subscribe to?\tÀ quel journal êtes-vous abonnée ?\nWhat newspaper do you subscribe to?\tÀ quel journal êtes-vous abonnées ?\nWhat newspaper do you subscribe to?\tÀ quel journal êtes-vous abonnés ?\nWhat newspaper do you subscribe to?\tÀ quel journal es-tu abonnée ?\nWhat payment options are available?\tQuelles sont les options de paiement disponibles ?\nWhat should I do to stop hiccoughs?\tQue devrais-je faire pour arrêter un hoquet ?\nWhat should we do if he comes late?\tQue devrions-nous faire s'il vient tard ?\nWhat was it that brought you to me?\tQu'est-ce qui vous a mené à moi ?\nWhat was it that brought you to me?\tQu'est-ce qui vous a menée à moi ?\nWhat was it that brought you to me?\tQu'est-ce qui vous a menés à moi ?\nWhat was it that brought you to me?\tQu'est-ce qui vous a menées à moi ?\nWhat was it that brought you to me?\tQu'est-ce qui t'a mené à moi ?\nWhat was it that brought you to me?\tQu'est-ce qui t'a menée à moi ?\nWhat was the cause of the accident?\tQuelle a été la cause de l'accident ?\nWhat was the cause of the accident?\tQuelle fut la cause de l'accident ?\nWhat was the cause of your quarrel?\tQuelle fut la cause de votre querelle ?\nWhat would you like to do tomorrow?\tQu'aimerais-tu faire demain ?\nWhat would you like to do tomorrow?\tQu'aimeriez-vous faire demain ?\nWhat you don't know won't hurt you.\tCe que vous ignorez ne vous fera pas de mal.\nWhat you don't know won't hurt you.\tCe que tu ignores ne te fera pas de mal.\nWhat you said is absolute nonsense.\tCe que tu as dit est complètement insensé.\nWhat you said is complete nonsense.\tCe que tu as dit n'a aucun sens.\nWhat you said is complete nonsense.\tCe que tu as dit est totalement insensé.\nWhat you're doing makes me nervous.\tCe que vous êtes en train de faire me rend nerveux.\nWhat you're doing makes me nervous.\tCe que vous êtes en train de faire me rend nerveuse.\nWhat you're doing makes me nervous.\tCe que tu es en train de faire me rend nerveux.\nWhat you're doing makes me nervous.\tCe que tu es en train de faire me rend nerveuse.\nWhat'll you do if someone sees you?\tQue feras-tu si quelqu'un te voit ?\nWhat'll you do if someone sees you?\tQue ferez-vous si quelqu'un vous voit ?\nWhat're your plans for the weekend?\tQuels sont tes plans pour le week-end ?\nWhat're your plans for the weekend?\tQuels sont vos plans pour le week-end ?\nWhat's Tom going to do next summer?\tQu'est-ce que Tom va faire l'été prochain ?\nWhat's going to happen to our pets?\tQue va-t-il advenir de nos animaux de compagnie ?\nWhat's going to happen to our pets?\tQue va-t-il advenir de nos petits compagnons ?\nWhat's happened here is a travesty.\tCe qui s'est produit ici est une farce.\nWhat's the capital city of Finland?\tQuelle est la capitale de la Finlande ?\nWhat's the last thing you remember?\tQuelle est la dernière chose que vous vous rappelez ?\nWhat's the last thing you remember?\tQuelle est la dernière chose dont vous vous souvenez ?\nWhat's the real reason you're here?\tQuelle la véritable raison de votre présence ici ?\nWhat's the real reason you're here?\tQuelle la véritable raison de ta présence ici ?\nWhat's the weight of your suitcase?\tQuel est le poids de votre valise ?\nWhat's the weight of your suitcase?\tCombien pèse ta valise ?\nWhat's the weight of your suitcase?\tQuel est le poids de ta valise ?\nWhat's your favorite color of hair?\tQuelle est ta couleur de cheveux préférée ?\nWhat's your favorite kind of candy?\tQuelle est ta confiserie préférée ?\nWhat's your favorite pizza topping?\tQuelle est votre garniture de pizza préférée ?\nWhat's your favorite pizza topping?\tQuelle est ta garniture de pizza préférée ?\nWhat's your favorite way to travel?\tQuelle est votre façon de voyager préférée ?\nWhatever you do, don't forget this.\tQuoique tu fasses, n'oublie pas ça.\nWhen I bite down, this tooth hurts.\tLorsque je mords, cette dent me fait mal.\nWhen are you coming back to Boston?\tQuand est-ce que tu reviens à Boston ?\nWhen did you begin learning German?\tQuand as-tu commencé à apprendre l'allemand ?\nWhen did you begin learning German?\tQuand avez-vous commencé à apprendre l'allemand ?\nWhen did you come back from London?\tQuand êtes-vous revenus de Londres ?\nWhen did you get your first tattoo?\tQuand t'es-tu fait faire ton premier tatouage ?\nWhen did you start learning German?\tQuand as-tu commencé à apprendre l'allemand ?\nWhen did you start learning German?\tQuand avez-vous commencé à apprendre l'allemand ?\nWhen did your daughter come of age?\tQuand est-ce que ta fille a atteint sa majorité ?\nWhen he saw me, he started running.\tLorsqu'il me vit, il se mit à courir.\nWhen was the last time you saw Tom?\tQuand as-tu vu Tom pour la dernière fois ?\nWhen was the last time you saw her?\tQuand l'avez-vous vue pour la dernière fois ?\nWhen was the last time you saw her?\tQuand l'as-tu vue pour la dernière fois ?\nWhen was the last time you saw him?\tQuand l'avez-vous vu pour la dernière fois ?\nWhen was the last time you saw him?\tQuand l'as-tu vu pour la dernière fois ?\nWhen will the world come to an end?\tQuand le monde connaîtra-t-il une fin ?\nWhere are you going this afternoon?\tOù vas-tu cet après-midi ?\nWhere are you going this afternoon?\tOù vas-tu aller cette après-midi ?\nWhere are you going this afternoon?\tOù allez-vous vous rendre cet après-midi ?\nWhere can I obtain a map of Europe?\tOù puis-je obtenir une carte de l'Europe ?\nWhere did you get all those plants?\tOù as-tu récupéré toutes ces plantes ?\nWhere did you meet your girlfriend?\tOù as-tu rencontré ta copine ?\nWhere did you meet your girlfriend?\tOù as-tu rencontré ta petite-amie ?\nWhere did you meet your girlfriend?\tOù avez-vous rencontré votre petite-amie ?\nWhere do you want to sleep tonight?\tOù voulez-vous dormir cette nuit ?\nWhere do you want to sleep tonight?\tOù veux-tu dormir cette nuit ?\nWhere have you been all this while?\tOù avez-vous été durant tout ce temps ?\nWhere have you been all this while?\tOù as-tu été durant tout ce temps ?\nWhere is this play being performed?\tOù est-ce joué ?\nWhich TV show do you like the most?\tQuel programme de télévision appréciez-vous le plus ?\nWhich do you prefer, rice or bread?\tQue préfères-tu, du riz ou du pain ?\nWhich do you prefer, rice or bread?\tQue préférez-vous, du riz ou du pain ?\nWhich one of you wasn't on the bus?\tLequel d'entre vous ne se trouvait pas dans le bus ?\nWhich one of you wasn't on the bus?\tLaquelle d'entre vous ne se trouvait pas dans le bus ?\nWhich planet is closest to the sun?\tQuelle est la planète la plus proche du Soleil ?\nWhich wine goes best with red meat?\tQuel vin accompagne au mieux la viande rouge ?\nWhile there is life, there is hope.\tTant qu'il y a de la vie, il y a de l'espoir.\nWho are you to tell us we can't go?\tQui es-tu pour nous dire que nous ne pouvons pas partir ?\nWho are you to tell us we can't go?\tQui es-tu pour nous dire que nous ne pouvons pas y aller ?\nWho are you to tell us we can't go?\tQui êtes-vous pour nous dire que nous ne pouvons pas partir ?\nWho are you to tell us we can't go?\tQui êtes-vous pour nous dire que nous ne pouvons pas y aller ?\nWho is the woman in the brown coat?\tQui est cette femme qui porte un manteau brun ?\nWho painted this beautiful picture?\tQui a peint ce beau tableau ?\nWho wears the pants in your family?\tQui porte la culotte dans votre famille ?\nWho's that boy swimming over there?\tQui est ce garçon qui nage là-bas?\nWho's the next person on your list?\tQui est la personne suivante sur ta liste ?\nWho's the next person on your list?\tQui est la personne suivante sur votre liste ?\nWho's your favorite movie director?\tQui est votre metteur en scène préféré ?\nWho's your most interesting friend?\tQuel est ton ami le plus intéressant ?\nWho's your most interesting friend?\tQuel est celui de tes amis le plus intéressant ?\nWhy are we even talking about this?\tPourquoi en parlons-nous, même ?\nWhy are we even talking about this?\tPourquoi même en parlons-nous ?\nWhy are you looking at me that way?\tPourquoi me regardes-tu ainsi ?\nWhy did you accept this assignment?\tPourquoi avez-vous accepté cette mission ?\nWhy did you accept this assignment?\tPourquoi as-tu accepté cette mission ?\nWhy did you want to come back here?\tPourquoi as-tu voulu revenir ici ?\nWhy did you want to come back here?\tPourquoi avez-vous voulu revenir ici ?\nWhy didn't we think of that before?\tPourquoi n'avons-nous pas pensé à ça avant ?\nWhy didn't you just take the money?\tPourquoi n'as-tu pas juste pris l'argent ?\nWhy didn't you just take the money?\tPourquoi n'avez-vous pas juste pris l'argent ?\nWhy didn't you phone before coming?\tPourquoi n'as-tu pas téléphoné avant de venir ?\nWhy didn't you phone before coming?\tPourquoi n'avez-vous pas téléphoné avant de venir ?\nWhy do I have to do this by myself?\tPourquoi dois-je le faire seul ?\nWhy do I have to do this by myself?\tPourquoi dois-je le faire tout seul ?\nWhy do I have to do this by myself?\tPourquoi dois-je le faire seule ?\nWhy do I have to do this by myself?\tPourquoi dois-je le faire toute seule ?\nWhy do you want me to wait in here?\tPourquoi veux-tu que j'attende là-dedans ?\nWhy do you want me to wait in here?\tPourquoi voulez-vous que j'attende là-dedans ?\nWhy do you want to dress like that?\tPourquoi veux-tu t'habiller ainsi ?\nWhy do you want to dress like that?\tPourquoi voulez-vous vous habiller ainsi ?\nWhy does everyone think I'm stupid?\tPourquoi est-ce que tout le monde pense que je suis stupide ?\nWhy doesn't Tom want to go with us?\tPourquoi Tom ne veut-il pas aller avec nous ?\nWhy don't we go somewhere together?\tPourquoi n'allons-nous pas quelque part ensemble ?\nWhy don't we play tennis on Sunday?\tPourquoi ne jouons-nous pas au tennis dimanche ?\nWhy don't you come dancing with me?\tPourquoi ne venez-vous pas danser avec moi ?\nWhy don't you drop around sometime?\tPasse donc, un de ces jours.\nWhy don't you go to school with us?\tPourquoi ne vas-tu pas à l'école avec nous ?\nWhy don't you lie down for a while?\tPourquoi ne t'allonges-tu pas un moment ?\nWhy don't you lie down for a while?\tPourquoi ne vous allongez-vous pas un moment ?\nWhy don't you lie down for a while?\tPourquoi ne t'étends-tu pas un moment ?\nWhy don't you lie down for a while?\tPourquoi ne vous étendez-vous pas un moment ?\nWhy don't you read it for yourself?\tPourquoi ne le lisez-vous pas vous-même ?\nWhy don't you read it for yourself?\tPourquoi ne le lisez-vous pas vous-mêmes ?\nWhy don't you read it for yourself?\tPourquoi ne le lis-tu pas toi-même ?\nWhy don't you read it for yourself?\tPourquoi ne la lisez-vous pas vous-même ?\nWhy don't you read it for yourself?\tPourquoi ne la lisez-vous pas vous-mêmes ?\nWhy don't you read it for yourself?\tPourquoi ne la lis-tu pas toi-même ?\nWhy don't you try a different tack?\tPourquoi n'essaies-tu pas une autre piste ?\nWhy don't you want to come with us?\tPourquoi ne veux-tu pas venir avec nous ?\nWhy don't you want to wear a dress?\tPourquoi ne veux-tu pas porter de robe ?\nWhy don't you want to wear a dress?\tPourquoi ne voulez-vous pas porter de robe ?\nWhy is it that you are always late?\tComment se fait-il que tu sois toujours en retard ?\nWhy is it that you are always late?\tComment se fait-il que vous soyez toujours en retard ?\nWhy would God allow this to happen?\tPourquoi Dieu le permettrait-il ?\nWhy would anybody want to kill you?\tPourquoi quiconque voudrait vous tuer ?\nWhy would anybody want to kill you?\tPourquoi quiconque voudrait te tuer ?\nWhy would you want to be a teacher?\tPourquoi voudrais-tu être enseignante ?\nWhy would you want to be a teacher?\tPourquoi voudrais-tu être enseignant ?\nWhy would you want to be a teacher?\tPourquoi voudriez-vous être enseignant ?\nWhy would you want to be a teacher?\tPourquoi voudriez-vous être enseignante ?\nWill he be able to catch the train?\tArrivera-t-il à attraper le train ?\nWill there be any permanent damage?\tY aura-t-il des dommages définitifs ?\nWill we be in time for the concert?\tSerons-nous à l'heure au concert ?\nWill you be in Boston this weekend?\tSerez-vous à Boston ce week-end ?\nWill you be in Boston this weekend?\tSeras-tu à Boston ce week-end ?\nWill you buy me some bread, please?\tPourrais-tu, s'il te plait, acheter un peu de pain ?\nWill you guys please stop fighting?\tVous pouvez cesser de vous disputer ?\nWill you have another slice of pie?\tVeux-tu une autre part de tarte ?\nWill you have another slice of pie?\tVeux-tu une autre part de tourte ?\nWill you help me look for my purse?\tPeux-tu m'aider à retrouver mon porte-monnaie ?\nWill you let me know when he comes?\tMe feras-tu savoir quand il viendra ?\nWill you let me know when he comes?\tMe ferez-vous savoir quand il viendra ?\nWolves don't usually attack people.\tNormalement, les loups n'attaquent pas les gens.\nWolves usually don't attack people.\tEn général, les loups n'attaquent pas les gens.\nWolves won't usually attack people.\tNormalement, les loups n'attaquent pas les gens.\nWomen usually live longer than men.\tLes femmes vivent généralement plus longtemps que les hommes.\nWomen usually live longer than men.\tLes femmes vivent en général plus longtemps que les hommes.\nWomen were given the right to vote.\tOn donna aux femmes le droit de vote.\nWooden buildings catch fire easily.\tLes édifices en bois prennent facilement feu.\nWords rarely have only one meaning.\tLes mots ont rarement un seul sens.\nWork harder if you plan to succeed.\tTravaille avec davantage d'application, si tu veux réussir !\nWork harder if you plan to succeed.\tTravaillez avec davantage d'application, si vous voulez réussir !\nWould you like a little more salad?\tVoudriez-vous encore un peu de salade ?\nWould you like a little more salad?\tVoudrais-tu encore un peu de salade ?\nWould you like to be my apprentice?\tAimerais-tu être mon apprenti ?\nWould you like to be my apprentice?\tAimeriez-vous être mon apprenti ?\nWould you like to come to my party?\tVoudrais-tu venir à ma fête ?\nWould you like to come to my party?\tAimeriez-vous venir à ma fête ?\nWould you like to come to my party?\tAimeriez-vous vous joindre à ma soirée ?\nWould you like to come to my party?\tAimerais-tu venir à ma fête ?\nWould you like to hang out with us?\tAimerais-tu traîner avec nous ?\nWould you like to hear my new song?\tAimeriez-vous entendre ma nouvelle chanson ?\nWould you like to hear my new song?\tAimerais-tu entendre ma nouvelle chanson ?\nWould you like to talk to a lawyer?\tVoudriez-vous vous entretenir avec un avocat ?\nWould you like to talk to a lawyer?\tVoudrais-tu t'entretenir avec un avocat ?\nWould you mind babysitting my kids?\tEst-ce que ça te dérangerait de garder mes enfants ?\nWould you mind if I took a picture?\tCela vous dérangerait-il si je prenais une photo ?\nWould you mind if I took a picture?\tCela te dérangerait-il si je prenais une photo ?\nWould you mind lending me your car?\tVoudriez-vous bien me prêter votre voiture ?\nWould you mind lending me your car?\tVoudrais-tu bien me prêter ta voiture ?\nWould you mind lending me your pen?\tPourrais-tu me prêter ton stylo?\nWould you mind my opening the door?\tVous voulez bien que j'ouvre la porte ?\nWould you please wait for a minute?\tEst-ce que vous pouvez attendre un peu ?\nWould you tell me the time, please?\tVoudriez-vous, je vous prie, m'indiquer l'heure ?\nWould you tell me the time, please?\tVoudrais-tu, je te prie, m'indiquer l'heure ?\nWrite down your date of birth here.\tÉcrivez votre date de naissance ici.\nWrite it down before you forget it.\tNote-le avant de l'oublier.\nYesterday Mary stayed home all day.\tHier, Mary est restée à la maison toute la journée.\nYesterday was Sunday, not Saturday.\tHier c'était dimanche, pas samedi.\nYou and I have something in common.\tVous et moi avons quelque chose en commun.\nYou are difficult and incorrigible.\tTu es difficile et incorrigible.\nYou are entitled to try once again.\tTu as le droit d'essayer une nouvelle fois.\nYou are in part responsible for it.\tTu en es en partie responsable.\nYou are in part responsible for it.\tVous en êtes en partie responsable.\nYou are in part responsible for it.\tVous en êtes en partie responsables.\nYou are more stupid than I thought.\tTu es plus idiot que je pensais.\nYou are not supposed to smoke here.\tVous n'êtes pas censés fumer ici.\nYou are not supposed to smoke here.\tVous n'êtes pas censé fumer ici.\nYou are not supposed to smoke here.\tTu n'es pas censée fumer ici.\nYou are not supposed to smoke here.\tTu n'es pas censé fumer ici.\nYou are not supposed to smoke here.\tVous n'êtes pas censées fumer ici.\nYou are not supposed to smoke here.\tVous n'êtes pas censée fumer ici.\nYou are now on the way to recovery.\tVous êtes maintenant en voie de rétablissement.\nYou are our one millionth customer.\tVous êtes notre millionième client.\nYou are responsible for the result.\tVous êtes responsable des résultats.\nYou are responsible for the result.\tTu es responsable de ce résultat.\nYou are the very man I want to see.\tVous êtes précisément l'homme que je veux voir.\nYou are too sensitive to criticism.\tTu es trop sensible à la critique.\nYou are too sensitive to criticism.\tVous êtes trop sensible à la critique.\nYou are trusted by every one of us.\tChacun de nous te fait confiance.\nYou are trusted by every one of us.\tTu as la confiance de tous.\nYou bought it from Tom, didn't you?\tTu l'as acheté à Tom, n'est-ce pas ?\nYou bought it from Tom, didn't you?\tVous l'avez achetée à Tom, n'est-ce pas ?\nYou bought it from Tom, didn't you?\tVous l'avez acheté à Tom, n'est-ce pas ?\nYou bought it from Tom, didn't you?\tTu l'as achetée à Tom, n'est-ce pas ?\nYou can go wherever you want to go.\tTu peux te rendre où bon te semble.\nYou can go wherever you want to go.\tVous pouvez vous rendre où bon vous semble.\nYou can go wherever you want to go.\tVous pouvez vous rendre où vous voulez.\nYou can go wherever you want to go.\tTu peux te rendre où tu veux.\nYou can have someone do it for you.\tVous pouvez le faire faire par quelqu'un d'autre.\nYou can have someone do it for you.\tTu peux le faire faire par quelqu'un d'autre.\nYou can have this book for nothing.\tVous pouvez avoir ce livre gratuitement.\nYou can invite any person you like.\tTu peux inviter n'importe quelle personne que tu aimes.\nYou can pick out any book you like.\tVous pouvez choisir le livre que vous aimez.\nYou can rely on his proven ability.\tTu peux te fier à son expérience établie.\nYou can stay only if you are quiet.\tTu peux rester seulement si tu es tranquille.\nYou can stay only if you are quiet.\tVous pouvez rester seulement si vous êtes calmes.\nYou can stay with us for the night.\tTu peux rester avec nous pour la nuit.\nYou can trust him to keep his word.\tVous pouvez lui faire confiance pour tenir sa parole.\nYou can use my desk if you want to.\tTu peux utiliser mon bureau, si tu veux.\nYou can't always get what you want.\tTu ne peux pas toujours obtenir ce que tu veux.\nYou can't be in two places at once.\tOn ne peut pas être au four et au moulin.\nYou can't be in two places at once.\tOn ne peut se trouver à deux endroits à la fois.\nYou can't do both at the same time.\tOn ne peut pas faire les deux en même temps.\nYou can't do both at the same time.\tTu ne peux pas faire les deux en même temps.\nYou can't do both at the same time.\tVous ne pouvez pas faire les deux en même temps.\nYou can't do both at the same time.\tVous ne pouvez faire les deux en même temps.\nYou can't do both at the same time.\tTu ne peux faire les deux en même temps.\nYou can't do both at the same time.\tOn ne peut faire les deux en même temps.\nYou can't kick Tom out of the club.\tTu ne peux pas virer Tom du club.\nYou deserve so much more than this.\tTu mérites tellement plus que ceci.\nYou deserve so much more than this.\tVous méritez tellement plus que ceci.\nYou didn't buy that story, did you?\tTu n'as pas gobé cette histoire, quand même?\nYou didn't eat much lunch, did you?\tTu n'as pas beaucoup déjeuné, si ?\nYou didn't eat much lunch, did you?\tVous n'avez pas beaucoup déjeuné, si ?\nYou do know Tom's lying, don't you?\tTu sais que Tom ment, n'est-ce pas ?\nYou don't have to do what Tom says.\tVous n'avez pas à suivre Tom.\nYou don't have to do what Tom says.\tVous n'avez pas à faire ce que Tom dit.\nYou don't have to explain anything.\tVous n'avez pas besoin d'expliquer quoi que ce soit.\nYou don't have to explain anything.\tTu n'as pas besoin d'expliquer quoi que ce soit.\nYou don't know how much I love you.\tTu ignores combien je t'aime.\nYou don't know how much I love you.\tVous ignorez combien je vous aime.\nYou don't know what you're missing.\tTu ne sais pas ce que tu manques.\nYou don't know what you're missing.\tVous ne savez pas ce que vous manquez.\nYou don't know where it is, do you?\tTu ne sais pas où il est, n'est-ce pas ?\nYou don't know where it is, do you?\tTu ne sais pas où elle est, n'est-ce pas ?\nYou don't know where it is, do you?\tVous ne savez pas où elle est, n'est-ce pas ?\nYou don't know where it is, do you?\tVous ne savez pas où il est, n'est-ce pas ?\nYou don't really want that, do you?\tTu ne le veux pas vraiment, si ?\nYou don't really want that, do you?\tTu ne veux pas vraiment ça, si ?\nYou don't really want that, do you?\tVous ne le voulez pas vraiment, si ?\nYou don't really want that, do you?\tVous ne voulez pas vraiment ça, si ?\nYou don't sound entirely convinced.\tÀ t'entendre, tu n'es pas complètement convaincu.\nYou don't sound entirely convinced.\tÀ t'entendre, tu n'es pas complètement convaincue.\nYou don't sound entirely convinced.\tÀ vous entendre, vous n'êtes pas complètement convaincu.\nYou don't sound entirely convinced.\tÀ vous entendre, vous n'êtes pas complètement convaincue.\nYou don't sound entirely convinced.\tÀ vous entendre, vous n'êtes pas complètement convaincus.\nYou don't sound entirely convinced.\tÀ vous entendre, vous n'êtes pas complètement convaincues.\nYou don't understand the procedure.\tVous ne comprenez pas la procédure.\nYou don't understand the procedure.\tTu ne comprends pas la procédure.\nYou don't want to do anything rash.\tIl ne faudrait pas que tu commettes quelque chose d'imprudent.\nYou don't want to do anything rash.\tIl ne s'agirait pas que tu commettes quelque chose d'imprudent.\nYou don't want to do anything rash.\tIl ne faudrait pas que vous commettiez quelque chose d'imprudent.\nYou don't want to do anything rash.\tIl ne s'agirait pas que vous commettiez quelque chose d'imprudent.\nYou don't want to keep him waiting.\tTu ne veux pas le faire attendre !\nYou don't want to keep him waiting.\tVous ne voulez pas le faire attendre !\nYou don't want to see this, do you?\tTu ne veux pas voir ça, si ?\nYou don't want to see this, do you?\tTu ne veux pas voir ceci, si ?\nYou don't want to see this, do you?\tVous ne voulez pas voir ça, si ?\nYou don't want to see this, do you?\tVous ne voulez pas voir ceci, si ?\nYou had a good weekend, didn't you?\tTu as eu un bon weekend, n'est-ce pas ?\nYou have been a great mentor to me.\tVous avez été pour moi un mentor.\nYou have put your hat on backwards.\tTu as mis ton chapeau à l'envers.\nYou have something of a reputation.\tTu as une sacrée réputation.\nYou have something of a reputation.\tVous avez une sacrée réputation.\nYou have to adapt to circumstances.\tOn doit se plier aux circonstances.\nYou have to memorize this sentence.\tTu dois mémoriser cette phrase.\nYou have to memorize this sentence.\tVous devez mémoriser cette phrase.\nYou have to memorize this sentence.\tTu dois mémoriser cette sentence.\nYou have to memorize this sentence.\tVous devez mémoriser cette sentence.\nYou just have to do as you're told.\tIl s'agit juste de faire ce que tu as à faire comme on te l'a dit.\nYou know very well how it happened.\tTu sais très bien comment c'est arrivé.\nYou know very well how it happened.\tVous savez très bien comment c'est arrivé.\nYou know very well how it happened.\tTu sais très bien comment ça s'est produit.\nYou know very well how it happened.\tVous savez très bien comment ça s'est produit.\nYou look nice with your hair short.\tLes cheveux courts te vont bien.\nYou look nice with your hair short.\tTu as l'air chouette avec tes cheveux courts.\nYou look nice with your hair short.\tLes cheveux courts vous vont bien.\nYou may eat as much as you want to.\tTu peux manger autant que tu veux.\nYou may eat as much as you want to.\tVous pouvez manger autant que vous voulez.\nYou may still do it if you want to.\tTu peux toujours le faire si tu veux.\nYou might as well go kill yourself.\tTu peux tout aussi bien aller te pendre.\nYou might as well go kill yourself.\tVous pouvez tout aussi bien aller vous pendre.\nYou might at least say \"thank you.\"\tTu devrais au moins dire « merci ».\nYou might not want to mention that.\tIl se pourrait que tu ne veuilles pas mentionner ça.\nYou might not want to mention that.\tIl se pourrait que vous ne vouliez pas mentionner ça.\nYou must get rid of that bad habit.\tTu dois te débarrasser de cette mauvaise habitude.\nYou must have thought of something.\tTu dois avoir réfléchi à quelque chose.\nYou must have thought of something.\tVous devez avoir réfléchi à quelque chose.\nYou must overcome the difficulties.\tTu dois surmonter les difficultés.\nYou must read the textbook closely.\tVous devez lire le manuel avec attention.\nYou must read the textbook closely.\tTu dois lire le manuel avec attention.\nYou must read the textbook closely.\tOn doit lire le manuel avec attention.\nYou must take his age into account.\tTu dois prendre en compte son âge.\nYou must've thought I was an idiot.\tVous avez dû penser que j'étais un idiot.\nYou must've thought I was an idiot.\tVous avez dû penser que j'étais une idiote.\nYou must've thought I was an idiot.\tTu as dû penser que j'étais un idiot.\nYou must've thought I was an idiot.\tTu as dû penser que j'étais une idiote.\nYou never told me you were married.\tVous ne m'avez jamais dit que vous étiez marié.\nYou never told me you were married.\tTu ne m'as jamais dit que tu étais mariée.\nYou ought to be quiet in a library.\tVous devriez être silencieux dans une bibliothèque.\nYou probably just want to be alone.\tTu veux probablement juste être seul.\nYou probably just want to be alone.\tTu veux probablement juste être seule.\nYou probably just want to be alone.\tVous voulez probablement juste être seul.\nYou probably just want to be alone.\tVous voulez probablement juste être seuls.\nYou probably just want to be alone.\tVous voulez probablement juste être seules.\nYou probably just want to be alone.\tVous voulez probablement juste être seule.\nYou said it wasn't going to happen.\tTu as dit que ça n'allait pas arriver.\nYou seem to be in a bad mood today.\tTu sembles être de mauvaise humeur aujourd'hui.\nYou seem to be in a bad mood today.\tVous semblez être de mauvaise humeur aujourd'hui.\nYou should be careful what you say.\tTu devrais faire attention à ce que tu dis.\nYou should carry out your promises.\tTu devrais remplir tes promesses.\nYou should carry out your promises.\tVous devriez remplir vos promesses.\nYou should have consulted me first.\tVous auriez dû me consulter en premier.\nYou should have consulted me first.\tTu aurais dû me consulter en premier.\nYou should have told him the truth.\tVous auriez dû lui dire la vérité.\nYou should have your eyes examined.\tTu devrais faire examiner tes yeux.\nYou should have your eyes examined.\tVous devriez faire examiner vos yeux.\nYou should have your head examined.\tTu devrais faire examiner ta tête.\nYou should not keep people waiting.\tTu ne devrais pas faire attendre les gens.\nYou should not talk back like that.\tTu ne devrais pas répondre de la sorte.\nYou should not talk back like that.\tVous ne devriez pas répondre de la sorte.\nYou should try to be more like Tom.\tTu devrais plus t'inspirer de Tom.\nYou shouldn't drink stagnant water.\tTu ne devrais pas boire d'eau croupie.\nYou want me to help you, don't you?\tTu veux que je t'aide, n'est-ce pas ?\nYou want me to help you, don't you?\tVous voulez que je vous aide, n'est-ce pas ?\nYou warned me, but I didn't listen.\tTu m'as prévenu, mais je n'ai pas écouté.\nYou warned me, but I didn't listen.\tVous m'avez prévenu, mais je n'ai pas écouté.\nYou warned me, but I didn't listen.\tTu m'as prévenue, mais je n'ai pas écouté.\nYou warned me, but I didn't listen.\tVous m'avez prévenue, mais je n'ai pas écouté.\nYou were such a big help yesterday.\tTu as été d'une grande utilité, hier.\nYou were such a big help yesterday.\tVous avez été d'une grande utilité, hier.\nYou will be missed by your friends.\tVous allez manquer à vos amis.\nYou will be missed by your friends.\tTu manqueras à tes amis.\nYou will keep your word, won't you?\tTu tiendras parole, n'est-ce pas ?\nYou will keep your word, won't you?\tVous tiendrez parole, n'est-ce pas ?\nYou will never be too old to learn.\tPersonne n'est trop vieux pour apprendre.\nYou will never be too old to learn.\tOn n'est jamais trop vieux pour apprendre.\nYou will never be too old to learn.\tOn est jamais trop vieux pour apprendre.\nYou will never be too old to learn.\tTu n'es pas trop vieux pour apprendre.\nYou'd best be home before midnight.\tTu ferais mieux d'être à la maison avant minuit.\nYou'd better go. It's getting late.\tTu ferais mieux d'y aller. Il se fait tard.\nYou'd better go. It's getting late.\tVous feriez mieux d'y aller. Il se fait tard.\nYou'd better see a dentist at once.\tTu devrais immédiatement consulter un dentiste.\nYou'd better wait for the next bus.\tTu ferais mieux d'attendre le prochain bus.\nYou'll wish you had studied harder.\tTu souhaiteras avoir étudié avec plus d'application.\nYou're always anticipating trouble.\tTu prévois toujours des problèmes.\nYou're always anticipating trouble.\tVous anticipez toujours des ennuis.\nYou're giving me the same old line.\tC'est toujours la même litanie que tu me racontes.\nYou're never going to believe this.\tTu ne vas jamais le croire.\nYou're never going to believe this.\tVous n'allez jamais le croire.\nYou're new around here, aren't you?\tTu es nouveau dans le coin, n'est-ce pas ?\nYou're new around here, aren't you?\tVous êtes nouveau par ici, n'est-ce pas ?\nYou're not going to do it, are you?\tTu ne vas pas le faire, n'est-ce pas ?\nYou're not going to do it, are you?\tVous n'allez pas le faire, n'est-ce pas?\nYou're the only person I can trust.\tVous êtes la seule personne en qui j'ai confiance.\nYou're the only person I can trust.\tTu es la seule personne en qui j'ai confiance.\nYou've been cleared of all charges.\tVous avez été lavé de tout soupçon.\nYou've been cleared of all charges.\tTu as été lavé de tout soupçon.\nYou've been cleared of all charges.\tToutes les charges contre vous ont été retirées.\nYou've been cleared of all charges.\tToutes les charges contre toi ont été retirées.\nYour daughter overheard us talking.\tVotre fille nous a entendus parler.\nYour daughter overheard us talking.\tTa fille nous a entendus parler.\nYour effort will surely bear fruit.\tTes efforts porteront très certainement leurs fruits.\nYour effort will surely bear fruit.\tVos efforts porteront très certainement leurs fruits.\nYour ideas are different from mine.\tVos idées sont différentes des miennes.\nYour ideas are quite old fashioned.\tTes idées sont un peu vieux jeu.\nYour ideas are quite old fashioned.\tVos idées sont un peu vieux jeu.\nYour ideas are quite old fashioned.\tTes idées sont un peu dépassées.\nYour method is different from mine.\tTes méthodes sont différentes des miennes.\nYour parents didn't come, did they?\tTes parents ne sont pas venus, n'est-ce pas ?\nYour parents didn't come, did they?\tVos parents ne sont pas venus, n'est-ce pas ?\nYour sister's as beautiful as ever.\tVotre sœur est toujours aussi belle.\nYour sister's as beautiful as ever.\tTa sœur est toujours aussi belle.\nYour son must be quite tall by now.\tVotre fils doit être assez grand maintenant.\nYour threats don't scare me at all.\tTes menaces ne me font pas du tout peur.\nYour threats don't scare me at all.\tVos menaces ne me font pas du tout peur.\n\"Are you sad?\" \"No. Why would I be?\"\t« Es-tu triste ? » « Non, pourquoi le serais-je ? »\n\"Are you sad?\" \"No. Why would I be?\"\t« Êtes-vous triste ? » « Non, pourquoi le serais-je ? »\n\"Is he seriously ill?\" \"I hope not.\"\t\"Est-il sérieusement malade ?\" \"J'espère que non.\"\n\"Where's your book?\" \"On the table.\"\t« Où est ton livre ? » « Sur la table. »\n\"Where's your book?\" \"On the table.\"\t« Où se trouve votre livre ? » « Sur la table. »\n\"Will he recover soon?\" \"I hope so.\"\t\"Sera-t-il bientôt sur pieds ?\" \"Je l'espère.\"\nA Japanese wouldn't do such a thing.\tUn Japonais ne ferait pas une telle chose.\nA butterfly is a mature caterpillar.\tUn papillon est une chenille adulte.\nA car in the parking lot is on fire.\tUne voiture garée dans le parking brûle.\nA cat was sleeping in the bass drum.\tUn chat dormait sur la grosse caisse.\nA cat was sleeping in the bass drum.\tUn chat était en train de dormir sur la grosse caisse.\nA ceasefire began a few hours later.\tUn cessez-le-feu prit effet quelques heures plus tard.\nA cold wind was blowing on his face.\tUn vent glacial lui soufflait sur le visage.\nA dog can run faster than a man can.\tUn chien court plus vite qu'un homme.\nA famous architect built this house.\tUn architecte connu a construit cette maison.\nA friend in need is a friend indeed.\tUn ami dans le besoin, est un ami quand même.\nA friend of mine is studying abroad.\tUn ami à moi étudie à l'étranger.\nA gunshot was heard in the distance.\tUne détonation se fit entendre au loin.\nA gunshot was heard in the distance.\tUn coup de feu se fit entendre au loin.\nA home is more than a mere building.\tUn foyer est plus qu'un simple bâtiment.\nA home is more than a mere building.\tUne maison est plus qu'un simple bâtiment.\nA home is more than a mere building.\tUn chez soi est davantage qu'une simple construction.\nA hot bath made me feel much better.\tUn bain brûlant me fit me sentir beaucoup mieux.\nA hundred years is called a century.\tUne centaine d'années est appelée un siècle.\nA lot of jobs are done by computers.\tDe nombreux travaux sont réalisés par les ordinateurs.\nA lot of people applied for the job.\tBeaucoup de personnes ont postulé le travail.\nA lot of people are waiting for Tom.\tBeaucoup de gens attendent Tom.\nA lot of people are waiting for Tom.\tDe nombreuses personnes sont en train d'attendre Tom.\nA lot of students do part-time jobs.\tBeaucoup d'étudiants font des boulots à temps partiel.\nA man appeared from behind the door.\tUn homme est apparu derrière la porte.\nA map helps us to know where we are.\tUn plan nous aide à savoir où nous sommes.\nA mighty cheer burst from the crowd.\tUn énorme cri d'encouragement s'éleva de la foule.\nA monkey is climbing up a tall tree.\tUn singe grimpe sur un grand arbre.\nA new topic came up in conversation.\tUn nouveau sujet arriva dans la conversation.\nA number of passengers were injured.\tNombre de passagers furent blessés.\nA number of passengers were injured.\tNombre de passagers ont été blessés.\nA parrot can mimic a person's voice.\tUn perroquet peut imiter la voix d'une personne.\nA picture is worth a thousand words.\tUne image vaut mille mots.\nA red light was glowing in the dark.\tUne lumière rouge luisait dans l'obscurité.\nA strange thing happened last night.\tUne chose étrange s'est passée hier soir.\nA team of paramedics is standing by.\tUne équipe paramédicale se tient prête.\nA woman appeared from behind a tree.\tUne femme est apparue de derrière un arbre.\nAbove all, don't forget to write me.\tSurtout, n'oubliez pas de m'écrire.\nAbove all, don't forget to write me.\tSurtout, n'oublie pas de m'écrire.\nAbove all, you must help each other.\tSurtout, il faut vous entraider.\nAfter breakfast, we went for a walk.\tAprès le petit déjeuner nous sommes allés faire un tour.\nAfter breakfast, we went for a walk.\tAprès le petit déjeuner nous allâmes faire une promenade.\nAfter taking a bath, Tom ate dinner.\tAprès avoir pris un bain, Tom dîna.\nAfter taking a bath, Tom ate dinner.\tAprès avoir pris un bain, Tom a dîné.\nAir is to man what water is to fish.\tL'air est à l'homme ce que l'eau est au poisson.\nAir is to men what water is to fish.\tL'air est aux hommes ce que l'eau est aux poissons.\nAll citizens should respect the law.\tTous les citoyens devraient respecter la loi.\nAll in all, the novel was a success.\tTout bien considéré le roman a été un succès.\nAll major credit cards are accepted.\tToutes les principales cartes de crédit sont acceptées.\nAll of a sudden, she began to laugh.\tD'un seul coup, elle se mit à rire.\nAll of a sudden, the lights went on.\tCes lumières s'éteignirent subitement.\nAll of us looked through the window.\tNous avons tous regardé par la fenêtre.\nAll the students attended the party.\tTous les élèves ont assisté à la fête.\nAll you can do is trust one another.\tVous n'avez rien à faire sauf vous faire confiance.\nAll you have to do is try your best.\tTout ce que tu as à faire c'est de faire de ton mieux.\nAll you have to do is write it down.\tTout ce que vous avez à faire, c'est de l'écrire noir sur blanc.\nAll your questions will be answered.\tOn répondra à toutes tes questions.\nAll your questions will be answered.\tOn répondra à toutes vos questions.\nAlmost all of my neighbors are nice.\tMes voisins sont presque tous sympathiques.\nAlmost everything has been improved.\tPresque tout a été amélioré.\nAlmost everything has gotten better.\tPresque tout s'est amélioré.\nAm I seeing what I think I'm seeing?\tEst-ce que je vois ce que je pense voir ?\nAn elephant isn't as big as a whale.\tUn éléphant n'est pas aussi grand qu'une baleine.\nAn expensive car is a status symbol.\tUne voiture chère est un symbole de statut social.\nAnd then something amazing happened.\tEt puis quelque chose d'étonnant est survenu.\nAny amount of money will be welcome.\tN'importe quelle somme d'argent sera la bienvenue.\nAny further discussion is pointless.\tToute discussion supplémentaire est futile.\nAny further discussion is pointless.\tCe n'est plus la peine de discuter.\nAnybody would be better than nobody.\tN'importe qui sera mieux que personne.\nArabic is a very important language.\tL'arabe est une langue très importante.\nAre we being charged with something?\tSommes-nous accusés de quelque chose ?\nAre we being charged with something?\tSommes-nous accusées de quelque chose ?\nAre we being charged with something?\tSommes-nous l'objet d'une accusation ?\nAre we being charged with something?\tFaisons-nous l'objet d'une accusation ?\nAre you accusing me of being a liar?\tM'accuses-tu d'être un menteur ?\nAre you accusing me of being a liar?\tM'accuses-tu d'être une menteuse ?\nAre you accusing me of being a liar?\tM'accusez-vous d'être un menteur ?\nAre you accusing me of being a liar?\tM'accusez-vous d'être une menteuse ?\nAre you coming to the party tonight?\tViens-tu à la fête ce soir ?\nAre you coming to the party tonight?\tVenez-vous à la fête ce soir ?\nAre you coming to the store with me?\tViens-tu avec moi au magasin ?\nAre you coming to the store with me?\tVenez-vous avec moi au magasin ?\nAre you for or against the proposal?\tÊtes-vous pour ou contre cette proposition?\nAre you for or against the proposal?\tEs-tu pour ou contre la proposition ?\nAre you going to attend the meeting?\tVas-tu assister à la réunion ?\nAre you going to attend the meeting?\tParticiperez-vous à la réunion ?\nAre you going to attend the meeting?\tParticiperas-tu à la réunion ?\nAre you going to mow the lawn today?\tVas-tu tondre la pelouse aujourd'hui ?\nAre you pleased with your new house?\tÊtes-vous satisfait de votre nouvelle maison ?\nAre you saying my life is in danger?\tEs-tu en train de dire que ma vie est en danger ?\nAre you saying my life is in danger?\tÊtes-vous en train de dire que ma vie est en danger ?\nAre you sure we've never met before?\tÊtes-vous sûr que nous ne nous sommes jamais rencontrés auparavant ?\nAre you sure we've never met before?\tÊtes-vous sûre que nous ne nous sommes jamais rencontrés auparavant ?\nAre you sure we've never met before?\tÊtes-vous sûre que nous ne nous sommes jamais rencontrées auparavant ?\nAre you sure we've never met before?\tÊtes-vous sûres que nous ne nous sommes jamais rencontrés auparavant ?\nAre you sure we've never met before?\tÊtes-vous sûres que nous ne nous sommes jamais rencontrées auparavant ?\nAre you sure we've never met before?\tÊtes-vous sûrs que nous ne nous sommes jamais rencontrés auparavant ?\nAre you sure we've never met before?\tEs-tu sûre que nous ne nous sommes jamais rencontrés auparavant ?\nAre you sure we've never met before?\tEs-tu sûre que nous ne nous sommes jamais rencontrées auparavant ?\nAre you sure we've never met before?\tEs-tu sûr que nous ne nous sommes jamais rencontrés auparavant ?\nAre you sure you didn't do anything?\tEs-tu certain de n'avoir rien fait ?\nAre you sure you didn't do anything?\tÊtes-vous certain de n'avoir rien fait ?\nAre you sure you didn't do anything?\tEs-tu certaine de n'avoir rien fait ?\nAre you sure you didn't do anything?\tÊtes-vous certaine de n'avoir rien fait ?\nAre you sure you didn't do anything?\tÊtes-vous certains de n'avoir rien fait ?\nAre you sure you didn't do anything?\tÊtes-vous certaines de n'avoir rien fait ?\nAre you sure you don't want to come?\tTu es sûr de ne pas vouloir venir ?\nAre you sure you don't want to come?\tTu es sûre de ne pas vouloir venir ?\nAre you sure you don't want to come?\tÊtes-vous sûr de ne pas vouloir venir ?\nAre you sure you don't want to come?\tÊtes-vous sûres de ne pas vouloir venir ?\nAre you sure you don't want to come?\tÊtes-vous sûre de ne pas vouloir venir ?\nAre you sure you don't want to come?\tÊtes-vous sûrs de ne pas vouloir venir ?\nAre you telling me how to do my job?\tEs-tu en train de me dire comment faire mon boulot ?\nAre you telling me how to do my job?\tÊtes-vous en train de me dire comment faire mon boulot ?\nAre you through with your breakfast?\tAs-tu terminé ton petit-déjeuner ?\nAre you through with your breakfast?\tAvez-vous terminé votre petit-déjeuner ?\nAre you trying to make a fool of me?\tEst-ce que tu veux me ridiculiser ?\nAre you willing to take that chance?\tTu es sûr de vouloir prendre ce risque ?\nAren't you sick of eating fast food?\tN'en as-tu pas assez de manger de la restauration rapide ?\nAren't you sick of eating fast food?\tN'en avez-vous pas assez de manger de la restauration rapide ?\nAs far as I know, he is not married.\tIl n'est pas marié à ce que je sache.\nAs long as we live, we have to work.\tAussi longtemps que nous vivons, nous devons travailler.\nAs soon as the bell rang, we got up.\tDès que la cloche a sonné nous nous sommes levés.\nAsk him when the next plane will be.\tDemande-lui quand est le prochain avion.\nAt first, the Indians were friendly.\tAu début, les Indiens furent amicaux.\nAt last, we reached our destination.\tNous avons finalement atteint notre destination.\nAt last, we reached our destination.\tNous atteignîmes enfin notre but.\nAt that time, Tom wasn't very happy.\tÀ cette époque, Thomas n'était pas vraiment heureux.\nBartender, I'd like to have a drink.\tBarman, je voudrais une boisson.\nBartender, I'd like to have a drink.\tBarmaid, je voudrais à boire.\nBecause of rain, I could not go out.\tÀ cause de la pluie, je n'ai pas pu sortir.\nBefore he died, he was almost blind.\tAvant de mourir, il était presque aveugle.\nBelieve it or not, I went skydiving.\tQu'on le croit ou non, j'ai fait du parachutisme.\nBlack smoke came out of the chimney.\tDe la fumée noire sortit de la cheminée.\nBoth Tom and Mary were absent today.\tThomas et Marie étaient tous les deux absents aujourd'hui.\nBoth his father and mother are dead.\tSon père et sa mère sont tous deux morts.\nBoth of my parents have passed away.\tMes parents sont tous deux décédés.\nBrown is not her natural hair color.\tLe brun n'est pas sa couleur de cheveux naturelle.\nBy the way, how many kids are going?\tAu fait, combien d'enfants y vont ?\nCDs have taken the place of records.\tLes CD ont pris la place des vinyls.\nCan I borrow it for about two weeks?\tPuis-je l'emprunter pour deux semaines environ ?\nCan I exchange yen for dollars here?\tPuis-je changer des yens contre des dollars ici ?\nCan I give you some friendly advice?\tJe peux vous donner un conseil d'ami?\nCan I speak to the person in charge?\tPuis-je parler au responsable ?\nCan I use a credit card for payment?\tPuis-je utiliser une carte de crédit pour payer ?\nCan anything ever be the same again?\tQuoi que ce soit peut-il jamais être à nouveau pareil ?\nCan foreign students be in the club?\tEst-ce que les étudiants étrangers peuvent entrer dans ce club ?\nCan one of you open the door for me?\tL'un d'entre vous peut-il ouvrir la porte pour moi ?\nCan this be just between you and me?\tCeci peut-il juste rester entre vous et moi ?\nCan this be just between you and me?\tCeci peut-il juste rester entre toi et moi ?\nCan this be just between you and me?\tCeci peut-il juste rester entre nous ?\nCan you come into my office, please?\tPeux-tu venir dans mon bureau, s'il te plaît ?\nCan you come into my office, please?\tPouvez-vous venir dans mon bureau, s'il vous plaît ?\nCan you drive a manual transmission?\tSais-tu conduire avec une transmission manuelle ?\nCan you drive a manual transmission?\tSavez-vous conduire avec une transmission manuelle ?\nCan you explain what PKO stands for?\tPouvez-vous expliquer ce que PKO veut dire ?\nCan you express yourself in English?\tPeux-tu t'exprimer en anglais ?\nCan you express yourself in English?\tSais-tu t'exprimer en anglais ?\nCan you forget your native language?\tPeux-tu oublier ta langue natale ?\nCan you forget your native language?\tPouvez-vous oublier votre langue natale ?\nCan you help me with the washing up?\tPeux-tu m'aider à faire la vaisselle ?\nCan you imagine walking on the moon?\tPeux-tu imaginer marcher sur la Lune ?\nCan you justify the use of violence?\tPeut-on justifier l'usage de la violence ?\nCan you recommend a good dictionary?\tPeux-tu me recommander un bon dictionnaire?\nCan you recommend a good restaurant?\tPouvez-vous me recommander un bon restaurant?\nCan you tell us what you're wearing?\tPeux-tu nous dire ce que tu portes ?\nCan you tell us what you're wearing?\tPouvez-vous nous dire ce que vous portez ?\nCan you wake me up at 7:00 tomorrow?\tPourrais-tu me réveiller à sept heures demain ?\nCarelessness often causes accidents.\tL'imprudence cause souvent des accidents.\nChildren want to act like grown-ups.\tLes enfants veulent se comporter comme des adultes.\nChristmas falls on Sunday this year.\tNoël tombe un dimanche cette année.\nChristmas is just around the corner.\tNoël approche.\nCleaning the garage wasn't much fun.\tNettoyer le garage n'était pas une partie de plaisir.\nColumbus discovered America in 1492.\tColomb a découvert l'Amérique en 1492.\nCome any closer, and I'll shoot you.\tRapproche-toi le moins du monde et je te descends !\nCome any closer, and I'll shoot you.\tRapprochez-vous le moins du monde et je vous descends !\nCome downstairs as soon as possible.\tDescendez dès que possible.\nCome see me if you are free tonight.\tViens me voir si tu es libre ce soir.\nCongratulations on your anniversary.\tFélicitations pour ton anniversaire.\nCongress asked for more information.\tLe Congrès demanda davantage d'information.\nCorrect the errors if there are any.\tCorrige les erreurs s'il y en a.\nCorrect the errors if there are any.\tCorrige les erreurs, s'il s'en trouve.\nCorrect the errors if there are any.\tCorrigez les erreurs éventuelles.\nCould somebody please open the door?\tQuelqu'un pourrait-il ouvrir la porte, s'il vous plait ?\nCould we have a table by the window?\tPouvons-nous avoir une table près de la fenêtre ?\nCould we have a table in the corner?\tPourrions-nous avoir une table dans le coin ?\nCould you bring us the bill, please?\tJ'aimerais la note, je vous prie.\nCould you buy everything you needed?\tAs-tu pu acheter tout ce dont tu avais besoin ?\nCould you buy everything you needed?\tAs-tu pu acheter tout ce dont vous aviez besoin ?\nCould you buy everything you needed?\tAvez-vous pu acheter tout ce dont vous aviez besoin ?\nCould you find a room for my sister?\tPourriez-vous trouver une chambre pour ma sœur ?\nCould you find out how to get there?\tPourriez-vous trouver comment se rendre là-bas ?\nCould you make a reservation for me?\tPourriez-vous faire une réservation pour moi ?\nCould you move just a little closer?\tPourriez-vous vous rapprocher juste un peu ?\nCould you move just a little closer?\tPourrais-tu te rapprocher juste un peu ?\nCould you please fix this flat tire?\tPourriez-vous réparer ce pneu à plat, je vous prie ?\nCould you reduce the price a little?\tPourriez-vous réduire un peu le prix ?\nCould you send this letter to Japan?\tPouvez-vous envoyer cette lettre au Japon ?\nCould you speak more slowly, please?\tPouvez-vous parler plus lentement, s'il vous plait ?\nCover the seeds with a little earth.\tCouvrez les graines d'un peu de terre.\nCows are eating grass in the meadow.\tLes vaches paissent dans le pré.\nCows are eating grass in the meadow.\tLes vaches mangent l'herbe du pâturage.\nDemocracy is one form of government.\tLa démocratie est une forme de gouvernement.\nDid I interrupt something important?\tAi-je interrompu quelque chose d'important ?\nDid Tom tell you where he was going?\tTom t'a-t-il dit où il allait ?\nDid Tom tell you where he was going?\tTom vous a-t-il dit où il allait ?\nDid Tom tell you where the party is?\tTom t'a-t-il dit où la soirée a lieu ?\nDid Tom tell you where the party is?\tTom vous a-t-il dit où la fête a lieu ?\nDid he say anything about it to you?\tVous-a-t-il dit quelque chose à propos de ça ?\nDid you enjoy yourself last evening?\tEst-ce que tu t'es amusé hier soir ?\nDid you enjoy yourself last evening?\tT'es-tu amusé, hier soir ?\nDid you enjoy yourself last evening?\tT'es-tu amusée, hier soir ?\nDid you get enough sleep last night?\tAs-tu suffisamment dormi la nuit dernière ?\nDid you have breakfast this morning?\tAs-tu pris un petit-déjeuner ce matin ?\nDid you have breakfast this morning?\tAvez-vous pris un petit-déjeuner ce matin ?\nDid you have breakfast this morning?\tAs-tu petit-déjeuné ce matin ?\nDid you have breakfast this morning?\tAvez-vous petit-déjeuné ce matin ?\nDid you hear my son play the violin?\tAs-tu entendu mon fils jouer du violon ?\nDid you inform your teacher of this?\tAs-tu prévenu ton professeur de cela ?\nDid you reserve a room at the hotel?\tAs-tu réservé une chambre à l'hôtel ?\nDid you say that Tom is your friend?\tAs-tu dit que Tom est ton ami ?\nDid you tell everybody all about me?\tAs-tu tout raconté à mon sujet, à tout le monde ?\nDid you tell everybody all about me?\tAvez-vous tout raconté à mon sujet, à tout le monde ?\nDid you try restarting the computer?\tAs-tu tenté de redémarrer l'ordinateur ?\nDid you try restarting the computer?\tAs-tu essayé de redémarrer l'ordinateur ?\nDid you try restarting the computer?\tAvez-vous tenté de redémarrer l'ordinateur ?\nDid you try restarting the computer?\tAvez-vous essayé de redémarrer l'ordinateur ?\nDidn't you hear her speaking French?\tL'avez-vous entendue parler français ?\nDo I have to spell this out for you?\tDois-je vous le clarifier ?\nDo I have to spell this out for you?\tDois-je te le clarifier ?\nDo I have to take off my shoes here?\tDois-je ôter mes chaussures, ici ?\nDo we have time for a cup of coffee?\tAvons-nous le temps pour un café ?\nDo you always greet people that way?\tEst-ce que tu salues toujours les gens de cette façon ?\nDo you approve of what she is doing?\tApprouves-tu ce qu'elle fait ?\nDo you approve of what she is doing?\tApprouvez-vous ce qu'elle fait ?\nDo you believe in the power of love?\tCrois-tu au pouvoir de l'amour ?\nDo you believe in the power of love?\tCroyez-vous au pouvoir de l'amour ?\nDo you eat three square meals a day?\tManges-tu trois repas complets par jour ?\nDo you eat three square meals a day?\tMangez-vous trois repas complets par jour ?\nDo you feel birthdays are important?\tAs-tu le sentiment que les anniversaires sont importants ?\nDo you feel birthdays are important?\tAvez-vous le sentiment que les anniversaires sont importants ?\nDo you have an appointment with him?\tAs-tu rendez-vous avec lui ?\nDo you have any Japanese newspapers?\tAs-tu des journaux Japonais ?\nDo you have any brothers or sisters?\tAvez-vous des frères et sœurs ?\nDo you have any idea where Tom went?\tAs-tu une idée d'où Tom est allé ?\nDo you have anything further to say?\tAvez-vous quelque chose d'autre à dire ?\nDo you have enough money to buy one?\tAvez-vous assez d'argent pour en acheter un ?\nDo you have enough money to buy one?\tAs-tu assez d'argent pour en acheter une ?\nDo you have professional experience?\tAvez-vous une expérience professionnelle ?\nDo you know Tom's girlfriend's name?\tConnais-tu le nom de la copine de Tom ?\nDo you know Tom's girlfriend's name?\tConnaissez-vous le nom de la petite-amie de Tom ?\nDo you know how fast you were going?\tSavez-vous à quelle allure vous alliez ?\nDo you know how fast you were going?\tSais-tu à quelle allure tu allais ?\nDo you know how to get to our place?\tSavez-vous comment vous rendre chez nous ?\nDo you know how to get to our place?\tSais-tu comment parvenir chez nous ?\nDo you know how to use a dictionary?\tSais-tu utiliser un dictionnaire ?\nDo you know how to use this machine?\tSavez-vous comment vous servir de cette machine ?\nDo you know how to use this machine?\tSais-tu comment te servir de cette machine ?\nDo you know if Tom can speak French?\tSavez-vous si Tom peut parler français ?\nDo you know if Tom can speak French?\tSais-tu si Tom peut parler français ?\nDo you know the name of this flower?\tSais-tu le nom de cette fleur ?\nDo you know this man in the picture?\tConnais-tu l'homme sur cette photo ?\nDo you know where your children are?\tSais-tu où sont tes enfants ?\nDo you know where your children are?\tSavez-vous où sont vos enfants ?\nDo you know who you’re talking to?\tSavez-vous à qui vous parlez ?\nDo you know why Tom doesn't like me?\tSais-tu pourquoi Tom ne m'aime pas ?\nDo you know why Tom doesn't like me?\tSavez-vous pourquoi Tom ne m'aime pas ?\nDo you know why he wasn't at school?\tSais-tu pourquoi il n'était pas à l'école ?\nDo you know why he wasn't at school?\tSavez-vous pourquoi il n'était pas à l'école ?\nDo you love my brother more than me?\tAimez-vous mon frère plus que moi ?\nDo you love my brother more than me?\tAimez-vous mon frère davantage que moi ?\nDo you love my brother more than me?\tAimes-tu mon frère plus que moi ?\nDo you love my brother more than me?\tAimes-tu mon frère davantage que moi ?\nDo you mean you don't find that odd?\tVoulez-vous dire que vous ne trouvez pas cela bizarre ?\nDo you mean you don't find that odd?\tVeux-tu dire que tu ne trouves pas cela bizarre ?\nDo you mind if I ask you a question?\tPuis-je vous poser une question ?\nDo you mind if I change the channel?\tVois-tu un inconvénient à ce que je change de chaîne ?\nDo you mind if I change the channel?\tVoyez-vous un inconvénient à ce que je change de chaîne ?\nDo you mind if I sleep here tonight?\tVois-tu un inconvénient à ce que je dorme ici ce soir ?\nDo you mind if I sleep here tonight?\tVoyez-vous un inconvénient à ce que je dorme ici ce soir ?\nDo you mind if I turn off the light?\tVois-tu un inconvénient à ce que j'éteigne la lumière ?\nDo you mind if I turn off the light?\tVoyez-vous un inconvénient à ce que j'éteigne la lumière ?\nDo you realize how late it's gotten?\tTe rends-tu compte de l'heure?\nDo you realize the danger you're in?\tTe rends-tu comptes du danger dans lequel tu t'es mis ?\nDo you realize the danger you're in?\tTe rends-tu comptes du danger dans lequel tu es ?\nDo you really believe in that stuff?\tCroyez-vous vraiment à ce genre de choses ?\nDo you really believe in that stuff?\tCrois-tu vraiment à ces trucs ?\nDo you really think Tom can hear us?\tPenses-tu vraiment que Tom peut nous entendre?\nDo you really think Tom is handsome?\tPensez-vous vraiment que Tom est beau ?\nDo you really think Tom is handsome?\tPenses-tu vraiment que Tom est beau ?\nDo you really think it's impossible?\tPenses-tu vraiment que c'est impossible ?\nDo you really think it's impossible?\tPensez-vous vraiment que ce soit impossible ?\nDo you really want to buy a car now?\tVeux-tu vraiment acheter une voiture maintenant ?\nDo you really want to buy a car now?\tVoulez-vous vraiment acheter une voiture maintenant ?\nDo you really want to get more done?\tVoulez-vous vraiment en effectuer davantage ?\nDo you really want to get more done?\tVoulez-vous vraiment en faire effectuer davantage ?\nDo you see the entrance of the park?\tTu vois l'entrée du parc ?\nDo you think I look like my brother?\tPensez-vous que je ressemble à mon frère ?\nDo you think I look like my brother?\tEst-ce que vous pensez que je ressemble à mon frère ?\nDo you think I'm being unreasonable?\tPenses-tu que je suis déraisonnable ?\nDo you think we should abandon ship?\tPenses-tu que nous devrions abandonner le navire ?\nDo you think we should abandon ship?\tPensez-vous que nous devrions abandonner le navire ?\nDo you think we should abandon ship?\tPensez-vous que nous dussions abandonner le navire ?\nDo you want me to be your bodyguard?\tVoulez-vous que je sois votre garde du corps ?\nDo you want me to be your bodyguard?\tVeux-tu que je sois votre garde du corps ?\nDo you want me to be your bodyguard?\tVeux-tu que je sois ton garde du corps ?\nDo you want me to shuffle the cards?\tVeux-tu que je mélange les cartes ?\nDo you want me to shuffle the cards?\tVoulez-vous que je mélange les cartes ?\nDo you want something cold to drink?\tVeux-tu quelque chose de frais à boire ?\nDo you want something cold to drink?\tVoulez-vous quelque chose de frais à boire ?\nDo you want to tell me what this is?\tVeux-tu me dire ce dont il s'agit ?\nDo you want to tell me what this is?\tVoulez-vous me dire ce dont il s'agit ?\nDo you want to tell me what this is?\tVeux-tu me dire ce qu'est ceci ?\nDo you want to tell me what this is?\tVoulez-vous me dire ce qu'est ceci ?\nDo you wash your hands before meals?\tVous lavez-vous les mains avant les repas ?\nDo you wash your hands before meals?\tTe laves-tu les mains avant les repas ?\nDoes she know your telephone number?\tConnaît-elle votre numéro de téléphone ?\nDoes she know your telephone number?\tConnaît-elle ton numéro de téléphone ?\nDoes the room have air conditioning?\tEst-ce que la pièce est équipée de l'air conditionné ?\nDoes this building have an elevator?\tEst-ce que cet immeuble possède un ascenseur?\nDon't ask questions. Just follow me.\tNe posez pas de questions ! Contentez-vous de me suivre !\nDon't ask questions. Just follow me.\tNe pose pas de questions ! Contente-toi de me suivre !\nDon't be too sensitive to criticism.\tNe sois pas trop sensible aux critiques.\nDon't disturb me while I'm studying.\tNe me dérangez pas quand j'étudie.\nDon't disturb me while I'm studying.\tNe me dérange pas quand j'étudie.\nDon't do anything strenuous tonight.\tNe faites, ce soir, rien d'éprouvant !\nDon't do anything strenuous tonight.\tNe fais, ce soir, rien d'éprouvant !\nDon't do anything strenuous tonight.\tNe faites pas, ce soir, quoi que ce soit d'éprouvant !\nDon't do anything strenuous tonight.\tNe fais pas, ce soir, quoi que ce soit d'éprouvant !\nDon't do anything strenuous tonight.\tNe faites, ce soir, rien qui soit éprouvant !\nDon't do anything strenuous tonight.\tNe fais, ce soir, rien qui soit éprouvant !\nDon't forget to call me up tomorrow.\tN'oubliez pas de m'appeler demain.\nDon't forget your gloves. It's cold.\tN'oublie pas tes gants, il fait froid.\nDon't give it to him. Give it to me.\tNe le lui donne pas. Donne-le-moi.\nDon't give it to him. Give it to me.\tNe le lui donnez pas. Donnez-le-moi.\nDon't go off without saying good-by.\tNe sors pas sans dire au revoir.\nDon't judge a man by his appearance.\tNe jugez pas un homme à son apparence.\nDon't leave the bicycle in the rain.\tNe laisse pas le vélo sous la pluie.\nDon't leave your dog inside all day.\tNe laisse pas ton chien à l'intérieur toute la journée.\nDon't leave your dog inside all day.\tNe laissez pas votre chien à l'intérieur toute la journée.\nDon't leave your work half finished.\tNe laissez pas votre travail à moitié terminé.\nDon't leave your work half finished.\tNe laissez pas votre ouvrage à moitié terminé.\nDon't leave your work half finished.\tNe laisse pas ton travail à moitié terminé.\nDon't let anything else distract us.\tNe laissez pas quoi que ce soit d'autre nous distraire !\nDon't let anything else distract us.\tNe laisse pas quoi que ce soit d'autre nous distraire !\nDon't let children play in the road.\tNe laisse pas les enfants jouer sur la rue.\nDon't let him take advantage of you.\tNe le laisse pas profiter de toi.\nDon't let this information leak out.\tNe laisse pas cette information fuiter.\nDon't let this information leak out.\tNe laissez pas cette information fuiter.\nDon't look at me with such sad eyes.\tNe me regarde pas avec des yeux si tristes.\nDon't make noises when you eat soup.\tNe faites pas de bruit en mangeant votre soupe.\nDon't miss this amazing opportunity.\tNe manquez pas cette exceptionnelle occasion.\nDon't miss this amazing opportunity.\tNe manque pas cette incroyable occasion.\nDon't put the cart before the horse.\tNe mets pas la charrue avant les bœufs.\nDon't scream, or I'll scream louder.\tNe hurlez pas ou bien je hurlerai plus fort !\nDon't scream, or I'll scream louder.\tNe hurle pas ou bien je hurlerai plus fort !\nDon't speak unless you're spoken to.\tNe parle pas, à moins que l'on s'adresse à toi !\nDon't speak unless you're spoken to.\tNe parlez pas, à moins que l'on s'adresse à vous !\nDon't talk about yourself like that.\tNe parle pas de toi ainsi !\nDon't talk about yourself like that.\tNe parlez pas de vous ainsi !\nDon't talk about yourself like that.\tNe parlez pas ainsi de vous !\nDon't talk about yourself like that.\tNe parle pas ainsi de toi !\nDon't talk to your father like that.\tNe parle pas ainsi à ton père !\nDon't talk to your father like that.\tNe parlez pas ainsi à votre père !\nDon't talk to your mother like that.\tNe parle pas ainsi à ta mère !\nDon't talk to your mother like that.\tNe parlez pas ainsi à votre mère !\nDon't tell me how to spend my money.\tNe me dis pas comment dépenser mon argent !\nDon't touch anything without asking.\tNe touchez pas à quoi que ce soit sans demander !\nDon't touch anything without asking.\tNe touche pas à quoi que ce soit sans demander !\nDon't touch anything without asking.\tNe touchez à rien sans demander !\nDon't touch anything without asking.\tNe touche à rien sans demander !\nDon't treat me as if I were a child.\tNe me traite pas comme si j'étais un enfant.\nDon't treat me as if I were a child.\tNe me traitez pas comme si j'étais un enfant.\nDon't worry. I'm not going anywhere.\tNe vous faites pas de souci. Je ne vais nulle part.\nDon't worry. I'm not going anywhere.\tNe te fais pas de souci. Je ne vais nulle part.\nDon't you always do what's expected?\tNe fais-tu pas toujours ce qui est attendu ?\nDon't you always do what's expected?\tNe faites-vous pas toujours ce qui est attendu ?\nDon't you hate it when that happens?\tNe détestes-tu pas que ça survienne ?\nEating between meals is a bad habit.\tManger entre les repas est une mauvaise habitude.\nEating fish is good for your health.\tManger du poisson est bon pour la santé.\nEinstein enjoyed playing the violin.\tEinstein aimait jouer du violon.\nElephants are an endangered species.\tLes éléphants sont une espèce menacée.\nEnglish is a means of communication.\tL'anglais est un moyen de communiquer.\nEnglish is spoken in many countries.\tL'anglais est parlé dans de nombreux pays.\nEnglish is spoken in many countries.\tOn parle l'anglais dans de nombreux pays.\nEnglish is taught in most countries.\tL'anglais est enseigné dans la plupart des pays.\nEvery country has its national flag.\tChaque pays a son drapeau national.\nEvery man has his own strong points.\tChaque homme a ses propres points forts.\nEvery time I see him, he is smiling.\tChaque fois que je le vois, il sourit.\nEvery time it rains, the roof leaks.\tChaque fois qu'il pleut, le toit fuit.\nEvery town in America has a library.\tIl y a une bibliothèque dans chaque ville étatsunienne.\nEverybody came to the class on time.\tTout le monde est arrivé à l'heure en classe.\nEverybody in the picture is smiling.\tTout le monde sourit sur la photographie.\nEverybody knows that Tom likes Mary.\tTout le monde sait que Tom aime Mary.\nEverybody knows that Tom likes Mary.\tTout le monde sait que Tom apprécie Mary.\nEverybody was jealous of my success.\tTout le monde était jaloux de mon succès.\nEverybody was thrilled by his story.\tTout le monde était passionné par son histoire.\nEveryone is going to call me a liar.\tTout le monde va me traiter de menteur.\nEveryone knows Tom isn't happy here.\tTout le monde sait que Tom n'est pas heureux ici.\nEveryone mistakes me for my brother.\tTout le monde me prend pour mon frère.\nEveryone needs a place to call home.\tChacun a besoin d'un endroit qu'il nomme son chez soi.\nEveryone tried to sell their stocks.\tTout le monde tentait de vendre ses titres.\nEveryone voted yes. No one objected.\tTout le monde vota oui. Personne n'objecta.\nEveryone wants what they can't have.\tTout le monde veut ce qu'il ne peut avoir.\nEveryone was invited, except for me.\tTous ont été invités, sauf moi.\nEveryone who knows him respects him.\tChaque personne qui le connaît le respecte.\nEverything appears to be going well.\tTout à l'air de bien se passer.\nEverything appears to be going well.\tTout semble se passer bien.\nExcuse me, but do you need any help?\tAllô, en quoi puis-je vous être utile ?\nExcuse me, but where is the library?\tExcusez-moi, où se trouve la bibliothèque ?\nExcuse me, is there a toilet nearby?\tExcusez-moi, y a-t-il des toilettes près d'ici ?\nFear washed across the stock market.\tLa peur balaya la bourse.\nFew people live to be 100 years old.\tPeu de gens vivent jusqu'à 100 ans.\nFew students know how to read Latin.\tPeu d'étudiants savent lire en latin.\nFew students use pencils these days.\tPeu d'étudiants utilisent des crayons de nos jours.\nFish and red wine don't go together.\tLe poisson et le vin rouge ne vont pas bien ensemble.\nFor all her riches, she's not happy.\tEn dépit de toute sa fortune, elle n'est pas heureuse.\nFor all her riches, she's not happy.\tEn dépit de toute sa fortune, elle n'est point heureuse.\nGalileo argued that the earth moves.\tGalilée soutenait que la Terre bouge.\nGarlic enhances the flavor of meals.\tL'ail renforce la saveur des plats.\nGermany made an alliance with Italy.\tL'Allemagne fit alliance avec l'Italie.\nGermany shares a border with France.\tL'Allemagne borde la France.\nGet up early, and you'll be in time.\tSi tu te réveilles tôt, tu seras à l'heure.\nGet your mother to do your homework!\tQue ta mère te fasse tes devoirs !\nGet your mother to do your homework!\tFais faire tes devoirs par ta mère !\nGetting married is a serious matter.\tSe marier est chose sérieuse.\nGetting married is a serious matter.\tSe marier est une chose sérieuse.\nGo upstairs and bring down my trunk.\tMonte à l'étage et descends-moi ma malle.\nHave you bought a raffle ticket yet?\tAs-tu jamais acheté un ticket de tombola ?\nHave you ever had a serious illness?\tAs-tu déjà été sérieusement malade ?\nHave you ever had a serious illness?\tAs-tu jamais eu une maladie sérieuse ?\nHave you ever had a serious illness?\tAvez-vous jamais souffert d'une maladie sérieuse ?\nHave you ever read a book in French?\tAvez-vous déjà lu un livre en français ?\nHave you ever scolded your daughter?\tAvez-vous jamais réprimandé votre fille ?\nHave you ever scolded your daughter?\tAs-tu jamais réprimandé ta fille ?\nHave you ever seen a film this good?\tAs-tu déjà vu aussi bon film ?\nHave you ever seen a film this good?\tAs-tu déjà vu un aussi bon film ?\nHave you ever seen a film this good?\tAs-tu déjà vu un film aussi bon ?\nHave you ever seen a film this good?\tAs-tu déjà vu film aussi bon ?\nHave you finished reading that book?\tAs-tu fini de lire ce livre ?\nHave you finished reading the novel?\tAs-tu fini de lire le roman ?\nHave you finished reading the novel?\tAvez-vous terminé de lire le roman ?\nHave you finished your homework yet?\tAs-tu déjà fini tes devoirs ?\nHave you finished your homework yet?\tAs-tu enfin fini tes devoirs ?\nHave you received a letter from him?\tAs-tu reçu une lettre de lui ?\nHave you received a letter from him?\tAvez-vous reçu une lettre de lui ?\nHe advocated the reduction of taxes.\tIl prônait la baisse des impôts.\nHe always mistakes me for my sister.\tIl me confond toujours avec ma sœur.\nHe and I are almost the same height.\tLui et moi sommes presque de la même taille.\nHe and I are almost the same height.\tLui et moi avons presque la même taille.\nHe apologized to her for being late.\tIl lui présenta ses excuses pour son retard.\nHe appears to be strong and healthy.\tIl semble être fort et en bonne santé.\nHe beat the odds and was successful.\tIl a tenté le destin et a réussi.\nHe became famous all over the world.\tIl est devenu célèbre dans le monde entier.\nHe blew out the candles on the cake.\tIl a soufflé les bougies du gâteau.\nHe borrowed the car from his friend.\tIl emprunta la voiture de son ami.\nHe borrowed the car from his friend.\tIl a emprunté la voiture à un ami.\nHe came to London by way of Siberia.\tIl vint à Londres par la Sibérie.\nHe can run as fast as any other boy.\tIl peut courir aussi vite que n'importe quel autre garçon.\nHe can't even read, let alone write.\tIl sait même pas lire, ne parlons pas d'écrire.\nHe comes to see me nearly every day.\tIl vient me voir presque tous les jours.\nHe comes to see my son now and then.\tIl vient voir mon fils de temps en temps.\nHe complained to her about the food.\tIl se plaignit à elle à propos de la nourriture.\nHe could not find what I had hidden.\tIl ne put trouver ce que j'avais caché.\nHe couldn't understand the sentence.\tIl ne pouvait pas comprendre la phrase.\nHe cried as if he were a boy of six.\tIl a pleuré comme s'il était un enfant de six ans.\nHe decided to put off his departure.\tIl a décidé de reporter son départ.\nHe described the incident in detail.\tIl donna une description détaillée de l'accident.\nHe did nothing but watch TV all day.\tIl n'a fait que regarder la télé toute la journée.\nHe didn't take an umbrella with him.\tIl n'emporta pas de parapluie.\nHe died fighting in the Vietnam War.\tIl est mort au combat pendant la guerre du Vietnam.\nHe doesn't care if his car is dirty.\tIl s'en fiche si sa voiture est sale.\nHe doesn't have a job. He's retired.\tIl n'a pas de travail, il est à la retraite.\nHe doesn't want to live in the city.\tIl ne veut pas vivre en ville.\nHe doubts if I will keep my promise.\tIl doute que je tienne ma promesse.\nHe doubts that I'll keep my promise.\tIl doute que je tiendrai ma promesse.\nHe drew a straight line on the wall.\tIl traça une ligne droite sur le mur.\nHe earned as much money as possible.\tIl a gagné le plus d'argent possible.\nHe earns three times more than I do.\tIl gagne trois fois plus que moi.\nHe encountered unexpected obstacles.\tIl rencontra des obstacles imprévus.\nHe exchanged his cow for two horses.\tIl a échangé sa vache contre deux chevaux.\nHe explained to my son why it rains.\tIl expliqua à mon fils pourquoi il pleut.\nHe fell ill because he ate too much.\tIl est tombé malade parce qu'il a trop mangé.\nHe fetched some water from the well.\tIl alla chercher de l'eau à la source.\nHe finally found out how to make it.\tIl découvrit finalement comment le faire.\nHe finally found out how to make it.\tIl a finalement découvert comment le faire.\nHe finds fault with everything I do.\tIl trouve à redire à tout ce que je fais.\nHe gave me what little money he had.\tIl me donna le peu d'argent qu'il avait.\nHe gave me what little money he had.\tIl me donna le peu d'argent qu'il possédait.\nHe gives plain, simple explanations.\tIl donne des explications précises, facilement compréhensibles.\nHe got hurt in the accident at work.\tIl a été blessé dans un accident au travail.\nHe got the book down from the shelf.\tIl descendit le livre de l'étagère.\nHe had an operation on his left leg.\tIl a eu une opération à la jambe gauche.\nHe had an unpleasant screechy voice.\tIl avait une désagréable voix perçante.\nHe had an unpleasant screechy voice.\tIl était doté d'une désagréable voix perçante.\nHe had few friends and little money.\tIl avait peu d'amis et peu d'argent.\nHe had plenty of money for his trip.\tIl avait beaucoup d'argent pour son voyage.\nHe had the gall to ignore my advice.\tIl eut l'effronterie d'ignorer mon conseil.\nHe has a lot more money than I have.\tIl a bien plus d'argent que moi.\nHe has a lot more money than I have.\tIl a beaucoup plus d'argent que moi.\nHe has a perfect command of English.\tIl a une parfaite maîtrise de l'anglais.\nHe has a tendency to be pessimistic.\tIl a tendance à être pessimiste.\nHe has been busy since this morning.\tIl a été occupé depuis ce matin.\nHe has eyes at the back of his head.\tIl a des yeux derrière la tête.\nHe has four children to provide for.\tIl a quatre enfants à charge.\nHe has more money than can be spent.\tIl a plus d'argent qu'on ne peut en dépenser.\nHe has more money than he can spend.\tIl a plus d'argent qu'il n'en peut dépenser.\nHe has visited Europe several times.\tIl a visité l'Europe plusieurs fois.\nHe is a good match for me in tennis.\tC'est un bon partenaire de tennis pour moi.\nHe is a promising young businessman.\tC'est un jeune homme d'affaires prometteur.\nHe is ahead of his class in English.\tIl est en tête de la classe en anglais.\nHe is always taking a nap at school.\tIl est toujours en train de faire la sieste à l'école.\nHe is always willing to help others.\tIl se fait toujours une joie d'aider les autres.\nHe is apparently responsible for it.\tIl est responsable, semble-t-il.\nHe is as great a poet as ever lived.\tIl fait partie des plus grands poètes de tous les temps.\nHe is better off than he used to be.\tIl est meilleur que ce qu'il était.\nHe is capable of doing such a thing.\tIl est capable de faire une chose pareille.\nHe is less patient than his brother.\tIl est moins patient que son frère.\nHe is not the shy boy he used to be.\tIl n'est plus le garçon timide qu'il était.\nHe is not too poor to buy a bicycle.\tIl n'est pas trop pauvre pour acheter une bicyclette.\nHe is not what he was ten years ago.\tIl n'est plus ce qu'il était il y a dix ans.\nHe is out of circulation these days.\tOn ne le voit plus ces derniers jours.\nHe is regretful that he couldn't go.\tIl regrette beaucoup de ne pas pouvoir y aller.\nHe is suffering from loss of memory.\tIl souffre d'amnésie.\nHe is what we call a musical genius.\tIl est ce que nous appelons un génie de la musique.\nHe judged it wiser to remain silent.\tIl jugea plus sage de rester silencieux.\nHe kept waiting for hours and hours.\tIl continua à attendre pendant des heures et des heures.\nHe landed himself a really plum job.\tIl a dégoté un boulot en or.\nHe lives six houses beyond my house.\tIl habite six maisons plus loin que la mienne.\nHe locked up his jewels in the safe.\tIl enferma ses bijoux dans le coffre.\nHe looked around, but he saw no one.\tIl regarda autour de lui, mais ne put voir personne.\nHe lost his eyesight in an accident.\tIl perdit la vue dans un accident.\nHe lost his eyesight in an accident.\tIl a perdu la vue dans un accident.\nHe made many excuses for being late.\tIl s'est beaucoup excusé de son retard.\nHe made the most of his opportunity.\tIl a profité de sa chance.\nHe makes mountains out of molehills.\tIl fait des montagnes de tout.\nHe managed to swim across the river.\tIl s'est débrouillé pour traverser la rivière à la nage.\nHe married his daughter to a lawyer.\tIl a marié sa fille à un avocat.\nHe might have missed the last train.\tIl a peut-être manqué le dernier train.\nHe must be a fool to talk like that.\tIl doit être fou pour parler ainsi.\nHe must have left the water running.\tIl a dû laisser l'eau couler.\nHe must have missed his usual train.\tIl a dû rater son train habituel.\nHe must have missed his usual train.\tIl a dû manquer son train habituel.\nHe offered his seat to an old woman.\tIl a offert sa place à une vieille dame.\nHe often gets angry at small things.\tIl s'énerve souvent pour des détails.\nHe often goes to the library by car.\tIl va souvent à la bibliothèque en voiture.\nHe plays the piano better than I do.\tIl joue mieux du piano que moi.\nHe pressed his ear against the wall.\tIl pressa son oreille contre le mur.\nHe ran his fingers through her hair.\tIl fit courir ses doigts dans ses cheveux.\nHe ran his fingers through her hair.\tIl a fait courir ses doigts dans ses cheveux.\nHe remained a bachelor all his life.\tIl est resté célibataire toute sa vie.\nHe returned home without telling us.\tIl est rentré chez lui sans nous le dire.\nHe said two or three words and left.\tIl dit deux ou trois mots et partit.\nHe said, \"I want to be a scientist.\"\tIl a déclaré : ''Je veux devenir scientifique''.\nHe said, \"I want to be a scientist.\"\tIl a dit: \"je veux devenir scientifique\".\nHe seems to know all about her past.\tIl semble tout savoir de son passé.\nHe showed me how to use this camera.\tIl m'a montré comment utiliser cet appareil photo.\nHe snuck out to meet up with a girl.\tIl sortit en cachette pour rencontrer une fille.\nHe snuck out to meet up with a girl.\tIl est sorti en cachette pour rencontrer une fille.\nHe speaks French as well as English.\tNon seulement il parle anglais, mais il parle aussi français.\nHe spent the evening reading a book.\tIl a passé la soirée à lire un bouquin.\nHe spent the morning reading a book.\tIl passa la matinée à lire un livre.\nHe spoke with a typical Texan drawl.\tIl parlait avec une voix traînante typique du Texas.\nHe spoke with a typical Texan drawl.\tIl parla avec une voix traînante typique du Texas.\nHe still has not written the letter.\tIl n'a pas encore écrit la lettre.\nHe stood on the surface of the moon.\tIl a marché sur la lune.\nHe stood there with his eyes closed.\tIl se tenait là les yeux fermés.\nHe stuck the broken pieces together.\tIl assembla les morceaux cassés.\nHe succeeded in solving the problem.\tIl parvint à résoudre le problème.\nHe succeeded in solving the problem.\tIl est parvenu à résoudre le problème.\nHe succeeded to his uncle's fortune.\tIl a hérité de la fortune de son oncle.\nHe suggested a plan similar to mine.\tIl a suggéré un plan similaire au mien.\nHe swam until he could swim no more.\tIl nagea jusqu'à ce qu'il ne puisse plus nager.\nHe threw everything out of the boat.\tIl jeta tout hors du bateau.\nHe told me that I could use his car.\tIl m'a dit que je pouvais utiliser sa voiture.\nHe told me that his father was dead.\tIl m'a dit que son père était mort.\nHe told me to leave the window open.\tIl m'ordonna de laisser la fenêtre ouverte.\nHe told me to meet him at his house.\tIl me dit de le rencontrer chez lui.\nHe told me to meet him at his house.\tIl m'a dit de le rencontrer chez lui.\nHe tried wooing her with love poems.\tIl essaya de la courtiser avec des poèmes amoureux.\nHe tucked the napkin under his chin.\tIl plaça la serviette de table sous son menton.\nHe uses the same dictionary as I do.\tIl se sert du même dictionnaire que moi.\nHe wants the most bang for his buck.\tIl veut en avoir le plus possible pour son argent.\nHe wants to go to the United States.\tIl veut aller aux États-Unis d'Amérique.\nHe wants to spend time with his son.\tIl veut passer du temps avec son fils.\nHe was ashamed of the grades he got.\tIl avait honte des notes qu'il avait obtenu.\nHe was born and brought up in Tokyo.\tIl est né et a été élevé à Tokyo.\nHe was displeased with his neighbor.\tIl était mécontent de son voisin.\nHe was fed up with life in the city.\tIl en avait marre de la vie en ville.\nHe was foolish enough to believe it.\tIl a été assez stupide pour y croire.\nHe was in favor of equality for all.\tIl était en faveur de l'égalité pour tous.\nHe was jailed on trumped-up charges.\tIl fut emprisonné sur la base d'accusations fallacieuses.\nHe was jailed on trumped-up charges.\tIl a été emprisonné sur la base d'accusations fallacieuses.\nHe was kind enough to lend me money.\tIl a eu l'amabilité de me prêter de l'argent.\nHe was looking through a microscope.\tIl regardait au microscope.\nHe was not allowed to remain silent.\tIl ne lui était pas permis de se taire.\nHe was poor and couldn't buy a coat.\tIl était pauvre et ne pouvais acheter un manteau.\nHe was punished for drunken driving.\tIl a été condamné pour conduite en état d'ivresse.\nHe was raised in an artistic family.\tIl a été élevé dans une famille d'artistes.\nHe was sitting with his arms folded.\tIl était assis avec les bras croisés.\nHe was stupid enough to believe her.\tIl a été suffisamment stupide pour la croire.\nHe was surprised by what he learned.\tIl fut surpris par ce qu'il apprit.\nHe was surprised by what he learned.\tIl a été surpris par ce qu'il a appris.\nHe was underwater for three minutes.\tIl resta sous l'eau trois minutes.\nHe was very pleased with the result.\tIl fut très satisfait du résultat.\nHe was very pleased with the result.\tIl a été très satisfait du résultat.\nHe went so far as to call me a liar.\tIl alla jusqu'à me traiter de menteur.\nHe went there instead of his father.\tIl y alla à la place de son père.\nHe went there instead of his father.\tIl s'y rendit en lieu et place de son père.\nHe went to bed at eleven last night.\tIl est allé au lit à 11 heures la nuit dernière.\nHe went to bed because he was tired.\tIl alla au lit parce qu'il était fatigué.\nHe went to bed because he was tired.\tIl est allé au lit parce qu'il était fatigué.\nHe will be coming to the party, too.\tIl viendra aussi à la fête.\nHe will object to your going abroad.\tIl s'opposera à ton départ à l'étranger.\nHe wrenched the letter from my hand.\tIl m'arracha la lettre de la main.\nHe's got the new technique down pat.\tIl maîtrise la nouvelle technique.\nHe's here trying to stir up trouble.\tIl est ici pour chercher la bagarre.\nHe's here trying to stir up trouble.\tIl est ici pour fomenter des troubles.\nHe's interested in Mayan prophecies.\tIl s'intéresse aux prophéties mayas.\nHe's intimidated by beautiful women.\tIl est intimidé par les belles femmes.\nHe's nervous and gets scared easily.\tIl est nerveux et facilement effrayé.\nHe's not paying any attention to me.\tIl ne me prête aucune attention.\nHe's not the same man he used to be.\tIl n'est plus l'homme qu'il était.\nHe's not working much at the moment.\tIl ne travaille pas beaucoup en ce moment.\nHe's the one who told me about that.\tC'est lui qui m'a parlé de cela.\nHe's waiting for the train to leave.\tIl attend que le train parte.\nHer condition grew worse last night.\tSa santé a empiré la nuit dernière.\nHer mother has made her what she is.\tSa mère a fait d'elle ce qu'elle est.\nHer only hobby is collecting stamps.\tSon seul passe-temps est la collection de timbres.\nHer wish is to study abroad someday.\tSon souhait est d'étudier à l'étranger, un jour.\nHere is a present for your birthday.\tVoici un cadeau pour ton anniversaire.\nHey guys, I think I found something.\tHé, les mecs ! Je pense que j'ai trouvé quelque chose.\nHey, how do you get this thing open?\tDis, comment parviens-tu à ouvrir ce truc ?\nHey, how do you get this thing open?\tDites, comment parvenez-vous à ouvrir ce truc ?\nHis body was covered with brown fur.\tSon corps était couvert d'une fourrure brune.\nHis car was stuck in knee-deep snow.\tSa voiture était immobilisée dans une neige profonde.\nHis face showed that he was annoyed.\tSon visage exprimait qu'il était ennuyé.\nHis failure is due to his ignorance.\tSon échec vient de son ignorance.\nHis failure taught me a good lesson.\tSon échec m'a enseigné une bonne leçon.\nHis grandmother can't walk, can she?\tSa grand-mère ne peut pas marcher, n'est-ce pas ?\nHis hair is black in color and long.\tSes cheveux sont de couleur noire et sont longs.\nHis neighbors are suspicious of him.\tSes voisins se méfient de lui.\nHis neighbors are suspicious of him.\tSes voisins s'en méfient.\nHis skill qualifies him for the job.\tSa capacité le qualifie pour le poste.\nHis success was in part due to luck.\tSon succès est en partie dû à la chance.\nHis suggestion is worth considering.\tSa proposition vaut la peine d'être étudiée.\nHold on for a few minutes, will you?\tReste en ligne quelques minutes, veux-tu ?\nHold on for a few minutes, will you?\tRestez en ligne quelques minutes, voulez-vous ?\nHold on for a few minutes, will you?\tPatiente quelques minutes, veux-tu ?\nHold on for a few minutes, will you?\tPatientez quelques minutes, voulez-vous ?\nHopefully, the weather will be good.\tEspérons que la météo sera bonne.\nHow can I get to the police station?\tComment puis-je me rendre au commissariat ?\nHow can you eat at a time like this?\tComment peux-tu manger à un moment pareil ?\nHow come you're always so energetic?\tComment se fait-il que vous soyez toujours aussi énergique ?\nHow did the traffic accident happen?\tComment l'accident de la circulation est-il survenu ?\nHow did we get into so much trouble?\tComment nous sommes-nous fourrés dans tant de problèmes ?\nHow did we get into so much trouble?\tComment nous sommes-nous fourrées dans tant de problèmes ?\nHow did you celebrate your birthday?\tComment as-tu fêté ton anniversaire ?\nHow did you get acquainted with her?\tComment est-ce que tu la connais ?\nHow did you get over the difficulty?\tComment as-tu surmonté la difficulté ?\nHow did you know that man was a cop?\tComment saviez-vous que cet homme était flic ?\nHow did you know that man was a cop?\tComment savais-tu que cet homme était flic ?\nHow do I know you'll keep your word?\tComment sais-je que tu tiendras ta promesse ?\nHow do I know you'll keep your word?\tComment sais-je que vous tiendrez votre promesse ?\nHow do you pronounce your last name?\tComment prononcez-vous votre nom de famille ?\nHow do you think that makes me feel?\tComment crois-tu que ça me fasse me sentir ?\nHow do you think that makes me feel?\tComment croyez-vous que ça me fasse me sentir ?\nHow far is it from here to the park?\tÀ quelle distance se trouve le parc ?\nHow long are you going to stay here?\tVous restez pour combien de temps ?\nHow long do they wish to spend here?\tCombien de temps souhaitent-ils passer ici ?\nHow long have you been in this town?\tCombien de temps es-tu resté dans cette ville ?\nHow long have you been working here?\tCombien de temps as-tu travaillé ici ?\nHow long have you two been together?\tCombien de temps avez-vous été ensemble tous les deux ?\nHow long may I borrow this notebook?\tPendant combien de temps puis-je emprunter cet ordinateur portable ?\nHow many boys are there in the room?\tCombien de garçons y a-t-il dans la pièce ?\nHow many cars have you owned so far?\tCombien de voitures as-tu possédé jusqu'à présent ?\nHow many days does a leap year have?\tUne année bissextile, ça a combien de jours ?\nHow many hours do you normally work?\tCombien d'heures travailles-tu normalement ?\nHow many hours do you normally work?\tCombien d'heures travaillez-vous normalement ?\nHow many hours of sleep do you need?\tDe combien d'heures de sommeil as-tu besoin ?\nHow many hours of sleep do you need?\tDe combien d'heures de sommeil avez-vous besoin ?\nHow many pairs of socks do you have?\tDe combien de paires de chaussettes disposes-tu ?\nHow much does the wooden chair cost?\tCombien coûte la chaise en bois ?\nHow much money does he make a month?\tCombien gagne-t-il par mois ?\nHow would you analyze the situation?\tComment analyseriez-vous la situation ?\nHurry up, or you'll miss your plane.\tDépêchez-vous ou vous raterez votre avion.\nHurry, and you will catch the train.\tDépêche-toi et tu auras ton train.\nI agree with everything you've said.\tJe suis d'accord avec tout ce que vous avez dit.\nI agree with everything you've said.\tJe suis d'accord avec tout ce que tu as dit.\nI aim to be a doctor when I grow up.\tJe prévois d'être médecin, lorsque je deviendrai grande.\nI always catch a cold in the winter.\tJ'attrape toujours froid en hiver.\nI always read the sports page first.\tJe commence toujours par lire la page des sports.\nI am a student at Oxford University.\tJe suis étudiant à l'université d'Oxford.\nI am accustoming to this life style.\tJe m'habitue à ce mode de vie.\nI am all alone in a foreign country.\tJe suis tout seul dans ce pays étranger.\nI am almost scared to talk with you.\tJe suis presque effrayé de vous parler.\nI am glad to accept your invitation.\tJe suis heureux d'accepter votre invitation.\nI am glad to accept your invitation.\tJe suis heureuse d'accepter votre invitation.\nI am going to watch TV this evening.\tJe vais regarder la télé ce soir.\nI am interested in Japanese history.\tJe suis intéressé par l'Histoire japonaise.\nI am interested in chess these days.\tJe m'intéresse actuellement aux échecs.\nI am intrigued by what is happening.\tJe suis intrigué par ce qu'il se passe.\nI am learning two foreign languages.\tJ'apprends deux langues étrangères.\nI am learning two foreign languages.\tJe suis en train d'apprendre deux langues étrangères.\nI am leaving Japan tomorrow morning.\tJe quitte le Japon demain matin.\nI am looking forward to your letter.\tJ'attends impatiemment ta lettre.\nI am no more an artist than you are.\tJe ne suis pas plus artiste que toi.\nI am not concerned with this affair.\tJe ne suis pas concerné par cette affaire.\nI am not concerned with this affair.\tJe ne suis pas préoccupé par cette affaire.\nI am really pleased with my new car.\tJe suis très content de ma nouvelle voiture.\nI am responsible for her protection.\tJe suis responsable de sa protection.\nI am sorry to have kept you waiting.\tJe suis désolé de vous avoir fait attendre.\nI am still attached to this bicycle.\tJe suis toujours attaché à ce vélo.\nI am very pleased with my new house.\tJe suis pleinement satisfait de ma nouvelle maison.\nI apologize if I hurt your feelings.\tJe m'excuse si je t'ai blessé.\nI apologize if I hurt your feelings.\tJe te prie de m'excuser si je t'ai blessé.\nI apologize if I hurt your feelings.\tJe te prie de m'excuser si je t'ai blessée.\nI appreciate all you've done for me.\tJ'apprécie tout ce que tu as fait pour moi.\nI appreciate all you've done for me.\tJ'apprécie tout ce que vous avez fait pour moi.\nI appreciate what you did yesterday.\tJe suis reconnaissant pour ce que vous avez fait hier.\nI appreciate what you did yesterday.\tJe suis reconnaissante pour ce que vous avez fait hier.\nI appreciate what you did yesterday.\tJe suis reconnaissant pour ce que tu as fait hier.\nI appreciate what you did yesterday.\tJe suis reconnaissante pour ce que tu as fait hier.\nI arrived at Osaka Station at night.\tJe suis arrivé de nuit à la gare d'Osaka.\nI as well as my brother am to blame.\tMoi, aussi bien que mon frère, suis à blâmer.\nI asked Tom if he needed more money.\tJ'ai demandé à Tom s'il avait besoin de plus d'argent.\nI asked him if he would return soon.\tJe lui ai demandé s'il revenait bientôt.\nI asked you if you wanted some help.\tJe vous demandais si vous aviez besoin d'aide.\nI assume your mission was a success.\tJe suppose que votre mission a été une réussite.\nI ate bread and butter this morning.\tCe matin, j'ai mangé du pain beurré.\nI banged my leg on the coffee table.\tJe me suis cogné ma jambe sur la table basse.\nI beg you to give me a little water.\tJe vous supplie de me donner un peu d'eau.\nI believe that he is a reliable man.\tJe crois que c'est un homme sur lequel on peut compter.\nI belong to the rugby football club.\tJ'appartiens à un club de rugby.\nI bought a pen like yours yesterday.\tJ’ai acheté un stylo comme le tien hier.\nI bought this racket two months ago.\tJ'ai acheté cette raquette il y a deux mois.\nI called her, but the line was busy.\tJe l'ai appelée, mais la ligne était occupée.\nI can assure you that you are wrong.\tJe peux t'assurer que tu as tort.\nI can assure you that you are wrong.\tJe peux vous assurer que vous avez tort.\nI can carry those suitcases for you.\tJe peux porter ces valises pour vous.\nI can do it if you give me a chance.\tJe peux le faire si tu m'en laisses l'opportunité.\nI can do it if you give me a chance.\tJe peux le faire si vous m'en laissez l'occasion.\nI can hear you, but I can't see you.\tJe t'entends mais je ne peux pas te voir.\nI can neither confirm nor deny this.\tJe ne peux ni confirmer ni infirmer ceci.\nI can neither confirm nor deny this.\tJe ne peux ni le confirmer ni l'infirmer.\nI can take care of that immediately.\tJe peux m'occuper de cela immédiatement.\nI can understand what she is saying.\tJe peux comprendre ce qu'elle dit.\nI can understand your point of view.\tJe peux comprendre votre point de vue.\nI can understand your point of view.\tJe peux comprendre ton point de vue.\nI can walk to school in ten minutes.\tJe peux aller à l'école à pied en 10 minutes.\nI can walk to school in ten minutes.\tJe peux aller à l'école à pied en dix minutes.\nI can't believe I forgot about this.\tJe n'arrive pas à croire que j'aie oublié ça.\nI can't believe Tom is still single.\tJe n'arrive pas à croire que Tom est toujours célibataire.\nI can't believe Tom is still single.\tJe n'arrive pas à croire que Tom est encore célibataire.\nI can't believe everything Tom says.\tJe ne peux pas croire tout ce que Tom dit.\nI can't believe we're going to lose.\tJe n'arrive pas à croire que nous allons perdre.\nI can't believe you let this happen.\tJe n'arrive pas à croire que tu aies permis que cela se produise.\nI can't believe you let this happen.\tJe n'arrive pas à croire que vous ayez permis que cela se produise.\nI can't believe you think I'm pushy.\tJe n'arrive pas à croire que vous pensiez que je sois insistant.\nI can't believe you think I'm pushy.\tJe n'arrive pas à croire que tu penses que je sois insistant.\nI can't believe you're still hungry.\tJe n'arrive pas à croire que vous ayez encore faim.\nI can't believe you're still hungry.\tJe n'arrive pas à croire que tu aies encore faim.\nI can't believe you're still single.\tJe ne peux pas croire que tu sois toujours célibataire.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que ta mère t'aie laissé y aller.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que ta mère t'aie laissé partir.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que ta mère t'aie laissée partir.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que ta mère t'aie laissée y aller.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que votre mère vous aie laissé y aller.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que votre mère vous aie laissé partir.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que votre mère vous aie laissée y aller.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que votre mère vous aie laissés y aller.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que votre mère vous aie laissées y aller.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que votre mère vous aie laissée partir.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que votre mère vous aie laissés partir.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que votre mère vous aie laissées partir.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que ta mère t'aie laissé t'en aller.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que ta mère t'aie laissée t'en aller.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que votre mère vous aie laissé vous en aller.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que votre mère vous aie laissée vous en aller.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que votre mère vous aie laissés vous en aller.\nI can't believe your mom let you go.\tJe n'arrive pas à croire que votre mère vous aie laissées vous en aller.\nI can't convey my feelings in words.\tJe n'arrive pas à mettre des mots sur mes sentiments.\nI can't decide whether to go or not.\tJe n'arrive pas à décider à y aller ou pas.\nI can't decide whether to go or not.\tJe n'arrive pas à me décider si oui ou non j'y vais.\nI can't go to work in these clothes.\tJe ne peux pas aller au travail dans ces vêtements.\nI can't go to work in these clothes.\tJe ne peux pas me rendre au travail dans ces vêtements.\nI can't imagine my life without you.\tJe ne peux pas imaginer ma vie sans toi.\nI can't put up with that loud noise.\tJe ne peux pas supporter ce bruit fort.\nI can't remember which is my racket.\tJe n'arrive pas à me rappeler laquelle est ma raquette.\nI can't settle for this boring life.\tJe ne peux me résoudre à cette vie ennuyeuse.\nI can't sleep when I'm stressed out.\tJe ne peux pas dormir quand je suis stressé.\nI can't sleep when I'm stressed out.\tJe ne peux pas dormir quand je suis stressée.\nI can't stand that noise any longer.\tJe ne peux pas supporter ce bruit une minute de plus.\nI can't understand anything he said.\tJe n'arrive à rien comprendre de ce qu'il a dit.\nI cannot do without this dictionary.\tJe ne peux pas me passer de ce dictionnaire.\nI cannot do without this dictionary.\tJe ne peux pas le faire sans ce dictionnaire.\nI cannot find time to read the book.\tJe n'arrive pas à trouver le temps de lire le livre.\nI cannot help laughing at her jokes.\tJe ne peux pas m'empêcher de rire à ses plaisanteries.\nI caught a cold, and I have a fever.\tJ'ai attrapé un rhume et j'ai de la fièvre.\nI caught the man stealing the money.\tJ'ai pris l'homme en train de voler l'argent.\nI consider Tom to be my best friend.\tJe considère Tom comme mon meilleur ami.\nI could never do that sort of thing.\tCe genre de chose ne m'était encore jamais arrivé.\nI could not afford to buy a bicycle.\tJe n'ai pas les moyens de m'acheter un vélo.\nI could not afford to buy a bicycle.\tJe ne pouvais pas me permettre d'acheter un vélo.\nI could not afford to buy a bicycle.\tJe n'aurais pas les moyens de m'acheter un vélo.\nI could use a little help over here.\tJ'aurais besoin d'un coup de main, par ici.\nI couldn't hear what was being said.\tJe n'ai pas pu entendre ce qui était dit.\nI couldn't put up with his rudeness.\tJe ne pouvais supporter sa grossièreté.\nI cried myself to sleep every night.\tJe m'endormais en pleurant, chaque soir.\nI cried when Tom told me about that.\tJ'ai pleuré quand Tom m'a parlé de cela.\nI decided on telling her of my love.\tJ'ai décidé de lui dire que je l'aimais.\nI declined his invitation to dinner.\tJe refusai son invitation à dîner.\nI did better than everyone expected.\tJ'ai fait mieux que quiconque n'espérait.\nI did that which she asked me to do.\tJ'ai fait ce qu'elle m'a demandé de faire.\nI didn't even know you spoke French.\tJ'ignorais même que tu parlais français.\nI didn't even know you spoke French.\tJ'ignorais même que tu parlais le français.\nI didn't even know you spoke French.\tJ'ignorais même que vous parliez français.\nI didn't even know you spoke French.\tJ'ignorais même que vous parliez le français.\nI didn't even notice you were there.\tJe n'ai même pas remarqué que tu étais là.\nI didn't even notice you were there.\tJe n'ai même pas remarqué que vous étiez là.\nI didn't expect you to turn up here.\tJe ne comptais pas que tu te montrerais ici.\nI didn't expect you to turn up here.\tJe ne pensais pas que vous apparaîtriez ici.\nI didn't expect you to turn up here.\tJe ne m'attendais pas à ce que tu te montres ici.\nI didn't expect you to turn up here.\tJe ne m'attendais pas à ce que vous vous montriez ici.\nI didn't have the heart to tell you.\tJe n'ai pas eu le cœur de vous le dire.\nI didn't have the heart to tell you.\tJe n'ai pas eu le cœur de te le dire.\nI didn't have the heart to tell you.\tJe n'eus pas le cœur de vous le dire.\nI didn't have the heart to tell you.\tJe n'eus pas le cœur de te le dire.\nI didn't know how to express myself.\tJe fus à court de mots.\nI didn't know there was a pond here.\tJe ne savais pas qu’il y avait un étang ici.\nI didn't mean to interrupt anything.\tJe n'avais pas l'intention d'interrompre quoi que ce soit.\nI didn't mean to interrupt anything.\tJe n'avais pas l'intention d'interrompre quoi que ce fut.\nI didn't really feel like going out.\tJe n'avais pas vraiment envie de sortir.\nI didn't want Tom to get in trouble.\tJe ne voulais pas que Tom ait des ennuis.\nI didn't want to waste so much time.\tJe ne voulais pas perdre tant de temps.\nI do not like mathematics very much.\tJe n'aime pas beaucoup les mathématiques.\nI do not like mathematics very much.\tJe goûte peu les mathématiques.\nI don't care a bit about the future.\tLe futur m'importe peu.\nI don't care for that sort of thing.\tJe n'apprécie pas ce genre de choses.\nI don't disagree with your decision.\tJe ne suis pas en désaccord avec votre décision.\nI don't disagree with your decision.\tJe ne suis pas en désaccord avec ta décision.\nI don't even think about it anymore.\tJe n'y pense même plus.\nI don't even want to hazard a guess.\tJe ne veux même pas hasarder une hypothèse.\nI don't even want to hazard a guess.\tJe ne veux même pas hasarder une conjecture.\nI don't even want to hazard a guess.\tJe ne veux même pas hasarder une supposition.\nI don't even want to think about it.\tJe ne veux même pas y penser.\nI don't expect you to understand it.\tJe ne m'attends pas à ce que vous le compreniez.\nI don't expect you to understand it.\tJe ne m'attends pas à ce que tu le comprennes.\nI don't feel like going out tonight.\tJe n'ai pas envie de sortir cette nuit.\nI don't feel like going out tonight.\tJe n'ai pas envie de sortir ce soir.\nI don't have a very good dictionary.\tJe n'ai pas un très bon dictionnaire.\nI don't have any camping equipement.\tJe n'ai pas de matériel de camping.\nI don't have any friends to talk to.\tJe n'ai pas d'amis à qui parler.\nI don't have any friends to talk to.\tJe n'ai aucun ami à qui parler.\nI don't have any ideas at this time.\tJe n'ai aucune idée à l'heure qu'il est.\nI don't have anything to say to you.\tJe n'ai rien à te dire.\nI don't have anything to say to you.\tJe n'ai rien à vous dire.\nI don't have anything to say to you.\tJ'ai rien à te dire.\nI don't have the money to buy a car.\tJe n'ai pas l'argent pour acheter une voiture.\nI don't have the money to buy a car.\tJe ne dispose pas de l'argent pour acheter une voiture.\nI don't have time to argue with you.\tJe n'ai pas le temps de me disputer avec vous.\nI don't have time to argue with you.\tJe n'ai pas le temps de me disputer avec toi.\nI don't have time to do the laundry.\tJe n'ai pas le temps de faire la lessive.\nI don't have time to do the laundry.\tJe n'ai pas le temps de m'occuper du linge.\nI don't have time to explain it now.\tJe n'ai pas le temps de l'expliquer pour le moment.\nI don't have to make an appointment.\tJe n'ai pas à prendre rendez-vous.\nI don't know all the details myself.\tJe ne connais pas moi-même tous les détails.\nI don't know any of the five ladies.\tJe ne connais aucune de ces cinq femmes.\nI don't know anything about cricket.\tJe n'y connais rien en cricket.\nI don't know anything about cricket.\tJe ne connais rien au cricket.\nI don't know because I wasn't there.\tJe ne sais pas car je n'étais pas là.\nI don't know either of his brothers.\tJe ne connais aucun de ses frères.\nI don't know how else to explain it.\tJ'ignore comment l'expliquer autrement.\nI don't know how else to explain it.\tJe ne sais comment l'expliquer autrement.\nI don't know how else to explain it.\tJe ne sais pas comment l'expliquer autrement.\nI don't know how much time I've got.\tJe ne sais pas de combien de temps je dispose.\nI don't know how much time I've got.\tJ'ignore de combien de temps je dispose.\nI don't know how to handle children.\tJe ne sais pas comment m'occuper d'enfants.\nI don't know if I have enough money.\tJ'ignore si je dispose de suffisamment d'argent.\nI don't know if that means anything.\tJe ne sais si ça signifie quoi que ce soit.\nI don't know if that means anything.\tJ'ignore si ça signifie quoi que ce soit.\nI don't know if this will be enough.\tJ'ignore si ceci sera suffisant.\nI don't know if this will be enough.\tJe ne sais pas si ceci sera suffisant.\nI don't know much about your family.\tJe ne sais pas grand-chose de ta famille.\nI don't know what I'm doing anymore.\tJe ne sais plus ce que je fais.\nI don't know what could've happened.\tJ'ignore ce qui aurait pu se passer.\nI don't know what could've happened.\tJ'ignore ce qui aurait pu arriver.\nI don't know what else we should do.\tJe ne sais pas ce que nous devrions faire d'autre.\nI don't know what else we should do.\tJ'ignore ce que nous devrions faire d'autre.\nI don't know what to do from now on.\tJe ne sais pas quoi faire ensuite.\nI don't know what to do from now on.\tJe ne sais pas quoi faire à partir de maintenant.\nI don't know what to eat for dinner.\tJ'ignore quoi manger pour dîner.\nI don't know what to eat for dinner.\tJ'ignore quoi manger à dîner.\nI don't know what to say about that.\tJe ne sais pas quoi dire à ce sujet.\nI don't know what to say about that.\tJ'ignore quoi dire à ce sujet.\nI don't know why I reacted that way.\tJ'ignore pourquoi j'ai réagi ainsi.\nI don't know why he said that to me.\tJe ne sais pas pourquoi il m'a dit ça.\nI don't know why you don't like Tom.\tJe ne sais pas pourquoi tu n'aimes pas Tom.\nI don't know why you don't like Tom.\tJe ne sais pas pourquoi vous n'aimez pas Tom.\nI don't know why you don't like him.\tJe ne sais pas pourquoi vous ne l'aimez pas.\nI don't like being treated this way.\tJe n'aime pas être traité de cette manière.\nI don't like it when you're so busy.\tJe n'aime pas que tu sois si occupé.\nI don't mind leaving at six o'clock.\tJe m'en fiche de quitter à six heures.\nI don't need you to take care of me.\tJe n'ai pas besoin que tu prennes soin de moi.\nI don't need you to take care of me.\tJe n'ai pas besoin que vous preniez soin de moi.\nI don't pretend to understand women.\tJe ne prétends pas comprendre les femmes.\nI don't read this kind of book much.\tJe ne lis pas souvent ce genre de livres.\nI don't really know what that means.\tJe ne sais pas vraiment ce que ça signifie.\nI don't really know what that means.\tJe ne sais pas vraiment ce que ça veut dire.\nI don't really know what this means.\tJe ne sais pas vraiment ce que ceci signifie.\nI don't remember any of their names.\tJe ne me rappelle aucun de leurs noms.\nI don't remember anything happening.\tJe ne me rappelle pas que quoi que ce soit fut arrivé.\nI don't remember anything happening.\tJe ne me rappelle pas que quoi que ce fut se produisit.\nI don't remember anything happening.\tJe ne me rappelle pas que quoi que ce soit se soit produit.\nI don't remember anything happening.\tJe ne me rappelle pas que quoi que ce soit ait eu lieu.\nI don't remember anything happening.\tJe ne me rappelle pas que quoi que ce soit s'est passé.\nI don't remember anything happening.\tJe ne me rappelle pas que quoi que ce fut arriva.\nI don't remember mailing the letter.\tJe ne me souviens pas si j'ai posté la lettre.\nI don't remember where I put my key.\tJe ne me rappelle pas où j'ai mis ma clé.\nI don't remember where I put my key.\tJe ne me souviens pas où j'ai mis ma clé.\nI don't see any footprints anywhere.\tJe ne vois aucune empreinte nulle part.\nI don't see how you can ignore this.\tJe ne vois pas comment vous pouvez ignorer ça.\nI don't see how you can ignore this.\tJe ne vois pas comment tu peux ignorer ça.\nI don't think I can do this anymore.\tJe ne pense pas arriver à faire encore ça.\nI don't think I can do this anymore.\tJe ne pense pas parvenir à faire encore ça.\nI don't think I can do this anymore.\tJe ne pense pas pouvoir faire encore ça.\nI don't think I can do this anymore.\tJe ne pense pas pouvoir encore faire ça.\nI don't think I can do this anymore.\tJe ne pense pas que je puisse faire encore ça.\nI don't think I can do this anymore.\tJe ne pense pas que j'arrive encore à faire ça.\nI don't think I can do this anymore.\tJe ne pense pas que je parvienne encore à faire ça.\nI don't think I can do this anymore.\tJe ne pense pas que je puisse encore faire ça.\nI don't think I can wait any longer.\tJe ne pense pas que je puisse attendre plus longtemps.\nI don't think I can wait any longer.\tJe ne pense pas pouvoir attendre plus longtemps.\nI don't think I can walk any faster.\tJe ne pense pas que je puisse marcher plus vite.\nI don't think I can walk any faster.\tJe ne pense pas pouvoir marcher plus vite.\nI don't think Tom will believe Mary.\tJe ne pense pas que Tom croira Mary.\nI don't think about you in that way.\tJe ne pense pas à vous de cette manière.\nI don't think about you in that way.\tJe ne pense pas à toi de cette manière.\nI don't think he is fit for the job.\tJe ne pense pas qu'il soit fait pour ce travail.\nI don't think he is fit for the job.\tJe ne pense pas qu'il convienne pour ce poste.\nI don't think we've been introduced.\tJe ne pense pas que nous ayons été présentés.\nI don't understand what Tom told us.\tJe ne comprends pas ce que Tom nous a dit.\nI don't understand what's happening.\tJe ne comprends ce qui est en train de se passer.\nI don't understand what's happening.\tJe ne comprends pas ce qui arrive.\nI don't want to do that without you.\tJe ne veux pas faire ça sans toi.\nI don't want to do that without you.\tJe ne veux pas faire cela sans vous.\nI don't want to drink anything cold.\tJe ne voudrais rien boire de froid.\nI don't want to hear about it again.\tJe ne veux plus en entendre parler.\nI don't want to spend more than $10.\tJe ne veux pas dépenser plus de 10 dollars.\nI don't want to talk about this now.\tJe ne veux pas en parler pour l'instant.\nI doubt Tom really needs to do that.\tJe doute que Tom aie vraiment besoin de faire ça.\nI doubt that's what really happened.\tJe doute que ce soit là ce qui s'est effectivement produit.\nI doubt that's what really happened.\tJe doute que ce soit ce qui est vraiment arrivé.\nI doubt that's what really happened.\tJe doute que ce soit ce qui s'est effectivement passé.\nI doubt that's what really happened.\tJe doute que ce soit là ce qui a effectivement eu lieu.\nI doubt there's anyone following me.\tJe doute que quiconque me suive.\nI eat my breakfast at seven o'clock.\tJe prends mon petit-déjeuner à sept heures.\nI expect he'll pass the examination.\tJe m'attends à ce qu'il réussisse l'examen.\nI expected you to be here for lunch.\tJe m'attendais à ce que tu sois là pour le déjeuner.\nI expected you to be here for lunch.\tJe m'attendais à ce que tu sois ici pour le déjeuner.\nI expected you to be here for lunch.\tJe m'attendais à ce que vous soyez là pour le déjeuner.\nI expected you to be here for lunch.\tJe m'attendais à ce que vous soyez ici pour le déjeuner.\nI failed to recall the song's title.\tJe n'ai pas pu me rappeler le titre de la chanson.\nI feel bad about ruining your party.\tJe me sens mal d'avoir gâché votre fête.\nI feel bad about ruining your party.\tJe me sens mal d'avoir gâché ta fête.\nI feel like I'm forgeting something.\tJ'ai l'impression que j'oublie quelque chose.\nI fell in love in an unlikely place.\tJe suis tombé amoureux dans un endroit improbable.\nI fell in love in an unlikely place.\tJe suis tombé amoureuse dans un endroit improbable.\nI felt a light touch on my shoulder.\tJ'ai senti un contact léger sur mon épaule.\nI felt like I really belonged there.\tJ'ai eu le sentiment que j'étais vraiment de là.\nI figure it'll take one or two days.\tJ'imagine que ça prendra un jour ou deux.\nI figured that would make you laugh.\tJ'ai songé que ça te ferait rire.\nI figured that would make you laugh.\tJ'ai songé que ça vous ferait rire.\nI figured you must be hungry by now.\tJ'ai pensé que vous deviez avoir faim, à l'heure qu'il est.\nI figured you must be hungry by now.\tJ'ai pensé que tu devais avoir faim, à l'heure qu'il est.\nI finally caught up with my friends.\tJe rattrapai finalement mes amis.\nI finally caught up with my friends.\tJe rattrapai finalement mes amies.\nI finally caught up with my friends.\tJ'ai finalement rattrapé mes amis.\nI finally caught up with my friends.\tJ'ai finalement rattrapé mes amies.\nI find it difficult to believe that.\tJe trouve que c'est difficile à croire.\nI found that restaurant by accident.\tJ'ai trouvé ce restaurant par hasard.\nI found that restaurant by accident.\tJ’ai trouvé ce restaurant par hasard.\nI found your slippers under the bed.\tJ'ai trouvé tes pantoufles sous le lit.\nI freaked out and started screaming.\tJ'ai flippé et me suis mis à crier.\nI go grocery shopping every morning.\tJe vais faire les courses tous les matins.\nI go to bed at ten o'clock at night.\tJe vais au lit à dix heures précises le soir.\nI go to the restaurant every 2 days.\tJe vais au restaurant tous les deux jours.\nI got acquainted with her in France.\tJe l'ai connue en France.\nI got acquainted with him last year.\tJ'ai fait sa connaissance l'année dernière.\nI got out of the car at 40th Street.\tJe suis descendu de voiture à la 40e rue.\nI got tired of lying in bed all day.\tJ'en ai eu marre d'être au lit toute la journée.\nI got to Boston yesterday afternoon.\tJe suis arrivé à Boston hier après-midi.\nI guess I haven't made myself clear.\tJe suppose que je ne me suis pas fait comprendre.\nI guess I'd better get back to work.\tJe suppose que je ferais mieux de retourner au travail.\nI had a hard time finding his house.\tJ'ai eu du mal à trouver sa maison.\nI had a quarrel with him over money.\tJ'ai eu une dispute avec lui à propos d'argent.\nI had already spotted him from afar.\tJe l'avais déjà repéré de loin.\nI had hoped we might become friends.\tJ'avais espéré que nous pourrions devenir amis.\nI had hoped we might become friends.\tJ'avais espéré que nous pourrions devenir amies.\nI had my licence renewed a week ago.\tJ'ai fait renouveler mon permis il y a une semaine.\nI had my personal computer repaired.\tJ'ai fait réparer mon ordinateur.\nI had no control over the situation.\tJe n'avais aucun contrôle de la situation.\nI had no idea you were so dedicated.\tJe n'avais pas idée que tu étais si fervente.\nI had no idea you were so dedicated.\tJe n'avais pas idée que tu étais si fervent.\nI had no idea you were so dedicated.\tJe n'avais pas idée que vous étiez si fervente.\nI had no idea you were so dedicated.\tJe n'avais pas idée que vous étiez si fervent.\nI had no idea you were so dedicated.\tJe n'avais pas idée que vous étiez si ferventes.\nI had no idea you were so dedicated.\tJe n'avais pas idée que vous étiez si fervents.\nI had some engine trouble yesterday.\tJ'ai eu quelques problèmes avec mon moteur hier.\nI had some problems to take care of.\tJ'ai eu des problèmes dont j'ai dû prendre soin.\nI had some work that I needed to do.\tJ'ai eu du travail qu'il me fallait faire.\nI had the gardener plant some trees.\tJ'ai fait planter quelques arbres par le jardinier.\nI had to get something from my room.\tJ'ai dû aller chercher quelque chose dans ma chambre.\nI had to get something from my room.\tIl m'a fallu aller chercher quelque chose dans ma chambre.\nI hadn't expected anyone to be home.\tJe ne m'étais pas attendu à ce que quiconque soit à la maison.\nI hadn't intended to stay this long.\tJe n'avais pas l'intention de rester aussi longtemps.\nI have a car that was made in Japan.\tJe possède une voiture qui a été fabriquée au Japon.\nI have a good appetite this morning.\tJ'ai bon appétit ce matin.\nI have a large collection of stamps.\tJ'ai une grande collection de timbres.\nI have a lot of bills I have to pay.\tJ'ai beaucoup de factures à payer.\nI have a previous engagement at ten.\tJ'ai déjà des obligations à 10 heures.\nI have a reservation for six-thirty.\tJ'ai une réservation pour six heures et demi.\nI have a round trip ticket to Tokyo.\tJ'ai un billet aller-retour pour Tokyo.\nI have an account at that book shop.\tJ'ai un compte ouvert dans cette librairie.\nI have been here since five o'clock.\tJ'ai été ici depuis cinq heures.\nI have been in Japan for two months.\tJ'ai été au Japon pendant deux mois.\nI have four sisters and one brother.\tJ'ai quatre sœurs et un frère.\nI have kept a diary for three years.\tJe tiens un journal intime depuis trois ans.\nI have no idea why she got so angry.\tJe n'ai pas idée de la raison pour laquelle elle s'est autant énervée.\nI have no wish to see the man again.\tJe ne souhaite aucunement revoir l'homme.\nI have nothing to do this afternoon.\tJe n'ai rien à faire cet après-midi.\nI have nothing to do with that case.\tJe n'ai rien à voir avec cette affaire.\nI have nothing to do with the crime.\tJe n'ai rien à voir avec ce crime.\nI have read every book on the shelf.\tJ'ai lu tous les livres sur l'étagère.\nI have read that story in some book.\tJ'ai lu cette histoire dans un livre.\nI have read that story in some book.\tJ'ai lu cette histoire dans quelque livre.\nI have something I want to tell you.\tJ'ai quelque chose que je veux te raconter.\nI have something I want to tell you.\tJ'ai quelque chose que je veux te dire.\nI have something I want to tell you.\tJ'ai quelque chose que je veux vous raconter.\nI have something I want to tell you.\tJ'ai quelque chose que je veux vous dire.\nI have to take a bus to go anywhere.\tJe dois prendre un autocar pour aller n'importe où.\nI have to think this over carefully.\tJe dois réfléchir à tout ça sérieusement.\nI haven't finished my breakfast yet.\tJe n'ai pas encore fini mon déjeuner.\nI haven't read either of his novels.\tJe n'ai lu aucun de ses romans.\nI haven't seen her since last month.\tJe ne l'ai pas vue depuis le mois dernier.\nI haven't seen much of him recently.\tCes derniers temps, je ne l'ai pas souvent vu.\nI hear that she is a famous actress.\tJ'entends dire qu'elle est une actrice célèbre.\nI heard the children's happy voices.\tJ'ai entendu les voix joyeuses des enfants.\nI helped my mother with the cooking.\tJ'aidais ma mère pour la cuisine.\nI highly doubt Tom wants to see you.\tJe doute grandement que Tom veuille te voir.\nI hope I can be of some help to you.\tJ'espère pouvoir vous être d'une quelconque assistance.\nI hope I can be of some help to you.\tJ'espère pouvoir t'être d'une aide quelconque.\nI hope Tom never gets out of prison.\tJ'espère que Tom ne sortira jamais de prison.\nI hope they have a pleasant journey.\tJ'espère qu'ils font bon voyage.\nI hope they have a pleasant journey.\tJ'espère qu'elles font bon voyage.\nI hope to see you again before long.\tJ'espère te revoir bientôt.\nI hope we can make it to your party.\tJ'espère que nous pourrons nous arranger pour venir à ta fête.\nI hope we can make it to your party.\tJ'espère que nous pourrons nous arranger pour venir à votre fête.\nI hope you enjoyed the long weekend.\tJ’espère que tu as apprécié le long weekend.\nI hope you have a wonderful evening.\tJe vous souhaite une merveilleuse soirée.\nI hope you will be completely cured.\tJ'espère que tu seras complètement guéri.\nI hope you will be completely cured.\tJ'espère que vous serez complètement guérie.\nI hope you will be completely cured.\tJ'espère que vous serez complètement guéries.\nI hope you will be completely cured.\tJ'espère que vous serez complètement guéris.\nI just don't want to fight with you.\tJe ne veux pas me disputer avec vous, un point c'est tout.\nI just don't want to fight with you.\tJe ne veux pas me battre avec vous, un point c'est tout.\nI just don't want to fight with you.\tJe ne veux tout simplement pas me disputer avec vous.\nI just don't want to fight with you.\tJe ne veux tout simplement pas me disputer avec toi.\nI just finished cleaning the garage.\tJe viens de finir de nettoyer le garage.\nI just got a call from the hospital.\tJe viens d'avoir un appel de l'hôpital.\nI just got there as fast as I could.\tJe m'y suis simplement rendu aussi vite que possible.\nI just got there as fast as I could.\tJe m'y suis simplement rendue aussi vite que possible.\nI just had a talk with your teacher.\tJe viens d'avoir une conversation avec ton professeur.\nI just had a talk with your teacher.\tJe viens d'avoir une conversation avec ton instituteur.\nI just had a talk with your teacher.\tJe viens d'avoir une conversation avec votre professeur.\nI just had a talk with your teacher.\tJe viens d'avoir une conversation avec ton institutrice.\nI just told everybody the good news.\tJe viens de dire la bonne nouvelle à tout le monde.\nI just want to know what's going on.\tJe veux juste savoir ce qui se passe.\nI just want to put it all behind us.\tJe veux simplement mettre tout ça derrière nous.\nI just want to say that I was wrong.\tJe veux simplement dire que j'ai eu tort.\nI just want to see what will happen.\tJe veux juste voir ce qui se passera.\nI just want you to think about that.\tJe veux simplement que vous y pensiez.\nI just want you to think about that.\tJe veux simplement que vous pensiez à cela.\nI just wanted tonight to be perfect.\tJe voulais juste que ce soir soit parfait.\nI knew you would do something great.\tJe savais que vous feriez quelque chose de grand.\nI knew you would do something great.\tJe savais que tu ferais quelque chose de grand.\nI knew you would do something great.\tJe savais que vous feriez merveille.\nI knew you would do something great.\tJe savais que tu ferais merveille.\nI knew you'd know where to find Tom.\tJe savais que tu saurais où trouver Tom.\nI knew you'd know where to find Tom.\tJe savais que vous sauriez où trouver Tom.\nI knew you'd like what Tom gave you.\tJe savais que tu allais aimer ce que Tom t'as donné.\nI know some students in that school.\tJe connais quelques étudiants de cette école.\nI know they'll all want to help you.\tJe sais qu'elles voudront toutes t'aider.\nI know they'll all want to help you.\tJe sais qu'elles voudront toutes vous aider.\nI know they'll all want to help you.\tJe sais qu'elles voudront toutes t'assister.\nI know they'll all want to help you.\tJe sais qu'elles voudront toutes vous assister.\nI know they'll all want to help you.\tJe sais qu'ils voudront tous t'assister.\nI know they'll all want to help you.\tJe sais qu'ils voudront tous t'aider.\nI know they'll all want to help you.\tJe sais qu'ils voudront tous vous assister.\nI know they'll all want to help you.\tJe sais qu'ils voudront tous vous aider.\nI know who it is you're looking for.\tJe sais qui tu recherches.\nI know who it is you're looking for.\tJe sais qui vous recherchez.\nI leave for London tomorrow morning.\tJe pars pour Londres demain matin.\nI left some stuff I need in the car.\tJ'ai laissé des trucs dont j'ai besoin dans la voiture.\nI let my emotions cloud my judgment.\tJ'ai laissé mes émotions troubler mon jugement.\nI let my sister use my new computer.\tJe laisse ma sœur utiliser mon nouvel ordinateur.\nI lied to my boyfriend about my age.\tJ'ai menti à mon petit ami au sujet de mon âge.\nI like the slow rhythm of that song.\tJ'aime le rythme lent de cette chanson.\nI like things just the way they are.\tJ'aime les choses exactement telles qu'elles sont.\nI like to listen to classical music.\tJ'aime écouter la musique classique.\nI locked myself out of my apartment.\tJe me suis enfermé à l'extérieur de mon appartement.\nI looked for him in the supermarket.\tJe l'ai recherché dans le supermarché.\nI looked, but I didn't see anything.\tJ'ai regardé, mais je n'ai rien vu.\nI lost my key somewhere around here.\tJ'ai perdu ma clé quelque part autour d'ici.\nI lost my key somewhere around here.\tJ'ai perdu ma clef quelque part par ici.\nI lost my purse on my way to school.\tJ'ai perdu mon porte-monnaie en allant à l'école.\nI loved that movie when I was a kid.\tJ'ai adoré ce film lorsque j'étais enfant.\nI made several mistakes in the exam.\tJ'ai fait plusieurs erreurs à l'examen.\nI made sure no one was following me.\tJe me suis assuré que personne ne me suivait.\nI managed to make him understand it.\tJe me suis débrouillé pour le lui faire comprendre.\nI may have seen that girl somewhere.\tJ'ai dû voir cette fille quelque part.\nI may know someone who can help you.\tIl se peut que je connaisse quelqu'un qui pourrait vous aider.\nI met her on the street by accident.\tJe l'ai rencontrée par hasard dans la rue.\nI met him once when I was a student.\tJe l'ai rencontré une fois quand j'étais étudiant.\nI might be drunk, but I'm not crazy.\tJe suis peut-être ivre mais je ne suis pas fou.\nI missed the last train last Friday.\tJ'ai raté le dernier train vendredi dernier.\nI need a hacksaw to finish this job.\tIl me faut une scie à métaux pour achever ce boulot.\nI need a hacksaw to finish this job.\tJ'ai besoin d'une scie à métaux pour achever ce boulot.\nI need a new broom. This one's shot.\tJ'ai besoin d'un nouveau balai, celui-ci est foutu.\nI need a new broom. This one's shot.\tJ'ai besoin d'un nouveau balai, celui-ci est fichu.\nI need someone who can speak French.\tJ'ai besoin de quelqu'un qui parle français.\nI need thread to sew on this button.\tJ'ai besoin de fil pour coudre ce bouton.\nI need thread to sew on this button.\tIl me faut du fil pour coudre ce bouton.\nI never have had occasion to use it.\tJe n'ai jamais eu l'occasion de l'utiliser.\nI never have trouble falling asleep.\tJe n'éprouve jamais de difficulté à m'endormir.\nI never imagined anything like this.\tJe n'avais jamais imaginé quelque chose comme cela.\nI never imagined anything like this.\tJe n'avais jamais imaginé une chose pareille.\nI never imagined he'd do that to me.\tJe n'ai jamais imaginé qu'il me ferait ça.\nI never let anyone else feed my dog.\tJe n'ai jamais laissé quelqu'un d'autre nourrir mon chien.\nI never really gave it much thought.\tJe n’ai jamais vraiment pris la peine d’y réfléchir.\nI never said this job would be easy.\tJe n’ai jamais dit que ce travail serait facile.\nI never thought you really did that.\tJe n'ai jamais pensé que vous aviez vraiment fait ça.\nI never thought you really did that.\tJe n'ai jamais pensé que tu avais vraiment fait ça.\nI no longer have the energy to talk.\tJe n'ai plus la force de discuter.\nI no longer wish to be your husband.\tJe ne désire plus être ton mari.\nI object to being treated like that.\tJe refuse d'être traité comme ça.\nI only quit because you asked me to.\tJe n'ai arrêté que parce que vous me l'avez demandé.\nI only quit because you asked me to.\tJe n'ai arrêté que parce que tu me l'as demandé.\nI opened the drawer to get a pencil.\tJ'ai ouvert le tiroir afin de prendre un crayon.\nI opened the drawer to get a pencil.\tJ'ouvris le tiroir, afin de prendre un crayon.\nI ordered this swimsuit from France.\tJ'ai commandé ce maillot de bain en France.\nI overslept so I was late to school.\tJ'ai dormi trop longtemps donc je suis arrivé en retard à l'école.\nI owe what I am today to my parents.\tJe dois ce que je suis aujourd'hui à mes parents.\nI paid him on the spot for his work.\tJe le payai sur-le-champ pour son travail.\nI paid him on the spot for his work.\tJe l'ai sur-le-champ payé pour son travail.\nI persuaded him to consult a doctor.\tJe l'ai convaincu de voir un médecin.\nI persuaded him to give up the idea.\tJe l'ai convaincu d'abandonner l'idée.\nI probably shouldn't have done that.\tJe n'aurais probablement pas dû faire ça.\nI reached Nagoya early this morning.\tJe suis arrivé à Nagoya tôt ce matin.\nI read the book from cover to cover.\tJ'ai lu le livre de bout en bout.\nI really don't recommend that today.\tJe ne le recommande vraiment pas aujourd'hui.\nI really feel like crying right now.\tJ'ai vraiment envie de pleurer, à l'instant.\nI really have to finish my homework.\tIl me faut vraiment terminer mes devoirs.\nI really need to be alone right now.\tIl me faut vraiment être seul, à l'instant.\nI really need to be alone right now.\tIl me faut vraiment être seule, à l'instant.\nI really want to get this work done.\tJe veux vraiment que ce travail soit fait.\nI really wish I knew how to do that.\tJ'aimerais vraiment savoir faire ça.\nI regret having neglected my health.\tJe regrette d'avoir négligé ma santé.\nI regret not having kept my promise.\tJe regrette de ne pas avoir tenu ma promesse.\nI regret saying that you were wrong.\tJe regrette de vous dire que vous aviez tort.\nI regret that I did not work harder.\tJe regrette de ne pas avoir travaillé plus dur.\nI remember hearing this tune before.\tJe me rappelle avoir entendu cette chanson, auparavant.\nI remember hearing this tune before.\tJe me souviens avoir entendu cette chanson, auparavant.\nI remember seeing you all somewhere.\tJe me souviens vous avoir tous vus quelque part.\nI remember seeing you all somewhere.\tJe me souviens vous avoir toutes vues quelque part.\nI saw Tom dancing with another girl.\tJ'ai vu Tom danser avec une autre fille.\nI saw an old woman cross the street.\tJ'ai vu une vieille dame traverser la rue.\nI saw him walking alone in the park.\tJe le vis marcher seul dans le parc.\nI saw the man knocked down by a car.\tJ'ai vu l'homme renversé par la voiture.\nI should get to Boston by lunchtime.\tJe devrais arriver à Boston d'ici l'heure du déjeuner.\nI should go home and get some sleep.\tJe devrais aller chez moi et prendre du repos.\nI should probably not be doing this.\tJe ne devrais probablement pas être en train de faire ça.\nI should've done that, but I didn't.\tJ'aurais dû faire ça, mais je ne l'ai pas fait.\nI should've expected that to happen.\tJ'aurais dû m'attendre à ce que cela arrive.\nI should've expected this to happen.\tJ'aurais dû m'attendre à ce que ceci arrive.\nI shouldn't have gotten up so early.\tJe n'aurais pas dû me lever si tôt.\nI spent last Sunday reading a novel.\tJ'ai passé dimanche dernier à lire un roman.\nI spent the weekend with my friends.\tJ'ai passé le week-end avec mes amis.\nI spent two hours playing the piano.\tJ'ai joué du piano pendant deux heures.\nI spilled coffee on your tablecloth.\tJ'ai renversé du café sur ta nappe.\nI stayed at home because I was sick.\tJe suis resté chez moi parce que j'étais malade.\nI steered clear of sensitive topics.\tJe me suis tenu à l'écart des sujets sensibles.\nI steered clear of sensitive topics.\tJe me suis tenue à l'écart des sujets sensibles.\nI still have a lot of pages to read.\tJ'ai encore beaucoup de pages à lire.\nI still say we should've helped Tom.\tJe continue à dire que nous aurions dû aider Tom.\nI studied hard when I was in school.\tJ'ai étudié dur lorsque j'étais à l'école.\nI studied hard when I was in school.\tJ'étais celui qui a étudié dur lorsque j'étais à l'école.\nI studied hard when I was in school.\tJ'étais celle qui a étudié dur lorsque j'étais à l'école.\nI suppose everyone thinks I'm crazy.\tJe suppose que tout le monde pense que je suis fou.\nI suppose you want to use my office.\tJe suppose que vous voulez utiliser mon bureau.\nI suppose you want to use my office.\tJe suppose que tu veux utiliser mon bureau.\nI take it that we are to come early.\tJe suppose que nous devons arriver tôt.\nI talked him into selling his house.\tJe l'ai persuadé de vendre sa maison.\nI taught Tom French for three years.\tJ'ai enseigné le français à Tom pendant trois ans.\nI taught my girlfriend how to drive.\tJ'ai appris à conduire à ma copine.\nI taught my girlfriend how to drive.\tJ'ai appris à conduire à ma petite amie.\nI taught my girlfriend how to drive.\tJ'ai appris à conduire à ma nana.\nI think I'm in trouble with my wife.\tJe pense que j'ai des problèmes avec ma femme.\nI think I've seen this movie before.\tJe pense que j'ai vu ce film auparavant.\nI think I've seen this movie before.\tJe pense que j'ai déjà vu ce film.\nI think Tom could make a difference.\tJe pense que Tom peut faire la différence.\nI think Tom needs medical attention.\tJe pense que Tom a besoin de soins médicaux.\nI think Tom said he was from Boston.\tJe pense que Tom a dit qu'il venait de Boston.\nI think it's going to be a nice day.\tJe pense qu'on va passer une bonne journée.\nI think it's sad to have no friends.\tJe pense qu'il est triste de ne pas avoir amis.\nI think it's time for me to move on.\tJe pense qu'il est temps pour moi d'avancer.\nI think perhaps you should call Tom.\tJe pense que vous devriez peut-être appeler Tom.\nI think that fact is very important.\tJe pense que ce fait est très important.\nI think that recording is important.\tJe pense qu'enregistrer est important.\nI think that recording is important.\tJe pense que cet enregistrement est important.\nI think the box has something in it.\tJe pense que la boîte contient quelque chose.\nI think there's going to be trouble.\tJe pense qu'il va y avoir des problèmes.\nI think there's something Tom wants.\tJe pense que Tom veut quelque chose.\nI think we can handle the situation.\tJe pense que nous pouvons gérer la situation.\nI think we get off at the next stop.\tJe crois que nous descendons au prochain arrêt.\nI think we'd better get out of here.\tJe pense que nous ferions mieux de sortir d'ici.\nI think we'll get there before noon.\tJe pense qu'on y arrivera avant midi.\nI think what Tom did was very brave.\tJe pense que ce que Tom a fait a été courageux.\nI think you know what you should do.\tJe pense que vous savez ce que vous devriez faire.\nI think you know what you should do.\tJe pense que tu sais ce que tu devrais faire.\nI think you need someone to talk to.\tJe pense que tu as besoin de quelqu'un à qui parler.\nI think you need someone to talk to.\tJe pense que vous avez besoin de quelqu'un à qui parler.\nI think you shouldn't be doing that.\tJe pense que tu ne devrais pas faire ça.\nI think you shouldn't be doing that.\tJe pense que vous ne devriez pas faire ça.\nI think you'd better come back home.\tJe pense que tu ferais mieux de rentrer à la maison.\nI think you'd better come back home.\tJe pense que vous feriez mieux de rentrer à la la maison.\nI think you'd better come back home.\tJe pense que tu ferais mieux de rentrer chez toi.\nI think you'd better come back home.\tJe pense que vous feriez mieux de rentrer chez vous.\nI thought a lot about what Tom said.\tJ'ai beaucoup pensé à ce que Tom a dit.\nI thought a lot about what you said.\tJ’ai beaucoup réfléchi à ce que tu as dis.\nI thought he wouldn't recognize her.\tJe pensais qu'il ne la reconnaîtrait pas.\nI thought you had to get up by 7:30.\tJe croyais que tu devais te lever à 7h30.\nI thought you'd want to take a look.\tJe pensais que tu voudrais jeter un œil.\nI thought you'd want to take a look.\tJe pensais que vous voudriez jeter un œil.\nI told Tom I was going to handle it.\tJ'ai dit à Tom que j'allais m'en occuper.\nI told you I didn't want any coffee.\tJe t'ai dit que je ne voulais pas de café.\nI told you I didn't want any coffee.\tJe vous ai dit que je ne voulais pas de café.\nI took a painkiller for my headache.\tJ'ai pris un antalgique pour mon mal de crâne.\nI took a painkiller for my headache.\tJ'ai pris un antalgique pour mon mal de tête.\nI took two aspirins for my headache.\tJ'ai pris deux cachets d'aspirine pour mon mal de tête.\nI tried to imagine life on the moon.\tJ'ai essayé d'imaginer la vie sur la Lune.\nI used to take a walk every morning.\tJ’avais l’habitude de faire une balade tous les matins.\nI usually have dessert after dinner.\tJe mange habituellement un dessert à la fin du dîner.\nI value our friendship a great deal.\tJ'accorde beaucoup de valeur à notre amitié.\nI visit my grandmother twice a week.\tJe vais chez ma grand-mère deux fois par semaine.\nI want a knife to cut the rope with.\tJe veux un couteau avec lequel couper la corde.\nI want a knife to cut the rope with.\tJe veux un couteau pour couper la corde.\nI want her to do the difficult work.\tJe veux lui faire faire ce travail difficile.\nI want it to be different this time.\tCette fois, je veux que ce soit différent.\nI want my dinner brought to my room.\tJe veux que mon dîner soit apporté dans ma chambre.\nI want my dinner brought to my room.\tJe veux que mon déjeuner soit apporté dans ma chambre.\nI want my parents to be proud of me.\tJe veux que mes parents soient fiers de moi.\nI want to be a pilot when I grow up.\tJe veux être pilote, lorsque je deviendrai grand.\nI want to dedicate this song to him.\tJe veux lui dédier cette chanson.\nI want to do this as much as you do.\tJe veux faire ceci autant que toi.\nI want to do this as much as you do.\tJe veux le faire autant que vous.\nI want to finish the work on my own.\tJe veux finir le travail moi-même.\nI want to go back to the way it was.\tJe veux revenir à ce que c'était avant.\nI want to go to school in Australia.\tJe veux aller à l'école en Australie.\nI want to have a part-time job, too.\tJe veux aussi avoir un emploi à temps partiel.\nI want to have a part-time job, too.\tJe veux également avoir un emploi à temps partiel.\nI want to hear more about your trip.\tJe veux en entendre plus sur ton voyage.\nI want to know exactly what you did.\tJe veux savoir exactement ce que tu as fait.\nI want to know exactly what you did.\tJe veux savoir exactement ce que vous avez fait.\nI want to know what's on that train.\tJe veux savoir ce qui se trouve à bord de ce train.\nI want to know where you heard that.\tJe veux savoir où tu as entendu cela.\nI want to know where you heard that.\tJe veux savoir où tu as entendu ça.\nI want to know where you heard that.\tJe veux savoir où vous avez entendu cela.\nI want to know where you heard that.\tJe veux savoir où vous avez entendu ça.\nI want to know who your friends are.\tJe veux savoir qui sont tes amis.\nI want to know who your friends are.\tJe veux savoir qui sont vos amis.\nI want to learn how to speak French.\tJe veux apprendre à parler le français.\nI want to live close to the station.\tJe veux vivre pas loin de la gare.\nI want to make sure there is enough.\tJe veux m'assurer qu'il y en a assez.\nI want to make sure there is enough.\tJe veux m'assurer qu'il y en a suffisamment.\nI want to pretend it never happened.\tJe veux faire comme si ça n'était jamais arrivé.\nI want to send this letter to Japan.\tJe souhaite envoyer cette lettre au Japon.\nI want to show you what Tom gave me.\tJe veux te montrer ce que Tom m'a donné.\nI want to show you what Tom gave me.\tJe veux vous montrer ce que Tom m'a donné.\nI want to take a nice long vacation.\tJe veux prendre de chouettes et longues vacances.\nI want you to give each other a hug.\tJe veux que vous vous étreigniez.\nI want you to go to Boston with Tom.\tJe veux que tu ailles à Boston avec Tom.\nI want you to leave my family alone.\tJe veux que vous laissiez ma famille tranquille.\nI wanted to go back to your village.\tJe voulais retourner à votre village.\nI wanted to go back to your village.\tJe voulais retourner dans ton village.\nI was able to swim across the river.\tJe fus en mesure de traverser la rivière à la nage.\nI was bitten in the leg by that dog.\tJ'ai été mordu à la jambe par ce chien.\nI was forced to accept her proposal.\tJ'ai été forcé d'accepter sa proposition.\nI was forced to accept his proposal.\tJ'ai été forcé d'accepter sa proposition.\nI was in bed all day long yesterday.\tJe suis resté alité toute la journée d'hier.\nI was just trying to stop the fight.\tJ'essayais juste d'arrêter le combat.\nI was meaning to ask you about that.\tJ'avais pensé te parler de ça.\nI was not conscious of her presence.\tJ'étais inconscient de sa présence.\nI was puzzled about what to do next.\tJ'étais désorienté quant à savoir quoi faire par la suite.\nI was supposed to do that yesterday.\tJ'étais supposé faire ça hier.\nI was surprised by his perseverance.\tJe fus surpris par sa persévérance.\nI was thinking about asking her out.\tJe pensais à lui demander de sortir avec moi.\nI was thinking the exact same thing.\tJ’étais en train de penser exactement à la même chose.\nI was your mother's first boyfriend.\tJ'étais le premier petit ami de ta mère.\nI wash my hands before eating lunch.\tJe me lave les mains avant de déjeuner.\nI wasn't aware that you were so ill.\tJe ne savais pas que tu étais aussi malade.\nI wasn't following the conversation.\tJe ne suivais pas la conversation.\nI wasn't living in Boston last year.\tJe n'habitais pas à Boston l'année dernière.\nI went outside early in the morning.\tJe suis sorti dehors tôt le matin.\nI went outside early in the morning.\tJe suis sorti tôt le matin.\nI went skiing in Canada last winter.\tJe suis allé skier au Canada l'hiver dernier.\nI went to Canada when I was a child.\tJ'ai été au Canada quand j'étais jeune.\nI went to drink a beer with friends.\tJe suis allé boire une bière avec des amis.\nI will be in high school next April.\tJ'entrerai au lycée en avril prochain.\nI will do whatever I think is right.\tJe ferai tout ce que je pense être juste.\nI will finish the work in five days.\tJe vais finir ce travail dans cinq jours.\nI will go even if it rains tomorrow.\tJ'irai, même s'il pleut demain.\nI will go tomorrow morning at seven.\tJ'irai demain matin à sept heures.\nI will look it up in the dictionary.\tJe le chercherai dans le dictionnaire.\nI will never force you to marry him.\tJe ne te forcerai jamais à l'épouser.\nI will never tell a lie from now on.\tJe ne dirai plus jamais de mensonge à partir de maintenant.\nI will side with you just this once.\tJe prendrai votre parti juste pour cette fois.\nI will stay here for a short period.\tJe ne resterai pas longtemps ici.\nI will wait for you at the bus stop.\tJe vous attendrai à l'arrêt de bus.\nI wish I could write as well as Tom.\tJ'aimerais pouvoir écrire aussi bien que Tom.\nI wish he had gone on to university.\tJ’aurais aimé qu’il aille à l’université.\nI wish nothing but the best for you.\tJe ne vous souhaite rien d'autre que le meilleur.\nI wish nothing but the best for you.\tJe ne te souhaite rien d'autre que le meilleur.\nI wish that Tom was here to help us.\tJ'aimerais que Tom soit là pour nous aider.\nI wish that Tom was here to help us.\tJe voudrais que Tom soit là pour nous aider.\nI won't allow you to date my sister.\tJe ne te permettrai pas de sortir avec ma sœur.\nI won't put up with this any longer.\tÇa, je ne vais plus le tolérer !\nI won't put up with this any longer.\tJe ne vais plus tolérer ça plus longtemps !\nI wonder if Tom knows what Mary did.\tJe me demande si Tom sait ce que Mary a fait.\nI wonder if my efforts will pay off.\tJe me demande si mes efforts vont payer.\nI wonder if this water is drinkable.\tJe me demande si cette eau est potable.\nI wonder if you could do me a favor.\tJe me demande si vous pourriez me faire une faveur.\nI wonder when the Civil War started.\tJe me demande quand la guerre civile américaine a commencé.\nI work every day except for Sundays.\tJe travaille tous les jours sauf le dimanche.\nI work from Monday through Saturday.\tJe travaille du lundi au samedi.\nI would like to attend that lecture.\tJ'aimerais assister à cette conférence.\nI would like to go and get my stuff.\tJe voudrais aller chercher mes affaires.\nI would like to insure this package.\tJ'aimerais assurer ce paquet.\nI would like to purchase some boots.\tJe voudrais acheter quelques bottes.\nI would rather have tea than coffee.\tJe préférerais avoir du thé que du café.\nI would rather walk than go by taxi.\tJe préfère marcher que de prendre un taxi.\nI wouldn't call this an improvement.\tJe ne qualifierais pas ça une amélioration.\nI wouldn't have made it without you.\tJe n'y serais pas parvenu sans vous.\nI wouldn't have made it without you.\tJe n'y serais pas parvenue sans vous.\nI wouldn't have made it without you.\tJe n'y serais pas parvenu sans toi.\nI wouldn't have made it without you.\tJe n'y serais pas parvenue sans toi.\nI wouldn't touch that if I were you.\tJe ne toucherais pas à ça si j'étais toi.\nI wouldn't touch that if I were you.\tJe ne toucherais pas à ça si j'étais vous.\nI'd be happy if that happened again.\tJe serais heureux que ça se reproduise.\nI'd be happy if that happened again.\tJe serais heureuse que ça se reproduise.\nI'd be happy if that happened again.\tJe serais heureux si ça se reproduisait.\nI'd be happy if that happened again.\tJe serais heureuse si ça se reproduisait.\nI'd be happy if that happened again.\tJe serais heureux si ça survenait à nouveau.\nI'd be happy if that happened again.\tJe serais heureuse si ça survenait à nouveau.\nI'd like a word with you in private.\tJ'aimerais avoir un mot avec vous en privé.\nI'd like a word with you in private.\tJ'aimerais avoir un mot avec toi en privé.\nI'd like to ask you a few questions.\tJ'aimerais te poser quelques questions.\nI'd like to ask you a few questions.\tJ'aimerais vous poser quelques questions.\nI'd like to ask you for some advice.\tJ'aimerais te demander conseil.\nI'd like to ask you for some advice.\tJ'aimerais vous demander conseil.\nI'd like to cash a travelers' check.\tJ'aimerais encaisser un chèque de voyage.\nI'd like to do this some other time.\tJ'aimerais le faire une autre fois.\nI'd like to get the meeting started.\tJ'aimerais démarrer la réunion.\nI'd like to get the meeting started.\tJ'aimerais faire démarrer la réunion.\nI'd like to get you both to help me.\tJ'aimerais faire en sorte que vous m'aidiez tous les deux.\nI'd like to get you both to help me.\tJ'aimerais faire en sorte que vous m'aidiez toutes les deux.\nI'd like to have breakfast with you.\tJ'aimerais prendre le petit-déjeuner avec vous.\nI'd like to have some hot chocolate.\tJe voudrais du chocolat chaud.\nI'd like to reserve a table for two.\tJe voudrais réserver une table pour deux personnes.\nI'd like to reserve a table for two.\tJ'aimerais réserver une table pour deux.\nI'd like to see your ticket, please.\tJe voudrais voir votre billet, s'il vous plait.\nI'd like to visit Australia someday.\tJ'aimerais visiter l'Australie un jour.\nI'd like you to be my guest tonight.\tJ'aimerais que tu sois mon invité, ce soir.\nI'd like you to be my guest tonight.\tJ'aimerais que vous soyez mon invité, ce soir.\nI'd like you to have dinner with me.\tJ'aimerais que vous dîniez avec moi.\nI'd like you to have dinner with me.\tJ'aimerais que tu dînes avec moi.\nI'd like you to itemize the charges.\tJ'aimerais que vous fassiez le détail des frais.\nI'd love to get rid of this old car.\tJ'adorerais me débarrasser de cette vieille guimbarde.\nI'd love to get rid of this old car.\tJ'adorerais me débarrasser de cette vieille bagnole.\nI'd love to get rid of this old car.\tJ'adorerais me débarrasser de cette vieille chignole.\nI'd rather not answer that question.\tJe préfère ne pas répondre à cette question.\nI'd rather stay at home than go out.\tJe préférerais rester à la maison que de sortir.\nI'd rather stay at home than go out.\tJe préférerais rester chez moi que de sortir.\nI'll be sixteen on my next birthday.\tJ'aurai 16 ans à mon prochain anniversaire.\nI'll bring you the bill immediately.\tJe vous apporte l’addition tout de suite.\nI'll get used to it sooner or later.\tJe m'y habituerai tôt ou tard.\nI'll give you a call in the morning.\tJe t'appellerai dans la matinée.\nI'll give you a call in the morning.\tJe vous appellerai dans la matinée.\nI'll give you a call in the morning.\tJe te passerai un coup de fil dans la matinée.\nI'll give you a call in the morning.\tJe vous téléphonerai dans la matinée.\nI'll give you to the count of three.\tJe te donne jusqu'à trois.\nI'll remember this incident forever.\tJe me souviendrai toujours de cet incident.\nI'll see to it first thing tomorrow.\tJ'y veillerai demain à la première heure.\nI'll stay with Tom until you return.\tJe resterai avec Tom jusqu'à ce que tu reviennes.\nI'll stay with Tom until you return.\tJe resterai avec Tom jusqu'à votre retour.\nI'll take some X-rays of your teeth.\tJe vais faire une radiographie de votre dentition.\nI'll tell him so when he comes here.\tJe le lui dirai quand il viendra ici.\nI'll tell you what you want to know.\tJe te dirai ce que tu veux savoir.\nI'll tell you what you want to know.\tJe vous dirai ce que vous voulez savoir.\nI'll wait until you finish the work.\tJe vais attendre que vous finissiez votre travail.\nI'm afraid I have internal bleeding.\tJ'ai peur d'avoir une hémorragie interne.\nI'm afraid I've run short of coffee.\tJ'ai peur de ne plus avoir de café.\nI'm afraid I've run short of coffee.\tJe crains de ne plus avoir de café.\nI'm also thinking of going to Korea.\tJe pense aussi aller en Corée.\nI'm beginning to miss my girlfriend.\tJe commence à me languir de ma petite amie.\nI'm bored and don't know what to do.\tJ'en ai assez et ne sais quoi faire.\nI'm busy getting ready for tomorrow.\tJe suis occupé à me préparer pour demain.\nI'm calling from Tom's mobile phone.\tJ'appelle depuis le téléphone portable de Tom.\nI'm calling to report a lost wallet.\tJ'appelle pour signaler un portefeuille perdu.\nI'm calling to tell you what I need.\tJ'appelle pour te dire ce dont j'ai besoin.\nI'm disappointed that he's not here.\tJe suis déçu qu'il ne soit pas là.\nI'm getting more and more gray hair.\tJ'ai de plus en plus de cheveux gris.\nI'm getting off at the next station.\tJ'ai l'intention de descendre au prochain arrêt.\nI'm going to cook you a nice dinner.\tJe vais te cuisiner un bon repas.\nI'm going to need your help on this.\tJe vais avoir besoin de ton aide pour ceci.\nI'm going to need your help on this.\tJe vais avoir besoin de votre aide pour ceci.\nI'm going to study French next year.\tJe vais étudier le français l'année prochaine.\nI'm happy you two are friends again.\tJe suis heureux que vous soyez à nouveau amis tous les deux.\nI'm happy you two are friends again.\tJe suis heureux que vous soyez à nouveau amies toutes les deux.\nI'm happy you two are friends again.\tJe suis heureux que tous deux soyez à nouveau amis.\nI'm happy you two are friends again.\tJe suis heureux que toutes deux soyez à nouveau amies.\nI'm in debt to my uncle for $10,000.\tJe dois dix mille dollars à mon oncle.\nI'm in the mood for something sweet.\tJe prendrais bien quelque chose de sucré, là.\nI'm just glad everything worked out.\tTout est bien qui finit bien.\nI'm just glad everything worked out.\tJe suis content que tout se soit bien passé.\nI'm just going to go powder my nose.\tJe vais juste aller me poudrer le nez.\nI'm not as stupid as you think I am.\tJe ne suis pas aussi bête que tu le penses.\nI'm not as stupid as you think I am.\tJe ne suis pas aussi bête que vous le pensez.\nI'm not carrying any identification.\tJe ne porte aucune pièce d'identité.\nI'm not even sure if this is my key.\tJe ne suis même pas sûr qu'il s'agisse de ma clé.\nI'm not even sure if this is my key.\tJe ne suis même pas sûre qu'il s'agisse de ma clé.\nI'm not even sure if this is my key.\tJe ne suis même pas sûr que ce soit ma clé.\nI'm not even sure if this is my key.\tJe ne suis même pas sûre que ce soit ma clé.\nI'm not expecting special treatment.\tJe ne m'attends pas à un traitement de faveur.\nI'm not feeling particularly hungry.\tJe ne ressens pas particulièrement la faim.\nI'm not going to go to school today.\tJe ne vais pas aller à l'école aujourd'hui.\nI'm not like the rest of these guys.\tJe ne suis pas comme le reste de ces types.\nI'm not minimizing the consequences.\tJe ne suis pas en train de minimiser les conséquences.\nI'm not sure he wants to talk to me.\tJe ne suis pas sûr qu'il veuille me parler.\nI'm not sure he wants to talk to me.\tJe ne suis pas sûre qu'il veuille me parler.\nI'm not sure he wants to talk to me.\tJe ne suis pas sûr qu'il veuille s'entretenir avec moi.\nI'm not sure he wants to talk to me.\tJe ne suis pas sûre qu'il veuille s'entretenir avec moi.\nI'm not sure what you were thinking.\tJe ne suis pas certain de ce que tu pensais.\nI'm not sure what you were thinking.\tJe ne suis pas certaine de ce que tu pensais.\nI'm not sure what you were thinking.\tJe ne suis pas certain de ce que vous pensiez.\nI'm not sure what you were thinking.\tJe ne suis pas certaine de ce que vous pensiez.\nI'm not sure why they asked me that.\tJe ne sais pas vraiment pourquoi ils m'ont demandé ça.\nI'm not sure why they asked me that.\tJe ne sais pas vraiment pourquoi elles m'ont demandé ça.\nI'm not worried about losing my job.\tJe ne suis pas inquiet de perdre mon emploi.\nI'm on the beach playing volleyball.\tJe suis à la plage en train de jouer au volley-ball.\nI'm ready to leave whenever you are.\tJe suis prêt à partir dès que tu l'es.\nI'm ready to leave whenever you are.\tJe suis prêt à partir dès que vous l'êtes.\nI'm really disappointed in you, Tom.\tTu me déçois vraiment, Tom.\nI'm really surprised Tom's not here.\tJe suis vraiment surpris que Tom ne soit pas ici.\nI'm slow to adapt to new situations.\tJe suis lente à m'adapter à de nouvelles situations.\nI'm slow to adapt to new situations.\tJe suis lent à m'adapter à de nouvelles situations.\nI'm sorry you got dragged into this.\tJe suis désolé que tu aies été entraîné là-dedans.\nI'm sorry you got dragged into this.\tJe suis désolé que tu aies été entraînée là-dedans.\nI'm sorry you got dragged into this.\tJe suis désolé que vous ayez été entraîné là-dedans.\nI'm sorry, there's nothing I can do.\tDésolée. Je ne peux rien y faire.\nI'm starting to feel better already.\tJe commence à me sentir déjà mieux.\nI'm sure Tom will know how to do it.\tJe suis sûre que Tom saura comment faire.\nI'm sure Tom will know how to do it.\tJe suis sûr que Tom saura comment le faire.\nI'm sure Tom would be happy to help.\tJe suis sûr que Tom serait heureux d'aider.\nI'm sure it's around here somewhere.\tJe suis sûr que c'est quelque part dans le coin.\nI'm the one that pays all the bills.\tJe suis celui qui paye toutes les factures.\nI'm the one that pays all the bills.\tJe suis celle qui paye toutes les factures.\nI'm the one who makes the decisions.\tJe suis celui qui prend les décisions.\nI'm trying to save room for dessert.\tJ'essaie de garder de la place pour le dessert.\nI'm very sorry to have troubled you.\tJe suis vraiment désolé de t'avoir dérangé.\nI've always preferred working alone.\tJ'ai toujours préféré travailler seul.\nI've asked you this question before.\tJe t'ai déjà posé cette question.\nI've asked you this question before.\tJe vous ai déjà posé cette question.\nI've asked you this question before.\tJe t'ai posé cette question auparavant.\nI've asked you this question before.\tJe vous ai posé cette question auparavant.\nI've been asked to give this to you.\tOn m'a demandé de vous donner ceci.\nI've been asked to quit the company.\tOn m'a demandé de quitter la société.\nI've been impressed with Tom's work.\tJ'ai été impressionné par le travail de Tom.\nI've been impressed with Tom's work.\tJ'ai été impressionnée par le travail de Tom.\nI've been to Boston countless times.\tJe suis allé à Boston de nombreuses fois.\nI've brought you a little something.\tJe t'ai apporté un petit quelque chose.\nI've decided to go a little further.\tJ'ai décidé d'aller un peu plus loin.\nI've got a pretty vivid imagination.\tJ'ai une imagination assez débordante.\nI've got a pretty vivid imagination.\tJe suis doté d'une imagination assez débordante.\nI've got a pretty vivid imagination.\tJe suis dotée d'une imagination assez débordante.\nI've got pins and needles in my leg.\tJ’ai des fourmis dans la jambe.\nI've had a lot of work to do lately.\tJ'ai eu beaucoup de travail à faire dernièrement.\nI've had to make some tough choices.\tJ'ai eu des choix difficiles à faire.\nI've heard rumors about you and Tom.\tJ'ai entendu des rumeurs sur toi et Tom.\nI've heard rumors about you and Tom.\tJ'ai entendu des rumeurs à propos de vous et Tom.\nI've just come up with a great idea.\tIl m'est juste venu une super idée.\nI've just finished writing a letter.\tJe viens juste de terminer une lettre.\nI've never actually seen a real cow.\tJe n'ai encore jamais vu de vrai vache.\nI've never been able to talk to Tom.\tJe n'ai jamais été capable de parler à Tom.\nI've never been to my uncle's house.\tJe n'ai jamais été chez mon oncle.\nI've never done it like that before.\tJe ne l'ai jamais fait ainsi auparavant.\nI've never done it like that before.\tJe ne l'ai jamais fait de cette manière auparavant.\nI've never gotten a speeding ticket.\tJe n'ai jamais eu de contravention pour excès de vitesse.\nI've never seen something like this.\tJe n'ai jamais rien vu de tel.\nI've never stolen anything from Tom.\tJe n’ai jamais rien volé à Tom.\nI've spent a lot of time in casinos.\tJ'ai passé beaucoup de temps dans des casinos.\nI've studied English for five years.\tJ’ai étudié l'anglais pendant cinq ans.\nIf I don't do it, it won't get done.\tSi je ne le fais pas, cela ne sera pas fait.\nIf I told you, I'd have to kill you.\tSi je te le disais, je devrais te tuer.\nIf I told you, I'd have to kill you.\tSi je vous le disais, je devrais vous tuer.\nIf I'm lucky, I will arrive on time.\tSi j'ai de la chance, j'arriverai à l'heure.\nIf it's not one thing, it's another.\tSi ce n'est pas une chose, c'en est une autre.\nIf that happened, what would you do?\tSi cela se produisait, que ferais-tu ?\nIf that happened, what would you do?\tSi cela se produisait, que feriez-vous ?\nIf you could do it, would you do it?\tLe pourrais-tu, le ferais-tu ?\nIf you don't want me to go, I won't.\tSi tu ne veux pas que j'y aille, je n'irai pas.\nIf you eat so much, you'll get sick.\tSi tu manges autant, tu seras malade.\nIf you ever need a job, come see me.\tSi jamais tu as besoin d'un boulot, viens me voir !\nIf you ever need a job, come see me.\tSi jamais vous avez besoin d'un boulot, venez me voir !\nIf you have time, let's go shopping.\tSi tu as du temps, allons faire du shopping.\nIf you want, you can easily make it.\tSi tu veux, tu peux le faire aisément.\nIn Japan, bowing is common courtesy.\tAu Japon, faire la révérence est une forme de politesse courante.\nIn Switzerland, spring comes in May.\tEn Suisse, le printemps arrive en Mai.\nIn an emergency, do you act quickly?\tEn cas d'urgence, agissez-vous rapidement ?\nIn the summer, I wear cotton shirts.\tL'été, je porte les chemises de coton.\nIn this case, I think he is correct.\tDans ce cas, je pense qu'il a raison.\nInflation is getting out of control.\tL'inflation échappe à tout contrôle.\nIs Sunday the first day of the week?\tDimanche est-il le premier jour de la semaine ?\nIs eating with chopsticks difficult?\tManger avec des baguettes est-il difficile ?\nIs the staff meeting held on Monday?\tLa réunion du personnel a-t-elle lieu lundi ?\nIs there a clothing store near here?\tY a-t-il un magasin de vêtements, près d'ici ?\nIs there a flower shop in the hotel?\tY a-t-il un fleuriste dans l'hôtel ?\nIs there a similar proverb in Japan?\tY a-t-il un proverbe similaire au Japon ?\nIs there a supermarket in this mall?\tY a-t-il un supermarché dans ce centre commercial ?\nIs there anything you'd like to add?\tAvez-vous quelque chose à ajouter?\nIs there something I can do for you?\tY a-t-il quelque chose que je puisse faire pour vous ?\nIs there something I can do for you?\tQuelque chose que je puisse faire pour toi ?\nIs this building open to the public?\tEst-ce que ce bâtiment est ouvert au public ?\nIs this building open to the public?\tCe bâtiment est-il ouvert au public ?\nIs this the key you are looking for?\tEst-ce la clé que tu cherches ?\nIs this your copy of the dictionary?\tEst-ce votre copie du dictionnaire ?\nIs this your glass or your sister's?\tEst-ce que c'est votre verre ou celui de votre sœur ?\nIs this your glass or your sister's?\tEst-ce ton verre ou celui de ta sœur ?\nIs this your glass or your sister's?\tEst-ce votre verre ou celui de votre sœur ?\nIt appears to me that you are right.\tIl m'apparaît que vous avez raison.\nIt appears to me that you are right.\tIl m'apparaît que tu as raison.\nIt became difficult to find buffalo.\tIl devint difficile de trouver des bisons.\nIt depends on the size of the chair.\tÇa dépend de la taille du fauteuil.\nIt didn't take you long to get here.\tIl ne t'a pas fallu longtemps pour y parvenir.\nIt didn't take you long to get here.\tIl ne vous a pas fallu longtemps pour y parvenir.\nIt does seem like an excellent plan.\tCela ressemble en effet à un plan excellent.\nIt doesn't get any better than this.\tIl faut s'en satisfaire.\nIt doesn't get any better than this.\tIl faut faire avec.\nIt doesn't look like anybody's home.\tÇa n'a pas l'air d'être la demeure de quiconque.\nIt doesn't matter how much it costs.\tPeu importe combien ça coûte.\nIt has been raining since yesterday.\tIl n'a pas arrêté de pleuvoir depuis hier.\nIt is a pity that you can't join us.\tC'est dommage que vous ne puissiez pas venir avec nous.\nIt is absurd trying to persuade him.\tIl est absurde d'essayer de le persuader.\nIt is difficult to satisfy everyone.\tIl est difficile de satisfaire tout le monde.\nIt is impossible for you to succeed.\tIl t'est impossible de réussir.\nIt is impossible for you to succeed.\tIl vous est impossible de réussir.\nIt is kind of you to give me a ride.\tC'est gentil à vous de me déposer.\nIt is likely to be cold this winter.\tIl risque de faire froid cet hiver.\nIt is not easy to solve the problem.\tÇa n'est pas facile de résoudre le problème.\nIt is not good to eat between meals.\tIl n'est pas bon de manger entre les repas.\nIt is not necessary to bring a gift.\tIl n'est pas nécessaire d'apporter un cadeau.\nIt is not polite to point at others.\tIl n'est pas poli de montrer les autres du doigt.\nIt is not so difficult as you think.\tCe n'est pas si difficile que tu le penses.\nIt is not so difficult as you think.\tCe n'est pas si difficile que vous le pensez.\nIt is not so difficult as you think.\tCe n'est pas aussi difficile que tu le penses.\nIt is not so difficult as you think.\tCe n'est pas aussi difficile que vous le pensez.\nIt is said that he knows the secret.\tOn dit qu'il connaît le secret.\nIt is strange that he should say so.\tIl est étrange qu'il dise cela.\nIt is very kind of you to invite me.\tC'est très aimable à vous de m'inviter.\nIt is warm there all the year round.\tLà-bas, il fait chaud tout au long de l'année.\nIt made me forget about my problems.\tÇa m'a fait oublier mes problèmes.\nIt rained all through the afternoon.\tIl a plu tout au long de l'après-midi.\nIt reminds me of the good old times.\tÇa me rappelle le bon vieux temps.\nIt seems like there's no money left.\tIl semble qu'il ne reste plus d'argent.\nIt seems that no one knew the truth.\tIl semble que personne ne savait la vérité.\nIt seems that no one knew the truth.\tIl semblerait que personne ne connaissait la vérité.\nIt sounds like you had a great time.\tOn dirait que vous avez pris du bon temps.\nIt took me several hours to draw it.\tIl m'a fallu quelques heures pour le dessiner.\nIt was cloudy, with occasional rain.\tC'était nuageux, avec de la pluie occasionnelle.\nIt was stupid of me to believe that!\tJ'ai été stupide de croire cela !\nIt was stupid of you to believe him.\tÇa a été idiot de ta part de le croire.\nIt was the happiest time of my life.\tCe fut la période la plus heureuse de ma vie.\nIt was the happiest time of my life.\tÇa a été la période la plus heureuse de ma vie.\nIt was yesterday that he went there.\tC'est hier qu'il est allé là-bas.\nIt will be finished in a day or two.\tCe sera fini dans un jour ou deux.\nIt will become much warmer in March.\tIl fera bien plus chaud en mars.\nIt would cost twice as much as that.\tÇa coûterait deux fois plus que ça.\nIt wouldn't be the same without you.\tÇa ne serait pas pareil, sans toi.\nIt wouldn't be the same without you.\tÇa ne serait pas pareil, sans vous.\nIt'll be hard for me to wake you up.\tJe vais avoir du mal à te réveiller.\nIt'll be nice to see everyone again.\tÇa va être sympa de revoir tout le monde.\nIt's a long way from here to school.\tC'est une longue distance d'ici à l'école.\nIt's a lot more difficult than that.\tC'est beaucoup plus difficile que ça!\nIt's a necessary piece of equipment.\tC'est un élément nécessaire de l'équipement.\nIt's a pity that he can't marry her.\tIl est dommage qu'il ne puisse l'épouser.\nIt's a pleasure to finally meet you.\tC'est un plaisir que de finalement te rencontrer.\nIt's a pleasure to finally meet you.\tC'est un plaisir que de finalement vous rencontrer.\nIt's a risk we can't afford to take.\tC'est un risque que nous ne pouvons nous permettre de prendre.\nIt's a shame Tom couldn't come, too.\tC'est dommage que Tom ne puisse venir, lui aussi.\nIt's a shame that you're not coming.\tIl est dommage que vous ne veniez pas.\nIt's all over for me. I lost my job.\tTout est fini pour moi. J'ai perdu mon travail.\nIt's an ill wind that blows no good.\tC'est un mauvais vent qui ne souffle rien de bon.\nIt's been raining for almost a week.\tCela fait presque une semaine qu'il pleut.\nIt's been weeks since she's written.\tÇa fait des semaines qu'elle n'a pas écrit.\nIt's better to give than to receive.\tIl est mieux de donner que de recevoir.\nIt's cold today so button your coat.\tC'est un jour froid alors boutonne ton manteau.\nIt's important to know one's limits.\tIl est important de connaître ses propres limites.\nIt's my father who stopped drinking.\tC'est mon père qui a arrêté de boire.\nIt's no use trying to intimidate me.\tIl est inutile d'essayer de m'intimider.\nIt's no use waiting for him to come.\tÇa n'a pas de sens d'attendre qu'il vienne.\nIt's not necessary to come tomorrow.\tIl n'est pas nécessaire de venir demain.\nIt's not safe to swim in that river.\tIl n'est pas sans risque de nager dans cette rivière.\nIt's okay to take it easy sometimes.\tC'est bien parfois de ne pas se prendre la tête.\nIt's okay to take it easy sometimes.\tC'est bien parfois de faire les choses à tête reposée.\nIt's okay to take it easy sometimes.\tC'est bien parfois de se la couler douce.\nIt's something my mother used to do.\tC'est quelque chose que ma mère faisait.\nIt's the fastest train in the world.\tC'est le train le plus rapide du monde.\nIt's the fastest train in the world.\tC'est le train le plus rapide au monde.\nIt's true that Americans love pizza.\tIl est exact que les Étasuniens adorent la pizza.\nIt's up to you to decide what to do.\tC'est à toi de décider quoi faire.\nIt's up to you to decide what to do.\tC'est à vous de décider ce qu'il faut faire.\nIt's up to you to decide what to do.\tC'est à vous de décider de ce qu'il faut faire.\nIt's up to you to decide what to do.\tC'est à toi de décider ce que tu veux faire.\nIt's up to you to decide what to do.\tC'est à toi de décider de ce que tu veux faire.\nIt's up to you to decide what to do.\tC'est à vous de décider ce que vous voulez faire.\nIt's up to you to decide what to do.\tC'est à vous de décider de ce que vous voulez faire.\nIt's very likely that he'll be late.\tIl est très probable qu'il soit en retard.\nIt's very likely that he'll be late.\tIl est hautement probable qu'il soit en retard.\nIt's your responsibility to do that.\tC'est ta responsabilité de faire ça.\nIt's your responsibility to do that.\tC'est votre responsabilité de faire cela.\nJapan and South Korea are neighbors.\tLe Japon et la Corée du Sud sont des pays limitrophes.\nJapan has a high population density.\tLe Japon a une densité de population élevée.\nJapanese gardens usually have ponds.\tLes jardins japonais sont d'ordinaire pourvus d'étangs.\nJobs are hard to come by these days.\tLes emplois sont difficiles à trouver de nos jours.\nJust act as if nothing has happened.\tComporte-toi simplement comme si rien ne s'était passé.\nJust act as if nothing has happened.\tComportez-vous simplement comme si rien ne s'était passé.\nJust act as if nothing has happened.\tComporte-toi simplement comme si rien ne s'était produit.\nJust act as if nothing has happened.\tComportez-vous simplement comme si rien ne s'était produit.\nJust act as if nothing has happened.\tComporte-toi simplement comme si rien n'était arrivé.\nJust mind your own business, please.\tOccupez-vous juste de vos affaires, je vous prie.\nJust mind your own business, please.\tOccupe-toi juste de tes affaires, je te prie.\nJust think what it could do for you.\tPense juste à ce que ça pourrait t'apporter !\nJust think what it could do for you.\tPensez juste à ce que ça pourrait vous apporter !\nKaraoke is good for reducing stress.\tLe karaoké est bon pour diminuer le stress.\nKimchi is a traditional Korean dish.\tLe kimchi est un plat traditionnel coréen.\nKyoto is famous for its old temples.\tKyoto est connue pour ses temples anciens.\nLanguage changes as human beings do.\tLe langage change de la même façon que le font les êtres humains.\nLet me make you a cup of hot coffee.\tLaisse-moi te faire une tasse de café chaud.\nLet me write down the steps for you.\tLaisse-moi t'en noter les étapes !\nLet me write down the steps for you.\tLaissez-moi vous en noter les étapes !\nLet's continue the game after lunch.\tContinuons le jeu après manger.\nLet's continue the game after lunch.\tContinuons le jeu après le déjeuner.\nLet's drink to our charming hostess!\tBuvons à notre charmante hôtesse !\nLet's go grab a burger or something.\tTrouvons-nous un hamburger ou autre chose.\nLet's go outside for some fresh air.\tAllons prendre l'air dehors.\nLet's hope next year will be better.\tEspérons que l'année prochaine soit meilleure.\nLet's hurry so we can catch the bus.\tDépêchons-nous, de manière à attraper le bus.\nLet's keep in touch with each other.\tRestons en contact.\nLet's leave as soon as he gets back.\tPartons dès qu'il est revenu.\nLet's not be in too much of a hurry.\tNe nous précipitons pas.\nLet's sit where there is some shade.\tAsseyons-nous là où il y a de l'ombre.\nLet's try to understand one another.\tEssayons de nous comprendre l'un l'autre.\nLet's visit my grandpa this weekend.\tRendons visite à mon Papy, ce week-end !\nLet's visit my grandpa this weekend.\tRendons visite à mon Bon-Papa, ce week-end !\nLife is often compared to a journey.\tOn assimile souvent la vie à un voyage.\nLife is often compared to a journey.\tLa vie est souvent comparée à un voyage.\nLock the window before going to bed.\tFermez la fenêtre avant d'aller vous coucher.\nLook into the matter more carefully.\tRegarde ce problème plus attentivement.\nLook into the matter more carefully.\tRegardez ce problème plus attentivement.\nLook up the word in your dictionary.\tCherchez ce mot dans votre dictionnaire.\nLook up this word in the dictionary.\tCherchez ce mot dans le dictionnaire.\nLuck comes to those who look for it.\tLa chance sourit aux audacieux.\nLuck comes to those who look for it.\tLa chance vient à ceux qui la cherchent.\nMake sure to back up all your files.\tAssurez-vous de sauvegarder tous vos fichiers.\nMake sure to back up all your files.\tAssure-toi de sauvegarder tous tes fichiers.\nMake this sentence a little shorter.\tRaccourcis un peu cette phrase.\nMaking a model plane is interesting.\tRéaliser une maquette d'avion est intéressant.\nMany American planes were shot down.\tDe nombreux avions étasuniens furent abattus.\nMany American planes were shot down.\tDe nombreux appareils étasuniens furent abattus.\nMany Japanese get married in church.\tBeaucoup de Japonais se marient dans des églises.\nMany buildings burned to the ground.\tDe nombreux bâtiments furent réduits en cendres.\nMany cities were destroyed by bombs.\tDe nombreuses villes furent détruites par les bombes.\nMany foreigners speak good Japanese.\tBeaucoup d'étrangers parlent bien japonais.\nMany forms of life are disappearing.\tDe nombreuses formes de vie sont en train de disparaître.\nMany runners passed out in the heat.\tSous l'effet de la chaleur, beaucoup de coureurs ont perdu conscience.\nMary is being careful with her baby.\tMary fait attention avec son bébé.\nMary is expecting a baby in October.\tMary attend un bébé pour octobre.\nMay I ask you to call me back later?\tPourrais-tu me rappeler un peu plus tard ?\nMaybe I'll go swimming after school.\tPeut-être que je vais aller nager après l'école.\nMeat decays quickly in warm weather.\tLa viande se gâte vite par temps chaud.\nMen with guns were waiting for them.\tDes hommes en armes les attendaient.\nMillions of workers lost their jobs.\tDes millions de travailleurs perdirent leurs emplois.\nMiniskirts have gone out of fashion.\tLes minijupes sont passées de mode.\nMoney is not a criterion of success.\tL'argent n'est pas un critère de réussite.\nMore than five-hundred were wounded.\tPlus de cinq cents personnes ont été blessées.\nMother is in bed. She caught a cold.\tLa maman est au lit, elle a attrapé froid.\nMother was afraid I would get dirty.\tMaman avait peur que je me salisse.\nMothers often pamper their children.\tLes mères dorlotent souvent leurs enfants.\nMr. Jackson is our homeroom teacher.\tM. Jackson est notre professeur principal.\nMy apartment is on the fourth floor.\tMon appartement se situe au quatrième étage.\nMy bedroom is crawling with spiders.\tMa chambre grouille d'araignées.\nMy best friend is currently in Rome.\tMon meilleur ami est actuellement à Rome.\nMy bicycle was gone when I returned.\tMon vélo avait disparu lorsque je suis revenu.\nMy boss assigned the hard job to me.\tMon patron m'a assigné le travail difficile.\nMy boss praised me for my hard work.\tMon patron m'a loué pour mon sérieux travail.\nMy brother is a high school student.\tMon frère est lycéen.\nMy camera is much better than yours.\tMon appareil photo est nettement mieux que le tien.\nMy children like to sing in the car.\tMes enfants aiment chanter en voiture.\nMy children were taken away from me.\tMes enfants m'ont été retirés.\nMy dad is the best dad in the world.\tMon papa est le meilleur papa du monde.\nMy dad is the best dad in the world.\tMon papa est le meilleur papa au monde.\nMy dream is to become a firefighter.\tMon rêve est de devenir pompier.\nMy duty is to protect everyone here.\tJ'ai comme devoir de protéger tout le monde ici.\nMy father asked me to open the door.\tMon père m'a demandé d'ouvrir la porte.\nMy father doesn't drink hard liquor.\tMon père ne boit pas de digestifs.\nMy father gave up smoking last year.\tMon père a arrêté de fumer l'année dernière.\nMy father is not as old as he looks.\tMon père n'est pas aussi vieux qu'il en a l'air.\nMy father made me a delicious lunch.\tMon père m'a préparé un délicieux repas pour le déjeuner.\nMy father used to go to work by bus.\tMon père avait l'habitude d'aller travailler en bus.\nMy father will not be busy tomorrow.\tMon père ne sera pas occupé demain.\nMy feelings for you haven't changed.\tMes sentiments pour toi n'ont pas changé.\nMy feelings for you haven't changed.\tMes sentiments pour vous n'ont pas changé.\nMy feet are small compared to yours.\tMes pieds sont petits par rapport aux tiens.\nMy friend was arrested for speeding.\tMon ami a été arrêté pour excès de vitesse.\nMy friend was arrested for speeding.\tMon amie a été arrêtée pour excès de vitesse.\nMy goal in life is to be a novelist.\tMon but dans la vie est d'être écrivain.\nMy grandfather has snowy white hair.\tMon grand-père a des cheveux blancs comme neige.\nMy grandfather was an archaeologist.\tMon grand-père était archéologue.\nMy homeroom teacher is Mrs. Jackson.\tMa professeur principale est Mme Jackson.\nMy husband is always reading in bed.\tMon mari lit toujours au lit.\nMy mother asked me to set the table.\tMa mère m'a demandé de dresser la table.\nMy mother gets up earlier than I do.\tMa mère se lève plus tôt que moi.\nMy mother gets up earlier than I do.\tMa mère se lève plus tôt que je ne le fais.\nMy mother went shopping, didn't she?\tMa mère est partie faire les courses, n'est-ce pas ?\nMy motorcycle broke down on the way.\tMa moto est tombée en panne sur le chemin.\nMy motorcycle broke down on the way.\tMa moto est tombée en panne en chemin.\nMy neighbor was arrested last night.\tMon voisin a été arrêté la nuit dernière.\nMy neighbor was arrested last night.\tMa voisine a été arrêtée hier soir.\nMy parents had an arranged marriage.\tMes parents ont eu un mariage arrangé.\nMy sister has become a good pianist.\tMa sœur est devenue une bonne pianiste.\nMy sister is engaged in social work.\tMa sœur s'implique dans des œuvres sociales.\nMy sister plays the piano every day.\tMa sœur joue du piano chaque jour.\nMy sister plays the piano every day.\tMa sœur joue du piano tous les jours.\nMy tastes differ greatly from yours.\tMes goûts sont très différents des tiens.\nMy tastes differ greatly from yours.\tMes goûts sont très différents des vôtres.\nMy uncle has a deep interest in art.\tMon oncle a un grand intérêt pour l'art.\nMy uncle lives in the east of Spain.\tMon oncle vit dans l'est de l'Espagne.\nMy wife is hiding something from me.\tMa femme me cache quelque chose.\nMy wife is suffering from pneumonia.\tMa femme souffre d'une pneumonie.\nMy youngest brother is still asleep.\tMon petit frère dort encore.\nNewspapers printed the proclamation.\tLes journaux imprimèrent la proclamation.\nNewton saw an apple fall off a tree.\tNewton a vu une pomme tomber d'un arbre.\nNight is when most people go to bed.\tLa nuit, c'est lorsque la plupart des gens vont au lit.\nNight is when most people go to bed.\tLa nuit, c'est là que la plupart des gens vont au lit.\nNo matter what you do, do your best.\tQuoi que tu fasses, fais de ton mieux !\nNo matter what you do, do your best.\tQu'importe ce que tu fais, fais de ton mieux !\nNo one believes that he is innocent.\tPersonne ne le croit innocent.\nNo one can keep me from going there.\tPersonne ne peut m'empêcher d'aller là-bas.\nNo one is more determined than I am.\tIl n'y a personne qui soit plus déterminé que moi.\nNo one is sure how many people died.\tPersonne ne sait vraiment combien de gens ont trouvé la mort.\nNo one is sure how many people died.\tPersonne n'est certain de savoir combien de gens sont décédés.\nNo one knew how much Tom loved Mary.\tPersonne ne savait à quel point Tom aimait Mary.\nNo one knows what has become of her.\tPersonne ne sait ce qui lui est arrivé.\nNo one speaks that language anymore.\tPersonne ne parle plus cette langue.\nNo one speaks this language anymore.\tPersonne ne parle plus cette langue.\nNo one speaks this language anymore.\tPlus personne ne parle cette langue.\nNo sailboat is faster than this one.\tAucun voilier n'est plus rapide que celui-là.\nNo two snowflakes are exactly alike.\tIl n'y a pas deux flocons de neige qui soient exactement identiques.\nNobody can foresee what will happen.\tNul ne peut prévoir ce qui va arriver.\nNobody knows it's my birthday today.\tPersonne ne sait que c'est mon anniversaire aujourd'hui.\nNobody knows what's going to happen.\tPersonne ne sait ce qu'il va advenir.\nNobody knows what's going to happen.\tPersonne ne sait ce qui va se passer.\nNobody knows what's going to happen.\tPersonne ne sait ce qui va survenir.\nNobody's forcing you to do anything.\tPersonne ne te force à faire quoi que ce soit.\nNobody's forcing you to do anything.\tPersonne ne vous force à faire quoi que ce soit.\nNone of us are opposed to his ideas.\tAucun d'entre nous n'est opposé à ses idées.\nNormally, I stay at home on Sundays.\tD'habitude, je reste à la maison le dimanche.\nNot all criminals should go to jail.\tTous les criminels ne devraient pas aller en prison.\nNot everybody wants to be an artist.\tTout le monde ne veut pas être artiste.\nNot everyone who lives here is rich.\tTous ceux qui habitent ici ne sont pas forcément riches.\nNothing like that will happen again.\tRien de tel ne se produira plus.\nNothing like that will happen again.\tRien de tel ne se reproduira.\nOnce you learn it, you never forget.\tUne fois qu'on l'apprend, on ne l'oublie jamais.\nOne day, all this will become yours.\tUn jour, tout ceci t'appartiendra.\nOne of my wisdom teeth is coming in.\tUne de mes dents de sagesse pousse.\nOpen the door and let me in, please.\tOuvre la porte et laisse-moi entrer s'il te plait.\nOpen your mouth and close your eyes.\tOuvre la bouche et ferme les yeux.\nOpinions vary from person to person.\tLes opinions varient d'une personne à l'autre.\nOur apartment is on the third floor.\tNotre appartement est au deuxième étage.\nOur car broke down on our way there.\tNous avons eu une panne de voiture en venant ici.\nOur ownership in the company is 60%.\tNotre part dans cette entreprise s'élève à soixante pour cent.\nOur parents should be taken care of.\tOn doit s'occuper de nos parents.\nOur plane took off exactly at 6 p.m.\tNotre avion a décollé exactement à 18h.\nOur streets flood when we have rain.\tNos rues s'inondent quand il pleut.\nOur town was bombed twice this week.\tNotre ville a été bombardée à deux reprises cette semaine.\nPass me the salt and pepper, please.\tPassez-moi le sel et le poivre, je vous prie.\nPerhaps I can be of some assistance.\tPeut-être puis-je être d'une aide quelconque.\nPerhaps Tom can help you find a job.\tPeut-être que Tom peut t'aider à trouver un travail.\nPerhaps he could solve this problem.\tPeut-être qu'il peut résoudre ce problème.\nPerhaps will he never become famous.\tPeut-être ne deviendra-t-il jamais célèbre.\nPlay outside instead of watching TV.\tJouez dehors au lieu de regarder la télévision.\nPlease come to my house for a while.\tVeuillez venir chez moi, un moment !\nPlease don't tell anyone I was here.\tS'il te plait, ne dis à personne que j'étais là.\nPlease hand in the necessary papers.\tVeuillez remettre les papiers requis.\nPlease hand in the necessary papers.\tRemets les papiers nécessaires, je te prie.\nPlease help yourself to the cookies.\tSers-toi des biscuits, si tu veux.\nPlease help yourself to the cookies.\tVeuillez vous servir des biscuits.\nPlease lock the door when you leave.\tVerrouille la porte lorsque tu pars.\nPlease refrain from pushing forward.\tMerci de ne pas pousser.\nPlease remember to mail this letter.\tS'il te plait, n'oublie pas de poster cette lettre.\nPlease send this by registered mail.\tEnvoyez ceci par courrier recommandé, s'il vous plait.\nPlease send this package right away.\tS'il vous plaît, expédiez ce paquet de suite.\nPlease take more care in the future.\tVeuillez faire plus attention à l'avenir.\nPlease take more care in the future.\tVeuillez prendre davantage de soin à l'avenir.\nPlease telephone me before you come.\tJe te prie de téléphoner avant de venir.\nPlease telephone me before you come.\tJe vous prie de téléphoner avant de venir.\nPlease tell me how to cook sukiyaki.\tS'il te plaît apprends-moi à cuisiner des sukiyaki.\nPlease tell me what's going on here.\tDites-moi ce qu'il se passe ici, s'il vous plaît.\nPlease tell me what's going on here.\tDis-moi ce qu'il se passe ici, s'il te plaît.\nPlease tell me where to park my car.\tMerci de me dire où je dois garer ma voiture.\nPlease visit us at your convenience.\tS'il vous plaît, venez lorsque cela vous arrange.\nPolice cordoned off the crime scene.\tLa police délimita la scène de crime.\nPrices went to amazingly low levels.\tLes prix descendirent à des niveaux incroyablement bas.\nPunish the wicked and save the weak.\tPunir les mauvais et sauver les faibles.\nPut the eggs into the boiling water.\tMettez les œufs dans l'eau bouillante.\nPut this list in alphabetical order.\tMettez cette liste dans l'ordre alphabétique.\nRead all the instructions carefully.\tLisez attentivement toutes les instructions.\nRead all the instructions carefully.\tLisez attentivement toutes les instructions !\nReading books will make you smarter.\tLire des livres vous rendra plus intelligent.\nReading books will make you smarter.\tLire des livres te rendra plus intelligent.\nReading books will make you smarter.\tLire des livres te rendra plus intelligente.\nReading books will make you smarter.\tLire des livres vous rendra plus intelligents.\nReading books will make you smarter.\tLire des livres vous rendra plus intelligente.\nReading books will make you smarter.\tLire des livres vous rendra plus intelligentes.\nRefugees in Africa are seeking help.\tLes réfugiés en Afrique recherchent de l'aide.\nReplace the old tires with new ones.\tÉchangez l'ancien train de pneus contre un neuf.\nRice is the chief crop in this area.\tLe riz est la principale culture de cette région.\nRome has a lot of ancient buildings.\tIl y a beaucoup de constructions antiques à Rome.\nSales fell off in the third quarter.\tLes ventes ont baissé au troisième trimestre.\nScientists have found water on Mars.\tLes scientifiques ont trouvé de l'eau sur Mars.\nSettlers were forced off their land.\tLes colons furent arrachés à leur terre.\nShe accused him of stealing her car.\tElle l'a accusé d'avoir volé sa voiture.\nShe advised him to do more exercise.\tElle lui conseilla de faire davantage d'exercice.\nShe advised him to do more exercise.\tElle lui a conseillé de faire davantage d'exercice.\nShe advised him to give up drinking.\tElle lui conseilla d'arrêter de boire.\nShe advised him to give up drinking.\tElle lui a conseillé d'arrêter de boire.\nShe advised him to read those books.\tElle m'a conseillé de lire ces livres.\nShe advises me on technical matters.\tElle me conseille sur les questions techniques.\nShe always complains of her teacher.\tElle se plaint toujours de son professeur.\nShe announced her engagement to him.\tElle lui annonça ses fiançailles.\nShe applied her mind to her new job.\tElle se concentra sur son nouveau travail.\nShe asked me to come to her bedside.\tElle me demanda de me mettre à côté d'elle.\nShe asked me what had become of him.\tElle me demanda ce qu'il était devenu.\nShe asked me what had become of him.\tElle m'a demandé ce qu'il était devenu.\nShe asked the police for protection.\tElle a requis la protection de la police.\nShe believes her son is still alive.\tElle croit son fils encore vivant.\nShe blamed him for all her problems.\tElle lui mit sur le dos tous ses problèmes.\nShe blamed him for all her problems.\tElle l'a rendu responsable de tous ses problèmes.\nShe blamed him for all her problems.\tElle le rendit responsable de tous ses problèmes.\nShe came back just as I was leaving.\tElle revint juste au moment où je partais.\nShe can swim as fast as her brother.\tElle peut nager aussi vite que son frère.\nShe continued studying all her life.\tElle continua à étudier pendant toute sa vie.\nShe cooked a special dinner for him.\tElle cuisina un dîner spécial pour lui.\nShe cooked her husband an apple pie.\tElle a cuisiné une tarte aux pommes pour son mari.\nShe cooks things for me that I like.\tElle cuisine pour moi des choses que j'aime.\nShe couldn't hold back her laughter.\tElle ne put se retenir de rire.\nShe cremated him against his wishes.\tElle l'a incinéré, contrairement à ses dernières volontés.\nShe cremated him against his wishes.\tElle l'incinéra, contrairement à ses dernières volontés.\nShe devoted herself to her children.\tElle se consacrait à ses enfants.\nShe doesn't admit that she is wrong.\tElle n'admet pas être dans l'erreur.\nShe doesn't admit that she is wrong.\tElle n'admet pas qu'elle a tort.\nShe doesn't know how to drive a car.\tElle ne sait pas conduire une voiture.\nShe doesn't know how to ride a bike.\tElle ne sait pas faire de la bicyclette.\nShe doesn't know how to ride a bike.\tElle ne sait pas faire de vélo.\nShe excused herself for coming late.\tElle s'excusa pour son retard.\nShe felt as if she had seen a ghost.\tElle a eu comme l'impression d'avoir vu un fantôme.\nShe gathered her children about her.\tElle assembla ses enfants autour d'elle.\nShe gave an oral report to her boss.\tElle rendit un rapport oral à son patron.\nShe gave an oral report to her boss.\tElle fit un compte-rendu oral à sa patronne.\nShe gave him something hot to drink.\tElle lui donna quelque chose de chaud à boire.\nShe gave us some useful information.\tElle nous a donné des informations utiles.\nShe had time for her favorite hobby.\tElle avait du temps pour son occupation favorite.\nShe has a husband and two daughters.\tElle a un mari et deux filles.\nShe has a large room all to herself.\tElle a une grande chambre rien que pour elle.\nShe has a large room all to herself.\tElle dispose d'une grande pièce pour elle toute seule.\nShe has forgiven him for everything.\tElle lui a tout pardonné.\nShe has good control over her class.\tElle a un bon contrôle de sa classe.\nShe has good control over her class.\tElle a bien sa classe sous contrôle.\nShe has traveled all over the globe.\tElle a voyagé sur la planète entière.\nShe helped her daughter get dressed.\tElle aida sa fille à s'habiller.\nShe helped him overcome his sadness.\tElle l'a aidé à surmonter sa tristesse.\nShe insisted that he play the piano.\tElle a insisté pour qu'il joue au piano.\nShe is always free in the afternoon.\tElle est toujours libre l'après-midi.\nShe is fluent in English and French.\tElle parle couramment l'anglais et le français.\nShe is happiest when she is at home.\tC'est à la maison qu'elle est la plus heureuse.\nShe is happiest when she is at home.\tC'est chez elle qu'elle est la plus heureuse.\nShe is not anything like her mother.\tElle est toute différente de sa mère.\nShe is rarely late for appointments.\tElle est rarement en retard à un rendez-vous.\nShe is the type men call \"stunning.\"\tElle est du genre que les hommes qualifient d'« éblouïssante ».\nShe is used to staying up all night.\tElle est accoutumée à veiller toute la nuit.\nShe is used to staying up all night.\tElle est accoutumée à rester debout toute la nuit.\nShe kept me waiting for a long time.\tElle m'a obligé à l'attendre un bon moment.\nShe killed herself by taking poison.\tElle s'est suicidée avec du poison.\nShe laughed at the sight of his hat.\tElle a ri à la vue de son chapeau.\nShe lived all her life in that town.\tElle a vécu toute sa vie dans cette ville.\nShe longs for her husband to arrive.\tElle languit de l'arrivée de son mari.\nShe looked him straight in the eyes.\tElle le regarda droit dans les yeux.\nShe looked him straight in the eyes.\tElle l'a regardé droit dans les yeux.\nShe looked more beautiful than ever.\tElle semblait plus belle que jamais.\nShe looked well when I last saw her.\tElle avait l'air bien quand je l'ai vue la dernière fois.\nShe looks prettier in her red dress.\tElle est plus jolie dans sa robe rouge.\nShe made the same mistake as before.\tElle a fait la même faute qu'avant.\nShe made the same mistake as before.\tElle a commis la même erreur qu'avant.\nShe managed to learn to drive a car.\tElle a réussi à apprendre à conduire une voiture.\nShe moved out of her parents' house.\tElle a déménagé de chez ses parents.\nShe moved out of her parents' house.\tElle a déménagé de la maison de ses parents.\nShe must have forgotten the promise.\tElle a dû oublier sa promesse.\nShe parted from her friend in tears.\tElle prit congé de son ami en pleurs.\nShe parted from her friend in tears.\tElle prit congé de son ami, en pleurs.\nShe passed away yesterday afternoon.\tElle est décédée hier après-midi.\nShe picked the most expensive dress.\tElle choisit la robe la plus chère.\nShe promised to meet him last night.\tLa nuit dernière, elle lui a promis de le rencontrer.\nShe put lots of sugar in the coffee.\tElle mit beaucoup de sucre dans le café.\nShe put lots of sugar in the coffee.\tElle a mis beaucoup de sucre dans le café.\nShe put up with the pain quite well.\tElle fit parfaitement face à la douleur.\nShe recovered from her long illness.\tElle se remit de sa longue maladie.\nShe regrets having never been there.\tElle regrette ne jamais y avoir été.\nShe requested help, but no one came.\tElle demanda de l'aide, mais personne ne vint.\nShe should have arrived home by now.\tÀ l'heure qu'il est, elle doit être arrivée chez elle.\nShe stammers when she feels nervous.\tElle bégaye quand elle se sent nerveuse.\nShe stammers when she feels nervous.\tElle bégaye lorsqu'elle se sent nerveuse.\nShe started talking with a stranger.\tElle s'est mise à parler à un étranger.\nShe starts her job at seven o'clock.\tElle commence son travail à sept heures.\nShe surprised him with a small gift.\tElle le surprit par un petit cadeau.\nShe takes piano lessons once a week.\tElle prend des leçons de piano une fois par semaine.\nShe talks as if she knew everything.\tElle parle comme si elle savait tout.\nShe wants to keep him at a distance.\tElle veut le garder à distance.\nShe was a bridesmaid at the wedding.\tElle était demoiselle d'honneur au mariage.\nShe was always practicing the piano.\tElle pratiquait toujours le piano.\nShe was born at six a.m. on July 17.\tElle est née à six heures du matin le 17 juillet.\nShe was brought up in a rich family.\tElle a grandi dans une riche famille.\nShe was educated by her grandfather.\tElle a été éduquée par son grand-père.\nShe was having a hard time swimming.\tElle avait du mal à nager.\nShe was named after her grandmother.\tElle a été prénommée en hommage à sa grand-mère.\nShe was never seen again after that.\tElle n'a jamais été vue après ça.\nShe was surprised at his appearance.\tElle fut surprise par son apparition.\nShe was the first one to notice him.\tElle a été la première à le remarquer.\nShe went out without saying goodbye.\tElle est sortie sans dire au revoir.\nShe went out without saying goodbye.\tElle sortit sans dire au revoir.\nShe wouldn't go for a walk with him.\tElle ne voulait pas aller se promener avec lui.\nShe wouldn't go for a walk with him.\tElle ne voudrait pas aller se promener avec lui.\nShe's most happy when she's at home.\tElle est plus qu'heureuse lorsqu'elle est chez elle.\nShould I help Tom with his homework?\tDevrais-je aider Tom avec ses devoirs ?\nShould you always freeze fresh meat?\tFaut-il toujours congeler la viande fraîche ?\nSince I was sleepy, I went to sleep.\tComme j'avais sommeil, je suis allé au lit.\nSince I was sleepy, I went to sleep.\tComme j'avais sommeil, je suis allée au lit.\nSince it was raining, I took a taxi.\tJ'ai pris un taxi parce qu'il pleuvait.\nSince you're tired, you should rest.\tPuisque tu es fatigué, tu devrais te reposer.\nSince you're tired, you should rest.\tPuisque vous êtes fatigué, vous devriez vous reposer.\nSince you're tired, you should rest.\tPuisque tu es fatiguée, tu devrais te reposer.\nSince you're tired, you should rest.\tPuisque vous êtes fatiguée, vous devriez vous reposer.\nSince you're tired, you should rest.\tPuisque vous êtes fatigués, vous devriez vous reposer.\nSince you're tired, you should rest.\tPuisque vous êtes fatiguées, vous devriez vous reposer.\nSitting down all day is bad for you.\tÊtre assis toute la journée est mauvais pour la santé.\nSlavery is a crime against humanity.\tL'esclavage est un crime contre l'humanité.\nSmoking and drinking aren't allowed.\tFumer et boire ne sont pas autorisés.\nSome day we'll take a trip to India.\tUn jour, nous ferons un voyage en Inde.\nSome of them have committed suicide.\tCertains parmi eux se sont suicidés.\nSome people are difficult to please.\tCertaines personnes sont difficiles à satisfaire.\nSome people compare life to a stage.\tCertaines personnes comparent la vie à une scène.\nSome people in the crowd fired back.\tQuelques personnes dans la foule répliquèrent.\nSome people read books to kill time.\tCertains lisent des livres pour tuer le temps.\nSome things just can't be explained.\tCertaines choses ne peuvent tout simplement pas être expliquées.\nSomeone is standing behind the wall.\tQuelqu'un se tient derrière la cloison.\nSomeone must have stolen your watch.\tQuelqu'un a dû voler votre montre.\nSomeone stole something from my bag.\tQuelqu'un a dérobé quelque chose de mon sac.\nSometimes all we have is our dreams.\tParfois, la seule chose que nous ayons, ce sont nos rêves.\nSometimes he spends time by himself.\tIl passe parfois des moments tout seul.\nSometimes, pictures can fool people.\tParfois, des images peuvent tromper les gens.\nSorry, I didn't mean to snap at you.\tDésolé, je ne voulais pas te mordre.\nSorry, I didn't mean to snap at you.\tDésolé, je ne voulais pas vous mordre.\nSorry, I didn't mean to snap at you.\tDésolée, je ne voulais pas te mordre.\nSorry, I didn't mean to snap at you.\tDésolée, je ne voulais pas vous mordre.\nSorry, we don't accept credit cards.\tJe suis désolé, les cartes de crédit ne sont pas acceptées.\nSpeaking in public makes me nervous.\tParler en public me rend nerveux.\nSpeaking in public makes me nervous.\tParler devant un public me rend nerveux.\nSpeech is silver, silence is golden.\tLa parole est d'argent, le silence est d'or.\nStudents are supposed to study hard.\tLes étudiants sont censés travailler dur.\nStudents have access to the library.\tLes étudiants ont accès à la bibliothèque.\nSubtlety never was your strong suit.\tLa subtilité n'a jamais été ton fort.\nSubtlety never was your strong suit.\tLa subtilité n'a jamais été votre fort.\nSuccess does not come from laziness.\tLe succès n'est pas le fruit de la paresse.\nSuddenly, 100 workers were laid off.\tSoudain, 100 ouvriers furent licenciés.\nSuddenly, my mother started singing.\tSoudain, ma mère se mit à chanter.\nSugar replaced honey as a sweetener.\tLe sucre remplaça le miel comme édulcorant.\nTake the medicine three times a day.\tPrenez le médicament trois fois par jour.\nTake this medicine before each meal.\tPrenez ce médicament avant chaque repas.\nTake two aspirins for your headache.\tPrenez deux aspirines pour votre mal de tête.\nTake your hands out of your pockets.\tSors les mains de tes poches !\nTake your hands out of your pockets.\tSortez les mains de vos poches !\nTaste buds are needed to taste food.\tOn a besoin des papilles gustatives pour goûter la nourriture.\nTelegraph us when you get to Boston.\tEnvoie-nous un télégramme quand tu arrives à Boston.\nTell me a little bit about yourself.\tParle-moi un peu de toi.\nTell me what to do and I will do it.\tDis-moi quoi faire et je le ferai.\nTen years have passed since he died.\tDix ans ont passé depuis qu'il est mort.\nTen years have passed since he died.\tDix ans sont passés depuis qu'il est mort.\nTen years have passed since he died.\tDix années ont passé depuis qu'il est mort.\nTen years have passed since he died.\tDix années sont passées depuis qu'il est mort.\nThank you for inviting me to dinner.\tMerci de m'avoir invité à diner.\nThank you for inviting us to dinner.\tMerci beaucoup pour nous avoir invités à dîner.\nThank you for the beautiful flowers.\tMerci pour les belles fleurs.\nThank you very much for inviting me.\tMerci beaucoup de m'inviter.\nThank you very much for inviting me.\tMerci beaucoup de m'avoir invité.\nThank you very much for your letter.\tMerci beaucoup pour ta lettre.\nThanks to you I've lost my appetite.\tGrâce à toi j'ai perdu mon appétit.\nThanks to you, I spent all my money.\tGrâce à toi, j'ai dépensé tout mon argent.\nThanks to you, I spent all my money.\tGrâce à vous, j'ai dépensé tout mon argent.\nThat blue dress suits you very well.\tCette robe bleue te va très bien.\nThat building has no emergency exit.\tCe bâtiment n'a pas d'issue de secours.\nThat bus stops in front of my house.\tCe bus s'arrête devant chez moi.\nThat bus stops in front of my house.\tCe car s'arrête devant chez moi.\nThat copy differs from the original.\tLa copie est différente de l'originale.\nThat dress looks really nice on you.\tCette robe te va à ravir.\nThat dress looks really nice on you.\tCette robe vous va à ravir.\nThat is the picture that he painted.\tC'est le tableau qu'il a peint.\nThat is what they study English for.\tC'est pour ça qu'ils étudient l'anglais.\nThat isn't what I was saying at all.\tCe n'est pas du tout ce que j'étais en train de dire.\nThat job is impossible for me to do.\tIl m'est impossible de faire ce travail.\nThat job is impossible for me to do.\tIl m'est impossible de faire ce boulot.\nThat kid's a chip off the old block.\tCe gosse est le portrait craché de son père.\nThat love affair is a family secret.\tCette aventure amoureuse est un secret de famille.\nThat magazine is aimed at teenagers.\tCe magazine est à destination des adolescents.\nThat magazine is aimed at teenagers.\tCe magazine s'adresse aux adolescents.\nThat makes a difference, doesn't it?\tCela fait une différence, n'est-ce pas ?\nThat mattress needs to be aired out.\tCe matelas doit être aéré.\nThat noise is almost driving me mad.\tCe bruit va finir par me rendre fou.\nThat requires careful consideration.\tCela nécessite une réflexion prudente.\nThat shouldn't be much of a problem.\tCela ne devrait pas poser trop de problèmes.\nThat university was my first choice.\tCette université était mon premier choix.\nThat was the hardest job of my life.\tCe fut la tâche la plus difficile de ma vie.\nThat was the hardest job of my life.\tÇa a été la tâche la plus difficile de ma vie.\nThat would be a waste of her talent.\tÇa serait gâcher son talent.\nThat would be a waste of his talent.\tÇa serait gâcher son talent.\nThat's a completely unfounded rumor.\tC'est une rumeur complètement infondée.\nThat's a horse of a different color.\tC'est tout à fait autre chose.\nThat's a horse of a different color.\tC'est quelque chose de complètement différent.\nThat's a question I've asked myself.\tC'est une question que je me suis posée.\nThat's not really necessary anymore.\tCe n'est vraiment plus nécessaire.\nThat's something I've always wanted.\tC'est quelque chose que j'ai toujours voulu.\nThat's the point I'm trying to make.\tC'est l'argument que je tente de faire ressortir.\nThat's the problem we have to solve.\tC'est le problème que nous devons résoudre.\nThat's the problem we have to solve.\tC'est le problème qu'il nous faut résoudre.\nThat's very kind of you to say that.\tC'est très aimable à vous de dire cela.\nThat's very kind of you to say that.\tC'est très aimable à toi de dire cela.\nThat's what makes this so difficult.\tC'est ce qui rend ça si difficile.\nThat's what my mom keeps telling me.\tC'est ce que ma mère n'arrête pas de me dire.\nThat's what we've got to figure out.\tC'est ce que nous allons voir.\nThat's where I can't agree with you.\tC'est là que je ne suis pas d'accord avec toi.\nThe Bakers have a farm up the river.\tLes Bakers ont une ferme en amont de la rivière.\nThe English alphabet has 26 letters.\tL'alphabet anglais compte 26 lettres.\nThe Giants beat the Lions yesterday.\tLes Géants ont battu les Lions, hier.\nThe Sphinx began to walk around him.\tLe sphynx se mit à marcher autour de lui.\nThe accident happened two hours ago.\tL'accident est survenu il y a deux heures.\nThe accident happened two years ago.\tL'accident s'est produit il y a deux ans.\nThe accident has caused many deaths.\tL'accident a causé la mort de nombreuses personnes.\nThe actress was dressed beautifully.\tL'actrice était élégamment habillée.\nThe address on this parcel is wrong.\tL'adresse sur ce paquet est erronée.\nThe air conditioner is out of order.\tLa climatisation est hors service.\nThe answer was right in front of me.\tLa réponse était juste devant moi.\nThe atomic number for hydrogen is 1.\tLe numéro atomique de l'hydrogène est 1.\nThe audience exploded with laughter.\tLe public explosa de rire.\nThe author's name is familiar to us.\tLe nom de l'auteur nous est familier.\nThe bad weather affected his health.\tLe mauvais temps affecta sa santé.\nThe balloon floated down the street.\tLe ballon flottait le long de la rue.\nThe band starts playing at 8:00 p.m.\tLe groupe commence à jouer à 20h.\nThe band starts playing at 8:00 p.m.\tLe groupe commence à jouer à vingt heures.\nThe bomb will explode in 10 seconds.\tLa bombe explosera dans dix secondes.\nThe book was published posthumously.\tLe livre fut publié à titre posthume.\nThe boy was laughed at by everybody.\tTout le monde se moqua du garçon.\nThe bus drivers are on strike today.\tLes conducteurs de bus sont en grève aujourd'hui.\nThe bus stopped, but no one got out.\tLe car s'arrêta mais personne n'en sortit.\nThe bus stopped, but no one got out.\tLe bus s'est arrêté mais personne n'en est sorti.\nThe captain controls the whole ship.\tLe capitaine contrôle tout le navire.\nThe cat crouched down ready to jump.\tLe chat s'accroupit, prêt à bondir.\nThe cat loves playing in the garden.\tLe chat aime jouer dans le jardin.\nThe child talks as if he were a man.\tCet enfant parle comme s'il était un homme.\nThe children are riding their bikes.\tLes enfants font du vélo.\nThe chimney is belching black smoke.\tLa cheminée crache de la fumée noire.\nThe city was bombed by enemy planes.\tLa ville a subi le bombardement d’avions ennemis.\nThe climate is mild in this country.\tLe climat est doux dans ce pays.\nThe clock on that tower is accurate.\tL'horloge de la tour est précise.\nThe company is in financial trouble.\tL'entreprise connaît des difficultés financières.\nThe company wants to hire 20 people.\tLa société veut embaucher vingt personnes.\nThe conference takes place annually.\tLa conférence est annuelle.\nThe customs office is at the border.\tLe bureau des douanes se trouve à la frontière.\nThe dictionary on the desk is Tom's.\tLe dictionnaire sur le bureau est à Tom.\nThe doctor advised him not to smoke.\tLe médecin lui a conseillé de ne pas fumer.\nThe doctor cured her of her disease.\tLe docteur l'a guérie de sa maladie.\nThe doctor cured her of her disease.\tLe médecin la guérit de sa maladie.\nThe doctor cured her of her disease.\tLe médecin la guérit de son mal.\nThe doctor did a good job on my leg.\tLe toubib a fait du bon boulot avec ma jambe.\nThe doctor will be here in a minute.\tLe médecin sera là dans une minute.\nThe doctors are looking at an x-ray.\tLes docteurs examinent une radio.\nThe dog next door is always barking.\tLe chien d'à côté aboie toujours.\nThe door opened and a man walked in.\tLa porte s'ouvrit et un homme entra.\nThe doorman will call a taxi for us.\tLe portier va nous appeler un taxi.\nThe exact same thing happened to me.\tÇa m'est arrivé à moi aussi.\nThe experiment confirmed his theory.\tL'expérience a confirmé sa théorie.\nThe farmer plowed his field all day.\tL'agriculteur labourait son champ toute la journée.\nThe farmer plowed his field all day.\tL'agriculteur labourait son champ tout le jour.\nThe game got more and more exciting.\tLe jeu est devenu de plus en plus excitant.\nThe game will be held rain or shine.\tLa partie aura lieu, qu'il pleuve ou qu'il fasse beau.\nThe garden is in front of the house.\tLe jardin est en face de la maison.\nThe gifts will delight the children.\tLes cadeaux raviront les enfants.\nThe girl reads with her grandfather.\tLa fille lit avec son grand-père.\nThe holidays came to an end at last.\tLes vacances ont finalement touché à leur fin.\nThe horse stopped and wouldn't move.\tLe cheval s'arrêta et refusa de bouger.\nThe horse stopped and wouldn't move.\tLe cheval s'est arrêté et a refusé de bouger.\nThe ice was thick enough to walk on.\tLa glace était assez épaisse pour marcher dessus.\nThe instinct for survival is innate.\tL'instinct de survie est inné.\nThe jets took off one after another.\tLes avions à réaction décollèrent l'un après l'autre.\nThe kid has a keen sense of hearing.\tL'enfant a une ouïe très développée.\nThe lawn mower needs gas to operate.\tLa tondeuse à gazon a besoin d'essence pour fonctionner.\nThe leaves on trees have turned red.\tLes feuilles des arbres sont devenues rouges.\nThe leaves on trees have turned red.\tSur les arbres, les feuilles sont devenues rouges.\nThe leaves on trees have turned red.\tLes feuilles sur les arbres ont viré au rouge.\nThe lecture covered a lot of ground.\tLa conférence couvrait beaucoup de sujets.\nThe little girl did nothing but cry.\tLa petite fille ne faisait rien d'autre que pleurer.\nThe long trip aggravated her injury.\tLa longueur du voyage a aggravé sa blessure.\nThe man robbed him of all his money.\tL'homme lui déroba tout son argent.\nThe man robbed him of all his money.\tL'homme lui subtilisa tout son argent.\nThe man was a fountain of knowledge.\tL'homme était un puits de savoir.\nThe meeting is scheduled for 10 a.m.\tLa réunion est prévue pour 10h00.\nThe mirror is on top of the dresser.\tLe miroir se trouve sur le dessus du buffet.\nThe mirror is on top of the dresser.\tLe miroir se trouve sur le dessus du vaisselier.\nThe moonlight reflected on the lake.\tLe clair de lune se reflétait sur le lac.\nThe moonlight reflected on the lake.\tLa lumière de la Lune se refletait sur le lac.\nThe more we learn, the more we know.\tPlus nous apprenons, plus nous en savons.\nThe nightlife is better in New York.\tLa vie nocturne est meilleure à New-York.\nThe noise is going to wake the baby.\tLe bruit va réveiller le bébé.\nThe notebook is not yours. It's his.\tLe cahier n'est pas à toi, c'est le sien.\nThe novels he wrote are interesting.\tLes romans qu'il a écrits sont intéressants.\nThe old couple gave him up for lost.\tLe vieux couple le prit pour mort.\nThe old man was almost hit by a car.\tLe vieil homme fut presque heurté par une voiture.\nThe people here are really friendly.\tLes gens ici sont vraiment très amicaux.\nThe place is certainly worth seeing.\tL'endroit vaut certainement la peine d'être vu.\nThe plan has been successful so far.\tLe plan a été un succès jusqu'à présent.\nThe plane will take off in one hour.\tL'avion décollera dans une heure.\nThe police held back the protesters.\tLa police a contenu les manifestants.\nThe policeman is wearing a gas mask.\tLe policier porte un masque à gaz.\nThe political situation has changed.\tLa situation politique a changé.\nThe president takes office tomorrow.\tLe Président entre en fonction demain.\nThe president takes office tomorrow.\tLe Président prend ses fonctions demain.\nThe rain just stopped. We can leave.\tLa pluie vient de s'arrêter. Nous pouvons partir.\nThe referee made the right decision.\tL'arbitre a pris la bonne décision.\nThe result was rather disappointing.\tLe résultat était plutôt décevant.\nThe ring couldn't be found anywhere.\tNulle part on ne put trouver l'anneau.\nThe river flooded the entire region.\tLe fleuve a inondé toute la région.\nThe room was crowded with furniture.\tLa chambre était pleine de meubles.\nThe rule does not apply in our case.\tLa règle ne s'applique pas dans notre cas.\nThe rule doesn't apply in this case.\tLa règle ne s'applique pas dans ce cas.\nThe rule only applies to foreigners.\tLa règle ne s'applique qu'aux étrangers.\nThe rule only applies to foreigners.\tLa règle ne vaut que pour les étrangers.\nThe semester exams are finally over.\tLes examens semestriels sont enfin terminés.\nThe ship is not equipped with radar.\tCe bateau n'est pas équipé de radar.\nThe snowstorm raged for a full week.\tLa tempête de neige se déchaîna pendant toute une semaine.\nThe snowstorm raged for a full week.\tLa tempête de neige s'est déchaînée durant toute une semaine.\nThe soldiers narrowly escaped death.\tLes soldats échappèrent à la mort de justesse.\nThe spy made contact with the enemy.\tL'espion prit contact avec l'ennemi.\nThe store was not a big one, was it?\tLe magasin n'était pas grand, si ?\nThe store was not a big one, was it?\tCe n'était pas un grand magasin, si ?\nThe storm prevented me from leaving.\tLa tempête m'a empêché de partir.\nThe students bowed to their teacher.\tLes étudiants s'inclinèrent devant leur professeur.\nThe students bowed to their teacher.\tLes étudiants se sont inclinés devant leur professeur.\nThe students burned their textbooks.\tLes élèves brûlèrent leurs manuels.\nThe students burned their textbooks.\tLes étudiants brûlèrent leurs manuels.\nThe students burned their textbooks.\tLes élèves ont brûlé leurs manuels.\nThe students burned their textbooks.\tLes étudiants ont brûlé leurs manuels.\nThe surgeon amputated the wrong leg.\tLe chirurgien amputa la mauvaise jambe.\nThe surgeon amputated the wrong leg.\tLe chirurgien a amputé la mauvaise jambe.\nThe surgeon removed the wrong organ.\tLe chirurgien a extrait le mauvais organe.\nThe table in that room is very nice.\tLa table dans cette pièce est très jolie.\nThe train is ten minutes late today.\tLe train est en retard de dix minutes aujourd'hui.\nThe train passed through the tunnel.\tLe train a traversé le tunnel.\nThe treatment is going successfully.\tLe traitement s'est déroulé avec succès.\nThe unemployment rate went up to 5%.\tLe taux de chômage est monté à 5%.\nThe value of the dollar is going up.\tLe cours du dollar est en hausse.\nThe vase that he broke is my aunt's.\tLe vase qu'il a brisé est celui de ma tante.\nThe very thought is abhorrent to me.\tL'idée même m'est détestable.\nThe village I live in is very small.\tLe village où j'habite est très petit.\nThe war on drugs is a political war.\tLa guerre contre la drogue est une guerre politique.\nThe washing machine is out of order.\tLe lave-linge est hors-service.\nThe way she talks gets on my nerves.\tLa façon dont elle parle me tape sur les nerfs.\nThe weather was miserable yesterday.\tLa météo était déprimante hier.\nThe weather was miserable yesterday.\tLe temps était déprimant hier.\nThe wind calmed down in the evening.\tLe vent s'était calmé dans la soirée.\nThe wind calmed down in the evening.\tLe vent s'est calmé dans la soirée.\nThe wind scattered the leaves about.\tLe vent a éparpillé les feuilles.\nThe woman gave birth to a baby girl.\tLa femme mit au monde une petite fille.\nThe word is on the tip of my tongue.\tJ'ai le mot sur le bout de la langue.\nThe workers were naked to the waist.\tLes ouvriers étaient torse nu.\nThe workers worked around the clock.\tLes ouvriers travaillèrent vingt-quatre heures sur vingt-quatre.\nThe workers worked around the clock.\tLes ouvriers ont travaillé vingt-quatre heures sur vingt-quatre.\nThe x-ray showed two broken fingers.\tLes radiographies ont mis en évidence que deux doigts étaient fracturés.\nThe young man lives in an old house.\tLe jeune homme vit dans une vieille maison.\nTheir house is far from the station.\tLeur maison est loin de la gare.\nTheir plan sounds interesting to me.\tLeur plan m'a l'air intéressant.\nThere are downsides to being pretty.\tIl y a des désavantages à être jolie.\nThere are many earthquakes in Japan.\tIl y a de nombreux tremblements de terre au Japon.\nThere are no mistakes in your essay.\tIl n’y a pas de faute dans ta rédaction.\nThere are no more bullets in my gun.\tIl n'y a plus de balles dans mon arme.\nThere are some apples in the basket.\tIl y a des pommes dans le panier.\nThere is a bus stop near our school.\tIl y a un arrêt de bus au voisinage de notre école.\nThere is a dragonfly on the ceiling.\tIl a une libellule posée au plafond.\nThere is a mistake in this sentence.\tIl y a une erreur dans cette phrase.\nThere is a mistake in this sentence.\tIl y a une faute dans cette phrase.\nThere is a small pond in our garden.\tNotre jardin comporte un petit étang.\nThere is an exception to every rule.\tToutes les règles ont des exceptions.\nThere is an exception to every rule.\tChaque règle a son exception.\nThere is an urgent need for shelter.\tIl y a un besoin urgent d'abris.\nThere is little water in the bucket.\tIl y a peu d'eau dans le seau.\nThere is no advantage in doing that.\tIl n'y a pas d'intérêt à faire ça.\nThere is no answer to your question.\tIl n'y a pas de réponse à ta question.\nThere is no answer to your question.\tTa question n'a pas de réponse.\nThere is no answer to your question.\tIl n'y a pas de réponse à votre question.\nThere is no connection between them.\tIl n'y a pas de connexion entre eux.\nThere is no doubt about his ability.\tIl n'y a pas de doute à avoir au sujet de ses capacités.\nThere is no excuse for your actions.\tIl n'y a aucune excuse à tes actes.\nThere is no factory in this village.\tIl n'y a pas d'usine dans ce village.\nThere isn't any film in this camera.\tIl n'y a aucune pellicule dans cet appareil photo.\nThere must be some misunderstanding.\tIl doit y avoir un malentendu.\nThere must be some misunderstanding.\tIl doit y avoir un quelconque malentendu.\nThere used to be an old temple here.\tIl y avait ici un vieux temple.\nThere was a lot of snow last winter.\tIl y a eu beaucoup de neige l'hiver dernier.\nThere was a strong wind on that day.\tIl y avait un vent fort ce jour-là.\nThere were hundreds of people there.\tIl y avait des centaines de personnes là-bas.\nThere were no people in the village.\tIl n'y avait personne au village.\nThere will be a concert next Sunday.\tIl y a un concert dimanche prochain.\nThere's no hiding the fact from her.\tOn ne peut rien lui cacher.\nThere's no solution to this problem.\tCe problème est insoluble.\nThere's no way I'm going to do that.\tIl n'est pas question que je fasse ça.\nThere's nothing as precious as love.\tRien n'a autant de valeur que l'amour.\nThere's nothing more I can tell you.\tIl n'y a rien que je puisse te dire de plus.\nThere's nothing more I can tell you.\tIl n'y a rien que je puisse vous dire de plus.\nThere's nothing to be done about it.\tOn ne peut rien y faire.\nThere's somebody I want you to meet.\tIl y a quelqu'un que je veux te présenter.\nThere's something I have to ask you.\tIl y a quelque chose que je dois vous demander.\nThere's something I have to ask you.\tIl y a quelque chose qu'il me faut vous demander.\nThere's something I have to ask you.\tIl y a quelque chose que je dois te demander.\nThere's something I have to ask you.\tIl y a quelque chose qu'il me faut te demander.\nThese boxes are made out of plastic.\tCes boîtes sont en plastique.\nThese mosquitos are eating me alive!\tCes moustiques me dévorent vivant !\nThese patients have trouble walking.\tCes patients ont du mal à marcher.\nThey accused him of being dishonest.\tIls l'ont accusé d'être malhonnête.\nThey agreed to give us an interview.\tIls nous accordèrent une entrevue.\nThey agreed to give us an interview.\tElles nous accordèrent une entrevue.\nThey are all my personal belongings.\tCe sont toutes mes affaires personnelles.\nThey are engaged in cancer research.\tIls se sont impliqués dans la recherche sur le cancer.\nThey are engaged in cancer research.\tElles se sont engagées dans la recherche sur le cancer.\nThey can add something if they wish.\tIls peuvent ajouter autre chose s'ils le souhaitent.\nThey cried when they heard the news.\tIls ont pleuré lorsqu'ils ont entendu les nouvelles.\nThey don't need to do it right away.\tIl n'est pas nécessaire qu'ils le fassent sur-le-champ.\nThey don't teach you that in school.\tIls ne vous enseignent pas ça à l'école.\nThey don't teach you that in school.\tOn ne vous enseigne pas ça à l'école.\nThey donated money to the Red Cross.\tIls donnèrent de l'argent à la Croix-Rouge.\nThey even named their boy after you.\tIls ont même prénommé leur garçon en ton honneur.\nThey even named their boy after you.\tIls ont même prénommé leur garçon en votre honneur.\nThey forced me to take the medicine.\tIls m'ont forcé à prendre le médicament.\nThey got the short end of the stick.\tIls tiennent la poignée du bâton.\nThey got the short end of the stick.\tIls ont obtenu la poignée du bâton.\nThey got the short end of the stick.\tIls se sont fait rouler.\nThey got the short end of the stick.\tCe sont eux qui écopent.\nThey got the short end of the stick.\tIls ont été défavorisés.\nThey got the short end of the stick.\tCe sont les dindons de la farce.\nThey got the short end of the stick.\tElles ont eu la portion congrue.\nThey hang out together all the time.\tElles traînent tout le temps ensemble.\nThey hang out together all the time.\tIls traînent tout le temps ensemble.\nThey have already finished the work.\tIls ont déjà terminé le travail.\nThey have already finished the work.\tElles ont déjà terminé le travail.\nThey have brown skin and black hair.\tIls ont la peau marron et les cheveux noirs.\nThey have drunk two bottles of wine.\tElles ont bu deux bouteilles de vin.\nThey hired someone else for the job.\tIls ont enrôlé quelqu'un d'autre pour le poste.\nThey hired someone else for the job.\tElles ont enrôlé quelqu'un d'autre pour le poste.\nThey left very early in the morning.\tIls sont partis très tôt.\nThey often go on picnics by bicycle.\tIls vont souvent en pique-nique à vélo.\nThey seem to be enjoying themselves.\tIls semblent s'amuser.\nThey seem to be enjoying themselves.\tElles semblent s'amuser.\nThey set up a new company in London.\tIls ont monté une nouvelle société à Londres.\nThey set up a new company in London.\tElles ont monté une nouvelle société à Londres.\nThey started the meeting without me.\tIls ont commencé la réunion sans moi.\nThey talked over the plan for hours.\tIls discutèrent du plan durant des heures.\nThey were abandoned by their mother.\tIls ont été abandonnés par leur mère.\nThey were afraid of being overheard.\tIls avaient peur d'être écoutés.\nThey were afraid of being overheard.\tElles avaient peur d'être écoutées.\nThey were afraid of being overheard.\tIls eurent peur d'être écoutés.\nThey were afraid of being overheard.\tElles eurent peur d'être écoutées.\nThey were afraid of being overheard.\tIls craignirent d'être écoutés.\nThey were afraid of being overheard.\tElles craignirent d'être écoutées.\nThey were afraid of being overheard.\tIls ont craint d'être écoutés.\nThey were afraid of being overheard.\tElles ont craint d'être écoutées.\nThey were punished for their crimes.\tIls ont été punis pour leurs crimes.\nThey were punished for their crimes.\tElles ont été punies pour leurs crimes.\nThey were satisfied with the result.\tIls étaient satisfaits du résultat.\nThey were satisfied with the result.\tElles étaient satisfaites du résultat.\nThey worked jointly on this project.\tIls ont travaillé ensemble sur ce projet.\nThings are not like they used to be.\tLes choses ne sont plus telles qu'elles étaient.\nThings aren't always as they appear.\tLes choses ne sont pas toujours ce qu'elles semblent.\nThis book is not available in Japan.\tCe livre n'est pas disponible au Japon.\nThis book will be very useful to us.\tCe livre nous sera très utile.\nThis broken vase cannot be repaired.\tCe vase cassé ne peut pas être réparé.\nThis building looks very futuristic.\tCe bâtiment a l'air très futuriste.\nThis cell phone is really expensive.\tCe téléphone portable est vraiment cher.\nThis child's mother is an announcer.\tLa mère de cet enfant est speakerine.\nThis custom began in the Edo Period.\tCette coutume a commencé durant l'ère Edo.\nThis door is locked from the inside.\tCette porte est verrouillée de l'intérieur.\nThis dress is much too large for me.\tCette robe est bien trop grande pour moi.\nThis gives me the strength to go on.\tCela me donne de la force pour aller de l'avant.\nThis hall holds two thousand people.\tCette salle peut accueillir deux mille personnes.\nThis highway saves us a lot of time.\tCette autoroute nous fait gagner beaucoup de temps.\nThis house is registered in my name.\tCette maison est enregistrée à mon nom.\nThis is a map of the city of Sendai.\tC'est une carte de la ville de Sendai.\nThis is a special day for all of us.\tC'est un jour particulier pour nous tous.\nThis is a special day for all of us.\tC'est un jour particulier pour nous toutes.\nThis is a very important day for us.\tC'est un jour très important pour nous.\nThis is a very sophisticated device.\tC'est un appareil très sophistiqué.\nThis is an extremely serious matter.\tC'est une affaire extrêmement grave.\nThis is an interesting book to read.\tIl est intéressant de lire ce livre.\nThis is everything I've ever wanted.\tC'est tout ce que j'ai jamais désiré.\nThis is just the type of car I want.\tC'est précisément le genre de voiture que je veux.\nThis is something I must face alone.\tC'est quelque chose auquel je dois faire face seul.\nThis is something I must face alone.\tC'est quelque chose auquel je dois faire face seule.\nThis is something I must face alone.\tIl s'agit de quelque chose auquel je dois faire face seul.\nThis is something I must face alone.\tIl s'agit de quelque chose auquel je dois faire face seule.\nThis is the house where he was born.\tC'est la maison où il est né.\nThis is where the accident happened.\tC'est là que l'accident arriva.\nThis isn't supposed to be happening.\tCe n'est pas supposé se produire.\nThis isn't supposed to be happening.\tCe n'est pas supposé arriver.\nThis isn't supposed to be happening.\tCe n'est pas supposé survenir.\nThis job involves lots of hard work.\tCet emploi implique beaucoup de travail difficile.\nThis law is applicable to all cases.\tCette loi est applicable dans chaque cas.\nThis may just come in handy someday.\tCela peut se révéler bien utile un de ces jours.\nThis medicine is good for headaches.\tCe médicament combat les maux de tête.\nThis mountain is difficult to climb.\tCette montagne est difficile à escalader.\nThis movie is politically incorrect.\tCe film est politiquement incorrect.\nThis movie is suitable for children.\tCe film convient aux enfants.\nThis painting has already been sold.\tCe tableau a déjà été vendu.\nThis pen is very easy to write with.\tCe stylo facilite beaucoup l'écriture.\nThis poor cat almost died of hunger.\tCe pauvre chat est presque mort de faim.\nThis river flows south into the sea.\tCe fleuve se jette dans la mer vers le sud.\nThis room doesn't get much sunshine.\tCette pièce ne reçoit pas beaucoup de soleil.\nThis should solve all your problems.\tCeci devrait résoudre tous tes problèmes.\nThis should solve all your problems.\tCeci devrait résoudre tous vos problèmes.\nThis show is too racy for teenagers.\tCe spectacle est trop osé pour des adolescents.\nThis symphony is a real masterpiece.\tCette symphonie est vraiment un chef-d’œuvre.\nThis test doesn't have a time limit.\tCet examen n'a pas de limite de temps.\nThis theory consists of three parts.\tCette théorie se compose de trois parties.\nThis ticket is valid for three days.\tCe ticket est valable trois jours.\nThis ticket is valid for three days.\tCe billet est valable pendant trois jours.\nThis train is made up of seven cars.\tCe train est composé de sept wagons.\nThis train is made up of seven cars.\tCe train se compose de sept voitures.\nThis watch cost me ten thousand yen.\tCette montre m'a coûté dix mille yen.\nThis watch was given me by my uncle.\tCette montre m'a été donnée par mon oncle.\nThis word is both a noun and a verb.\tCe mot est un nom et un verbe à la fois.\nThis year is going to be prosperous.\tCette année va être prospère.\nTo my surprise, he refused my offer.\tÀ ma surprise, il rejeta ma proposition.\nTo tell the truth, I don't like him.\tPour dire vrai, je ne l'aime pas.\nTo tell the truth, she is my cousin.\tPour dire la vérité, elle est ma cousine.\nTom almost always ignores my advice.\tTom ignore presque toujours mes conseils.\nTom and I are both waiting for Mary.\tTom et moi attendons tous les deux Mary.\nTom and Mary adopted three children.\tTom et Mary ont adopté trois enfants.\nTom and Mary are the only survivors.\tTom et Marie sont les seuls survivants.\nTom and Mary quickly became friends.\tTom et Marie sont rapidement devenus amis.\nTom and Mary were talking in French.\tTom et Mary parlaient en français.\nTom answered the question correctly.\tTom a répondu correctement à la question.\nTom asked Mary to wait for him here.\tTom demanda à Mary de l'attendre ici.\nTom asked me how many guitars I own.\tTom m'a demandé combien de guitares je possède.\nTom attached the string to the kite.\tTom attachait la ficelle au cerf-volant.\nTom believes that Mary was murdered.\tTom croit que Mary a été tuée.\nTom believes that Mary was murdered.\tTom croit que Mary a été assassinée.\nTom bought himself a new sports car.\tTom s'est acheté une nouvelle voiture de sport.\nTom called to say that he'd be late.\tTom a appelé pour dire qu'il serait en retard.\nTom came here to ask us to help him.\tTom est venu ici pour nous demander de l'aider.\nTom can bake really good apple pies.\tThomas sait faire de succulentes tartes aux pommes.\nTom can give you an answer tomorrow.\tTom pourra te donner une réponse demain.\nTom can't do even simple arithmetic.\tTom ne peut même pas faire des opérations arithmétiques simples.\nTom can't see Mary from where he is.\tTom ne peut pas voir Mary de là où il est.\nTom can't stop Mary from doing that.\tTom ne peux pas empêcher Mary de faire cela.\nTom certainly knows a lot of French.\tTom connaît certainement beaucoup de choses françaises.\nTom could no longer control himself.\tTom ne pouvait plus se contrôler.\nTom couldn't do something like that.\tTom ne pourrait pas faire une telle chose.\nTom denied having said such a thing.\tTom a nié avoir dit une telle chose.\nTom described the problem in detail.\tTom a décrit le problème en détail.\nTom described the problem in detail.\tTom décrivit le problème en détail.\nTom did exactly as I told him to do.\tTom a fait exactement ce que je lui ai dit de faire.\nTom didn't accept Mary's invitation.\tTom n'a pas accepté l'invitation de Mary.\nTom didn't accept Mary's invitation.\tTom n'accepta pas l'invitation de Mary.\nTom didn't come to school yesterday.\tTom n'est pas venu à l'école hier.\nTom didn't come to the last meeting.\tTom n'est pas venu à la dernière réunion.\nTom didn't know what to say to Mary.\tTom ne savait pas quoi dire à Mary.\nTom didn't really mean that, did he?\tTom ne voulait pas vraiment dire cela, n'est-ce pas ?\nTom didn't want Mary to drive drunk.\tTom ne voulait pas que Marie conduise ivre.\nTom didn't want to go to the doctor.\tTom ne voulait pas consulter le médecin.\nTom doesn't always obey his parents.\tTom n’obéit pas toujours à ses parents.\nTom doesn't get up as early as Mary.\tTom ne se lève pas aussi tôt que Marie.\nTom doesn't have a driver's license.\tTom n'as pas le permis.\nTom doesn't know how computers work.\tTom ne sait pas comment marche un ordinateur.\nTom doesn't like to be contradicted.\tTom n'aime pas qu'on le contredise.\nTom doesn't like to be made to wait.\tTom n'aime pas qu'on l'oblige à attendre.\nTom doesn't like to talk about that.\tTom n'aime pas parler de ça.\nTom doesn't like to talk about that.\tTom n'aime pas en parler.\nTom doesn't need to wait any longer.\tTom n'a pas besoin d'attendre plus longtemps.\nTom doesn't put sugar in his coffee.\tTom ne met pas de sucre dans son café.\nTom doesn't realize how lucky he is.\tTom ne se rend pas compte comme il a de la chance.\nTom doesn't seem to know who we are.\tTom ne semble pas savoir qui nous sommes.\nTom doesn't usually play backgammon.\tTom ne joue pas au backgammon d'habitude.\nTom doesn't want to be disappointed.\tTom ne veut pas être déçu.\nTom doesn't want to discourage Mary.\tTom ne veut pas décourager Marie.\nTom doesn't want to miss his flight.\tTom ne veut pas rater son vol.\nTom doesn't want to take a walk now.\tTom ne veut pas se promener maintenant.\nTom doesn't want to talk to you now.\tTom ne veut pas te parler maintenant.\nTom doesn't want to talk to you now.\tTom ne veut pas vous parler maintenant.\nTom doesn't want to wait any longer.\tTom ne veut pas attendre plus longtemps.\nTom filled out the application form.\tTom remplit le formulaire d'inscription.\nTom forgot to bring his lunch today.\tTom a oublié d'apporter son déjeuner aujourd'hui.\nTom gave the police a false address.\tTom a donné une fausse adresse à la police.\nTom goes to school five days a week.\tTom va l’école cinq jours par semaine.\nTom got home later than usual today.\tTom est rentré chez lui plus tard que d'habitude aujourd'hui.\nTom got permission to go home early.\tTom a obtenu la permission de rentrer tôt.\nTom had a heart tattooed on his arm.\tTom avait un cœur tatoué sur le bras.\nTom handed Mary a cup of hot coffee.\tTom offrit un café bien chaud à Mary.\nTom handled the situation very well.\tTom a très bien géré la situation.\nTom hanged himself in his jail cell.\tTom s'est pendu dans sa cellule de prison.\nTom has an older brother named John.\tTom a un grand frère qui s'appelle John.\nTom has decided to have the surgery.\tTom a décidé de subir l'intervention.\nTom has decided to take the day off.\tTom a décidé de prendre une journée de congé.\nTom has lived in Chicago for a year.\tTom vit à Chicago depuis un an.\nTom hasn't realized his mistake yet.\tTom ne s'est pas encore rendu compte de son erreur.\nTom helped Mary carry her suitcases.\tTom aida Marie à porter ses valises.\nTom hid Mary's doll behind the door.\tTom a caché la poupée de Mary derrière la porte.\nTom is Mary's husband's best friend.\tTom est le meilleur ami du mari de Mary.\nTom is a fluent speaker of Japanese.\tTom parle couramment japonais.\nTom is better than I was at his age.\tTom est mieux que moi à son âge.\nTom is going to be thirty next year.\tTom aura trente ans l'année prochaine.\nTom is going to visit Mary tomorrow.\tTom va rendre visite à Mary demain.\nTom is interested in mountaineering.\tTom s'intéresse à l'alpinisme.\nTom is outside watering the flowers.\tTom est dehors en train d'arroser les fleurs.\nTom is really busy most of the time.\tTom est très occupé la plupart du temps.\nTom is recovering from his injuries.\tTom récupère de ses blessures.\nTom is recovering from his injuries.\tTom se remet de ses blessures.\nTom is someone who can't be trusted.\tTom est quelqu'un sur qui on ne peut pas compter.\nTom is strong, but Mary is stronger.\tTom est fort, mais Marie est plus forte.\nTom is the father of three children.\tTom est le père de trois enfants.\nTom is the one that doesn't like me.\tTom est celui qui ne m'aime pas.\nTom is the tallest one in the class.\tTom est le plus grand de la classe.\nTom is trying not to worry too much.\tTom essaie de ne pas trop s'inquiéter.\nTom is used to staying up all night.\tTom est habitué à rester debout toute la nuit.\nTom is usually very quiet, isn't he?\tTom est généralement très silencieux, n'est-ce pas ?\nTom kept on making the same mistake.\tTom continuait à commettre la même erreur.\nTom kissed Mary and she slapped him.\tTom a embrassé Marie, et elle l'a giflé.\nTom knows a lot of stuff about Mary.\tTom en sait beaucoup au sujet de Mary.\nTom knows almost nothing about Mary.\tTom ne sait presque rien à propos de Mary.\nTom lived in Boston for a long time.\tTom a vécu à Boston pendant longtemps.\nTom lives in the apartment above us.\tTom habite l'appartement du dessus.\nTom made room for Mary on the bench.\tTom fit de la place pour Marie sur le banc.\nTom maintained that he was innocent.\tTom a maintenu qu'il était innocent.\nTom makes his own bed every morning.\tTom fait lui-même son lit tous les matins.\nTom may never be able to walk again.\tTom ne sera peut-être plus jamais capable de marcher.\nTom may never be able to walk again.\tTom sera peut-être incapable de marcher à nouveau.\nTom mistook me for my older brother.\tTom m'a confondu avec mon grand frère.\nTom mistook me for my older brother.\tTom m'a pris pour mon frère aîné.\nTom moved to Boston three years ago.\tTom a déménagé à Boston il y a trois ans.\nTom never gives anything to anybody.\tTom ne donne jamais rien à personne.\nTom never seems to know what to say.\tTom semble ne jamais savoir quoi dire.\nTom passed most of the time fishing.\tTom passait le plus clair de son temps à pêcher.\nTom plays tennis three times a week.\tTom joue au tennis trois fois par semaine.\nTom poured more wine into his glass.\tTom versa plus de vin dans son verre.\nTom poured more wine into his glass.\tTom a versé plus de vin dans son verre.\nTom pretended that he didn't see it.\tTom a prétendu qu'il ne l'avait pas vu.\nTom pretended that he didn't see it.\tTom prétendit qu'il ne l'avait pas vu.\nTom promised never to do that again.\tTom a promis de ne plus jamais refaire ça.\nTom promised never to do that again.\tTom promit de ne jamais refaire cela.\nTom pulled a box from under the bed.\tTom tira une boîte de sous le lit.\nTom pulled a box from under the bed.\tTom a tiré une boîte de sous le lit.\nTom put his pistol under the pillow.\tTom mit son pistolet sous l'oreiller.\nTom put the thermometer on the wall.\tTom a mis le thermomètre sur le mur.\nTom put thirty dollars on the table.\tTom mit trente dollars sur la table.\nTom put thirty dollars on the table.\tTom a mis trente dollars sur la table.\nTom really hates this kind of thing.\tTom a horreur de ce genre de choses.\nTom remained silent for a long time.\tTom resta silencieux pendant un long moment.\nTom remained silent for a long time.\tTom est resté silencieux pendant un long moment.\nTom remained unmarried all his life.\tTom est resté célibataire toute sa vie.\nTom said he found something strange.\tTom a dit qu'il avait trouvé quelque chose d'étrange.\nTom said that you tried to kill him.\tTom a dit que tu avais essayé de le tuer.\nTom says he eats more when he's sad.\tTom dit qu'il mange plus quand il est triste.\nTom says he won't come to our party.\tTom dit qu'il ne viendra à notre fête.\nTom scratched his name off the list.\tTom raya son nom de la liste.\nTom scratched his name off the list.\tTom a rayé son nom de la liste.\nTom seems to be waiting for someone.\tTom semble attendre quelqu'un.\nTom seldom puts sugar in his coffee.\tTom met rarement du sucre dans son café.\nTom shouldn't do that kind of thing.\tTom ne devrait pas faire ce genre de choses.\nTom shouldn't have done what he did.\tTom n'aurait pas du faire ce qu'il a fait.\nTom showed us a photo of his mother.\tTom nous montra une photo de sa mère.\nTom slammed the door in Mary's face.\tTom claqua la porte au nez de Mary.\nTom slept on an inflatable mattress.\tTom a dormi sur un matelas gonflable.\nTom speaks French, and so does Mary.\tTom parle français et Mary aussi.\nTom stayed in Boston for three days.\tTom est resté à Boston pendant trois jours.\nTom stayed in Boston for three days.\tTom resta à Boston pendant trois jours.\nTom still isn't taking us seriously.\tTom ne nous prend toujours pas au sérieux.\nTom takes very good care of his car.\tTom prend très soin de sa voiture.\nTom thinks this price is reasonable.\tTom pense que ce prix est raisonnable.\nTom thought Mary could speak French.\tTom pensait que Mary pouvait parler français.\nTom threw an empty beer can at Mary.\tTom a lancé une canette de bière vide à Mary.\nTom told Mary not to swim with John.\tTom a dit à Mary de ne pas nager avec John.\nTom told a joke, but nobody laughed.\tTom a raconté une blague, mais personne n'a ri.\nTom told a joke, but nobody laughed.\tTom raconta une blague, mais personne ne rit.\nTom told me that Mary was on a diet.\tTom m'a dit que Mary était au régime.\nTom told me which book I should buy.\tTom m'a dit quel livre je devrais acheter.\nTom took a book down from the shelf.\tTom prit un livre sur l'étagère.\nTom took a book down from the shelf.\tTom a pris un livre sur l'étagère.\nTom took care of the kids yesterday.\tTom a pris soin des enfants hier.\nTom tried to do it, but he couldn't.\tTom a essayé de le faire, mais il n'a pas pu.\nTom tried to do it, but he couldn't.\tTom essaya de le faire, mais il ne put pas.\nTom waited for Mary for a long time.\tTom a attendu Mary pendant un long moment.\nTom waited for Mary for a long time.\tTom attendit Mary pendant longtemps.\nTom walked to the front of the room.\tTom se dirigea vers l'avant de la salle.\nTom wanted Mary to meet his parents.\tTom voulait que Mary rencontre ses parents.\nTom wants to borrow my car tomorrow.\tTom veut emprunter ma voiture demain.\nTom wants to come to Boston with us.\tTom veut venir à Boston avec nous.\nTom wants to come with us to Boston.\tTom veut venir avec nous à Boston.\nTom was chosen among 300 applicants.\tTom a été choisi parmi 300 candidats.\nTom was impatient to see Mary again.\tTom était impatient de revoir Mary.\nTom was trying to control his anger.\tTom essayait de contrôler sa colère.\nTom was well-known in the community.\tTom était bien connu dans la communauté.\nTom wasn't able to sleep on the bus.\tTom n'était pas capable de dormir dans le bus.\nTom will be here in fifteen minutes.\tTom sera là dans quinze minutes.\nTom would never go there by himself.\tTom n'irait jamais là seul.\nTom would've been very proud of you.\tTom aurait été très fier de toi.\nTom would've been very proud of you.\tTom aurait été très fier de vous.\nTom's eyes were glued to the screen.\tLes yeux de Tom étaient collés à l'écran.\nTom's friends tried to cheer him up.\tLes amis de Tom ont essayé de lui remonter le moral.\nTom's proposal is worth considering.\tLa proposition de Tom vaut la peine d'être prise en compte.\nTomorrow morning, I'll wake up at 6.\tDemain matin, je me lève à 6 heures.\nTry to be more punctual from now on.\tEfforcez-vous d'être plus ponctuel, désormais.\nTry to be more punctual from now on.\tEfforcez-vous d'être plus ponctuelle, désormais.\nTry to be more punctual from now on.\tEfforce-toi d'être plus ponctuel, désormais.\nTry to be more punctual from now on.\tEfforce-toi d'être plus ponctuelle, désormais.\nTry to be more punctual from now on.\tEssaie d'être plus ponctuel, désormais.\nTry to be more punctual from now on.\tEssaie d'être plus ponctuelle, désormais.\nTry to be more punctual from now on.\tEssayez d'être plus ponctuel, désormais.\nTry to be more punctual from now on.\tEssayez d'être plus ponctuelle, désormais.\nTry to be more punctual from now on.\tEssayez d'être plus ponctuelles, désormais.\nTry to be more punctual from now on.\tEssayez d'être plus ponctuels, désormais.\nTry to be more punctual from now on.\tEfforcez-vous d'être plus ponctuelles, désormais.\nTry to be more punctual from now on.\tEfforcez-vous d'être plus ponctuels, désormais.\nTry to make it last a little longer.\tEssaie de le faire durer un peu plus longtemps.\nTry to make it last a little longer.\tEssayez de le faire durer un peu plus longtemps.\nTurn right at the next intersection.\tTourne à droite à la prochaine intersection.\nTurn right at the next intersection.\tTourne à droite au prochain carrefour.\nTurn right at the next intersection.\tPrends à droite au prochain croisement.\nTwo detectives followed the suspect.\tDeux détectives suivirent le suspect.\nTwo families live in the same house.\tDeux familles vivent dans la même maison.\nTwo glasses of orange juice, please.\tDeux verres de jus d'orange s'il vous plaît.\nTwo people say they heard a gunshot.\tDeux personnes disent avoir entendu une détonation.\nTwo people say they heard a gunshot.\tDeux personnes disent avoir entendu un coup de feu.\nTwo people say they heard a gunshot.\tDeux personnes disent qu'elles ont entendu une détonation.\nTwo people say they heard a gunshot.\tDeux personnes disent qu'elles ont entendu un coup de feu.\nUnfortunately, I missed all the fun.\tMalheureusement, j'ai loupé tout l'amusement.\nUnfortunately, that wasn't the case.\tMalheureusement, ce n'était pas le cas.\nWas your family with you last month?\tVotre famille était-elle avec vous, le mois dernier ?\nWas your family with you last month?\tTa famille était-elle avec toi, le mois dernier ?\nWatching movies is very interesting.\tRegarder des films est très intéressant.\nWater becomes solid when it freezes.\tL'eau devient solide quand elle gèle.\nWater covers about 70% of the earth.\tL'eau recouvre environ 70% de la surface de la Terre.\nWater is to fish what air is to man.\tL'air est aux hommes ce que l'eau est aux poissons.\nWe apologize for this inconvenience.\tNous nous excusons pour ce désagrément.\nWe are faced with many difficulties.\tNous sommes confrontés à de nombreuses difficultés.\nWe are going to climb that mountain.\tNous allons gravir cette montagne.\nWe are going to climb that mountain.\tNous avons l'intention de gravir cette montagne.\nWe can't be sure about that, can we?\tNous ne pouvons pas être sûr à ce propos, n'est-ce pas ?\nWe can't choose who our parents are.\tOn ne choisit pas ses parents.\nWe can't keep this a secret forever.\tNous ne pouvons le garder secret pour toujours.\nWe did have fun together, didn't we?\tOn s'est bien amusé ensemble, non ?\nWe didn't actually see the accident.\tEn fait, nous n'avons pas vu l'accident.\nWe didn't want to go, but we had to.\tNous ne voulions pas, mais nous avons dû y aller.\nWe don't want to give too much away.\tNous ne voulons pas donner trop.\nWe enjoyed playing chess last night.\tOn a passé un bon moment à jouer aux échecs la nuit dernière.\nWe found out that he was her father.\tNous avons découvert qu'il était son père.\nWe had a heated discussion about it.\tNous avons eu une discussion passionnée à propos de cela.\nWe had a heated discussion about it.\tNous avons eu une discussion véhémente à ce propos.\nWe had a short vacation in February.\tNous avons eu de courtes vacances en février.\nWe happened to be on the same train.\tIl advint que nous nous trouvions dans le même train.\nWe have a stressful day ahead of us.\tNous avons une journée stressante devant nous.\nWe have already finished our dinner.\tNous avons déjà fini notre dîner.\nWe have been waiting here for hours.\tÇa fait des heures qu'on attend ici.\nWe have four classes in the morning.\tNous avons quatre cours le matin.\nWe have had little snow this winter.\tNous avons eu peu de neige, cet hiver.\nWe have three trees in our backyard.\tNous avons trois arbres dans notre jardin.\nWe have to be careful with expenses.\tNous devons faire attention à nos dépenses.\nWe have to be careful with expenses.\tIl nous faut faire attention à nos dépenses.\nWe have to be prepared for anything.\tIl nous faut être prêts à tout.\nWe heard the boy playing the violin.\tOn a entendu le garçon jouer du violon.\nWe heard the boy playing the violin.\tNous avons entendu le garçon jouer du violon.\nWe heard what sounded like gunshots.\tNous avons entendu quelque chose ayant l'air de détonations.\nWe heard what sounded like gunshots.\tNous avons entendu quelque chose ayant l'air de coups de feu.\nWe invite you to listen to us again.\tNous vous invitons à nous écouter à nouveau.\nWe invited ten couples to the party.\tNous avons invité dix couples à la fête.\nWe managed to swim across the river.\tNous parvînmes à traverser la rivière à la nage.\nWe might as well get this over with.\tNous ferions tout aussi bien de terminer ça.\nWe must have faith in the president.\tNous devons avoir foi dans le président.\nWe need something a bit more subtle.\tIl nous faut quelque chose d'un peu plus subtil.\nWe need to find an effective method.\tNous devons trouver une méthode efficace.\nWe need to take this very seriously.\tNous devons prendre ça très sérieusement.\nWe often associate black with death.\tNous associons souvent le noir à la mort.\nWe sat face to face with executives.\tNous étions assis face aux cadres.\nWe should always try to help others.\tNous devrions toujours essayer d'aider les autres.\nWe should make use of atomic energy.\tNous devrions faire usage de l'énergie nucléaire.\nWe should talk calmly to each other.\tNous devrions discuter calmement !\nWe should use the fireplace tonight.\tNous devrions utiliser le feu ouvert ce soir.\nWe spent the night in a cheap hotel.\tNous passâmes la nuit dans un hôtel bon marché.\nWe spent the night in a cheap hotel.\tNous avons passé la nuit dans un hôtel pas cher.\nWe talked about a variety of topics.\tNous avons parlé d'une variété de sujets.\nWe talked about a variety of topics.\tNous discutâmes d'une variété de sujets.\nWe talked to each other for a while.\tNous avons parlé un moment.\nWe want to take your blood pressure.\tNous souhaitons mesurer votre tension artérielle.\nWe went on talking about the matter.\tNous avons parlé longuement du sujet.\nWe were crowded into the small room.\tNous nous sommes retrouvés les uns sur les autres dans la petite pièce.\nWe were obliged to abandon our plan.\tNous avons été contraints d'abandonner notre plan.\nWe were obliged to give up our plan.\tNous avons été contraints d'abandonner notre plan.\nWe were on the same train by chance.\tNous étions par chance dans le même train.\nWe were under constant surveillance.\tNous étions surveillés de façon permanente.\nWe will keep the peace at all costs.\tNous maintiendrons la paix à tout prix.\nWe will visit our teacher next week.\tNous rendrons visite à notre instituteur la semaine prochaine.\nWe will visit our teacher next week.\tNous allons rendre visite à notre institutrice la semaine prochaine.\nWe will visit our teacher next week.\tNous rendrons visite à notre professeur la semaine prochaine.\nWe'd better not change the schedule.\tNous ferions mieux de ne pas modifier l'emploi du temps.\nWe'll get started as soon as we can.\tNous commencerons le plus tôt possible.\nWe'll get you back home immediately.\tNous allons vous raccompagner chez vous immédiatement.\nWe'll try even harder the next time.\tAlors nous essaierons plus fort la prochaine fois.\nWe're expecting lousy weather today.\tNous attendons du mauvais temps, aujourd'hui.\nWe're going to do everything we can.\tNous allons faire tout ce que nous pouvons.\nWe're going to do everything we can.\tOn va faire tout ce qu'on peut.\nWe're going to do everything we can.\tNous allons faire ce que nous pouvons.\nWe're going to do everything we can.\tOn va faire ce qu'on peut.\nWe're headed in the right direction.\tNous nous dirigeons dans la bonne direction.\nWe've already sent a message to Tom.\tNous avons déjà envoyé un message à Tom.\nWe've got a really big problem here.\tOn a vraiment un gros problème.\nWe've got bigger problems than that.\tNous avons de plus gros problèmes que ça.\nWe've got to take Tom to the doctor.\tNous devons emmener Tom au docteur.\nWe've looked everywhere, haven't we?\tNous avons regardé partout, n'est-ce pas ?\nWell, stranger things have happened.\tEh bien, des choses plus étranges sont survenues.\nWere there any glasses on the table?\tY avait-il des verres sur la table ?\nWhales are similar to fish in shape.\tLes baleines ressemblent aux poissons dans leur forme.\nWhat are the dimensions of the room?\tQuelles sont les dimensions de cette pièce ?\nWhat are you doing with these dolls?\tQu'êtes-vous en train de faire avec ces poupées ?\nWhat are you doing with these dolls?\tQu'es-tu en train de faire avec ces poupées ?\nWhat are you getting so upset about?\tQu'est-ce qui te préoccupe ?\nWhat are you trying to hide from me?\tQu'essayes-tu de me cacher ?\nWhat are your plans for the weekend?\tQuels sont tes plans pour le week-end ?\nWhat books have you read in English?\tQuels livres as-tu lus en anglais ?\nWhat could possibly have gone wrong?\tQu'est-ce qui a bien pu mal se passer ?\nWhat did Tom give you for Christmas?\tQue t'as offert Tom pour Noël ?\nWhat did Tom give you for Christmas?\tQu'est-ce que Tom t'a offert à Noël ?\nWhat did you come here so early for?\tPourquoi t'es-tu levé aussi tôt ?\nWhat direction does your house face?\tÀ quelle direction votre maison fait-elle face ?\nWhat direction does your house face?\tTa maison fait face à quelle direction ?\nWhat do you feel like doing tonight?\tQu'as-tu envie de faire ce soir ?\nWhat do you feel like doing tonight?\tQu'avez-vous envie de faire ce soir ?\nWhat do you mean, you can't help me?\tQue veux-tu dire que tu ne peux pas m'aider ?\nWhat do you mean, you can't help me?\tQue voulez-vous dire que vous ne pouvez pas m'aider ?\nWhat do you say to calling it a day?\tQue dis-tu de nous arrêter ?\nWhat do you say to calling it a day?\tQue dites-vous de nous arrêter ?\nWhat do you think about this outfit?\tQue penses-tu de cette tenue ?\nWhat do you think about this outfit?\tQue pensez-vous de cette tenue ?\nWhat do you think of his suggestion?\tQue penses-tu de sa proposition ?\nWhat do you think of his suggestion?\tQue pensez-vous de sa suggestion ?\nWhat does it feel like to be famous?\tQuelle impression cela fait-il d'être célèbre ?\nWhat happens if I press this button?\tQue se passe-t-il si j'appuie sur ce bouton ?\nWhat happens if I press this button?\tQu'arrive-t-il si j'appuie sur ce bouton ?\nWhat happens if I press this button?\tQu'est-ce qui se produit si j'appuie sur ce bouton ?\nWhat he said could possibly be true.\tCe qu'il a dit est dans le domaine du possible.\nWhat is this fish called in English?\tComment nomme-t-on ce poisson en anglais ?\nWhat kind of fool do you think I am?\tVous me prenez pour un idiot ?\nWhat on earth are you talking about?\tMais enfin, de quoi parlez-vous donc ?\nWhat part of Australia are you from?\tDe quel coin de l'Australie venez-vous ?\nWhat part of Australia are you from?\tDe quel coin de l'Australie viens-tu ?\nWhat part of Australia are you from?\tDe quelle partie de l'Australie venez-vous ?\nWhat part of Australia are you from?\tDe quelle partie de l'Australie viens-tu ?\nWhat products are currently on sale?\tQuels produits sont actuellement en vente ?\nWhat time do you want me to be here?\tÀ quelle heure veux-tu que je sois là ?\nWhat time does the next train leave?\tÀ quelle heure part le prochain train ?\nWhat vegetables do you usually grow?\tQuels légumes faites-vous pousser, d'ordinaire ?\nWhat vegetables do you usually grow?\tQuels légumes fais-tu pousser, d'ordinaire ?\nWhat was it that he was looking for?\tQue cherchait-il ?\nWhat was it that we were told to do?\tC'est quoi qu'on nous a dit de faire ?\nWhat was it that we were told to do?\tQu'est-ce qu'on nous a demandé de faire ?\nWhat was the cause of the explosion?\tQuelle était la cause de l'explosion ?\nWhat were you and Tom talking about?\tDe quoi Tom et toi parliez-vous ?\nWhat will losing the war mean to us?\tQue signifiera pour nous de perdre la guerre ?\nWhat would I do if they really came?\tQue ferais-je s'ils venaient vraiment ?\nWhat would I do if they really came?\tQue ferais-je si elles venaient vraiment ?\nWhat would the world do without tea?\tQue serait le monde sans thé ?\nWhat's the destination of this ship?\tQuelle est la destination de ce bateau ?\nWhat's the most fun you've ever had?\tQuelle est la plus grosse rigolade que tu aies eue ?\nWhat's the most fun you've ever had?\tQuelle est la plus grosse partie de plaisir que vous ayez eue ?\nWhat's the world's highest mountain?\tQuelle est la montagne la plus haute au monde ?\nWhat's the world's highest mountain?\tQuelle est la montagne la plus haute du monde ?\nWhat's your favorite breakfast food?\tQu’est-ce que vous préférez manger au petit déjeuner ?\nWhat's your favorite breakfast food?\tQu’est-ce que tu préfères manger au petit déjeuner ?\nWhat's your favorite lipstick brand?\tQuelle est ta marque de rouge à lèvres préférée ?\nWhat's your favorite lipstick color?\tQuelle est ta couleur de rouge à lèvres préférée ?\nWhat's your favorite tongue twister?\tQuel est ton virelangue préféré ?\nWhat's your theory on what happened?\tQuelle est ta théorie quant à ce qui s'est passé ?\nWhat's your theory on what happened?\tQuelle est votre théorie quant à ce qui s'est passé ?\nWhat's your theory on what happened?\tQuelle est ta théorie quant à ce qui est survenu ?\nWhat's your theory on what happened?\tQuelle est votre théorie quant à ce qui est survenu ?\nWhat's your theory on what happened?\tQuelle est ta théorie quant à ce qui a eu lieu ?\nWhat's your theory on what happened?\tQuelle est votre théorie quant à ce qui a eu lieu ?\nWhat's your theory on what happened?\tQuelle est ta théorie quant à ce qui est arrivé ?\nWhat's your theory on what happened?\tQuelle est votre théorie quant à ce qui est arrivé ?\nWhatever can go wrong will go wrong.\tTout ce qui peut aller de travers le fera.\nWhatever can go wrong will go wrong.\tTout ce qui peut foirer foirera.\nWhen I grow up, I want to be a king.\tLorsque je serai grand, je veux être roi.\nWhen I heard that, I started to cry.\tQuand j'ai entendu cela, j'ai commencé à pleurer.\nWhen did you begin learning English?\tQuand as-tu commencé à apprendre l'anglais ?\nWhen did you begin learning English?\tQuand avez-vous commencé à apprendre l'anglais ?\nWhen did you begin studying English?\tQuand as-tu commencé à apprendre l'anglais ?\nWhen did you begin studying English?\tQuand avez-vous commencé à apprendre l'anglais ?\nWhen did you begin to learn English?\tQuand as-tu commencé à apprendre l'anglais ?\nWhen did you begin to learn English?\tQuand avez-vous commencé à apprendre l'anglais ?\nWhen did you come back from Germany?\tQuand es-tu rentré d'Allemagne ?\nWhen did you come back from Germany?\tQuand êtes-vous rentrés d'Allemagne ?\nWhen did you start wearing contacts?\tQuand as-tu commencé à porter des lentilles de contact ?\nWhen did you start wearing contacts?\tQuand avez-vous commencé à porter des lentilles de contact ?\nWhen will the new magazine come out?\tQuand le nouveau magazine paraîtra-t-il ?\nWhen will you get through with work?\tQuand en aurez-vous terminé avec le travail ?\nWhen will you get through with work?\tQuand en auras-tu terminé avec le travail ?\nWhen would it be convenient for you?\tQuand est-ce que ça vous arrangera ?\nWhen would it be convenient for you?\tQuand est-ce que ça vous arrange ?\nWhen you love what you do, it shows.\tQuand tu aimes ce que tu fais, ça se voit.\nWhenever I see this, I remember him.\tChaque fois que je vois ça, je me souviens de lui.\nWhere did you find such an ugly hat?\tOù as-tu dégoté un chapeau aussi laid ?\nWhere did you get that orange scarf?\tOù as-tu eu cette écharpe orange ?\nWhere did you get that orange scarf?\tOù est-ce que tu as eu cette écharpe orange ?\nWhere is the entrance to the museum?\tOù se trouve l'entrée du musée ?\nWhere is the nearest police station?\tOù est le poste de police le plus proche ?\nWhere shall we have breakfast today?\tOù prendrons-nous notre petit-déjeuner aujourd'hui ?\nWhere shall we have breakfast today?\tOù petit-déjeunerons-nous aujourd'hui ?\nWhere there's a will, there's a way.\tVouloir c'est pouvoir.\nWhere there's a will, there's a way.\tLà où il y a une volonté, il y a un chemin.\nWherever you go, you'll be welcomed.\tOù que vous alliez, vous serez bienvenu.\nWherever you go, you'll be welcomed.\tPartout où tu iras, tu seras bienvenu.\nWherever you go, you'll be welcomed.\tOù que vous alliez, vous serez bienvenue.\nWherever you go, you'll be welcomed.\tPartout où tu iras, tu seras bienvenue.\nWherever you go, you'll be welcomed.\tOù que vous alliez, vous serez bienvenus.\nWherever you go, you'll be welcomed.\tOù que vous alliez, vous serez bienvenues.\nWhich applications do you like best?\tQuelles applications préférez-vous ?\nWhich applications do you like best?\tQuelles applications préfères-tu ?\nWhich plan do you believe is better?\tQuel est le meilleur plan, selon toi ?\nWhich shoes are you going to put on?\tQuelles chaussures vas-tu mettre ?\nWhich shoes are you going to put on?\tQuelles chaussures allez-vous mettre ?\nWhile reading a book, I fell asleep.\tEn lisant un livre, je me suis endormi.\nWho taught her how to speak English?\tQui lui apprit comment parler anglais ?\nWho taught her how to speak English?\tQui lui a appris à parler l'anglais ?\nWho will take care of your cat then?\tQui va s'occuper de ton chat dans ce cas-là ?\nWho's Tom? Is he your new boyfriend?\tQui est Tom? C'est ton nouveau copain ?\nWho's the composer of this symphony?\tQui est le compositeur de cette symphonie ?\nWho's the girl in a yellow raincoat?\tQui est la fille avec l'imperméable jaune ?\nWhy are we still talking about this?\tPourquoi en parlons-nous encore ?\nWhy are we still talking about this?\tPourquoi parlons-nous encore de ça ?\nWhy are you looking at me like that?\tPourquoi me regardez-vous ainsi ?\nWhy are you looking at me like that?\tPourquoi me regardes-tu ainsi ?\nWhy are you picking a fight with me?\tPourquoi me cherchez-vous querelle ?\nWhy are you picking a fight with me?\tPourquoi me cherches-tu querelle ?\nWhy are you staring at me like that?\tPourquoi me fixes-tu comme ça ?\nWhy are you trying to make me laugh?\tPourquoi essaies-tu de me faire rire ?\nWhy are you trying to make me laugh?\tPourquoi essayez-vous de me faire rire ?\nWhy did you become a police officer?\tPourquoi êtes-vous devenu agent de police ?\nWhy did you go over my head on this?\tPourquoi m'es-tu passé par-dessus pour ça ?\nWhy did you invite Tom to the party?\tPourquoi as-tu invité Tom à la fête ?\nWhy didn't you tell me that earlier?\tPourquoi ne m'as-tu pas dit cela plus tôt ?\nWhy didn't you tell me that earlier?\tPourquoi ne m'avez-vous pas dit cela plus tôt ?\nWhy don't they just come and get us?\tPourquoi ne viennent-ils pas simplement nous arrêter ?\nWhy don't they just come and get us?\tPourquoi ne viennent-elles pas simplement nous prendre ?\nWhy don't we just sit here and talk?\tPourquoi ne nous asseyons-nous pas ici pour parler ?\nWhy don't we start at the beginning?\tPourquoi ne commençons-nous pas par le début ?\nWhy don't we start at the beginning?\tPourquoi ne commençons-nous pas au commencement ?\nWhy don't you play something for me?\tPourquoi ne joues-tu pas quelque chose pour moi ?\nWhy don't you play something for me?\tPourquoi ne jouez-vous pas quelque chose pour moi ?\nWhy don't you play something for me?\tPourquoi ne me joues-tu pas quelque chose ?\nWhy don't you play something for me?\tPourquoi ne me jouez-vous pas quelque chose ?\nWhy don't you sing something for me?\tPourquoi ne chantes-tu pas quelque chose pour moi ?\nWhy don't you sing something for me?\tPourquoi ne chantez-vous pas quelque chose pour moi ?\nWhy don't you sit down for a moment?\tPourquoi ne t'assieds-tu pas un moment ?\nWhy don't you sit down for a moment?\tPourquoi ne vous asseyez-vous pas un moment ?\nWhy don't you take your temperature?\tPourquoi ne prends-tu pas ta température ?\nWhy not try some of that white wine?\tPourquoi ne pas essayer un peu de ce vin blanc ?\nWhy would anyone do that on purpose?\tPourquoi quiconque ferait-il cela à dessein ?\nWhy would anyone do that on purpose?\tPourquoi quiconque le ferait-il exprès ?\nWill there be any food at the party?\tY aura-t-il la moindre nourriture à la fête ?\nWill you give me a ride to my hotel?\tM'accompagneras-tu à mon hôtel ?\nWill you give me a ride to my hotel?\tM'accompagnerez-vous à mon hôtel ?\nWill you give me something to drink?\tMe donnerez-vous quelque chose à boire ?\nWill you glance through this report?\tJetterez-vous un œil sur ce rapport ?\nWill you glance through this report?\tJetteras-tu un œil sur ce rapport ?\nWill you lend your dictionary to me?\tTu me prêtes ton dictionnaire ?\nWill you please check these figures?\tPeux-tu vérifier ces chiffres, s'il te plaît?\nWill you please put the baby to bed?\tVeux-tu mettre le bébé au lit, je te prie ?\nWill you please put the baby to bed?\tVoulez-vous mettre le bébé au lit, je vous prie ?\nWill you teach me how to play chess?\tPourriez-vous m'apprendre à jouer aux échecs ?\nWould you like another piece of pie?\tVoudriez-vous un autre part de tarte ?\nWould you like another piece of pie?\tVoudriez-vous un autre part de tourte ?\nWould you like me to call you a cab?\tVoudrais-tu que je t'appelle un taxi ?\nWould you like me to tell the truth?\tVoulez-vous que je dise la vérité ?\nWould you like me to tell the truth?\tVeux-tu que je dise la vérité ?\nWould you like more mashed potatoes?\tVoudriez-vous davantage de purée de pommes-de-terre ?\nWould you like more mashed potatoes?\tVoudrais-tu davantage de purée de pommes-de-terre ?\nWould you like to have a cup of tea?\tVoulez-vous une tasse de thé ?\nWould you like to have another beer?\tVoudriez-vous une autre bière ?\nWould you like to have another beer?\tVoudrais-tu une autre bière ?\nWould you mind if I went home early?\tVerrais-tu un inconvénient à ce que je rentre tôt à la maison ?\nWould you mind if I went home early?\tVerriez-vous un inconvénient à ce que je rentre tôt chez moi ?\nWould you mind speaking more slowly?\tPourriez-vous parler un peu plus lentement ?\nWould you mind telling me one thing?\tCela te dérangerait-il de me dire un truc ?\nWould you mind telling me one thing?\tCela vous dérangerait-il de me dire un truc ?\nWould you please fill out this form?\tVeuillez, s'il vous plait, remplir ce formulaire ?\nWould you please show me that skirt?\tPourriez-vous me montrer cette jupe, s'il vous plaît ?\nWould you sing us a song in English?\tVoudriez-vous nous chanter une chanson en anglais ?\nWould you sing us a song in English?\tVoudrais-tu nous chanter une chanson en anglais ?\nWould you speak more slowly, please?\tPeux-tu parler un peu plus lentement, s'il te plaît ?\nWouldn't you like to drink some tea?\tNe voulez-vous pas boire un peu de thé ?\nWouldn't you like to drink some tea?\tTu ne voudrais pas boire un peu de thé ?\nWrite with a pen, not with a pencil.\tÉcris avec un stylo, non avec un crayon.\nWriters often refer to a dictionary.\tLes écrivains se réfèrent souvent à un dictionnaire.\nYou and Tom are good friends, right?\tTom et toi êtes de bons amis, non ?\nYou are doing very well. Keep it up.\tTu te débrouilles très bien. Continue.\nYou are going to have to pay for it.\tIl va falloir que vous le payiez.\nYou are responsible for what you do.\tTu es responsable de ce que tu fais.\nYou are responsible for what you do.\tVous êtes responsables de ce que vous faites.\nYou are responsible for what you do.\tVous êtes responsable de ce que vous faites.\nYou can eat lunch here in this room.\tTu peux déjeuner ici dans cette chambre.\nYou can have this watch for nothing.\tVous pouvez avoir cette montre pour rien.\nYou can't be too careful these days.\tOn ne saurait être trop prudent, de nos jours.\nYou can't be too careful these days.\tOn ne saurait être trop prudente, de nos jours.\nYou can't buy it anywhere but there.\tVous ne pouvez l'acheter à d'autre endroit que là.\nYou can't judge a book by its cover.\tOn ne peut pas juger un livre sur sa couverture.\nYou can't just leave me here to die.\tVous ne pouvez pas simplement me laisser mourir ici.\nYou can't just leave me here to die.\tTu ne peux pas simplement me laisser mourir ici.\nYou didn't come here alone, did you?\tVous n'êtes pas venu ici seul, si ?\nYou didn't come here alone, did you?\tVous n'êtes pas venue ici seule, si ?\nYou didn't come here alone, did you?\tTu n'es pas venu ici seul, si ?\nYou didn't come here alone, did you?\tVous n'êtes pas venues ici seules, si ?\nYou didn't come here alone, did you?\tVous n'êtes pas venus ici seuls, si ?\nYou didn't come here alone, did you?\tTu n'es pas venue ici seule, si ?\nYou don't have a lot to say, do you?\tVous n'avez pas grand-chose à dire, non ?\nYou don't have a lot to say, do you?\tTu n'as pas grand-chose à dire, non ?\nYou don't have to buy water, do you?\tIl ne vous faut pas acheter d'eau, si ?\nYou don't have to buy water, do you?\tIl ne te faut pas acheter d'eau, si ?\nYou don't have to do it immediately.\tTu n'as pas besoin de le faire tout de suite.\nYou don't have to do it immediately.\tTu n'es pas obligé de le faire immédiatement.\nYou don't kick a man when he's down.\tOn ne frappe pas un homme à terre.\nYou don't need millions to be happy.\tVous n'avez pas besoin de gagner des millions pour être heureux.\nYou don't need to flatter your boss.\tTu n'as pas besoin de flatter ton patron.\nYou don't need to suffer in silence.\tTu ne dois pas souffrir en silence.\nYou don't realize how lucky you are.\tTu ne connais pas ta chance.\nYou don't think I can do it, do you?\tTu ne penses pas que je puisse le faire, n'est-ce pas ?\nYou don't think I can do it, do you?\tVous ne pensez que je puisse le faire, n'est-ce pas ?\nYou don't want to go down this road.\tTu ne veux pas t'embarquer là-dedans.\nYou got what you wanted, didn't you?\tTu as eu ce que tu voulais, n'est-ce pas ?\nYou got what you wanted, didn't you?\tVous avez eu ce que vous vouliez, n'est-ce pas ?\nYou have overstepped your authority.\tTu as outrepassé ton autorité.\nYou have overstepped your authority.\tVous avez outrepassé votre autorité.\nYou have such beautiful, hazel eyes.\tVous avez de si beaux yeux châtains.\nYou have the right to remain silent.\tVous avez le droit de garder le silence.\nYou have to allow for the boy's age.\tVous devez considérer l'âge du garçon.\nYou have to be home by nine o'clock.\tTu dois rentrer pour 21h00.\nYou have to choose your own destiny.\tIl te faut choisir ton propre destin.\nYou have to choose your own destiny.\tIl te faut choisir ta propre destinée.\nYou have to choose your own destiny.\tIl vous faut choisir votre propre destin.\nYou have to choose your own destiny.\tIl vous faut choisir votre propre destinée.\nYou have to learn how to compromise.\tVous devez apprendre à faire des compromis.\nYou have to learn how to compromise.\tTu dois apprendre à faire des compromis.\nYou have too many irons in the fire.\tVous avez trop de fers au feu.\nYou have too many irons in the fire.\tTu as trop de fers au feu.\nYou like classical music, don't you?\tTu aimes la musique classique, n'est-ce pas ?\nYou may bring whoever wants to come.\tTu peux emmener qui veut venir.\nYou must gather further information.\tVous devez recueillir des informations complémentaires.\nYou must think I'm a complete idiot.\tVous devez penser que je suis un parfait idiot.\nYou must think I'm a complete idiot.\tVous devez penser que je suis une parfaite idiote.\nYou must think I'm a complete idiot.\tTu dois penser que je suis un parfait idiot.\nYou must think I'm a complete idiot.\tTu dois penser que je suis une parfaite idiote.\nYou need a keycard to open the door.\tIl te faut une carte magnétique pour ouvrir la porte.\nYou need a keycard to open the door.\tIl vous faut une carte magnétique pour ouvrir la porte.\nYou need to be here for your family.\tIl faut que vous soyez là pour votre famille.\nYou need to be here for your family.\tIl faut que tu sois là pour ta famille.\nYou need to focus on your strengths.\tIl vous faut vous concentrer sur vos points forts.\nYou need to focus on your strengths.\tIl te faut te concentrer sur tes points forts.\nYou ought to have been more careful.\tTu aurais dû être plus prudent.\nYou ought to have been more careful.\tVous auriez dû faire montre de davantage de prudence.\nYou should acknowledge your failure.\tTu devrais reconnaître ton échec.\nYou should buy an answering machine.\tVous devriez acheter un répondeur.\nYou should have accepted his advice.\tTu aurais dû accepter son conseil.\nYou should have accepted his advice.\tVous aurez dû accepter son conseil.\nYou should have breakfast every day.\tVous devriez prendre un petit-déjeuner tous les jours.\nYou should have breakfast every day.\tTu devrais prendre un petit-déjeuner tous les jours.\nYou should have taken a chance then.\tTu aurais dû saisir la chance, alors.\nYou should have told me that before.\tTu aurais dû me dire ça avant.\nYou should have told me that before.\tVous auriez dû me dire ça avant.\nYou should learn from your mistakes.\tOn devrait apprendre de ses erreurs.\nYou should learn from your mistakes.\tTu devrais apprendre de tes erreurs.\nYou should learn from your mistakes.\tVous devriez apprendre de vos erreurs.\nYou should not give him up for lost.\tVous ne devriez pas le tenir pour perdu.\nYou should not give him up for lost.\tTu ne devrais pas le tenir pour perdu.\nYou should not leave the baby alone.\tTu ne devrais pas laisser le bébé seul.\nYou should think of their religions.\tVous devriez penser à leurs religions.\nYou should turn off your cell phone.\tTu devrais éteindre ton téléphone portable.\nYou should turn off your cell phone.\tVous devriez éteindre votre téléphone portable.\nYou shouldn't laugh at his mistakes.\tVous ne devriez pas rire de ses erreurs.\nYou shouldn't laugh at his mistakes.\tTu ne devrais pas rire de ses erreurs.\nYou still haven't told me who he is.\tTu ne m'as pas encore dit qui il est.\nYou still haven't told me who he is.\tTu ne m'as toujours pas dit qui il est.\nYou still haven't told me who he is.\tVous ne m'avez toujours pas dit qui il est.\nYou still haven't told me who he is.\tVous ne m'avez pas encore dit qui il est.\nYou will soon cease to think of her.\tBientôt tu ne penseras plus à elle.\nYou will soon cease to think of her.\tTu cesseras bientôt de penser à elle.\nYou will wish you had never seen it.\tTu souhaiteras ne jamais l'avoir vu.\nYou will wish you had never seen it.\tVous souhaiterez ne l'avoir jamais vu.\nYou won't believe who came by today.\tTu ne croiras pas qui est venu aujourd'hui.\nYou won't believe who came by today.\tVous ne croirez pas qui est venu aujourd'hui.\nYou'll find the book in the library.\tVous trouverez le livre à la bibliothèque.\nYou're always finding fault with me.\tTu trouves toujours des reproches à me faire.\nYou're comparing apples and oranges!\tTu compares des choux et des carottes !\nYou're going to be very proud of me.\tTu vas être très fier de moi.\nYou're hiding something, aren't you?\tTu me caches quelque chose, toi.\nYou're kind of cute when you're mad.\tTu es assez mignonne quand tu es en colère.\nYou're kind of cute when you're mad.\tVous êtes assez mignonne quand vous êtes en colère.\nYou're kind of cute when you're mad.\tVous êtes assez mignon quand vous êtes en colère.\nYou're kind of cute when you're mad.\tVous êtes assez mignonnes quand vous êtes en colère.\nYou're kind of cute when you're mad.\tVous êtes assez mignons quand vous êtes en colère.\nYou're kind of cute when you're mad.\tTu es assez mignon quand tu es en colère.\nYou're the only one who can do this.\tTu es le seul à pouvoir faire ça.\nYou're the only one who can help me.\tVous êtes le seul à pouvoir m'aider.\nYou're the only one who can help me.\tTu es le seul à pouvoir m'aider.\nYou're the only one who can help me.\tTu es la seule à pouvoir m'aider.\nYou're the only one who can help me.\tVous êtes la seule à pouvoir m'aider.\nYou're the only one who can help me.\tTu es le seul qui puisse m'aider.\nYou're three years younger than Tom.\tTu as trois ans de moins que Tom.\nYou're too clever for your own good.\tVous êtes trop intelligent pour votre sécurité.\nYou've barely said a word all night.\tTu n'as pas décroché un mot de toute la nuit.\nYou've got to take care of yourself.\tIl vous faut prendre soin de vous.\nYou've got to take care of yourself.\tIl te faut prendre soin de toi.\nYou've got to tell Tom how you feel.\tTu dois dire à Tom ce que tu ressens.\nYou've got to tell Tom how you feel.\tVous devez dire à Tom ce que vous ressentez.\nYou've never seen a genuine diamond.\tTu n'as jamais vu un véritable diamant.\nYour advice is always helpful to me.\tVotre conseil m'est toujours utile.\nYour brother wasn't at school today.\tTon frère n'était pas à l'école aujourd'hui.\nYour brother wasn't at school today.\tVotre frère n'était pas à l'école aujourd'hui.\nYour children are very well behaved.\tVos enfants sont très bien élevés.\nYour conduct is absolutely shameful.\tTa conduite est absolument honteuse.\nYour conduct is absolutely shameful.\tVotre conduite est absolument honteuse.\nYour handwriting is similar to mine.\tVotre écriture est semblable à la mienne.\nYour handwriting is similar to mine.\tTon écriture est semblable à la mienne.\nYour name and flight number, please?\tVos nom et numéro de vol, s'il vous plaît ?\nYour name was dropped from the list.\tTon nom a été retiré de la liste.\nYour name was dropped from the list.\tVotre nom a été retiré de la liste.\nYour sudden appearance surprised me.\tTa soudaine apparition m'a étonné.\nYour theory has no scientific basis.\tTa théorie n'a pas de fondement scientifique.\nYour theory has no scientific basis.\tVotre théorie n'a pas de fondement scientifique.\n\"Do you speak German?\" \"No, I don't.\"\t«Parlez-vous l'allemand ?» «Non, je ne le parle pas.»\n\"I'll be back in a minute,\" he added.\t\"Je reviens dans une minute\", ajouta-t-il.\n\"When do you swim?\" \"I swim in July.\"\t« Quand vas-tu nager ? » « En juillet. »\nA calamity was avoided by sheer luck.\tUne calamité a été évitée par pure chance.\nA crowd collected to watch the fight.\tUne foule se massa pour regarder le combat.\nA dollar is equal to a hundred cents.\tUn dollar est égal à cent cents.\nA fire broke out on the second floor.\tUn feu s'est déclaré au premier étage.\nA forest fire broke out in this area.\tUn feu de forêt se déclara dans cette zone.\nA gentleman is always kind to others.\tUn gentleman est toujours prévenant envers les autres gens.\nA gentleman wouldn't do such a thing.\tUn gentleman ne ferait pas une chose pareille.\nA girl drowned in the pond yesterday.\tUne fille s'est noyée dans la mare hier.\nA heavy rain prevented me from going.\tUne forte pluie m'a empêché d'y aller.\nA hideous monster used to live there.\tUn monstre hideux vivait là-bas auparavant.\nA lot of tourists invaded the island.\tUn groupe de touristes a envahi l'île.\nA mile is equal to about 1600 meters.\tUn mile fait environ 1600 mètres.\nA problem shared is a problem halved.\tUn problème partagé est réduit de moitié.\nA river runs down through the valley.\tUne rivière s'écoule dans la vallée.\nA sleeping child looks like an angel.\tUn enfant endormi ressemble à un ange.\nA team is composed of eleven players.\tUne équipe est composée de onze joueurs.\nA truck was careering along the road.\tUn camion roulait à toute vitesse sur la route.\nA wise man would not act in that way.\tUn homme sage n'agirait pas de cette manière.\nA year has passed since he came here.\tUne année est passée depuis qu'il est venu ici.\nAfter lunch we have two more classes.\tAprès le déjeuner, nous avons deux autres classes.\nAfter the meal, I asked for the bill.\tAprès le repas, j'ai demandé l'addition.\nAfter the meal, I asked for the bill.\tAprès le repas, je demandai l'addition.\nAll I want for Christmas is a guitar.\tTout ce que je veux pour Noël, c'est une guitare.\nAll big cities have traffic problems.\tToutes les grandes villes connaissent des problèmes de circulation.\nAll contributions are tax deductible.\tToutes les contributions sont déductibles des impôts.\nAll inventions grow out of necessity.\tToutes les inventions surgissent de la nécessité.\nAll journeys begin with a first step.\tTous les voyages commencent par un premier pas.\nAll of a sudden, a dog began barking.\tTout à coup, un chien se mit à aboyer.\nAll of these meetings are in English.\tL'ensemble de ces réunions sont en anglais.\nAll you have to do is to concentrate.\tTout ce qu'il te faut faire est de te concentrer.\nAllow me to introduce my wife to you.\tPermettez-moi de vous présenter ma femme.\nAlmost all the students like English.\tÀ peu près tous les étudiants aiment l'anglais.\nAlways being honest is no easy thing.\tÊtre toujours honnête n'est pas quelque chose de simple.\nAlways keep your workplace organized.\tGarde toujours ton espace de travail en ordre.\nAm I supposed to believe any of that?\tSuis-je supposé en gober quoi que ce soit ?\nAm I supposed to believe any of that?\tSuis-je supposée en gober quoi que ce soit ?\nAmerica is ahead in space technology.\tL'Amérique est en avance sur la technologie spatiale.\nAn apple a day keeps the doctor away.\tUne pomme par jour tient le docteur au loin.\nAn apple a day keeps the doctor away.\tUne pomme par jour et la santé toujours.\nAn apple a day keeps the doctor away.\tUne pomme par jour éloigne le médecin pour toujours.\nAn earthquake destroyed the building.\tUn tremblement de terre détruisit le bâtiment.\nAn old man sat next to me on the bus.\tUn vieil homme s'est assis à côté de moi dans le bus.\nAny student can answer that question.\tN'importe quel étudiant peut répondre à cette question.\nAnyone can do it as long as they try.\tN'importe qui peut le faire du moment qu'il essaie.\nApes rank above dogs in intelligence.\tLes grands singes ont un niveau d'intelligence supérieur à celui des chiens.\nArabic is written from right to left.\tOn écrit l'arabe de droite à gauche.\nAre all of these people your friends?\tTous ces gens sont-ils vos amis ?\nAre all of these people your friends?\tTous ces gens sont-ils tes amis ?\nAre there enough chairs for everyone?\tY a-t-il assez de chaises pour tout le monde ?\nAre there enough chairs to go around?\tY a-t-il suffisamment de chaises pour tout le monde ?\nAre there many flowers in the garden?\tY a-t-il beaucoup de fleurs dans le jardin ?\nAre we allowed to take pictures here?\tEst-il permis de prendre des photos ici ?\nAre we allowed to take pictures here?\tSommes-nous autorisés à prendre des photos ici ?\nAre you brushing your teeth properly?\tTe brosses-tu bien les dents ?\nAre you brushing your teeth properly?\tTe brosses-tu correctement les dents ?\nAre you going to have dinner at home?\tPrenez-vous votre dîner à la maison ?\nAre you going to the theater tonight?\tAllez-vous au théâtre ce soir ?\nAre you going to the theater tonight?\tVas-tu au théâtre ce soir ?\nAre you interested in Japanese music?\tEst-ce que tu t'intéresses à la musique japonaise ?\nAre you still in love with your wife?\tAimez-vous toujours votre femme ?\nAre you still in love with your wife?\tAimes-tu encore ta femme ?\nAre you still in love with your wife?\tAimez-vous encore votre femme ?\nAre you sure this is the right train?\tEs-tu sûr que c'est le bon train ?\nAre you sure this is the right train?\tÊtes-vous sûr que c'est le bon train ?\nAre you the girl Tom has been dating?\tEs-tu la fille que Tom a fréquentée ?\nAre you thinking about getting a job?\tPenses-tu à obtenir un emploi ?\nArt is not a luxury, but a necessity.\tL'art n'est pas un luxe, mais une nécessité.\nAs far as I know, she is a kind girl.\tD'après ce que je sais c'est une gentille fille.\nAs soon as I got home, I went to bed.\tDès que je fus à la maison, j'allai au lit.\nAs the proverb says, \"Time is money.\"\tComme dit le proverbe, le temps, c'est de l'argent.\nAs the sun rose, the fog disappeared.\tEn se levant, le soleil a dissipé le brouillard.\nAsk at the police station over there.\tDemandez au poste de police là-bas.\nAt first, I couldn't play the guitar.\tAu début, je n'arrivais pas à jouer de la guitare.\nAt last, I caught up with my friends.\tEnfin, je rattrapai mes amis.\nAt last, I caught up with my friends.\tEnfin, j'ai rattrapé mes amis.\nAt last, I caught up with my friends.\tEnfin, je rattrapai mes amies.\nAt last, I caught up with my friends.\tEnfin, j'ai rattrapé mes amies.\nAt least thirty students were absent.\tAu moins trente étudiants étaient absents.\nAt times I feel like quitting my job.\tÀ certains moments, j'ai envie de plaquer ce boulot.\nAt times I feel like quitting my job.\tParfois, j'ai envie de quitter ce travail.\nBe careful or you'll strip the gears.\tFais gaffe ou tu vas abîmer la boîte de vitesse !\nBe careful or you'll strip the gears.\tFaites gaffe ou vous allez abîmer la boîte de vitesse !\nBe on your guard against pickpockets.\tSois sur tes gardes quant aux pickpockets.\nBe on your guard against pickpockets.\tSoyez attentif aux pickpockets.\nBe on your guard against pickpockets.\tSoyez attentif aux voleurs à la tire.\nBe on your guard against pickpockets.\tSoyez attentifs aux voleurs à la tire.\nBe on your guard against pickpockets.\tSoyez attentive aux voleurs à la tire.\nBe on your guard against pickpockets.\tSoyez attentives aux voleurs à la tire.\nBeing handsome also has its downside.\tÊtre beau a aussi son revers.\nBeing very tired, I soon fell asleep.\tÉtant très fatigué, je m'endormis bientôt.\nBeing very tired, I soon fell asleep.\tÉtant très fatigué, je me suis bientôt endormi.\nBeing very tired, I soon fell asleep.\tÉtant très fatiguée, je me suis bientôt endormie.\nBeing very tired, I soon fell asleep.\tÉtant très fatiguée, je m'endormis bientôt.\nBetter to err on the side of caution.\tAutant pécher par excès de prudence.\nBirds are natural enemies of insects.\tLes oiseaux sont les ennemis naturels des insectes.\nBring as many boxes as you can carry.\tPrends autant de boîtes que tu peux porter.\nBrush your teeth before going to bed.\tLave-toi les dents avant d'aller te coucher !\nBulgarian is very similar to Russian.\tLe bulgare est très similaire au russe.\nBusiness expenses are tax-deductible.\tLes dépenses d'affaires sont déductibles des impôts.\nButter and cheese are made from milk.\tLe beurre et le fromage sont faits avec du lait.\nBuying a new TV won't make you happy.\tAcheter une nouvelle télé ne vous rendra pas heureux.\nBuying a new TV won't make you happy.\tAcheter une nouvelle télé ne vous rendra pas heureuse.\nBuying a new TV won't make you happy.\tAcheter une nouvelle télé ne vous rendra pas heureuses.\nBuying a new TV won't make you happy.\tAcheter une nouvelle télé ne te rendra pas heureux.\nBuying a new TV won't make you happy.\tAcheter une nouvelle télé ne te rendra pas heureuse.\nBuying a new TV won't make you happy.\tFaire l'acquisition d'une nouvelle télé ne vous rendra pas heureux.\nBuying a new TV won't make you happy.\tFaire l'acquisition d'une nouvelle télé ne vous rendra pas heureuse.\nBuying a new TV won't make you happy.\tFaire l'acquisition d'une nouvelle télé ne vous rendra pas heureuses.\nBuying a new TV won't make you happy.\tFaire l'acquisition d'une nouvelle télé ne te rendra pas heureux.\nBuying a new TV won't make you happy.\tFaire l'acquisition d'une nouvelle télé ne te rendra pas heureuse.\nBy hard work we can achieve anything.\tSi l'on s'en donne la peine, on peut accomplir n'importe quoi.\nBy the way, have you seen him lately?\tÀ ce propos, l'as-tu vu dernièrement ?\nCan I borrow one for about two weeks?\tPuis-je en emprunter un pour deux semaines environ ?\nCan I talk to you alone for a second?\tPuis-je vous parler seul à seul une seconde ?\nCan I talk to you alone for a second?\tPuis-je te parler seul à seul une seconde ?\nCan I tell you something about women?\tPuis-je vous dire quelque chose, à propos des femmes ?\nCan I tell you something about women?\tPuis-je te dire quelque chose, à propos des femmes ?\nCan they give you something for that?\tPeuvent-ils vous en donner quelque chose ?\nCan they give you something for that?\tPeuvent-elles vous en donner quelque chose ?\nCan they give you something for that?\tPeut-on vous en donner quelque chose ?\nCan you complete the job in two days?\tPeux-tu terminer le travail en deux jours ?\nCan you complete the job in two days?\tPouvez-vous terminer le travail en deux jours ?\nCan you direct me to the post office?\tPouvez-vous m'indiquer la direction du bureau de poste.\nCan you play any musical instruments?\tPouvez-vous jouer d'un instrument de musique ?\nCan you please pass me the newspaper?\tPouvez-vous me passez le journal, je vous prie ?\nCan you please translate this for me?\tPouvez-vous, s'il vous plaît, traduire ceci pour moi ?\nCan you please translate this for me?\tPeux-tu, s'il te plaît, traduire ceci pour moi ?\nCan you teach me how to ride a horse?\tPouvez-vous m'apprendre à monter à cheval ?\nCan you tell me what this word means?\tPeux-tu me dire ce que signifie ce mot ?\nCan you tell me what this word means?\tPouvez-vous me dire ce que signifie ce mot ?\nCan you tell us what happened to you?\tPouvez-vous nous dire ce qui vous est arrivé ?\nCan you tell us what happened to you?\tPeux-tu nous dire ce qui t'est arrivé ?\nCan you validate this parking ticket?\tPouvez-vous composter ce ticket de stationnement ?\nCan you will yourself to fall asleep?\tEst-ce que tu peux te forcer à dormir ?\nCars arrived there one after another.\tLes voitures arrivèrent l'une après l'autre.\nCars arrived there one after another.\tLes voitures sont arrivées là-bas les unes après les autres.\nCats can climb trees, but dogs can't.\tLes chats peuvent monter aux arbres, mais pas les chiens.\nChildren are prohibited from smoking.\tIl est interdit que les enfants fument.\nChildren play in this park every day.\tLes enfants jouent dans le parc tous les jours.\nChildren should drink milk every day.\tLes enfants devraient boire du lait tous les jours.\nChina is the biggest country in Asia.\tLa Chine est le plus grand pays d'Asie.\nChina is the largest country in Asia.\tLa Chine est le plus grand pays d'Asie.\nClassical music is not my cup of tea.\tLa musique classique n'est pas ma tasse de thé.\nClose the window before going to bed.\tFermez la fenêtre avant d'aller vous coucher.\nClose the window before going to bed.\tFerme la fenêtre, avant d'aller au lit !\nCoffee will be served after the meal.\tLe café sera servi après le repas.\nCoffee, please, with cream and sugar.\tDu café lait et sucre, s'il vous plaît !\nCoffee, please, with cream and sugar.\tUn café avec du sucre et de la crème s'il vous plait.\nCome on, Tom, you're making me blush.\tVoyons, Tom, tu me fais rougir.\nCompared with yours, my car is small.\tComparée à ta voiture, la mienne est petite.\nConcentration is a very simple thing.\tLa concentration est une chose très simple.\nContact me if you have any questions.\tContactez-moi si vous avez des questions.\nCould I have one more coffee, please?\tPuis-je avoir un café supplémentaire, je vous prie ?\nCould I please have a glass of water?\tPourrais-je avoir un verre d'eau, s'il vous plaît ?\nCould I talk to the two of you alone?\tPourrais-je vous parler à tous deux en particulier ?\nCould I talk to the two of you alone?\tPourrais-je vous parler à toutes deux en particulier ?\nCould you come to tomorrow's meeting?\tPourriez-vous venir à la réunion de demain ?\nCould you drop me off at the library?\tPeux-tu me déposer à la bibliothèque ?\nCould you drop me off at the library?\tPouvez-vous me déposer à la bibliothèque ?\nCould you give me a ball-park figure?\tPourrais-tu me donner un chiffre approximatif ?\nCould you give me a ball-park figure?\tPourriez-vous me donner un chiffre approximatif ?\nCould you please have a look at this?\tPourriez-vous, je vous prie, jeter un œil à ceci ?\nCould you please have a look at this?\tPourrais-tu, je te prie, jeter un œil à ceci ?\nCould you please tell me who you are?\tPourriez-vous me dire qui vous êtes, s'il vous plait ?\nCould you please tell me who you are?\tPourrais-tu me dire qui tu es, s'il te plait ?\nCould you speak up? I can't hear you.\tPouvez-vous parler plus fort je ne peux pas vous entendre.\nCould you turn the heat down, please?\tPourriez-vous baisser le gaz, s'il vous plaît ?\nCould you turn the heat down, please?\tPeux-tu baisser le gaz, s'il te plaît ?\nCucumbers are related to watermelons.\tLes concombres sont apparentés aux melons.\nCustomers stopped coming to our shop.\tLes clients cessèrent de venir dans notre boutique.\nD.H. Lawrence is a novelist and poet.\tD.H. Lawrence est un romancier et un poète.\nDangerous driving should be punished.\tLes conduites dangereuses devraient être punies.\nDespair drove him to attempt suicide.\tLe désespoir l'a conduit à faire une tentative de suicide.\nDid I tell you I think you're pretty?\tT'ai-je dit que je pense que tu es mignonne ?\nDid you come here by train or by bus?\tTu es venu en train ou en bus ?\nDid you get fired from your last job?\tT'es-tu fait virer de ton dernier emploi ?\nDid you get fired from your last job?\tVous êtes-vous fait virer de votre dernier emploi ?\nDid you get fired from your last job?\tT'es-tu fait licencier de ton dernier emploi ?\nDid you get fired from your last job?\tVous êtes-vous fait licencier de votre dernier emploi ?\nDid you get fired from your last job?\tVous êtes-vous fait licencier de votre dernier poste ?\nDid you get fired from your last job?\tT'es-tu fait licencier de ton dernier poste ?\nDid you have a good night last night?\tAs-tu bien dormi cette nuit ?\nDid you have a piano lesson that day?\tAviez-vous une leçon de piano ce jour-là ?\nDid you lend any money to my brother?\tAs-tu prêté de l'argent à mon frère ?\nDid you lend any money to my brother?\tAs-tu prêté le moindre argent à mon frère ?\nDid you recognize your old classmate?\tAs-tu reconnu ton vieux camarade de classe ?\nDid you recognize your old classmate?\tAvez-vous reconnu votre vieux camarade de classe ?\nDid your uncle let you drive his car?\tTon oncle t'a-t-il laissé conduire sa voiture ?\nDo I have to dial the area code, too?\tDois-je également composer l'indicatif ?\nDo a lot of people live in your town?\tEst-ce que la ville où vous habitez est très peuplée ?\nDo this work by tomorrow if possible.\tFaites ce travail avant demain si possible.\nDo you come to this restaurant often?\tVous venez souvent dans ce restaurant ?\nDo you have a license to fly a plane?\tDisposez-vous d'une permis de pilotage ?\nDo you have any idea what time it is?\tAs-tu la moindre idée de l'heure qu'il est ?\nDo you have any non-alcoholic drinks?\tAvez-vous des boissons sans alcool ?\nDo you have plans for tomorrow night?\tTu as quelque chose de prévu demain soir ?\nDo you know if she can speak English?\tSais-tu si elle sait parler l'anglais ?\nDo you know who painted this picture?\tSais-tu qui a peint ce tableau ?\nDo you know who painted this picture?\tSavez-vous qui a peint ce tableau ?\nDo you know why they stopped talking?\tSais-tu pourquoi ils se sont arrêtés de parler ?\nDo you mind if I ask a few questions?\tVoyez-vous un inconvénient à ce que je pose quelques questions ?\nDo you mind if I take off my sweater?\tCela vous dérange-t-il si je retire mon chandail ?\nDo you mind if I take off my sweater?\tCela vous dérange-t-il que je retire mon chandail ?\nDo you mind if I take off my sweater?\tCela te dérange-t-il si je retire mon chandail ?\nDo you mind if I take off my sweater?\tCela te dérange-t-il que je retire mon chandail ?\nDo you prefer white wine or red wine?\tPréfères-tu le vin blanc ou le vin rouge ?\nDo you really think Tom will help us?\tPenses-tu vraiment que Tom nous aidera ?\nDo you really think Tom will help us?\tPensez-vous vraiment que Tom nous aidera ?\nDo you really want to know the truth?\tVoulez-vous vraiment connaître la vérité ?\nDo you really want to know the truth?\tVeux-tu vraiment connaître la vérité ?\nDo you remember his telephone number?\tTu te souviens de son numéro de téléphone ?\nDo you remember your passport number?\tVous rappelez-vous votre numéro de passeport ?\nDo you see that ship near the island?\tVois-tu ce bateau près de l'île ?\nDo you spend much time writing email?\tPassez-vous beaucoup de temps à rédiger des courriels ?\nDo you spend much time writing email?\tPasses-tu beaucoup de temps à rédiger des courriels ?\nDo you think Tom knows what happened?\tPenses-tu que Tom sait ce qu'il s'est passé ?\nDo you think Tom knows what happened?\tPensez-vous que Tom sait ce qu'il s'est passé ?\nDo you think he resembles his father?\tCrois-tu qu'il ressemble à son père ?\nDo you think it was Tom who did that?\tPenses-tu que c'est Tom qui a fait ça ?\nDo you think they're coming after us?\tPenses-tu qu'ils viennent pour nous ?\nDo you think they're coming after us?\tPensez-vous qu'ils viennent pour nous ?\nDo you think we'll have good weather?\tEst-ce que tu penses que nous aurons du beau temps ?\nDo you think we'll have good weather?\tPenses-tu que nous aurons beau temps ?\nDo you think you'll be here tomorrow?\tPenses-tu que tu seras là demain ?\nDo you think you'll be here tomorrow?\tPensez-vous que vous serez là demain ?\nDo you think you'll be here tomorrow?\tPenses-tu être là demain ?\nDo you think you'll be here tomorrow?\tPensez-vous être là demain ?\nDo you want me to leave the light on?\tVeux-tu que je laisse la lumière ?\nDo you want me to leave the light on?\tVoulez-vous que je laisse la lumière ?\nDo you want me to rub your shoulders?\tVeux-tu que je te masse les épaules ?\nDo you want me to rub your shoulders?\tVoulez-vous que je vous masse les épaules ?\nDo you want me to spy on Tom for you?\tVeux-tu que j'espionne Tom pour toi ?\nDo you want me to spy on Tom for you?\tVoulez-vous que j'espionne Tom pour vous ?\nDo you want to ask me some questions?\tVeux-tu me poser des questions ?\nDo you want to ask me some questions?\tVoulez-vous me poser des questions ?\nDo your homework before you watch TV.\tFais tes devoirs avant de regarder la télévision.\nDo your homework before you watch TV.\tFaites vos devoirs avant de regarder la télévision.\nDoes anyone have any other questions?\tQui que ce soit a-t-il de quelconques autres questions ?\nDoes he know how she feels about him?\tSait-il ce qu'elle éprouve à son égard ?\nDoes this mean what I think it means?\tEst-ce que ceci signifie ce que je pense que ça signifie ?\nDoes this mean what I think it means?\tCeci signifie-t-il ce que je pense que ça signifie ?\nDoesn't it sometimes just get to you?\tEst-ce que ça ne vous affecte simplement pas, parfois ?\nDoesn't it sometimes just get to you?\tEst-ce que ça ne t'affecte simplement pas, parfois ?\nDoesn't it sometimes just get to you?\tCela ne t'affecte-t-il simplement pas, parfois ?\nDoesn't it sometimes just get to you?\tCela ne vous affecte-t-il simplement pas, parfois ?\nDon't be afraid of seeing the doctor.\tN'aie pas peur de consulter un médecin.\nDon't be afraid of seeing the doctor.\tN'ayez pas peur de consulter un médecin.\nDon't be afraid of seeing the doctor.\tN'aie pas peur de voir un médecin.\nDon't be afraid to get your feet wet.\tN'aie pas peur de te mouiller les pieds.\nDon't breathe a word of it to anyone.\tN'en soufflez mot à quiconque !\nDon't carry more money than you need.\tN'emportez pas plus d'argent que nécessaire.\nDon't confuse Austria with Australia.\tNe confondez pas Autriche et Australie.\nDon't forget to take out the garbage.\tN'oublie pas de sortir les ordures !\nDon't forget to take out the garbage.\tN'oubliez pas de sortir les ordures !\nDon't forget to take your medication.\tN'oublie pas de prendre tes médicaments.\nDon't get involved with those people.\tNe t'implique pas avec ces gens.\nDon't interrupt me while I'm talking.\tNe m'interrompez pas quand je parle.\nDon't keep me waiting here like this.\tNe me fais pas attendre ici comme ça.\nDon't let them tell you you're crazy.\tNe les laissez pas vous dire que vous êtes fou.\nDon't let them tell you you're crazy.\tNe les laissez pas vous dire que vous êtes folles.\nDon't let them tell you you're crazy.\tNe les laissez pas vous dire que vous êtes fous.\nDon't let them tell you you're crazy.\tNe les laissez pas vous dire que vous êtes folle.\nDon't let them tell you you're crazy.\tNe les laisse pas te dire que tu es fou.\nDon't let them tell you you're crazy.\tNe les laisse pas te dire que tu es folle.\nDon't look a gift horse in the mouth.\tA cheval donné on ne regarde pas les dents.\nDon't open your umbrella in the hall.\tN'ouvrez pas votre parapluie dans le hall.\nDon't put anything on top of the box.\tNe mettez rien sur cette boîte, s'il vous plaît.\nDon't put anything on top of the box.\tNe placez rien sur cette boîte, s'il vous plaît.\nDon't take his remarks too literally.\tNe prends pas ses remarques trop au pied de la lettre.\nDon't take it seriously. It's a joke.\tNe le prends pas sérieusement. C'est une blague.\nDon't try to do two things at a time.\tN'essaie pas de faire deux choses à la fois.\nDon't try to do two things at a time.\tN'essaie pas de faire deux choses en même temps.\nDon't worry about such a silly thing.\tNe t'inquiète pas d'une chose aussi bête.\nDon't worry. Everything will be fine.\tNe vous faites pas de souci ! Tout ira bien.\nDon't worry. Everything will be fine.\tNe te fais pas de souci ! Tout ira bien.\nDon't worry. They will be supervised.\tNe t'en fais pas. Ils seront supervisés.\nDon't worry. They will be supervised.\tNe t'en fais pas. Elles seront supervisées.\nDon't worry. They will be supervised.\tNe vous en faites pas. Ils seront supervisés.\nDon't worry. They will be supervised.\tNe vous en faites pas. Elles seront supervisées.\nDon't worry. This won't happen again.\tNe vous faites pas de souci ! Ça n'arrivera plus.\nDon't worry. This won't happen again.\tNe te fais pas de souci ! Ça n'arrivera plus.\nDon't you have anything better to do?\tN'avez-vous rien de mieux à faire ?\nDon't you know how beautiful you are?\tNe sais-tu pas comme tu es belle ?\nDon't you know how beautiful you are?\tNe savez-vous pas comme vous êtes belle ?\nDon't you think I know my own father?\tNe penses-tu pas que je connaisse mon propre père ?\nDon't you think I know my own father?\tNe pensez-vous pas que je connaisse mon propre père ?\nDrunken driving is a serious problem.\tLa conduite sous l'influence de l'alcool est un grave problème.\nEat more, or you won't gain strength.\tMange davantage, ou tu ne te renforceras pas.\nEating too much may lead to sickness.\tTrop manger peut rendre malade.\nEither you or I must go in his place.\tVous ou moi devons y aller à sa place.\nEnglish cannot be mastered overnight.\tOn ne peut pas maîtriser l'anglais du jour au lendemain.\nEnglish is an international language.\tL'anglais est une langue internationale.\nEnglish is spoken all over the world.\tL'anglais est parlé partout dans le monde.\nEven without makeup, she's very cute.\tMême sans maquillage, elle est très mignonne.\nEven without makeup, she's very cute.\tMême sans maquillage elle est super mignonne.\nEvery student was asked one question.\tOn a posé à chaque élève une question.\nEvery student was asked one question.\tOn posa à chaque élève une question.\nEverybody in the audience sang along.\tTous les membres de l'assistance chantèrent en chœur.\nEverybody in the world desires peace.\tLe monde entier désire la paix.\nEverybody makes mistakes, don't they?\tTout le monde commet des erreurs, pas vrai ?\nEverybody says I look like my father.\tTout le monde dit que je ressemble à mon père.\nEverybody wants to live a happy life.\tTout le monde veut vivre une vie heureuse.\nEveryone got something for Christmas.\tTout le monde a eu quelque chose pour Noël.\nEveryone got something for Christmas.\tTout le monde eut quelque chose pour Noël.\nEverything I own is in this suitcase.\tTous ce que je possède est dans cette valise.\nEverything will work out on schedule.\tTout fonctionnera selon l'horaire.\nExcuse me, but I can barely hear you.\tExcusez-moi, mais vous êtes difficilement audible.\nExcuse me, but may I open the window?\tExcusez-moi, mais puis-je ouvrir la fenêtre ?\nExcuse me, but may I open the window?\tVeuillez m'excuser mais puis-je ouvrir la fenêtre ?\nExcuse me, but may I open the window?\tJe te prie de m'excuser mais puis-je ouvrir la fenêtre ?\nFather is out, but Mother is at home.\tPère est sorti, mais Mère est à la maison.\nFeminine logic is not always logical.\tLa logique féminine n'est pas toujours logique.\nFew politicians admit their mistakes.\tPeu de politiciens admettent leurs erreurs.\nFirst, let's talk about what Tom did.\tPremièrement, parlons de ce que Tom a fait.\nFlowers die if they don't have water.\tLes fleurs meurent si elles n'ont pas d'eau.\nFor dinner, we went back to my place.\tPour dîner, nous retournâmes chez moi.\nFor further information, see page 16.\tPour plus d'information voyez page numéro 16.\nFor further information, see page 16.\tPour plus d'information reportez-vous à la page 16.\nFor further information, see page 16.\tPour plus d'information reportez-vous en page 16.\nForeigners often feel unwelcome here.\tLes étrangers se sentent souvent de trop ici.\nFrench was the language of diplomacy.\tLe français était la langue de la diplomatie.\nGenerally, men are taller than women.\tEn général, les hommes sont plus grands que les femmes.\nGo early in order to get a good seat.\tPars tôt pour avoir une bonne place.\nGod created the heaven and the earth.\tDieu créa le ciel et la terre.\nGod knows we did everything we could.\tDieu sait que nous avons fait tout ce que nous pouvions.\nHand in your homework by next Monday.\tRemettez vos devoirs pour lundi prochain.\nHand in your homework by next Monday.\tRemettez votre devoir pour lundi prochain !\nHand in your homework by next Monday.\tRemets ton devoir pour lundi prochain !\nHave you already completed this task?\tAs-tu déjà accompli cette tâche ?\nHave you been told about the problem?\tT'a-t-on parlé du problème ?\nHave you been told about the problem?\tVous a-t-on parlé du problème ?\nHave you been working there for long?\tCela fait-il longtemps que vous travailler là-bas ?\nHave you been working there for long?\tCela fait-il longtemps que tu travailles là-bas ?\nHave you even heard a word I've said?\tAs-tu entendu le moindre mot de ce que j'ai dit ?\nHave you even heard a word I've said?\tAvez-vous entendu le moindre mot de ce que j'ai dit ?\nHave you finished reading that novel?\tAs-tu fini de lire ce roman ?\nHave you noticed anything suspicious?\tAvez-vous remarqué quoi que ce soit de suspect ?\nHave you seen Tom's latest invention?\tAs-tu vu la toute dernière invention de Tom?\nHave you seen the uncensored version?\tAs-tu vu la version non approuvée ?\nHave you seen the uncensored version?\tAvez-vous vu la version non approuvée ?\nHave you seen the uncensored version?\tAs-tu vu la version non censurée ?\nHave you seen the uncensored version?\tAvez-vous vu la version non censurée ?\nHave you solved all the problems yet?\tAs-tu déjà résolu tous les problèmes ?\nHave you written in your diary today?\tAvez-vous écrit dans votre journal intime aujourd'hui?\nHave your paper on my desk by Monday.\tJe veux ton papier sur mon bureau d'ici lundi.\nHave your paper on my desk by Monday.\tJe veux votre papier sur mon bureau d'ici lundi.\nHe accused her of having lied to him.\tIl l'accusa de lui avoir menti.\nHe acquired French when he was young.\tIl a appris le français dans sa jeunesse.\nHe admonished his son for being lazy.\tIl sermonna son fils pour sa paresse.\nHe always values his wife's opinions.\tIl donne toujours une grande valeur à l'opinion de sa femme.\nHe attends the same school that I do.\tIl va à la même école que moi.\nHe believed that the earth was round.\tIl croyait que la Terre était ronde.\nHe blamed others for his own failure.\tIl accusa les autres de son propre échec.\nHe called out the name of the winner.\tIl prononça le nom du gagnant.\nHe came to Tokyo at the age of three.\tIl est arrivé à Tokyo à trois ans.\nHe came to see me in a different way.\tIl en vint à me considérer différemment.\nHe can play both tennis and baseball.\tIl peut jouer à la fois au tennis et au baseball.\nHe can speak Thai as well as English.\tIl parle aussi bien thai qu'anglais.\nHe carried the suitcases to our room.\tIl a porté nos valises à notre chambre.\nHe changed the topic of conversation.\tIl a changé de sujet de conversation.\nHe committed one crime after another.\tIl commit crime après crime.\nHe committed one crime after another.\tIl commit crime sur crime.\nHe compared his car to the new model.\tIl a comparé sa voiture avec une neuve.\nHe couldn't come because he was sick.\tIl ne pouvait pas venir parce qu'il était malade.\nHe couldn't have put it more plainly.\tIl n'aurait pas pu le dire plus clairement.\nHe crossed the river in a small boat.\tIl a traversé la rivière dans un petit bateau.\nHe decided to submit his resignation.\tIl a décidé de soumettre sa démission.\nHe did it not for me but for himself.\tIl ne l'a pas fait pour moi, mais pour lui-même.\nHe did what he promised to do for me.\tIl fit ce qu'il promit de faire pour moi.\nHe did what he promised to do for me.\tIl a fait ce qu'il a promis de faire pour moi.\nHe died before the ambulance arrived.\tIl mourut avant que l'ambulance n'arrive.\nHe died before the ambulance arrived.\tIl est décédé avant que l'ambulance n'arrive.\nHe died before the ambulance arrived.\tIl décéda avant que l'ambulance n'arrive.\nHe died before the ambulance arrived.\tIl est mort avant que l'ambulance n'arrive.\nHe does not have anyone to play with.\tIl n’a personne avec qui jouer.\nHe doesn't look himself this morning.\tIl n'est pas lui-même ce matin.\nHe elbowed his way through the crowd.\tIl joua des coudes pour se frayer un passage au milieu de la foule\nHe excelled in music even as a child.\tDepuis tout petit, il est doué pour la musique.\nHe fell in love with a younger woman.\tIl tomba amoureux d'une femme plus jeune.\nHe fell in love with a younger woman.\tIl est tombé amoureux d'un femme plus jeune.\nHe fell in love with his best friend.\tIl est tombé amoureux de son meilleur ami.\nHe fell in love with his best friend.\tIl tomba amoureux de son meilleur ami.\nHe fell in love with his best friend.\tIl est tombé amoureux de sa meilleure amie.\nHe fell in love with his best friend.\tIl tomba amoureux de sa meilleure amie.\nHe felt in his pocket for his wallet.\tIl plongea la main dans sa poche pour prendre son portefeuille.\nHe finally decided to propose to her.\tIl se décida enfin à lui faire une demande en mariage.\nHe finds fault with everything I say.\tIl critique tout ce que je dis.\nHe finds faults with everything I do.\tIl trouve des fautes dans tout ce que je fais.\nHe finds pleasure in watching people.\tIl trouve du plaisir à regarder les gens.\nHe finished it as quick as lightning.\tIl l'a fini en un éclair.\nHe forgot to give back my dictionary.\tIl a oublié de rendre mon dictionnaire.\nHe gave a tip as a sign of gratitude.\tIl donna un pourboire en signe de gratitude.\nHe gave his blood to help his sister.\tIl a donné son sang pour aider sa sœur.\nHe goes to mass every Sunday morning.\tIl va à la messe tous les dimanches matin.\nHe goes to the library to read books.\tIl va à la bibliothèque pour lire des livres.\nHe got injured in a traffic accident.\tIl a été blessé dans un accident de circulation.\nHe had an accident and broke his leg.\tIl a eu un accident et s’est cassé la jambe.\nHe had his secretary type the report.\tIl fit taper le rapport par sa secrétaire.\nHe had his secretary type the report.\tIl fit taper le rapport par son secrétaire.\nHe had three sons who became lawyers.\tIl avait trois fils qui devinrent avocats.\nHe has a basket full of strawberries.\tIl a un panier rempli de fraises.\nHe has a hard time remembering names.\tIl n'est pas doué pour retenir les noms.\nHe has already finished his homework.\tIl a déjà fait ses devoirs.\nHe has been on a diet for two months.\tIl suit un régime depuis 2 mois.\nHe has brought shame upon his family.\tIl a couvert sa famille de honte.\nHe has good reason to get very angry.\tIl a de bonnes raisons d'être très en colère.\nHe headed for the door at full speed.\tIl courut vers la porte à toute vitesse.\nHe invented an excuse for being late.\tIl inventa une excuse pour son retard.\nHe invested a lot of money in stocks.\tIl a investi beaucoup d'argent en actions.\nHe is absorbed in the study of Latin.\tIl est plongé dans les cours de latin.\nHe is an authority on the humanities.\tC'est une autorité en matière d'humanités.\nHe is bigger than all the other boys.\tIl est plus grand que tous les autres garçons.\nHe is by far the wisest of the three.\tIl est de loin le plus sage des trois.\nHe is familiar with Japanese culture.\tIl est familier de la culture japonaise.\nHe is leaving for New York next week.\tIl part pour New York la semaine prochaine.\nHe is making preparations for a trip.\tIl fait les préparatifs pour un voyage.\nHe is not the man that he used to be.\tIl n'est plus le même homme.\nHe is proud of his father being rich.\tIl est fier que son père soit riche.\nHe is saving in order to buy a house.\tIl économise pour acheter une maison.\nHe is saving money for a trip abroad.\tIl économise de l'argent pour un voyage à l'étranger.\nHe is used to that type of situation.\tIl a l'habitude de ce genre de situation.\nHe is used to walking long distances.\tIl est habitué à marcher sur de longues distances.\nHe is very particular about his food.\tIl est très difficile en ce qui concerne sa nourriture.\nHe is what is called a man of action.\tIl est ce qu'on appelle un homme d'action.\nHe is younger than me by three years.\tIl est trois ans plus jeune que moi.\nHe keeps all his savings in the bank.\tIl conserve toutes ses économies à la banque.\nHe knows a lot about foreign affairs.\tIl sait beaucoup de choses en matière d'affaires étrangères.\nHe left Japan at the end of the year.\tIl a quitté le Japon à la fin de l'année.\nHe left his daughter a great fortune.\tIl laissa à sa fille une grande fortune.\nHe left his wife an enormous fortune.\tIl a laissé une énorme fortune à sa femme.\nHe listened with his ear to the door.\tIl écouta l'oreille collée à la porte.\nHe lives as if he were a millionaire.\tIl vit comme s'il était millionnaire.\nHe lives in the western part of town.\tIl vit à l'ouest de la ville.\nHe looked as if he knew all about it.\tIl avait l'air de tout connaître du sujet.\nHe lost himself quickly in the crowd.\tIl s'est rapidement fondu dans la foule.\nHe made the company what it is today.\tIl a fait de l'entreprise ce qu'elle est aujourd'hui.\nHe makes mistakes like everyone else.\tIl commet des erreurs, comme tous les autres.\nHe meets his girlfriend on Saturdays.\tIl rencontre sa petite amie le samedi.\nHe missed the last train by a minute.\tIl rata son train d'une minute.\nHe mistook me for my younger brother.\tIl m'a confondu avec mon petit frère.\nHe never appears before nine o'clock.\tIl n'arrive jamais avant neuf heures.\nHe often eats out on Saturday nights.\tIl mange souvent à l'extérieur les samedis soirs.\nHe passed his property on to his son.\tIl passa son bien à son fils.\nHe played a key role in the movement.\tIl a joué un rôle clé dans le mouvement.\nHe presented an argument for the war.\tIl présenta un argument en faveur de la guerre.\nHe prided himself on his punctuality.\tIl faisait de sa ponctualité une fierté.\nHe promptly coped with the situation.\tIl a promptement fait face à la situation.\nHe pushed her into the swimming pool.\tIl l'a poussée dans la piscine.\nHe put a hand gently on her shoulder.\tIl posa la main gentiment sur son épaule.\nHe puts aside some money every month.\tIl met quelque argent de côté tous les mois.\nHe puts ten dollars aside every week.\tIl met dix dollars de côté chaque semaine.\nHe ran at the sight of the policeman.\tIl s'enfuit dès qu'il vit le policier.\nHe ran away so he wouldn't be caught.\tIl prit la fuite, pour ne pas être arrêté.\nHe ran away so he wouldn't be caught.\tIl prit la fuite, pour ne pas être pris.\nHe ran away so he wouldn't be caught.\tIl a pris la fuite, pour ne pas être arrêté.\nHe ran away so he wouldn't be caught.\tIl a pris la fuite, pour ne pas être pris.\nHe ran so he would get there on time.\tIl courut afin d'y parvenir à temps.\nHe ran so he would get there on time.\tIl a couru afin d'y parvenir à temps.\nHe ran toward me as fast as he could.\tIl courut vers moi du plus vite qu'il put.\nHe recommended this dictionary to me.\tIl m'a conseillé ce dictionnaire.\nHe returned home by way of Hong Kong.\tIl rentra à la maison en passant par Hong Kong.\nHe said he had been to Hawaii before.\tIl a dit qu'il a déjà été à Hawaii.\nHe said he would see me the next day.\tIl a dit qu'il me verrait le jour suivant.\nHe said that he would call you later.\tIl a dit qu'il t'appellerait plus tard.\nHe says that he enjoyed it very much.\tIl dit qu'il y a trouvé beaucoup de plaisir.\nHe says that he enjoyed it very much.\tIl dit qu'il y a pris beaucoup de plaisir.\nHe says that he enjoyed it very much.\tIl dit qu'il y a pris beaucoup plaisir.\nHe says that he enjoyed it very much.\tIl dit que ça lui a beaucoup plu.\nHe says that he wants to settle down.\tIl dit qu'il veut s'assagir.\nHe says that he wants to settle down.\tIl dit qu'il veut se calmer.\nHe seemed unconscious of my presence.\tIl ne semblait pas conscient de ma présence.\nHe selected a Christmas gift for her.\tIl a choisi un cadeau de Noël pour elle.\nHe should have taken the examination.\tIl aurait dû passer l'examen.\nHe shoved the letter into his pocket.\tIl fourra la lettre dans sa poche.\nHe showed his photograph album to me.\tIl m'a montré son album photo.\nHe showed his photograph album to me.\tIl m'a montré son album de photos.\nHe showed his photograph album to me.\tIl me montra son album photo.\nHe shrank back in the face of danger.\tIl recula face au danger.\nHe slammed the door right in my face.\tIl m'a claqué la porte au nez.\nHe slipped while crossing the street.\tIl a glissé en traversant la rue.\nHe sometimes ate out with his family.\tIl sortait parfois manger avec sa famille.\nHe stood face to face with his enemy.\tIl a fait face à son ennemi.\nHe studies computational linguistics.\tIl étudie l'informatique linguistique.\nHe threw away a bunch of old letters.\tIl a jeté de nombreuses vieilles lettres.\nHe took a quick look at the magazine.\tIl jeta un coup d’œil rapide au magazine.\nHe took advantage of the opportunity.\tIl a sauté sur l'occasion.\nHe took advantage of the opportunity.\tIl sauta sur l'occasion.\nHe took his wallet out of his pocket.\tIl sortit son portefeuille de sa poche.\nHe took out a dollar from his wallet.\tIl sortit un dollar de son portefeuille.\nHe took pity on me and helped me out.\tIl a eu pitié de moi et m'a aidé à m'en sortir.\nHe treats me as if I were a stranger.\tIl me traite comme si j'étais un étranger.\nHe tried to unify the various groups.\tIl a essayé d'unifier les différents groupes.\nHe trimmed his beard for the wedding.\tIl tailla sa barbe pour le mariage.\nHe walked back and forth in the room.\tIl allait et venait dans la pièce.\nHe wanted to teach English at school.\tIl a voulu enseigner l'anglais à l'école.\nHe was absent from school for a week.\tIl fut absent de l'école durant une semaine.\nHe was accompanied by his girlfriend.\tIl était accompagné de sa petite amie.\nHe was always drinking in those days.\tIl était toujours en train de boire à cette époque.\nHe was born in a small town in Italy.\tIl est né dans une petite ville de l'Italie.\nHe was brought up by her grandmother.\tIl a été élevé par sa grand-mère.\nHe was driving the car at full speed.\tIl conduisait la voiture à pleine vitesse.\nHe was impatient to see his daughter.\tIl était impatient de voir sa fille.\nHe was my best friend in high school.\tC'était mon meilleur ami au collège.\nHe was my best friend in high school.\tC'était mon meilleur ami au lycée.\nHe was snoring loudly while he slept.\tIl ronflait bruyamment pendant son sommeil.\nHe was standing at the street corner.\tIl était debout au coin de la rue.\nHe was standing at the street corner.\tIl se tenait au coin de la rue.\nHe was tired, but he kept on working.\tIl était fatigué mais il continuait à travailler.\nHe was wise not to participate in it.\tIl a été avisé de ne pas y participer.\nHe wasn't long in making up his mind.\tIl ne fut pas long à se décider.\nHe went from Tokyo to Osaka by plane.\tIl voyagea par avion de Tokyo à Osaka.\nHe went from Tokyo to Osaka by plane.\tIl est allé de Tokyo à Osaka en avion.\nHe went to America to study medicine.\tIl alla en Amérique étudier la médecine.\nHe went to school to study yesterday.\tHier, il est allé à l'école étudier.\nHe will be my deputy while I am away.\tIl sera mon remplaçant pendant que je serai parti.\nHe will play tennis with his friends.\tIl jouera au tennis avec ses amis.\nHe will play tennis with his friends.\tIl jouera au tennis avec ses amies.\nHe wiped his hands on a handkerchief.\tIl essuya ses mains dans un mouchoir.\nHe wiped the sweat from his forehead.\tIl essuya la sueur de son front.\nHe worked hard to save up some money.\tIl travailla dur pour économiser de l'argent.\nHe's an advocate of barefoot running.\tIl est partisan de la course pieds nus.\nHe's not going to visit you tomorrow.\tIl ne vous rendra pas visite demain.\nHe's nothing more than a common thug.\tIl n'est rien d'autre qu'un vulgaire voyou.\nHe's the king's most trusted advisor.\tIl est le conseiller le plus proche du roi.\nHe's walking around in his underwear.\tIl se promène en sous-vêtements.\nHealth is more important than wealth.\tLa santé est plus importante que la richesse.\nHeavy rains fell for more than a day.\tIl plut des cordes durant plus d'une journée.\nHeavy rains fell for more than a day.\tDe fortes pluies tombèrent durant plus d'une journée.\nHer anxiety was apparent to everyone.\tSon anxiété était visible par tous.\nHer classmates do not appreciate her.\tSes camarades de classe ne l'apprécient pas.\nHer fiancé gave her a very big ring.\tSon fiancé lui offrit une très grosse bague.\nHer mother is a most beautiful woman.\tSa mère est une femme magnifique.\nHer name is known all over the world.\tSon nom est connu à travers le monde.\nHer passing the exam is a sure thing.\tDix contre un qu'elle réussira l'examen.\nHer wishes, it seems, have come true.\tIl semble que ses souhaits aient été exaucés.\nHer wishes, it seems, have come true.\tIl semble que ses souhaits se soient réalisés.\nHer youngest child is five years old.\tSon plus jeune enfant a cinq ans.\nHey, what are you guys talking about?\tEh les gars, de quoi parlez-vous ?\nHe’s shivering because of the cold.\tIl tremble de froid.\nHis answer was far from satisfactory.\tSa réponse fut loin d'être satisfaisante.\nHis attempt to escape was successful.\tSa tentative d'évasion fut couronnée de succès.\nHis attempt to escape was successful.\tSa tentative d'évasion a réussi.\nHis behavior really got on my nerves.\tSon comportement m'énerve vraiment.\nHis behavior was anything but polite.\tSa conduite était tout sauf courtoise.\nHis crime deserved the death penalty.\tSon crime méritait la peine de mort.\nHis dog follows him wherever he goes.\tSon chien le suit où qu'il aille.\nHis essay was full of original ideas.\tSa rédaction était remplie d'idées originales.\nHis explanation was not satisfactory.\tSon explication n'était pas satisfaisante.\nHis house is at the foot of Mt. Fuji.\tSa maison est au pied du Mont Fuji.\nHis house is near the subway station.\tSa maison est proche du métro.\nHis laptop is already five years old.\tSon portable a déjà cinq ans.\nHis mother is worried sick about him.\tSa mère est malade d'inquiétude à son sujet.\nHis novel is beyond my comprehension.\tSon roman m'est incompréhensible.\nHis story is well worth listening to.\tSon histoire vaut bien la peine d'être écoutée.\nHis way of thinking is very childish.\tSes pensées sont vraiment puériles.\nHis wounded leg began to bleed again.\tSa jambe blessée se mit à saigner de nouveau.\nHonesty isn't always the best policy.\tL'honnêteté n'est pas toujours la meilleure politique.\nHopefully, Tom will get into Harvard.\tEspérons que Tom entrera à Harvard.\nHow are we going to pay for all this?\tComment allons-nous payer pour tout ceci ?\nHow are you getting along these days?\tComment vont les choses pour toi ces derniers temps ?\nHow can I tell if I'm really in love?\tComment puis-je savoir que je suis vraiment amoureux ?\nHow can I tell if I'm really in love?\tComment puis-je savoir que je suis vraiment amoureuse ?\nHow can you say such a foolish thing?\tComment peux-tu dire quelque chose d'aussi stupide ?\nHow can you say such a foolish thing?\tComment pouvez-vous dire quelque chose d'aussi stupide ?\nHow could you not tell me about this?\tComment as-tu pu ne pas m'en parler ?\nHow could you not tell me about this?\tComment avez-vous pu ne pas m'en parler ?\nHow did they come by all that wealth?\tComment sont-ils devenus si riches ?\nHow did you come to know one another?\tComment avez-vous fait connaissance ?\nHow did you come up with that answer?\tComment es-tu parvenu à cette réponse ?\nHow did you come up with that answer?\tComment es-tu parvenue à cette réponse ?\nHow did you come up with that answer?\tComment êtes-vous parvenu à cette réponse ?\nHow did you come up with that answer?\tComment êtes-vous parvenue à cette réponse ?\nHow did you come up with that answer?\tComment êtes-vous parvenus à cette réponse ?\nHow did you come up with that answer?\tComment êtes-vous parvenues à cette réponse ?\nHow did you find out where Tom lives?\tComment as-tu découvert où Tom habitait ?\nHow did you find out where Tom lives?\tComment avez-vous découvert où Tom habitait ?\nHow do you know how deep the lake is?\tComment savez-vous quelle profondeur a le lac ?\nHow do you know how deep the lake is?\tComment sais-tu quelle profondeur a le lac ?\nHow do you like the climate of Japan?\tComment trouves-tu le climat du Japon ?\nHow do you put up with all the noise?\tComment supportez-vous tout ce bruit ?\nHow do you put up with all the noise?\tComment supportes-tu tout ce bruit ?\nHow does Tom's suggestion strike you?\tQue penses-tu de la proposition de Tom?\nHow exactly am I supposed to do that?\tComment suis-je supposé faire cela ?\nHow exactly am I supposed to do that?\tComment suis-je censée faire cela ?\nHow far is it from here to the hotel?\tQuelle distance y a-t-il d'ici à l'hôtel ?\nHow long are you planning on staying?\tCombien de temps avez-vous l'intention de rester ?\nHow long are you planning on staying?\tCombien de temps as-tu l'intention de rester ?\nHow long can a dead language survive?\tCombien de temps une langue morte peut-elle vivre ?\nHow long do you plan on staying here?\tCombien de temps prévoyez-vous de séjourner ici ?\nHow long do you plan on staying here?\tCombien de temps prévois-tu de séjourner ici ?\nHow long have you been a doctor here?\tCombien de temps as-tu été médecin ici ?\nHow long have you been a doctor here?\tCombien de temps avez-vous été médecin ici ?\nHow long have you been out of prison?\tDepuis combien de temps êtes-vous sorti de prison ?\nHow long have you been out of prison?\tDepuis combien de temps êtes-vous sortis de prison ?\nHow long have you been out of prison?\tDepuis combien de temps êtes-vous sortie de prison ?\nHow long have you been out of prison?\tDepuis combien de temps êtes-vous sorties de prison ?\nHow long have you been out of prison?\tDepuis combien de temps es-tu sorti de prison ?\nHow long have you been out of prison?\tDepuis combien de temps es-tu sortie de prison ?\nHow long will this cold weather last?\tCombien de temps va durer ce froid ?\nHow long will this nice weather last?\tCombien de temps va durer ce beau temps ?\nHow many books do you read per month?\tCombien de livres lis-tu par mois ?\nHow many books do you read per month?\tCombien de livres lisez-vous par mois ?\nHow many calories have you had today?\tCombien de calories as-tu consommées aujourd'hui ?\nHow many cans of beer have you drunk?\tCombien de canettes de bière avez-vous bu ?\nHow many cans of beer have you drunk?\tCombien de canettes de bière as-tu bu ?\nHow many of your friends have beards?\tCombien de vos amis portent la barbe ?\nHow many people are still down there?\tCombien de personnes sont encore là-dessous ?\nHow many students are there in total?\tCombien d'élèves y a-t-il au total ?\nHow many times a week do you eat out?\tCombien de fois par semaine mangez-vous à l'extérieur ?\nHow many times did you see the movie?\tCombien de fois as-tu vu ce film ?\nHow many times do I have to say that?\tCombien de fois me faut-il dire cela ?\nHow many times do I have to tell you?\tCombien de fois dois-je te le dire ?\nHow much did you get out of the deal?\tCombien avez-vous tiré de cette affaire ?\nHow much did you pay the electrician?\tCombien as-tu payé l'électricien ?\nHow much did you pay the electrician?\tCombien avez-vous payé l'électricien ?\nHow much longer are we going to wait?\tCombien de temps allons-nous encore attendre ?\nHow often do you check your messages?\tTu vérifies tes messages tous les combien ?\nHow often do you check your messages?\tA quelle fréquence vérifiez-vous vos messages ?\nHow often do you see your godparents?\tÀ quelle fréquence rends-tu visite à tes parrain et marraine ?\nHow old was she when she got married?\tQuel âge avait-elle lorsqu'elle s'est mariée ?\nHow would you like your steak cooked?\tQuelle cuisson voudrais-tu pour ton bifteck ?\nHuman relationships are very complex.\tLes relations humaines sont très compliquées.\nHurry up, and you'll catch the train.\tDépêche-toi, et tu attraperas le train.\nHurry up, or you will miss the train.\tDépêche-toi, ou tu vas rater ton train.\nHurry up, or you will miss the train.\tDépêchez-vous, ou vous manquerez le train.\nHurry up, or you will miss the train.\tDépêchez-vous, ou vous allez rater le train.\nHurry up, or you will miss the train.\tDépêche-toi ou tu vas rater ton train.\nI agree with you to a certain extent.\tJe suis d'accord avec toi d'une certaine manière.\nI agreed to split the money with Tom.\tJ'ai accepté de partager l'argent avec Tom.\nI already bought my ticket to Boston.\tJ'ai déjà acheté mon ticket pour Boston.\nI already know what I wanted to know.\tJe sais déjà ce que je voulais savoir.\nI always get nervous in her presence.\tSa présence me rend toujours nerveux.\nI always think of him when I'm alone.\tJe pense toujours à lui quand je suis seul.\nI always went to Miami in the summer.\tLes étés j'allais d'habitude à Miami.\nI always wonder what happened to him.\tJe me demande toujours ce qu'il lui est arrivé.\nI am familiar with this part of town.\tJe suis familier de cette partie de la ville.\nI am going to have a great day today.\tJe vais avoir une excellente journée devant moi aujourd'hui.\nI am going to swim a lot this summer.\tJe vais beaucoup nager cet été.\nI am just dying for a Coke right now.\tJe veux un coca rapidement.\nI am looking for room with twin beds.\tJe suis à la recherche d'une chambre avec des lits jumeaux.\nI am not in the least afraid of dogs.\tJe n'ai pas du tout peur des chiens.\nI am not interested in material gain.\tJe ne suis pas intéressé par le gain matériel.\nI am not interested in material gain.\tJe ne suis pas intéressée par le gain matériel.\nI am so tired that I can hardly walk.\tJe suis tellement fatigué que je peux à peine marcher.\nI am sure that you will be satisfied.\tJe suis sûr que vous serez satisfaits.\nI am the first musician in my family.\tJe suis le premier musicien de la famille.\nI apologize for what's happened here.\tJe m'excuse pour ce qui s'est passé ici.\nI appreciate what you've done for me.\tJ'apprécie ce que vous avez fait pour moi.\nI appreciate your efforts to help me.\tJ'apprécie vos efforts pour m'aider.\nI appreciate your efforts to help me.\tJ'apprécie tes efforts pour m'aider.\nI arrived here at eight this morning.\tJe suis arrivé ici à 8 heures ce matin.\nI asked her to go to a movie with me.\tJe lui demandai d'aller voir un film avec moi.\nI asked her to go to a movie with me.\tJe lui ai demandé d'aller voir un film avec moi.\nI asked him if I could read his book.\tJe lui demandai si je pouvais lire son livre.\nI attempted to swim across the river.\tJ'ai essayé de traverser la rivière à la nage.\nI attended the meeting on her behalf.\tJ'ai assisté à la réunion en son nom.\nI awoke to find a burglar in my room.\tQuand je me suis réveillé, j'ai trouvé un cambrioleur dans ma chambre.\nI believe in this method of teaching.\tJe crois en cette méthode d'apprentissage.\nI bought it for about twelve dollars.\tJe l'ai acheté pour une douzaine de dollars.\nI bought the same camera as you have.\tJ'ai acheté la même caméra que la tienne.\nI can hardly understand what he says.\tJe peux à peine comprendre ce qu'il dit.\nI can't afford to waste a single yen.\tJe ne peux me permettre de gaspiller le moindre yen.\nI can't agree with you on that point.\tJe ne peux pas être d'accord avec vous sur ce point.\nI can't believe I actually said that.\tJe n'arrive pas à croire que j'aie vraiment dit ça.\nI can't believe I actually said that.\tJe n'arrive pas à croire que j'aie effectivement dit ça.\nI can't believe I didn't get invited.\tJe n'arrive pas à croire que je n'ai pas été invitée.\nI can't believe I didn't think of it.\tJe n'arrive pas à croire que je n'y aie pas pensé.\nI can't believe I missed this before.\tJe n'arrive pas à croire que j'aie loupé ça auparavant.\nI can't believe I'm agreeing to this.\tJe ne peux pas croire que j'en sois d'accord.\nI can't believe I'm agreeing to this.\tJe n'arrive pas à croire que j'en sois d'accord.\nI can't believe I'm agreeing to this.\tJe n'arrive pas à croire que je sois d'accord avec ça.\nI can't believe I'm agreeing to this.\tJe ne peux pas croire que je sois d'accord avec ça.\nI can't believe I'm telling you this.\tJe n'arrive pas à croire que je te le dise.\nI can't believe I'm telling you this.\tJe n'arrive pas à croire que je te dise ça.\nI can't believe that I'm really here.\tJe ne peux pas croire que je suis ici.\nI can't believe we're all still here.\tJe n'arrive pas à croire que nous soyons tous encore ici.\nI can't believe you would allow this.\tJe n'arrive pas à croire que vous permettiez cela.\nI can't believe you would allow this.\tJe n'arrive pas à croire que tu permettes cela.\nI can't bring myself to eat anything.\tJe ne parviens pas à manger quoi que ce soit.\nI can't decide what to eat for lunch.\tJe n'arrive pas à décider quoi manger pour déjeuner.\nI can't decide what to eat for lunch.\tJe n'arrive pas à décider quoi manger à déjeuner.\nI can't do my job without a computer.\tJe ne peux pas accomplir mon travail sans un ordinateur.\nI can't do what I'm being paid to do.\tJe n'arrive pas à faire ce pour quoi je suis payé.\nI can't do what I'm being paid to do.\tJe n'arrive pas à faire ce pour quoi je suis payée.\nI can't eat or drink very hot things.\tJe ne peux pas ingérer de choses très chaudes.\nI can't eat or drink very hot things.\tJe ne peux boire ou manger de choses très chaudes.\nI can't eat that much food by myself.\tJe ne peux ingurgiter autant de nourriture à moi tout seul.\nI can't eat that much food by myself.\tJe ne peux manger autant de nourriture tout seul.\nI can't find the address of my hotel.\tJe n'arrive pas à trouver l'adresse de mon hôtel.\nI can't keep my coat on in this heat.\tJe ne peux pas garder mon manteau avec cette chaleur.\nI can't keep my coat on in this heat.\tJe ne peux pas garder mon manteau par cette chaleur.\nI can't put up with the way he spits.\tJe ne peux pas supporter sa manière de cracher.\nI can't talk right now. I need to go.\tJe ne peux pas parler à l'instant. Je dois y aller.\nI can't tell one twin from the other.\tJe n'arrive pas à distinguer ces deux jumeaux.\nI can't wait to visit my grandmother.\tJ'ai hâte d'aller voir ma grand-mère.\nI cannot run because I am very tired.\tJe ne peux pas courir parce que je suis très fatigué.\nI chanced to meet him at the airport.\tJe l'ai rencontré par hasard à l'aéroport.\nI consider her to be an honest woman.\tJe la considère une femme honnête.\nI could barely contain my excitement.\tJe pouvais à peine contenir mon excitation.\nI could barely contain my excitement.\tJe pus à peine contenir mon excitation.\nI could barely contain my excitement.\tJ'ai à peine pu contenir mon excitation.\nI could make nothing of what he said.\tJe n'ai rien compris de ce qu'il a dit.\nI could swim faster when I was young.\tJe nageais plus vite quand j'étais jeune.\nI could use some help in the kitchen.\tJe veux bien un peu d'aide à la cuisine.\nI could use some help in the kitchen.\tUn peu d'aide pour moi à la cuisine ne serait pas du luxe.\nI couldn't get him to leave me alone.\tJe n'ai pas réussi à ce qu'il me laisse tranquille.\nI couldn't possibly eat another bite.\tJe ne pourrais certainement pas manger une bouchée de plus.\nI decided to come to Japan last year.\tJ'ai décidé l'année dernière de venir au Japon.\nI did everything I could to stop Tom.\tJ'ai fait tout ce que j'ai pu pour arrêter Tom.\nI did not take anything from his bag.\tJe n'ai rien pris de son sac.\nI did say that, but I didn't mean it.\tJe l'ai sûrement dit, mais ce n'est pas ce que je voulais dire.\nI did that without consulting anyone.\tJe l'ai fait sans consulter personne.\nI didn't even see you once last year.\tJe ne t'ai pas même vu une fois l'année passée.\nI didn't even see you once last year.\tJe ne t'ai pas même vue une fois l'année passée.\nI didn't even see you once last year.\tJe ne vous ai pas même vu une fois l'année passée.\nI didn't even see you once last year.\tJe ne vous ai pas même vue une fois l'année passée.\nI didn't get the point of his speech.\tJe n'ai pas saisi l'intérêt de son discours.\nI didn't know you could speak French.\tJ'ignorais que tu savais parler français.\nI didn't know you could speak French.\tJ'ignorais que tu savais parler le français.\nI didn't know you could speak French.\tJ'ignorais que vous saviez parler français.\nI didn't know you could speak French.\tJ'ignorais que vous saviez parler le français.\nI didn't realize it until much later.\tJe n'en ai pris conscience que beaucoup plus tard.\nI didn't think it would be that much.\tJe ne pensais pas que ce serait autant.\nI do not want to reply to his letter.\tJe ne veux pas répondre à sa lettre.\nI don't agree with you on this point.\tJe ne suis pas d'accord avec vous à ce sujet.\nI don't appreciate being interrupted.\tJe n'apprécie pas d'être interrompue.\nI don't appreciate being interrupted.\tJe n'apprécie pas d'être interrompu.\nI don't believe it happened that way.\tJe ne crois pas que ça se soit produit de cette manière.\nI don't believe it happened that way.\tJe ne crois pas que ça ait eu lieu de cette manière.\nI don't believe it happened that way.\tJe ne crois pas que ça se soit passé de cette manière.\nI don't believe it happened that way.\tJe ne crois pas que ce soit arrivé de cette manière.\nI don't care if our team wins or not.\tJe me moque que notre équipe gagne ou pas.\nI don't eat out as often as I'd like.\tJe ne vais pas au restaurant autant que je le voudrais.\nI don't ever want to leave this room.\tJe ne veux jamais quitter cette pièce.\nI don't feel like waiting any longer.\tJe ne suis pas d'humeur à attendre plus longtemps.\nI don't go in for that sort of thing.\tJe déteste ce genre de chose.\nI don't have anybody else to turn to.\tJe n'ai personne d'autre vers qui me tourner.\nI don't have anything to give to you.\tJe n'ai rien à te donner.\nI don't have anything to write about.\tJe n'ai rien sur quoi écrire.\nI don't have anything to write about.\tJe ne dispose de rien à propos de quoi écrire.\nI don't have time to talk to you now.\tJe n'ai pas le temps de te parler maintenant.\nI don't have time to talk to you now.\tJe n'ai pas le temps de vous parler maintenant.\nI don't intend to leave it to chance.\tJe n'ai pas l'intention de le laisser au hasard.\nI don't know anything about his past.\tJe ne sais rien de son passé.\nI don't know how this happened again.\tJ'ignore comment ça s'est produit à nouveau.\nI don't know how this happened again.\tJ'ignore comment c'est à nouveau arrivé.\nI don't know how to thank you enough.\tJe ne sais pas comment te remercier assez.\nI don't know if I should stay or run.\tJe ne sais pas si je devrais rester ou courir.\nI don't know if I should stay or run.\tJe ne sais pas si je devrais rester ou m'enfuir.\nI don't know if I should stay or run.\tJe ne sais pas si je devrais rester ou fuir.\nI don't know much about this subject.\tJe ne sais pas grand-chose sur ce sujet.\nI don't know the name of that temple.\tJ'ignore le nom de ce temple.\nI don't know what I'd do without you.\tJ'ignore ce que je ferais sans vous.\nI don't know what I'd do without you.\tJ'ignore ce que je ferais sans toi.\nI don't know what I'd do without you.\tJe ne sais pas ce que je ferais sans vous.\nI don't know what I'd do without you.\tJe ne sais pas ce que je ferais sans toi.\nI don't know what I'm supposed to do.\tJe ne sais pas ce que je suis supposé savoir.\nI don't know what I'm supposed to do.\tJ'ignore ce que je suis supposé savoir.\nI don't know what he's trying to say.\tJe ne sais pas ce qu'il essaye de dire.\nI don't know what to believe anymore.\tJe ne sais plus que croire.\nI don't know what you want me to say.\tJe ne sais ce que vous voulez que je dise.\nI don't know what you want me to say.\tJe ne sais pas ce que vous voulez que je dise.\nI don't know what you want me to say.\tJ'ignore ce que vous voulez que je dise.\nI don't know what you want me to say.\tJe ne sais ce que tu veux que je dise.\nI don't know what you want me to say.\tJe ne sais pas ce que tu veux que je dise.\nI don't know what you want me to say.\tJ'ignore ce que tu veux que je dise.\nI don't know what you're looking for.\tJe ne sais pas ce que vous cherchez.\nI don't know what you're looking for.\tJe ne sais pas ce que tu cherches.\nI don't know what you're looking for.\tJ'ignore ce que vous cherchez.\nI don't know what you're looking for.\tJ'ignore ce que tu cherches.\nI don't know what you're waiting for.\tJe ne sais pas ce que vous attendez.\nI don't know what you're waiting for.\tJ'ignore ce que vous attendez.\nI don't know what you're waiting for.\tJe ne sais pas ce que tu attends.\nI don't know what you're waiting for.\tJ'ignore ce que tu attends.\nI don't know when I can take a break.\tJe ne sais pas quand je peux prendre une pause.\nI don't know when I can take a break.\tJ'ignore quand je peux prendre une pause.\nI don't know which of you came first.\tJe ne sais lequel de vous deux est venu en premier.\nI don't know which of you came first.\tJe ne sais laquelle de vous deux est venue en premier.\nI don't know which of you is crazier.\tJe ne sais lequel d'entre vous est le plus fou.\nI don't know why he quit the company.\tJe ne sais pas pourquoi il quitte la société.\nI don't know why it's taking so long.\tJ'ignore pourquoi ça prend autant de temps.\nI don't know why you're all so angry.\tJ'ignore pourquoi vous êtes tous tellement en colère.\nI don't know why you're all so angry.\tJ'ignore pourquoi vous êtes toutes tellement en colère.\nI don't know why you're all so jumpy.\tJ'ignore pourquoi vous êtes tous tellement nerveux.\nI don't know why you're all so jumpy.\tJ'ignore pourquoi vous êtes toutes tellement nerveuses.\nI don't know why you're all so jumpy.\tJ'ignore pourquoi vous êtes tous tellement agités.\nI don't know why you're all so jumpy.\tJ'ignore pourquoi vous êtes toutes tellement agitées.\nI don't know why you're all so upset.\tJ'ignore pourquoi vous êtes toutes tellement contrariées.\nI don't know why you're all so upset.\tJ'ignore pourquoi vous êtes tous tellement contrariés.\nI don't like being treated like this.\tJe n'aime pas être traité de cette manière.\nI don't like the way he looks at you.\tJe n'aime pas la façon qu'il a de te regarder.\nI don't like the way he looks at you.\tJe n'aime pas la façon qu'il a de vous regarder.\nI don't like the way he speaks to me.\tJe n'aime pas la façon dont il me parle.\nI don't like to see food go to waste.\tJe n'aime pas voir de la nourriture gaspillée.\nI don't often get invited to parties.\tJe ne suis pas souvent invité à des fêtes.\nI don't often get invited to parties.\tJe ne suis pas souvent invitée à des fêtes.\nI don't often get invited to parties.\tIl est rare que je sois invité à des fêtes.\nI don't often get invited to parties.\tIl est rare que je sois invitée à des fêtes.\nI don't particularly want to do that.\tJe ne veux pas particulièrement faire ça.\nI don't plan on being here that long.\tJe ne prévois pas d'être ici aussi longtemps.\nI don't plan on telling you anything.\tJe ne prévois pas de vous dire quoi que ce soit.\nI don't plan on telling you anything.\tJe ne prévois pas de te dire quoi que ce soit.\nI don't really like to talk about it.\tJe n'aime pas vraiment en parler.\nI don't remember anything about that.\tJe ne m'en rappelle rien.\nI don't see Tom as often as I'd like.\tJe ne vois pas Tom aussi souvent que je le voudrais.\nI don't see anybody else around here.\tJe ne vois personne d'autre autour d'ici.\nI don't see anything wrong with that.\tJe ne vois là rien de mal.\nI don't suppose anything will happen.\tJe ne suppose pas que quelque chose se produira.\nI don't suppose anything will happen.\tJe ne suppose pas que quelque chose aura lieu.\nI don't suppose anything will happen.\tJe ne suppose pas que quelque chose arrivera.\nI don't think I can do anything else.\tJe ne pense pas que je puisse faire quoi que ce soit d'autre.\nI don't think I can do anything else.\tJe ne pense pas pouvoir faire quoi que ce soit d'autre.\nI don't think I really matter to you.\tJe ne pense pas que je compte vraiment pour toi.\nI don't think I really matter to you.\tJe ne pense pas que je compte vraiment pour vous.\nI don't think it's my decision alone.\tJe ne pense pas que ce soit seulement ma décision.\nI don't think she is fit for the job.\tJe ne pense pas qu'elle soit faite pour le poste.\nI don't think that's going to happen.\tJe ne pense pas que ça va arriver.\nI don't think that's the whole story.\tJe ne pense pas que ce soit là toute l'histoire.\nI don't usually burn incense at home.\tJe ne brûle pas d'encens à la maison, habituellement.\nI don't want Tom to see me like this.\tJe ne veux pas que Tom me voie ainsi.\nI don't want to get my clothes dirty.\tJe ne veux pas salir mes vêtements.\nI don't want to get you into trouble.\tJe ne veux pas vous attirer des ennuis.\nI don't want to get you into trouble.\tJe ne veux pas te mettre dans les ennuis.\nI don't want to get you into trouble.\tJe ne veux pas te mettre dans la merde.\nI don't want to talk to anyone today.\tJe n'ai envie de parler à personne aujourd'hui.\nI drank a glass of milk this morning.\tJ'ai bu un verre de lait ce matin.\nI enjoyed talking with my girlfriend.\tJe prends plaisir à parler avec ma petite amie.\nI enjoyed watching soccer last night.\tJ'ai aimé regarder le match la nuit dernière.\nI expect that Tom will pass the exam.\tJe m'attends à ce que Tom ait son examen.\nI explicitly told Tom not to do that.\tJ'ai explicitement dit à Tom de ne pas faire cela.\nI feel like I haven't slept for days.\tJe me sens comme si je n'avais pas dormi depuis des jours.\nI feel like I'm always being watched.\tJ'ai l'impression d'être observé en permanence.\nI feel like I've become someone else.\tJe sens que je suis devenu quelqu'un d'autre.\nI feel quite at ease among strangers.\tJe me sens assez à l'aise parmi des étrangers.\nI feel very sick. I want to throw up.\tJe me sens très malade. J'ai envie de vomir.\nI fell sound asleep before I knew it.\tJe suis tombé de sommeil avant de m'en rendre compte.\nI felt it was necessary, so I did it.\tJ'eus l'impression que c'était nécessaire alors je le fis.\nI felt it was necessary, so I did it.\tJ'ai eu l'impression que c'était nécessaire alors je l'ai fait.\nI felt my phone vibrate in my pocket.\tJe sentis mon téléphone vibrer dans ma poche.\nI felt my phone vibrate in my pocket.\tJ'ai senti mon téléphone vibrer dans ma poche.\nI figured you might change your mind.\tJe me suis figuré que vous changeriez peut-être d'avis.\nI figured you might change your mind.\tJe me suis figuré que tu changerais peut-être d'avis.\nI figured you might change your mind.\tJe me suis figuré qu'il se pouvait que vous changiez d'avis.\nI figured you might change your mind.\tJe me suis figuré qu'il se pouvait que tu changes d'avis.\nI forgot to tell you my phone number.\tJ'ai oublié de vous indiquer mon numéro de téléphone.\nI forgot to tell you my phone number.\tJ'ai oublié de t'indiquer mon numéro de téléphone.\nI found it difficult to convince her.\tJ'ai eu du mal à la convaincre.\nI found it easy to find the building.\tJ'ai trouvé cela facile de trouver le bâtiment.\nI found it easy to solve the problem.\tJ'ai trouvé que le problème n'était pas difficile à résoudre.\nI found it necessary to ask for help.\tJ'ai estimé nécessaire de demander de l'aide.\nI found it necessary to ask for help.\tJ'ai estimé nécessaire de requérir de l'aide.\nI found it necessary to ask for help.\tJ'ai estimé nécessaire de solliciter de l'aide.\nI found out how to solve the problem.\tJe trouvai comment résoudre le problème.\nI found something I thought I'd lost.\tJ'ai trouvé quelque chose que je pensais avoir perdu.\nI gave orders I was to be left alone.\tJe donnai des ordres pour qu'on me laisse tranquille.\nI gave orders I was to be left alone.\tJ'ai donné des ordres pour qu'on me laisse tranquille.\nI get only five days off this summer.\tJe n'ai que cinq jours de vacances cet été.\nI go to the dentist every second day.\tJe me rends chez le dentiste tous les deux jours.\nI got a fish bone stuck in my throat.\tJ'ai une arête coincée dans ma gorge.\nI got a taxi in front of the station.\tJ'ai pris un taxi devant la gare.\nI got the gist of what he was saying.\tJ'ai entendu l'essentiel de ce qu'il disait.\nI got you all right where I want you.\tJe t'ai mené précisément où je voulais.\nI got you all right where I want you.\tJe vous ai mené précisément où je voulais.\nI got you all right where I want you.\tJe t'ai menée précisément où je voulais.\nI got you all right where I want you.\tJe vous ai menée précisément où je voulais.\nI got you all right where I want you.\tJe vous ai menés précisément où je voulais.\nI got you all right where I want you.\tJe vous ai menées précisément où je voulais.\nI grasped the rope so as not to fall.\tJe m'accrochai à la corde pour ne pas tomber.\nI grasped the rope so as not to fall.\tJe me suis accrochée à la corde pour ne pas tomber.\nI grasped the rope so as not to fall.\tJe me suis accroché à la corde pour ne pas tomber.\nI had a bladder infection last month.\tJ'ai eu une infection de la vessie le mois dernier.\nI had a checkup the week before last.\tJ'ai eu un contrôle il y a deux semaines.\nI had a drink or two before you came.\tJ'ai bu un ou deux verres avant que vous ne veniez.\nI had a drink or two before you came.\tJ'ai bu un ou deux verres avant que tu ne viennes.\nI had a fantastic time at your party.\tJ'ai passé du très bon temps à votre fête.\nI had a fantastic time at your party.\tJ'ai passé du très bon temps à ta fête.\nI had a really great time last night.\tJe me suis vraiment éclatée, hier soir.\nI had a really great time last night.\tJe me suis vraiment éclaté, hier soir.\nI had already left when they arrived.\tJ'étais déjà sorti lorsqu'ils arrivèrent.\nI had met her many times before then.\tJe l'avais rencontrée à de nombreuses reprises auparavant.\nI had met him many times before then.\tJe l'avais rencontré à de nombreuses reprises auparavant.\nI had my hair cut at a barber's shop.\tJe me suis fait couper les cheveux chez un barbier.\nI had my watch repaired at the store.\tJ'ai fait réparer ma montre au magasin.\nI had no idea you could speak French.\tJe n'avais pas idée que vous saviez parler le français.\nI had no idea you could speak French.\tJe n'avais pas idée que tu savais parler le français.\nI had no notion that you were coming.\tJe ne pensais pas que vous viendriez.\nI had the strangest dream last night.\tJ'ai fait le rêve le plus étrange, la nuit passée.\nI had to decide right then and there.\tJ'ai dû décider sur-le-champ.\nI hate being alone this time of year.\tJe déteste être seul à cette époque de l'année.\nI hate being alone this time of year.\tJe déteste être seule à cette époque de l'année.\nI hate the way the water tastes here.\tJe déteste le goût de l'eau, ici.\nI have a friend who can speak French.\tJ'ai un ami qui sait parler français.\nI have a friend who can speak French.\tJ'ai une amie qui sait parler français.\nI have a friend who lives in England.\tJ'ai un ami qui habite en Angleterre.\nI have a friend who lives in Sapporo.\tJ'ai un ami qui vit à Sapporo.\nI have a large family to provide for.\tJ'ai une grande famille à nourrir.\nI have a lot of money at my disposal.\tJ'ai beaucoup d'argent à ma disposition.\nI have a pretty tight schedule today.\tJ'ai un programme assez chargé aujourd'hui.\nI have a tight schedule this weekend.\tJ'ai un programme chargé ce week-end.\nI have an urgent matter to attend to.\tJ'ai une affaire urgente à traiter.\nI have been in Japan for three years.\tJe suis au Japon depuis 3 ans.\nI have connections in the government.\tJ'ai des relations au gouvernement.\nI have connections in the government.\tJ'ai des relations dans le gouvernement.\nI have connections in the government.\tJ'ai des relations au sein du gouvernement.\nI have had quite enough of his jokes.\tJ'en ai tout à fait marre de ses plaisanteries.\nI have lunch at noon with my friends.\tJe déjeune à midi avec mes amis.\nI have never heard him speak English.\tJe ne l'ai jamais entendu parler anglais.\nI have never seen a red refrigerator.\tJe n'ai jamais vu de réfrigérateur rouge.\nI have no idea how long it will take.\tJe ne sais pas combien de temps il faudra.\nI have no idea how to use this thing.\tJe n'ai aucune idée de comment utiliser ce truc.\nI have no idea what Tom said to Mary.\tJe n'ai aucune idée de ce que Tom a dit à Mary.\nI have no money to buy the book with.\tJe n'ai pas d'argent pour acheter ce livre.\nI have no more than one thousand yen.\tJe n'ai pas plus d'un millier de yens.\nI have nothing more to say about him.\tJe n'ai rien de plus à dire sur lui.\nI have nothing particular to say now.\tJe n'ai rien de particulier à dire maintenant.\nI have nothing to do with that crime.\tJe n'ai rien à voir avec ce crime.\nI have nothing to do with the affair.\tJe n'ai rien à voir avec cette affaire.\nI have nothing to say in this regard.\tÀ cet égard, je n'ai rien à dire.\nI have some numbness in my left hand.\tMa main gauche est engourdie.\nI have some problems to take care of.\tJ'ai des problèmes à résoudre.\nI have some things in the hotel safe.\tJ'ai quelques biens dans le coffre-fort de l'hôtel.\nI have some things in the hotel safe.\tj'ai quelque chose dans l'hotel\nI have something urgent to attend to.\tJ'ai quelque chose d'urgent auquel je dois assister.\nI have things to attend to elsewhere.\tJ'ai des choses à faire ailleurs.\nI have to make sure everything is OK.\tJe dois m'assurer que tout va bien.\nI have to part with my old furniture.\tJe dois me séparer de mes vieux meubles.\nI have to speak with you immediately.\tJe dois te parler immédiatement.\nI have to speak with you immediately.\tJe dois vous parler immédiatement.\nI have until tomorrow to finish this.\tJ'ai jusqu'à demain pour finir ça.\nI have written down his phone number.\tJ'ai noté son numéro de téléphone.\nI have written down his phone number.\tJ'ai pris note de son numéro de téléphone.\nI haven't finished reading this book.\tJe n'ai pas fini de lire ce livre.\nI haven't given the money to Tom yet.\tJe n'ai pas encore donné l'argent à Tom.\nI haven't got rid of my bad cold yet.\tJe ne me suis pas encore débarrassé de mon mauvais rhume.\nI haven't got rid of my bad cold yet.\tJe ne me suis pas encore débarrassée de mon mauvais rhume.\nI haven't read today's newspaper yet.\tJe n'ai pas encore lu le journal du jour.\nI haven't read today's newspaper yet.\tJe n'ai pas encore compulsé le journal du jour.\nI haven't really made up my mind yet.\tJe ne me suis pas vraiment encore décidé.\nI haven't really made up my mind yet.\tJe ne me suis pas vraiment encore décidée.\nI haven't seen him since last Sunday.\tJe ne l'ai pas vu depuis dimanche dernier.\nI hesitated about which road to take.\tJ'hésitais quant à la route à prendre.\nI hesitated about which road to take.\tJ'hésitais sur la route à prendre.\nI hope the bus will come before long.\tCe serait bien que le bus arrive bientôt.\nI hope we have fine weather tomorrow.\tJ'espère que nous aurons du beau temps, demain.\nI hope you won't be too disappointed.\tJ'espère que vous ne serez pas trop déçus.\nI hope you'll be very happy together.\tJ'espère que vous serez très heureux ensemble.\nI hope you'll both be happy together.\tJ'espère que vous serez tous deux heureux ensemble.\nI hope you're not afraid of the dark.\tJ'espère que tu n'as pas peur du noir.\nI hope you're not afraid of the dark.\tJ'espère que vous n'êtes pas effrayé par l'obscurité.\nI hope you're not afraid of the dark.\tJ'espère que vous n'avez pas peur du noir.\nI intended to have finished the work.\tJ'avais l'intention de finir le travail.\nI jog before breakfast every morning.\tJe fais un jogging tous les matins, avant mon petit déjeuner.\nI just can't help worrying about you.\tJe ne peux simplement pas m'empêcher de me faire du souci à ton sujet.\nI just can't help worrying about you.\tJe ne peux simplement pas m'empêcher de me faire du souci à votre sujet.\nI just don't feel that way about you.\tJe n'ai simplement pas ce sentiment à ton égard.\nI just don't feel that way about you.\tJe n'ai simplement pas ce sentiment à votre égard.\nI just don't know if I'm good enough.\tJ'ignore simplement si je suis assez bon.\nI just don't know if I'm good enough.\tJ'ignore simplement si je suis assez bonne.\nI just don't know what to do anymore.\tJe ne sais simplement plus quoi faire.\nI just don't want to catch your cold.\tJe ne veux pas contracter ton rhume, un point c'est tout.\nI just don't want to catch your cold.\tJe ne veux pas contracter votre rhume, un point c'est tout.\nI just don't want to catch your cold.\tJe ne veux tout simplement pas contracter ton rhume.\nI just don't want to catch your cold.\tJe ne veux tout simplement pas contracter votre rhume.\nI just got back from my morning swim.\tJe reviens juste de ma séance de natation du matin.\nI just want to finish this and leave.\tJe veux seulement finir ceci et partir.\nI just want to say thanks to you all.\tJe veux simplement tous vous dire merci.\nI just want to say thanks to you all.\tJe veux simplement vous dire merci à tous.\nI just wanted to say that I love you.\tJe voulais juste dire que je vous aime.\nI just wanted to say that I love you.\tJe voulais juste dire que je t'aime.\nI kept the $20 I found in the street.\tJ'ai gardé les 20 $ que j'ai trouvés dans la rue.\nI kind of expected you to come alone.\tJ'espérais un peu que tu viennes seul.\nI kind of expected you to come alone.\tJ'espérais un peu que tu viennes seule.\nI kind of expected you to come alone.\tJ'espérais un peu que vous veniez seul.\nI kind of expected you to come alone.\tJ'espérais un peu que vous veniez seule.\nI kind of expected you to come alone.\tJ'espérais un peu que vous veniez seuls.\nI kind of expected you to come alone.\tJ'espérais un peu que vous veniez seules.\nI knew we should've stayed in Boston.\tJe savais qu'on aurait dû rester à Boston.\nI knew you wouldn't have enough time.\tJe savais que tu n'aurais pas assez de temps.\nI know a guy who has never seen snow.\tJe connais un type qui n'a jamais vu de neige.\nI know a guy who has never seen snow.\tJe connais un type qui n'a jamais vu la neige.\nI know absolutely nothing about that.\tJe n'en sais absolument rien.\nI know better than to lend him money.\tJe ne suis pas assez bête pour lui prêter de l'argent.\nI know him by name, but not by sight.\tJe le connais de nom, mais pas de visage.\nI know that I should be sleeping now.\tJe sais que je devrais être en train de dormir, à l'heure qu'il est.\nI know that this is important to you.\tJe sais que c'est important pour vous.\nI know that this is important to you.\tJe sais que c'est important pour toi.\nI know that you still think about me.\tJe sais que tu penses toujours à moi.\nI know what you're probably thinking.\tJe sais ce que vous êtes probablement en train de penser.\nI know what you're probably thinking.\tJe sais ce que tu es probablement en train de penser.\nI know whether or not he is an enemy.\tJe sais si c'est un ennemi ou pas.\nI know you have to go back to Boston.\tJe sais que tu dois retourner à Boston.\nI know you have to go back to Boston.\tJe sais que vous devez retourner à Boston.\nI know your older brother quite well.\tJe connais assez bien ton frère aîné.\nI leave the matter to your judgement.\tJe laisse l'affaire à votre jugement.\nI leave the matter to your judgement.\tJe laisse la chose à ton jugement.\nI left my tennis racket on the train.\tJ'ai oublié ma raquette de tennis dans le train.\nI lied to my girlfriend about my age.\tJ'ai menti à ma petite amie au sujet de mon âge.\nI like to read before going to sleep.\tJ'aime lire avant de m'endormir.\nI looked at the calendar on the wall.\tJ'ai regardé le calendrier au mur.\nI love music, particularly classical.\tJ'aime la musique, surtout classique.\nI love the sound of rain on the roof.\tJ'aime le son de la pluie sur le toit.\nI love walking barefoot on the grass.\tJ'adore marcher pieds nus dans l'herbe.\nI made myself a cup of hot chocolate.\tJe me suis préparé une tasse de chocolat chaud.\nI made sure that no one was watching.\tJe me suis assuré que personne ne regardait.\nI make it a rule not to stay up late.\tJe tiens pour règle de ne pas veiller tard.\nI managed to repair my car by myself.\tJe me suis débrouillé pour réparer moi-même mon véhicule.\nI may have left my wallet on the bus.\tJ'ai dû laisser mon portefeuille dans le bus.\nI met her at the station by accident.\tJe l'ai incidemment rencontrée à la gare.\nI met him at the end of the platform.\tJe l'ai rencontré au bout du quai.\nI met him on my way home from school.\tJe l'ai rencontré sur le chemin de l'école à la maison.\nI must have made a mistake somewhere.\tJ'ai dû me tromper quelque part.\nI must postpone going to the dentist.\tJe dois décaler mon rendez-vous chez le dentiste.\nI must remind you about your promise.\tJe dois te remémorer ta promesse.\nI must remind you about your promise.\tJe dois vous remémorer votre promesse.\nI must replace that fluorescent lamp.\tJe dois changer cette lampe fluorescente.\nI need to ask you for a little favor.\tJ'aurais besoin que tu me rendes un petit service.\nI need to know your answer by Friday.\tJ'ai besoin de connaître votre réponse pour vendredi.\nI need to know your answer by Friday.\tJ'ai besoin de connaître ta réponse pour vendredi.\nI need to know your answer by Friday.\tJ'ai besoin de connaître votre réponse d'ici vendredi.\nI never could hide anything from you.\tJe n'ai jamais pu te cacher quoique ce soit.\nI never thought I'd ever get married.\tJe n'ai jamais pensé que je me marierais un jour.\nI never thought I'd have so much fun.\tJe n'ai jamais pensé que je m'amuserais autant.\nI never thought it would be this bad.\tJe n'ai jamais pensé que ça serait aussi mauvais.\nI never thought it would be this bad.\tJe n'ai jamais pensé que ça serait mauvais à ce point-là.\nI never thought it would be this bad.\tJe n'ai jamais pensé que ça serait aussi désastreux.\nI never thought it would be this bad.\tJe n'ai jamais pensé que ce serait aussi mauvais.\nI never thought it would be this bad.\tJe n'ai jamais pensé que ce serait mauvais à ce point-là.\nI never thought it would be this bad.\tJe n'ai jamais pensé que ce serait aussi désastreux.\nI never thought they would accept me.\tJe n'ai jamais cru qu'ils m'accepteraient.\nI never want to feel like this again.\tJe ne veux jamais plus me sentir ainsi.\nI never wanted any of this to happen.\tJe n'ai jamais voulu que survienne quoi que ce soit de ceci.\nI no longer believe anything you say.\tJe ne crois plus un mot de ce que tu dis.\nI often do my homework before dinner.\tJe fais souvent mes devoirs avant le dîner.\nI only read the first three chapters.\tJe ne lis que les trois premiers chapitres.\nI only read the first three chapters.\tJe n'ai lu que les trois premiers chapitres.\nI only want what's best for everyone.\tJe veux seulement ce qui est le mieux pour tout le monde.\nI only wish I could return the favor.\tJe souhaiterais seulement pouvoir vous rendre la faveur.\nI only wish I could return the favor.\tJe souhaiterais seulement pouvoir te rendre la faveur.\nI opened an account at a nearby bank.\tJ'ai ouvert un compte dans une banque du coin.\nI opened an account at a nearby bank.\tJ'ouvris un compte dans une banque du coin.\nI ordered several books from England.\tJ'ai commandé plusieurs livres d'Angleterre.\nI ordered two teas and three coffees.\tJ'ai commandé deux thés et trois cafés.\nI passed the test with flying colors.\tJ'ai passé le test haut la main.\nI plan to get a job as soon as I can.\tJe prévois de décrocher un emploi dès que je peux.\nI planted an apple tree in my garden.\tJ'ai planté un pommier dans mon jardin.\nI practiced speaking French with Tom.\tJe me suis entraîné à parler français avec Tom.\nI practiced speaking French with Tom.\tJe me suis entraînée à parler français avec Tom.\nI prefer to go barefoot in the house.\tÀ la maison, je préfère marcher pieds nus.\nI pretended that it didn't bother me.\tJ'ai fait comme si ça ne me dérangeait pas.\nI pretended that it didn't bother me.\tJ'ai fait celui que ça ne dérangeait pas.\nI pretended that it didn't bother me.\tJ'ai fait celle que ça ne dérangeait pas.\nI pretended that it didn't bother me.\tJ'ai feint de n'en être pas dérangé.\nI pretended that it didn't bother me.\tJ'ai fait celle que ça ne tracassait pas.\nI pretended that it didn't bother me.\tJ'ai feint de n'en être pas dérangée.\nI pretended that it didn't bother me.\tJ'ai feint de ne pas en être dérangée.\nI pretended that it didn't bother me.\tJ'ai feint de ne pas en être dérangé.\nI pretended that it didn't bother me.\tJ'ai fait celui que ça ne tracassait pas.\nI pretended that it didn't bother me.\tJ'ai fait comme si ça ne me tracassait pas.\nI probably shouldn't have eaten that.\tJe n'aurais probablement pas dû manger ça.\nI promise you I won't ever leave you.\tJe te promets que je ne te quitterai jamais.\nI promise you I won't ever leave you.\tJe vous promets que je ne vous quitterai jamais.\nI promised I wasn't going to do this.\tJ'ai promis que je n'allais pas faire ça.\nI promised I wasn't going to do this.\tJe promis que je n'allais pas faire ça.\nI read at least one book every month.\tJe lis au moins un livre tous les mois.\nI really do have to get back to work.\tIl me faut vraiment retourner au travail.\nI really don't want to talk about it.\tJe ne veux vraiment pas en parler.\nI really don't want to talk about it.\tJe ne veux vraiment pas en discuter.\nI really have to get this done today.\tIl me faut vraiment faire faire ceci aujourd'hui.\nI really love her older sister a lot.\tJ'aime beaucoup sa sœur aînée.\nI really want Tom to stop doing that.\tJe veux vraiment que Tom arrête de faire ça.\nI recommend that you read that novel.\tJe vous recommande ce roman.\nI refuse to be taken in by her guile.\tJe refuse de me laisser abuser par sa ruse.\nI refuse to be taken in by her guile.\tJe refuse de me laisser avoir par sa ruse.\nI remember having seen her somewhere.\tJe me souviens l'avoir vue quelque part.\nI remember reading this novel before.\tJe me souviens avoir lu ce roman auparavant.\nI remember when I was about your age.\tJe me souviens de lorsque j'avais à peu près votre âge.\nI remember when I was about your age.\tJe me souviens de lorsque j'avais à peu près ton âge.\nI respect you for what you have done.\tJe te respecte pour ce que tu as fait.\nI returned the knife that I borrowed.\tJ'ai rendu le couteau que j'avais emprunté.\nI saw a black cat run into the house.\tJ'ai vu un chat noir courir dans la maison.\nI saw a black cat run into the house.\tJ'ai vu un chat noir entrer en courant dans la maison.\nI saw some monkeys climbing the tree.\tJ'ai vu des singes grimper à l'arbre.\nI saw the way Tom was looking at you.\tJ'ai vu la façon dont Tom te regardait.\nI see why you don't want to go there.\tJe vois pourquoi tu ne veux pas t'y rendre.\nI see why you don't want to go there.\tJe vois pourquoi vous ne voulez pas y aller.\nI should probably not have done that.\tJe n'aurais probablement pas dû faire ça.\nI shouldn't have stayed up all night.\tJe n'aurais pas dû veiller toute la nuit.\nI shouldn't have stayed up all night.\tJe n'aurais pas dû rester debout toute la nuit.\nI spent all my money on stupid stuff.\tJ'ai claqué tout mon fric en conneries.\nI spoke to my uncle on the telephone.\tJ'ai parlé à mon oncle au téléphone.\nI started learning Chinese last week.\tJ'ai commencé à apprendre le chinois la semaine dernière.\nI stayed home because it was raining.\tJe suis resté chez moi car il pleuvait.\nI still love the way you smile at me.\tJ'aime toujours la manière que tu as de me sourire.\nI stuck with it until I was finished.\tJe m'y suis tenu jusqu'à ce que j'aie fini.\nI stuck with it until I was finished.\tJe m'y suis tenue jusqu'à ce que j'aie fini.\nI suddenly thought of my dead mother.\tSoudain, j'ai pensé à ma mère décédée.\nI suppose I asked too many questions.\tJe suppose que j'ai posé trop de questions.\nI suppose I shouldn't have said that.\tJe suppose que je n'aurais pas dû dire ça.\nI suppose you have the right to know.\tJe suppose que tu as le droit de savoir.\nI suppose you have the right to know.\tJe suppose que vous avez le droit de savoir.\nI talk to Tom on the phone every day.\tTous les jours, je parle à Tom au téléphone.\nI think I can do it in my spare time.\tJe pense que je pourrais le faire pendant mon temps libre.\nI think I just heard somebody scream.\tJe pense que je viens d'entendre quelqu'un crier.\nI think Tom is going to like it here.\tJe pense que Tom va se plaire ici.\nI think Tom may be telling the truth.\tJe pense qu'il se peut que Tom dise la vérité.\nI think death is preferable to shame.\tJe pense que la mort est préférable à la honte.\nI think it won't rain this afternoon.\tJe pense qu'il ne pleuvra pas cette après-midi.\nI think it won't rain this afternoon.\tJe pense qu'il ne pleuvra pas cet après-midi.\nI think it's time for me to speak up.\tJe pense qu'il est temps pour moi de parler.\nI think it's time for you to grow up.\tJe pense qu'il est temps pour toi de grandir.\nI think maybe Tom and Mary should go.\tJe pense que Tom et Marie doivent s'en aller.\nI think my plan is better than yours.\tJe pense que mon plan est meilleur que le tien.\nI think she will succeed as a lawyer.\tJe pense qu'elle réussira comme avocat.\nI think that it's going to rain soon.\tJe pense qu'il va pleuvoir bientôt.\nI think that it's going to rain soon.\tJe pense qu'il va bientôt pleuvoir.\nI think that my German is really bad.\tJe crois que mon allemand est vraiment à chier.\nI think that's the right thing to do.\tJe pense que c'est la bonne chose à faire.\nI think we all know what's happening.\tJe pense que nous savons tous ce qui se passe.\nI think we all know what's happening.\tJe pense que nous savons toutes ce qui se passe.\nI think we all know what's happening.\tJe pense que nous savons tous ce qui arrive.\nI think we all know what's happening.\tJe pense que nous savons toutes ce qui arrive.\nI think we need to go back to Boston.\tJe pense que nous devons retourner à Boston.\nI think we still have plenty of time.\tJe pense que nous avons encore largement le temps.\nI think we still have plenty of time.\tJe pense que nous disposons encore de beaucoup de temps.\nI think we'd better do what Tom asks.\tJe pense qu’il vaudrait mieux faire ce que Tom demande.\nI think we'd better start over again.\tJe pense que nous ferions mieux de recommencer du départ.\nI think we've got it figured out now.\tJe pense que c'est désormais au point.\nI think what Tom did was very stupid.\tJe pense que ce que Tom a fait a été très stupide.\nI think what Tom is doing is amazing.\tJe pense que ce que Tom est en train de faire est incroyable.\nI think you are the one who broke it.\tJe pense que vous êtes celui qui l'a cassé.\nI think you are the one who broke it.\tJe pense que vous êtes celui qui l'a cassée.\nI think you are the one who broke it.\tJe pense que vous êtes celle qui l'a cassé.\nI think you are the one who broke it.\tJe pense que vous êtes celle qui l'a cassée.\nI think you know why I can't do that.\tJe pense que vous savez pourquoi je ne peux pas faire ça.\nI think you know why I can't do that.\tJe pense que tu sais pourquoi je ne peux pas faire ça.\nI think you mentioned that last week.\tJe pense que vous avez mentionné cela la semaine dernière.\nI think you mentioned that last week.\tJe pense que tu as mentionné cela la semaine dernière.\nI think you should drink some coffee.\tJe pense que tu devrais boire un peu de café.\nI thought I'd prefer going by myself.\tJe pensais que je préférerais y aller seul.\nI thought I'd prefer going by myself.\tJe pensais que je préférerais m'y rendre seul.\nI thought that went exceedingly well.\tJ'ai trouvé que ça s'est bien passé.\nI thought that would be a great idea.\tJe pensais que ça pouvait être une bonne idée.\nI thought we could stay here all day.\tJ'ai pensé que nous pourrions rester ici toute la journée.\nI thought you had it all figured out.\tJe pensais que tu avais tout calculé.\nI thought you had it all figured out.\tJe pensais que vous aviez tout calculé.\nI thought you lived with your family.\tJe pensais que tu vivais avec ta famille.\nI took a shower and then went to bed.\tJ'ai pris une douche puis suis allé au lit.\nI traded in my old car for a new one.\tJ'ai échangé ma vieille voiture contre une neuve.\nI tried everything to keep him alive.\tJ'ai tout essayé pour le maintenir en vie.\nI tried to learn the melody by heart.\tJ'ai essayé d'apprendre la mélodie par cœur.\nI try to help Tom every chance I get.\tJ'essaie d'aider Tom dès que j'en ai l'occasion.\nI understand your position perfectly.\tJe comprends parfaitement votre position.\nI understand your position perfectly.\tJe comprends parfaitement ta position.\nI used to do a lot of volunteer work.\tJe faisais beaucoup de bénévolat.\nI used to fish for hours on holidays.\tEn vacances, je pouvais passer des heures à la pêche.\nI used to listen to English programs.\tJ'avais coutume d'écouter des programmes en anglais.\nI used to play tennis in high school.\tJe jouais au tennis au lycée.\nI used to play with a couple of boys.\tJ'avais l'habitude de jouer avec un couple de garçons.\nI used to take a walk in the morning.\tJ'avais l'habitude de faire une promenade au cours de la matinée.\nI want a person who can speak French.\tJe veux quelqu'un qui sache parler français.\nI want credit for the work I've done.\tJe veux de la reconnaissance pour le travail que j'ai effectué.\nI want my money returned immediately.\tJe veux que mon argent me soit restitué sur-le-champ.\nI want to be someone you can turn to.\tJe veux être quelqu'un vers qui l'on se tourne.\nI want to buy a more expensive watch.\tJe veux acheter une montre plus chère.\nI want to buy a more expensive watch.\tJe veux acheter une montre plus onéreuse.\nI want to have a telephone installed.\tJe veux faire installer le téléphone.\nI want to know absolutely everything.\tJe veux absolument tout savoir.\nI want to know who is coming with us.\tJe veux savoir qui vient avec nous.\nI want to know why Tom couldn't come.\tJe veux savoir pourquoi Tom n'a pas pu venir.\nI want to know why you're doing this.\tJe veux savoir pourquoi tu fais ça.\nI want to know why you're doing this.\tJe veux savoir pourquoi vous faites ceci.\nI want to make sure it's good enough.\tJe veux m'assurer que c'est assez bon.\nI want to make sure nothing's broken.\tJe veux vérifier que c'est pas cassé.\nI want to share my thoughts with you.\tJ'aimerais vous faire part de mes réflexions.\nI want to spend all my time with you.\tJe veux passer tout mon temps avec vous.\nI want to spend all my time with you.\tJe veux passer tout mon temps avec toi.\nI want to take a closer look at that.\tJe veux inspecter cela de plus près.\nI want to talk to you about tomorrow.\tJe veux vous parler à propos de demain.\nI want to talk to you about tomorrow.\tJe veux te parler à propos de demain.\nI want to tell you about my problems.\tJe veux te parler de mes problèmes.\nI want to tell you about my problems.\tJe veux vous parler de mes problèmes.\nI want you focus on the here and now.\tJe veux que tu te concentres sur ici et maintenant.\nI want you to come somewhere with me.\tJe veux que tu m'accompagnes quelque part.\nI want you to come somewhere with me.\tJe veux que vous m'accompagniez quelque part.\nI want you to fly to Boston tomorrow.\tJe veux que tu voles vers Boston, demain.\nI want you to fly to Boston tomorrow.\tJe veux que vous voliez vers Boston, demain.\nI want you to get started right away.\tJe veux que vous vous y mettiez immédiatement.\nI want you to get started right away.\tJe veux que vous vous y mettiez sur-le-champ.\nI want you to get started right away.\tJe veux que tu t'y mettes immédiatement.\nI want you to get started right away.\tJe veux que tu t'y mettes sur-le-champ.\nI want you to tell me how to do this.\tJe veux que tu me dises comment faire ceci.\nI want you to tell me how to do this.\tJe veux que vous me disiez comment faire ceci.\nI was a volunteer for two afternoons.\tJ'ai été bénévole pendant deux après-midis.\nI was able to accomplish a lot today.\tJ'ai été en mesure de réaliser beaucoup, aujourd'hui.\nI was caught in the rain and got wet.\tJ'ai été trempé par la pluie.\nI was caught in the rain and got wet.\tJ’ai été pris sous la pluie, et suis tout trempé.\nI was deeply impressed by his speech.\tJ'étais très impressionné par son discours.\nI was deeply impressed by his speech.\tJe fus très impressionné par son discours.\nI was given a nice watch by my uncle.\tMon oncle m'a donné une jolie montre.\nI was in the hospital a few days ago.\tJ'étais à l'hôpital il y a quelques jours.\nI was involved in a traffic accident.\tJ'ai été impliqué dans un accident de la circulation.\nI was more than a little embarrassed.\tJ'étais plus que mal à l'aise.\nI was never so humiliated in my life.\tJe n'ai jamais été aussi humiliée de ma vie.\nI was scared that you might leave me.\tJ'avais peur que tu me quittes.\nI was scared to be alone in the dark.\tJ'avais peur d'être toute seule dans le noir.\nI was so sure this was what I wanted.\tJ'étais sûr que c'était ce que je voulais.\nI was so sure this was what I wanted.\tJ'étais sûre que c'était ce que je voulais.\nI was the worst student in the class.\tJ'étais le pire étudiant de la classe.\nI was the worst student in the class.\tJ'étais la pire étudiante de la classe.\nI was thinking about getting married.\tJ'étais en train de penser à me marier.\nI was thinking about getting married.\tJ'étais en train de penser au mariage.\nI was wondering if you could help me.\tJe me demandais si vous pouviez m'aider.\nI watched TV for two hours yesterday.\tJ'ai regardé la télévision pendant deux heures, hier.\nI watched a Swedish movie last night.\tJ'ai regardé un film suédois la nuit dernière.\nI went for a walk to try to sober up.\tJ'ai fait une promenade pour essayer de me calmer.\nI went to Europe by way of Anchorage.\tJe suis allé en Europe via Anchorage.\nI went to the bank to take out money.\tJ'allai à la banque pour retirer de l'argent.\nI went to the bank to take out money.\tJe suis allé à la banque pour prendre de l'argent.\nI went to the bank to take out money.\tJe me suis rendu à la banque pour retirer de l'argent.\nI went to the movies with my brother.\tJe suis allée au cinéma avec mon frère.\nI will be waiting for you in my room.\tJe t'attendrai dans ma chambre.\nI will come to your country some day.\tJe viendrai dans ton pays un de ces jours.\nI will do whatever you tell me to do.\tJe ferai tout ce que vous me demanderez.\nI will finish this work by 5 o'clock.\tJe vais finir ce travail à 5 h 00.\nI will go out if it is fine tomorrow.\tJe sortirai demain s'il fait beau.\nI will have to be away for some time.\tJe vais devoir m'absenter quelque temps.\nI will stand by you whatever happens.\tJe serai à tes côtés quoi qu'il arrive.\nI will wait here until he comes back.\tJ'attendrai ici jusqu'à ce qu'il revienne.\nI will wait here until he comes back.\tJe vais attendre ici qu'il revienne.\nI wish I could make up for lost time.\tJ'aimerais pouvoir rattraper le temps perdu.\nI wish I could take back what I said.\tSi seulement je pouvais reprendre ce que j'ai dit.\nI wish I could understand you better.\tJ'aurais aimé mieux vous comprendre.\nI wish you could be a little quieter.\tSi seulement tu pouvais être un peu plus tranquille !\nI won't be getting married this year.\tJe ne me marierai pas cette année.\nI won't quit, no matter what you say.\tJe ne renoncerai pas, peu importe ce que tu dis.\nI wonder how long it's going to take.\tJe me demande combien de temps ça va prendre.\nI wonder if Tom is trying to kill me.\tJe me demande si Tom essaie de me tuer.\nI wonder if anything happened to him.\tJe me demande si quoi que ce soit lui est arrivé.\nI wonder if what I wrote was correct.\tJe me demande si ce que j'ai écrit était correct.\nI wonder what they're laughing about.\tJe me demande ce qui les fait rire.\nI worked hard all day long yesterday.\tJ'ai travaillé dur toute la journée d'hier.\nI would like an air-conditioned room.\tJe voudrais une chambre avec air conditionné.\nI would like the least expensive one.\tJe voudrais le moins cher.\nI would like the least expensive one.\tJe voudrais la moins chère.\nI would like to have a cup of coffee.\tJ'aimerais prendre une tasse de café.\nI would like you to go instead of me.\tJe préférerais que tu y ailles au lieu de moi.\nI would rather have a cat than a dog.\tJ'aimerais avoir un chat plutôt qu'un chien.\nI would rather not go shopping alone.\tJe préférerais ne pas aller faire les courses seul.\nI would rather stay home than go out.\tJ'aurais dû rester à la maison plutôt que de sortir.\nI wouldn't bet on that if I were you.\tJe ne parierais pas sur ça si j'étais toi.\nI wouldn't want to miss your concert.\tJe ne voudrais pas rater votre concert.\nI'd like to ask a few more questions.\tJ'aimerais poser quelques questions supplémentaires.\nI'd like to ask a few more questions.\tJ'aimerais poser quelques questions additionnelles.\nI'd like to find somebody to talk to.\tJ'aimerais trouver quelqu'un à qui parler.\nI'd like to find somebody to talk to.\tJ'aimerais trouver quelqu'un avec qui m'entretenir.\nI'd like to get off at the next stop.\tJ'aimerais descendre au prochain arrêt.\nI'd like to have ketchup on the side.\tJ'aimerais avoir le ketchup à part.\nI'd like to have ketchup on the side.\tJe voudrais avoir du ketchup à part.\nI'd like to have these pants cleaned.\tJ'aimerais que l'on nettoie ce pantalon.\nI'd like to introduce you to my wife.\tJ'aimerais vous présenter à mon épouse.\nI'd like to introduce you to my wife.\tJ'aimerais te présenter à ma femme.\nI'd like to spend more time with you.\tJ'aimerais passer davantage de temps avec vous.\nI'd like to spend more time with you.\tJ'aimerais passer davantage de temps avec toi.\nI'd like to talk with you in private.\tJ'aimerais avoir un mot avec toi en privé.\nI'd like to thank you all for coming.\tJ'aimerais tous vous remercier d'être venus.\nI'd like to thank you all for coming.\tJ'aimerais toutes vous remercier d'être venues.\nI'd like you to meet my brother, Tom.\tJ'aimerais que vous rencontriez mon frère, Tom.\nI'd love to find out why she said so.\tJ'aimerais bien découvrir pourquoi elle a ainsi parlé.\nI'd rather do this without your help.\tJe préférerais le faire sans ton aide.\nI'd rather do this without your help.\tJe préférerais le faire sans votre aide.\nI'd rather stay home than go fishing.\tJe préférerais rester à la maison que d'aller pêcher.\nI'd really rather be alone right now.\tJe préfèrerais vraiment être seule, à cet instant.\nI'd really rather be alone right now.\tJe préfèrerais vraiment être seul, à cet instant.\nI'll be fine if I take a little rest.\tÇa ira si je me repose un peu.\nI'll be sixteen years old next month.\tJ'aurai seize ans le mois prochain.\nI'll come back home as soon as I can.\tJe reviendrai aussitôt que je peux.\nI'll do everything you tell me to do.\tJe ferai tout ce que vous me dites de faire.\nI'll give you a good piece of advice.\tJe vous donnerai un bon conseil.\nI'll give you a good piece of advice.\tJe te donnerai un bon conseil.\nI'll give you a piece of good advice.\tJe te donnerai un bon conseil.\nI'll give you money if you need some.\tJe vais vous donner de l'argent si vous en avez besoin.\nI'll leave it up to your imagination.\tJe laisse cela à votre imagination.\nI'll leave it up to your imagination.\tJe laisse cela à ton imagination.\nI'll see you tomorrow at the library.\tJe te vois demain à la bibliothèque.\nI'll send someone up to help you now.\tJe vais t'envoyer quelqu'un pour t'aider maintenant.\nI'll set the alarm for seven o'clock.\tJe vais mettre l'alarme sur sept heures.\nI'll take care of your child tonight.\tJe surveillerai ton gosse, ce soir.\nI'll teach you what you need to know.\tJe vous enseignerai ce que vous avez besoin de savoir.\nI'll teach you what you need to know.\tJe t'enseignerai ce que tu as besoin de savoir.\nI'll teach you what you need to know.\tJe vous apprendrai ce qu'il vous faut connaître.\nI'll teach you what you need to know.\tJe t'apprendrai ce qu'il te faut connaître.\nI'll think about it over the weekend.\tJ'y réfléchirai au cours du week-end.\nI'm adding the finishing touches now.\tJ'ajouterai la touche finale.\nI'm adding the finishing touches now.\tJe suis en train d'ajouter les touches finales.\nI'm afraid this data is not reliable.\tJ'ai bien peur que ces données ne soient pas fiables.\nI'm afraid you have the wrong number.\tVous vous êtes trompé de numéro.\nI'm afraid you have the wrong number.\tJe crains que vous n'ayez le mauvais numéro.\nI'm always forgetting people's names.\tJ'oublie toujours les noms des gens.\nI'm always forgetting people's names.\tJ 'oublie toujours le nom des gens.\nI'm getting tired of your complaints.\tJ'en ai marre de vos plaintes.\nI'm getting tired of your complaints.\tJ'en ai marre de tes plaintes.\nI'm glad to be the one who tells you.\tJe me réjouis d'être celui qui te le dit.\nI'm glad to be the one who tells you.\tJe me réjouis d'être celui qui vous le dit.\nI'm glad to be the one who tells you.\tJe me réjouis d'être celle qui te le dit.\nI'm glad to be the one who tells you.\tJe me réjouis d'être celle qui vous le dit.\nI'm glad to be the one who tells you.\tJe me réjouis d'être celle qui te l'annonce.\nI'm glad to be the one who tells you.\tJe me réjouis d'être celui qui te l'annonce.\nI'm glad to be the one who tells you.\tJe me réjouis d'être celle qui vous l'annonce.\nI'm glad to be the one who tells you.\tJe me réjouis d'être celui qui vous l'annonce.\nI'm glad you could come to the party.\tJe suis content que tu aies pu venir à la fête.\nI'm going to Boston for three months.\tJe vais à Boston pour trois mois.\nI'm going to ask you to do your duty.\tJe vais te demander de faire ton devoir.\nI'm going to ask you to do your duty.\tJe vais vous demander de faire votre devoir.\nI'm going to be late for the meeting.\tJe vais être en retard pour la réunion.\nI'm going to head back to the office.\tJe vais retourner travailler au bureau.\nI'm going to my room, so I can study.\tJe vais dans ma chambre pour pouvoir étudier.\nI'm going to need someone to help me.\tJe vais avoir besoin de quelqu'un pour m'aider.\nI'm going to see Mary this afternoon.\tJ'ai l'intention de voir Mary cet après-midi.\nI'm going to take care of it for you.\tJe vais y faire attention pour toi.\nI'm going to take care of it for you.\tJe vais m'en occuper pour toi.\nI'm halfway through this crime novel.\tJe suis à la moitié de ce roman policier.\nI'm halfway through this crime novel.\tJe suis à mi-chemin de ce roman policier.\nI'm having a hard time concentrating.\tJ'ai du mal à me concentrer.\nI'm looking for a gift for my friend.\tJe cherche un cadeau à offrir à mon ami.\nI'm looking forward to the next time.\tJe suis impatient de la prochaine fois.\nI'm looking forward to the next time.\tJe suis impatiente de la prochaine fois.\nI'm not accustomed to such treatment.\tJe ne suis pas habitué à un tel traitement.\nI'm not discounting that possibility.\tJe n'écarte pas cette possibilité.\nI'm not going to the movies tomorrow.\tDemain, je ne vais pas au cinéma.\nI'm not going to the movies tomorrow.\tJe n'irai pas au cinéma, demain.\nI'm not interested in a relationship.\tJe ne suis pas intéressé par une relation.\nI'm not interested in a relationship.\tJe ne suis pas intéressée par une relation.\nI'm not leaving the two of you alone.\tJe ne vous laisse pas seuls tous les deux.\nI'm not leaving the two of you alone.\tJe ne vous laisse pas seules toutes les deux.\nI'm not surprised you don't remember.\tJe ne suis pas surpris que vous ne vous en souveniez pas.\nI'm not surprised you don't remember.\tJe ne suis pas surprise que vous ne vous en souveniez pas.\nI'm not surprised you don't remember.\tJe ne suis pas surpris que tu ne t'en souviennes pas.\nI'm not surprised you don't remember.\tJe ne suis pas surprise que tu ne t'en souviennes pas.\nI'm not the only one who wants to go.\tJe ne suis pas le seul à vouloir y aller.\nI'm not the only one who wants to go.\tJe ne suis pas la seule qui veut y aller.\nI'm on good terms with the neighbors.\tJ'ai de bonnes relations avec mes voisins.\nI'm only doing what needs to be done.\tJe ne fais que ce qu'il est nécessaire de faire.\nI'm pleased with my new bathing suit.\tJe suis content de ma nouvelle veste.\nI'm proud of the work I've done here.\tJe suis fière du travail que j'ai fait ici.\nI'm proud of the work I've done here.\tJe suis fière du travail que j'ai accompli ici.\nI'm proud of the work I've done here.\tJe suis fier du travail que j'ai fait ici.\nI'm proud of the work I've done here.\tJe suis fier du travail que j'ai accompli ici.\nI'm really not interested in history.\tJe ne suis vraiment pas intéressé par l'histoire.\nI'm really not interested in history.\tJe ne suis vraiment pas intéressée par l'histoire.\nI'm really not up on recent TV shows.\tJe ne m'y connais pas vraiment en émissions de télévision récentes.\nI'm really surprised you got a prize.\tJe suis vraiment surpris que vous ayez obtenu un prix.\nI'm really surprised you got a prize.\tJe suis vraiment surprise que vous ayez obtenu un prix.\nI'm scheduled to have lunch with him.\tIl est prévu que je déjeune avec lui.\nI'm so happy to finally be back home.\tJe suis tellement heureux d'être enfin de retour à la maison.\nI'm sorry it had to be done this way.\tJe suis désolé qu'il ait fallu le faire de cette manière.\nI'm sorry it had to be done this way.\tJe suis désolée qu'il ait fallu le faire de cette manière.\nI'm sorry that I didn't reply sooner.\tDésolé de ne pas avoir répondu plus tôt.\nI'm sorry that I didn't reply sooner.\tJe suis désolé de ne pas avoir répondu plus tôt.\nI'm sorry that I didn't reply sooner.\tJe suis désolée de ne pas avoir répondu plus tôt.\nI'm sorry, I dialed the wrong number.\tJe suis désolé, je me suis trompé de numéro.\nI'm sorry, I dialed the wrong number.\tJe suis confus, j'ai composé un mauvais numéro.\nI'm sorry, but I can't stay for long.\tJe m'excuse, mais je ne peux pas rester longtemps.\nI'm sorry, we're completely sold out.\tJe suis désolé, nous avons tout vendu.\nI'm sorry, we're completely sold out.\tJe suis désolée, nous avons tout vendu.\nI'm sorry, we're completely sold out.\tJe suis désolé, nous avons été dévalisés.\nI'm strongly opposed to a compromise.\tJe suis farouchement opposé à un compromis.\nI'm studying economics at university.\tJ'étudie l'économie à l'université.\nI'm sure he mistook me for my sister.\tJe suis sûre qu'il m'a confondue avec ma sœur.\nI'm sure he mistook me for my sister.\tJe suis sûr qu'il m'a confondu avec ma sœur.\nI'm sure it wasn't me who broke this.\tJe suis sûr que ce n'est pas moi qui ai cassé ceci.\nI'm the one who picked those flowers.\tC'est moi-même qui ai cueilli ces fleurs.\nI'm too short to reach the top shelf.\tJe suis trop petit pour atteindre l'étagère du haut.\nI'm used to Tom always yelling at me.\tJe suis habituée à ce que Tom me crie tout le temps dessus.\nI'm used to Tom always yelling at me.\tJe suis habitué à ce que Tom me crie toujours dessus.\nI'm very concerned about her illness.\tJe m'inquiète beaucoup de sa maladie.\nI've always dreamed of living abroad.\tJ'ai toujours rêvé de vivre à l'étranger.\nI've always liked your hair that way.\tJ'ai toujours aimé tes cheveux ainsi mis.\nI've always liked your hair that way.\tJ'ai toujours aimé tes cheveux coiffés de cette manière.\nI've always liked your hair that way.\tJ'ai toujours aimé ta chevelure ainsi mise.\nI've asked you repeatedly to do that.\tJe t'ai demandé plusieurs fois de le faire.\nI've been badly bitten by mosquitoes.\tJ'ai été massivement piqué par les moustiques.\nI've been doing this longer than you.\tJ'ai plus d'expérience que vous.\nI've been looking for it all morning.\tJe l'ai cherché toute la matinée.\nI've been looking for it all morning.\tJe l'ai cherchée toute la matinée.\nI've been looking for you everywhere.\tJe te cherche partout.\nI've been looking for you everywhere.\tJe vous cherche partout.\nI've been on the phone all afternoon.\tJ'ai été au téléphone tout l'après-midi.\nI've been to neither of those places.\tJe n'ai été à aucun de ces endroits.\nI've broken enough rules for one day.\tJ'ai brisé assez de règles pour aujourd'hui.\nI've dealt with this store for years.\tJ'ai fait des affaires avec ce magasin pendant des années.\nI've drunk way too much coffee today.\tJ'ai bu beaucoup trop de café aujourd'hui.\nI've got one brother and two sisters.\tJ'ai un frère et deux sœurs.\nI've just gotten home and had dinner.\tJe viens de rentrer à la maison et de déjeuner.\nI've just gotten home and had dinner.\tJe viens de rentrer à la maison et de dîner.\nI've made this trip a thousand times.\tJ'ai fait ce voyage un millier de fois.\nI've never eaten Chinese food before.\tJe n'ai jamais goûté la nourriture chinoise auparavant.\nI've never eaten Chinese food before.\tJe n'avais jamais mangé de nourriture chinoise auparavant.\nI've never seen my cat act like that.\tJe n'ai jamais vu mon chat agir comme ça.\nI've never seen my cat act like that.\tJe n'ai jamais vu mon chat agir de cette façon.\nI've never seen my cat act like that.\tJe n'ai jamais vu mon chat agir de la sorte.\nI've never thought about that before.\tJe n'y ai jamais songé auparavant.\nIf I could be that guy instead of me.\tSi je pouvais être ce type, au lieu d'être moi.\nIf I pay you a dollar, we'll be even.\tSi je te paye un dollar, nous serons quittes.\nIf I were a bird, I could fly to you.\tSi j'étais un oiseau, je pourrais voler vers toi.\nIf I were a bird, I would fly to you.\tSi j'étais un oiseau, je volerais vers toi.\nIf I were you, I'd follow his advice.\tÀ votre place, je suivrais son conseil.\nIf I were you, I'd follow his advice.\tÀ ta place, je suivrais son conseil.\nIf all else fails, reboot the system.\tSi toute autre mesure échoue, redémarrez le système.\nIf everyone pitches in, we can do it.\tSi tout le monde y met du sien, nous pouvons y arriver.\nIf he comes, tell him to wait for me.\tS’il vient, dites-lui de m’attendre.\nIf that were true, what would you do?\tSi c'était vrai, que feriez-vous ?\nIf that were true, what would you do?\tSi c'était vrai, que ferais-tu ?\nIf you are hungry, why don't you eat?\tSi tu as faim, pourquoi ne manges-tu pas ?\nIf you are hungry, why don't you eat?\tSi vous avez faim, pourquoi ne mangez-vous pas ?\nIf you don't know the answers, guess.\tSi tu ne connais pas les réponses, devine.\nIf you were my wife, I'd hang myself.\tSi tu étais ma femme, je me pendrais.\nIf you'd asked me, I'd have told you.\tSi tu m'avais demandé, je te l'aurais dit.\nIf you'd asked me, I'd have told you.\tSi vous m'aviez demandé, je vous l'auriez dit.\nIf you're wrong, then I'm wrong, too.\tSi vous avez tort, alors, j'ai aussi tort.\nImagine that you have a time machine.\tImagine que tu aies une machine à remonter le temps.\nIn 1975, Angola became a free nation.\tEn 1975, l'Angola est devenu une nation libre.\nIn general, Japanese are hardworking.\tLes Japonais sont généralement travailleurs.\nIn most cases, his answers are right.\tDans la plupart des cas, ses réponses sont bonnes.\nIn space, no one can hear you scream.\tDans l'espace, personne ne peut t'entendre crier.\nIn those days, I went to bed earlier.\tEn ce temps-là, je me couchais plus tôt.\nIs Tom a common name in your country?\tEst-ce que le prénom Tom est un prénom courant dans votre pays?\nIs bungee jumping frightening or fun?\tLe saut à l'élastique, c'est effrayant ou amusant ?\nIs it a military secret or something?\tEst-ce un secret défense, ou quoi ?\nIs it harder to forgive or to forget?\tEst-il plus dur de pardonner ou d'oublier ?\nIs the museum visited by many people?\tLe musée est-il visité par beaucoup de monde ?\nIs the university's library open now?\tLa bibliothèque de l'université est-elle ouverte à l'heure qu'il est ?\nIs there a problem with your hearing?\tAvez-vous un problème auditif ?\nIs there a problem with your hearing?\tAs-tu un problème auditif ?\nIs there a reason that you're asking?\tY a-t-il une raison à ta demande ?\nIs there a reason that you're asking?\tY a-t-il une raison à votre demande ?\nIs there any other way I can pay you?\tY a-t-il un autre moyen par lequel je puisse vous payer ?\nIs there any other way I can pay you?\tY a-t-il un autre moyen par lequel je puisse te payer ?\nIs there any other way I can pay you?\tY a-t-il un autre moyen par lequel je puisse vous rétribuer ?\nIs there any other way I can pay you?\tY a-t-il un autre moyen par lequel je puisse te rétribuer ?\nIs there anybody here you don't know?\tY a-t-il qui que ce soit ici que vous ne connaissiez pas ?\nIs there anybody here you don't know?\tY a-t-il qui que ce soit ici que tu ne connaisses pas ?\nIs there anybody who can drive a car?\tY a-t-il quelqu'un qui puisse conduire la voiture ?\nIs there anyone living in that house?\tQuiconque vit-il dans cette maison ?\nIs there anything we need to discuss?\tY a-t-il quelque chose dont nous avons besoin de discuter ?\nIs there much demand for these goods?\tY a-t-il beaucoup de demande pour ces marchandises ?\nIs there something I can get for you?\tY a-t-il quelque chose que je puisse vous rapporter ?\nIs there something I can get for you?\tY a-t-il quelque chose que je puisse aller te chercher ?\nIs there something you wanted to say?\tY a-t-il quelque chose que vous vouliez dire ?\nIs there something you wanted to say?\tY a-t-il quelque chose que tu voulais dire ?\nIsn't it about time for another beer?\tN'est-il pas temps de prendre une autre bière ?\nIt all started on a hot summer night.\tTout commença par une chaude nuit d'été.\nIt all started on a hot summer night.\tTout a commencé par une chaude nuit d'été.\nIt appears that you are all mistaken.\tIl semble que vous ayez tous tort.\nIt being Sunday, the shop was closed.\tComme c'était dimanche, le magasin était fermé.\nIt can be very cold here even in May.\tIl peut faire très froid ici même en mai.\nIt doesn't surprise me that you know.\tLe fait que tu sois au courant ne me surprend pas.\nIt feels like I've known you forever.\tJ'ai l'impression de te connaître depuis toujours.\nIt happened at a quarter past eleven.\tÇa s'est déroulé à onze heures et quart.\nIt happened at a quarter past eleven.\tÇa s'est produit à onze heures et quart.\nIt happened at a quarter past eleven.\tÇa a eu lieu à onze heures et quart.\nIt happened that I was in Paris then.\tIl advint que je me trouvais alors à Paris.\nIt is amazing that you won the prize.\tC'est génial que tu aies remporté le prix.\nIt is better to give than to receive.\tIl est mieux de donner que de recevoir.\nIt is certain that he will come here.\tIl est certain qu'il viendra ici.\nIt is completely out of the question.\tC'est hors de question.\nIt is not going to rain this evening.\tIl ne va pas pleuvoir ce soir.\nIt is time for me to take a vacation.\tIl est temps pour moi de prendre des vacances.\nIt is up to you to decide what to do.\tÀ toi de décider que faire.\nIt is up to you to decide what to do.\tC'est à toi de décider ce que tu veux faire.\nIt is up to you to decide what to do.\tC'est à toi de décider de ce que tu veux faire.\nIt is up to you to decide what to do.\tC'est à vous de décider ce que vous voulez faire.\nIt is up to you to decide what to do.\tC'est à vous de décider de ce que vous voulez faire.\nIt looks like it's going to be sunny.\tOn dirait qu'il va faire beau.\nIt looks like winter is here to stay.\tOn dirait que l'hiver est là pour rester.\nIt looks like you've lost ten pounds.\tOn dirait que t'as perdu dix livres.\nIt may sound strange, but it is true.\tCela peut paraître étrange, mais c'est la vérité.\nIt must have rained during the night.\tIl a dû pleuvoir durant la nuit.\nIt must weigh about thirty kilograms.\tCela doit peser environ trente kilogrammes.\nIt needs to be perfectly symmetrical.\tÇa doit être parfaitement symétrique.\nIt really annoys me when you do that.\tCela m'agace vraiment quand tu fais ça.\nIt seemed that he was short of money.\tIl semblait qu'il manquait d'argent.\nIt seems that no one knows the truth.\tIl semble que personne ne connaisse la vérité.\nIt seems that something has happened.\tIl semble que quelque chose soit survenu.\nIt seems that something has happened.\tIl semble que quelque chose soit arrivé.\nIt seems that something has happened.\tIl semble que quelque chose se soit produit.\nIt seems to me that we should go now.\tIl me semble que nous devrions partir à présent.\nIt takes time to heal from a divorce.\tCela prend du temps de se remettre d'un divorce.\nIt took me several hours to write it.\tÇa m'a pris plusieurs heures de l'écrire.\nIt took me some time to persuade her.\tIl m'a fallu du temps pour la convaincre.\nIt took us two hours to get to Tokyo.\tCela nous prit deux heures d'atteindre Tokyo.\nIt turned out that he was her father.\tIl ressortit qu'il était son père.\nIt was broad daylight when I woke up.\tIl faisait grand jour quand je me suis réveillé.\nIt was in Kyoto that I first met her.\tJe l'ai rencontré pour la première fois à Kyoto.\nIt was in London that I last saw her.\tC'était à Londres que je l'ai vue pour la dernière fois.\nIt was like something out of a movie.\tC'était comme sorti d'un film.\nIt was made to look like an accident.\tC'était fait pour ressembler à un accident.\nIt was so cold that I couldn't sleep.\tIl faisait si froid que je n'ai pas pu dormir.\nIt was so cold that he was shivering.\tIl faisait si froid qu'il frissonnait.\nIt was surprising that she said that.\tIl était surprenant qu'elle ait dit ça.\nIt was the perfect moment for a kiss.\tC'était le moment idéal pour un baiser.\nIt was too nice a day to stay inside.\tLe temps était trop beau pour rester à l'intérieur.\nIt wasn't as expensive as I expected.\tCe n'était pas aussi cher que ce à quoi je m'attendais.\nIt will cost you more to go by plane.\tSi vous prenez l'avion c'est plus cher !\nIt will cost you more to go by plane.\tEn avion ça te coûtera plus cher.\nIt won't be long before we can start.\tOn pourra commencer bientôt.\nIt won't be long before we can start.\tCe ne sera pas long avant que nous puissions commencer.\nIt won't take long to finish the job.\tÇa ne prendra pas très longtemps pour finir ce travail.\nIt's a gross distortion of the truth.\tC'est une grossière déformation de la vérité.\nIt's a pity they're getting divorced.\tC'est dommage qu'ils divorcent.\nIt's a very good newspaper, isn't it?\tC'est un bon journal, n'est-ce pas ?\nIt's about four blocks from my house.\tC'est environ à quatre pâtés de maison de chez moi.\nIt's all just a big misunderstanding.\tTout ça, ce n'est qu'un grand malentendu.\nIt's all right, I won't tell anybody.\tC'est bon, je ne dirai rien à personne.\nIt's bound to happen sooner or later.\tÇa surviendra tôt ou tard.\nIt's easier to have fun than to work.\tIl est plus facile de s'amuser que de travailler.\nIt's easy for monkeys to climb trees.\tIl est aisé pour les singes de grimper aux arbres.\nIt's easy to cut cheese with a knife.\tOn peut facilement couper du fromage avec un couteau.\nIt's fun to learn a foreign language.\tApprendre une langue étrangère est amusant.\nIt's not good to read in a dark room.\tCe n'est pas bon de lire dans une pièce sombre.\nIt's quite likely that he'll be late.\tIl est assez probable qu'il soit en retard.\nIt's rare to find big yards in Japan.\tIl est rare de trouver de grands jardins au Japon.\nIt's so easy when you know the rules.\tC'est si facile lorsque l'on connaît les règles.\nIt's unlikely that our team will win.\tIl est improbable que notre équipe gagne.\nIt's unusual for him to get up early.\tC'est inhabituel pour lui de se lever tôt.\nIt's very hard to get along with him.\tC'est très difficile de s'entendre avec lui.\nJanuary is usually the coldest month.\tJanvier est normalement le mois le plus froid.\nJapan is at peace with her neighbors.\tLe Japon est en paix avec ses voisins.\nJapan is made up of volcanic islands.\tLe Japon est constitué d'îles volcaniques.\nKeep this information under your hat.\tGarde cette information pour toi.\nKeep this information under your hat.\tGarde cette information par devers toi.\nKeep your dog chained up to the tree.\tLaisse ton chien attaché à l'arbre.\nKeep your hands where I can see them.\tLaissez les mains là où je puisse les voir.\nKeep your hands where I can see them.\tLaissez vos mains là où je puisse les voir.\nKeep your hands where I can see them.\tLaisse les mains là où je puisse les voir.\nKeep your hands where I can see them.\tLaisse tes mains là où je puisse les voir.\nKyoto is the former capital of Japan.\tKyoto est l'ancienne capitale du Japon.\nLake Towada is famous for its beauty.\tLe lac Towada est connu pour sa beauté.\nLast winter, I went skiing in Canada.\tL'hiver dernier je suis allé skier au Canada.\nLast winter, I went to Canada to ski.\tJe suis allé skier au Canada l'hiver dernier.\nLearning foreign languages is boring.\tApprendre des langues étrangères, c'est ennuyeux.\nLearning foreign languages is boring.\tC'est ennuyeux d'apprendre les langues étrangères.\nLet me explain to you how this works.\tLaisse-moi t'expliquer comment ça fonctionne.\nLet me help you with those groceries.\tLaissez-moi vous aider avec toutes ces provisions !\nLet me know as soon as he comes back.\tInformez-moi aussitôt qu'il revient.\nLet me know when you get the package.\tFaites-moi savoir quand vous recevrez le paquet.\nLet me tell you my side of the story.\tLaisse-moi te donner ma version de l'histoire.\nLet me tell you my side of the story.\tLaisse-moi t'exposer ma version de l'histoire.\nLet's do this as quickly as possible.\tFaisons ceci le plus vite possible.\nLet's go as soon as it stops raining.\tAllons-y dès qu'il s'arrêtera de pleuvoir.\nLet's go to the flea market tomorrow.\tAllons au marché aux puces, demain !\nLet's leave as soon as Tom gets here.\tPartons dès que Tom arrive.\nLet's leave early in the morning, OK?\tPartons tôt le matin, d'accord ?\nLet's sit down and discuss it calmly.\tAsseyons-nous et discutons-en calmement.\nLet's stop talking and start working.\tArrête de parler et mets-toi à travailler !\nLet's stop talking and start working.\tArrêtez de parler et mettez-vous à travailler !\nLet's take a chance and go for broke.\tTentons notre chance et tentons le tout pour le tout.\nLet's try another place to eat today.\tEssayons un autre endroit pour manger aujourd'hui.\nLet's wait here until she comes back.\tAttendons ici jusqu'à ce qu'elle revienne.\nLiterature teaches us about humanity.\tLa littérature nous enseigne sur l'humanité.\nLogic is obviously your strong point.\tLa logique est clairement ton point fort.\nLook up the words in your dictionary.\tCherchez les mots dans votre dictionnaire.\nLook up the words in your dictionary.\tCherche les mots dans ton dictionnaire.\nLuck plays an important part in life.\tLa chance joue un rôle important, dans la vie.\nLuckily, the weather turned out fine.\tHeureusement, le temps vira au beau.\nMake a wish and blow out the candles.\tFais un vœu et souffle les bougies.\nMany countries depend on agriculture.\tDe nombreux pays dépendent de l'agriculture.\nMany famous artists live in New York.\tDe nombreux artistes connus vivent à New York.\nMany of these things were not needed.\tBeaucoup de ces choses étaient inutiles.\nMany people die in traffic accidents.\tBeaucoup de gens meurent dans des accidents de la circulation.\nMany people work in industrial towns.\tBeaucoup de gens travaillent dans des cités industrielles.\nMany restaurants now have free Wi-Fi.\tDe nombreux restaurants disposent désormais d'une connection WiFi gratuite.\nMary and Alice wore matching outfits.\tMary et Alice portaient des tenues assorties.\nMary looked at herself in the mirror.\tMary se regarda dans le miroir.\nMary requested a raise from her boss.\tMarie a demandé une augmentation à son patron.\nMathematics is basic to all sciences.\tLes mathématiques sont le fondement de toutes les sciences.\nMathematics is basic to all sciences.\tLes mathématiques sont la base de toute science.\nMay I count on you to get me the job?\tPuis-je compter sur vous pour m'avoir le poste ?\nMay I see your driver's license, sir?\tPuis-je voir votre permis de conduire, Monsieur ?\nMay I see your driver's license, sir?\tMonsieur, puis-je voir votre permis de conduire ?\nMay I trouble you to shut the window?\tPuis-je vous prier de fermer la fenêtre ?\nMay the new year bring you happiness!\tPuisse la nouvelle année t'apporter la joie.\nMexico is a country in North America.\tLe Mexique est un état d'Amérique du Nord.\nMore and more people offered to help.\tDe plus en plus de gens offrirent leur aide.\nMore and more people offered to help.\tDe plus en plus de gens proposèrent leur aide.\nMost elevators operate automatically.\tLa plupart des ascenseurs fonctionnent automatiquement.\nMost young people have mobile phones.\tLa plupart des jeunes ont un téléphone portable.\nMother gets up earliest in my family.\tDans ma famille, c'est ma mère qui se lève le plus tôt.\nMother went shopping with my brother.\tMère est partie faire des courses avec mon frère.\nMother went shopping with my brother.\tMère est allée faire des courses avec mon frère.\nMy aunt grows tomatoes in her garden.\tMa tante fait pousser des tomates dans son jardin.\nMy brother bought an electric guitar.\tMon frère s'est acheté une guitare électrique.\nMy computer suddenly stopped working.\tMon ordinateur a soudain cessé de fonctionner.\nMy daughter likes to play with dolls.\tMa fille aime jouer à la poupée.\nMy doctor told me to give up smoking.\tMon médecin m'a dit d'arrêter de fumer.\nMy father doesn't drink so much sake.\tMon père ne boit pas trop de saké.\nMy father doesn't drink so much sake.\tMon père ne boit pas tellement de saké.\nMy father has a personality disorder.\tMon père souffre d'un trouble de la personnalité.\nMy father is busy as a bee every day.\tMon père est, chaque jour, affairé comme une abeille.\nMy father is busy as a bee every day.\tMon père est, chaque jour, affairé tel une abeille.\nMy father is to appear on TV tonight.\tMon père doit passer à la télé, ce soir.\nMy father is too busy to take a walk.\tMon père est trop occupé pour aller se balader.\nMy father makes good use of his time.\tMon père fait bon usage de son temps.\nMy friend remembered which way to go.\tMon ami s’est souvenu où aller.\nMy grandma injured her leg in a fall.\tMa grand-mère s'est blessée la jambe en chutant.\nMy grandma injured her leg in a fall.\tMa grand-mère s'est blessée à la jambe en tombant.\nMy grandmother became sick last week.\tMa grand-mère est tombée malade la semaine dernière.\nMy grandmother passed away last year.\tMa grand-mère est décédée l'année dernière.\nMy house is on the outskirts of town.\tMa maison est en bordure de la ville.\nMy house was robbed while I was away.\tMa maison a été cambriolée pendant mon absence.\nMy mom likes my brother more than me.\tMa mère aime davantage mon frère que moi.\nMy mom likes my brother more than me.\tMa mère aime davantage mon frère que je ne le fais.\nMy mother anticipates all my desires.\tMa mère anticipe tous mes désirs.\nMy mother is anxious about my future.\tMa mère est anxieuse à propos de mon avenir.\nMy mother is making my father a cake.\tMa mère fait un gâteau pour mon père.\nMy mother seldom watches TV at night.\tMa mère regarde rarement la télévision le soir.\nMy sister is always weighing herself.\tMa sœur est toujours en train de se peser.\nMy sister is my daughter's godmother.\tMa sœur est la marraine de ma fille.\nMy sister often looks after the baby.\tMa sœur s'occupe souvent du bébé.\nMy son can count up to a hundred now.\tMon fils peut compter jusqu'à 100 maintenant.\nMy son still believes in Santa Claus.\tMon fils croit toujours au Père Noël.\nMy teacher is a stickler for grammar.\tMon professeur est pointilleux sur la grammaire.\nMy teacher put in a good word for me.\tMon professeur mit un mot de recommandation pour moi.\nMy uncle has made me what I am today.\tMon oncle a fait de moi ce que je suis aujourd'hui.\nMy uncle lived abroad for many years.\tMon oncle a vécu à l'étranger pendant de nombreuses années.\nMy watch is more accurate than yours.\tMa montre est plus précise que la tienne.\nMy wife will be glad to see you, too.\tMa femme sera heureuse de te voir, également.\nMy younger brother is still sleeping.\tMon petit frère dort encore.\nMy younger sister didn't say \"hello.\"\tMa petite sœur n'a pas dit bonjour.\nNecessity is the mother of invention.\tLa nécessité est mère de l'invention.\nNeedless to say, he never came again.\tInutile de dire qu'il n'est jamais revenu.\nNeither of the two answers are right.\tAucune de ces deux réponses n'est correcte.\nNew stamps will be issued next month.\tDe nouveaux timbres seront émis le mois prochain.\nNight watchmen drink a lot of coffee.\tLes gardiens de nuit boivent beaucoup de café.\nNo attention was paid to his warning.\tPersonne ne prêta attention à son avertissement.\nNo matter who says so, it's not true.\tPeu importe qui dit cela, ce n'est pas vrai.\nNo one I know writes letters anymore.\tPersonne que je connaisse n'écrit plus de lettres.\nNo one ever escapes from this prison.\tPersonne ne s'évade jamais de cette prison.\nNo one has heard Tom say Mary's name.\tPersonne n'a entendu Tom dire le nom de Mary.\nNo one seems to listen to us anymore.\tPersonne ne semble plus nous écouter.\nNo one's coming to our party tonight.\tPersonne ne vient à notre soirée d'aujourd'hui.\nNo wonder they turned down her offer.\tCe n'est pas étonnant qu'ils aient refusé son offre.\nNo wonder they turned down her offer.\tRien d'étonnant à ce qu'elles aient refusé l'offre qu'elle leur faisait.\nNo wonder they turned down her offer.\tRien d'étonnant à ce qu'elles aient refusé sa proposition.\nNo words can relieve her deep sorrow.\tAucune parole ne peut soulager son profond chagrin.\nNobody could give the correct answer.\tPersonne n'a trouvé la bonne réponse.\nNone of my classmates live near here.\tAucun de mes camarades de classe ne vit près d'ici.\nNone of us plan to go swimming today.\tAucun d'entre nous n'envisage d'aller à la piscine aujourd'hui.\nNot every country belongs to the U.N.\tTous les pays n'appartiennent pas à l'ONU.\nNot knowing what to do, I called her.\tNe sachant pas quoi faire, je l'ai appelée.\nNothing but peace can save the world.\tSeule la paix peut sauver le monde.\nNothing is more valuable than health.\tRien n'est plus précieux que la santé.\nNothing out of the ordinary happened.\tRien d'extraordinaire ne s'est produit.\nNothing out of the ordinary happened.\tRien d'extraordinaire n'a eu lieu.\nNothing out of the ordinary happened.\tRien d'extraordinaire n'est survenu.\nNothing out of the ordinary happened.\tRien d'extraordinaire n'est arrivé.\nNow that we're alone, let's have fun.\tMaintenant que nous sommes seuls, amusons-nous !\nNow that we're alone, let's have fun.\tMaintenant que nous sommes seules, amusons-nous !\nOf all my friends, he is the closest.\tDe tous mes amis, il est le plus proche.\nOf the two girls, she is the younger.\tDes deux filles, elle est la plus jeune.\nOn a clear day, you can see Mt. Fuji.\tPar beau temps, on peut voir le Mt Fuji.\nOn hearing the news, she turned pale.\tEn entendant les nouvelles, elle pâlit.\nOn his shirt there was a sauce stain.\tSur sa chemise se trouvait une tache de sauce.\nOne cannot embrace the unembraceable.\tOn ne peut étreindre l'inétreignable.\nOne must do one's best in everything.\tOn doit faire de son mieux en tout.\nOne of the apples fell to the ground.\tL'une des pommes tomba au sol.\nOne of the apples fell to the ground.\tL'une des pommes tomba par terre.\nOne of these eggs hasn't hatched yet.\tL'un de ces œufs n'a pas encore éclos.\nOne, three, and five are odd numbers.\t1, 3 et 5 sont des nombres impairs.\nOnly my mother really understands me.\tSeule ma mère me comprend vraiment.\nOsaka is Japan's second biggest city.\tOsaka est la deuxième plus grande ville du Japon.\nOsaka is Japan's second largest city.\tOsaka est la deuxième plus grande ville du Japon.\nOur boat approached the small island.\tNotre bateau s'approcha de la petit île.\nOur company has a long, long history.\tNotre entreprise a une très longue histoire.\nOur dog was nearly run over by a car.\tNotre chien a failli être écrasé par une voiture.\nOur football team has a good defense.\tNotre équipe de football a une bonne défense.\nOur school library is small, but new.\tNotre bibliothèque scolaire est petite, mais neuve.\nOur train went through a long tunnel.\tNotre train est passé dans un long tunnel.\nPatience is a rare virtue these days.\tLa patience est une vertu rare de nos jours.\nPeel and finely chop the horseradish.\tPelez et hachez finement le raifort.\nPeople are not always what they seem.\tLes gens ne sont pas toujours ce qu'ils paraissent être.\nPeople shouldn't stare at foreigners.\tOn ne doit pas dévisager les étrangers.\nPerhaps we should discuss this later.\tPeut-être devrions-nous discuter de ceci plus tard.\nPicasso painted this picture in 1950.\tPicasso a peint ce tableau en 1950.\nPlease choose a more secure password.\tVeuillez choisir un mot de passe davantage sécurisé.\nPlease come again in three days time.\tS'il vous plaît revenez dans trois jours.\nPlease don't forget to shut the door.\tS'il te plait, n'oublie pas de fermer la porte.\nPlease don't leave me here by myself.\tS'il te plaît, ne me laisse pas toute seule ici.\nPlease don't leave me here by myself.\tS'il te plaît, ne me laisse pas tout seul ici.\nPlease don't leave me here by myself.\tS'il vous plaît, ne me laissez pas toute seule ici.\nPlease don't leave me here by myself.\tS'il vous plaît, ne me laissez pas tout seul ici.\nPlease feel free to ask me questions.\tN'hésite pas à me poser des questions.\nPlease feel free to make suggestions.\tN'hésitez pas à faire des suggestions.\nPlease follow the nurse's directions.\tVeuillez suivre les instructions de l'infirmière.\nPlease follow the nurse's directions.\tMerci de vous conformer aux recommandations de l'infirmière.\nPlease hurry. I don't have all night.\tS'il te plaît, dépêche-toi ! Je n'ai pas toute la nuit !\nPlease hurry. I don't have all night.\tS'il vous plaît, dépêchez-vous ! Je n'ai pas toute la nuit !\nPlease move your bicycle out of here.\tBougez votre vélo de là, s'il vous plaît !\nPlease move your bicycle out of here.\tBouge ton vélo de là, s'il te plaît !\nPlease say hello to your wife for me.\tDis bonjour à ta femme de ma part, s'il te plaît.\nPlease send me a picture of yourself.\tS'il vous plaît envoyez-moi une photo de vous.\nPlease send me a picture of yourself.\tVeuillez m'envoyer une photo de vous.\nPlease send me a picture of yourself.\tEnvoie-moi une photo de toi, s'il te plait.\nPlease send me your latest catalogue.\tS'il vous plaît, pouvez-vous m'envoyer votre dernier catalogue ?\nPlease write to me from time to time.\tÉcris-moi de temps en temps, s'il te plait.\nPlease write your name with a pencil.\tÉcrivez votre nom avec un crayon s'il vous plaît.\nPopularity has nothing to do with it.\tÇa n’a rien à voir avec la popularité.\nPrices these days are extremely high.\tLes prix sont de nos jours extrêmement élevés.\nPsychology deals with human emotions.\tLa psychologie se penche sur les émotions humaines.\nRabbits are extremely social animals.\tLes lapins sont des animaux extrêmement sociaux.\nRabid dogs usually foam at the mouth.\tLes chiens enragés ont habituellement les babines qui écument.\nRain prevented us from taking a walk.\tLa pluie nous a empêchés d'aller nous promener.\nRecently, I don't have much appetite.\tJe n'ai pas vraiment d'appétit dernièrement.\nRecently, I moved to a new apartment.\tRécemment, j'ai emménagé dans un nouvel appartement.\nRepetition is the mother of learning.\tRépétition est mère d'apprentissage.\nRoll up your sleeves and get to work.\tRemettez-vous tout de suite au travail.\nSalmon lay their eggs in fresh water.\tLe saumon pond ses œufs en eau douce.\nSchool begins the day after tomorrow.\tL'école commence après-demain.\nSchool starts in September in Europe.\tL'école commence en septembre en Europe.\nSchool starts in September in Europe.\tLes cours commencent en septembre en Europe.\nSeoul is the capitаl of South Korea.\tSéoul est la capitale de la Corée du Sud.\nSeveral animals escaped from the zoo.\tPlusieurs animaux s'échappèrent du zoo.\nSeveral animals escaped from the zoo.\tPlusieurs animaux se sont échappés du zoo.\nSeveral students came to the library.\tPlusieurs étudiants sont venus à la bibliothèque.\nSeveral students came to the library.\tPlusieurs élèves sont venus à la bibliothèque.\nShe accused me of stealing her money.\tElle m'a accusé de lui avoir volé son argent.\nShe advised him to come back at once.\tElle lui conseilla de revenir sans tarder.\nShe advised him to come back at once.\tElle lui a conseillé de revenir sans tarder.\nShe advised him to come back at once.\tElle lui conseilla de revenir immédiatement.\nShe advised him to come back at once.\tElle lui a conseillé de revenir immédiatement.\nShe advised him to come back at once.\tElle lui conseilla de revenir tout de suite.\nShe advised him to come back at once.\tElle lui a conseillé de revenir tout de suite.\nShe advised him to get more exercise.\tElle lui conseilla de faire davantage d'exercice.\nShe advised him to get more exercise.\tElle lui a conseillé de faire davantage d'exercice.\nShe advised him to keep his promises.\tElle lui conseilla de tenir ses promesses.\nShe advised him to keep his promises.\tElle lui a conseillé de tenir ses promesses.\nShe advised him to take the medicine.\tElle lui conseilla de prendre le remède.\nShe advised him to take the medicine.\tElle lui a conseillé de prendre le remède.\nShe advised him to visit that museum.\tElle lui a conseillé de visiter ce musée.\nShe advised him where he should stay.\tElle lui conseilla où il devrait séjourner.\nShe advised him where he should stay.\tElle lui a conseillé où il devrait séjourner.\nShe advises him on technical matters.\tElle le conseille sur des affaires techniques.\nShe always wears fashionable clothes.\tElle porte toujours des vêtements à la mode.\nShe and I have been married 30 years.\tNous avons été mariés pendant 30 ans.\nShe apologized to him for being late.\tElle lui présenta ses excuses pour son retard.\nShe apologized to him for being late.\tElle lui a présenté ses excuses pour son retard.\nShe appears to have a lot of friends.\tElle semble avoir beaucoup d'amis.\nShe appears to have a lot of friends.\tElle semble avoir beaucoup d'amies.\nShe argued with him and then hit him.\tElle s'est disputée avec lui puis l'a frappé.\nShe arranged the flowers beautifully.\tElle a magnifiquement arrangé les fleurs.\nShe asked him not to leave her alone.\tElle le pria de ne pas la laisser seule.\nShe asked him to come into her house.\tElle lui demanda de venir chez elle.\nShe asked him to give her some money.\tElle lui demanda de lui donner de l'argent.\nShe asked him to give her some money.\tElle lui a demandé de lui donner de l'argent.\nShe attempted to persuade her father.\tElle a essayé de convaincre son père.\nShe attempted to persuade her father.\tElle essaya de convaincre son père.\nShe bought a new house the other day.\tElle a acheté une nouvelle maison l'autre jour.\nShe bought a new house the other day.\tElle a fait l'acquisition d'une nouvelle maison l'autre jour.\nShe complained to him about the food.\tElle se plaignit à lui au sujet de la nourriture.\nShe complained to him about the food.\tElle s'est plainte à lui au sujet de la nourriture.\nShe cooked vegetable soup last night.\tElle a préparé une soupe de légumes hier soir.\nShe couldn't convince him to go home.\tElle ne pourrait pas le convaincre de rentrer chez lui.\nShe couldn't convince him to go home.\tElle ne put le convaincre de rentrer chez lui.\nShe couldn't convince him to go home.\tElle n'a pas pu le convaincre de rentrer chez lui.\nShe couldn't convince him to go home.\tElle ne pourrait pas le convaincre de rentrer à son domicile.\nShe couldn't convince him to go home.\tElle ne put le convaincre de rentrer à son domicile.\nShe couldn't convince him to go home.\tElle n'a pas pu le convaincre de rentrer à son domicile.\nShe declared that she was not guilty.\tElle a déclaré qu'elle n'était pas coupable.\nShe did not answer all the questions.\tElle n'a pas répondu à toutes les questions.\nShe died on a cold night in December.\tElle mourut par une froide nuit de décembre.\nShe disapproved of my trip to Vienna.\tElle a désapprouvé mon voyage à Vienne.\nShe divided the cake between the two.\tElle a partagé le gâteau entre les deux personnes.\nShe doesn't need to go there herself.\tElle n'a pas besoin de s'y rendre en personne.\nShe doesn't need to go there herself.\tElle n'a pas besoin d'y aller en personne.\nShe fell down and broke her left leg.\tElle tomba à terre et se brisa la jambe gauche.\nShe forced him to eat his vegetables.\tElle le força à manger ses légumes.\nShe gave him something cold to drink.\tElle lui donna quelque chose de frais à boire.\nShe gave him something cold to drink.\tElle lui a donné quelque chose de frais à boire.\nShe gives him everything he asks for.\tElle lui donne tout ce qu'il demande.\nShe glanced briefly at the newspaper.\tElle a brièvement jeté un coup d'œil au journal.\nShe got a present from her boyfriend.\tElle reçut un présent de son petit ami.\nShe got a present from her boyfriend.\tElle reçut un présent de son copain.\nShe got a present from her boyfriend.\tElle a reçu un présent de son ami.\nShe got a present from her boyfriend.\tElle a reçu un présent de son copain.\nShe got a present from her boyfriend.\tElle a reçu un présent de son petit copain.\nShe got a present from her boyfriend.\tElle reçut un présent de son petit copain.\nShe got through her work before five.\tElle en a terminé avec son travail avant cinq heures.\nShe got very angry with her children.\tElle se mit très en colère contre ses enfants.\nShe got very angry with the children.\tElle se mit très en colère contre ses enfants.\nShe had a good time talking with him.\tElle a passé du bon temps à converser avec lui.\nShe has about as many stamps as I do.\tElle a à peu près autant de timbres que moi.\nShe has an automatic washing machine.\tElle a une machine à laver automatique.\nShe has an uncle who works in a bank.\tElle a un oncle qui travaille dans une banque.\nShe has been to Hawaii several times.\tElle est allée à Hawaii plusieurs fois.\nShe has just finished washing dishes.\tElle vient de finir de faire la vaisselle.\nShe has legally divorced her husband.\tElle a divorcé de son mari en bonne et due forme.\nShe has not seen him for a long time.\tElle ne l'a pas vu depuis longtemps.\nShe has this big room all to herself.\tElle a cette grande chambre pour elle toute seule.\nShe heard him sing his favorite song.\tElle l'entendit chanter sa chanson préférée.\nShe hit me on the head with a hammer.\tElle m'a tapé sur la tête avec un marteau.\nShe ignored him until he became rich.\tElle l'ignora jusqu'à ce qu'il devienne riche.\nShe ignored him until he became rich.\tElle l'a ignoré jusqu'à ce qu'il devienne riche.\nShe ignored him, which proved unwise.\tElle l'ignora, ce qui s'avéra malavisé.\nShe invited us to her birthday party.\tElle nous invita à sa fête d'anniversaire.\nShe invited us to her birthday party.\tElle nous a invité à sa fête d'anniversaire.\nShe is a very intelligent young lady.\tC'est une jeune femme très intelligente.\nShe is always complaining of her job.\tElle se plaint toujours de son travail.\nShe is buying books in the bookstore.\tElle est en train d'acheter des livres à la librairie.\nShe is devoted to her three children.\tElle est entièrement dévouée à ses trois enfants.\nShe is endowed with a special talent.\tElle est dotée d'un talent spécial.\nShe is getting prettier and prettier.\tElle devient de plus en plus jolie.\nShe is not ashamed of her misconduct.\tElle n'a pas honte de son inconduite.\nShe is wearing an expensive necklace.\tElle porte un collier de prix.\nShe kept me waiting for over an hour.\tElle me laissa attendre plus d'une heure.\nShe knows more than she's letting on.\tElle en sait davantage qu'elle admet.\nShe laid her head down on the pillow.\tElle posa sa tête sur l'oreiller.\nShe looked pleased with her new ring.\tElle a l'air contente de sa nouvelle bague.\nShe looks better in Japanese clothes.\tElle a l'air mieux dans des vêtements japonais.\nShe loves Tom more than she loves me.\tElle aime Tom plus qu'elle ne m'aime.\nShe needs him more than he needs her.\tElle a plus besoin de lui que lui d'elle.\nShe needs him more than he needs her.\tElle a davantage besoin de lui que lui d'elle.\nShe nuzzled up against her boyfriend.\tElle se blottit contre son petit ami.\nShe offered her seat to an old woman.\tElle a offert son siège à une femme agée.\nShe offered her seat to an old woman.\tElle a offert son siège a une vieille femme.\nShe offered her seat to an old woman.\tElle offrit son siège à une femme âgée.\nShe offered her seat to an old woman.\tElle offrit son siège à une vieille femme.\nShe ordered him to clean up his room.\tElle lui ordonna de nettoyer sa chambre.\nShe panicked when she heard the news.\tElle paniqua quand elle entendit la nouvelle.\nShe panicked when she heard the news.\tElle a paniqué en entendant la nouvelle.\nShe panicked when she heard the news.\tElle a paniqué quand elle a entendu les informations.\nShe passed by without glancing at me.\tElle est passée sans même me jeter un regard.\nShe passed the examination with ease.\tElle a réussi l'examen avec facilité.\nShe picked up one of the glass vases.\tElle prit l'un des vases en verre.\nShe played the piano with enthusiasm.\tElle jouait du piano avec enthousiasme.\nShe prepared a wonderful meal for us.\tElle nous a préparé un merveilleux repas.\nShe prepared a wonderful meal for us.\tElle nous prépara un merveilleux repas.\nShe pressed her lips firmly together.\tElle serra fermement les lèvres l'une contre l'autre.\nShe pulled her sweater over her head.\tElle tira son chandail au-dessus de sa tête.\nShe really wanted to tell the secret.\tElle voulait vraiment dévoiler le secret.\nShe removed the papers from the desk.\tElle retira les papiers du bureau.\nShe returned the book to the library.\tElle restitua le livre à la bibliothèque.\nShe returned the book to the library.\tElle a restitué le livre à la bibliothèque.\nShe spoke scarcely a word of English.\tElle parle difficilement un mot d'anglais.\nShe substituted margarine for butter.\tElle a utilisé de la margarine à la place du beurre.\nShe talked him into quitting his job.\tElle l'a persuadé de quitter son emploi.\nShe taught him how to play the piano.\tElle lui enseigna à jouer du piano.\nShe taught him how to play the piano.\tElle lui a enseigné à jouer du piano.\nShe told him all about her childhood.\tElle lui dit tout au sujet de son enfance.\nShe told him all about her childhood.\tElle lui a tout dit au sujet de son enfance.\nShe tried to get whatever she wanted.\tElle a essayé d'avoir tout ce qu'elle voulait.\nShe turned to the left at the corner.\tElle a tourné à gauche à l'angle.\nShe used margarine instead of butter.\tElle a utilisé de la margarine à la place du beurre.\nShe used margarine instead of butter.\tElle a employé de la margarine à la place du beurre.\nShe used margarine instead of butter.\tElle utilisa de la margarine à la place du beurre.\nShe used margarine instead of butter.\tElle employa de la margarine à la place du beurre.\nShe used the car to go to the office.\tElle a pris sa voiture pour aller au bureau.\nShe used to play tennis every Sunday.\tElle jouait au tennis tous les dimanches.\nShe used to pray before going to bed.\tElle avait l'habitude de prier avant de se coucher.\nShe wanted to wash the dirty clothes.\tElle voulait laver les vêtements sales.\nShe was almost knocked down by a car.\tElle faillit être renversée par une voiture.\nShe was close to breaking into tears.\tElle était sur le point de fondre en larmes.\nShe was disappointed with the result.\tElle a été déçue par le résultat.\nShe was obliged to marry the old man.\tElle fut obligée d'épouser le vieil homme.\nShe was only frightened, not injured.\tElle n'a été qu'apeurée, pas blessée.\nShe was satisfied with the new dress.\tLa nouvelle robe lui plut.\nShe was stupid enough to believe him.\tElle fut assez stupide pour le croire.\nShe was supposed to call him at 2:30.\tElle était censée l'appeler à deux heures et demie.\nShe was supposed to call him at 2:30.\tElle était censée l'appeler à quatorze heures trente.\nShe was too tired to keep on working.\tElle était trop fatiguée pour continuer à travailler.\nShe was watching TV when I came home.\tElle regardait la télévision quand je suis rentré à la maison.\nShe whispered something into his ear.\tElle murmura quelque chose à son oreille.\nShe will give you what money she has.\tElle te donnera tout l'argent dont elle dispose.\nShe wore a red scarf around her neck.\tElle portait, autour du cou, une écharpe rouge.\nShe would often come late for school.\tElle arrivait souvent en retard à l'école.\nShe writes to her son every so often.\tElle écrit à son fils de temps en temps.\nShe's accustomed to getting up early.\tElle est habituée à se lever tôt.\nShe's been sick since last Wednesday.\tElle est malade depuis mercredi dernier.\nShe's collecting material for a book.\tElle rassemble du matériel pour un livre.\nShe's maxed out all her credit cards.\tElle a excédé tous les plafonds de ses cartes de crédit.\nShe's not confident about the future.\tElle n'est pas confiante en l'avenir.\nShe's the breadwinner in this family.\tC'est elle le soutien de famille.\nShow me a list of your rates, please.\tMontrez-moi une liste de vos tarifs, s'il vous plaît.\nShow me what you have in your pocket.\tMontre-moi ce que tu as dans la poche.\nSmall family farms were disappearing.\tLes petites fermes familiales disparaissaient.\nSmoking does you more harm than good.\tFumer te fait davantage de mal que de bien.\nSoldiers must carry out their orders.\tLes soldats doivent exécuter leurs ordres.\nSome built houses partly underground.\tQuelques-uns construisirent des maisons partiellement souterraines.\nSome children do not like vegetables.\tCertains enfants n'aiment pas les légumes.\nSome were farmers, some were hunters.\tCertains étaient des fermiers, certains des chasseurs.\nSomeone must have left the door open.\tQuelqu'un a dû laisser la porte ouverte.\nSomeone stole my wallet on the train.\tQuelqu'un a volé mon portefeuille dans le train.\nSomething might have happened to her.\tQuelque chose aurait pu lui arriver.\nSometimes cows are killed by coyotes.\tParfois, des vaches sont tuées par des coyotes.\nSometimes it's too late to apologize.\tIl est parfois trop tard pour présenter ses excuses.\nStand where you are or I'll kill you.\tReste où tu es ou je te tuerai !\nStand where you are or I'll kill you.\tRestez où vous êtes ou je vous tuerai !\nStock prices plunged to a record low.\tLe cours des actions a plongé vers un record à la baisse.\nStop chattering and finish your work.\tArrête de bavarder et termine ton travail.\nStop spending money on stupid things.\tArrêtez de dépenser de l'argent en idioties !\nStop spending money on stupid things.\tArrête de dépenser de l'argent en idioties !\nStop stalling and do what I told you.\tArrête de traîner des pieds et fais ce que je t'ai dit.\nSuddenly, a good idea occurred to me.\tSoudain, il me vint une bonne idée.\nTake the elevator to the fifth floor.\tPrenez l'ascenseur jusqu'au 5e étage.\nThank you for all you've done for us.\tMerci pour tout ce que vous avez fait pour nous.\nThank you for all you've done for us.\tMerci pour tout ce que tu as fait pour nous.\nThank you for granting me permission.\tMerci de m'accorder la permission.\nThank you very much for your present.\tMerci beaucoup pour votre cadeau.\nThank you very much for your present.\tMerci beaucoup pour ton cadeau.\nThanks for showing me how to do that.\tMerci de me montrer comment on fait ça.\nThanks to your help, I could succeed.\tGrâce à ton aide, j'ai pu réussir.\nThat actress is as beautiful as ever.\tCette actrice est toujours aussi belle.\nThat boy denies stealing the bicycle.\tCe garçon nie avoir volé le vélo.\nThat broken vase is my grandfather's.\tCe vase brisé est à mon grand-père.\nThat cheese is made from goat's milk.\tCe fromage est fait avec du lait de chèvre.\nThat cheese is made from goat's milk.\tCe fromage est confectionné à partir de lait de chèvre.\nThat cheese is made from goat's milk.\tCe fromage est préparé à partir de lait de chèvre.\nThat cheese is made from goat's milk.\tCe fromage est préparé à base de lait de chèvre.\nThat cloud looks like a rabbit to me.\tCe nuage ressemble pour moi à un lapin.\nThat gold ring belonged to my mother.\tCette bague d'or appartenait à ma mère.\nThat matter will take care of itself.\tCe problème se résoudra de lui-même.\nThat old bridge is anything but safe.\tCe vieux pont est tout sauf sûr.\nThat school looks just like a prison.\tCette école ressemble vraiment à une prison.\nThat school looks just like a prison.\tCette école ressemble à une prison.\nThat shirt doesn't go with the pants.\tCette chemise ne va pas avec le pantalon.\nThat song reminds me of my childhood.\tCette chanson me rappelle mon enfance.\nThat store no longer sells cosmetics.\tCe magasin ne vend plus de cosmétiques.\nThat was a pretty stupid thing to do.\tC'était une chose assez stupide à faire.\nThat was just the tip of the iceberg.\tCe n'était que la partie émergée de l'iceberg.\nThat wasn't so hard to admit, was it?\tCe n'était pas si dur à admettre, non ?\nThat's 20% of the world's population.\tC'est 20% de la population mondiale.\nThat's Tom's house with the red roof.\tCette maison au toit rouge est celle de Tom.\nThat's a horse of a different colour.\tÇa, c'est une autre affaire.\nThat's a really shallow thing to say.\tÇa manque vraiment de profondeur.\nThat's an amazing distance, isn't it?\tC'est une distance incroyable, n'est-ce pas ?\nThat's enough. I don't want any more.\tC'est assez. Je n'en veux pas plus.\nThat's not important for you to know.\tCe n'est pas important pour vous de le savoir.\nThat's not important for you to know.\tCe n'est pas important pour toi de le savoir.\nThat's not important for you to know.\tIl n'importe pas que tu le saches.\nThat's not important for you to know.\tIl n'importe pas que vous le sachiez.\nThat's what I expected it to be like.\tC'est ainsi que j'espérais que ce soit.\nThat's what I expected it to be like.\tC'est tel que je l'espérais.\nThat's what I want most in the world.\tC'est ce que je veux le plus au monde.\nThat's what I'm supposed to be doing.\tC'est ce que je suis censé être en train de faire.\nThat's what I'm supposed to be doing.\tC'est ce que je suis censée être en train de faire.\nThe Mayor addressed a large audience.\tLe maire s'est adressé à un large auditoire.\nThe Mona Lisa has an enigmatic smile.\tLa Joconde arbore un sourire énigmatique.\nThe Mona Lisa has an enigmatic smile.\tLa Joconde affiche un sourire énigmatique.\nThe accident happened in this manner.\tL'accident s'est passé de cette façon.\nThe addict died from a drug overdose.\tLe drogué est mort d'une surdose.\nThe apples he sent me were delicious.\tLes pommes qu'il m'a fait parvenir étaient délicieuses.\nThe bank was run by private citizens.\tLa banque était dirigée par des citoyens privés.\nThe bus will be here in five minutes.\tLe bus sera là dans cinq minutes.\nThe bus will be here in five minutes.\tLe bus sera ici dans cinq minutes.\nThe cancer has spread to her stomach.\tLe cancer s'est étendu à son estomac.\nThe cancer has spread to her stomach.\tLe cancer a gagné son estomac.\nThe car is old but in good condition.\tLa voiture est vieille, mais en bon état.\nThe cat doesn't look happy to see us.\tLe chat n'a pas l'air heureux de nous voir.\nThe cat doesn't look happy to see us.\tLa chatte n'a pas l'air heureuse de nous voir.\nThe cat is playing with the children.\tLe chat joue avec les enfants.\nThe ceiling is very low in this room.\tLe plafond est très bas dans cette salle.\nThe cellar is ugly, dark, and stinky.\tLa cave est laide, sombre, et puante.\nThe child is sleeping on his stomach.\tL'enfant dort sur le ventre.\nThe child is suffering from the heat.\tLe gosse souffre de la chaleur.\nThe child is suffering from the heat.\tLa gosse souffre de la chaleur.\nThe children are creating a painting.\tLes enfants réalisent un tableau.\nThe children were sliding on the ice.\tLes enfants glissaient sur la glace.\nThe church is just across the street.\tL'église est juste de l'autre côté de la rue.\nThe city was full of hungry soldiers.\tLa ville était pleine de soldats affamés.\nThe clerk waited on them immediately.\tLe serveur les servit immédiatement.\nThe clouds are coming from the south.\tLes nuages arrivent du sud.\nThe club has more than fifty members.\tLe cercle compte plus de cinquante membres.\nThe cold weather extended into April.\tLe temps froid se prolongea jusqu'en avril.\nThe collection is open to the public.\tCette collection est ouverte au public.\nThe company accepted his application.\tLa société accepta sa candidature.\nThe company released a press release.\tL'entreprise a publié un communiqué de presse.\nThe company's share price has fallen.\tLe cours de l'action de la société a baissé.\nThe contestant made two false starts.\tLe participant fit deux faux départs.\nThe criminal escaped from the prison.\tLe criminel s'est évadé de la prison.\nThe crocodile is a protected species.\tLe crocodile est une espèce protégée.\nThe day is getting longer and longer.\tLe jour s'allonge de plus en plus.\nThe dictionary is of great use to me.\tCe dictionnaire m'est très utile.\nThe dishes are piling up in the sink.\tLes assiettes s'accumulent dans l'évier.\nThe doctor ordered me to stay in bed.\tLe médecin m'a ordonné de rester au lit.\nThe dog is called Spot by the family.\tLe chien est appelé 'Spot' par la famille.\nThe dogs died inside the hot vehicle.\tLes chiens sont morts à l'intérieur du véhicule brûlant.\nThe door needs another coat of paint.\tLa porte a besoin d'une autre couche de peinture.\nThe driver was charged with speeding.\tLe conducteur a été inculpé pour excès de vitesse.\nThe economy of Japan is still stable.\tL'économie du Japon est encore stable.\nThe electricity is off at the moment.\tL’électricité est coupée pour le moment.\nThe enemy has demanded our surrender.\tL'ennemi a exigé notre capitulation.\nThe fire destroyed the tall building.\tLe feu détruisit le haut bâtiment.\nThe first step is always the hardest.\tC'est le premier pas qui compte.\nThe garrison was forced to surrender.\tLa garnison fut contrainte de se rendre.\nThe girl doesn't like to play soccer.\tLa fille n'aime pas jouer au football.\nThe heavy snowfall blocked the roads.\tLes fortes chutes de neige ont bloqué les routes.\nThe hero died at the end of the book.\tLe héros meurt à la fin du livre.\nThe human skull consists of 23 bones.\tLe crâne humain se compose de vingt-trois os.\nThe hunter put ammunition in the gun.\tLe chasseur chargea le fusil.\nThe island was struck by the typhoon.\tL'île a été frappée par le typhon.\nThe king ruled the country for years.\tLe roi gouverna le pays pendant des années.\nThe leaves of the tree turned yellow.\tLes feuilles de l'arbre ont jauni.\nThe length of this ship is 30 meters.\tLa longueur de ce navire est de 30 mètres.\nThe man aimed a gun at the policeman.\tL'homme pointa une arme en direction de l'agent de police.\nThe man aimed a gun at the policeman.\tL'homme a pointé une arme en direction de l'agent de police.\nThe man had something under his coat.\tL'homme avait quelque chose sous son manteau.\nThe man was hiding in a dense forest.\tL'homme se cachait dans une forêt dense.\nThe manager deals with many problems.\tLe gérant fait face à de nombreux problèmes.\nThe meeting broke up at nine o'clock.\tLa réunion s'est finie à 9 heures.\nThe meeting ended earlier than usual.\tLa réunion a fini plus tôt que d'habitude.\nThe meeting will take place tomorrow.\tLa réunion aura lieu demain.\nThe more you have, the more you want.\tPlus tu en as, plus tu en veux.\nThe motor does not function properly.\tLe moteur ne fonctionne pas correctement.\nThe movie was a little disappointing.\tLe film était un peu décevant.\nThe new bridge is under construction.\tLe nouveau pont est en construction.\nThe new tax law is full of loopholes.\tLa nouvelle loi fiscale est bourrée de failles.\nThe new tax law is full of loopholes.\tLa nouvelle loi fiscale est pleine d'échappatoires.\nThe new tax law is full of loopholes.\tLa nouvelle loi fiscale est pleine de lacunes.\nThe nurse anticipated all his wishes.\tL'infirmière devançait tous ses désirs.\nThe old woman got hurt when she fell.\tLa vieille femme s'est blessée quand elle est tombée.\nThe older we grow, the less we dream.\tPlus nous vieillissons, moins nous rêvons.\nThe people expected a victory speech.\tLes gens attendaient un discours de victoire.\nThe people rebelled against the king.\tLes gens se révoltèrent contre le roi.\nThe people rejected the constitution.\tLes gens rejetèrent la constitution.\nThe plants were damaged by the frost.\tLes plantes furent abîmées par le gel.\nThe point is, why didn't you tell me?\tLa question est : pourquoi ne me l'as-tu pas dit ?\nThe point is, why didn't you tell me?\tLa question est : pourquoi ne me l'avez-vous pas dit ?\nThe police are questioning witnesses.\tLa police interroge les témoins.\nThe police could not control the mob.\tLa police ne pouvait contrôler la foule.\nThe police told me not to leave town.\tLa police m'a dit de ne pas quitter la ville.\nThe policeman visited all the houses.\tL'agent de police a visité toutes les maisons.\nThe president governs for four years.\tLe président gouverne pour quatre ans.\nThe priest took the sick man's place.\tLe prêtre prit la place de l'homme malade.\nThe problem is that we have no money.\tLe problème est que nous n'avons pas d'argent.\nThe professor is making a phone call.\tLe professeur est en train de téléphoner.\nThe protesters set many cars on fire.\tLes protestataires mirent le feu à de nombreuses voitures.\nThe protesters set many cars on fire.\tLes protestataires ont mis le feu à de nombreuses voitures.\nThe rain has let up, so we can begin.\tLa pluie s'est apaisée donc nous pouvons commencer.\nThe rain prevented me from going out.\tLa pluie m'a empêché de sortir.\nThe red hat goes well with her dress.\tCe chapeau rouge s'accorde bien avec sa robe.\nThe red hat goes well with her dress.\tLe chapeau rouge est bien assorti avec sa robe.\nThe red hat goes well with her dress.\tLe chapeau rouge va bien avec sa robe.\nThe revolution divided many families.\tLa révolution divisait de nombreuses familles.\nThe road was blocked by fallen rocks.\tLa route était bloquée par des éboulements de roches.\nThe roof is really in need of repair.\tLe toit a vraiment besoin d'être réparé.\nThe roses are in bloom in our garden.\tLes roses sont en fleurs dans notre jardin.\nThe roses in my garden are beautiful.\tLes roses de mon jardin sont belles.\nThe roses in the garden are blooming.\tLes roses dans le jardin sont en train de fleurir.\nThe royal palace was built on a hill.\tLe palais royal fut érigé sur une colline.\nThe same is true of all human beings.\tIl en va de même pour tous les êtres humains.\nThe shell of an egg is easily broken.\tLa coquille d'un œuf se casse facilement.\nThe situation went from bad to worse.\tLa situation allait de pire en pire.\nThe soldier aimed his gun at the man.\tLe soldat dirigea son fusil vers l'homme.\nThe soldiers returned to their lines.\tLes soldats retournèrent dans leurs lignes.\nThe spaceship made a perfect landing.\tLa vaisseau spatial a effectué un atterrissage parfait.\nThe squirrel was busy gathering nuts.\tL'écureuil était occupé à rassembler des noisettes.\nThe storm shouldn't affect our plans.\tLa tempête ne devrait pas affecter nos plans.\nThe streetlight over there is broken.\tLe lampadaire là-bas est cassé.\nThe streets are lined with old shops.\tLes rues regorgent de petites boutiques anciennes.\nThe students are having a recess now.\tLes étudiants sont en vacances actuellement.\nThe students are sitting in a circle.\tLes élèves sont assis en rond.\nThe students are sitting in a circle.\tLes élèves sont assis en cercle.\nThe students did the work themselves.\tLes étudiants effectuèrent le travail par eux-mêmes.\nThe students did the work themselves.\tLes étudiantes effectuèrent le travail par elles-mêmes.\nThe students disobeyed their teacher.\tLes élèves désobéirent à leur instituteur.\nThe students disobeyed their teacher.\tLes élèves désobéirent à leur institutrice.\nThe students disobeyed their teacher.\tLes élèves ont désobéi à leur instituteur.\nThe students disobeyed their teacher.\tLes élèves ont désobéi à leur institutrice.\nThe students of this school are kind.\tLes étudiants de cette école sont aimables.\nThe students seem to be sleepy today.\tLes élèves ont l'air endormis, aujourd'hui.\nThe students walked in a single file.\tLes élèves marchèrent en file indienne.\nThe subway entrance is on the corner.\tL'entrée du métro se trouve au coin.\nThe sun was shining, yet it was cold.\tLe soleil brillait, pourtant il faisait froid.\nThe suspect began to confess at last.\tLe suspect a enfin commencé à avouer.\nThe temperature fell several degrees.\tLa température descendit de plusieurs degrés.\nThe temperature has suddenly dropped.\tLa température a soudainement baissé.\nThe terrorists released the hostages.\tLes terroristes ont relâché les otages.\nThe thieves made off with the jewels.\tLes voleurs se sont carapatés avec les bijoux.\nThe trouble is that we have no money.\tLe problème est que nous n'avons pas d'argent.\nThe two brothers are very much alike.\tLes deux frères se ressemblent beaucoup.\nThe two candidates are neck and neck.\tLes deux candidats sont au coude à coude.\nThe two families live under one roof.\tLes deux familles vivent sous le même toit.\nThe victim declined to press charges.\tLa victime a refusé de porter plainte.\nThe waiter went to get another glass.\tLe serveur alla chercher un autre verre.\nThe walls were covered with graffiti.\tLes murs étaient couverts de graffitis.\nThe weather is very cold in Istanbul.\tLe temps est très froid à Istamboul.\nThe weather is very cold in Istanbul.\tLe temps est très froid à Constantinople.\nThe workers are against the new plan.\tLes employés sont contre le nouveau plan.\nThe workers took pride in their work.\tLes ouvriers étaient fiers de leur travail.\nThe world doesn't revolve around you.\tLe monde ne tourne pas autour de toi.\nThe young worker was asked to resign.\tOn demanda au jeune travailleur de démissionner.\nTheir losses reached one million yen.\tLeurs pertes ont atteint un million de yens.\nTheir patience was about to give out.\tIls étaient sur le point de perdre patience.\nThere appears to have been a mistake.\tIl semble qu'il y ait eu là une erreur.\nThere appears to have been a mistake.\tIl apparaît qu'il ait eu une erreur.\nThere are a lot of books in his room.\tIl y a beaucoup de livres dans sa chambre.\nThere are a lot of fish in that lake.\tIl y a beaucoup de poissons dans ce lac.\nThere are a lot of fish in this lake.\tIl y a beaucoup de poissons dans ce lac.\nThere are a lot of people here today.\tIl y a beaucoup de gens, ici, aujourd'hui.\nThere are dirty dishes in the sink­.\tIl y a des plats sales dans l'évier.\nThere are fifty members in this club.\tIl y a 50 membres dans ce club.\nThere are huge snakes on this island.\tIl y a d'énormes serpents sur cette île.\nThere are many rivers on that island.\tIl y a de nombreuses rivières, sur cette île.\nThere are no exceptions to this rule.\tIl n'y a pas d'exceptions à cette règle.\nThere are no flowers growing on Mars.\tIl ne pousse pas de fleurs sur Mars.\nThere are rumors that he will resign.\tIl y a des rumeurs selon lesquelles il démissionnerait.\nThere are twenty four hours in a day.\tIl y a vingt-quatre heures dans une journée.\nThere aren't as many trains at night.\tIl n'y a pas autant de trains la nuit.\nThere has been no rain for two weeks.\tIl n'a pas plu depuis deux semaines.\nThere is a big hole in your stocking.\tIl y a un gros trou à ton collant.\nThere is a bus every fifteen minutes.\tIl y a un bus toutes les quinze minutes.\nThere is a cottage beyond the bridge.\tIl y a une petite maison au-delà du pont.\nThere is a cottage beyond the bridge.\tIl y a un cottage par delà le pont.\nThere is a lake in front of my house.\tDevant ma maison se trouve un lac.\nThere is a right time for everything.\tChaque chose en son temps.\nThere is a right time for everything.\tIl y a un temps pour tout.\nThere is enough bread for all of you.\tIl y a suffisamment de pain pour vous tous.\nThere is no excuse for such behavior.\tIl n'y a pas d'excuse à un tel comportement.\nThere is no telling what will happen.\tOn ne peut pas dire ce qu'il adviendra.\nThere is no telling what will happen.\tOn ne peut pas dire ce qui se passera.\nThere is nothing to do but apologize.\tIl n'y a rien d'autre à faire que de présenter ses excuses.\nThere used to be a hotel around here.\tIl y avait un hôtel dans les environs.\nThere was a bridge across each river.\tSur chaque fleuve il y avait un pont.\nThere was a bridge across each river.\tSur chaque rivière il y avait un pont.\nThere was a lot of food in the house.\tIl y avait beaucoup de nourriture dans la maison.\nThere was a mad rush toward the exit.\tIl y eut une folle ruée vers la sortie.\nThere was no money left in my wallet.\tIl n'y avait plus d'argent dans mon portefeuille.\nThere was no response to my question.\tIl n'y a pas eu de réponse à ma question.\nThere was no response to my question.\tIl n'y eut pas de réponse à ma question.\nThere was nothing he could have done.\tIl n'y avait rien qu'il eût pu faire.\nThere was nothing we could have done.\tIl n'y avait rien que nous eussions pu faire.\nThere were about one thousand people.\tIl y avait à peu près mille personnes.\nThere were about one thousand people.\tIl y avait environ un millier de personnes.\nThere were some unexpected questions.\tIl y avait quelques questions inattendues.\nThere were some unexpected questions.\tIl y a eu quelques questions inattendues.\nThere were some unexpected questions.\tIl y eut des questions inattendues.\nThere's a black sheep in every flock.\tIl y a un mouton noir dans chaque troupeau.\nThere's bamboo growing in the garden.\tDu bambou pousse dans le jardin.\nThere's no chance that he'll recover.\tIl n'y a aucune chance qu'il se remette.\nThere's nothing I can do to help Tom.\tIl n'y a rien que je puisse faire pour aider Tom.\nThere's nothing like a good hot bath.\tRien de tel qu'un bon bain chaud.\nThere's nothing like a good hot bath.\tIl n'y a rien de tel qu'un bon bain chaud.\nThere's nothing like a good hot bath.\tRien ne vaut un bon bain chaud.\nThere's nothing that can stop us now.\tRien ne peut nous arrêter, désormais.\nThere's nothing that can stop us now.\tRien, désormais, ne peut nous arrêter.\nThere's plenty of blame to go around.\tIl faut surmonter beaucoup de reproches.\nThere's plenty of food in the pantry.\tIl y a plein de nourriture dans le garde-manger.\nThere's so much I want to say to you.\tIl y a tellement de choses que je veux te dire.\nThere's so much I want to say to you.\tJ'ai tant de choses à te dire.\nThere's someone I'd like you to meet.\tIl y a quelqu'un que j'aimerais que vous rencontriez.\nThere's someone I'd like you to meet.\tIl y a quelqu'un que j'aimerais que tu rencontres.\nThere's someone hiding in the closet.\tQuelqu'un se cache dans le placard.\nThere's something I have to tell you.\tJ'ai quelque chose à te dire.\nThere's something I have to tell you.\tIl y a quelque chose que je dois te dire.\nThere's something I have to tell you.\tIl y a quelque chose que je dois vous dire.\nThere's something I have to tell you.\tJ'ai quelque chose à vous dire.\nThere's something I want to show you.\tIl y a quelque chose que je veux te montrer.\nThere's something I want to show you.\tIl y a quelque chose que je veux vous montrer.\nThere's something I want you to know.\tIl y a quelque chose que je veux que tu saches.\nThere's something else in the drawer.\tIl y a autre chose dans le tiroir.\nThese are questions worth discussing.\tCe sont des questions qui méritent d'être débattues.\nThese books aren't just for children.\tCes livres ne sont pas que pour les enfants.\nThese flowers grow in warm countries.\tCes fleurs poussent dans les pays chauds.\nThese kittens are so cute and cuddly.\tCes chatons sont tellement mignons et câlins.\nThese two have very little in common.\tCes deux-là n'ont pas grand-chose en commun.\nThey asked for an increase of salary.\tIls ont réclamé une augmentation de salaire.\nThey asked me for something to drink.\tIls me demandèrent quelque chose à boire.\nThey danced until six in the morning.\tIls ont dansé jusqu'à six heures du matin.\nThey danced until six in the morning.\tElles ont dansé jusqu'à six heures du matin.\nThey danced until six in the morning.\tIls dansèrent jusqu'à six heures du matin.\nThey danced until six in the morning.\tElles dansèrent jusqu'à six heures du matin.\nThey dealt with the prisoners kindly.\tIls s'occupaient gentiment des prisonniers.\nThey didn't know what to do with him.\tIls ne savaient que faire de lui.\nThey didn't know what to do with him.\tElles ne savaient que faire de lui.\nThey didn't swim because it was cold.\tIls ne se sont pas baignés parce qu’il faisait froid.\nThey didn't swim because it was cold.\tIls n'ont pas nagé en raison du froid.\nThey don't always obey their parents.\tIls n'obéissent pas toujours à leurs parents.\nThey enjoyed themselves at the party.\tIls se sont amusés à la fête.\nThey guarantee this clock for a year.\tCette montre est garantie un an.\nThey had to read the book many times.\tIls devaient lire le livre de nombreuses fois.\nThey just want an excuse to fire you.\tIls veulent juste une excuse pour te virer.\nThey just want an excuse to fire you.\tElles veulent seulement une excuse pour vous licencier.\nThey live in a city close to Beijing.\tIls habitent dans une ville proche de Pékin.\nThey made sure nobody could see them.\tIls s'assurèrent que personne ne pouvait les voir.\nThey made sure nobody could see them.\tElles s'assurèrent que personne ne pouvait les voir.\nThey made sure nobody could see them.\tIls se sont assurés que personne ne pouvait les voir.\nThey made sure nobody could see them.\tElles se sont assurées que personne ne pouvait les voir.\nThey made their way across the river.\tIls se sont débrouillés pour franchir le fleuve.\nThey never returned to their country.\tJamais ils ne retournèrent dans leur pays.\nThey never returned to their country.\tJamais elles ne retournèrent dans leur pays.\nThey revolted against the government.\tIls se révoltèrent contre le gouvernement.\nThey revolted against the government.\tElles se révoltèrent contre le gouvernement.\nThey should have arrived home by now.\tIls doivent probablement être arrivés chez eux, maintenant.\nThey showed the scene in slow motion.\tIls montrèrent la scène au ralenti.\nThey talked on the phone every night.\tIls discutaient tous les soirs au téléphone.\nThey usually go to school by bicycle.\tElles se rendent d'ordinaire à l'école à vélo.\nThey visited their parents yesterday.\tIls ont rendu visite, hier, à leurs parents.\nThey were angry about several things.\tIls étaient en colère à propos de nombreuses choses.\nThey were forecasting rain for today.\tIls annonçaient de la pluie pour aujourd'hui.\nThey were on board the same airplane.\tIls étaient à bord du même avion.\nThey were surprised by what they saw.\tIls furent surpris par ce qu'ils virent.\nThey were surprised by what they saw.\tElles furent surprises par ce qu'elles virent.\nThey were surprised by what they saw.\tIls ont été surpris par ce qu'ils ont vu.\nThey were surprised by what they saw.\tElles ont été surprises par ce qu'elles ont vu.\nThey were surprised by what they saw.\tIls furent surpris de ce qu'ils virent.\nThey were surprised by what they saw.\tElles furent surprises de ce qu'elles virent.\nThey were surprised by what they saw.\tIls ont été surpris de ce qu'ils ont vu.\nThey were surprised by what they saw.\tElles ont été surprises de ce qu'elles ont vu.\nThey will cut down on their expenses.\tIls réduiront leurs dépenses.\nThey'll be so happy to have Tom back.\tIls seront si heureux de retrouver Tom.\nThey'll be so happy to have Tom back.\tElles seront si heureuses de retrouver Tom.\nThey're going to give me an estimate.\tIls vont me donner un devis.\nThey're having a break at the moment.\tPour le moment, ils font une pause.\nThings have been pretty tough lately.\tLes choses ont été assez difficiles, ces derniers temps.\nThis Sunday is Mother's Day in Spain.\tLa fête des mères tombe ce dimanche en Espagne.\nThis beach is a paradise for surfers.\tCette plage est un paradis pour les surfeurs.\nThis book contains forty photographs.\tCe livre contient quarante photographies.\nThis book is difficult to understand.\tCe livre est difficile à comprendre.\nThis book is divided into four parts.\tCe livre est divisé en quatre parties.\nThis book isn't as heavy as that one.\tCe livre-ci n'est pas aussi lourd que celui-là.\nThis bus will take you to the museum.\tCe bus vous emmènera au musée.\nThis cheese is made from goat's milk.\tCe fromage est confectionné à partir de lait de chèvre.\nThis cheese is made from goat's milk.\tCe fromage est préparé à partir de lait de chèvre.\nThis cheese is made from goat's milk.\tCe fromage est préparé à base de lait de chèvre.\nThis chemical is extremely dangerous.\tCe produit chimique est extrèmement dangereux.\nThis clock loses three minutes a day.\tCette horloge perd trois minutes par jour.\nThis coat is nice, but too expensive.\tCe manteau est beau, mais trop cher.\nThis custom dates from ancient times.\tCette tradition date de temps immémoriaux.\nThis custom should be done away with.\tOn devrait abandonner cette coutume.\nThis desk is a little too low for me.\tCe bureau est quelque peu trop bas pour moi.\nThis dictionary is not useful at all.\tCe dictionnaire est totalement inutile.\nThis doesn't make sense to me either.\tÇa n'a pas de sens pour moi non plus.\nThis gun is reportedly very powerful.\tOn dit que cette arme à feu est très puissante.\nThis gun is reportedly very powerful.\tOn dit que ce canon est très puissant.\nThis has all been a misunderstanding.\tTout a été un malentendu.\nThis hotel is better than that hotel.\tCet hôtel est meilleur que celui-là.\nThis house has triple–pane windows.\tCette maison est pourvue de fenêtres à triple vitrage.\nThis is a book of children's stories.\tC'est un livre d'histoires pour les enfants.\nThis is a difficult problem to solve.\tC'est un problème difficile à résoudre.\nThis is a great business opportunity.\tC'est une belle opportunité de faire des affaires.\nThis is a lot more fun than studying.\tC'est bien plus amusant que d'étudier.\nThis is a lot more fun than studying.\tC'est bien plus marrant que d'étudier.\nThis is a matter of great importance.\tC’est très important.\nThis is a portrait of my late father.\tC’est un portrait de mon défunt père.\nThis is a portrait of my late father.\tC'est un portrait de mon défunt père.\nThis is a problem for elderly people.\tC'est un problème pour les personnes âgées.\nThis is an extremely important point.\tC'est un point extrèmement important.\nThis is an extremely important point.\tC'est un point crucial.\nThis is something I don't understand.\tC'est quelque chose que je ne comprends pas.\nThis is something I don't understand.\tÇa, c'est quelque chose que je ne comprends pas.\nThis is something I need to do alone.\tC'est quelque chose que je dois faire seul.\nThis is the best camera in the store.\tC'est le meilleur appareil photo du magasin.\nThis is the boy who found your watch.\tC'est le garçon qui a trouvé ta montre.\nThis is the key that opens that door.\tC'est la clé qui ouvre cette porte.\nThis is the office in which he works.\tC'est le bureau dans lequel il travaille.\nThis is the place where Tom was born.\tC'est l'endroit où Tom est né.\nThis is the secret of true happiness.\tVoilà le secret du véritable bonheur.\nThis is the village where I was born.\tC'est le village où je suis né.\nThis isn't the time for stupid jokes.\tCe n'est pas le moment pour les blagues idiotes.\nThis kind of book is of no use to us.\tCe genre de livre ne nous serait d'aucune utilité.\nThis kind of cat doesn't have a tail.\tCette sorte de chat ne possède pas de queue.\nThis lid is so tight I can't open it.\tCe couvercle est si serré que je ne peux l'ouvrir.\nThis lid is too tight for me to open.\tCe couvercle est trop serré pour que je puisse l'ouvrir.\nThis mail will be delivered tomorrow.\tCe courrier sera distribué demain.\nThis mine will close down next month.\tCette mine fermera ses portes le mois prochain.\nThis painting is attributed to Monet.\tCe tableau est attribué à Monet.\nThis park is a paradise for children.\tCe parc est un paradis pour les enfants.\nThis park reminds me of my childhood.\tCe parc me rappelle mon enfance.\nThis place was bombed during the war.\tCet endroit a été bombardé pendant la guerre.\nThis product is expensive to produce.\tCe produit est cher à fabriquer.\nThis really is a dangerous situation.\tC'est vraiment une situation dangereuse.\nThis report is very sloppily written.\tCe rapport est écrit sans aucun soin.\nThis road curves gently to the right.\tCette route tourne légèrement vers la droite.\nThis room has space for fifty people.\tCette pièce peut contenir cinquante personnes.\nThis song reminds me of my childhood.\tCette chanson me rappelle mon enfance.\nThis tree is more than a century old.\tCet arbre a plus d'un siècle.\nThis vending machine is out of order.\tLe distributeur est en panne.\nThose two children were the same age.\tCes deux enfants avaient le même âge.\nThose were the best years of my life.\tC'étaient les meilleures années de ma vie.\nThose were the best years of my life.\tCelles-ci furent les meilleures années de ma vie.\nThose who know him speak well of him.\tCeux qui le connaissent disent du bien de lui.\nThree more passengers got on the bus.\tEncore trois personnes montèrent dans le bus.\nTime's up. Please pass in your exams.\tLe temps est écoulé. Veuillez remettre vos copies d'examen.\nTo tell the truth, I didn't go there.\tPour dire la vérité, je n'y suis pas allé.\nTo tell the truth, I didn't go there.\tPour dire la vérité, je ne m'y suis pas rendu.\nTo tell the truth, I do not like him.\tFranchement, je ne l'aime pas.\nTobacco was one of their major crops.\tLe tabac était l'une de leurs principales cultures.\nTom advised Mary to go to the police.\tTom a conseillé à Mary d'aller voir la police.\nTom always drinks tea in the morning.\tTomas boit toujours du thé le matin.\nTom and I went to a party last night.\tTom et moi sommes allés à une fête la nuit dernière.\nTom and Mary are really good friends.\tTom et Mary sont vraiment de bons amis.\nTom and Mary became lifelong friends.\tTom et Marie sont devenus des amis pour la vie.\nTom and Mary had a whirlwind romance.\tTom et Marie ont vécu une idylle éclair.\nTom and Mary left the party together.\tTom et Mary ont quitté la fête ensemble.\nTom and Mary left the party together.\tTom et Mary quittèrent la fête ensemble.\nTom and Mary make a very nice couple.\tTom et Mary font un très joli couple.\nTom and Mary really loved each other.\tTom et Marie s'aimaient vraiment.\nTom and Mary used to be good friends.\tTom et Mary étaient de bons amis.\nTom and Mary work in the same office.\tTom et Mary travaillent dans le même bureau.\nTom asked Mary to pass him the gravy.\tTom demanda à Mary de lui passer la sauce.\nTom asked Mary to watch the children.\tTom a demandé à Mary de surveiller les enfants.\nTom asked Mary whether she liked him.\tTom a demandé à Mary si elle l'aimait bien.\nTom asked Mary why she had done that.\tTom a demandé à Mary pourquoi elle avait fait ça.\nTom asked me if I liked Chinese food.\tTom m'a demandé si j'aimais la nourriture chinoise.\nTom asked the teacher some questions.\tTom posa quelques questions à l'enseignant.\nTom ate what little food he had left.\tTom manga le peu de nourriture qu'il lui restait.\nTom ate what little food he had left.\tTom a mangé le peu de nourriture qu'il lui restait.\nTom banged his head on a tree branch.\tTom s'est cogné la tête à une branche d'arbre.\nTom bought some vegetables and fruit.\tTom a acheté des légumes et des fruits.\nTom bought three bottles of red wine.\tThomas a acheté 3 bouteilles de vin rouge.\nTom called to say that he'll be late.\tTom a appelé pour dire qu'il serait en retard.\nTom certainly is an eloquent speaker.\tTom est vraiment un orateur éloquent.\nTom clearly doesn't want to be there.\tTom ne veut clairement pas y être.\nTom couldn't answer Mary's questions.\tTom ne pouvait pas répondre aux questions de Mary.\nTom couldn't answer Mary's questions.\tTom n'a pas pu répondre aux questions de Mary.\nTom couldn't have done it any better.\tTom n'aurait pas pu le faire mieux.\nTom decided not to go to the meeting.\tTom décida de ne pas aller à la réunion.\nTom decided not to go to the meeting.\tTom a décidé de ne pas aller à la réunion.\nTom described the incident in detail.\tTom a décrit l'incident en détail.\nTom does that a lot better than I do.\tTom fait cela bien mieux que moi.\nTom doesn't know anything about that.\tTom ne sait rien de cela.\nTom doesn't need to worry about Mary.\tTom n'a pas à s’inquiéter pour Marie.\nTom doesn't understand French at all.\tTom ne comprend pas du tout le français.\nTom dreams of becoming a millionaire.\tTom rêve de devenir millionnaire.\nTom got into trouble because of Mary.\tTom eut des ennuis à cause de Marie.\nTom got out of prison after 30 years.\tTom est sorti de prison au bout de 30 ans.\nTom grows all the vegetables he eats.\tTom produit lui-même les légumes qu'il consomme.\nTom had a good reason for being late.\tTom avait une bonne raison d'être en retard.\nTom has a daughter who is a musician.\tTom a une fille qui est musicienne.\nTom has a friend who lives in Boston.\tTom a un ami qui vit à Boston.\nTom has a talent for modern painting.\tTom a du talent pour la peinture moderne.\nTom has been called away on business.\tTom a été appelé pour affaires.\nTom has forgotten his umbrella again.\tTom a encore oublié son parapluie.\nTom has just finished washing dishes.\tTom vient de finir de laver la vaisselle.\nTom has just finished washing dishes.\tTom vient de finir de laver les assiettes.\nTom hasn't finished his homework yet.\tTom n'a pas encore fini ses devoirs.\nTom is also very famous in Australia.\tTom est aussi très célèbre en Australie.\nTom is at his desk writing something.\tTom est à son bureau en train d'écrire quelque chose.\nTom is being held prisoner somewhere.\tTom est retenu prisonnier quelque part.\nTom is hiding something from me, too.\tTom me cache aussi quelque chose.\nTom is leaving Kobe tomorrow morning.\tTom quitte Kobe demain matin.\nTom is lying on the sofa watching TV.\tTom est couché sur le canapé à regarder la télé.\nTom is obsessed with learning French.\tTom est obsédé par l'apprentissage du français.\nTom is obsessed with power and money.\tTom est obsédé par le pouvoir et l'argent.\nTom is proud of his stamp collection.\tTom est fier de sa collection de timbres.\nTom is tall, but not as tall as I am.\tTom est grand, mais pas aussi grand que moi.\nTom is the most boring person I know.\tTom est la personne la plus ennuyeuse que je connaisse.\nTom is the newest member of our team.\tTom est le tout nouveau membre de notre équipe.\nTom is usually much busier than Mary.\tTom est, en général, beaucoup plus occupé que Marie.\nTom is wearing a strange-looking hat.\tTom porte un chapeau à l'aspect étrange.\nTom isn't used to speaking in public.\tTom n'est pas habitué à s'exprimer en public.\nTom kissed Mary lightly on the cheek.\tTom embrassa légèrement Mary sur la joue.\nTom knew that Mary had done her best.\tTom savait que Mary avait donné le meilleur d’elle-même.\nTom knocked on Mary's bedroom window.\tTom frappa à la fenêtre de la chambre de Marie.\nTom learned to dive when he was five.\tTom a appris à plonger quand il avait cinq ans.\nTom left his briefcase on the subway.\tTom a laissé sa mallette dans le métro.\nTom likes watching TV in the evening.\tTom aime regarder la télévision dans la soirée.\nTom loves playing old computer games.\tTom adore jouer à des vieux jeux sur ordinateur.\nTom most certainly would not approve.\tTom n'approuverait certainement pas.\nTom owns a small advertising company.\tTom possède une petite entreprise de publicité.\nTom picked some berries and ate them.\tThomas prit quelques baies et les mangea.\nTom plays the piano better than Mary.\tTom joue mieux du piano que Marie.\nTom pressed his ear against the wall.\tTom appuya son oreille contre le mur.\nTom pretended not to know what to do.\tTom a prétendu ne pas savoir quoi faire.\nTom probably thought I was at school.\tTom a probablement pensé que j'étais à l'école.\nTom promised Mary that he'd help her.\tTom promit à Mary de l'aider.\nTom pushed back his chair and got up.\tTom repoussa sa chaise et se leva.\nTom puts gas in his car twice a week.\tTom met de l'essence dans sa voiture deux fois par semaine.\nTom refused to take part in the game.\tTom refusa d'entrer dans la partie.\nTom said he was ill, which was a lie.\tTom a dit qu'il était malade, mais c’était un mensonge.\nTom says he doesn't have any regrets.\tTom dit qu'il n'a aucun regret.\nTom says he never thought about that.\tTom dit qu'il n'a jamais pensé à ça.\nTom says that he's in love with Mary.\tTom dit qu'il est amoureux de Mary.\nTom says you've never been to Boston.\tTom dit que tu n'as jamais été à Boston.\nTom says you've never been to Boston.\tTom dit que vous n'avez jamais été à Boston.\nTom screamed at the top of his lungs.\tTom cria à plein poumons.\nTom screamed at the top of his lungs.\tTom cria de tout son corps.\nTom showed Mary his stamp collection.\tTom a montré sa collection de timbres à Mary.\nTom showed Mary his stamp collection.\tTom montra sa collection de timbres à Mary.\nTom sits behind Mary in French class.\tTom est assis derrière Marie en cours de français.\nTom still doesn't know what happened.\tTom ne sait toujours pas ce qu'il s'est passé.\nTom told me a good joke this morning.\tTom m'a dit une bonne blague ce matin.\nTom told me he checked the oil level.\tTom m'a dit qu'il avait vérifié le niveau d'huile.\nTom told me he didn't have much time.\tTom m'a dit qu'il n'avait pas beaucoup de temps.\nTom took part in a promotional event.\tTom a participé à un événement promotionnel.\nTom took the scissors away from Mary.\tTom éloigna les ciseaux de Mary.\nTom tried to drink his problems away.\tTom essaya d'oublier ses problèmes en buvant.\nTom undressed and got in the bathtub.\tTom se déshabilla et entra dans la baignoire.\nTom usually wears white tennis shoes.\tTom porte habituellement des chaussures de tennis blanches.\nTom wanted Mary to apologize to John.\tTom voulait que Mary s'excuse auprès de John.\nTom wanted Mary to sign his yearbook.\tTom voulait que Marie signe son album de classe.\nTom wants children, but Mary doesn't.\tTom veut des enfants, mais Mary non.\nTom wants to open his own restaurant.\tTom veut ouvrir son propre restaurant.\nTom was accused of doing sloppy work.\tIls accusèrent Tom de négliger son travail.\nTom was caught selling drugs to kids.\tTom s'est fait choppé en train de vendre de la drogue à des gamins.\nTom was caught selling drugs to kids.\tTom s'est fait attraper en train de vendre de la drogue à des enfants.\nTom was surprised by Mary's reaction.\tTom a été surpris par la réaction de Mary.\nTom was surprised by Mary's reaction.\tTom fut surpris de la réaction de Mary.\nTom was unsatisfied with the results.\tTom était insatisfait des résultats.\nTom was very happy when his team won.\tTom était très heureux lorsque son équipe a gagné.\nTom washes his hair almost every day.\tTom lave ses cheveux quasiment chaque jour.\nTom wished he could've stayed longer.\tTom aurait souhaité pouvoir rester plus longtemps.\nTom's a nice guy. Everyone likes him.\tTom est un mec sympa. Tout le monde l'aime.\nTom's dog isn't allowed in the house.\tLe chien de Tom n'est pas autorisé dans la maison.\nTom's last name is easy to pronounce.\tLe nom de famille de Tom est facile à prononcer.\nTom's question took Mary by surprise.\tLa question de Tom prit Mary par surprise.\nToo much drinking will make you sick.\tTrop d'alcool vous rendra malade.\nTraveling abroad is very interesting.\tVoyager à l'étranger est très intéressant.\nTry and do your homework by yourself.\tEssaie de faire tes devoirs sans assistance.\nTurn right at the end of that street.\tTourne à droite au bout de la rue.\nUnless you start now, you'll be late.\tÀ moins de commencer maintenant, vous serez en retard.\nWait'll you hear what happened today.\tAttends d'entendre ce qui est arrivé aujourd'hui !\nWait'll you hear what happened today.\tAttendez d'entendre ce qui est arrivé aujourd'hui !\nWatch the rear. I'll watch the front.\tSurveille l'arrière, je surveillerai le devant.\nWe admired the beauty of the scenery.\tOn a admiré la beauté du paysage.\nWe admired the beauty of the scenery.\tOn a admiré la beauté de la vue.\nWe all know how this is going to end.\tNous savons tous quelle en sera la fin.\nWe all live in the same neighborhood.\tNous vivons tous dans le même quartier.\nWe are faced with a difficult choice.\tNous sommes confrontés à un choix difficile.\nWe are faced with a host of problems.\tNous sommes confrontés à une multitude de problèmes.\nWe are faced with a host of problems.\tNous sommes confrontés à une foule de problèmes.\nWe are faced with a host of problems.\tNous sommes confrontés à un tas de problèmes.\nWe are faced with a host of problems.\tNous sommes confrontés à quantité de problèmes.\nWe are influenced by our environment.\tNous sommes influencés par notre environnement.\nWe are subject to the laws of nature.\tNous sommes soumis aux lois de la nature.\nWe become forgetful as we grow older.\tOn devient distrait en vieillissant.\nWe can't just drive around all night.\tNous ne pouvons pas simplement tourner en voiture toute la nuit.\nWe can't work under these conditions.\tNous ne pouvons pas travailler dans ces conditions.\nWe cannot live without air and water.\tNous ne pouvons vivre sans air ni eau.\nWe celebrated Mother's 45th birthday.\tNous avons célébré le quarante-cinquième anniversaire de Mère.\nWe complained that the room was cold.\tOn s'est plaint comme quoi la pièce était froide.\nWe complained that the room was cold.\tNous nous sommes plaint comme quoi la pièce était froide.\nWe couldn't find out her whereabouts.\tNous n'avons pu trouver son lieu de résidence.\nWe couldn't make out what she wanted.\tNous ne pûmes réussir à établir ce qu'elle voulait.\nWe discussed the article I published.\tNous discutâmes de l'article que j'avais publié.\nWe discussed the article I published.\tNous avons discuté de l'article que j'avais publié.\nWe don't have to talk about this now.\tNous n'avons pas à parler de ceci maintenant.\nWe don't need a visa to go to France.\tNous n'avons pas besoin de visa pour voyager vers la France.\nWe hardly have time to eat breakfast.\tNous avons à peine le temps de prendre notre petit déjeuner.\nWe have a reservation for six-thirty.\tNous avons une réservation pour six heures et demie.\nWe have a reservation for six-thirty.\tNous avons réservé pour dix-huit heures trente.\nWe have a small table in the kitchen.\tNous avons une petite table dans la cuisine.\nWe have had few typhoons this autumn.\tNous avons eu quelques typhons cet automne.\nWe have less than three minutes left.\tIl nous reste moins de trois minutes.\nWe look forward to getting back home.\tNous avons hâte de rentrer à la maison.\nWe look forward to getting back home.\tNous sommes impatients d'être de retour à la maison.\nWe must achieve our aim at any price.\tNous devons atteindre notre objectif à tout prix.\nWe must do away with these old rules.\tNous devons nous débarrasser de ces vieilles règles.\nWe must do away with these old rules.\tNous devons nous défaire de ces règles surannées.\nWe must find a more efficient method.\tIl faut trouver une méthode plus efficace.\nWe need another person to play cards.\tNous avons encore besoin d'une personne pour jouer aux cartes.\nWe need somebody with bold new ideas.\tNous avons besoin de quelqu'un avec de nouvelles idées audacieuses.\nWe need to get some medical supplies.\tIl nous faut nous procurer des articles médicaux.\nWe set up the tent next to the river.\tNous montâmes la tente près de la rivière.\nWe set up the tent next to the river.\tNous avons monté la tente près de la rivière.\nWe should consider a combined effort.\tIl faudrait voir à unir les efforts.\nWe should proceed with great caution.\tNous devrions procéder avec une grande prudence.\nWe should save money for a rainy day.\tNous devrions mettre le l'argent de côté.\nWe sought to come to terms with them.\tNous avons recherché un compromis avec eux.\nWe study English every day at school.\tNous étudions l'anglais tous les jours à l'école.\nWe want Tom to know he can come home.\tNous voulons que Tom sache qu'il peut rentrer à la maison.\nWe went to the park to take pictures.\tNous sommes allés au parc pour prendre des photos.\nWe went to the park to take pictures.\tNous allâmes au parc prendre des photos.\nWe went to the park to take pictures.\tNous nous rendîmes au parc pour faire des photos.\nWe went up the mountain by cable car.\tNous fîmes l'ascension de la montagne en téléphérique.\nWe were able to catch the last train.\tNous avons pu attraper le dernier train.\nWe were delayed by the heavy traffic.\tNous fûmes retardés par la circulation importante.\nWe were just about to enter the room.\tNous étions sur le point d'entrer dans la pièce.\nWe were not prepared for the assault.\tNous n'étions pas préparés pour l'assaut.\nWe will become happy in the long run.\tNous deviendrons heureux sur le long terme.\nWe will get to Tokyo Station at noon.\tNous serons à la gare de Tokyo à midi.\nWe will have little snow this winter.\tNous aurons peu de neige cet hiver.\nWe would often talk about our future.\tNous parlions souvent de notre avenir.\nWe'll be back after this short break.\tNous serons de retour après cette courte pause.\nWe'll continue this discussion later.\tNous continuerons cette discussion plus tard.\nWe'll get on the airplane in an hour.\tNous embarquerons dans l'avion dans une heure.\nWe'll soon learn all we need to know.\tNous apprendrons bientôt tout ce que nous avons besoin de savoir.\nWe'll try not to let it happen again.\tNous essaierons de ne pas laisser cela se reproduire.\nWe're going out for a meal on Friday.\tNous sortons manger vendredi.\nWe're going to be here all afternoon.\tNous allons être ici toute l'après-midi.\nWe're going to have to work together.\tNous allons devoir travailler ensemble.\nWe're going to have to work together.\tNous allons avoir à travailler ensemble.\nWe're going to search the whole ship.\tNous allons fouiller la totalité du bateau.\nWe're leaving the day after tomorrow.\tNous partirons après-demain.\nWe're not afraid of any difficulties.\tNous n’avons pas peur de n’importe quelle détresse.\nWe're prepared to make tough choices.\tNous sommes prêts à prendre des décisions difficiles.\nWe're studying French and web design.\tNous étudions le français et la conception de site web.\nWe're trying to cut down on expenses.\tNous tentons de réduire les dépenses.\nWe've got a situation here, you know.\tC'est la merde, ici, vous savez.\nWe've got a situation here, you know.\tC'est la merde, ici, tu sais.\nWe've got to figure out what's wrong.\tNous devons trouver ce qui ne va pas.\nWe've talked it over among ourselves.\tNous en avons parlé entre nous.\nWhat are the main sights around here?\tQuels sont les meilleurs points de vues du coin?\nWhat are the origins of the Olympics?\tQuelles sont les origines des Jeux Olympiques ?\nWhat are your plans for this weekend?\tQuels sont tes projets pour le week-end ?\nWhat are your plans for this weekend?\tQuels sont vos projets pour le week-end ?\nWhat did you eat for lunch yesterday?\tQu'as-tu pris pour déjeuner, hier ?\nWhat do I have to do to convince you?\tQue dois-je faire pour te convaincre ?\nWhat do I have to do to convince you?\tQue dois-je faire pour vous convaincre ?\nWhat do you have planned for tonight?\tQu'avez-vous prévu de faire pour ce soir?\nWhat do you think Tom's shoe size is?\tQuel est la pointure de Tom à ton avis?\nWhat do you think is going to happen?\tQue penses-tu qu'il advienne ?\nWhat do you think is going to happen?\tQue pensez-vous qu'il advienne ?\nWhat do you think is going to happen?\tQue penses-tu qu'il arrive ?\nWhat do you think is going to happen?\tQue pensez-vous qu'il arrive ?\nWhat do you think of the new teacher?\tQue pensez-vous du nouvel instituteur ?\nWhat do you think of the new teacher?\tQue penses-tu de la nouvelle institutrice ?\nWhat do you think of the new teacher?\tQue penses-tu du nouvel enseignant ?\nWhat do you think of the new teacher?\tQue pensez-vous de la nouvelle enseignante ?\nWhat do you think the audience wants?\tQue penses-tu que le public veuille ?\nWhat do you think the audience wants?\tQue pensez-vous que le public veuille ?\nWhat do you want me to do with these?\tQu'est-ce que vous voulez que je fasse avec avec ces trucs ?\nWhat do you want to do in the future?\tQue veux-tu faire plus tard ?\nWhat do you want to eat this weekend?\tQu'est-ce que vous voulez manger ce week-end?\nWhat do you want to eat this weekend?\tQue voulez-vous manger ce week-end ?\nWhat do you want to talk to me about?\tDe quoi veux-tu me parler ?\nWhat do you want to talk to me about?\tDe quoi voulez-vous m'entretenir ?\nWhat else do you have in your pocket?\tQu'as-tu d'autre dans la poche ?\nWhat exactly are they doing in there?\tQue font-ils exactement, là-dedans ?\nWhat exactly are they doing in there?\tQue font-elles exactement, là-dedans ?\nWhat foods should a diabetic not eat?\tQuels aliments un diabétique ne devrait-il pas manger ?\nWhat had happened wasn't Tom's fault.\tCe qui est arrivé n'était pas de la faute de Tom.\nWhat is the total number of students?\tQuel est le nombre total d'étudiants ?\nWhat kind of food do you usually eat?\tQuelle sorte de nourriture mangez-vous habituellement?\nWhat kind of shots did they give you?\tQuelle sorte d'injections vous ont-ils administrée ?\nWhat kind of woman do you think I am?\tQuelle sorte de femme pensez-vous que je sois ?\nWhat language do they speak in Egypt?\tQuelle langue on parle en Égypte ?\nWhat languages are spoken in America?\tQuelles langues parle-t-on en Amérique ?\nWhat makes you think Tom can do this?\tQu'est-ce qui te fait croire que Tom peut faire ça ?\nWhat makes you think that isn't true?\tQu'est-ce qui vous fait penser que ce n'est pas vrai ?\nWhat makes you think that isn't true?\tQu'est-ce qui te fait penser que ce n'est pas vrai ?\nWhat she said turned out to be false.\tCe qu'elle avait dit se révéla faux.\nWhat time does the airport bus leave?\tQuand partira la prochaine navette de l'aéroport ?\nWhat time does the first train leave?\tQuand part le premier train ?\nWhat time does the first train leave?\tÀ quelle heure part le premier train ?\nWhat time should I go to the airport?\tÀ quelle heure devrais-je me rendre à l'aéroport ?\nWhat was her answer to your proposal?\tQu'a-t-elle répondu à ta proposition ?\nWhat was her answer to your proposal?\tQuelle fut sa réponse à ta proposition ?\nWhat was her answer to your proposal?\tQuelle fut sa réponse à votre proposition ?\nWhat was the outcome of the election?\tQuel a été le résultat de l'élection?\nWhat were you two doing there anyway?\tQue faisiez-vous tous deux là, de toutes façons ?\nWhat were you two doing there anyway?\tQue faisiez-vous toutes deux là, de toutes façons ?\nWhat were you two doing there anyway?\tQu'y faisiez-vous tous les deux, de toutes façons ?\nWhat were you two doing there anyway?\tQu'y faisiez-vous toutes les deux, de toutes façons ?\nWhat would you do if you saw a ghost?\tQue ferais-tu si tu voyais un fantôme ?\nWhat's the fax number for this hotel?\tQuel est le numéro de télécopie de cet hôtel ?\nWhat's the minimum wage in Australia?\tQuel est le salaire minimum en Australie ?\nWhat's the name of this intersection?\tQuel est le nom de cette intersection ?\nWhat's the nearest planet to the sun?\tQuelle est la planète la plus proche du soleil ?\nWhat's your favorite class this year?\tQuel est ton cours préféré, cette année ?\nWhat's your favorite spectator sport?\tQuel est le sport que vous aimez le plus regarder ?\nWhat's your favorite spectator sport?\tQuel est le sport que tu aimes le plus regarder ?\nWhatever happens, you must keep calm.\tQuoi qu'il arrive, tu dois rester calme.\nWhatever happens, you must keep calm.\tQuoi qu'il arrive, vous devez rester calme.\nWhen I came home, I felt very hungry.\tQuand je suis rentrée, j'avais très faim.\nWhen I told him that, he got furious.\tLorsque je le lui dis, il se fâcha.\nWhen did you get back from your trip?\tQuand es-tu revenu de ton voyage ?\nWhen he came, I was writing a letter.\tQuand il est venu, j'étais en train d'écrire une lettre.\nWhen he finds out, he won't be happy.\tLorsqu'il le découvrira, il ne sera pas content.\nWhen was the last time I visited you?\tQuand était la dernière fois que je t'ai rendu visite ?\nWhen will her new novel be published?\tQuand son nouveau roman sera-t-il publié ?\nWhen will his new novel be published?\tQuand son nouveau roman sera-t-il publié ?\nWhen will you finish your assignment?\tQuand allez-vous terminer votre devoir ?\nWhen you go, I'll miss you very much.\tJe me sentirais très seul si tu venais à disparaître.\nWhere do you get off telling me that?\tComment as-tu le toupet de me dire ça ?\nWhere do you get off telling me that?\tComment avez-vous le toupet de me dire ça ?\nWhere do you get off telling me that?\tComment oses-tu me dire ça ?\nWhere do you get off telling me that?\tComment osez-vous me dire ça ?\nWhere do you get off telling me that?\tComment as-tu l'effronterie de me dire ça ?\nWhere do you get off telling me that?\tComment avez-vous l'effronterie de me dire ça ?\nWhere is the bus stop for the museum?\tOù se trouve l'arrêt de bus pour le musée ?\nWhere was it that you found this key?\tOù donc as-tu trouvé cette clé ?\nWhere was it that you found this key?\tOù avez-vous donc trouvé cette clef ?\nWhere will you be this time tomorrow?\tOù seras-tu demain à cette heure ?\nWhich goes faster, a ship or a train?\tQui va le plus vite, un navire ou un train ?\nWho did you vote for in the election?\tPour qui as-tu voté à l'élection ?\nWho is the boy swimming in the river?\tQui est le garçon qui nage dans la rivière ?\nWho is the man sitting in the corner?\tQui est cet homme assis dans le coin ?\nWho plays the keyboards in your band?\tQui joue au piano dans votre groupe ?\nWho recommended Tom for the position?\tQui a recommandé Tom pour le poste ?\nWho was absent from school last week?\tQui était absent de l'école la semaine dernière ?\nWho was that who answered your phone?\tQui était celui qui a répondu à ton téléphone ?\nWho was that who answered your phone?\tQui était celui qui a répondu à votre téléphone ?\nWho's taking responsibility for this?\tQui assume la responsabilité de cela ?\nWho's taking responsibility for this?\tQui en assume la responsabilité ?\nWhose bicycle did you want to borrow?\tLe vélo de qui voulais-tu emprunter ?\nWhy are you asking so many questions?\tPourquoi poses-tu autant de questions ?\nWhy are you asking so many questions?\tPourquoi posez-vous tant de questions ?\nWhy are you so scared to talk to him?\tPourquoi avez-vous si peur de lui parler ?\nWhy are you so scared to talk to him?\tPourquoi as-tu si peur de lui parler ?\nWhy did you decide to buy this house?\tPourquoi as-tu décidé d'acheter cette maison ?\nWhy didn't you listen to your father?\tPourquoi n'as-tu pas écouté ton père ?\nWhy didn't you listen to your father?\tPourquoi n'avez-vous pas écouté votre père ?\nWhy didn't you say something earlier?\tPourquoi ne pas l'avoir dit plus tôt ?\nWhy didn't you tell me you were sick?\tPourquoi ne m'as-tu pas dit que tu étais malade ?\nWhy didn't you tell me you were sick?\tPourquoi ne m'avez-vous pas dit que vous étiez malade ?\nWhy do our schools look like prisons?\tPourquoi nos écoles ont-elles l'air de prisons ?\nWhy do you interrupt me all the time?\tPourquoi m'interromps-tu tout le temps ?\nWhy do you interrupt me all the time?\tPourquoi m'interrompez-vous tout le temps ?\nWhy do you let Tom to do this to you?\tPourquoi laisses-tu Tom te faire ceci ?\nWhy do you let Tom to do this to you?\tPourquoi laissez-vous Tom vous faire ceci ?\nWhy don't we go get something to eat?\tPourquoi n'allons-nous pas chercher quelque chose à manger ?\nWhy don't you mind your own business?\tPourquoi ne t'occupes-tu pas de tes oignons ?\nWhy don't you mind your own business?\tPourquoi ne vous occupez-vous pas de vos oignons ?\nWhy don't you slow down a little bit?\tPourquoi ne ralentissez-vous pas un peu ?\nWhy don't you slow down a little bit?\tPourquoi ne ralentis-tu pas un peu ?\nWhy don't you start at the beginning?\tPourquoi ne commencez-vous pas par le commencement ?\nWhy don't you start at the beginning?\tPourquoi ne commences-tu pas par le commencement ?\nWhy pay when you can get it for free?\tPourquoi payer lorsqu'on peut l'obtenir gratuitement ?\nWhy pay when you can get it for free?\tPourquoi payer lorsqu'on peut en obtenir gratuitement ?\nWhy would you do something like that?\tPourquoi feriez-vous une telle chose ?\nWhy would you do something like that?\tPourquoi ferais-tu une telle chose ?\nWill you come with me to the concert?\tTu viendras avec moi au concert ?\nWill you show me the way to the bank?\tPouvez-vous m'indiquer le chemin vers la banque ?\nWomen generally live longer than men.\tLes femmes vivent généralement plus longtemps que les hommes.\nWon't you come to the party tomorrow?\tNe viens-tu pas à la fête, demain ?\nWon't you come to the party tomorrow?\tNe viendrez-vous pas à la fête, demain ?\nWould you like another glass of wine?\tDésirez-vous un autre verre de vin ?\nWould you like another glass of wine?\tAimeriez-vous un autre verre de vin ?\nWould you like another glass of wine?\tAimerais-tu un autre verre de vin ?\nWould you like another piece of cake?\tTu veux encore un truc facile ?\nWould you like me to do that for you?\tVoudrais-tu que je le fasse pour toi?\nWould you like to have lunch with me?\tVoulez-vous déjeuner avec moi ?\nWould you like to join us for dinner?\tVoudriez-vous vous joindre à nous pour dîner ?\nWould you like to join us for dinner?\tVoudrais-tu te joindre à nous pour dîner ?\nWould you like to read this magazine?\tVeux-tu lire ce magazine ?\nWould you like to sit at the counter?\tVoudrais-tu t'asseoir au comptoir ?\nWould you like to sit at the counter?\tAimeriez-vous vous asseoir au comptoir ?\nWould you mind going over that again?\tVoulez-vous la reprendre, je vous prie?\nWould you mind looking after my kids?\tEst-ce que ça vous dérangerait de veiller sur mes enfants ?\nWould you please autograph this book?\tPourriez-vous dédicacer ce livre, s'il vous plaît ?\nWould you please autograph this book?\tTu pourrais dédicacer ce livre, s'il te plaît ?\nWould you please keep the noise down?\tPourriez-vous, s'il vous plaît, faire moins de bruit ?\nWould you please keep the noise down?\tPourrais-tu faire moins de bruit, s'il te plaît ?\nYesterday was the last day of school.\tHier était le dernier jour d'école.\nYesterday, a thief entered the house.\tHier, un voleur a visité la maison.\nYesterday, a thief entered the house.\tHier, un voleur a pénétré la maison.\nYou are always finding fault with me.\tTu as toujours quelque chose à me reprocher.\nYou are always finding fault with me.\tVous avez toujours quelque chose à me reprocher.\nYou are really very productive today.\tTu es vraiment très productif aujourd'hui.\nYou are really very productive today.\tVous êtes vraiment très productive aujourd'hui.\nYou are the only one who can help me.\tTu es le seul qui puisse m'aider.\nYou are the only one who can help me.\tVous êtes le seul qui puisse m'aider.\nYou are the only one who can help me.\tVous êtes la seule qui puisse m'aider.\nYou are the only one who can help me.\tTu es la seule qui puisse m'aider.\nYou aren't afraid of ghosts, are you?\tVous n'avez pas peur des fantômes, n'est-ce pas ?\nYou can borrow three books at a time.\tTu peux emprunter trois livres chaque fois.\nYou can call me at any time you like.\tTu peux m'appeler à n'importe quelle heure.\nYou can hang out with us if you want.\tTu peux sortir avec nous si tu veux.\nYou can have a ride on my motorcycle.\tTu peux faire un tour sur ma mobylette.\nYou can pour the wine into the glass.\tVous pouvez verser le vin dans le verre.\nYou can pour the wine into the glass.\tTu peux verser le vin dans le verre.\nYou can spend the night at our place.\tTu peux passer la nuit chez nous.\nYou can spend the night at our place.\tVous pouvez passer la nuit chez nous.\nYou can swim much better than he can.\tTu nages bien mieux que lui.\nYou can't blame him for the accident.\tTu ne peux pas le blâmer pour l'accident.\nYou can't bury your head in the sand.\tVous ne pouvez enterrer votre tête dans le sable.\nYou can't bury your head in the sand.\tTu ne peux pas enterrer ta tête dans le sable.\nYou can't do anything right, can you?\tVous ne pouvez rien faire correctement, n'est-ce pas ?\nYou can't do anything right, can you?\tTu ne peux rien faire correctement, n'est-ce pas ?\nYou can't lift the piano by yourself.\tTu ne peux pas soulever le piano tout seul.\nYou can't pull the wool over my eyes.\tTu parles, Charles.\nYou can't trust computer translation.\tOn ne peut pas se fier à la traduction automatique.\nYou cannot prevent him from drinking.\tOn ne peut pas l'empêcher de boire.\nYou did not come to school yesterday.\tTu n'es pas venu à l'école hier.\nYou did that on your own, didn't you?\tTu as fait ça par toi-même, non ?\nYou did that on your own, didn't you?\tVous avez fait ça par vous-même, non ?\nYou don't give up too easily, do you?\tVous n'abandonnez pas tellement facilement, n'est-ce pas ?\nYou don't have to hide your feelings.\tTu ne dois pas dissimuler tes sentiments.\nYou don't have to hide your feelings.\tTu n'as pas besoin de cacher tes sentiments.\nYou don't have to trouble yourselves.\tVous n'avez pas à vous inquiéter.\nYou don't have to wait until the end.\tTu n'es pas obligé d'attendre jusqu'à la fin.\nYou don't have to wait until the end.\tVous n'êtes pas obligé d'attendre jusqu'à la fin.\nYou don't have to wait until the end.\tVous n'êtes pas obligée d'attendre jusqu'à la fin.\nYou don't have to wait until the end.\tVous n'êtes pas obligés d'attendre jusqu'à la fin.\nYou don't have to wait until the end.\tVous n'êtes pas obligées d'attendre jusqu'à la fin.\nYou don't know what it is to be poor.\tTu ne sais ce que c'est que d'être pauvre.\nYou don't need to answer that letter.\tTu n'as pas besoin de répondre à cette lettre.\nYou don't need to be in such a hurry.\tIl n'est pas nécessaire que tu sois si pressé.\nYou don't need to be in such a hurry.\tIl n'est pas nécessaire que tu sois si pressée.\nYou don't need to be in such a hurry.\tIl n'est pas nécessaire que vous soyez si pressé.\nYou don't need to be in such a hurry.\tIl n'est pas nécessaire que vous soyez si pressée.\nYou don't need to be in such a hurry.\tIl n'est pas nécessaire que vous soyez si pressés.\nYou don't need to be in such a hurry.\tIl n'est pas nécessaire que vous soyez si pressées.\nYou don't need to do that right away.\tTu ne dois pas le faire immédiatement.\nYou don't need to reinvent the wheel.\tVous n'avez pas besoin de ré-inventer la roue.\nYou don't need to reinvent the wheel.\tTu n'as pas besoin de ré-inventer la roue.\nYou have a tendency to talk too fast.\tTu as tendance à parler trop vite.\nYou have a tendency to talk too fast.\tVous avez tendance à parler trop rapidement.\nYou have caused me to lose my temper.\tVous m'avez fait perdre patience.\nYou have dirt under your fingernails.\tTu as de la crasse sous les ongles.\nYou have my number. Call me sometime.\tTu disposes de mon numéro. Appelle-moi un de ces quatre !\nYou have my number. Call me sometime.\tVous disposez de mon numéro. Appellez-moi un de ces quatre !\nYou have no right to oppose our plan.\tVous n'avez pas le droit de vous opposer à nos plans.\nYou have to be prepared for anything.\tIl vous faut être prêt à tout.\nYou have to be prepared for anything.\tIl te faut être prêt à tout.\nYou have too many books on the shelf.\tVous avez trop de livres sur cette étagère.\nYou haven't heard the half of it yet.\tVous n'en avez pas encore entendu la moitié.\nYou haven't heard the half of it yet.\tTu n'en as pas encore entendu la moitié.\nYou haven't seen Tom today, have you?\tVous n'avez pas vu Tom aujourd'hui, n'est-ce pas ?\nYou know I have no choice, don't you?\tTu sais que je n'ai pas le choix, n'est-ce pas ?\nYou know I have no choice, don't you?\tVous savez que je n'ai pas le choix, n'est-ce pas ?\nYou know what they can do, don't you?\tVous savez ce dont ils sont capables, n'est-ce pas ?\nYou know what they can do, don't you?\tVous savez ce dont elles sont capables, n'est-ce pas ?\nYou know what they can do, don't you?\tTu sais ce dont ils sont capables, n'est-ce pas ?\nYou know what they can do, don't you?\tTu sais ce dont elles sont capables, n'est-ce pas ?\nYou may as well tell me all about it.\tTu ferais tout aussi bien de tout me dire.\nYou may call on me whenever you like.\tTu peux venir me voir quand tu le souhaites.\nYou must be more careful from now on.\tTu dois désormais être plus prudente.\nYou must get off at the next station.\tVous devez descendre à la prochaine gare.\nYou must get off at the next station.\tTu dois descendre à la prochaine gare.\nYou must not forget your schoolbooks.\tTu ne dois pas oublier tes livres d'école.\nYou must pay attention to his advice.\tTu dois prêter attention à ses conseils.\nYou must pay attention to his advice.\tVous devez prêter attention à ses conseils.\nYou must show respect to your guests.\tTu dois montrer du respect à tes invités.\nYou must show respect to your guests.\tTu dois faire montre de respect à tes invités.\nYou must show respect to your guests.\tVous devez montrer du respect à vos invités.\nYou must show respect to your guests.\tVous devez faire montre de respect à vos invités.\nYou never want to give anything away.\tTu ne veux jamais te débarrasser de quoi que ce soit.\nYou ought to know better at your age.\tTu devrais être plus avisé, à ton âge.\nYou ought to know better at your age.\tTu devrais être plus avisée, à ton âge.\nYou promised me you'd look after Tom.\tTu m'as promis que tu prendrais soin de Tom.\nYou promised me you'd look after Tom.\tVous m'avez promis que vous prendriez soin de Tom.\nYou reach him by calling this number.\tVous pouvez le joindre à ce numéro.\nYou really don't have a clue, do you?\tT'as vraiment pas l'ombre d'une idée, si ?\nYou really don't have a clue, do you?\tVous n'avez vraiment pas l'ombre d'une idée, si ?\nYou really don't have a clue, do you?\tTu es vraiment ignare, non ?\nYou really don't have a clue, do you?\tVous êtes vraiment ignare, non ?\nYou really don't have a clue, do you?\tVous êtes vraiment ignares, non ?\nYou said you were going to handle it.\tTu as dit que tu allais t'en débrouiller.\nYou said you were going to handle it.\tTu as dit que tu allais le gérer.\nYou said you were going to handle it.\tTu as dit que tu allais t'en occuper.\nYou said you were going to handle it.\tTu as dit que tu allais t'en saisir.\nYou said you were going to handle it.\tVous avez dit que vous alliez vous en débrouiller.\nYou said you were going to handle it.\tVous avez dit que vous alliez vous en saisir.\nYou said you were going to handle it.\tVous avez dit que vous alliez vous en occuper.\nYou said you were going to handle it.\tVous avez dit que vous alliez le gérer.\nYou should check your blood pressure.\tTu devrais vérifier ta pression sanguine.\nYou should check your blood pressure.\tVous devriez vérifier votre pression sanguine.\nYou should go and have your hair cut.\tTu devrais aller te faire couper les cheveux.\nYou should have attended the meeting.\tVous auriez dû assister à la réunion.\nYou should have kept your mouth shut.\tTu aurais dû la fermer.\nYou should have kept your mouth shut.\tVous auriez dû la fermer.\nYou should have shown him the device.\tTu aurais dû lui montrer l'appareil.\nYou should have spoken more politely.\tTu aurais dû parler plus poliment.\nYou should have spoken more politely.\tVous auriez dû parler plus poliment.\nYou should have told it to me sooner.\tTu aurais dû me le dire plus tôt.\nYou should put your ideas in writing.\tVous devriez mettre vos idées par écrit.\nYou should start as early as you can.\tTu devrais commencer aussi tôt que possible.\nYou should try to write more legibly.\tVous devriez essayer d'écrire de manière plus intelligible.\nYou should try to write more legibly.\tTu devrais essayer d'écrire de manière plus lisible.\nYou shouldn't write in library books.\tTu ne devrais pas écrire dans les livres de la bibliothèque.\nYou told Tom not to come, didn't you?\tTu as dit à Tom de ne pas venir, n'est-ce pas ?\nYou told Tom not to come, didn't you?\tVous avez dit à Tom de ne pas venir, n'est-ce pas ?\nYou want me to show you how to do it?\tVeux-tu que je te montre comment le faire ?\nYou want me to show you how to do it?\tVoulez-vous que je vous montre comment le faire ?\nYou wanted me to get a job, so I did.\tTu voulais que je trouve un boulot, c'est ce que j'ai fait.\nYou wanted me to get a job, so I did.\tVous vouliez que je trouve un boulot, c'est ce que j'ai fait.\nYou were the one who gave this to me.\tTu es celui qui m'a donné ceci.\nYou were the one who gave this to me.\tC'est toi qui m'a donné ça.\nYou were the one who gave this to me.\tVous êtes celle qui m'a donné ceci.\nYou will soon come to like this town.\tVous viendrez bientôt à aimer cette ville.\nYou will soon come to like this town.\tTu aimeras bientôt cette ville.\nYou worry about your weight too much.\tTu te soucies trop de ton poids.\nYou worry about your weight too much.\tVous vous souciez trop de votre poids.\nYou worry about your weight too much.\tTu t'en fais trop pour ton poids.\nYou worry about your weight too much.\tVous vous en faites trop pour votre poids.\nYou'd better be careful what you say.\tTu ferais mieux de faire attention à ce que tu dis.\nYou'll find it difficult to meet her.\tIl te sera difficile de la rencontrer.\nYou're enjoying yourself, aren't you?\tVous vous amusez, n'est-ce pas ?\nYou're enjoying yourself, aren't you?\tTu t'amuses, pas vrai ?\nYou're in luck. The plane is on time.\tVous avez de la chance. L'avion est à l'heure.\nYou're in luck. The plane is on time.\tTu as de la chance. L'avion est à l'heure.\nYou're lucky Tom lent you some money.\tTu es chanceux que Tom t'ait prêté un peu d'argent.\nYou're lucky Tom lent you some money.\tVous êtes chanceux que Tom vous ait prêté un peu d'argent.\nYou're much prettier than I remember.\tVous êtes bien plus jolie que dans mon souvenir.\nYou're much prettier than I remember.\tTu es bien plus jolie que dans mon souvenir.\nYou're not a killer and neither am I.\tTu n'es pas un tueur et moi non plus.\nYou're not the first one to say that.\tVous n'êtes pas le seul à le dire.\nYou're safe as long as you stay here.\tTu es en sécurité aussi longtemps que tu restes ici.\nYou're the one I've been waiting for.\tTu es celui que j'attendais.\nYou're the one I've been waiting for.\tTu es celle que j'attendais.\nYou're the one who planted that tree.\tTu es celui qui a planté cet arbre.\nYou're the one who planted that tree.\tTu es celle qui a planté cet arbre.\nYou're the one who planted that tree.\tVous êtes celui qui a planté cet arbre.\nYou're the one who planted that tree.\tVous êtes celle qui a planté cet arbre.\nYou're the one who planted that tree.\tC'est toi qui as planté cet arbre.\nYou're the one who planted that tree.\tC'est vous qui avez planté cet arbre.\nYou're the same age as my girlfriend.\tTu as le même âge que ma copine.\nYou're wrong. That's not what I said.\tVous avez tort, ce n'est pas ce que j'ai dit.\nYou're wrong. That's not what I said.\tTu as tort, ce n'est pas ce que j'ai dit.\nYou've already given me enough money.\tTu m'as déjà donné assez d'argent.\nYou've already given me enough money.\tVous m'avez déjà donné assez d'argent.\nYou've done a pretty good job so far.\tTu as fait un assez bon boulot jusqu'à présent.\nYou've done a pretty good job so far.\tVous avez fait un assez bon boulot jusqu'à présent.\nYou've turned up at the right moment.\tVous êtes venue juste au bon moment.\nYou've turned up at the right moment.\tVous êtes apparu au bon moment.\nYou've turned up at the right moment.\tVous êtes apparue au bon moment.\nYou've turned up at the right moment.\tVous êtes apparus au bon moment.\nYou've turned up at the right moment.\tVous êtes apparues au bon moment.\nYou've turned up at the right moment.\tTu es apparu au bon moment.\nYou've turned up at the right moment.\tTu es apparue au bon moment.\nYour answer is far from satisfactory.\tVotre réponse est loin d'être satisfaisante.\nYour car is fast, but mine is faster.\tTa voiture va vite, mais la mienne va encore plus vite.\nYour dress is already out of fashion.\tTa robe est déjà démodée.\nYour dress is touching the wet paint.\tVotre robe touche la peinture fraîche.\nYour efforts will bear fruit someday.\tVos efforts produiront leurs fruits un de ces jours.\nYour idea differs entirely from mine.\tTon idée est complètement différente de la mienne.\nYour mother is in critical condition.\tTa mère se trouve dans un état critique.\nYour services are no longer required.\tVos services ne sont plus requis.\nYour shoes don't go with that outfit.\tVos chaussures ne vont pas avec ce costume.\nYour wallet is on the television set.\tTon porte-monnaie est sur le poste de télévision.\n\"How are you doing?\" \"I'm doing okay.\"\t« Comment vas-tu ? » « Ça va. »\n\"How are you doing?\" \"I'm doing okay.\"\t« Comment allez-vous ? » « Ça va. »\n\"How are you?\" \"I am fine, thank you.\"\t«Comment allez-vous ?» «Je vais bien, merci.»\n\"How old are you?\" \"I'm 16 years old.\"\t« Quel âge as-tu ? » « Seize ans. »\n\"Is his story true?\" \"I'm afraid not.\"\t\"Son histoire est-elle vraie ?\" \"J'ai bien peur que non.\"\n\"The phone is ringing.\" \"I'll get it.\"\t« Le téléphone sonne. » « Je vais répondre. »\n\"Will you help me?\" \"I'll be glad to.\"\t\"Pourrais-tu m'aider ?\" \"J'en serais ravi.\"\nA bat is no more a bird than a rat is.\tUne chauve-souris est autant un oiseau qu'un rat peut l'être.\nA big bridge was built over the river.\tUn grand pont a été construit au-dessus de la rivière.\nA big wave swept the man off the boat.\tUne grosse vague a éjecté l'homme du bateau.\nA blood vessel burst inside his brain.\tUn vaisseau sanguin a éclaté à l'intérieur de son cerveau.\nA clear conscience is the best pillow.\tUne conscience sans tache est le meilleur des oreillers.\nA computer can calculate very rapidly.\tUn ordinateur peut calculer très rapidement.\nA cucumber is related to a watermelon.\tLe concombre est de la même espèce que le melon.\nA dish can be spicy without being hot.\tUn plat peut être épicé sans être brûlant.\nA dog is sometimes a dangerous animal.\tUn chien peut être parfois un animal dangereux.\nA fire broke out after the earthquake.\tUn incendie s'est déclaré après le tremblement de terre.\nA gang of thieves broke into the bank.\tUn groupe de voleurs a cambriolé la banque.\nA hammer was used to break the window.\tOn a utilisé un marteau pour casser la fenêtre.\nA is the first letter of the alphabet.\t« A » est la première lettre de l'alphabet.\nA number of students are absent today.\tNombre d'étudiants sont absents, aujourd'hui.\nA plastic dish will melt on the stove.\tUn plat en plastique va fondre sur le four.\nA smart dog never barks for no reason.\tUn chien intelligent n'aboie jamais sans raison.\nA teenager sometimes acts like a baby.\tUn adolescent agit parfois comme un bébé.\nA walk before breakfast is refreshing.\tUne promenade avant le petit déjeuner est rafraîchissante.\nA wise man would not say such a thing.\tUn homme sage ne dirait pas une telle chose.\nA woman fell from a ship into the sea.\tUne femme tomba du bateau à la mer.\nA young man waited in line to see him.\tUn jeune homme attendait son tour pour le voir.\nAI stands for artificial intelligence.\tIA signifie Intelligence Artificielle.\nAcid rain is not a natural phenomenon.\tLa pluie acide n'est pas un phénomène naturel.\nAfterwards, he assumed a new identity.\tPar la suite, il vécut sous une autre identité.\nAir, like food, is a basic human need.\tL'air, tout comme la nourriture, est un besoin humain fondamental.\nAll I ask is that you show up on time.\tTout ce que je demande est que vous vous présentiez à l'heure.\nAll I ask is that you show up on time.\tTout ce que je demande est que tu te présentes à l'heure.\nAll I know is that he came from China.\tTout ce que je sais, c'est qu'il vient de Chine.\nAll I know is that she left last week.\tTout ce que je sais, c'est qu'elle est partie la semaine dernière.\nAll of a sudden, Tom and I were alone.\tSoudainement, Tom et moi étions seuls.\nAll of a sudden, Tom and I were alone.\tTout à coup, Tom et moi étions seuls.\nAll of my friends like computer games.\tTous mes amis aiment les jeux vidéo.\nAll of the students stood up together.\tTous les étudiants se levèrent ensemble.\nAll the students are studying English.\tTous les étudiants étudient l'anglais.\nAll you have to do is to do your best.\tTout ce que tu dois faire est de faire de ton mieux.\nAll you have to do is wash the dishes.\tTout ce que tu as à faire, c'est de laver les assiettes.\nAlmost all the students know about it.\tPresque tous les étudiants le savent.\nAlthough the sun was out, it was cold.\tBien que le soleil donnât, il faisait froid.\nAm I the only one who agrees with you?\tSuis-je le seul d'accord avec toi ?\nAm I the only one who agrees with you?\tSuis-je la seule à être d'accord avec vous ?\nAmerica did away with slavery in 1863.\tL'Amérique abolit l'esclavage en 1863.\nAmericans have the right to bear arms.\tLes Étatsuniens ont le droit de porter des armes.\nAnts and giraffes are distant cousins.\tLes fourmis et les girafes sont des cousins éloignés.\nAre there any cute boys in your class?\tY a-t-il de mignons garçons, dans ta classe ?\nAre there any cute boys in your class?\tY a-t-il de mignons garçons, dans votre classe ?\nAre they the people you saw yesterday?\tSont-ce les gens que tu as vus hier ?\nAre you doing anything tomorrow night?\tTu fais quelque chose demain soir?\nAre you doing what you think is right?\tFaites-vous ce que vous estimez être juste ?\nAre you doing what you think is right?\tFais-tu ce que tu crois être juste ?\nAre you getting much out of that book?\tRetires-tu beaucoup de cet ouvrage ?\nAre you getting much out of that book?\tRetirez-vous beaucoup de cet ouvrage ?\nAre you going to write to your father?\tVas-tu écrire à ton père ?\nAre you satisfied with my explanation?\tÊtes-vous satisfait de mon explication ?\nAre you serious about getting married?\tEnvisages-tu sérieusement de te marier ?\nAre you serious about getting married?\tEnvisagez-vous sérieusement de vous marier ?\nAre you suggesting it's a design flaw?\tSuggérez-vous qu'il s'agit d'un défaut de conception ?\nAre you suggesting it's a design flaw?\tSuggères-tu qu'il s'agit d'un défaut de conception ?\nAre you sure that you want to do this?\tEs-tu sûr de vouloir faire ça ?\nAre you sure that you want to do this?\tÊtes-vous sûr de vouloir faire cela ?\nAre you sure you didn't hear anything?\tEs-tu sûr que tu n'avais rien entendu ?\nAren't you worried it might be a trap?\tVous n'avez pas peur que ce soit peut-être un piège?\nArmenian is an Indo-European language.\tL'arménien est une langue indo-européenne.\nAs I entered the room, they applauded.\tLorsque je suis entré dans la salle, ils ont applaudi.\nAs I was having lunch, the phone rang.\tAlors que je déjeunais, le téléphone sonna.\nAs a matter of fact, he was convinced.\tDe fait, il était convaincu.\nAs a matter of fact, she is my sister.\tDe fait, elle est ma sœur.\nAs a matter of fact, she is my sister.\tDe fait, c'est ma sœur.\nAs always, you have understood poorly!\tComme toujours, tu as à peine compris !\nAs always, you have understood poorly!\tComme toujours, vous avez à peine compris !\nAs far as I know, he is an honest man.\tPour autant que je sache, c'est un homme honnête.\nAs far as I know, she hasn't left yet.\tPour autant que je sache, elle n'est pas encore partie.\nAs far as I know, that never happened.\tPour autant que je sache, ça n'est jamais arrivé.\nAs far as I know, that never happened.\tA ma connaissance, ça ne s'est jamais produit.\nAs soon as he comes back, let me know.\tDès qu'il sera de retour, dis-le-moi.\nAsk him if he will attend the meeting.\tDemande-lui s'il va venir à la réunion.\nAsk him whether she is at home or not.\tDemande-lui si elle est à la maison ou pas.\nAt first, everything seemed difficult.\tAu début, tout semblait difficile.\nAt last, the truth became known to us.\tOn a enfin su la vérité.\nAt what time did you hear the gunshot?\tÀ quelle heure avez-vous entendu le coup de feu ?\nAt what time did you hear the gunshot?\tÀ quelle heure as-tu entendu le coup de feu ?\nAt your age, you ought to know better.\tÀ ton âge, tu devrais faire preuve de plus de discernement.\nAthletes usually abstain from smoking.\tGénéralement les athlètes évitent de fumer.\nBad weather prevented us from leaving.\tLe mauvais temps nous empêcha de partir.\nBe careful near the edge of the cliff.\tSois prudent à proximité du bord de la falaise !\nBe careful near the edge of the cliff.\tSoyez prudent à proximité du bord de la falaise !\nBe careful near the edge of the cliff.\tSois prudente à proximité du bord de la falaise !\nBe careful near the edge of the cliff.\tSoyez prudente à proximité du bord de la falaise !\nBe careful near the edge of the cliff.\tSoyez prudents à proximité du bord de la falaise !\nBe careful near the edge of the cliff.\tSoyez prudentes à proximité du bord de la falaise !\nBe careful not to say anything stupid.\tFais attention à ne rien dire de stupide.\nBeing very tired, I went to bed early.\tÉtant très fatigué, j'allai me coucher tôt.\nBeing very tired, I went to bed early.\tÉtant très fatiguée, je me suis couchée tôt.\nBill Gates is the world's richest man.\tBill Gates est l'homme le plus riche du monde.\nBill Gates is the world's richest man.\tBill Gates est l'homme le plus riche au monde.\nBotany deals with the study of plants.\tLa botanique traite de l'étude des plantes.\nBoth of the brothers are still living.\tLes deux frères sont toujours en vie.\nBreak the chocolate into small pieces.\tCassez le chocolat en petits morceaux.\nBrush your teeth at least twice a day.\tBrosse-toi les dents au moins deux fois par jour.\nBusiness was a little slow last month.\tLes affaires étaient un peu ralenties, le mois dernier.\nCan I borrow your eraser for a moment?\tPuis-je emprunter ta gomme un instant ?\nCan I borrow your tennis racket today?\tPuis-je emprunter ta raquette de tennis aujourd'hui ?\nCan I call you back in twenty minutes?\tPuis-je te rappeler dans vingt minutes ?\nCan I go horseback riding next Sunday?\tJe pourrai faire du cheval, dimanche prochain ?\nCan I have a word with Tom in private?\tPuis-je dire un mot à Tom en privé?\nCan I interest you in a game of cards?\tSeriez-vous intéressé par un jeu de cartes ?\nCan I talk to you for a second please?\tPuis-je te parler une seconde, s'il te plaît ?\nCan I talk to you for a second please?\tPuis-je vous parler un instant, s'il vous plaît ?\nCan I use your car for a little while?\tPuis-je utiliser votre voiture pour un petit moment?\nCan we forget that this just happened?\tPouvons-nous oublier que ça vient d'arriver ?\nCan you persuade him to join our club?\tPeux-tu le persuader de se joindre à notre club ?\nCan you persuade him to join our club?\tPeux-tu le persuader de se joindre à notre cercle ?\nCan you persuade him to join our club?\tÊtes-vous en mesure de le persuader de se joindre à notre cercle ?\nCan you promise me you won't tell Tom?\tPeux-tu me promettre que tu ne diras rien à Tom ?\nCan you promise me you won't tell Tom?\tPouvez-vous me promettre que vous n'en direz rien à Tom ?\nCan you shut the door on your way out?\tEst-ce que tu peux fermer la porte en sortant ?\nCan you take me with you on the plane?\tPouvez-vous me prendre à votre bord ?\nCan you take me with you on the plane?\tPouvez-vous me prendre à bord ?\nCan you take me with you on the plane?\tPeux-tu me prendre à bord ?\nCan you tell if it will rain tomorrow?\tPouvez-vous dire s'il pleuvra demain ?\nCan you tell me which button to press?\tPouvez-vous me dire sur quel bouton appuyer ?\nCan you think of anyone more suitable?\tPouvez-vous songer à quelqu'un de plus convenable ?\nCan you think of anyone more suitable?\tPeux-tu songer à quelqu'un de plus convenable ?\nCan you watch my dog while I’m away?\tPourriez-vous vous occuper de mon chien pendant mon absence ?\nCan't we talk about it in the morning?\tNe pouvons-nous pas en parler dans la matinée ?\nCan't you reach the book on the shelf?\tPeux-tu attraper ce livre sur l'étagère ?\nCasinos treat high rollers like kings.\tLes casinos traitent les flambeurs comme des rois.\nCertain things are better left unsaid.\tCertaines choses sont mieux non-dits.\nChances are the bill will be rejected.\tLa probabilité est que le projet de loi sera rejeté.\nChange trains at Chicago for New York.\tChangez de train à Chicago pour New York.\nChildren are playing behind the house.\tLes enfants jouent derrière la maison.\nClasses start at eight in the morning.\tLes cours démarrent à huit heures du matin.\nClasses start at eight in the morning.\tLes cours démarrent à huit heures le matin.\nCome and see me whenever you are free.\tVenez me voir dès que vous êtes libre.\nConcerning this, I'm the one to blame.\tEn ce qui concerne ça, je suis le fautif.\nConcerning this, I'm the one to blame.\tPour ça, je suis le fautif.\nContact her if you have any questions.\tPrenez contact avec elle si vous avez la moindre question.\nCould I have a knife and fork, please?\tPourrais-je avoir un couteau et une fourchette, s'il vous plaît ?\nCould we have a table near the window?\tPourrions-nous avoir une table près de la fenêtre ?\nCould you change these for me, please?\tPouvez-vous changer cela pour moi s'il vous plait ?\nCould you put this bag somewhere else?\tPourriez-vous mettre ce sac ailleurs ?\nCould you put this bag somewhere else?\tPourriez-vous poser ce sac ailleurs ?\nCould you put this bag somewhere else?\tPourrais-tu mettre ce sac ailleurs ?\nCould you put this bag somewhere else?\tPourrais-tu poser ce sac ailleurs ?\nCould you show me the way to the port?\tPouvez-vous m'indiquer le chemin du port ?\nCould you speak as slowly as possible?\tPourriez-vous, s'il vous plaît, parler le plus lentement possible ?\nCould you suggest an alternative date?\tPourriez-vous suggérer une autre date ?\nCould you tell me the way to the port?\tPouvez-vous m'indiquer le chemin du port ?\nDark clouds gathered over the horizon.\tDe sombres nuages s'assemblèrent à l'horizon.\nDelivery is not included in the price.\tLa livraison n'est pas comprise dans le prix.\nDid anyone visit me during my absence?\tEst-ce que quelqu'un est venu durant mon absence ?\nDid anyone visit me during my absence?\tQuelqu'un est-il venu en mon absence ?\nDid that hotel meet your expectations?\tCet hôtel s'est-il montré à la hauteur de vos attentes ?\nDid you crash your car into something?\tAs-tu heurté quelque chose avec ta voiture ?\nDid you crash your car into something?\tAvez-vous heurté quelque chose avec votre voiture ?\nDid you feel an earthquake last night?\tAs-tu senti un tremblement de terre la nuit dernière ?\nDid you have a good time at the party?\tVous êtes-vous bien amusés à la fête ?\nDid you recognize any of those people?\tAvez-vous reconnu la moindre de ces personnes ?\nDid you recognize any of those people?\tAs-tu reconnu la moindre de ces personnes ?\nDidn't your parents give you anything?\tN'as-tu reçu aucun cadeau de tes parents ?\nDidn't your parents give you anything?\tTes parents ne t'ont-ils rien donné du tout ?\nDidn't your parents teach you manners?\tVos parents ne vous ont-ils pas inculqué les bonnes manières ?\nDidn't your parents teach you manners?\tTes parents ne t'ont-ils pas inculqué les bonnes manières ?\nDo I have to attend the party tonight?\tDois-je être présent à la soirée de ce soir ?\nDo you also have this in other colors?\tAvez-vous cela également dans d'autres couleurs ?\nDo you believe in love at first sight?\tCrois-tu au coup de foudre ?\nDo you believe in love at first sight?\tEst-ce que tu crois au coup de foudre ?\nDo you feel giving gifts is important?\tAvez-vous le sentiment que remettre des présents est important ?\nDo you feel giving gifts is important?\tAs-tu le sentiment que remettre des présents est important ?\nDo you feel like going out for a walk?\tQue dis-tu de sortir faire une promenade ?\nDo you feel like going out for a walk?\tQue dites-vous de sortir faire une promenade ?\nDo you feel like going to the theater?\tAvez-vous envie d'aller au théâtre?\nDo you go to school on foot every day?\tVas-tu à l'école à pied tous les jours?\nDo you guys want to read what I wrote?\tVoulez-vous lire ce que j'ai écrit, les mecs ?\nDo you have a book written in English?\tAs-tu un livre écrit en anglais ?\nDo you have a crowbar in your toolbox?\tAs-tu un pied-de-biche dans ta caisse à outils ?\nDo you have a crowbar in your toolbox?\tDisposez-vous d'une pince-monseigneur dans votre caisse à outils ?\nDo you have a flashlight I can borrow?\tPeux-tu me prêter une lampe torche ?\nDo you have any plans for the weekend?\tAs-tu le moindre projet pour le week-end ?\nDo you have any plans for the weekend?\tAvez-vous le moindre projet pour le week-end ?\nDo you have anything to do after that?\tAvez-vous quelque chose à faire après ça ?\nDo you have much snow in your country?\tY a-t-il beaucoup de neige dans votre pays ?\nDo you know how the accident happened?\tSavez-vous comment l'accident est arrivé ?\nDo you know of any inexpensive stores?\tEst-ce que tu connais des magasins bon marché ?\nDo you know what your kids are eating?\tSavez-vous ce que vos enfants mangent ?\nDo you know what your kids are eating?\tSais-tu ce que tes enfants mangent ?\nDo you know what your kids are eating?\tSavez-vous ce que vos enfants sont en train de manger ?\nDo you know what your kids are eating?\tSais-tu ce que tes enfants sont en train de manger ?\nDo you know which book sells well now?\tSavez-vous quel livre se vend bien en ce moment ?\nDo you know which book sells well now?\tSais-tu quel livre se vend bien en ce moment ?\nDo you know who invented this machine?\tSais-tu qui a inventé cette machine ?\nDo you know whose handwriting this is?\tSavez-vous de quelle écriture il s'agit ?\nDo you know why Tom doesn't like Mary?\tSais-tu pourquoi Tom n'aime pas Mary ?\nDo you know why Tom doesn't like Mary?\tSavez-vous pourquoi Tom n'aime pas Mary ?\nDo you let your children drink coffee?\tLaissez-vous vos enfants boire du café ?\nDo you mind if I go back to sleep now?\tVoyez-vous un inconvénient à ce que je retourne maintenant dormir ?\nDo you mind if I go back to sleep now?\tVois-tu un inconvénient à ce que je retourne maintenant dormir ?\nDo you mind if I watch TV for a while?\tVoyez-vous un inconvénient à ce que je regarde un moment la télé ?\nDo you need me to give you some money?\tAs-tu besoin que je te donne de l'argent ?\nDo you need me to repeat the question?\tAvez-vous besoin que je répète la question ?\nDo you remember when you last saw Tom?\tVous souvenez-vous lorsque vous avez vu Tom pour la dernière fois?\nDo you sometimes study in the library?\tÉtudies-tu parfois à la bibliothèque ?\nDo you sometimes study in the library?\tÉtudiez-vous parfois à la bibliothèque ?\nDo you think this plan is unrealistic?\tPensez-vous que ce plan est irréaliste?\nDo you think you and I are compatible?\tPenses-tu que toi et moi soyons incompatibles ?\nDo you think you and I are compatible?\tPensez-vous que vous et moi soyons incompatibles ?\nDo you understand what I mean by that?\tComprends-tu ce que je veux dire par là ?\nDo you understand what I mean by that?\tComprenez-vous ce que je veux dire par là ?\nDo you understand what the problem is?\tComprends-tu quel est le problème ?\nDo you want some sugar in your coffee?\tVeux-tu du sucre dans ton café ?\nDo you want some sugar in your coffee?\tVoulez-vous du sucre dans votre café ?\nDo you want to be an actor in a movie?\tVeux-tu être un acteur dans un film ?\nDo you want to be an actor in a movie?\tVeux-tu être une actrice dans un film ?\nDo you want to be an actor in a movie?\tVoulez-vous être un acteur dans un film ?\nDo you want to be an actor in a movie?\tVoulez-vous être une actrice dans un film ?\nDo you want to know why I lied to Tom?\tVeux-tu savoir pourquoi j'ai menti à Tom ?\nDo you want to know why I lied to Tom?\tVoulez-vous savoir pourquoi j'ai menti à Tom ?\nDo you want to watch this movie again?\tVeux-tu regarder ce film à nouveau ?\nDo you want to watch this movie again?\tVoulez-vous regarder ce film à nouveau ?\nDoes it hurt to get your ears pierced?\tEst-ce que ça fait mal de se faire percer les oreilles ?\nDoes it snow a lot here in the winter?\tNeige-t-il beaucoup ici en hiver ?\nDoes someone here know how to do this?\tQuelqu'un ici sait-il comme le faire ?\nDoes someone here know how to do this?\tQuelqu'un ici sait-il comme faire ceci ?\nDon't call Tom at his home after 2:30.\tN'appelez pas Tom chez lui après 2h30.\nDon't call Tom at his home after 2:30.\tN'appelle pas Tom chez lui après 14h30.\nDon't crack a nut with a sledgehammer.\tNe casse pas une noix avec un marteau de forgeron.\nDon't distract me while I am studying.\tNe me dérange pas quand j'étudie.\nDon't dwell too much upon the subject.\tNe vous appesantissez pas trop sur le sujet.\nDon't ever talk to me like that again.\tNe me reparle plus jamais ainsi !\nDon't ever talk to me like that again.\tNe me reparlez plus jamais ainsi !\nDon't forget that Tom still loves you.\tN'oublie pas Tom t'aime encore.\nDon't forget that Tom still loves you.\tN'oubliez pas que Tom vous aime toujours.\nDon't forget to bring your student ID.\tN'oubliez pas d'apporter votre carte d'étudiant.\nDon't forget to drink plenty of water.\tN'oubliez pas de boire beaucoup d'eau.\nDon't forget to put on some sunscreen.\tN'oublie pas de mettre de la crème solaire !\nDon't forget to put on some sunscreen.\tN'oubliez pas de mettre de la crème solaire !\nDon't get off the train till it stops.\tNe descendez pas du train avant qu'il ne s'arrête.\nDon't interrupt me while I am talking.\tNe m'interromps pas pendant que je parle !\nDon't interrupt me while I'm speaking.\tNe m'interrompez pas pendant que je parle.\nDon't interrupt me while I'm speaking.\tNe m'interromps pas tandis que je parle.\nDon't just stand there, say something.\tNe reste pas planté là. Dis quelque chose !\nDon't just stand there, say something.\tNe reste pas plantée là. Dis quelque chose !\nDon't just stand there, say something.\tNe restez pas planté là. Dites quelque chose !\nDon't just stand there, say something.\tNe restez pas plantée là. Dites quelque chose !\nDon't just stand there, say something.\tNe restez pas plantées là. Dites quelque chose !\nDon't just stand there, say something.\tNe restez pas plantés là. Dites quelque chose !\nDon't put all your eggs in one basket.\tNe mets pas tous tes œufs dans le même panier.\nDon't put all your eggs in one basket.\tNe mettez pas tous vos œufs dans le même panier.\nDon't put your head out of the window.\tNe passe pas ta tête par la fenêtre.\nDon't rely too much on your guidebook.\tNe vous en remettez pas trop à votre guide.\nDon't talk to him while he's studying.\tNe lui parlez pas tandis qu'il étudie.\nDon't talk to him while he's studying.\tNe lui parle pas pendant qu'il étudie.\nDon't underestimate his determination.\tNe sous-estime pas sa détermination.\nDon't underestimate his determination.\tNe sous-estimez pas sa détermination.\nDon't underestimate your own strength.\tNe sous-estimez pas votre propre force !\nDon't underestimate your own strength.\tNe sous-estime pas ta propre force !\nDon't worry. He knows what he's doing.\tNe t'en fais pas. Il sait ce qu'il fait.\nDon't worry. He knows what he's doing.\tNe vous en faites pas. Il sait ce qu'il fait.\nDon't you get bored when you're alone?\tTu ne t'ennuies pas quand tu es tout seul  ?\nDon't you get bored when you're alone?\tNe vous ennuyez-vous pas, lorsque vous êtes seuls ?\nDon't you get bored when you're alone?\tNe vous ennuyez-vous pas, lorsque vous êtes seules ?\nDon't you think I know my own brother?\tNe penses-tu pas que je connaisse mon propre frère ?\nDon't you think I know my own brother?\tNe pensez-vous pas que je connaisse mon propre frère ?\nDon't you think we'd better stay here?\tNe penses-tu pas que nous ferions mieux de rester ici ?\nDon't you think we'd better stay here?\tNe pensez-vous pas que nous ferions mieux de rester ici ?\nDrinking and driving can be dangerous.\tL'alcool au volant peut être dangereux.\nElephants were killed for their ivory.\tLes éléphants furent tués pour leur ivoire.\nElephants were killed for their ivory.\tLes éléphants ont été tués pour leur ivoire.\nEnglish is studied all over the world.\tL'anglais est étudié partout dans le monde.\nEveryone has strengths and weaknesses.\tTout le monde a ses forces et ses faiblesses.\nEveryone is waiting in the other room.\tTout le monde attend dans la pièce d'à côté.\nEveryone is waiting in the other room.\tTout le monde attend dans l'autre pièce.\nEveryone suddenly burst into laughter.\tTout le monde éclata soudain de rire.\nEveryone was friendly to the new girl.\tTout le monde était gentil avec la nouvelle fille.\nEverything Tom did was groundbreaking.\tTout ce que Tom faisait était révolutionnaire.\nExams are right after summer vacation.\tLes examens ont lieu juste après les congés d'été.\nExams are right after summer vacation.\tLes examens se tiennent juste après les vacances d'été.\nExcuse me, can I have a word with you?\tExcusez-moi, puis-je vous dire un mot ?\nExcuse me, can I have a word with you?\tExcuse-moi, puis-je te dire un mot ?\nFarmers are busy working in the field.\tLes agriculteurs sont occupés dans les champs.\nFinding an apartment can be difficult.\tTrouver un appartement peut s'avérer difficile.\nFollow me and I will show you the way.\tSuis-moi et je te montrerai le chemin.\nFour is an unlucky number in Japanese.\tQuatre est un nombre porte malheur au Japon.\nFrench is a very interesting language.\tLe français est une langue très intéressante.\nFrom here on out, it's smooth sailing.\tÀ partir d'ici, ça baigne.\nFrom now on, I will not use that word.\tÀ partir de maintenant, je n'utiliserai plus ce mot.\nGive me something I can cut this with.\tDonne-moi quelque chose avec lequel je peux couper ceci.\nGive me something I can cut this with.\tDonnez-moi quelque chose avec lequel je peux couper ceci.\nGlaciers around the world are melting.\tLes glaciers fondent tout autour du monde.\nGo play outside. It's a beautiful day.\tVa jouer dehors. C'est une belle journée.\nGuacamole is a dip made from avocados.\tLa guacamole est une purée à base d'avocats.\nHave you ever done any volunteer work?\tAvez-vous jamais effectué un travail volontaire ?\nHave you ever done any volunteer work?\tAs-tu jamais effectué un travail volontaire ?\nHave you ever given money to a beggar?\tAvez-vous jamais donné de l'argent à un mendiant ?\nHave you ever given money to a beggar?\tAs-tu jamais donné de l'argent à un mendiant ?\nHave you ever had any serious illness?\tAvez-vous déjà eu une maladie grave ?\nHave you ever heard her sing on stage?\tL'as-tu jamais entendue chanter sur scène ?\nHave you ever heard her sing on stage?\tL'avez-vous jamais entendue chanter sur scène ?\nHave you ever known me to be mistaken?\tM'as-tu déjà vu me tromper ?\nHave you ever known me to be mistaken?\tM'avez-vous déjà vu me tromper ?\nHave you ever read Gulliver's Travels?\tAs-tu lu \"Les voyages de Gulliver\" ?\nHave you ever spoken to Tom in French?\tAs-tu déjà parlé à Tom en français ?\nHave you ever tasted such a good soup?\tAvez-vous jamais goûté une si bonne soupe ?\nHave you started reading the book yet?\tAvez-vous déjà commencé à lire ce livre ?\nHe acknowledged me by lifting his hat.\tIl me reconnut en ôtant son chapeau.\nHe added a little sugar to the coffee.\tIl a ajouté un peu de sucre dans le café.\nHe added a little sugar to the coffee.\tIl ajouta un peu de sucre dans le café.\nHe always makes cynical remarks to me.\tIl me fait toujours des remarques cyniques.\nHe always sings while taking a shower.\tIl chante toujours sous la douche.\nHe always wants to have the last word.\tIl veut toujours avoir le dernier mot.\nHe apologized for having offended her.\tIl la pria de l'excuser de l'avoir offensée.\nHe asked his teacher stupid questions.\tIl posa des questions stupides à son professeur.\nHe asked me if I could do him a favor.\tIl me demanda si je pouvais lui faire une faveur.\nHe asked me to go to a movie with him.\tIl me demanda d'aller voir un film avec lui.\nHe asked me to go to a movie with him.\tIl m'a demandé d'aller voir un film avec lui.\nHe asked me whether anybody was there.\tIl m'a demandé s'il y avait quelqu'un ici.\nHe assumed full responsibility for it.\tIl assuma entièrement sa responsabilité pour ça.\nHe attaches importance to this matter.\tIl accorde de l'importance à cette affaire.\nHe attempted to swim across the river.\tIl a tenté de traverser la rivière à la nage.\nHe attributed his failure to bad luck.\tIl mit son échec sur le compte de la déveine.\nHe attributes his poverty to bad luck.\tIl attribue sa pauvreté à la malchance.\nHe became brave in the face of danger.\tIl est devenu courageux face au danger.\nHe became famous throughout the world.\tIl est devenu célèbre dans le monde entier.\nHe bicyled to the beach every weekend.\tIl se rendait à vélo à la plage, chaque fin de semaine.\nHe came at 3 o'clock in the afternoon.\tIl est venu à trois heures de l'après-midi.\nHe came back at about nine last night.\tIl est rentré vers neuf heures la nuit dernière.\nHe came to see me yesterday afternoon.\tIl est venu me voir hier après-midi.\nHe claimed to be an expert in finance.\tIl prétendait être un expert en finances.\nHe committed suicide by taking poison.\tIl se suicida en prenant du poison.\nHe committed suicide by taking poison.\tIl s'est suicidé en ingérant du poison.\nHe committed suicide by taking poison.\tIl s'est suicidé par ingestion de poison.\nHe constantly criticizes other people.\tIl est toujours en train de critiquer les autres.\nHe cried out for help in a loud voice.\tIl cria à l'aide à haute voix.\nHe dedicated his life to medical work.\tIl a consacré sa vie à la médecine.\nHe did a real snow job on my daughter.\tIl a réussi à faire croire à ma fille que son histoire était plausible.\nHe did a real snow job on my daughter.\tIl a vraiment fait gober son baratin à ma fille.\nHe did his best never to think of her.\tIl a fait de son mieux pour ne plus penser à elle.\nHe did his best never to think of her.\tIl fit de son mieux pour ne plus penser à elle.\nHe did his best to carry out the plan.\tIl fit de son mieux pour exécuter le plan.\nHe did nothing but lie in bed all day.\tIl n'a rien fait à part rester au lit toute la journée.\nHe didn't know how to express himself.\tIl ne savait pas comment s'exprimer.\nHe didn't want to part with his house.\tIl ne voulait pas se séparer de sa maison.\nHe discussed the problem with his son.\tIl discuta du problème avec son fils.\nHe doesn't know what it is to be poor.\tIl ne sait pas ce que c'est d'être pauvre.\nHe doesn't know what it is to be poor.\tIl ne sait pas ce que c'est qu'être pauvre.\nHe doesn't like being told what to do.\tIl n'aime pas qu'on lui dise quoi faire.\nHe doesn't want to play with his toys.\tIl ne veut pas jouer avec ses jouets.\nHe drinks his coffee black every time.\tIl boit tout le temps son café noir.\nHe earns more money than he can spend.\tIl gagne plus d'argent qu'il ne peut en dépenser.\nHe earns more money than he can spend.\tIl gagne davantage d'argent qu'il ne peut en dépenser.\nHe emphasized the importance of peace.\tIl insista sur l'importance de la paix.\nHe fainted in the midst of his speech.\tIl s'est évanoui au milieu de son discours.\nHe fell for it hook, line, and sinker.\tIl a tout gobé.\nHe fell for it hook, line, and sinker.\tIl a tout avalé.\nHe fell for it hook, line, and sinker.\tIl a tout avalé : l'hameçon, la canne et le plomb.\nHe felt in his pocket for his lighter.\tIl chercha à tâtons son briquet dans sa poche.\nHe forgot to come to see me yesterday.\tIl a oublié de venir me voir hier.\nHe gave away all his money to charity.\tIl donna tout son argent aux œuvres.\nHe gave away all his money to charity.\tIl donna tout son argent aux œuvres de charité.\nHe gave his children a good education.\tIl a donné une bonne éducation à ses enfants.\nHe gave me some bread, also some milk.\tIl m'a donné du pain et du lait.\nHe gave me what money he had with him.\tIl me donna tout l'argent qu'il avait sur lui.\nHe gets a haircut three times a month.\tIl se fait couper les cheveux trois fois par mois.\nHe got hooked on drugs at a young age.\tIl est devenu toxico-dépendant à un jeune âge.\nHe got hooked on drugs at a young age.\tIl est devenu accro aux drogues à un jeune âge.\nHe got lost on his way to the village.\tIl se perdit sur le chemin du village.\nHe got the first prize in the contest.\tIl gagna le premier prix de la compétition.\nHe had a queer expression on his face.\tIl faisait une drôle de tête.\nHe had his arm broken during the game.\tIl s'est cassé le bras pendant le jeu.\nHe had his pocket picked in the crowd.\tOn lui a fait la poche au milieu de la foule.\nHe had one of his socks on inside out.\tIl porte une de ses chaussettes à l'envers.\nHe handed the letter to the secretary.\tIl tendit la lettre à la secrétaire.\nHe has a big restaurant near the lake.\tIl a un grand restaurant près du lac.\nHe has a good record as a businessman.\tIl a bonne réputation comme homme d'affaire.\nHe has a large basket full of flowers.\tIl a un grand panier rempli de fleurs.\nHe has a scraggly beard and a bum leg.\tIl a une barbe clairsemée et une patte folle.\nHe has access to the American Embassy.\tIl a accès à l'ambassade américaine.\nHe has access to the American Embassy.\tIl a accès à l'ambassade étatsunienne.\nHe has been secretly in love with her.\tIl l'a aimé secrètement.\nHe has been secretly in love with her.\tIl a été secrètement amoureux d'elle.\nHe has built up an excellent business.\tIl a bâti une très bonne affaire.\nHe has to have an operation next week.\tIl doit subir une opération la semaine prochaine.\nHe impressed me with his magic tricks.\tIl m'a impressionné avec ses tours de magie.\nHe is a critic rather than a novelist.\tIl est critique plutôt que romancier.\nHe is a professor of English at Leeds.\tIl est professeur d'anglais à Leeds.\nHe is confronted by many difficulties.\tIl est confronté à de nombreuses difficultés.\nHe is experienced in valuing antiques.\tIl est expérimenté dans l'évaluation d'antiquités.\nHe is fatter than when I last saw him.\tIl est plus gros que la dernière fois que je l'ai vu.\nHe is holding his books under his arm.\tIl porte ses livres sous son bras.\nHe is in excellent physical condition.\tIl est en excellente condition physique.\nHe is my friend. Do you guys know him?\tC'est mon pote. Vous le connaissez, les mecs ?\nHe is planning to launch his business.\tIl projette de lancer son entreprise.\nHe is the fastest runner in our class.\tIl est le coureur le plus rapide de la classe.\nHe is well read in English literature.\tIl est calé en littérature anglaise.\nHe is working in the field of biology.\tIl travaille dans le domaine de la biologie.\nHe jumped from one subject to another.\tIl est passé du coq à l'âne.\nHe left everything to her in his will.\tIl lui a tout laissé dans son testament.\nHe lost a fortune in the stock market.\tIl perdit une fortune sur le marché des titres mobiliers.\nHe lost a fortune in the stock market.\tIl perdit une fortune sur le marché des valeurs mobilières.\nHe lost a fortune in the stock market.\tIl perdit une fortune sur le marché des actions.\nHe lost his eyesight in that accident.\tIl perdit la vue dans cet accident.\nHe made up his mind to go there alone.\tIl était résolu à y aller seul.\nHe managed to escape through a window.\tIl s'est arrangé pour s'échapper par la fenêtre.\nHe managed to escape through a window.\tIl s'arrangea pour s'échapper par la fenêtre.\nHe managed to escape through a window.\tIl s'est débrouillé pour s'échapper par la fenêtre.\nHe managed to escape through a window.\tIl se débrouilla pour s'échapper par la fenêtre.\nHe married his high school sweetheart.\tIl a épousé son amour de lycée.\nHe never pays attention to what I say.\tIl ne prête jamais attention à ce que je dis.\nHe objected to my going out yesterday.\tIl a désapprouvé que je sorte hier.\nHe often sits up late writing letters.\tIl reste souvent assis, tard, à écrire des lettres.\nHe owes his success only to good luck.\tIl ne doit son succès qu'à la bonne fortune.\nHe parked his car behind the building.\tIl gara sa voiture derrière le bâtiment.\nHe preferred working to doing nothing.\tIl a préféré travailler plutôt que de ne rien faire.\nHe pretends that he's a stranger here.\tIl prétend ne pas être du coin.\nHe pushed his nose against the window.\tIl mit son nez à la fenêtre.\nHe ran away when he saw the policeman.\tIl s'enfuit lorsqu'il vit le policier.\nHe ran away when he saw the policeman.\tIl s'est enfui lorsqu'il a vu le policier.\nHe ran the risk of having an accident.\tIl courut le risque d'avoir un accident.\nHe said nothing, which made her angry.\tIl ne dit rien, ce qui la mit en colère.\nHe seemed to know everything about me.\tIl semblait qu'il connaissait tout de moi.\nHe showed me his collection of stamps.\tIl m'a montré sa collection de timbres-poste.\nHe showed me his collection of stamps.\tIl me montra sa collection de timbres.\nHe spoke too quickly for the students.\tIl parlait trop vite pour les élèves.\nHe stayed at my place for three weeks.\tIl est resté chez moi durant trois semaines.\nHe stayed in New York for three weeks.\tIl est resté à New York trois semaines.\nHe studies ten hours a day on average.\tIl étudie en moyenne dix heures par jour.\nHe talks as though he knew everything.\tIl parle comme s'il connaissait tout.\nHe threatened me, but I wasn't scared.\tIl m'a menacé, mais je n'ai pas eu peur.\nHe threatened me, but I wasn't scared.\tIl m'a menacée, mais je n'ai pas eu peur.\nHe threatened me, but I wasn't scared.\tIl me menaça, mais je n'eus pas peur.\nHe took up gardening after he retired.\tIl a commencé le jardinage après avoir pris sa retraite.\nHe traveled to Hawaii with the family.\tIl a voyagé à Hawaii avec sa famille.\nHe tried in vain to solve the problem.\tIl a tenté en vain de résoudre le problème.\nHe turned pale the instant he saw her.\tIl est devenu pâle à l'instant où il l'a vu.\nHe usually fed his dog cheap dog food.\tIl donnait d'ordinaire à manger à son chien, de la nourriture pour chien bon marché.\nHe wanted the cab driver to turn left.\tIl voulait que le chauffeur de taxi tourne à gauche.\nHe wants to be a doctor in the future.\tIl veut être docteur plus tard.\nHe was absolved of all responsibility.\tIl fut absout de toute responsabilité.\nHe was angry because of what she said.\tIl était en colère à cause de ce qu'elle avait dit.\nHe was given a gold watch as a reward.\tOn lui a donné une montre en or en récompense.\nHe was given the benefit of the doubt.\tOn lui a accordé le bénéfice du doute.\nHe was involved in a traffic accident.\tIl a été impliqué dans un accident de circulation.\nHe was listening to music in his room.\tIl écoutait de la musique dans sa chambre.\nHe was sentenced to community service.\tIl a été condamné à une peine de travail d'intérêt général.\nHe was so sad that he almost went mad.\tIl était si triste qu'il en est presque devenu fou.\nHe was too proud to accept any reward.\tIl est trop fier pour accepter une récompense.\nHe was too short to get at the grapes.\tIl était trop petit pour atteindre les raisins.\nHe was walking slowly down the street.\tIl descendait lentement la rue.\nHe went to the airport to see her off.\tIl est allé à l'aéroport pour lui faire ses adieux.\nHe will arrive by eight at the latest.\tIl arrivera pour huit heures au plus tard.\nHe woke up in the middle of the night.\tIl se réveilla au milieu de la nuit.\nHe writes to his parents once a month.\tIl écrit à ses parents une fois par mois.\nHe'll do anything to score some drugs.\tIl ferait n'importe quoi pour se procurer de la drogue.\nHe'll know the secret sooner or later.\tIl découvrira le secret tôt ou tard.\nHe'll run out of luck sooner or later.\tLa chance arrêtera de lui sourire, tôt ou tard.\nHe's a famous popular singer in Japan.\tIl est un célèbre chanteur populaire au Japon.\nHe's a leading authority in his field.\tC'est une pointure dans son domaine.\nHe's a leading authority in his field.\tC'est une sommité dans son domaine.\nHe's a student of Japanese literature.\tIl est étudiant en littérature japonaise.\nHe's a young, impressionable teenager.\tC'est un jeune adolescent impressionnable.\nHe's about to finish reading the book.\tIl est sur le point de terminer la lecture de l'ouvrage.\nHe's been passing off my ideas as his.\tIl a fait passer mes idées pour les siennes.\nHe's got an uncle who works in a bank.\tIl a un oncle qui travaille dans une banque.\nHe's not allowed to leave the country.\tIl n'est pas autorisé à quitter le pays.\nHe's old enough to be her grandfather.\tIl est assez vieux pour être son grand-père.\nHe's sleeping off last night's bender.\tIl dort pour se remettre de la beuverie de la nuit dernière.\nHe's totally dependent on his parents.\tIl dépend totalement de ses parents.\nHelen Keller was blind, deaf and dumb.\tHelen Keller était aveugle, sourde et muette.\nHelen Keller was blind, deaf and mute.\tHelen Keller était aveugle, sourde et muette.\nHer laughter echoed through the house.\tSon rire résonna à travers la maison.\nHer reputation was hurt a lot by this.\tSa réputation en a été gravement entachée.\nHer sudden departure surprised us all.\tSon départ soudain nous a tous surpris.\nHer words were like those of an angel.\tSes mots étaient pareils à ceux d'un ange.\nHis accent suggests he is a foreigner.\tSon accent laisse penser qu'il est étranger.\nHis accent suggests he is a foreigner.\tSon accent suggère qu'il est étranger.\nHis ancestors went there from Ireland.\tSes ancêtres sont venus d'Irlande.\nHis anger towards me has not softened.\tSa colère contre moi ne s'est pas calmée.\nHis car broke down on the way to work.\tSa voiture est tombée en panne en allant au travail.\nHis chances of being elected are good.\tIl a de bonnes chances d'être élu.\nHis company didn't survive the crisis.\tSon entreprise ne survécut pas à la crise.\nHis company didn't survive the crisis.\tSon entreprise n'a pas survécu à la crise.\nHis ideas are based on his experience.\tSa manière de penser se base sur son expérience.\nHis parents approve of the engagement.\tSes parents approuvent les fiançailles.\nHis parents go to church every Sunday.\tSes parents vont à l'église tous les dimanches.\nHis poems are difficult to understand.\tSes poèmes sont difficiles à comprendre.\nHis secretary seems to know the truth.\tSa secrétaire semble savoir la vérité.\nHis secretary seems to know the truth.\tSon secrétaire semble connaître la vérité.\nHis soldiers feared and respected him.\tSes soldats le craignaient et le respectaient.\nHis story was published in a magazine.\tSon histoire fut publiée dans un magazine.\nHis story was published in a magazine.\tSon histoire a été publiée dans un magazine.\nHis teacher should be strict with him.\tSon professeur devrait être strict avec lui.\nHis theory is difficult to understand.\tSa théorie est difficile à comprendre.\nHonesty is not always the best policy.\tL'honnêteté n'est pas toujours la meilleure politique.\nHow about playing golf this afternoon?\tQue diriez-vous de jouer au golf cet après-midi ?\nHow are the negotiations coming along?\tAlors, ces négociations, ça avance ?\nHow are you? Did you have a good trip?\tComment vas-tu ? As-tu fait un bon voyage ?\nHow are you? Did you have a good trip?\tComment allez-vous ? Avez-vous fait bon voyage ?\nHow are you? Did you have a good trip?\tComment vas-tu ? As-tu fait bon voyage ?\nHow can I prevent this from happening?\tComment puis-je prévenir que ça ne survienne ?\nHow can I prevent this from happening?\tComment puis-je en prévenir l'occurrence ?\nHow come you didn't come to the party?\tComment se fait-il que tu n'es pas venu à la fête ?\nHow come you didn't come to the party?\tComment se fait-il que tu n'es pas venue à la fête ?\nHow come you didn't come to the party?\tComment se fait-il que vous n'êtes pas venu à la fête ?\nHow come you didn't come to the party?\tComment se fait-il que vous n'êtes pas venue à la fête ?\nHow come you didn't come to the party?\tComment se fait-il que vous n'êtes pas venus à la fête ?\nHow come you didn't come to the party?\tComment se fait-il que vous n'êtes pas venues à la fête ?\nHow come you don't know your own name?\tComment se fait-il que vous ne connaissiez pas votre propre nom ?\nHow could you not give me the message?\tComment as-tu pu t'abstenir de me remettre le message ?\nHow could you not give me the message?\tComment avez-vous pu vous abstenir de me remettre le message ?\nHow could you say something like that?\tComment as-tu pu dire quelque chose comme ça ?\nHow could you say something like that?\tComment avez-vous pu dire quelque chose comme ça ?\nHow did you arrive at this conclusion?\tComment es-tu parvenu à cette conclusion ?\nHow did you get a naked picture of me?\tComment t'es-tu procuré une photo de moi à poil ?\nHow did you get a naked picture of me?\tComment t'es-tu procurée une photo de moi à poil ?\nHow did you get a naked picture of me?\tComment vous êtes-vous procuré une photo de moi à poil ?\nHow did you get a naked picture of me?\tComment vous êtes-vous procurée une photo de moi à poil ?\nHow did you get a naked picture of me?\tComment vous êtes-vous procurés une photo de moi à poil ?\nHow did you get a naked picture of me?\tComment vous êtes-vous procurées une photo de moi à poil ?\nHow do you usually decide what to eat?\tComment décidez-vous habituellement quoi manger ?\nHow do you usually decide what to eat?\tComment décides-tu habituellement quoi manger ?\nHow does your opinion differ from his?\tEn quoi ton opinion diffère-t-elle de la sienne ?\nHow does your opinion differ from his?\tEn quoi votre opinion diffère-t-elle de la sienne ?\nHow far is it from New York to London?\tQuelle distance y a-t-il entre New York et Londres ?\nHow far is it from here to the museum?\tQuelle distance y a-t-il entre ici et le musée ?\nHow long have you been waiting for me?\tCombien de temps m'avez-vous attendu ?\nHow long will this cold weather go on?\tCombien de temps va durer ce froid ?\nHow many aunts and uncles do you have?\tCombien d'oncles et de tantes as-tu ?\nHow many aunts and uncles do you have?\tCombien d'oncles et de tantes avez-vous ?\nHow many books are there on the table?\tCombien de livres y a-t-il sur la table ?\nHow many boys are there in this class?\tCombien y a-t-il de garçons dans la classe ?\nHow many boys are there in your class?\tCombien y a-t-il de garçons dans votre classe ?\nHow many eggs could you get yesterday?\tCombien d’œufs as-tu pu récolter hier ?\nHow many hot dogs have you sold today?\tCombien de hot dogs as-tu vendus aujourd'hui?\nHow many other people know about this?\tCombien d'autres personnes en sont-elles au fait ?\nHow many people are likely to show up?\tCombien de gens sont susceptibles de venir ?\nHow many people are on board the ship?\tCombien y a-t-il de personnes à bord du navire ?\nHow many people were aboard that ship?\tCombien de personnes se trouvaient-elles à bord de ce bateau ?\nHow much is the annual membership fee?\tQue coûte la cotisation annuelle ?\nHow much is the annual membership fee?\tCombien coûte la cotisation annuelle ?\nHow much money did you spend in total?\tCombien d'argent as-tu dépensé au total ?\nHow much money did you spend in total?\tCombien d'argent avez-vous dépensé au total ?\nHow old is the oldest person you know?\tQuel âge a la plus vieille personne que vous connaissez ?\nHow old is the oldest person you know?\tQuel âge a la plus vieille personne que tu connais ?\nHow old were you when you got married?\tQuel âge avais-tu quand tu t'es marié ?\nHow old were you when you got married?\tQuel âge avais-tu quand tu t'es mariée ?\nHow old were you when you got married?\tQuel âge aviez-vous quand vous vous êtes marié ?\nHow old were you when you got married?\tQuel âge aviez-vous quand vous vous êtes mariée ?\nHow old were you when you got married?\tQuel âge aviez-vous quand vous vous êtes mariés ?\nHow would you translate this sentence?\tComment traduiriez-vous cette phrase ?\nHow would you translate this sentence?\tComment traduirais-tu cette phrase-ci ?\nHurry up! If you don't, we'll be late.\tDépêchons-nous ! Nous allons être en retard.\nI actually haven't been to Boston yet.\tJe n'ai en fait pas encore été à Boston.\nI advise you to listen to your doctor.\tJe te conseille d'écouter ton médecin.\nI agree with everything you just said.\tJe suis d'accord avec tout ce que vous venez de dire.\nI agree with everything you just said.\tJe suis d'accord avec tout ce que tu viens de dire.\nI already have plans for this weekend.\tJ'ai déjà des projets pour ce week-end.\nI always got up early in my childhood.\tJe me levais toujours tôt dans mon enfance.\nI always thought Tom would outlive me.\tJ'ai toujours pensé que Tom me survivrait.\nI always wondered what that noise was.\tJe me suis toujours demandé ce qu'était ce bruit.\nI am free till 6 o'clock this evening.\tJe suis libre jusqu'à 6 heures ce soir.\nI am glad that you have returned safe.\tJe suis ravi que vous soyez revenu sain et sauf.\nI am glad that you have returned safe.\tJe suis heureux que tu sois revenu sain et sauf.\nI am going to work in Osaka next year.\tJe vais travailler à Osaka l'année prochaine.\nI am going to write a letter tomorrow.\tJe vais écrire une lettre demain.\nI am of the opinion that she is right.\tSelon moi, elle a raison.\nI am sorry that my friend is not here.\tJe suis désolé que mon ami ne soit pas là.\nI am sure of winning the tennis match.\tJe suis sûre de remporter le match de tennis.\nI am uncomfortable in these new shoes.\tCes nouvelles chaussures sont inconfortables.\nI am uncomfortable in these new shoes.\tJe ne me sens pas à l'aise dans ces nouvelles chaussures.\nI am used to staying up late at night.\tJe suis habitué à veiller tard le soir.\nI am very interested in these stories.\tJe suis très intéressé par des histoires.\nI am worried about my mother's health.\tJe me fais du souci pour la santé de ma mère.\nI am worried about my mother's health.\tJe me fais du souci au sujet de la santé de ma mère.\nI apologize for the delay in replying.\tJe présente mes excuses pour le délai de réponse.\nI arrived safe and sound this morning.\tJe suis arrivé en parfaite santé ce matin.\nI arrived too late to hear his speech.\tJe suis arrivé trop tard pour entendre son discours.\nI asked her to pick me up around four.\tJe lui ai demandé de me prendre vers quatre heures.\nI asked him where I could park my car.\tJe lui ai demandé où je pourrais garer ma voiture.\nI asked my mother what to bring there.\tJ'ai demandé à ma mère ce que je devais apporter là-bas.\nI ate a hamburger and ordered another.\tJ'ai mangé un hamburger et j'en ai commandé encore un.\nI bet you're wondering how this works.\tJe parie que vous vous demandez comment ça fonctionne.\nI bet you're wondering how this works.\tJe parie que vous vous demandez comment ça marche.\nI bet you're wondering how this works.\tJe parie que tu te demandes comment ça fonctionne.\nI bet you're wondering how this works.\tJe parie que tu te demandes comment ça marche.\nI borrowed the book from this library.\tJ'ai emprunté le livre à cette bibliothèque.\nI borrowed this comic from his sister.\tJ'ai emprunté cette bande dessinée à sa sœur.\nI bought a few eggs and a little milk.\tJ'ai acheté quelques œufs et un peu de lait.\nI bought her a nice Christmas present.\tJe lui ai acheté un beau cadeau de Noël.\nI bought it with my hard-earned money.\tJe l'ai acquis avec mon argent durement gagné.\nI broke a glass when I did the dishes.\tJ'ai cassé un verre en faisant la vaisselle.\nI called my neighbors over for dinner.\tJ'ai invité mes voisins à diner.\nI can do this with you or without you.\tJe peux le faire avec ou sans toi.\nI can do this with you or without you.\tJe peux le faire avec ou sans vous.\nI can hardly imagine him going abroad.\tJ'arrive difficilement à l'imaginer en train de se rendre à l'étranger.\nI can lend you some money if you like.\tJe peux te prêter un peu d'argent, si tu veux.\nI can lend you some money if you like.\tJe peux vous avancer un peu d'argent, si vous voulez.\nI can no longer find the Vivendi file.\tJe ne retrouve plus le dossier Vivendi.\nI can speak neither French nor German.\tJe ne sais parler ni français ni allemand.\nI can't agree with you on this matter.\tSur ce point je ne peux pas être d'accord avec vous.\nI can't agree with you on this matter.\tJe ne peux pas être d'accord avec vous sur ce sujet.\nI can't be bothered to go out tonight.\tJe n'ai pas envie de sortir ce soir.\nI can't believe I'm agreeing with you.\tJe n'arrive pas à croire que je sois d'accord avec toi.\nI can't believe I'm agreeing with you.\tJe n'arrive pas à croire que je sois d'accord avec vous.\nI can't believe I'm agreeing with you.\tJe ne peux pas croire que je sois d'accord avec toi.\nI can't believe I'm agreeing with you.\tJe ne peux pas croire que je sois d'accord avec vous.\nI can't believe I'm not getting fired.\tJe n'arrive pas à croire que je ne me fasse pas virer.\nI can't believe how beautiful you are.\tJe n'arrive pas à croire combien tu es belle.\nI can't believe how beautiful you are.\tJe n'arrive pas à croire combien vous êtes belle.\nI can't believe how beautiful you are.\tJe n'arrive pas à croire combien vous êtes belles.\nI can't believe that that just worked.\tJe n'arrive pas à croire que ça vienne de fonctionner.\nI can't believe this is all happening.\tJe n'arrive pas à croire que tout ceci arrive.\nI can't believe this is all happening.\tJe n'arrive pas à croire que tout ceci survienne.\nI can't believe you actually did that.\tJe n'arrive pas à croire que tu aies vraiment fait cela.\nI can't believe you actually did that.\tJe n'arrive pas à croire que vous ayez vraiment fait cela.\nI can't believe you actually did that.\tJe n'arrive pas à croire que tu l'aies vraiment fait.\nI can't believe you actually did that.\tJe n'arrive pas à croire que vous l'ayez vraiment fait.\nI can't disclose that information yet.\tJe ne peux pas encore dévoiler cette information.\nI can't do it alone. I need your help.\tJe ne peux le faire seul. J'ai besoin de ton aide.\nI can't do it alone. I need your help.\tJe ne peux le faire seule. J'ai besoin de ton aide.\nI can't do it alone. I need your help.\tJe ne peux le faire seul. J'ai besoin de votre aide.\nI can't do it alone. I need your help.\tJe ne peux le faire seule. J'ai besoin de votre aide.\nI can't do it without somebody's help.\tJe ne parviens pas à le faire sans l'aide de quelqu'un.\nI can't do it without somebody's help.\tJe n'arrive pas à le faire sans l'aide de quelqu'un.\nI can't do it without somebody's help.\tJe ne peux pas le faire sans l'aide de quelqu'un.\nI can't even afford to buy a used car.\tJe n'ai même pas les moyens d'acheter une voiture d'occasion.\nI can't get the door to shut properly.\tJe n'arrive pas à faire en sorte que la porte ferme correctement.\nI can't help the way I feel about you.\tJe ne contrôle pas les sentiments que j'éprouve à ton égard.\nI can't help the way I feel about you.\tJe ne contrôle pas les sentiments que j'éprouve à votre égard.\nI can't invite all my friends at once.\tJe ne peux pas inviter tous mes amis en même temps.\nI can't reach things on the top shelf.\tJe ne parviens pas à atteindre les choses qui se trouvent sur l'étagère supérieure.\nI can't recall her name at the moment.\tJe ne peux me souvenir de son nom pour le moment.\nI can't recall her name at the moment.\tJe ne peux me rappeler son nom pour l'instant.\nI can't remember where I hid my money.\tJe ne parviens pas à me rappeler l'endroit où j'ai caché mon argent.\nI can't stand listening to loud music.\tJe ne supporte pas d'écouter de la musique forte.\nI can't think of any reason not to go.\tJe ne vois aucune raison de ne pas y aller.\nI can't walk because of my broken leg.\tJe ne peux pas marcher à cause d'une fracture à la jambe.\nI cannot agree with you on the matter.\tJe ne peux pas être d'accord avec toi sur ce sujet.\nI cannot feel at home in such a hotel.\tJe ne peux pas me sentir comme chez moi dans un tel hôtel.\nI come from a small town in Australia.\tJe viens d'une petite ville en Australie.\nI congratulate you on your engagement.\tJe vous félicite pour vos fiançailles.\nI could feel the sand between my toes.\tJe pouvais sentir le sable entre mes orteils.\nI could not help but state my opinion.\tJe ne pouvais pas m'empêcher d'exprimer mon opinion.\nI couldn't have done it better myself.\tJe n'aurais pas fait mieux moi-même.\nI couldn't let you take all the blame.\tJe ne pouvais pas te laisser prendre toute la responsabilité.\nI couldn't let you take all the blame.\tJe ne pouvais pas vous laisser prendre toute la responsabilité.\nI cut the article out of the magazine.\tJ'ai découpé l'article de ce magazine.\nI cut the article out of the magazine.\tJ'ai découpé l'article du magazine.\nI decided to ask for my friend's help.\tIl a décidé de demander de l'aide à mes amis.\nI decided to tell her that I love him.\tJ'ai décidé de lui dire que je l'aimais.\nI decided to tell him that I love her.\tJ'ai décidé de lui dire que je l'aimais.\nI did everything I was supposed to do.\tJ'ai fait tout ce que j'étais supposé faire.\nI didn't bring this topic up with her.\tJe n'ai pas évoqué ce sujet avec elle.\nI didn't even get one letter from her.\tJe n'ai même pas reçu une lettre d'elle.\nI didn't even get one letter from her.\tJe n'ai pas même reçu une lettre d'elle.\nI didn't even get one letter from her.\tJe n'ai pas reçu ne serait-ce qu'une lettre d'elle.\nI didn't even get one letter from her.\tJe ne reçus pas même une lettre d'elle.\nI didn't even get one letter from her.\tJe ne reçus même pas une lettre d'elle.\nI didn't expect that to come from you.\tJe ne pensais pas que ça viendrait de toi.\nI didn't get even one letter from her.\tJe n'ai même pas reçu une lettre d'elle.\nI didn't get even one letter from her.\tJe n'ai pas même reçu une lettre d'elle.\nI didn't get even one letter from her.\tJe n'ai pas reçu ne serait-ce qu'une lettre d'elle.\nI didn't get even one letter from her.\tJe ne reçus pas même une lettre d'elle.\nI didn't get even one letter from her.\tJe ne reçus même pas une lettre d'elle.\nI didn't know what I was getting into.\tJe ne savais pas dans quoi j'étais en train de m'engager.\nI didn't know what it was at the time.\tJ'ignorais ce dont il s'agissait, à l'époque.\nI didn't know you were looking for me.\tJe ne savais pas que vous me cherchiez.\nI didn't know you were seeing someone.\tJ'ignorais que tu fréquentais quelqu'un.\nI didn't know you were seeing someone.\tJ'ignorais que vous fréquentiez quelqu'un.\nI didn't mean to give that impression.\tJe n’avais pas l’intention de te donner cette impression.\nI didn't plan on staying here so long.\tJe n'avais pas prévu de rester ici si longtemps.\nI didn't really think it would happen.\tJe n'ai pas vraiment pensé que ça arriverait.\nI didn't really think it would happen.\tJe n'ai pas vraiment pensé que ça surviendrait.\nI didn't see any children in the park.\tJe n'ai vu aucun enfant dans le parc.\nI didn't steal it. I just borrowed it.\tJe ne l'ai pas volé. Je l'ai juste emprunté.\nI didn't steal it. I just borrowed it.\tJe ne l'ai pas volée. Je n'ai fait que l'emprunter.\nI didn't think we'd be able to get in.\tJe ne pensais pas que nous serions capables d'y pénétrer.\nI didn't think we'd be able to get in.\tJe ne pensais pas que nous serions en mesure d'y pénétrer.\nI didn't think you would win the race.\tJe ne pensais pas que tu gagnerais la course.\nI didn't think you would win the race.\tJe ne pensais pas que vous gagneriez la course.\nI didn't want to postpone our meeting.\tJe ne voulais pas repousser notre réunion.\nI do not want to exert myself in vain.\tJe ne veux pas me fatiguer pour rien.\nI do remember the incident quite well.\tJe me souviens très bien de l'incident.\nI don't believe Atlantis ever existed.\tJe ne crois pas que l'Atlantide ait jamais existé.\nI don't believe I'm listening to this.\tJe ne parviens pas à croire que j'écoute ça.\nI don't believe we've been introduced.\tJe ne crois pas que nous ayons été présentés.\nI don't care as long as you are happy.\tJe m'en fous, du moment que tu es heureux.\nI don't care as long as you are happy.\tÇa m'est égal, pour autant que vous soyez heureux.\nI don't care as long as you are happy.\tÇa m'est égal, pour autant que vous soyez heureuse.\nI don't care as long as you are happy.\tJe m'en fiche, du moment que tu es heureuse.\nI don't care for television very much.\tJe n'aime pas beaucoup la télévision.\nI don't consider this to be important.\tJe ne considère pas que ça soit important.\nI don't eat as much meat as I used to.\tJe ne mange pas autant de viande que j'en avais l'habitude.\nI don't even have a single girlfriend.\tJe n'ai pas même une amie.\nI don't even know who has stolen what.\tJ'ignore même qui a volé quoi.\nI don't even want to know who you are.\tJe ne veux même pas savoir qui vous êtes.\nI don't even want to know who you are.\tJe ne veux même pas savoir qui tu es.\nI don't expect you to understand this.\tJe ne m'attends pas à ce que vous le compreniez.\nI don't expect you to understand this.\tJe ne m'attends pas à ce que tu le comprennes.\nI don't feel like answering questions.\tJe n'ai pas envie de répondre à des questions.\nI don't feel like going out right now.\tJe n'ai pas envie de sortir maintenant.\nI don't feel like watching TV tonight.\tJe n'ai pas envie de regarder la télévision ce soir.\nI don't feel like watching TV tonight.\tCe soir, je n'ai pas envie de regarder la télé.\nI don't have anything to do right now.\tJe n'ai rien à faire à l'instant.\nI don't have money, but I have dreams.\tJe n'ai pas d'argent, mais j'ai des rêves.\nI don't have the authority to do that.\tJe ne dispose pas de l'autorité pour faire ça.\nI don't have to answer your questions.\tJe n'ai pas à répondre à vos questions.\nI don't have to answer your questions.\tJe n'ai pas à répondre à tes questions.\nI don't have to do anything right now.\tJe n'ai rien à faire à l'instant.\nI don't have to go to school tomorrow.\tJe ne dois pas aller à l'école, demain.\nI don't have to wear glasses any more.\tJe ne suis plus obligé de porter de lunettes.\nI don't have to worry about my weight.\tJe n'ai pas à me soucier de mon poids.\nI don't intend to use this any longer.\tJe n'ai plus l'intention d'utiliser ceci.\nI don't know anything about it at all.\tJe n'en sais rien du tout.\nI don't know anything about marketing.\tJ'ignore tout du marketing.\nI don't know everybody in this school.\tJe ne connais pas tout le monde dans cette école.\nI don't know how much money we've got.\tJe ne sais pas de combien d'argent nous disposons.\nI don't know how much money we've got.\tJ'ignore de combien d'argent nous disposons.\nI don't know how to express my thanks.\tJe ne sais pas comment vous remercier.\nI don't know if I can do this anymore.\tJe ne sais pas si je peux encore faire ceci.\nI don't know if they still live there.\tJ'ignore s'ils y vivent encore.\nI don't know what I'm going to do yet.\tJe ne sais pas encore ce que je vais faire.\nI don't know what I'm going to do yet.\tJ'ignore encore ce que je vais faire.\nI don't know what we're talking about.\tJe ne sais pas ce dont nous parlons.\nI don't know what we're talking about.\tJ'ignore ce dont nous parlons.\nI don't know who you're talking about.\tJ'ignore de qui vous parlez.\nI don't know who you're talking about.\tJ'ignore de qui vous discutez.\nI don't know who you're talking about.\tJ'ignore de qui tu parles.\nI don't know why I bother coming here.\tJ'ignore pourquoi je m'embête à venir ici.\nI don't know why I bother coming here.\tJe ne sais pas pourquoi je m'embête à venir ici.\nI don't like learning irregular verbs.\tJe n'aime pas apprendre les verbes irréguliers.\nI don't like the way she speaks to me.\tJe n'aime pas la façon dont elle me parle.\nI don't like the way you laugh at her.\tJe n'aime pas la façon dont tu te moques d'elle.\nI don't like to go out when it's dark.\tJe n'aime pas sortir après la tombée de la nuit.\nI don't mean to challenge your theory.\tJe n'ai pas l'intention de contester votre théorie.\nI don't mean to challenge your theory.\tJe ne veux pas disputer ta théorie.\nI don't mind even if she doesn't come.\tMême si elle ne vient pas ça m'est égal.\nI don't really understand the problem.\tJe ne comprends pas vraiment le problème.\nI don't really want to see you suffer.\tJe ne veux pas vraiment vous voir souffrir.\nI don't really want to see you suffer.\tJe ne veux pas vraiment te voir souffrir.\nI don't recall asking for your advice.\tJe ne me rappelle pas avoir requis vos conseils.\nI don't recall asking for your advice.\tJe ne me rappelle pas avoir requis tes conseils.\nI don't remember being given a choice.\tJe ne me rappelle pas qu'on m'ait donné le choix.\nI don't see eye to eye with my father.\tJe ne suis pas d'accord avec mon père.\nI don't see how this changes anything.\tJe ne vois pas comment ça change quoi que ce soit.\nI don't think I can keep that promise.\tJe ne pense pas parvenir à tenir cette promesse.\nI don't think I can keep that promise.\tJe ne pense pas pouvoir tenir cette promesse.\nI don't think I can keep that promise.\tJe ne pense pas que je puisse tenir cette promesse.\nI don't think I can keep that promise.\tJe ne pense pas que je parvienne à tenir cette promesse.\nI don't think I can keep that promise.\tJe ne pense pas que j'arrive à tenir cette promesse.\nI don't think I want to talk about it.\tJe ne pense pas que je veuille en parler.\nI don't think Tom did that on purpose.\tJe ne pense pas que Tom l'ait fait exprès.\nI don't think anybody can help me now.\tJe ne pense pas que quiconque puisse m'aider, désormais.\nI don't think anybody can help me now.\tJe ne pense pas que quiconque puisse actuellement m'aider.\nI don't think he can handle the truth.\tJe ne pense pas qu'il puisse faire face à la vérité.\nI don't think she would understand it.\tJe ne crois pas qu'elle le comprendrait.\nI don't think you really believe that.\tJe ne pense pas que tu crois vraiment cela.\nI don't think you really want to know.\tJe ne pense pas que tu veuilles vraiment savoir.\nI don't think you really want to know.\tJe ne pense pas que vous vouliez vraiment savoir.\nI don't understand what you're saying.\tJe ne comprends pas ce que tu dis.\nI don't understand why you're leaving.\tJe ne comprends pas pourquoi vous partez.\nI don't understand why you're leaving.\tJe ne comprends pas pourquoi tu pars.\nI don't want anybody writing about me.\tJe ne veux pas que quiconque écrive à mon propos.\nI don't want to buy this kind of sofa.\tJe ne veux pas acheter ce genre de canapé.\nI don't want to cause you any trouble.\tJe ne veux pas te causer d'ennuis.\nI don't want to cause you any trouble.\tJe ne veux pas vous causer d'ennuis.\nI don't want to drink too much coffee.\tJe ne veux pas boire trop de café.\nI don't want to go to school tomorrow.\tJe ne veux pas aller à l'école demain.\nI don't want to hear any more excuses.\tJe ne veux plus entendre d'autres excuses.\nI don't want to live with you anymore.\tJe ne veux plus vivre avec toi.\nI don't want to live with you anymore.\tJe ne veux plus vivre avec vous.\nI don't want to take on any more work.\tJe ne veux pas récupérer plus de travail.\nI don't want to talk about it further.\tJe ne veux pas en parler davantage.\nI don't want you eating between meals.\tJe ne veux pas que vous mangiez entre les repas.\nI don't want you eating between meals.\tJe ne veux pas que tu manges entre les repas.\nI don't want you hanging out with Tom.\tJe ne veux pas que tu traînes avec Tom.\nI don't want you to go back to Boston.\tJe ne veux pas que tu retournes à Boston.\nI don't want you to go back to Boston.\tJe ne veux pas que vous retourniez à Boston.\nI don't want you two talking about me.\tJe ne veux pas que vous parliez de moi tous les deux.\nI don't want you two talking about me.\tJe ne veux pas que vous parliez de moi toutes les deux.\nI don't want you two talking about me.\tJe ne veux pas que vous soyez en train de parler de moi tous les deux.\nI don't want you two talking about me.\tJe ne veux pas que vous soyez en train de parler de moi toutes les deux.\nI don't yet know what I'm going to do.\tJe ne sais pas encore ce que je vais faire.\nI don't yet know what I'm going to do.\tJ'ignore encore ce que je vais faire.\nI doubt if he'll come to school today.\tJe me demande s'il viendra à l'école aujourd'hui.\nI expect nothing less than perfection.\tJe n'attends de vous que la perfection.\nI feel guilty about having told a lie.\tJe me sens coupable d'avoir menti.\nI feel like having some pizza tonight.\tJ'ai envie de pizza ce soir.\nI feel like taking a day off tomorrow.\tJ'ai envie de prendre un jour de congé demain.\nI feel uneasy in my father's presence.\tJe me sens mal à l'aise en présence de mon père.\nI felt I just had to get off the ship.\tJe sentis que je devais simplement descendre du bateau.\nI felt I just had to get off the ship.\tJ'ai senti que je devais simplement descendre du bateau.\nI felt the sweat trickle down my brow.\tJ'ai senti la sueur goutter sur mon front.\nI finally went to England this summer.\tJe suis finalement allé en Angleterre cet été.\nI find the sound of the rain relaxing.\tJe trouve le bruit de la pluie apaisant.\nI forgot how beautiful this place was.\tJ'avais oublié à quel point cet endroit était beau.\nI forgot to bring an umbrella with me.\tJ’ai oublié de prendre un parapluie.\nI forgot to write my name on the exam.\tJ'ai oublié de porter mon nom sur la feuille d'examen.\nI found a nice place to have a picnic.\tJ'ai trouvé un chouette endroit pour faire un pique-nique.\nI found it difficult to read the book.\tJ'ai trouvé ce livre difficile à lire.\nI gave the beggar all the money I had.\tJ'ai donné au mendiant tout l'argent que j'avais.\nI gave the beggar all the money I had.\tJe donnai au mendiant tout l'argent dont je disposais.\nI get a call from her once in a while.\tElle m'appelle de temps en temps.\nI give you plenty of money each month.\tJe te donne plein d'argent chaque mois.\nI go to Hiroshima three times a month.\tJe vais à Hiroshima trois fois par mois.\nI go to the library from time to time.\tJe vais à la bibliothèque de temps en temps.\nI got shampoo in my eyes and it hurts.\tJ'ai reçu du shampoing dans les yeux et ça fait mal.\nI got the news from a reliable source.\tJ'ai obtenu les nouvelles d'une source sûre.\nI got this job with my teacher's help.\tJ'ai obtenu cet emploi avec l'aide de mon professeur.\nI graduated from university last year.\tJ'ai eu ma licence l'année dernière.\nI guess you will be very busy tonight.\tJe suppose que vous serez très occupé cette nuit.\nI had a strange experience last night.\tJ'ai fait une étrange expérience, hier au soir.\nI had dinner with a friend last night.\tJ'ai dîné avec un ami hier soir.\nI had dinner with a friend last night.\tJ'ai dîné, hier soir, avec un ami.\nI had dinner with a friend last night.\tJ'ai dîné, hier au soir, avec un ami.\nI had dinner with a friend last night.\tJ'ai dîné avec un ami hier au soir.\nI had dinner with a friend last night.\tJ'ai dîné avec une amie hier soir.\nI had dinner with a friend last night.\tJ'ai dîné avec une amie hier au soir.\nI had dinner with a friend last night.\tJ'ai dîné, hier au soir, avec une amie.\nI had dinner with a friend last night.\tJ'ai dîné, hier soir, avec une amie.\nI had dinner with a friend last night.\tJ'ai soupé avec un ami hier soir.\nI had dinner with a friend last night.\tJ'ai soupé, hier soir, avec un ami.\nI had dinner with a friend last night.\tJ'ai soupé, hier au soir, avec un ami.\nI had dinner with a friend last night.\tJ'ai soupé avec un ami hier au soir.\nI had dinner with a friend last night.\tJ'ai soupé avec une amie hier soir.\nI had dinner with a friend last night.\tJ'ai soupé avec une amie hier au soir.\nI had dinner with a friend last night.\tJ'ai soupé, hier au soir, avec une amie.\nI had dinner with a friend last night.\tJ'ai soupé, hier soir, avec une amie.\nI had forgotten how beautiful you are.\tJ'avais oublié à quel point tu es belle.\nI had half a grapefruit for breakfast.\tJ'ai mangé un demi-pamplemousse pour le petit-déjeuner.\nI had nothing to do with that problem.\tJe n'avais rien à voir avec ce problème.\nI had nothing to do with the accident.\tJe n'avais rien à faire avec l'accident.\nI had some work that needed finishing.\tJ'ai eu du travail qu'il fallait finir.\nI had to get something out of the car.\tJ'ai dû sortir quelque chose de la voiture.\nI had to get something out of the car.\tIl m'a fallu sortir quelque chose de la voiture.\nI hate being alone on Valentine's Day.\tJe déteste être seul le jour de la Saint-Valentin.\nI hate being alone on Valentine's Day.\tJe déteste être seule le jour de la Saint-Valentin.\nI have a clear memory of my childhood.\tJ'ai un souvenir clair de mon enfance.\nI have a coat, but I don't have a hat.\tJ'ai un manteau, mais je n'ai pas de chapeau.\nI have a different opinion than yours.\tJ'ai une opinion différente de la tienne.\nI have a new camera I want you to see.\tJ'ai un nouvel appareil photo que je veux que tu voies.\nI have a new camera I want you to see.\tJ'ai un nouvel appareil photo que je veux que vous voyiez.\nI have a surprise for you, sweetheart.\tJ'ai une surprise pour toi, mon chéri.\nI have a surprise for you, sweetheart.\tJ'ai une surprise pour toi, ma chérie.\nI have an interest in cello and piano.\tJe m'intéresse au violoncelle et au piano.\nI have considered that very carefully.\tJ'y ai réfléchi très attentivement.\nI have found your dirty little secret.\tJ'ai découvert votre sale petit secret.\nI have found your dirty little secret.\tJ'ai découvert ton sale petit secret.\nI have less and less time for reading.\tJ'ai de moins en moins de temps pour lire.\nI have made up my mind to leave Japan.\tJe me suis décidé à quitter le Japon.\nI have mosquito bites all over my arm.\tJ'ai des piqûres de moustiques partout sur le bras.\nI have never seen her help her father.\tJe ne l'ai jamais vue aider son père.\nI have not been studying for two days.\tJe n'ai pas étudié durant deux jours.\nI have nothing to do with this matter.\tJe n'ai rien à voir avec cette affaire.\nI have read every book in the library.\tJ'ai lu chaque livre de la bibliothèque.\nI have read every book in the library.\tJ'ai lu chaque livre dans la bibliothèque.\nI have simply nothing to say about it.\tJe n'ai simplement rien à dire à ce sujet.\nI have some questions I'd like to ask.\tJ'ai quelques questions que j'aimerais poser.\nI have something I want to say to you.\tJ'ai quelque chose à te dire.\nI have to be in Boston in the morning.\tJe dois être à Boston dans la matinée.\nI have to change into my work clothes.\tJe dois me changer pour mes vêtements de travail.\nI have to confess to you that I snore.\tJe dois t'avouer que je ronfle...\nI have to get up quite early tomorrow.\tJe dois me lever de très bonne heure, demain.\nI have to get up quite early tomorrow.\tJe dois, demain, me lever de très bonne heure.\nI have to get up quite early tomorrow.\tJe dois me lever, demain, de très bonne heure.\nI have to go on a diet to lose weight.\tJe dois suivre un régime pour perdre du poids.\nI have to go to the bank this morning.\tJe dois aller à la banque ce matin.\nI have to remember to mail the letter.\tJe dois me souvenir de poster la lettre.\nI have to remember to mail the letter.\tJe dois me souvenir de mettre la lettre au courrier.\nI have to remember to mail the letter.\tJe dois me souvenir de mettre la lettre à la boîte.\nI have to replace the radio's battery.\tJe dois remplacer la pile de la radio.\nI have to say goodbye to a few people.\tIl me faut dire au revoir à quelques personnes.\nI have to stop that. It's a bad habit.\tJe dois mettre un terme à cela. C'est une mauvaise habitude.\nI have to tell her the truth tomorrow.\tJe dois lui dire la vérité demain.\nI haven't been eating out much lately.\tJe ne suis pas beaucoup sorti manger dehors, ces derniers temps.\nI haven't decided yet if I want to go.\tJe n'ai pas encore décidé si je veux y aller.\nI haven't decided yet if I want to go.\tJe n'ai pas encore décidé si je veux m'y rendre.\nI haven't done this since high school.\tJe n'ai plus fait ça depuis le lycée.\nI haven't gotten over my bad cold yet.\tJe ne me suis pas encore remis de mon mauvais rhume.\nI haven't gotten over my bad cold yet.\tJe ne me suis pas encore remise de mon mauvais rhume.\nI haven't seen anything of him lately.\tJe ne l'ai pas vu du tout ces derniers temps.\nI haven't written anything for months.\tJe n'ai rien écrit depuis des mois.\nI heard a dog barking in the distance.\tJ'ai entendu un chien aboyer au loin.\nI heard that Tom doesn't speak French.\tJ'ai entendu dire que Tom ne parle pas français.\nI heard the children singing together.\tJ'ai entendu les enfants chanter ensemble.\nI hope I can count on your discretion.\tJ'espère que je peux compter sur ta discrétion.\nI hope I can count on your discretion.\tJ'espère que je peux compter sur votre discrétion.\nI hope I didn't make a fool of myself.\tJ'espère ne pas m'être ridiculisé.\nI hope to build a new house next year.\tJ'espère construire une nouvelle maison l'année prochaine.\nI inspired my students to work harder.\tJ'ai incité mes étudiants à travailler davantage.\nI just can't understand you sometimes.\tJe n'arrive simplement pas à vous comprendre, parfois.\nI just can't understand you sometimes.\tJe n'arrive simplement pas à te comprendre, parfois.\nI just couldn't bring myself to do it.\tJe n'ai simplement pas pu me résoudre à le faire.\nI just couldn't bring myself to do it.\tJe ne pourrais simplement pas me résoudre à le faire.\nI just did what anybody would've done.\tJe n'ai fait que ce que n'importe qui aurait fait.\nI just did what anybody would've done.\tJe n'ai fait que ce que quiconque aurait fait.\nI just don't like getting left behind.\tJe n'aime simplement pas qu'on me laisse à la traîne.\nI just don't want anybody to get hurt.\tJe ne veux pas que quiconque soit blessé, un point c'est tout.\nI just don't want anybody to get hurt.\tJe ne veux tout simplement pas que quiconque soit blessé.\nI just don't want our luck to run out.\tJe ne veux tout simplement pas que notre chance s'épuise.\nI just don't want our luck to run out.\tJe ne veux pas que notre chance s'épuise, un point c'est tout.\nI just don't want to see you get hurt.\tJe ne veux tout simplement pas te voir être blessé.\nI just don't want to see you get hurt.\tJe ne veux tout simplement pas te voir être blessée.\nI just don't want to see you get hurt.\tJe ne veux tout simplement pas vous voir être blessé.\nI just don't want to see you get hurt.\tJe ne veux tout simplement pas vous voir être blessée.\nI just don't want to see you get hurt.\tJe ne veux tout simplement pas vous voir être blessées.\nI just don't want to see you get hurt.\tJe ne veux tout simplement pas vous voir être blessés.\nI just thought you might want to talk.\tJ'ai simplement pensé qu'il se pourrait que tu veuilles parler.\nI just thought you might want to talk.\tJ'ai simplement pensé qu'il se pourrait que vous vouliez parler.\nI just want to get a little fresh air.\tJe veux simplement prendre un peu d'air frais.\nI just want to hear you talk about it.\tJe veux juste t'en entendre parler.\nI just want to hear you talk about it.\tJe veux juste vous en entendre parler.\nI just want to know who's in the room.\tJe veux seulement savoir qui est dans la pièce.\nI just want to look at it, that's all.\tJe veux juste y regarder, c'est tout.\nI just want to look at it, that's all.\tJe veux juste le regarder, c'est tout.\nI just want to look at it, that's all.\tJe veux juste la regarder, c'est tout.\nI just want to make sure we all agree.\tJe veux juste m'assurer que nous sommes tous d'accord.\nI just want to make sure we all agree.\tJe veux juste m'assurer que nous sommes toutes d'accord.\nI just want to say that I believe you.\tJe veux simplement dire que je vous crois.\nI just want to say that I believe you.\tJe veux simplement dire que je te crois.\nI just wanted to listen to some music.\tJe voulais juste écouter un peu de musique.\nI just wanted to see if I could do it.\tJe souhaitais juste voir si je pouvais le faire.\nI just wanted to see what it was like.\tJe voulais simplement voir comment c'était.\nI knew Tom would accept my invitation.\tJe savais que Tom accepterait mon invitation.\nI knew it was just a misunderstanding.\tJe savais que ce n'était qu'un malentendu.\nI knew we should've tried to help Tom.\tJe savais que nous aurions dû essayer d'aider Tom.\nI knocked, but no one opened the door.\tJ'ai frappé mais personne n'a ouvert la porte.\nI knocked, but no one opened the door.\tJe frappai mais personne n'ouvrit la porte.\nI know Tom really does care about you.\tJe sais que Tom tient vraiment à toi.\nI know a good lawyer who can help you.\tJe connais un bon avocat qui peut t'aider.\nI know a very good way to get it done.\tJe connais une très bonne façon de le faire faire.\nI know she puts up with a lot from me.\tJe sais qu'elle supporte beaucoup de moi.\nI know someone who speaks French well.\tJe connais quelqu'un qui parle bien français.\nI know that she doesn't know who I am.\tJe sais qu'elle ignore qui je suis.\nI know what it's like to be different.\tJe sais ce que c'est que d'être différent.\nI know what those situations are like.\tJe sais comment sont ces situations.\nI know you were in Boston last summer.\tJe sais que vous étiez à Boston l'été dernier.\nI let him spend the night in my house.\tJe l'ai laissé passer la nuit dans ma maison.\nI like dogs, but my sister likes cats.\tMoi j'aime les chiens, mais ma sœur aime les chats.\nI like spring the best of the seasons.\tLe printemps est la saison que j'aime le mieux.\nI like the way she laughs at my jokes.\tJ'aime la façon dont elle rit à mes blagues.\nI like to drink natural mineral water.\tJ'aime boire de l'eau minérale naturelle.\nI like to sit in the front of the bus.\tJ'aime m'asseoir à l'avant du bus.\nI liked them before they were popular.\tJe les appréciais avant qu'ils ne soient populaires.\nI liked them before they were popular.\tJe les appréciais avant qu'elles ne soient populaires.\nI lost my wallet on the way to school.\tJ'ai perdu mon portefeuille sur le chemin de l'école.\nI love Nara, particularly in the fall.\tJ'aime Nara, surtout en automne.\nI love collecting stones at the beach.\tJ'adore ramasser des galets, à la plage.\nI love him, but he loves someone else.\tJe l'aime mais il aime quelqu'un d'autre.\nI love strawberries on Christmas cake.\tJ'aime les fraises sur les gâteaux de Noël.\nI love to watch baseball and football.\tJ'adore regarder le baseball et le football américain.\nI love what you've done to this place.\tJ'adore ce que vous avez fait de cet endroit.\nI love you and I will always love you.\tJe t'aime et t'aimerai toujours !\nI love you more deeply than I can say.\tJe vous aime plus que je ne peux dire.\nI marked your birthday on my calendar.\tJ'ai noté ton anniversaire sur mon calendrier.\nI may have told you this story before.\tJe vous ai peut-être déjà raconté cette histoire.\nI met a friend of mine at the airport.\tJ'ai rencontré un de mes amis à l'aéroport.\nI met her by accident on Third Avenue.\tJe l'ai rencontrée par hasard sur la 3e avenue.\nI must discuss that new plan with him.\tJe dois discuter de ce nouveau plan avec lui.\nI must pass this exam, no matter what.\tJe dois réussir cet examen coûte que coûte.\nI need some medicine to kill the pain.\tJ'ai besoin de médicament pour tuer la douleur.\nI need the key to decode this message.\tIl me faut la clé pour décoder ce message.\nI need the key to decode this message.\tJ'ai besoin de la clé pour décoder ce message.\nI never had the opportunity to use it.\tJe n'ai jamais eu l'occasion de l'utiliser.\nI never should've broken up with Mary.\tJamais je n’aurais dû rompre avec Mary.\nI never thought it could happen to me.\tJe n'ai jamais pensé que ça pourrait m'arriver.\nI never thought it would happen to me.\tJe n'ai jamais pensé que ça m'arriverait.\nI never thought it would happen to me.\tJe n'ai jamais pensé que ça m'arriverait à moi.\nI never thought we'd end up like this.\tJe n'ai jamais pensé que nous finirions comme ça.\nI never thought you'd become a doctor.\tJe n'ai jamais pensé que vous deviendriez médecin.\nI never thought you'd become a doctor.\tJe n'ai jamais pensé que tu deviendrais médecin.\nI obtained the painting at an auction.\tJ'ai fait acquisition de ce tableau lors d'une vente aux enchères.\nI only have butter in my refrigerator.\tJe n'ai plus que du beurre dans mon frigo.\nI only know how to play that one song.\tJe ne sais jouer que cette unique chanson.\nI only speak a smattering of Japanese.\tJe ne parle qu'un semblant de japonais.\nI prefer going out to staying at home.\tJe préfère sortir que rester à la maison.\nI prefer going out to staying at home.\tJe préfère sortir que de rester à la maison.\nI prefer traveling by train to flying.\tJe préfère voyager par train plutôt que par voie aérienne.\nI prefer traveling by train to flying.\tJe préfère voyager en train plutôt que par avion.\nI prefer traveling by train to flying.\tJe préfère voyager en train que de voler.\nI probably should have said something.\tJ'aurais probablement dû dire quelque chose.\nI ran into your mother in the library.\tJ'ai vu ta mère par hasard à la bibliothèque.\nI read the book from beginning to end.\tJ'ai lu le livre du début jusqu'à la fin.\nI really appreciate you picking me up.\tJ'apprécie vraiment que tu me prennes.\nI really appreciate you picking me up.\tJ'apprécie vraiment que vous me preniez.\nI really don't have much choice, do I?\tJe n'ai pas vraiment beaucoup de choix, si ?\nI really don't want to disappoint Tom.\tJe ne veux vraiment pas décevoir Tom.\nI really enjoy spending time with you.\tJ'ai vraiment plaisir à passer du temps avec toi.\nI really enjoy spending time with you.\tJ'ai vraiment plaisir à passer du temps avec vous.\nI really hope things work out for you.\tJ'espère vraiment que les choses marchent pour vous.\nI really hope things work out for you.\tJ'espère vraiment que les choses marchent pour toi.\nI really liked what you cooked for me.\tJ'ai beaucoup aimé ce que vous avez cuisiné pour moi.\nI really liked what you cooked for me.\tJ'ai beaucoup apprécié ce que tu as cuisiné pour moi.\nI really should finish this right now.\tJe devrais vraiment finir ça sur-le-champ.\nI recognized her as soon as I saw her.\tJe l'ai reconnue dès que je l'ai vue.\nI recognized her the moment I saw her.\tJe l'ai reconnue dès que je l'ai vue.\nI remember the year when he got a job.\tJe me rappelle l'année où il a eu un travail.\nI rushed out to see what was going on.\tJe me suis précipité dehors pour voir ce qui se passait.\nI said that I could, not that I would.\tJ'ai dit que je pourrais, pas que je voudrais.\nI saw Shin'ichi in Kakogawa yesterday.\tHier, j'ai vu Shinichi à Kakogawa.\nI saw Shin'ichi in Kakogawa yesterday.\tJ'ai vu Shin'ichi à Kakogawa hier.\nI saw Tom yesterday and he looked sad.\tJ'ai vu Tom hier et il avait l'air triste.\nI saw Tom yesterday and he looked sad.\tJ'ai vu Tom hier et il semblait triste.\nI saw a spider walking on the ceiling.\tJ'ai vu une araignée qui se baladait sur le plafond.\nI saw this movie a very long time ago.\tJ'ai vu ce film il y a fort longtemps.\nI saw this movie a very long time ago.\tJ'ai vu ce film il y a très longtemps.\nI see him in the library now and then.\tJe le vois de temps en temps à la bibliothèque.\nI should have listened more carefully.\tJ'aurais dû écouter plus attentivement.\nI should've taken an umbrella with me.\tJ'aurais dû prendre un parapluie avec moi.\nI shouldn't have done that. I'm sorry.\tJe n'aurais pas dû faire ça. Je suis désolé.\nI shouldn't have gone there by myself.\tJe n'aurais pas dû y aller seul.\nI shouldn't have gone there by myself.\tJe n'aurais pas dû m'y rendre seul.\nI sleep with two quilts in the winter.\tJe dors avec deux édredons, en hiver.\nI sleep with two quilts in the winter.\tJe dors avec deux couettes, l'hiver.\nI spent the whole day reading a novel.\tJ'ai passé toute la journée à lire un roman.\nI spent three hours repairing the car.\tJ'ai passé 3 heures à réparer la voiture.\nI started doing this work 4 years ago.\tÇa fait 4 ans que j'ai commencé de faire ce travail.\nI started doing this work 4 years ago.\tÇa fait 4 ans que j'ai commencé à faire ce travail.\nI stayed at home instead of going out.\tJe suis resté à la maison plutôt que de sortir.\nI stepped aside so that he could pass.\tJe me suis écarté pour qu'il puisse passer.\nI still think Tom is hiding something.\tJe pense toujours que Tom cache quelque chose.\nI still think this is the best choice.\tJe pense encore que c'est le meilleur choix.\nI studied in Boston from 2003 to 2007.\tJ'ai étudié à Boston de 2003 à 2007.\nI study French in addition to English.\tJ'étudie le français en plus de l'anglais.\nI suppose you want me to pay for this.\tJe suppose que vous voulez que je paie pour ça.\nI suppose you want me to pay for this.\tJe suppose que tu veux que je paie pour ça.\nI think I ate a little too much today.\tJe pense avoir mangé un petit peu trop, aujourd'hui.\nI think I've persuaded Tom to help us.\tJe crois que j'ai persuadé Tom de nous aider.\nI think Tom didn't tell us everything.\tJe pense que Tom ne nous a pas tout dit.\nI think he's hiding something from me.\tJe pense qu'il me cache quelque chose.\nI think his opinion is very important.\tJe crois que son opinion a beaucoup d'importance.\nI think it's time for me to get a dog.\tJe pense qu'il est temps pour moi de prendre un chien.\nI think it's time for me to get a job.\tJe pense qu'il est temps pour moi de trouver un emploi.\nI think it's time for me to go to bed.\tJe pense qu'il est temps pour moi d'aller au lit.\nI think it's time for me to leave now.\tJe pense qu'il est maintenant temps pour moi de partir.\nI think it's time for me to shove off.\tJe pense qu'il est temps pour moi de partir.\nI think my girlfriend is kind of cute.\tJe trouve que ma petite amie est assez mignonne.\nI think that you are twenty years old.\tJe pense que tu as vingt ans.\nI think we ought to change our policy.\tJe pense que nous devons changer notre politique.\nI think we should talk about this now.\tJe pense que nous devrions en parler maintenant.\nI think we're going to need more time.\tJe pense qu'il va nous falloir davantage de temps.\nI think we're going to need more time.\tJe pense que nous allons avoir besoin de plus de temps.\nI think what Tom is doing is terrific.\tJe pense que ce que Tom est en train de faire est formidable.\nI think you and I need to have a talk.\tJe crois qu'il faut qu'on parle, toi et moi.\nI think you know that's inappropriate.\tJe pense que vous savez que c'est déplacé.\nI think you know that's inappropriate.\tJe pense que vous savez que c'est inconvenant.\nI think you know that's inappropriate.\tJe pense que vous savez que c'est malvenu.\nI think you know that's inappropriate.\tJe pense que tu sais que c'est déplacé.\nI think you know that's inappropriate.\tJe pense que tu sais que c'est inconvenant.\nI think you know that's inappropriate.\tJe pense que tu sais que c'est malvenu.\nI think you misunderstood what I said.\tJe pense que vous avez mal compris ce que j'ai dit.\nI think you misunderstood what I said.\tJe pense que tu as mal compris ce que j'ai dit.\nI think you should stay where you are.\tJe pense que tu devrais rester là où tu es.\nI think you're contradicting yourself.\tJe pense que vous vous contredisez.\nI think you're just wasting your time.\tJe pense que vous êtes juste en train de gaspiller votre temps.\nI thought I might never see you again.\tJe pensais que je pourrais ne jamais vous revoir.\nI thought I might never see you again.\tJe pensais que je pourrais ne jamais te revoir.\nI thought I told you never to call me.\tJe pensais t'avoir dit de ne jamais m'appeler.\nI thought I told you never to call me.\tJe pensais vous avoir dit de ne jamais m'appeler.\nI thought I told you to cut your hair.\tJe pensais t'avoir dit de te couper les cheveux.\nI thought I told you to cut your hair.\tJe pensais vous avoir dit de vous couper les cheveux.\nI thought I was doing the right thing.\tJe pensais que je faisais ce qu'il convenait de faire.\nI thought I wouldn't know the answers.\tJe pensais que je ne connaîtrais pas les réponses.\nI thought I'd died and gone to heaven.\tJe pensais que j'étais mort et que j'étais allé au Paradis.\nI thought I'd died and gone to heaven.\tJe pensais que j'étais morte et que j'étais allée au Paradis.\nI thought Tom and Mary were both dead.\tJe pensais que Tom et Mary étaient tous les deux morts.\nI thought it sounded like a good idea.\tJe pensais que ça avait l'air d'une bonne idée.\nI thought it was illegal to park here.\tJe pensais qu'il était illégal de se garer ici.\nI thought it was the least I could do.\tJe pensais que c'était la moindre des choses que je puisse faire.\nI thought this building was abandoned.\tJe pensais que ce bâtiment était abandonné.\nI thought we could get together later.\tJe pensais que nous pourrions nous rencontrer plus tard.\nI thought we could get together later.\tJe pensais que nous pourrions nous rejoindre plus tard.\nI thought we could get together later.\tJe pensais que nous pouvions nous rencontrer plus tard.\nI thought we could get together later.\tJe pensais que nous pouvions nous rejoindre plus tard.\nI thought we had a great relationship.\tJe pensais que nous avions une super relation.\nI thought we were going out to dinner.\tJe pensais que nous sortions dîner.\nI thought we were going out to dinner.\tJe pensais que nous sortions déjeuner.\nI thought we weren't going to do this.\tJe pensais que nous n'allions pas faire ça.\nI thought we'd worry about that later.\tJe pensais que nous nous inquièterions de ça plus tard.\nI thought you didn't care about money.\tJe pensais que tu ne te souciais pas d'argent.\nI thought you didn't care about money.\tJe pensais que vous ne vous souciiez pas d'argent.\nI thought you had learned that by now.\tJe pensais que tu avais appris ça à l'heure qu'il est.\nI thought you had learned that by now.\tJe pensais que vous aviez appris ça à l'heure qu'il est.\nI thought you might feel the same way.\tJe pensais que tu ressentirais peut-être la même chose.\nI thought you might like some company.\tJ'ai pensé que tu apprécierais peut-être de la compagnie.\nI thought you might like some company.\tJ'ai pensé que vous apprécieriez peut-être de la compagnie.\nI thought you were going to stay home.\tJ'ai pensé que tu allais rester chez toi.\nI thought you were going to stay home.\tJ'ai pensé que vous alliez rester chez vous.\nI thought you were having a good time.\tJ'ai pensé que tu prenais du bon temps.\nI thought you were having a good time.\tJ'ai pensé que vous preniez du bon temps.\nI thought you were trying to be funny.\tJ'ai pensé que tu essayais d'être drôle.\nI thought you were trying to be funny.\tJ'ai pensé que vous essayiez d'être drôle.\nI thought you'd be disappointed in me.\tJe pensais te décevoir.\nI thought you'd be disappointed in me.\tJe pensais vous décevoir.\nI thought you'd be interested in this.\tJe pensais que ça t'intéresserait.\nI thought you'd be interested in this.\tJe pensais que ça vous intéresserait.\nI thought you'd find that interesting.\tJe pensais que tu trouverais ça intéressant.\nI thought you'd find that interesting.\tJe pensais que vous trouveriez ça intéressant.\nI tied my dog to a tree in the garden.\tJ'attachai mon chien à un arbre dans le jardin.\nI told you his name was Tom, didn't I?\tJe t'ai dit qu'il s'appelait Tom, n'est-ce pas ?\nI told you not to call me on weekends.\tJe vous ai dit de ne pas m'appeler pendant les week-ends.\nI told you not to call me on weekends.\tJe t'ai dit de ne pas m'appeler pendant les week-ends.\nI told you not to call me on weekends.\tJe vous ai dit de ne pas m'appeler durant les week-ends.\nI told you not to call me on weekends.\tJe t'ai dit de ne pas m'appeler durant les week-ends.\nI took my temperature every six hours.\tJ'ai pris ma température toutes les six heures.\nI translate articles almost every day.\tJe traduis des articles presque chaque jour.\nI truly didn't know you felt this way.\tJ'ignorais vraiment que vous aviez ce sentiment.\nI truly didn't know you felt this way.\tJ'ignorais vraiment que tu avais ce sentiment.\nI understand how to solve the problem.\tJe comprends comment résoudre le problème.\nI used to believe everything you said.\tJe croyais tout ce que vous disiez.\nI used to believe everything you said.\tJe croyais tout ce que tu disais.\nI used to go to that library to study.\tJ'avais pour habitude d'aller étudier à cette bibliothèque.\nI used to play the guitar fairly well.\tJe jouais plutôt bien de la guitare.\nI waited for you to get out of prison.\tJ'ai attendu que tu sortes de prison.\nI waited for you to get out of prison.\tJ'ai attendu ta sortie de prison.\nI want a better look at this document.\tJe veux jeter un œil plus attentif à ce document.\nI want a car that runs on solar power.\tJe veux un véhicule qui fonctionne à l'énergie solaire.\nI want a round-trip ticket to Chicago.\tJe veux un billet aller-retour pour Chicago.\nI want back what you've taken from me.\tJe veux que tu me rendes ce que tu m'as pris.\nI want back what you've taken from me.\tJe veux que vous me rendiez ce que vous m'avez pris.\nI want something to read on the train.\tJ'ai envie de lire quelque chose dans le train.\nI want the two of you to quit arguing.\tJe veux que vous cessiez, tous les deux, de vous disputer.\nI want the two of you to quit arguing.\tJe veux que vous cessiez, toutes les deux, de vous disputer.\nI want the two of you to quit arguing.\tJe veux que vous arrêtiez, tous les deux, de vous disputer.\nI want the two of you to quit arguing.\tJe veux que vous arrêtiez, toutes les deux, de vous disputer.\nI want the two of you to quit arguing.\tJe veux que vous arrêtiez, tous deux, de vous disputer.\nI want the two of you to quit arguing.\tJe veux que vous arrêtiez, toutes deux, de vous disputer.\nI want the two of you to quit arguing.\tJe veux que vous cessiez, toutes deux, de vous disputer.\nI want the two of you to quit arguing.\tJe veux que vous cessiez, tous deux, de vous disputer.\nI want the two of you to quit arguing.\tJe veux que vous cessiez de vous disputer tous les deux.\nI want the two of you to quit arguing.\tJe veux que vous cessiez de vous disputer toutes les deux.\nI want the two of you to quit arguing.\tJe veux que vous arrêtiez de vous disputer tous les deux.\nI want the two of you to quit arguing.\tJe veux que vous arrêtiez de vous disputer toutes les deux.\nI want this fixed as soon as possible.\tJe veux que ce soit réparé le plus tôt possible.\nI want this fixed as soon as possible.\tJe veux que ce soit réparé fissa.\nI want to apologize for the other day.\tJe voudrais présenter mes excuses pour l'autre jour.\nI want to ask you one simple question.\tJe veux te poser une simple question.\nI want to ask you one simple question.\tJe veux vous poser une simple question.\nI want to borrow your car for an hour.\tJe veux emprunter ta voiture pour une heure.\nI want to borrow your car for an hour.\tJe veux emprunter votre voiture pour une heure.\nI want to buy a few pairs of trousers.\tJe veux acheter quelques pantalons.\nI want to devote my life to education.\tJe veux consacrer ma vie à l'éducation.\nI want to find out where it came from.\tJe veux trouver d'où c'est venu.\nI want to help you with your homework.\tJe veux t'aider pour tes devoirs.\nI want to keep a cat instead of a dog.\tJ'aimerais avoir un chat plutôt qu'un chien.\nI want to know what this is all about.\tJe veux savoir de quoi tout ceci retourne.\nI want to know what this is all about.\tJe veux savoir de quoi s'agit tout ceci.\nI want to know what you see right now.\tJe veux savoir ce que tu vois, à l'instant.\nI want to know what you see right now.\tJe veux savoir ce que vous voyez, à l'instant.\nI want to know what you're doing here.\tJe veux savoir ce que tu fais ici.\nI want to know what you're doing here.\tJe veux savoir ce que tu fais là.\nI want to know what you're doing here.\tJe veux savoir ce que vous faites ici.\nI want to know what you're doing here.\tJe veux savoir ce que vous faites là.\nI want to know what you're doing here.\tJe veux savoir ce que vous fichez ici.\nI want to know what you're doing here.\tJe veux savoir ce que vous fichez là.\nI want to know what you're doing here.\tJe veux savoir ce que tu fiches là.\nI want to know what you're doing here.\tJe veux savoir ce que tu fiches ici.\nI want to know where you plan to live.\tJe veux savoir où tu prévois de vivre.\nI want to know where you plan to live.\tJe veux savoir où vous prévoyez de vivre.\nI want to make amends for my behavior.\tJe veux expier ma conduite.\nI want to see if he really fixed this.\tJe veux voir s'il a vraiment réparé ça.\nI want to sleep in my own bed tonight.\tJe veux, ce soir, dormir dans mon propre lit.\nI want to talk to you about this list.\tJe veux te parler de cette liste.\nI want to talk to you about this list.\tJe veux vous parler de cette liste.\nI want to talk to you about this list.\tJe veux discuter avec toi de cette liste.\nI want to talk to you about this list.\tJe veux discuter avec vous de cette liste.\nI want to talk to you about this list.\tJe veux m'entretenir avec toi de cette liste.\nI want to talk to you about this list.\tJe veux m'entretenir avec vous de cette liste.\nI want you to get a good night's rest.\tJe veux que tu prennes une bonne nuit de repos.\nI want you to get a good night's rest.\tJe veux que vous preniez une bonne nuit de repos.\nI want you to help me get out of here.\tJe veux que tu m'aides à sortir d'ici.\nI want you to help me get out of here.\tJe veux que vous m'aidiez à sortir d'ici.\nI want you to know that I believe you.\tJe veux que tu saches que je te crois.\nI want you to know that I believe you.\tJe veux que vous sachiez que je vous crois.\nI want you to run to the store for me.\tJe veux que tu coures à la boutique pour moi.\nI want you to run to the store for me.\tJe veux que tu coures au magasin pour moi.\nI want you to run to the store for me.\tJe veux que vous couriez à la boutique pour moi.\nI want you to run to the store for me.\tJe veux que vous couriez au magasin pour moi.\nI want you to take a good look around.\tJe veux que tu regardes bien autour.\nI want you to take a good look around.\tJe veux que vous regardiez bien autour.\nI want you to tell me about your trip.\tJe veux que vous me racontiez votre voyage.\nI want you to tell me about your trip.\tJe veux que vous me parliez de votre voyage.\nI want you to tell me about your trip.\tJe veux que tu me racontes ton voyage.\nI want you to tell me about your trip.\tJe veux que tu me parles de ton voyage.\nI wanted to do something nice for you.\tJe voulais faire quelque chose de chouette pour toi.\nI wanted to do something nice for you.\tJe voulais t'être agréable.\nI wanted to do something nice for you.\tJe voulais vous être agréable.\nI wanted to do something nice for you.\tJe voulais faire quelque chose de chouette pour vous.\nI wanted to talk to them face to face.\tJe voulais m'entretenir avec eux en face à face.\nI wanted to watch that movie with you.\tJe voulais regarder ce film avec toi.\nI was able to see the smoke from here.\tJe pouvais voir la fumée depuis cet endroit.\nI was born on the 31st of May in 1940.\tJe suis né le 31 mai 1940.\nI was deeply impressed by the scenery.\tJ'ai été grandement impressionné par les décors.\nI was entirely ignorant of the matter.\tJ'ignorais tout de cette question.\nI was forced to drink against my will.\tJ'ai été forcé à boire.\nI was going to ask you the same thing.\tJ'allais vous demander la même chose.\nI was going to ask you the same thing.\tJ'allais te demander la même chose.\nI was greatly impressed by the speech.\tJe fus grandement impressionné par le discours.\nI was greatly impressed by the speech.\tJ'ai été grandement impressionné par le discours.\nI was greatly impressed by the speech.\tJe fus grandement impressionnée par le discours.\nI was greatly impressed by the speech.\tJ'ai été grandement impressionnée par le discours.\nI was in the bath when the phone rang.\tJ'étais dans le bain quand le téléphone sonna.\nI was just in time for the last train.\tJ'étais juste dans les temps pour le dernier train.\nI was just in time for the last train.\tJ'étais tout juste à l'heure pour le dernier train.\nI was more than a little disappointed.\tJ'étais plus que déçu.\nI was the one who built this doghouse.\tJ'étais celui qui a construit cette niche.\nI was thinking exactly the same thing.\tJ’étais en train de penser exactement à la même chose.\nI was told that I should see a doctor.\tOn m'a dit de consulter un médecin.\nI was welcomed whenever I visited him.\tJe recevais un bon accueil, à chaque fois que je le visitais.\nI wasn't able to believe him at first.\tJe ne pouvais pas le croire a priori.\nI wasn't able to believe him at first.\tAu départ, je n'arrivais pas à croire ses paroles.\nI went out even though it was raining.\tJe sortis, bien qu'il plut.\nI went out even though it was raining.\tJe suis sorti, bien qu'il plut.\nI went to elementary school in Nagoya.\tJe suis allé à l'école primaire à Nagoya.\nI went to sleep as soon as I got home.\tJ'allai au lit aussitôt que je rentrai chez moi.\nI went to sleep as soon as I got home.\tJe suis allé au lit aussitôt que je suis rentré chez moi.\nI went to the hospital to see my wife.\tJe suis allé à l'hôpital pour voir ma femme.\nI will be expecting a letter from her.\tJ'attendrai une lettre d'elle.\nI will definitely attend your funeral.\tJe prendrai part, sans faute, à ton enterrement.\nI will definitely attend your funeral.\tJ'assisterai sans faute à ton enterrement.\nI will have finished the work by noon.\tJ'aurai fini le travail pour midi.\nI will help you if you are in trouble.\tJe t'aiderai si tu es en difficulté.\nI will probably get up early tomorrow.\tJe vais probablement me lever tôt demain.\nI will probably get up early tomorrow.\tJe me lèverai probablement tôt demain.\nI will speak to her about it directly.\tJe lui en parlerai directement.\nI will stay home if it rains tomorrow.\tJe resterai à la maison s'il pleut demain.\nI will stay home if it rains tomorrow.\tJe resterai chez moi s'il pleut demain.\nI wish I had more time to talk to her.\tSi seulement j'avais plus de temps pour lui parler.\nI wish I had more time to talk to you.\tJ'aimerais avoir plus de temps pour parler avec toi.\nI wish I knew what you're looking for.\tJ'aimerais savoir ce que tu cherches.\nI wish there was more I could've done.\tJ'aimerais avoir pu faire davantage.\nI wish we could ask Tom that question.\tJ'espère que nous pouvons poser cette question à Tom.\nI wish you had told me the truth then.\tJ'aurais aimé que tu me dises la vérité à ce moment-là.\nI won't do that unless you want me to.\tJe ne ferai pas ça à moins que tu veuilles que je le fasse.\nI won't do that unless you want me to.\tJe ne ferai pas ça à moins que tu le veuilles.\nI won't do that unless you want me to.\tJe ne ferai pas ça à moins que vous ne veuillez que je le fasse.\nI won't do that unless you want me to.\tJe ne ferai pas ça à moins que vous ne vouliez que je le fasse.\nI won't do that unless you want me to.\tJe ne ferai pas ça à moins que vous ne le veuillez.\nI won't do that unless you want me to.\tJe ne ferai pas ça à moins que vous ne le vouliez.\nI won't repeat anything you say to me.\tJe ne répéterai rien de ce que tu me dis.\nI won't repeat anything you say to me.\tJe ne répéterai rien de ce que vous me dites.\nI wonder if he enjoyed the last match.\tJe me demande s'il a aimé le dernier match.\nI wonder if it will clear up tomorrow.\tJe me demande si ça va se dégager demain.\nI wonder what I'll do once I get home.\tJe me demande ce que je vais faire une fois à la maison.\nI wonder what's going to happen to us.\tJe me demande ce qu'il va advenir de nous.\nI wonder what's going to happen to us.\tJe me demande ce qu'il va nous arriver.\nI would act differently in your place.\tJ'agirais différemment à votre place.\nI would give anything to win her back.\tJe donnerais n'importe quoi pour la reconquérir.\nI would like to address two questions.\tJe voudrais poser deux questions.\nI would like to address two questions.\tJe voudrais traiter deux questions.\nI would like to be an English teacher.\tJ'aimerais être professeur d'anglais.\nI would like to go to Russia sometime.\tJ'aimerais aller en Russie un jour.\nI would rather go today than tomorrow.\tJe préférerais y aller aujourd'hui plutôt que demain.\nI wouldn't like to work in a hospital.\tJe n'aimerais pas travailler dans un hôpital.\nI wouldn't want to work in a hospital.\tJe n'aimerais pas travailler dans un hôpital.\nI'd be unhappy if that happened again.\tJe serais malheureux si ça se reproduisait.\nI'd be unhappy if that happened again.\tJe serais malheureuse si ça se reproduisait.\nI'd be unhappy if that happened again.\tJe serais malheureux si ça survenait à nouveau.\nI'd be unhappy if that happened again.\tJe serais malheureuse si ça survenait à nouveau.\nI'd like a nonstop flight to New York.\tJ'aimerais un vol direct pour New York.\nI'd like to be considered for the job.\tJ'apprécierais que ma candidature pour le poste soit prise en considération.\nI'd like to be more than just friends.\tJ'aimerais que nous soyons davantage que juste des amis.\nI'd like to check your blood pressure.\tJ'aimerais vérifier votre tension.\nI'd like to check your blood pressure.\tJ'aimerais vérifier votre pression artérielle.\nI'd like to get a copy of that report.\tJ'aimerais obtenir une copie de ce rapport.\nI'd like to hear what your opinion is.\tJ'aimerais entendre ce qu'est votre opinion.\nI'd like to hear what your opinion is.\tJ'aimerais entendre ce qu'est ton opinion.\nI'd like to help you reach your goals.\tJ'aimerais vous aider à atteindre vos objectifs.\nI'd like to help you reach your goals.\tJ'aimerais t'aider à atteindre tes objectifs.\nI'd like to know if they have arrived.\tJe voudrais savoir s'ils sont arrivés.\nI'd like to reserve a table for three.\tJ'aimerais réserver une table pour trois personnes.\nI'd like to speak with Tom in private.\tJ'aimerais parler avec Tom en privé.\nI'd like to speak with Tom in private.\tJ'aimerais parler avec Tom seul à seul.\nI'd like to stay here a little longer.\tJ'aimerais rester là un peu plus longtemps.\nI'd like to talk about your situation.\tJ'aimerais discuter de votre situation.\nI'd like to talk about your situation.\tJ'aimerais m'entretenir de votre situation.\nI'd like to talk about your situation.\tJ'aimerais discuter de ta situation.\nI'd like to talk about your situation.\tJ'aimerais m'entretenir de ta situation.\nI'd like to talk to the hotel manager.\tJ'aimerais parler au directeur de l’hôtel.\nI'd like to thank everyone who helped.\tJ'aimerais remercier tous ceux qui ont aidé.\nI'd like to thank everyone who helped.\tJ'aimerais remercier toutes celles qui ont aidé.\nI'd like you to meet a friend of mine.\tJ'aimerais que tu rencontres l'un de mes amis.\nI'd like you to meet a friend of mine.\tJ'aimerais que tu rencontres l'une de mes amies.\nI'd like you to meet a friend of mine.\tJ'aimerais que vous rencontriez l'un de mes amis.\nI'd like you to meet a friend of mine.\tJ'aimerais que vous rencontriez l'une de mes amies.\nI'd like you to tell me what happened.\tJ'aimerais que vous me disiez ce qui s'est passé.\nI'd like you to tell me what happened.\tJ'aimerais que tu me dises ce qui s'est passé.\nI'd never met Tom before this morning.\tJe n'avais jamais rencontré Tom avant ce matin.\nI'd never met Tom before this morning.\tJe n'avais jamais rencontré Tom jusqu'à ce matin.\nI'd prefer that you stay home tonight.\tJ'aimerais mieux que vous restiez à la maison ce soir.\nI'll ask my brother to give me a ride.\tJe demanderai à mon frère de me conduire.\nI'll be happy to answer your question.\tJe serai heureux de répondre à votre question.\nI'll be very happy if I can serve you.\tJe serai très heureux de pouvoir te servir.\nI'll call you right after the meeting.\tJe vous appellerai juste après la réunion.\nI'll call you right after the meeting.\tJe t'appellerai juste après la réunion.\nI'll do anything to make it up to you.\tJe ferai tout pour te rendre la pareille.\nI'll do anything to make it up to you.\tJe ferai tout pour vous rendre la pareille.\nI'll do whatever it takes to save Tom.\tJe ferai tout ce qui est nécessaire, pour sauver Tom.\nI'll give you a day to think about it.\tJe te donne un jour pour y penser.\nI'll give you back the money tomorrow.\tJe vous rendrai la monnaie demain.\nI'll give you back the money tomorrow.\tJe te rendrai l'argent demain.\nI'll make an exception just this once.\tJe ferai une exception, juste cette fois.\nI'll pick you up at your home at five.\tJe passe te prendre chez toi à cinq heures.\nI'll put you through to the president.\tJe vous passe le président.\nI'll see you at nine tomorrow morning.\tJe te verrai à neuf heures demain matin.\nI'll speak to anyone at extension 214.\tJe répondrai au poste 214.\nI'll take care of it as soon as I can.\tJ'y prêterai attention dès que je peux.\nI'll take him with me to the hospital.\tJe l'emmènerai avec moi à l'hôpital.\nI'll take you anywhere you want to go.\tJe t'amènerai partout où tu veux aller.\nI'll take you anywhere you want to go.\tJe vous amènerai partout où vous voulez aller.\nI'll try not to be late in the future.\tÀ l'avenir je tâcherai de ne plus être en retard.\nI'm afraid I can't save you this time.\tJe crains de ne pouvoir vous sauver, cette fois.\nI'm afraid I can't save you this time.\tJe crains de ne pouvoir te sauver, cette fois.\nI'm afraid I have to ask you to leave.\tJ'ai bien peur de devoir vous demander de partir.\nI'm almost finished reading this book.\tJ'ai presque fini de lire ce livre.\nI'm ashamed because I acted foolishly.\tJ'ai honte car j'ai agi stupidement.\nI'm beginning to feel a little sleepy.\tJe commence à avoir un peu sommeil.\nI'm beginning to feel guilty about it.\tJe commence à me sentir coupable à ce sujet.\nI'm developing an Android application.\tJe suis en train de développer une application Android.\nI'm going away for the summer holiday.\tJe m'en vais pour les vacances d'été.\nI'm going to drop in on her next week.\tJe prévois de passer par chez elle la semaine prochaine.\nI'm going to get my own way this time.\tJe vais faire à ma manière, cette fois-ci.\nI'm going to give you one more chance.\tJe vais te donner une chance supplémentaire.\nI'm going to give you one more chance.\tJe vais vous donner une chance supplémentaire.\nI'm going to give you one more chance.\tJe vais te donner une chance de plus.\nI'm going to give you one more chance.\tJe vais vous donner une chance de plus.\nI'm going to give you one more chance.\tJe vais te donner une chance additionnelle.\nI'm going to give you one more chance.\tJe vais vous donner une chance additionnelle.\nI'm going to hide somewhere near here.\tJe vais me cacher quelque part près d'ici.\nI'm going to hide somewhere near here.\tJe vais me dissimuler quelque part près d'ici.\nI'm going to play tennis this evening.\tJe vais jouer au tennis ce soir.\nI'm growing tired of all this arguing.\tToutes ces disputes commencent à me fatiguer.\nI'm in pain every minute of every day.\tJe souffre chaque minute de chaque jour.\nI'm just looking for a place to sleep.\tJe cherche seulement un endroit où dormir.\nI'm listening to Björk's latest song.\tJ'écoute la dernière chanson de Björk.\nI'm more interested in spoken English.\tJe suis plus intéressé par l'anglais parlé.\nI'm not as smart as people think I am.\tJe ne suis pas aussi intelligent que les gens le pensent.\nI'm not feeling very hungry right now.\tJe n'ai pas très faim à l'instant.\nI'm not going to do anything about it.\tJe ne vais rien y faire.\nI'm not going to study French anymore.\tJe ne vais plus étudier le français.\nI'm not in a position to discuss that.\tJe ne suis pas en situation de discuter de ça.\nI'm now officially part of this group.\tJe fait maintenant officiellement partie de ce groupe.\nI'm only doing this for your own good.\tJe ne le fais que pour ton bien.\nI'm only doing this for your own good.\tJe ne le fais que pour ton bien à toi.\nI'm only doing this for your own good.\tJe ne le fais que pour votre bien.\nI'm only doing this for your own good.\tJe ne le fais que pour votre bien à vous.\nI'm only three years older than he is.\tJe n'ai que trois ans de plus que lui.\nI'm only three years older than he is.\tJe ne suis que de trois ans plus vieux que lui.\nI'm ordering you to leave immediately.\tJe t'ordonne de partir immédiatement.\nI'm ordering you to leave immediately.\tJe vous ordonne de partir immédiatement.\nI'm so happy, I feel like I could fly.\tJe suis si heureux que je m'élève dans le ciel.\nI'm sorry, I forgot to do my homework.\tJe suis désolé, j'ai oublié de faire mes devoirs.\nI'm sorry, I left my homework at home.\tJe suis désolé, j'ai oublié mes devoirs chez moi.\nI'm sorry, I left my homework at home.\tJe suis désolée, j'ai oublié mes devoirs chez moi.\nI'm sorry, but it's just not possible.\tJe suis désolé, mais c'est tout simplement impossible.\nI'm sorry, but it's past your bedtime.\tJe suis désolé, mais l'heure d'aller te coucher est passée.\nI'm sorry, but it's past your bedtime.\tJe suis désolée, mais l'heure d'aller te coucher est passée.\nI'm sorry. I have another appointment.\tJe suis désolé, j'ai un autre rendez-vous.\nI'm sorry. I never wanted to hurt you.\tJe suis désolé. Je n'ai jamais voulu te faire de mal.\nI'm sorry. I'm a stranger around here.\tJe suis désolé. Je ne suis pas d'ici.\nI'm staying over at my friend's place.\tJe passe la nuit chez mon ami.\nI'm staying over at my friend's place.\tJe passe la nuit chez mon amie.\nI'm sure he'll be as good as his word.\tJe suis certain qu'il tiendra parole.\nI'm sure the children are getting big.\tJe suis sûre que les enfants grandissent.\nI'm surprised Tom never mentioned you.\tJe suis surpris que Tom ne m'ait jamais parlé de vous.\nI'm too tired to think about that now.\tJe suis trop fatigué pour y réfléchir maintenant.\nI'm very interested in social studies.\tLes études sociales m'intéressent beaucoup.\nI'm waiting for a very important call.\tJ'attends un appel très important.\nI've already taken care of everything.\tJe me suis déjà occupé de tout.\nI've been asked to become the manager.\tOn m'a demandé de devenir le gérant.\nI've been asked to become the manager.\tOn m'a demandé de devenir le directeur.\nI've been looking for my keys all day.\tJ'ai cherché mes clés toute la journée.\nI've been waiting for her for an hour.\tJe l'attends depuis une heure.\nI've been waiting for him for an hour.\tJe l'attends depuis une heure.\nI've been waiting for him for an hour.\tÇa fait une heure que je l'attends.\nI've been waiting for you for 5 hours.\tJe t'ai attendu pendant 5 heures.\nI've discovered the victim's identity.\tJ'ai découvert l'identité de la victime.\nI've got everything I need right here.\tJ'ai tout ce dont j'ai besoin ici.\nI've got to get back home by midnight.\tIl me faut être rentré chez moi pour minuit.\nI've got to get back home by midnight.\tIl me faut être rentrée chez moi pour minuit.\nI've got to get back home by midnight.\tJe dois être rentré chez moi pour minuit.\nI've got to get back home by midnight.\tJe dois être rentrée chez moi pour minuit.\nI've got to skedaddle or I'll be late.\tJe dois me grouiller ou je vais être en retard.\nI've had enough of your snide remarks.\tJ'en ai assez de tes railleries.\nI've had enough of your snide remarks.\tJ'en ai assez de vos railleries.\nI've heard that name somewhere before.\tJ'ai déjà entendu ce nom quelque part.\nI've heard this story scores of times.\tJ'ai entendu cette histoire des dizaines de fois.\nI've learned to expect the unexpected.\tJ'ai appris à m'attendre à l'imprévisible.\nI've learned to think like Tom thinks.\tJ'ai appris à penser comme Tom.\nI've never had trouble falling asleep.\tJe n'ai jamais eu de mal à m'endormir.\nI've never met a man as stupid as you.\tJe n'ai jamais rencontré d'homme aussi con que toi !\nI've never stolen anything in my life.\tJe n’ai jamais rien volé de ma vie.\nI've reduced the amount of meat I eat.\tJ'ai diminué la quantité de viande que je mange.\nIce covers the lake during the winter.\tLa glace recouvre le lac, durant l'hiver.\nIf I had known, I would have told you.\tSi j'avais su, je te l'aurais dit.\nIf I had known, I would not have come.\tSi j'avais su, je ne serais pas venu.\nIf I were you, I'd go home right away.\tSi j'étais toi, je rentrerais tout de suite.\nIf he comes, what should I say to him?\tS'il venait, que devrais-je lui dire ?\nIf only I hadn't been in such a hurry!\tSi seulement je n'avais pas été si pressé !\nIf only I hadn't been in such a hurry!\tSi seulement je n'avais pas été si pressée !\nIf you ask me, she's a little unusual.\tSi tu veux savoir, elle est un peu hors norme.\nIf you don't behave, Santa won't come.\tSi tu ne te conduis pas comme il faut, le Père Noël ne viendra pas.\nIf you don't go, I will not go either.\tSi tu n'y vas pas, je n'irais pas non plus.\nIf you eat that much, you'll get sick.\tSi tu manges autant, tu seras malade.\nIn case of emergency, call the police.\tEn cas d'urgence, alerte la police.\nIn case of emergency, call the police.\tEn cas d'urgence, appelle la police.\nIn some places, people died of hunger.\tEn certains endroits, les gens mouraient de faim.\nIn the north, it's cold in the winter.\tAu nord, il fait froid en hiver.\nIn the polls, both parties are on par.\tDans les sondages, les deux partis sont à égalité.\nIn which folder did you save the file?\tDans quel dossier as-tu enregistré le fichier ?\nIs Japanese taught in your school now?\tEst-ce qu'on enseigne le japonais dans ton école en ce moment ?\nIs anyone coming besides your friends?\tQuiconque vient-il en dehors de tes amis ?\nIs anyone coming besides your friends?\tQuiconque vient-il en dehors de vos amis ?\nIs anyone coming besides your friends?\tQuiconque vient-il à part vos amis ?\nIs that what you think I want to hear?\tEst-ce ce que tu penses que je veux entendre ?\nIs that what you think I want to hear?\tEst-ce ce que vous pensez que je veux entendre ?\nIs that what you think I want to hear?\tEst-ce là ce que tu penses que je veux entendre ?\nIs that what you think I want to hear?\tEst-ce là ce que vous pensez que je veux entendre ?\nIs that what you think I want to hear?\tEst-ce ce que vous pensez que je veuille entendre ?\nIs that what you think I want to hear?\tEst-ce là ce que vous pensez que je veuille entendre ?\nIs the movie theater near the station?\tLe cinéma est-il proche de la gare ?\nIs there a souvenir shop in the hotel?\tY a-t-il une boutique de souvenirs dans l'hôtel ?\nIs there any likelihood of his coming?\tY a-t-il la moindre probabilité qu'il vienne ?\nIs there anyone else who wants to eat?\tY a-t-il quelqu'un d'autre qui souhaiterait manger ?\nIs there anything I should know about?\tIl y a quelque chose que je dois savoir ?\nIs there anything we could do to help?\tY-a-il quelque chose que nous pouvons faire pour aider ?\nIs there anything you want to tell me?\tY a-t-il quoi que ce soit que tu veuilles me dire ?\nIs there anything you want to tell me?\tY a-t-il quoi que ce soit que vous veuillez me dire ?\nIs there anything you want to tell me?\tY a-t-il quoi que ce soit que vous vouliez me dire ?\nIs there somebody you want to talk to?\tY a-t-il quelqu'un à qui vous vouliez parler ?\nIs there somebody you want to talk to?\tY a-t-il quelqu'un avec qui vous vouliez discuter ?\nIs there somebody you want to talk to?\tY a-t-il quelqu'un avec qui vous vouliez vous entretenir ?\nIs there somebody you want to talk to?\tY a-t-il quelqu'un avec qui tu veuilles discuter ?\nIs there somebody you want to talk to?\tY a-t-il quelqu'un à qui tu veuilles parler ?\nIs there somebody you want to talk to?\tY a-t-il quelqu'un avec qui tu veuilles t'entretenir ?\nIs there something you want to ask me?\tY a-t-il quelque chose que tu veuilles me demander ?\nIs there something you want to ask me?\tY a-t-il quelque chose que vous vouliez me demander ?\nIsn’t love supposed to last forever?\tL'amour n'est-il pas censé durer toujours ?\nIt couldn't have come at a worse time.\tÇa n'aurait pu venir à pire moment.\nIt depends on how much money you have.\tÇa dépend de combien d'argent tu disposes.\nIt depends on how much money you have.\tÇa dépend de combien d'argent vous disposez.\nIt doesn't need to be done right away.\tCela n'a pas besoin d'être fait tout de suite.\nIt doesn't really matter much anymore.\tÇa n'a plus vraiment beaucoup d'importance.\nIt has been many years since she died.\tElle est décédée il y a tant d'années !\nIt is bold of you to say such a thing.\tC'est gonflé de ta part de dire ça.\nIt is cold outdoors. Put on your coat.\tIl fait froid dehors. Enfile ton manteau.\nIt is cold outdoors. Put on your coat.\tIl fait froid à l'extérieur. Mets ton manteau.\nIt is difficult to solve this problem.\tIl est difficile de résoudre ce problème\nIt is doubtful whether this will work.\tIl est douteux que cela fonctionne.\nIt is high time you spilled the beans.\tIl est grand temps que vous vous mettiez à table.\nIt is high time you spilled the beans.\tIl est grand temps que vous crachiez le morceau.\nIt is just a year since I got married.\tCela fait juste un an que je suis marié.\nIt is necessary that you see a doctor.\tIl est nécessaire que tu ailles voir un docteur.\nIt is not clear who wrote this letter.\tL'identité de l'auteur de cette lettre n'est pas claire.\nIt is stupid of you to believe in him.\tC'est stupide de ta part de le croire.\nIt is two miles from here to the park.\tLe parc est à deux miles (~3.2km) d'ici.\nIt is very hot in the summer in Japan.\tIl fait très chaud en été au Japon.\nIt isn't easy to understand his ideas.\tIl n'est pas facile de comprendre ses idées.\nIt looks like it's just the two of us.\tIl semble que nous soyons tous les deux seuls.\nIt looks like we'll get there in time.\tIl semble que nous y parviendrons à temps.\nIt rained continuously for three days.\tIl a plu trois jours de rang.\nIt really doesn't affect you, does it?\tÇa ne vous affecte vraiment pas, si ?\nIt seemed like you weren't interested.\tIl semblait que tu n'étais pas intéressé.\nIt seemed like you weren't interested.\tIl semblait que tu n'étais pas intéressée.\nIt seemed like you weren't interested.\tIl semblait que vous n'étiez pas intéressé.\nIt seemed like you weren't interested.\tIl semblait que vous n'étiez pas intéressée.\nIt seemed like you weren't interested.\tIl semblait que vous n'étiez pas intéressés.\nIt seemed like you weren't interested.\tIl semblait que vous n'étiez pas intéressées.\nIt seems less crowded during the week.\tOn dirait qu'il y a moins de monde en semaine.\nIt was a mess in the department store.\tC'était un bordel dans le grand magasin.\nIt was a very good experience for him.\tC'était une très bonne expérience pour lui.\nIt was my first night among strangers.\tC'était ma première nuit parmi des étrangers.\nIt was nice and warm inside the house.\tIl faisait chaud et bon dans la maison.\nIt was sweet of you to do this for us.\tC'était chouette de ta part de faire ça pour nous.\nIt was the proudest moment of my life.\tCe fut le moment de plus grande fierté de ma vie.\nIt would be better to stay home today.\tIl serait préférable de traîner à la maison aujourd'hui.\nIt's a little late for that, isn't it?\tIl est un peu trop tard pour ça, non ?\nIt's a problem any way you look at it.\tC'est un problème, de quelque manière qu'on le voie.\nIt's been a while since I've seen you.\tÇa fait un bail que je ne vous ai pas vu.\nIt's been a while since I've seen you.\tÇa fait un bail que je ne t'ai pas vu.\nIt's been ten years since we last met.\tCela fait dix ans que l'on ne s'est pas vus.\nIt's best to put covers on paperbacks.\tC'est mieux de couvrir les livres de poche.\nIt's getting light. Morning is coming.\tÇa s'éclaircit. Le matin arrive.\nIt's going to be difficult to do that.\tÇa va être difficile à faire.\nIt's hard to learn a foreign language.\tIl est difficile d'apprendre une langue étrangère.\nIt's hard to talk about your feelings.\tIl est difficile de parler de ses sentiments.\nIt's no easy task to keep up with him.\tCe n'est pas tâche facile de le suivre.\nIt's not easy to understand his ideas.\tIl n'est pas facile de comprendre ses idées.\nIt's not safe to text while you drive.\tIl est dangereux d'envoyer des SMS quand vous conduisez.\nIt's one of the basic human instincts.\tC'est l'un des instincts humains de base.\nIt's only ten minutes' walk from here.\tC'est juste à dix minutes de marche d'ici.\nIt's ten minutes' walk to the station.\tC'est à dix minutes de marche depuis la station.\nIt's true that he is in love with her.\tIl est vrai qu'il est amoureux d'elle.\nIt's very difficult to understand him.\tIl est très difficile de le comprendre.\nIt's very hard for me to trust anyone.\tIl m'est très difficile de faire confiance à quiconque.\nIt's very hard for me to trust anyone.\tIl m'est très difficile de me fier à qui que ce soit.\nIt's very likely that he'll be chosen.\tIl est très probable qu'il sera choisi.\nIt's very likely that he'll be chosen.\tIl est hautement probable qu'il sera choisi.\nIt's you who've acted inappropriately.\tC'est toi qui as agi de manière inappropriée.\nIt's you who've acted inappropriately.\tC'est vous qui avez agi de manière inappropriée.\nIt's your turn to answer the question.\tC'est à ton tour de répondre à la question.\nJapan imports a large quantity of oil.\tLe Japon importe une grande quantité de pétrole.\nJapan imports a large quantity of oil.\tLe Japon importe de grandes quantités de pétrole.\nJapan imports oranges from California.\tLe Japon importe des oranges de Californie.\nJob security is a priority over wages.\tLa sécurité de l'emploi est prioritaire sur le salaire.\nJust a few days ago, we were so happy.\tIl y a seulement quelques jours, nous étions si heureux.\nKing Solomon was known for his wisdom.\tLe roi Salomon était connu pour sa sagesse.\nKyoto depends on the tourist industry.\tKyoto dépend de l'industrie du tourisme.\nKyoto depends on the tourist industry.\tKyoto dépend du secteur du tourisme.\nKyoto was the former capital of Japan.\tKyoto était l'ancienne capitale du Japon.\nLast year, I decided to come to Japan.\tJ'ai décidé l'année dernière de venir au Japon.\nLet me give you a ride to the station.\tLaisse-moi t'accompagner en voiture jusqu'à la gare.\nLet's ask the boy who lives next door.\tPosons la question au garçon qui habite à côté.\nLet's continue from where we left off.\tReprenons là où nous en étions !\nLet's eat in the park like we used to.\tMangeons dans le parc, comme nous le faisions auparavant.\nLet's hope that common sense prevails.\tEspérons que le bon sens l'emporte.\nLet's hurry. We don't want to be late.\tDépêchons-nous ! Nous ne voulons pas être en retard.\nLet's hurry. We don't want to be late.\tPressons-nous ! Nous ne voulons pas être en retard.\nLet's hurry. We don't want to be late.\tActivons-nous ! Nous ne voulons pas être en retard.\nLet's not go to that restaurant again.\tN'allons plus à ce restaurant.\nLet's quit here and continue tomorrow.\tArrêtons là et continuons demain.\nLet's take up this matter after lunch.\tOccupons-nous de cela après le déjeuner.\nLincoln was elected President in 1860.\tLincoln fut élu président en 1860.\nLook at the map on the wall carefully.\tRegardez attentivement la carte qui est sur le mur.\nLook up the phrase in your dictionary.\tCherche l'expression dans ton dictionnaire.\nLook up these words in the dictionary.\tCherchez ce mot dans le dictionnaire.\nMan is the only animal that can laugh.\tL’Homme est le seul animal qui peut rigoler.\nMan is the only animal that can speak.\tL'homme est le seul animal qui parle.\nMany Americans are interested in jazz.\tDe nombreux Américains s'intéressent au Jazz.\nMany Americans wanted a gold standard.\tDe nombreux Étasuniens voulaient un étalon or.\nMany goods are now transported by air.\tDe nos jours, beaucoup de marchandises sont transportées par avion.\nMany leaders supported the compromise.\tDe nombreux leaders ont appuyé le compromis.\nMany people spend more than they earn.\tBeaucoup de gens dépensent davantage qu'ils ne gagnent.\nMany people were late for the concert.\tDe nombreuses personnes furent en retard au concert.\nMany tourists visit Boston every year.\tBeaucoup de touristes visitent Boston chaque année.\nMany tourists visit Boston every year.\tBeaucoup de touristes visitent Boston tous les ans.\nMarika translated my book into German.\tMarika a traduit mon livre en allemand.\nMarriage is the last thing on my mind.\tLe mariage est la dernière chose que j'ai en tête.\nMary asked Tom to shave off his beard.\tMary a demandé à Tom de raser sa barbe.\nMary took the cookies out of the oven.\tMarie a sorti les gâteaux du four.\nMary wants both a career and a family.\tMary veut à la fois une carrière et une famille.\nMary was looking for you at that time.\tMary te cherchait à ce moment-là.\nMathematics is an interesting subject.\tLes mathématiques sont un sujet intéressant.\nMay I ask what you are working on now?\tPuis-je vous demander sur quoi vous travaillez maintenant ?\nMaybe Tom isn't as stupid as he looks.\tPeut-être que Tom n'est pas aussi stupide qu'il en a l'air.\nMaybe we should talk about this first.\tPeut-être qu'on devrait parler de ceci en premier.\nMaybe we should talk about this first.\tOn devrait peut-être parler de ceci en premier.\nMaybe we should talk about this first.\tIl faudrait peut-être parler de ceci en premier.\nMaybe we should talk about this first.\tPeut-être qu'il faudrait parler de ceci en premier.\nMaybe we should talk about this first.\tPeut-être devrions-nous parler de ceci au préalable.\nMaybe you should just leave Tom alone.\tPeut-être devrais-tu simplement laisser Tom seul.\nMaybe your earring is under the table.\tPeut-être votre boucle d'oreille se trouve-t-elle sous la table.\nMoney does not always bring happiness.\tL'argent n'amène pas toujours le bonheur.\nMoney doesn't grow on trees, you know.\tL'argent ne pousse pas dans les arbres, tu sais.\nMost girls think that they are pretty.\tLa plupart des filles pensent qu'elles sont jolies.\nMost of the policemen lost their jobs.\tLa plupart des policiers perdirent leur emploi.\nMost people can't tell the difference.\tLa plupart des gens sont incapables de faire la différence.\nMost young people have a mobile phone.\tLa plupart des jeunes ont un téléphone portable.\nMost, if not all, people enjoy eating.\tLa plupart des gens, sinon tous, apprécient de manger.\nMother was very busy most of the time.\tMère était très occupée la plupart du temps.\nMy baby began crying, asking for milk.\tMon bébé s'est mis à pleurer, il voulait téter.\nMy birthday falls on Friday this year.\tMon anniversaire tombe un vendredi cette année.\nMy boy can't do addition properly yet.\tMon garçon ne sait pas encore faire correctement les additions.\nMy brother eats twice as much as I do.\tMon frère mange deux fois plus que moi.\nMy cousin is a little older than I am.\tMon cousin est un peu plus âgé que moi.\nMy daughter is to get married in June.\tMa fille va se marier en juin.\nMy father caught three fish yesterday.\tMon père a attrapé trois poissons hier.\nMy father doesn't drink too much sake.\tMon père ne boit pas trop de saké.\nMy father doesn't eat fruit that much.\tMon père ne mange pas tant que ça de fruits.\nMy father doesn't eat fruit that much.\tMon père ne mange pas beaucoup de fruits.\nMy father has been dead for ten years.\tCela fait dix ans que mon père est mort.\nMy father is always forgetting things.\tMon père oublie tout.\nMy father is suffering from influenza.\tMon père souffre de la grippe.\nMy father knows your mother very well.\tMon père connaît très bien ta mère.\nMy father will support me financially.\tMon père me soutient financièrement.\nMy friend said she bought a new watch.\tMon amie a dit qu'elle a acheté une nouvelle montre.\nMy glasses keep slipping down my nose.\tMes lunettes glissent constamment au bout de mon nez.\nMy grades have improved significantly.\tMes notes se sont améliorées de manière significative.\nMy grandfather is very hard to please.\tMon grand-père est tatillon.\nMy grandfather was wounded in the war.\tMon grand-père a été blessé à la guerre.\nMy grandparents had a house in Boston.\tMes grands-parents avaient une maison à Boston.\nMy idea is quite different from yours.\tMon idée est assez différente de la vôtre.\nMy idea is quite different from yours.\tMon idée est assez différente de la tienne.\nMy legs are getting better day by day.\tJour après jour, mes jambes vont de mieux en mieux.\nMy mother gets up early every morning.\tMa mère se lève tôt chaque matin.\nMy mother grows flowers in her garden.\tMa mère cultive des fleurs dans son jardin.\nMy mother has gone to the beauty shop.\tMa mère est partie au salon de beauté.\nMy mother has made me what I am today.\tMa mère a fait de moi ce que je suis aujourd'hui.\nMy mother said that she was all right.\tMa mère dit qu'elle allait bien.\nMy parents died when I was very young.\tMes parents sont décédés lorsque j'étais très jeune.\nMy premonition turned out to be right.\tMa prémonition s'avéra exacte.\nMy premonition turned out to be right.\tMa prémonition s'avéra.\nMy schedule is really tight right now.\tMon programme est vraiment chargé en ce moment.\nMy sister has her hair done each week.\tMa sœur se fait coiffer chaque semaine.\nMy uncle calls on me every three days.\tMon oncle me rend visite tous les trois jours.\nMy uncle died of cancer two years ago.\tMon oncle est mort d'un cancer il y a deux ans.\nMy uncle is an amateur cricket player.\tMon oncle est un joueur de cricket amateur.\nMy uncle is staying with us this week.\tMon oncle reste avec nous cette semaine.\nMy vision is getting worse these days.\tMa vue empire en ce moment.\nNapoleon was banished to Elba in 1814.\tNapoléon fut exilé à l'île d'Elbe en 1814.\nNeither of those books is interesting.\tAucun de ces ouvrages n'est intéressant.\nNext time it will be my turn to drive.\tLa prochaine fois ce sera à moi de conduire.\nNext, I'd like to sing a song I wrote.\tAprès, j'aimerais chanter une chanson de ma composition.\nNickel is a hard, bright silver metal.\tLe nickel est un métal dur, d'une lueur argentée.\nNo doubt he will pass the examination.\tIl sera sans doute reçu à l'examen.\nNo one lives in that building anymore.\tPersonne ne vit plus dans cet immeuble.\nNo students could answer the question.\tAucun étudiant ne pouvait répondre à la question.\nNobody was able to suggest a solution.\tPersonne n'était capable de proposer une solution.\nNone of their promises have been kept.\tAucune de leurs promesses n'ont été tenues.\nNot every question deserves an answer.\tToute question ne mérite pas de réponse.\nNot everybody was as lucky as we were.\tTout le monde ne fut pas aussi chanceux que nous le fûmes.\nNot knowing what to do, I did nothing.\tNe sachant pas quoi faire, je n'ai rien fait.\nNothing is more important than health.\tRien n'est plus important que la santé.\nOld people need something to live for.\tLes personnes âgées ont besoin de vivre pour quelqu'un.\nOnce a month, I go to the hairdresser.\tUne fois pas mois, je vais chez le coiffeur.\nOne of the aircraft's engines cut out.\tUn des moteurs de l'avion s'arrêta.\nOnly four horses competed in the race.\tIl n'y a que quatre chevaux à concourir dans cette course.\nOnly one person survived the accident.\tUne seule personne survécut à cet accident.\nOnly one person survived the accident.\tUne seule personne a survécu à l'accident.\nOpposition to the embargo was growing.\tL'opposition à l'embargo allait croissante.\nOur city is getting bigger and bigger.\tNotre ville devient de plus en plus grande.\nOur committee consists of ten members.\tNotre comité se compose de dix membres.\nOur feud traces back to our childhood.\tNotre inimitié remonte à notre enfance.\nOur hens laid a lot of eggs yesterday.\tNos poules ont pondu hier quantité d'œufs.\nOur teacher sometimes speaks too fast.\tNotre instituteur parle parfois trop vite.\nOur teacher sometimes speaks too fast.\tNotre institutrice parle parfois trop vite.\nParents were hopeful about the future.\tLes parents avaient bon espoir en l'avenir.\nPeople don't always behave rationally.\tLes gens ne se comportent pas toujours de façon rationnelle.\nPeople don't buy milk from this store.\tPersonne n'achète son lait dans ce magasin.\nPeople have started arming themselves.\tLes gens ont commencé à s'armer.\nPeople who break the law are punished.\tLes gens qui violent la loi sont punies.\nPick out the shirt that you like best.\tChoisissez la chemise qui vous plaît le mieux.\nPing pong is also called table tennis.\tLe ping-pong est aussi appelé tennis de table.\nPlease don't distract me from my work.\tNe me distrayez pas de mon travail, je vous prie.\nPlease don't distract me from my work.\tNe me distrais pas de mon travail, je te prie.\nPlease find a solution to the problem.\tTrouve une solution à ce problème, s'il te plaît.\nPlease find a solution to the problem.\tPrière de trouver une solution à ce problème.\nPlease find a solution to the problem.\tVeuillez trouver une solution à ce problème.\nPlease give me your permanent address.\tVeuillez me donner votre adresse permanente.\nPlease give me your permanent address.\tDonne-moi ton adresse permanente, s'il te plaît.\nPlease give my regards to your father.\tVeuillez présenter mes amitiés à votre père.\nPlease give my regards to your father.\tPrésente mes amitiés à ton père, s'il te plaît.\nPlease hand this in at the front desk.\tRemets ça à l'accueil, je te prie !\nPlease hand this in at the front desk.\tVeuillez remettre ça à l'accueil !\nPlease handle it with the utmost care.\tVeuillez le manipuler avec le plus grand soin.\nPlease handle it with the utmost care.\tJe te prie de la manipuler avec le plus grand soin.\nPlease look at these papers carefully.\tVeuillez regarder ces papiers avec soin.\nPlease make three copies of each page.\tMerci de faire trois copies de chaque page.\nPlease put your baggage on this scale.\tVeuillez placer vos bagages sur cette balance.\nPlease show me the way to the station.\tMontrez-moi le chemin vers la station s'il vous plait.\nPlease sign your name on the contract.\tVeuillez signer le contrat.\nPlease tell me what I should do first.\tDites-moi ce que je devrais faire en premier, s'il vous plaît.\nPlease tell me what I should do first.\tS'il te plaît, dis-moi ce que je devrais faire d'abord.\nPlease tell me what you know about it.\tVeuillez me dire ce que vous en savez.\nPoliticians are good at raising money.\tLes politiciens sont bons dans la collecte de fonds.\nPromise me you'll never do that again.\tPromets-moi de ne jamais refaire ça !\nPromise me you'll never do that again.\tPromettez-moi de ne jamais refaire ça !\nPut it where children can't get at it.\tMettez-le hors de portée des enfants.\nRecently I moved to another apartment.\tRécemment, j'ai emménagé dans un nouvel appartement.\nRigor mortis sets in soon after death.\tLa raideur cadavérique s'installe rapidement après la mort.\nSave up so that you can go to college.\tÉconomise afin de pouvoir aller à l'université.\nSea turtles are magnificent creatures.\tLes tortues de mer sont de magnifiques créatures.\nSentences begin with a capital letter.\tLes phrases commencent par une majuscule.\nShe accused him of having lied to her.\tElle l'accusa de lui avoir menti.\nShe accused him of having lied to her.\tElle l'a accusé de lui avoir menti.\nShe accused him of stealing her money.\tElle l'a accusé de lui avoir volé de l'argent.\nShe advised him not to buy a used car.\tElle lui déconseilla d'acheter une voiture d'occasion.\nShe advised him not to drink too much.\tElle lui a conseillé de ne pas trop boire.\nShe advised him not to drink too much.\tElle lui conseilla de ne pas trop boire.\nShe advised him not to drive too fast.\tElle lui a conseillé de ne pas conduire trop vite.\nShe advised him not to drive too fast.\tElle lui conseilla de ne pas conduire trop vite.\nShe advised him on what books to read.\tElle le conseilla sur les livres à lire.\nShe advised him on what books to read.\tElle l'a conseillé sur les livres à lire.\nShe advised him to go to the hospital.\tElle lui conseilla de se rendre à l'hôpital.\nShe advised him to go to the hospital.\tElle lui a conseillé de se rendre à l'hôpital.\nShe always says nice things about him.\tElle dit toujours des choses sympa à son sujet.\nShe always says nice things about him.\tElle dit toujours des choses agréables à son sujet.\nShe always takes care of her children.\tElle prend toujours soin de ses enfants.\nShe baked bread and cakes in the oven.\tElle a fait cuire du pain et des gâteaux dans le four.\nShe brags about how well she can cook.\tElle se vante de bien cuisiner.\nShe called up her mother on the phone.\tElle appela sa mère au téléphone.\nShe came back soon after five o'clock.\tElle est rentrée à cinq heures et quelques.\nShe came here as soon as she heard it.\tElle est venue ici dès qu'elle l'a entendu.\nShe changed her schedule to match his.\tElle changea son horaire pour se caler sur le sien.\nShe changed her schedule to match his.\tElle a changé son horaire pour se caler sur le sien.\nShe comes to see me from time to time.\tElle vient me voir de temps à autre.\nShe complained to him about the noise.\tElle se plaignit à lui à propos du bruit.\nShe complained to him about the noise.\tElle s'est plainte à lui à propos du bruit.\nShe could face a ten-year prison term.\tElle pourrait être passible d'une peine de dix ans d'emprisonnement.\nShe couldn't come because he was sick.\tElle ne put venir parce qu'il était malade.\nShe couldn't come because he was sick.\tElle n'a pas pu venir parce qu'il était malade.\nShe decided not to attend the meeting.\tElle décida de ne pas participer à la réunion.\nShe did nothing but cry all the while.\tElle n'a rien fait pendant tout ce temps si ce n'est pleurer.\nShe did nothing but cry all the while.\tTout ce temps, elle n'a rien fait d'autre que pleurer.\nShe didn't intend to let him kiss her.\tElle n'avait pas l'intention de le laisser l'embrasser.\nShe didn't say a word to me all night.\tElle ne me dit mot de toute la soirée.\nShe didn't say a word to me all night.\tElle ne m'a pas dit un mot de toute la soirée.\nShe didn't want him to leave the room.\tElle ne voulut pas qu'il quitte la pièce.\nShe didn't want him to leave the room.\tElle n'a pas voulu qu'il quitte la pièce.\nShe divided the cake into five pieces.\tElle partagea la tarte en cinq.\nShe divided the cake into five pieces.\tElle coupa le gâteau en cinq.\nShe eats lunch here from time to time.\tIl déjeune ici de temps en temps.\nShe expected him to solve the problem.\tElle espérait qu'il résolve le problème.\nShe explained to him why she was late.\tElle lui expliqua pourquoi elle était en retard.\nShe explained to him why she was late.\tElle lui a expliqué pourquoi elle était en retard.\nShe gets up the earliest in my family.\tC'est elle qui se lève le plus tôt, dans ma famille.\nShe goes to the bookstore once a week.\tElle va à la librairie une fois par semaine.\nShe had a headache from lack of sleep.\tElle avait un mal de tête dû au manque de sommeil.\nShe had her hat blown off by the wind.\tLe vent emporta son chapeau.\nShe had to choose her words carefully.\tElle dut choisir ses mots avec beaucoup de soin.\nShe has a special way of making bread.\tElle a une méthode particulière pour faire du pain.\nShe has always been a popular actress.\tElle a toujours été une actrice populaire.\nShe has never gone on a date with him.\tElle n'est jamais sortie avec lui.\nShe has not finished her homework yet.\tElle n'a pas encore fini ses devoirs.\nShe has totally changed her character.\tElle a totalement changé son personnage.\nShe helped the old man cross the road.\tElle a aidé le vieil homme à traverser la route.\nShe herself gave him something to eat.\tElle lui donna elle-même quelque chose à manger.\nShe hurt her elbow when she fell down.\tElle s'est fait mal au coude quand elle est tombée.\nShe introduced me to him at the party.\tElle me présenta à lui à la fête.\nShe is always fishing for compliments.\tElle est toujours en quête de compliments.\nShe is collecting material for a book.\tElle rassemble du matériel pour un livre.\nShe is familiar with Japanese history.\tElle connait bien l'histoire du Japon.\nShe is not rich enough to waste money.\tElle n'est pas assez riche pour gaspiller de l'argent.\nShe left here long before you arrived.\tElle est parti d'ici longtemps avant que tu arrives.\nShe likes no one and no one likes her.\tElle n'aime personne et personne ne l'aime.\nShe likes nobody and nobody likes her.\tElle n'aime personne et personne ne l'aime.\nShe lives a few blocks away from here.\tElle habite à quelques rues d'ici.\nShe looked as if she had seen a ghost.\tElle avait l'air d'avoir vu un fantôme.\nShe lost her temper and shouted at me.\tElle a perdu son calme et m'a crié dessus.\nShe made up her mind to go to college.\tElle s'est décidée à aller à l'université.\nShe made up her mind to go to college.\tElle s'est décidée à aller à la fac.\nShe may be cute, but I don't like her.\tElle est peut-être mignonne mais je ne l'apprécie pas.\nShe may realize later on what I meant.\tElle comprendra peut-être plus tard ce que j'ai voulu dire.\nShe naturally accepted the invitation.\tBien sûr elle a accepté l'invitation.\nShe nodded in response to my question.\tElle hocha de la tête en réponse à ma question.\nShe often goes to the movies with him.\tElle va souvent au cinéma avec lui.\nShe often goes to the movies with him.\tElle se rend souvent au cinéma avec lui.\nShe passed away peacefully last night.\tElle est morte paisiblement la nuit dernière.\nShe reads the newspaper every morning.\tElle lit le journal chaque matin.\nShe really hates this way of thinking.\tElle a vraiment horreur de cette façon de penser.\nShe removed the dishes from the table.\tElle débarrassait la table.\nShe sat next him with her eyes closed.\tElle était assise auprès de lui, les yeux fermés.\nShe seemed disappointed at the result.\tElle a semblé déçue par le résultat.\nShe smiled at the sight of her mother.\tElle a souri en voyant sa mère.\nShe spends as much money as she earns.\tElle dépense autant qu'elle gagne.\nShe spends her free time making dolls.\tElle passe son temps libre à faire des poupées.\nShe stacked the trays in the cupboard.\tElle empila les plateaux dans le placard.\nShe stood up and walked to the window.\tElle se dressa et s'avança vers la fenêtre.\nShe suffers from a contagious disease.\tElle souffre d'une maladie contagieuse.\nShe takes care of many elderly people.\tElle s'occupe de beaucoup de personnes âgées.\nShe told him that her father had died.\tElle lui annonça que son père était décédé.\nShe told him that her father had died.\tElle lui dit que son père était décédé.\nShe told him that her father had died.\tElle lui a annoncé que son père était décédé.\nShe told him that her father had died.\tElle lui a dit que son père était décédé.\nShe told him that she didn't love him.\tElle lui dit qu'elle ne l'aimait pas.\nShe told him that she didn't love him.\tElle lui a dit qu'elle ne l'aimait pas.\nShe told him that she didn't love him.\tElle lui annonça qu'elle ne l'aimait pas.\nShe told him that she didn't love him.\tElle lui a annoncé qu'elle ne l'aimait pas.\nShe told me that she wanted a pet dog.\tElle me dit qu'elle voulait un chien de compagnie.\nShe told the child to eat up the food.\tElle dit à l'enfant de manger toute la nourriture.\nShe took the book back to the library.\tElle rapporta le livre à la bibliothèque.\nShe took the book back to the library.\tElle a rapporté le livre à la bibliothèque.\nShe turned her old dress into a skirt.\tElle a transformé sa vieille robe en jupe.\nShe urged him to consider the request.\tElle l'exhorta à considérer la demande.\nShe urged him to consider the request.\tElle l'exhorta à examiner la demande.\nShe urged him to consider the request.\tElle l'exhorta à réfléchir à la demande.\nShe urged him to consider the request.\tElle l'a exhorté à considérer la demande.\nShe urged him to consider the request.\tElle l'a exhorté à réfléchir à la demande.\nShe urged him to consider the request.\tElle l'a exhorté à examiner la demande.\nShe walked arm in arm with her father.\tElle a marché, bras dessus bras dessous, avec son père.\nShe wanted to get married immediately.\tElle désirait se marier immédiatement.\nShe wanted to spare him embarrassment.\tElle voulait lui éviter l'embarras.\nShe was a Wakahata before she married.\tElle était une Wakahata avant de se marier.\nShe was a bundle of nerves last night.\tC'était une boule de nerfs hier soir.\nShe was advised by him on that matter.\tElle fut conseillée par lui dans cette affaire.\nShe was advised by him on that matter.\tElle a été conseillée par lui dans cette affaire.\nShe was advised by him to be punctual.\tIl lui conseilla d'être ponctuelle.\nShe was advised by him to be punctual.\tIl lui a conseillé d'être ponctuelle.\nShe was advised by him to be punctual.\tIl lui conseilla de se montrer ponctuelle.\nShe was advised by him to be punctual.\tIl lui a conseillé de se montrer ponctuelle.\nShe was advised by him to lose weight.\tIl lui conseilla de perdre du poids.\nShe was advised by him to lose weight.\tIl lui a conseillé de perdre du poids.\nShe was advised by him to work harder.\tIl lui conseilla de travailler plus dur.\nShe was advised by him to work harder.\tIl lui a conseillé de travailler plus dur.\nShe was brought up by her grandmother.\tElle a été élevée par sa grand-mère.\nShe was fond of talking about herself.\tElle adorait parler d'elle-même.\nShe was hungry enough to eat anything.\tElle avait suffisamment faim pour manger n'importe quoi.\nShe was impatient to know his address.\tElle était impatiente de connaître son adresse.\nShe was not interested in boys at all.\tElle n'était pas du tout intéressée par les garçons.\nShe was too proud to ask him for help.\tElle était trop fière pour lui demander de l'aide.\nShe was watching the dead leaves fall.\tElle regardait les feuilles mortes tomber.\nShe went to Germany to study medicine.\tElle est allée en Allemagne pour étudier la médecine.\nShe went to Italy to study literature.\tElle est allée en Italie dans le but d'étudier la littérature.\nShe went to the mall with her friends.\tElle s'est rendue au centre commercial avec ses amies.\nShe will be in New York for two weeks.\tElle sera à New York pendant deux semaines.\nShe will soon clear away these dishes.\tElle rangera bientôt cette vaisselle.\nShe wouldn't give him the time of day.\tElle refusait de lui donner l'heure.\nShe's about the same age as my sister.\tElle a à peu près le même âge que ma sœur.\nShe's about the same age as my sister.\tElle a environ le même âge que ma sœur.\nShe's busy now and can't speak to you.\tElle est occupée à l'heure qu'il est et ne peut pas te parler.\nShe's busy now and can't speak to you.\tElle est occupée à l'heure qu'il est et ne peut pas vous parler.\nSince he has ambitions, he works hard.\tComme il est ambitieux, il travaille dur.\nSince it was so hot, we went swimming.\tComme il faisait si chaud, nous allâmes nager.\nSince it was so hot, we went swimming.\tComme il faisait si chaud, nous sommes allés nager.\nSince it was so hot, we went swimming.\tComme il faisait si chaud, nous sommes allées nager.\nSince the bus was late, I took a taxi.\tComme le bus était en retard, je pris un taxi.\nSince the bus was late, I took a taxi.\tComme le bus était en retard, j'ai pris un taxi.\nSit down and take it easy for a while.\tAssieds-toi et détends-toi.\nSmoking is not permitted on the train.\tFumer est interdit à bord du train.\nSmoking is really bad for your health.\tFumer est vraiment mauvais pour la santé.\nSome children are swimming in the sea.\tQuelques enfants nagent dans la mer.\nSome parts of this city are very ugly.\tCertaines parties de cette ville sont vraiment très moches.\nSome people are working in the fields.\tDes gens travaillent aux champs.\nSomeone has taken my shoes by mistake.\tQuelqu'un a pris mes chaussures par erreur.\nSomeone has walked off with my pencil.\tQuelqu'un s'est carapaté avec mon crayon.\nSomeone should notify the next of kin.\tQuelqu'un devrait informer les proches parents.\nSomething is slowing down my computer.\tQuelque chose ralentit mon ordinateur.\nSomething is wrong with my typewriter.\tMa machine à écrire déconne.\nSometimes adults behave like children.\tLes adultes se comportent parfois comme des enfants.\nSooner or later his luck will run out.\tTôt ou tard, sa chance tournera.\nSooner or later, we'll know the truth.\tTôt ou tard nous saurons la vérité.\nSorry, I couldn't catch what you said.\tDésolé, je n'ai pas compris ce que vous avez dit.\nSpain has been a democracy since 1975.\tL'Espagne est une démocratie depuis 1975.\nSpanish is spoken in twenty countries.\tOn parle espagnol dans 20 pays.\nSpeak clearly and make yourself heard.\tParle distinctement et fais en sorte d'être entendu.\nSpeak louder so everyone can hear you.\tParle plus fort afin que tout le monde puisse t'entendre.\nStep forward and make room for others.\tAvance et fais place aux autres !\nStrange things happened in that house.\tDes choses étranges ont eu lieu dans cette maison.\nTake an umbrella. It's likely to rain.\tPrends un parapluie. Il va probablement pleuvoir.\nTake an umbrella. It's likely to rain.\tPrends un parapluie. Il est probable qu'il pleuve.\nTake care of yourself. Don't get sick.\tSoigne-toi. Ne tombe pas malade.\nTalking in the library is not allowed.\tIl est interdit de discuter dans la bibliothèque.\nTalking in the library is not allowed.\tIl est interdit de parler dans la bibliothèque.\nTaste this wine to see if you like it.\tGoûtez ce vin pour voir si vous l'aimez.\nTeenage boys love playing video games.\tLes adolescents de sexe masculin adorent jouer aux jeux vidéo.\nTell her that I am treating a patient.\tDis-lui que je suis en train de m'occuper d'un patient.\nTell me again how much money you have.\tDis-moi encore de combien d'argent tu disposes.\nTell me again how much money you have.\tDites-moi encore de combien d'argent vous disposez.\nTell me again when the concert begins.\tDis-moi encore à quelle heure commence le concert.\nTell me again when the concert begins.\tDites-moi encore à quelle heure commence le concert.\nTell me what I should be watching for.\tDonne-moi quelques conseils.\nTell me what I should be watching for.\tDis-moi ce que je devrais surveiller.\nTell me what you did on your holidays.\tDis-moi ce que tu as fait pendant tes vacances.\nThat accident happened near his house.\tCet accident se produisit près de chez lui.\nThat accident happened near his house.\tCet accident s'est produit près de chez lui.\nThat accident happened near his house.\tCet accident survint près de chez lui.\nThat accident happened near his house.\tCet accident est survenu près de chez lui.\nThat actually seems to be the problem.\tIl semble que ce soit effectivement le problème.\nThat child wants someone to play with.\tCe gosse veut quelqu'un pour jouer avec lui.\nThat dress seems to be very expensive.\tCette robe a l'air très chère.\nThat girl is more cute than beautiful.\tCette fille est davantage mignonne que belle.\nThat looks like it would be fun to do.\tÇa paraît amusant à faire.\nThat restaurant serves excellent food.\tCe restaurant sert une nourriture excellente.\nThat was, as it were, part of the job.\tCela faisait, pour ainsi dire, partie du contrat.\nThat's happened to me plenty of times.\tÇa m'est arrivé des tas de fois.\nThat's it. I've done everything I can.\tC'est tout. J'ai fait tout ce que je pouvais.\nThat's my younger sister's photograph.\tC'est la photographie de ma sœur cadette.\nThat's not exactly what I had in mind.\tCe n'est pas exactement ce que j'avais en tête.\nThat's not exactly what I had in mind.\tCe n'est pas exactement ce que j'avais à l'esprit.\nThat's not really important right now.\tCe n'est pas vraiment important à l'heure qu'il est.\nThat's not really important right now.\tCe n'est pas vraiment important à l'instant.\nThat's not the way it happened at all.\tÇa ne s'est pas du tout passé comme ça.\nThat's something of an understatement.\tL'expression est faible.\nThat's something of an understatement.\tC'est bien peu dire.\nThat's the only appliance that I have.\tC'est le seul appareil dont je dispose.\nThat's what you get for not listening.\tC'est ce que tu gagnes à ne pas écouter.\nThat's what you get for not listening.\tC'est ce que vous remportez à ne pas écouter.\nThat's when I decided to quit talking.\tC'est alors que j'ai décidé d'arrêter de discuter.\nThat's why I didn't want to come here.\tC'est pourquoi je n'ai pas voulu venir ici.\nThe Chinese are a hard-working people.\tLes Chinois forment un peuple très travailleur.\nThe Chinese are a hard-working people.\tLes Chinois sont de gros travailleurs.\nThe Chinese are a hard-working people.\tLe peuple chinois est très travailleur.\nThe Germans are in favor of austerity.\tLes Allemands sont en faveur de l'austérité.\nThe Great Lakes supply drinking water.\tLes Grands Lacs fournissent de l'eau potable.\nThe Japanese economy is in depression.\tL'économie japonaise est en récession.\nThe airplane took off ten minutes ago.\tL'avion a décollé il y a dix minutes.\nThe answer was staring me in the face.\tJ'avais la solution sous le nez.\nThe apricot trees are in full blossom.\tLes abricotiers sont tout en fleurs.\nThe apricot trees are in full blossom.\tLes abricotiers ont fleuri.\nThe architect achieved worldwide fame.\tL'architecte accéda à une renommée mondiale.\nThe baby in the cradle is very pretty.\tLe bébé dans le berceau est très mignon.\nThe bloody European conflict was over.\tLe sanglant conflit européen était terminé.\nThe book is now ready for publication.\tLe livre est maintenant prêt pour la publication.\nThe boy carved his name into the tree.\tLe garçon a gravé son nom sur l'arbre.\nThe boy standing over there is my son.\tLe garçon debout de ce côté est mon fils.\nThe boys in the village laughed at me.\tLes garçons du village se moquèrent de moi.\nThe boys in the village laughed at me.\tLes garçons du village se sont moqués de moi.\nThe boys were as nervous as the girls.\tLes garçons étaient aussi nerveux que les filles.\nThe buildings shook in the earthquake.\tLes bâtiments furent secoués lors du tremblement de terre.\nThe bus stopped to pick up passengers.\tLe bus s'arrêta pour prendre des passagers.\nThe bus stopped to pick up passengers.\tLe car s'arrêta pour prendre des passagers.\nThe bus stopped to pick up passengers.\tLe bus s'arrêta prendre des passagers.\nThe bus stopped to pick up passengers.\tLe car s'arrêta prendre des passagers.\nThe butcher cut up the calf's carcass.\tLe boucher dépeça la carcasse du veau.\nThe button on your coat is coming off.\tLe bouton de ton manteau se détache.\nThe ceremony will take place tomorrow.\tLa cérémonie aura lieu demain.\nThe cherry blossoms are at their best.\tC'est maintenant la meilleure période pour voir les fleurs de cerisiers.\nThe cherry blossoms are at their best.\tC'est la meilleure période pour voir les cerisiers en fleurs.\nThe cherry blossoms are in full bloom.\tLes bourgeons de cerisiers sont en pleine floraison.\nThe children ran toward the classroom.\tLes enfants courent vers la classe.\nThe coffin was loaded into the hearse.\tLe cercueil fut chargé dans le corbillard.\nThe college accepted him as a student.\tL'école l'accepta comme étudiant.\nThe committee members are all present.\tLes membres du comité sont tous présents.\nThe committee members are all present.\tLes membres du comité sont toutes présentes.\nThe company wants to employ 20 people.\tL'entreprise veut employer vingt personnes.\nThe conference went according to plan.\tLa conférence se déroula comme prévu.\nThe couple broke off their engagement.\tLe couple rompit ses fiançailles.\nThe couple broke off their engagement.\tLe couple a rompu leurs fiançailles.\nThe couple decided to adopt an orphan.\tLe couple décida d'adopter un orphelin.\nThe death penalty should be abolished.\tLa peine de mort devrait être abolie.\nThe door is open. I'll go and shut it.\tLa porte est ouverte. J'y vais pour la fermer.\nThe dress in the window caught my eye.\tLa robe dans la vitrine m'a accroché l'œil.\nThe earth is far bigger than the moon.\tLa Terre est beaucoup plus grande que la Lune.\nThe elevator seems to be out of order.\tL'ascenseur semble être en panne.\nThe enemy destroyed many of our ships.\tL'ennemi détruisit beaucoup de nos navires.\nThe family seemed to be under a curse.\tLa famille semblait frappée d'une malédiction.\nThe farmer sowed his field with wheat.\tL'agriculteur a semé son champ de blé.\nThe firm has its head office in Osaka.\tLa compagnie a son siège social à Osaka.\nThe flowers in the vase are beautiful.\tLes fleurs, dans le vase, sont belles.\nThe food was not fit for man or beast.\tCette nourriture n'était faite ni pour les humains, ni pour les animaux.\nThe garden was full of yellow flowers.\tLe jardin était plein de fleurs jaunes.\nThe girl is skillful with her fingers.\tLa fille est adroite de ses doigts.\nThe girl is skillful with her fingers.\tCette fille est adroite de ses doigts.\nThe girl was afraid of her own shadow.\tLa fille avait peur de son ombre.\nThe governor ordered an investigation.\tLe gouverneur ordonna une enquête.\nThe horse stopped and refused to move.\tLe cheval s'arrêta et refusa de bouger.\nThe house with the green roof is mine.\tLa maison avec le toit vert c'est la mienne.\nThe ice melted into a puddle of water.\tLa glace a fondu et s'est transformée en une flaque d'eau.\nThe ice will crack beneath our weight.\tLa glace va craquer sous notre poids.\nThe island is a paradise for children.\tL'île est un paradis pour les enfants.\nThe laborers formed a human barricade.\tLes travailleurs formèrent une chaîne humaine.\nThe lake supplies the city with water.\tLe lac fournit la ville en eau.\nThe lawyers argued the case for hours.\tLes avocats débattirent du cas des heures durant.\nThe life span of a butterfly is short.\tLa durée de vie d'un papillon est courte.\nThe lovers exchanged numerous letters.\tLes amoureux échangèrent de nombreuses lettres.\nThe lovers exchanged numerous letters.\tLes amants échangèrent de nombreuses lettres.\nThe lovers exchanged numerous letters.\tLes amoureux ont échangé de nombreuses lettres.\nThe lovers exchanged numerous letters.\tLes amants ont échangé de nombreuses lettres.\nThe lovers exchanged numerous letters.\tLes amantes ont échangé de nombreuses lettres.\nThe lovers exchanged numerous letters.\tLes amoureuses ont échangé de nombreuses lettres.\nThe lovers exchanged numerous letters.\tLes amantes échangèrent de nombreuses lettres.\nThe machine operates around the clock.\tLa machine tourne en continu.\nThe main idea in his speech was unity.\tL'idée maîtresse de son discours était l'unité.\nThe mayor denied having taken a bribe.\tLe maire a nié avoir reçu un pot-de-vin.\nThe meaning of this letter is unclear.\tLe sens de cette lettre est obscur.\nThe men's room is on the second floor.\tLes toilettes des messieurs se situent au premier étage.\nThe mere sight of a dog frightens him.\tLe simple fait de voir un chien lui fait peur.\nThe more you study, the more you know.\tPlus tu étudies, plus tu sais.\nThe more you study, the more you know.\tPlus vous étudiez, plus vous savez.\nThe new boss runs a really tight ship.\tLe nouveau patron gère vraiment efficacement la boîte.\nThe next station is where you get off.\tLa prochaine gare est celle où tu descends.\nThe next station is where you get off.\tLa prochaine gare est celle où vous descendez.\nThe old man tripped over his own feet.\tLe vieil homme s'est fait un croche-patte à lui-même.\nThe old man tripped over his own feet.\tLe vieil homme a trébuché.\nThe pain was more than he could stand.\tLa douleur lui était insupportable.\nThe parcel weighs more than one pound.\tLe colis pèse plus d'une livre.\nThe park is in the center of the city.\tLe parc se trouve au centre-ville.\nThe park is in the center of the city.\tLe parc se situe au centre-ville.\nThe path zigzagged up the steep slope.\tLe chemin faisait des zigzags le long de la pente raide.\nThe path zigzagged up the steep slope.\tLe chemin zigzaguait le long de la pente raide.\nThe plane was late due to bad weather.\tL'avion était en retard en raison du mauvais temps.\nThe police are looking for the robber.\tLa police est à la recherche du voleur.\nThe police are looking for the robber.\tLa police cherche le voleur.\nThe police didn't book Tom for murder.\tLa police n'a pas poursuivi Tom pour meurtre.\nThe police recovered the stolen money.\tLa police a récupéré l'argent volé.\nThe police set out to solve the crime.\tLa police s'attela à la résolution du crime.\nThe poor child was born deaf and dumb.\tLe pauvre enfant était né sourd-muet.\nThe post office is the brown building.\tLe bureau de poste est le bâtiment marron.\nThe president wanted immediate action.\tLe Président voulait une action immédiate.\nThe price of this camera is very high.\tLe prix de cet appareil photo est très élevé.\nThe princess lay with her eyes closed.\tLa princesse est allongée, les yeux clos.\nThe prize will go to the best student.\tLe prix ira au meilleur élève.\nThe problem is how to raise the funds.\tLa question est de savoir comment réunir les fonds.\nThe restaurant is on the ground floor.\tLe restaurant se situe au rez-de-chaussée.\nThe ring was not to be found anywhere.\tOn ne trouvait la bague nulle part.\nThe ring was not to be found anywhere.\tNulle part on ne trouvait la bague.\nThe robber aimed his gun at the clerk.\tLe voleur pointait son arme sur l'employé.\nThe ship was flying the American flag.\tCe bateau arborait le pavillon américain.\nThe ship was flying the American flag.\tLe navire arborait le pavillon étatsunien.\nThe shop was closed when I went there.\tLe magasin était fermé quand j'y suis allé.\nThe sidewalks were wet after the rain.\tLes trottoirs étaient mouillés après la pluie.\nThe snow melted away when spring came.\tLa neige fondit quand arriva le printemps.\nThe soldiers were guarding the bridge.\tLes soldats gardaient le pont.\nThe spectators cheered the players on.\tLes spectateurs encouragèrent les joueurs.\nThe storm prevented us from going out.\tLa tempête nous empêcha de sortir.\nThe street was bustling with shoppers.\tLa rue grouillait de gens faisant leurs courses.\nThe streets of New York are very wide.\tLes rues de New York sont très larges.\nThe student made an irrelevant remark.\tL'étudiant fit une remarque hors de propos.\nThe student made an irrelevant remark.\tL'étudiante fit une remarque hors de propos.\nThe students could not give an answer.\tLes étudiants ne purent donner une réponse.\nThe sun sank slowly below the horizon.\tLe soleil disparut lentement sous l'horizon.\nThe suspect was innocent of the crime.\tLe suspect était innocent du crime.\nThe tall man looked at Tom and smiled.\tLe grand homme regarda Tom et sourit.\nThe tea is too strong. Add some water.\tLe thé est trop fort. Ajoute un peu d'eau.\nThe teacher welcomed the new students.\tLe professeur a accueilli les nouveaux élèves.\nThe thief snuck in through the window.\tLe voleur s'est introduit par la fenêtre.\nThe thief stubbed his toe on the door.\tLe voleur se cogna l'orteil contre la porte.\nThe tower leaned slightly to the left.\tLa tour s'inclinait un peu vers la gauche.\nThe town has changed a lot since then.\tLa ville a beaucoup changé depuis lors.\nThe town has changed a lot since then.\tLa ville a depuis lors beaucoup changé.\nThe town was defended by a large army.\tLa ville était défendue par une grande armée.\nThe train was ten minutes behind time.\tLe train était en retard de 10 minutes.\nThe trip will take at least five days.\tLe voyage prendra au moins cinq jours.\nThe trouble is that it costs too much.\tLe problème est que cela coûte trop cher.\nThe two poems express human suffering.\tLes deux poèmes expriment la souffrance humaine.\nThe two sisters lived very peacefully.\tLes deux sœurs vivaient très tranquillement.\nThe value of the dollar began to drop.\tLa valeur du dollar commença à chuter.\nThe water in this river is very clean.\tL'eau de cette rivière est très propre.\nThe weather couldn't have been better.\tLe temps n'aurait pu être meilleur.\nThe weather has been good until today.\tLa météo était bonne jusqu'à aujourd'hui.\nThe work must be finished before noon.\tLe travail doit être terminé avant midi.\nThe world economy is in recession now.\tL'économie mondiale est maintenant en récession.\nTheir equipment is extremely advanced.\tLeur équipement est extrêmement avancé.\nTheir names were crossed off the list.\tLeurs noms furent rayés de la liste.\nThere are few books without misprints.\tIl y a peu de livres sans coquilles.\nThere are few men who don't know that.\tIl y a peu d'hommes qui ne savent pas ça.\nThere are few mistakes in your report.\tIl n'y avait que peu d'erreurs dans ton rapport.\nThere are lots of animals in the park.\tIl y a de nombreux animaux dans le parc.\nThere are no new messages in my inbox.\tIl n'y a pas de nouveaux messages dans ma boîte de réception.\nThere are several forms of government.\tIl y a plusieurs formes de gouvernement.\nThere are some things money can't buy.\tIl y a des choses que l'argent ne peut pas acheter.\nThere are still a lot of things to do.\tIl y a encore de nombreuses choses à faire.\nThere are too many people in the park.\tIl y a trop de monde dans le parc.\nThere is a lot of crime in big cities.\tIl y a beaucoup de crime dans les grandes villes.\nThere is a lot of crime in big cities.\tIl y a beaucoup de crime dans les grandes agglomérations.\nThere is a traffic jam on the highway.\tIl y a un embouteillage sur l'autoroute.\nThere is an urgent need for new ideas.\tOn a un besoin urgent de nouvelles idées.\nThere is no advantage in staying here.\tIl n'y a aucun intérêt à rester ici.\nThere is no need for you to stay here.\tTu n'es pas obligé de rester ici.\nThere isn't much furniture in my room.\tIl n'y a pas beaucoup de meubles dans ma chambre.\nThere must be a better way to do this.\tIl doit y avoir une meilleure façon de faire cela.\nThere was a big gold star on the door.\tIl y avait une grosse étoile en or sur la porte.\nThere was almost no color in his face.\tIl n'y avait presque plus de couleur sur son visage.\nThere was nothing I could do about it.\tIl n'y avait rien que je pouvais faire à ce sujet.\nThere was nothing I could do about it.\tIl n'y avait rien que je pouvais y faire.\nThere was nothing you could have done.\tIl n'y avait rien que vous eussiez pu faire.\nThere was nothing you could have done.\tIl n'y avait rien que tu eusses pu faire.\nThere was steady economic improvement.\tIl y avait une solide amélioration économique.\nThere were a few children in the room.\tIl y avait quelques enfants dans la salle.\nThere were a lot of murders last year.\tIl y a eu de nombreux meurtres, l'année dernière.\nThere were a lot of murders last year.\tIl y a eu de nombreux meurtres, l'année passée.\nThere were fifty entries for the race.\tIl y avait 50 participants pour la course.\nThere were no computers in the office.\tIl n'y avait pas d'ordinateurs au bureau.\nThere weren't any roses in the garden.\tIl n'y avait aucune rose dans le jardin.\nThere's a good chance that he'll come.\tIl y a une bonne chance qu'il vienne.\nThere's almost no water in the bucket.\tIl n'y a presque pas d'eau dans le seau.\nThere's no membership fee for joining.\tIl n'y a pas de frais d'adhésion pour devenir membre.\nThere's no need to go to school today.\tIl n'y a pas besoin d'aller à l'école aujourd'hui.\nThere's no reason to change our plans.\tIl n'y a aucune raison de changer nos plans.\nThere's no such thing as a free lunch.\tOn ne mange pas à l'œil.\nThere's no such thing as a free lunch.\tIl n'y a rien de gratuit.\nThere's no telling what he'll do next.\tPersonne ne sait ce qu'il fera ensuite.\nThere's no use crying over spilt milk.\tIl ne sert à rien de pleurer sur le lait renversé.\nThere's nobody on this ship except us.\tIl n'y a personne sur ce bateau, à part nous.\nThere's not enough food for all of us.\tIl n'y a pas assez de nourriture pour nous tous.\nThere's not enough food for all of us.\tIl n'y a pas assez de nourriture pour nous toutes.\nThere's not enough room for everybody.\tIl n'y a pas assez de place pour tout le monde.\nThere's nothing surprising about that.\tIl n'y a rien de surprenant à cela.\nThere's really nothing more we can do.\tIl n'y a vraiment rien de plus que nous pouvons faire.\nThere's somebody coming up the stairs.\tQuelqu'un est en train de grimper l'escalier.\nThere's something funny going on here.\tIl y a quelque chose de bizarre qui se passe ici.\nThere's still some room in the closet.\tIl y a encore un peu de place dans le placard.\nThese books and clothes are all yours.\tTous ces livres et vêtements sont à toi.\nThese diamonds come from South Africa.\tCes diamants viennent d'Afrique du Sud.\nThese walls aren't exactly soundproof.\tCes cloisons ne sont pas vraiment insonorisées.\nThey agreed to elect him as president.\tIls s'accordèrent pour l'élire président.\nThey apologized for the inconvenience.\tIls se sont excusés pour le désagrément.\nThey are satisfied with the new house.\tIls sont satisfaits de la nouvelle maison.\nThey are very interested in astronomy.\tIls s'intéressent beaucoup à l'astronomie.\nThey are very interested in astronomy.\tIls sont très intéressés par l'astronomie.\nThey call each other almost every day.\tElles se téléphonent presque tous les jours.\nThey cheated the workers out of money.\tIls ont extorqué de l'argent aux travailleurs.\nThey concluded that he had told a lie.\tIls arrivèrent à la conclusion qu'il avait menti.\nThey don't have to go to school today.\tIls n'ont pas besoin d'aller à l'école aujourd'hui.\nThey don't have to go to school today.\tElles n'ont pas besoin d'aller à l'école aujourd'hui.\nThey don't make 'em like they used to.\tIls ne les font plus ainsi qu'ils les faisaient.\nThey don't make 'em like they used to.\tElles ne les font plus ainsi qu'elles les faisaient.\nThey entered into a heated discussion.\tIls sont entrés dans une discussion animée.\nThey entered into a heated discussion.\tElles sont entrées dans une discussion animée.\nThey had their arms around each other.\tIls avaient les bras l'un autour de l'autre.\nThey have been married for four years.\tIls sont mariés depuis 4 ans.\nThey have four classes in the morning.\tIls ont quatre cours le matin.\nThey have to live on his small income.\tIls doivent vivre de son maigre revenu.\nThey just want someone they can blame.\tIls veulent juste quelqu'un à blâmer.\nThey just want someone they can blame.\tElles veulent juste quelqu'un à blâmer.\nThey just want someone they can blame.\tIls veulent juste quelqu'un qu'ils puissent blâmer.\nThey just want someone they can blame.\tElles veulent juste quelqu'un qu'elles puissent blâmer.\nThey lived on farms or in small towns.\tIls vivaient dans des fermes ou de petits villages.\nThey looked up to him as their leader.\tIls le considéraient comme leur guide.\nThey made their way through the crowd.\tIls se sont frayé un chemin à travers la foule.\nThey met for the first time in London.\tIls se rencontrèrent pour la première fois à Londres.\nThey met for the first time in London.\tIls se sont rencontrés pour la première fois à Londres.\nThey met for the first time in London.\tElles se rencontrèrent pour la première fois à Londres.\nThey met for the first time in London.\tElles se sont rencontrées pour la première fois à Londres.\nThey painted the window frames yellow.\tElles peignirent les cadres des fenêtres en jaune.\nThey saw little need for labor unions.\tIls ne virent que peu d'intérêt à des syndicats.\nThey seldom, if ever, speak in French.\tIls parlent rarement, voire jamais, en français.\nThey seldom, if ever, speak in French.\tIls parlent rarement français, si tant est qu'ils le fassent.\nThey stayed at a very expensive hotel.\tIls ont séjourné dans un hôtel très onéreux.\nThey talked about it on the telephone.\tIls en ont parlé au téléphone\nThey talked about it on the telephone.\tIls en discutèrent au téléphone.\nThey went into the woods for a picnic.\tIls sont allés dans les bois pique-niquer.\nThey went to the public swimming pool.\tIls sont allés à la piscine publique.\nThey went to the public swimming pool.\tElles sont allées à la piscine publique.\nThey went to the zoo by bus yesterday.\tHier ils sont allés au zoo en bus.\nThey were left to fend for themselves.\tIls ont été laissés livrés à eux-mêmes.\nThey were members of the middle class.\tIls étaient membres de la classe moyenne.\nThey were members of the middle class.\tC'étaient eux qui étaient membres de la classe moyenne.\nThey were members of the middle class.\tC'étaient elles qui étaient membres de la classe moyenne.\nThey were scattered in all directions.\tIls furent éparpillés dans toutes les directions.\nThey're really good at making clothes.\tIls sont vraiment bons dans la confection de vêtements.\nThey've defused the bomb successfully.\tIls ont désamorcé la bombe avec succès.\nThings were never the same after that.\tLes choses ne furent jamais plus les mêmes, après ça.\nThirteen passengers were hospitalized.\tTreize passagers ont été hospitalisés.\nThirteen passengers were hospitalized.\tTreize passagères furent hospitalisées.\nThis bag is both good and inexpensive.\tCe sac est à la fois bien et cher.\nThis bird can imitate the human voice.\tCet oiseau peut imiter la voix humaine.\nThis book is geared towards beginners.\tCe livre s'adresse aux débutants.\nThis book is only published in French.\tCe livre est seulement publié en français.\nThis book is very popular among women.\tCe livre est très populaire auprès des femmes.\nThis book isn't as heavy as that book.\tCe livre-ci n'est pas aussi lourd que ce livre-là.\nThis box contains assorted chocolates.\tCette boîte contient un assortiment de chocolats.\nThis box is too heavy for me to carry.\tCette caisse est trop lourde pour que je la porte.\nThis bus will take you to the station.\tCe bus t'emmènera à la gare.\nThis cloth is really smooth and silky.\tCe tissu est vraiment doux et soyeux.\nThis custom dates from the Edo period.\tCette coutume remonte à la période Edo.\nThis dictionary is as useful as yours.\tCe dictionnaire est aussi utile que le tien.\nThis doesn't make much sense, does it?\tÇa n'a pas beaucoup de sens, si ?\nThis gate allows access to the garden.\tCette porte permet d'accéder au jardin.\nThis hat is a little too small for me.\tCe chapeau est un peu trop petit pour moi.\nThis hut is in danger of falling down.\tCette cabane menace de s'effondrer.\nThis information checks out all right.\tL'information a été validée.\nThis is Tom's third trip to Australia.\tC'est le troisième voyage de Tom en Australie.\nThis is a doghouse that I made myself.\tC'est une niche que j'ai confectionnée moi-même.\nThis is an effective remedy for crime.\tC'est un remède efficace contre le crime.\nThis is different from what I thought.\tC'est différent de ce que je pensais.\nThis is the best restaurant I know of.\tC'est le meilleur restaurant que je connaisse.\nThis is the key that opened that door.\tVoici la clef qui a ouvert cette porte.\nThis is the lady I spoke of yesterday.\tC'est la dame dont j'ai parlé hier.\nThis is the lady who wants to see you.\tC'est la dame qui veut vous voir.\nThis is the lady who wants to see you.\tC'est la dame qui veut te voir.\nThis is the man I've been waiting for.\tC'est l'homme que j'attendais.\nThis is the perfect Father's Day gift.\tC'est le cadeau parfait pour la fête des Pères.\nThis is the perfect Mother's Day gift.\tC'est le cadeau parfait pour la fête des Mères.\nThis is the picture that Mary painted.\tC'est le tableau que Mary a peint.\nThis is the village where he was born.\tC'est le village où il est né.\nThis is the worst book I've ever read.\tC'est le plus mauvais de tous les livres que j'ai lus jusqu'à maintenant.\nThis is what I've always wanted to do.\tC'est ce que j'ai toujours voulu faire.\nThis job will call for a lot of money.\tCe travail nécessitera beaucoup d'argent.\nThis just might come in handy someday.\tÇa pourrait justement se révéler utile, un jour.\nThis may be research my secretary did.\tIl s'agit peut-être de travail de recherche qu'a conduit ma secrétaire.\nThis may be research my secretary did.\tIl s'agit peut-être de travail de recherche qu'a conduit mon secrétaire.\nThis novel is difficult to understand.\tCe roman est difficile à comprendre.\nThis offer is available for five days.\tCette offre est valable cinq jours.\nThis offer is available for five days.\tCette offre vaut pour cinq jours.\nThis passport is valid for five years.\tCe passeport est valide pendant cinq ans.\nThis place gives me a really bad vibe.\tCet endroit me fait une très mauvaise impression.\nThis question is too difficult for me.\tCette question est trop difficile pour moi.\nThis sentence is in the present tense.\tCette phrase est au présent.\nThis smartphone uses an ARM processor.\tCe téléphone intelligent utilise un processeur ARM.\nThis ticket is valid for three months.\tCe ticket est valable pendant trois mois.\nThis town is increasing in population.\tLa population de cette ville est en pleine augmentation.\nThis town is increasing in population.\tLa population de cette ville augmente.\nThis will be a very dangerous mission.\tCe sera une mission très dangereuse.\nTo be honest, I don't like you at all.\tPour être honnête, je ne t'aime pas du tout.\nTo my astonishment, my money was gone.\tÀ ma stupéfaction, mon argent avait disparu.\nTo my surprise, they ate the meat raw.\tÀ ma surprise, ils mangeaient la viande crue.\nTo tell the truth, I didn't notice it.\tÀ dire vrai, je ne l'ai pas remarqué.\nTo tell the truth, I didn't notice it.\tÀ vrai dire, je ne l'ai pas remarqué.\nToday you can eat as much as you want.\tAujourd'hui, tu peux manger autant que tu veux.\nTom acknowledges that he was defeated.\tThomas admet qu'il a été battu.\nTom acknowledges that he was defeated.\tThomas reconnaît qu'il a été défait.\nTom advertised his saxophone for sale.\tTom a mis une annonce pour vendre son saxophone.\nTom and I went there on our honeymoon.\tTom et moi sommes allés là-bas pour notre lune de miel.\nTom and Mary are playing a video game.\tTom et Marie jouent à un jeu vidéo.\nTom and Mary are unbeatable at tennis.\tTom et Mary sont imbattables au tennis.\nTom and Mary came to an understanding.\tTom et Mary sont parvenus à une entente.\nTom and Mary look very happy together.\tTom et Marie ont l'air très heureux ensemble.\nTom and Mary went on a shopping spree.\tTom et Marie ont fait une virée shopping.\nTom and his wife have just had a baby.\tTom et sa femme viennent d'avoir un bébé.\nTom asked Mary to lend him some money.\tTom demanda à Marie de lui prêter un peu d'argent.\nTom asked Mary to lend him some money.\tTom a demandé à Marie de lui prêter un peu d'argent.\nTom bought Mary an expensive umbrella.\tTom a acheté à Mary un parapluie cher.\nTom bought a present for his daughter.\tTom a acheté un cadeau pour sa fille.\nTom can't even write his own name yet.\tTom ne peut même pas encore écrire son propre nom.\nTom could do nothing but sit and wait.\tTom ne pouvait que rester là à attendre.\nTom couldn't answer the last question.\tTom ne pouvait pas répondre à la dernière question.\nTom couldn't tell Mary what he'd seen.\tTom ne pouvait pas dire à Mary ce qu'il avait vu.\nTom didn't calm down until much later.\tTom s'est calmé que bien plus tard.\nTom didn't go to the lake last summer.\tTom n'est pas allé au lac, l'été dernier.\nTom didn't know where to park his car.\tTom ne savait pas où garer sa voiture.\nTom didn't like the concert very much.\tTom n'a pas beaucoup aimé le concert.\nTom didn't like the concert very much.\tTom n'a pas beaucoup apprécié le concert.\nTom didn't offer me anything to drink.\tTom ne m'a rien offert à boire.\nTom didn't show up for work yesterday.\tTom n'est pas venu travailler hier.\nTom doesn't dress like everybody else.\tTom ne s'habille pas comme tout le monde.\nTom doesn't know how much Mary weighs.\tTom ne sait pas combien Mary pèse.\nTom doesn't know how to tie his shoes.\tTom ne sait pas lacer ses chaussures.\nTom doesn't know much about Indonesia.\tTom ne sait pas grand-chose sur l'Indonésie.\nTom doesn't know what this is. Do you?\tTom ne sait pas ce que c'est. Et toi ?\nTom doesn't know who the president is.\tTom ne sait pas qui est le président.\nTom doesn't look particularly pleased.\tTom n'a pas l'air trop content.\nTom doesn't remember having said that.\tTom ne se souvient pas d'avoir dit ça.\nTom doesn't think it'll rain tomorrow.\tTom ne pense pas qu'il va pleuvoir demain.\nTom doesn't think it'll snow tomorrow.\tTom ne pense pas qu'il neigera demain.\nTom doesn't think that is a good idea.\tTom ne pense pas que ce soit une bonne idée.\nTom doesn't usually show his feelings.\tTom n'a pas l'habitude de montrer ses sentiments.\nTom doesn't want Mary to get involved.\tTom ne veut pas que Marie participe.\nTom doesn't want to see anybody today.\tTom ne veut voir personne aujourd'hui.\nTom filled out the application for me.\tTom a rempli le formulaire pour moi.\nTom gave Mary the first piece of cake.\tTom a donné la première part de gâteau à Mary.\nTom grew up in a working-class family.\tTom a grandi dans une famille ouvrière.\nTom had no choice but to quit his job.\tTom n'a pas eu d'autre choix que de quitter son travail.\nTom had some very unusual experiences.\tTom a eu des expériences très inhabituelles.\nTom happens to be very good at French.\tTom est en fait très bon en français.\nTom has a large closet in his bedroom.\tTom a une grande armoire dans sa chambre.\nTom has actually never been to Boston.\tTom n'a en fait jamais été à Boston.\nTom has actually never been to Boston.\tTom n'a en réalité jamais été à Boston.\nTom has already spoken to me about it.\tTom m'en a déjà parlé.\nTom has been absent since last Monday.\tTom est absent depuis lundi dernier.\nTom has been retired for twenty years.\tTom est retraité depuis vingt ans.\nTom has confidence in his own ability.\tTom a confiance dans sa capacité.\nTom has far more experience than Mary.\tTom a bien plus d'expérience que Mary.\nTom has lost a lot of weight recently.\tTom a perdu beaucoup de poids récemment.\nTom has never been absent from school.\tTom n'a jamais été absent de l'école.\nTom has never kissed anyone in public.\tTom n'a jamais embrassé quelqu'un publiquement.\nTom has shoulder-length hair dyed red.\tTom a des cheveux teints en rouge qui lui descendent jusqu'aux épaules.\nTom hasn't read the morning paper yet.\tTom n'a pas encore lu le journal du matin.\nTom hopes to visit Boston next summer.\tTom espère visiter Boston l'été prochain.\nTom is a professional baseball player.\tTom est un joueur de base-ball professionnel.\nTom is at the door. Please ask him in.\tTom est à la porte. S'il te plaît, dis-lui d'entrer.\nTom is going to do something about it.\tTom va faire quelque chose à ce sujet.\nTom is good at making paper airplanes.\tTom est doué pour fabriquer des avions en papier.\nTom is just trying to make ends meets.\tTom essaie juste de joindre les deux bouts.\nTom is now the star of a reality show.\tTom est maintenant la vedette d'une émission de télé-réalité.\nTom is sitting in the conference room.\tTom est assis dans la salle de conférence.\nTom is the captain of the soccer team.\tTom est le capitaine de l'équipe de foot.\nTom is the fastest runner on our team.\tTom est le coureur le plus rapide de notre équipe.\nTom is the one who doesn't understand.\tTom est celui qui ne comprend pas.\nTom is thinking about getting married.\tTom pense à se marier.\nTom isn't good at hiding his emotions.\tTom n'est pas doué pour cacher ses émotions.\nTom isn't good at hiding his emotions.\tTom ne sait pas dissimuler ses émotions.\nTom isn't much of a basketball player.\tTom n'est pas vraiment un joueur de basket.\nTom kept Mary waiting for a long time.\tTom fit patienter Mary pour un bon moment.\nTom kept Mary waiting for three hours.\tTom fit patienter Mary pendant trois heures.\nTom kissed Mary and then went to work.\tTom embrassa Mary puis alla travailler.\nTom knew what Mary was supposed to do.\tTom savait ce que Marie était supposée faire.\nTom knows he has no chance of winning.\tTom sait qu'il n'a aucune chance de gagner.\nTom knows he shouldn't have said that.\tTom sait qu'il n'aurait pas dû dire ça.\nTom may not come to our party tonight.\tIl se peut que Tom ne vienne pas à la fête ce soir.\nTom might not have a driver's license.\tIl se pourrait que Tom n'ait pas de permis de conduire.\nTom offered Mary a glass of champagne.\tTom offrit à Marie une coupe de champagne.\nTom often comes to see me on weekends.\tTom vient souvent me voir le week-end.\nTom played tennis with Mary yesterday.\tHier, Tom a joué au tennis avec Marie.\nTom probably should've studied harder.\tTom aurait probablement dû étudier plus sérieusement.\nTom probably thought I wasn't at home.\tTom a probablement pensé que je n'étais pas à la maison.\nTom promised to clean the living room.\tTom a promis de nettoyer le salon.\nTom rarely leaves the house on Monday.\tTom quitte rarement la maison le lundi.\nTom realized he had been unreasonable.\tTom réalisa qu'il avait été déraisonnable.\nTom really is a nice person, isn't he?\tTom est vraiment une personne sympathique, n'est-ce pas ?\nTom said he had a great time with you.\tTom a dit qu'il a passé un très bon moment avec toi.\nTom said he shot Mary in self-defense.\tTom a dit qu'il a tiré sur Marie en légitime défense.\nTom said he won three hundred dollars.\tTom a dit qu'il avait gagné trois-cents dollars.\nTom said that he didn't enjoy his job.\tTom a dit qu'il n'appréciait pas son travail.\nTom said that he feels like going out.\tTom dit qu'il a envie de faire une sortie.\nTom said that he was going to be late.\tTom a dit qu'il allait être en retard.\nTom says he will never go there again.\tTom dit qu'il ne s'y rendra plus jamais.\nTom says that he's too tired to study.\tTom dit qu'il est trop fatigué pour réviser.\nTom spends a lot of time on the beach.\tTom passe beaucoup de temps à la plage.\nTom suddenly realized he wasn't alone.\tTom réalisa soudain qu'il n'était pas seul.\nTom vehemently denied the accusations.\tTom a nié avec véhémence les accusations.\nTom was heartbroken when his dog died.\tTom a eu le cœur brisé quand son chien est mort.\nTom was the first one here, wasn't he?\tTom était le premier ici, n'est-ce pas ?\nTom was the one who took this picture.\tTom est celui qui a pris cette photo.\nTom was thinking of going to New York.\tTom pensait partir pour New York.\nTom washed the apple before he ate it.\tTom lava la pomme avant de la manger.\nTom washed the apple before he ate it.\tTom a lavé la pomme avant de la manger.\nTom went on a business trip last week.\tTom est allé en voyage d'affaires la semaine dernière.\nTom went outside to smoke a cigarette.\tTom sortit pour fumer une cigarette.\nTom went outside to smoke a cigarette.\tTom est sorti pour fumer une cigarette.\nTom whispered something in Mary's ear.\tTom a chuchoté quelque chose à l'oreille de Mary.\nTom would describe the house as small.\tTom décrirait la maison comme petite.\nTom wouldn't really do that, would he?\tTom ne ferait pas vraiment cela, n'est-ce pas ?\nTom's book was translated into French.\tLe livre de Tom a été traduit en français.\nTom's doctor told him to quit smoking.\tLe médecin de Tom lui a dit d'arrêter de fumer.\nTomorrow, I have plans to go to Tokyo.\tDemain, j'ai prévu de me rendre à Tokyo.\nTurn left at the second traffic light.\tTournez au deuxième feu à gauche !\nTurn left at the second traffic light.\tTourne au deuxième feu à gauche !\nTurn left at the second traffic light.\tTournez au second feu à gauche !\nTurn left at the second traffic light.\tTourne au second feu à gauche !\nTwelve people have walked on the moon.\tDouze personnes ont marché sur la Lune.\nUnexpected stuff happens all the time.\tDes trucs imprévus arrivent tout le temps.\nUnexpected stuff happens all the time.\tDes trucs imprévus se produisent tout le temps.\nWait until the light changes to green.\tAttendez jusqu'à ce que le feu passe au vert.\nWalking is a healthy form of exercise.\tMarcher est une forme d'exercice saine.\nWas he, in fact, guilty of wrongdoing?\tÉtait-il, en fait, coupable d'actes répréhensibles ?\nWas he, in fact, guilty of wrongdoing?\tFut-il, en fait, coupable d'actes répréhensibles ?\nWas there anything wrong with the car?\tY avait-il un problème avec cette voiture ?\nWasn't it supposed to snow last night?\tN'était-il pas supposé neiger, la nuit dernière ?\nWasn't it supposed to snow last night?\tN'était-il pas supposé neiger, la nuit passée ?\nWater consists of hydrogen and oxygen.\tL'oxygène et l'hydrogène forment l'eau.\nWater consists of hydrogen and oxygen.\tL'eau est composée d'oxygène et d'hydrogène.\nWater freezes at 0 degrees Centigrade.\tL'eau gèle à zéro degré Celsius.\nWater freezes at zero degrees Celsius.\tL'eau gèle à zéro degré Celsius.\nWe all wish for permanent world peace.\tNous souhaitons tous une paix mondiale permanente.\nWe almost got them where we want them.\tNous les avons presque amenés là où nous les voulons.\nWe almost got them where we want them.\tNous les avons presque amenées là où nous les voulons.\nWe are all convinced of his innocence.\tNous sommes tous convaincus de son innocence.\nWe are all convinced of his innocence.\tNous sommes toutes convaincues de son innocence.\nWe are decorating the conference room.\tNous sommes en train de décorer la salle de conférences.\nWe are hoping for your quick recovery.\tNous vous souhaitons un prompt rétablissement.\nWe are overfishing the world's oceans.\tNous sur-pêchons dans les océans du monde.\nWe ate cotton candy at the state fair.\tNous avons mangé de la barbe-à-papa à la foire régionale.\nWe ate until we couldn't eat any more.\tNous mangeâmes jusqu'à n'en plus pouvoir.\nWe can see the island in the distance.\tNous pouvons voir l'île au loin.\nWe can see the island in the distance.\tNous pouvons voir l'île dans le lointain.\nWe can't keep this up for much longer.\tNous ne pouvons pas continuer plus longtemps ainsi.\nWe chopped our way through the jungle.\tNous nous taillâmes un chemin à travers la jungle.\nWe could see the ship in the distance.\tNous pouvions voir le navire au loin.\nWe couldn't stop him from hitting her.\tNous ne pouvions pas l'arrêter de la frapper.\nWe do this kind of thing all the time.\tNous faisons ce genre de chose tout le temps.\nWe don't have a vacancy at the moment.\tNous n'avons pas de chambre libre en ce moment.\nWe don't want anyone asking questions.\tNous ne voulons pas que quiconque pose des questions.\nWe ended up not getting there on time.\tNous avons fini par ne pas y arriver à l'heure.\nWe finally have you where we want you.\tNous vous avons finalement mené là où nous vous voulons.\nWe finally have you where we want you.\tNous t'avons finalement mené là où nous te voulons.\nWe finally have you where we want you.\tNous vous avons finalement menée là où nous vous voulons.\nWe finally have you where we want you.\tNous vous avons finalement menés là où nous vous voulons.\nWe finally have you where we want you.\tNous vous avons finalement menées là où nous vous voulons.\nWe finally have you where we want you.\tNous t'avons finalement menée là où nous te voulons.\nWe got a little bored with each other.\tNous en eûmes assez l'un de l'autre.\nWe got involved in a traffic accident.\tNous avons été impliqué dans un accident de la route.\nWe had a slight difference of opinion.\tNous avions une légère différence d'opinion.\nWe had an unpleasant experience there.\tNous y eûmes une expérience désagréable.\nWe had an unpleasant experience there.\tNous y connûmes une expérience désagréable.\nWe had an unpleasant experience there.\tNous y avons eu une expérience désagréable.\nWe had to make the best of a bad deal.\tNous avons dû tirer le meilleur parti d'une mauvaise affaire.\nWe have a lot of earthquakes in Japan.\tIl y a beaucoup de tremblements de terre au Japon.\nWe have a lot of earthquakes in Japan.\tNous avons beaucoup de séismes au Japon.\nWe have ample time to catch our train.\tNous avons amplement le temps de prendre notre train.\nWe have had a lot of rain this summer.\tNous avons eu beaucoup de pluie, cet été.\nWe have had a lot of snow this winter.\tNous avons eu beaucoup de neige cet hiver.\nWe have never heard him sing the song.\tNous ne l'avons jamais entendu chanter la chanson.\nWe have no idea about his whereabouts.\tNous n'avons aucune idée d'où il se trouve.\nWe have no reason to change our plans.\tNous n'avons aucune raison de changer nos plans.\nWe have till tomorrow night to decide.\tNous avons jusqu'à demain soir pour décider.\nWe have to paint the bathroom ceiling.\tIl faut peindre le plafond de la salle de bains.\nWe have to take it one step at a time.\tNous devons faire un pas à la fois.\nWe have two unused rooms in our house.\tNous avons deux pièces inutilisées dans notre maison.\nWe haven't been able to get much help.\tNous n'avons pas pu obtenir beaucoup d'aide.\nWe haven't been paid for three months.\tNous n'avons pas été payés pendant trois mois.\nWe haven't known each other very long.\tNous ne nous connaissons pas depuis longtemps.\nWe haven't laid off any employees yet.\tNous n'avons encore licencié aucun employé.\nWe haven't seen each other since then.\tNous ne nous sommes pas vus depuis.\nWe introduced ourselves to each other.\tNous nous sommes présentés l'un l'autre.\nWe introduced ourselves to each other.\tNous nous sommes présentées l'une l'autre.\nWe introduced ourselves to each other.\tNous nous sommes présentés les uns aux autres.\nWe introduced ourselves to each other.\tNous nous sommes présentées les unes aux autres.\nWe lost sight of the man in the crowd.\tNous avons perdu l'homme de vue dans la foule.\nWe mustn't waste our energy resources.\tNous ne devons pas gaspiller nos réserves d'énergie.\nWe mustn't waste our energy resources.\tNous ne devons pas gaspiller nos ressources énergétiques.\nWe need a place to stay for the night.\tNous avons besoin d'un hébergement pour la nuit.\nWe need to be a little more efficient.\tNous devons être un peu plus efficace.\nWe never learned what happened or why.\tNous n'apprîmes jamais ce qui se produisit ni pourquoi.\nWe never learned what happened or why.\tNous n'avons jamais appris ce qui s'est produit ni pourquoi.\nWe ordered pink, but we received blue.\tNous en avons commandé un rose, mais nous avons reçu un bleu.\nWe ordered some new books from abroad.\tNous avons commandé des nouveaux livres de l'étranger.\nWe organized a farewell party for her.\tNous organisâmes une fête d'adieu pour elle.\nWe pitched the tent next to the river.\tNous plantâmes la tente près de la rivière.\nWe pitched the tent next to the river.\tNous avons planté la tente près de la rivière.\nWe played a lot of games at the party.\tOn a joué à de nombreux jeux à la fête.\nWe ran into each other at the airport.\tNous nous sommes rencontrés à l'aéroport.\nWe ran into each other at the station.\tNous sommes tombés l'un sur l'autre à la gare.\nWe saw the sun sink below the horizon.\tNous avons vu le soleil se coucher derrière l'horizon.\nWe sent out the invitations yesterday.\tNous avons envoyé les invitations hier.\nWe should know the result by Thursday.\tNous devrions connaître le résultat d'ici à jeudi.\nWe should take his youth into account.\tNous devrions tenir compte de sa jeunesse.\nWe should've warned Tom of the danger.\tNous aurions dû avertir Tom du danger.\nWe shouldn't leave anything to chance.\tNous ne devons rien laisser au hasard.\nWe spent a lot of time on our lessons.\tNous avons consacré beaucoup de temps à nos leçons.\nWe spent more money than was expected.\tOn a dépensé plus d'argent que prévu.\nWe spent more money than was expected.\tNous avons dépensé davantage d'argent que prévu.\nWe stayed home because it was raining.\tNous sommes restés à la maison parce qu'il pleuvait.\nWe think too much and feel too little.\tNous pensons trop et ressentons trop peu.\nWe thought his threat was only a joke.\tNous pensions que sa menace n'était qu'une plaisanterie.\nWe took a taxi so we wouldn't be late.\tNous prîmes un taxi pour ne pas être en retard.\nWe took a taxi so we wouldn't be late.\tNous avons pris un taxi pour ne pas être en retard.\nWe took strong measures to prevent it.\tNous avons pris des mesures fortes pour prévenir cela.\nWe waited in the park for a long time.\tNous avons attendu longtemps dans le parc.\nWe want to break off this negotiation.\tNous voulons mettre fin à cette négociation.\nWe want to protect this world we have.\tNous voulons protéger ce monde que nous avons.\nWe went to the station to see her off.\tNous sommes allés à la gare pour lui dire au revoir.\nWe went to the station to see her off.\tNous sommes allés à la gare pour lui faire nos adieux.\nWe were in danger of losing our lives.\tNous risquions nos vies.\nWe were not to blame for the accident.\tNous n'étions pas responsables de l'accident.\nWe were struck dumb with astonishment.\tNous étions sans voix d'étonnement.\nWe were tired out after our long walk.\tNous étions épuisés après notre longue marche.\nWe will begin the party when he comes.\tNous commencerons la fête quand il arrivera.\nWe'll get a keg of beer for the party.\tNous irons chercher une barrique de bière, pour la fête.\nWe'll have to make some tough choices.\tIl nous faudra faire des choix difficiles.\nWe'll have to make some tough choices.\tIl nous faudra faire certains choix difficiles.\nWe'll probably be away for a few days.\tNous serons probablement partis pour quelques jours.\nWe're going to go into the other room.\tOn va passer dans l'autre pièce.\nWe're just about finished for the day.\tNous avons presque fini pour aujourd'hui.\nWe've been invited to a costume party.\tNous avons été invitées à une fête costumée.\nWe've been invited to a costume party.\tNous avons été invités à une fête costumée.\nWe've got our own way of doing things.\tNous avons notre propre façon de faire les choses.\nWe've had a lot of storms this winter.\tNous avons eu de nombreux orages cet hiver.\nWe've heard enough of your complaints.\tOn en a marre de tes plaintes.\nWe've made plenty of money doing this.\tNous avons fait beaucoup d'argent en faisant cela.\nWe've seen drastic changes since then.\tNous avons vu des changements radicaux depuis.\nWe've seen this happen too many times.\tNous avons vu cela se produire bien trop souvent.\nWhales are not fish. They are mammals.\tLes baleines ne sont pas des poissons. Ce sont des mammifères.\nWhat I want to know is how to do this.\tCe que je veux savoir, c'est comment faire ceci.\nWhat a pity it is that you can't come!\tQuel dommage que vous ne puissiez pas venir !\nWhat am I supposed to do if Tom comes?\tQue suis-je supposé faire si Tom vient ?\nWhat an idiot I was to lend her money.\tQuel idiot j'étais de lui prêter de l'argent.\nWhat an idiot I was to lend him money.\tQuel idiot j'étais de lui prêter de l'argent.\nWhat are we having for dinner tonight?\tQu'avons-nous à dîner ce soir ?\nWhat are you going to do this evening?\tTu fais quoi ce soir ?\nWhat are you going to do this evening?\tQue vas-tu faire ce soir ?\nWhat are you going to do this evening?\tQu'allez-vous faire ce soir ?\nWhat are you up to tomorrow afternoon?\tTu prévois quoi demain après-midi ?\nWhat brand of cigarettes do you smoke?\tQuelle marque de cigarettes fumez-vous ?\nWhat brand of cigarettes do you smoke?\tQuelle marque de cigarettes fumes-tu ?\nWhat contemporary authors do you like?\tQuels auteurs contemporains aimez-vous ?\nWhat could they possibly want from us?\tQue pourraient-ils bien nous vouloir ?\nWhat could they possibly want from us?\tQue pourraient-elles bien nous vouloir ?\nWhat did you want to talk to me about?\tDe quoi voulais-tu me parler ?\nWhat did you want to talk to me about?\tDe quoi vouliez-vous me parler ?\nWhat did you want to talk to me about?\tÀ quel sujet voulais-tu me parler ?\nWhat did you want to talk to me about?\tÀ quel sujet vouliez-vous me parler ?\nWhat did you want to talk to me about?\tDe quoi voulais-tu m'entretenir ?\nWhat do you call this bird in English?\tComment appelez-vous cet oiseau en anglais ?\nWhat do you call this bird in English?\tComment appelle-t-on cet oiseau en anglais ?\nWhat do you have against those people?\tQu'avez-vous contre ces gens ?\nWhat do you have against those people?\tQu'as-tu contre ces gens ?\nWhat do you say to dining out tonight?\tQue dis-tu si on sort dîner ce soir ?\nWhat do you think of Mary's new dress?\tQue penses-tu de la nouvelle robe de Mary ?\nWhat do you think of Mary's new dress?\tQue pensez-vous de la nouvelle robe de Mary ?\nWhat do you think of Tom's new tattoo?\tQue penses-tu du nouveau tatouage de Tom ?\nWhat do you think of Tom's new tattoo?\tT'en penses quoi du nouveau tatouage de Tom ?\nWhat do you think this sentence means?\tQue penses-tu que signifie cette phrase ?\nWhat happened? The car's slowing down.\tQu'est-ce qui s'est passé? La voiture ralentit.\nWhat happens when we run out of water?\tQu'est-ce qui se passe lorsque nous manquons d'eau ?\nWhat happens when we run out of water?\tQu'est-ce qui se passe quand nous sommes en pénurie d'eau ?\nWhat if he doesn't want to talk to me?\tEt s'il ne veut pas me parler ?\nWhat if he doesn't want to talk to me?\tEt s'il ne veut pas discuter avec moi ?\nWhat if the unthinkable should happen?\tEt si l'impensable survenait ?\nWhat if the unthinkable should happen?\tQu'adviendrait-il si l'impensable se produisait ?\nWhat is it you really want to tell me?\tQu'est-ce que tu veux vraiment me dire ?\nWhat is it you really want to tell me?\tQu'est-ce que vous voulez vraiment me dire ?\nWhat is it you really want to tell me?\tQue veux-tu vraiment me dire ?\nWhat is it you really want to tell me?\tQue voulez-vous vraiment me dire ?\nWhat is that thing in your right hand?\tQuelle est cette chose dans ta main droite ?\nWhat is the language spoken in Brazil?\tQuelle langue parle-t-on au Brésil ?\nWhat is the theme of his latest novel?\tQuel est le sujet de son dernier roman ?\nWhat kind of food do you usually cook?\tQuel genre de nourriture cuisines-tu d'ordinaire ?\nWhat kind of food do you usually cook?\tQuel genre de nourriture cuisinez-vous d'ordinaire ?\nWhat kind of music does Tom listen to?\tQuel genre de musique Tom écoute-t-il ?\nWhat kind of person do you think I am?\tQuelle sorte de personne pensez-vous que je sois ?\nWhat kind of ranch did you grow up on?\tDans quelle sorte de ranch as-tu grandi ?\nWhat languages do they speak in Korea?\tQuelles langues parle-t-on en Corée ?\nWhat languages do they speak in Korea?\tQuelles langues parlent-ils en Corée ?\nWhat makes you think I want your help?\tQu'est-ce qui te fait penser que je veuille ton aide ?\nWhat makes you think I want your help?\tQu'est-ce qui vous fait penser que je veuille votre aide ?\nWhat makes you think he's Tom Jackson?\tQu'est-ce qui te fait penser que c'est Tom Jackson ?\nWhat makes you think we have a secret?\tQu'est-ce qui te fait penser que nous détenons un secret ?\nWhat makes you think we have a secret?\tQu'est-ce qui vous fait penser que nous détenons un secret ?\nWhat mileage do you get with this car?\tQuel kilométrage avez-vous avec cette voiture ?\nWhat more do we need to make us happy?\tDe quoi de plus avons-nous besoin pour être heureux ?\nWhat should they do in this situation?\tQue devraient-ils faire dans cette situation ?\nWhat time did you get up this morning?\tÀ quelle heure t'es-tu levé ce matin ?\nWhat time did you go to bed yesterday?\tÀ quelle heure êtes-vous allé au lit, hier ?\nWhat time did you go to bed yesterday?\tÀ quelle heure êtes-vous allée au lit, hier ?\nWhat time did you go to bed yesterday?\tÀ quelle heure êtes-vous allés au lit, hier ?\nWhat time did you go to bed yesterday?\tÀ quelle heure êtes-vous allées au lit, hier ?\nWhat time did you go to bed yesterday?\tÀ quelle heure es-tu allé au lit, hier ?\nWhat time did you go to bed yesterday?\tÀ quelle heure es-tu allée au lit, hier ?\nWhat time did you go to bed yesterday?\tÀ quelle heure t'es tu couché, hier ?\nWhat time did you go to bed yesterday?\tÀ quelle heure t'es tu couchée, hier ?\nWhat time did you go to bed yesterday?\tÀ quelle heure vous êtes-vous couché, hier ?\nWhat time did you go to bed yesterday?\tÀ quelle heure vous êtes-vous couchée, hier ?\nWhat time did you go to bed yesterday?\tÀ quelle heure vous êtes-vous couchés, hier ?\nWhat time did you go to bed yesterday?\tÀ quelle heure vous êtes-vous couchées, hier ?\nWhat time do you get up every morning?\tÀ quelle heure te lèves-tu le matin ?\nWhat time will you get to the station?\tÀ quelle heure arriverez-vous à la gare ?\nWhat time will you get to the station?\tÀ quelle heure atteindrez vous la gare ?\nWhat would the world be without women?\tQue serait le monde sans les femmes ?\nWhat'll you be doing over the weekend?\tQue vas-tu faire ce week-end ?\nWhat're you getting all excited about?\tQu'est-ce qui te rend si fébrile ?\nWhat's all the commotion about anyway?\tMais à quel sujet est toute cette agitation ?\nWhat's the name of the mountain range?\tQuel est le nom de cette chaîne de montagnes?\nWhat's the weather like where you are?\tComment est le temps, là où vous vous trouvez ?\nWhat's the weather like where you are?\tComment est le temps, là où tu te trouves ?\nWhat's wrong with the way I'm dressed?\tQu'est-ce qui ne va pas dans ma tenue ?\nWhat's wrong with the way I'm dressed?\tQu'est-ce qui cloche dans ma tenue ?\nWhat's wrong with the way I'm dressed?\tQu'est-ce qui ne va pas dans ma façon de m'habiller ?\nWhat's your favorite holiday activity?\tQuelle est ton activité préférée, en vacances ?\nWhat's your favorite hot weather food?\tQuelle est ta nourriture préférée par temps chaud ?\nWhat's your favorite item of clothing?\tQuel est ton vêtement préféré ?\nWhat's your favorite song to dance to?\tQuelle est votre chanson préférée pour danser ?\nWhatever you do, don't open that door.\tQuoi que vous fassiez, n'ouvrez pas cette porte !\nWhatever you do, don't open that door.\tQuoi que tu fasses, n'ouvre pas cette porte !\nWhatever you do, don't pull this rope.\tQuoi que vous fassiez, ne tirez pas sur cette corde !\nWhatever you do, don't pull this rope.\tQuoi que tu fasses, ne tire pas sur cette corde !\nWhen are you planning to tie the knot?\tTu penses te marier quand ?\nWhen did you see her dancing with him?\tQuand l'as-tu vue danser avec lui ?\nWhen he spoke, everyone became silent.\tLorsqu'il parla, tout le monde devint silencieux.\nWhen is this storm ever going to pass?\tQuand cette tempête va-t-elle jamais se terminer ?\nWhen the man saw a policeman, he fled.\tLorsque l'homme a vu un agent de police, il s'est enfui.\nWhen the man saw a policeman, he fled.\tLorsque l'homme vit un agent de police, il s'enfuit.\nWhen will your new novel be published?\tQuand votre nouveau roman sera-t-il publié ?\nWhere I live, we have snow in January.\tChez nous, il neige en janvier.\nWhere can I catch the bus for Obihiro?\tOù puis-je prendre le bus pour Obihiro ?\nWhere can I exchange foreign currency?\tOù puis-je changer des devises étrangères ?\nWhere could I find someone to help me?\tOù pourrais-je trouver quelqu'un pour m'aider ?\nWhere did you find that strange thing?\tOù as-tu trouvé cette chose étrange ?\nWhere did you find that strange thing?\tOù avez-vous trouvé cette chose étrange ?\nWhere did you get all that money from?\tD'où te vient cet argent ?\nWhere did you have your new suit made?\tOù as-tu fait faire ton nouveau costume ?\nWhere did you learn to cook like this?\tOù as-tu appris à cuisiner de la sorte ?\nWhere do the airport buses leave from?\tD'où partent les bus pour l'aéroport ?\nWhere do the airport buses leave from?\tD'où partent les bus aéroportuaires ?\nWhere do the airport buses leave from?\tD'où partent les bus de l'aéroport ?\nWhere do you want us to start looking?\tOù voulez-vous que nous commencions à regarder ?\nWhere do you want us to start looking?\tOù veux-tu que nous commencions à regarder ?\nWhere have all these people come from?\tD'où tous ces gens sont-ils venus ?\nWhere have you been the last few days?\tOù étiez-vous ces derniers jours ?\nWhere have you been the last few days?\tOù étais-tu ces derniers jours ?\nWhere were you when the fire occurred?\tOù te trouvais-tu lorsque le feu a pris ?\nWhere were you when the fire occurred?\tOù vous trouviez-vous lorsque le feu a pris ?\nWhere were you when the fire occurred?\tOù te trouvais-tu lorsque le feu s'est déclanché ?\nWhere were you when the fire occurred?\tOù te trouvais-tu lorsque le feu s'est déclenché ?\nWhere were you when the fire occurred?\tOù vous trouviez-vous lorsque le feu s'est déclanché ?\nWhere were you when the fire occurred?\tOù vous trouviez-vous lorsque le feu s'est déclenché ?\nWhereabouts did you say this happened?\tDans quel coin dites-vous que ça s'est produit ?\nWhereabouts did you say this happened?\tDans quel coin dites-vous que ça a eu lieu ?\nWhereabouts did you say this happened?\tDans quel coin dis-tu que ça s'est produit ?\nWhereabouts did you say this happened?\tDans quel coin dis-tu que ça a eu lieu ?\nWhether he comes or not is irrelevant.\tQu'il vienne ou pas ne joue aucun rôle.\nWhich do you prefer, spring or autumn?\tQue préférez-vous, l'automne ou le printemps ?\nWhich ice cream shop are you going to?\tChez quel glacier allez-vous ?\nWhich ice cream shop are you going to?\tChez quel glacier vas-tu ?\nWhich ice cream shop are you going to?\tChez quel glacier vous rendez-vous ?\nWhich ice cream shop are you going to?\tChez quel glacier te rends-tu ?\nWhich is longer, this pen or that one?\tLequel de ces stylos est plus long, celui-là ou celui-ci ?\nWhich program did you watch yesterday?\tQuelle émission as-tu regardée hier ?\nWhich program did you watch yesterday?\tQuel programme avez-vous regardé hier ?\nWho did you visit yesterday afternoon?\tÀ qui as-tu rendu visite hier après-midi ?\nWho did you visit yesterday afternoon?\tÀ qui avez-vous rendu visite hier après-midi ?\nWho was that you were just talking to?\tÀ qui étais-tu en train de parler ?\nWho was that you were just talking to?\tÀ qui étiez-vous en train de parler ?\nWhy are you crying? It's just a movie!\tPourquoi pleures-tu ? Ce n'est qu'un film !\nWhy couldn't I be the one to help you?\tPourquoi ne pourrais-je pas être celui qui t'aide ?\nWhy couldn't I be the one to help you?\tPourquoi ne pourrais-je pas être celui qui vous aide ?\nWhy couldn't I be the one to help you?\tPourquoi ne pourrais-je pas être celle qui t'aide ?\nWhy couldn't I be the one to help you?\tPourquoi ne pourrais-je pas être celle qui vous aide ?\nWhy didn't you come to ask me earlier?\tPourquoi n’es-tu pas venu me le demander plus tôt ?\nWhy didn't you come to ask me earlier?\tPourquoi n’es-tu pas venue me le demander plus tôt ?\nWhy didn't you get one before we left?\tPourquoi n'en as-tu pas pris avant que nous partions ?\nWhy do you really want to lose weight?\tPourquoi veux-tu perdre du poids, en réalité ?\nWhy do you really want to lose weight?\tPourquoi voulez-vous perdre du poids, en réalité ?\nWhy don't we get our things and leave?\tPourquoi ne prenons-nous pas nos affaires et partons ?\nWhy don't you return to your quarters?\tPourquoi ne retournez-vous pas dans vos quartiers ?\nWhy don't you return to your quarters?\tPourquoi ne retournes-tu pas dans tes quartiers ?\nWhy don't you run for student council?\tPourquoi ne vous portez-vous pas candidat au conseil des élèves ?\nWhy don't you run for student council?\tPourquoi ne vous portez-vous pas candidate au conseil des élèves ?\nWhy don't you run for student council?\tPourquoi ne vous portez-vous pas candidat au conseil des étudiants ?\nWhy don't you run for student council?\tPourquoi ne vous portez-vous pas candidate au conseil des étudiants ?\nWhy don't you run for student council?\tPourquoi ne te portes-tu pas candidat au conseil des étudiants ?\nWhy don't you run for student council?\tPourquoi ne te portes-tu pas candidat au conseil des élèves ?\nWhy don't you run for student council?\tPourquoi ne te portes-tu pas candidate au conseil des élèves ?\nWhy don't you run for student council?\tPourquoi ne te portes-tu pas candidate au conseil des étudiants ?\nWhy on earth do you want to know that?\tPourquoi Diable veux-tu savoir ça ?\nWhy on earth do you want to know that?\tPourquoi Diable voulez-vous savoir ça ?\nWhy should we bother trying to fix it?\tPourquoi devrions-nous donner la peine d'essayer de résoudre ce problème?\nWhy would anybody eat pickled cabbage?\tPourquoi quiconque voudrait manger du chou mariné ?\nWhy would somebody want to live there?\tPourquoi quelqu'un voudrait-il vivre là ?\nWhy would somebody want to live there?\tPourquoi quelqu'un voudrait-il y vivre ?\nWhy wouldn't you listen to his advice?\tPourquoi n'écouteriez-vous pas son conseil ?\nWhy wouldn't you listen to his advice?\tPourquoi n'écouterais-tu pas son conseil ?\nWill he come to the meeting next week?\tViendra-t-il à la réunion la semaine prochaine ?\nWill you be hiring any part-time help?\tEmploieras-tu une quelconque aide à temps partiel ?\nWill you be hiring any part-time help?\tEmploierez-vous une quelconque aide à temps partiel ?\nWithin hours, the world knew the news.\tEn quelques heures, le monde entier connaissait la nouvelle.\nWorkers struggled as factories closed.\tLes travailleurs luttaient tandis que les usines fermaient.\nWould you happen to know what this is?\tSauriez-vous de quoi il s'agit?\nWould you like another glass of water?\tVoulez-vous un autre verre d'eau ?\nWould you like to go shopping with me?\tAimeriez-vous aller faire des emplettes avec moi ?\nWould you like to go shopping with me?\tAimerais-tu aller faire des emplettes avec moi ?\nWould you like to go swimming with us?\tVoudrais-tu aller nager avec nous ?\nWould you like to have dinner with me?\tVeux-tu dîner avec moi ?\nWould you like to have lunch together?\tVoudrais-tu déjeuner ensemble ?\nWould you like to hear me sing a song?\tAimerais-tu m'entendre chanter une chanson ?\nWould you like to hear me sing a song?\tAimeriez-vous m'entendre chanter une chanson ?\nWould you like to know how I did that?\tAimerais-tu savoir comment j'ai fait ça ?\nWould you like to know how I did that?\tAimeriez-vous savoir comment j'ai fait cela ?\nWould you like to play soccer with us?\tVoudrais-tu jouer au foot avec nous ?\nWould you like to take a walk with me?\tÇa te dirait de te promener avec moi?\nWould you like to talk to the manager?\tVoudriez-vous vous entretenir avec le directeur ?\nWould you mind if I changed seats now?\tCela vous dérangerait-il si je changeais de siège maintenant ?\nWould you mind if I changed seats now?\tCela te dérangerait-il si je changeais de siège maintenant ?\nWould you mind if I swam in your pool?\tVerrais-tu un inconvénient à ce que je nage dans ta piscine ?\nWould you mind if I swam in your pool?\tVerriez-vous un inconvénient à ce que je nage dans votre piscine ?\nWould you mind taking a picture of us?\tVoulez-vous bien prendre une photo de nous ?\nWould you mind turning down the radio?\tCela vous dérangerait-il de baisser la radio ?\nWould you mind turning down the radio?\tCela te dérangerait-il de baisser la radio ?\nWouldn't you rather sit by the window?\tNe préférerais-tu pas être assis près de la fenêtre ?\nYesterday was my seventeenth birthday.\tHier c'était mon dix-septième anniversaire.\nYou always want to control everything.\tTu veux toujours tout contrôler.\nYou always want to control everything.\tVous voulez toujours tout contrôler.\nYou are responsible for this accident.\tTu es responsable de cet accident.\nYou aren't going to tell Tom, are you?\tTu ne vas pas le raconter à Tom, n'est-ce pas ?\nYou can watch television after dinner.\tTu peux regarder la télévision après dîner.\nYou can't believe everything you hear.\tTu ne peux pas croire tout ce que tu entends.\nYou can't believe everything you hear.\tVous ne pouvez pas croire tout ce que vous entendez.\nYou can't believe everything you hear.\tTu ne peux pas croire à tout ce que tu entends.\nYou can't believe everything you hear.\tVous ne pouvez pas croire à tout ce que vous entendez.\nYou can't have left it at the airport.\tTu ne peux pas l'avoir laissé à l'aéroport.\nYou can't imagine doing that, can you?\tTu ne peux pas imaginer de faire ça, si ?\nYou can't imagine doing that, can you?\tVous ne pouvez pas imaginer de faire ça, si ?\nYou can't judge people by their looks.\tOn ne peut juger les gens sur leurs apparences.\nYou can't judge people by their looks.\tTu ne peux pas juger les gens sur leurs apparences.\nYou can't keep doing this to yourself.\tTu ne peux pas continuer à t'infliger ça.\nYou can't keep doing this to yourself.\tVous ne pouvez pas continuer à vous infliger ça.\nYou can't keep treating me like a kid.\tTu ne peux pas continuer à me traiter comme un enfant.\nYou can't keep treating me like a kid.\tTu ne peux pas continuer à me traiter comme une enfant.\nYou can't keep treating me like a kid.\tVous ne pouvez pas continuer à me traiter comme un enfant.\nYou can't keep treating me like a kid.\tVous ne pouvez pas continuer à me traiter comme une enfant.\nYou can't pay too much for good shoes.\tVous ne pouvez pas payer trop cher pour de bonnes chaussures.\nYou can't teach an old dog new tricks.\tOn ne peut enseigner de nouveaux tours à un vieux chien.\nYou could hear a pin drop in the room.\tOn pouvait entendre les mouches voler dans la salle.\nYou didn't give me the correct change.\tVous ne m'avez pas donné la monnaie exacte.\nYou didn't want me to starve, did you?\tTu ne voulais pas que je meure de faim, si ?\nYou didn't want me to starve, did you?\tVous ne vouliez pas que je meure de faim, si ?\nYou do your part and I'll do the rest.\tTu remplis ton rôle et je ferai le reste.\nYou don't have to take an examination.\tIl n'est pas nécessaire de passer un examen.\nYou don't hear me complaining, do you?\tTu ne m'entends pas me plaindre, n'est-ce pas ?\nYou don't hear me complaining, do you?\tVous ne m'entendez pas me plaindre, n'est-ce pas ?\nYou don't know what Tom is capable of.\tTu ne sais pas de quoi Tom est capable.\nYou don't know what Tom is capable of.\tVous ne savez pas de quoi Tom est capable.\nYou don't need to go to the dentist's.\tTu n'as pas besoin d'aller chez le dentiste.\nYou don't need to take your shoes off.\tTu n'es pas obligé de retirer tes chaussures.\nYou don't understand what's happening.\tVous ne comprenez pas ce qui se produit.\nYou don't understand what's happening.\tVous ne comprenez pas ce qui arrive.\nYou don't understand what's happening.\tVous ne comprenez pas ce qui a lieu.\nYou don't understand what's happening.\tTu ne comprends pas ce qui se produit.\nYou don't understand what's happening.\tTu ne comprends pas ce qui arrive.\nYou don't understand what's happening.\tTu ne comprends pas ce qui a lieu.\nYou don't want to tell me why, do you?\tTu ne veux pas me dire pourquoi, si ?\nYou don't want to tell me why, do you?\tVous ne voulez pas me dire pourquoi, si ?\nYou drank a beer at lunch, didn't you?\tTu as bu une bière pendant le déjeuner, n'est-ce pas ?\nYou drank a beer at lunch, didn't you?\tVous avez bu une bière pendant le déjeuner, n'est-ce pas ?\nYou had better prepare for the future.\tTu ferais mieux de t'apprêter pour le futur.\nYou had better prepare for the future.\tVous feriez mieux de vous apprêter pour le futur.\nYou have no one but yourself to blame.\tVous ne pouvez blâmer personne d'autre que vous-même.\nYou have no one but yourself to blame.\tTu ne peux blâmer quiconque d'autre que toi-même.\nYou have no one to blame but yourself.\tVous ne pouvez blâmer personne d'autre que vous-même.\nYou have no one to blame but yourself.\tTu ne peux blâmer quiconque d'autre que toi-même.\nYou have to begin as soon as possible.\tVous devez commencer aussitôt que possible.\nYou have to overcome the difficulties.\tTu dois surmonter les difficultés.\nYou haven't given me what I asked for.\tVous ne m'avez pas donné ce que j'avais demandé.\nYou haven't given me what I asked for.\tTu ne m'as pas donné ce que j'avais demandé.\nYou know what might happen, don't you?\tTu sais ce qui pourrait arriver, n'est-ce pas ?\nYou know what might happen, don't you?\tVous savez ce qui pourrait arriver, n'est-ce pas ?\nYou look just like your older brother.\tTu ressembles beaucoup à ton frère ainé.\nYou may pay in advance for your order.\tVous pouvez payer votre commande en avance.\nYou may pay in advance for your order.\tVous pouvez payer votre commande d'avance.\nYou may stay here as long as you like.\tTu peux rester ici aussi longtemps que tu veux.\nYou may stay here as long as you like.\tVous pouvez rester ici aussi longtemps que vous le désirez.\nYou may want to take a few steps back.\tVoulez-vous reculer de quelques pas, je vous prie.\nYou may want to take a few steps back.\tVeux-tu reculer de quelques pas, je te prie.\nYou might want to take a look at this.\tIl se pourrait que tu veuilles jeter un œil à ceci.\nYou might want to take a look at this.\tIl se pourrait que vous vouliez jeter un œil à ceci.\nYou must always keep your hands clean.\tVous devez toujours garder les mains propres.\nYou must always keep your hands clean.\tTu dois toujours garder les mains propres.\nYou must certainly be very hungry now.\tTu dois sûrement avoir très faim maintenant.\nYou must learn from your own mistakes.\tOn doit apprendre de ses propres fautes.\nYou need to get out of the house more.\tIl te faut sortir davantage de la maison.\nYou need to get out of the house more.\tIl vous faut sortir davantage de la maison.\nYou need to stop doing that right now.\tVous devez arrêter de faire ça sur-le-champ.\nYou need to stop doing that right now.\tTu dois arrêter de faire ça sur-le-champ.\nYou ought to have seen the exhibition.\tTu aurais dû voir l'exposition.\nYou ought to have told me that before.\tTu aurais vraiment dû me dire ça plus tôt.\nYou probably don't want to talk to me.\tTu ne veux probablement pas me parler.\nYou probably don't want to talk to me.\tVous ne voulez probablement pas me parler.\nYou really are in trouble, aren't you?\tVous êtes vraiment dans le pétrin, n'est-ce pas ?\nYou really are in trouble, aren't you?\tTu es vraiment dans le pétrin, n'est-ce pas ?\nYou really want to do this, don't you?\tTu veux vraiment le faire, non ?\nYou really want to do this, don't you?\tTu veux vraiment le faire, n'est-ce pas ?\nYou really want to do this, don't you?\tVous voulez vraiment le faire, non ?\nYou really want to do this, don't you?\tVous voulez vraiment le faire, n'est-ce pas ?\nYou remind me of a boy I used to know.\tTu me rappelles un garçon que je connaissais.\nYou said that you were here yesterday.\tTu as dit que tu étais ici hier.\nYou said that you were here yesterday.\tVous avez dit que vous étiez ici hier.\nYou should be out of here by tomorrow.\tVous devriez sortir d'ici, demain.\nYou should follow the doctor's advice.\tTu devrais suivre l'avis du médecin.\nYou should follow the doctor's orders.\tTu ferais mieux de faire comme le médecin t'a conseillé.\nYou should have a doctor look at that.\tTu devrais faire voir ça à un médecin.\nYou should have a doctor look at that.\tVous devriez faire voir ça à un médecin.\nYou should have come a little earlier.\tTu aurais dû venir un peu plus tôt.\nYou should have come a little earlier.\tVous auriez dû venir un peu plus tôt.\nYou should have completed it long ago.\tVous auriez dû le terminer il y a longtemps.\nYou should have telephoned in advance.\tIl fallait téléphoner au préalable.\nYou should have telephoned in advance.\tTu aurais dû téléphoner avant.\nYou should learn to restrain yourself.\tTu dois apprendre à garder ton sang-froid.\nYou should make good on your promises.\tTu devrais tenir tes promesses.\nYou should make good use of your time.\tIl faut faire un bon usage de son temps.\nYou should make good use of your time.\tUtilise bien ton temps.\nYou should pay attention to his story.\tTu devrais prêter attention à son histoire.\nYou should pay attention to his story.\tVous devriez prêter attention à son histoire.\nYou should start as early as possible.\tVous devriez commencer aussi tôt que possible.\nYou shouldn't always follow the crowd.\tOn ne devrait pas toujours suivre la foule.\nYou shouldn't have gone fishing today.\tTu n'aurais pas dû aller pêcher aujourd'hui.\nYou shouldn't have gone fishing today.\tVous n'auriez pas dû aller pêcher aujourd'hui.\nYou shouldn't have gone fishing today.\tVous n'auriez pas dû aller à la pêche aujourd'hui.\nYou shouldn't have gone fishing today.\tTu n'aurais pas dû aller à la pêche aujourd'hui.\nYou shouldn't read in such poor light.\tVous ne devriez pas lire avec un éclairage aussi faible.\nYou shouldn't read in such poor light.\tTu ne devrais pas lire avec un éclairage aussi faible.\nYou shouldn't read such useless books.\tVous ne devriez pas lire de livres aussi inutiles.\nYou shouldn't read such useless books.\tTu ne devrais pas lire de livres aussi inutiles.\nYou two had a fight today, didn't you?\tVous vous êtes bagarrés, tous les deux, aujourd'hui, n'est-ce pas ?\nYou two had a fight today, didn't you?\tVous vous êtes bagarrées, toutes les deux, aujourd'hui, n'est-ce pas ?\nYou understand what I mean, don't you?\tTu comprends ce que je veux dire, non ?\nYou understand what I mean, don't you?\tVous comprenez ce que je veux dire, non ?\nYou want something from me, don't you?\tTu veux quelque chose de moi, non ?\nYou want something from me, don't you?\tTu veux quelque chose de moi, n'est-ce pas ?\nYou want something from me, don't you?\tVous voulez quelque chose de moi, non ?\nYou want something from me, don't you?\tVous voulez quelque chose de moi, n'est-ce pas ?\nYou were absent from school yesterday.\tVous avez été absent de l'école hier.\nYou will soon be convinced I am right.\tVous serez bientôt convaincu que j'ai raison.\nYou won't have to take charge of that.\tTu ne devras pas prendre cela en charge.\nYou'll break it if you're not careful.\tVous allez le briser si vous ne faites pas attention.\nYou'll break it if you're not careful.\tTu vas le briser si tu ne fais pas attention.\nYou'll have to study harder next year.\tTu devras travailler plus dur l'année prochaine.\nYou're not as young as you used to be.\tVous n'êtes plus aussi jeune qu'autrefois.\nYou're not as young as you used to be.\tTu n'es plus aussi jeune qu'autrefois.\nYou're not as young as you used to be.\tVous n'êtes plus aussi jeunes qu'autrefois.\nYou're not going to want to miss this.\tTu ne vas pas vouloir manquer ça.\nYou're not going to want to miss this.\tVous n'allez pas vouloir manquer ça.\nYou're not supposed to eat on the job.\tTu n'es pas supposé manger sur le lieu de travail.\nYou're not supposed to eat on the job.\tTu n'es pas supposée manger sur le lieu de travail.\nYou're not supposed to eat on the job.\tVous n'êtes pas supposé manger sur le lieu de travail.\nYou're not supposed to eat on the job.\tVous n'êtes pas supposée manger sur le lieu de travail.\nYou're not supposed to eat on the job.\tVous n'êtes pas supposés manger sur le lieu de travail.\nYou're not supposed to eat on the job.\tVous n'êtes pas supposées manger sur le lieu de travail.\nYou're not the only one that was hurt.\tVous n'êtes pas le seul à avoir été blessé.\nYou're not the only one that was hurt.\tVous n'êtes pas la seule à avoir été blessée.\nYou're not the only one that was hurt.\tTu n'es pas le seul à avoir été blessé.\nYou're not the only one that was hurt.\tTu n'es pas la seule à avoir été blessée.\nYou're planning something, aren't you?\tVous êtes en train de prévoir quelque chose, n'est-ce pas ?\nYou're planning something, aren't you?\tTu es en train de prévoir quelque chose, pas vrai ?\nYou've been following me, haven't you?\tTu m'as suivi, n'est-ce pas ?\nYou've been following me, haven't you?\tTu m'as suivie, n'est-ce pas ?\nYou've been following me, haven't you?\tVous m'avez suivi, n'est-ce pas ?\nYou've been following me, haven't you?\tVous m'avez suivie, n'est-ce pas ?\nYou've been there before, haven't you?\tTu y as déjà été, n'est-ce pas ?\nYou've been there before, haven't you?\tVous avez déjà été là-bas, n'est-ce pas ?\nYou've got a lot of work ahead of you.\tTu as énormément de travail devant toi.\nYou've got a lot of work ahead of you.\tTu as énormément de travail à faire.\nYou've gotta get over there right now.\tTu dois te pointer là-bas fissa.\nYour daughter is not a child any more.\tVotre fille n'est plus une enfant.\nYour death will not have been in vain.\tTa mort n'aura pas été vaine.\nYour death will not have been in vain.\tVotre mort n'aura pas été vaine.\nYour mother has made you what you are.\tVotre mère a fait de vous ce que vous êtes.\nYour mother has made you what you are.\tTa mère a fait de toi ce que tu es.\nYour mother is worried sick about you.\tVotre mère est morte d'inquiétude à votre sujet.\nYour mother is worried sick about you.\tTa mère est morte d'inquiétude à ton sujet.\nYour paper contains too many mistakes.\tTon article comporte beaucoup trop d'erreurs.\nYour pitching is far superior to mine.\tTon lancer est bien meilleur que le mien.\nYour pitching is far superior to mine.\tVotre lancer est bien meilleur que le mien.\nYour sister cannot swim well, can she?\tTa sœur ne sait pas bien nager, n'est-ce pas ?\nYour sister cannot swim well, can she?\tTa sœur ne sait pas bien nager, si ?\nYour voice sounds very familiar to me.\tVotre voix me semble très familière.\n\"Can I use your car?\" \"Sure. Go ahead.\"\t\"Puis-je utiliser ta voiture ?\" \"Bien sûr. Vas-y.\"\n\"How old are you?\" \"Sixteen years old\".\t« Quel âge as-tu ? » « Seize ans. »\n\"I feel like playing cards.\" \"So do I.\"\t\"J'ai envie de jouer aux cartes.\" \"Moi aussi.\"\n\"I want that book,\" he said to himself.\tJe veux ce livre, se dit-il.\n\"I'd like to play cards.\" \"So would I.\"\t« Je voudrais bien jouer aux cartes. » - « Moi aussi. »\n\"Is it going to clear up?\" \"I hope so.\"\t« Est-ce que le temps va se dégager ? » « Je l'espère. »\n\"May I use this telephone?\" \"Go ahead.\"\t\"Est-ce que je peux utiliser ce téléphone ?\" \"Allez-y.\"\n\"May I use this telephone?\" \"Go ahead.\"\t« Puis-je utiliser ce téléphone ? » « Faites donc. »\nA Japanese would never do such a thing.\tUn Japonais ne ferait jamais une telle chose.\nA day without laughter is a day wasted.\tUne journée sans rire, c'est une journée de perdue !\nA dry spell accounts for the poor crop.\tUne période de sécheresse explique la maigre récolte.\nA few people clapped after his lecture.\tQuelques personnes applaudirent après son exposé.\nA general election will be held in May.\tL'élection générale se tiendra en mai.\nA gigantic bird came flying toward him.\tUn oiseau géant vola vers lui.\nA man is known by the company he keeps.\tDis-moi qui sont tes amis, je te dirais qui tu es.\nA moldy loaf of bread lay on the table.\tUne miche de pain moisi se trouvait sur la table.\nA new kind of bullet had been invented.\tUne nouvelle sorte de balle avait été inventée.\nA one-way ticket to Birmingham, please.\tUn aller simple pour Birmingham, s'il vous plait.\nA soldier often has to confront danger.\tUn soldat doit souvent confronter le danger.\nA temporary government was established.\tUn gouvernement provisoire fut instauré.\nA wounded whale washed up on the beach.\tUne baleine blessée s'est échouée sur la plage.\nA young girl was at the steering wheel.\tUne jeune fille était au volant.\nAfter our first attack, the enemy fled.\tAprès notre première attaque, l'ennemi fuit.\nAfter three drinks, the man passed out.\tAprès trois verres, l'homme s'évanouit.\nAll my friends turned their back on me.\tTous mes amis m'ont tourné le dos.\nAll of my relatives are taller than me.\tTous mes parents sont plus grands que moi.\nAll of the tree's leaves turned yellow.\tToutes les feuilles de l'arbre sont devenues jaunes.\nAll of the tree's leaves turned yellow.\tToutes les feuilles de l'arbre virèrent au jaune.\nAll of the tree's leaves turned yellow.\tToutes les feuilles de l'arbre ont viré au jaune.\nAll of the tree's leaves turned yellow.\tToutes les feuilles de l'arbre ont jauni.\nAll the doors of the house were closed.\tToutes les portes de la maison étaient fermées.\nAll the flowers in the garden withered.\tToutes les fleurs du jardin ont fané.\nAll the people who were here have left.\tTous les gens qui étaient là sont partis.\nAll the villagers know of the accident.\tLes villageois sont tous au courant de l'accident.\nAll you have to do is press the button.\tTout ce que tu dois faire est d'appuyer sur le bouton.\nAll you have to do is push this button.\tTout ce que tu as à faire, c'est d'appuyer sur ce bouton.\nAll you have to do is push this button.\tTout ce que vous avez à faire est d'appuyer sur ce bouton.\nAlmost all of Tom's friends are famous.\tPresque tous les amis de Tom sont célèbres.\nAlmost everybody has already gone home.\tPresque tout le monde est déjà rentré à la maison.\nAlways look on the bright side of life.\tRegarde toujours du bon côté de la vie.\nAn American spoke to me at the station.\tUn Américain m'a parlé à la gare.\nAn athlete must keep in good condition.\tUn athlète doit rester en forme.\nAn athlete must keep in good condition.\tUn athlète doit se maintenir en bonne condition physique.\nAn old man broke into our conversation.\tUn vieil homme s'immisça dans notre conversation.\nAnd who are you working for these days?\tEt pour qui travailles-tu, ces temps-ci ?\nAnd who are you working for these days?\tEt pour qui travaillez-vous, ces temps-ci ?\nApart from that, I don't know anything.\tÀ part cela, je ne sais rien.\nAre there any cute girls in your class?\tY a-t-il de mignonnes filles, dans ta classe ?\nAre there any cute girls in your class?\tY a-t-il de mignonnes filles, dans votre classe ?\nAre those the people you saw yesterday?\tEst-ce les gens que tu as vus hier ?\nAre you finished reading the newspaper?\tAs-tu fini de lire le journal ?\nAre you finished reading the newspaper?\tAvez-vous fini de lire le journal ?\nAre you going to be home for Christmas?\tSeras tu à la maison pour Noël ?\nAre you going to do something about it?\tAllez-vous faire quelque chose à cet effet ?\nAre you going to do something about it?\tVas-tu faire quelque chose à ce sujet ?\nAre you going to go out with Tom again?\tTu vas encore sortir avec Thomas ?\nAre you happy with your new sports car?\tEs-tu satisfait de ta nouvelle voiture de sport ?\nAre you seriously thinking about going?\tPenses-tu sérieusement à y aller ?\nAre you seriously thinking about going?\tPenses-tu sérieusement à partir ?\nAre you seriously thinking about going?\tPensez-vous sérieusement à y aller ?\nAre you seriously thinking about going?\tPensez-vous sérieusement à partir ?\nAre you sure that you want to go there?\tEs-tu sûr de vouloir y aller ?\nAre you sure that you want to go there?\tEs-tu sûr de vouloir t'y rendre ?\nAre you sure that you want to go there?\tÊtes-vous sûr de vouloir y aller ?\nAre you sure that you want to go there?\tÊtes-vous sûre de vouloir y aller ?\nAre you sure that you want to go there?\tÊtes-vous sûres de vouloir y aller ?\nAre you sure that you want to go there?\tÊtes-vous sûrs de vouloir y aller ?\nAre you sure that you want to go there?\tEs-tu sûre de vouloir y aller ?\nAre you sure that you want to go there?\tEs-tu sûre de vouloir t'y rendre ?\nAre you sure that you want to go there?\tÊtes-vous sûr de vouloir vous y rendre ?\nAre you sure that you want to go there?\tÊtes-vous sûre de vouloir vous y rendre ?\nAre you sure that you want to go there?\tÊtes-vous sûrs de vouloir vous y rendre ?\nAre you sure that you want to go there?\tÊtes-vous sûres de vouloir vous y rendre ?\nAre you sure this is the right address?\tTu es sûr que c'est la bonne adresse?\nAre you telling me you're not involved?\tÊtes-vous en train de me dire que vous n'êtes pas impliqué ?\nAre you telling me you're not involved?\tÊtes-vous en train de me dire que vous n'êtes pas impliquée ?\nAre you telling me you're not involved?\tÊtes-vous en train de me dire que vous n'êtes pas impliquées ?\nAre you telling me you're not involved?\tÊtes-vous en train de me dire que vous n'êtes pas impliqués ?\nAre you telling me you're not involved?\tEs-tu en train de me dire que tu n'es pas impliqué ?\nAre you telling me you're not involved?\tEs-tu en train de me dire que tu n'es pas impliquée ?\nAre you telling me you're not involved?\tEs-tu en train de me dire que vous n'êtes pas impliqués ?\nAre you telling me you're not involved?\tEs-tu en train de me dire que vous n'êtes pas impliquées ?\nAren't you going to take your coat off?\tNe vas-tu pas ôter ton manteau ?\nAren't you going to take your coat off?\tN'allez-vous pas ôter votre manteau ?\nArtists are highly respected in France.\tLes artistes sont extrêmement respectés en France.\nAs far as I know, Tom is still married.\tPour autant que je sache, Tom est toujours marié.\nAs far as I know, he did nothing wrong.\tPour autant que je sache, il n'a rien fait de mal.\nAs far as I know, he is a reliable man.\tPour autant que je sache, c'est un homme digne de confiance.\nAs soon as he returns, I will tell you.\tDès qu'il reviendra, je vous le dirai.\nAstronomy is by no means a new science.\tL'astronomie n'est en rien une nouvelle science.\nAt that time, we were young and strong.\tEn ce temps-là, nous étions jeunes et forts.\nAt the next intersection, take a right.\tÀ la prochaine intersection, tournez à droite.\nAt the next intersection, take a right.\tÀ la prochaine intersection, prenez à droite.\nAt the next intersection, take a right.\tÀ la prochaine intersection, piquez à droite.\nAt what age do you want to get married?\tA quel âge voulez-vous vous marier?\nAtoms cannot be seen with your own eye.\tLes atomes ne peuvent pas être vus à l'œil nu.\nBe careful. This knife is really sharp.\tFais attention, ce couteau est bien affûté.\nBelieve it or not, I can actually draw.\tCrois-le ou pas, je peux vraiment dessiner.\nBiting your fingernails is a bad habit.\tRonger tes ongles est une mauvaise habitude.\nBlack coats are in fashion this winter.\tLes manteaux noirs sont à la mode cet hiver.\nBlue lines on the map designate rivers.\tLes lignes bleues sur la carte désignent des fleuves.\nBoth he and I are high school students.\tLui et moi sommes tous les deux lycéens.\nBoxers have to weigh in before a fight.\tLes boxeurs doivent se peser avant un combat.\nBoys, as a rule, are taller than girls.\tDe manière générale, les garçons sont plus grands que les filles.\nBut of course that was a long time ago.\tMais bien sûr, c'était il y a longtemps.\nButter is sold by the pound in the USA.\tOn vend, aux USA, le beurre à la livre.\nBy the way, I think you're really nice.\tAu fait, je pense que vous êtes vraiment chouette.\nBy the way, I think you're really nice.\tAu fait, je pense que tu es vraiment chouette.\nCan I have everyone's attention please?\tPuis-je avoir l'attention de tout le monde s'il vous plaît ?\nCan I have everyone's attention please?\tExcusez-moi, tout le monde. Je peux avoir votre attention, s'il vous plaît ?\nCan I set a place at the table for you?\tPuis-je vous faire une place à table ?\nCan I set a place at the table for you?\tPuis-je te faire une place à table ?\nCan I set a place at the table for you?\tPuis-je vous mettre un couvert ?\nCan I set a place at the table for you?\tPuis-je te mettre un couvert ?\nCan I talk to you for a second, please?\tJe peux te parler une seconde, s'il te plaît ?\nCan I talk to you for a second, please?\tPuis-je vous parler une seconde, s'il vous plaît ?\nCan I tell you something very personal?\tPuis-je te dire quelque chose de très personnel ?\nCan I tell you something very personal?\tPuis-je te raconter quelque chose de très personnel ?\nCan I tell you something very personal?\tPuis-je vous dire quelque chose de très personnel ?\nCan I tell you something very personal?\tPuis-je vous raconter quelque chose de très personnel ?\nCan this possibly be the right address?\tEst-il possible que ce soit la bonne adresse ?\nCan we create something out of nothing?\tPeut-on créer quelque chose à partir de rien ?\nCan you explain how this machine works?\tPouvez-vous expliquer comment fonctionne cette machine ?\nCan you put up with the way he behaves?\tPeux-tu supporter la manière avec laquelle il se comporte ?\nCan you put up with the way he behaves?\tPouvez-vous supporter la manière avec laquelle il se comporte ?\nCan you put up with the way he behaves?\tPeux-tu supporter la manière qu'il a de se comporter ?\nCan you put up with the way he behaves?\tPouvez-vous supporter la manière qu'il a de se comporter ?\nCan you show me where I am on this map?\tPouvez-vous me montrer, sur cette carte, où je me trouve ?\nCan you show me where I am on this map?\tPeux-tu me montrer où je me trouve, sur cette carte ?\nCan you tell me the exact time, please?\tPourrais-tu me donner l'heure exacte, s'il te plaît ?\nCan you tell me what you're doing here?\tPeux-tu me dire ce que tu fais ici ?\nCan you tell me what you're doing here?\tPouvez-vous me dire ce que vous faites ici ?\nCan you tell me where I am on this map?\tPeux-tu me dire où je me situe sur cette carte ?\nCoal and natural gas are natural fuels.\tLe charbon et le gaz naturel sont des carburants naturels.\nCome early so we can discuss the plans.\tVenez tôt, de sorte que nous puissions discuter des projets.\nCome early so we can discuss the plans.\tViens tôt, de sorte que nous puissions discuter des projets.\nCome on, hurry up. You'll miss the bus.\tAllez, dépêche-toi. Tu vas rater le bus.\nCompared to our house, his is a palace.\tComparée à notre maison, la sienne est un palace.\nContracts have already been negotiated.\tLes contrats ont déjà été négociés.\nCould I have money for my piano lesson?\tPourrais-je avoir de l'argent pour ma leçon de piano ?\nCould I have money for my piano lesson?\tEst-ce que je pourrais avoir de l'argent pour ma leçon de piano ?\nCould I speak to you for a moment, Tom?\tEst-ce que je peux te parler un instant, Tom ?\nCould you cook this meat a little more?\tPouvez-vous cuire cette viande un peu plus ?\nCould you knock a little off the price?\tPourriez-vous baisser un peu le prix?\nCould you please call me back tomorrow?\tPourriez-vous me rappeler demain, je vous prie ?\nCould you please call me back tomorrow?\tPourrais-tu me rappeler demain, s'il te plait ?\nCould you please overlook it this time?\tPourrais-tu fermer les yeux là-dessus pour cette fois ?\nCould you please overlook it this time?\tPourriez-vous fermer les yeux là-dessus pour cette fois ?\nCould you show me how to use this pump?\tPouvez-vous me montrer comment utiliser cette pompe ?\nCould you speak a little louder please?\tPeux-tu parler un peu plus fort, s'il te plaît ?\nCould you speak a little louder please?\tParle un peu plus fort s'il te plait.\nCould you speak a little louder please?\tParlez plus fort, s'il vous plait.\nCould you speak a little louder please?\tParle plus fort, s'il te plait.\nCould you speak a little louder please?\tVeuillez parler plus fort.\nDaddy, I can't walk any more. Carry me.\tPapa, je ne peux plus marcher. Porte-moi.\nDecember is the last month of the year.\tDécembre est le dernier mois de l'année.\nDegas was born more than 150 years ago.\tDegas est né il y a plus de 150 ans.\nDespite his riches, he's not contented.\tMalgré les richesses qu'il possède, il n'est pas content.\nDetroit is famous for its car industry.\tDétroit est célèbre pour son industrie automobile.\nDetroit is famous for its car industry.\tDetroit est réputée pour son industrie automobile.\nDid that have any special significance?\tCela revêtait-il une signification particulière ?\nDid you see a brown wallet around here?\tAvez-vous vu un porte-feuille marron dans les alentours ?\nDid you tell your sister to ask me out?\tAs-tu dit à ta sœur de m'inviter ?\nDidn't I lend you some money yesterday?\tNe t'ai-je pas prêté de l'argent hier ?\nDidn't you promise never to tell a lie?\tN'as-tu pas promis de ne jamais mentir ?\nDidn't you promise never to tell a lie?\tN'avez-vous pas promis de ne jamais mentir ?\nDidn't your parents teach you anything?\tVos parents ne vous ont-ils pas enseigné quoi que ce soit ?\nDidn't your parents teach you anything?\tTes parents ne t'ont-ils pas enseigné quoi que ce soit ?\nDiscretion is the better part of valor.\tLa discrétion est une valeur sûre.\nDiscretion is the better part of valor.\tLa meilleure partie du courage réside dans la prudence.\nDivide the cake among the three of you.\tDivisez le gâteau entre vous trois !\nDo Japanese people eat sushi every day?\tLes japonais, ils mangent des sushis tous les jours ?\nDo both Tom and Mary understand French?\tTom et Mary comprennent-ils tous deux le Français ?\nDo you believe in the existence of God?\tCrois-tu en l'existence de Dieu ?\nDo you believe in the existence of God?\tCroyez-vous en l'existence de Dieu ?\nDo you have a chain saw I could borrow?\tAs-tu une tronçonneuse que je pourrais emprunter ?\nDo you have a chain saw I could borrow?\tAvez-vous une tronçonneuse que je pourrais emprunter ?\nDo you have a date for Valentine's Day?\tAs-tu une Valentine ?\nDo you have a date for Valentine's Day?\tAs-tu un Valentin ?\nDo you have a date for Valentine's Day?\tAvez-vous une Valentine ?\nDo you have a date for Valentine's Day?\tAvez-vous un Valentin ?\nDo you have a recent photo of yourself?\tAvez-vous une photo récente de vous ?\nDo you have any idea what's in the box?\tAs-tu la moindre idée de ce qu'il y a dans la boite ?\nDo you have any idea who would do this?\tAvez-vous la moindre idée de qui ferait ça ?\nDo you have any idea who would do this?\tAs-tu la moindre idée de qui ferait ça ?\nDo you have many friends here in Japan?\tAvez-vous beaucoup d'amis ici au Japon ?\nDo you know a good place to have lunch?\tConnaissez-vous un restaurant où l'on mange bien ?\nDo you know anything about your family?\tTu sais quelque chose sur ta famille ?\nDo you know anything about your family?\tSais-tu quelque chose de ta famille ?\nDo you know how much I give to charity?\tSavez-vous combien je verse aux œuvres de charité ?\nDo you know how my friends describe me?\tSais-tu comment mes amis me décrivent ?\nDo you know how my friends describe me?\tSavez-vous comment mes amis me décrivent ?\nDo you know how my friends describe me?\tSavez-vous comment mes amies me décrivent ?\nDo you know how my friends describe me?\tSais-tu comment mes amies me décrivent ?\nDo you know how to pronounce this word?\tConnaissez-vous la manière de prononcer ce mot ?\nDo you know where he bought his camera?\tSais-tu où il a acheté son appareil photo ?\nDo you know where he bought his camera?\tSavez-vous où il a acheté son appareil photo ?\nDo you know why this date is important?\tEst-ce que vous savez pourquoi cette date est importante ?\nDo you know why this date is important?\tSais-tu pourquoi cette date est importante ?\nDo you like caramel-flavored ice cream?\tAimez-vous la crème glacée au caramel?\nDo you need a hand with your suitcases?\tAvez-vous besoin d'un coup de main avec vos valises ?\nDo you need a hand with your suitcases?\tAs-tu besoin d'un coup de main avec tes valises ?\nDo you recognize the man in this photo?\tEst-ce que tu reconnais l'homme sur cette photo ?\nDo you remember what you were watching?\tTe rappelles-tu ce que tu étais en train de regarder ?\nDo you remember what you were watching?\tVous rappelez-vous ce que vous étiez en train de regarder ?\nDo you remember what you were watching?\tTe souviens-tu de ce que tu étais en train de regarder ?\nDo you remember what you were watching?\tVous souvenez-vous de ce que vous étiez en train de regarder ?\nDo you remember your father's birthday?\tTu te souviens de la date de naissance de ton père ?\nDo you see that house? That's my house.\tVois-tu cette maison ? C'est ma maison.\nDo you see that house? That's my house.\tVoyez-vous cette maison ? C'est ma maison.\nDo you take me for a complete beginner?\tTu me prends pour un parfait débutant ?\nDo you think I should ask Tom for help?\tPenses-tu que je devrais demander de l'aide à Tom ?\nDo you think I should ask Tom for help?\tPensez-vous que je devrais demander de l'aide à Tom ?\nDo you think Mary's skirt is too short?\tPenses-tu que la jupe de Mary est trop courte ?\nDo you think Mary's skirt is too short?\tPensez-vous que la jupe de Mary est trop courte ?\nDo you think Tom will like the concert?\tPenses-tu que Tom aimera le concert ?\nDo you think Tom will like the concert?\tPensez-vous que Tom aimera le concert ?\nDo you think it'll rain this afternoon?\tPenses-tu qu'il pleuvra cet après-midi ?\nDo you think it'll rain this afternoon?\tPensez-vous qu'il pleuvra cette après-midi ?\nDo you think the situation can improve?\tPenses-tu que la situation peut s'améliorer?\nDo you think the situation can improve?\tPenses-tu que la situation puisse s'améliorer?\nDo you think this is some kind of game?\tPenses-tu qu'il s'agit d'une sorte de jeu ?\nDo you think this is some kind of game?\tPensez-vous qu'il s'agisse d'un genre de jeu ?\nDo you think we will get there on time?\tCrois-tu que nous arriverons à temps ?\nDoctors were called to the White House.\tLes médecins furent appelés à la Maison-Blanche.\nDoes Tom really deserve to be punished?\tTom mérite-t-il vraiment d'être puni ?\nDoes anybody here have a bottle opener?\tEst-ce que quelqu'un ici a un décapsuleur ?\nDoes anybody know how the fire started?\tQuelqu'un sait-il comment le feu s'est déclenché ?\nDoes that price include soup and salad?\tEst-ce que ce prix inclut la soupe et la salade ?\nDoes that price include soup and salad?\tLe prix comprend-il la soupe et la salade ?\nDoes this bus go to the center of town?\tEst-ce que ce bus va en centre-ville ?\nDoes this bus go to the center of town?\tCe bus se rend-il au centre-ville ?\nDon't ask questions, just come with me.\tNe posez pas de questions, contentez-vous de venir avec moi !\nDon't ask questions, just come with me.\tNe pose pas de questions, contente-toi de venir avec moi !\nDon't believe everything that you hear.\tNe crois pas à tout ce que tu entends.\nDon't believe everything that you hear.\tNe croyez pas à tout ce que vous entendez.\nDon't come in my room without knocking.\tN'entre pas dans ma chambre sans frapper !\nDon't come in my room without knocking.\tN'entrez pas dans ma chambre sans frapper !\nDon't confuse astrology with astronomy.\tNe confonds pas l'astrologie avec l'astronomie.\nDon't confuse astrology with astronomy.\tNe confondez pas l'astrologie avec l'astronomie.\nDon't do anything you don't want to do.\tNe faites rien que vous ne vouliez pas faire.\nDon't do it! It's stupid and dangerous.\tNe le fais pas ! C'est stupide et dangereux.\nDon't do it! It's stupid and dangerous.\tNe le faites pas ! C'est stupide et dangereux.\nDon't forget to charge your cell phone.\tN'oubliez pas de charger votre portable !\nDon't forget to charge your cell phone.\tN'oublie pas de charger ton portable !\nDon't forget to take a camera with you.\tN'oublie pas de prendre un appareil photo avec toi.\nDon't handle my books with dirty hands.\tNe touchez pas mes livres avec des mains sales.\nDon't judge a person by his appearance.\tIl ne faut pas juger une personne à son apparence.\nDon't judge people by their appearance.\tNe juge pas quelqu'un sur son apparence.\nDon't knock it unless you try it first.\tNe le critique pas à moins de l'avoir d'abord essayé !\nDon't knock it unless you try it first.\tNe le critiquez pas à moins de l'avoir d'abord essayé !\nDon't let this opportunity pass you by.\tNe laisse pas passer cette opportunité.\nDon't phone me while I'm at the office.\tNe m'appelez pas quand je suis au bureau.\nDon't touch this with your dirty hands.\tN'y touchez pas avec vos mains sales !\nDon't touch this with your dirty hands.\tN'y touche pas avec tes mains sales !\nDon't trust him no matter what he says.\tNe le crois pas, quoi qu'il dise.\nDon't walk so quickly. I can't keep up.\tNe marchez pas si vite. Je ne peux pas suivre.\nDon't you get it? This isn't about you.\tNe comprends-tu pas ? Il ne s'agit pas de toi.\nDon't you get it? This isn't about you.\tNe comprenez-vous pas ? Il ne s'agit pas de vous.\nDon't you just hate this kind of movie?\tNe détestez-vous simplement pas ce genre de film ?\nDon't you just hate this kind of movie?\tNe détestes-tu simplement pas ce genre de film ?\nDrivers must observe the traffic rules.\tLes conducteurs doivent respecter le code de la route.\nDue to bad weather, the plane was late.\tL'avion a été en retard à cause du mauvais temps.\nEating too much is bad for your health.\tTrop manger est mauvais pour la santé.\nEveryone in the class climbed the hill.\tTout le monde dans la classe a grimpé la colline.\nEveryone in the classroom was coughing.\tTout le monde toussait, dans la salle de classe.\nEveryone thought we were going to lose.\tTout le monde pensait que nous allions perdre.\nEveryone was pushing, trying to escape.\tTout le monde poussait, essayant de s'échapper.\nEverything in this store is overpriced.\tTout dans ce magasin est hors de prix.\nEvidently, it's going to rain tomorrow.\tÉvidemment, il va pleuvoir demain.\nExcuse me, but I think this is my seat.\tExcusez-moi, mais je pense que c'est ma place.\nExpress yourself as clearly as you can.\tExprimez-vous le plus clairement possible.\nExpress yourself as clearly as you can.\tExprimez-vous aussi clairement que possible.\nExpress yourself as clearly as you can.\tExprime-toi le plus clairement possible.\nFeeling chilly, I turned on the heater.\tAyant froid, j'ai allumé le radiateur.\nFeeling the house shake, I ran outside.\tSentant la maison bouger, je suis sorti dehors en courant.\nFew people live to be ninety years old.\tPeu de gens vivent jusqu'à quatre-vingt-dix ans.\nFew people live to be ninety years old.\tPeu de gens vivent jusqu'à nonante ans.\nFill in the blanks with suitable words.\tRemplissez les blancs par des mots appropriés.\nFor three weeks, he ate nothing at all.\tDurant trois semaines, il ne mangea rien du tout.\nFriendship is the most precious of all.\tL'amitié est ce qu'il y a de plus précieux.\nGeneral Motors laid off 76,000 workers.\tGeneral Motors a licencié soixante-seize mille salariés.\nGet out of here before I call the cops.\tSors de là, avant que j'appelle les flics !\nGet out of here before I call the cops.\tSortez de là, avant que j'appelle les flics !\nGet out of here before I throw you out!\tVa-t-en avant que je te jette dehors !\nGive him an inch and he'll take a mile.\tDonne-lui la main, il te bouffera le bras !\nGive him an inch and he'll take a yard.\tDonnez-lui la main, il vous prendra le bras.\nGive me a little time to think it over.\tAccorde-moi un peu de temps pour y réfléchir.\nGive my regards to your aunt and uncle.\tTransmettez mon meilleur souvenir à votre tante et à votre oncle.\nGo at once, otherwise you will be late.\tAllez-y immédiatement, autrement vous serez en retard.\nGold had been discovered in California.\tDe l'or avait été découvert en Californie.\nGood lumber is hard to find these days.\tDu bon bois de charpente est difficile à trouver de nos jours.\nGuess what I ate for dinner last night.\tDevine ce que j'ai mangé à souper hier soir !\nGum got stuck to the bottom of my shoe.\tDu chewing-gum s'est collé à ma semelle.\nHappy is a man who marries a good wife.\tHeureux l'homme qui trouve une bonne épouse.\nHave there been any phone calls for me?\tY a-t-il eu des appels pour moi ?\nHave you brought your ID card with you?\tAvez-vous apporté votre carte d'identité ?\nHave you ever argued with your manager?\tVous êtes-vous déjà disputé avec votre directeur?\nHave you ever argued with your parents?\tT'es-tu déjà disputé avec tes parents ?\nHave you ever eaten at that restaurant?\tAs-tu jamais mangé dans ce restaurant ?\nHave you ever eaten at that restaurant?\tAs-tu jamais mangé à ce restaurant ?\nHave you ever eaten at that restaurant?\tAvez-vous jamais mangé dans ce restaurant ?\nHave you ever eaten at that restaurant?\tAvez-vous jamais mangé à ce restaurant ?\nHave you ever eaten at that restaurant?\tAs-tu jamais mangé dans ce restaurant-là ?\nHave you ever eaten at that restaurant?\tAs-tu jamais mangé à ce restaurant-là ?\nHave you ever eaten at that restaurant?\tAvez-vous jamais mangé dans ce restaurant-là ?\nHave you ever eaten at that restaurant?\tAvez-vous jamais mangé à ce restaurant-là ?\nHave you ever eaten at this restaurant?\tAs-tu jamais mangé dans ce restaurant ?\nHave you ever eaten at this restaurant?\tAs-tu jamais mangé à ce restaurant ?\nHave you ever eaten at this restaurant?\tAvez-vous jamais mangé dans ce restaurant ?\nHave you ever eaten at this restaurant?\tAvez-vous jamais mangé à ce restaurant ?\nHave you ever eaten at this restaurant?\tAs-tu jamais mangé dans ce restaurant-ci ?\nHave you ever eaten at this restaurant?\tAs-tu jamais mangé à ce restaurant-ci ?\nHave you ever eaten at this restaurant?\tAvez-vous jamais mangé dans ce restaurant-ci ?\nHave you ever gotten a speeding ticket?\tAs-tu jamais pris une amende pour excès de vitesse ?\nHave you ever gotten a speeding ticket?\tAvez-vous jamais pris une amende pour excès de vitesse ?\nHave you ever seen a tiger around here?\tAvez-vous déjà vu un tigre par ici ?\nHave you ever seen a tiger around here?\tAvez-vous déjà vu un tigre dans les environs ?\nHaving finished lunch, we went skating.\tAprès le déjeuner, nous sommes allés faire du patinage.\nHaving nothing to do, he went downtown.\tComme il n'avait rien à faire, il alla au centre-ville.\nHe accelerated his car and overtook me.\tIl a accéléré sa voiture et m'a dépassé.\nHe acknowledged my presence with a nod.\tIl a accepté ma présence d'un signe de la tête.\nHe acquired education late in his life.\tSon éducation s'est faite tard.\nHe adjusted the telescope to his sight.\tIl ajusta le télescope à sa vue.\nHe ate rice twice a day for many years.\tIl a mangé du riz deux fois par jour pendant de nombreuses années.\nHe ate rice twice a day for many years.\tIl mangea du riz deux fois par jour pendant de nombreuses années.\nHe attributed his success to good luck.\tIl attribua son succès à la chance.\nHe attributed his success to good luck.\tIl a attribué son succès à la bonne fortune.\nHe attributes his success to good luck.\tIl attribue son succès à la bonne fortune.\nHe became ever more famous as a critic.\tIl devint de plus en plus célèbre comme critique.\nHe became ever more famous as a critic.\tIl devint toujours plus célèbre comme critique.\nHe believes in the existence of ghosts.\tIl croit aux fantômes.\nHe came at me with a knife in his hand.\tIl est venu vers moi avec un couteau en main.\nHe came to meet me yesterday afternoon.\tIl est venu me voir hier après-midi.\nHe can bend an iron rod with his hands.\tIl peut tordre une barre de fer de ses mains.\nHe can do anything he sets his mind to.\tIl est capable de réussir tout ce qu'il entreprend.\nHe can only pay twenty dollars at most.\tIl peut tout au plus payer vingt dollars.\nHe carved a Buddhist image out of wood.\tIl a sculpté une image bouddhiste dans du bois.\nHe caused his parents a lot of anxiety.\tIl a causé à ses parents beaucoup d'inquiétudes.\nHe chose three beautiful roses for her.\tIl choisit pour elle trois belles roses.\nHe climbed the tree without difficulty.\tIl grimpa à l'arbre sans difficulté.\nHe comes from a small but wealthy town.\tIl vient d'une ville petite mais prospère.\nHe compared the copy with the original.\tIl a comparé la copie à l'original.\nHe could not sleep because of the heat.\tIl ne pouvait pas dormir à cause de la chaleur.\nHe couldn't adapt to new circumstances.\tIl n'a pas pu s'adapter à de nouvelles circonstances.\nHe despised those who lived on welfare.\tIl méprisait ceux qui vivent des allocations.\nHe did not get up early in the morning.\tIl ne s'est pas levé tôt ce matin.\nHe didn't specify when he would return.\tIl n'a pas spécifié quand il reviendrait.\nHe died of a heart attack on the stage.\tIl est mort d'une crise cardiaque sur scène.\nHe does not know what it is to be poor.\tIl ne sait pas ce que c'est que d'être pauvre.\nHe doesn't have his feet on the ground.\tIl n'a pas les pieds sur terre.\nHe examined the spare parts one by one.\tIl examina les pièces détachées une à une.\nHe exchanged his old car for a new one.\tIl a échangé sa vieille voiture pour une nouvelle.\nHe explained the plan's main objective.\tIl a expliqué l'objectif principal de ce plan.\nHe expressed his belief in her honesty.\tIl exprima sa foi en son honnêteté.\nHe fainted in the middle of his speech.\tIl s'est évanoui au milieu de son discours.\nHe felt sad because he lost his father.\tIl se sentait triste parce qu'il a perdu son père.\nHe forgot that he bought her a present.\tIl oublia qu'il lui avait acheté un cadeau.\nHe gave an address to the nation on TV.\tIl s'adressa à la nation sur la télévision.\nHe gave me a brief outline of the plan.\tIl me donna un bref aperçu du projet.\nHe gave me all the money he had on him.\tIl me donna tout l'argent qu'il avait sur lui.\nHe gave the barking dog a vicious kick.\tIl donna au chien qui aboyait un méchant coup de pied.\nHe gets a kick out of reckless driving.\tIl prend plaisir à conduire comme un chauffard.\nHe gets a kick out of reckless driving.\tIl prend son pied à conduire comme un chauffard.\nHe got lost while walking in the woods.\tIl s'est perdu en marchant dans les bois.\nHe got lost while walking in the woods.\tIl se perdit en marchant dans les bois.\nHe had nothing to say, so he went away.\tIl n'avait rien à dire, alors il est parti.\nHe had the kindness to show me the way.\tIl eut la gentillesse de m'indiquer le chemin.\nHe has almost no money, but he gets by.\tIl n'a presque pas d'argent mais il se débrouille.\nHe has almost no money, but he gets by.\tIl n'a presque pas d'argent mais il s'en sort.\nHe has been sick in bed this past week.\tIl est resté au lit pendant toute la semaine.\nHe has made up his mind to buy the car.\tIl s'est décidé à acheter la voiture.\nHe has not yet recovered consciousness.\tIl n'a pas encore repris conscience.\nHe has promised never to be late again.\tIl a promis de ne plus jamais être en retard.\nHe has something to do with the matter.\tIl a quelque chose à voir avec ça.\nHe has the ability to make a good plan.\tIl a la capacité à élaborer un bon plan.\nHe held out a helping hand to the poor.\tIl a tendu la main aux pauvres.\nHe is a member of the parish committee.\tIl est membre du conseil paroissial.\nHe is accustomed to speaking in public.\tIl est habitué à parler en public.\nHe is always finding fault with others.\tIl trouve toujours à redire aux autres.\nHe is ashamed of his father being poor.\tIl a honte de la pauvreté de son père.\nHe is generally at home in the evening.\tIl est normalement chez lui le soir.\nHe is making great progress in English.\tIl fait de gros progrès en anglais.\nHe is neither for nor against the plan.\tIl n'est ni pour ni contre ce plan.\nHe is not as well off as he used to be.\tIl n'est pas aussi riche qu'avant.\nHe is planning to develop his business.\tIl prévoit de développer son affaire.\nHe is richer than anybody else in town.\tIl est plus riche que qui que ce soit d'autre en ville.\nHe is said to have been a good teacher.\tOn dit que c'était un bon professeur.\nHe is suffering from a serious illness.\tIl souffre d'une maladie grave.\nHe is the head of the sales department.\tIl est le chef du département de vente.\nHe is the spitting image of his father.\tC'est le portrait craché de son père.\nHe is totally dependent on his parents.\tIl dépend complètement de ses parents.\nHe is worthy to be captain of our team.\tIl est digne d'être le capitaine de notre équipe.\nHe kissed his daughter on the forehead.\tIl embrassa sa fille sur le front.\nHe knows how to captivate his audience.\tIl sait comment capturer l'attention de son public.\nHe left the room without saying a word.\tIl est sorti de la pièce sans dire un mot.\nHe left the room without saying a word.\tIl quitta la pièce sans mot dire.\nHe left the room without saying a word.\tIl sortit de la pièce sans dire un mot.\nHe likes drinking coffee without sugar.\tIl aime boire son café sans sucre.\nHe likes watching baseball games on TV.\tIl aime regarder des matchs de baseball à la télévision.\nHe lost his life in a traffic accident.\tIl perdit la vie dans un accident de voiture.\nHe makes the most of his opportunities.\tIl met à profit ses opportunités.\nHe makes the most of his opportunities.\tIl tire le meilleur parti de ses opportunités.\nHe muttered something under his breath.\tIl marmonna quelque chose à mi-voix.\nHe muttered something under his breath.\tIl grommela quelque chose à voix basse.\nHe needs to be the center of attention.\tIl a besoin d'être au centre de l'attention.\nHe offered more than could be expected.\tIl offrit plus que ne pouvait être espéré.\nHe offered more than could be expected.\tIl a offert plus que ne pourrait être espéré.\nHe offered more than could be expected.\tIl a proposé davantage que ce qui pouvait être attendu.\nHe often takes his children to the zoo.\tIl emmène souvent ses enfants au zoo.\nHe prepared for his imminent departure.\tIl se préparait en vue de son départ imminent.\nHe promised not to tell that to anyone.\tIl promit de ne le dire à quiconque.\nHe put his hand gently on her shoulder.\tIl a posé tendrement sa main sur son épaule.\nHe quarrels with every person he knows.\tIl se querelle avec toutes les personnes qu'il connaît.\nHe realized the magnitude of his crime.\tIl prit conscience de l'ampleur de son crime.\nHe realized the magnitude of his crime.\tIl a pris conscience de l'ampleur de son crime.\nHe remembers writing to her every week.\tIl se souvient lui avoir écrit toutes les semaines.\nHe responded to her offer with a laugh.\tIl a répondu à sa proposition par des rires.\nHe saw there what he had dreamed about.\tIl vit là ce dont il avait rêvé.\nHe says he has a bone to pick with you.\tIl dit qu'il a un compte à régler avec toi.\nHe seems satisfied with my explanation.\tIl semble satisfait de mon explication.\nHe seems to be involved in that matter.\tIl semble être impliqué dans cette affaire.\nHe seldom, if ever, goes to the movies.\tIl va rarement, ou presque jamais, au cinéma.\nHe should get to the office in an hour.\tIl devrait arriver au bureau dans une heure.\nHe showed me a lot of beautiful photos.\tIl m'a montré beaucoup de belles photos.\nHe solved all those problems with ease.\tIl a résolu tous ces problèmes avec facilité.\nHe solved all those problems with ease.\tIl résolut tous ces problèmes avec facilité.\nHe speaks English with a German accent.\tIl parle anglais avec un accent allemand.\nHe speaks English with a German accent.\tIl parle l'anglais avec un accent allemand.\nHe still hasn't responded to my letter.\tIl n'a pas encore répondu à ma lettre.\nHe studies hardest of all the students.\tDe tous les étudiants, c'est lui qui étudie le plus dur.\nHe suggested that we take a short rest.\tIl a suggéré que nous prenions un petit repos.\nHe thoughtfully gave me a helping hand.\tIl m'a généreusement donné un coup de main.\nHe threatened to take everything I own.\tIl menaça de prendre tout ce que je possédais.\nHe threatened to take everything I own.\tIl a menacé de prendre tout ce que je possédais.\nHe told his wife not to buy on impulse.\tIl dit à sa femme de ne pas acheter par impulsion.\nHe took pictures of me with his camera.\tIl prit une photo de moi avec son appareil.\nHe turned his attention to the picture.\tIl dirigea son attention vers le tableau.\nHe turned his attention to the picture.\tIl dirigea son attention vers l'image.\nHe turned his attention to the picture.\tIl dirigea son attention sur la photo.\nHe turned off all the lights at eleven.\tIl éteignit toutes les lumières à onze heures.\nHe turned out to be nothing but a liar.\tIl s'avéra n'être autre qu'un menteur.\nHe turned over the business to his son.\tIl a légué l'entreprise à son fils.\nHe turned pale when he heard that news.\tIl devint pâle lorsqu'il entendit ces nouvelles.\nHe turned pale when he heard that news.\tIl est devenu pâle lorsqu'il a entendu ces nouvelles.\nHe urged his government not to sign it.\tIl pressa son gouvernement de ne pas le signer.\nHe used to tell me stories about India.\tIl avait l'habitude de me raconter des histoires sur l'Inde.\nHe visited Japan when he was president.\tIl a visité le Japon quand il était président.\nHe wants to participate in the contest.\tIl voudrait participer à la compétition.\nHe was advanced to the rank of general.\tIl avait été promu au rang de général.\nHe was convicted on trumped up charges.\tIl fut condamné sur la base d'accusations inventées de toutes pièces.\nHe was hit by a car and died instantly.\tIl a été percuté par une voiture et est mort sur le coup.\nHe was holding a large box in his arms.\tIl portait une grande boîte dans ses bras.\nHe was just in time for the last train.\tIl est arrivé juste à temps pour le dernier train.\nHe was never to see his homeland again.\tIl n'allait plus jamais revoir son pays.\nHe was surprised at the sight of blood.\tIl fut surpris à la vue du sang.\nHe was terribly poor when he was young.\tIl était horriblement pauvre quand il était jeune.\nHe was transported to a local hospital.\tIl fut transporté vers un hôpital local.\nHe was transported to a local hospital.\tIl a été transporté vers un hôpital local.\nHe went to school only for a few years.\tIl est allé à l'école seulement pendant quelques années.\nHe will provide you with what you need.\tIl vous procurera ce dont vous avez besoin.\nHe will soon be past playing with toys.\tL'époque où il joue avec des jouets sera bientôt révolue.\nHe will soon be past playing with toys.\tLe temps où il joue avec des jouets sera bientôt révolu.\nHe worked as a diplomat for many years.\tIl a travaillé comme diplomate durant de nombreuses années.\nHe would be very glad to hear the news.\tIl sera très ravi d'entendre les nouvelles.\nHe'd be the last one to disappoint you.\tCe serait le dernier à te décevoir.\nHe's a professor of biology at Harvard.\tIl est professeur de biologie à Harvard.\nHe's a singer that's loved by everyone.\tC'est un chanteur aimé de tous.\nHe's always complaining about the food.\tIl se plaint toujours de la nourriture.\nHe's been divorced for 2 years already.\tIl est divorcé depuis deux ans déjà.\nHe's been waiting here for a long time.\tIl a longuement attendu ici.\nHe's been waiting here for a long time.\tÇa fait longtemps qu'il attend ici.\nHe's financially dependent on his wife.\tIl dépend financièrement de son épouse.\nHe's got a rap sheet as long as my arm.\tIl a un casier aussi long que mon bras.\nHe's had some very good results lately.\tIl a eu de très bons résultats, ces derniers temps.\nHe's the most popular boy in the class.\tIl est le garçon le plus apprécié de la classe.\nHello, is the accountant there, please?\tAllo, le comptable est-il là ?\nHer beauty exposed her to many dangers.\tSa beauté l'exposait à de nombreux dangers.\nHer blue shoes go well with that dress.\tSes chaussures bleues vont bien avec cette robe.\nHer composition was free from mistakes.\tSa composition était sans erreur.\nHer friends waited for her by the gate.\tSes amis l'attendaient à la porte.\nHer friends waited for her by the gate.\tSes amies l'attendaient à la porte.\nHer house is at the foot of a mountain.\tSa maison est au pied d'une montagne.\nHer new novel has become a best seller.\tSon nouveau roman est devenu un best-seller.\nHer novel was translated into Japanese.\tSon roman a été traduit en japonais.\nHer stern look got him to quit talking.\tSon regard sévère l'a fait se taire.\nHis bicycle is different from this one.\tSon vélo est différent de celui-ci.\nHis brother is more patient than he is.\tSon frère est plus patient que lui.\nHis brother is more patient than he is.\tSon frère est plus patient qu'il ne l'est.\nHis daughter has become a pretty woman.\tSa fille est devenue une belle femme.\nHis death was a great loss to our firm.\tSon décès fut une grosse perte pour notre entreprise.\nHis doctor advised him to quit smoking.\tSon médecin lui conseilla d'arrêter de fumer.\nHis essay was concise and to the point.\tSa dissertation était concise et pertinente.\nHis grades have improved significantly.\tSes notes se sont améliorées de manière significative.\nHis memory never ceases to astonish me.\tSa mémoire ne cesse jamais de m'étonner.\nHis name is known all over the country.\tSon nom est connu dans tout le pays.\nHis name is very difficult to remember.\tSon nom est très difficile à se rappeler.\nHis new novel has become a best-seller.\tSon nouveau roman est devenu une des meilleures ventes.\nHis novel was translated into Japanese.\tSon roman a été traduit en japonais.\nHis opinions aren't worth listening to.\tSes idées ne valent pas la peine d'être écoutées.\nHis request was equivalent to an order.\tSes désirs étaient des ordres.\nHis sudden appearance surprised us all.\tSa subite apparition nous surprit tous.\nHistory is more complex than you think.\tL'Histoire est plus compliquée que tu ne penses.\nHistory is more complex than you think.\tL'Histoire est plus compliquée que vous ne pensez.\nHonesty, I believe, is the best policy.\tL'honnêteté, je pense, est la meilleure stratégie.\nHow about going for a walk after lunch?\tPourquoi ne pas aller marcher après déjeuner ?\nHow about going for a walk after lunch?\tQue dites-vous d'une promenade après déjeuner ?\nHow about going for a walk after lunch?\tQue penses-tu de marcher après le déjeuner ?\nHow about going to see a movie tonight?\tÇa te dit qu'on se fasse une toile ce soir ?\nHow about going to see a movie tonight?\tÇa te dit d'aller au cinéma ce soir ?\nHow about going to see a movie tonight?\tEt si on allait voir un film ce soir ?\nHow about going to see a movie tonight?\tEt si nous allions voir un film ce soir ?\nHow about going to see a movie tonight?\tQue dis-tu d'aller voir un film ce soir ?\nHow about going to see a movie tonight?\tQue dites-vous d'aller voir un film ce soir ?\nHow about going to see a movie with me?\tEt si tu venais au cinéma avec moi ?\nHow about playing tennis next Saturday?\tEt si on jouait au tennis samedi prochain ?\nHow come you didn't call me last night?\tComment se fait-il que tu ne m'as pas appelé la nuit dernière ?\nHow come you didn't call me last night?\tComment se fait-il que tu ne m'as pas appelée la nuit dernière ?\nHow come you didn't call me last night?\tPourquoi ne m'as-tu pas appelé hier soir ?\nHow come you didn't call me last night?\tPourquoi ne m'as-tu pas appelé la nuit dernière ?\nHow come you didn't call me last night?\tPourquoi ne m'avez-vous pas appelé la nuit dernière ?\nHow come you didn't call me last night?\tPourquoi ne m'avez-vous pas appelé hier soir ?\nHow come you didn't call me last night?\tPourquoi ne m'avez-vous pas appelée la nuit dernière ?\nHow come you didn't call me last night?\tPourquoi ne m'avez-vous pas appelée hier soir ?\nHow come you didn't call me last night?\tPourquoi ne m'as-tu pas appelée la nuit dernière ?\nHow come you didn't call me last night?\tPourquoi ne m'as-tu pas appelée hier soir ?\nHow did Tom convince Mary to marry him?\tComment Tom a-t-il convaincu Mary de l'épouser ?\nHow did you end up being Tom's manager?\tComment as-tu fini par être le manager de Tom ?\nHow did you get into this line of work?\tComment avez-vous atterri dans ce métier ?\nHow did you spend your winter vacation?\tQu'as-tu fait pendant tes vacances d'hiver ?\nHow do we have to proceed in this case?\tComment devons-nous procéder dans ce cas ?\nHow do you know they're looking for us?\tComment sais-tu qu'ils nous recherchent ?\nHow do you know they're looking for us?\tComment sais-tu qu'elles nous recherchent ?\nHow do you know they're looking for us?\tComment sais-tu que c'est nous qu'ils recherchent ?\nHow do you know they're looking for us?\tComment sais-tu que c'est nous qu'elles recherchent ?\nHow do you know they're looking for us?\tComment savez-vous que c'est nous qu'ils recherchent ?\nHow do you know they're looking for us?\tComment savez-vous que c'est nous qu'elles recherchent ?\nHow do you know they're looking for us?\tComment savez-vous qu'elles nous recherchent ?\nHow do you know they're looking for us?\tComment savez-vous qu'ils nous recherchent ?\nHow do you say \"thank you\" in Japanese?\tComment dit-on « merci » en japonais ?\nHow do you usually spend your weekends?\tComment passez-vous la fin de semaine, d'habitude ?\nHow far away do you think that ship is?\tÀ quelle distance pensez-vous que soit le bateau ?\nHow far away do you think that ship is?\tA quelle distance penses-tu que soit le bateau ?\nHow far is it from here to the station?\tCombien y a-t-il d'ici à la gare ?\nHow far is it from here to your school?\tQuelle distance y a-t-il d'ici à ton école ?\nHow far is it from here to your school?\tÀ quelle distance d'ici est ton école ?\nHow have you been getting along lately?\tComment t'en sors-tu, ces temps-ci ?\nHow have you been getting along lately?\tComment vous en sortez-vous, ces temps-ci ?\nHow have you been getting along lately?\tComment vous entendez-vous ces derniers temps ?\nHow long are we just going to sit here?\tCombien de temps allons-nous passer à juste être assis là ?\nHow long are you planning to stay here?\tCombien de temps penses-tu rester ici ?\nHow long do you plan to stay in Boston?\tCombien de temps prévois-tu de rester à Boston ?\nHow long do you plan to stay in Boston?\tCombien de temps prévoyez-vous de rester à Boston ?\nHow long does it take to get to Boston?\tCombien de temps faut-il pour se rendre à Boston?\nHow long have you been living in Tokyo?\tDepuis combien de temps vivez-vous à Tokyo ?\nHow many books do you have in your bag?\tCombien de livres avez-vous dans votre sac ?\nHow many books do you have in your bag?\tCombien de livres as-tu dans ton sac ?\nHow many computers have you had so far?\tCombien d'ordinateurs as-tu eu jusqu'à présent ?\nHow many computers have you had so far?\tCombien d'ordinateurs avez-vous eu jusqu'à présent ?\nHow many counties are there in Florida?\tCombien de comtés y a-t-il en Floride ?\nHow many counties are there in Florida?\tCombien la Floride compte-t-elle de comtés ?\nHow many days are there in a leap year?\tCombien de jours compte une année bissextile ?\nHow many eggs are there in the kitchen?\tCombien y a-t-il d'œufs dans la cuisine ?\nHow many idioms have we studied so far?\tCombien d'idiomes avons-nous étudiés jusqu'ici ?\nHow many of them survived is not known.\tCombien d'entre eux ont survécu est incertain.\nHow many of these things have you made?\tCombien d'entre ces choses avez-vous fabriquées ?\nHow many of these things have you made?\tCombien d'entre ces choses avez-vous réalisées ?\nHow many pieces of baggage do you have?\tCombien de bagages avez-vous ?\nHow many pockets does that jacket have?\tCombien de poches cette veste a-t-elle ?\nHow many rooms are there in your house?\tCombien de pièces y a-t-il dans votre maison ?\nHow many slices of meat would you like?\tCombien de tranches de viande voudriez-vous ?\nHow many times a year do you go skiing?\tCombien de fois par an allez-vous skier ?\nHow many times a year do you go skiing?\tCombien de fois par an vas-tu skier ?\nHow many times have you been to Europe?\tCombien de fois as-tu été en Europe ?\nHow many years did Tom spend in Boston?\tCombien d'années Tom a-t-il passé à Boston ?\nHow much are you being paid to do this?\tCombien êtes-vous payé pour faire ceci ?\nHow much are you being paid to do this?\tCombien êtes-vous payés pour faire ceci ?\nHow much are you being paid to do this?\tCombien es-tu payée pour faire ça ?\nHow much time do we have before dinner?\tCombien de temps avons-nous avant le dîner ?\nHow much time do you spend on Facebook?\tCombien de temps passez-vous sur Facebook ?\nHow soon can you have this dress ready?\tDans combien de temps cette robe sera-t-elle prête ?\nHurry up, or you'll be late for school.\tDépêche-toi, ou tu seras en retard pour l'école.\nI accept, but only under one condition.\tJ'accepte, mais à une condition.\nI actually think it's a very good idea.\tJe pense en réalité que c'est une très bonne idée.\nI actually think it's a very good idea.\tJe pense en réalité qu'il s'agit d'une très bonne idée.\nI almost left my umbrella in the train.\tJ'ai failli oublier mon parapluie dans le train.\nI almost stepped on a skunk last night.\tJ'ai failli marcher sur une moufette hier soir.\nI always arrive a little ahead of time.\tJ'arrive toujours un peu en avance.\nI always buy expensive items on credit.\tJ'achète toujours les articles onéreux à crédit.\nI am Finnish, but I speak also Swedish.\tJe suis Finlandais, mais je parle aussi suédois.\nI am Finnish, but I speak also Swedish.\tJe suis Finlandais, mais je parle aussi le suédois.\nI am a man who can't stand being alone.\tJe suis un homme qui ne supporte pas d'être seul.\nI am certain that he will quit his job.\tJe suis sûr qu'il va démissionner.\nI am going to make him a serious offer.\tJe vais lui faire une proposition sérieuse.\nI am going to see the dentist tomorrow.\tJe vais chez le dentiste demain.\nI am grateful to you for your kindness.\tJe te suis reconnaissant pour ta gentillesse.\nI am grateful to you for your kindness.\tJe vous suis reconnaissant de votre gentillesse.\nI am in charge of the third-year class.\tJe suis responsable du cours de troisième année.\nI am much obliged to you for your help.\tJ'apprécie beaucoup votre aide.\nI am much obliged to you for your help.\tJ'apprécie beaucoup ton aide.\nI am so sorry to have kept you waiting.\tJe suis vraiment désolé de t'avoir fait attendre.\nI am so sorry to have kept you waiting.\tJe suis tellement désolé de vous avoir fait attendre.\nI am so sorry to have kept you waiting.\tJe suis tellement désolée de vous avoir fait attendre.\nI am supposed to go to Tokyo next week.\tJe suis supposé aller à Tokyo la semaine prochaine.\nI am to take over my father's business.\tJe vais reprendre l'affaire de mon père.\nI appreciate what you are trying to do.\tJe suis reconnaissant pour ce que tu essaies de faire.\nI appreciate what you are trying to do.\tJe suis reconnaissante pour ce que tu essaies de faire.\nI appreciate what you are trying to do.\tJe suis reconnaissant pour ce que vous essayez de faire.\nI appreciate what you are trying to do.\tJe suis reconnaissante pour ce que vous essayez de faire.\nI appreciate you trying to cheer me up.\tC'est sympa de ta part d'essayer de me remonter le moral.\nI appreciate you trying to cheer me up.\tC'est sympa de votre part d'essayer de me remonter le moral.\nI appreciate your trying to protect me.\tC'est sympa de ta part d'essayer de me protéger.\nI appreciate your trying to protect me.\tC'est sympa de votre part d'essayer de me protéger.\nI asked her to call me at five o'clock.\tJe lui ai demandé de m'appeler à cinq heures.\nI asked him where I should park my car.\tJe lui ai demandé où je pourrais garer ma voiture.\nI asked the boy to throw the ball back.\tJ'ai demandé au garçon de me renvoyer le ballon.\nI ate absolutely nothing the whole day.\tJe n'ai absolument rien mangé de toute la journée.\nI believe congratulations are in order.\tJe crois que cela mérite des félicitations.\nI bet Tom doesn't sleep a wink tonight.\tJe parie que Tom n'arrive pas à fermer l'œil, ce soir.\nI bumped into an old friend on the bus.\tJe suis tombé sur un vieil ami dans le bus.\nI called my mother up from the station.\tJ’ai téléphoné à ma mère de la gare.\nI came upon a rare stamp at that store.\tJ'ai trouvé un timbre rare dans ce magasin.\nI came upon a rare stamp at that store.\tJe suis tombé sur un timbre rare dans cette échoppe.\nI can feel my pulse quickening already.\tJe peux déjà sentir mon pouls s'accélérer.\nI can give you some useful information.\tJe peux vous donner des informations utiles.\nI can give you some useful information.\tJe peux te donner quelques informations utiles.\nI can give you something for your pain.\tJe peux te donner quelque chose pour ta douleur.\nI can give you something for your pain.\tJe peux vous donner quelque chose pour votre douleur.\nI can remember the warmth of her hands.\tJe peux me souvenir de la chaleur de ses mains.\nI can resist everything but temptation.\tJe peux résister à tout, sauf à la tentation.\nI can rip you apart with my bare hands.\tJe peux te dépecer à mains nues.\nI can't afford to buy another computer.\tJe n'ai pas les moyens d'acheter un autre ordinateur.\nI can't bear the thought of losing you.\tJe n'arrive pas à supporter l'idée de te perdre.\nI can't bear the thought of losing you.\tJe n'arrive pas à supporter l'idée de vous perdre.\nI can't believe it's Christmas already.\tJe n'arrive pas à croire que ce soit déjà Noël.\nI can't believe that actually happened.\tJe n'arrive pas à croire que ça ait vraiment eu lieu.\nI can't believe that actually happened.\tJe n'arrive pas à croire que ça soit vraiment survenu.\nI can't believe this is taking so long.\tJe n'arrive pas à croire que ça prenne autant de temps.\nI can't believe you actually said that.\tJe n'arrive pas à croire que tu aies vraiment dit ça.\nI can't believe you actually said that.\tJe n'arrive pas à croire que vous ayez vraiment dit ça.\nI can't believe you're getting married.\tJe n'arrive pas à croire que vous vous mariiez.\nI can't believe you're getting married.\tJe n'arrive pas à croire que tu te maries.\nI can't change what happened yesterday.\tJe ne peux pas changer ce qui s'est passé hier.\nI can't conceive of living without him.\tJe ne peux imaginer vivre sans lui.\nI can't continue to ignore the problem.\tJe ne peux pas continuer à ignorer le problème.\nI can't deal with this problem anymore.\tJe n'arrive plus à gérer ce problème.\nI can't distinguish a frog from a toad.\tJe ne suis pas capable de faire la différence entre une grenouille et un crapaud.\nI can't forget about that stupid movie.\tJe n'arrive pas à oublier ce film stupide.\nI can't forget about that stupid movie.\tJe ne parviens pas à oublier ce film stupide.\nI can't get that melody out of my head.\tJe ne parviens pas à m'enlever cette mélodie de la tête.\nI can't get that melody out of my head.\tJe n'arrive pas à m'enlever cette mélodie de la tête.\nI can't help feeling something's wrong.\tJe ne peux pas m'empêcher de sentir que quelque chose ne va pas.\nI can't help feeling something's wrong.\tJe ne peux m'empêcher de sentir que quelque chose ne va pas.\nI can't help you if you don't trust me.\tJe ne peux pas vous aider si vous ne me faites pas confiance.\nI can't help you if you don't trust me.\tJe ne peux vous aider si vous ne me faites pas confiance.\nI can't help you if you don't trust me.\tJe ne peux pas t'aider si tu ne me fais pas confiance.\nI can't help you if you don't trust me.\tJe ne peux t'aider si tu ne me fais pas confiance.\nI can't imagine life on another planet.\tJ'ai du mal à concevoir qu'il y ait de la vie sur une autre planète.\nI can't put up with this noise anymore.\tJe ne peux plus supporter ce bruit.\nI can't remember how to spell her name.\tJe n'arrive pas à me rappeler comment épeler son nom.\nI can't see anything with my right eye.\tJe ne vois rien du tout de mon œil droit.\nI can't see the road signs in this fog.\tJe ne peux pas voir les panneaux de signalisation avec ce brouillard.\nI can't stand to see animals be teased.\tJe ne supporte pas de voir des animaux être taquinés.\nI can't tell you what an honor this is.\tJe ne peux pas vous dire quel honneur c'est pour moi.\nI can't tell you what an honor this is.\tJe ne peux pas te dire quel honneur c'est pour moi.\nI can't tell you what you want to hear.\tJe ne peux pas te dire ce que tu veux entendre.\nI can't tell you what you want to hear.\tJe ne peux pas vous dire ce que vous voulez entendre.\nI can't understand this sign's meaning.\tJe ne comprends pas la signification de ce signe.\nI caught a glimpse of him from the bus.\tJe l'ai aperçu du bus.\nI caught a glimpse of him in the crowd.\tJe l'ai vu brièvement dans la foule.\nI caught a glimpse of him in the crowd.\tJe le vis brièvement dans la foule.\nI cleared my throat, but no words came.\tJe m'éclaircis la gorge mais aucun mot ne me vint.\nI could have done it without your help.\tJ'aurais pu y arriver sans votre aide.\nI could have done it without your help.\tJ'aurais pu le faire sans ton aide.\nI could not sleep because of the noise.\tJe n'ai pas pu dormir à cause du bruit.\nI could really use a change in scenery!\tUn changement de décor ne me ferait vraiment pas de mal !\nI could really use a change in scenery!\tUn changement de décor ne serait vraiment pas du luxe, pour moi !\nI couldn't eat fish when I was a child.\tJe ne pouvais pas manger de poisson quand j'étais petit.\nI couldn't find what I was looking for.\tJe n'ai pas pu trouver ce que je cherchais.\nI couldn't get the point of his speech.\tJe n'ai pas compris les points essentiels de son discours.\nI dance in my living room all the time.\tJe danse constamment dans mon salon.\nI dance in my living room all the time.\tJe passe la plupart de mon temps à danser dans mon salon.\nI decided to subscribe to the magazine.\tJ'ai décidé de m'abonner au magazine.\nI didn't answer any of Tom's questions.\tJe n'ai répondu à aucune des questions de Tom.\nI didn't answer any of Tom's questions.\tJe ne répondis à aucune des questions de Tom.\nI didn't feel well, but I went to work.\tJe ne me sentais pas bien, mais je suis allé travailler.\nI didn't know where to get off the bus.\tJe ne savais pas où descendre du car.\nI didn't take part in the conversation.\tJe n'ai pas pris part à la conversation.\nI didn't think anything was suspicious.\tJe n'y trouvai rien de suspect.\nI didn't understand what was happening.\tJe ne compris pas ce qui se produisait.\nI didn't understand what was happening.\tJe ne compris pas ce qui se passait.\nI didn't understand what was happening.\tJe n'ai pas compris ce qui se produisait.\nI didn't understand what was happening.\tJe n'ai pas compris ce qui se passait.\nI didn't want to disappoint my parents.\tJe ne voulais pas décevoir mes parents.\nI dislike living in such a noisy place.\tJe n'aime pas vivre dans un endroit si bruyant.\nI dislike living in such a noisy place.\tÇa me déplaît de résider dans un endroit aussi bruyant.\nI do not even know what to say to that.\tJe ne sais même pas quoi dire, là.\nI do not like the way he treats others.\tJe n'aime pas la façon qu'il a de traiter les autres.\nI don't agree with your methods at all.\tJe ne suis pas du tout d'accord avec vos méthodes.\nI don't believe I'm even standing here.\tJe ne parviens pas à croire que je me tienne même ici.\nI don't care about any of those things.\tJe ne me soucie d'aucune de ces choses.\nI don't care how you do it. Just do it.\tJe me fiche de comment vous le faites. Simplement, faites-le !\nI don't care how you do it. Just do it.\tJe me fiche de comment tu le fais. Simplement, fais-le !\nI don't care if people think I'm weird.\tJe me fiche que les gens pensent que je suis bizarre.\nI don't feel like doing anything today.\tJe n'ai pas envie de faire quoi que ce soit, aujourd'hui.\nI don't feel like going out these days.\tJe n'ai pas envie de sortir en ce moment.\nI don't get the meaning of all of this.\tJe ne comprends pas le sens de tout ça.\nI don't get what the fuss is all about.\tJe ne pige pas pourquoi on fait toutes ces histoires.\nI don't have a car, but my sister does.\tJe n'ai pas de voiture mais ma sœur, oui.\nI don't have a good feeling about this.\tJe n'ai pas une bonne impression à ce propos.\nI don't have an alibi for Monday night.\tJe n'ai pas d'alibi pour lundi soir.\nI don't have as much experience as you.\tJe n'ai pas autant d'expérience que toi.\nI don't have enough money to advertise.\tJe ne dispose pas d'assez d'argent pour faire de la publicité.\nI don't intend to answer any questions.\tJe n'ai pas l'intention de répondre à de quelconques questions.\nI don't know anybody here in this town.\tJe ne connais personne ici dans cette ville.\nI don't know anything about the future.\tJe ne sais rien du futur.\nI don't know anything about the future.\tJ'ignore tout du futur.\nI don't know either of the two sisters.\tJe ne connais aucune des deux sœurs.\nI don't know exactly when I'll be back.\tJe ne sais pas exactement quand je serai de retour.\nI don't know how to pronounce his name.\tJe ne sais pas comme prononcer son nom.\nI don't know what I'm going to do next.\tJ'ignore ce que je vais faire ensuite.\nI don't know what else I could've done.\tJe ne sais pas ce que j'aurais pu faire d'autre.\nI don't know what to do or what to say.\tJe ne sais ni quoi faire ni quoi dire.\nI don't know what you're interested in.\tJe ne sais pas ce qui t'intéresse.\nI don't know what you're interested in.\tJe ne sais pas ce qui vous intéresse.\nI don't know what you're talking about.\tJe ne sais pas de quoi tu parles.\nI don't know what you're talking about.\tJ'ignore de quoi vous parlez.\nI don't know what you're talking about.\tJe ne sais pas de quoi vous parlez.\nI don't know what you're talking about.\tJ'ignore de quoi tu parles.\nI don't know what's the matter with me.\tJ'ignore ce qui m'arrive.\nI don't know where to go or what to do.\tJe ne sais ni où aller, ni que faire.\nI don't know where to go or what to do.\tJe ne sais où me rendre ni que faire.\nI don't know whether it is true or not.\tJe ne sais pas si c'est vrai ou non.\nI don't know why I even bother anymore.\tJ'ignore pourquoi je m'en soucie même encore.\nI don't like Tom and I don't trust him.\tJe n'aime pas Tom et je ne lui fais pas confiance.\nI don't like leaving the job half done.\tJe n'aime pas laisser le boulot à moitié fait.\nI don't really want to talk about that.\tJe ne veux pas vraiment parler de cela.\nI don't recall asking for your opinion.\tJe ne me rappelle pas avoir requis votre opinion.\nI don't recall asking for your opinion.\tJe ne me rappelle pas avoir requis ton opinion.\nI don't remember what happened anymore.\tJe ne me souviens plus de ce qu'il s'est passé.\nI don't see how that could be possible.\tJe ne vois pas comment ça pourrait être possible.\nI don't see how that could be possible.\tJe ne vois pas comment cela pourrait être possible.\nI don't see how that would be possible.\tJe ne vois pas comment ce serait possible.\nI don't see how you can eat that stuff.\tJe ne comprends pas comment tu peux manger ce truc.\nI don't see what's so great about that.\tJe ne vois pas ce qui est si génial, à ce propos.\nI don't think I can get along with him.\tJe ne pense pas pouvoir m'entendre avec lui.\nI don't think I can help you very much.\tJe ne pense pas que je puisse beaucoup t'aider.\nI don't think I can help you very much.\tJe ne pense pas pouvoir beaucoup vous aider.\nI don't think I could live without you.\tJe ne pense pas que je pourrais vivre sans toi.\nI don't think I could live without you.\tJe ne pense pas que je puisse vivre sans toi.\nI don't think I could live without you.\tJe ne pense pas que je pourrais vivre sans vous.\nI don't think I could live without you.\tJe ne pense pas que je puisse vivre sans vous.\nI don't think I'd like you as a friend.\tJe ne pense pas que je t'apprécierais en tant qu'ami.\nI don't think I'd like you as a friend.\tJe ne pense pas que je t'apprécierais en tant qu'amie.\nI don't think I'd like you as a friend.\tJe ne pense pas que je vous apprécierais en tant qu'ami.\nI don't think I'd like you as a friend.\tJe ne pense pas que je vous apprécierais en tant qu'amie.\nI don't think Tom knows how to do that.\tJe ne pense pas que Tom sache comment faire ça.\nI don't think Tom will ever forgive me.\tJe ne pense pas que Tom me pardonnera un jour.\nI don't think we need to do that today.\tJe ne pense pas que nous ayons besoin de faire ça aujourd'hui.\nI don't think you did this by yourself.\tJe ne pense pas que tu aies fait ceci par toi-même.\nI don't think you did this by yourself.\tJe ne pense pas que vous ayez fait ceci par vous-même.\nI don't think you did this by yourself.\tJe ne pense pas que vous ayez fait ceci par vous-mêmes.\nI don't think you should quit your job.\tJe ne pense pas que vous devriez quitter votre travail.\nI don't think you should quit your job.\tJe ne pense pas que tu devrais quitter ton travail.\nI don't understand what you are saying.\tJe ne comprends pas ce que tu es en train de dire.\nI don't understand what you are saying.\tJe ne comprends pas ce que vous êtes en train de dire.\nI don't understand what you want to do.\tJe ne comprends pas ce que tu veux faire.\nI don't want anything happening to you.\tJe ne veux pas que quoi que ce soit vous arrive.\nI don't want anything happening to you.\tJe ne veux pas que quoi que ce soit t'arrive.\nI don't want to be seen in his company.\tJe ne veux pas être vue en sa compagnie.\nI don't want to be tied to one company.\tJe ne veux pas être lié à une seule entreprise.\nI don't want to be tied to one company.\tJe ne veux pas être lié à une seule société.\nI don't want to be tied to one company.\tJe ne voudrais pas être liée à une unique société.\nI don't want to do any of those things.\tJe ne veux faire aucune de ces choses.\nI don't want to live my life like this.\tJe ne veux pas vivre ma vie comme cela.\nI don't want to talk about the weather.\tJe ne veux pas parler du temps.\nI don't want to talk to you about this.\tJe n'ai pas envie de parler de ça avec toi.\nI don't want to talk to you about this.\tJe n'ai pas envie de parler de ça avec vous.\nI don't want you to overexert yourself.\tJe ne veux pas que vous vous sur-entraîniez.\nI don't want you to overexert yourself.\tJe ne veux pas que tu te sur-entraînes.\nI don't worry about that kind of stuff.\tJe ne m'inquiète pas pour ce genre de trucs.\nI dream of a quiet life in the country.\tJe rêve d'une vie tranquille à la campagne.\nI expect him to come along any day now.\tJe m'attends à ce qu'il nous accompagne n'importe quel jour maintenant.\nI feed my dog just before I eat dinner.\tJe nourris mon chien juste avant de dîner.\nI feel bad that I haven't paid you yet.\tJe me sens mal de ne pas encore t'avoir payé.\nI feel bad that I haven't paid you yet.\tJe me sens mal de ne pas t'avoir encore payée.\nI feel bad that I haven't paid you yet.\tJe me sens mal de ne pas vous avoir encore payée.\nI feel bad that I haven't paid you yet.\tJe me sens mal de ne pas vous avoir encore payé.\nI feel bad that I haven't paid you yet.\tJe me sens mal de ne pas vous avoir encore payées.\nI feel bad that I haven't paid you yet.\tJe me sens mal de ne pas vous avoir encore payés.\nI feel bad that I haven't paid you yet.\tJe me sens mal de ne pas encore vous avoir payé.\nI feel bad that I haven't paid you yet.\tJe me sens mal de ne pas encore vous avoir payée.\nI feel bad that I haven't paid you yet.\tJe me sens mal de ne pas encore vous avoir payés.\nI feel bad that I haven't paid you yet.\tJe me sens mal de ne pas encore vous avoir payées.\nI feel like going to bed early tonight.\tJ'ai envie d'aller me coucher tôt ce soir.\nI feel like this is going to end badly.\tJ'ai l'impression que ça va mal se terminer.\nI feel the same way about it as you do.\tJe ressens la même chose que toi à ce propos.\nI feel the same way about it as you do.\tJe ressens la même chose que vous à ce propos.\nI fell in love with a girl from Vienna.\tJe suis tombé amoureux d'une Viennoise.\nI fell in love with her at first sight.\tJe suis tombé amoureux d'elle au premier coup d'œil.\nI fell in love with her at first sight.\tJe suis tombé amoureux d'elle au premier regard.\nI fell in love with her at first sight.\tJe suis tombée amoureuse d'elle au premier regard.\nI fell in love with her at first sight.\tJe tombai amoureux d'elle au premier regard.\nI fell in love with her at first sight.\tJe tombai amoureuse d'elle au premier regard.\nI felt somebody pat me on the shoulder.\tJe sentis quelqu'un me taper sur l'épaule.\nI figured out a way to make more money.\tJ'ai inventé un moyen de faire plus d'argent.\nI figured out a way to make more money.\tJ'ai inventé un moyen de générer plus d'argent.\nI figured out a way to make more money.\tJ'ai inventé un moyen de faire davantage d'argent.\nI figured out a way to make more money.\tJ'ai inventé un moyen de générer davantage d'argent.\nI finished reading the book last night.\tJ'ai fini de lire le livre hier soir.\nI finished writing a letter in English.\tJ'ai fini d'écrire une lettre en anglais.\nI found it easy to answer the question.\tJ'ai trouvé facile de répondre à la question.\nI found it easy to answer the question.\tJ'ai trouvé aisé de répondre à la question.\nI found it necessary to get assistance.\tJ'estimai nécessaire de requérir de l'assistance.\nI found it necessary to get assistance.\tJ'ai estimé nécessaire de requérir de l'assistance.\nI found nothing but a pair of scissors.\tJe n'ai rien trouvé, à part des ciseaux.\nI found nothing but a pair of scissors.\tJe n'ai rien trouvé d'autre qu'une paire de ciseaux.\nI found nothing but a pair of scissors.\tJe n'ai rien trouvé, si ce n'est une paire de ciseaux.\nI found the key that I was looking for.\tJ'ai trouvé la clef que je cherchais.\nI found the photo you were looking for.\tJ'ai trouvé la photo que tu cherchais.\nI frequently recall my happy childhood.\tJe me souviens fréquemment de mon enfance heureuse.\nI gave the boy what little money I had.\tJ'ai donné au garçon le peu de monnaie que j'avais.\nI get bored quickly in everything I do.\tJe m'ennuie rapidement dans tout ce que je fais.\nI got to know him when I was a student.\tJ'ai fait sa connaissance quand j'étais étudiant.\nI guess that wouldn't mean much to you.\tJe suppose que ça n'aurait pas grande signification pour toi.\nI guess that wouldn't mean much to you.\tJe suppose que ça n'aurait pas grande signification pour vous.\nI guess you didn't quite understand me.\tJe suppose que vous ne m'avez pas tout à fait compris.\nI guess you didn't quite understand me.\tJe suppose que vous ne m'avez pas tout à fait comprise.\nI guess you didn't quite understand me.\tJe suppose que tu ne m'as pas tout à fait compris.\nI guess you didn't quite understand me.\tJe suppose que tu ne m'as pas tout à fait comprise.\nI had a crush on you when I was twelve.\tJ'étais amoureux de toi, quand j'avais douze ans.\nI had a crush on you when I was twelve.\tJ'étais amoureuse de toi, quand j'avais douze ans.\nI had enough sense to get out of there.\tJ'eus assez de bon sens pour sortir de là.\nI had no idea this bracelet was stolen.\tJe n'avais pas idée que ce bracelet fut volé.\nI had no idea this bracelet was stolen.\tJe n'avais pas idée que ce bracelet avait été volé.\nI had to make a speech at short notice.\tJ'ai dû faire un discours en toute urgence\nI had to make a speech on short notice.\tJ'ai dû faire un discours en toute urgence\nI hate everyone, and everyone hates me.\tJe déteste tout le monde et tout le monde me déteste.\nI have a lot of problems at the moment.\tJ'ai beaucoup de problèmes pour le moment.\nI have a lot of work still outstanding.\tJ'ai encore beaucoup de travail à finir.\nI have a message I want you to deliver.\tJ'ai un message que je veux que vous communiquiez.\nI have a message I want you to deliver.\tJ'ai un message que je veux que tu communiques.\nI have an appointment to dine with him.\tJ'ai rendez-vous avec lui pour dîner.\nI have attached a Microsoft Excel file.\tJ'ai joint un fichier Microsoft Excel.\nI have brought his umbrella by mistake.\tJ'ai apporté son parapluie par erreur.\nI have difficulty in understanding him.\tJ'ai du mal à le comprendre.\nI have every confidence in his ability.\tJ'ai toute confiance en ses capacités.\nI have had my hair cut shoulder length.\tJ'ai fait couper mes cheveux jusqu'aux épaules.\nI have had to stay in bed for two days.\tJ'ai dû rester au lit pendant deux jours.\nI have known her since she was a child.\tJe la connais depuis qu'elle était enfant.\nI have many Esperanto-speaking friends.\tJ'ai de nombreux amis espérantophones.\nI have never drawn anything in my life.\tJe n'ai jamais rien dessiné dans ma vie.\nI have no regrets for what I have done.\tJe n'ai aucun regret de ce que j'ai fait.\nI have no wish to live in a large city.\tJe ne veux surtout pas vivre dans une grande ville.\nI have something important to tell you.\tIl me faut te dire quelque chose d'important.\nI have something important to tell you.\tIl me faut vous dire quelque chose d'important.\nI have something important to tell you.\tJ'ai quelque chose d'important à te dire.\nI have something important to tell you.\tJ'ai quelque chose d'important à vous dire.\nI have something to talk over with you.\tJ'ai à m'entretenir de quelque chose avec toi.\nI have to charge the battery of my car.\tIl faut que je charge la batterie de ma voiture.\nI have to live on my very small income.\tJe dois vivre d'un maigre revenu.\nI have to pay more attention to myself.\tIl me faut porter davantage d'attention à moi-même.\nI have to pay more attention to myself.\tIl me faut me porter davantage d'attention.\nI have to practice the piano every day.\tIl me faut pratiquer le piano quotidiennement.\nI have to try doing that at least once.\tJe dois essayer de faire ça au moins une fois.\nI haven't completely given up the idea.\tJe n'ai pas totalement abandonné l'idée.\nI haven't eaten vegetables for a month.\tJe n'ai pas mangé de légumes depuis un mois.\nI haven't finished all my homework yet.\tJe n'ai pas encore terminé tous mes devoirs.\nI haven't had the honor of meeting him.\tJe n'ai pas eu l'honneur de le rencontrer.\nI haven't listened to any of his songs.\tJe n'ai écouté aucune de ses chansons.\nI haven't seen these pictures in years.\tJe n'ai pas vu ces photos depuis des années.\nI hear it's buried under all that snow.\tJ'entends que c'est enterré sous toute cette neige.\nI heard Tom say he needed to find Mary.\tJ'ai entendu Tom dire qu'il avait besoin de trouver Mary.\nI hope Tom and Mary don't get arrested.\tJ'espère que Tom et Marie ne se feront pas arrêter.\nI hope Tom and Mary don't get arrested.\tJ'espère que Tom et Marie ne vont pas se faire arrêter.\nI hope that's not what really happened.\tJ'espère que ce n'est pas ce qui c'est vraiment passé.\nI hope this data will be useful to you.\tJ'espère que ces données seront disponibles pour vous.\nI hope we don't have to sell our house.\tJ'espère que nous n'aurons pas à vendre notre maison.\nI hope you don't mind if I leave early.\tJ'espère que ça ne vous dérange pas si je pars tôt.\nI hope you two are very happy together.\tJ'espère que vous êtes tous deux très heureux ensemble.\nI hurried and managed to catch the bus.\tJe me suis dépêché et ai réussi à attraper le bus.\nI hurried so I wouldn't miss the train.\tJe me suis dépêché afin de ne pas manquer le train.\nI hurried so I wouldn't miss the train.\tJe me dépêchai afin de ne pas manquer le train.\nI interpreted her silence as a refusal.\tJ'ai interprété son silence comme un refus.\nI jumped for joy when I heard the news.\tJ'ai sauté de joie lorsque j'ai entendu les nouvelles.\nI just didn't want to take any chances.\tJe n'ai simplement voulu prendre aucun risque.\nI just don't want to be reminded of it.\tJe ne veux pas qu'on me le rappelle, un point c'est tout.\nI just don't want to be reminded of it.\tJe ne veux tout simplement pas qu'on me le rappelle.\nI just don't want to do that right now.\tJe ne veux pas faire ça maintenant, un point c'est tout.\nI just don't want to do that right now.\tJe ne veux tout simplement pas faire ça maintenant.\nI just don't want to get your hopes up.\tJe ne veux pas te faire avoir de faux espoirs, un point c'est tout.\nI just don't want to get your hopes up.\tJe ne veux tout simplement pas te faire avoir de faux espoirs.\nI just don't want to get your hopes up.\tJe ne veux pas vous faire avoir de faux espoirs, un point c'est tout.\nI just don't want to get your hopes up.\tJe ne veux pas te faire former de faux espoirs, un point c'est tout.\nI just don't want to get your hopes up.\tJe ne veux pas vous faire former de faux espoirs, un point c'est tout.\nI just don't want to get your hopes up.\tJe ne veux tout simplement pas vous faire avoir de faux espoirs.\nI just don't want to get your hopes up.\tJe ne veux tout simplement pas te faire former de faux espoirs.\nI just don't want to get your hopes up.\tJe ne veux tout simplement pas vous faire former de faux espoirs.\nI just don't want you to catch my cold.\tJe ne veux pas que vous contractiez mon rhume, un point c'est tout.\nI just don't want you to catch my cold.\tJe ne veux pas que tu contractes mon rhume, un point c'est tout.\nI just don't want you to catch my cold.\tJe ne veux tout simplement pas que vous contractiez mon rhume.\nI just don't want you to catch my cold.\tJe ne veux tout simplement pas que tu contractes mon rhume.\nI just don't want your dog in my house.\tJe ne veux tout simplement pas de ton chien dans ma maison.\nI just don't want your dog in my house.\tJe ne veux tout simplement pas de votre chien dans ma maison.\nI just don't want your dog in my house.\tJe ne veux pas de ton chien dans ma maison, un point c'est tout.\nI just don't want your dog in my house.\tJe ne veux pas de votre chien dans ma maison, un point c'est tout.\nI just felt a little dizzy. That's all.\tJe me suis juste senti un peu étourdi. C'est tout.\nI just felt a little dizzy. That's all.\tJe me suis juste sentie un peu étourdie. C'est tout.\nI just felt a little dizzy. That's all.\tJ'ai juste senti que j'avais un peu la tête qui tournait. C'est tout.\nI just felt a little dizzy. That's all.\tJe me suis juste un peu senti pris de vertiges. C'est tout.\nI just felt a little dizzy. That's all.\tJe me suis juste un peu sentie prise de vertiges. C'est tout.\nI just figured out what the problem is.\tJe viens de comprendre quel est le problème.\nI just want to ask you a few questions.\tJe veux seulement vous poser quelques questions.\nI just want to ask you a few questions.\tJe veux seulement te poser quelques questions.\nI just want to be certain that it's OK.\tJe veux être certain que c'est d'accord, un point c'est tout.\nI just want to be certain that it's OK.\tJe veux être certain que c'est autorisé, un point c'est tout.\nI just want to be certain that it's OK.\tJe veux tout simplement être certain que c'est autorisé.\nI just want to be certain that it's OK.\tJe veux tout simplement être certain que c'est d'accord.\nI just want to be certain that it's OK.\tJe veux tout simplement être certaine que c'est d'accord.\nI just want to be certain that it's OK.\tJe veux être certaine que c'est d'accord, un point c'est tout.\nI just want to be certain that it's OK.\tJe veux tout simplement être certaine que c'est autorisé.\nI just want to be certain that it's OK.\tJe veux être certaine que c'est autorisé, un point c'est tout.\nI just want you to know how sorry I am.\tJe veux juste que vous sachiez combien je suis désolé.\nI just want you to know how sorry I am.\tJe veux juste que vous sachiez combien je suis désolée.\nI just want you to know how sorry I am.\tJe veux juste que tu saches combien je suis désolé.\nI just want you to know how sorry I am.\tJe veux juste que tu saches combien je suis désolée.\nI just wanted to make sure I was right.\tJe voulais juste m'assurer que j'avais raison.\nI just wanted to see what would happen.\tJe voulais juste voir ce qui se passerait.\nI just wanted to see what would happen.\tJe voulais juste voir ce qui se produirait.\nI just wanted to see what would happen.\tJe voulais juste voir ce qui arriverait.\nI knew Tom would do something romantic.\tJe savais que Tom ferait quelque chose de romantique.\nI knew it would happen sooner or later.\tJe savais que ça arriverait tôt ou tard.\nI knew there would be something to eat.\tJe savais qu'il y aurait quelque chose à manger.\nI knew you'd come back sooner or later.\tJe savais que vous reviendriez, tôt ou tard.\nI knew you'd come back sooner or later.\tJe savais que tu reviendrais, tôt ou tard.\nI know Tom and Mary used to be friends.\tJe sais que Tom et Mary étaient amis.\nI know more about you than you realize.\tJ'en sais plus sur toi que tu ne le crois.\nI know that I didn't do anything wrong.\tJe sais que je n'ai rien fait de mal.\nI know the perfect place for our party.\tJe connais l'endroit idéal pour notre fête.\nI know the real reason for his absence.\tJe connais la véritable raison de son absence.\nI know what you did wasn't intentional.\tJe sais que tu ne l'as pas fait exprès.\nI left you a message at the front desk.\tJe vous ai laissé une note à la réception.\nI left you a message at the front desk.\tJe t'ai laissé une note à la réception.\nI like all of the songs that Tom sings.\tJ'aime toutes les chansons que Tom chante.\nI like grapes, but I can't eat so many.\tJ'aime le raisin mais je ne peux pas en manger beaucoup.\nI like to talk about the good old days.\tJ'aime parler du bon vieux temps.\nI looked up the words in my dictionary.\tJe vérifie les mots dans mon dictionnaire.\nI lost my wallet somewhere around here.\tJ'ai perdu mon portefeuille quelque part par ici.\nI love her all the more for her faults.\tJe l'aime encore plus pour ses torts.\nI love the songs sung by Kylie Minogue.\tJ'aime les chansons chantées par Kylie Minogue.\nI love the songs sung by Kylie Minogue.\tJ'adore les chansons chantées par Kylie Minogue.\nI love what you've done with the place.\tJ'aime ce que vous avez fait de l'endroit.\nI made a deposit in the bank yesterday.\tJ'ai effectué un dépôt à la banque, aujourd'hui.\nI made a deposit in the bank yesterday.\tJ'ai effectué un dépôt à la banque aujourd'hui.\nI made a deposit of $1,000 at the bank.\tJ'ai fait un dépôt de 1000 dollars à la banque.\nI made a list of things I needed to do.\tJ'ai dressé une liste des choses qu'il me fallait faire.\nI made a list of things I needed to do.\tJe dressai une liste des choses qu'il me fallait faire.\nI make it a rule never to borrow money.\tJ'ai érigé en règle de ne jamais emprunter de l'argent.\nI met a man from Boston this afternoon.\tJ'ai rencontré un homme de Boston cet après-midi.\nI met an old friend by chance in Kyoto.\tJ'ai rencontré un vieil ami par hasard à Tokyo.\nI met an old student of mine in London.\tJ'ai croisé un de mes anciens étudiants à Londres.\nI met him while I was staying in Paris.\tJe l’ai rencontré lorsque j’étais à Paris.\nI met him while I was staying in Paris.\tJe l'ai rencontré tandis que je séjournais à Paris.\nI met him while I was staying in Paris.\tJe le rencontrai tandis que je séjournais à Paris.\nI met one of my friends on my way home.\tJ'ai rencontré un de mes amis sur le trajet en rentrant à la maison.\nI more often go to Brussels than Paris.\tJe vais plus souvent à Bruxelles qu'à Paris.\nI must visit my friend in the hospital.\tJe dois rendre visite à mon ami à l'hôpital.\nI need more information on this matter.\tJ'ai besoin de davantage d'information quant à cette affaire.\nI need more information on this matter.\tJ'ai besoin de davantage d'information sur cette affaire.\nI need more information on this matter.\tJ'ai besoin de plus d'information sur cette affaire.\nI need more information on this matter.\tIl me faut davantage d'information quant à cette affaire.\nI need more information on this matter.\tIl me faut plus d'information sur cette affaire.\nI never felt this way before I met you.\tJe ne me suis jamais senti comme ça avant de te rencontrer.\nI never felt this way before I met you.\tJe ne me suis jamais senti comme ça avant de vous rencontrer.\nI never imagined we'd end up like this.\tJe n'aurais jamais imaginé que nous finirions un jour ainsi.\nI never meant to put you in any danger.\tJe n'ai jamais eu l'intention de te mettre en quelconque danger.\nI never meant to put you in any danger.\tJe n'ai jamais eu l'intention de vous mettre en quelconque danger.\nI never should've told Tom my password.\tJamais je n’aurais dû dire mon mot de passe à Tom.\nI never thought I'd ever see you again.\tJe n'ai jamais pensé que je te reverrais un jour.\nI never thought I'd ever see you again.\tJe n'ai jamais pensé que je vous reverrais un jour.\nI never thought I'd ever see you again.\tJe n'ai jamais pensé que je te verrais à nouveau un jour.\nI never thought I'd ever see you again.\tJe n'ai jamais pensé que je vous verrais à nouveau un jour.\nI never thought it would end like this.\tJe n'ai jamais pensé que ça se terminerait ainsi.\nI never thought it would end like this.\tJe n'ai jamais pensé que ça se terminerait comme ça.\nI never told anybody about it, I swear.\tJe ne l'ai jamais dit à personne, je le jure.\nI never want to see you get in trouble.\tJe ne veux jamais te voir t'attirer des ennuis.\nI never want to see you get in trouble.\tJe ne veux jamais vous voir vous attirer des ennuis.\nI object to being treated like a child.\tJe refuse d'être traité comme un enfant.\nI often played soccer when I was young.\tJe jouais souvent au football quand j'étais jeune.\nI often study while listening to music.\tJ'étudie souvent en écoutant de la musique.\nI only wish I could see you more often.\tJe souhaiterais seulement pouvoir vous voir plus souvent.\nI only wish I could see you more often.\tJe souhaiterais seulement pouvoir te voir plus souvent.\nI personally believe that you're right.\tJe crois personnellement que vous avez raison.\nI personally believe that you're right.\tJe crois personnellement que tu as raison.\nI plan to try reading some other books.\tJ'ai l'intention de lire quelques autres livres.\nI prefer French films to American ones.\tJe préfère les films français aux américains.\nI promise this will never happen again.\tJe promets que ça n'arrivera plus.\nI promised my parents I wouldn't drink.\tJ'ai promis à mes parents que je ne boirais pas.\nI ran into a friend of mine on the bus.\tJe suis tombé sur un ami à moi dans le bus.\nI ran into a friend of mine on the bus.\tJe suis tombée sur un ami à moi dans le bus.\nI ran into a friend of mine on the bus.\tJe suis tombé sur une amie à moi dans le bus.\nI ran into a friend of mine on the bus.\tJe suis tombée sur une amie à moi dans le bus.\nI realize I'm just stating the obvious.\tJe me rends compte que je ne dis qu'une évidence.\nI realize I'm just stating the obvious.\tJe me rends compte que je ne fais qu'enfoncer des portes ouvertes.\nI really appreciate you helping me out.\tJ'apprécie vraiment que tu me donnes un coup de main.\nI really appreciate you helping me out.\tJ'apprécie vraiment que vous me donniez un coup de main.\nI really don't understand this problem.\tJe ne comprends vraiment pas ce problème.\nI really don't want to go back to jail.\tJe ne veux vraiment pas retourner en prison.\nI really don't want to talk about this.\tJe ne veux vraiment pas en parler.\nI really need to talk to you privately.\tIl me faut vraiment vous parler en privé.\nI really need to talk to you privately.\tIl me faut vraiment te parler en privé.\nI recall less and less of my childhood.\tJe me rappelle de moins en moins de mon enfance.\nI received a letter written in English.\tJ'ai reçu une lettre écrite en anglais.\nI remember mentioning it once or twice.\tJe me rappelle l'avoir mentionné à une ou deux reprises.\nI remember mentioning it once or twice.\tJe me souviens l'avoir mentionné à une ou deux reprises.\nI said to myself, \"That's a good idea.\"\tJe me suis dit : « C’est une bonne idée ».\nI saw a light at the end of the tunnel.\tJ'ai vu une lumière au bout du tunnel.\nI saw his car make a turn to the right.\tJ'ai vu sa voiture tourner à droite.\nI sent Mary flowers on Valentine's Day.\tJ'ai envoyé des fleurs à Mary pour la Saint Valentin.\nI share a house with two of my friends.\tJe partage une maison avec deux de mes amis.\nI share a house with two of my friends.\tJe partage une maison avec deux de mes amies.\nI should get back to writing my report.\tIl faudrait que je me remette à l'écriture de mon rapport.\nI skipped English class this afternoon.\tJ'ai séché le cours d'anglais cet après-midi.\nI slipped and fell on the icy sidewalk.\tJ'ai glissé et suis tombé sur le trottoir verglacé.\nI stayed home because I had a bad cold.\tJe suis resté à la maison car j'ai eu un rhume.\nI stayed longer than I thought I would.\tJe suis resté plus longtemps que je ne pensais le faire.\nI stayed longer than I thought I would.\tJe suis restée plus longtemps que je ne pensais le faire.\nI stayed longer than I thought I would.\tJe suis resté plus longtemps que je ne pensais.\nI stayed longer than I thought I would.\tJe suis restée plus longtemps que je ne pensais.\nI stopped so I could smoke a cigarette.\tJe me suis arrêté pour pouvoir fumer une cigarette.\nI studied for a while in the afternoon.\tJ'ai étudié un moment dans l'après-midi.\nI suddenly realized what was happening.\tJ'ai soudain pris conscience de ce qui se passait.\nI suddenly realized what was happening.\tJ'ai soudain pris conscience de ce qui avait lieu.\nI suggest that you not wait any longer.\tJe suggère que tu n'attendes pas plus longtemps.\nI suggest that you not wait any longer.\tJe suggère que tu n'attendes pas davantage.\nI suggest that you not wait any longer.\tJe suggère que vous n'attendiez pas plus longtemps.\nI suggest that you not wait any longer.\tJe suggère que vous n'attendiez pas davantage.\nI suggest we put on some clean clothes.\tJe suggère que nous passions des vêtements propres.\nI suggested that the plan be postponed.\tJe suggérais que le plan soit reporté.\nI suppose I could wait a little longer.\tJe suppose que je pourrais attendre un peu plus longtemps.\nI suppose I could wait a little longer.\tJe suppose que je pouvais attendre un peu plus longtemps.\nI suppose you enjoy that sort of thing.\tJe suppose que vous prenez plaisir à cette sorte de chose.\nI suppose you enjoy that sort of thing.\tJe suppose que tu prends plaisir à cette sorte de chose.\nI suppose you won't mind if I take one.\tJe suppose que ça ne t'importera pas si j'en prends une.\nI take my camera with me wherever I go.\tJe prends mon appareil photo avec moi où que j'aille.\nI think I'll go to Boston next weekend.\tJe pense que je vais aller à Boston le weekend prochain.\nI think Tom could be persuaded to help.\tJe pense que Tom pourrait être amené à proposer son aide.\nI think Tom could be persuaded to help.\tJe pense que Tom pourrait être amené à donner un coup de main.\nI think Tom could learn a lot from you.\tJe pense que Tom pourrait beaucoup apprendre de toi.\nI think Tom is a little too optimistic.\tJe pense que Tom est un peu trop optimiste.\nI think Tom is still in love with Mary.\tJe pense que Tom est toujours amoureux de Marie.\nI think it's about time we got started.\tJe pense qu'il est grand temps que nous commencions.\nI think it's not going to be that hard.\tJe pense que cela ne va pas être si dur.\nI think it's time for me to come clean.\tJe pense qu'il est temps pour moi d'avouer la vérité.\nI think it's time for me to step aside.\tJe pense qu'il est temps pour moi de laisser la place.\nI think it's time we made some changes.\tJe pense qu'il est temps qu'on fasse des changements.\nI think that I was followed by someone.\tJe pense que j'ai été suivi par quelqu'un.\nI think this medicine will do you good.\tJe pense que ce médicament vous fera du bien.\nI think watching TV is a waste of time.\tJe pense que regarder la télévision est une perte de temps.\nI think we should wait a little longer.\tJe pense que nous devrions attendre un peu plus longtemps.\nI think we should wait a little longer.\tJe pense que nous devrions attendre encore un peu.\nI think we're going to need more money.\tJe pense que nous allons avoir besoin de plus d'argent.\nI think we're going to need more money.\tJe pense qu'il va nous falloir plus d'argent.\nI think what you're doing is dangerous.\tJe pense que ce que tu fais est dangereux.\nI think what you're doing is dangerous.\tJe pense que ce que vous faites est dangereux.\nI think you know who I'm talking about.\tJe pense que vous savez de qui je parle.\nI think you know who I'm talking about.\tJe pense que tu sais de qui je parle.\nI think you sent me the wrong document.\tJe pense que vous m'avez envoyé le mauvais document.\nI think you sent me the wrong document.\tJe pense que tu m'as envoyé le mauvais document.\nI think you should check under the bed.\tJe pense que tu devrais vérifier sous le lit.\nI think you should check under the bed.\tJe pense que vous devriez vérifier sous le lit.\nI thought I had a month to finish this.\tJe pensais disposer d'un mois pour finir ceci.\nI thought Tom died last year in Boston.\tJe pensais que Tom était mort l'année dernière à Boston.\nI thought Tom had agreed to do the job.\tJe pensais que Tom était d'accord pour faire le travail.\nI thought about what a jerk I had been.\tJ'ai réfléchi à propos de quel pauvre type j'ai été.\nI thought it was about time we all met.\tJ'ai pensé qu'il était temps que nous nous rencontrions tous.\nI thought it was about time we all met.\tJ'ai pensé qu'il était temps de tous nous rencontrer.\nI thought the concert went pretty well.\tJ'ai pensé que le concert s'est assez bien déroulé.\nI thought we talked about this already.\tJe pensais que nous avions déjà discuté de ça.\nI thought we weren't going to go there.\tJe pensais que nous n'allions pas y aller.\nI thought we weren't going to go there.\tJe pensais que nous n'allions pas nous y rendre.\nI thought we'd have breakfast together.\tJe pensais que nous prendrions le petit-déjeuner ensemble.\nI thought you didn't believe in ghosts.\tJe pensais que tu ne croyais pas aux fantômes.\nI thought you had more sense than that.\tJe pensais que tu disposais de davantage de bon sens.\nI thought you had more sense than that.\tJe pensais que vous disposiez de davantage de bon sens.\nI thought you had somewhere else to be.\tJe pensais que tu avais un autre endroit où aller.\nI thought you had somewhere else to be.\tJe pensais que vous aviez un autre endroit où aller.\nI thought you might want to come along.\tJ'ai pensé que tu voudrais peut-être te joindre.\nI thought you might want to come along.\tJ'ai pensé que vous voudriez peut-être vous joindre.\nI thought you should see this contract.\tJ'ai pensé que tu devrais voir ce contrat.\nI thought you should see this contract.\tJ'ai pensé que vous devriez voir ce contrat.\nI thought you'd want to meet my family.\tJe pensais que tu voudrais rencontrer ma famille.\nI thought you'd want to meet my family.\tJe pensais que vous voudriez rencontrer ma famille.\nI thought you'd want to see this movie.\tJe pensais que tu voudrais voir ce film.\nI thought you'd want to see this movie.\tJe pensais que vous voudriez voir ce film.\nI told you I don't know how to do that.\tJe t'ai dit que j'ignore comment faire ça.\nI told you I don't know how to do that.\tJe vous ai dit que j'ignore comment faire ça.\nI told you this is where we'd find Tom.\tJe t'ai dit que c'est où nous avions trouvé Tom.\nI told you this was going to be boring.\tJe t'avais dit que ça allait être ennuyeux.\nI told you this was going to be boring.\tJe vous avais dit que ça allait être ennuyeux.\nI took a taxi because the bus was late.\tJe pris un taxi car le bus était en retard.\nI took a taxi because the bus was late.\tJ'ai pris un taxi car le bus était en retard.\nI took a taxi because the bus was late.\tJe pris un taxi car le car était en retard.\nI took a taxi because the bus was late.\tJ'ai pris un taxi car le car était en retard.\nI took sides with them in the argument.\tJ'ai pris parti pour eux dans la discussion.\nI took the elevator to the third floor.\tJe montai par l'ascenseur au troisième étage.\nI took the elevator to the third floor.\tJ'ai pris l'ascenseur jusqu'au troisième étage.\nI took the elevator to the third floor.\tJ'ai pris l'ascenseur jusqu'au deuxième étage.\nI translated the poem the best I could.\tJe traduisis ce poème du mieux que je pouvais.\nI truly do not understand the question.\tJe ne comprends sincèrement pas la question.\nI try to travel with only one suitcase.\tJ'essaie de voyager avec une seule valise.\nI used to dream about becoming a model.\tJe rêvais de devenir mannequin.\nI used to work in an electronics store.\tJe travaillais dans un magasin d'électronique.\nI usually take a shower in the evening.\tJe prends habituellement ma douche le soir.\nI usually went to the movies on Sunday.\tGénéralement, j'allais au cinéma le dimanche.\nI want Tom to have a job that he loves.\tJe veux que Tom ait un travail qu'il aime.\nI want a jump rope with wooden handles.\tJe veux une corde à sauter avec des poignées en bois.\nI want to be worthy of your friendship.\tJe veux être digne de ton amitié.\nI want to be worthy of your friendship.\tJe veux être digne de votre amitié.\nI want to do some shopping around here.\tJe veux faire quelques courses dans le coin.\nI want to get married, just not to you.\tJe veux me marier, simplement pas avec toi.\nI want to get married, just not to you.\tJe veux me marier, simplement pas avec vous.\nI want to introduce you to some people.\tJe veux te présenter à des gens.\nI want to introduce you to some people.\tJe veux vous présenter à des gens.\nI want to know how you feel about this.\tJe veux savoir ce que vous ressentez à ce sujet.\nI want to know how you feel about this.\tJe veux savoir ce que tu ressens à ce sujet.\nI want to know more about your country.\tJe veux en savoir plus sur votre pays.\nI want to know what I can do right now.\tJe veux savoir ce que je peux faire tout de suite.\nI want to make a good first impression.\tJe veux faire d'emblée bonne impression.\nI want to see what's on the other side.\tJe veux voir ce qui se trouve de l'autre côté.\nI want to send this by registered mail.\tJe veux envoyer ceci par courrier recommandé.\nI want to stay here a couple more days.\tJe veux rester ici quelques jours de plus.\nI want to talk to you about last night.\tJe veux te parler d'hier soir.\nI want to talk to you about last night.\tJe veux te parler de la nuit dernière.\nI want to teach history when I grow up.\tPlus tard, j'aimerais être professeur d'histoire.\nI want to teach history when I grow up.\tJe veux enseigner l'histoire, lorsque je serai grand.\nI want to tell you something important.\tJe veux te dire quelque chose d'important.\nI want to watch what's on TV right now.\tJe veux voir ce qu'il y a à la télé en ce moment.\nI want very much for you to understand.\tJe veux vraiment que tu comprennes.\nI want very much for you to understand.\tJe veux vraiment que vous compreniez.\nI want you to give up this stupid plan.\tJe veux que tu abandonnes ce plan débile.\nI want you to have a job that you love.\tJe veux que tu aies un boulot que tu adores.\nI want you to have a job that you love.\tJe veux que vous ayez un boulot que vous adoriez.\nI want you to have my land after I die.\tJe veux qu'après ma mort, tu aies ma terre.\nI want you to have my land after I die.\tJe veux qu'une fois que je serai mort, tu aies ma terre.\nI want you to have my land after I die.\tJe veux qu'après que je sois mort, tu aies ma terre.\nI want you to have my land after I die.\tJe veux qu'après que je sois mort, tu disposes de ma terre.\nI want you to have my land after I die.\tJe veux qu'une fois que je serai mort, tu disposes de ma terre.\nI want you to have my land after I die.\tJe veux qu'après ma mort, tu disposes de ma terre.\nI want you to help me with my homework.\tJe voudrais que tu m'aides à faire mes devoirs.\nI want you to stay right where you are.\tJe veux que tu restes où tu es.\nI want you to tell Tom that I love him.\tJe veux que tu dises à Tom que je l'aime.\nI want you to tell me why you did that.\tJe veux que tu me dises pourquoi tu as fait ça !\nI was able to answer all the questions.\tJ'ai su répondre à toutes les questions.\nI was able to answer all the questions.\tJe pouvais répondre à toutes les questions.\nI was at home almost all day yesterday.\tJ'étais chez moi presque toute la journée d'hier.\nI was bored, so I wandered around town.\tJe m'ennuyai, alors j'ai flâné autour de la ville.\nI was bored, so I wandered around town.\tComme je m'ennuyais, je me suis promené autour de la ville.\nI was born and brought up in Matsuyama.\tJe suis né et j'ai grandi à Matsuyama.\nI was born and brought up in Matsuyama.\tJe suis né à Matsuyama et j'y ai été élevé.\nI was born and brought up in Matsuyama.\tJe suis née et j'ai été élevée à Matsuyama.\nI was embarrassed when he talked to me.\tJ'étais ennuyé lorsqu'il s'est adressé à moi.\nI was hoping we could still be friends.\tJ'espérais que nous puissions encore être amis.\nI was hoping we could still be friends.\tJ'espérais que nous puissions encore être amies.\nI was in Boston last week with my wife.\tLa semaine dernière, j'étais à Boston avec ma femme.\nI was kept waiting nearly half an hour.\tOn me fit attendre presque une demi-heure.\nI was living in Boston a few years ago.\tJe vivais à Boston il y a quelques années.\nI was thinking about getting a divorce.\tJ'étais en train de penser au divorce.\nI was up all night writing this report.\tJ'ai passé la nuit entière à écrire le rapport.\nI watched TV after I washed the dishes.\tAprès avoir fait la vaisselle, j'ai regardé la télévision.\nI went to school on foot in those days.\tJ'allais à pied à l'école à cette époque.\nI went to school on foot in those days.\tJe me rendais à pied à l'école à cette époque.\nI will ask him about it tomorrow, then.\tAlors je vais le lui demander demain.\nI will finish it by tomorrow afternoon.\tJe le finirai avant demain après-midi.\nI will go and take a look at the house.\tJe vais aller voir la maison.\nI will go and take a look at the house.\tJe vais aller jeter un coup d’œil à la maison.\nI will lend you whatever book you need.\tJe te prêterai tous les livres dont tu as besoin.\nI will send it by email this afternoon.\tJe l'enverrai par courriel cet après-midi.\nI will visit you tomorrow without fail.\tJe te rendrai très certainement visite demain.\nI wish I had listened to your warnings.\tJ'aurais dû écouter vos avertissements.\nI wish I had listened to your warnings.\tJ'aurais dû écouter tes avertissements.\nI wish Tom could've been with us today.\tJ'aurais voulu que Tom puisse être avec nous aujourd'hui.\nI wish Tom could've come to my concert.\tJ'aurais voulu que Tom puisse venir à mon concert.\nI wish Tom hadn't told Mary about that.\tJ'espère que Tom n'avait pas raconté ça à Mary.\nI wish that I could give you something.\tJ'espère que je peux te donner quelque chose.\nI wish that I could give you something.\tSi seulement je pouvais te donner quelque chose.\nI wish there were more people like you.\tJ'aimerais qu'il y ait davantage de gens comme vous.\nI wish there were more people like you.\tJ'aimerais qu'il y ait davantage de gens comme toi.\nI wish winter vacation would never end.\tJ’aimerais que les vacances d’hiver ne finissent jamais.\nI won't let anything bad happen to you.\tJe ne laisserai rien de mal t'arriver.\nI won't let anything bad happen to you.\tJe ne laisserai rien de mal vous arriver.\nI won't let you boss me around anymore.\tJe ne vous laisserai plus me donner des ordres.\nI wonder if Tom has one I could borrow.\tJe me demande si Tom en a un que je pourrais emprunter.\nI wonder what I should make for dinner.\tJe me demande ce que je devrais faire pour le dîner ?\nI wonder what it feels like to be rich.\tJe me demande ce que ça fait, d'être riche.\nI would like to get to know you better.\tJ'aimerais apprendre à mieux vous connaître.\nI would like to get to know you better.\tJ'aimerais apprendre à mieux te connaître.\nI would like to pay with a credit card.\tJe voudrais payer par carte de crédit.\nI would like to visit New York someday.\tJ'aimerais visiter New York un jour.\nI would like to work with your company.\tJ'aimerais travailler avec votre entreprise.\nI would rather stay here than go there.\tJe préférerais rester ici plutôt que d'y aller.\nI wouldn't wish that on my worst enemy.\tJe ne souhaiterais pas cela à mon pire ennemi.\nI wrote a letter to my parents at home.\tJ'ai écrit à la maison une lettre à mes parents.\nI'd appreciate it if you could do that.\tJ'apprécierais que vous puissiez le faire.\nI'd appreciate it if you could do that.\tJ'apprécierais que tu puisses le faire.\nI'd be careful with that if I were you.\tJe serais prudent avec ça, si j'étais toi.\nI'd be careful with that if I were you.\tJe serais prudente avec ça, si j'étais toi.\nI'd be careful with that if I were you.\tJe serais prudent avec ça, si j'étais vous.\nI'd be careful with that if I were you.\tJe serais prudente avec ça, si j'étais vous.\nI'd be delighted if you'd come with me.\tJe serais ravi si vous m'accompagniez.\nI'd be delighted if you'd come with me.\tJe serais ravi que tu m'accompagnes.\nI'd be glad to tell Tom how to do that.\tJe serais content de dire à Tom comment le faire.\nI'd be happy if you could come with us.\tJe serais heureux si vous pouviez venir avec nous.\nI'd be happy if you could come with us.\tJe serais heureuse si vous pouviez venir avec nous.\nI'd be happy if you could come with us.\tJe serais heureux si tu pouvais venir avec nous.\nI'd be happy if you could come with us.\tJe serais heureuse si tu pouvais venir avec nous.\nI'd better not tell you about that now.\tJe ferais mieux de ne pas t'en parler maintenant.\nI'd just like to know what I did wrong.\tJ'aimerais simplement savoir ce que j'ai fait de mal.\nI'd like a chance to make myself clear.\tJ'aurais aimé pouvoir me faire comprendre.\nI'd like my egg very, very soft boiled.\tJe voudrais mes œufs très très peu cuits.\nI'd like to apologize for this morning.\tJ'aimerais présenter mes excuses pour ce matin.\nI'd like to ask you some questions now.\tJ'aimerais maintenant vous poser quelques questions.\nI'd like to ask you some questions now.\tJ'aimerais maintenant te poser quelques questions.\nI'd like to be alone if you don't mind.\tJ'aimerais être seul, si tu n'y vois pas d'inconvénient.\nI'd like to be alone if you don't mind.\tJ'aimerais être seule, si tu n'y vois pas d'inconvénient.\nI'd like to be alone if you don't mind.\tJ'aimerais être seul, si vous n'y voyez pas d'inconvénient.\nI'd like to be alone if you don't mind.\tJ'aimerais être seule, si vous n'y voyez pas d'inconvénient.\nI'd like to discuss something with you.\tJ'aimerais m'entretenir de quelque chose avec vous.\nI'd like to discuss something with you.\tJ'aimerais discuter de quelque chose avec toi.\nI'd like to discuss something with you.\tJe voudrais discuter de quelque chose avec vous.\nI'd like to do an autopsy on this body.\tJ'aimerais pratiquer une autopsie sur ce cadavre.\nI'd like to do well on tomorrow's test.\tJ'aimerais gazer à l'examen de demain.\nI'd like to have another cup of coffee.\tJe voudrais avoir une autre tasse de café.\nI'd like to help you get what you need.\tJ'aimerais vous aider à aller chercher ce dont vous avez besoin.\nI'd like to help you get what you need.\tJ'aimerais t'aider à aller chercher ce dont tu as besoin.\nI'd like to know what's happening here.\tJ'aimerais savoir ce qui se passe ici.\nI'd like to take a closer look at that.\tJ'aimerais regarder ça de plus près.\nI'd like to talk to one of your guests.\tJ'aimerais parler avec l'un de vos invités.\nI'd like to thank you for coming today.\tJ'aimerais vous remercier d'être venu aujourd'hui.\nI'd like to thank you for coming today.\tJ'aimerais vous remercier d'être venue aujourd'hui.\nI'd like to thank you for coming today.\tJ'aimerais te remercier d'être venu aujourd'hui.\nI'd like to thank you for coming today.\tJ'aimerais vous remercier d'être venus aujourd'hui.\nI'd like to thank you for coming today.\tJ'aimerais vous remercier d'être venues aujourd'hui.\nI'd like to thank you for coming today.\tJ'aimerais te remercier d'être venue aujourd'hui.\nI'd like to visit your country someday.\tJ'aimerais visiter ton pays un de ces jours.\nI'd rather stay home and sleep all day.\tJe préférerais rester à la maison et dormir toute la journée.\nI'd suggest we don't go down that road.\tJe suggère que nous ne prenions pas cette route.\nI'll be home by midnight at the latest.\tJe serai à la maison au plus tard à minuit.\nI'll be in Tokyo on business next week.\tJe serai à Tokyo pour affaires la semaine prochaine.\nI'll be in my office from ten tomorrow.\tJe serai dans mon bureau à partir de dix heures demain.\nI'll be sure to tell Tom you said that.\tJe dirai sûrement à Tom que tu as dit ça.\nI'll explain how to take this medicine.\tJ'expliquerai comment prendre ce médicament.\nI'll finish it in two or three minutes.\tJe vais le terminer dans deux ou trois minutes.\nI'll fix your sink for you if you want.\tJe vous réparerai votre évier, si vous voulez.\nI'll fix your sink for you if you want.\tJe te réparerai ton évier, si tu veux.\nI'll get by if I have a place to sleep.\tJe m'en sortirai, si j'ai un endroit où dormir.\nI'll have it up and running in no time.\tJe vais le mettre en route en un clin d'œil.\nI'll have it up and running in no time.\tJe vais la mettre en route en un clin d'œil.\nI'll have to explain that to my father.\tIl faudra que j'explique ça à mon père.\nI'll keep my word, whatever may happen.\tJe garderai ma parole quoi qu'il arrive.\nI'll show you the car I've just bought.\tJe vais vous montrer la voiture que je viens d'acheter.\nI'll take a shortcut across the garden.\tJe coupe par le jardin.\nI'll tell Tom what a great job you did.\tJe dirai à Tom quel formidable travail vous avez fait.\nI'll tell you about it when I get home.\tJe t'en parlerai à mon retour.\nI'll tell you about it when I get home.\tJe te dirai ça quand je serai rentré chez moi.\nI'll visit you at your office tomorrow.\tJe vous rendrai visite à votre bureau, demain.\nI'll visit you at your office tomorrow.\tJe te rendrai visite à ton bureau, demain.\nI'll win using whatever means it takes.\tJe gagnerai en utilisant quelque moyen qu'il faille.\nI'll win using whatever means it takes.\tJe gagnerai, quels que soient les moyens que cela requière.\nI'm afraid I can't finish them in time.\tJ'ai peur de ne pas avoir le temps de les finir.\nI'm afraid he won't be here until 1:00.\tJ'ai peur qu'il ne soit pas là avant 13 heures.\nI'm afraid it's going to rain tomorrow.\tJe crains qu'il ne pleuve demain.\nI'm afraid it's going to rain tomorrow.\tJe crains qu'il pleuve demain.\nI'm afraid of not finishing it in time.\tJ'ai peur de ne pas le finir à temps.\nI'm afraid of not finishing it in time.\tJ'ai peur de ne pas la finir à temps.\nI'm afraid there isn't any coffee left.\tJe crains qu'il ne reste plus de café.\nI'm afraid you'll have to go in person.\tJ'ai peur que vous ne deviez y aller en personne.\nI'm almost done. Just give me a minute.\tJ'ai presque fini. Donne-moi juste une minute.\nI'm asking you to tell me how you feel.\tJe te demande de me dire comment tu te sens.\nI'm asking you to tell me how you feel.\tJe vous demande de me dire comment vous vous sentez.\nI'm capable of making my own decisions.\tJe suis capable de prendre mes propres décisions.\nI'm capable of making my own decisions.\tJe suis capable de faire mes propres choix.\nI'm counting how many people there are.\tJe suis en train de compter combien de gens il y a.\nI'm drinking water because I'm thirsty.\tJe bois de l'eau parce que j'ai soif.\nI'm glad I could be of some assistance.\tJe suis heureux de pouvoir être d'une certaine utilité.\nI'm glad to hear that she is unmarried.\tJe suis heureux d'entendre qu'elle est célibataire.\nI'm going to join the school orchestra.\tJe vais rejoindre l'orchestre de l'école.\nI'm having a very difficult time today.\tMa journée est très dure, aujourd'hui.\nI'm just going to run down to the bank.\tJe vais seulement courir jusque la banque.\nI'm just looking forward to going home.\tJe suis juste impatient de rentrer à la maison.\nI'm looking forward to seeing you soon.\tJ'ai hâte de te voir bientôt.\nI'm looking forward to seeing you soon.\tJe suis impatient de te voir bientôt.\nI'm looking forward to seeing you soon.\tJe suis impatiente de te voir bientôt.\nI'm never gonna let her live that down.\tJe ne vais jamais la laisser enterrer ça.\nI'm not accustomed to getting up early.\tJe ne suis pas habituée à me lever tôt.\nI'm not trying to make you feel guilty.\tJ'essaye pas de te faire sentir coupable.\nI'm really concerned about your future.\tJe suis vraiment concerné par votre avenir.\nI'm really concerned about your future.\tJe me fais vraiment du souci à propos de ton avenir.\nI'm scared too, so I'm not going to go.\tJ'ai peur également, donc je ne vais pas m'y rendre.\nI'm sorry I didn't reply to you sooner.\tJe suis désolé de ne pas t'avoir répondu plus tôt.\nI'm sorry if this is a stupid question.\tJe suis désolé si c'est une question idiote.\nI'm sorry if this is a stupid question.\tJe suis désolée si c'est une question idiote.\nI'm sorry, but can't answer right away.\tJe suis désolé, mais je ne peux répondre sur-le-champ.\nI'm sorry, but can't answer right away.\tJe suis désolé, mais je ne peux pas répondre tout de suite.\nI'm starting to have fun on my new job.\tJe commence à prendre du plaisir dans mon nouveau travail.\nI'm supposed to be the one helping you.\tJe suis supposée être celle qui t'aide.\nI'm supposed to be the one helping you.\tJe suis supposée être celle qui vous aide.\nI'm supposed to be the one helping you.\tJe suis supposé être celui qui t'aide.\nI'm supposed to be the one helping you.\tJe suis supposé être celui qui vous aide.\nI'm sure it'll be easy to find a place.\tJe suis sûr qu'il sera simple de trouver un endroit.\nI'm the one who asked you the question.\tC'est moi qui vous ai posé la question.\nI'm the one who brought the subject up.\tC'est moi qui ai introduit le sujet.\nI'm the one who brought the subject up.\tJe suis celui qui a introduit le sujet.\nI'm the one who should be thanking you.\tC'est moi qui devrais te remercier.\nI'm thinking of going abroad next year.\tJ'envisage d'aller à l'étranger l'an prochain.\nI'm through with my work. Let's go out.\tJ'en ai fini avec mon travail. Sortons.\nI'm too tired to do anything right now.\tJe suis trop fatigué pour faire quoi que ce soit à l'instant.\nI'm very interested in learning French.\tJe suis fort intéressé par l'apprentissage du français.\nI'm with exactly who I want to be with.\tJe suis précisément avec la personne avec laquelle je souhaite me trouver.\nI've already told Tom I won't help him.\tJ'ai déjà dit à Tom que je ne l'aiderais pas.\nI've already told everybody to go home.\tJ'ai déjà dit à chacun d'aller chez eux.\nI've already told everybody to go home.\tJ'ai déjà dit à chacun de rentrer chez eux.\nI've always been interested in science.\tJ'ai toujours été intéressé par la science.\nI've been trying to get your attention.\tJ'ai essayé de capter ton attention.\nI've been trying to get your attention.\tJ'ai essayé d'attirer ton attention.\nI've been trying to get your attention.\tJ'ai essayé d'attirer votre attention.\nI've been trying to get your attention.\tJ'ai essayé de capter votre attention.\nI've been very busy since this morning.\tJe suis très occupé depuis ce matin.\nI've been very busy since this morning.\tJe suis très occupée depuis ce matin.\nI've come this far, so I'll keep going.\tJe suis arrivé jusqu'ici, donc je vais continuer.\nI've come this far, so I'll keep going.\tJe suis arrivée jusqu'ici, donc je vais continuer.\nI've done some things I'm not proud of.\tJ'ai fait des choses dont je ne suis pas fier.\nI've finished all except the last page.\tJ'ai tout fini excepté la dernière page.\nI've got a good reason not to like Tom.\tJ'ai de bonnes raisons de ne pas aimer Tom.\nI've got a good reason not to like Tom.\tJ'ai de bonnes raisons de ne pas apprécier Tom.\nI've made many mistakes in my lifetime.\tJ'ai fait beaucoup d'erreurs dans ma vie.\nI've never dated anyone taller than me.\tJe ne suis jamais sortie avec quelqu'un de plus grand que moi.\nI've never had a friend quite like you.\tJe n'ai jamais eu d'ami exactement comme toi.\nI've never had a friend quite like you.\tJe n'ai jamais eu d'amie exactement comme toi.\nI've seen a couple of Kurosawa's films.\tJ'ai regardé quelques films de Kurosawa.\nI, too, will come in about ten minutes.\tMoi aussi je vais venir dans à peu près dix minutes.\nIf I told you, you wouldn't understand.\tSi je vous le disais, vous ne comprendriez pas.\nIf I told you, you wouldn't understand.\tSi je te le disais, tu ne comprendrais pas.\nIf Tom were here, he'd know what to do.\tSi Tom était ici, il saurait quoi faire.\nIf Tom were here, he'd know what to do.\tSi Tom était là, il saurait quoi faire.\nIf he asks us for help, we'll help him.\tS'il nous demande de l'aide, nous l'aiderons.\nIf it rains, the game will be canceled.\tS'il pleut, la partie sera annulée.\nIf only I had a pretty dress like that!\tSi seulement j'avais une jolie robe comme ça !\nIf only I'd been a little more careful!\tSi seulement j'avais été un peu plus prudent !\nIf only I'd been a little more careful!\tSi seulement j'avais été un peu plus prudente !\nIf only I'd known then what I know now.\tSi seulement j'avais su alors ce que je sais désormais.\nIf only I'd known then what I know now.\tSi seulement j'avais su alors ce que je sais maintenant.\nIf time permits, I'll visit the museum.\tSi le temps le permet, j'irai visiter le musée.\nIf you are free, come around to see me.\tSi vous êtes libre, passez me voir.\nIf you could come, I'd be really happy.\tSi tu pouvais venir, je serais vraiment heureux.\nIf you could come, I'd be really happy.\tSi tu pouvais venir, je serais vraiment heureuse.\nIf you could come, I'd be really happy.\tSi vous pouviez venir, je serais vraiment heureux.\nIf you could come, I'd be really happy.\tSi vous pouviez venir, je serais vraiment heureuse.\nIf you eat too much, you'll become fat.\tSi on mange trop on grossit.\nIf you eat too much, you'll become fat.\tSi tu manges trop, tu vas devenir gros.\nIf you see Tom, please tell him for me.\tSi tu vois Tom, s'il te plaît parle lui pour moi.\nIf you see Tom, please tell him for me.\tSi vous voyez Tom, veuillez lui parler de ma part.\nIn Haiti, there was a large earthquake.\tEn Haïti, il y a eu un important tremblement de terre.\nIn most cases, their answers are right.\tDans la plupart des cas, leurs réponses sont justes.\nIn the end, they approved the proposal.\tFinalement, ils ont approuvé la proposition.\nIn the end, they approved the proposal.\tFinalement, elles ont approuvé la proposition.\nInterest rates and inflation were high.\tLes taux d'intérêt et l'inflation étaient élevés.\nIntroduce me to your friend over there.\tPrésente-moi à ton ami qui est là-bas.\nIs her house anywhere near the station?\tSa maison est-elle en aucune manière proche de la gare ?\nIs it possible to reprint this article?\tEst-il possible de réimprimer cet article ?\nIs there anything else you can tell me?\tY a-t-il quelque chose d'autre que tu peux me dire ?\nIs there something you haven't told me?\tY a-t-il quelque chose que tu ne m'aies pas dit ?\nIs there something you haven't told me?\tY a-t-il quelque chose que tu m'aies tu ?\nIs there something you haven't told me?\tY a-t-il quelque chose que vous ne m'ayez pas dit ?\nIs there something you haven't told me?\tY a-t-il quelque chose que vous m'ayez tu ?\nIs there something you haven't told us?\tY a-t-il quelque chose que tu ne nous as pas dit ?\nIs there something you want to tell me?\tY a-t-il quelque chose que tu veuilles me dire ?\nIs there something you want to tell me?\tY a-t-il quelque chose que vous vouliez me dire ?\nIs this your first conference in Paris?\tEst-ce votre première conférence à Paris ?\nIsn't it wonderful how things work out?\tLa manière dont les choses tournent n'est-elle pas merveilleuse ?\nIsn't that what we were supposed to do?\tN'est-ce pas ce que nous étions censés faire ?\nIsn't that what we were supposed to do?\tN'est-ce pas ce que nous étions censées faire ?\nIsn't that what you're here to tell us?\tN'est-ce pas là ce que tu es venu nous dire ici ?\nIsn't that what you're here to tell us?\tN'est-ce pas là ce que vous êtes venu nous dire ici ?\nIt appeared that he meant what he said.\tIl s'avéra qu'il ne rigolait pas.\nIt costs $100 a night not counting tax.\tCela coûte 100 dollars par nuit hors taxe.\nIt couldn't have come at a better time.\tÇa n'aurait pas pu venir à un meilleur moment.\nIt doesn't matter which side you're on.\tDe quel côté tu es n'a pas d'importance.\nIt doesn't matter which side you're on.\tDe quel côté on est n'a pas d'importance.\nIt doesn't matter which side you're on.\tDe quel côté vous êtes n'a pas d'importance.\nIt has suddenly gotten cold, hasn't it?\tLe temps est soudainement devenu froid, n'est-ce pas ?\nIt is Tom's ambition to go to the moon.\tTom a pour ambition d'aller sur la Lune.\nIt is easy for me to solve the problem.\tIl m'est facile de résoudre le problème.\nIt is getting darker. It may rain soon.\tIl se fait plus sombre. Peut-être va-t-il bientôt pleuvoir.\nIt is impossible to live without water.\tIl est impossible de vivre sans eau.\nIt is life that teaches us, not school.\tC'est la vie qui nous enseigne et non l'école.\nIt is no use arguing with him about it.\tIl est inutile de se quereller avec lui à ce sujet.\nIt is strange that he has not come yet.\tC'est étrange qu'il ne soit pas encore arrivé.\nIt is time to stop watching television.\tIl est temps d'arrêter de regarder la télévision.\nIt is wise of you to ask me for advice.\tC'est sage de ta part de me demander conseil.\nIt looks like she has a lot of friends.\tElle semble avoir beaucoup d'amis.\nIt looks like she has a lot of friends.\tOn dirait qu'elle a beaucoup d'amis.\nIt looks like she has a lot of friends.\tElle semble avoir beaucoup d'amies.\nIt looks like we didn't understand him.\tIl m'apparaît que nous l'avons mal compris.\nIt looks like you've got a green thumb.\tOn dirait que tu as la main verte.\nIt looks like you've got a green thumb.\tOn dirait que vous avez la main verte.\nIt looks like you've lost a few pounds.\tIl semble que vous ayez perdu quelques kilos.\nIt looks like you've lost a few pounds.\tIl semble que tu aies perdu quelque kilos.\nIt may be that he will never be famous.\tPeut-être ne sera-t-il jamais célèbre.\nIt may have rained a little last night.\tIl se peut qu'il ait plu un peu hier soir.\nIt seems that he took me for my sister.\tIl semble qu'il m'ait confondu avec ma sœur.\nIt seems to me that something is wrong.\tJ'ai l'impression que quelque chose cloche.\nIt seems to me that something is wrong.\tOn dirait que quelque chose ne va pas.\nIt sounds like you've tried everything.\tOn dirait que vous avez tout essayé.\nIt took me two hours to reach Yokohama.\tIl m'a fallu deux heures pour atteindre Yokohama.\nIt was a fine day, so we went swimming.\tIl faisait beau alors nous sommes allés nager.\nIt was his silence that made her angry.\tC'était son silence qui la mit en colère.\nIt was his silence that made her angry.\tCe fut son silence qui la mit en colère.\nIt was impossible to pull out the cork.\tIl était impossible de retirer le bouchon.\nIt was lucky for you that you found it.\tVous avez eu de la chance de le trouver.\nIt was not clear what she really meant.\tCe qu'elle voulait vraiment dire n'était pas clair.\nIt was stormy the day before yesterday.\tAvant-hier, le temps était à l'orage.\nIt was summer and the weather was warm.\tC'était l'été et il faisait chaud.\nIt was summer and the weather was warm.\tC'était l'été et le temps était chaud.\nIt was wise of you to accept his offer.\tVous avez été sages d'accepter son offre.\nIt wasn't supposed to happen like this.\tCe n'était pas censé se produire ainsi.\nIt will go away by itself in two weeks.\tCela va disparaître naturellement dans deux semaines.\nIt would be nice if it stopped raining.\tÇa serait chouette s'il s'arrêtait de pleuvoir.\nIt's OK to take a picture from outside.\tIl est licite de prendre une photo de l'extérieur.\nIt's OK to take a picture from outside.\tPrendre une photo de l'extérieur est permis.\nIt's OK to take a picture from outside.\tPrendre une photo depuis l'extérieur est permis.\nIt's a lot of fun skiing in fresh snow.\tC'est très amusant de skier dans la neige fraîche.\nIt's a lot of fun skiing in fresh snow.\tIl est très amusant de skier dans la neige fraîche.\nIt's a matter of the utmost importance.\tC'est une question de la plus haute importance.\nIt's been a pleasure chatting with you.\tÇa a été un plaisir de parler avec toi.\nIt's difficult to answer this question.\tIl est difficile de répondre à cette question.\nIt's difficult to answer this question.\tRépondre à cette question est difficile.\nIt's difficult to evaluate his ability.\tIl est difficile d'évaluer sa compétence.\nIt's difficult to understand his ideas.\tIl est difficile de comprendre ses idées.\nIt's fairly mild for this time of year.\tIl fait assez doux pour cette période de l'année.\nIt's impossible to live on that island.\tIl est impossible de vivre sur cette île.\nIt's impossible to reason with a drunk.\tOn ne peut raisonner avec un ivrogne.\nIt's just down the street on your left.\tC'est juste en descendant la rue, sur votre gauche.\nIt's like being a kid in a candy store.\tC'est comme d'être un enfant chez un confiseur.\nIt's like being a kid in a candy store.\tC'est comme d'être un enfant dans un magasin de bonbons.\nIt's like being a kid in a candy store.\tC'est comme d'être un enfant dans une confiserie.\nIt's quite natural for him to think so.\tIl lui est tout à fait naturel de penser ainsi.\nIt's rare to meet nice people like you.\tC'est rare de rencontrer des personnes gentilles comme toi.\nIt's the highest building in this city.\tC'est le bâtiment le plus haut de la ville.\nIt's the only one there is in the shop.\tC'est le seul qu'il y ait en magasin.\nJapan does a lot of trade with the USA.\tLe Japon fait beaucoup de commerce avec les USA.\nJapan has a lot of beautiful mountains.\tLe Japon possède beaucoup de belles montagnes.\nJapan is not what it was ten years ago.\tLe Japon n'est pas ce qu'il était il y a dix ans.\nJapan relies on Arab countries for oil.\tLe Japon se tourne vers les pays arabes pour le pétrole.\nJapan relies on Arab countries for oil.\tLe Japon dépend des pays arabes pour son pétrole.\nJapanese office workers work very hard.\tLes employés de bureau japonais travaillent très dur.\nJapanese people tend to think that way.\tLes Japonais ont tendance à penser de cette façon.\nJust do everything Tom tells you to do.\tFais seulement tout ce que Tom te dit de faire.\nJust exactly what do you want me to do?\tQue veux-tu exactement que je fasse ?\nJust exactly what do you want me to do?\tQue voulez-vous que je fasse, exactement ?\nKoalas are more popular than kangaroos.\tLes koalas sont plus populaires que les kangourous.\nLeave me alone or I'll call the police.\tLaissez-moi tranquille ou j'appelle la police !\nLet me introduce you to a good dentist.\tLaisse-moi te présenter à un bon dentiste.\nLet me put this in perspective for you.\tPermettez-moi de vous mettre ceci en perspective.\nLet me tell you something about Boston.\tLaisse-moi te dire quelque chose à propos de Boston.\nLet me tell you something about myself.\tLaisse moi te dire quelque chose à mon sujet.\nLet me write it down so I don't forget.\tLaisse-moi l'écrire afin que je ne l'oublie pas.\nLet's discuss what happened last night.\tDiscutons de ce qui est arrivé hier soir.\nLet's forget about what happened today.\tOublions ce qui s’est passé aujourd’hui.\nLet's go back before it begins to rain.\tRepartons avant qu'il commence à pleuvoir.\nLet's help him so that he will succeed.\tAidons-le afin qu'il réussisse.\nLet's just sit here a while and listen.\tAsseyons-nous ici un moment et écoutons.\nLet's sing some English songs together.\tChantons quelques chansons en anglais.\nLet's talk over a cup of tea, shall we?\tParlons de cela autour d'une tasse de thé, qu'en pensez-vous ?\nLie down and make yourself comfortable.\tAllonge-toi et mets-toi à l'aise.\nLife is more interesting than any book.\tLa vie est plus intéressante que n'importe quel livre.\nLike a good wine, he improves with age.\tComme un bon vin, il s'améliore avec l'âge.\nLook at her putting on airs over there.\tRegarde-la agir avec affectation là-bas.\nLooks like we barked up the wrong tree.\tIl semble que nous ayons fait fausse route.\nMake sure that the dog does not escape.\tAssurez-vous que le chien ne s'échappe pas.\nMake sure you get a good night's sleep.\tAssure-toi de prendre une bonne nuit de sommeil !\nMany children were playing in the park.\tDe nombreux enfants jouaient dans le parc.\nMany people have made the same mistake.\tBeaucoup de personnes ont fait la même erreur.\nMany people use ATMs to withdraw money.\tBeaucoup de gens utilisent des distributeurs de billets pour retirer de l'argent.\nMaria Callas was a famous opera singer.\tMaria Callas était une célèbre chanteuse d'opéra.\nMary carries pepper spray in her purse.\tMary a un spray au poivre dans son sac.\nMary carries pepper spray in her purse.\tMary transporte un spray au poivre dans son sac.\nMary decided never to see him any more.\tMary décida de ne plus jamais le revoir.\nMary was given a raise by her employer.\tMarie a reçu une augmentation de la part de son employeur.\nMary went on a voyage around the world.\tMarie partit en voyage autour du monde.\nMay I have your signature here, please?\tPuis-je avoir votre signature ici, je vous prie ?\nMay I see two pieces of identification?\tPuis-je voir deux pièces d'identité ?\nMedication and alcohol often don't mix.\tLes médicaments et l'alcool font rarement bon ménage.\nMention Mexico, and tacos come to mind.\tSi on parle de Mexico, on pense aux tacos.\nMinnesota's state bird is the mosquito.\tL'oiseau symbole de l'État du Minnesota est le moustique.\nModern technology gives us many things.\tLa technologie moderne nous apporte de nombreuses choses.\nMom, could you read me a bedtime story?\tMaman, peux-tu me lire une histoire au lit ?\nMom, could you read me a bedtime story?\tMaman, pouvez-vous me lire une histoire au lit ?\nMonday's protests were mostly peaceful.\tLes manifestations de lundi étaient surtout pacifiques.\nMost Japanese houses are built of wood.\tLa plupart des maisons japonaises sont faites en bois.\nMost Japanese temples are made of wood.\tLa plupart des temples japonais sont fait en bois.\nMost experts think a lot of his theory.\tBeaucoup d'experts considèrent sa théorie.\nMost of them urged him to take the job.\tLa plupart d'entre eux le pressèrent d'accepter le poste.\nMt. Fuji could be seen in the distance.\tOn pouvait voir le Mont Fuji au loin.\nMust this letter be written in English?\tEst-ce que cette lettre doit être écrite en anglais ?\nMy baby brother sleeps ten hours a day.\tMon tout petit frère dort dix heures par jour.\nMy big brother shared his cake with me.\tMon grand frère a partagé son gâteau avec moi.\nMy boss isn't satisfied with my report.\tMon patron n'est pas satisfait de mon rapport.\nMy brother is looking for an apartment.\tMon frère cherche un appartement.\nMy brother will often sit up all night.\tMon frère reste souvent éveillé toute la nuit.\nMy client has been charged with murder.\tMon client est accusé de meurtre.\nMy credit card was rejected by the ATM.\tMa carte de crédit a été rejetée par le distributeur de billets.\nMy dad is the best dad in the universe.\tMon papa est le meilleur papa de l'univers.\nMy daughter is getting married in June.\tMa fille va se marier en juin.\nMy daughter will come of age next year.\tMa fille atteindra la majorité l'année prochaine.\nMy dog has been missing for three days.\tMon chien a disparu depuis trois jours.\nMy father does not always walk to work.\tMon père ne se rend pas toujours à pied au travail.\nMy father does play golf, but not well.\tMon père joue au golf, mais pas bien.\nMy father hasn't gone abroad even once.\tMon père n'est jamais allé une seule fois à l'étranger.\nMy father is a good speaker of English.\tMon père parle bien l'anglais.\nMy father is getting better and better.\tMon père va de mieux en mieux.\nMy father is not always free on Sunday.\tMon père n'est pas toujours libre le dimanche.\nMy father will soon be forty years old.\tMon père va bientôt avoir 40 ans.\nMy great aunt was a staunch teetotaler.\tMa grand-tante était une anti-alcoolique invétérée.\nMy mom doesn't speak English very well.\tMa maman ne parle pas très bien anglais.\nMy mother baked a cake for my birthday.\tMa mère a confectionné un gâteau pour mon anniversaire.\nMy mother finally approved of our plan.\tMa mère a finalement approuvé notre plan.\nMy mother gets up early in the morning.\tMa mère se lève tôt le matin.\nMy mother is knitting me a new sweater.\tMa mère me tricote un nouveau chandail.\nMy mother often suffers from headaches.\tMa mère souffre souvent de maux de tête.\nMy mother prepared me for the bad news.\tMa mère m'avait préparé à ces mauvaises nouvelles.\nMy muscles were aching and I was tired.\tMes muscles étaient douloureux et j'étais fatigué.\nMy neighbor complained about the noise.\tMon voisin s'est plaint du bruit.\nMy neighbor complained about the noise.\tMa voisine s'est plainte du bruit.\nMy parents forbade me to see Tom again.\tMes parents m'ont interdit de revoir Tom.\nMy parents send you their best regards.\tMes parents vous envoient leurs meilleures salutations.\nMy pencil fell off the edge of my desk.\tMon crayon est tombé du coin de mon bureau.\nMy roommate complained about the noise.\tMon compagnon de chambrée s'est plaint du bruit.\nMy roommate complained about the noise.\tMa compagne de chambrée s'est plainte du bruit.\nMy roommate complained about the noise.\tMon camarade de chambrée s'est plaint du bruit.\nMy roommate complained about the noise.\tMa camarade de chambrée s'est plainte du bruit.\nMy sister is not a high school student.\tMa sœur n'est pas lycéenne.\nMy sister is suffering from a bad cold.\tMa sœur souffre d'un mauvais rhume.\nMy sister is too young to go to school.\tMa sœur est trop jeune pour aller à l'école.\nMy sister often takes care of the baby.\tMa sœur s'occupe souvent du bébé.\nMy sister still lives with our parents.\tMa sœur vit encore avec nos parents.\nMy sister takes a shower every morning.\tMa sœur prend une douche tous les matins.\nMy sister takes a shower every morning.\tMa sœur se douche chaque matin.\nMy success is largely due to your help.\tMon succès est en grande partie dû à votre aide.\nMy uncle isn't young, but he's healthy.\tMon oncle n'est pas jeune, mais il est en bonne santé.\nMy younger brother is taller than I am.\tMon plus jeune frère est plus grand que moi.\nNever do anything just to show you can.\tNe fais jamais quoi que ce soit pour simplement prouver que tu le peux.\nNever do anything just to show you can.\tNe faites jamais quoi que ce soit pour simplement prouver que vous en êtes capables.\nNo one doubts her fitness for the post.\tPersonne ne doute de son aptitude pour le poste.\nNo one has ever said such things to me.\tPersonne ne m'a jamais dit de telles choses.\nNo one really knows what a UFO is like.\tPersonne ne sait vraiment à quoi ressemble un OVNI.\nNo one was supposed to know about that.\tPersonne n'était supposé savoir cela.\nNobody knows why he turns down my help.\tPersonne ne sait pourquoi il a refusé mon aide.\nNot knowing what to say, I kept silent.\tNe sachant que dire, je gardai le silence.\nNothing is more important than empathy.\tRien n'est plus important que l'empathie.\nNothing would give me greater pleasure.\tRien ne me procurerait davantage de plaisir !\nNow it's time for the weather forecast.\tC'est l'heure de la météo.\nNowadays children do not play outdoors.\tDe nos jours les enfants ne jouent pas dehors.\nOnce again, I was able to escape death.\tUne fois de plus, je fus en mesure d'échapper à la mort.\nOne of Jesus' disciples was named Paul.\tL'un des apôtres de Jésus s'appelait Paul.\nOne of the bulls pushed the fence down.\tL'un des taureaux abattit la clôture.\nOne of the children left the door open.\tUn des enfants a laissé la porte ouverte.\nOnions cook more quickly than potatoes.\tLes oignons cuisent plus vite que les pommes de terre.\nOnly a handful of people know the fact.\tSeuls une poignée de personnes sont au courant du fait.\nOnly a handful of people know the fact.\tSeuls une poignée de gens sont au fait.\nOnly seven Senators remained undecided.\tSeuls sept sénateurs restèrent indécis.\nOrganic food is usually more expensive.\tLa nourriture bio est habituellement plus chère.\nOur country is rich in marine products.\tNotre pays est riche en produits de la mer.\nOur electric heater does not work well.\tNotre chauffage électrique ne fonctionne pas bien.\nOur friendship is very important to me.\tNotre amitié m'est très importante.\nOur guest is waiting for us downstairs.\tNotre invité nous attend en bas.\nOur patient is regaining consciousness.\tNotre malade reprend connaissance.\nPaper napkins are sold in packs of ten.\tLes serviettes en papier sont vendues par lots de dix.\nPeople rose in revolt against the King.\tLe peuple s'est révolté contre le roi.\nPeople throughout the north were angry.\tLes gens à travers tout le nord étaient en colère.\nPicasso's paintings seem strange to me.\tLes peintures de Picasso me semblent étranges.\nPlease accept my sincerest condolences.\tVeuillez accepter mes sincères condoléances.\nPlease be seated, ladies and gentlemen.\tQue tout le monde s'assoie, je vous prie !\nPlease come again two weeks from today.\tVeuillez revenir dans deux semaines.\nPlease don't say anything embarrassing.\tJe te prie de ne rien dire d'embarrassant.\nPlease give me some latitude this time.\tVeuillez m'accorder un peu de latitude, cette fois.\nPlease give me some latitude this time.\tAccorde-moi un peu de latitude, cette fois, s'il te plait.\nPlease give my regards to your parents.\tJe te prie de présenter mes respects à tes parents.\nPlease give my regards to your parents.\tVeuillez présenter mes respects à vos parents.\nPlease let me know when dinner's ready.\tPréviens-moi s'il te plaît quand le dîner est prêt.\nPlease move the chair. It's in the way.\tDéplace la chaise, s'il te plait. Elle est dans le passage.\nPlease play something by Chopin for me.\tJoue quelque chose de Chopin pour moi, s'il te plait.\nPlease play something by Chopin for me.\tVeuillez jouer un morceau de Chopin pour moi, je vous prie.\nPlease put a lot of cream in my coffee.\tMettez beaucoup de lait dans mon café, s'il vous plaît.\nPlease remain seated for a few minutes.\tRestez assis un moment, s'il vous plait.\nPlease tell me how you plan to do that.\tDis-moi comment tu prévois de faire ça, s'il te plaît.\nPlease tell me how you plan to do that.\tDites-moi comment vous prévoyez de faire cela, s'il vous plaît.\nPlease write your contact address here.\tVeuillez écrire ici votre adresse de contact.\nPlease write your contact address here.\tÉcris ici ton adresse de contact, je te prie.\nPlumbers are well paid for their labor.\tLes plombiers sont bien payés pour leur labeur.\nPresently the plan is still in the air.\tPour le moment, ce projet est toujours à l'étude.\nPress this button to start the machine.\tAppuyer sur ce bouton pour démarrer la machine.\nProfessor Hudson is my father's friend.\tLe professeur Hudson est un ami de mon père.\nRaise your hand if you have a question.\tLevez la main si vous avez une question.\nRaise your hand if you know the answer.\tLève la main si tu connais la réponse.\nRaise your hand if you know the answer.\tLevez la main si vous connaissez la réponse.\nRecently we have had several disasters.\tNous avons récemment connu plusieurs désastres.\nRecently we have had several disasters.\tNous avons récemment éprouvé plusieurs désastres.\nRefreshments will be served afterwards.\tUn léger goûter sera servi après.\nRemember what we spoke about yesterday.\tRappelez-vous ce dont nous avons parlé hier !\nRemember what we spoke about yesterday.\tRappelle-toi ce dont nous avons parlé hier !\nRight at that instant, the bus stopped.\tJuste à ce moment-là, le bus s'arrêta.\nRight at that instant, the bus stopped.\tJuste à ce moment-là, le bus s'est arrêté.\nRules are meant to be kept, not broken.\tLes règles sont faites pour être préservées, pas violées.\nRules are meant to be kept, not broken.\tLes règles sont faites pour être préservées, non pas violées.\nSea levels around the world are rising.\tLe niveau des mers autour du monde s'élève.\nSeven is believed to be a lucky number.\tLes gens croient que sept est un nombre porte-bonheur.\nShe acknowledged having made a mistake.\tElle a reconnu avoir commis une erreur.\nShe acted in a play for the first time.\tElle a joué pour la première fois dans une pièce.\nShe advised him on how to stay healthy.\tElle lui prodigua des conseils pour rester en bonne santé.\nShe advised him on how to stay healthy.\tElle lui a prodigué des conseils pour rester en bonne santé.\nShe advised him to cut down on smoking.\tElle lui conseilla de diminuer le tabac.\nShe advised him to cut down on smoking.\tElle lui a conseillé de diminuer le tabac.\nShe advised him to go on a strict diet.\tElle lui conseilla d'entreprendre un régime strict.\nShe advised him to go on a strict diet.\tElle lui a conseillé d'entreprendre un régime strict.\nShe advised him to take a long holiday.\tElle lui conseilla de prendre de longues vacances.\nShe advised him to take a long holiday.\tElle lui a conseillé de prendre de longues vacances.\nShe always urges him to try new things.\tElle le presse toujours d'essayer de nouvelles choses.\nShe apologized for having offended him.\tElle présenta ses excuses pour l'avoir offensé.\nShe apologized for having offended him.\tElle a présenté ses excuses pour l'avoir offensé.\nShe asked him if he knew where I lived.\tElle lui demanda s'il savait où je vivais.\nShe asked him if he knew where I lived.\tElle lui a demandé s'il savait où je vivais.\nShe asked me whether I know how to sew.\tElle m'a demandé si je savais coudre.\nShe asked me whether I know how to sew.\tElle me demanda si je savais coudre.\nShe asked them to take their shoes off.\tElle leur demanda de retirer leurs chaussures.\nShe assured him that everything was OK.\tElle l'assura que tout allait bien.\nShe assured him that everything was OK.\tElle l'a assuré que tout allait bien.\nShe beat him to death with a golf club.\tElle le battit à mort avec un club de golf.\nShe beat him to death with a golf club.\tElle l'a battu à mort avec un club de golf.\nShe burst out laughing when she saw me.\tElle éclata de rire quand elle me vit.\nShe called him every bad name she knew.\tElle le traita de tous les noms qu'elle connaissait.\nShe called him every bad name she knew.\tElle l'a traité de tous les noms qu'elle connaissait.\nShe came into the room with her hat on.\tElle est entrée dans la pièce avec son chapeau.\nShe committed suicide by taking poison.\tElle se suicida en prenant du poison.\nShe deliberately exposed him to danger.\tElle l'exposa délibérément au danger.\nShe deliberately exposed him to danger.\tElle l'a délibérément exposé au danger.\nShe did her best never to think of him.\tElle fit de son mieux pour ne jamais songer à lui.\nShe didn't try to translate the letter.\tElle n'essaya pas de traduire la lettre.\nShe didn't want him to stay any longer.\tElle ne voulait pas qu'il restât plus longtemps.\nShe didn't want him to stay any longer.\tElle ne voulut pas qu'il restât plus longtemps.\nShe didn't want him to stay any longer.\tElle n'a pas voulu qu'il reste plus longtemps.\nShe doesn't know what she really wants.\tElle ne sait pas ce qu'elle veut vraiment.\nShe doesn't want to play with her toys.\tElle ne veut pas jouer avec ses jouets.\nShe emerged victorious in the struggle.\tElle est sortie victorieuse du conflit.\nShe failed to understand a single word.\tElle n'a pas réussi à comprendre un seul mot.\nShe followed him home; then killed him.\tElle le suivit à son domicile et le tua.\nShe followed him home; then killed him.\tElle l'a suivi à son domicile et l'a tué.\nShe forgave him for killing her father.\tElle lui pardonna d'avoir tué son père.\nShe forgave him for killing her father.\tElle lui a pardonné d'avoir tué son père.\nShe gave him a sweater on his birthday.\tElle lui offrit un chandail pour son anniversaire.\nShe gave him a sweater on his birthday.\tElle lui a offert un chandail pour son anniversaire.\nShe got all dolled up for her big date.\tElle se fit toute belle pour son grand rendez-vous.\nShe had a choice of going or remaining.\tElle avait le choix entre partir ou rester.\nShe had never been so proud of herself.\tElle n'a jamais été aussi fière d'elle.\nShe has been sick since last Wednesday.\tElle est malade depuis mercredi dernier.\nShe has gone through many difficulties.\tElle a traversé de nombreuses difficultés.\nShe has never been asked out on a date.\tElle n'a encore jamais été conviée à un rendez-vous galant.\nShe has nothing to do with that affair.\tElle n'a vraiment rien à voir avec cette affaire.\nShe invited him in for a cup of coffee.\tElle l'invita à entrer prendre une tasse de café.\nShe invited him in for a cup of coffee.\tElle l'a invité à entrer prendre une tasse de café.\nShe is a difficult person to deal with.\tC'est une personne avec laquelle il est difficile de traiter.\nShe is a student who studies very hard.\tC'est une étudiante qui étudie sérieusement.\nShe is always buying expensive clothes.\tElle est toujours en train d'acheter des vêtements de prix.\nShe is completely deaf in her left ear.\tElle est complètement sourde de l'oreille gauche.\nShe is determined to leave the company.\tElle est déterminée à quitter l'entreprise.\nShe is living in the middle of nowhere.\tElle vit au milieu de nulle part.\nShe is old enough to travel by herself.\tElle est assez grande pour voyager toute seule.\nShe is particular about what she wears.\tElle porte une attention particulière à ce qu'elle met.\nShe knew better than to argue with him.\tElle n'est pas stupide au point de se disputer avec lui.\nShe lay on a sofa with her eyes closed.\tElle était allongée sur un sofa, les yeux clos.\nShe likes tennis as well as basketball.\tElle aime autant le tennis que le basketball.\nShe pressed her nose against the glass.\tElle pressait son nez contre la vitre.\nShe put on her new dress for the party.\tElle a mis sa nouvelle robe pour la fête.\nShe reminds me very much of her mother.\tElle me rappelle beaucoup sa mère.\nShe said that she saw a suspicious man.\tElle a dit qu'elle a vu un homme suspect.\nShe served the family for twenty years.\tElle a servi la famille pendant vingt ans.\nShe sometimes takes a walk in the park.\tElle se promène parfois dans le parc.\nShe stared at him with frightened eyes.\tElle le fixa, les yeux apeurés.\nShe started dancing when she was eight.\tElle a commencé la danse à l'âge de huit ans.\nShe stood as close to him as she could.\tElle se tint aussi près de lui qu'elle put.\nShe stood as close to him as she could.\tElle s'est tenue aussi près de lui qu'elle a pu.\nShe strongly resembles her grandmother.\tElle ressemble fortement à sa grand-mère.\nShe talked him into buying a new house.\tElle le persuada d'acheter une nouvelle maison.\nShe talked him into buying a new house.\tElle l'a persuadé d'acheter une nouvelle maison.\nShe taught him the tricks of the trade.\tElle lui a enseigné les ficelles du métier.\nShe taught him the tricks of the trade.\tElle lui enseigna les ficelles du métier.\nShe told him where to put the suitcase.\tElle lui indiqua où poser la valise.\nShe told him where to put the suitcase.\tElle lui a indiqué où poser la valise.\nShe told me his name after he had left.\tElle me dit son nom après qu'il fut parti.\nShe used to help him with his homework.\tElle avait l'habitude de l'aider dans ses devoirs.\nShe walked slowly so she wouldn't slip.\tElle marcha lentement de telle sorte qu'elle ne glissât pas.\nShe wants to know who sent the flowers.\tElle veut savoir qui a envoyé les fleurs.\nShe was a Smith before she got married.\tElle était une Serrurier avant son mariage.\nShe was advised by him to stop smoking.\tIl lui a conseillé d'arrêter de fumer.\nShe was advised by him to stop smoking.\tIl lui conseilla d'arrêter de fumer.\nShe was kind enough to show me the way.\tElle fut assez aimable pour m'indiquer le chemin.\nShe was playing the piano at that time.\tElle jouait du piano à ce moment.\nShe was playing the piano at that time.\tElle jouait du piano à cette époque.\nShe was scared to death of her husband.\tElle avait une peur bleue de son mari.\nShe went shopping with him last Monday.\tElle est allée faire des courses avec lui lundi dernier.\nShe went shopping with him last Monday.\tElle est allée faire des emplettes avec lui lundi dernier.\nShe went to the airport to see him off.\tElle se rendit à l'aéroport pour lui faire ses adieux.\nShe went to the station to see him off.\tElle se rendit à la gare pour lui faire ses adieux.\nShe went to the station to see him off.\tElle s'est rendue à la gare pour lui faire ses adieux.\nShe will be a beauty when she grows up.\tElle sera une beauté, lorsqu'elle grandira.\nShe wiped her face with a handkerchief.\tElle s'essuya la figure avec un mouchoir.\nShe worked hard in order to save money.\tElle a travaillé dur pour économiser de l'argent.\nShe would have failed without his help.\tElle aurait échoué sans son aide.\nShe's been in the hospital for a month.\tElle est à l'hôpital depuis un mois.\nShe's busy now and can't talk with you.\tElle est occupée à l'instant et ne peut s'entretenir avec vous.\nShe's busy now and can't talk with you.\tElle est occupée à l'instant et ne peut s'entretenir avec toi.\nShe's much better today than yesterday.\tAujourd'hui, elle va beaucoup mieux qu'hier.\nShe's suffering from a serious disease.\tElle souffre d'une maladie grave.\nShe's young enough to be your daughter.\tElle est assez jeune pour être ta fille.\nSmiles do not always indicate pleasure.\tLes sourires ne montrent pas toujours le plaisir.\nSolar energy is a new source of energy.\tL'énergie solaire est une nouvelle source d'énergie.\nSome believe Nessie lives in this lake.\tCertains croient que Nessie vit dans ce lac.\nSome believe in UFOs and others do not.\tCertains croient aux OVNI et d'autres non.\nSome children are playing on the grass.\tQuelques enfants sont en train de jouer sur l'herbe.\nSome factories pollute the environment.\tCertaines usines polluent l'environnement.\nSomeone must have left the window open.\tQuelqu'un doit avoir laissé la fenêtre ouverte.\nSomething has happened to my right eye.\tQuelque chose est arrivé à mon œil droit.\nSometimes I have to read boring novels.\tParfois, je dois lire des romans ennuyeux.\nSongs and poems were written about him.\tDes chansons et des poèmes furent composés en son honneur.\nSooner or later, his luck will run out.\tTôt ou tard sa chance tournera.\nSooner or later, his luck will run out.\tTôt ou tard, sa chance l'abandonnera.\nStop reading comic books while working.\tArrête de lire des bandes dessinées en travaillant.\nSuddenly, it started to rain very hard.\tSoudain, il commença à pleuvoir très fort.\nSuddenly, it started to rain very hard.\tTout à coup, il s'est mis à pleuvoir très fort.\nTechnology solved many of the problems.\tLa technologie a résolu nombre des problèmes.\nTell me why you didn't do what I asked.\tDis-moi pourquoi tu n'as pas fait ce que j'ai demandé.\nTell me why you didn't do what I asked.\tDites-moi pourquoi vous n'avez pas fait ce que j'ai demandé.\nTell them to call me before they leave.\tDis-leur de m'appeler avant qu'ils ne partent.\nThank you for inviting me to the party.\tMerci de m'avoir invité à la fête.\nThanks for coming on such short notice.\tMerci d'être venu dans un délai si court.\nThat TV station broadcasts only movies.\tCette chaîne de télévision diffuse uniquement des films.\nThat actually sounds like a lot of fun.\tÇa à en effet l'air très marrant.\nThat child wants a friend to play with.\tCe gosse veut un ami avec lequel jouer.\nThat is the fastest train in the world.\tC'est le train le plus rapide du monde.\nThat is the fastest train in the world.\tC'est le train le plus rapide au monde.\nThat job gave him little gratification.\tCet emploi était peu valorisant pour lui.\nThat joke he told really cracked me up!\tCette blague qu'il a racontée m'a vraiment fait marrer !\nThat man is a famous cabaret performer.\tCet homme est un artiste de cabaret renommé.\nThat market has been rapidly expanding.\tCe marché s'est rapidement développé.\nThat place is in the middle of nowhere.\tCet endroit est au milieu de nulle part.\nThat responsibility is a burden to him.\tCette responsabilité est un fardeau pour lui.\nThat should only take me a few minutes.\tCela ne devrait me prendre que quelques minutes.\nThat song reminds me of a certain girl.\tCette chanson me rappelle une certaine fille.\nThat swimsuit looks really good on you.\tCe maillot de bain va vraiment bien sur toi.\nThat was why he entered the university.\tC'était la raison pour laquelle il entra à l'université.\nThat would be a waste of their talents.\tÇa serait gâcher leurs talents.\nThat's a really dangerous intersection.\tC'est une intersection très dangereuse.\nThat's my girlfriend you're talking to.\tC'est à ma copine que tu parles.\nThat's my girlfriend you're talking to.\tC'est à ma copine que vous parlez.\nThat's my story and I'm sticking to it.\tC'est ma version de l'histoire et je n'en changerai pas.\nThat's my story and I'm sticking to it.\tC'est mon passé et je m'y accroche.\nThat's my story and I'm sticking to it.\tC'est ma version et je m'y tiens.\nThat's not exactly what I meant to say.\tCe n'est pas exactement ce que je voulais dire.\nThat's not how I want to be remembered.\tCe n'est pas ainsi que je veux qu'on se souvienne de moi.\nThat's the important thing to remember.\tC'est la chose importante dont il faut se rappeler.\nThat's the only thing that's important.\tC'est la seule chose qui soit importante.\nThat's what I've been saying all along.\tC'est ce que je dis depuis le début.\nThat's what my friends keep telling me.\tC'est ce que mes amis n'arrêtent pas de me dire.\nThe Golden Gate Bridge is made of iron.\tLe pont de Golden Gate est fait en fer.\nThe Japanese economy developed rapidly.\tL'économie japonaise s'est rapidement développée.\nThe TV program seemed very interesting.\tLe programme télé semblait vraiment intéressant.\nThe accident deprived him of his sight.\tL'accident le priva de la vue.\nThe accident happened a year ago today.\tL'accident s'est produit il y a un an aujourd'hui.\nThe administration approved the budget.\tL'administration a approuvé le budget.\nThe apple tree has a beautiful blossom.\tLes pommiers ont de magnifiques fleurs.\nThe baby weighed seven pounds at birth.\tLe bébé pesait 7 livres à la naissance.\nThe best player of all times was Pelé.\tLe meilleur joueur de tous les temps fut Pelé.\nThe blossoms will be out in a few days.\tLes boutons fleuriront dans quelques jours.\nThe body was burned beyond recognition.\tLe corps était brûlé de manière méconnaissable.\nThe boy was accompanied by his parents.\tL'enfant était accompagné de ses parents.\nThe boy was searching for the lost key.\tLe garçon cherchait la clé perdue.\nThe building that I saw was very large.\tLe bâtiment que je vis était très grand.\nThe building that I saw was very large.\tLe bâtiment que j'ai vu était très grand.\nThe cat is sitting on top of the table.\tLe chat est assis sur le dessus de la table.\nThe changes are being made as we speak.\tLes modifications sont en cours au moment où nous parlons.\nThe child was made a ward of the state.\tL'enfant fut fait pupille de la nation.\nThe committee consists of five members.\tLe comité se compose de cinq membres.\nThe committee consists of four members.\tLe comité est formé de quatre membres.\nThe contents of the letter were secret.\tLe contenu de la lettre était secret.\nThe cool air felt wonderful on my face.\tL'air froid me caressa merveilleusement le visage.\nThe cost of gasoline keeps on going up.\tLe prix de l'essence ne cesse de monter.\nThe country is in a bad economic state.\tLe pays est en mauvaise posture économique.\nThe couple parted, never to meet again.\tLe couple se sépara, pour ne plus jamais se retrouver.\nThe crew were all waiting for the news.\tL'équipage entier était en attente de nouvelles.\nThe crowd is growing larger and larger.\tLa foule s'agrandit de plus en plus.\nThe crowd poured out of the auditorium.\tLa foule se déversa de l'auditorium.\nThe cruel man beat the dog with a whip.\tCet homme cruel fouetta son chien.\nThe current president has many enemies.\tLe président actuel a beaucoup d'ennemis.\nThe damage will cost us a lot of money.\tCe dommage nous coûtera beaucoup d'argent.\nThe days are getting longer and longer.\tLes jours sont de plus en plus longs.\nThe days are getting warmer and warmer.\tLes jours sont plus en plus chauds.\nThe deal fell apart at the last minute.\tLe contrat s'est cassé la figure à la dernière minute.\nThe doctor arrived in the nick of time.\tLe médecin arriva in extremis.\nThe doctor told me not to eat too much.\tLe docteur m'a dit de ne pas trop manger.\nThe dog answers to the name of Blackie.\tLe chien répond au nom de Blackie.\nThe dog answers to the name of Blackie.\tLe chien répond au nom de Noiraud.\nThe door is locked at nine every night.\tLa porte est fermée à clé à neuf heures tous les soirs.\nThe driver sustained multiple injuries.\tLe conducteur a subi plusieurs blessures.\nThe driver sustained multiple injuries.\tLa conductrice a subi plusieurs blessures.\nThe earth is much larger than the moon.\tLa Terre est beaucoup plus grande que la Lune.\nThe enemy kept up their attack all day.\tL'ennemi a poursuivi son offensive toute la journée.\nThe event is still fresh in our memory.\tCet événement est encore frais dans notre mémoire.\nThe experiment seemed to be going well.\tL'expérience semblait bien se dérouler.\nThe experiment seemed to be going well.\tL'expérience sembla bien se dérouler.\nThe experiment seemed to be going well.\tL'expérience a semblé bien se dérouler.\nThe explosion frightened the villagers.\tL'explosion a terrorisé les villageois.\nThe failure is due to his carelessness.\tL'échec est le résultat de son insouciance.\nThe farmer seeded the field with wheat.\tLe fermier ensemença le champ de blé.\nThe fighting lasted about three months.\tLes combats durèrent environ trois mois.\nThe first season of the year is spring.\tLa première saison de l'année c'est le printemps.\nThe flowers will brighten up the table.\tLes fleurs vont enjoliver la table.\nThe fugitive made a run for the border.\tLe fugitif se précipita vers la frontière.\nThe game will be held even if it rains.\tLe jeu sera maintenu même s'il pleut.\nThe girl still believes in Santa Claus.\tCette fille croit encore au Père Noël.\nThe greatest happiness lies in freedom.\tLe plus grand des bonheurs c'est la liberté.\nThe heat's preventing me from sleeping.\tLa chaleur m'empêche de dormir.\nThe huge tanker has just left the dock.\tLe pétrolier géant vient de quitter le bassin.\nThe hunter hunted rabbits with his dog.\tUn chasseur chassait des lièvres avec son chien.\nThe leaves on the tree have turned red.\tLes feuilles de l'arbre sont devenues rouges.\nThe leaves on the tree have turned red.\tLes feuilles, sur l'arbre, ont viré au rouge.\nThe man lit a cigarette with a lighter.\tL'homme alluma une cigarette avec un briquet.\nThe man sitting next to me spoke to me.\tL'homme assis à côté de moi me parla.\nThe man was ashamed of being born poor.\tL'homme avait honte d'être né pauvre.\nThe man you saw yesterday was my uncle.\tL'homme que tu as vu hier est mon oncle.\nThe man you see over there is my uncle.\tL'homme que tu vois là est mon oncle.\nThe mayor addressed the general public.\tLe maire s'est adressé à la population.\nThe missing cat has not been found yet.\tLe chat disparu n'a pas encore été retrouvé.\nThe moon is the earth's only satellite.\tLa Lune est le seul satellite de la Terre.\nThe mother is looking for a babysitter.\tLa mère cherche un baby sitter.\nThe news finally reached me last night.\tLes nouvelles me sont enfin parvenues hier soir.\nThe next step was to sign the document.\tL'étape suivante était de signer le document.\nThe noise distracted him from studying.\tLe bruit le distrayait de ses études.\nThe old chair groaned under her weight.\tLa vieille chaise grinça sous son poids.\nThe old man sometimes talks to himself.\tLe vieil homme se parle parfois à lui-même.\nThe only person who hasn't paid is you.\tLa seule personne qui n'a pas payé, c'est toi.\nThe only thing I have now are memories.\tLes seules choses que j'ai maintenant sont des souvenirs.\nThe package was wrapped in thick paper.\tLe paquet était enveloppé dans un papier épais.\nThe patrolman motioned me to pull over.\tL'agent de police m'a fait signe de m'arrêter.\nThe patrolman motioned me to pull over.\tL'agent de police m'a signifié de m'arrêter.\nThe patrolman motioned me to pull over.\tL'agent de police me fit signe de m'arrêter.\nThe patrolman motioned me to pull over.\tL'agent de police me signifia de m'arrêter.\nThe pen I lost yesterday was a new one.\tLe stylo que j'ai perdu hier était neuf.\nThe picture looks better at a distance.\tCette image rend mieux de loin.\nThe police are looking into the matter.\tLa police enquête.\nThe policeman aimed his gun at the man.\tLe policier mit l'homme en joue.\nThe policeman didn't believe the thief.\tLe policier ne crut pas le voleur.\nThe policeman grabbed the robber's arm.\tLe policier se saisit du bras du voleur.\nThe post office is that brown building.\tLe bureau de poste est ce bâtiment marron.\nThe president is difficult to approach.\tLe président est difficile à approcher.\nThe problem disappeared as if by magic.\tLe problème a disparu comme par magie.\nThe problem disappeared as if by magic.\tLe problème disparut comme par magie.\nThe problem is not worth consideration.\tLe problème ne vaut pas la réflexion.\nThe problem is we don't have much time.\tLe problème c'est qu'on a pas beaucoup de temps.\nThe rebels took control of the capital.\tLes rebelles ont pris le contrôle de la capitale.\nThe reporter criticized the politician.\tLe journaliste critiqua le politicien.\nThe results were far from satisfactory.\tLes résultats étaient loin d'être satisfaisants.\nThe rich are different from you and me.\tLes riches sont différents de vous et moi.\nThe rich are different from you and me.\tLes riches sont différents de toi et moi.\nThe road curves gently toward the lake.\tLa route courbe légèrement en direction du lac.\nThe sailors abandoned the burning ship.\tLes marins abandonnèrent le navire en flammes.\nThe shop was crowded with young people.\tLe magasin était plein de jeunes gens.\nThe situation got out of their control.\tLa situation échappa à leur contrôle.\nThe sky is clear and the sun is bright.\tLe ciel est bleu et le soleil brille.\nThe soldiers had more powerful weapons.\tLes soldats disposaient d'armes d'une puissance de feu supérieure.\nThe soldiers lost the courage to fight.\tLes soldats ont perdu le courage de se battre.\nThe soldiers resisted the enemy attack.\tLes soldats ont résisté à l'attaque ennemie.\nThe supplies are beginning to give out.\tLes provisions commencent à s'épuiser.\nThe teacher made him stay after school.\tLe professeur l'a forcé à rester à l'école.\nThe teacher told them to stop fighting.\tL'instituteur leur dit d'arrêter de se battre.\nThe telephone rang a few minutes later.\tLe téléphone retentit quelques minutes plus tard.\nThe telephone rang a few minutes later.\tLe téléphone sonna quelques minutes plus tard.\nThe telephone rang a few minutes later.\tLe téléphone a sonné quelques minutes plus tard.\nThe telephone rang a few minutes later.\tLe téléphone a retenti quelques minutes plus tard.\nThe thief was apprehended this morning.\tLe voleur a été arrêté ce matin.\nThe town where I was born is beautiful.\tLa ville où je suis né est belle.\nThe train doesn't stop at that station.\tLe train ne s'arrête pas à cette gare.\nThe train stopped because of the storm.\tLe train s'est arrêté en raison de la tempête.\nThe traveler stopped to ask me the way.\tLe voyageur s'est arrêté pour me demander le chemin.\nThe two nations have strong trade ties.\tLes deux nations ont de forts liens commerciaux.\nThe two towns are separated by a river.\tLes deux villes sont séparées par un fleuve.\nThe war had united the American people.\tLa guerre a unifié le peuple Américain.\nThe war was finally brought to a close.\tOn mit finalement un terme à la guerre.\nThe whole class is present once a week.\tToute la classe est présente une fois par semaine.\nThe word \"nigger\" is an offensive term.\tLe terme \"nègre\" est offensant.\nThe work must be completed by tomorrow.\tLe travail doit être fini pour demain.\nThe work was finished before I arrived.\tLe travail était fini avant que je n'arrive.\nThe young man came running to meet her.\tLe jeune homme est venu la rencontrer en courant.\nTheir goods are of the highest quality.\tLeurs marchandises sont de la plus haute qualité.\nTheir lifestyle is different from ours.\tLeur style de vie est différent du nôtre.\nThere appears to have been an accident.\tIl paraît qu'il a eu un accident.\nThere are a lot of things I have to do.\tIl y a de nombreuses choses que j'ai à faire.\nThere are no dogs bigger than this one.\tIl n'existe pas de chiens plus grands que celui-là.\nThere are still many things left to do.\tIl reste encore beaucoup à faire.\nThere are two cats sleeping on the bed.\tDeux chats dormaient sur le lit.\nThere is a bird feeder in our backyard.\tIl y a une mangeoire à oiseaux au fond de notre arrière-cour.\nThere is a cafeteria in the university.\tIl y a une cafétéria à l'université.\nThere is a photo of Tom on Mary's desk.\tIl y a une photo de Tom sur le bureau de Marie.\nThere is a very old temple in the town.\tIl y a un très vieux temple dans la ville.\nThere is an urgent need for more money.\tOn a un besoin urgent d'argent.\nThere is an urgent need for volunteers.\tOn a un besoin urgent de volontaires.\nThere is cranberry juice in the fridge.\tIl y a du jus de canneberge dans le réfrigérateur.\nThere is little prospect of my success.\tMa réussite est improbable.\nThere is no doubt that he was murdered.\tIl n'y a pas de doute qu'il a été assassiné.\nThere is not much traffic on this road.\tIl n'y a pas beaucoup de circulation sur cette route.\nThere might be a gas leak in our house.\tIl pourrait y avoir une fuite de gaz dans notre maison.\nThere must be an easier way to do this.\tIl doit y avoir une façon plus simple de faire ça.\nThere must be some way we can help Tom.\tIl doit y avoir un moyen pour nous d'aider Tom.\nThere must be something else we can do.\tIl doit y avoir quelque chose d'autre que nous pouvons faire.\nThere was a castle here many years ago.\tIl y a de nombreuses années se tenait ici un château.\nThere was a discussion on the measures.\tCes mesures ont été débattues.\nThere was a tape recorder on the table.\tIl y avait un magnétophone sur la table.\nThere was little furniture in the room.\tLa pièce n'était pas très meublée.\nThere was little sugar left in the pot.\tIl restait peu de sucre dans le bocal.\nThere wasn't even one book in the room.\tIl n'y avait pas même un livre dans la pièce.\nThere were a lot of girls at the party.\tIl y avait beaucoup de filles à la fête.\nThere were a lot of people in the park.\tIl y avait beaucoup de monde dans le parc.\nThere will be a lunar eclipse tomorrow.\tIl y aura une éclipse lunaire demain.\nThere's a body in the trunk of the car.\tIl y a un cadavre dans le coffre de la voiture.\nThere's a body in the trunk of the car.\tIl y a un cadavre dans le coffre de la bagnole.\nThere's a bus stop close to our school.\tIl y a un arrêt de bus à proximité de notre école.\nThere's a garden in front of our house.\tNotre maison est pourvue d'un jardin sur sa face avant.\nThere's a lot of furniture in the room.\tIl y a de nombreux meubles dans la pièce.\nThere's hardly any water in the bucket.\tIl n'y a pratiquement pas d'eau dans le seau.\nThere's not enough coffee for everyone.\tIl n'y a pas assez de café pour tout le monde.\nThere's one thing that is bothering me.\tIl y a une chose qui me tracasse.\nThere's someone waiting for me outside.\tIl y a quelqu'un qui m'attend dehors.\nThere's something I wanted to give you.\tIl y a quelque chose que je voulais te donner.\nThere's volcanic ash in the atmosphere.\tIl y a dans l'atmosphère de la cendre volcanique.\nThese are my shoes and those are yours.\tCes chaussures sont les miennes, et voici les tiennes.\nThese shirts are selling like hotcakes.\tCes chemises se vendent comme des petits pains.\nThese two brothers resemble each other.\tCes deux frères se ressemblent.\nThey always talk about the same things.\tIls parlent toujours des mêmes choses.\nThey announced that a storm was coming.\tIls ont annoncé qu'une tempête allait venir.\nThey are both working at the pet store.\tIls travaillent tous les deux à l'animalerie.\nThey are currently attending a meeting.\tIls sont actuellement en réunion.\nThey are on good terms with each other.\tIls sont en bons termes l'un avec l'autre.\nThey are on good terms with each other.\tIls sont en bons termes les uns avec les autres.\nThey arrived in Paris at the same time.\tIls sont arrivés à Paris en même temps.\nThey began to quarrel among themselves.\tIls commencèrent à se quereller entre eux.\nThey called for an end to the fighting.\tIls ont appelé à mettre fin au combat.\nThey called for an end to the fighting.\tElles ont appelé à mettre fin au combat.\nThey called for an end to the fighting.\tIls appelèrent à mettre fin au combat.\nThey called for an end to the fighting.\tElles appelèrent à mettre fin au combat.\nThey didn't offer me anything to drink.\tIls ne m'ont rien offert à boire.\nThey didn't offer me anything to drink.\tElles ne m'ont rien offert à boire.\nThey don't make them like they used to.\tIls ne les font plus ainsi qu'ils les faisaient.\nThey don't make them like they used to.\tElles ne les font plus ainsi qu'elles les faisaient.\nThey dragged their boat onto the beach.\tIls tirèrent leur bateau sur la plage.\nThey fought the measures in the courts.\tIls ont combattu les mesures en justice.\nThey had a debate on same-sex marriage.\tIls eurent un débat sur le mariage homosexuel.\nThey had a debate on same-sex marriage.\tIls ont eu un débat sur le mariage homosexuel.\nThey had a debate on same-sex marriage.\tElles eurent un débat sur le mariage homosexuel.\nThey had a debate on same-sex marriage.\tElles ont eu un débat sur le mariage homosexuel.\nThey had no alternative but to retreat.\tIls n'eurent d'autre choix que de battre en retraite.\nThey had no alternative energy sources.\tIls n'avaient pas de sources d'énergie alternatives.\nThey knew exactly what they were doing.\tIls savaient exactement ce qu'ils faisaient.\nThey knew exactly what they were doing.\tIls savaient exactement ce qu'elles faisaient.\nThey knew exactly what they were doing.\tElles savaient exactement ce qu'ils faisaient.\nThey knew exactly what they were doing.\tElles savaient exactement ce qu'elles faisaient.\nThey knew how much danger they were in.\tIls savaient en quels périls ils se trouvaient.\nThey knew how much danger they were in.\tElles savaient en quels périls elles se trouvaient.\nThey knew how much danger they were in.\tElles savaient en quels périls ils se trouvaient.\nThey knew how much danger they were in.\tIls savaient en quels périls elles se trouvaient.\nThey knew how much danger they'd be in.\tIls savaient en quels périls ils se trouveraient.\nThey knew how much danger they'd be in.\tElles savaient en quels périls elles se trouveraient.\nThey knew how much danger they'd be in.\tIls savaient en quels périls elles se trouveraient.\nThey knew how much danger they'd be in.\tElles savaient en quels périls ils se trouveraient.\nThey knew how much danger they'd be in.\tIls savaient quels dangers ils encouraient.\nThey knew how much danger they'd be in.\tIls savaient quels dangers elles encouraient.\nThey knew how much danger they'd be in.\tElles savaient quels dangers elles encouraient.\nThey knew how much danger they'd be in.\tElles savaient quels danger ils encouraient.\nThey left it to me to decide on a gift.\tIls me laissèrent décider d'un cadeau.\nThey left it to me to decide on a gift.\tElles me laissèrent décider d'un cadeau.\nThey love to give parties all the time.\tIls adorent faire des fêtes tout le temps.\nThey painted their house bright yellow.\tElles peignirent leur maison d'un jaune vif.\nThey sat in the shade of that big tree.\tIls se sont assis à l'ombre de ce grand arbre.\nThey shot the film in an actual desert.\tIls ont tourné le film dans un vrai désert.\nThey spent the entire day on the beach.\tIls passèrent la totalité de la journée sur la plage.\nThey spent the entire day on the beach.\tIls ont passé la totalité de la journée sur la plage.\nThey were born one month apart in 1970.\tIls sont nés à un mois d'intervalle en 1970.\nThey were responsible for the accident.\tIls furent responsables de l'accident.\nThey were responsible for the accident.\tIls ont été responsables de l'accident.\nThey were responsible for the accident.\tElles furent responsables de l'accident.\nThey were responsible for the accident.\tElles ont été responsables de l'accident.\nThey were responsible for the accident.\tCe sont eux qui furent responsables de l'accident.\nThey were responsible for the accident.\tCe sont elles qui furent responsables de l'accident.\nThey were responsible for the accident.\tCe sont eux qui ont été responsables de l'accident.\nThey were responsible for the accident.\tCe sont elles qui ont été responsables de l'accident.\nThey were waiting for the gate to open.\tIls attendaient l'ouverture de la porte.\nThey were worried about getting caught.\tIls étaient inquiets de se faire prendre.\nThey were worried about getting caught.\tElles étaient inquiètes de se faire prendre.\nThey will debate the question tomorrow.\tIls discuteront de la question demain.\nThey will debate the question tomorrow.\tElles discuteront de la question demain.\nThey're both in love with the same guy.\tElles sont toutes les deux amoureuses du même type.\nThey're both in love with the same guy.\tElles sont toutes deux amoureuses du même type.\nThey're here until the end of the week.\tIls sont là jusqu'à la fin de la semaine.\nThey're studying French and web design.\tIls étudient le français et le webdesign.\nThey've written a bill for health care.\tIls ont rédigé un projet de loi sur la santé.\nThey've written a bill for health care.\tElles ont rédigé un projet de loi sur la santé.\nThis armchair is comfortable to sit in.\tCe fauteuil est confortable pour s'asseoir dedans.\nThis bike belongs to my little brother.\tCe vélo est celui de mon petit frère.\nThis bike belongs to my little brother.\tCe vélo appartient à mon petit frère.\nThis book will awaken your imagination.\tCe livre va éveiller votre imagination.\nThis car comes with an air conditioner.\tCette voiture est équipée de la climatisation.\nThis coffee is too hot for me to drink.\tCe café est si chaud que je n'arrive pas à le boire.\nThis cold weather isn't usual for June.\tCe froid n'est pas habituel pour un mois de juin.\nThis dog is trained to smell out drugs.\tCe chien est entraîné à sentir l'odeur de la drogue.\nThis dog saved that little girl's life.\tCe chien a sauvé la vie de cette fillette.\nThis elevator's capacity is ten people.\tLa capacité de cet ascenseur est de dix personnes.\nThis fluid can be substituted for glue.\tCe fluide peut remplacer la colle.\nThis happened more than three days ago.\tC'est arrivé il y a plus de trois jours.\nThis is a bit too tight around my neck.\tC'est un peu serré autour de la gorge.\nThis is a difficult time for all of us.\tC'est un moment difficile pour nous tous.\nThis is a difficult time for all of us.\tC'est un moment difficile pour nous toutes.\nThis is a major environmental disaster.\tC'est un désastre environnemental majeur.\nThis is a matter of the utmost gravity.\tC'est une affaire de la plus haute gravité.\nThis is a picture of the ship I was on.\tC'est une photographie du bateau sur lequel je me trouvais.\nThis is kind of embarrassing, actually.\tC'est, en vérité, assez embarrassant.\nThis is the biggest hotel in this city.\tC'est le plus grand hôtel dans cette ville.\nThis is the book that I told you about.\tC'est le livre dont je t'ai parlé.\nThis is the dictionary I use every day.\tC'est le dictionnaire que j'utilise tous les jours.\nThis is the house in which he was born.\tC'est la maison dans laquelle il est né.\nThis is the reason I disagree with you.\tC'est la raison pour laquelle je ne suis pas d'accord avec toi.\nThis is the worst thing I've ever done.\tC'est la pire chose que j'ai jamais faite.\nThis letter was never meant to be sent.\tCette lettre ne devait jamais être envoyée.\nThis painting is attributed to Picasso.\tCe tableau est attribué à Picasso.\nThis patient is suffering from hypoxia.\tCe patient souffre d'hypoxie.\nThis patient is suffering from hypoxia.\tCette patiente souffre d'hypoxie.\nThis picture was taken three years ago.\tCette photo a été prise il y a trois ans.\nThis plan had little chance of success.\tCe plan avait peu de chance de réussite.\nThis shirt is too small for me to wear.\tCette chemise est trop petite pour que je la porte.\nThis sofa can seat three people easily.\tTrois personnes peuvent facilement s'asseoir dans ce canapé.\nThis steak is as tough as shoe leather.\tCe steak est aussi dur que de la semelle.\nThis time tomorrow, we'll be in Boston.\tDemain à cette heure-ci nous serons à Boston.\nThis winter will probably be very cold.\tL'hiver sera probablement très froid.\nThis year has been a lucky one for him.\tCette année lui a apporté beaucoup de chance.\nThose books are always in great demand.\tCes bouquins sont toujours très demandés.\nThose kinds of methods are out of date.\tCes genres de méthodes sont dépassées.\nThose old laws were all done away with.\tCes vieilles lois furent toutes mises au rancart.\nTo loosen a screw, turn it to the left.\tPour desserrer une vis, tourne-la vers la gauche.\nTo loosen a screw, turn it to the left.\tPour desserrer une vis, la tourner vers la gauche.\nTo loosen a screw, turn it to the left.\tPour desserrer une vis, tournez-la vers la gauche.\nTo make things even worse, he got sick.\tPour comble de malheur, il tomba malade.\nTo start with, I want to thank you all.\tPour commencer, je veux tous vous remercier.\nTo tell the truth, I completely forgot.\tA dire vrai, j'ai complètement oublié.\nTo tell the truth, I don't really care.\tPour être honnête, cela m'importe peu.\nToday I don't feel like doing anything.\tAujourd'hui je n'ai pas envie de faire quoi que ce soit.\nToday I don't feel like doing anything.\tAujourd'hui je n'ai rien envie de faire.\nToday, I met my new philosophy teacher.\tAujourd'hui j'ai fait la connaissance de ma nouvelle professeur de philosophie.\nTom and Mary both shook their heads no.\tTom et Marie ont tous les deux fait non de la tête.\nTom and Mary both shook their heads no.\tTom et Marie firent tous deux non de la tête.\nTom and Mary both wanted a lot of kids.\tTom et Marie voulaient tous les deux beaucoup d'enfants.\nTom and Mary often eat dinner together.\tTom et Mary dînent souvent ensemble.\nTom and Mary worked out their problems.\tTom et Marie ont résolu leurs problèmes.\nTom and his friends went to the circus.\tTom et ses amis sont allés au cirque.\nTom asked Mary about her new boyfriend.\tTom questionna Mary au sujet de son nouveau petit-ami.\nTom asked Mary if she knew John's wife.\tTom demanda à Marie si elle connaissait la femme de Jean.\nTom asked Mary to play tennis with him.\tTom a demandé à Marie de venir jouer au tennis avec lui.\nTom asked Mary who she was looking for.\tTom demanda à Mary qui elle cherchait.\nTom asked Mary who she was looking for.\tTom a demandé à Mary qui elle était en train de chercher.\nTom asked Mary why John was so unhappy.\tTom a demandé à Marie pourquoi Jean était si triste.\nTom believed that John was his brother.\tTom croyait que John était son frère.\nTom blew all his money on a motorcycle.\tTom a balancé son argent sur une moto.\nTom bought Mary some expensive clothes.\tTom a acheté à Marie quelques vêtements chers.\nTom brushes his teeth after every meal.\tTom se brosse les dents après chaque repas.\nTom challenged Mary to a game of chess.\tTom proposa à Mary de faire une partie d’échecs.\nTom claimed to be an expert in finance.\tTom a prétendu être un expert de la finance.\nTom claims he knows nothing about Mary.\tTom affirme ne rien savoir à propos de Mary.\nTom claims he knows nothing about Mary.\tTom affirme ne rien savoir à propos de Marie.\nTom couldn't believe what had happened.\tTom ne pouvait pas croire ce qu'il s'était passé.\nTom couldn't eat solid food for a week.\tTom n'a pas pu manger des aliments solides durant une semaine.\nTom couldn't tell what the problem was.\tTom était incapable de dire quel était le problème.\nTom cut his finger on a piece of glass.\tTom s'est coupé le doigt sur un morceau de verre.\nTom denied that he had stolen anything.\tTom nia qu'il ait volé quelque chose.\nTom did it with the best of intentions.\tTom l'a fait avec les meilleures intentions.\nTom didn't understand a word Mary said.\tTom ne comprenait pas ce que Marie disait.\nTom didn't want Mary to move to Boston.\tTom ne voulait pas que Mary déménage à Boston.\nTom disagrees with Mary on that matter.\tTom n'est pas d'accord avec Mary sur ce sujet.\nTom disagrees with Mary on that matter.\tTom est en désaccord avec Mary sur cette question.\nTom divorced his second wife last year.\tTom a divorcé de sa deuxième épouse l'année dernière.\nTom doesn't drive as carefully as I do.\tTom ne conduit pas aussi prudemment que moi.\nTom doesn't have the right to say that.\tTom n'a pas le droit de dire ça.\nTom doesn't have to come here tomorrow.\tTom n'a pas besoin de venir ici demain.\nTom doesn't know how to drive a manual.\tTom ne sait pas conduire une voiture à vitesses manuelles.\nTom doesn't know which color to choose.\tTom ne sait pas quelle couleur choisir.\nTom doesn't like being told what to do.\tTom n'aime pas qu'on lui dise quoi faire.\nTom doesn't like working in the garden.\tTom n'aime pas travailler dans le jardin.\nTom doesn't live with his wife anymore.\tTom ne vit plus avec sa femme.\nTom doesn't want to go to school today.\tTom ne veut pas aller à l'école aujourd'hui.\nTom doesn't work as much as he used to.\tTom ne travaille plus autant qu'il le faisait.\nTom dried his hands with a small towel.\tTom s'est essuyé les mains avec une petite serviette.\nTom drove Mary to the nearest hospital.\tTom a conduit Marie vers l'hôpital le plus proche.\nTom fainted at the sight of the needle.\tTom s'est évanoui à la vue de l'aiguille.\nTom first met Mary at a cafe in Boston.\tTom a rencontré Mary pour la première fois dans un café à Boston.\nTom found it very difficult to breathe.\tTom trouva cela très difficile de respirer.\nTom gave his all, but it wasn't enough.\tTom a tout donné, mais ça n'a pas suffit.\nTom got a call from someone named Mary.\tTom reçu un appel d'une personne qui s'appelait Mary.\nTom got another letter from Mary today.\tTom a reçu une autre lettre de Marie aujourd'hui.\nTom got quite a few positive responses.\tTom a eu quelques réponses justes.\nTom grew up in a small fishing village.\tTom a grandi dans un petit village de pêcheurs.\nTom has never gotten over Mary's death.\tTom ne s'est jamais remis de la mort de Marie.\nTom has no intention of leaving Boston.\tTom n'a pas l'intention de quitter Boston.\nTom has to stay in Boston this weekend.\tTom doit rester à Boston ce week-end.\nTom hasn't changed a bit since college.\tTom n'a pas changé d'un poil depuis le collège.\nTom hasn't played the guitar for years.\tTom n'a plus joué de guitare depuis des années.\nTom is a close personal friend of mine.\tTom est un des mes amis proches.\nTom is a security guard at the airport.\tTom est agent de sécurité à l'aéroport.\nTom is a very good guitarist, isn't he?\tTom est un très bon guitariste, n'est-ce pas ?\nTom is definitely feeling better today.\tTom se sent vraiment mieux aujourd'hui.\nTom is fatter than when I last saw him.\tTom est plus gros que la dernière fois où je l'ai vu.\nTom is one of Mary's childhood friends.\tTom est l'un des amis d'enfance de Marie.\nTom is still in the classroom studying.\tTom est encore dans la salle de classe en train d'étudier.\nTom is the best roommate I've ever had.\tTom est le meilleur colocataire que j'ai eu.\nTom is the only person who can help me.\tTom est la seule personne qui puisse m'aider.\nTom is the only person who can help me.\tTom est la seule personne qui puisse me venir en aide.\nTom is very good at playing the violin.\tTom joue très bien du violon.\nTom knew he'd just made a huge mistake.\tTom savait qu'il venait de faire une énorme erreur.\nTom knew that Mary was studying French.\tTom savait que Marie étudiait le français.\nTom left his umbrella in the classroom.\tTom a laissé son parapluie dans la classe.\nTom looked at the painting on the wall.\tTom regarda le tableau sur le mur.\nTom made an emergency stop on the road.\tTom s'est arrêté en urgence sur le côté de la route.\nTom managed to escape through a window.\tTom réussit à s'enfuir par une fenêtre.\nTom never said he wanted to go with us.\tTom n'a jamais dit qu'il voulait aller avec nous.\nTom often mispronounces people's names.\tTom prononce souvent mal le nom des gens.\nTom parked his car behind the building.\tTom a garé sa voiture derrière l'immeuble.\nTom probably thought I didn't like him.\tTom a probablement pensé que je ne l'aimais pas.\nTom purposely left the last page blank.\tTom a volontairement laissé la dernière page blanche.\nTom pushed his nose against the window.\tTom pressa son nez contre la fenêtre.\nTom reminds me of a boy I used to know.\tTom me rappelle un garçon que j’ai connu autrefois.\nTom said that you wanted to go with us.\tTom a dit que tu voulais y aller avec nous.\nTom said that you wanted to go with us.\tTom a dit que vous vouliez venir avec nous.\nTom should have followed Mary's advice.\tTom aurait dû suivre les conseils de Marie.\nTom should've gone to Boston with Mary.\tTom aurait dû aller à Boston avec Mary.\nTom shouldn't have borrowed Mary's car.\tTom n'aurait pas dû emprunter la voiture de Marie.\nTom showed up at just the right moment.\tTom apparut pile au bon moment.\nTom started to like Mary more and more.\tTom commença à aimer Mary de plus en plus.\nTom threw something at me and I ducked.\tTom m'a jeté quelque chose et je me suis baissé rapidement.\nTom threw something at me and I ducked.\tTom m'a jeté quelque chose et je me suis baissée rapidement.\nTom tried to stand up, but he couldn't.\tTom essaya de se lever, mais il ne put point.\nTom understood exactly what Mary meant.\tTom a compris exactement ce que Marie voulait dire.\nTom volunteered to pay for the damages.\tTom s'est porté volontaire pour payer les dommages.\nTom wants to get a tattoo on his chest.\tTom veut un tatouage sur son torse.\nTom was acquitted for lack of evidence.\tTom a été acquitté par manque de preuves.\nTom was acquitted for lack of evidence.\tTom fut acquitté par manque de preuves.\nTom was so hungry that he ate dog food.\tTom avait si faim qu'il a mangé de la nourriture pour chien.\nTom was so hungry that he ate dog food.\tTom avait si faim qu'il mangea de la nourriture pour chien.\nTom wasn't the one who borrowed my car.\tCe n'est pas Tom qui a emprunté ma voiture.\nTom went back to his room and lay down.\tTom retourna dans sa chambre et se coucha.\nTom went out for a breath of fresh air.\tTom est sorti pour prendre un bol d'air.\nTom will tell me everything eventually.\tTom finira par tout me dire.\nTom's French is actually not very good.\tLe français de Tom n'est en réalité pas très bon.\nTom's boss advanced him a week's wages.\tLe patron de Tom lui a donné une avance d'une semaine de salaire.\nTom's way of speaking got on my nerves.\tLa façon de parler de Tom me tapa sur les nerfs.\nTom's wife doesn't know Mary's husband.\tLa femme de Tom ne connaît pas le mari de Mary.\nTom, what happened? Why are you crying?\tTom, que s'est-il passé ? Pourquoi est-ce que tu pleures ?\nTwo roundtrip tickets to Osaka, please.\tDeux aller-retour pour Osaka, s'il vous plaît.\nTwo thousand people fit into this hall.\tCette salle peut accueillir deux mille personnes.\nUbuntu is a popular Linux distribution.\tUbuntu est une distribution Linux populaire.\nUnfortunately, I don't have time today.\tMalheureusement, je ne dispose pas du temps aujourd'hui.\nUnfortunately, I don't have time today.\tMalheureusement, je n'ai pas de temps aujourd'hui.\nUnfortunately, my father isn't at home.\tMalheureusement, mon père n'est pas à la maison.\nUnfortunately, my father isn't at home.\tMalheureusement, mon père n'est pas chez lui.\nUnfortunately, there was no one around.\tMalheureusement il n'y avait personne autour.\nValentine's Day is on Sunday this year.\tLa Saint-Valentin tombe un dimanche, cette année.\nVariable names in C are case sensitive.\tEn C, les noms de variables sont sensibles à la casse.\nVery few people aren't afraid of death.\tIl n'y a que très peu de gens qui n'ont pas peur de la mort.\nViruses are much smaller than bacteria.\tLes virus sont beaucoup plus petits que les bactéries.\nWatch out for rowdy or drunk customers.\tFaites attention aux clients bourrés et turbulents.\nWater freezes at 32 degrees Fahrenheit.\tL'eau gèle à 32 degrés Fahrenheit.\nWe always have a party on his birthday.\tNous donnons toujours une fête pour son anniversaire.\nWe are entering a new phase in the war.\tNous entrons dans une nouvelle phase de la guerre.\nWe are happy to have you join our team.\tNous sommes heureux que vous ayez rejoint notre équipe.\nWe are looking forward to the holidays.\tNous attendons les vacances avec impatience.\nWe ask the teacher questions every day.\tNous posons, chaque jour, des questions au professeur.\nWe ask the teacher questions every day.\tNous posons, chaque jour, des questions à l'instituteur.\nWe ask the teacher questions every day.\tNous posons, chaque jour, des questions à l'institutrice.\nWe ask the teacher questions every day.\tC'est nous qui posons, chaque jour, des questions au professeur.\nWe ask the teacher questions every day.\tC'est nous qui posons, chaque jour, des questions à l'instituteur.\nWe ask the teacher questions every day.\tC'est nous qui posons, chaque jour, des questions à l'institutrice.\nWe can't be sure of the total cost yet.\tNous ne pouvons encore être certains du coût total.\nWe can't keep them in the dark forever.\tNous ne pouvons pas les garder dans le noir pour toujours.\nWe can't make people donate to charity.\tNous ne pouvons forcer les gens à faire des donations charitables.\nWe can't reveal classified information.\tNous ne pouvons révéler des informations secrètes.\nWe couldn't go out because of the rain.\tNous ne pouvions pas sortir à cause de la pluie.\nWe couldn't help feeling sorry for her.\tNous ne pûmes nous empêcher d'éprouver de la compassion à son égard.\nWe discussed the problem all afternoon.\tNous avons discuté du problème toute l'après-midi.\nWe discussed the problem all afternoon.\tNous avons discuté du problème tout l'après-midi.\nWe discussed the problem all afternoon.\tNous discutâmes du problème toute l'après-midi.\nWe don't have any strawberry ice cream.\tNous n'avons pas de glace à la fraise.\nWe don't want them to be uncomfortable.\tNous ne voulons pas qu'ils soient mal à l'aise.\nWe entered into a serious conversation.\tNous avons commencé une conversation sérieuse.\nWe found a poor little cat in the yard.\tNous avons trouvé un pauvre petit chat dans la cour.\nWe had no choice but to put up with it.\tNous n'avions d'autre choix que de faire avec.\nWe had to wait for him for ten minutes.\tNous devons l'attendre pendant dix minutes.\nWe have a lot to learn from each other.\tNous avons beaucoup à apprendre les uns des autres.\nWe have a simple solution for all this.\tNous avons une solution simple pour tout cela.\nWe have bigger problems to worry about.\tNous avons à nous soucier de problèmes plus importants.\nWe have broken off relations with them.\tNous avons coupé les ponts avec eux.\nWe have enough time to catch the train.\tNous disposons de suffisamment de temps pour attraper le train.\nWe have other priorities at the moment.\tNous avons d'autres priorités pour le moment.\nWe have overlooked this important fact.\tNous avons négligé ce fait important.\nWe have something special for you, sir.\tNous avons quelque chose de spécial pour vous, Monsieur.\nWe have to clear the snow off the roof.\tNous devons dégager la neige du toit.\nWe have to find a way to get that done.\tNous devons trouver un moyen d'y parvenir.\nWe have to make do with what we've got.\tNous devons nous débrouiller avec ce que nous avons.\nWe haven't really thought about it yet.\tOn n'a pas vraiment réfléchi encore.\nWe import grain from the United States.\tNous importons du grain des États-Unis d'Amérique.\nWe liked the food, especially the fish.\tNous avons apprécié la nourriture, surtout le poisson.\nWe must buy a new carpet for this room.\tNous devons acheter un nouveau tapis pour cette pièce.\nWe must cut our expenses to save money.\tNous devons réduire nos dépenses pour économiser de l'argent.\nWe must try to protect the environment.\tNous devons essayer de protéger notre environnement.\nWe need to be more realistic than that.\tNous devons être plus réaliste que ça.\nWe need to buy a new rug for this room.\tNous avons besoin d'acheter un nouveau tapis pour cette chambre.\nWe need to get it done before tomorrow.\tNous devons le faire avant demain.\nWe offer low-cost prefabricated houses.\tNous proposons des maisons préfabriquées à prix modérés.\nWe often hear French being spoken here.\tNous entendons souvent parler français, ici.\nWe ran off 50 copies of the invitation.\tNous imprimâmes 50 exemplaires de l'invitation.\nWe received their wedding announcement.\tNous avons reçu leur faire-part de mariage.\nWe saw the parade move down the street.\tOn a vu la parade descendre la rue.\nWe should bring another bottle of wine.\tNous devrions apporter une autre bouteille de vin.\nWe should do away with this regulation.\tNous devrions en finir avec ce règlement.\nWe should respect each other's beliefs.\tNous devrions respecter nos croyances.\nWe think we've found a way to help you.\tNous pensons avoir trouvé un moyen de vous aider.\nWe think we've found a way to help you.\tNous pensons avoir trouvé un moyen de t'aider.\nWe traveled around the world last year.\tNous avons fait un tour du monde l'an dernier.\nWe used a barrel for a makeshift table.\tNous utilisâmes un tonneau en guise de table de fortune.\nWe used a barrel for a makeshift table.\tNous avons utilisé un tonneau en guise de table de fortune.\nWe used to do a lot of things together.\tAvant, on faisait beaucoup de choses ensemble.\nWe used to sit on these steps and talk.\tAvant, on s'asseyait sur ces marches et on parlait.\nWe want to measure your blood pressure.\tNous souhaitons mesurer votre tension artérielle.\nWe watched a new program on television.\tNous avons vu un nouveau programme à la télévision.\nWe went out for a walk after breakfast.\tNous allâmes nous promener dehors après le petit-déjeuner.\nWe went out for a walk after breakfast.\tNous sommes allés nous promener dehors après le petit-déjeuner.\nWe went out for a walk after breakfast.\tNous sommes allées nous promener dehors après le petit-déjeuner.\nWe went out for a walk after breakfast.\tNous sommes allés effectuer une promenade dehors après le petit-déjeuner.\nWe went out for a walk after breakfast.\tNous sommes allées effectuer une promenade dehors après le petit-déjeuner.\nWe were all drenched with perspiration.\tNous étions tous en nage.\nWe were excited as we watched the game.\tNous étions excités en regardant le match.\nWe were very impressed by his new book.\tNous avons été très impressionnés par son nouvel ouvrage.\nWe weren't even in Boston at that time.\tOn n'était même pas à Boston à ce moment-là.\nWe will make an exception of your case.\tNous ferons une exception dans votre cas.\nWe will make an exception of your case.\tNous ferons une exception dans ton cas.\nWe will only consent on that condition.\tNous accepterons seulement à cette condition.\nWe will only consent on that condition.\tNous n'accepterons qu'à cette condition.\nWe'll do everything we can to help you.\tNous ferons tout ce que nous pouvons pour vous aider.\nWe'll do everything we can to help you.\tNous ferons tout ce que nous pouvons pour t'aider.\nWe're going to get in trouble for that.\tNous allons avoir des ennuis pour ça.\nWe're not going to be able to call you.\tNous n'allons pas pouvoir vous appeler.\nWe're still getting to know each other.\tOn apprend encore à se connaître.\nWe've all done things we're ashamed of.\tNous avons tous fait des choses dont nous avons honte.\nWe've got to get rid of all this trash.\tNous devons nous débarrasser de tous ces déchets.\nWe've known each other for a long time.\tNous nous connaissons depuis longtemps.\nWebsites collect information about you.\tLes sites web rassemblent de l'information sur vous.\nWebsites collect information about you.\tLes sites web rassemblent de l'information sur toi.\nWere you expecting something different?\tVous attendiez-vous à quelque chose de différent ?\nWere you expecting something different?\tT'attendais-tu à quelque chose de différent ?\nWhales feed on plankton and small fish.\tLes baleines se nourrissent de plancton et de petits poissons.\nWhat are the chances of that happening?\tQuelles sont les probabilités que ça arrive ?\nWhat could they possibly want us to do?\tQue pourraient-ils bien vouloir que nous fassions ?\nWhat could they possibly want us to do?\tQue pourraient-elles bien vouloir que nous fassions ?\nWhat do Italians usually eat for lunch?\tQu'est-ce que les Italiens mangent habituellement pour déjeuner ?\nWhat do Italians usually eat for lunch?\tQu'est-ce que les Italiens mangent habituellement à déjeuner ?\nWhat do you say you join me for dinner?\tQue dis-tu de te joindre à moi pour déjeuner ?\nWhat do you say you join me for dinner?\tQue dis-tu de te joindre à moi pour dîner ?\nWhat do you say you join me for dinner?\tQue dites-vous de vous joindre à moi pour déjeuner ?\nWhat do you say you join me for dinner?\tQue dites-vous de vous joindre à moi pour dîner ?\nWhat do you usually have for breakfast?\tQu'est-ce que vous prenez au petit déjeuner habituellement ?\nWhat does this image make you think of?\tÀ quoi tu penses en voyant cette image ?\nWhat does this image make you think of?\tÀ quoi cette image vous fait-elle penser?\nWhat doesn't kill us makes us stronger.\tCe qui ne nous tue pas nous rend plus fort.\nWhat doesn't kill us makes us stronger.\tCe qui ne nous tue pas nous rend plus forts.\nWhat have you been doing all this time!\tMais qu'as donc tu fait pendant tout ce temps !\nWhat he said was a slight exaggeration.\tCe qu'il a dit constituait une légère exagération.\nWhat he said would happen has happened.\tCe qu'il a dit qu'il arriverait, est arrivé.\nWhat is it that you really want to say?\tQu'est-ce que vous voulez vraiment dire ?\nWhat is the difference between A and B?\tQuelle est la différence entre A et B ?\nWhat is the emergency telephone number?\tQuel est le numéro de téléphone d'urgence ?\nWhat is the main industry in this town?\tQuelle est l'activité principale de cette ville ?\nWhat is the tallest mountain in Europe?\tQuelle est la plus haute montagne d'Europe ?\nWhat is the tallest mountain in Europe?\tQuelle est la plus haute montagne d'Europe ?\nWhat is this animal called in Japanese?\tComment s'appelle cet animal en japonais ?\nWhat kind of part-time job do you have?\tQuelle sorte de travail à temps partiel as-tu ?\nWhat kind of part-time job do you have?\tQuelle sorte de travail à temps partiel avez-vous ?\nWhat kind of things do you enjoy doing?\tQuelle sorte de choses apprécies-tu de faire ?\nWhat kind of things do you enjoy doing?\tQuelle sorte de choses appréciez-vous de faire ?\nWhat kind of things do you enjoy doing?\tÀ quelle sorte de choses prenez-vous plaisir ?\nWhat kind of things do you enjoy doing?\tÀ quelle sorte de choses prends-tu plaisir ?\nWhat prevented you from coming earlier?\tQu'est-ce qui t'a empêché de venir plus tôt ?\nWhat prevented you from coming earlier?\tQu'est-ce qui vous a empêché de venir plus tôt ?\nWhat shall we buy him for his birthday?\tQu'allons-nous lui acheter pour son anniversaire ?\nWhat should I do in order to save time?\tQue devrais-je faire pour économiser du temps ?\nWhat style of furniture would you like?\tQuel style de meubles vous plairait ?\nWhat time did you go to bed last night?\tÀ quelle heure t'es-tu couché la nuit dernière ?\nWhat time do you think he'll come back?\tÀ quelle heure pensez-vous qu'il reviendra ?\nWhat time do you usually eat breakfast?\tÀ quelle heure prends-tu habituellement ton petit déjeuner ?\nWhat time do you usually eat breakfast?\tÀ quelle heure prenez-vous habituellement votre petit déjeuner ?\nWhat was the first concert you went to?\tQuel a été le premier concert auquel tu es allé ?\nWhat was the first concert you went to?\tQuel a été le premier concert auquel vous êtes allées ?\nWhat was the first concert you went to?\tQuel a été le premier concert auquel vous êtes allé ?\nWhat was the first concert you went to?\tQuel a été le premier concert auquel tu es allée ?\nWhat was the first song you ever wrote?\tQuelle fut la première chanson que vous avez écrite ?\nWhat we should do next is the question.\tLa question, c'est ce que nous devrions faire ensuite.\nWhat will the weather be like tomorrow?\tComment sera le temps demain ?\nWhat will the weather be like tomorrow?\tQuel temps fera-t-il demain ?\nWhat would you like me to do with this?\tQu'aimerais-tu que je fasse avec ceci ?\nWhat would you like me to do with this?\tQu'aimeriez-vous que je fasse avec ceci ?\nWhat would've happened if Tom had come?\tQue se serait-il passé si Tom était venu ?\nWhat year of medical school are you in?\tEn quelle année de médecine êtes-vous ?\nWhat's that picture inside your locker?\tQuelle est cette photo à l'intérieur de ton casier ?\nWhat's that picture inside your locker?\tC'est quoi cette photo dans ton casier ?\nWhat's your favorite color for carpets?\tQuelle est ta couleur de tapis préférée ?\nWhat's your favorite way to cook beans?\tQuelle est votre façon préférée de cuisiner les haricots?\nWhat's your favorite way to cook beans?\tQuelle est ta façon préférée de cuisiner les haricots?\nWhatever you do, you must do your best.\tQuoi que vous fassiez, vous devez le faire de votre mieux.\nWhatever you do, you must do your best.\tQuoi que tu fasses, tu dois le faire de ton mieux.\nWhen I was your age, I had a boyfriend.\tLorsque j'avais ton âge, j'avais un petit ami.\nWhen I was your age, I had a boyfriend.\tLorsque j'avais votre âge, j'avais un petit ami.\nWhen are you coming to the Netherlands?\tQuand viendras-tu en Hollande ?\nWhen are you coming to the Netherlands?\tQuand viendras-tu aux Pays Bas ?\nWhen are you going to leave for London?\tQuand partez-vous pour Londres ?\nWhen did you finish writing the letter?\tQuand avez-vous achevé d'écrire la lettre ?\nWhen did you finish writing the letter?\tQuand as-tu achevé d'écrire la lettre ?\nWhen did you finish writing the report?\tQuand avez-vous achevé d'écrire le rapport?\nWhen did your friend leave for America?\tQuand est-ce que ton ami est parti pour l'Amérique ?\nWhen does your father leave his office?\tÀ quelle heure ton père part-il de son bureau ?\nWhen he saw the policeman, he ran away.\tLorsqu'il vit le policier, il s'enfuit.\nWhen it was time to vote, he abstained.\tQuand ce fut le moment de voter, il s'abstint.\nWhen they are in danger, they run away.\tLorsqu'ils sont en danger, ils s'enfuient.\nWhen traveling, it is easy to get lost.\tAu cours d'un voyage il est facile de se perdre.\nWhen was the last time you saw the cat?\tQuand avez-vous vu le chat pour la dernière fois ?\nWhen was the last time you saw the cat?\tQuand as-tu vu le chat pour la dernière fois ?\nWhere can I go to get some good advice?\tOù puis-je me rendre pour obtenir de bons conseils ?\nWhere can I pick up my airplane ticket?\tOù puis-je retirer mon billet d'avion ?\nWhere can you get the best fresh bread?\tOù est-ce qu'on trouve le meilleur pain frais ?\nWhere did you get your camera repaired?\tOù as-tu fait réparer ta caméra ?\nWhere did you get your camera repaired?\tOù as-tu fait réparer ton appareil-photo ?\nWhere were you for the whole afternoon?\tOù étais-tu toute l'après-midi ?\nWhere were you for the whole afternoon?\tOù étiez-vous toute l'après-midi ?\nWhich concert did you choose to attend?\tÀ quel concert as-tu décidé d'aller ?\nWhich do you like better, meat or fish?\tEntre la viande et le poisson, lequel préférez-vous ?\nWhich do you like better, this or that?\tLequel préfères-tu ? Celui-ci ou celui-là ?\nWhich do you like better, this or that?\tLequel préférez-vous ? Celui-ci ou celui-là ?\nWhich do you prefer, apples or bananas?\tQu'est-ce-que tu préfères, les pommes ou les bananes ?\nWhich do you prefer, apples or bananas?\tQue préférez-vous, les pommes ou les bananes ?\nWhich is the more expensive of the two?\tQuel est le plus cher des deux ?\nWho are you and where do you come from?\tQui êtes-vous et d'où venez-vous ?\nWho are you and where do you come from?\tQui es-tu et d'où viens-tu ?\nWho broke the news of her death to you?\tQui vous a révélé la nouvelle de sa mort ?\nWho broke the news of her death to you?\tQui t'a révélé la nouvelle de sa mort ?\nWho can tell me how a light bulb works?\tQui peut me dire comment une ampoule fonctionne ?\nWho can tell me how a light bulb works?\tQui peut me dire comment fonctionne une ampoule ?\nWho do you think would do such a thing?\tQui, penses-tu, ferait une telle chose ?\nWho do you think would do such a thing?\tQui, pensez-vous, ferait une telle chose ?\nWho is the gentleman he is speaking to?\tQui est le monsieur auquel il parle ?\nWho is the gentleman he is speaking to?\tQui est le monsieur avec lequel il s'entretient ?\nWho will play the role of the princess?\tQui jouera le rôle de la princesse ?\nWho's going to drive me to the airport?\tQui va me conduire à l'aéroport ?\nWhy did you have to go snooping around?\tPourquoi as-tu eu besoin d'aller fouiner?\nWhy did you turn away when you met him?\tPourquoi t'es-tu détourné lorsque tu l'as rencontré ?\nWhy did you turn away when you met him?\tPourquoi t'es-tu détournée lorsque tu l'as rencontré ?\nWhy did you turn away when you met him?\tPourquoi vous êtes-vous détourné lorsque vous l'avez rencontré ?\nWhy did you turn away when you met him?\tPourquoi vous êtes-vous détournée lorsque vous l'avez rencontré ?\nWhy didn't you tell me that last night?\tPourquoi ne m'as-tu pas dit ça hier soir ?\nWhy didn't you tell me that last night?\tPourquoi ne m'avez-vous pas dit cela la nuit dernière ?\nWhy didn't you tell this to the police?\tPourquoi ne l'avez-vous pas dit à la police ?\nWhy didn't you tell this to the police?\tPourquoi ne l'as-tu pas dit à la police ?\nWhy do you dislike his way of speaking?\tPourquoi n'aimez-vous pas sa manière de parler ?\nWhy don't we take him a bottle of wine?\tPourquoi ne lui apportons-nous pas une bouteille de vin ?\nWhy don't we talk about something else?\tPourquoi ne parlons-nous pas d'autre chose ?\nWhy don't you give us a moment to talk?\tPourquoi ne nous accordes-tu pas un moment pour discuter ?\nWhy don't you give us a moment to talk?\tPourquoi ne nous accordez-vous pas un moment pour discuter ?\nWhy don't you put your clothes back on?\tPourquoi ne remets-tu pas tes vêtements ?\nWhy don't you put your clothes back on?\tPourquoi ne renfiles-tu pas tes vêtements ?\nWhy don't you put your clothes back on?\tPourquoi ne remettez-vous pas vos vêtements ?\nWhy don't you put your clothes back on?\tPourquoi ne renfilez-vous pas vos vêtements ?\nWhy don't you put your clothes back on?\tEt si vous remettiez vos vêtements ?\nWhy don't you put your clothes back on?\tEt si vous renfiliez vos vêtements ?\nWhy don't you put your clothes back on?\tEt si tu remettais tes vêtements ?\nWhy don't you put your clothes back on?\tEt si tu renfilais tes vêtements ?\nWhy don't you take a look at this data?\tEt si tu jetais un œil à ces données ?\nWhy don't you take a look at this data?\tEt si vous jetiez un œil à ces données ?\nWhy is autumn called \"fall\" in America?\tPourquoi l'automne s'appelle \"fall\" aux États-Unis ?\nWhy isn't there any money in my wallet?\tPourquoi n'y a-t-il aucun argent dans mon portefeuille ?\nWill you show me your passport, please?\tVoulez-vous me montrer votre passeport, s'il vous plait ?\nWill you still be here when I get back?\tSeras-tu encore là quand je vais revenir?\nWithout me, you won't be able to do it.\tSans moi, tu n'en seras pas capable.\nWithout your help, I would have failed.\tSans ton aide j'aurais échoué.\nWithout your help, I would have failed.\tSans ton aide, j'aurais échoué.\nWomen seem to like him for some reason.\tLes femmes semblent l'apprécier pour une quelconque raison.\nWon't you come and see me this weekend?\tÇa te dirait de venir me voir ce week-end ?\nWon't you come to my house next Sunday?\tVous ne viendrez pas chez moi dimanche prochain ?\nWork on the assignment in small groups.\tTravaillez sur l'exercice par petits groupes.\nWorms are sometimes beneficial to soil.\tLes vers de terre sont quelquefois utiles au sol.\nWould you bring me another one, please?\tM'en apporteriez-vous un autre, s'il vous plaît ?\nWould you bring me another one, please?\tM'en apporterais-tu un autre, s'il te plaît ?\nWould you like a newspaper or magazine?\tVoulez-vous un journal ou un magazine ?\nWould you like a newspaper or magazine?\tVeux-tu un journal ou un magazine ?\nWould you like me to go there with you?\tVoudrais-tu que j'y aille avec toi ?\nWould you like me to go there with you?\tVoudriez-vous que je vous y accompagne ?\nWould you like me to go there with you?\tVoudrais-tu que j'aille là-bas avec toi ?\nWould you like me to go there with you?\tVoudriez-vous que j'y aille avec vous ?\nWould you like to come over for dinner?\tAimeriez-vous venir dîner ?\nWould you like to come over for dinner?\tAimeriez-vous venir souper ?\nWould you like to hear the parrot talk?\tVoudriez-vous entendre parler le perroquet ?\nWould you mind turning down the volume?\tPourriez-vous baisser le volume ?\nWriting love letters isn't easy for me.\tÉcrire des lettres d'amour ne m'est pas aisé.\nYou are the one that I was looking for.\tC'est toi, celle que je cherchais.\nYou can always depend upon her to help.\tTu peux toujours compter sur elle pour aider.\nYou can have breakfast between 7 and 9.\tLe petit déjeuner est servi de 7 à 9 heures.\nYou can use a dictionary for this exam.\tVous pouvez utiliser un dictionnaire pour cet examen.\nYou can't have understood what he said.\tTu ne peux pas avoir compris ce qu'il a dit.\nYou can't have understood what he said.\tVous ne pouvez pas avoir compris ce qu'il disait.\nYou can't keep talking to me like this.\tTu ne peux pas continuer à me parler ainsi.\nYou can't keep talking to me like this.\tVous ne pouvez pas continuer à me parler ainsi.\nYou can't pay someone to sleep for you.\tTu ne peux pas payer quelqu'un pour dormir à ta place.\nYou can't possibly really believe that.\tVous ne pouvez pas croire cela, quand même.\nYou can't see the forest for the trees.\tC'est l'arbre qui cache la forêt.\nYou couldn't have picked a better spot.\tVous n'auriez pas pu choisir meilleur endroit.\nYou couldn't have picked a better spot.\tVous n'auriez pas pu choisir un meilleur endroit.\nYou couldn't have picked a better spot.\tTu n'aurais pas pu choisir meilleur endroit.\nYou couldn't have picked a better spot.\tTu n'aurais pas pu choisir un meilleur endroit.\nYou couldn't have picked a better spot.\tTu n'aurais pas pu choisir de meilleur endroit.\nYou couldn't have picked a better spot.\tVous n'auriez pas pu choisir de meilleur endroit.\nYou didn't see anyone come in, did you?\tTu n'as vu personne entrer, n'est-ce pas ?\nYou didn't see anyone come in, did you?\tVous n'avez vu personne entrer, n'est-ce pas ?\nYou don't have to answer this question.\tVous n'avez pas à répondre à cette question.\nYou don't have to answer this question.\tTu n'as pas à répondre à cette question.\nYou don't have to stay in the hospital.\tTu n'es pas obligé de rester à l'hôpital.\nYou don't have to stay in the hospital.\tVous n'êtes pas obligé de rester à l'hôpital.\nYou don't have to stay in the hospital.\tVous n'êtes pas obligée de rester à l'hôpital.\nYou don't have to stay in the hospital.\tVous n'êtes pas obligés de rester à l'hôpital.\nYou don't have to stay in the hospital.\tVous n'êtes pas obligées de rester à l'hôpital.\nYou don't have to stay in the hospital.\tTu n'es pas obligée de rester à l'hôpital.\nYou don't know how bad I want to leave.\tTu n'as pas idée de combien je veux partir.\nYou don't know how bad I want to leave.\tVous n'avez pas idée de combien je veux partir.\nYou don't need to answer that question.\tTu n'as pas besoin de répondre à cette question.\nYou don't need to answer this question.\tTu n'as pas besoin de répondre à cette question.\nYou don't really want this job, do you?\tTu ne veux pas vraiment ce boulot, si ?\nYou don't really want this job, do you?\tVous ne voulez pas vraiment ce boulot, si ?\nYou don't seem to want to come with us.\tIl ne semble pas que vous vouliez venir avec nous.\nYou don't seem to want to come with us.\tIl ne semble pas que vous veuillez venir avec nous.\nYou don't seem to want to come with us.\tIl ne semble pas que tu veuilles venir avec nous.\nYou don't want to be late for practice.\tTu ne veux pas être en retard pour ton entraînement.\nYou don't want to be late for practice.\tTu ne veux pas être en retard à l'entraînement.\nYou don't want to be late for practice.\tVous ne voulez pas être en retard à l'entraînement.\nYou don't want to go to prison, do you?\tTu ne veux pas aller en prison, si ?\nYou don't want to go to prison, do you?\tVous ne voulez pas aller en prison, si ?\nYou don't want to point that gun at me.\tTu n'as pas envie de pointer cette arme vers moi.\nYou don't want to point that gun at me.\tVous n'avez pas envie de pointer cette arme vers moi.\nYou don't want to point that gun at me.\tTu n'as pas envie de pointer cette arme dans ma direction.\nYou don't want to point that gun at me.\tVous n'avez pas envie de pointer cette arme dans ma direction.\nYou finally succeeded in getting a job.\tVous avez finalement réussi à trouver un emploi.\nYou finally succeeded in getting a job.\tTu as fini par obtenir un boulot.\nYou finally succeeded in getting a job.\tTu es finalement parvenu à décrocher un emploi.\nYou had better give up smoking at once.\tTu ferais mieux d'arrêter de fumer immédiatement.\nYou had better have your eyes examined.\tTu ferais mieux de faire examiner tes yeux.\nYou had better have your eyes examined.\tVous devriez faire examiner vos yeux.\nYou had better take a bath to get warm.\tTu ferais bien de prendre un bain pour te réchauffer.\nYou have brought shame upon our family.\tVous avez couvert notre famille de honte.\nYou have brought shame upon our family.\tTu as couvert notre famille de honte.\nYou have restored my faith in humanity.\tTu as restauré ma foi en l'humanité.\nYou have restored my faith in humanity.\tVous avez restauré ma foi en l'humanité.\nYou have to give up sports for a while.\tTu dois arrêter de faire du sport pendant quelque temps.\nYou have to put up with all this noise.\tIl vous faut faire avec tout ce bruit.\nYou knew this would happen, didn't you?\tTu savais que ceci arriverait, n'est-ce pas ?\nYou knew this would happen, didn't you?\tVous saviez que ceci se produirait, n'est-ce pas ?\nYou look like you're about to throw up.\tOn dirait que vous êtes sur le point de vomir.\nYou look like you're about to throw up.\tOn dirait que tu es sur le point de vomir.\nYou made the same mistake as last time.\tTu as fait la même erreur que la dernière fois.\nYou may bring your own lunch to school.\tTu as le droit d'apporter ton propre déjeuner à l'école.\nYou may choose either of the two books.\tVous pouvez choisir n'importe lequel des deux ouvrages.\nYou may choose whichever book you like.\tTu peux choisir n'importe quel livre que tu aimes.\nYou must be in good physical condition.\tTu dois être en bonne condition physique.\nYou must be in good physical condition.\tVous devez être en bonne condition physique.\nYou must realize that I can't help you.\tTu dois prendre conscience que je ne peux pas t'aider.\nYou must realize that I can't help you.\tVous devez prendre conscience que je ne peux pas vous aider.\nYou need to be more attentive in class.\tTu dois être plus attentif en classe.\nYou really do speak English quite well.\tVous parlez vraiment tout à fait bien l'anglais.\nYou really should eat before you leave.\tTu devrais vraiment manger avant de partir.\nYou really should eat before you leave.\tVous devriez vraiment manger avant de partir.\nYou seem to know everything about this.\tTu sembles tout savoir à ce sujet.\nYou seem to know everything about this.\tVous semblez tout savoir là-dessus.\nYou should apologize for your rudeness.\tVous devriez vous excuser pour votre grossièreté.\nYou should attend to your own business.\tTu ferais mieux de t'occuper de tes affaires.\nYou should begin with easier questions.\tTu devrais commencer par des questions plus simples.\nYou should buy her a gift card instead.\tVous feriez mieux de lui acheter une carte-cadeau.\nYou should call your mother more often.\tVous devriez appeler votre mère plus souvent.\nYou should do something with your hair.\tVous devriez faire quelque chose à vos cheveux !\nYou should do something with your hair.\tTu devrais faire quelque chose à tes cheveux !\nYou should get that sofa reupholstered.\tTu devrais refaire capitonner ce canapé.\nYou should never cut corners on safety.\tOn ne devrait jamais transiger avec la sécurité.\nYou should never cut corners on safety.\tOn ne devrait jamais transiger en matière de sécurité.\nYou should not be afraid of the future.\tVous ne devriez pas avoir peur de l'avenir !\nYou should not be afraid of the future.\tTu ne devrais pas avoir peur de l'avenir !\nYou should think about your retirement.\tTu devrais penser à ta retraite.\nYou shouldn't stay up so late at night.\tTu ne devrais pas veiller aussi tard.\nYou shouldn't stay up so late at night.\tVous ne devriez pas veiller aussi tard.\nYou think I don't know what's going on?\tVous pensez que j'ignore ce qui se passe ?\nYou think I don't know what's going on?\tTu penses que je ne sais pas ce qui se passe ?\nYou want to get out of here, don't you?\tTu veux sortir d'ici, n'est-ce pas ?\nYou want to get out of here, don't you?\tTu veux sortir d'ici, non ?\nYou want to get out of here, don't you?\tVous voulez sortir d'ici, non ?\nYou want to get out of here, don't you?\tVous voulez sortir d'ici, n'est-ce pas ?\nYou were drunk last night, weren't you?\tVous étiez soûl, la nuit dernière, n'est-ce pas ?\nYou were drunk last night, weren't you?\tVous étiez soûle, la nuit passée, pas vrai ?\nYou were drunk last night, weren't you?\tVous étiez ivre, la nuit dernière, pas vrai ?\nYou were drunk last night, weren't you?\tVous étiez saouls, la nuit dernière, n'est-ce pas ?\nYou weren't married for long, were you?\tTu n'as pas été marié longtemps, si ?\nYou weren't married for long, were you?\tVous n'avez pas été marié longtemps, si ?\nYou weren't married for long, were you?\tVous n'avez pas été mariés longtemps, si ?\nYou weren't married for long, were you?\tVous n'avez pas été mariées longtemps, si ?\nYou weren't married for long, were you?\tVous n'avez pas été mariée longtemps, si ?\nYou weren't married for long, were you?\tTu n'as pas été mariée longtemps, si ?\nYou will find this in a hardware store.\tVous trouverez ça dans une droguerie.\nYou'd better make sure that it is true.\tTu ferais bien de t'assurer que c'est vrai.\nYou'll want to look your best tomorrow.\tTu voudras avoir l'air à ton maximum, demain.\nYou'll want to look your best tomorrow.\tVous voudrez avoir l'air à votre maximum, demain.\nYou're enjoying yourselves, aren't you?\tVous vous amusez, n'est-ce pas ?\nYou're feeling very sleepy, aren't you?\tTu as très sommeil, non ?\nYou're feeling very sleepy, aren't you?\tVous avez très sommeil, non ?\nYou're going to have to deal with that.\tTu devras être confronté à ça.\nYou're going to have to deal with that.\tVous devrez être confrontés à ça.\nYou're not leaving until I say it's OK.\tVous ne partez pas jusqu'à ce que je dise que c'est d'accord.\nYou're not leaving until I say it's OK.\tTu ne pars pas jusqu'à ce que je dise que c'est d'accord.\nYou're not trying to trick me, are you?\tTu n'essaies pas de me rouler, hein ?\nYou're not trying to trick me, are you?\tVous n'essayez pas de me rouler, hein ?\nYou're the first person I told that to.\tTu es la première personne à qui j'ai dit ça.\nYou're the first person I told that to.\tTu es la première personne à laquelle j'ai dit ça.\nYou're the first person I told that to.\tVous êtes la première personne à qui j'ai dit ça.\nYou're the first person I told that to.\tVous êtes la première personne à laquelle j'ai dit ça.\nYou're the only one who understands me.\tTu es le seul à me comprendre.\nYou're the only one who understands me.\tTu es la seule à me comprendre.\nYou're the only one who understands me.\tVous êtes le seul à me comprendre.\nYou're the only one who understands me.\tVous êtes la seule à me comprendre.\nYou're too suspicious about everything.\tTu es trop suspicieux de tout.\nYou're too suspicious about everything.\tTu es trop suspicieuse de tout.\nYou're too suspicious about everything.\tVous êtes trop suspicieux de tout.\nYou're too suspicious about everything.\tVous êtes trop suspicieuses de tout.\nYou've got to be reasonable about this.\tIl vous faut être raisonnable à ce sujet.\nYou've got to be reasonable about this.\tIl te faut être raisonnable à ce sujet.\nYou've lost the ability to concentrate.\tTu as perdu la capacité de te concentrer.\nYou've lost the ability to concentrate.\tVous avez perdu la capacité de vous concentrer.\nYour English has improved considerably.\tTon anglais s'est considérablement amélioré.\nYour English has improved considerably.\tVotre anglais s'est considérablement amélioré.\nYour dream may come true at any moment.\tVotre rêve pourrait devenir réalité n'importe quand.\nYour examination results are excellent.\tVos résultats d'examen sont excellents.\nYour explanation is too abstract to me.\tVotre explication est trop abstraite pour moi.\nYour problem is you don't study enough.\tTon problème est que tu n'étudies pas assez.\nYour problem is you don't study enough.\tVotre problème est que vous n'étudiez pas assez.\nYour question is hard for me to answer.\tIl m'est difficile de répondre à ta question.\nYour question is hard for me to answer.\tIl m'est difficile de répondre à votre question.\nYour security guard wouldn't let me in.\tTon gardien de sécurité ne me laisserait pas entrer.\nYour suggestion is of no practical use.\tVotre suggestion n'est d'aucune utilité pratique.\nYour watch is more expensive than mine.\tTa montre coûte plus cher que la mienne.\nYou’d better lie low for a few weeks.\tTu ferais mieux de te faire oublier durant quelques semaines.\n\"Does she play tennis?\" \"Yes, she does.\"\t\"Est-ce qu'elle joue au tennis ?\" \"Oui, elle y joue.\"\n\"Where's his book?\" \"It's on the table.\"\t\"Où est son livre ?\" \"Il est sur la table\"\nA bunch of people died in the explosion.\tUn groupe de personnes moururent dans l'explosion.\nA bunch of people died in the explosion.\tUn groupe de personnes sont mortes dans l'explosion.\nA car is a must for life in the suburbs.\tUne voiture est indispensable à une vie en banlieue.\nA computer is an absolute necessity now.\tUn ordinateur est désormais absolument indispensable.\nA doctor should never let a patient die.\tUn médecin ne devrait jamais laisser un patient mourir.\nA drunken man was sleeping on the bench.\tUn homme ivre dormait allongé sur le banc.\nA few days later, Tom found another job.\tQuelques jours plus tard, Tom trouva un nouveau travail.\nA field of grass can be quite beautiful.\tUne pelouse peut être assez jolie.\nA frog in a well doesn't know the ocean.\tUne grenouille dans un puits n'a pas conscience de l'océan.\nA girl with blonde hair came to see you.\tUne fille aux cheveux blonds est venue te voir.\nA little rest would do us a lot of good.\tUn peu de repos nous ferait le plus grand bien.\nA little rest would do us a lot of good.\tUn peu de repos nous ferait beaucoup de bien.\nA lot of books are published every year.\tDe nombreux livres sont publiés chaque année.\nA lot of people swim here in the summer.\tBeaucoup de gens nagent ici en été.\nA lot's happened while you've been away.\tII s'est passé beaucoup de choses depuis ton départ.\nA number of tickets are sold in advance.\tUn certain nombre de tickets sont vendus à l'avance.\nA rabbit has long ears and a short tail.\tUn lapin a de longues oreilles et une petite queue.\nA stewardess was rescued from the wreck.\tUne hôtesse a été sauvée des débris.\nA storm kept the ship from leaving Kobe.\tUne tempête empêcha le navire de quitter Kobe.\nA trip by boat takes longer than by car.\tUn trajet en bateau dure plus longtemps qu'en voiture.\nAbsolutely nothing is permanent in life.\tAbsolument rien dans la vie n'est durable.\nAdvertising sells products over the air.\tLa publicité vend des produits sur les ondes.\nAfrica is a continent; Greenland is not.\tL'Afrique est un continent, le Groenland non.\nAfter breakfast, we went out for a walk.\tAprès le petit déjeuner nous sommes allés faire un tour.\nAfter breakfast, we went out for a walk.\tÀ l'issue du petit-déjeuner, nous allâmes faire une promenade dehors.\nAll I can say is that I'd rather not go.\tTout ce que je peux dire est que je préférerais ne pas y aller.\nAll four of the boys didn't have alibis.\tAucun des quatre garçons n'avait d'alibi.\nAll he is thinking about is meeting her.\tLa seule chose à laquelle il pense est de la rencontrer.\nAll of a sudden the sky became overcast.\tTout d'un coup le ciel se couvrit.\nAll of the town was destroyed by a fire.\tLa ville entière fut détruite par un incendie.\nAll our children go to school in Boston.\tTous nos enfants vont à l'école à Boston.\nAll the furniture was covered with dust.\tTous les meubles étaient couverts de poussière.\nAll the hostages were released unharmed.\tTous les otages ont été relâchés sains et saufs.\nAll you have to do is fill in this form.\tTout ce que vous avez à faire, c'est remplir ce formulaire.\nAll you have to do is fill in this form.\tTout ce que tu as à faire, c'est remplir ce formulaire.\nAll you have to do is follow his advice.\tTout ce que tu as à faire c'est suivre son conseil.\nAll you have to do is to make a comment.\tTout ce que tu as à faire est de faire un commentaire.\nAll you have to do is to meet her there.\tTout ce que tu as à faire est de la rencontrer là -bas.\nAll you have to do is to obey my orders.\tTout ce que tu as à faire, c'est d'obéir à mes ordres.\nAn innocent man was arrested by mistake.\tUn homme innocent a été arrêté par erreur.\nAn old friend of mine visited yesterday.\tUn vieil ami à moi m'a rendu visite hier.\nAn old friend of mine visited yesterday.\tUn vieil ami à moi nous a rendu visite hier.\nAnts and giraffes are distant relatives.\tLes fourmis et les girafes sont des parents éloignés.\nAre they displayed all through the year?\tSont-ils exposés tout au long de l'année ?\nAre you aware of how much she loves you?\tTe rends-tu compte comme elle t'aime ?\nAre you having any difficulty breathing?\tEst-ce que vous éprouvez des difficultés à respirer?\nAre you interested in foreign languages?\tVous intéressez-vous aux langues étrangères ?\nAre you really going to let Tom do that?\tVas-tu vraiment laisser Tom faire ça ?\nAre you really going to let Tom do that?\tAllez-vous vraiment laisser Tom faire cela ?\nAre you saying I have no sense of humor?\tEs-tu en train de dire que j'ai aucun sens de l'humour ?\nAre you saying I have no sense of humor?\tÊtes-vous en train de dire que je n'ai pas d'humour ?\nAre you so stupid that you can't see it?\tEs-tu si stupide que tu ne puisses le voir ?\nAre you so stupid that you can't see it?\tÊtes-vous si stupide que vous ne puissiez le voir ?\nAre you so stupid that you can't see it?\tÊtes-vous si stupides que vous ne puissiez le voir ?\nAre you still planning to quit your job?\tProjettes-tu encore de plaquer ton boulot ?\nAre you still planning to quit your job?\tProjetez-vous toujours de quitter votre emploi ?\nAre you still upset about what happened?\tEs-tu encore contrarié à propos de ce qui s'est passé ?\nAre you still upset about what happened?\tEs-tu encore contrariée à propos de ce qui s'est passé ?\nAre you still upset about what happened?\tÊtes-vous encore contrarié à propos de ce qui s'est passé ?\nAre you still upset about what happened?\tÊtes-vous encore contrariée à propos de ce qui s'est passé ?\nAre you still upset about what happened?\tÊtes-vous encore contrariés à propos de ce qui s'est passé ?\nAre you still upset about what happened?\tÊtes-vous encore contrariées à propos de ce qui s'est passé ?\nAre you still upset about what happened?\tÊtes-vous encore contrarié à propos de ce qui a eu lieu ?\nAre you still upset about what happened?\tÊtes-vous encore contrariée à propos de ce qui a eu lieu ?\nAre you still upset about what happened?\tÊtes-vous encore contrariées à propos de ce qui a eu lieu ?\nAre you still upset about what happened?\tÊtes-vous encore contrariés à propos de ce qui a eu lieu ?\nAre you still upset about what happened?\tEs-tu encore contrarié à propos de ce qui a eu lieu ?\nAre you still upset about what happened?\tEs-tu encore contrariée à propos de ce qui a eu lieu ?\nAre you sure about the cost of that car?\tConnais-tu pour sûr le prix de cette voiture?\nAre you sure we're allowed to swim here?\tEtes-vous sûr que nous sommes autorisés à nager ici?\nAre you sure you have the right address?\tVous êtes sûr d'avoir la bonne adresse?\nAre you thinking of going to university?\tRéfléchis-tu à aller à l'université ?\nAre you thinking of going to university?\tRéfléchissez-vous à aller à l'université ?\nAren't you coming to the party tomorrow?\tNe viens-tu pas à la fête, demain ?\nAren't you coming to the party tomorrow?\tNe viendrez-vous pas à la fête, demain ?\nAren't you glad you didn't go to Boston?\tN'es-tu pas content de ne pas être allé à Boston ?\nAren't you glad you didn't go to Boston?\tN'êtes-vous pas contents de ne pas être allés à Boston ?\nAren't you glad you didn't go to Boston?\tN'es-tu pas contente de ne pas être allée à Boston ?\nAs a last resort, read the instructions.\tEn dernier recours, lisez les instructions.\nAs far as I know, I'm in perfect health.\tPour autant que je sache, je suis en parfaite santé.\nAs far as I know, there is no such word.\tPour autant que je sache, un tel mot n'existe pas.\nAs long as there is life, there is hope.\tTant qu'il y a de la vie, il y a de l'espoir.\nAt first, I thought he was your brother.\tInitialement, je pensais qu'il était votre frère.\nAt first, I thought he was your brother.\tInitialement, je pensais qu'il était ton frère.\nAt that time, she was a student at Yale.\tÀ cette époque elle était étudiante à Yale.\nAt the moment, I have a pretty good job.\tEn ce moment, j'ai un assez bon boulot.\nAustralia is smaller than South America.\tL'Australie est plus petite que l'Amérique du Sud.\nBacteria are invisible to the naked eye.\tLes bactéries sont invisibles à l'œil nu.\nBad weather prevented them from sailing.\tLe mauvais temps les empêcha de faire de la voile.\nBad weather prevented them from sailing.\tLe mauvais temps les empêcha d'aller à la voile.\nBad weather prevented us from departing.\tLe mauvais temps nous empêcha de partir.\nBe at the train station at eleven sharp.\tSois à la gare à onze heures pile.\nBecause of the bad weather, I didn't go.\tÀ cause du mauvais temps, je n'y suis pas allé.\nBelieve me, that excuse ain't gonna fly.\tCrois-moi, cette excuse ne passera pas.\nBoth he and I were members of that club.\tLui comme moi étions membres de ce cercle.\nBoys can't enter the girls' dormitories.\tLes garçons ne peuvent pénétrer dans les dortoirs des filles.\nBoys don't like girls who talk too much.\tLes garçons n'aiment pas les filles qui piplettent.\nBut his name is slightly familiar to me.\tMais son nom m'est vaguement familier.\nBut what will you do if he doesn't come?\tQue vas-tu faire s'il ne vient pas ?\nBy the time you come back, I'll be gone.\tD'ici que tu reviennes je serai parti.\nCall 1-800-828-6322 for a free brochure.\tAppelez le 1-800-828-6322 pour une brochure gratuite.\nCan I borrow your pen for a few minutes?\tJe peux vous emprunter votre stylo pendant quelques minutes ?\nCan I borrow your pen for a few minutes?\tPuis-je vous emprunter votre stylo quelques minutes ?\nCan I give you a little friendly advice?\tPuis-je vous donner un petit conseil d'ami?\nCan I use this area to raise vegetables?\tPuis-je utiliser cet endroit pour faire pousser des légumes ?\nCan you distinguish her from her sister?\tPeux-tu la distinguer de sa sœur ?\nCan you elaborate on this a little more?\tPouvez-vous développer un peu plus cela ?\nCan you elaborate on this a little more?\tPeux-tu développer un peu plus cela ?\nCan you imagine the world without money?\tPouvez-vous imaginer le monde sans argent ?\nCan you point me in the right direction?\tPeux-tu m'indiquer la bonne direction ?\nCan you point me in the right direction?\tPouvez-vous m'indiquer la bonne direction ?\nCan you sell the book to me for 500 yen?\tPourriez-vous me vendre ce livre à 500 yen, s'il vous plaît ?\nCan you sell the book to me for 500 yen?\tPourriez-vous me vendre le livre pour cinq cents yens ?\nCan you tell me a little about yourself?\tPouvez-vous me parler un peu de vous ?\nCan you tell me a little about yourself?\tPeux-tu me parler un peu de toi ?\nCan you tell me about that conversation?\tPouvez-vous m'informer au sujet de cette conversation ?\nCan you tell me about that conversation?\tPeux-tu m'informer au sujet de cette conversation ?\nCan you tell me where the restrooms are?\tPouvez-vous m'indiquer où sont les toilettes ?\nCan you translate English into Japanese?\tSavez-vous traduire depuis l'anglais en japonais ?\nCarelessness often results in accidents.\tL'inattention est souvent cause d'accidents.\nCats can see things even when it's dark.\tLes chats peuvent voir des choses même lorsqu'il fait noir.\nCats were domesticated by the Egyptians.\tLes chats furent domestiqués par les Égyptiens.\nChildren begin school at the age of six.\tLes enfants commencent l'école à l'âge de six ans.\nChristopher Columbus discovered America.\tChristophe Colomb a découvert l'Amérique.\nCombine all the parts to make one piece.\tMélanger tous les éléments pour faire une seule pièce.\nCome by later, I have something for you.\tPasse plus tard, j'ai quelque chose pour toi !\nCome by later, I have something for you.\tPassez plus tard, j'ai quelque chose pour vous !\nCompare your answers with the teacher's.\tCompare tes réponses avec celles du professeur.\nComputers are constantly being improved.\tLes ordinateurs sont améliorés en permanence.\nCould you just turn around for a second?\tPourriez-vous vous retourner une seconde ?\nCould you please bring me a clean knife?\tPourriez-vous, s'il vous plait, m'apporter un couteau propre ?\nCould you please not smoke in this room?\tPourriez-vous ne pas fumer dans cette pièce ?\nCould you please not smoke in this room?\tPourrais-tu ne pas fumer dans cette pièce ?\nCould you send up some stomach medicine?\tPouvez-vous m'envoyer des médicaments pour les maux de ventre.\nCould you send up some stomach medicine?\tPouvez-vous m'envoyer des médicaments pour les maux d'estomac.\nCould you take me to a hospital, please?\tPouvez-vous me conduire à l'hôpital, s'il vous plaît ?\nCouldn't they have picked a better time?\tN'auraient-elles pas pu choisir un meilleur moment ?\nCouldn't they have picked a better time?\tN'auraient-ils pas pu choisir meilleur moment ?\nCows spend hours just chewing their cud.\tLes vaches passent des heures à ruminer.\nDesperate men often do desperate things.\tLes hommes désespérés font souvent des choses désespérées.\nDesperate needs lead to desperate deeds.\tDes besoins désespérés conduisent à des actes désespérés.\nDid she mention the results of the exam?\tA-t-elle parlé des résultats de l'examen ?\nDid you do something new with your hair?\tAvez-vous fait quelque chose de nouveau à vos cheveux ?\nDid you do something new with your hair?\tAs-tu fait quelque chose de nouveau à tes cheveux ?\nDid you do something new with your hair?\tAvez-vous fait quelque chose de nouveau à tes cheveux ?\nDid you get any sleep at all last night?\tAs-tu dormi le moins du monde la nuit dernière ?\nDid you go to Tom's party last Saturday?\tEs-tu allé à la fête de Tom samedi dernier ?\nDid you go to Tom's party last Saturday?\tÊtes-vous allés à la fête de Tom samedi dernier ?\nDid you practice the piano this morning?\tTu as fait du piano ce matin ?\nDid you stay home to study for the test?\tEs-tu resté à la maison pour étudier pour le contrôle ?\nDid you stay home to study for the test?\tÊtes-vous resté chez vous pour étudier pour l'examen ?\nDid you take him back to your apartment?\tL'as-tu ramené à ton appartement ?\nDid you take him back to your apartment?\tL'avez-vous ramené à votre appartement ?\nDid you tell Tom what he needed to know?\tAs-tu dit à Tom ce qu'il avait besoin de savoir ?\nDid you tell Tom what he needed to know?\tAvez-vous dit à Tom ce qu'il avait besoin de savoir ?\nDidn't I give you 10,000 yen a week ago?\tN'aviez-vous pas donné 10 000 yens il y a une semaine de cela ?\nDidn't I tell you not to close the door?\tNe t'ai-je pas dit de ne pas fermer la porte ?\nDidn't I tell you not to close the door?\tNe vous ai-je pas dit de ne pas fermer la porte ?\nDinosaurs died out a very long time ago.\tLes dinosaures ont disparu il y a fort longtemps.\nDissolve the tablet in a glass of water.\tDissoudre le comprimé dans un verre d'eau.\nDo not throw anything out of the window.\tNe jette aucun objet par la fenêtre.\nDo stop talking and listen to the music.\tArrêtez donc de parler et écoutez la musique.\nDo you have a bottle opener I could use?\tAuriez-vous un décapsuleur à me prêter ?\nDo you have a bottle opener I could use?\tAurais-tu un décapsuleur à me prêter ?\nDo you have a similar proverb in French?\tAs-tu un proverbe similaire en français ?\nDo you have a similar proverb in French?\tAvez-vous un proverbe similaire en français ?\nDo you have a similar proverb in French?\tEst-ce que tu as un proverbe similaire en français ?\nDo you have a similar proverb in French?\tEst-ce que vous avez un proverbe similaire en français ?\nDo you have an alarm clock in your room?\tAs-tu un réveil dans ta chambre ?\nDo you have any idea what you're saying?\tAs-tu la moindre idée de ce que tu dis ?\nDo you have any idea what you're saying?\tAvez-vous la moindre idée de ce que vous dites ?\nDo you have enough information to go on?\tDisposez-vous de suffisamment d'information pour avancer ?\nDo you have enough information to go on?\tDisposes-tu de suffisamment d'information pour avancer ?\nDo you have time the day after tomorrow?\tAs-tu du temps libre après-demain ?\nDo you know of a good motel in the area?\tVous connaissez un bon môtel pas loin?\nDo you know who invented the microscope?\tSais-tu qui a inventé le microscope ?\nDo you really think this is a good idea?\tPenses-tu vraiment que ce soit une bonne idée ?\nDo you really think this is a good idea?\tPensez-vous vraiment que ce soit une bonne idée ?\nDo you remember anything from back then?\tTe rappelles-tu quoi que ce soit de cette époque ?\nDo you remember anything from back then?\tVous rappellez-vous quoi que ce soit de cette époque ?\nDo you remember the town he was born in?\tVous rappelez-vous dans quelle ville il est né ?\nDo you sometimes give your sister money?\tEst-ce que tu donnes un peu d'argent à ta sœur de temps en temps ?\nDo you think I'm qualified for that job?\tPensez-vous que je sois qualifié pour cet emploi ?\nDo you think I'm qualified for that job?\tPensez-vous que je sois qualifiée pour cet emploi ?\nDo you think the situation will improve?\tPensez-vous que la situation va s'améliorer ?\nDo you think the situation will improve?\tPenses-tu que la situation va s'améliorer?\nDo you think this book is worth reading?\tPenses-tu que cela vaille la peine de lire ce livre ?\nDo you want us to take you home with us?\tVeux-tu que nous te ramenions à la maison ?\nDoctors take an oath not to harm anyone.\tLes docteurs font le serment de ne blesser personne.\nDoes anyone have any questions thus far?\tJusqu'ici, est-ce que quelqu'un a des questions ?\nDoes anyone in your family speak French?\tQuiconque parle-t-il le français, dans votre famille ?\nDoes anyone in your office speak French?\tQuiconque parle-t-il le français, à votre bureau ?\nDoing it that way will take a long time.\tLe faire de cette manière prendra beaucoup de temps.\nDoing it that way will take a long time.\tLe faire de cette façon prendra beaucoup de temps.\nDoing it that way will take a long time.\tLe faire ainsi prendra beaucoup de temps.\nDon't ask questions. Just follow orders.\tNe pose pas de questions, contente-toi de suivre les ordres.\nDon't ask questions. Just follow orders.\tNe posez pas de questions, contentez-vous de suivre les ordres.\nDon't be so hard on her. She meant well.\tNe sois pas aussi dur avec elle. Elle voulait bien faire.\nDon't be so hard on her. She meant well.\tNe soyez pas aussi dur avec elle. Elle voulait bien faire.\nDon't be so hard on her. She meant well.\tNe sois pas aussi dure avec elle. Elle voulait bien faire.\nDon't be so hard on her. She meant well.\tNe soyez pas aussi dure avec elle. Elle voulait bien faire.\nDon't bother to pick me up at the hotel.\tNe t'embête pas à venir me prendre à l'hôtel.\nDon't forget to ask follow-up questions.\tN'oublie pas de poser des questions complémentaires !\nDon't forget to include me in the count.\tN'oubliez pas de me compter dans le nombre.\nDon't forget to include me in the count.\tN'oublie pas de m'inclure dans le nombre.\nDon't forget to see me tomorrow morning.\tN'oubliez pas de venir me voir demain matin.\nDon't forget we have to do our homework.\tN’oublie pas que nous devons faire nos devoirs.\nDon't forget we have to do our homework.\tN’oublie pas qu'il nous faut faire nos devoirs.\nDon't forget we have to do our homework.\tN’oubliez pas que nous devons faire nos devoirs.\nDon't forget we have to do our homework.\tN’oubliez pas qu'il nous faut faire nos devoirs.\nDon't laugh at him for making a mistake.\tNe te moque pas de lui parce qu'il a fait une erreur.\nDon't let such a good opportunity go by.\tNe laisse pas passer une si belle occasion.\nDon't make a mountain out of a molehill.\tNe va pas chercher midi à quatorze heures.\nDon't put the saddle on the wrong horse.\tNe mets pas la selle sur le mauvais cheval.\nDon't stick your hand out of the window.\tNe passe pas ta main par la fenêtre.\nDon't trust him, no matter what he says.\tNe le crois pas, quoi qu'il dise.\nDon't trust him, no matter what he says.\tNe le croyez pas, quoi qu'il dise.\nDon't you feel like going to the movies?\tTu n'aurais pas envie d'aller au cinéma ?\nDon't you think I would like to do that?\tNe penses-tu pas que j'aimerais le faire ?\nDon't you think I would like to do that?\tNe pensez-vous pas que j'aimerais le faire ?\nDon't you think Tom and John look alike?\tTu trouves pas que Tom et John se ressemblent ?\nDon't you think it might be a bit heavy?\tNe penses-tu pas que ça pourrait être un peu lourd ?\nDon't you think it might be a bit heavy?\tNe pensez-vous pas que ça pourrait être un peu lourd ?\nDon't you think we deserve some answers?\tNe penses-tu pas que nous méritions quelques réponses ?\nDon't you think we deserve some answers?\tNe pensez-vous pas que nous méritions quelques réponses ?\nDon't you think you have that backwards?\tNe pensez-vous pas que vous avez compris ça à l'envers ?\nDon't you think you have that backwards?\tNe penses-tu pas que tu as compris ça à l'envers ?\nDon't you want everything to be perfect?\tNe veux-tu pas que tout soit parfait ?\nDon't you want everything to be perfect?\tNe voulez-vous pas que tout soit parfait ?\nDon't you want to sit in the front, Tom?\tNe veux-tu pas t'assoir devant, Tom?\nDrastic times call for drastic measures.\tLes temps exceptionnels appellent des mesures exceptionnelles.\nEach member has to pay a membership fee.\tChaque membre doit payer une cotisation.\nEating fast food is bad for your health.\tConsommer de la restauration rapide est mauvais pour la santé.\nEither they don't want to or they can't.\tSoit ils ne le veulent pas, soit ils ne le peuvent.\nEither they don't want to or they can't.\tSoit elles ne le veulent pas, soit elles ne le peuvent.\nEither they don't want to or they can't.\tSoit ils ne le veulent pas, soit ils ne le peuvent pas.\nEither they don't want to or they can't.\tSoit elles ne le veulent pas, soit elles ne le peuvent pas.\nEnglish is spoken in a lot of countries.\tL'anglais est parlé dans de nombreux pays.\nEnglish is spoken in a lot of countries.\tOn parle l'anglais dans de nombreux pays.\nEnglish is taught in a lot of countries.\tL'anglais est enseigné dans beaucoup de pays.\nEven if I wanted to, I couldn't do that.\tMême si je voulais, je ne pourrais pas faire ça.\nEvery member of the cabinet was present.\tTous les membres du cabinet étaient présents.\nEvery student has access to the library.\tTout étudiant a accès à la bibliothèque.\nEvery time I go to his house, he is out.\tChaque fois que je vais chez lui, il n'est pas là.\nEverybody needs something to believe in.\tTout le monde a besoin de croire en quelque chose.\nEveryone at the party was drinking wine.\tTout le monde buvait du vin, à la fête.\nEveryone has good points and bad points.\tTout le monde a des points forts et des points faibles.\nEverything is going to be different now.\tTout va changer maintenant.\nExcuse me, is there a hotel around here?\tExcusez-moi, y a-t-il un hôtel dans les environs ?\nExcuse me, is there a hotel around here?\tExcusez-moi, y a-t-il un hôtel dans les parages ?\nExcuse me, is there a hotel around here?\tExcusez-moi, y a-t-il un hôtel dans le coin ?\nExhaust from factories pollutes the air.\tLes émanations industrielles polluent l'air.\nExplain the fact as clearly as possible.\tExpliquez les faits aussi clairement que possible.\nFather is going to undergo an operation.\tPère va subir une opération.\nFew passengers survived the catastrophe.\tPeu de passagers survécurent à la catastrophe.\nFinding a good place to live isn't easy.\tTrouver un bon endroit pour vivre n'est pas facile.\nFirst of all, let me speak about myself.\tPour commencer, laissez-moi dire quelque chose à mon sujet.\nFortunately, no passengers were injured.\tHeureusement, aucun des passagers n'a été blessé.\nFrankly speaking, I don't like the idea.\tÀ dire vrai, cette idée ne me plaît pas.\nFrankly speaking, I don't like the idea.\tPour le dire franchement, je n'aime pas l'idée.\nFrom space, the earth looks quite small.\tDe l'espace, la Terre a l'air plutôt petite.\nGesture is another way of communication.\tLa gestuelle est un autre moyen de communication.\nGet a good start by observing carefully.\tAssure un bon départ en observant soigneusement.\nGive me a couple minutes to get dressed.\tDonne-moi quelques minutes pour m'habiller !\nGive me a couple minutes to get dressed.\tDonnez-moi quelques minutes pour m'habiller !\nGive me a ring if you find out anything.\tDonnez-moi un anneau si vous découvrez quelque chose.\nGive me a ring if you find out anything.\tAppelez-moi si vous découvrez quelque chose.\nGive me a ring if you find out anything.\tDonne-moi un anneau si tu découvres quelque chose.\nGive me a ring if you find out anything.\tDonne-moi un anneau si vous découvrez quelque chose.\nGive me a table for two near the window.\tDonnez-moi une table pour deux près de la fenêtre.\nGive me some time to let it all sink in.\tLaissez-moi le temps de digérer tout cela.\nGive me some time to let it all sink in.\tLaisse-moi le temps de digérer tout ça.\nGod never forgets even a small kindness.\tDieu n'oublie jamais la moindre bonté.\nHang up your shirts before they wrinkle.\tSuspends tes chemises avant qu'elles ne se froissent.\nHas he paid back the money you lent him?\tA-t-il remboursé l'argent que vous lui avez prêté ?\nHas he paid back the money you lent him?\tA-t-il remboursé l'argent que tu lui as prêté ?\nHasn't he looked at himself in a mirror?\tNe s'est-il pas regardé dans un miroir ?\nHave you ever been betrayed by a friend?\tAs-tu déjà été trahi par un ami ?\nHave you ever been betrayed by a friend?\tAvez-vous déjà été trahi par un ami ?\nHave you ever been betrayed by a friend?\tAvez-vous déjà été trahies par un ami ?\nHave you ever been betrayed by a friend?\tAs-tu déjà été trahie par une amie ?\nHave you ever been betrayed by a friend?\tAvez-vous déjà été trahis par une amie ?\nHave you ever been betrayed by a friend?\tAs-tu déjà été trahi par une amie ?\nHave you ever been stuck in an elevator?\tAvez-vous jamais été coincé dans un ascenseur ?\nHave you ever been stuck in an elevator?\tAvez-vous jamais été coincée dans un ascenseur ?\nHave you ever been to a foreign country?\tAvez-vous déjà séjourné dans un pays étranger ?\nHave you ever taken a lie detector test?\tT'es-tu jamais soumis à l'épreuve d'un détecteur de mensonges ?\nHave you finished knitting that sweater?\tAs-tu fini de tricoter ce pull ?\nHave you finished reading that book yet?\tAs-tu fini de lire ce livre maintenant ?\nHave you finished reading the newspaper?\tAvez-vous fini de lire le journal?\nHave you finished the suggested reading?\tAvez-vous terminé la lecture conseillée ?\nHave you really already found a new job?\tAs-tu déjà trouvé un nouveau travail ?\nHave you really already found a new job?\tAvez-vous déjà trouvé un nouvel emploi ?\nHave you told any of this to the police?\tAvez-vous raconté quoi que ce soit de ceci à la police ?\nHave you told any of this to the police?\tAs-tu raconté quoi que ce soit de ceci à la police ?\nHave you told anyone about this problem?\tAs-tu signalé ce problème à qui que ce soit ?\nHave you told anyone about this problem?\tAvez-vous signalé ce problème à qui que ce soit ?\nHe admits being involved in the scandal.\tIl admet être impliqué dans le scandale.\nHe and I are pretty much the same build.\tLui et moi avons à peu près la même carrure.\nHe arrived at the station out of breath.\tIl est arrivé à la gare à bout de souffle.\nHe arrived on time in spite of the rain.\tIl est arrivé à l'heure malgré la pluie.\nHe asked me what was the matter with me.\tIl m'a demandé ce qui m'arrivait.\nHe asked me who had painted the picture.\tIl m'a demandé qui avait peint ce tableau.\nHe ate up the steak and ordered another.\tIl mangea le steak et en commanda un autre.\nHe can play the piano better than I can.\tIl sait jouer du piano mieux que moi.\nHe can't go without wine for even a day.\tIl ne peut se passer de vin même pour un jour.\nHe criticized me for neglecting my duty.\tIl me critiqua pour avoir négligé mon devoir.\nHe cussed me out for having lied to him.\tIl m'a maudit de lui avoir menti.\nHe declined the job-offer very politely.\tIl a poliment refusé l'offre d'emploi.\nHe did not intend to hurt your feelings.\tIl n'avait pas l'intention de vous blesser.\nHe didn't participate in the discussion.\tIl ne prit pas part à la discussion.\nHe didn't want to talk about it further.\tIl ne voulait pas en parler davantage.\nHe didn't want to talk about it further.\tIl ne voulut pas en parler davantage.\nHe didn't want to talk about it further.\tIl n'a pas voulu en parler davantage.\nHe does not speak unless he is asked to.\tIl ne parle que si on lui demande.\nHe doesn't earn enough money to live on.\tIl ne gagne pas assez d'argent pour vivre.\nHe doesn't go to the office on Saturday.\tIl ne va pas au bureau le samedi.\nHe doesn't know what he's talking about.\tIl ne sait pas de quoi il parle.\nHe doesn't want me to go, but I mean to.\tIl ne veut pas que je parte, mais j'en ai l'intention.\nHe drank the whisky as if it were water.\tIl but le whisky comme si c'était de l'eau.\nHe drew a straight line with his pencil.\tIl traça une ligne droite avec son crayon.\nHe drew a straight line with his pencil.\tIl traça une ligne droite de son crayon.\nHe drove carelessly and had an accident.\tIl a conduit imprudemment et a eu un accident.\nHe exchanged seats with the next person.\tIl a échangé sa place avec la personne suivante.\nHe excused himself for his bad behavior.\tIl s'est excusé du mauvais comportement qu'il a eu.\nHe explained in detail what he had seen.\tIl expliqua en détail ce qu'il avait vu.\nHe explained to me that he had no money.\tIl m'a expliqué qu'il n'avait pas d'argent.\nHe expressed his opinion in a few words.\tIl exprima son opinion en quelques mots.\nHe fell in love with her at first sight.\tIl est tombé amoureux d'elle au premier regard.\nHe felt uneasy in his father's presence.\tIl était mal à l'aise devant son père.\nHe flatly refused her requests for help.\tIl refusa catégoriquement ses appels à l'aide.\nHe gave up his attempt once and for all.\tIl a une fois pour toutes abandonné sa tentative.\nHe glanced at her and saw she was angry.\tIl lui jeta un regard et vit qu'elle était en colère.\nHe got a broken jaw and lost some teeth.\tIl eut la mâchoire cassée et il perdit quelques dents.\nHe graduated from Cambridge with honors.\tIl est diplômé de Cambridge avec mention.\nHe had bruises all over after the fight.\tIl avait le corps couvert de contusions après la bagarre.\nHe had his car stolen in broad daylight.\tSa voiture a été dérobée en plein jour.\nHe had no particular reason to go there.\tIl n'avait aucune raison particulière d'y aller.\nHe had the courage to decline the offer.\tIl a eu le courage de refuser l'offre.\nHe had to go through a lot of hardships.\tIl dut surmonter de nombreuses difficultés.\nHe had to reduce the price of his wares.\tIl dut réduire le prix de ses marchandises.\nHe had to reduce the price of his wares.\tIl a dû réduire le prix de ses marchandises.\nHe has a good chance of getting elected.\tIl a de bonnes chances d'être élu.\nHe has a habit of keeping the door open.\tIl a coutume de laisser sa porte ouverte.\nHe has a habit of keeping the door open.\tIl a l'habitude de garder sa porte ouverte.\nHe has been living here these ten years.\tIl a vécu ici ces dix années.\nHe has been living in Ankara since 2006.\tIl vit à Ankara depuis 2006.\nHe has been warned on several occasions.\tOn l'a averti à plusieurs reprises.\nHe has decided not to go to the meeting.\tIl a décidé de ne pas se rendre à la réunion.\nHe has done many things for poor people.\tIl a fait beaucoup de choses pour les pauvres.\nHe has gone to Osaka on urgent business.\tIl est allé à Osaka pour une affaire urgente.\nHe has hardly any money, but he gets by.\tIl n'a pour ainsi dire pas d'argent mais il se débrouille.\nHe has hardly any money, but he gets by.\tIl n'a pour ainsi dire pas d'argent mais il s'en sort.\nHe has knowledge and experience as well.\tIl a la connaissance ainsi que l'expérience.\nHe has knowledge and experience as well.\tIl a des connaissances et de l'expérience.\nHe has more books than he can ever read.\tIl a plus de livres qu'il ne peut jamais en lire.\nHe has never been scolded by his father.\tIl n'a jamais été grondé par son père.\nHe has not paid his portion of the rent.\tIl n'a pas payé sa part du loyer.\nHe has since taken to drinking at lunch.\tIl s'est mis à boire à table depuis ce temps-là\nHe has taken over his father's business.\tIl a repris l'entreprise de son père.\nHe has the habit of scratching his head.\tIl a l'habitude de se gratter la tête.\nHe hurt himself during yesterday's game.\tIl s'est blessé pendant la partie, hier.\nHe is always on time for an appointment.\tIl est toujours à l'heure à un rendez-vous.\nHe is fortunate having such a good wife.\tIl a de la chance d'avoir une si bonne épouse.\nHe is going to drive you to the airport.\tIl va vous conduire à l'aéroport.\nHe is going to stay at a friend's house.\tIl va rester chez un ami.\nHe is inclined to argue at great length.\tIl a tendance à fournir beaucoup d'efforts pour argumenter.\nHe is not as smart as his older brother.\tIl n'est pas aussi intelligent que son frère ainé.\nHe is not as smart as his older brother.\tIl n'est pas aussi élégant que son frère ainé.\nHe is now in a very difficult situation.\tIl est désormais dans une situation très difficile.\nHe is what we call a walking dictionary.\tIl est ce que nous appelons un dictionnaire ambulant.\nHe isn't the only one with this opinion.\tIl n'est pas le seul à avoir cette opinion.\nHe likes vegetables, especially cabbage.\tIl apprécie les légumes, tout particulièrement le chou.\nHe looked satisfied with my explanation.\tIl a semblé satisfait de mon explication.\nHe looked up the word in his dictionary.\tIl chercha le mot dans son dictionnaire.\nHe lost his son in the traffic accident.\tIl a perdu son fils dans un accident de la route.\nHe made a speech in support of the plan.\tIl a fait un discours pour soutenir le projet.\nHe must stay in the hospital for a week.\tIl doit rester à l’hôpital pendant une semaine.\nHe ordered them to release the prisoner.\tIl leur ordonna de libérer le prisonnier.\nHe owes much of his success to his wife.\tIl doit beaucoup de son succès à son épouse.\nHe possessed a large house and two cars.\tIl possédait une grande maison et deux voitures.\nHe promised to come, but he didn't come.\tIl avait promis de venir, mais il n'est pas venu.\nHe put great emphasis on spoken English.\tIl insiste particulièrement sur l'anglais parlé.\nHe put great emphasis on spoken English.\tIl insistait particulièrement sur l'anglais parlé.\nHe ran away at the sight of a policeman.\tIl s'enfuit à la vue du policier.\nHe read the article over and over again.\tIl lit l'article encore et encore.\nHe received a good education in England.\tIl a reçu une bonne éducation en Angleterre.\nHe refused to give them the information.\tIl a refusé de leur donner l'information.\nHe remained steadfast to his principles.\tIl est resté fidèle à ses principes.\nHe remembers to write to her every week.\tIl n'oublie pas de lui écrire chaque semaine.\nHe represented his class at the meeting.\tIl représentait sa classe à la réunion.\nHe resented everyone's being very quiet.\tIl avait le sentiment que tout le monde était très silencieux.\nHe retired to his own room after supper.\tIl se retira dans sa chambre après dîner.\nHe ripped up all her letters and photos.\tIl a déchiré toutes ses lettres et ses photos.\nHe sacrificed his own life to save them.\tIl a sacrifié sa propre vie pour les sauver.\nHe sat on the sofa with his arms folded.\tIl était assis sur le sofa avec les bras croisés.\nHe sat on the sofa with his arms folded.\tIl s'assit sur le canapé, les bras croisés.\nHe sat there surrounded by his children.\tIl s'assit là, entouré de ses enfants.\nHe says his son can count up to 100 now.\tIl dit que son fils sait à présent compter jusqu'à cent.\nHe sent a letter addressed to his uncle.\tIl envoya une lettre adressée à son oncle.\nHe served in the House for twelve years.\tIl a servi à la Chambre pendant douze ans.\nHe speaks English with a Russian accent.\tIl parle anglais avec un accent russe.\nHe still says that he did nothing wrong.\tIl continue à dire qu'il n'a rien fait de mal.\nHe stretched out his arm for a magazine.\tIl étendit son bras pour attraper un magazine.\nHe told me to meet him at his apartment.\tIl me dit de le rencontrer à son appartement.\nHe told me to meet him at his apartment.\tIl m'a dit de le rencontrer à son appartement.\nHe traveled with only a dog for company.\tIl voyageait avec un chien pour seule compagnie.\nHe turned his back on the old tradition.\tIl a tourné le dos à la vieille tradition.\nHe waited for the elevator to come down.\tIl attendit que l'ascenseur descende.\nHe wanted to be a great military leader.\tIl voulait être un grand chef militaire.\nHe was a great poet as well as a doctor.\tC'était un grand poète, en plus d'un médecin.\nHe was a member of the Republican Party.\tIl était membre du parti républicain.\nHe was a member of the Republican Party.\tIl fut membre du parti républicain.\nHe was ambassador to the United Nations.\tIl était ambassadeur aux Nations Unies.\nHe was challenged to a drinking contest.\tOn l'a défié pour un concours de beuverie.\nHe was completely engrossed in the book.\tIl était complètement absorbé par le livre.\nHe was covered in mud from head to foot.\tIl était couvert de boue, de la tête aux pieds.\nHe was destined never to meet her again.\tIl était destiné à ne plus jamais la revoir.\nHe was distracted by the beautiful girl.\tIl fut distrait par la belle fille.\nHe was distracted by the beautiful girl.\tIl a été distrait par la belle fille.\nHe was easily able to solve the problem.\tIl put facilement résoudre le problème.\nHe was in prison on a charge of robbery.\tIl était en prison pour vol.\nHe was kind enough to tell me the truth.\tIl a été assez gentil pour me dire la vérité.\nHe was not conscious of his own mistake.\tIl n'était pas conscient de sa propre erreur.\nHe was present at the meeting yesterday.\tIl était présent à la réunion hier.\nHe was sentenced to three years in jail.\tIl a été condamné à trois ans de prison.\nHe was the only witness of the accident.\tIl était le seul témoin de l'accident.\nHe was walking with a stick in his hand.\tIl marchait un bâton à la main.\nHe went deaf as a result of an accident.\tIl est devenu sourd à la suite d'un accident.\nHe went to work in spite of his illness.\tIl est allé travailler bien qu'il soit malade.\nHe will go to the meeting instead of me.\tIl ira à la réunion à ma place.\nHe will probably win the speech contest.\tIl remportera sans doute le concours de diction.\nHe will walk in the park this afternoon.\tIl marchera dans le parc cet après-midi.\nHe works too slowly to be helpful to us.\tIl travaille trop lentement pour nous être utile.\nHe would give an arm and a leg for that.\tIl serait prêt à donner un bras et une jambe pour l'avoir.\nHe wrote a novel based on ancient myths.\tIl a écrit une nouvelle basée sur un mythe.\nHe wrote this book at the age of twenty.\tIl écrivit ce livre à l'âge de vingt ans.\nHe's always complaining about something.\tIl se plaint toujours de quelque chose.\nHe's always worrying about his daughter.\tIl se fait tout le temps du souci au sujet de sa fille.\nHe's got a boy-next-door look about him.\tIl a un air de garçon d'à coté.\nHe's not the brightest guy in the world.\tCe n'est pas le type le plus brillant au monde.\nHe's not the brightest guy in the world.\tCe n'est pas une lumière.\nHe's spending too much time watching TV.\tIl passe trop de temps à regarder la télé.\nHe's sure that he'll pass the next exam.\tIl est certain de réussir le prochain examen.\nHe's very honest, so we can rely on him.\tIl est très honnête, donc nous pouvons nous y fier.\nHe's very honest, so we can rely on him.\tIl est très honnête, donc nous pouvons nous fier à lui.\nHello, is this the personnel department?\tAllo, est-ce le service du personnel ?\nHer ambition is to become an ambassador.\tSon ambition est de devenir ambassadeur.\nHer heart was throbbing with excitement.\tSon cœur battait d'excitation.\nHer shyness makes me like her even more.\tSa timidité me la rend encore plus chère.\nHer success as a singer made her famous.\tSon succès en tant que chanteuse l'a rendue célèbre.\nHerbert Hoover won the election of 1928.\tHerbert Hoover a remporté l'élection de 1928.\nHis manners aren't those of a gentleman.\tSes manières ne sont pas celles d'un gentleman.\nHis office is convenient to the station.\tSon bureau est bien situé par rapport à la gare.\nHis prompt action prevented an epidemic.\tSon action rapide a évité une épidémie.\nHis proposal is not worth talking about.\tSa proposition ne mérite pas qu'on en parle.\nHis speech made a good impression on me.\tSon discours m'a fait bonne impression.\nHis success was mostly due to good luck.\tSon succès a été principalement dû à la bonne fortune.\nHis wife goes with him wherever he goes.\tSa femme se rend avec lui où qu'il aille.\nHis wife goes with him wherever he goes.\tSa femme va avec lui partout où il se rend.\nHow are you going to solve this problem?\tComment allez-vous résoudre ce problème ?\nHow did such a strange thing come about?\tComment une chose tellement étrange a-t-elle pu se produire ?\nHow did we let things get to this point?\tComment avons-nous laissé les choses en arriver là ?\nHow did you happen to see them doing it?\tComment se fait-il que tu les aies vus en train de le faire ?\nHow did you happen to see them doing it?\tComment se fait-il que tu les aies vues en train de le faire ?\nHow did you happen to see them doing it?\tComment se fait-il que vous les ayez vus en train de le faire ?\nHow did you happen to see them doing it?\tComment se fait-il que vous les ayez vues en train de le faire ?\nHow did you know I was going to say yes?\tComment saviez-vous que j'allais dire oui ?\nHow did you know I was going to say yes?\tComment savais-tu que j'allais dire oui ?\nHow do they want to receive their money?\tDe quelle façon souhaitent-ils recevoir leur argent ?\nHow do they wish to receive their money?\tDe quelle façon souhaitent-ils recevoir leur argent ?\nHow do we find out what we need to know?\tComment trouver ce qu'il nous faut savoir ?\nHow do we upload photos to your website?\tComment télécharge-t-on des photos sur votre site web ?\nHow do we upload photos to your website?\tComment télécharge-t-on des photos sur ton site web ?\nHow long are you going to stay in Japan?\tCombien de temps allez-vous rester au Japon ?\nHow long do I have to wait for delivery?\tCombien de temps dois-je attendre pour la livraison ?\nHow long do you study English every day?\tPendant combien de temps étudiez-vous l'anglais chaque jour ?\nHow long has it been since your divorce?\tCombien de temps s'est-il écoulé depuis ton divorce ?\nHow long has it been since your divorce?\tCombien de temps s'est-il écoulé depuis votre divorce ?\nHow long have you been studying English?\tCombien de temps avez-vous étudié l'anglais ?\nHow long have you been teaching English?\tDepuis combien de temps enseignez-vous l'anglais ?\nHow many classes do you have on Mondays?\tCombien de cours avez-vous le lundi ?\nHow many fish can you keep in your tank?\tCombien de poissons peux-tu conserver dans ton réservoir ?\nHow many prefectures are there in Japan?\tCombien y a-t-il de préfectures au Japon ?\nHow many symphonies did Beethoven write?\tCombien de symphonies Beethoven a-t-il écrites ?\nHow much more suffering can they endure?\tEncore combien de souffrance peuvent-ils endurer ?\nHow much more suffering can they endure?\tCombien de souffrance peuvent-elles encore endurer ?\nHow much time do we have to finish this?\tCombien de temps avons-nous pour finir cela ?\nI already told you that a hundred times.\tJe t'ai déjà dit ça cent fois.\nI already told you that a hundred times.\tJe vous ai déjà dit cela cent fois.\nI already took the pies out of the oven.\tJ'ai déjà sorti les tartes du four.\nI always brush my coat when I come home.\tJe brosse toujours mon manteau quand je rentre à la maison.\nI always have trouble remembering names.\tJ'ai toujours du mal à me souvenir des noms.\nI am ashamed of having been rude to her.\tJ'ai honte d'avoir été grossier à son égard.\nI am ashamed of having been rude to her.\tJ'ai honte d'avoir été grossier envers elle.\nI am bound to him by a close friendship.\tJe suis lié à lui par une étroite amitié.\nI am far from satisfied with the result.\tJe suis loin d'être satisfait du résultat.\nI am happy to have so many good friends.\tJe suis content d'avoir autant de bons amis.\nI am not sure how to pronounce the word.\tJe ne suis pas sûr de la prononciation de ce mot.\nI am planning to go to Europe next week.\tJe prévois de me rendre en Europe la semaine prochaine.\nI am proud to be a part of this project.\tJe suis fier de faire partie de ce projet.\nI am starting the year as sick as a dog.\tJ'inaugure l'année avec la crève.\nI am thinking of going abroad next year.\tJe pense partir à l'étranger l'année prochaine.\nI am thinking of going to the mountains.\tJe pense partir à la montagne.\nI am very glad to be out of high school.\tJe suis vraiment heureux d'être sorti de l'école.\nI apologize for not replying right away.\tJe présente mes excuses pour ne pas avoir immédiatement répondu.\nI arrived too late and missed the train.\tJe suis arrivé trop tard et ai loupé le train.\nI arrived too late and missed the train.\tJe suis arrivée trop tard et j'ai loupé le train.\nI asked my mother to wake me up at four.\tJ’ai demandé à ma mère de me réveiller à quatre heures.\nI assure you Tom will be perfectly safe.\tJe t'assure que Tom sera parfaitement en sécurité.\nI became aware of someone looking at me.\tJe me suis rendu compte qu'on m'observait.\nI believe what is written in her letter.\tJe crois ce qu'elle a écrit dans sa lettre.\nI bought a newspaper written in English.\tJ'ai acheté un journal écrit en anglais.\nI bought this book at Maruzen Bookstore.\tJ'ai acheté ce livre chez Maruzen, le marchand de livres.\nI can tear you apart with my bare hands.\tJe peux te dépecer à mains nues.\nI can trace my ancestors back 200 years.\tJe peux tracer mes ancêtres deux cents ans en arrière.\nI can't believe that she did that to me.\tJe n'arrive pas à croire qu'elle m'ait fait ça.\nI can't believe this is happening to us.\tJe n'arrive pas à croire que ça nous arrive à nous.\nI can't believe what an idiot I've been.\tJe n'arrive pas à croire quel idiot j'ai été.\nI can't believe what an idiot I've been.\tJe n'arrive pas à croire quelle idiote j'ai été.\nI can't believe you didn't recognize me.\tJe n'arrive pas à croire que tu ne m'aies pas reconnu.\nI can't believe you didn't recognize me.\tJe n'arrive pas à croire que vous ne m'ayez pas reconnu.\nI can't believe you didn't recognize me.\tJe n'arrive pas à croire que tu ne m'aies pas reconnue.\nI can't believe you didn't recognize me.\tJe n'arrive pas à croire que vous ne m'ayez pas reconnue.\nI can't believe you would do that to me.\tJe n'arrive pas à croire que tu me ferais ça.\nI can't believe you would do that to me.\tJe n'arrive pas à croire que vous me feriez ça.\nI can't bring myself to do such a thing.\tJe ne peux me résoudre à faire une telle chose.\nI can't help but feel a little relieved.\tJe ne peux pas m'empêcher de me sentir un peu soulagé.\nI can't help but feel a little relieved.\tJe ne peux pas m'empêcher de me sentir un peu soulagée.\nI can't help but feel a little relieved.\tJe ne peux m'empêcher de me sentir un peu soulagé.\nI can't help but feel a little relieved.\tJe ne peux m'empêcher de me sentir un peu soulagée.\nI can't help but feel a little relieved.\tJe ne peux pas m'empêcher de me sentir quelque peu soulagé.\nI can't help but feel a little relieved.\tJe ne peux pas m'empêcher de me sentir quelque peu soulagée.\nI can't help but feel a little relieved.\tJe ne peux m'empêcher de me sentir quelque peu soulagé.\nI can't help but feel a little relieved.\tJe ne peux m'empêcher de me sentir quelque peu soulagée.\nI can't help feeling sorry for the girl.\tJe ne peux pas m'empêcher d'être désolé pour cette fille.\nI can't read French, nor can I speak it.\tJe ne peux pas lire le français, je ne peux pas non plus le parler.\nI can't read French, nor can I speak it.\tJe ne peux ni lire le français ni le parler.\nI can't remember how much I paid for it.\tJe n'arrive pas à me rappeler combien j'ai payé pour ça.\nI can't tell him apart from his brother.\tJe ne sais pas le distinguer de son frère.\nI can't tell you the answer to that yet.\tJe ne peux pas te donner la réponse à ça pour l'instant.\nI can't tell you the answer to that yet.\tJe ne peux pas te fournir la réponse à ça pour l'instant.\nI can't tell you what we did last night.\tJe ne peux pas te raconter ce que nous avons fait hier soir.\nI can't tell you what we did last night.\tJe ne peux pas te dire ce que nous avons fait la nuit dernière.\nI can't tell you what we did last night.\tJe ne peux pas vous dire ce que nous avons fait la nuit dernière.\nI can't tell you what we did last night.\tJe ne peux pas te raconter ce que nous avons fait la nuit dernière.\nI can't tell you what we did last night.\tJe ne peux pas vous raconter ce que nous avons fait la nuit dernière.\nI can't tell you what we did last night.\tJe ne peux pas vous raconter ce que nous avons fait hier soir.\nI can't tell you what we did last night.\tJe ne peux pas vous raconter ce que nous avons fait hier au soir.\nI can't tell you what we did last night.\tJe ne peux pas te raconter ce que nous avons fait hier au soir.\nI can't tell you what we did last night.\tJe ne peux pas vous dire ce que nous avons fait hier soir.\nI can't tell you what we did last night.\tJe ne peux pas vous dire ce que nous avons fait hier au soir.\nI can't tell you what we did last night.\tJe ne peux pas te dire ce que nous avons fait hier soir.\nI can't tell you what we did last night.\tJe ne peux pas te dire ce que nous avons fait hier au soir.\nI can't tell you what we ended up doing.\tJe ne peux pas te dire ce que nous avons fini par faire.\nI can't tell you what we ended up doing.\tJe ne peux pas vous dire ce que nous avons fini par faire.\nI can't tell you what we ended up doing.\tJe ne peux pas te raconter ce que nous avons fini par faire.\nI can't tell you what we ended up doing.\tJe ne peux pas vous raconter ce que nous avons fini par faire.\nI can't understand what you said at all.\tJe ne peux pas du tout comprendre ce que vous avez dit.\nI can't understand what you said at all.\tJe ne peux pas du tout comprendre ce que tu as dit.\nI cannot distinguish a frog from a toad.\tJe ne suis pas capable de faire la différence entre une grenouille et un crapaud.\nI care a good deal about what you think.\tJe me soucie beaucoup de ce que vous pensez.\nI chose last time. You choose this time.\tJ'ai choisi, la dernière fois. A toi de choisir, cette fois.\nI could hear her sobbing in her bedroom.\tJe l'ai entendue sangloter dans sa chambre.\nI could not come to your birthday party.\tJe n'ai pas pu venir à votre fête d'anniversaire.\nI could not keep the tears from my eyes.\tJe n'ai pas pu m'empêcher de pleurer.\nI could not keep the tears from my eyes.\tJe n'ai pas pu retenir mes larmes.\nI could smell the alcohol on his breath.\tJe pouvais sentir l'alcool de son haleine.\nI could sure use that scholarship money.\tJe pourrais certainement faire usage de cette bourse.\nI couldn't bring myself to take the job.\tJe n'ai pas pu me résoudre à prendre le poste.\nI couldn't get rid of my doubt about it.\tJe ne peux pas m'enlever ces doutes concernant cela.\nI couldn't remember ever having met her.\tJe ne me souvenais pas l'avoir jamais rencontrée.\nI cut my right hand on a piece of glass.\tJe me suis coupé la main droite sur un bout de verre.\nI cut the paper with a pair of scissors.\tJe coupe le papier avec une paire de ciseaux.\nI cut the paper with a pair of scissors.\tJ'ai coupé le papier avec une paire de ciseaux.\nI cut the paper with a pair of scissors.\tJe coupai le papier avec une paire de ciseaux.\nI cut up all but one of my credit cards.\tJ'ai interrompu toutes mes cartes de crédit sauf une.\nI did the job to the best of my ability.\tJ'ai rempli mon travail au mieux de mes capacités.\nI didn't actually want to go to college.\tJe ne voulais pas vraiment aller à l'université.\nI didn't consider the subject seriously.\tJe n'ai pas sérieusement pensé au sujet.\nI didn't even know Tom had a girlfriend.\tJe ne savais même pas que Tom avait une petite amie.\nI didn't even know Tom had a girlfriend.\tJe ne savais même pas que Tom avait une copine.\nI didn't expect you to get here so soon.\tJe ne t'attendais pas ici de si tôt.\nI didn't expect you to get here so soon.\tJe ne m'attendais pas à ce que vous arriviez ici si tôt.\nI didn't know you were expecting anyone.\tJ'ignorais que vous attendiez qui que ce soit.\nI didn't know you were expecting anyone.\tJ'ignorais que tu attendais qui que ce soit.\nI didn't know you were expecting anyone.\tJ'ignorais que vous attendiez qui que ce fut.\nI didn't realize you could speak French.\tJe n'ai pas pris conscience que vous saviez parler français.\nI didn't realize you could speak French.\tJe n'ai pas pris conscience que tu savais parler français.\nI didn't realize you could speak French.\tJe n'ai pas pris conscience que vous saviez parler le français.\nI didn't realize you could speak French.\tJe n'ai pas pris conscience que tu savais parler le français.\nI didn't think Boston would be this hot.\tJe ne pensais pas qu'il faisait si chaud à Boston.\nI didn't want Tom to think I was stupid.\tJe ne voulais pas que Tom pense que je suis stupide.\nI do not think their plan will work out.\tJe ne pense pas que leur plan fonctionnera.\nI don't anticipate that to be a problem.\tJe ne m'attends pas à ce que ce soit un problème.\nI don't believe this is happening to me.\tJe ne parviens pas à croire que ça m'arrive.\nI don't care where you're eating dinner.\tJe me fiche de savoir où vous dînez.\nI don't care where you're eating dinner.\tJe me fiche de savoir où tu dînes.\nI don't care whether he leaves or stays.\tJe me fiche qu'il s'en aille ou qu'il reste.\nI don't enjoy traveling in large groups.\tJe n'aime pas voyager en groupes importants.\nI don't feel that way about you anymore.\tCe n'est plus ce que je ressens pour toi.\nI don't get what the author means there.\tJe ne comprends pas ce que l'auteur veut dire par là.\nI don't have a bicycle, let alone a car.\tJe n'ai pas de vélo, encore moins de voiture.\nI don't have any trouble believing that.\tJe n'ai aucun problème à croire ça.\nI don't have any trouble believing that.\tJe n'ai aucun problème à gober ça.\nI don't have as much money as you think.\tJe n'ai pas autant d'argent que tu le penses.\nI don't have as much money as you think.\tJe n'ai pas tant d'argent que vous le pensez.\nI don't have the money to buy that book.\tJe ne dispose pas de l'argent pour acheter ce livre.\nI don't know about you, but I'm starved.\tJe ne sais pas pour toi mais, moi, je crève de faim.\nI don't know about you, but I'm starved.\tJe ne sais pas en ce qui te concerne mais, moi, je crève de faim.\nI don't know how many minutes we've got.\tJe ne sais pas de combien de minutes nous disposons.\nI don't know how many minutes we've got.\tJ'ignore de combien de minutes nous disposons.\nI don't know how to interpret his words.\tJe ne sais pas comment interpréter ses mots.\nI don't know if I can handle this alone.\tJe ne sais pas si je peux le gérer seule.\nI don't know if I can handle this alone.\tJe ne sais pas si je peux le gérer seul.\nI don't know if I can handle this alone.\tJ'ignore si je peux le gérer seule.\nI don't know if I can handle this alone.\tJ'ignore si je peux le gérer seul.\nI don't know if I'll have time to do it.\tJe ne sais pas si j'aurai le temps de le faire.\nI don't know the exact place I was born.\tJe ne connais pas l'endroit exact où je suis né.\nI don't know the exact place I was born.\tJe ne connais pas le lieu exact de ma naissance.\nI don't know the reason for her absence.\tJe ne connais pas la raison de son absence.\nI don't know what has become of the boy.\tJe ne sais pas ce qu'est devenu ce garçon.\nI don't know whether to be happy or not.\tJe ne sais s'il faut que je sois heureux ou pas.\nI don't know whether to be happy or not.\tJe ne sais s'il faut que je sois heureuse ou pas.\nI don't know why you want me to do that.\tJe ne sais pas pourquoi vous voulez que je fasse cela.\nI don't know why you want me to do that.\tJe ne sais pas pourquoi tu veux que je fasse ça.\nI don't know, but I'm going to find out.\tJe l'ignore mais je vais le découvrir.\nI don't like being treated like a child.\tJe n'aime pas être traité comme un enfant.\nI don't like your coming late every day.\tJe n'aime pas que tu viennes en retard chaque jour.\nI don't make deals with people like you.\tJe ne passe pas d'accord avec des personnes comme toi.\nI don't need your permission to do this.\tJe n'ai pas besoin de votre permission pour faire ceci.\nI don't need your permission to do this.\tJe n'ai pas besoin de ta permission pour faire ceci.\nI don't really want to be all by myself.\tJe ne veux pas vraiment être toute seule.\nI don't really want to be all by myself.\tJe ne veux pas vraiment être tout seul.\nI don't regret what happened last night.\tJe ne regrette pas ce qui s'est produit la nuit passée.\nI don't regret what happened last night.\tJe ne regrette pas ce qui s'est passé la nuit passée.\nI don't regret what happened last night.\tJe ne regrette pas ce qui est arrivé la nuit passée.\nI don't regret what happened last night.\tJe ne regrette pas ce qui s'est produit la nuit dernière.\nI don't regret what happened last night.\tJe ne regrette pas ce qui est arrivé la nuit dernière.\nI don't regret what happened last night.\tJe ne regrette pas ce qui s'est passé la nuit dernière.\nI don't smoke or drink. I just do pills.\tJe ne fume ni ne bois pas. Je suis juste sous médicaments.\nI don't spend much time studying French.\tJe ne passe pas beaucoup de temps à étudier le français.\nI don't talk about you behind your back.\tJe ne parle pas de vous derrière votre dos.\nI don't talk about you behind your back.\tJe ne parle pas de toi derrière ton dos.\nI don't think it'll rain this afternoon.\tJe ne pense pas qu'il pleuvra cette après-midi.\nI don't think it'll rain this afternoon.\tJe ne pense pas qu'il pleuvra cet après-midi.\nI don't think it's necessary to do that.\tJe ne pense pas qu'il soit nécessaire de faire ça.\nI don't think that Tom can speak French.\tJe ne crois pas que Tom puisse parler français.\nI don't understand his reluctance to go.\tJe ne comprends pas sa réticence à y aller.\nI don't understand what's bothering you.\tJe ne comprends pas ce qui te soucie.\nI don't understand what's bothering you.\tJe ne comprends pas ce qui vous soucie.\nI don't usually eat at places like this.\tJe ne mange pas dans des endroits comme celui-ci, habituellement.\nI don't usually eat at places like this.\tJe ne mange d'habitude pas dans des endroits tels que celui-ci.\nI don't usually have to work on Sundays.\tJe ne dois normalement pas travailler le dimanche.\nI don't usually write this kind of song.\tJe n'écris pas, d'ordinaire, ce genre de chanson.\nI don't want to be left holding the bag.\tJe n'ai pas envie de me retrouver à porter le sac.\nI don't want to talk about it right now.\tJe ne souhaite pas en parler pour le moment.\nI don't want to talk about this anymore.\tJe ne veux plus en parler.\nI dreamed I had been abducted by aliens.\tJ'ai rêvé que j'avais été enlevé par des extraterrestres.\nI dreamed I had been abducted by aliens.\tJ'ai rêvé que j'avais été enlevée par des extraterrestres.\nI dreamed that I was buying this guitar.\tJ'ai rêvé que j'achetais cette guitare.\nI enjoyed talking with him at the party.\tJ'ai apprécié de parler avec lui à la fête.\nI feed my dog meat at least once a week.\tJe donne à manger de la viande à mon chien, au moins une fois par semaine.\nI feel like my head is going to explode.\tJ'ai l'impression que ma tête va exploser.\nI feel worse today than I did yesterday.\tJe me sens plus mal qu'hier.\nI felt like reading the detective story.\tJ'avais envie de lire le roman policier.\nI finally understand what you're saying.\tJe comprends enfin ce que vous dites.\nI finally understand what you're saying.\tJe comprends enfin ce que tu dis.\nI find her opinions odd but interesting.\tJe trouve ses opinions étranges mais intéressantes.\nI first met Tom when I was a little kid.\tJ'ai rencontré Tom lorsqu'il était un petit enfant\nI forgot to put a stamp on the envelope.\tJ’ai oublié de mettre un timbre sur l’enveloppe.\nI found it difficult to use the machine.\tJ'ai trouvé difficile de me servir de la machine.\nI found out something interesting today.\tJ'ai découvert quelque chose d'intéressant, aujourd'hui.\nI found out whose car went off the road.\tJ'ai découvert à qui était la voiture qui est sortie de la route.\nI found the comic book very interesting.\tJ'ai trouvé la bande dessinée très intéressante.\nI found the field trip very educational.\tJ'ai trouvé l'excursion très éducative.\nI gave each child three pieces of candy.\tJ'ai donné trois bonbons à chaque enfant.\nI gave up on the idea of buying a house.\tJ'ai abandonné l'idée d'acheter une maison.\nI get depressed by the slightest things.\tLes choses les plus insignifiantes me dépriment.\nI got out of bed and had a good stretch.\tJe suis sorti du lit et ai fait de bonnes élongations.\nI got sucked in on a lot of phony deals.\tJ'ai été entraîné dans plein de transactions bidon.\nI got years of experience in courtrooms.\tJ'ai des années d'expérience dans les cours de justice.\nI guess I didn't want to disappoint you.\tJe suppose que je ne voulais pas vous décevoir.\nI guess I didn't want to disappoint you.\tJe suppose que je ne voulais pas te décevoir.\nI guess I just like making people happy.\tJe suppose que j'aime simplement rendre les gens heureux.\nI guess I should get home to the missus.\tJe devrais sans doute rentrer à la maison voir bobonne.\nI had a cup of tea to keep myself awake.\tJ'ai bu une tasse de café pour me garder éveillé.\nI had a fender bender on my way to work.\tJ'ai eu un accrochage en allant au travail.\nI had a small dinner party last weekend.\tJ'ai organisé un dîner, le week-end dernier.\nI had my birthday party at a restaurant.\tJ'ai fait ma fête d'anniversaire dans un restaurant.\nI had my birthday party at a restaurant.\tJ‘ai fêté mon anniversaire dans un restaurant.\nI had my brother put this room in order.\tJ'ai fait ranger cette pièce à mon frère.\nI had my suitcase carried up to my room.\tJ'ai fait monter ma valise dans ma chambre.\nI had never seen a more beautiful sight.\tJamais je n'ai eu de plus belle vision.\nI had never seen a panda till that time.\tJe n'avais jamais vu de panda jusqu'alors.\nI had no choice but to accept the offer.\tJe n'ai eu d'autre choix que d'accepter l'offre.\nI had no choice but to do what he asked.\tJe n'avais pas d'autre choix que de faire ce qu'il demandait.\nI had nothing to do with that situation.\tJe n'avais rien à faire avec cette situation.\nI had that weird dream again last night.\tJ'ai encore fait ce rêve étrange, la nuit dernière.\nI had that weird dream again last night.\tJ'ai à nouveau fait ce rêve étrange, la nuit passée.\nI had the brakes of my bicycle adjusted.\tJ'ai fait ajuster les freins de mon vélo.\nI had trouble falling asleep last night.\tJ'ai eu des difficultés à m'endormir hier soir.\nI have a friend who works at that store.\tJ'ai un ami qui travaille dans ce magasin.\nI have a friend whose wife is a pianist.\tJ'ai un ami dont la femme est pianiste.\nI have a lot of assignments to do today.\tJ'ai beaucoup de missions aujourd'hui.\nI have a problem dealing with authority.\tJ'ai du mal à accepter l'autorité.\nI have a very sore arm where you hit me.\tJ'ai très mal au bras, là où tu m'as frappé.\nI have a very sore arm where you hit me.\tJ'ai très mal au bras, là où tu m'as frappée.\nI have a very sore arm where you hit me.\tJ'ai très mal au bras, là où vous m'avez frappé.\nI have a very sore arm where you hit me.\tJ'ai très mal au bras, là où vous m'avez frappée.\nI have an interest in Oriental ceramics.\tJe suis intéressée par la céramique orientale.\nI have been living here for a long time.\tJe vis ici depuis longtemps.\nI have been living here for three years.\tJ'habite ici depuis trois ans.\nI have breakfast at seven every morning.\tJe prends mon petit déjeuner à sept heures tous les matins.\nI have different priorities than you do.\tJ'ai d'autres priorités que toi.\nI have left you your dinner in the oven.\tJe t'ai laissé ton dîner dans le four.\nI have never killed nor injured anybody.\tJe n'ai jamais tué, ni blessé personne.\nI have never liked her and I never will.\tJe ne l'ai jamais aimée et ne le ferai jamais.\nI have never seen such a beautiful girl.\tJe n'ai jamais vu une aussi belle fille.\nI have no words to express my gratitude.\tJe n'ai pas de mots pour exprimer ma gratitude.\nI have not more than three thousand yen.\tJe n'ai pas plus de trois mille yens.\nI have some correspondence to deal with.\tJ'ai du courrier à traiter.\nI have something in my suitcase for you.\tJ'ai quelque chose pour toi dans ma valise.\nI have something in my suitcase for you.\tJ'ai quelque chose pour vous dans ma valise.\nI have three times as many books as him.\tJ'ai trois fois plus de livres que lui.\nI have three times as much money as you.\tJ'ai trois fois plus d'argent que vous.\nI have to buy flowers for my girlfriend.\tJe dois acheter des fleurs pour ma petite amie.\nI have to go and have an X-ray tomorrow.\tJe dois partir et j'ai une radio à passer demain.\nI have to lose weight, so I'm on a diet.\tJe dois perdre du poids alors je suis au régime.\nI have to reduce my expenses this month.\tJe dois réduire mes dépenses ce mois-ci.\nI haven't gotten around to doing it yet.\tJe ne suis pas encore parvenu à le faire.\nI haven't gotten rid of my bad cold yet.\tJe ne me suis pas encore débarrassé de mon mauvais rhume.\nI haven't gotten rid of my bad cold yet.\tJe ne me suis pas encore débarrassée de mon mauvais rhume.\nI hope Tom likes the gift we bought him.\tJ'espère que Tom aime le cadeau que nous lui avons acheté.\nI hope this doesn't ruin our friendship.\tJ'espère que cela ne brise pas notre amitié.\nI hope this won't affect our friendship.\tJ'espère que cela n'affectera pas notre amitié.\nI hope we will be able to keep in touch.\tJ'espère que nous pourrons rester en contact.\nI hope you behaved well at school today.\tJ'espère que tu t'es bien comporté à l'école aujourd'hui.\nI hope you find what you're looking for.\tJ'espère que tu trouveras ce que tu cherches.\nI hope you find what you're looking for.\tJ'espère que vous trouverez ce que vous cherchez.\nI hope you had a good time at the party.\tJ'espère que tu as passé du bon temps à la fête.\nI hope you had a good time at the party.\tJ'espère que vous avez passé du bon temps à la fête.\nI intended to study medicine in America.\tJ'avais l'intention d'étudier la médecine aux États-Unis.\nI just did what the boss asked me to do.\tJ'ai simplement fait ce que le patron m'a demandé de faire.\nI just had a sandwich so I'm not hungry.\tJe viens de prendre un sandwich alors je n'ai pas faim.\nI just read about that in the newspaper.\tJe viens de lire cela dans le journal.\nI just want an affordable place to live.\tJe veux juste un endroit abordable pour y vivre.\nI just want to improve as much as I can.\tJe veux juste m'améliorer autant que possible.\nI just want to know how far we're going.\tJe veux juste savoir à quelle distance nous allons.\nI just want to know how far we're going.\tJe veux juste savoir à quelle distance nous nous rendons.\nI just want to say I'm glad you're here.\tJe veux juste dire que je suis content que tu sois ici.\nI just want to say I'm glad you're here.\tJe veux juste dire que je suis contente que tu sois ici.\nI just want to say I'm glad you're here.\tJe veux juste dire que je suis content que vous soyez ici.\nI just want to say I'm glad you're here.\tJe veux juste dire que je suis contente que vous soyez ici.\nI just want to sleep in a nice soft bed.\tJe veux simplement dormir dans un lit douillet.\nI just want you to tell me why you lied.\tJe veux juste que tu me dises pourquoi tu as menti.\nI just want you to tell me why you lied.\tJe veux juste que vous me disiez pourquoi vous avez menti.\nI just wanted to express my condolences.\tJe voulais exprimer mes condoléances.\nI keep having this dream about drowning.\tJ'ai constamment ce rêve de me noyer.\nI knew I shouldn't have worn this color.\tJe savais que je n'aurais pas dû porter cette couleur.\nI know a man who can speak Russian well.\tJe connais un homme qui sait bien parler russe.\nI know that there was a big church here.\tJe sais qu'il y avait ici une grande église.\nI know the reason that she quit her job.\tJe connais la raison pour laquelle elle a démissionné.\nI know the reason, but I can't tell you.\tJe sais la raison, mais je ne peux pas te la dire.\nI know the reason, but I can't tell you.\tJe connais la raison, mais je ne peux pas te la dire.\nI know the reason, but I can't tell you.\tJe sais la raison, mais je ne peux pas vous la dire.\nI know the reason, but I can't tell you.\tJe connais la raison, mais je ne peux pas vous la dire.\nI know the reason, but I can't tell you.\tJ'en sais la raison, mais je ne peux pas te la dire.\nI know the reason, but I can't tell you.\tJ'en sais la raison, mais je ne peux pas vous la dire.\nI know they are in love with each other.\tJe sais qu'ils sont amoureux l'un de l'autre.\nI know you considered me a close friend.\tJe sais que tu me tenais pour un ami proche.\nI know you considered me a close friend.\tJe sais que tu me tenais pour une amie proche.\nI know you considered me a close friend.\tJe sais que vous me teniez pour un ami proche.\nI know you considered me a close friend.\tJe sais que vous me teniez pour une amie proche.\nI know you considered me a close friend.\tJe sais que tu me tenais pour un ami intime.\nI know you considered me a close friend.\tJe sais que tu me tenais pour une amie intime.\nI know you considered me a close friend.\tJe sais que vous me teniez pour un ami intime.\nI know you considered me a close friend.\tJe sais que vous me teniez pour une amie intime.\nI left a note on your door this morning.\tJ'ai laissé un message sur ta porte, ce matin.\nI lent her 500 dollars free of interest.\tJe lui ai prêté 500 dollars sans intérêt.\nI like English, but I cannot speak well.\tJ'aime l'anglais, mais je ne peux pas bien le parler.\nI like both watching and playing sports.\tJ'aime à la fois regarder et pratiquer du sport.\nI like fruit such as grapes and peaches.\tJ'aime les fruits tels que les raisins et les pêches.\nI like listening to Tom play the guitar.\tJ'aime écouter Tom jouer de la guitare\nI like skiing much better than swimming.\tJ'aime beaucoup plus skier que nager.\nI like the kind of music that Tom plays.\tJ'aime le type de musique que Tom joue\nI like what you've done with this place.\tJ'aime ce que vous avez fait de cet endroit.\nI like what you've done with this place.\tJ'aime ce que tu as fait de cet endroit.\nI like white roses better than red ones.\tJe préfère les roses blanches aux roses rouges.\nI look forward to hearing from you soon.\tJ'espère avoir bientôt de vos nouvelles.\nI lost the watch my father had given me.\tJ'ai perdu la montre que mon père m'avait donnée.\nI lost the watch that my father gave me.\tJ'ai perdu la montre que mon père m'avait offerte.\nI made very short work of the big steak.\tJe n'ai fait qu'une bouchée du gros steak.\nI must finish my homework before dinner.\tJe dois finir mes devoirs avant le dîner.\nI must finish my homework before dinner.\tJe dois terminer mes devoirs avant le dîner.\nI nearly fainted when I heard the story.\tJe me suis presque évanoui quand j'ai entendu l'histoire.\nI need a pencil. Can I use one of yours?\tJ'ai besoin d'un crayon, puis-je utiliser un des tiens ?\nI need to talk to you about your grades.\tIl me faut m'entretenir avec toi de tes notes.\nI need your passport and three pictures.\tIl me faut votre passeport et trois photos.\nI never expected that she would join us.\tJe ne me suis jamais attendu à ce qu'elle nous rejoigne.\nI never imagined I'd be working for you.\tJe n'ai jamais imaginé que je travaillerais pour toi.\nI never imagined I'd be working for you.\tJe n'ai jamais imaginé que je travaillerais pour vous.\nI never meant for any of this to happen.\tJe n'ai jamais eu l'intention que quoi que ce soit de ça n'arrive.\nI never meant for any of this to happen.\tJe n'ai jamais voulu que tout ça arrive.\nI never said that it wasn't a good idea.\tJe n'ai jamais dit que ce n'était pas une bonne idée.\nI never thought I'd be doing this alone.\tJe n'ai jamais pensé que je serais en train de faire ça seul.\nI never thought I'd be doing this alone.\tJe n'ai jamais pensé que je serais en train de faire ça seule.\nI never thought I'd be happy to see you.\tJe n'ai jamais pensé que je serais heureux de te voir.\nI never thought I'd be happy to see you.\tJe n'ai jamais pensé que je serais heureuse de te voir.\nI never thought I'd be happy to see you.\tJe n'ai jamais pensé que je serais heureux de vous voir.\nI never thought I'd be happy to see you.\tJe n'ai jamais pensé que je serais heureuse de vous voir.\nI never thought I'd see your face again.\tJe n'ai jamais pensé que je reverrais ton visage.\nI never thought I'd see your face again.\tJe n'ai jamais pensé que je reverrais votre visage.\nI never thought I'd see your face again.\tJe n'ai jamais pensé que je verrais à nouveau ton visage.\nI never thought I'd see your face again.\tJe n'ai jamais pensé que je verrais à nouveau votre visage.\nI never thought I'd want to buy an iPad.\tJe n'avais jamais pensé que je voudrais acheter un iPad.\nI never thought I'd want to buy an iPad.\tJe n'avais jamais pensé que je voudrais faire l'acquisition d'un iPad.\nI never thought I'd want to buy an iPad.\tJe n'avais jamais pensé que je voudrais acquérir un iPad.\nI never thought I'd want to buy an iPad.\tJe n'avais jamais pensé que je voudrais procéder à l'acquisition d'un iPad.\nI never thought it would be so exciting.\tJe n'ai jamais pensé que ça serait aussi excitant.\nI never thought it would be so exciting.\tJe n'ai jamais pensé que ça serait aussi passionnant.\nI observed that his hands were unsteady.\tJe notai que ses mains tremblaient.\nI often meditate on the meaning of life.\tJe médite souvent sur le sens de la vie.\nI only asked if I could borrow the book.\tJ'ai juste demandé si je pouvais emprunter le livre.\nI ordered some coffee from room service.\tJ'ai commandé du café au service en chambre.\nI plan to leave Boston as soon as I can.\tJe veux quitter Boston aussi tôt que possible.\nI plan to stay at home all day tomorrow.\tDemain, j'ai l'intention de rester chez moi toute la journée.\nI probably speak French better than Tom.\tJe parle probablement mieux français que Tom\nI promise you I won't stay out too late.\tJe te promets que je ne resterai pas sorti trop tard.\nI read the book up to page 80 yesterday.\tJ'ai lu le livre jusqu'à la page 80 hier.\nI really appreciate you meeting with me.\tJ'apprécie vraiment que tu me rencontres.\nI really appreciate you meeting with me.\tJ'apprécie vraiment que vous me rencontriez.\nI really can't deal with that right now.\tJe ne peux vraiment pas m'en occuper maintenant.\nI really didn't mean for this to happen.\tJe n'avais vraiment pas l'intention que ça se produise.\nI really don't think that's a good idea.\tJe ne pense vraiment pas que ce soit une bonne idée.\nI really don't want to be alone tonight.\tJe ne veux vraiment pas être seule ce soir.\nI really don't want to be alone tonight.\tJe ne veux vraiment pas être seul ce soir.\nI really don't want to sit in that room.\tJe ne veux vraiment pas m'asseoir dans cette pièce.\nI really want to speak English fluently.\tJe veux vraiment parler l'anglais couramment.\nI really wasn't expecting that from you.\tJe ne m'attendais vraiment pas à ça de ta part.\nI really wish I could be there with you.\tJe souhaiterais vraiment pouvoir être là, avec toi.\nI really wish I could be there with you.\tJe souhaiterais vraiment pouvoir y être avec toi.\nI really wish I could be there with you.\tJe souhaiterais vraiment pouvoir être là, avec vous.\nI really wish I could be there with you.\tJe souhaiterais vraiment pouvoir y être avec vous.\nI really wish I could be there with you.\tJe souhaiterais vraiment que moi je puisse y être avec toi.\nI really wish I could be there with you.\tJe souhaiterais vraiment que moi je puisse y être avec vous.\nI regret missing the chance to meet her.\tJe déplore avoir manqué l'opportunité de la rencontrer.\nI saw the picture you took of that fish.\tJ'ai vu la photo que tu as prise de ce poisson.\nI shouldn't have to ever come back here.\tJe ne devrais pas avoir à jamais revenir ici.\nI sincerely hope things improve for you.\tJ'espère sincèrement que les choses vont aller mieux pour vous.\nI sincerely hope things improve for you.\tJ'espère sincèrement que les choses vont aller mieux pour toi.\nI squeezed the juice out of the oranges.\tJ'ai pressé des oranges.\nI still have not learned to drive a car.\tJe n'ai pas encore appris à conduire.\nI strongly urge you to follow my advice.\tJe vous exhorte à suivre mes conseils.\nI strongly urge you to follow my advice.\tJe t'exhorte à suivre mes conseils.\nI suggested that the meeting be put off.\tJe proposai de remettre la réunion.\nI sure wish I could speak French better.\tJ'aimerais certainement pouvoir mieux parler le français.\nI swear to you I will never do it again.\tJe te jure que je ne le ferai plus jamais !\nI swear to you I will never do it again.\tJe vous jure que je ne le ferai plus jamais !\nI take my hat off to her for her effort.\tChapeau bas pour son effort !\nI thank you from the bottom of my heart.\tJe te remercie du fond du cœur.\nI think I could get used to living here.\tJe pense que je pourrais m'habituer à vivre ici.\nI think I'd like to be a better student.\tJe pense que j'aimerais être un meilleur étudiant.\nI think I've found enough for everybody.\tJe pense en avoir trouvé suffisamment pour tout le monde.\nI think Tom wants something to write on.\tJe pense que Tom veut quelque chose sur lequel écrire.\nI think it'd be great if you could come.\tJe pense que ce serait génial si tu pouvais venir.\nI think it's cruel to keep a cat inside.\tJe pense qu'il est cruel de garder un chat à l'intérieur.\nI think it's time for me to buy a house.\tJe pense qu'il est temps pour moi d'acquérir une maison.\nI think it's time for me to buy a house.\tJe pense qu'il est temps pour moi de faire l'acquisition d'une maison.\nI think it's time for me to change jobs.\tJe pense qu'il est temps pour moi de changer d'emploi.\nI think it's time for me to contact her.\tJe pense qu'il est temps pour moi de prendre contact avec elle.\nI think it's time for me to say goodbye.\tJe pense qu'il est temps pour moi de dire au revoir.\nI think it's time for me to wash my car.\tJe pense qu'il est temps pour moi de laver ma voiture.\nI think there's been a misunderstanding.\tJe pense qu'il y a eu un malentendu.\nI think this is what you're looking for.\tJe crois que c'est ce que vous cherchez.\nI think we can all agree on that, right?\tJe pense que nous pouvons tous nous accorder là-dessus, non ?\nI think we need to postpone the meeting.\tJe pense qu'il nous faut remettre la réunion.\nI think we need to postpone the meeting.\tJe pense qu'il nous faut décaler la réunion.\nI think we should all go to Tom's house.\tJe pense que nous devrions tous aller chez Tom.\nI think we should talk about this later.\tJe pense que nous devrions en parler plus tard.\nI think we're going on vacation in June.\tJe crois que nous partirons en vacances en juin.\nI think we've wasted enough of our time.\tJe crois que nous avons perdu assez de notre temps.\nI think what Tom is doing is worthwhile.\tJe pense que ce que Tom est en train de faire en vaut la peine.\nI think you know that's not a good idea.\tJe pense que vous savez que ce n'est pas une bonne idée.\nI think you know that's not a good idea.\tJe pense que tu sais que ce n'est pas une bonne idée.\nI think you know what I'm talking about.\tJe pense que vous savez de quoi je parle.\nI think you know what I'm talking about.\tJe pense que tu sais de quoi je parle.\nI think you ought to get a little sleep.\tJe pense que tu devrais prendre un peu de sommeil.\nI think you ought to get a little sleep.\tJe pense que vous devriez prendre un peu de sommeil.\nI think you should open an account here.\tJe pense que vous devriez ouvrir un compte ici.\nI think you should open an account here.\tJe pense que tu devrais ouvrir un compte ici.\nI think you're not telling me something.\tJe pense qu'il y a quelque chose que tu ne me dis pas.\nI think you're too sick to go to school.\tJe pense que tu es trop malade pour aller à l'école.\nI think you're too sick to go to school.\tJe pense que vous êtes trop malade pour aller à l'école.\nI think your English has improved a lot.\tJe pense que votre anglais s'est beaucoup amélioré.\nI think your English has improved a lot.\tJe pense que ton anglais s'est beaucoup amélioré.\nI thought I told you to clean your room.\tJe pensais t'avoir dit de nettoyer ta chambre.\nI thought I told you to clean your room.\tJe pensais vous avoir dit de nettoyer votre chambre.\nI thought I told you to stay in the car.\tJe pensais t'avoir dit de rester dans la voiture.\nI thought I told you to stay in the car.\tJe pensais vous avoir dit de rester dans la voiture.\nI thought I told you to trim your beard.\tJe pensais t'avoir dit de tailler ta barbe.\nI thought I told you to trim your beard.\tJe pensais vous avoir dit de tailler votre barbe.\nI thought I'd never see you alive again.\tJe pensais que je ne te reverrais jamais vivant.\nI thought Tom had a soccer game tonight.\tJe pensais que Tom avait un match de foot ce soir.\nI thought about what you said yesterday.\tJ'ai réfléchi à ce que vous avez dit hier.\nI thought about what you said yesterday.\tJ'ai réfléchi à ce que tu as dit hier.\nI thought for a minute we had a problem.\tJ'ai pensé pendant une minute que nous avions un problème.\nI thought it over and decided not to go.\tJ'y ai réfléchi et ai décidé de ne pas y aller.\nI thought it over and decided not to go.\tJ'y ai réfléchi et ai décidé de ne pas m'y rendre.\nI thought maybe I could buy you a drink.\tJ'ai pensé que je pourrais peut-être vous payer un verre.\nI thought maybe I could buy you a drink.\tJ'ai pensé que je pourrais peut-être te payer un verre.\nI thought we could eat out on the patio.\tJ'ai pensé que nous pourrions manger dehors sur la terrasse.\nI thought we were going to go somewhere.\tJe pensais que nous allions sortir quelque part.\nI thought we'd be more comfortable here.\tJ'ai pensé que nous serions plus à l'aise ici.\nI thought you might want some breakfast.\tJ'ai pensé que tu voudrais peut-être un petit-déjeuner.\nI thought you might want some breakfast.\tJ'ai pensé que tu pourrais vouloir un petit-déjeuner.\nI thought you might want some breakfast.\tJ'ai pensé que vous pourriez vouloir un petit-déjeuner.\nI thought you said Tom needed more time.\tJe croyais que tu avais dit que Tom avait besoin de plus de temps.\nI thought you used to live in a trailer.\tJe pensais que tu avais vécu dans une caravane.\nI thought you wanted to get out of here.\tJ'ai pensé que tu voulais sortir d'ici.\nI thought you wanted to get out of here.\tJ'ai pensé que vous vouliez sortir d'ici.\nI thought you were a decent young woman.\tJe pensais que tu étais une jeune fille convenable.\nI thought you were a decent young woman.\tJe pensais que vous étiez une jeune fille convenable.\nI told an amusing story to the children.\tJe racontai une histoire amusante aux enfants.\nI told her to quickly finish the report.\tJe lui ai dit de finir rapidement son rapport.\nI told you it was going to be cold here.\tJe t'ai dit qu'il allait faire froid ici.\nI took for granted that he got homesick.\tJ'ai pensé qu'il était naturel qu'il ait le mal du pays.\nI took over the business from my father.\tJ'ai repris l'affaire de mon père.\nI tried calling, but they didn't answer.\tJ'ai essayé d'appeler mais ils n'ont pas répondu.\nI tried calling, but they didn't answer.\tJ'essayai d'appeler mais elles ne répondirent pas.\nI tried flying from the top of the tree.\tJ'ai essayé de voler à partir de la cime de l'arbre.\nI try not to use more paper than I need.\tJ'essaie de ne pas employer plus de papier que j'en ai besoin.\nI tuck my children into bed every night.\tJe borde mes enfants au lit tous les soirs.\nI turned off the lamp and went to sleep.\tJ'éteignis la lampe et allai dormir.\nI turned off the lamp and went to sleep.\tJ'ai éteint la lampe et suis allé dormir.\nI unfortunately drew a wrong conclusion.\tJ'ai malheureusement tiré une conclusion erronée.\nI used a computer in order to save time.\tJe me suis servi d'un ordinateur pour gagner du temps.\nI used to play alone when I was a child.\tJ'avais l'habitude de jouer seul quand j'étais enfant.\nI used to play alone when I was a child.\tEnfant, j'avais l'habitude de jouer seul.\nI waited for her for a really long time.\tJe l'ai attendue pendant vraiment longtemps.\nI walk my dog in the park every morning.\tJe promène mon chien dans le parc tous les matins.\nI want a list of everyone in this class.\tJe veux une liste de tous les participants à ce cours.\nI want all my children to go to college.\tJe veux que tous mes enfants aillent à l'université.\nI want an explanation and I want it now.\tJe veux une explication et je la veux maintenant !\nI want everyone to bring their children.\tJe veux que chacun amène ses enfants.\nI want everyone to bring their children.\tJe veux que chacune amène ses enfants.\nI want life to be the way it was before.\tJe veux que la vie soit comme avant.\nI want life to be the way it was before.\tJe veux que la vie soit comme elle était, avant.\nI want life to be the way it was before.\tJe veux que la vie soit comme elle était, auparavant.\nI want some answers and I want them now.\tJe veux des réponses et je les veux maintenant !\nI want to do what's best for both of us.\tJe veux faire ce qui est meilleur pour nous deux.\nI want to find a way for us to be happy.\tJe veux trouver un moyen, pour nous, d'être heureux.\nI want to find a way for us to be happy.\tJe veux trouver un moyen, pour nous, d'être heureuses.\nI want to find out who broke the window.\tJe veux découvrir qui a cassé la fenêtre.\nI want to find someplace quiet to study.\tJe veux trouver un endroit quelconque qui soit calme, afin d'étudier.\nI want to get married and have children.\tJe veux me marier et avoir des enfants.\nI want to go over a few things with you.\tJe veux parcourir quelques trucs avec toi.\nI want to go over a few things with you.\tJe veux parcourir quelques trucs avec vous.\nI want to hear anything you have to say.\tJe veux entendre tout ce que tu as à dire.\nI want to hear anything you have to say.\tJe veux entendre tout ce que vous avez à dire.\nI want to hear what everyone has to say.\tJe veux entendre ce que chacun a à dire.\nI want to help you get out of this mess.\tJe veux t'aider à t'extirper de ce pétrin.\nI want to help you get out of this mess.\tJe veux t'aider à sortir de ce pétrin.\nI want to help you get out of this mess.\tJe veux vous aider à vous extirper de ce pétrin.\nI want to help you get out of this mess.\tJe veux vous aider à sortir de ce pétrin.\nI want to know where they hid the money.\tJe veux savoir où ils ont caché l'argent.\nI want to know where they hid the money.\tJe veux savoir où elles ont caché l'argent.\nI want to know where they hid the money.\tJe veux savoir où ils ont dissimulé l'argent.\nI want to know where they hid the money.\tJe veux savoir où elles ont dissimulé l'argent.\nI want to make friends with your sister.\tJe veux devenir ami avec ta sœur.\nI want to make friends with your sister.\tJe veux devenir amie avec ta sœur.\nI want to make friends with your sister.\tJe veux devenir ami avec votre sœur.\nI want to make friends with your sister.\tJe veux devenir amie avec votre sœur.\nI want to make sure you know what to do.\tJe veux m'assurer que tu saches quoi faire.\nI want to make sure you know what to do.\tJe veux m'assurer que vous sachiez quoi faire.\nI want to see you two in my office. Now.\tJe veux vous voir tous les deux dans mon bureau. Sur-le-champ.\nI want to speak to the person in charge.\tJe veux parler au responsable.\nI want to talk to you about this report.\tJe veux m'entretenir avec toi au sujet de ce rapport.\nI want to talk to you about this report.\tJe veux m'entretenir avec vous au sujet de ce rapport.\nI want to talk to you about this report.\tJe veux m'entretenir avec toi à propos de ce rapport.\nI want to talk to you about this report.\tJe veux m'entretenir avec vous à propos de ce rapport.\nI want to talk to you about this report.\tJe veux te parler à propos de ce rapport.\nI want to talk to you about this report.\tJe veux vous parler à propos de ce rapport.\nI want to talk to you about this report.\tJe veux te parler au sujet de ce rapport.\nI want to talk to you about this report.\tJe veux vous parler au sujet de ce rapport.\nI want to talk to you about this report.\tJe veux te parler de ce rapport.\nI want to talk to you about this report.\tJe veux vous parler de ce rapport.\nI want to talk to you about this report.\tJe veux discuter avec vous à propos de ce rapport.\nI want to talk to you about this report.\tJe veux discuter avec toi à propos de ce rapport.\nI want to talk to you about this report.\tJe veux discuter avec vous au sujet de ce rapport.\nI want to talk to you about this report.\tJe veux discuter avec toi au sujet de ce rapport.\nI want to talk to you about this report.\tJe veux discuter avec vous de ce rapport.\nI want to talk to you about this report.\tJe veux discuter avec toi de ce rapport.\nI want to talk to you about this report.\tJe veux m'entretenir avec vous de ce rapport.\nI want to talk to you about this report.\tJe veux m'entretenir avec toi de ce rapport.\nI want to thank you for all you've done.\tJe veux vous remercier pour tout ce que vous avez fait.\nI want to thank you for all you've done.\tJe veux te remercier pour tout ce que tu as fait.\nI want to visit Cuba before Castro dies.\tJe veux visiter Cuba avant que Castro ne meure.\nI want you to know what really happened.\tJe veux que tu saches ce qui s'est réellement passé.\nI want you to know what really happened.\tJe veux que tu saches ce qui s'est réellement produit.\nI want you to know what really happened.\tJe veux que tu saches ce qui a réellement eu lieu.\nI want you to know what really happened.\tJe veux que vous sachiez ce qui s'est réellement passé.\nI want you to know what really happened.\tJe veux que vous sachiez ce qui s'est réellement produit.\nI want you to know what really happened.\tJe veux que vous sachiez ce qui a réellement eu lieu.\nI want you to put in a good word for me.\tJe veux que tu parles en ma faveur.\nI want you to put in a good word for me.\tJe veux que tu dises un mot pour moi.\nI want you to put in a good word for me.\tJe veux que vous disiez un mot pour moi.\nI want you to put in a good word for me.\tJe veux que vous parliez en ma faveur.\nI want you to tell me who gave you that.\tJe veux que tu me dises qui t'a donné cela.\nI want you to tell me who gave you that.\tJe veux que vous me disiez qui vous a donné cela.\nI wanted to talk to you about something.\tJe voulais te parler de quelque chose.\nI wanted to talk to you about something.\tJe voulais te parler à propos de quelque chose.\nI wanted to talk to you about something.\tJe voulais te parler au sujet de quelque chose.\nI wanted to talk to you about something.\tJe voulais discuter avec toi de quelque chose.\nI wanted to talk to you about something.\tJe voulais discuter avec toi à propos de quelque chose.\nI wanted to talk to you about something.\tJe voulais discuter avec toi au sujet de quelque chose.\nI wanted to talk to you about something.\tJe voulais vous parler de quelque chose.\nI wanted to talk to you about something.\tJe voulais vous parler à propos de quelque chose.\nI wanted to talk to you about something.\tJe voulais vous parler au sujet de quelque chose.\nI wanted to talk to you about something.\tJe voulais discuter avec vous de quelque chose.\nI wanted to talk to you about something.\tJe voulais discuter avec vous à propos de quelque chose.\nI wanted to talk to you about something.\tJe voulais discuter avec vous au sujet de quelque chose.\nI wanted to talk to you about something.\tJe voulais m'entretenir avec toi au sujet de quelque chose.\nI wanted to talk to you about something.\tJe voulais m'entretenir avec vous au sujet de quelque chose.\nI wanted to talk to you about something.\tJe voulais m'entretenir avec toi à propos de quelque chose.\nI wanted to talk to you about something.\tJe voulais m'entretenir avec vous à propos de quelque chose.\nI wanted to talk to you about something.\tJe voulais m'entretenir avec toi de quelque chose.\nI wanted to talk to you about something.\tJe voulais m'entretenir avec vous de quelque chose.\nI was afraid of being put into a closet.\tJ'avais peur qu'on me mette dans une armoire.\nI was afraid of what people would think.\tJ'avais peur de l'opinion des gens.\nI was arrested for aiding in his escape.\tJ'ai été arrêté pour l'avoir aidé dans sa fuite.\nI was careful to not leave any evidence.\tJ'ai pris soin de ne laisser aucune preuve.\nI was careful to not leave any evidence.\tJ'ai pris soin de ne laisser aucune trace.\nI was careful to not leave any evidence.\tJe pris soin de ne laisser aucune preuve.\nI was careful to not leave any evidence.\tJe pris soin de ne laisser aucune trace.\nI was caught in a shower on my way home.\tJ'ai été surpris par une averse sur le chemin du retour à la maison.\nI was caught in the rain on my way home.\tJe fus surpris par la pluie en rentrant à la maison.\nI was confronted with many difficulties.\tJe fus confronté à de nombreuses difficultés.\nI was deeply impressed with his courage.\tJ'étais profondément impressionné par son courage.\nI was fined thirty dollars for speeding.\tJ’ai reçu une amende de cinquante dollars pour excès de vitesse.\nI was hoping to raise my kids in Boston.\tJ'espérais élever mes enfants à Boston.\nI was profoundly disturbed by this news.\tJ'ai été profondément dérangé par ces nouvelles.\nI was relieved to hear that he was safe.\tJ'étais rassuré d'entendre qu'il était en sécurité.\nI was saving this piece of cake for you.\tJ'ai gardé cette part de gâteau pour toi.\nI was saving this piece of cake for you.\tJe réservais ce morceau de gâteau pour toi.\nI was terribly confused by his question.\tJ'étais profondément dérouté par sa question.\nI was the one who had to make it happen.\tJ'étais celui qui devait provoquer ça.\nI was very happy when I heard that news.\tJ'étais très heureux quand j'entendis les nouvelles.\nI wasn't expecting you to be here today.\tJe ne m'attendais pas à ce que tu sois là aujourd'hui.\nI wasn't sure if I was going to make it.\tJe n'étais pas certain de pouvoir y parvenir.\nI wasn't sure if I was going to make it.\tJe n'étais pas certain d'y arriver.\nI watched them destroy the old building.\tJe les ai regardés détruire le vieil immeuble.\nI wear my old coat in weather like this.\tAvec un temps comme celui-là, je porte mon vieux manteau.\nI wear my old coat in weather like this.\tAvec une météo comme celle-là, je porte mon vieux manteau.\nI weighed myself on the bathroom scales.\tJe me suis pesé sur la balance de la salle de bain.\nI went to bed a little later than usual.\tJe me suis couché un peu plus tard que d'habitude.\nI went to bed early because I was tired.\tJe suis allé me coucher tôt, car j'étais fatigué.\nI went to bed early because I was tired.\tJe me rendis tôt au lit car j'étais fatiguée.\nI went to bed early because I was tired.\tJe me rendis tôt au lit car j'étais fatigué.\nI went to the airport to meet my father.\tJe suis allé à l'aéroport pour accueillir mon père.\nI will come and see you when I get well.\tJe viendrais te voir quand j'irai mieux.\nI will get you a bike for your birthday.\tJe t'offrirai un vélo pour ton anniversaire.\nI will get you a bike for your birthday.\tJe te dégoterai un vélo pour ton anniversaire.\nI will have left here before you return.\tJe serai parti d'ici avant ton retour.\nI will return the book as soon as I can.\tJe rendrai le livre aussi vite que je peux.\nI wish I could go to the party with you.\tJe voudrais pouvoir aller à la fête avec toi.\nI wish I had more time to talk with her.\tJ'aurais aimé avoir plus de temps pour parler avec elle.\nI wish there were more hours in the day.\tJ'aimerais qu'il y ait davantage d'heures dans une journée.\nI wish we could hear what Tom is saying.\tSi seulement on pouvait entendre ce que dit Tom.\nI wish we could settle this like adults.\tJ'aimerais que nous puissions régler ça comme des adultes.\nI won't make the same mistake next time.\tJe ne commettrai pas la même erreur la prochaine fois.\nI wonder if a human will ever be cloned.\tJe me demande si un humain sera jamais répliqué.\nI wonder if it really was a coincidence.\tJe me demande si c'était vraiment un hasard.\nI wonder why eggs are sold by the dozen.\tJe me demande pourquoi les œufs se vendent à la douzaine.\nI wonder why women live longer than men.\tJe me demande pourquoi les femmes vivent plus longtemps que les hommes.\nI would consider Boston a very big city.\tJe considère Boston comme une très grande ville.\nI would hate to become just a housewife.\tJe détesterais devenir juste une femme au foyer.\nI would like to chat with you by e-mail.\tJ'aimerais clavarder avec toi par courriel.\nI would like to marry somebody like her.\tJ'aimerais épouser quelqu'un comme elle.\nI would like you to introduce me to her.\tJe te prie de me présenter à elle.\nI would rather go out than stay indoors.\tJe préférerais sortir plutôt que de rester à l'intérieur.\nI would rather stay at home than go out.\tJe préfère encore rester à la maison plutôt que de sortir.\nI would rather walk than wait for a bus.\tJe préfèrerais marcher plutôt que d'attendre un bus.\nI wouldn't dream of letting you do that.\tJe ne rêverais pas de te le laisser faire.\nI wouldn't want anyone to read my diary.\tJe ne voudrais pas que quiconque lise mon journal.\nI wrote to him for quite another reason.\tJe lui ai écrit pour une autre raison.\nI'd appreciate it if you'd come with me.\tJ'apprécierais que tu m'accompagnes.\nI'd appreciate it if you'd come with me.\tJ'apprécierais que vous m'accompagniez.\nI'd be delighted if that happened again.\tJe serais ravi si ça survenait à nouveau.\nI'd be delighted if that happened again.\tJe serais ravi que ça se reproduise.\nI'd be delighted if that happened again.\tJe serais ravie que ça se reproduise.\nI'd be delighted if that happened again.\tJe serais ravie si ça survenait à nouveau.\nI'd be depressed if that happened again.\tJe serais déprimé si ça se reproduisait.\nI'd be depressed if that happened again.\tJe serais déprimé si ça survenait à nouveau.\nI'd be depressed if that happened again.\tJe serais déprimée si ça survenait à nouveau.\nI'd be depressed if that happened again.\tJe serais déprimée si ça se reproduisait.\nI'd like nothing better than to do that.\tJe ne demande qu'à le faire.\nI'd like to discuss this with your boss.\tJ'aimerais discuter de ça avec ton patron.\nI'd like to discuss this with your boss.\tJ'aimerais en discuter avec ton patron.\nI'd like to discuss this with your boss.\tJ'aimerais discuter de ça avec ta patronne.\nI'd like to discuss this with your boss.\tJ'aimerais discuter de ça avec ta chef.\nI'd like to discuss this with your boss.\tJ'aimerais en discuter avec ton chef.\nI'd like to discuss this with your boss.\tJ'aimerais en discuter avec ta patronne.\nI'd like to discuss this with your boss.\tJ'aimerais discuter de ça avec ton chef.\nI'd like to discuss this with your boss.\tJ'aimerais en discuter avec ta chef.\nI'd like to get rid of all these things.\tJe voudrais me débarrasser de toutes ces choses.\nI'd like to have a little talk with you.\tJ'aimerais avoir une petite conversation avec toi.\nI'd like to have a little talk with you.\tJ'aimerais avoir une petite conversation avec vous.\nI'd like to have your answer right away.\tJe voudrais votre réponse immédiatement.\nI'd like to hear you sing your new song.\tJ'aimerais t'entendre chanter ta nouvelle chanson.\nI'd like to hear you sing your new song.\tJ'aimerais vous entendre chanter votre nouvelle chanson.\nI'd like to know what this is all about.\tJ'aimerais savoir de quoi tout ça retourne.\nI'd like to live in the suburbs of Kobe.\tJ'aimerais vivre dans la banlieue de Kobe.\nI'd like to talk to you about something.\tJ'aimerais t'entretenir de quelque chose.\nI'd like to talk to you about something.\tJ'aimerais vous entretenir de quelque chose.\nI'd like to talk to you about something.\tJ'aimerais discuter avec vous de quelque chose.\nI'd like to talk to you about something.\tJ'aimerais discuter avec toi de quelque chose.\nI'd love to go on an adventure with you.\tJ'aimerais partir à l'aventure avec toi.\nI'd rather stay at home than go fishing.\tJe préférerais rester à la maison que d'aller pêcher.\nI'll be in bed by the time you get home.\tJe serai couché à l'heure où tu rentreras.\nI'll be sitting here while he's singing.\tJe resterai assis ici pendant qu'il chante.\nI'll come and see you one of these days.\tJe te rendrai visite un de ces jours.\nI'll come without fail tomorrow morning.\tJe viendrai sans faute demain matin.\nI'll excuse your carelessness this time.\tPour cette fois j'excuse votre négligence.\nI'll explain the matter to you later on.\tJe vous expliquerai la chose plus tard.\nI'll help you to the best of my ability.\tJe t'aiderai du mieux que je peux.\nI'll help you to the best of my ability.\tJe vous aiderai du mieux que je peux.\nI'll leave it to you to buy the tickets.\tJe te laisse acheter les cartes.\nI'll see what I can do, but no promises.\tJe verrai ce que je peux faire, mais je ne vous promets rien.\nI'll stay here if you really want me to.\tJe resterai ici si vous le voulez vraiment.\nI'll tell you anything you want to know.\tJe te dirai tout ce que tu veux savoir.\nI'll tell you anything you want to know.\tJe vous dirai tout ce que vous voulez savoir.\nI'll tell you whatever you want to know.\tJe te dirai tout ce que tu veux savoir.\nI'll tell you whatever you want to know.\tJe vous dirai tout ce que vous voulez savoir.\nI'll try not to make mistakes next time.\tLa prochaine fois, j’essaierai de ne pas faire de fautes.\nI'm afraid I didn't explain it too well.\tJe crains de ne pas l'avoir très bien expliqué.\nI'm at work now, so I'll call you later.\tJe suis au travail maintenant, aussi je vous appellerai plus tard.\nI'm beginning to get used to doing this.\tJe commence à être habitué à faire ceci.\nI'm beginning to get used to doing this.\tJe commence à être habituée à faire ceci.\nI'm beginning to get used to doing this.\tJe commence à m'habituer à faire ceci.\nI'm drunk, but I can still speak German.\tJe suis bourré, mais je sais encore parler allemand.\nI'm far from happy about this situation.\tJe suis loin d'être heureux de cette situation.\nI'm going to have to change my schedule.\tJe vais devoir changer mon emploi du temps.\nI'm going to stay here for several days.\tJe vais rester ici plusieurs jours.\nI'm happy to see so many friendly faces.\tJe suis heureux de voir tant de visages amicaux.\nI'm helping people to buy things online.\tJe suis en train d'aider quelqu'un à acheter des trucs en ligne.\nI'm just not feeling up to it right now.\tJe ne m'en sens juste pas à la hauteur pour l'instant.\nI'm looking forward to hearing from you.\tJ'attends de vos nouvelles.\nI'm looking forward to hearing from you.\tJ'espère avoir de tes nouvelles.\nI'm looking forward to seeing you again.\tJ'attends avec impatience de vous revoir.\nI'm looking forward to seeing you dance.\tJe me réjouis de vous voir danser.\nI'm looking forward to seeing you dance.\tJe suis impatient de te voir danser.\nI'm looking forward to seeing you dance.\tJe suis impatiente de te voir danser.\nI'm no better at cooking than my mother.\tJe ne suis pas meilleur que ma mère pour la cuisine.\nI'm not going to go to Boston next week.\tJe ne vais pas aller à Boston la semaine prochaine.\nI'm not going to let you boss me around.\tJe ne vais te laisser me commander.\nI'm not stupid enough to lend him money.\tJe ne suis pas assez stupide pour lui prêter de l'argent.\nI'm not the only one who feels that way.\tJe ne suis pas le seul à ressentir cela.\nI'm not the only one who got here early.\tJe ne suis pas le seul à être arrivé ici tôt.\nI'm not the only one who got here early.\tJe ne suis pas la seule à être arrivée ici tôt.\nI'm old enough to make my own decisions.\tJe suis assez grand pour prendre mes propres décisions.\nI'm pretty sure that Tom didn't do that.\tJe suis presque sûre que Tom n'a pas fait cela.\nI'm proud to be working on this project.\tJe suis fier de participer à ce projet.\nI'm sick of listening to her complaints.\tJ'en ai marre d'écouter ses plaintes.\nI'm sick of listening to her complaints.\tJ'en ai ras le bol d'écouter ses récriminations.\nI'm so sorry. I didn't mean to kick you.\tJe suis vraiment désolé. Je n'avais pas l'intention de vous donner un coup de pied.\nI'm sorry I don't have my watch with me.\tDésolé, je n'ai pas ma montre.\nI'm sorry I don't have my watch with me.\tDésolé, je n'ai pas ma montre avec moi.\nI'm sorry I opened your mail by mistake.\tJe suis désolé j'ai ouvert votre courrier par erreur.\nI'm sorry I've kept you waiting so long.\tJe vous ai fait attendre longtemps, je vous prie de m'excuser.\nI'm sorry for all the pain I caused you.\tJe suis désolé pour toute la douleur que je vous ai causée.\nI'm sorry for all the pain I caused you.\tJe suis désolée pour toute la douleur que je vous ai causée.\nI'm sorry for all the pain I caused you.\tJe suis désolé pour toute la douleur que je t'ai causée.\nI'm sorry for all the pain I caused you.\tJe suis désolée pour toute la douleur que je t'ai causée.\nI'm sorry for not being more supportive.\tJe suis désolé de ne pas vous soutenir davantage.\nI'm sorry for not being more supportive.\tJe suis désolé de ne pas te soutenir davantage.\nI'm sorry for not being more supportive.\tJe suis désolé de ne pas le soutenir davantage.\nI'm sorry for not being more supportive.\tJe suis désolé de ne pas la soutenir davantage.\nI'm sorry that I can't meet you tonight.\tJe suis désolé de ne pas pouvoir te rencontrer ce soir.\nI'm sorry that I've made you so unhappy.\tJe suis désolé de t'avoir rendu si malheureux.\nI'm sorry that I've made you so unhappy.\tJe suis désolé de t'avoir rendue si malheureuse.\nI'm sorry that I've made you so unhappy.\tJe suis désolée de t'avoir rendu si malheureux.\nI'm sorry that I've made you so unhappy.\tJe suis désolée de t'avoir rendue si malheureuse.\nI'm sorry to cause you all this trouble.\tJe suis désolé de te créer tous ces soucis.\nI'm starting to get used to living here.\tJe commence à m'habituer à vivre ici.\nI'm the second oldest of three children.\tJe suis le second de trois enfants.\nI'm tired of listening to your bragging.\tJ'en ai assez d'écouter tes rodomontades.\nI'm tired of working a nine-to-five job.\tJe suis fatigué d'avoir des horaires de travail neuf heures-cinq heures.\nI'm too tired to drive. Could you drive?\tJe suis trop fatigué pour conduire. Pourriez-vous conduire ?\nI'm too tired to drive. Could you drive?\tJe suis trop las pour conduire. Pourrais-tu le faire ?\nI'm used to being ignored by my parents.\tJe suis habitué à être ignoré de mes parents.\nI'm used to being ignored by my parents.\tJe suis habitué à être ignorée de mes parents.\nI've already finished reading this book.\tJ'ai déjà fini de lire ce livre.\nI've been expecting good news from them.\tJ'attendais des bonnes nouvelles d'eux.\nI've been going out with her for months.\tÇa fait des mois que je sors avec elle.\nI've been looking foward to meeting you.\tJ'avais hâte de vous rencontrer.\nI've been put in charge of this project.\tJ'ai été placé à la tête de ce projet.\nI've decided to give Tom another chance.\tJ'ai décidé de donner une autre chance à Tom.\nI've done some stupid things in my life.\tJ'ai fait quelques choses stupides dans ma vie.\nI've given this a great deal of thought.\tJ'y ai consacré beaucoup de réflexion.\nI've got a funny feeling about that guy.\tJ'ai un drôle de pressentiment au sujet de ce type.\nI've got mosquito bites all over my arm.\tJ'ai des piqûres de moustiques partout sur le bras.\nI've got my stubbornness from my father.\tJe tiens mon obstination de mon père.\nI've got to talk to you about something.\tJe dois te parler de quelque chose.\nI've learned a lot about modern authors.\tJ'ai appris beaucoup des auteurs modernes.\nI've never been in trouble with the law.\tJe n'ai jamais eu d'ennuis avec la justice.\nI've never had a friend like you before.\tJe n'ai jamais eu d'ami comme toi auparavant.\nI've never had a friend like you before.\tJe n'ai jamais eu d'amie comme toi auparavant.\nI've never seen such a beautiful flower.\tJe n'ai jamais vu une fleur aussi belle.\nI've never trusted him and I never will.\tJe ne lui ai jamais fait confiance et je ne le ferai jamais.\nI've never trusted you and I never will.\tJe ne vous ai jamais fait confiance et je ne le ferai jamais.\nI've never trusted you and I never will.\tJe ne t'ai jamais fait confiance et je ne le ferai jamais.\nI've rented a room in Paris for a month.\tJ'ai loué une chambre pour un mois à Paris.\nI've rented a room in Paris for a month.\tJ'ai loué une chambre à Paris pendant un mois.\nI've worked as a waiter for three years.\tJe travaille comme serveur depuis trois ans.\nI, for one, don't believe what she said.\tQuant à moi, je ne crois pas à ce qu'elle a dit.\nIf I had my way, you would all be fired.\tSi ça ne tenait qu'à moi, vous seriez tous virés.\nIf I had my way, you would all be fired.\tSi ça ne tenait qu'à moi, vous seriez toutes virées.\nIf I want your opinion, I'll ask for it.\tSi je veux ton opinion, je la demanderai.\nIf I want your opinion, I'll ask for it.\tSi je veux votre opinion, je la demanderai.\nIf I were you, I would accept his offer.\tÀ ta place, j'accepterais sa proposition.\nIf it rains tomorrow, I'll stay at home.\tS'il pleut demain, je resterai à la maison.\nIf today was Sunday, I would go fishing.\tSi nous étions dimanche, j'irais pêcher.\nIf you add three to four, you get seven.\tEn additionnant trois et quatre, vous obtenez sept.\nIf you go fishing tomorrow, I will, too.\tSi tu vas pêcher demain, j'irai aussi.\nIf you want a pencil, I'll lend you one.\tSi tu as besoin d'un crayon, je t'en prête un.\nIf you want me to, I'll do that for you.\tSi tu veux que je le fasse, je le ferai pour toi.\nIf you want me to, I'll do that for you.\tSi vous voulez que je le fasse, je le ferai pour vous.\nIn English the verb precedes the object.\tEn anglais, le verbe précède l'objet.\nIn German, nouns are always capitalised.\tEn allemand, les noms sont toujours écrits avec une majuscule.\nIn Japan, there are lots of hot springs.\tAu Japon, les sources d'eau chaude abondent.\nIn any case, it's none of your business.\tEn tout cas, ça ne te concerne pas.\nIn autumn, leaves change color and fall.\tEn automne, les feuilles changent de couleur et tombent.\nIn autumn, leaves change color and fall.\tÀ l'automne, les feuilles changent de couleur et tombent.\nIn autumn, leaves change color and fall.\tEn automne, les feuilles changent de couleur et choient.\nIn autumn, leaves change color and fall.\tÀ l'automne, les feuilles changent de couleur et choient.\nIn autumn, the moon is really beautiful.\tEn automne, la lune est très belle.\nIn my opinion, this is quite unsuitable.\tC'est tout à fait inconvenant selon mon opinion.\nIn the mean time, let's have a sit down.\tEntretemps, asseyons-nous.\nIn the summer, people go to the seaside.\tEn été, les gens se rendent au bord de la mer.\nIn the summer, people go to the seaside.\tEn été, les gens se rendent en bord de mer.\nInstead of stopping, the rain increased.\tAu lieu de s'arrêter, la pluie a repris de plus belle.\nIs French a difficult language to learn?\tLe français est-il une langue difficile à apprendre ?\nIs aggression natural, or is it learned?\tL'agressivité est-elle naturelle ou apprise ?\nIs his aunt eating an apple or a banana?\tSa tante mange-t-elle une pomme ou une banane ?\nIs it always wrong to take a human life?\tEst-il toujours mal de prendre la vie humaine ?\nIs the school on this side of the river?\tEst-ce que l'école est de ce côté de la rivière ?\nIs the school on this side of the river?\tL'école est-elle de ce côté-ci de la rivière ?\nIs there a garden in front of the house?\tY a-t-il un jardin devant la maison?\nIs there a picture of Tom in that album?\tY a-t-il une photo de Tom dans cet album?\nIs there a washing machine in the house?\tY a-t-il une machine à laver dans la maison ?\nIs there anything else you want from me?\tY a-t-il quoi que ce soit d'autre que vous veuillez de moi ?\nIs there anything else you want from me?\tY a-t-il quoi que ce soit d'autre que vous vouliez de moi ?\nIs there anything else you want from me?\tY a-t-il quoi que ce soit d'autre que tu veuilles de moi ?\nIs there anything else you want to know?\tY a-t-il quoi que ce soit d'autre que vous vouliez savoir ?\nIs there anything that I can do for you?\tY a-t-il quelque chose que je peux faire pour toi ?\nIs there anything that I can do for you?\tY a-t-il quelque chose que je puisse faire pour vous ?\nIs there anything that I can do for you?\tY a-t-il quelque chose que je puisse faire pour toi ?\nIs there anything that I can do for you?\tY a-t-il quoi que ce soit que je puisse faire pour toi ?\nIs there anything that I can do for you?\tY a-t-il quoi que ce soit que je puisse faire pour vous ?\nIs there anything that I should not eat?\tY a-t-il quelque chose que je ne devrais pas manger ?\nIs your school far away from your house?\tTon école est-elle loin de ta maison ?\nIt appears that he will win first prize.\tOn dirait qu'il va gagner le premier prix.\nIt did not last more than three minutes.\tÇa n'a pas duré plus de trois minutes.\nIt hardly ever snows here in the winter.\tIl neige à peine l'hiver, ici.\nIt has been a long time since I saw him.\tÇa fait longtemps que je ne l'ai vu.\nIt has been raining since last Thursday.\tIl pleut depuis jeudi dernier.\nIt is easy for a monkey to climb a tree.\tIl est facile pour un singe de grimper à un arbre.\nIt is imperative for you to act at once.\tIl est impératif que vous agissiez sur-le-champ.\nIt is imperative for you to act at once.\tIl est impératif que tu agisses immédiatement.\nIt is necessary for you to stop smoking.\tVous devez cesser de fumer.\nIt is necessary for you to stop smoking.\tTu dois t'arrêter de fumer.\nIt is necessary for you to study harder.\tIl faut que vous étudiiez plus assidûment.\nIt is not easy to get rid of bad habits.\tCe n'est pas facile de se débarrasser des mauvaises habitudes.\nIt is now necessary to add another rule.\tIl est désormais nécessaire de rajouter une nouvelle règle.\nIt is strange that you should know that.\tC'est étrange que tu le saches.\nIt is stupid of him to behave like that.\tC'est stupide de sa part de se comporter ainsi.\nIt is very cold here all the year round.\tIci il fait très froid toute l'année.\nIt is very cold here all the year round.\tIci, il fait très froid tout au long de l'année.\nIt looks like you did a pretty good job.\tOn dirait que vous avez fait un assez bon boulot.\nIt looks like you did a pretty good job.\tOn dirait que tu as fait un assez bon boulot.\nIt seems that the store is closed today.\tIl semble que le magasin soit aujourd'hui fermé.\nIt seems that the store is closed today.\tIl semble que le magasin soit fermé aujourd'hui.\nIt seems that they took the wrong train.\tIl semblerait qu'ils aient pris le mauvais train.\nIt seems that they took the wrong train.\tIl semblerait qu'elles aient pris le mauvais train.\nIt took her a long time to choose a hat.\tIl lui a fallu beaucoup de temps pour choisir un chapeau.\nIt took me three days to clean the room.\tIl m'a fallu trois jours pour nettoyer la pièce.\nIt took me two hours to get to Yokohama.\tIl m'a fallu deux heures pour atteindre Yokohama.\nIt was a fine day so I went on a picnic.\tC'était un beau jour, alors je suis allé pique-niquer.\nIt was a ship with a crew of 25 sailors.\tC'était un navire avec un équipage de 25 marins.\nIt was believed that the earth was flat.\tOn croyait que la Terre était plate.\nIt was given to me by the Queen herself.\tÇa m'a été remis par la Reine en personne.\nIt was silly of him to refuse her offer.\tC'était idiot de sa part de refuser sa proposition.\nIt wasn't any bigger than a soccer ball.\tCe n'était pas plus gros qu'un ballon de foot.\nIt wasn't any bigger than a soccer ball.\tElle n'était pas plus grosse d'un ballon de foot.\nIt wasn't any bigger than a soccer ball.\tIl n'était pas plus gros qu'un ballon de football.\nIt will not be long before spring comes.\tL'arrivée du printemps ne tardera plus.\nIt'd be better if you didn't come today.\tIl serait préférable que vous ne veniez pas aujourd'hui.\nIt'd be better if you didn't come today.\tIl serait préférable que tu ne viennes pas aujourd'hui.\nIt's OK as long as it doesn't get windy.\tC'est bon tant qu'il ne se met pas à venter.\nIt's a pity you don't know how to dance.\tQuel dommage que tu ne saches pas danser !\nIt's because of you that I'm an invalid.\tC'est à cause de vous que je suis un invalide.\nIt's getting dark. You'd better go home.\tIl commence à faire nuit. Tu ferais mieux de rentrer chez toi.\nIt's high time the children went to bed.\tIl est grand temps que les enfants aillent dormir.\nIt's high time the children went to bed.\tIl est grand temps que les enfants aillent au lit.\nIt's my duty to protect you from danger.\tC'est mon devoir de te protéger du danger.\nIt's nice to be a role model for others.\tC'est sympa d'être un modèle pour les autres.\nIt's normal for you to feel a bit woozy.\tIl est normal que tu te sentes un peu dans les vapes.\nIt's normal for you to feel a bit woozy.\tIl est normal que tu te sentes un tantinet dans les vapes.\nIt's not a big room, but it's beautiful.\tCe n'est pas une grande chambre, mais elle est jolie.\nIt's not something I can decide quickly.\tCe n'est pas quelque chose dont je peux décider rapidement.\nIt's something they always wanted to do.\tC'est quelque chose qu'ils ont toujours eu envie de faire.\nIt's time for our children to go to bed.\tIl est l'heure pour nos enfants d'aller au lit.\nIt's too dangerous for you to stay here.\tC'est trop dangereux pour toi de rester ici.\nIt's two miles from here to the station.\tIl y a deux miles d'ici à la gare.\nIt's up to you to get to school on time.\tC'est à toi d'arriver à l'école à l'heure.\nIt's very hard to get rid of bad habits.\tIl est très difficile de se débarrasser des mauvaises habitudes.\nJapan surpasses China in economic power.\tLe Japon dépasse la Chine en terme de puissance économique.\nLanguage and culture can't be separated.\tLe langage et la culture sont inséparables.\nLet me congratulate you on your success.\tLaisse-moi te féliciter pour ton succès.\nLet me know if you can make it tomorrow.\tFais-moi savoir si tu peux le faire demain.\nLet me know if you can make it tomorrow.\tFaites-moi savoir si vous pouvez le faire demain.\nLet me off at the train station, please.\tDescends-moi à la gare, je te prie !\nLet me off at the train station, please.\tDescendez-moi à la gare, je vous prie !\nLet me off at the train station, please.\tLargue-moi à la gare, je te prie !\nLet's be honest. That joke was about me.\tSoyons honnêtes ! Cette plaisanterie était à mon propos.\nLet's decide on the date for the picnic.\tDécidons de la date du pique-nique.\nLet's decide together where to go first.\tDécidons ensemble où aller en premier.\nLet's go somewhere quiet so we can talk.\tAllons dans quelque endroit tranquille, afin de pouvoir discuter.\nLet's handle this one problem at a time.\tTraitons ceci un problème à la fois !\nLet's leave the decision to our teacher.\tLaissons la décision à notre professeur.\nLet's not let our imaginations run wild.\tNe laissons pas nos imaginations délirer !\nLife without love has no meaning at all.\tUne vie sans amour n'a absolument aucun sens.\nLong ago, people used to travel on foot.\tIl y a longtemps, les gens voyageaient à pied.\nMany lost their homes in the earthquake.\tBeaucoup perdirent leurs maisons lors du tremblement de terre.\nMany people do not trust the government.\tBeaucoup de gens ne font pas confiance au gouvernement.\nMany pretty flowers bloom in the spring.\tBeaucoup de jolies fleurs éclosent au printemps.\nMary has been dyeing her hair for years.\tMary teint ses cheveux depuis des années.\nMary is the prettiest girl in her class.\tMarie est la fille la plus mignonne de sa classe.\nMay I ask you to help me with something?\tPuis-je te demander de m'aider avec quelque chose ?\nMay I ask you to help me with something?\tPuis-je vous demander de m'aider avec quelque chose ?\nMay I have everyone's attention, please?\tPuis-je avoir l'attention de tout le monde, je vous prie ?\nMeeting my old friend was very pleasant.\tCe fut un plaisir de rencontrer un vieux copain.\nMoney isn't the only thing that matters.\tL'argent n'est pas la seule chose qui compte.\nMost Hollywood movies have happy endings\tLa plupart des films hollywoodiens ont des fins heureuses.\nMost snakes on this island are harmless.\tLa plupart des serpents, sur cette île, sont inoffensifs.\nMost writers are sensitive to criticism.\tLa plupart des écrivains sont sensibles à la critique.\nMother Teresa was given the Nobel prize.\tOn a octroyé le prix Nobel à Mère Thérèsa.\nMother placed a large vase on the shelf.\tMa mère a posé un grand vase sur l'étagère.\nMuslims always pray facing toward Mecca.\tLes musulmans prient toujours en faisant face à la Mecque.\nMy bag is too old. I must buy a new one.\tMon sac est trop vieux. Je dois en acheter un neuf.\nMy book has to be somewhere in the room.\tMon livre doit se trouver quelque part dans la pièce.\nMy brother gave me a charming baby doll.\tMon frère me donna une adorable poupée.\nMy brother hung the picture upside down.\tMon frère a accroché le tableau à l'envers.\nMy brother hung the picture upside down.\tMon frère a accroché la photo à l'envers.\nMy brother is eight years older than me.\tMon frère a huit ans de plus que moi.\nMy brother-in-law is really egotistical.\tMon beau-frère est vraiment égoïste.\nMy brother-in-law is really egotistical.\tMon frère-frère est très égoïste.\nMy cat likes to look through the window.\tMon chat aime regarder par la fenêtre.\nMy cousin works in a shop near our home.\tMon cousin travaille dans un magasin près de notre maison.\nMy doctor advised me to give up smoking.\tMon médecin m'a conseillé d'arrêter de fumer.\nMy dog is almost half the size of yours.\tLa taille de mon chien est presque la moitié de celle du vôtre.\nMy eyes are very sensitive to the light.\tMes yeux sont très sensibles à la lumière.\nMy father abandoned me when I was young.\tMon père m'a abandonné lorsque j'étais jeune.\nMy father and I played tennis on Sunday.\tDimanche, mon père et moi avons joué au tennis.\nMy father can swim, but my mother can't.\tMon père sait nager, mais pas ma mère.\nMy father doesn't lift a finger at home.\tMon père ne lève pas le petit doigt à la maison.\nMy father has five brothers and sisters.\tMon père a cinq frères et sœurs.\nMy father has just returned from abroad.\tMon père rentre tout juste de l'étranger.\nMy father quickly scanned the newspaper.\tMon père parcourut rapidement le journal.\nMy father used to read to me at bedtime.\tMon père me faisait la lecture au moment du coucher.\nMy father used to read to me at bedtime.\tMon père avait l'habitude de me faire la lecture au moment du coucher.\nMy father was still at home when I left.\tMon père était encore à la maison quand je suis parti.\nMy first car didn't have power steering.\tMa première voiture n'était pas dotée de la direction assistée.\nMy girlfriend doesn't like scary movies.\tMa copine n'aime pas les films d'horreur.\nMy glasses started to slip down my nose.\tMes lunettes se mirent à glisser au bas de mon nez.\nMy grandfather is a bit hard of hearing.\tMon grand-père est un peu dur d'oreille.\nMy grandfather's picture is on the wall.\tLe portrait de mon grand-père est accroché au mur.\nMy gums bleed whenever I floss my teeth.\tMes gencives saignent chaque fois que je passe du fil dentaire entre mes dents.\nMy heart beats fast each time I see her.\tMon cœur s'affole chaque fois que je la vois.\nMy homework took longer than I expected.\tMes devoirs m'ont pris plus de temps que je ne pensais.\nMy husband and daughter are fast asleep.\tMon mari et ma fille dorment à poings fermés.\nMy job will only last two years at most.\tMon travail ne durera que deux ans au maximum.\nMy mom doesn't want me to play with you.\tMa maman ne veut pas que je joue avec vous.\nMy mom doesn't want me to play with you.\tMa maman ne veut pas que je joue avec toi.\nMy mother has been dead these ten years.\tCela fait dix ans que ma mère est morte.\nMy mother has been dead these ten years.\tMa mère est décédée depuis dix ans.\nMy mother put a large vase on the shelf.\tMa mère a posé un grand vase sur l'étagère.\nMy mother put a large vase on the shelf.\tMa mère posa un grand vase sur l'étagère.\nMy mother put a large vase on the shelf.\tMa mère a placé un grand vase sur l'étagère.\nMy mother put a large vase on the shelf.\tMa mère plaça un grand vase sur l'étagère.\nMy mother tells me not to study so hard.\tMa mère me dit de ne pas étudier aussi dur.\nMy parents don’t like the way I dress.\tMes parents n'aiment pas la façon dont je m'habille.\nMy shoelace got caught in the escalator.\tMon lacet s'est coincé dans l'escalator.\nMy shoes are too small. I need new ones.\tMes chaussures sont trop petites, j'en ai besoin de nouvelles.\nMy sister washes her shoes every Sunday.\tMa sœur lave ses chaussures tous les dimanches.\nMy son came to see me from time to time.\tMon fils venait me voir de temps en temps.\nMy son can already count to one hundred.\tMon fils sait déjà compter jusqu'à cent.\nMy teacher warned me not to do it again.\tMon professeur m'a mis en garde de ne pas refaire ça.\nMy wife is always finding fault with me.\tMa femme me critique tout le temps.\nNapoleon marched his armies into Russia.\tNapoléon mena ses troupes jusqu'en Russie.\nNegotiations are proceeding very slowly.\tLes négociations avancent très lentement.\nNever tell the truth when a lie will do.\tNe jamais dire la vérité tant qu'un mensonge fera l'affaire.\nNo matter what he does, he does it well.\tQuoi qu’il fasse, il le fait bien.\nNo matter what he says, don't trust him.\tPeu importe ce qu'il dit, ne le crois pas.\nNo matter what you say, I won't give up.\tQuoi que vous disiez, je n'abandonnerai pas.\nNo matter what you say, I won't give up.\tQuoi que tu dises, je n'abandonnerai pas.\nNo matter where you go, I'll follow you.\tOù que tu ailles, je te suivrai.\nNo one could turn down their invitation.\tPersonne ne pouvait refuser leur invitation.\nNo one uses that kind of weapon anymore.\tPersonne n'emploie plus ce genre d'arme.\nNo one uses that kind of weapon anymore.\tPersonne n'emploie plus ce type d'arme.\nNobody can get along with such a person.\tPersonne ne peut s'entendre avec une telle personne.\nNobody had to tell Tom. He already knew.\tPersonne n'a eu à le dire à Tom. Il le savait déjà.\nNone of the old trees survived the fire.\tAucun des vieux arbres ne survécut à l'incendie.\nNot feeling well, I stayed home all day.\tJe suis resté toute la journée à la maison parce que je ne me sentais pas bien.\nNothing could be further from the truth.\tRien ne pourrait être plus éloigné de la vérité.\nNothing is more pleasant than traveling.\tRien n'est plus agréable que de voyager.\nNow I realise why she was angry with me.\tÀ présent je réalise pourquoi elle était en colère contre moi.\nNow is a great time to buy one of those.\tC'est le moment idéal pour en acheter.\nNow that I have a girlfriend, I'm happy.\tMaintenant que j'ai une petite amie, je suis heureux.\nNow that I have a girlfriend, I'm happy.\tMaintenant que j'ai une petite amie, je suis heureuse.\nOf all these cakes I like this one best.\tDe tous ces gâteaux, c'est celui-là que je préfère.\nOf the eight, only one was found guilty.\tDes huit, seul un fut déclaré coupable.\nOn behalf of the company, I welcome you.\tAu nom de la société, je vous souhaite la bienvenue.\nOne mouse is running around in the room.\tUne souris court autour de la pièce.\nOne of the students didn’t come today.\tUn des étudiants n’est pas venu aujourd’hui.\nOne-third of the six members were women.\tUn tiers des six membres était des femmes.\nOnly time will tell you if you're right.\tSeul le temps te dira si tu as raison.\nOur car is three years older than yours.\tNotre voiture a trois ans de plus que la tienne.\nOur children all go to the local school.\tNos enfants vont tous à l'école locale.\nOur destination is still a long way off.\tNotre destination est encore éloignée.\nOur escape was nothing short of miracle.\tNotre évasion n'était rien de moins qu'un miracle.\nOur house was robbed while we were away.\tNotre maison a été cambriolée pendant que nous étions partis.\nOur new teacher is fresh out of college.\tNotre nouveau prof sort juste de la fac.\nOur plane was about thirty minutes late.\tNotre avion avait environ trente minutes de retard.\nOur teacher demanded that we keep quiet.\tNotre professeur a exigé de nous taire.\nPeople always ask me why I do what I do.\tLes gens me demandent toujours pourquoi je fais ce que je fais.\nPeople often complain about the weather.\tLes gens se plaignent souvent du temps.\nPeople once believed the world was flat.\tDans le temps, les gens croyaient que le monde était plat.\nPlease check all the items on this list.\tVeuillez vérifier tous les objets de cette liste.\nPlease don't compare me with my brother.\tNe me compare pas avec mon frère, je te prie !\nPlease don't forget to mail the letters.\tVeuillez ne pas oublier de poster les lettres.\nPlease don't forget to mail the letters.\tN'oublie pas de poster les lettres, je te prie.\nPlease don't forget to mail this letter.\tN'oublie pas de poster la lettre, s'il te plaît.\nPlease don't forget to mail this letter.\tN'oublie pas de poster la lettre, s'il te plait.\nPlease don't forget to mail this letter.\tN'oubliez pas de poster la lettre, je vous prie.\nPlease don't forget to write the letter.\tVeuillez ne pas oublier d'écrire la lettre !\nPlease don't forget to write the letter.\tS'il te plaît, n'oublie pas d'écrire la lettre !\nPlease don't forget to write the letter.\tN'oublie pas d'écrire la lettre, je te prie !\nPlease don't leave valuable things here.\tVeuillez ne pas laisser ici de choses de valeur.\nPlease don't leave valuable things here.\tS'il te plaît ne laisse pas des choses de valeur ici.\nPlease explain how to take the medicine.\tVeuillez expliquer comment prendre le médicament.\nPlease feel free to ask me any question.\tN'hésitez pas à me poser des questions.\nPlease get this work finished by Monday.\tFinissez ce travail pour lundi.\nPlease lend me this book for a few days.\tPrête-moi ce livre pour quelques jours, s'il te plait.\nPlease say hello to your parents for me.\tVeuillez saluer vos parents pour moi.\nPlease say hello to your parents for me.\tJe te prie de saluer tes parents pour moi.\nPlease tell me where the marketplace is.\tVeuillez m'indiquer où se trouve la place du marché, je vous prie.\nPrices have been rising since last year.\tLes prix montent depuis l'année dernière.\nProtesters tried to disrupt the meeting.\tLes protestataires tentèrent de perturber la réunion.\nProtesters tried to disrupt the meeting.\tLes protestataires ont tenté de perturber la réunion.\nPurchase any necessary articles quickly.\tAchetez rapidement tout objet nécessaire !\nPush this button and the door will open.\tAppuie sur ce bouton et la porte s'ouvrira.\nQuality is more important than quantity.\tLa qualité importe plus que la quantité.\nRead the note at the bottom of the page.\tLisez la note à la fin de la page.\nRed-haired people tend to have freckles.\tLes personnes rousses ont tendance à avoir des taches de rousseur.\nRemind me that the meeting is on Monday.\tRappelle-moi que la réunion a lieu lundi.\nRemove your coat and empty your pockets.\tÔtez votre manteau et videz vos poches !\nRemove your coat and empty your pockets.\tRetirez votre manteau et videz vos poches !\nRemove your coat and empty your pockets.\tEnlevez votre manteau et videz vos poches !\nRemove your coat and empty your pockets.\tÔte ton manteau et vide tes poches !\nRemove your coat and empty your pockets.\tEnlève ton manteau et vide tes poches !\nRemove your coat and empty your pockets.\tRetire ton manteau et vide tes poches !\nRepetition helps you remember something.\tC'est la répétition qui t'aide à te souvenir de quelque chose.\nRiding double on a bicycle is dangerous.\tC'est dangereux de monter à deux sur un vélo.\nScary movies will frighten the children.\tLes films d'horreur font peur aux enfants.\nScience begins when you ask why and how.\tLa science commence quand on demande pourquoi et comment.\nScientists seem to have known the truth.\tLes scientifiques semblent avoir su la vérité.\nSettle down for a while and concentrate.\tPose-toi un instant.\nShe accompanied the singer on the piano.\tElle a accompagné le chanteur au piano.\nShe advised him to fasten his seat belt.\tElle lui conseilla de mettre sa ceinture.\nShe advised him to fasten his seat belt.\tElle lui conseilla d'attacher sa ceinture.\nShe advised him to fasten his seat belt.\tElle lui a conseillé de mettre sa ceinture.\nShe advised him to fasten his seat belt.\tElle lui a conseillé d'attacher sa ceinture.\nShe advised him to stop working so much.\tElle lui a conseillé d'arrêter de travailler autant.\nShe advised him to stop working so much.\tElle lui conseilla d'arrêter de travailler autant.\nShe and I usually have the same opinion.\tElle et moi avons habituellement la même opinion.\nShe arrived when we were about to leave.\tElle est arrivée alors que nous étions sur le point de partir.\nShe asked him how to get to the station.\tElle lui demanda comment parvenir à la gare.\nShe asked him how to get to the station.\tElle lui a demandé comment parvenir à la gare.\nShe asked me how many languages I spoke.\tElle me demanda combien de langues je parlais.\nShe asked me how many languages I spoke.\tElle m'a demandé combien de langues je parle.\nShe asked me if anything was the matter.\tElle me demanda s'il se passait quelque chose.\nShe attributed her success to good luck.\tElle a attribué son succès à la bonne fortune.\nShe brought up the three children alone.\tElle éleva les trois enfants seule.\nShe claimed to be the owner of the land.\tElle prétend que cet endroit lui appartient.\nShe competed against many fine athletes.\tElle s'est mesurée à de nombreux excellents athlètes.\nShe cursed him for causing the accident.\tElle l'a maudit pour avoir causé l'accident.\nShe didn't press him for an explanation.\tElle ne le pressa pas de fournir une explication.\nShe didn't press him for an explanation.\tElle ne l'a pas pressé de fournir une explication.\nShe does not have many friends in Kyoto.\tElle n'a pas beaucoup d'amis à Kyoto.\nShe doesn't have any children, does she?\tElle n'a pas d'enfants, si ?\nShe doesn't know who built those houses.\tElle ignore qui construisit ces maisons.\nShe enjoys listening to classical music.\tElle aime écouter de la musique classique.\nShe found confrontations very upsetting.\tElle trouvait très pénibles les confrontations.\nShe found it dull living in the country.\tElle trouva ennuyeuse la vie à la campagne.\nShe found it dull living in the country.\tElle trouva barbant d'habiter à la campagne.\nShe gave him all the money that she had.\tElle lui remit tout l'argent dont elle disposait.\nShe gave him all the money that she had.\tElle lui a remis tout l'argent dont elle disposait.\nShe got married at the age of seventeen.\tElle s'est mariée à l'âge de dix-sept ans.\nShe got married at the age of seventeen.\tElle s'est mariée à dix-sept ans.\nShe had a daughter by her first husband.\tElle eut une fille de son premier mari.\nShe had my mother take care of the baby.\tElle a obtenu que ma mère garde le bébé.\nShe had something to talk over with him.\tElle avait quelque chose à discuter avec lui.\nShe had to rely upon her inner strength.\tElle dut compter sur sa propre force.\nShe had to rely upon her inner strength.\tElle a dû compter sur sa propre force.\nShe has a comfortable income to live on.\tElle a un revenu confortable pour vivre.\nShe has a negative attitude toward life.\tElle a une attitude négative envers la vie.\nShe has been unhappy since her cat died.\tElle est malheureuse depuis que son chat est mort.\nShe interpreted his remarks as a threat.\tElle a interprété ce qu'il a dit comme une menace.\nShe is concerned about her son's health.\tElle est inquiète à propos de la santé de son fils.\nShe is interested in learning new ideas.\tElle est intéressée à apprendre de nouvelles idées.\nShe is likely to live to be one hundred.\tIl y a des chances pour qu'elle vive 100 ans.\nShe is no less charming than her sister.\tElle n'est pas moins charmante que sa sœur.\nShe is now staying at her uncle's house.\tMaintenant, elle est chez son oncle.\nShe is often late for school on Mondays.\tElle arrive souvent en retard à l'école le lundi.\nShe is singing the latest popular songs.\tElle chante les derniers tubes.\nShe is singing the latest popular songs.\tElle chante les dernières chansons populaires.\nShe knit him a sweater for his birthday.\tElle lui tricota un chandail pour son anniversaire.\nShe knit him a sweater for his birthday.\tElle lui a tricoté un chandail pour son anniversaire.\nShe knows better than to argue with him.\tElle n'est pas bête au point de se disputer avec lui.\nShe learned to ride a bicycle last year.\tElle a appris à faire de la bicyclette l'année dernière.\nShe left home with everything she owned.\tElle quitta la maison avec tout ce qu'elle possédait.\nShe left the room without saying a word.\tElle a quitté la pièce sans mot dire.\nShe lent them a hand with their luggage.\tElle leur prêta main-forte avec leurs bagages.\nShe lives with him in a small apartment.\tElle vit avec lui dans un petit appartement.\nShe looks happiest when she is with him.\tElle semble plus heureuse lorsqu'elle est avec lui.\nShe loves watching tennis matches on TV.\tElle adore regarder des matchs de tennis à la télé.\nShe managed to learn how to drive a car.\tElle se ménagea afin d'apprendre à conduire une voiture.\nShe passed away peacefully in her sleep.\tElle est morte paisiblement dans son sommeil.\nShe plans to stay at the Oriental Hotel.\tElle prévoit de descendre à l'Oriental Hotel.\nShe pretended not to hear him yesterday.\tElle fit comme si elle ne l'entendait pas hier.\nShe raised her hand for the bus to stop.\tElle leva la main pour que le bus s'arrête.\nShe said he would be sixteen next month.\tElle a dit qu'il aurait seize ans le mois prochain.\nShe said she was nurse, which was a lie.\tElle a dit qu'elle était infirmière, ce qui est un mensonge.\nShe said that she was eager to go there.\tElle a dit qu'elle souhaite réellement y aller.\nShe spread a beautiful cloth on a table.\tElle étala une belle nappe sur une table.\nShe still hated him, even after he died.\tElle a continué à le haïr, même après sa mort.\nShe talked him into accepting the bribe.\tElle le persuada d'accepter le pot-de-vin.\nShe talked him into accepting the bribe.\tElle l'a persuadé d'accepter le pot-de-vin.\nShe thinks it is a positive development.\tElle pense qu'il s'agit d'un rebondissement positif.\nShe threatened to set our house on fire.\tElle a menacé de bouter le feu à notre maison.\nShe told him that it would rain all day.\tElle lui a dit qu'il pleuvrait toute la journée.\nShe told him that it would rain all day.\tElle lui dit qu'il pleuvrait toute la journée.\nShe tore the letter up after reading it.\tElle a déchiré la lettre après l'avoir lue.\nShe used to go to the museum on Sundays.\tElle avait l'habitude d'aller au musée le dimanche.\nShe wanted him to say that he loved her.\tElle voulait qu'il dise qu'il l'aimait.\nShe wanted to live a more relaxing life.\tElle voulait vivre une vie plus reposante.\nShe wants to extend the no-smoking area.\tElle veut étendre la zone non-fumeurs.\nShe was envious of her cousin's success.\tElle était jalouse du succès de son cousin.\nShe was injured in the traffic accident.\tElle a été blessée dans l'accident de circulation.\nShe was on the verge of killing herself.\tElle était sur le point de se tuer.\nShe was so tired that she couldn't walk.\tElle était tellement fatiguée qu'elle ne pouvait marcher.\nShe was surprised that it was that late.\tElle fut surprise qu'il fût déjà si tard.\nShe was too short to see over the fence.\tElle était trop petite pour voir par-dessus la clôture.\nShe wasn't able to contact him by phone.\tElle ne fut pas en mesure de le contacter par téléphone.\nShe wasn't able to contact him by phone.\tElle n'a pas été en mesure de le contacter par téléphone.\nShe went mad after the death of her son.\tElle est devenue folle à la mort de son fils.\nShe went to Paris in order to study art.\tElle est allée à Paris pour étudier l'art.\nShe whispered to me that she was hungry.\tElle me souffla qu'elle avait faim.\nShe whispered to me that she was hungry.\tElle me chuchota qu'elle avait faim.\nShe will be coming to see us again soon.\tElle viendra bientôt nous voir de nouveau.\nShe will be happy when she gets married.\tElle sera heureuse quand elle sera mariée.\nShe will do her best to be here on time.\tElle fera de son mieux pour être là à l'heure.\nShe writes to her son from time to time.\tElle écrit à son fils de temps en temps.\nShe'd never been this frightened before.\tElle n'avait jamais été aussi effrayée auparavant.\nShe's always complaining about the food.\tElle se plaint toujours de la nourriture.\nShe's terrified of talking to strangers.\tElle est terrifiée de s'adresser à des étrangers.\nShell after shell smashed into the fort.\tObus après obus percutait le fort.\nSince I stayed up late, I'm very sleepy.\tComme j'ai veillé tard, j'ai très sommeil.\nSince I was sick, I didn't go to school.\tComme j'étais malade, je n'allai pas à l'école.\nSo, what do you guys want to do tonight?\tAlors, que voulez-vous faire ce soir, les mecs ?\nSome children are swimming in the river.\tQuelques enfants se baignent dans la rivière.\nSome people think that gambling's a sin.\tDes gens pensent que jouer est un péché.\nSomebody came to see me while I was out.\tQuelqu'un est venu me voir pendant que j'étais dehors.\nSomebody had drowned her in the bathtub.\tQuelqu'un l'a noyée dans la baignoire.\nSomebody had drowned her in the bathtub.\tOn l'a noyée dans la baignoire.\nSomething is wrong with this calculator.\tQuelque chose ne tourne pas rond avec cette calculatrice.\nSomething must be wrong with the camera.\tCet appareil photo ne fonctionne pas.\nSoon after that, I began to fall asleep.\tPeu après cela j'ai commencé à m'endormir.\nSpeech is silver, but silence is golden.\tLa parole est d'argent mais le silence est d'or.\nSputnik was launched on October 4, 1957.\tSpoutnik fut lancé le quatre octobre mille-neuf-cent-cinquante-sept.\nSputnik was launched on October 4, 1957.\tSpoutnik fut lancé le quatre octobre dix-neuf-cent-cinquante-sept.\nStrange to say, he didn't know the news.\tC'est étrange à dire, mais il ne connaissait pas la nouvelle.\nSuddenly, something unexpected happened.\tSoudain, quelque chose d'inattendu se produisit.\nTake this medicine when you have a cold.\tPrends ce médicament quand tu as un rhume.\nTelevision helps us widen our knowledge.\tLa télévision nous aide à élargir notre savoir.\nTell Tom I'll be there as soon as I can.\tDis à Tom que je serai là dès que je pourrai.\nTell Tom I'll be there as soon as I can.\tDites à Tom que je serai là dès que je pourrai.\nTell Tom that I'm too tired to help him.\tDis à Tom que je suis trop fatigué pour l'aider.\nTell us the story from beginning to end.\tRaconte-nous l’histoire du début à la fin.\nTell us the story from beginning to end.\tRacontez-nous l'histoire du début à la fin.\nTen people were injured in the accident.\tDix personnes ont été blessées dans l'accident.\nTexas is nearly twice as large as Japan.\tLe Texas est environ deux fois plus vaste que le Japon.\nThank you for helping me cross the road.\tMerci de m'aider à traverser la route.\nThank you for helping me reach my goals.\tMerci de m'aider à atteindre mes objectifs.\nThank you for your detailed explanation.\tMerci pour votre explication détaillée.\nThank you for your detailed explanation.\tMerci pour ton explication détaillée.\nThank you very much for your generosity.\tJe vous remercie beaucoup de votre générosité.\nThanks for your invitation to the party.\tMerci pour ton invitation à la fête.\nThat American movie was a great success.\tCe film étasunien fut un grand succès.\nThat bicycle over there is my brother's.\tLe vélo qui est là est à mon frère.\nThat boy talks as if he were a grown up.\tCe garçon parle comme s'il était adulte.\nThat car is too expensive for me to buy.\tCette voiture est trop chère pour que je l'achète.\nThat child was left in the sun too long.\tCet enfant a été laissé trop longtemps au soleil.\nThat child was left in the sun too long.\tCette enfant a été laissée trop longtemps au soleil.\nThat man died of lung cancer a week ago.\tCet homme est mort d'un cancer du poumon la semaine dernière.\nThat might depend on your point of view.\tÇa pourrait dépendre de votre point de vue.\nThat might depend on your point of view.\tÇa pourrait dépendre de ton point de vue.\nThat painting has started to grow on me.\tCe tableau a commencé à me plaire.\nThat sounds like a fairly good proposal.\tÇa a l'air d'être une assez bonne proposition.\nThat sounds like something you would do.\tÇa semble être quelque chose que vous feriez.\nThat sounds like something you would do.\tÇa semble être quelque chose que tu ferais.\nThat story is too incredible to be true.\tCette histoire est trop incroyable pour être vraie.\nThat was going to be my next suggestion.\tCela allait être ma prochaine suggestion.\nThat was without doubt a magical moment.\tC'était sans aucun doute un moment magique.\nThat's going to cost you a lot of money.\tCela vous coûtera beaucoup d'argent.\nThat's going to cost you a lot of money.\tÇa va te coûter beaucoup d'argent.\nThat's more recent than you think it is.\tC'est plus récent que tu ne le penses.\nThat's more recent than you think it is.\tC'est plus récent que vous ne le pensez.\nThat's not something I would joke about.\tCe n'est pas quelque chose à propos de laquelle je blaguerais.\nThat's pretty much all you need to know.\tC'est à peu près tout ce qu'il vous faut savoir.\nThat's pretty much all you need to know.\tC'est à peu près tout ce qu'il te faut savoir.\nThat's the eject button. Don't touch it.\tIl s'agit du bouton d'éjection. N'y touche pas !\nThat's the eject button. Don't touch it.\tIl s'agit du bouton d'éjection. N'y touchez pas !\nThe Americans did not like the new plan.\tLe nouveau plan ne plaisait pas aux Étasuniens.\nThe Americans had very little gunpowder.\tLes Étasuniens ne disposaient que de très peu de poudre à canon.\nThe DNA test cleared him of all charges.\tLe test ADN l'a blanchi de toutes les accusations.\nThe French language is rich in synonyms.\tLa langue française comporte beaucoup de synonymes.\nThe Greeks used to worship several gods.\tLes Grecs avaient l'habitude de prier plusieurs dieux.\nThe Internet has exploded in popularity.\tLa popularité d'Internet a explosée.\nThe President spoke to the nation on TV.\tLe Président s'est adressé à la nation à la télévision.\nThe actress sued the magazine for libel.\tL'actrice poursuivit le magazine en justice pour diffamation.\nThe airplane landed on my father's farm.\tL'avion a atterri sur la ferme de mon père.\nThe apples he sent to me were delicious.\tLes pommes qu'il m'a fait parvenir étaient délicieuses.\nThe basket was filled with strawberries.\tLe panier était rempli de fraises.\nThe bear is quite tame and doesn't bite.\tL'ours est assez apprivoisé et ne mord pas.\nThe bigger boys torment the little ones.\tLes garçons plus grands tourmentent les petits.\nThe boy admitted having broken the vase.\tLe garçon reconnut avoir brisé le vase.\nThe boy has been sleeping for ten hours.\tLe garçon a dormi pendant dix heures.\nThe boy's aggression is making problems.\tL'agressivité du garçon crée des problèmes.\nThe bridge is approximately a mile long.\tLe pont fait approximativement un mile de long.\nThe bridge was washed away by the flood.\tLe pont a été emporté par la crue.\nThe bus arrived ten minutes behind time.\tLe bus est arrivé dix minutes en retard.\nThe bus arrived ten minutes behind time.\tLe bus arriva avec dix minutes de retard.\nThe bus arrived ten minutes behind time.\tLe bus est arrivé dix minutes trop tard.\nThe chemical formula for water is H₂O.\tLa formule chimique de l'eau est H₂O.\nThe concert will take place next Sunday.\tLe concert aura lieu dimanche prochain.\nThe conference will take place in Tokyo.\tLa conférence aura lieu à Tokyo.\nThe couple next door are fighting again.\tLe couple d'à côté se dispute de nouveau.\nThe criminal begged the judge for mercy.\tLe criminel implora la clémence du juge.\nThe criminal didn't let the hostages go.\tLe criminel ne laissait pas partir les otages.\nThe criminal was arrested by the police.\tLe criminel a été arrêté par la police.\nThe criminals have all been apprehended.\tTous les criminels ont été appréhendés.\nThe crowd applauded for several minutes.\tLa foule a applaudi pendant plusieurs minutes.\nThe earth is a lot larger than the moon.\tLa Terre est beaucoup plus grande que la Lune.\nThe earth's moon is a natural satellite.\tLa lune de la Terre est un satellite naturel.\nThe earthquake caused widespread damage.\tLe séisme a provoqué des dommages étendus.\nThe engineer climbed the telephone pole.\tL'ingénieur grimpa le long du poteau téléphonique.\nThe entire city was without electricity.\tLa ville entière se trouvait sans électricité.\nThe expedition's supplies soon gave out.\tLes provisions de l'expédition s'épuisèrent bientôt.\nThe family is watching a movie together.\tLa famille regarde un film.\nThe foreign minister attended the talks.\tLe Ministre des Affaires Étrangères a pris part aux pourparlers.\nThe girl exercised on the parallel bars.\tLa fille s'est exercée aux barres parallèles.\nThe girl resembles her mother very much.\tLa fille ressemble beaucoup à sa mère.\nThe government owed millions of dollars.\tLe gouvernement devait des millions de dollars.\nThe house gets painted every five years.\tOn peint la maison tous les cinq ans.\nThe house that Tom built is really nice.\tLa maison que Tom a construite est vraiment jolie.\nThe ice is too thin to bear your weight.\tLa glace est trop fine pour porter ton poids.\nThe income from this source is tax-free.\tCette source de revenus est exemptée de taxes.\nThe influence of TV on society is great.\tL'influence de la TV sur la société est grande.\nThe job is not suitable for young girls.\tLe poste ne convient pas à des jeunes filles.\nThe jury found the man guilty of murder.\tLe jury jugea l'homme coupable de meurtre.\nThe jury found the man guilty of murder.\tC'est le jury qui jugea l'homme coupable de meurtre.\nThe last examination was very difficult.\tLe dernier examen a été très difficile.\nThe laws were very difficult to enforce.\tLes lois étaient très difficiles à appliquer.\nThe leaves began to turn red and yellow.\tLes feuilles ont commencé à devenir rouge et jaune.\nThe leaves of the trees have turned red.\tLes feuilles des arbres ont viré au rouge.\nThe light is changing from red to green.\tLe feu passe du rouge au vert.\nThe living room adjoins the dining room.\tLe salon jouxte la salle à manger.\nThe man who wrote this book is a doctor.\tL'homme qui a rédigé cet ouvrage est médecin.\nThe mayor's daughter has been kidnapped.\tLa fille du maire a été enlevée.\nThe meaning of this sentence is obscure.\tLe sens de cette phrase est obscur.\nThe meaning of this sentence is obscure.\tLe sens de cette peine est obscur.\nThe men are wearing short sleeve shirts.\tLes hommes portent des chemises à manches courtes.\nThe mountains are reflected in the lake.\tLes montagnes se reflètent dans le lac.\nThe new model will be priced at $12,000.\tLe nouveau modèle coûtera 12.000 $.\nThe notes are at the bottom of the page.\tLes notes sont en bas de page.\nThe novel ends with the heroine's death.\tLe roman se termine par la mort de l'héroïne.\nThe novel has sold almost 20,000 copies.\tLe roman s'est vendu à près de vingt-mille exemplaires.\nThe novel was published after his death.\tLe roman a été publié après sa mort.\nThe number of members will grow quickly.\tLe nombre des adhérents va croître rapidement.\nThe offer is too good to be turned down.\tL'offre est trop intéressante pour être rejetée.\nThe offer is too good to be turned down.\tL'offre est trop intéressante pour qu'on la rejette.\nThe old bridge is in danger of collapse.\tLe vieux pont risque de s’écrouler.\nThe old man has lived here all his life.\tLe vieil homme a vécu ici toute sa vie.\nThe passengers all went aboard the ship.\tTous les passagers embarquèrent sur le navire.\nThe picnic was canceled because of rain.\tLe pique-nique a été annulé à cause de la pluie.\nThe plane left after a three-hour delay.\tL'avion est parti avec un retard de trois heures.\nThe plans for the offensive were secret.\tLes plans de l'offensive étaient secrets.\nThe players on this team are all giants.\tLes joueurs de cette équipe sont tous des géants.\nThe point of the pencil has become dull.\tLa pointe du crayon s'est émoussée.\nThe police are investigating the murder.\tLa police enquête sur le meurtre.\nThe priest pronounced them man and wife.\tLe prêtre les déclara mari et femme.\nThe prisoner was brought before a judge.\tLe prisonnier fut amené devant un juge.\nThe problem was I couldn't speak French.\tLe problème était que je ne pouvais pas parler français.\nThe public was notified on October 20th.\tLe public a été averti le 20 octobre.\nThe rain prevented him from coming here.\tLa pluie l'a empêché de venir ici.\nThe recipe calls for four ripe tomatoes.\tLa recette nécessite quatre tomates mûres.\nThe restaurant was far from the station.\tLe restaurant était loin de la gare.\nThe road curves gently towards the west.\tLa route vire légèrement vers l'ouest.\nThe road is straight for over ten miles.\tLa route est en ligne droite sur une distance de plus de dix miles.\nThe road was obstructed by fallen trees.\tLa route a été bouchée par des arbres qui sont tombés.\nThe scientists looked at tree-ring data.\tLes scientifiques regardèrent les données dendrologiques.\nThe section chief accepted the proposal.\tLe chef de section a accepté la proposition.\nThe servants' screams awakened everyone.\tLes cris des domestiques réveillèrent tout le monde.\nThe settlers accepted the Indians' help.\tLes colons acceptèrent l'aide des Indiens.\nThe seventh day of the week is Saturday.\tLe septième jour de la semaine, c'est le samedi.\nThe simplest solution is often the best.\tLa solution la plus simple est souvent la meilleure.\nThe situation is worse than we believed.\tLa situation est pire qu'on ne le croyait.\nThe soldier returned home on a furlough.\tLe soldat retourna chez lui en permission.\nThe speaker couldn't make himself heard.\tL'orateur ne pouvait se faire entendre.\nThe speaker couldn't make himself heard.\tL'orateur ne put se faire entendre.\nThe speaker couldn't make himself heard.\tL'orateur n'a pas pu se faire entendre.\nThe teacher and I sat down face to face.\tL'instituteur et moi, nous nous sommes assis face à face.\nThe teacher is strict with his students.\tL'instituteur est sévère avec ses élèves.\nThe temperature is above freezing today.\tLa température est aujourd'hui au-dessus du gel.\nThe thief was handed over to the police.\tLe voleur fut confié à la police.\nThe three-day discussion was worthwhile.\tLes trois jours de débats en valaient la peine.\nThe tickets I bought are non-refundable.\tLes billets que j'ai achetés ne sont pas remboursables.\nThe travelers stayed at a seaside hotel.\tLes voyageurs séjournèrent dans un hôtel au bord de la mer.\nThe travelers stayed at a seaside hotel.\tLes voyageurs séjournèrent dans un hôtel en bord de mer.\nThe truth finally came out at his trial.\tLa vérité éclata finalement à son procès.\nThe truth finally came out at his trial.\tLa vérité finit par éclater à son procès.\nThe two generals met again the next day.\tLes deux généraux se rencontrèrent de nouveau le lendemain.\nThe victim died at a hospital in Boston.\tLa victime est morte à l'hôpital de Boston.\nThe volcano erupts at regular intervals.\tCe volcan entre en éruption à intervalles réguliers.\nThe volcano has erupted twice this year.\tLe volcan est, cette année, entré deux fois en éruption.\nThe washer doesn't fit through the door.\tLe lave-vaisselle ne passe pas la porte.\nThe wedding will take place next spring.\tLe mariage aura lieu au printemps prochain.\nThe whole country was covered with snow.\tLe pays en entier était couvert de neige.\nThe whole school agreed to the proposal.\tToute l'école était d'accord avec la proposition.\nThe whole world was involved in the war.\tLe monde entier était impliqué dans la guerre.\nThe work has to be finished before noon.\tLe travail doit être terminé avant midi.\nThe young couple ate off the same plate.\tLe jeune couple mangeait dans la même assiette.\nThe young man driving the car was drunk.\tLe jeune homme qui conduisait la voiture était ivre.\nTheir oldest daughter isn't married yet.\tSa fille ainée n'est pas encore mariée.\nThere are a lot of books in the library.\tIl y a beaucoup de livres à la bibliothèque.\nThere are a lot of bridges in this city.\tIl y a de nombreux ponts dans cette ville.\nThere are a lot of children in the park.\tIl y a beaucoup d'enfants dans le parc.\nThere are a lot of earthquakes in Japan.\tIl y a beaucoup de séismes au Japon.\nThere are a lot of hot springs in Japan.\tIl y a beaucoup de sources thermales au Japon.\nThere are many galaxies in the universe.\tIl y a un grand nombre de galaxies dans l'univers.\nThere are many galaxies in the universe.\tDans l’univers il y a beaucoup de galaxies.\nThere are many people who don't like me.\tIl y a de nombreuses personnes qui ne m'apprécient pas.\nThere are many wild animals around here.\tIl y a de nombreux animaux sauvages autour d'ici.\nThere are more important things in life.\tIl y a des choses plus importantes dans la vie.\nThere are only three girls in the class.\tIl n'y a que trois filles dans la classe.\nThere are plenty of oranges on the tree.\tIl y a plein d'oranges dans l'arbre.\nThere are several ways to measure speed.\tIl y a plusieurs façons de mesurer la vitesse.\nThere is a bank in front of the station.\tIl y a une banque en face de la gare.\nThere is a good chance that he will win.\tIl y a de grandes chances qu'il gagne.\nThere is a museum just north of the zoo.\tIl y a un musée juste au nord du zoo.\nThere is a pair of scissors on the desk.\tIl y a une paire de ciseaux sur le bureau.\nThere is almost no water in this bottle.\tIl n'y a presque pas d'eau dans cette bouteille.\nThere is an urgent need for peace talks.\tOn a un besoin urgent de pourparlers de paix.\nThere is little wine left in the bottle.\tIl reste un peu de vin dans la bouteille.\nThere is no reason for her to scold you.\tElle n'a pas de raison de te gronder.\nThere is no reason for her to scold you.\tElle n'a pas de raison de vous gronder.\nThere is no reason for her to scold you.\tElle n'a pas de raison de te sermonner.\nThere is no reason for her to scold you.\tElle n'a pas de raison de vous sermonner.\nThere is no reason why he should resign.\tJe ne vois pas pourquoi il devrait démissionner.\nThere is no room for romance in my life.\tDans ma vie, l'amour n'a pas sa place.\nThere is no room for romance in my life.\tIl n'y a pas de place pour la romance dans ma vie.\nThere is no telling when they will come.\tOn ne peut pas dire quand ils vont arriver.\nThere seem to be lots and lots of stars.\tIl semble y avoir des myriades d'étoiles.\nThere was a food fight in the cafeteria.\tIl y a eu une bagarre à coups de nourriture dans la cafétéria.\nThere were a hundred people in the hall.\tIl y avait cent personnes dans le hall.\nThere were no fingerprints on the knife.\tIl n'y avait pas d'empreintes digitales sur le couteau.\nThere's a guy downstairs asking for you.\tIl y a un type en bas qui te demande.\nThere's a guy downstairs asking for you.\tIl y a un type en bas qui vous demande.\nThere's a guy downstairs asking for you.\tIl y a un type en bas qui demande après toi.\nThere's a guy downstairs asking for you.\tIl y a un type en bas qui demande après vous.\nThere's a little whiskey in this bottle.\tIl y a un peu de whisky dans cette bouteille.\nThere's a lot of furniture in this room.\tIl y a beaucoup de meubles dans cette pièce.\nThere's more to this than meets the eye.\tCe n'est que la partie visible de l'iceberg.\nThere's no point in asking me for money.\tÇa ne sert à rien de me demander de l'argent.\nThere's no shortage of work around here.\tCe n'est pas le travail qui manque, par ici.\nThere's no shortage of work around here.\tCe n'est pas le travail qui manque, dans les alentours.\nThere's no shortage of work around here.\tCe n'est pas le travail qui manque, autour d'ici.\nThere's no way to get in touch with him.\tIl n'y a aucun moyen de le contacter.\nThere's nothing nefarious going on here.\tIl n'y a rien d'infâme qui se passe ici.\nThere's nothing wrong with that, either.\tIl n'y a rien de mal à cela non plus.\nThese are completely different opinions.\tCe sont des opinions tout à fait opposées.\nThese are the people who live next door.\tVoici les gens qui habitent à côté.\nThese books are easier than those books.\tCes livres sont plus simples que ceux-là.\nThey abandoned the hill to enemy forces.\tIls cédèrent la colline aux forces ennemies.\nThey are looking for a house to live in.\tIls cherchent une maison où habiter.\nThey combined forces to fight the enemy.\tIls combinèrent leurs forces pour combattre l'ennemi.\nThey did not feel like playing any more.\tIls n'avaient plus le cœur à jouer.\nThey did not feel like playing any more.\tElles n'avaient plus le cœur à jouer.\nThey had had to use what money they had.\tIls ont dû utiliser tout l'argent dont ils disposaient.\nThey heard a gun go off in the distance.\tIls entendirent un coup de feu partir au loin.\nThey hoped for even better days to come.\tIls espéraient en des jours encore meilleurs.\nThey joined forces and fought the enemy.\tIls unirent leurs forces et luttèrent contre l'ennemi.\nThey live in that house among the trees.\tIls vivent dans cette maison au milieu des arbres.\nThey needed to trade with them for food.\tIl leur fallait commercer avec eux, contre de la nourriture.\nThey sat around the table to play cards.\tIls s'assirent autour de la table pour jouer aux cartes.\nThey say that a large dam will be built.\tIls disent qu'un grand barrage sera construit.\nThey seem to be in love with each other.\tIl semble qu’ils soient amoureux l’un de l’autre.\nThey supplied the war victims with food.\tIls dispensèrent de la nourriture aux victimes de guerre.\nThey tapped the terrorists' phone lines.\tIls mirent sur écoute les lignes téléphoniques des terroristes.\nThey tried to discourage him from going.\tIls ont essayé de le décourager d'y aller.\nThey tried to discourage him from going.\tElles ont essayé de le décourager d'y aller.\nThey tried to discourage him from going.\tIls essayèrent de le décourager d'y aller.\nThey tried to discourage him from going.\tElles essayèrent de le décourager d'y aller.\nThey went out after they finished lunch.\tIls partirent après avoir fini de déjeuner.\nThey were all surprised to see me there.\tIls étaient tous surpris de me voir ici.\nThey were all surprised to see me there.\tIls étaient tous surpris de me voir là.\nThey were all surprised to see me there.\tElles étaient toutes surprises de me voir là.\nThey won't allow us to enter the garden.\tIls ne nous autoriseront pas à entrer dans le jardin.\nThey won't allow us to enter the garden.\tIls ne permettront pas que nous entrions dans le jardin.\nThey're both in love with the same girl.\tIls sont tous les deux amoureux de la même fille.\nThey're both in love with the same girl.\tIls sont tous deux amoureux de la même fille.\nThey're going to have a party next week.\tIls vont faire une fête la semaine prochaine.\nThis book is available at one shop only.\tOn trouve ce livre dans un seul magasin.\nThis book is available at one shop only.\tCe livre n'est disponible que dans un seul magasin.\nThis container is completely watertight.\tCe conteneur est complètement étanche.\nThis could have unintended consequences.\tÇa pourrait avoir des conséquences involontaires.\nThis guy's great at pitching curveballs.\tCe type est fort pour lancer des balles à trajectoire incurvée.\nThis hotel belongs to my brother-in-law.\tCet hôtel est à mon beau-frère.\nThis hotel is better than the other one.\tCet hôtel est meilleur que l'autre.\nThis is Carrie Underwood's latest album.\tC'est le dernier album de Carrie Underwood.\nThis is really delicious soup, isn't it?\tC'est vraiment une délicieuse soupe, n'est-ce pas?\nThis is the best ship I've ever been on.\tC'est le meilleur bateau sur lequel je suis jamais monté.\nThis is the church where we got married.\tC'est l'église où nous nous sommes mariés.\nThis is the doghouse that I made myself.\tC'est la niche que j'ai faite moi-même.\nThis is the fastest car in our showroom.\tC'est la voiture la plus rapide de notre hall d'exposition.\nThis is the hospital where Tom was born.\tC'est l'hôpital dans lequel Tom est né.\nThis is the key I have been looking for.\tC'est la clé que je cherchais.\nThis is the shortest way to the station.\tC'est le chemin le plus court jusqu'à la station.\nThis isn't worth getting worked up over.\tCe n'est pas la peine de se prendre la tête avec ça.\nThis kind of thing happens all the time.\tCe genre de choses arrive tout le temps.\nThis machine was manufactured in France.\tCette machine a été fabriquée en France.\nThis medicine will make you feel better.\tCe remède te fera te sentir mieux.\nThis medicine will make you feel better.\tCe remède vous fera vous sentir mieux.\nThis medicine will soothe your headache.\tCe médicament soulagera votre mal de tête.\nThis melon will be good to eat tomorrow.\tCe melon sera bon à consommer demain.\nThis picture reminds me of my childhood.\tCette image me rappelle mon enfance.\nThis river is very dangerous to swim in.\tIl est très dangereux de nager dans cette rivière.\nThis sentence contains several mistakes.\tCette phrase contient plusieurs erreurs.\nThis shop has more candy than that shop.\tCe magasin a plus de bonbons que celui-là.\nThis should be done as soon as possible.\tIl faut boucler le dossier au plus vite.\nThis smells great! What are you cooking?\tÇa sent bon ! Que cuisines-tu ?\nThis stone was too heavy for me to lift.\tCette pierre était si lourde que je n'ai pas pu la soulever.\nThis system worked well until the 1840s.\tCe système fonctionna bien jusque dans les années dix-huit-cents-quarante.\nThis ticket entitles you to a free meal.\tCe billet te donne droit à un repas gratuit.\nThis train runs between Tokyo and Osaka.\tCe train circule entre Tokyo et Osaka.\nThis train runs between Tokyo and Osaka.\tCe train-ci circule entre Tokyo et Osaka.\nThis whole affair stinks to high heaven.\tToute cette affaire pue au plus haut point.\nThose prisoners were set free yesterday.\tCes prisonniers ont été libérés hier.\nThose prisoners were set free yesterday.\tCes prisonnières ont été libérées hier.\nThose twins look like two peas in a pod.\tCes jumeaux-là se ressemblent comme deux gouttes d'eau.\nThose twins look like two peas in a pod.\tCes jumelles-là se ressemblent comme deux gouttes d'eau.\nThose were the saddest hours of my life.\tC'était les heures les plus tristes de ma vie.\nThough wounded, they continued to fight.\tBien que blessés, ils continuèrent de se battre.\nThousands of people there were arrested.\tDes centaines de personnes furent arrêtées ici.\nThree generations see things three ways.\tTrois générations voient les choses de trois façons.\nThree men broke out of prison yesterday.\tTrois hommes se sont évadés de prison hier.\nThrow another log on the fire, will you?\tJette une autre bûche sur le feu, veux-tu ?\nThrow another log on the fire, will you?\tJetez une autre bûche sur le feu, voulez-vous ?\nTo make matters worse, it began snowing.\tPour ne rien arranger, il se mit à neiger.\nTo make matters worse, it began to rain.\tPour aggraver les choses, il commença à pleuvoir.\nTo make matters worse, it began to rain.\tPour comble de malheur, il commença à pleuvoir.\nTo my knowledge, she hasn't married yet.\tÀ ma connaissance, elle n'est pas encore mariée.\nTo tell you the truth, I don't love him.\tÀ la vérité, je ne l'aime pas.\nTokyo is a very expensive place to live.\tTokyo est un lieu où la vie est très onéreuse.\nTom and Mary both have very few friends.\tTom et Mary ont très peu d'amis.\nTom and Mary don't want to talk to John.\tTom et Marie ne veulent pas parler à John.\nTom and Mary think they know everything.\tTom et Marie pensent tout savoir.\nTom and Mary were both arrested in 2013.\tTom et Marie ont tous deux été arrêtés en 2013.\nTom announced his resignation yesterday.\tTom a annoncé sa démission hier.\nTom asked me if anything was the matter.\tTom me demanda s'il se passait quelque chose.\nTom bends over backwards to please Mary.\tTom se plie en quatre pour plaire à Marie.\nTom bought a couple of cans of tomatoes.\tTom a acheté deux boîtes de tomates.\nTom broke his leg in a cycling accident.\tTom se cassa la jambe dans un accident de vélo.\nTom called his wife to say he'd be late.\tTom a appelé sa femme pour dire qu'il serait en retard.\nTom came to Boston hoping to find a job.\tTom est venu à Boston dans l'espoir d'y trouver un travail.\nTom came to meet me yesterday afternoon.\tTom est venu me rencontrer hier après-midi.\nTom can come back here anytime he wants.\tTom peut revenir ici quand il le souhaite.\nTom can speak German as well as English.\tTom sait parler allemand aussi bien qu'anglais.\nTom claims he shot Mary in self defense.\tTom soutient qu'il a tiré sur Mary par légitime défense.\nTom comes here about three times a year.\tTom vient ici environ trois fois par an.\nTom cries every time he hears this song.\tTom pleure chaque fois qu'il entend cette chanson.\nTom cut down the tree with his chainsaw.\tTom a abattu l'arbre avec sa tronçonneuse.\nTom cut down the tree with his chainsaw.\tTom abattit l'arbre avec sa tronçonneuse.\nTom didn't get paid for the work he did.\tTom n'a pas été payé pour le travail qu'il a fait.\nTom didn't have time to read the report.\tTom n'a pas eu le temps de lire le rapport.\nTom didn't know what Mary wanted to buy.\tTom ne savait pas ce que Marie voulait acheter.\nTom didn't really enjoy studying French.\tTom n'a pas vraiment apprécié d'étudier le français.\nTom didn't really enjoy studying French.\tTom ne prenait pas vraiment de plaisir à étudier le français.\nTom didn't want me to sell my old truck.\tTom ne voulait pas que je vende mon vieux camion.\nTom didn't want me to sell my old truck.\tTom n'a pas voulu que je vende mon vieux camion.\nTom didn't want to testify against Mary.\tTom ne voulait pas témoigner contre Marie.\nTom doesn't know what Mary wants to eat.\tTom ne sait pas ce que Marie veut manger.\nTom doesn't know where Mary wants to go.\tTom ne sait pas où Mary veut aller.\nTom doesn't like talking about politics.\tTom n'aime pas parler de politique.\nTom doesn't like to talk about his past.\tTom n'aime pas parler de son passé.\nTom doesn't want to get his hands dirty.\tTom ne veut pas se salir les mains.\nTom doesn't want to go to bed right now.\tTom ne veut pas se coucher tout de suite.\nTom goes jogging almost every afternoon.\tTom va courir presque tous les après-midis.\nTom had never been late for work before.\tTom n'avait jamais été en retard auparavant.\nTom has asked me to lend him some money.\tTom m'a demandé de lui prêter un peu d'argent.\nTom has been growing a beard all summer.\tTom s'est laissé pousser la barbe tout l'été.\nTom has changed a lot since high school.\tTom a beaucoup changé depuis le lycée.\nTom has known Mary for over three years.\tTom connaît Mary depuis plus de trois ans.\nTom has lived in Boston for three years.\tTom vit à Boston depuis trois ans.\nTom has more than thirty pairs of shoes.\tTom a plus de trente paires de chaussures.\nTom has two brothers who live in Boston.\tTom a deux frères qui vivent à Boston.\nTom hasn't actually ever been to Boston.\tTom n'avait en fait jamais mis les pieds à Boston.\nTom is a good friend of yours, isn't he?\tTom est un bon ami à vous, n'est-ce pas ?\nTom is a good friend of yours, isn't he?\tTom est un bon ami à toi, n'est-ce pas ?\nTom is getting on your nerves, isn't he?\tTom te tape sur les nerfs, n'est-ce pas ?\nTom is in pretty good shape for his age.\tTom est plutôt en bonne forme pour son âge.\nTom is much better today than yesterday.\tTom va beaucoup mieux aujourd'hui qu'hier.\nTom is not going to be happy about this.\tTom ne va pas être heureux de ceci.\nTom is old enough to decide for himself.\tTom est assez vieux pour décider lui-même.\nTom is one of the richest men in Boston.\tTom est l'un des hommes les plus riches de Boston.\nTom is still at his grandfather's house.\tTom est toujours chez son grand-père.\nTom is the spitting image of his father.\tTom est le portrait craché de son père.\nTom is very difficult to get along with.\tIl est très difficile de s'entendre avec Tom.\nTom knew Mary wouldn't let him kiss her.\tTom savait que Mary ne le laisserait pas l'embrasser.\nTom left everything to Mary in his will.\tTom a tout laissé à Marie dans son testament.\nTom left the room without saying a word.\tTom quitta la pièce sans un mot.\nTom likes all vegetables except cabbage.\tTom aime tous les légumes à l'exception des choux.\nTom likes being the center of attention.\tTom aime être le centre d'attention.\nTom likes to watch baseball games on TV.\tTom aime regarder les matchs de baseball à la télé.\nTom looked at the tall man suspiciously.\tTom regarda l'homme de grande taille en le soupçonnant.\nTom looked over the documents carefully.\tTom examina attentivement les documents.\nTom lost his only son in a car accident.\tTom perdit son seul fils dans un accident de voiture.\nTom lost his only son in a car accident.\tTom a perdu son seul fils dans un accident de voiture.\nTom needed more time to finish his work.\tTom avait besoin de plus de temps pour finir son travail.\nTom never used to eat so much junk food.\tTom n'a jamais eu l'habitude de manger tant de cochonneries.\nTom often talks to his parents on Skype.\tTom parle souvent à ses parents sur Skype.\nTom paid no attention to Mary's warning.\tTom ignora l’avertissement de Marie.\nTom poured milk into a bowl for his cat.\tTom versa du lait dans un bol pour son chat.\nTom poured milk into a bowl for his cat.\tTom a versé du lait dans un bol pour son chat.\nTom probably didn't do the work himself.\tTom n'a probablement pas fait le travail lui-même.\nTom put a hand on Mary's right shoulder.\tTom posa sa main sur l'épaule droite de Marie.\nTom registered to become an organ donor.\tTom s'est enregistré pour devenir donneur d'organes.\nTom said he didn't want to eat anything.\tTom dit qu'il ne voulait rien manger.\nTom said he didn't want to eat anything.\tTom a dit qu'il ne voulait rien manger.\nTom said he'd rather not see that movie.\tTom a dit qu'il préférerait ne pas voir ce film.\nTom said that it was just a coincidence.\tTom a dit que ce n'était qu'une coïncidence.\nTom says he has an announcement to make.\tTom dit qu'il a une annonce à faire.\nTom says he wants a puppy for Christmas.\tTom dit qu'il veut un chiot pour Noël.\nTom seemed satisfied with Mary's answer.\tTom semblait satisfait de la réponse de Mary.\nTom seems to need to go to the bathroom.\tTom a l'air d'avoir besoin d'aller aux toilettes.\nTom should have done things differently.\tTom aurait dû faire les choses différemment.\nTom spends all his time on the computer.\tTom passe tout son temps sur l'ordinateur.\nTom told me he knew how to speak French.\tTom m'a dit qu'il savait parler français.\nTom told us about what he did in Boston.\tTom nous a raconté ce qu'il avait fait à Boston.\nTom usually drinks coffee without sugar.\tTom boit habituellement son café sans sucre.\nTom wanted to talk about something else.\tTom voulait parler d'autres choses.\nTom was lucky that he didn't get killed.\tTom a eu de la chance de ne pas se faire tuer.\nTom was probably drunk when he did that.\tTom était probablement saoul quand il a fait cela.\nTom was startled by a knock on the door.\tTom a été surpris par un coup sur la porte.\nTom was too tired to even smile at Mary.\tThomas était trop fatigué pour sourire à Marie.\nTom washes his car at least once a week.\tTom lave sa voiture au moins une fois par semaine.\nTom whispered something into Mary's ear.\tTom chuchota quelque chose à l’oreille de Marie.\nTom will move out of his parents' house.\tTom va déménager de chez ses parents.\nTomorrow will be even warmer than today.\tDemain sera encore plus chaud qu'aujourd'hui.\nTry to make good use of your spare time.\tEssaie d'utiliser ton temps libre à bon escient.\nTurn off the light before you go to bed.\tÉteins la lumière avant d'aller au lit.\nTurn off the light before you go to bed.\tÉteins la lumière avant de te rendre au lit.\nTurn off the light before you go to bed.\tÉteignez la lumière avant d'aller au lit.\nTurn off the light before you go to bed.\tÉteignez la lumière avant de vous rendre au lit.\nUnfortunately, I have to disappoint you.\tJe dois malheureusement vous décevoir.\nVisitors to Switzerland admire the Alps.\tLes gens qui visitent la Suisse admirent les Alpes.\nWas it a lie when you said you loved me?\tÉtait-ce un mensonge lorsque tu as dit que tu m'aimais ?\nWas it a lie when you said you loved me?\tÉtait-ce un mensonge lorsque vous avez dit que vous m'aimiez ?\nWe abandoned the plan to go on a picnic.\tOn a abandonné notre idée de pique-nique.\nWe are familiar with that author's name.\tLe nom de l'auteur nous est familier.\nWe are measuring the depth of the river.\tNous mesurons la profondeur de la rivière.\nWe are not short of oil in this country.\tNous ne sommes pas à court de pétrole, dans ce pays.\nWe are working in the interest of peace.\tNous travaillons pour la paix.\nWe can not agree with you on this point.\tNous ne pouvons pas nous accorder avec vous sur ce point.\nWe can not agree with you on this point.\tNous ne pouvons pas nous accorder avec toi sur ce point.\nWe can't avoid postponing our departure.\tNous ne pouvons éviter de remettre notre départ.\nWe can't hold the enemy off much longer.\tNous ne pouvons tenir l'ennemi à distance plus longtemps.\nWe can't just leave Tom here by himself.\tOn ne peut pas laisser Tom ici livré à lui même.\nWe can't just sit around and do nothing.\tNous ne pouvons simplement pas être assis ici et ne rien faire.\nWe can't live another day without water.\tNous ne pouvons vivre sans eau un jour de plus.\nWe could all see it coming, couldn't we?\tOn s'y attendait tous, n'est-ce pas?\nWe could see enemy ships on the horizon.\tNous pouvions voir des navires ennemis à l'horizon.\nWe could see enemy ships on the horizon.\tNous pourrions voir des navires ennemis à l'horizon.\nWe could've done this without your help.\tOn aurait pu le faire sans votre aide.\nWe decided to lie hidden for a few days.\tNous décidâmes de rester cachés deux ou trois jours de plus.\nWe have a dog, a cat and three canaries.\tNous avons un chien, un chat et trois canaris.\nWe have a lot of great guys on our team.\tNous avons beaucoup de types géniaux dans notre équipe.\nWe have a parking lot for the customers.\tNous disposons d'un parking pour les clients.\nWe have more pressing things to discuss.\tNous avons des choses plus urgentes à discuter.\nWe have no further details at this time.\tNous n'avons pas d'autres détails pour le moment.\nWe have nothing to fear but fear itself.\tOn a rien à craindre sauf la peur elle-même.\nWe have to get these people out of here.\tNous devons faire sortir ces gens d'ici.\nWe have to reduce the cost to a minimum.\tNous devons réduire le coût à un minimum.\nWe haven't had to deal with this before.\tNous n'avons pas eu à faire face à cela auparavant.\nWe haven't heard anything from them yet.\tNous n'avons encore rien entendu de leur part.\nWe heard tigers roaring in the distance.\tNous avons entendu des tigres rugir au loin.\nWe hope to come up with a solution soon.\tNous espérons trouver une solution rapidement.\nWe hurried in the direction of the fire.\tNous nous dépêchâmes en direction du feu.\nWe hurried to make up for the lost time.\tNous nous sommes dépêchés de rattraper le temps perdu.\nWe listened to his lecture on the radio.\tNous écoutâmes sa conférence à la radio.\nWe listened to his lecture on the radio.\tNous avons écouté sa conférence à la radio.\nWe loaded a lot of luggage into the car.\tNous chargeâmes de nombreux bagages dans la voiture.\nWe met in a coffee shop near the campus.\tNous nous rencontrâmes dans un café près du campus.\nWe must avoid war by all possible means.\tNous devons éviter la guerre à tout prix.\nWe must separate politics from religion.\tNous devons séparer la politique de la religion.\nWe must think over the issues carefully.\tNous devons réfléchir aux problématiques soigneusement.\nWe need a password to use this computer.\tIl faut un mot de passe pour utiliser cet ordinateur.\nWe ought to be ready for whatever comes.\tQuoiqu'il arrive, nous devons être prêts.\nWe ought to be ready for whatever comes.\tNous devons être parés à toute éventualité.\nWe ought to be ready for whatever comes.\tNous devons être parées à toute éventualité.\nWe probably don't want to do that again.\tNous ne voulons probablement recommencer cela.\nWe received a cordial welcome from them.\tNous avons reçu un accueil cordial de leur part.\nWe saw the film and had dinner together.\tNous avons vu le film, puis nous avons dîné ensemble.\nWe seized the town after a short battle.\tNous prîmes la ville après une courte bataille.\nWe seized the town after a short battle.\tNous prîmes la ville à l'issue d'une courte bataille.\nWe should try to understand one another.\tNous devons essayer de nous comprendre l'un l'autre.\nWe started a band because we were bored.\tOn a démarré un groupe parce qu'on se faisait chier.\nWe started a band because we were bored.\tOn a démarré un groupe parce qu'on s'ennuyait.\nWe started a band because we were bored.\tOn a démarré un groupe parce qu'on s'emmerdait.\nWe still have enough time to discuss it.\tNous avons encore suffisamment de temps pour en discuter.\nWe wasted a lot of time looking for Tom.\tNous avons perdu beaucoup de temps à chercher Tom.\nWe went to Rome, where we stayed a week.\tNous nous rendîmes à Rome où nous séjournâmes une semaine.\nWe were all wondering why you were late.\tNous nous demandions pourquoi tu es arrivé tard.\nWe were waiting for him for a long time.\tNous l'attendions depuis un bon moment.\nWe were worried we might miss the train.\tNous avions peur de rater notre train.\nWe weren't as busy as I thought we'd be.\tNous n'étions pas aussi occupé que nous avions pensé.\nWe will take your feelings into account.\tNous prendrons vos sentiments en considération.\nWe won't be able to arrive home in time.\tNous ne pourrons pas arriver chez nous à l'heure.\nWe'd be happy if you could come with us.\tNous serions heureux si vous pouviez venir avec nous.\nWe'd be happy if you could come with us.\tNous serions heureuses si vous pouviez venir avec nous.\nWe'll be making an announcement shortly.\tNous allons incessamment faire un communiqué.\nWe'll change trains at the next station.\tNous changerons de train à la prochaine gare.\nWe'll make our announcement on Thursday.\tNous ferons notre annonce jeudi.\nWe're both planning to be at your party.\tNous avons tous les deux l'intention d'être à ta fête.\nWe're going out to get something to eat.\tNous sortons prendre quelque chose à manger.\nWe're going to need your help after all.\tAprès tout nous allons avoir besoin de ton aide.\nWe're just about finished with this job.\tNous avons presque achevé ce travail.\nWe're not here to talk about music, Tom.\tOn n'est pas là pour parler de musique, Tom.\nWe're worried about Grandma and Grandpa.\tNous nous faisons du souci pour grand-papa et grand-maman.\nWe're worried about Grandma and Grandpa.\tNous nous faisons du souci au sujet de bon papa et bonne maman.\nWe've been eating a lot of beans lately.\tNous avons mangé beaucoup de fèves ces derniers temps.\nWe've known each other for thirty years.\tCela fait trente ans qu'on se connaît.\nWear warm clothes or you could get sick.\tPortez des vêtements chauds ou vous risquez une maladie.\nWell, if you didn't do it, then who did?\tEh bien, si tu ne l'as pas fait, alors qui l'a fait ?\nWell, if you didn't do it, then who did?\tEh bien, si vous ne l'avez pas fait, alors qui l'a fait ?\nWell, the night is quite long, isn't it?\tEh bien, la nuit est très longue, n'est-ce pas ?\nWhat a fool I was to lend him the money.\tQuel idiot j'ai été de lui prêter l'argent.\nWhat did Tom want to talk to Mary about?\tDe quoi Tom voulait-il parler à Mary ?\nWhat did you want to talk with me about?\tDe quoi vouliez-vous m'entretenir ?\nWhat did you want to talk with me about?\tDe quoi voulais-tu me parler ?\nWhat do you have to add to 17 to get 60?\tCombien dois-tu ajouter à dix-sept pour obtenir soixante ?\nWhat do you intend to do with the money?\tQu'as-tu l'intention de faire avec l'argent ?\nWhat do you intend to do with the money?\tQu'avez-vous l'intention de faire avec l'argent ?\nWhat do you know about Tom's girlfriend?\tQue sais-tu de la petite amie de Tom ?\nWhat do you plan to major in in college?\tDans quoi as-tu l'intention de te spécialiser à l'université ?\nWhat do you plan to major in in college?\tQu'as-tu l'intention d'étudier à l'université ?\nWhat do you say we buy everyone a drink?\tQue dis-tu de payer une tournée à tout le monde ?\nWhat do you say we buy everyone a drink?\tQue dites-vous de payer une tournée à tout le monde ?\nWhat do you want to be when you grow up?\tQue veux-tu être lorsque tu deviendras grand ?\nWhat do you want to be when you grow up?\tQue voulez-vous être lorsque vous deviendrez grands ?\nWhat do you want to do when you grow up?\tQue veux-tu faire lorsque tu seras grand ?\nWhat do you want to do when you grow up?\tQue voulez-vous faire lorsque vous deviendrez grands ?\nWhat foods, if any, do you avoid eating?\tQuels aliments, s'il y en a, évitez-vous de manger ?\nWhat he says sounds very sensible to me.\tCe qu'il dit me semble très raisonnable.\nWhat is the address of the new bookshop?\tQuelle est l'adresse de la nouvelle librairie ?\nWhat is the purpose of the stock market?\tÀ quoi sert le marché des valeurs immobilières ?\nWhat is your opinion on school uniforms?\tQuelle est votre opinion concernant les uniformes scolaires ?\nWhat is your ultimate goal in your life?\tQuel est votre but ultime dans la vie ?\nWhat kind of movie do you want to watch?\tQuel genre de film voulez-vous regarder ?\nWhat languages do they speak in Belgium?\tQuelles langues parle-t-on en Belgique ?\nWhat on earth do you think you're doing?\tQue crois-tu donc être en train de faire ?\nWhat on earth do you think you're doing?\tQue croyez-vous donc être en train de faire ?\nWhat part of Australia do you come from?\tDe quelle partie de l'Australie venez-vous ?\nWhat part of Australia do you come from?\tDe quelle partie de l'Australie viens-tu ?\nWhat they wanted was a man like himself.\tCe qu'ils voulaient, c'était un homme comme lui.\nWhat they wanted was a man like himself.\tCe qu'elles voulaient, c'était un homme comme lui.\nWhat time do you usually have breakfast?\tÀ quelle heure prends-tu habituellement ton petit déjeuner ?\nWhat time do you usually leave for work?\tÀ quelle heure partez-vous habituellement pour le travail?\nWhat time do you wake up in the morning?\tÀ quelle heure vous réveillez-vous le matin ?\nWhat time do you want me to pick you up?\tÀ quelle heure voulez-vous que je vous prenne ?\nWhat time do you want me to pick you up?\tÀ quelle heure veux-tu que je te prenne ?\nWhat time does your watch say it is now?\tQuelle heure votre montre indique-t-elle, maintenant ?\nWhat time is your plane due to take off?\tÀ quelle heure votre avion doit décoller ?\nWhat would you do, if you lost your job?\tQue ferais-tu si tu perdais ton emploi ?\nWhat would you do, if you lost your job?\tQue feriez-vous si vous perdiez votre emploi ?\nWhat you are saying does not make sense.\tCe que tu dis n'a pas de sens.\nWhat you are saying does not make sense.\tCe que vous dites n'a pas de sens.\nWhat's that thing you have in your hand?\tQuelle est cette chose que vous avez dans la main ?\nWhat's the precise meaning of that word?\tQuelle est la signification exacte de ce mot ?\nWhat's the spelling of your family name?\tQuelle est l'orthographe de votre nom de famille ?\nWhat's the spelling of your family name?\tQuelle est l'orthographe de ton nom de famille ?\nWhat's the worst injury you've ever had?\tQuelle est la pire blessure que tu as eue?\nWhat's the worst movie you've ever seen?\tQuel est le pire film que vous ayez jamais vu?\nWhat's your favorite piece of furniture?\tQuel est votre meuble préféré ?\nWhat's your favorite television program?\tQuel est ton programme télé préféré ?\nWhatever I do, she says I can do better.\tQuoique je fasse, elle dit que je peux faire mieux.\nWhatever you do, don't push that button.\tQuoi que vous fassiez, n'appuyez pas sur ce bouton !\nWhatever you do, don't push that button.\tQuoi que tu fasses, n'appuie pas sur ce bouton !\nWhen I got back, I found my car missing.\tQuand je suis rentré, ma voiture avait disparu.\nWhen I was your age, I had a girlfriend.\tLorsque j'avais ton âge, j'avais une petite amie.\nWhen I was your age, I had a girlfriend.\tLorsque j'avais votre âge, j'avais une petite amie.\nWhen I was your age, Pluto was a planet.\tQuand j’avais ton âge, Pluton était une planète.\nWhen the lion roars, the zebras tremble.\tLorsque le lion rugit, les zèbres tremblent.\nWhen was the last time you bought shoes?\tQuand as-tu acheté des chaussures pour la dernière fois ?\nWhen was the potato introduced in Japan?\tQuand la pomme de terre fut-elle introduite au Japon ?\nWhere did you work before you came here?\tOù avez-vous travaillé avant de venir ici?\nWhere in Europe would you like to visit?\tQuel endroit d'Europe voudrais-tu visiter ?\nWhere's there a supermarket around here?\tOù peut-on trouver un supermarché dans les environs ?\nWherever you may go, you'll be welcomed.\tOù que vous alliez, vous serez bien accueillis.\nWhether he will come at all is doubtful.\tIl est improbable qu'il vienne du tout.\nWhich of the composers do you like best?\tLequel de ces compositeurs préfères-tu ?\nWhich of the composers do you like best?\tLequel de ces compositeurs préférez-vous ?\nWhich online dictionary do you use most?\tQuel dictionnaire en ligne emploies-tu le plus ?\nWho do you think you're talking to here?\tÀ qui crois-tu être en train de parler, là ?\nWho do you think you're talking to here?\tÀ qui croyez-vous être en train de parler, là ?\nWho is the man who was talking with you?\tQui est l'homme qui parlait avec toi ?\nWho is to say that what we did is wrong?\tQui peut dire que ce que nous avons fait est mal ?\nWhose turn is it to make dinner tonight?\tC'est au tour de qui de préparer le dîner pour ce soir?\nWhy can't you be more like your brother?\tPourquoi ne peux-tu pas ressembler davantage à ton frère ?\nWhy can't you be more like your brother?\tPourquoi ne pouvez-vous pas ressembler davantage à votre frère ?\nWhy did you side with him instead of me?\tPourquoi t'es-tu mis de son côté plutôt que du mien ?\nWhy did you side with him instead of me?\tPourquoi t'es-tu mise de son côté plutôt que du mien ?\nWhy did you side with him instead of me?\tPourquoi as-tu pris son parti au lieu de prendre le mien ?\nWhy didn't you come into work yesterday?\tPourquoi n'êtes-vous pas venus au travail, hier ?\nWhy didn't you come into work yesterday?\tPourquoi n'êtes-vous pas venu au travail, hier ?\nWhy didn't you come into work yesterday?\tPourquoi n'êtes-vous pas venues au travail, hier ?\nWhy didn't you come into work yesterday?\tPourquoi n'êtes-vous pas venue au travail, hier ?\nWhy didn't you come into work yesterday?\tPourquoi n'es-tu pas venu au travail, hier ?\nWhy didn't you come into work yesterday?\tPourquoi n'es-tu pas venue au travail, hier ?\nWhy do they call New York the Big Apple?\tPourquoi appellent-ils New York the Big Apple ?\nWhy do you always seem to want to argue?\tPourquoi sembles-tu toujours vouloir te disputer ?\nWhy do you always seem to want to argue?\tPourquoi semblez-vous toujours vouloir vous disputer ?\nWhy do you want to work for our company?\tPourquoi voulez-vous travailler pour notre entreprise ?\nWhy do you want to work for our company?\tPourquoi veux-tu travailler pour notre entreprise ?\nWhy does everyone think that I'm stupid?\tPourquoi est-ce que tout le monde pense que je suis stupide ?\nWhy don't you tell me what you remember?\tPourquoi ne me dites-vous pas ce dont vous vous souvenez ?\nWhy don't you tell me what you remember?\tPourquoi ne me dis-tu pas ce dont tu te souviens ?\nWhy have you delayed seeing the dentist?\tPourquoi as-tu attendu avant d'aller voir le dentiste?\nWhy haven't you eaten the food I cooked?\tPourquoi n'avez-vous pas mangé ce que j'ai cuisiné ?\nWhy haven't you eaten the food I cooked?\tPourquoi n'as-tu pas mangé ce que j'ai cuisiné ?\nWhy was I the only one asking questions?\tPourquoi étais-je le seul à poser des questions ?\nWhy would you think something like that?\tPourquoi voudrais-tu penser pareille chose ?\nWhy would you think something like that?\tPourquoi voudriez-vous penser pareille chose ?\nWill they elect him for four more years?\tVont-ils l'élire pour un nouveau mandat de quatre ans ?\nWill you listen to me for a few minutes?\tVoulez-vous m'écouter pendant quelques minutes ?\nWill you sing some English songs for us?\tNous chanteras-tu des chansons anglaises ?\nWill you sing some English songs for us?\tNous chanterez-vous des chansons anglaises ?\nWithout your help, I would have drowned.\tSans ton aide, je me serais noyé.\nWithout your help, I would have drowned.\tSi tu ne m'avais pas aidé, je me serais noyé.\nWorkers at the company went on a strike.\tLes travailleurs de l'entreprise ont fait la grève.\nWould someone please wake me up at 2:30?\tQuelqu'un peut-il me réveiller à 2:30, s'il vous plaît ?\nWould you consider this a good proposal?\tConsidérerais-tu ceci comme une bonne proposition ?\nWould you consider this a good proposal?\tConsidéreriez-vous ceci comme une bonne proposition ?\nWould you like to come over to my place?\tVoulez-vous venir chez moi?\nWould you like to go on a trip together?\tVoudriez-vous partir en voyage ensemble ?\nWould you like to go to a movie tonight?\tVoudriez-vous aller voir un film, ce soir ?\nWould you like to go to a movie tonight?\tVoudrais-tu aller voir un film, ce soir ?\nWould you like to play tennis on Sunday?\tAimerais-tu jouer au tennis, dimanche ?\nWould you like to sleep a little longer?\tAimerais-tu dormir un peu plus longtemps ?\nWould you like to sleep a little longer?\tAimeriez-vous dormir un peu plus longtemps ?\nWould you mind coming earlier next time?\tEst-ce que cela te dérangerait de venir plus tôt la prochaine fois ?\nWould you mind coming earlier next time?\tEst-ce que cela vous dérangerait de venir plus tôt la prochaine fois ?\nWould you please wait for a few minutes?\tPouvez-vous attendre quelques minutes s'il vous plaît ?\nWouldn't you like to get some fresh air?\tTu ne voudrais prendre un peu l'air ?\nYesterday was very cold so I wore a hat.\tHier j’ai mis un chapeau parce qu’il faisait très froid.\nYou are free to leave any time you wish.\tTu es libre de partir quand il te plaira.\nYou are holding my hand in that picture.\tTu me tiens la main sur la photo.\nYou are not supposed to smoke at school.\tTu es supposé ne pas fumer à l'école.\nYou are not supposed to smoke at school.\tVous êtes supposés ne pas fumer à l'école.\nYou are not supposed to smoke at school.\tVous êtes supposé ne pas fumer à l'école.\nYou are not supposed to smoke at school.\tVous êtes supposée ne pas fumer à l'école.\nYou are not supposed to smoke at school.\tVous êtes supposées ne pas fumer à l'école.\nYou are welcome to do anything you like.\tFais ce qu'il te plaît.\nYou aren't going to tell on me, are you?\tTu ne vas pas me dénoncer, n'est-ce pas ?\nYou aren't listening to what I'm saying.\tTu n'écoutes pas ce que je dis.\nYou aren't listening to what I'm saying.\tVous n'écoutez pas ce que je dis.\nYou can choose whichever color you like.\tTu peux choisir n'importe quelle couleur que tu aimes.\nYou can improve your English if you try.\tSi tu fais des efforts, tu peux améliorer ton anglais.\nYou can stay with us for the time being.\tTu peux rester avec nous pour l'instant.\nYou can stay with us for the time being.\tVous pouvez rester avec nous pour l'instant.\nYou can use this pen for the time being.\tTu peux utiliser ce stylo, pour l'instant.\nYou can use this pen for the time being.\tVous pouvez utiliser ce stylo, pour le moment.\nYou can't go against the laws of nature.\tVous ne pouvez aller contre les lois de la nature.\nYou can't just walk away from this mess.\tOn ne peut pas simplement se retirer de cette pagaille.\nYou can't just walk away from this mess.\tTu ne peux pas simplement te retirer de cette pagaille.\nYou can't just walk away from this mess.\tVous ne pouvez pas simplement vous retirer de cette pagaille.\nYou can't put off doing that any longer.\tVous ne pouvez plus le repousser.\nYou can't put off doing that any longer.\tTu ne peux plus le postposer.\nYou can't put off doing that any longer.\tTu ne peux plus le différer.\nYou cannot burn anything without oxygen.\tOn ne peut rien brûler sans oxygène.\nYou cannot take back what you have said.\tTu ne peux pas retirer ce que tu as dit.\nYou cannot take back what you have said.\tVous ne pouvez pas retirer ce que vous avez dit.\nYou could do it if you really wanted to.\tVous pourriez le faire si vous le vouliez vraiment.\nYou could do it if you really wanted to.\tVous seriez en mesure de le faire si vous le vouliez vraiment.\nYou could do it if you really wanted to.\tTu pourrais le faire si tu le voulais vraiment.\nYou could do it if you really wanted to.\tTu serais en mesure de le faire si tu le voulais vraiment.\nYou don't have to go unless you want to.\tTu n'es pas obligé d'y aller, à moins que tu ne le veuilles.\nYou don't have to go unless you want to.\tVous n'êtes pas obligé d'y aller, à moins que vous ne le veuillez.\nYou don't have to go unless you want to.\tVous n'êtes pas obligés d'y aller, à moins que vous ne le vouliez.\nYou don't have to worry about publicity.\tIl ne faut pas t'en faire pour la publicité.\nYou don't have to worry about publicity.\tIl ne faut pas vous en faire pour la publicité.\nYou don't mind if I leave early, do you?\tCela ne vous dérange pas que je parte tôt, si ?\nYou don't need to go unless you want to.\tTu ne dois pas t'en aller, à moins que tu ne le veuilles.\nYou don't need to go unless you want to.\tVous ne devez pas partir, à moins que vous ne le souhaitiez.\nYou don't need to hurry. Take your time.\tIl n'est pas nécessaire que tu te presses. Prends ton temps.\nYou don't need to hurry. Take your time.\tIl n'est pas nécessaire que vous vous pressiez. Prenez votre temps.\nYou don't need to hurry. Take your time.\tIl n'est pas nécessaire de te précipiter. Prends ton temps.\nYou don't need to hurry. Take your time.\tIl n'est pas nécessaire de vous précipiter. Prenez votre temps.\nYou elect your representative by voting.\tOn élit un représentant par le vote.\nYou had better put on your crash helmet.\tTu ferais mieux de mettre ton casque intégral.\nYou had better put on your crash helmet.\tVous feriez mieux de mettre votre casque intégral.\nYou have a very logical way of thinking.\tTu as une façon de réfléchir très logique.\nYou have a very logical way of thinking.\tTu es quelqu'un de très logique.\nYou have as much right as everyone else.\tTu en as autant le droit que n'importe qui d'autre.\nYou have no idea how distressed she was.\tVous n'avez pas idée de la détresse dans laquelle elle était.\nYou have only to give him a little help.\tIl vous suffit de lui apporter un peu d'aide.\nYou have only to give him a little help.\tIl te suffit de lui apporter un peu d'aide.\nYou have to judge the case without bias.\tVous devez juger l'affaire de manière impartiale.\nYou look like you don't want to be here.\tOn dirait que tu n'as pas envie de te trouver là.\nYou look like you don't want to be here.\tOn dirait que vous n'avez pas envie de vous trouver ici.\nYou mean the world to me, you really do.\tTu es tout pour moi, vraiment.\nYou might want to try working out a bit.\tPeut-être ferais-tu mieux de faire un peu d'exercice.\nYou must be at the station by 5 o'clock.\tTu dois être à la gare pour 5 heures.\nYou must be at the station by 5 o'clock.\tVous devez être à la gare pour 5 heures.\nYou must be careful with the wine glass.\tTu dois faire attention avec le verre à vin.\nYou must be careful with the wine glass.\tVous devez faire attention avec le verre de vin.\nYou must prepare yourself for the worst.\tTu dois te préparer au pire.\nYou need someone to help you, don't you?\tTu as besoin de quelqu'un pour t'aider, n'est-ce pas ?\nYou need someone to help you, don't you?\tVous avez besoin de quelqu'un pour vous aider, n'est-ce pas ?\nYou need to be more careful from now on.\tTu dois être plus prudent, désormais.\nYou need to be more careful from now on.\tVous devez être plus prudente, désormais.\nYou need to be more careful from now on.\tVous devez être plus prudent, désormais.\nYou need to be more careful from now on.\tVous devez être plus prudentes, désormais.\nYou need to be more careful from now on.\tVous devez être plus prudents, désormais.\nYou need to be more careful from now on.\tTu dois désormais être plus prudente.\nYou need to pay extra for the batteries.\tIl faut payer un supplément pour les piles.\nYou remind me of someone I used to know.\tTu me rappelles quelqu'un que je connaissais.\nYou remind me of someone I used to know.\tVous me rappelez quelqu'un que je connaissais.\nYou said you wanted more responsibility.\tTu as dit que tu voulais plus de responsabilités.\nYou seem to really be enjoying yourself.\tTu as l'air de vraiment bien t'amuser.\nYou should call your parents more often.\tTu devrais appeler tes parents plus souvent.\nYou should call your parents more often.\tVous devriez appeler vos parents plus souvent.\nYou should do something you enjoy doing.\tVous devriez faire quelque chose que vous aimez faire.\nYou should do something you enjoy doing.\tTu devrais faire quelque chose que tu aimes faire.\nYou should follow your teacher's advice.\tTu devrais suivre le conseil de ton professeur.\nYou should follow your teacher's advice.\tVous devriez suivre le conseil de votre professeur.\nYou should give up drinking and smoking.\tTu devrais arrêter de fumer et de boire.\nYou should give up smoking and drinking.\tTu devrais arrêter de fumer et de boire.\nYou should have told me a long time ago.\tVous auriez dû me le dire il y a longtemps.\nYou should have told me a long time ago.\tTu aurais dû me le dire depuis longtemps.\nYou should take better care of yourself.\tVous devriez prendre davantage soin de vous.\nYou should wash fruit before you eat it.\tVous devriez laver les fruits avant de les manger.\nYou shouldn't depend on others too much.\tTu ne devrais pas trop dépendre des autres.\nYou shouldn't depend on others too much.\tVous ne devriez pas trop dépendre des autres.\nYou shouldn't drink on an empty stomach.\tTu ne devrais pas boire l'estomac vide.\nYou shouldn't keep them waiting so long.\tTu ne devrais pas les garder à attendre aussi longtemps.\nYou two should be ashamed of yourselves.\tVous devriez avoir honte de vous.\nYou were at home yesterday, weren't you?\tTu étais hier à la maison, n'est-ce pas ?\nYou will have to study harder next year.\tTu devras travailler plus dur l'année prochaine.\nYou will have to study harder next year.\tVous devrez travailler plus dur l'année prochaine.\nYou will not be able to catch the train.\tTu ne pourras pas attraper le train.\nYou will not be able to catch the train.\tVous ne pourrez pas attraper le train.\nYou'll have to answer for your behavior.\tTu devras répondre de ta conduite.\nYou'll have to study harder from now on.\tTu devras étudier plus sérieusement à partir de maintenant.\nYou're a very sensitive guy, aren't you?\tT'es un mec très sensible, n'est-ce pas ?\nYou're going to have to stop doing that.\tTu vas devoir arrêter de faire ça.\nYou're going to have to stop doing that.\tVous allez devoir arrêter de faire cela.\nYou're mistaken. That's not what I said.\tTu te trompes. Ce n'est pas ce que j'ai dit.\nYou're mistaken. That's not what I said.\tVous vous trompez. Ce n'est pas ce que j'ai dit.\nYou're not as good as you think you are.\tVous n'êtes pas aussi bon que vous pensez l'être.\nYou're not as good as you think you are.\tVous n'êtes pas aussi bonne que vous pensez l'être.\nYou're not as good as you think you are.\tTu n'es pas aussi bon que tu penses l'être.\nYou're not as good as you think you are.\tTu n'es pas aussi bonne que tu penses l'être.\nYou're not as good as you think you are.\tVous n'êtes pas aussi bons que vous pensez l'être.\nYou're not as good as you think you are.\tVous n'êtes pas aussi bonnes que vous pensez l'être.\nYou're not looking at the whole picture.\tTu ne regardes pas tout le paysage.\nYou're not looking at the whole picture.\tVous ne regardez pas l'ensemble du tableau.\nYou're not prepared for what awaits you.\tVous n'êtes pas préparé à ce qui vous attend.\nYou're not prepared for what awaits you.\tVous n'êtes pas préparée à ce qui vous attend.\nYou're not prepared for what awaits you.\tVous n'êtes pas préparés à ce qui vous attend.\nYou're not prepared for what awaits you.\tVous n'êtes pas préparées à ce qui vous attend.\nYou're not prepared for what awaits you.\tTu n'es pas préparé à ce qui t'attend.\nYou're not prepared for what awaits you.\tTu n'es pas préparée à ce qui t'attend.\nYou're not supposed to do that, are you?\tVous n'êtes pas censés faire cela, n'est-ce pas ?\nYou're not supposed to do that, are you?\tTu n'es pas supposé faire cela, n'est-ce pas ?\nYou're scared of being hurt, aren't you?\tVous avez peur d'avoir mal, n'est-ce pas ?\nYou're scared of being hurt, aren't you?\tTu as peur d'avoir mal, n'est-ce pas ?\nYou're taking advantage of her weakness.\tVous tirez avantage de sa faiblesse.\nYou're taking advantage of her weakness.\tTu tires avantage de sa faiblesse.\nYou're the nicest girlfriend I ever had.\tTu es la plus chouette petite amie que j'ai jamais eue.\nYou're the nicest girlfriend I ever had.\tTu es la plus chouette petite copine que j'ai jamais eue.\nYou're the only person that I can trust.\tTu es la seule personne en qui j'ai confiance.\nYou're the only person that I can trust.\tTu es la seule personne sur qui je puisse compter.\nYou've been injured before, haven't you?\tOn t'a insulté auparavant, n'est-ce pas ?\nYou've been injured before, haven't you?\tOn vous a insulté auparavant, n'est-ce pas ?\nYou've got a bright future ahead of you.\tUn brillant avenir vous attend.\nYou've got a bright future ahead of you.\tUn brillant avenir t'attend.\nYoung people are usually full of energy.\tLes jeunes gens sont normalement pleins d'énergie.\nYour assistance is indispensable for us.\tVotre aide nous est indispensable.\nYour behavior leaves much to be desired.\tTon comportement laisse beaucoup à désirer.\nYour speech will be recorded in history.\tTon discours marquera l'histoire.\n\"Are the drinks free?\" \"Only for ladies.\"\t« Les consommations sont-elles gratuites ? » « Seulement pour les dames. »\n\"Nice to meet you,\" said the businessman.\t« Ravie de vous rencontrer, » dit la femme d'affaires.\n\"Thanks for your help.\" \"It was nothing.\"\t« Merci pour votre aide. » « Ce n'était rien. »\n\"What are you trying to hide?\" \"Nothing.\"\t« Qu'es-tu en train d'essayer de cacher ? » « Rien. »\n\"What are you trying to hide?\" \"Nothing.\"\t« Qu'êtes-vous en train d'essayer de cacher ? » « Rien. »\n\"Will he recover soon?\" \"I'm afraid not.\"\t\"Va-t-il vite s'en remettre ?\" \"J'ai bien peur que non.\"\nA baby has no knowledge of good and evil.\tLes bébés n'ont pas conscience du bien et du mal.\nA boat suddenly appeared out of the mist.\tUn bateau apparut soudain dans la brume.\nA fight broke out between two schoolboys.\tUne bagarre éclata entre deux élèves.\nA flea can jump 200 times its own height.\tUne puce peut sauter deux cents fois sa propre taille.\nA frown may express anger or displeasure.\tUn froncement de sourcils peut exprimer la colère ou le mécontentement.\nA full moon is shining bright in the sky.\tLa pleine lune brille dans le ciel.\nA green banana is not ripe enough to eat.\tUne banane verte n'est pas assez mûre pour être mangée.\nA jack of all trades is a master of none.\tUn homme à tout faire n'est maître d'aucun art.\nA long time ago, there was a bridge here.\tIl y a fort longtemps, il y avait un pont ici.\nA lot of birthday cards will arrive soon.\tBeaucoup de cartes d'anniversaire arriveront bientôt.\nA lot of people feel the same way you do.\tBeaucoup de gens ressentent la même chose que toi.\nA lot of people feel the same way you do.\tBeaucoup de gens ressentent la même chose que vous.\nA man is more or less what he looks like.\tUn homme est plus ou moins ce à quoi il ressemble.\nA man shouted something, waving his hand.\tUn homme cria quelque chose en faisant signe de la main.\nA museum is a great place to find a date.\tUn musée est un endroit formidable pour se donner rendez-vous.\nA new hotel will be built here next year.\tL'année prochaine, sera construit ici un nouvel hôtel.\nA police officer told me to stop the car.\tUn officier de police m'a dit d'arrêter la voiture.\nA severe ocean storm hit the West Indies.\tUne violente tempête océanique frappa les Caraïbes.\nA small gain is better than a great loss.\tUn petit gain vaut mieux qu'une grosse perte.\nA soccer team consists of eleven players.\tUne équipe de football comporte 11 joueurs.\nA swarm of hornets attacked the children.\tUn essaim de frelons s'en prit aux enfants.\nA teacher must be fair with his students.\tUn professeur doit être juste avec ses élèves.\nA third of the earth's surface is desert.\tUn tiers de la surface de la Terre est du désert.\nA trip to America is out of the question.\tUn voyage en Amérique est hors de question.\nA trip to the Riviera should do you good.\tUn voyage sur la Côte d'Azur vous ferait du bien.\nA true friend would not say such a thing.\tUn véritable ami ne dirait pas une chose pareille.\nAbout how many English words do you know?\tEnviron combien de mots anglais connais-tu ?\nAbout how many English words do you know?\tCombien de mots anglais connais-tu à peu près ?\nAbout how many hours does it take by car?\tÇa prend combien d'heures environ en voiture ?\nAbove all things, we must not be selfish.\tAvant tout, nous ne devons pas être égoïstes.\nAbsence of rain caused the plants to die.\tL'absence de pluie a fait mourir les plantes.\nAdd a little more milk to my tea, please.\tUn peu plus de lait dans mon thé, s'il vous plaît.\nAdmission is free for preschool children.\tL'entrée est gratuite pour les enfants non scolarisés.\nAfter a brief peace, war broke out again.\tAprès une courte paix, la guerre éclata à nouveau.\nAfter a long argument, I finally gave in.\tAprès une longue querelle, j'ai finalement cédé.\nAfter eating dinner, I washed the dishes.\tAprès avoir soupé, je lavai les plats.\nAfter eating supper, I washed the dishes.\tAprès avoir soupé, je lavai les plats.\nAfter the war, Britain had many colonies.\tAprès la guerre, la Grande-Bretagne avait de nombreuses colonies.\nAfter their quarrel, she called it quits.\tAprès leur querelle, elle en resta là.\nAlbania wants to join the European Union.\tL'Albanie veut adhérer à l'Union européenne.\nAll I want is someone special in my life.\tTout ce que je veux, c'est quelqu'un de spécial dans ma vie.\nAll I wanted was a little more attention.\tTout ce que je voulais, c'était un petit peu plus d'attention.\nAll of a sudden, all the lights went out.\tTout à coup, toutes les lumières se sont éteintes.\nAll of a sudden, all the lights went out.\tTout à coup toutes les lumières s'éteignirent.\nAll of a sudden, the fire alarm went off.\tSoudain, l'alarme incendie se déclencha.\nAll the flowers in the garden are yellow.\tToutes les fleurs du jardin sont jaunes.\nAll the leaves on the tree turned yellow.\tToutes les feuilles de l'arbre sont devenues jaunes.\nAll the leaves on the tree turned yellow.\tToutes les feuilles de l'arbre ont jauni.\nAlmost no one thinks that we are sisters.\tPresque personne ne pense que nous sommes sœurs.\nAlthough he is young, he is very careful.\tBien qu'il soit jeune, il est très prudent.\nAlthough it was raining, I had to go out.\tBien qu'il plût, je devais sortir.\nAmericans admire Lincoln for his honesty.\tLes Étatsuniens admirent Lincoln pour son honnêteté.\nAn illustration may make the point clear.\tUne illustration peut éclaircir le propos.\nAn old castle stands on top of the cliff.\tUn vieux château se tient en haut de la falaise.\nAnimals act according to their instincts.\tLes animaux agissent selon leurs instincts.\nAnything you say can be used against you.\tTout ce que tu dis peut être utilisé contre toi.\nAnything you say can be used against you.\tTout ce que vous dites peut être utilisé contre vous.\nAnything you say may be used against you.\tTout ce que vous dites peut être retenu contre vous.\nAnything you say may be used against you.\tTout ce que tu dis peut être retenu contre toi.\nAnything you say may be used against you.\tTout ce que vous dites peut être retenu contre toi.\nAnything you say may be used against you.\tTout ce que tu dis peut être retenu contre vous.\nAre you content with your present salary?\tÊtes-vous satisfait de votre salaire actuel ?\nAre you going to go anywhere this summer?\tVas-tu quelque part cet été ?\nAre you going to go anywhere this summer?\tAllez-vous quelque part cet été ?\nAre you having any difficulty doing that?\tAs-tu des difficultés à faire cela ?\nAre you having any difficulty swallowing?\tAvez-vous des difficultés à avaler?\nAre you saying that my life is in danger?\tEs-tu en train de dire que ma vie est en danger ?\nAre you saying that my life is in danger?\tÊtes-vous en train de dire que ma vie est en danger ?\nAre you seriously thinking about divorce?\tPenses-tu sérieusement à divorcer ?\nAre you seriously thinking about divorce?\tPensez-vous sérieusement à divorcer ?\nAre you still recovering from last night?\tTe remets-tu encore de la nuit dernière ?\nAre you still recovering from last night?\tVous remettez-vous encore de la nuit dernière ?\nAre you sure we can't repair this camera?\tEs-tu certain que nous ne pouvons pas réparer cet appareil photo ?\nAre you sure we can't repair this camera?\tÊtes-vous certain que nous ne pouvons pas réparer cet appareil photo ?\nAre you sure we can't repair this camera?\tÊtes-vous certaine que nous ne pouvons pas réparer cet appareil photo ?\nAre you sure we can't repair this camera?\tÊtes-vous certains que nous ne pouvons pas réparer cet appareil photo ?\nAre you sure we can't repair this camera?\tÊtes-vous certaines que nous ne pouvons pas réparer cet appareil photo ?\nAre you sure we can't repair this camera?\tEs-tu certaine que nous ne pouvons pas réparer cet appareil photo ?\nAre you wondering what we ended up doing?\tTe demandes-tu ce que nous avons fini par faire ?\nAre you wondering what we ended up doing?\tVous demandez-vous ce que nous avons fini par faire ?\nAs far as I remember, he didn't say that.\tPour autant que je m'en souvienne, il n'a pas dit cela.\nAs soon as I left home, it began to rain.\tDès que j'ai quitté la maison, il a commencé à pleuvoir.\nAsk him whether they still live in Tokyo.\tDemande-lui s'ils vivent toujours à Tokyo.\nAt first, I mistook him for your brother.\tAu premier abord, je l'ai pris pour votre frère.\nAt first, I mistook you for your brother.\tÀ première vue, je t'ai confondu avec ton frère.\nAt last, you've hit the nail on the head!\tEnfin, vous avez mis le doigt dessus !\nAt last, you've hit the nail on the head!\tEnfin, tu as mis le doigt dessus !\nAt our company, the retirement age is 60.\tDans notre entreprise, la retraite est à 60 ans.\nAt the party, everybody was well-dressed.\tÀ la fête, tous étaient bien habillés.\nAttendance is compulsory for all members.\tLa présence de tous les membres est requise.\nBeing ill, I stayed at home all day long.\tJ'étais malade, je suis resté à la maison toute la journée.\nBetter a broken promise than none at all.\tIl vaut mieux une promesse rompue que pas du tout.\nBetter a broken promise than none at all.\tMieux vaut une promesse rompue que pas de promesse du tout.\nBotany is the scientific study of plants.\tLa botanique est l'étude scientifique des plantes.\nBoth those students passed all the tests.\tCes deux étudiants ont réussi tous les examens.\nBuses are running at 20 minute intervals.\tLes bus roulent à vingt minutes d'intervalle.\nBusiness failures are down 10% this year.\tLes faillites ont diminué de 10 % cette année.\nBuy me another beer and I'll think on it.\tAchète-moi une autre bière et j'y réfléchirai.\nBy the way, I have something to tell you.\tAu fait, j'ai quelque chose à te dire.\nCan I get a connecting flight to Atlanta?\tEst-ce que je pourrais avoir une correspondance pour Atlanta ?\nCan I share something important with you?\tPuis-je vous faire part de quelque chose d'important ?\nCan I share something important with you?\tPuis-je te faire part de quelque chose d'important ?\nCan anyone tell me what I should do next?\tQuelqu'un peut-il me dire ce que je devrais faire après ?\nCan you believe this is really happening?\tPeux-tu croire que ce soit vraiment en train d'arriver ?\nCan you believe this is really happening?\tPeux-tu croire que ce soit vraiment en train de se produire ?\nCan you believe this is really happening?\tPeux-tu croire que ce soit vraiment en train d'avoir lieu ?\nCan you believe this is really happening?\tPouvez-vous croire que ce soit vraiment en train d'arriver ?\nCan you believe this is really happening?\tPouvez-vous croire que ce soit vraiment en train de se produire ?\nCan you believe this is really happening?\tPouvez-vous croire que ce soit vraiment en train d'avoir lieu ?\nCan you do without an English dictionary?\tPouvez-vous vous débrouiller sans dictionnaire d'anglais ?\nCan you iron this T-shirt for me, please?\tPourriez-vous repasser ce t-shirt pour moi, s'il vous plaît ?\nCan you please help me for just a minute?\tPeux-tu m'aider juste une minute, s'il te plaît ?\nCan you please help me for just a minute?\tPouvez-vous m'aider juste une minute, s'il vous plaît ?\nCan you prove that what you said is true?\tPeux-tu prouver que ce que tu as dit est vrai ?\nCan you prove that what you said is true?\tPouvez-vous prouver que ce que vous avez dit est vrai ?\nCan you remember the first time you swam?\tPeux-tu te souvenir de la première fois que tu as nagé ?\nCan you still remember when we first met?\tPeux-tu encore te souvenir de quand nous nous sommes rencontrés la première fois ?\nCan you still remember when we first met?\tPeux-tu encore te souvenir de quand nous nous sommes rencontrées la première fois ?\nCan you still remember when we first met?\tPouvez-vous encore te souvenir de quand nous nous sommes rencontrés la première fois ?\nCan you still remember when we first met?\tPouvez-vous encore te souvenir de quand nous nous sommes rencontrées la première fois ?\nCan you supply me with everything I need?\tPeux-tu me fournir tout ce dont j'ai besoin ?\nCan you supply me with everything I need?\tPouvez-vous me fournir tout ce dont j'ai besoin ?\nCan you tell me how to fill in this form?\tPouvez-vous me dire comment remplir ce formulaire?\nCars, buses, and trucks are all vehicles.\tLes voitures, bus ou camions sont tous des véhicules.\nCats have the ability to see in the dark.\tLes chats peuvent voir dans l'obscurité.\nCats have the ability to see in the dark.\tLes chats sont nyctalopes.\nCheck up on the accuracy of this article.\tVérifiez la véracité de cet article.\nChinese characters are difficult to read.\tLes idéogrammes chinois sont difficiles à lire.\nCockfighting is banned in many countries.\tLes combats de coqs sont interdits dans de nombreux pays.\nCome on, guys. This is not funny anymore.\tAllez, les mecs ! Ce n'est plus marrant.\nCome what may, I won't change my opinion.\tAdvienne que pourra, je ne changerai pas d'avis.\nComedy is something that makes you laugh.\tLa comédie est quelque chose qui fait rire.\nCompared to our house, yours is a palace.\tComparée à notre maison, la vôtre est un palais.\nCould I please have one more can of beer?\tPuis-je avoir encore une canette de bière, s'il vous plaît ?\nCould this be the start of something big?\tCela pourrait-il être le début de quelque chose d'énorme ?\nCould you bring my breakfast to room 305?\tPourriez-vous m'apporter mon petit déjeuner à la chambre 305 ?\nCould you please lend me your dictionary?\tPourriez-vous, je vous prie, me prêter votre dictionnaire ?\nCould you please lend me your dictionary?\tPourrais-tu, je te prie, me prêter ton dictionnaire ?\nCould you possibly translate this for me?\tPourriez-vous éventuellement traduire ceci pour moi ?\nCould you possibly translate this for me?\tPourrais-tu éventuellement traduire ceci pour moi ?\nCould you show me the way to the station?\tPouvez-vous m'indiquer le chemin de la gare ?\nCould you show me the way to the station?\tPouvez-vous me montrer le chemin pour la gare ?\nCould you teach me how to play the piano?\tPouvez-vous m'apprendre à jouer du piano ?\nCould you tell me the way to the station?\tPouvez-vous m'indiquer le chemin jusqu'à la gare ?\nCuban soldiers were guarding the streets.\tLes soldats cubains gardaient les rues.\nDad! Mom! I have some great news for you!\tPapa ! Maman ! J'ai de grandes nouvelles pour vous !\nDaddy, let's see if you can out-stare me.\tPapa, voyons si tu peux soutenir mon regard plus longtemps que moi.\nDespite everything, Tom started to relax.\tMalgré tout, Tom commença à se détendre.\nDid something happen between you and Tom?\tIl s’est passé quelque chose, entre toi et Tom ?\nDid they enjoy their holiday in Scotland?\tOnt-ils apprécié leurs vacances en Écosse ?\nDid you feel the earthquake this morning?\tAs-tu senti le tremblement de terre ce matin ?\nDidn't you know that oil floats on water?\tNe saviez-vous pas que l'huile flotte sur l'eau ?\nDidn't you know that oil floats on water?\tNe savais-tu pas que le pétrole flotte sur l'eau ?\nDinner will be served on board the plane.\tUn dîner sera servi à bord de l'avion.\nDivide this line into twenty equal parts.\tDivisez ce segment en vingt parties égales.\nDo I have to answer all of the questions?\tDois-je répondre à toutes les questions ?\nDo I need to be at the meeting on Monday?\tAi-je besoin d'être à la réunion lundi ?\nDo whatever it takes to get the job done.\tFais tout ce qu'il faut pour que le travail soit achevé !\nDo whatever it takes to get the job done.\tFaites tout ce qu'il faut pour que le travail soit achevé !\nDo you go by bus, by train, or by subway?\tY allez-vous en bus, en train ou en métro ?\nDo you have an airplane ticket back home?\tDisposez-vous d'un billet d'avion retour chez vous ?\nDo you have an airplane ticket back home?\tDisposez-vous d'un billet d'avion pour retourner chez vous ?\nDo you have any idea who wrote this book?\tEst-ce que tu sais qui a écrit ce livre ?\nDo you have any idea who wrote this book?\tAs-tu la moindre idée de qui a écrit ce livre ?\nDo you have any idea who wrote this book?\tAvez-vous la moindre idée de qui a écrit ce livre ?\nDo you have any knowledge of this matter?\tSavez-vous quelque chose à ce propos ?\nDo you have anything to eat in your pack?\tAs-tu quoi que ce soit à manger dans ton sac ?\nDo you have anything to eat in your pack?\tAvez-vous quoi que ce soit à manger dans votre sac ?\nDo you know any of the boys in this room?\tConnais-tu un de ces garçons qui sont dans la pièce ?\nDo you know anyone who's not on Facebook?\tConnais-tu quelqu'un qui n'est pas sur Facebook ?\nDo you know the man who's staring at you?\tConnais-tu l'homme qui te regarde ?\nDo you know the man who's staring at you?\tConnaissez-vous l'homme qui vous regarde ?\nDo you know the man who's staring at you?\tConnais-tu l'homme qui te dévisage ?\nDo you know the man who's staring at you?\tConnaissez-vous l'homme qui vous dévisage ?\nDo you know who this car here belongs to?\tSavez-vous à qui est cette voiture ?\nDo you know who this car here belongs to?\tSavez-vous à qui appartient cette voiture ?\nDo you know who this car here belongs to?\tSais-tu à qui appartient cette voiture ?\nDo you know why he put off his departure?\tSais-tu pourquoi il a retardé son départ ?\nDo you mean you don't know what happened?\tVoulez-vous dire que vous ignorez ce qui s'est passé ?\nDo you mean you don't know what happened?\tVeux-tu dire que tu ignores ce qui s'est passé ?\nDo you mean you don't know what happened?\tVoulez-vous dire que vous ignorez ce qui est arrivé ?\nDo you mean you don't know what happened?\tVeux-tu dire que tu ignores ce qui est arrivé ?\nDo you mean you don't know what happened?\tVeux-tu dire que tu ignores ce qui a eu lieu ?\nDo you mean you don't know what happened?\tVoulez-vous dire que vous ignorez ce qui a eu lieu ?\nDo you mind if I leave for a few minutes?\tVoyez-vous un inconvénient à ce que je m'absente quelques minutes ?\nDo you really want to stay young forever?\tVeux-tu vraiment rester jeune pour l'éternité ?\nDo you really want to stay young forever?\tVoulez-vous vraiment rester jeune pour l'éternité ?\nDo you remember what you did last Friday?\tVous souvenez-vous de ce que vous avez fait vendredi dernier ?\nDo you remember what you did last Friday?\tTe souviens-tu de ce que tu as fait vendredi dernier ?\nDo you still believe I killed my brother?\tCroyez-vous toujours que j'aie tué mon frère ?\nDo you still believe I killed my brother?\tCrois-tu toujours que j'aie tué mon frère ?\nDo you think he is good for the position?\tPenses-tu qu'il est bien pour la place ?\nDo you think the shooting was accidental?\tPensez-vous que le tir fut accidentel ?\nDo you think the shooting was accidental?\tPenses-tu que la fusillade a été accidentelle ?\nDo you want me to paint your fingernails?\tVoulez-vous que je vous peigne les ongles ?\nDo you want me to paint your fingernails?\tVeux-tu que je te peigne les ongles ?\nDo you want me to paint your fingernails?\tVoulez-vous que je vous peigne les ongles des mains ?\nDo you want me to paint your fingernails?\tVeux-tu que je te peigne les ongles des mains ?\nDo you want to go to the station with me?\tVoulez-vous venir, avec moi, jusqu'à la gare ?\nDo you want to go to the station with me?\tVeux-tu venir, avec moi, jusqu'à la gare ?\nDoes Father know you've broken his watch?\tVotre père sait-il que vous avez cassé sa montre ?\nDoes Tom want to watch the movie with us?\tTom veut-il regarder le film avec nous ?\nDoes someone have the exact time, please?\tQuelqu'un a-t-il l'heure exacte, je vous prie ?\nDoes this mean you're not coming to help?\tEst-ce que cela veut dire que tu ne viendras pas pour aider ?\nDoes this mean you're not coming to help?\tCela signifie-t-il que tu ne viendras pas aider ?\nDoes this medicine actually relieve pain?\tCe médicament soulage-t-il vraiment la douleur ?\nDon't believe everything people tell you.\tNe croyez pas à tout ce que les gens vous disent.\nDon't believe everything people tell you.\tNe crois pas à tout ce que les gens te disent.\nDon't believe everything people tell you.\tNe croyez pas à tout ce que les gens vous content.\nDon't believe everything people tell you.\tNe crois pas à tout ce que les gens te content.\nDon't count on him to lend you any money.\tNe compte pas sur lui pour te prêter de l'argent.\nDon't let the cat escape. Close the door!\tNe laisse pas le chat s'échapper ! Ferme la porte !\nDon't let the cat escape. Close the door!\tNe laissez pas le chat s'échapper ! Fermez la porte !\nDon't let the grass grow under your feet.\tNe laisse pas l'herbe te pousser sous les pieds !\nDon't lose sight of what you're here for.\tNe perdez pas de vue pourquoi vous êtes ici !\nDon't make promises that you cannot keep.\tNe fais pas de promesses que tu ne peux pas tenir.\nDon't open the door till the train stops.\tN'ouvrez pas la porte avant l'arrêt du train.\nDon't put me in the same class with them.\tNe me mettez pas dans la même classe avec eux.\nDon't say anything unless it's important.\tNe dites rien, à moins que ce ne soit important !\nDon't say anything unless it's important.\tNe dis rien, à moins que ce ne soit important !\nDon't take me seriously. I'm only joking.\tNe me prends pas au sérieux. Je ne fais que blaguer.\nDon't talk about work. We're on vacation.\tNe parlez pas de travail. Nous sommes en vacances.\nDon't worry. I'll teach you how to drive.\tNe te fais pas de soucis ! Je t'enseignerai à conduire.\nDon't worry. We'll figure everything out.\tNe t'en fais pas ! Nous penserons à tout.\nDon't worry. We'll figure everything out.\tNe vous en faites pas ! Nous penserons à tout.\nEarthworms are a gardener's best friends.\tLes vers de terre sont les meilleurs amis d'un jardinier.\nEducation is an investment in the future.\tL'éducation est un investissement pour le futur.\nEven an expert driver can make a mistake.\tMême un conducteur expert peut faire une faute.\nEven though it was very cold, I went out.\tMême s'il faisait très froid, je suis sorti.\nEvery sentence in that book is important.\tChaque phrase de ce livre est importante.\nEvery time I go to see him, he is in bed.\tÀ chaque fois que je vais le voir, il est dans son lit.\nEverybody in the village looks up to him.\tTout le monde l'admire dans le village.\nEverybody makes mistakes once in a while.\tTout le monde commet des erreurs, de temps à autre.\nEverybody seems to be having a good time.\tTout le monde semble passer du bon temps.\nEveryone looked at him like he was crazy.\tTout le monde le regarda comme s'il était fou.\nExcuse me, could we have some more bread?\tExcusez-moi, pourrions-nous avoir plus de pain ?\nFamiliarity breeds contempt and children.\tLa familiarité nourrit le mépris et les enfants.\nFew people can buy such an expensive car.\tPeu de gens peuvent acheter une voiture aussi chère.\nFirst of all, you have to read this book.\tPour commencer, tu dois lire ce livre.\nFirst of all, you have to read this book.\tPour commencer, vous devez lire ce livre.\nFools rush in where angels fear to tread.\tLes fous se précipitent là où les anges craignent de mettre les pieds.\nFor now, I'd like to concentrate on this.\tPour le moment, j'aimerais me concentrer sur ceci.\nFrankly speaking, I don't like your idea.\tFranchement, je n'aime pas votre idée.\nFried food usually doesn't agree with me.\tLa nourriture frite ne me convient pas généralement.\nGerman is the best language in the world.\tL'allemand est la meilleure langue du monde.\nGetting up at six o'clock is okay for me.\tMe lever à six heures ne me pose pas de problème.\nGive me a chance to make you proud of me.\tDonne-moi une chance de te rendre fière de moi.\nGive me some coffee if there is any left.\tDonne-moi du café s'il en reste.\nGive me some coffee if there is any left.\tDonnez-moi du café s'il en reste.\nGive me your word that you won't do that.\tDonne-moi ta parole que tu ne feras pas ça.\nGive up smoking if you want to live long.\tCessez de fumer si vous voulez vivre longtemps !\nGive up smoking if you want to live long.\tArrête de fumer si tu veux vivre longtemps.\nGo say goodbye to them before they leave.\tVa leur dire au revoir avant qu'ils partent.\nGrandmother carried the table by herself.\tGrand-mère a porté la table toute seule.\nGunshot residue was found on Tom's hands.\tDes résidus de tirs d'arme à feu ont été retrouvés sur les mains de Tom.\nHang your jacket on the hook by the door.\tPose ta veste sur le crochet près de la porte.\nHardly anyone thinks that we are sisters.\tPresque personne ne pense que nous sommes sœurs.\nHave you bought your Christmas gifts yet?\tAs-tu déjà acheté tes cadeaux de Noël ?\nHave you bought your Christmas gifts yet?\tAvez-vous déjà acheté vos cadeaux de Noël ?\nHave you ever been in a traffic accident?\tAs-tu déjà été pris dans un accident de la route ?\nHave you ever been in a traffic accident?\tAvez-vous déjà été pris dans un accident de la route ?\nHave you ever fixed your car by yourself?\tAs-tu jamais toi-même réparé ta voiture ?\nHave you ever known them to come on time?\tLes avez-vous déjà vus arriver à l'heure ?\nHave you ever seen the man in this photo?\tAvez-vous jamais vu l'homme sur cette photo ?\nHave you ever seen the man in this photo?\tAs-tu jamais vu l'homme sur cette photo ?\nHave you ever written a computer program?\tAvez-vous jamais écrit de programme informatique ?\nHave you finished cleaning your room yet?\tTu as terminé de nettoyer ta chambre ?\nHave you heard from the rest of the team?\tAs-tu entendu des nouvelles du reste de l'équipe ?\nHave you heard from the rest of the team?\tAvez-vous entendu des nouvelles du reste de l'équipe ?\nHave you said anything about this to Tom?\tAs-tu dis quoi que ce soit de tout ça à Tom ?\nHaving finished the work, he went to bed.\tLe travail fini, il alla au lit.\nHaving finished the work, he went to bed.\tAyant achevé le travail, il alla au lit.\nHaving finished the work, he went to bed.\tAyant achevé le travail, il est allé au lit.\nHaving finished the work, he went to bed.\tLe travail fini, il est allé au lit.\nHe accused me of having stolen his watch.\tIl m'accusa d'avoir volé sa montre.\nHe accused me of having stolen his watch.\tIl m'accusa d'avoir subtilisé sa montre.\nHe accused me of having stolen his watch.\tIl m'accusa d'avoir dérobé sa montre.\nHe became a citizen of the United States.\tIl est devenu un citoyen des États-Unis.\nHe bent over backward to please his wife.\tIl s'est coupé en quatre pour faire plaisir à sa femme.\nHe blew on his fingers to make them warm.\tIl souffla sur ses doigts pour les réchauffer.\nHe borrowed a lot of money from the bank.\tIl a emprunté beaucoup d'argent de la banque.\nHe broke two ribs and punctured his lung.\tIl s'est cassé deux côtes et perforé le poumon.\nHe came to Tokyo in search of employment.\tIl est venu à Tokyo en recherche d'un emploi.\nHe came to Tokyo in search of employment.\tIl vint à Tokyo à la recherche d'un emploi.\nHe cherished the memory of his dead wife.\tIl chérissait le souvenir de sa défunte femme.\nHe decided to seek information elsewhere.\tIl décida de chercher des informations autre part.\nHe defeated his opponent in the election.\tIl a battu son adversaire électoral.\nHe demanded that his salary be increased.\tIl exigea que son salaire fut augmenté.\nHe demanded that his salary be increased.\tIl a exigé que son salaire soit augmenté.\nHe denied having taken part in the crime.\tIl nia avoir pris part au crime.\nHe denied that he had accepted the bribe.\tIl nie avoir accepté un pot-de-vin.\nHe didn't agree with us about the matter.\tIl n'était pas d'accord avec nous sur ce sujet.\nHe does not understand modern technology.\tIl ne comprend pas la technologie moderne.\nHe doesn't have any friends to play with.\tIl n'a pas d'ami avec qui jouer.\nHe doesn't want you to lose a whole week.\tIl ne veut pas que tu perdes une semaine entière.\nHe drew some vertical lines on the paper.\tIl dessina quelques lignes verticales sur le papier.\nHe drinks a glass of water every morning.\tIl boit un verre d'eau tous les matins.\nHe entered the bank disguised as a guard.\tIl pénétra dans la banque, déguisé en garde.\nHe entertained us with jokes all evening.\tIl nous a divertis avec des blagues toute la soirée.\nHe fell down on the ice and hurt his leg.\tIl est tombé sur la glace et s'est blessé la jambe.\nHe fits the description in the newspaper.\tLa description dans le journal lui correspond.\nHe found his father lying in the kitchen.\tIl a trouvé son père étendu dans la cuisine.\nHe gave a positive answer to my question.\tIl a donné une réponse positive à ma question.\nHe goes to sleep with the lights left on.\tIl va dormir en laissant la lumière.\nHe had a problem with the front door key.\tIl a eu un problème avec la clé de la porte d'entrée.\nHe had an accident and fractured his leg.\tIl a eu un accident et s'est fracturé une jambe.\nHe had an accident and fractured his leg.\tIl eut un accident et se fractura la jambe.\nHe had the ambition to be prime minister.\tIl nourrissait l'ambition de devenir premier ministre.\nHe handed in his resignation to his boss.\tIl a remis sa démission à son patron.\nHe has a fear that his brother will fail.\tIl craint que son frère échoue.\nHe has made the company what it is today.\tIl a fait de la société ce qu'elle est aujourd'hui.\nHe hasn't written to them in a long time.\tIl ne leur a pas écrit depuis longtemps.\nHe hurried so he wouldn't miss the train.\tIl s'est dépêché pour ne pas rater le train.\nHe hurried so he wouldn't miss the train.\tIl se dépêcha pour ne pas rater le train.\nHe hurried so he wouldn't miss the train.\tIl se dépêcha afin de ne pas rater le train.\nHe hurried so he wouldn't miss the train.\tIl s'est dépêché afin de ne pas rater le train.\nHe is a diplomat at the American Embassy.\tIl est diplomate à l'ambassade américaine.\nHe is a little light for a sumo wrestler.\tIl est un peu léger pour un sumotori.\nHe is a very irritating critic of others.\tIl est un critique des autres très irritant.\nHe is always giving presents to his wife.\tIl n'arrête pas d'offrir des cadeaux à sa femme.\nHe is always trying to do the impossible.\tIl essaye toujours de faire l'impossible.\nHe is as clever as any of his classmates.\tIl est aussi intelligent que n'importe lequel de ses camarades.\nHe is not as lazy a student as you think.\tCe n'est pas un étudiant aussi paresseux que vous le pensez.\nHe is not running in the coming election.\tIl ne se présente pas aux prochaines élections.\nHe is said to have made a fortune in oil.\tOn dit qu'il a fait fortune dans le pétrole.\nHe is slowly recovering from his illness.\tIl récupère lentement de sa maladie.\nHe is studying history at the university.\tIl étudie l'histoire à l'université.\nHe is too much of a coward to attempt it.\tIl est trop peureux pour le tenter.\nHe kept on writing stories about animals.\tIl ne cessait d'écrire des histoires d'animaux.\nHe kept us waiting for more than an hour.\tIl nous a fait attendre pendant plus d'une heure.\nHe left the room as soon as I entered it.\tIl quitta la pièce dès que j'y pénétrai.\nHe left the room as soon as I entered it.\tIl a quitté la pièce aussitôt que j'y ai pénétré.\nHe likes to dress up as a police officer.\tIl aime se déguiser en officier de police.\nHe likes to go to the beach now and then.\tIl aime aller à la plage de temps en temps.\nHe looked asleep, but he was really dead.\tIl avait l'air endormi, mais il était vraiment mort.\nHe lost both his parents at an early age.\tIl perdit ses deux parents à un jeune âge.\nHe lost both his parents at an early age.\tIl a perdu ses deux parents à un jeune âge.\nHe lost sight of his friend in the crowd.\tIl a perdu son ami de vue dans la foule.\nHe made a little statue out of soft clay.\tIl confectionna une petite statue à base d'argile molle.\nHe made for the door and tried to escape.\tIl se dirigea vers la porte et essaya de s'enfuir.\nHe made up a pretext for a fight with me.\tIl a trouvé un prétexte pour se battre avec moi.\nHe makes friends with everybody he meets.\tIl se lie d'amitié avec tous ceux qu'il rencontre.\nHe might have been sleeping at that time.\tIl se pourrait qu'il dormait à ce moment-là.\nHe offered ten dollars for our old radio.\tIl nous offrit dix dollars en échange de notre vieille radio.\nHe ordered them to release the prisoners.\tIl leur ordonna de libérer les prisonniers.\nHe pays no attention to others' feelings.\tIl ne fait pas attention aux sentiments des autres.\nHe persuaded his wife not to divorce him.\tIl a convaincu sa femme de ne pas divorcer.\nHe promoted the idea of world government.\tIl mit en avant l'idée d'un gouvernement mondial.\nHe promoted the idea of world government.\tIl a soutenu l'idée d'un gouvernement mondial.\nHe promoted the idea of world government.\tIl a encouragé l'idée d'un gouvernement mondial.\nHe promoted the idea of world government.\tIl promut l'idée de gouvernement mondial.\nHe pushed the cat into the swimming pool.\tIl poussa le chat dans la piscine.\nHe pushed the cat into the swimming pool.\tIl a poussé le chat dans la piscine.\nHe ran up the stairs breathing very hard.\tIl a monté l'escalier en respirant très difficilement.\nHe replied that he knew nothing about it.\tIl répondit qu'il ne savait rien de cette affaire.\nHe rushed into the room with his coat on.\tIl fit irruption dans la pièce avec sa veste enfilée.\nHe saved her at the cost of his own life.\tIl l'a sauvé au prix de sa propre vie.\nHe saw the accident on the way to school.\tIl vit l'accident sur le chemin de l'école.\nHe sent his son out to get the newspaper.\tIl a envoyé son fils dehors chercher le journal.\nHe spoke for ten minutes without a pause.\tIl a parlé dix minutes sans interruption.\nHe squeezed the toothpaste out of a tube.\tIl pressa la pâte dentifrice hors du tube.\nHe stays a long time every time he comes.\tIl reste longtemps chaque fois qu'il vient.\nHe stood by me whenever I was in trouble.\tIl s'est tenu à mon côté chaque fois que je me trouvais dans les ennuis.\nHe suggested that I write to her at once.\tIl suggéra que je lui écrive immédiatement.\nHe thought it over and decided not to go.\tAprès y avoir réfléchi, il décida de ne pas y aller.\nHe thought it over and decided not to go.\tIl y réfléchit et décida de ne pas y aller.\nHe told me he wanted to quit the company.\tIl me dit qu'il voulait quitter la société.\nHe told me he wanted to quit the company.\tIl me dit qu'il voulait quitter l'entreprise.\nHe told me that his father was a teacher.\tIl m'a dit que son père était enseignant.\nHe told me to meet him at the restaurant.\tIl me dit de le rencontrer au restaurant.\nHe told me to meet him at the restaurant.\tIl m'a dit de le rencontrer au restaurant.\nHe took off his coat and put it on again.\tIl enleva son manteau et le remit sur lui.\nHe took the coat off because it was warm.\tIl retira son manteau parce qu'il faisait chaud.\nHe tried in vain to open the locked door.\tIl essaya en vain d'ouvrir cette porte verrouillée.\nHe tucked the handkerchief in his pocket.\tIl mit le mouchoir dans sa poche.\nHe tucked the handkerchief in his pocket.\tIl plaça le mouchoir dans sa poche.\nHe tucked the handkerchief in his pocket.\tIl fourra le mouchoir dans sa poche.\nHe tucked the handkerchief in his pocket.\tIl rangea le mouchoir dans sa poche.\nHe turned his back on the old traditions.\tIl tourna le dos aux vieilles traditions.\nHe understands her problems more or less.\tIl comprend plus ou moins ses problèmes.\nHe used every chance to practice English.\tIl mettait à profit chaque occasion d'exercer l'anglais.\nHe wanted to know more about the flowers.\tIl voulait en savoir davantage sur les fleurs.\nHe wants to spend time with his daughter.\tIl veut passer du temps avec sa fille.\nHe was a fresh face in American politics.\tC'était un nouveau visage de la politique américaine.\nHe was a general in the Second World War.\tIl était général pendant la Seconde Guerre Mondiale.\nHe was a general in the Second World War.\tIl était général durant la deuxième guerre mondiale.\nHe was arrested for fencing stolen goods.\tIl a été arrêté pour recel de marchandises volées.\nHe was born poor, but died a millionaire.\tIl est né pauvre mais est mort millionnaire.\nHe was born poor, but died a millionaire.\tIl naquit pauvre, mais mourut millionnaire.\nHe was covered all over with white paint.\tIl était recouvert partout de peinture blanche.\nHe was demoted to the rank of lieutenant.\tIl fut rétrogradé au rang de lieutenant.\nHe was disappointed at not being invited.\tIl fut déçu de ne pas avoir été invité.\nHe was disqualified from the competition.\tIl a été disqualifié de la compétition.\nHe was known to everybody in the village.\tTout le monde le connaissait au village.\nHe was known to everybody in the village.\tIl était connu de chacun dans le village.\nHe was not conscious of my presence here.\tIl n'était pas conscient de ma présence ici.\nHe was robbed of his money on the street.\tOn lui a volé son argent dans la rue.\nHe was standing there with a vacant look.\tIl se tenait là, vide d'expression.\nHe was standing there with a vacant look.\tIl se tenait là, l'air absent.\nHe was the last person I expected to see.\tC'était la dernière personne que je m'attendais à voir.\nHe went out a little before five o'clock.\tIl alla l'extérieur un petit peu avant cinq heures.\nHe went to the store to buy some oranges.\tIl se rendit au magasin pour acheter des oranges.\nHe went traveling in search of adventure.\tIl partit voyager à la recherche d'aventures.\nHe whispered sweet nothings into her ear.\tIl murmura de doux mots à son oreille.\nHe will do his best to finish it on time.\tIl fera de son mieux pour finir à temps.\nHe worked hard to provide for his family.\tIl a travaillé dur pour subvenir aux besoins de sa famille.\nHe works all night and he sleeps all day.\tIl travaille toute la nuit et dort tout le jour.\nHe's a well-known television personality.\tC'est une personnalité bien connue de la télévision.\nHe's always on time for his appointments.\tIl est toujours ponctuel pour ses rendez-vous.\nHe's my best friend. We're like brothers.\tC'est mon meilleur ami. Nous sommes comme des frères.\nHe's very proud of his custom motorcycle.\tIl est très fier de sa moto trafiquée.\nHe's worried about his receding hairline.\tIl s'inquiète de sa calvitie naissante.\nHer coat was too casual for the occasion.\tSon manteau était trop peu habillé pour l'occasion.\nHer grandmother lived to be 88 years old.\tSa grand-mère vécut jusqu'à quatre-vingt-huit ans.\nHer only desire is to see him again soon.\tSon unique souhait est de le revoir bientôt.\nHer son was killed in a traffic accident.\tSon fils a été tué dans un accident de la route.\nHis French is improving little by little.\tSon français s'améliore petit à petit.\nHis accomplishments speak for themselves.\tSes réalisations sont éloquentes.\nHis advice encouraged me to try it again.\tSon avis m'a encouragé à essayer à nouveau.\nHis car isn't here, so he must have gone.\tSa voiture n'est pas ici, donc il doit être parti.\nHis careless driving caused the accident.\tSa conduite négligente a causé l'accident.\nHis company went under during the crisis.\tSon entreprise a coulé durant la crise.\nHis face turned pale on hearing the news.\tIl pâlit en entendant la nouvelle.\nHis finances have changed for the better.\tSes finances se sont améliorées.\nHis grandfather died of cancer last year.\tSon grand-père est mort d'un cancer l'année dernière.\nHis hair is so long it reaches the floor.\tSes cheveux sont si longs qu'ils atteignent le sol.\nHis health is improving little by little.\tSa santé s'améliore petit à petit.\nHis manners are not those of a gentleman.\tIl n'a pas les manières d'un gentleman.\nHis negotiators had disobeyed his orders.\tSes négociateurs s'étaient soustraits à ses ordres.\nHis pessimism depressed those around him.\tSon pessimisme déprimait les gens dans son environnement.\nHis success was largely due to good luck.\tSon succès a été largement dû à la bonne fortune.\nHold on. Just let me collect my thoughts.\tAttends ! Laisse-moi rassembler mes esprits !\nHold still a moment while I fix your tie.\tNe bouge pas un instant, pendant que j'arrange ta cravate.\nHow about my showing you around the town?\tEt si je vous faisais visiter la ville ?\nHow can I make a telephone call to Japan?\tComment faire pour appeler au Japon ?\nHow can I upload a photo to your website?\tComment puis-je télécharger une photo sur votre site web ?\nHow can I upload a photo to your website?\tComment puis-je télécharger une photo sur ton site web ?\nHow can something so wrong feel so right?\tComment quelque chose d'aussi injuste peut sembler si juste ?\nHow certain are you that he's a criminal?\tQuelle certitude avez-vous qu'il soit un criminel ?\nHow certain are you that he's a criminal?\tQuelle certitude as-tu qu'il soit un criminel ?\nHow come I've never seen you here before?\tComment se fait-il que je ne vous ai jamais vu ici auparavant ?\nHow come I've never seen you here before?\tComment se fait-il que je ne vous ai jamais vue ici auparavant ?\nHow come I've never seen you here before?\tComment se fait-il que je ne vous ai jamais vus ici auparavant ?\nHow come I've never seen you here before?\tComment se fait-il que je ne vous ai jamais vues ici auparavant ?\nHow come I've never seen you here before?\tComment se fait-il que je ne t'ai jamais vu ici auparavant ?\nHow come I've never seen you here before?\tComment se fait-il que je ne t'ai jamais vue ici auparavant ?\nHow did you come up with this crazy idea?\tComment en es-tu venu à cette idée folle ?\nHow did you learn how to play the violin?\tComment as-tu appris à jouer au violon ?\nHow do I change my cell phone's ringtone?\tComment puis-je changer la sonnerie de mon téléphone portable?\nHow do you propose we solve this problem?\tComment proposes-tu que nous résolvions ce problème ?\nHow do you propose we solve this problem?\tComment proposez-vous que nous résolvions ce problème ?\nHow long are we supposed to keep this up?\tCombien de temps sommes-nous supposés continuer ça ?\nHow long does it take to go there by bus?\tCombien de temps ça prend pour aller là-bas en bus ?\nHow long have you been playing the drums?\tDepuis combien de temps joues-tu de la batterie ?\nHow long will this cold weather continue?\tCombien de temps va durer ce froid ?\nHow many people were killed in the store?\tCombien de personnes ont été tuées dans le magasin ?\nHow many proverbs have we learned so far?\tCombien de proverbes avons-nous appris jusqu'ici ?\nHow many times a week do you take a bath?\tTu prends un bain combien de fois par semaine ?\nHow many tractors did you sell last week?\tCombien de tracteurs avez-vous vendus la semaine dernière?\nHow much did Tom have to pay for parking?\tCombien Tom a-t-il dû payer pour stationner sur le parking?\nHow much money did you spend on your car?\tCombien d'argent as-tu dépensé pour ta voiture ?\nHow much money did you spend on your car?\tCombien d'argent avez-vous dépensé pour votre voiture ?\nHow much money did you spend on your car?\tCombien d'argent as-tu claqué pour ta voiture ?\nHow often do you change your razor blade?\tÀ quelle fréquence changes-tu tes lames de rasoir ?\nHow often do you have to see the dentist?\tCombien de fois dois-tu aller voir le dentiste ?\nHow on earth can you speak that language?\tComment se fait-il que tu saches parler cette langue　 ?\nHow should you advertise on the Internet?\tComment devrait-on faire de la publicité sur Internet ?\nHow would you feel if your wife left you?\tComment te sentirais-tu si ta femme te quittait ?\nHow would you feel if your wife left you?\tComment vous sentiriez-vous si votre femme vous quittait ?\nHurricane Katrina devastated New Orleans.\tL'ouragan Katrina a dévasté la Nouvelle-Orléans.\nHurricane Katrina devastated New Orleans.\tL'ouragan Katrina dévasta la Nouvelle-Orléans.\nHurry up and bring me something to drink.\tDépêche-toi de m'amener quelque chose à boire !\nHurry up and bring me something to drink.\tDépéchez-vous de m'amener quelque chose à boire !\nHurry up, or you will be late for school.\tDépêche-toi, ou tu vas être en retard pour l'école.\nI agree with what you say to some extent.\tDans une certaine mesure, je suis d'accord avec ce que tu dis.\nI almost forgot that it was his birthday.\tJ'oubliai presque que c'était son anniversaire.\nI always keep a dictionary close at hand.\tJe garde toujours un dictionnaire à portée de main.\nI always rely on him in times of trouble.\tJe me repose toujours sur lui en cas de problème.\nI always take a bath before going to bed.\tJe prends toujours un bain avant d'aller me coucher.\nI am afraid of what the teacher will say.\tJ'ai peur de ce que l'instituteur dira.\nI am confronted with a difficult problem.\tJe suis confronté à un problème difficile.\nI am going to my room, where I can study.\tJe vais retourner dans ma chambre, là-bas je peux étudier.\nI am going to stay with my aunt in Kyoto.\tJe vais rester à Kyôto avec ma tante.\nI am looking forward to seeing you again.\tJe me réjouis de te revoir.\nI am looking forward to seeing you again.\tJe me réjouis de vous revoir.\nI am looking forward to seeing you again.\tJe suis impatient de vous revoir.\nI am looking forward to seeing you again.\tJe suis impatiente de vous revoir.\nI am looking forward to seeing you again.\tJe suis impatient de te revoir.\nI am looking forward to seeing you again.\tJe suis impatiente de te revoir.\nI am not pleased with what you have done.\tJe ne suis pas content de ce que vous avez fait.\nI am sure of his passing the examination.\tJe suis sûr qu'il va réussir son examen.\nI am thinking about buying a new parasol.\tJe songe à acheter un nouveau parasol.\nI am tired of hearing you moan and groan.\tJ'en ai assez de t'entendre gémir et maugréer.\nI appreciate you taking the time to help.\tJe vous suis reconnaissant de prendre le temps de donner un coup de main.\nI asked her if she could go to the party.\tJe lui demandai si elle pouvait venir à la fête.\nI asked her to marry me and she accepted.\tJe lui demandai de m'épouser et elle accepta.\nI asked him many questions about ecology.\tJe lui ai posé beaucoup de questions sur l'écologie.\nI asked my mother if breakfast was ready.\tJ'ai demandé à ma mère si le petit-déjeuner était prêt.\nI asked my mother if breakfast was ready.\tJe demandai à ma mère si le petit-déjeuner était prêt.\nI asked my teacher what I should do next.\tJe demandai à mon professeur ce que je devrais faire ensuite.\nI asked my teacher what I should do next.\tJ'ai demandé à mon prof ce que je devrais faire ensuite.\nI asked my teacher what I should do next.\tJ'ai demandé à mon instituteur ce que je devais faire ensuite.\nI asked my teacher what I should do next.\tJ'ai demandé à mon maître ce que je devais faire ensuite.\nI asked my teacher what I should do next.\tJ'ai demandé à ma maîtresse ce que je devais faire ensuite.\nI asked my teacher what I should do next.\tJ'ai demandé à mon institutrice ce que je devais faire ensuite.\nI assure you this isn't just about money.\tJe vous assure que ce n'est pas qu'une question d'argent.\nI assure you this isn't just about money.\tJe t'assure que ce n'est pas qu'une question d'argent.\nI believe in the immortality of the soul.\tJe crois en l'immortalité de l'âme.\nI believe this fish is a freshwater fish.\tJe crois que ce poisson est un poisson d'eau douce.\nI bet five dollars that he will not come.\tJe parie cinq dollars qu'il ne viendra pas.\nI borrowed the dictionary from my friend.\tJ'ai emprunté le dictionnaire à mon ami.\nI bought a pen for your birthday present.\tJe t'ai acheté un crayon comme cadeau d'anniversaire.\nI called her office, but no one answered.\tJ'ai appelé son travail, mais personne ne répondait.\nI came across your brother on the street.\tJ'ai rencontré par hasard ton frère dans la rue.\nI came early in order to get a good seat.\tJe suis venu tôt afin d'avoir une bonne place.\nI can attest to everything she just said.\tJe peux me porter garant de tout ce qu'elle vient de dire.\nI can barely understand what he's saying.\tJe peux à peine comprendre ce qu'il dit.\nI can cook better than I can play tennis.\tJe sais mieux cuisiner que jouer au tennis.\nI can read English, but I can't speak it.\tJe lis l'anglais mais je ne le parle pas.\nI can see much better with these glasses.\tAvec ces lunettes, je vois bien mieux.\nI can speak Chinese, but I can't read it.\tJe sais parler chinois, mais pas le lire.\nI can speak Chinese, but I can't read it.\tJe peux parler chinois, mais pas le lire.\nI can't be unconcerned about your future.\tJe ne peux pas ne pas être concerné par ton avenir.\nI can't believe I'm going to lose my job.\tJe n'arrive pas à croire que je vais perdre mon boulot.\nI can't believe I'm going to lose my job.\tJe n'arrive pas à croire que je vais perdre mon emploi.\nI can't believe I'm graduating this year.\tJe n'arrive pas à croire que je termine mon cycle cette année.\nI can't believe we're really living here.\tJe n'arrive pas à croire que nous vivions vraiment ici.\nI can't believe we're talking about this.\tJe n'arrive pas à croire que nous parlions de ça.\nI can't believe what we were about to do.\tJe n'arrive pas à croire à ce que nous étions sur le point de faire.\nI can't believe you did that by yourself.\tJe n'arrive pas à croire que tu aies fait cela par tes propres moyens.\nI can't believe you did that by yourself.\tJe n'arrive pas à croire que vous ayez fait cela par vos propres moyens.\nI can't believe you did that by yourself.\tJe n'arrive pas à croire que tu aies fait cela tout seul.\nI can't believe you did that by yourself.\tJe n'arrive pas à croire que tu aies fait cela toute seule.\nI can't believe you did that by yourself.\tJe n'arrive pas à croire que vous ayez fait cela tout seul.\nI can't believe you did that by yourself.\tJe n'arrive pas à croire que vous ayez fait cela tous seuls.\nI can't believe you did that by yourself.\tJe n'arrive pas à croire que vous ayez fait cela toute seule.\nI can't believe you did that by yourself.\tJe n'arrive pas à croire que vous ayez fait cela toutes seules.\nI can't believe you did this by yourself.\tJe n'arrive pas à croire que tu aies fait cela par toi-même.\nI can't believe you did this by yourself.\tJe n'arrive pas à croire que vous ayez fait cela par vous-même.\nI can't believe you turned down that job.\tJe n'arrive pas à croire que tu aies refusé cet emploi.\nI can't believe you turned down that job.\tJe n'arrive pas à croire que tu aies refusé ce poste.\nI can't believe you turned down that job.\tJe n'arrive pas à croire que vous ayez refusé cet emploi.\nI can't believe you turned down that job.\tJe n'arrive pas à croire que vous ayez refusé ce poste.\nI can't believe you've never heard of us.\tJe n'arrive pas à croire que vous n'ayez jamais entendu parler de nous.\nI can't believe you've never heard of us.\tJe n'arrive pas à croire que tu n'aies jamais entendu parler de nous.\nI can't deal with that problem right now.\tJe n'arrive pas à gérer ce problème en ce moment.\nI can't distinguish him from his brother.\tJe n'arrive pas à le distinguer de son frère.\nI can't do it alone. You have to help me.\tJe ne peux le faire seul. Il vous faut m'aider.\nI can't do it alone. You have to help me.\tJe ne peux le faire seule. Il vous faut m'aider.\nI can't do it alone. You have to help me.\tJe ne peux le faire seul. Il te faut m'aider.\nI can't do it alone. You have to help me.\tJe ne peux le faire seule. Il te faut m'aider.\nI can't figure out what she really wants.\tJe n'arrive pas à comprendre ce qu'elle veut vraiment.\nI can't help but feel partly responsible.\tJe ne peux pas m'empêcher de me sentir en partie responsable.\nI can't help but feel partly responsible.\tJe ne peux pas m'empêcher de me sentir partiellement responsable.\nI can't help but feel partly responsible.\tJe ne peux m'empêcher de me sentir partiellement responsable.\nI can't help but feel partly responsible.\tJe ne peux m'empêcher de me sentir en partie responsable.\nI can't imagine what you've gone through.\tJe ne peux imaginer ce que vous avez traversé.\nI can't imagine what you've gone through.\tJe ne peux pas imaginer ce que tu as traversé.\nI can't lift boxes over thirty kilograms.\tJe n'arrive pas à soulever des caisses au-delà de trente kilos.\nI can't make myself understood in German.\tJe ne puis me faire comprendre en allemand.\nI can't put up with the noise any longer.\tJe ne peux plus supporter ce bruit.\nI can't remember the melody to that song.\tJe n'arrive plus à me rappeler la mélodie de cette chanson.\nI can't stand it that she's suffering so.\tJe ne peux supporter qu'elle souffre autant.\nI can't tell you how angry that makes me.\tJe ne peux te dire combien cela m'énerve.\nI can't think of anything to write about.\tJe ne parviens pas à penser à quoi que ce soit à propos de quoi écrire.\nI cannot bring myself to do such a thing.\tJe ne peux me résoudre à faire une telle chose.\nI caught a cold and was in bed yesterday.\tJ'ai contracté un rhume et j'étais alité hier.\nI consider you one of my closest friends.\tJe te considère comme l'un de mes amis les plus proches.\nI consider you one of my closest friends.\tJe vous considère comme l'une de mes amies les plus proches.\nI could rip you apart with my bare hands.\tJe pourrais te dépecer à mains nues.\nI could say nothing in my dad's presence.\tJe ne pouvais rien dire en présence de mon père.\nI decided to go out and explore the town.\tJ’ai décidé de sortir et d’explorer la ville.\nI demand an explanation for this mistake.\tJ'exige une explication pour cette erreur.\nI demanded that they be allowed to leave.\tJ'ai demandé à ce qu'ils soient autorisés à partir.\nI didn't go to school because I was sick.\tJe n'allai pas à l'école parce que j'étais malade.\nI didn't go to school because I was sick.\tJe ne suis pas allé à l'école parce que j'étais malade.\nI didn't have time to watch TV yesterday.\tJe n'ai pas eu le temps de regarder la TV hier.\nI didn't know that you used to work here.\tJ'ignorais que tu avais travaillé ici.\nI didn't know that you used to work here.\tJ'ignorais que vous aviez travaillé ici.\nI didn't take any books from the library.\tJe n'ai pris aucun livre à la bibliothèque.\nI didn't take the time to do it properly.\tJe n'ai pas pris le temps de le faire correctement.\nI didn't think you were going to make it.\tJe ne pensais pas que tu y arriverais.\nI didn't want you to feel you were alone.\tJe ne voulais pas que vous vous sentiez seule.\nI didn't want you to feel you were alone.\tJe ne voulais pas que vous vous sentiez seul.\nI didn't want you to feel you were alone.\tJe ne voulais pas que tu te sentes seule.\nI didn't want you to feel you were alone.\tJe ne voulais pas que tu te sentes seul.\nI didn't want you to feel you were alone.\tJe ne voulais pas que vous vous sentiez seules.\nI didn't want you to feel you were alone.\tJe ne voulais pas que vous vous sentiez seuls.\nI do hope Tom does what he says he'll do.\tJ'espère que Tom fera ce qu'il a dit qu'il ferait.\nI do hope you enjoy the rest of your day.\tJ'espère vraiment que vous allez apprécier le reste de votre journée.\nI do not believe in the existence of God.\tJe ne crois pas en l'existence de Dieu.\nI do not know who is good enough for him.\tJ'ignore qui est assez bon pour lui.\nI don't believe this is really happening.\tJe ne parviens pas à croire que ça se produise réellement.\nI don't believe this is really happening.\tJe ne parviens pas à croire que ce soit réellement en train de se produire.\nI don't believe you. You're always lying.\tJe ne te crois pas. Tu mens tout le temps.\nI don't believe you. You're always lying.\tJe ne vous crois pas. Vous mentez tout le temps.\nI don't care what you do with your money.\tCe que tu fais de ton argent m'est indifférent.\nI don't care what you do with your money.\tCe que vous faites de votre argent m'est indifférent.\nI don't care what you do with your money.\tJe me fiche de ce que tu fais de ton argent.\nI don't care what you do with your money.\tJe me fiche de ce que vous faites de votre argent.\nI don't even know where to start looking.\tJe ne sais même pas où commencer à regarder.\nI don't feel like doing anything tonight.\tJe ne me sens pas faire quoi que ce soit ce soir.\nI don't feel like going out this morning.\tJe n'ai pas envie de sortir, ce matin.\nI don't feel like studying English today.\tJe n'ai pas envie d'étudier l'anglais aujourd'hui.\nI don't feel very well. I should go home.\tJe ne me sens pas très bien. Je devrais rentrer à la maison.\nI don't feel very well. I should go home.\tJe ne me sens pas très bien. Je devrais rentrer chez moi.\nI don't find her particularly attractive.\tJe ne la trouve pas particulièrement attirante.\nI don't have anybody who'll listen to me.\tJe n'ai personne qui m'écoutera.\nI don't have the authority to order that.\tJe ne dispose pas de l'autorité nécessaire pour passer commande de ça.\nI don't have the authority to order that.\tJe ne dispose pas de l'autorité nécessaire pour ordonner cela.\nI don't have the strength to keep trying.\tJe n'ai pas la force de continuer à essayer.\nI don't know about you, but I'm starving.\tJe ne sais pas pour toi mais, moi, je suis affamée.\nI don't know about you, but I'm starving.\tJe ne sais pas ce qu'il en est pour toi mais, moi, je suis affamé.\nI don't know how Tom got my phone number.\tJe ne sais pas comment Tom a eu mon numéro de téléphone.\nI don't know what I've been so afraid of.\tJe ne sais pas ce dont j'étais si effrayé.\nI don't know what I've been so afraid of.\tJe ne sais pas ce qui me faisait si peur.\nI don't know what's going on around here.\tJ'ignore ce qui se passe, par ici.\nI don't know where my French textbook is.\tJ'ignore où se trouve mon manuel de français.\nI don't know whether he is dead or alive.\tJe ne sais pas s'il est mort ou vivant.\nI don't know whether he is dead or alive.\tJ'ignore s'il est mort ou vivant.\nI don't know whether he is dead or alive.\tJe ne sais pas s'il est mort ou en vie.\nI don't know whether he will come or not.\tJe ne sais pas s'il viendra.\nI don't know whether to accept or refuse.\tJe ne sais pas si je dois accepter ou refuser.\nI don't know whether you like her or not.\tJ'ignore si tu l'aimes ou pas.\nI don't know whether you're happy or not.\tJe ne sais pas si tu es heureux ou non.\nI don't know whether you're happy or not.\tJe ne sais pas si vous êtes heureuse ou non.\nI don't know why that should surprise me.\tJ'ignore pourquoi cela devrait me surprendre.\nI don't like to eat fish with many bones.\tJe n'aime pas les poissons qui ont trop d'arêtes.\nI don't like to wear shoes without socks.\tJe n'aime pas porter des chaussures sans chaussettes.\nI don't like to wear shoes without socks.\tJe n'aime pas porter de chaussures sans chaussettes.\nI don't particularly care what you think.\tJe ne me soucie pas particulièrement de ce que vous pensez.\nI don't particularly care what you think.\tJe ne me soucie pas particulièrement de ce que tu penses.\nI don't really understand how that works.\tJe ne comprends pas vraiment comment cela fonctionne.\nI don't remember anything else right now.\tJe ne me souviens de rien de plus maintenant.\nI don't remember asking for your opinion.\tJe ne me rappelle pas avoir requis votre opinion.\nI don't remember asking for your opinion.\tJe ne me rappelle pas avoir requis ton opinion.\nI don't think I could ever do this again.\tJe ne pense pas que je puisse jamais le refaire.\nI don't think I could ever do this again.\tJe ne pense pas pouvoir jamais le refaire.\nI don't think I could ever do this again.\tJe ne pense pas que je pourrais jamais le refaire.\nI don't think anyone noticed what we did.\tJe ne pense pas que quiconque ait remarqué ce que nous avons fait.\nI don't think anyone noticed what we did.\tJe ne pense pas que quiconque ait remarqué ce que nous fîmes.\nI don't think anyone thinks you're crazy.\tJe ne pense pas que quiconque pense que tu sois fou.\nI don't think anyone thinks you're crazy.\tJe ne pense pas que quiconque pense que vous soyez fou.\nI don't think children should drink beer.\tJe ne pense pas que des enfants devraient boire de la bière.\nI don't think she takes after her mother.\tJe ne trouve pas qu'elle ressemble à sa mère.\nI don't think we should drink this water.\tJe ne pense pas que nous devrions boire cette eau.\nI don't think we should go outside today.\tJe ne pense pas que nous devrions sortir aujourd'hui.\nI don't think we should go outside today.\tJe ne pense pas qu'on devrait aller dehors aujourd'hui.\nI don't think we're ready to do that yet.\tJe ne pense pas que nous soyons déjà prêts à faire cela.\nI don't understand a thing you're saying.\tJe ne comprends rien à ce que vous dites.\nI don't want that kind of responsibility.\tJe ne veux pas ce genre de responsabilité.\nI don't want to become like those people.\tJe ne veux pas devenir comme ces gens.\nI don't want to resign my job at present.\tJe ne veux pas démissionner de mon poste en ce moment.\nI don't want you to tell this to anybody.\tJe ne veux pas que vous disiez ceci à qui que ce soit.\nI don't want you to tell this to anybody.\tJe ne veux pas que tu dises ceci à qui que ce soit.\nI don't want you to tell this to anybody.\tJe ne veux pas que tu le dises à qui que ce soit.\nI don't want you to worry about anything.\tJe ne veux pas que vous vous fassiez de soucis à propos de quoi que ce soit.\nI don't want you to worry about anything.\tJe ne veux pas que tu te fasses de soucis à propos de quoi que ce soit.\nI entered someone else's room by mistake.\tJe suis entré dans la chambre de quelqu'un d'autre par inadvertance.\nI eventually want to be fluent in German.\tIn fine, je veux parler l'allemand couramment.\nI eventually want to be fluent in German.\tJe veux en fin de compte parler l'allemand couramment.\nI explained the rules of the game to him.\tJe leur ai expliqué la règle du jeu.\nI failed the exam because I didn't study.\tJ'ai échoué à l'examen parce que je n'ai pas étudié.\nI feel bad about the way things happened.\tJe me sens mal à propos de la manière dont les choses se sont déroulées.\nI feel like I've already seen this movie.\tJ’ai l’impression d’avoir déjà vu ce film.\nI feel like this isn't going to end well.\tJ'ai l'impression que ça ne va pas bien finir.\nI feel terrible about ruining your party.\tJe me sens très mal d'avoir gâché votre fête.\nI feel terrible about ruining your party.\tJe me sens très mal d'avoir gâché ta fête.\nI fell asleep before my father came home.\tJe me suis endormi avant que mon père rentre à la maison.\nI finally found a use for this old thing.\tJ'ai enfin trouvé un usage à cette vieillerie.\nI finished the work in less than an hour.\tJ'ai terminé ce travail en moins d'une heure.\nI forgot that Tom used to live in Boston.\tJ'avais oublié que Tom avait vécu à Boston.\nI found a pair of gloves under the chair.\tJ'ai trouvé une paire de gants sous la chaise.\nI found the picture you were looking for.\tJ'ai trouvé la photo que vous cherchiez.\nI found the picture you were looking for.\tJ'ai trouvé la photo que tu cherchais.\nI found the picture you were looking for.\tJ'ai trouvé le tableau que vous cherchiez.\nI found the picture you were looking for.\tJ'ai trouvé le tableau que tu cherchais.\nI gave a speech at the wedding yesterday.\tJ'ai prononcé un discours au mariage hier.\nI get more than two hundred emails a day.\tJe reçois plus de deux cents courriels par jour.\nI go out with Mary almost every Saturday.\tJe sors avec Mary presque tous les samedis.\nI go to the library at least once a week.\tJe me rends à la bibliothèque au moins une fois par semaine.\nI go to the library at least once a week.\tJe me rends à la bibliothèque au moins une fois la semaine.\nI got this typewriter at a bargain price.\tJ'ai eu cette machine à écrire à prix cassé.\nI guess I could wait a little bit longer.\tJ'imagine que je pourrais attendre un peu plus longtemps.\nI guess you never learned how to do this.\tJe suppose que vous n'avez jamais appris à faire ça.\nI guess you never learned how to do this.\tJe suppose que tu n'as jamais appris à faire ça.\nI had a sharp pain in my chest yesterday.\tHier, j'ai ressenti des douleurs fortes au niveau de la poitrine.\nI had a snack before I went back to work.\tJ'ai pris un en-cas avant de retourner au travail.\nI had a very hard time writing the paper.\tJ'ai eu des difficultés pour écrire ce texte.\nI had no idea of what she intended to do.\tJe n'avais aucune idée de ce qu'elle avait l'intention de faire.\nI had to stifle my anger in front of him.\tJe devais contenir ma colère devant lui.\nI had to swerve to avoid hitting the dog.\tJ'ai dû faire une embardée pour éviter de heurter le chien.\nI had to swerve to avoid hitting the dog.\tIl m'a fallu faire une embardée pour éviter de heurter le chien.\nI hate it when there are a lot of people.\tJe déteste ça quand il y a trop de gens.\nI have a few things I want to make clear.\tIl y a certaines choses que je veux clarifier.\nI have been his greatest fan all my life.\tJ'ai été son plus grand fan toute ma vie.\nI have been reading this for a few hours.\tIl y a quelques heures que je lis ça.\nI have been writing letters all day long.\tJ'ai écrit des lettres toute la journée.\nI have made many mistakes in my lifetime.\tJ'ai fait beaucoup d'erreurs dans ma vie.\nI have made up my mind to propose to her.\tJe me suis décidé à lui demander sa main.\nI have many friends in foreign countries.\tJ'ai beaucoup d'amis à l'étranger.\nI have my supper at a quarter past seven.\tJe dîne à sept heures et quart.\nI have no clue what you're talking about.\tJe n'ai aucune idée de ce dont tu parles.\nI have no clue what you're talking about.\tJe n'ai aucune idée de ce dont vous parlez.\nI have no idea what that guy is thinking.\tJe n'ai aucune idée de ce que pense ce type.\nI have no idea what you're talking about.\tJe n'ai aucune idée de quoi tu parles.\nI have no idea what you're talking about.\tJe n'ai aucune idée de quoi vous parlez.\nI have no recollection of seeing the man.\tJe n'ai aucun souvenir d'avoir vu l'homme.\nI have no time to explain this in detail.\tJe n'ai pas le temps de l'expliquer en détail.\nI have no time to help you with the work.\tJe n'ai pas le temps pour t'aider dans tes devoirs.\nI have nothing to do with their troubles.\tJe n'ai rien à voir avec leurs problèmes.\nI have settled on green for the curtains.\tJ'ai choisi le vert pour les rideaux.\nI have so many things I want you to know.\tIl y a tant de choses que je veux que vous sachiez.\nI have so many things I want you to know.\tIl y a tant de choses que je veux que tu saches.\nI have something that might interest you.\tJe détiens quelque chose qui pourrait vous intéresser.\nI have something that might interest you.\tJe détiens quelque chose qui pourrait t'intéresser.\nI have the complete works of Shakespeare.\tJe possède les œuvres complètes de Shakespeare.\nI have to buy a new carpet for this room.\tJe dois acheter un nouveau tapis pour cette pièce.\nI have to buy a new carpet for this room.\tJe dois acheter une nouvelle moquette pour cette pièce.\nI have to choose my words very carefully.\tIl me faut choisir mes mots avec le plus grand soin.\nI have to leave early to catch the train.\tJe dois partir tôt pour attraper le train.\nI haven't been sleeping very much lately.\tJe n'ai pas beaucoup dormi, ces derniers temps.\nI haven't decided which job to apply for.\tJe n'ai pas décidé quel emploi solliciter.\nI haven't decided which job to apply for.\tJe n'ai pas décidé à quel poste me porter candidat.\nI haven't eaten asparagus in a long time.\tJe n'ai pas mangé d'asperges depuis longtemps.\nI haven't had a barbecue for a long time.\tJe n'ai pas mangé de barbecue depuis longtemps.\nI haven't had time to thank you properly.\tJe n'ai pas eu le temps de vous remercier comme il se doit.\nI haven't had time to thank you properly.\tJe n'ai pas eu le temps de te remercier comme il se doit.\nI haven't seen him for about three years.\tJe ne l'ai pas vu depuis environ trois ans.\nI haven't talked to anyone but Tom today.\tJe n'ai parlé à personne d'autre que Tom aujourd'hui.\nI heard my parents whispering last night.\tJ'ai entendu mes parents chuchoter la nuit dernière.\nI heard that he left town and moved east.\tJ'ai entendu dire qu'il a quitté la ville et a déménagé à l'est.\nI heard you received an award last month.\tJ'ai entendu dire que vous aviez reçu un prix le mois dernier.\nI heard you whistling. You must be happy.\tJe vous ai entendue siffler. Vous devez être heureuse.\nI heard you whistling. You must be happy.\tJe vous ai entendu siffler. Vous devez être heureux.\nI heard you whistling. You must be happy.\tJe vous ai entendues siffler. Vous devez être heureuses.\nI heard you whistling. You must be happy.\tJe vous ai entendus siffler. Vous devez être heureux.\nI heard you whistling. You must be happy.\tJe t'ai entendu siffler. Tu dois être heureux.\nI heard you whistling. You must be happy.\tJe t'ai entendue siffler. Tu dois être heureuse.\nI hope the police catch whoever did this.\tJ'espère que la police attrapera quiconque a commis ça.\nI hope the weather will be fine tomorrow.\tJ'espère qu'il fera beau demain.\nI hope things will turn out well for you.\tJ'espère que les choses iront bien pour toi.\nI hope things will turn out well for you.\tJ'espère que les choses tourneront bien pour vous.\nI hope you like what I've just given you.\tJ'espère que vous appréciez ce que je viens de vous donner.\nI hope you like what I've just given you.\tJ'espère que tu apprécies ce que je viens de te donner.\nI hope you're not going to disappoint me.\tJ'espère que tu ne me décevras pas.\nI hope you're not going to disappoint me.\tJ'espère que vous ne me décevrez pas.\nI inquired about the book in many stores.\tJe me suis enquis du livre dans plusieurs magasins.\nI inquired about the book in many stores.\tJe me suis renseigné sur le livre dans plusieurs magasins.\nI just don't want anyone to be mad at me.\tJe ne veux juste pas que quiconque soit en colère après moi.\nI just don't want to say the wrong thing.\tJe veux juste ne pas dire la mauvaise chose.\nI just had to see you guys before I left.\tIl fallait que je vous voie, les mecs, avant que je parte.\nI just hope nothing goes wrong this time.\tJ'espère juste que rien ne va mal se passer cette fois-ci.\nI just think we need to be extra careful.\tJe pense simplement que nous devons faire preuve de la plus grande prudence.\nI just think we need to be extra careful.\tJe pense simplement qu'il nous faut faire preuve de la plus grande prudence.\nI just want everybody to like each other.\tJe veux juste que tout le monde s'aime.\nI just want to be left alone for a while.\tJe veux juste qu'on me laisse seul, un moment.\nI just want to be left alone for a while.\tJe veux juste qu'on me laisse seule, un moment.\nI just want to make it home in one piece.\tJe veux juste rentrer à la maison en un seul morceau.\nI just want to make sure it's not poison.\tJe veux juste m'assurer que ce n'est pas du poison.\nI just want to watch a little television.\tJe veux juste regarder un peu la télévision.\nI just want you to know that I regret it.\tJe veux simplement que tu saches que je le regrette.\nI just want you to remember this feeling.\tJe veux juste que tu te rappelles cette sensation.\nI just wanted to ask you a few questions.\tJe voulais seulement vous poser quelques questions.\nI just wanted to ask you a few questions.\tJe voulais juste te poser quelques questions.\nI just went home without saying anything.\tJe suis seulement rentré à la maison sans rien dire.\nI keep a daily record of the temperature.\tJe note quotidiennement la température.\nI knew I wanted you the moment I saw you.\tJ'ai su que je te voulais au moment même où je t'ai vu.\nI knew I wanted you the moment I saw you.\tJ'ai su que je te voulais au moment même où je t'ai vue.\nI knew I wanted you the moment I saw you.\tJ'ai su que je vous voulais au moment même où je vous ai vu.\nI knew I wanted you the moment I saw you.\tJ'ai su que je vous voulais au moment même où je vous ai vue.\nI knew I wanted you the moment I saw you.\tJ'ai su que je vous voulais au moment même où je vous ai vus.\nI knew I wanted you the moment I saw you.\tJ'ai su que je vous voulais au moment même où je vous ai vues.\nI know that this is important for us all.\tJe sais que c'est important pour nous tous.\nI know that this is important for us all.\tJe sais que c'est important pour nous toutes.\nI know that wasn't the answer you wanted.\tJe sais que ce n'était pas la réponse que tu voulais.\nI know that wasn't the answer you wanted.\tJe sais que ce n'était pas la réponse que vous vouliez.\nI know the exact time when that happened.\tJe sais exactement le moment auquel c'est arrivé.\nI know where they will be this afternoon.\tJe sais où ils seront cet après-midi.\nI know where they will be this afternoon.\tJe sais où elles seront cet après-midi.\nI know you'd prefer a bottle of red wine.\tJe sais que tu préfèrerais une bouteille de vin rouge.\nI know you'd prefer a bottle of red wine.\tJe sais que vous préfèreriez une bouteille de vin rouge.\nI like music, especially classical music.\tJ'aime la musique, en particulier la musique classique.\nI like the kind of music that Tom writes.\tJ'aime le genre de musique que Tom écrit.\nI like writing songs about relationships.\tJ'aime les chansons qui traitent de relations.\nI live within walking distance of school.\tD'où j'habite, on peut se rendre à pied à l'école.\nI look forward to corresponding with you.\tAu plaisir de correspondre avec vous.\nI look forward to meeting you again soon.\tJe me réjouis de vous revoir bientôt.\nI look forward to reading your new novel.\tJe suis impatient de lire votre nouveau roman.\nI look forward to reading your new novel.\tJe suis impatient de lire ton nouveau roman.\nI look forward to reading your new novel.\tJe suis impatiente de lire votre nouveau roman.\nI look forward to reading your new novel.\tJe suis impatiente de lire ton nouveau roman.\nI look forward to reading your new novel.\tJe me réjouis par avance de lire votre nouveau roman.\nI look forward to reading your new novel.\tJe me réjouis par avance de lire ton nouveau roman.\nI love to hear a grandfather clock chime.\tJ'adore entendre carillonner une horloge à pendule.\nI love to hear a grandfather clock chime.\tJ'adore entendre carillonner une horloge comtoise.\nI made a bet that she would win the game.\tJ'ai parié qu'elle gagnerait la partie.\nI majored in philosophy at my university.\tJe me suis spécialisé en philosophie, à mon université.\nI majored in philosophy at my university.\tJe me suis spécialisée en philosophie, à l'université.\nI make it a rule to study math every day.\tJ'ai pour principe d'étudier les mathématiques chaque jour.\nI meant to cancel your appointment today.\tJ'avais l'intention d'annuler votre rendez-vous d'aujourd'hui.\nI meet him at the club from time to time.\tJe le rencontre au club de temps en temps.\nI meet him at the club from time to time.\tJe le rencontre au cercle, de temps à autre.\nI missed the train by only a few minutes.\tJe n'ai manqué le train que de quelques minutes.\nI must have my work finished by tomorrow.\tJe dois finir mon travail avant demain.\nI need your answer by the end of the day.\tJ'ai besoin de ta réponse avant la fin de la journée.\nI need your answer by the end of the day.\tJ'ai besoin de votre réponse avant la fin de la journée.\nI never thought Tom would follow me here.\tJe n’aurais jamais pensé que Tom me suivrait jusqu’ici.\nI often listened to him speak in English.\tJe l'ai souvent écouté parler anglais.\nI often look up words in that dictionary.\tJe recherche souvent des mots dans ce dictionnaire.\nI often look up words in that dictionary.\tJe cherche souvent des mots dans ce dictionnaire.\nI often played baseball when I was young.\tJeune, je jouais souvent au base-ball.\nI only eat vegetables that I grow myself.\tJe ne mange que des légumes que je fais moi-même pousser.\nI only eat vegetables that I grow myself.\tJe ne mange que des légumes que je cultive moi-même.\nI only hope we can get this done on time.\tJ'espère seulement que nous puissions faire faire ça à temps.\nI passed the examination with difficulty.\tJ'ai réussi mon examen de justesse.\nI persuaded him into accepting the offer.\tJe l'ai persuadé d'accepter la proposition.\nI persuaded him that he should try again.\tJe l'ai persuadé d'essayer à nouveau.\nI plan to reply to his letter right away.\tJe prévois de répondre immédiatement à sa lettre.\nI played trumpet in our high school band.\tJe jouais de la trompette dans notre groupe de lycée.\nI put my gloves on inside out by mistake.\tJ'ai mis mes gants à l'envers, par erreur.\nI put on my favorite dress for the party.\tJ'ai mis ma robe préférée pour la fête.\nI ran across an old friend near the bank.\tJ'ai croisé un vieil ami près de la banque.\nI really didn't want to bother you again.\tJe ne voulais vraiment pas vous ennuyer à nouveau.\nI really didn't want to bother you again.\tJe ne voulais vraiment pas t'ennuyer à nouveau.\nI really didn't want to go to work today.\tJe ne voulais vraiment pas aller au travail, aujourd'hui.\nI really do hope we can still be friends.\tJ'espère vraiment que nous puissions être encore amis.\nI really do hope we can still be friends.\tJ'espère vraiment que nous puissions être encore amies.\nI really don't have anything else to say.\tJe n'ai vraiment rien à dire d'autre.\nI really don't have anything else to say.\tJe n'ai vraiment rien d'autre à dire.\nI really don't have anything else to say.\tJe n'ai vraiment pas quoi que ce soit d'autre à dire.\nI really don't have anything else to say.\tJe n'ai vraiment pas quoi que ce soit à ajouter.\nI really just don't like Christmas music.\tJe n'aime simplement vraiment pas la musique de Noël.\nI really would rather be alone right now.\tJe préférerais vraiment être seule, à l'instant.\nI really would rather be alone right now.\tJe préférerais vraiment être seul, à l'instant.\nI received a letter in English yesterday.\tJ'ai reçu une lettre en anglais hier.\nI received this electric knife as a gift.\tJ'ai reçu ce couteau électrique comme cadeau.\nI remember having seen this movie before.\tJe me souviens avoir déjà vu ce film auparavant.\nI remember mailing your letter yesterday.\tJe me souviens avoir posté ta lettre hier.\nI remember seeing her once on the street.\tJe me rappelle l'avoir vue une fois dans la rue.\nI respect those who always do their best.\tJe respecte ceux qui font toujours de leur mieux.\nI saw a dirty dog coming into the garden.\tJ'ai vu un chien crotté rentrer dans le jardin.\nI saw the light at the end of the tunnel.\tJ'ai vu la lumière au bout du tunnel.\nI saw the teacher walk across the street.\tJe vis l'instituteur traverser la rue.\nI seasoned the fish with salt and pepper.\tJ'ai assaisonné le poisson avec du sel et du poivre.\nI should've listened to Tom more closely.\tJ'aurais dû écouter Tom plus attentivement.\nI shouldn't have eaten that. I feel sick.\tJe n'aurais pas dû manger ça. Je me sens malade.\nI simply wanted to see what was going on.\tJe voulais juste voir ce qui se passait.\nI simply wanted to see what was going on.\tJe voulais juste voir ce qui était en train de se passer.\nI spend a lot of time listening to music.\tJe passe beaucoup de temps à écouter de la musique.\nI spent my vacation in a foreign country.\tJ'ai passé mes vacances dans un pays étranger.\nI spent the whole day reading that novel.\tJ'ai passé la journée entière à lire le roman.\nI spent the whole day reading that novel.\tJ'ai passé toute la journée à lire ce roman.\nI spent the whole day thinking about Tom.\tJ'ai passé la journée entière à penser à Tom.\nI stepped aside so that he could come in.\tJe fis un pas de côté pour lui permettre d'entrer.\nI still don't know what I'm going to say.\tJ'ignore encore ce que je vais dire.\nI still have the book from last semester.\tJ'ai encore le livre du semestre dernier.\nI stopped and waited for the car to pass.\tJe m'arrêtai et attendis jusqu'à ce que la voiture passe.\nI suggest that you try to get some sleep.\tJe suggère que tu essaies de prendre un peu de sommeil.\nI suggest that you try to get some sleep.\tJe suggère que vous essayiez de prendre un peu de sommeil.\nI suggested that we should start at once.\tJ'ai suggéré que nous commencions immédiatement.\nI suppose you already know that's my car.\tJe suppose que tu sais déjà qu'il s'agit de ma voiture.\nI suppose you already know that's my car.\tJe suppose que vous savez déjà qu'il s'agit de ma voiture.\nI suppose you've already bought a ticket.\tJe suppose que tu as déjà acheté un billet.\nI suppose you've already bought a ticket.\tJe suppose que vous avez déjà acheté un billet.\nI take it for granted that you will join.\tJe prends pour acquis que vous vous joindrez à nous.\nI take it for granted that you will join.\tJe prends pour acquis que tu te joindras à nous.\nI think I will take a vacation this week.\tJe pense que je prendrai des vacances cette semaine.\nI think I'll start with a bottle of beer.\tJe pense que je vais commencer par une bouteille de bière.\nI think Tom and John are identical twins.\tJe pense que Tom et Jean sont de vrais jumeaux.\nI think Tom should learn to speak French.\tJe pense que Tom devrait apprendre à parler français.\nI think it's cruel to keep a cat indoors.\tJe pense qu'il est cruel de garder un chat à l'intérieur.\nI think it's important to tell the truth.\tJe pense qu'il est important de dire la vérité.\nI think it's sad to not have any friends.\tJe pense qu'il est triste de n'avoir aucun ami.\nI think it's time for me to mow the lawn.\tJe pense qu'il est temps pour moi de tondre la pelouse.\nI think it's time for me to take a break.\tJe pense qu'il est temps pour moi de prendre une pause.\nI think that he's probably not a bad boy.\tJe pense qu'il n'est probablement pas un mauvais garçon.\nI think that he's probably not a bad boy.\tJe pense qu'il n'est probablement pas un méchant garçon.\nI think that what you need now is a kiss.\tJe pense que ce dont tu as besoin maintenant est un baiser.\nI think that what you need now is a kiss.\tJe pense que ce dont vous avez besoin maintenant est un baiser.\nI think there's something wrong with you.\tJe pense qu'il y a un problème, chez toi.\nI think we may have met somewhere before.\tJe pense que nous nous sommes peut-être rencontrés quelque part auparavant.\nI think we may have met somewhere before.\tJe pense que nous nous sommes peut-être rencontrées quelque part auparavant.\nI think we may have met somewhere before.\tJe pense qu'il se peut que nous nous soyons rencontrés quelque part auparavant.\nI think we may have met somewhere before.\tJe pense qu'il se peut que nous nous soyons rencontrées quelque part auparavant.\nI think we need to find out where Tom is.\tJe pense que nous devons localiser Tom.\nI think we shouldn't have gotten married.\tJe pense que nous n'aurions pas dû nous marier.\nI think we've wasted enough of your time.\tJe pense que nous avons gaspillé assez de votre temps.\nI think we've wasted enough of your time.\tJe pense que nous avons gaspillé assez de ton temps.\nI think you might want to check this out.\tVous devriez peut-être vérifier ceci.\nI think you're going to want to sit down.\tJe pense que tu vas vouloir t'asseoir.\nI think you're going to want to sit down.\tJe pense que vous allez vouloir vous asseoir.\nI thought I heard someone in the kitchen.\tJe pensais avoir entendu quelqu'un dans la cuisine.\nI thought I told you not to make trouble.\tJe pensais t'avoir dit de ne pas causer de problèmes.\nI thought it must be something like that.\tJ'ai pensé qu'il devait s'agir de quelque chose du genre.\nI thought it must be something like that.\tJ'ai pensé qu'il devait s'agir de quelque chose comme ça.\nI thought that I told you to stay behind.\tJe pensais t'avoir dit de rester en arrière.\nI thought that I told you to stay behind.\tJe pensais vous avoir dit de rester en arrière.\nI thought that was the right thing to do.\tJ'ai pensé que c'était la chose à faire.\nI thought there was somebody in the room.\tJe pensais qu'il y avait quelqu'un dans la pièce.\nI thought this present might be from you.\tJ'ai pensé que ce cadeau pouvait être de toi.\nI thought this present might be from you.\tJ'ai pensé que ce cadeau pouvait être de vous.\nI thought we could use the cloth napkins.\tJ'ai pensé que nous pourrions utiliser les serviettes en tissu.\nI thought we could use the cloth napkins.\tJ'ai pensé que nous pourrions utiliser les serviettes de table en tissu.\nI thought you didn't like romance movies.\tJe pensais que tu n'aimais pas les films romantiques.\nI thought you didn't like romance movies.\tJe pensais que vous n'aimiez pas les films romantiques.\nI thought you might like some hot coffee.\tJ'ai pensé que vous aimeriez peut-être du café chaud.\nI thought you might like some hot coffee.\tJ'ai pensé que tu aimerais peut-être du café chaud.\nI thought you went to your room to sleep.\tJe pensais que tu étais allé dans ta chambre pour dormir.\nI thought you were against this proposal.\tJe pensais que vous étiez contre cette proposition.\nI thought you were against this proposal.\tJe pensais que tu étais contre cette proposition.\nI thought you were going to fix the sink.\tJe pensais que tu allais réparer l'évier.\nI thought you were going to fix the sink.\tJe pensais que vous alliez réparer l'évier.\nI thought you'd wear something like that.\tJe pensais que tu porterais quelque chose de similaire.\nI thought you'd wear something like that.\tJe pensais que vous porteriez quelque chose de similaire.\nI threw the strange package on the table.\tJe jetai l'étrange paquet sur la table.\nI throw myself on the mercy of the court.\tJe me rends à la mansuétude de la cour.\nI throw myself on the mercy of the court.\tJe m'en remets à la clémence de la cour.\nI told her what he was doing in her room.\tJe lui ai raconté ce qu'il faisait dans sa chambre.\nI told him to work hard or he would fail.\tJe lui dis de travailler dur s'il ne veut pas échouer.\nI told them what I thought of their plan.\tJe leur ai dit ce que je pensais de leur plan.\nI told you to stay away from my daughter.\tJe t'ai dit de te tenir à l'écart de ma fille.\nI told you to stay away from my daughter.\tJe vous ai dit de vous tenir à l'écart de ma fille.\nI tried to take our dog out of our house.\tJ'ai essayé de mettre notre chien dehors.\nI tried to take our dog out of our house.\tJ'ai essayé de sortir notre chien de notre maison.\nI used to play tennis with him on Sunday.\tJ'avais l'habitude de jouer au tennis avec lui le dimanche.\nI used to play tennis with him on Sunday.\tJe jouais au tennis avec lui le dimanche.\nI want Tom to go get me something to eat.\tJe veux que Tom aille me chercher quelque chose à manger.\nI want a cup of coffee and I want it now.\tJe veux une tasse de café et je la veux maintenant.\nI want everything to work out just right.\tJe veux que tout fonctionne parfaitement.\nI want to ask them when their big day is.\tJe veux leur demander quand est leur grand jour.\nI want to ask them when their big day is.\tJe veux leur demander quand est le jour de leur mariage.\nI want to ask them when their big day is.\tJe veux leur demander à quand est fixé le jour de leur mariage.\nI want to be with you more than anything.\tJe veux être avec vous plus que tout autre chose.\nI want to be with you more than anything.\tJe veux être avec toi plus que tout autre chose.\nI want to discuss this with your manager.\tJe veux discuter de ceci avec votre supérieur.\nI want to discuss this with your manager.\tJe veux discuter de ceci avec votre directeur.\nI want to discuss this with your manager.\tJe veux discuter de ceci avec ton supérieur.\nI want to examine the body of the victim.\tJe veux examiner le corps de la victime.\nI want to give you the chance to do that.\tJe veux vous procurer l'occasion de faire ça.\nI want to give you the chance to do that.\tJe veux te procurer l'occasion de faire ça.\nI want to go over these numbers with you.\tJe veux parcourir ces chiffres avec vous.\nI want to go over these numbers with you.\tJe veux parcourir ces chiffres avec toi.\nI want to go to Australia with my family.\tJe veux aller en Australie avec ma famille.\nI want to have a proper house and garden.\tJe veux avoir une vraie maison avec un jardin.\nI want to know how this happened and why.\tJe veux savoir comment c'est arrivé et pourquoi.\nI want to know what's going on out there.\tJe veux savoir ce qui se passe là-dehors.\nI want to know who threw the first punch.\tJe veux savoir qui a donné le premier coup.\nI want to make one thing perfectly clear.\tJe veux parfaitement clarifier une chose.\nI want to see you in my office right now.\tJe veux te voir immédiatement dans mon bureau.\nI want to see you in my office right now.\tJe veux vous voir immédiatement dans mon bureau.\nI want to sort this out once and for all.\tJe veux démêler ça une fois pour toutes.\nI want to spend more time alone with you.\tJe veux passer davantage de temps, seul avec vous.\nI want to thank you for what you've done.\tJe veux vous remercier pour ce que vous avez fait.\nI want to thank you for what you've done.\tJe veux te remercier pour ce que tu as fait.\nI want to wait and see what Tom proposes.\tJe veux attendre et voir ce que Tom propose.\nI want you to stay here until I get back.\tJe veux que tu restes ici jusqu'à ce que je revienne.\nI want your answer by the end of the day.\tJe veux votre réponse pour la fin de la journée.\nI want your answer by the end of the day.\tJe veux ta réponse pour la fin de la journée.\nI wanted to make a good first impression.\tJe voulais donner une bonne première impression.\nI was a high school student at that time.\tJ'étais lycéen à l'époque.\nI was about to leave when the phone rang.\tJ'allais sortir quand le téléphone a sonné.\nI was about to leave when you telephoned.\tJ'allais partir quand tu as appelé.\nI was about to leave when you telephoned.\tJ'étais sur le point de partir quand vous avez téléphoné.\nI was accused of eating the boss's lunch.\tJ'ai été accusé d'avoir mangé le déjeuner du patron.\nI was afraid of getting lost in the dark.\tJ'avais peur de me perdre dans le noir.\nI was attacked and robbed on my way home.\tJ'ai été attaqué et dévalisé sur le chemin de la maison.\nI was fortunate to make his acquaintance.\tJ'eus la chance de faire sa connaissance.\nI was going out, when the telephone rang.\tJe sortais juste lorsque le téléphone sonna.\nI was just about to come looking for you.\tJ'étais sur le point de venir te chercher.\nI was just about to come looking for you.\tJ'étais sur le point de venir vous chercher.\nI was kind of surprised to see Tom there.\tJ'ai été en quelque sorte surpris de voir Tom là.\nI was more than a little shocked by this.\tJe fus plus qu'un peu choqué par cela.\nI was more than a little shocked by this.\tJe fus plus qu'un peu choquée par cela.\nI was more than a little shocked by this.\tJ'ai été plus qu'un peu choqué par cela.\nI was more than a little shocked by this.\tJ'ai été plus qu'un peu choquée par cela.\nI was right on the spot when it happened.\tJ'étais sur le lieu du crime quand c''est arrivé.\nI was surprised by his sudden appearance.\tJe fus surpris par son apparition soudaine.\nI was surprised by his sudden appearance.\tJe fus surprise par sa soudaine apparition.\nI was surprised by his sudden appearance.\tJ'ai été surpris par sa soudaine apparition.\nI was surprised by his sudden appearance.\tJ'ai été surprise par sa soudaine apparition.\nI was surprised by the news this morning.\tJ'ai été surpris par les nouvelles, ce matin.\nI was surprised by the news this morning.\tJ'ai été surprise par les nouvelles, ce matin.\nI was thinking about buying a new camera.\tJe pensais à acheter un nouvel appareil photo.\nI was unable to go to his birthday party.\tJe me trouvai dans l'incapacité de me rendre à sa fête d'anniversaire.\nI was unable to go to his birthday party.\tJe me suis trouvée dans l'incapacité de me rendre à sa fête d'anniversaire.\nI was unable to go to his birthday party.\tJe me suis trouvé dans l'incapacité de me rendre à sa fête d'anniversaire.\nI was unable to go to his birthday party.\tJe fus dans l'incapacité de me rendre à sa fête d'anniversaire.\nI was unable to go to his birthday party.\tJ'ai été dans l'incapacité de me rendre à sa fête d'anniversaire.\nI was watching TV at this time yesterday.\tJe regardais la télévision hier à la même heure.\nI wasn't aware that Tom was unhappy here.\tJe ne savais pas que Tom n'était pas heureux ici.\nI wasn't conscious of anyone watching me.\tJe n'étais pas conscient que quiconque me regardait.\nI wasn't expecting that to happen at all.\tJe ne m'attendais pas du tout à ce que cela arrive.\nI wasn't in time for school this morning.\tJe n'étais pas à l'heure pour l'école ce matin.\nI watched television instead of studying.\tJe regardais la télévision au lieu d'étudier.\nI will ask him where he went last Sunday.\tJe vais lui demander où il est allé dimanche dernier.\nI will badly miss you if you leave Japan.\tVous me manquerez terriblement si vous quittez le Japon.\nI will give you a bike for your birthday.\tJe te donnerai un vélo pour ton anniversaire.\nI will give you what little money I have.\tJe vous donnerai le peu d'argent que j'ai.\nI will go out after I finish my homework.\tJe sortirai après avoir fini mes devoirs.\nI will meet you at the station at 10 a.m.\tJe vous retrouve à la gare à 10 heures du matin.\nI wish I could live in a house that nice.\tJ'aimerais pouvoir vivre dans une maison aussi chouette.\nI wish I had a roommate to hang out with.\tJ'aimerais avoir un compagnon de chambrée pour passer le temps avec lui.\nI wish I had studied harder for the test.\tSi seulement j'avais étudié plus dur pour le devoir.\nI wish Tom would help me weed the garden.\tJ'espère que Tom m'aidera à désherber le jardin.\nI wish Tom would spend more time at home.\tJ'aimerais que Tom passe plus de temps à la maison.\nI wish you both happiness and prosperity.\tJe vous souhaite à tous les deux bonheur et prospérité.\nI wish you did not have so many problems.\tJe regrette que tu aies autant d'ennuis.\nI won't be able to attend the conference.\tJe ne vais pas pouvoir assister à la conférence.\nI wonder if anybody knows how to do this.\tJe me demande s'il y a quelqu'un qui sait faire ça.\nI wonder if she is staying at that hotel.\tJe me demande si elle séjourne dans cet hôtel.\nI wonder what all of them have in common.\tJe me demande ce qu'ils ont tous en commun.\nI wonder what all of them have in common.\tJe me demande ce qu'elles ont toutes en commun.\nI wore a coat so I wouldn't catch a cold.\tJe portais un manteau, pour ne pas attraper froid.\nI would like for him to write more often.\tJe souhaiterais qu'il écrive plus fréquemment.\nI would like to be a pilot in the future.\tJe voudrais être pilote dans le futur.\nI would like to talk to him face to face.\tJ'aimerais lui parler face à face.\nI would like to talk to him face to face.\tJe voudrais lui parler entre quatre-z-yeux.\nI would love to go to the dance with you.\tJ'adorerais aller au bal avec toi.\nI would love to go to the dance with you.\tJ'adorerais aller au bal avec vous.\nI would rather feed my dog before we eat.\tJe préférerais nourrir mon chien avant que nous mangions.\nI would really like to explore this cave.\tJ'aimerais vraiment explorer cette grotte.\nI'd be lying if I said I didn't like Tom.\tJe mentirais si je disais que je n'aimais pas Tom.\nI'd buy a larger TV if I had room for it.\tJ'achèterais une télévision plus grande si j'avais de la place pour.\nI'd like to ask you a few more questions.\tJ'aimerais te poser quelques questions supplémentaires.\nI'd like to ask you a few more questions.\tJ'aimerais te poser quelques questions additionnelles.\nI'd like to ask you a few more questions.\tJ'aimerais vous poser quelques questions supplémentaires.\nI'd like to ask you a few more questions.\tJ'aimerais vous poser quelques questions additionnelles.\nI'd like to ask you about how to do that.\tJ'aimerais te demander comment faire cela.\nI'd like to ask you about how to do that.\tJ'aimerais vous demander comment faire cela.\nI'd like to be woken up tomorrow at 6:30.\tJ'aimerais être réveillé demain à six heures trente.\nI'd like to be woken up tomorrow at 6:30.\tJ'aimerais être réveillé demain à six heures et demie.\nI'd like to be woken up tomorrow at 6:30.\tJ'aimerais être réveillée demain à six heures trente.\nI'd like to come along if you don't mind.\tJ'aimerais vous accompagner, si vous n'y voyez pas d'inconvénient.\nI'd like to come along if you don't mind.\tJ'aimerais les accompagner, si vous n'y voyez pas d'inconvénient.\nI'd like to come along if you don't mind.\tJ'aimerais t'accompagner, si tu n'y vois pas d'inconvénient.\nI'd like to have a room with a nice view.\tJ'aimerais disposer d'une chambre avec une jolie vue.\nI'd like to have dinner with you tonight.\tJ'aimerais dîner avec toi ce soir.\nI'd like to have dinner with you tonight.\tJ'aimerais dîner avec vous ce soir.\nI'd like to learn how to arrange flowers.\tJe voudrais apprendre comment faire des arrangements floraux.\nI'd like to meet Tom as soon as possible.\tJ'aimerais rencontrer Tom le plus tôt possible.\nI'd like to reserve a seat on this train.\tJe voudrais réserver une place sur ce train.\nI'd like to see the car before I rent it.\tJ'aimerais voir la voiture avant de la louer.\nI'd like to talk to the head of security.\tJ'aimerais m'entretenir avec le responsable de la sécurité.\nI'd like to talk to the head of security.\tJ'aimerais m'entretenir avec la responsable de la sécurité.\nI'll be counting on you to bring a salad.\tJe compte sur toi pour ramener une salade.\nI'll come into the office early tomorrow.\tJe viendrai au bureau tôt, demain.\nI'll have to tell her the truth tomorrow.\tJe dois lui dire la vérité demain.\nI'll lend you some books of my brother's.\tJe vous prêterai quelques livres de mon frère.\nI'll never forgive you as long as I live.\tJe ne vous oublierai jamais, aussi longtemps que je vivrai.\nI'll never forgive you as long as I live.\tJe ne t'oublierai jamais, aussi longtemps que je vivrai.\nI'll stand by you no matter what happens.\tJe me tiendrai à ton côté, quoi qu'il advienne.\nI'll stand by you no matter what happens.\tJe me tiendrai à votre côté, quoi qu'il advienne.\nI'll take in the washing before it rains.\tJe rentrerai le linge avant qu'il pleuve.\nI'll take in the washing before it rains.\tJe rentrerai le linge avant qu'il ne pleuve.\nI'll write you as soon as I arrive there.\tJe t'écrirai dès que j'y arrive.\nI'm afraid he will never admit his guilt.\tJe crains qu'il ne reconnaisse jamais sa culpabilité.\nI'm afraid that she'll refuse my request.\tJe crains qu'elle refuse ma demande.\nI'm considered a traitor to this country.\tJe suis considéré comme traître à ce pays.\nI'm double-parked. Could you hurry it up?\tJe suis garé en double-file. Peux-tu te dépêcher ?\nI'm double-parked. Could you hurry it up?\tJe suis garé en double-file. Pouvez-vous vous dépêcher ?\nI'm fond of listening to classical music.\tJ'adore écouter de la musique classique.\nI'm getting the hang of this new machine.\tJe me fais à cette nouvelle machine.\nI'm getting the hang of this new machine.\tJe m'habitue à cette nouvelle machine.\nI'm glad someone agrees with me for once.\tJe suis heureux que quelqu'un soit d'accord avec moi, pour une fois.\nI'm glad someone agrees with me for once.\tJe suis heureuse que quelqu'un soit d'accord avec moi, pour une fois.\nI'm going for a run. Do you want to come?\tJe vais courir. Tu veux venir ?\nI'm going for a run. Do you want to come?\tJe vais courir. Voulez-vous venir ?\nI'm going to go buy some materials today.\tJe vais aller acheter quelques matériaux aujourd'hui.\nI'm going to have to call you right back.\tJe vais devoir te rappeler de suite.\nI'm going to have to call you right back.\tJe vais devoir vous rappeler de suite.\nI'm going to stay there for about a week.\tJe vais rester là-bas pendant environ une semaine.\nI'm going to stay there for about a week.\tJe vais y rester pendant à peu près une semaine.\nI'm going to stay with my uncle in Kyoto.\tJe vais rester avec mon oncle à Kyoto.\nI'm going to the country with my friends.\tJe vais à la campagne avec mes amis.\nI'm jealous because you have a good boss.\tJe suis jaloux parce que tu as un bon patron.\nI'm just going across to the flower shop.\tJe traverse juste pour aller chez le fleuriste.\nI'm not going to tell you how to do that.\tJe ne vais pas te dire comment le faire.\nI'm not going to tell you how to do that.\tJe ne vais pas t'indiquer comment le faire.\nI'm not in a position to give you advice.\tJe ne suis pas en position de te donner des conseils.\nI'm not in a position to give you advice.\tJe ne suis pas en position de vous conseiller.\nI'm not saying that you're not beautiful.\tJe ne dis pas que tu n'es pas belle.\nI'm not saying that you're not beautiful.\tJe ne dis pas que vous n'êtes pas belle.\nI'm not saying that you're not beautiful.\tJe ne dis pas que vous n'êtes pas belles.\nI'm not supposed to tell anyone about it.\tJe ne suis pas censé en informer qui que ce soit.\nI'm not supposed to tell anyone about it.\tJe ne suis pas censée en informer qui que ce soit.\nI'm not sure I follow what you're saying.\tJe ne suis pas sûr de suivre ce que tu dis.\nI'm not sure I follow what you're saying.\tJe ne suis pas sûre de suivre ce que tu dis.\nI'm not sure I follow what you're saying.\tJe ne suis pas sûr de suivre ce que vous dites.\nI'm not sure I follow what you're saying.\tJe ne suis pas sûre de suivre ce que vous dites.\nI'm on a really tight schedule this week.\tJ'ai un programme vraiment chargé cette semaine.\nI'm planning to stay at my uncle's place.\tJe compte rester chez mon oncle.\nI'm pretty sure Tom lives on Park Street.\tJe suis presque sûre que Tom habite rue du Parc.\nI'm pretty sure Tom lives on Park Street.\tJe suis presque sûre que Tom habite sur Park Street.\nI'm pretty sure Tom lives on Park Street.\tJe suis presque sûre que Tom habite à Park Street.\nI'm pretty sure that it won't snow today.\tJe suis assez certain qu'il ne neigera pas aujourd'hui.\nI'm pretty sure that it won't snow today.\tJe suis assez certaine qu'il ne neigera pas aujourd'hui.\nI'm proud of my father being a good cook.\tJe suis fier que mon père soit un bon cuisinier.\nI'm sick and tired of all this bickering.\tJe suis vraiment fatigué de toutes ces disputes.\nI'm sick and tired of all this bickering.\tJe n'en peux plus de toutes ces disputes.\nI'm sick of listening to your complaints.\tJe suis fatigué d'écouter tes plaintes.\nI'm sorry I didn't make it to your party.\tJe suis désolé de ne pas avoir pu assister à votre fête.\nI'm sorry I didn't make it to your party.\tJe suis désolée de ne pas avoir pu assister à votre fête.\nI'm sorry I didn't make it to your party.\tJe suis désolé de ne pas avoir pu assister à ta fête.\nI'm sorry I didn't make it to your party.\tJe suis désolée de ne pas avoir pu assister à ta fête.\nI'm sorry I have no pencil to write with.\tJe suis désolé, je n'ai aucun crayon pour écrire.\nI'm sorry that I didn't email you sooner.\tJe suis désolé de ne pas t'avoir envoyé un courriel plus tôt.\nI'm sorry that I didn't email you sooner.\tJe suis désolée de ne pas t'avoir envoyé un courriel plus tôt.\nI'm sorry that you couldn't come with us.\tJe suis désolé que vous n'ayez pu venir avec nous.\nI'm sorry that you couldn't come with us.\tJe suis désolée que vous n'ayez pu venir avec nous.\nI'm sorry that you've been badly injured.\tJe suis désolé que vous ayez été gravement blessé.\nI'm sorry, I didn't mean to frighten you.\tPardon, je ne voulais pas vous faire peur.\nI'm sorry, but I can't answer right away.\tJe suis désolé, mais je ne peux pas répondre tout de suite.\nI'm sorry. I didn't mean to make you cry.\tJe suis désolé. Je ne voulais pas te faire pleurer.\nI'm sorry. I didn't mean to make you cry.\tJe suis désolée. Je ne voulais pas te faire pleurer.\nI'm sorry. I didn't mean to make you cry.\tJe suis désolé. Je ne voulais pas vous faire pleurer.\nI'm sorry. I didn't mean to make you cry.\tJe suis désolée. Je ne voulais pas vous faire pleurer.\nI'm sorry. I didn't mean to make you cry.\tJe suis désolé. Je n'avais pas l'intention de vous faire pleurer.\nI'm sorry. I didn't mean to make you cry.\tJe suis désolée. Je n'avais pas l'intention de vous faire pleurer.\nI'm sorry. I didn't mean to make you cry.\tJe suis désolé. Je n'avais pas l'intention de te faire pleurer.\nI'm sorry. I didn't mean to make you cry.\tJe suis désolée. Je n'avais pas l'intention de te faire pleurer.\nI'm sorry. I'm partly responsible for it.\tJe suis désolé. J'en suis partiellement responsable.\nI'm sure that I'll win that tennis match.\tJe suis convaincu que je vais gagner ce match de tennis.\nI'm sure that this is a fresh water fish.\tJe suis sûr que c'est un poisson d'eau douce.\nI'm sure this is just a misunderstanding.\tJe suis sûr que ce n'est qu'un malentendu.\nI'm sure this is just a misunderstanding.\tJe suis convaincu qu'il s'agit d'un malentendu.\nI'm sure this is just a misunderstanding.\tJe suis convaincue qu'il s'agit d'un malentendu.\nI'm the one responsible for the accident.\tJe suis celui qui est responsable de l'accident.\nI'm thirsty. Can I have a glass of water?\tJ'ai soif. Puis-je avoir un verre d'eau ?\nI'm very happy to make your acquaintance.\tJe suis heureux de vous avoir rencontré.\nI'm very tired, but I can't get to sleep.\tJe suis très fatigué, mais je n'arrive pas à dormir.\nI'm wearing my swimsuit under my clothes.\tJe porte mon maillot de bain sous mes vêtements.\nI've already memorized your phone number.\tJ'ai déjà mémorisé votre numéro de téléphone.\nI've already memorized your phone number.\tJ'ai déjà mémorisé ton numéro de téléphone.\nI've always thought you knew how to swim.\tJ'ai toujours pensé que tu savais nager.\nI've always thought you knew how to swim.\tJ'ai toujours pensé que vous saviez nager.\nI've asked you repeatedly not to do that.\tJe vous ai demandé à maintes reprises de ne pas faire cela.\nI've asked you repeatedly not to do that.\tJe t'ai demandé à plusieurs reprises de ne pas faire ça.\nI've been in China for less than a month.\tJe suis en Chine depuis moins d'un mois.\nI've been looking forward to meeting you.\tJ'avais hâte de vous rencontrer.\nI've been trying to lose a little weight.\tJ'essaie de perdre un peu de poids.\nI've explained all of this to you before.\tJe t'ai expliqué tout ceci auparavant.\nI've got a lot of things to do this week.\tJ'ai beaucoup à faire cette semaine.\nI've never heard him speak ill of others.\tJe ne l'ai jamais entendu parler en mal des autres.\nI've never seen so many trees in my life.\tJe n'ai jamais vu tant d'arbres de ma vie !\nI've never seen so many trees in my life.\tJe n'ai jamais vu autant d'arbres de ma vie !\nI've seen my dog sneeze but never my cat.\tJ'ai vu mon chien éternuer mais jamais mon chat.\nIf I had enough money, I could go abroad.\tSi j'avais assez d'argent, j'irais à l'étranger.\nIf I had known it, I would have told you.\tSi je l'avais su, je vous l'aurais dit.\nIf I had known it, I would have told you.\tSi je l'avais su, je te l'aurais dit.\nIf I had known it, I would have told you.\tL'aurais-je su, je te l'aurais dit.\nIf I had known it, I would have told you.\tL'aurais-je su, je vous l'aurais dit.\nIf I had time, I'd accept his invitation.\tSi j'avais le temps, j'accepterais son invitation.\nIf I miss the train, I'll get on the bus.\tSi je manque le train, je monterai dans le bus.\nIf I were you, I would apply for the job.\tSi j'étais toi, je postulerais pour cet emploi.\nIf I were you, I would apply for the job.\tSi j'étais vous, je postulerais à cet emploi.\nIf I were you, I would follow his advice.\tSi j'étais toi, je suivrais son conseil.\nIf I were you, I would follow his advice.\tSi j'étais vous, je suivrais son conseil.\nIf it is raining, I won't go out tonight.\tS'il pleut, je ne sortirai pas ce soir.\nIf it rains tomorrow, we'll stay at home.\tSi demain il pleut on reste à la maison.\nIf it rains, the game will be called off.\tS'il pleut, la partie sera annulée.\nIf necessary, I'll come at nine tomorrow.\tSi nécessaire, je viendrai à neuf heures demain.\nIf only I had known the answer yesterday!\tSi seulement j'avais eu la réponse hier !\nIf you are hungry, you can eat the bread.\tSi tu as faim, tu peux manger le pain.\nIf you don't kill them, they'll kill you.\tSi vous ne les tuez pas, ils vous tueront.\nIf you don't kill them, they'll kill you.\tSi vous ne les tuez pas, elles vous tueront.\nIf you don't kill them, they'll kill you.\tSi tu ne les tues pas, elles te tueront.\nIf you don't kill them, they'll kill you.\tSi tu ne les tues pas, ils te tueront.\nIf you ever come to town, come to see me.\tSi jamais tu passes en ville, viens me voir.\nIf you ever come to town, come to see me.\tSi jamais tu viens en ville, passe me voir.\nIf you hurry, you will catch up with him.\tSi tu te dépêches, tu pourras le rattraper.\nIf you wouldn't mind, I could use a hand.\tSi ça ne te dérange pas, j'aurais besoin d'un coup de main.\nIf you wouldn't mind, I could use a hand.\tSi ça ne vous dérange pas, j'aurais besoin d'un coup de main.\nIn addition to English, he speaks German.\tEn plus de l'anglais, il parle aussi l'allemand.\nIn case of an emergency, call the police.\tEn cas d'urgence, appelez la police.\nIn doing anything, you must do your best.\tQuoi que tu fasses, tu dois faire de ton mieux.\nIs it more fun being a child or an adult?\tEst-il plus amusant d'être un enfant ou un adulte ?\nIs it possible to get on the next flight?\tEst-il possible d'avoir une place sur le prochain vol ?\nIs it true that you were on TV yesterday?\tEst-ce vrai que vous êtes passé hier à la télévision ?\nIs reprinting this article a possibility?\tEst-il possible de réimprimer cet article ?\nIs reprinting this article a possibility?\tRéimprimer cet article est-il possible ?\nIs that really a road we want to go down?\tEst-ce vraiment une voie que nous voulons emprunter ?\nIs that rule applicable to us foreigners?\tCette règle s'applique-t-elle à nous étrangers ?\nIs there also a similar proverb in Japan?\tY a-t-il également un proverbe similaire au Japon ?\nIs there anything else you want me to do?\tPuis-je faire autre chose pour toi ?\nIs there anything else you want me to do?\tY a-t-il quoi que ce soit d'autre que tu veuilles que je fasse ?\nIs there anything else you want me to do?\tY a-t-il quoi que ce soit d'autre que tu veux que je fasse ?\nIs there anything else you want me to do?\tY a-t-il quoi que ce soit d'autre que vous vouliez que je fasse ?\nIs there anything to drink in the fridge?\tY a-t-il quelque chose à boire dans le frigo ?\nIs there anything to drink in the fridge?\tY a-t-il quelque chose à boire au réfrigérateur ?\nIs there anything to drink in the fridge?\tY a-t-il quoi que ce soit à boire dans le frigo ?\nIs there something wrong with your phone?\tY a-t-il quelque chose qui cloche avec ton téléphone ?\nIs there something wrong with your phone?\tY a-t-il quelque chose qui cloche avec votre téléphone ?\nIs this the only picture of her you have?\tEst-ce la seule photo d'elle que tu as?\nIsn't that what you're trying to tell me?\tN'est-ce pas là ce que tu essaies de me dire ?\nIsn't that what you're trying to tell me?\tN'est-ce pas là ce que vous essayez de me dire ?\nIt cost a lot of money to repair the car.\tCela coûta beaucoup d'argent de réparer la voiture.\nIt cost a lot of money to repair the car.\tCela a coûté beaucoup d'argent de réparer la voiture.\nIt doesn't take long to get to his house.\tArriver chez lui ne prend pas beaucoup de temps.\nIt happened that the day was my birthday.\tIl se trouva que ce jour-là c'était mon anniversaire.\nIt happened that we were on the same bus.\tIl se trouvait qu'on était dans le même bus.\nIt is dangerous to fly in this heavy fog.\tIl est dangereux de voler par cet épais brouillard.\nIt is difficult to speak three languages.\tC'est difficile de parler trois langues.\nIt is difficult to understand his theory.\tSa théorie est difficile à comprendre.\nIt is difficult to understand this novel.\tIl est difficile de comprendre ce roman.\nIt is easy for me to answer the question.\tC'est facile pour moi de répondre à cette question.\nIt is evident that he has made a mistake.\tIl est évident qu'il a commis une erreur.\nIt is impossible to resolve the conflict.\tIl est impossible de résoudre le conflit.\nIt is necessary to prepare for the worst.\tIl est nécessaire d'être préparé au pire.\nIt is no use your trying to persuade him.\tÇa ne sert à rien que tu tentes de le persuader.\nIt is not appropriate for you to do this.\tIl ne convient pas que tu fasses cela.\nIt is not easy to get rid of a bad habit.\tIl est malaisé de perdre une mauvaise habitude.\nIt is said that there is no life on Mars.\tOn dit qu'il n'y a pas de vie sur Mars.\nIt is true he is rich, but he is a miser.\tC'est vrai qu'il est riche, mais il est avare.\nIt is up to you whether to buy it or not.\tÀ toi de voir si tu l'achètes ou pas.\nIt looks like she's got a lot of friends.\tElle semble avoir beaucoup d'amis.\nIt looks like she's got a lot of friends.\tOn dirait qu'elle a beaucoup d'amis.\nIt looks like she's got a lot of friends.\tElle semble avoir beaucoup d'amies.\nIt looks like you're having a great time.\tT'as l'air de t'amuser.\nIt never occurred to me that he loved me.\tJe n'ai jamais réalisé qu'il m'aimait.\nIt says on the label to take two tablets.\tIl est indiqué sur l'étiquette de prendre deux comprimés.\nIt seems that there will be a storm soon.\tIl semble qu'il y aura bientôt une tempête.\nIt took me five hours to finish the work.\tCela m'a pris cinq heures pour finir le travail.\nIt took me several hours to translate it.\tCela m'a pris plusieurs heures pour le traduire.\nIt was Marie Curie who discovered radium.\tC'est Marie Curie qui a découvert la radioactivité.\nIt was a pleasure working with you folks.\tC'était un plaisir de travailler avec vous autres.\nIt was easy for him to solve the problem.\tÇa lui fut facile de résoudre le problème.\nIt was foolish of him to do such a thing.\tC'était stupide de sa part de faire une chose pareille.\nIt was like something out of a nightmare.\tC'était comme quelque chose sorti d'un cauchemar.\nIt was my turn to straighten up the room.\tC'était mon tour de ranger la chambre.\nIt was near the river that I lost my way.\tJ'étais près de la rivière quand j'ai perdu le chemin.\nIt was not easy for us to find his house.\tIl n'était facile pour nous de trouver sa maison.\nIt was the most painful thing in my life.\tCe fut la chose la plus douloureuse de ma vie.\nIt was the most painful thing in my life.\tÇa a été la chose la plus douloureuse de ma vie.\nIt will be entertaining, if nothing else.\tÇa sera distrayant, à défaut d'autre chose.\nIt will be some time before he gets well.\tIl faudra du temps avant qu'il aille mieux.\nIt will not last more than three minutes.\tÇa ne durera pas plus de trois minutes.\nIt won't be long before they get married.\tIls seront mariés d'ici peu de temps.\nIt'll be forgotten in a few months' time.\tDans quelques mois, ce sera oublié.\nIt'll be hard to convince Tom to help us.\tÇa va être compliqué de convaincre Tom de nous aider.\nIt'll take two hours to get there by bus.\tCela prendra deux heures d'y arriver en bus.\nIt'll take two hours to get there by bus.\tCela prendra deux heures d'y arriver en car.\nIt's been three years since I moved here.\tÇa fait trois ans que j'ai déménagé ici.\nIt's been three years since the accident.\tCela fait trois ans depuis l'accident.\nIt's difficult to transplant an old tree.\tIl est difficile de transplanter un vieil arbre.\nIt's fun to learn about foreign cultures.\tC'est amusant d'étudier des cultures étrangères.\nIt's good to get up early in the morning.\tC'est bon de se lever tôt le matin.\nIt's hard to imagine a life without pets.\tIl est difficile d'imaginer une vie sans animal de compagnie.\nIt's incredibly easy to cheat the system.\tIl est incroyablement facile de tromper le système.\nIt's incredibly easy to cheat the system.\tIl est incroyablement aisé de tromper le système.\nIt's more polite to say thin than skinny.\tIl est plus poli de dire mince que maigre.\nIt's not a suitable topic for discussion.\tCe n'est pas un sujet de débat convenable.\nIt's not possible to live on that island.\tIl est impossible de vivre sur cette île.\nIt's supposed to be the other way around.\tC'est censé être dans l'autre sens.\nIt's very important to respect the rules.\tIl est très important de respecter les règles.\nJapan's rice market is closed to imports.\tLe marché du riz japonais est fermé à l'importation.\nJapanese young people like rock and jazz.\tLes jeunes japonais aiment le rock et le jazz.\nJust a moment. I haven't made up my mind.\tUn instant, je ne me suis pas décidé.\nJust a moment. I haven't made up my mind.\tJuste un instant. Je ne me suis pas décidée.\nLanguage acquisition requires creativity.\tL'acquisition du langage demande de la créativité.\nLearning a foreign language is difficult.\tApprendre une langue étrangère est difficile.\nLeft alone, the little girl began to cry.\tLaissée seule, la petite fille se mit à pleurer.\nLegend has it that this house is haunted.\tLa légende veut que cette maison soit hantée.\nLend me something with which to cut this.\tPrête-moi quelque chose pour couper cela.\nLet me heat it up some leftovers for you.\tLaisse-moi te réchauffer quelques restes.\nLet me heat it up some leftovers for you.\tLaissez-moi vous réchauffer quelques restes.\nLet me know if there's anything I can do.\tFais-moi savoir s'il y a quoi que ce soit que je puisse faire.\nLet me say a few words by way of apology.\tLaissez-moi dire quelques mots en guise d'excuse.\nLet me show you something really awesome.\tLaisse-moi te montrer quelque chose de vraiment super.\nLet me show you something really awesome.\tLaissez-moi vous montrer quelque chose de vraiment super.\nLet me write down the directions for you.\tLaissez-moi vous écrire les instructions !\nLet's delay this decision until tomorrow.\tRetardons cette décision jusqu'à demain.\nLet's get out for a while to take a walk.\tSortons un moment nous promener.\nLet's keep this matter between ourselves.\tGardons cette question entre nous.\nLet's play some video games to kill time.\tJouons à des jeux video pour passer le temps.\nLet's schedule a meeting for next Monday.\tProgrammons une rencontre pour lundi prochain !\nLet's take advantage of the long weekend.\tProfitons de ce long weekend.\nLittle by little, the bird made his nest.\tPetit à petit, l'oiseau fait son nid.\nLook up the new words in your dictionary.\tCherchez les nouveaux mots dans votre dictionnaire.\nLook up the new words in your dictionary.\tCherche les nouveaux mots dans ton dictionnaire.\nLook up the number in the telephone book.\tCherche le numéro dans l'annuaire.\nLook up the number in the telephone book.\tCherche le numéro dans le bottin.\nLosses on both sides were extremely high.\tLes pertes des deux côtés furent extrêmement élevées.\nMany consider seven to be a lucky number.\tNombreux sont ceux qui considèrent le sept comme chiffre de chance.\nMany consumer reviews on Amazon are fake.\tDe nombreuses appréciations de clients sur Amazon sont fausses.\nMany people also considered him a madman.\tDe nombreuses personnes le considéraient aussi comme un fou.\nMarriage is the union of a man and woman.\tLe mariage est l'union d'un homme et d'une femme.\nMary is very attached to the little girl.\tMary est très attachée à la petite fille.\nMary is young enough to be your daughter.\tMarie est assez jeune pour être votre fille.\nMary looks cute no matter what she wears.\tMary est mignonne peu importe ce qu'elle porte.\nMary put her knitting aside and stood up.\tMary mit son tricot de côté et se leva.\nMary put her knitting aside and stood up.\tMary a mis son tricot de côté et s'est levée.\nMary told me that she was glad to see me.\tMary m'a dit qu'elle était contente de me voir.\nMary won't listen to her friend's advice.\tMary n'écoute pas les conseils de ses amis.\nMaybe I'm going through a midlife crisis.\tPeut-être est-ce que je traverse ma crise de la quarantaine.\nMaybe Tom wants to sleep a little longer.\tPeut-être Tom souhaite-t-il dormir un peu plus.\nMaybe we should call the whole thing off.\tPeut-être devrions-nous tout annuler.\nMaybe we should go to Boston next summer.\tPeut-être devrions-nous aller à Boston l'été prochain.\nMedical marijuana is legal in this state.\tLa marijuana thérapeutique est légale dans cet État.\nMedical marijuana is legal in this state.\tLa marijuana thérapeutique est légale dans cet état.\nMother divided the cake into three parts.\tMère a partagé le gâteau en trois parts.\nMother has been sick since last Thursday.\tMère est malade depuis jeudi dernier.\nMy Internet connection isn't fast enough.\tMa connexion Internet n'est pas assez rapide.\nMy brother insisted on going there alone.\tMon frère insista pour y aller seul.\nMy brother is big enough to travel alone.\tMon frère est assez grand pour voyager seul.\nMy brother is engaged in cancer research.\tMon frère est engagé dans la recherche contre le cancer.\nMy brother is old enough to go to school.\tMon frère est assez grand pour aller à l'école.\nMy car was badly damaged in the accident.\tMa voiture a été sérieusement endommagée dans l'accident.\nMy children wear out their shoes quickly.\tMes enfants usent rapidement leurs chaussures.\nMy dream is to travel in a space shuttle.\tMon rêve c'est de voyager dans une navette spatiale.\nMy father gave up smoking for his health.\tMon père a arrêté de fumer pour sa santé.\nMy father is repairing my broken bicycle.\tMon père est en train de réparer mon vélo cassé.\nMy father used to eat at this restaurant.\tMon père avait l'habitude de manger dans ce restaurant.\nMy father used to say that time is money.\tMon père avait l'habitude de dire que le temps c'est de l'argent.\nMy friend lives in the middle of nowhere.\tMon ami vit au milieu de nulle part.\nMy friend said he had bought a new watch.\tMon ami m'a dit qu'il avait acheté une nouvelle montre.\nMy grandfather always sits in this chair.\tMon grand-père s'assoit toujours dans cette chaise.\nMy husband sends his best regards to you.\tMon mari vous transmet ses sincères salutations.\nMy room is three times as large as yours.\tMa chambre est trois fois plus grande que la tienne.\nMy sister works as a secretary at a bank.\tMa sœur travaille comme secrétaire dans une banque.\nMy sister works in a bank as a secretary.\tMa sœur est secrétaire dans une banque.\nMy son wants to be a professional golfer.\tMon fils veut être un golfeur professionnel.\nMy son wants to be a professional golfer.\tMon fils veut être golfeur professionnel.\nMy uncle said that he jogs every morning.\tMon oncle a dit qu'il fait du jogging chaque matin.\nNo matter who comes, don't open the door.\tPeu importe qui vient, n'ouvre pas la porte.\nNo matter who comes, don't open the door.\tPeu importe qui vient, n'ouvrez pas la porte.\nNo one makes chicken soup like my mother.\tPersonne ne fait la soupe de poulet comme ma mère.\nNo one wants to talk about books anymore.\tPersonne ne veut plus parler de livres.\nNo wild tigers are to be found in Africa.\tOn ne trouve aucun tigre sauvage en Afrique.\nNo wonder they have elected him chairman.\tCe n'est pas étonnant qu'ils l'aient élu président.\nNobody really cared that Tom didn't help.\tPersonne ne se souciait vraiment que Tom n'aidait pas.\nNobody was allowed to go out of the room.\tPersonne n'était autorisé à quitter la pièce.\nNobody's found a solution yet, have they?\tPersonne n'a encore trouvé de solution, hein ?\nNobody's found a solution yet, have they?\tPersonne n'a encore trouvé de solution, n'est-ce pas ?\nNon-members pay an additional 50 dollars.\tLes non-membres payent 50 dollars de plus.\nNot knowing what to do, I asked for help.\tNe sachant pas quoi faire, j'ai demandé de l'aide.\nNothing ever happens in this old village.\tRien n'est jamais arrivé dans ce vieux village.\nNothing has to happen until you're ready.\tRien ne doit se produire avant que tu ne sois prêt.\nNothing has to happen until you're ready.\tRien ne doit se produire avant que tu ne sois prête.\nNothing has to happen until you're ready.\tRien ne doit se produire avant que vous ne soyez prêt.\nNothing has to happen until you're ready.\tRien ne doit se produire avant que vous ne soyez prête.\nNothing has to happen until you're ready.\tRien ne doit se produire avant que vous ne soyez prêtes.\nNothing has to happen until you're ready.\tRien ne doit se produire avant que vous ne soyez prêts.\nNow that school is over, you can go home.\tMaintenant que l'école est finie, tu peux rentrer chez toi.\nNow that we've finished eating, let's go.\tMaintenant que nous avons fini de manger, allons-y !\nNow the mountain is hidden by the clouds.\tÀ présent, la montagne est cachée par les nuages.\nNowadays, traveling costs a lot of money.\tDe nos jours, voyager coûte beaucoup d'argent.\nOn my way to the library I met my friend.\tEn chemin vers la bibliothèque j'ai rencontré mon ami.\nOne more person will be joining us later.\tUne personne de plus se joindra à nous plus tard.\nOne of the suitcases is completely empty.\tL'une des valises est entièrement vide.\nOsaka is the center of commerce in Japan.\tOsaka est le centre du commerce au Japon.\nOur car ran out of gas after ten minutes.\tNotre voiture tomba en panne d'essence dix minutes plus tard.\nOur car ran out of gas after two minutes.\tNotre voiture fut à court d'essence au bout de deux minutes.\nOur eyes take time to adjust to the dark.\tNos yeux prennent du temps pour s'adapter au noir.\nOur fighters averaged 430 missions a day.\tNos combattants ont effectué une moyenne de 430 missions par jour.\nOur success was due in part to good luck.\tNotre succès a été en partie dû à la chance.\nOvercooked fish can be dry and tasteless.\tLe poisson trop cuit peut être sec et dénué de goût.\nOwing to the snow, the train was delayed.\tÀ cause de la neige, le train a été retardé.\nPardon me, what's the name of this place?\tVeuillez m'excuser. Comment se nomme cet endroit ?\nPeople over the age of 18 can drive cars.\tLes personnes de plus de 18 ans peuvent conduire une voiture.\nPersonal liberty is diminishing nowadays.\tLes libertés individuelles se réduisent de nos jours.\nPlastic bags are bad for the environment.\tLes sacs en plastique sont mauvais pour l'environnement.\nPlease continue until I tell you to stop.\tContinuez jusqu'à ce que je vous dise d'arrêter, s'il vous plaît.\nPlease continue until I tell you to stop.\tContinues jusqu'à ce que je te dise d'arrêter, s'il te plaît.\nPlease do not write in this library book.\tVeuillez ne pas écrire dans ce livre de la bibliothèque.\nPlease don't talk about me when I'm gone.\tVeuillez ne pas parler de moi quand je serai parti.\nPlease keep this information to yourself.\tGarde cette information pour toi s'il te plaît.\nPlease make five copies of this document.\tFaites cinq copies de ce document, s'il vous plaît.\nPlease tell me how to get to the airport.\tVeuillez m'indiquer comment me rendre à l'aéroport.\nPlease tell me. I really want to hear it.\tS'il te plait dis-le-moi. Je veux vraiment l'entendre.\nPlease tell me. I really want to hear it.\tS'il vous plait dites-le-moi. Je veux vraiment l'entendre.\nPlease turn in your homework by tomorrow.\tVeuillez remettre vos devoirs pour demain.\nPlease turn in your homework by tomorrow.\tRemets tes devoirs pour demain, je te prie.\nPneumonia causes difficulty in breathing.\tLa pneumonie entraîne des difficultés respiratoires.\nRabies is the deadliest disease on earth.\tLa rage est la maladie la plus mortelle sur terre.\nRabies is the deadliest disease on earth.\tLa rage est la maladie la plus léthale sur terre.\nRaúl can't have fun without his friends.\tRaoul ne sait pas s'amuser sans ses amis.\nReading is one of life's great pleasures.\tLa lecture est l'un des grands plaisirs de la vie.\nRear end collisions often cause whiplash.\tLes collisions par l'arrière causent souvent le coup du lapin.\nRegardless what he does, he does it well.\tQuoi qu’il fasse, il le fait bien.\nRepublicans were defeated in many states.\tLes républicains furent battus dans de nombreux États.\nRight now I can't think of anything else.\tActuellement, je n'arrive à penser à rien d'autre.\nRight now I can't think of anything else.\tActuellement, je n'arrive pas à penser à quoi que ce soit d'autre.\nSearch everyone who comes into this room.\tFouille quiconque entre dans cette pièce.\nSearch everyone who comes into this room.\tFouillez quiconque entre dans cette pièce.\nSee what happens when you tell the truth?\tVois-tu ce qui arrive lorsqu'on dit la vérité ?\nSee what happens when you tell the truth?\tVoyez-vous ce qui arrive lorsqu'on dit la vérité ?\nSeeing me, they suddenly stopped talking.\tEn me voyant, ils se sont soudainement arrêtés de parler.\nSeeing me, they suddenly stopped talking.\tÀ ma vue, ils s'arrêtèrent soudainement de parler.\nShe advised him not to eat between meals.\tElle lui conseilla de ne pas manger entre les repas.\nShe advised him not to eat between meals.\tElle lui a conseillé de ne pas manger entre les repas.\nShe advised him not to use too much salt.\tElle lui conseilla de ne pas utiliser trop de sel.\nShe advised him not to use too much salt.\tElle lui a conseillé de ne pas utiliser trop de sel.\nShe allegedly killed him in self defense.\tElle l'a soi-disant tué en état de légitime défense.\nShe always clears the table after a meal.\tElle débarrasse toujours la table après un repas.\nShe always speaks to him in a loud voice.\tElle s'adresse toujours à lui d'une voix forte.\nShe always stands up for her convictions.\tElle campe toujours sur ses positions.\nShe asked him how to turn on the machine.\tElle lui demanda comment mettre la machine en marche.\nShe asked him how to turn on the machine.\tElle lui a demandé comment mettre la machine en marche.\nShe attacked him with a pair of scissors.\tElle l'attaqua avec une paire de ciseaux.\nShe attacked him with a pair of scissors.\tElle l'a attaqué avec une paire de ciseaux.\nShe availed herself of every opportunity.\tElle profita de chaque opportunité.\nShe called him to say that she'd be late.\tElle l'appela pour lui dire qu'elle serait en retard.\nShe called him to say that she'd be late.\tElle l'appela pour lui annoncer qu'elle serait en retard.\nShe called him to say that she'd be late.\tElle l'a appelé pour lui annoncer qu'elle serait en retard.\nShe called him to say that she'd be late.\tElle l'a appelé pour lui dire qu'elle serait en retard.\nShe can read even this difficult a kanji.\tElle arrive même à lire ce kanji difficile.\nShe cannot have understood what you said.\tElle ne peut pas avoir compris ce que tu as dit.\nShe complained of the room being too hot.\tElle s'est plaint qu'il faisait trop chaud dans la chambre.\nShe continued sobbing without looking up.\tElle a continué à sangloter, sans lever les yeux.\nShe could not understand the whole story.\tElle ne parvenait pas à comprendre toute l'histoire.\nShe couldn't help bursting into laughter.\tElle ne put se retenir d'éclater de rire.\nShe demanded to see the person in charge.\tElle a exigé de voir la responsable.\nShe despises him only because he is poor.\tElle ne le méprise que parce qu'il est pauvre.\nShe despises him only because he is poor.\tElle le méprise seulement parce qu'il est pauvre.\nShe did it for the good of the community.\tElle le fit pour le bien de la communauté.\nShe doesn't want him to pick the flowers.\tElle ne veut pas qu'il cueille les fleurs.\nShe expressed her thanks for the present.\tElle a exprimé ses remerciements pour le cadeau.\nShe finished her work an hour in advance.\tElle a fini son travail une heure plus tôt que prévu.\nShe forgave him for losing all her money.\tElle lui pardonna d'avoir perdu tout son argent.\nShe forgave him for losing all her money.\tElle lui a pardonné d'avoir perdu tout son argent.\nShe forgot that she bought him a present.\tElle oublia qu'elle lui avait acheté un cadeau.\nShe forgot that she bought him a present.\tElle a oublié qu'elle lui avait acheté un cadeau.\nShe found him standing near the entrance.\tElle le trouva debout près de l'entrée.\nShe found him standing near the entrance.\tElle l'a trouvé debout près de l'entrée.\nShe froze at the sight of the big spider.\tElle s'est figée en voyant la grosse araignée.\nShe gets about with the help of a walker.\tElle se déplace à l'aide d'un déambulateur.\nShe got her daughter a personal computer.\tElle a acquis un ordinateur pour sa fille.\nShe got married when she was twenty-five.\tElle s'est mariée à 25 ans.\nShe had no choice but to accept her fate.\tElle n'avait d'autre choix que d'accepter son destin.\nShe had to use her dictionary many times.\tElle dut utiliser son dictionnaire à de nombreuses reprises.\nShe has a cold and is absent from school.\tElle a un rhume et est absente de l'école.\nShe has some beautiful antique furniture.\tElle a quelques beaux meubles anciens.\nShe has the big room entirely to herself.\tElle a cette grande chambre entièrement pour elle.\nShe helped the old man across the street.\tElle a aidé le vieil homme à traverser la rue.\nShe helped the old man across the street.\tElle a aidé le vieil homme à traverser la route.\nShe is always at the bottom of the class.\tElle est toujours au bas de la classe.\nShe is always at the bottom of the class.\tElle est toujours en queue de classe.\nShe is always forgetting my phone number.\tElle oublie tout le temps mon numéro de téléphone.\nShe is anxious about her father's health.\tElle s'inquiète de la santé de son père.\nShe is busy preparing for an examination.\tElle est occupée à se préparer pour un examen.\nShe is exceedingly sensitive to the cold.\tElle est extrêmement sensible au froid.\nShe is no less beautiful than her mother.\tElle n'est pas moins belle que sa mère.\nShe is quite pretty, but looks unhealthy.\tElle est plutôt jolie, mais n'a pas l'air en bonne santé.\nShe left her children in her aunt's care.\tElle a laissé son enfant aux bons soins de sa tante.\nShe married an American GI after the war.\tElle épousa un soldat étasunien, après la guerre.\nShe misses him, especially on rainy days.\tIl lui manque, particulièrement les jours de pluie.\nShe must be visiting England this summer.\tElle doit visiter l'Angleterre cet été.\nShe pointed her finger at him accusingly.\tElle pointa son doigt vers lui d'un air accusateur.\nShe put on her overcoat before going out.\tElle mit son pardessus avant de sortir.\nShe read the article over and over again.\tElle a lu et relu l'article.\nShe risked her life to protect her child.\tElle a risqué sa vie pour protéger son fils.\nShe sat next to him and listened quietly.\tElle s'assit auprès de lui et écouta tranquillement.\nShe sat next to him and listened quietly.\tElle s'est assise auprès de lui et a écouté tranquillement.\nShe speaks English with a foreign accent.\tElle parle anglais avec un accent étranger.\nShe spends her leisure time making dolls.\tElle passe son temps de loisirs à faire des poupées.\nShe spoke English to me just to show off.\tElle me parla en anglais, juste pour frimer.\nShe stayed at the hotel for several days.\tElle passa plusieurs jours à l'hôtel.\nShe succeeded in getting what she wanted.\tElle a réussi à obtenir ce qu'elle voulait.\nShe suggested that I take him to the zoo.\tElle suggéra que je l'emmène au zoo.\nShe suggested that I take him to the zoo.\tElle a suggéré que je l'emmène au zoo.\nShe surprised him when she arrived early.\tElle le surprit lorsqu'elle arriva tôt.\nShe surprised him when she arrived early.\tElle l'a surpris lorsqu'elle est arrivée tôt.\nShe talked him into going to the concert.\tElle le persuada de se rendre au concert.\nShe talked him into going to the concert.\tElle l'a persuadé de se rendre au concert.\nShe taught me so many interesting things.\tElle m'a appris tant de choses intéressantes.\nShe told him a joke, but he didn't laugh.\tElle lui raconta une blague, mais il ne rit pas.\nShe took a job in a store for the summer.\tElle a pris un emploi dans un magasin pour l'été.\nShe tried to persuade him to go with her.\tElle tenta de le persuader d'aller avec elle.\nShe tried to persuade him to go with her.\tElle a tenté de le persuader d'aller avec elle.\nShe turned pale when she heard that news.\tElle devint pâle lorsqu'elle entendit ces nouvelles.\nShe turned pale when she heard that news.\tElle est devenue pâle lorsqu'elle a entendu ces nouvelles.\nShe was absent because she caught a cold.\tElle était manquante, parce qu'elle était enrhumée.\nShe was captured trying to steal jewelry.\tElle a été capturée alors qu'elle tentait de voler des bijoux.\nShe was killed in an automobile accident.\tElle fut tuée dans un accident automobile.\nShe was shocked when she heard his story.\tElle était choquée quand elle a entendu l'histoire.\nShe was stupid enough to go out with him.\tElle fut assez stupide pour sortir avec lui.\nShe was stupid enough to go out with him.\tElle a été assez stupide pour sortir avec lui.\nShe was the last woman I expected to see.\tElle était la dernière femme que je m'attendais à voir.\nShe was watching the dead leaves falling.\tElle regardait les feuilles mortes tomber.\nShe wouldn't allow me to read the letter.\tElle ne voulait pas me permettre de lire la lettre.\nShe writes to her son every now and then.\tElle écrit à son fils de temps en temps.\nShe's practicing the piano day and night.\tElle s'entraine au piano nuit et jour.\nShe's the closest thing to family he has.\tElle est ce qu'il a de plus ressemblant à une famille.\nShe's the most popular girl in the class.\tC'est la fille la plus appréciée de la classe.\nShould I go or would you like me to stay?\tDevrais-je y aller ou voudrais-tu que je reste ?\nShould I go or would you like me to stay?\tDevrais-je partir ou voudriez-vous que je reste ?\nSince he was tired, he went to bed early.\tComme il était fatigué, il se coucha tôt.\nSince there were no taxis, I had to walk.\tComme il n'y avait pas de taxis, je dus marcher.\nSince there were no taxis, I had to walk.\tComme il n'y avait pas de taxis, j'ai dû marcher.\nSmallpox was unknown to Native Americans.\tLa variole était inconnue des Amérindiens.\nSo, are you going to tell me who you are?\tAlors, vas-tu me dire qui tu es ?\nSo, are you going to tell me who you are?\tAlors, allez-vous me dire qui vous êtes ?\nSoccer is the world's most popular sport.\tLe football est le sport le plus populaire au monde.\nSomebody threw a brick through my window.\tQuelqu'un a lancé une brique à travers ma fenêtre.\nSomeone broke into my house last weekend.\tQuelqu'un a cambriolé ma maison le week-end passé.\nSomeone broke into my house last weekend.\tQuelqu'un a cambriolé ma maison le week-end dernier.\nSomeone cleaned my room while I was gone.\tQuelqu'un a nettoyé ma chambre tandis que j'étais parti.\nSomeone cleaned my room while I was gone.\tQuelqu'un nettoya ma chambre tandis que j'étais parti.\nSomeone cleaned my room while I was gone.\tQuelqu'un a nettoyé ma chambre pendant que j'étais parti.\nSomeone cleaned my room while I was gone.\tQuelqu'un a nettoyé ma chambre tandis que j'étais partie.\nSomeone cleaned my room while I was gone.\tQuelqu'un a nettoyé ma chambre pendant que j'étais partie.\nSomeone cleaned my room while I was gone.\tQuelqu'un nettoya ma chambre pendant que j'étais partie.\nSomeone cleaned my room while I was gone.\tQuelqu'un nettoya ma chambre pendant que j'étais parti.\nSomeone cleaned my room while I was gone.\tQuelqu'un nettoya ma chambre tandis que j'étais partie.\nSomeone must have left the water running.\tÇa doit être que quelqu'un a laissé le robinet ouvert.\nSomething is the matter with this TV set.\tIl y a quelque chose qui cloche avec cette télévision.\nSometimes you gotta do what you gotta do.\tIl faut parfois faire ce qu'il faut.\nSometimes, I feel like I can do anything.\tJ'ai parfois le sentiment que je peux faire n'importe quoi.\nSometimes, I feel like I can do anything.\tJ'ai parfois le sentiment que je suis en mesure de faire n'importe quoi.\nSometimes, I feel like I can do anything.\tJ'ai parfois le sentiment que je suis capable de faire n'importe quoi.\nSometimes, I feel like I can do anything.\tJ'ai parfois le sentiment que je suis en capacité de faire n'importe quoi.\nSooner or later, I'll probably get bored.\tJe vais sûrement finir par m'ennuyer.\nSooner or later, he will run out of luck.\tTôt ou tard sa chance tournera.\nSorry, I didn't know you were still here.\tDésolé, je ne savais pas que vous étiez encore là.\nSorry, I didn't know you were still here.\tDésolé, je ne savais que tu étais encore là.\nSpain was ruled by a dictator until 1975.\tL'Espagne fut dirigée par un dictateur jusqu'en mille-neuf-cent-soixante-quinze.\nSpain was ruled by a dictator until 1975.\tL'Espagne a été dirigée par un dictateur jusqu'en mille-neuf-cent-soixante-quinze.\nSpain was ruled by a dictator until 1975.\tL'Espagne fut dirigée par un dictateur jusqu'en mille-neuf-cent-septante-cinq.\nSpain was ruled by a dictator until 1975.\tL'Espagne a été dirigée par un dictateur jusqu'en mille-neuf-cent-septante-cinq.\nSpring is the best season to visit Kyoto.\tLe printemps est la meilleure saison pour visiter Kyoto.\nStrictly speaking, the tomato is a fruit.\tStrictement parlant, la tomate est un fruit.\nSuddenly, a man stepped in front of them.\tSoudain, un homme s'avança au devant d'eux.\nSunglasses protect our eyes from the sun.\tLes lunettes de soleil protègent nos yeux du soleil.\nSure, it might be traumatic, but so what?\tCertes, c'est peut-être traumatique, mais qu'est-ce qu'on y peut?\nSurprisingly, he swims even on cold days.\tÉtonnamment, il nage même les jours où il fait froid.\nTake care not to awake the sleeping baby.\tPrenez soin de ne pas éveiller le bébé qui dort.\nTake the apple and divide it into halves.\tPrenez la pomme et divisez-la en deux.\nTeenagers often argue with their parents.\tLes adolescents se disputent souvent avec leurs parents.\nTell me if you don't think this is funny.\tDis-moi si tu ne trouves pas ça drôle.\nTell me what you think's inside this box.\tDis-moi ce que tu crois qu'il y a à l'intérieur de cette boîte.\nThank you for considering me for the job.\tMerci d'examiner ma candidature pour le poste.\nThank you for considering me for the job.\tMerci de réfléchir à moi pour le boulot.\nThank you for helping me find a good job.\tMerci de m'aider à trouver un bon boulot.\nThank you for helping me write my resume.\tMerci de m'aider à écrire mon curriculum vitae.\nThank you for teaching me how to do this.\tMerci de m'enseigner à le faire.\nThank you very much for your hospitality.\tMerci beaucoup pour votre hospitalité.\nThat adds a new dimension to our problem.\tÇa ajoute une nouvelle dimension à notre problème.\nThat architect builds very modern houses.\tCet architecte construit des maisons très modernes.\nThat chicken hasn't laid any eggs lately.\tCette poule n'a pas pondu d'œufs récemment.\nThat chicken hasn't laid any eggs lately.\tCette poule n'a pas pondu d'œufs ces derniers temps.\nThat experiment led to a great discovery.\tCette expérience mena à une grande découverte.\nThat he is a genius is clear to everyone.\tLe fait qu'il soit un génie est clair pour tout le monde.\nThat house is the place where I was born.\tC'est la maison où je suis né.\nThat is the sort of job I am cut out for.\tC'est le genre de travail pour lequel je suis fait.\nThat organization is corrupt to its core.\tCette organisation est corrompue jusqu'à l'os.\nThat poor family survives on food stamps.\tCette malheureuse famille survit avec les timbres de rationnement.\nThat tradition has fallen by the wayside.\tCette tradition est tombée en désuétude.\nThat way I kill two birds with one stone.\tComme ça, je fais d'une pierre deux coups.\nThat's a good idea. I'm going to do that.\tC'est une bonne idée. Je vais faire ça.\nThat's it. I've done everything I can do.\tC'est tout. J'ai fait tout ce que je pouvais.\nThat's why no one wants to work with you.\tVoilà pourquoi personne ne veut travailler avec vous.\nThe British would need strong leadership.\tLes Anglais auraient besoin d'un chef fort.\nThe Japanese live in harmony with nature.\tLes Japonais vivent en harmonie avec la nature.\nThe accident was due to his carelessness.\tL'accident était dû à son manque d'attention.\nThe accused tried to justify his actions.\tL'accusé essaya de justifier ses actions.\nThe actress tore up her contract angrily.\tL'actrice déchira son contrat avec colère.\nThe age of nuclear power is not yet over.\tL'ère du nucléaire n'est pas encore terminée.\nThe air conditioner doesn't seem to work.\tL'air conditionné n'a pas l'air de fonctionner.\nThe air feels somewhat cold this morning.\tLe fond de l'air est frais ce matin.\nThe airplane was flying above the clouds.\tL'avion volait au-dessus des nuages.\nThe airplane was flying above the clouds.\tL'avion vola au-dessus des nuages.\nThe allegations they made were unfounded.\tLes allégations qu'ils firent étaient infondées.\nThe allegations they made were unfounded.\tLes allégations qu'elles firent étaient infondées.\nThe apple doesn't fall far from the tree.\tLe fruit ne tombe jamais loin de l'arbre.\nThe apple doesn't fall far from the tree.\tLa pomme ne tombe pas loin du tronc.\nThe attack began without enough planning.\tL'attaque commença sans préparation suffisante.\nThe baby has been crying for a long time.\tLe bébé pleure depuis longtemps.\nThe ball rolled on the ground towards me.\tLe ballon a roulé sur le sol dans ma direction.\nThe bird was covered with white feathers.\tL'oiseau était couvert de plumes blanches.\nThe book you gave me is very interesting.\tLe livre que tu m'as donné est très intéressant.\nThe boss has a good opinion of your work.\tLe patron a une bonne opinion de ton boulot.\nThe boss has a good opinion of your work.\tLe patron a une bonne opinion de votre travail.\nThe boy denied having stolen the bicycle.\tLe garçon nia avoir volé le vélo.\nThe boy did nothing but cry all day long.\tLe garçon n'a fait que crier toute la journée.\nThe boy is playing with his toy soldiers.\tLe garçon joue avec ses petits soldats.\nThe boy playing the guitar is my brother.\tLe garçon qui joue de la guitare est mon frère.\nThe building collapsed in the earthquake.\tLe bâtiment s'effondra lors du tremblement de terre.\nThe building collapsed in the earthquake.\tLe bâtiment s'est effondré lors du tremblement de terre.\nThe building collapsed in the earthquake.\tC'est le bâtiment qui s'effondra lors du tremblement de terre.\nThe building collapsed in the earthquake.\tC'est le bâtiment qui s'est effondré lors du tremblement de terre.\nThe building was heavily damaged by fire.\tLe bâtiment fut gravement endommagé par un incendie.\nThe burglar shut the child in the closet.\tLe voleur enferma l'enfant dans l'armoire.\nThe bus driver didn't see the pedestrian.\tLe chauffeur de bus ne vit pas le piéton.\nThe cake got crushed by the jar of juice.\tLe gâteau a été écrasé par le pichet de jus.\nThe canteen had not a drop of water left.\tLe bidon ne contenait plus une goutte d'eau.\nThe children go to school in the morning.\tLes enfants vont à l'école le matin.\nThe children have already gone to school.\tLes enfants ont déjà fréquenté une école.\nThe children shared a pizza after school.\tLes enfants partagèrent une pizza après l'école.\nThe church is between my house and yours.\tL'église se situe entre ta maison et la mienne.\nThe coffee is too bitter for me to drink.\tLe café est trop amer pour que je puisse le boire.\nThe committee consists of fifteen people.\tLe comité est composé de quinze personnes.\nThe computer industry is enjoying a boom.\tLe secteur informatique vit une période de croissance.\nThe conference went on according to plan.\tLa conférence s'est poursuivie comme prévu.\nThe cook put the food in the dumb waiter.\tLe cuisinier plaça la nourriture dans le passe-plat.\nThe cook put the food in the dumb waiter.\tLe cuisinier plaça la nourriture dans la desserte.\nThe cost of living in Tokyo is very high.\tLe coût de la vie à Tokyo est très élevé.\nThe cost of living is very high in Tokyo.\tLe coût de la vie à Tokyo est très élevé.\nThe cough syrup has a licorice flavoring.\tLe sirop pour la toux a un goût de réglisse.\nThe country is headed on the wrong track.\tLe pays est sur la mauvaise pente.\nThe dead and wounded soon lay everywhere.\tLes morts et les blessés étaient bientôt étendus partout.\nThe doctor advised me to give up smoking.\tLe docteur m'a conseillé d'arrêter de fumer.\nThe doctor instructed me to go on a diet.\tLe médecin m'a recommandé de me mettre au régime.\nThe dog pursued a rabbit into the forest.\tLe chien poursuivait un lapin dans la forêt.\nThe earthworm wriggled when I touched it.\tLe ver de terre gigota lorsque je le touchai.\nThe earthworm wriggled when I touched it.\tLe ver de terre se tortilla alors que je le touchai.\nThe elevator stopped on the second floor.\tL'ascenseur s’arrêta au deuxième étage.\nThe elevator stopped on the second floor.\tL'ascenseur s'est arrêté au deuxième étage.\nThe explorers finally reached their goal.\tLes exploratrices atteignirent finalement leur but.\nThe explorers finally reached their goal.\tLes explorateurs ont finalement atteint leur but.\nThe fact is that I have no money with me.\tLe fait est que je n'ai pas d'argent sur moi.\nThe family had a hard time after the war.\tLa famille a connu des heures difficiles après la guerre.\nThe fishermen took photos of their catch.\tLes pêcheurs prirent des photos de leurs prises.\nThe fishermen took photos of their catch.\tLes pêcheurs prirent des photos de leur prise.\nThe food was so good that I ate too much.\tLa nourriture était si bonne que j'ai trop mangé.\nThe game was postponed until next Sunday.\tLa partie fut remise au dimanche suivant.\nThe girl I told you about lives in Kyoto.\tLa fille dont je t'ai parlé habite Kyoto.\nThe girl is reading with her grandfather.\tLa fille lit avec son grand-père.\nThe girl who works at the bakery is cute.\tLa fille qui travaille à la boulangerie est mignonne.\nThe girl's parents agreed to her request.\tLes parents de la fille accédèrent à sa demande.\nThe glass bowl broke into tiny fragments.\tLe bol en verre s'est brisé en petits morceaux.\nThe guy who hit you is at the front door.\tLe type qui t'a frappé est à la porte d'entrée.\nThe guy who hit you is at the front door.\tLe type qui t'a frappée est à la porte d'entrée.\nThe island was now surrounded by militia.\tL'île était maintenant encerclée par la milice.\nThe king would not even read the message.\tLe roi ne voulait pas même lire le message.\nThe mayor presented the prizes in person.\tLe maire a attribué les prix en personne.\nThe members of the committee are all men.\tLes membres du comité sont tous des hommes.\nThe method was crude, but very effective.\tLa méthode était rude mais efficace.\nThe method was crude, but very effective.\tLa méthode était brutale, mais très efficace.\nThe minister approved the building plans.\tLe ministre a approuvé les plans de construction.\nThe moon came out from behind the clouds.\tLa lune est sortie de derrière les nuages.\nThe more I know him, the more I like him.\tPlus je le connais, plus je l'apprécie.\nThe more money we have, the more we want.\tPlus on a d'argent, plus on en veut.\nThe more you learn, the more you want to.\tPlus tu étudies, plus tu as envie d'étudier.\nThe more you play, the better you'll get.\tPlus tu joues, le meilleur tu deviens.\nThe more you play, the better you'll get.\tPlus vous jouez, le meilleur vous devenez.\nThe mother of that child is an announcer.\tLa mère de cet enfant est speakerine.\nThe movie industry became a big business.\tL'industrie cinématographique devint une grosse activité économique.\nThe museum is open from Monday to Friday.\tLe musée est ouvert du lundi au vendredi.\nThe nation mourned the death of the king.\tLa nation pleura la mort du roi.\nThe need for reform in Italy is enormous.\tLe besoin de réforme, en Italie, est énorme.\nThe neighbor's dog was barking all night.\tLe chien du voisin a aboyé toute la nuit.\nThe new model will retail for 30,000 yen.\tLe nouveau modèle sera vendu au détail à 30.000 yens.\nThe officer inspired his men to be brave.\tL'officier encouragea ses hommes à faire preuve de bravoure.\nThe officer inspired his men to be brave.\tL'officier insuffla du courage à ses hommes.\nThe old lady smiled at her granddaughter.\tLa vieille dame sourit à sa petite-fille.\nThe only thing that Tom drinks is coffee.\tTom boit uniquement du café.\nThe password you have entered is invalid.\tLe mot de passe que vous avez saisi est invalide.\nThe people I work with are all very kind.\tLes gens avec qui je travaille sont tous très gentils.\nThe pharmacy isn't far from the hospital.\tLa pharmacie n'est pas loin de l'hôpital.\nThe planet closest to the sun is Mercury.\tLa planète la plus proche du soleil est Mercure.\nThe planet nearest to the sun is Mercury.\tLa planète la plus proche du soleil est Mercure.\nThe police caught the burglar red-handed.\tLa police a arrêté le cambrioleur la main dans le sac.\nThe police continued their investigation.\tLa police poursuivit son enquête.\nThe police continued their investigation.\tLa police a poursuivi son enquête.\nThe post office is not too far from here.\tLa poste n'est pas très loin d'ici.\nThe present government has many problems.\tLe gouvernement actuel a beaucoup de problèmes.\nThe price of gold varies from day to day.\tLe prix de l'or varie d'un jour à l'autre.\nThe problem is you're not patient enough.\tLe problème, c'est que tu n'es pas assez patient.\nThe problem is you're not patient enough.\tLe problème, c'est que tu n'es pas assez patiente.\nThe problem will eventually solve itself.\tLe problème finira par se résoudre de lui-même.\nThe pyramids were built in ancient times.\tLes pyramides furent bâties en des temps anciens.\nThe quickest means of travel is by plane.\tLa manière la plus rapide de voyager est par avion.\nThe reporter refused to name his sources.\tLe journaliste a refusé de révéler ses sources.\nThe results are by no means satisfactory.\tLes résultats ne sont en aucune manière satisfaisants.\nThe richer he became, the more he wanted.\tPlus il devenait riche plus il en voulait.\nThe rioters beat many policemen to death.\tLes émeutiers frappèrent de nombreux policiers à mort.\nThe rooms in this hotel are pretty basic.\tLes chambres dans cet hôtel sont frustes.\nThe rooms in this hotel are pretty basic.\tLes chambres dans cet hôtel sont assez spartiates.\nThe school is closed because of the snow.\tL'école est fermée en raison de la neige.\nThe ship sank with all her crew on board.\tCe bateau a coulé avec tout son équipage.\nThe shop is just in front of the station.\tLe magasin se situe exactement en face de la gare.\nThe situation became worse by the minute.\tLa situation empirait de minute en minute.\nThe situation calls for drastic measures.\tLa situation exige des mesures drastiques.\nThe situation changed the following year.\tLa situation changea l'année suivante.\nThe size of the universe is unimaginable.\tLa taille de l'univers est inimaginable.\nThe station is in the center of the city.\tLa gare se trouve en centre-ville.\nThe strike affected the nation's economy.\tLa grève a nui à l'économie nationale.\nThe strike affected the nation's economy.\tLa grève a affecté l'économie nationale.\nThe temperature is below zero today, too.\tLa température est encore aujourd'hui en dessous de zéro.\nThe three brothers must help one another.\tLes trois frères doivent s'entraider.\nThe time bomb exploded with a loud noise.\tLa bombe à retardement explosa dans un grand vacarme.\nThe top of Mt. Fuji is covered with snow.\tLe sommet du mont Fuji est couvert de neige.\nThe tour guide can speak three languages.\tLe guide sait parler trois langues.\nThe tragedy of war must not be forgotten.\tLa tragédie de la guerre ne doit pas être oubliée.\nThe train was about to leave the station.\tLe train était sur le point de quitter la gare.\nThe train was almost an hour behind time.\tLe train avait près d'une heure de retard.\nThe truck made a sharp turn to the right.\tLe camion a fait un virage à droite en épingle.\nThe two had been enemies for a long time.\tCes deux-là avaient été ennemis depuis longtemps.\nThe two of them were never to meet again.\tTous deux ne devaient jamais plus se rencontrer.\nThe two of them were never to meet again.\tToutes deux ne devaient jamais plus se rencontrer.\nThe typewriter is stored in the basement.\tLa machine à écrire est rangée au sous-sol.\nThe union was modest in its wage demands.\tLe syndicat fut modéré dans ses revendications salariales.\nThe war brought their research to an end.\tLa guerre mit fin à leurs recherches.\nThere are few places to park around here.\tIl y a peu de places où se garer par ici.\nThere are many beautiful parks in London.\tIl y a beaucoup de jolis parcs à Londres.\nThere are many different kinds of beauty.\tIl y a de nombreuses différentes sortes de beauté.\nThere are many good reasons not to do it.\tIl y a de nombreuses bonnes raisons de ne pas le faire.\nThere are many red flowers in the garden.\tIl y a beaucoup de fleurs rouges dans le jardin.\nThere are many wild animals in this area.\tIl y a de nombreux animaux sauvages dans cette zone.\nThere are people here who need your help.\tIl y a ici des gens qui ont besoin de votre aide.\nThere are plenty of nice girls out there.\tIl y a plein de chouettes filles là-bas.\nThere are plenty of nice girls out there.\tIl y a plein de chouettes nanas là-bas.\nThere are two zeros in the number \"2010.\"\tLe nombre 2010 contient deux zéros.\nThere are two zeros in the number \"2010.\"\tLe nombre « 2010 » comporte deux zéros.\nThere is a lot of furniture in this room.\tIl y a beaucoup de meubles dans cette pièce.\nThere is almost no violence in that city.\tIl n'y a presque pas de violence dans cette ville.\nThere is always something happening here.\tIci, il se passe toujours quelque chose.\nThere is an urgent need for a new policy.\tOn a un besoin urgent d'une nouvelle politique.\nThere is an urgent need for a new system.\tOn a un besoin urgent d'un nouveau système.\nThere is an urgent need for blood donors.\tIl y a un besoin urgent de donneurs de sang.\nThere is an urgent need for clean energy.\tOn a un besoin urgent d'énergie propre.\nThere is an urgent need for more doctors.\tIl y a un besoin urgent de davantage de médecins.\nThere is little hope that they are alive.\tIl y a peu d'espoirs qu'ils soient vivants.\nThere is little hope that they are alive.\tIl y a peu d'espoir qu'ils soient vivants.\nThere is no necessity for you to do that.\tIl n'est pas nécessaire que vous fassiez ça.\nThere is no reason why I shouldn't do it.\tIl n'y aucune raison que je ne le fasse pas.\nThere is nothing I can do to change that.\tJe ne peux rien faire pour changer ça.\nThere is nothing for you to be afraid of.\tIl n'y a pas de quoi avoir peur.\nThere is sand at the bottom of the ocean.\tIl y a du sable au fond de l'océan.\nThere is too much furniture in the house.\tIl y a trop de mobilier dans la maison.\nThere is too much furniture in this room.\tIl y a trop de meubles dans cette pièce.\nThere is too much furniture in this room.\tDans cette pièce, il y a trop de meubles.\nThere is very little hope of his success.\tIl y a très peu d'espoir qu'il réussisse.\nThere was a list of available candidates.\tIl y avait une liste de candidats disponibles.\nThere was a list of available candidates.\tIl y avait une liste de candidates disponibles.\nThere was a small box inside the big box.\tUne petite boîte se trouvait à l'intérieur de la grande.\nThere was no taxi, so I had to walk home.\tIl n'y avait pas de taxis, alors j'ai dû marcher jusqu'à chez moi.\nThere was no taxi, so I had to walk home.\tIl n'y avait pas de taxis, alors je dus marcher jusqu'à chez moi.\nThere were all sorts of group activities.\tIl y avait toutes sortes d'activités de groupe.\nThere were fifty passengers on the plane.\tIl y avait cinquante passagers dans l'avion.\nThere were hundreds of birds on the lake.\tIl y avait des centaines d'oiseaux sur le lac.\nThere were no fences on the great plains.\tIl n'y avait pas de clôtures sur les grandes plaines.\nThere's a book about dancing on the desk.\tIl y a un livre sur la danse sur le bureau.\nThere's a good chance that he'll be late.\tIl y a une bonne chance qu'il soit en retard.\nThere's almost no coffee left in the pot.\tIl ne reste presque plus de café dans la cafetière.\nThere's going to be a math test tomorrow.\tIl va y avoir une interrogation de maths, demain.\nThere's going to be a math test tomorrow.\tIl va y avoir une interro de maths, demain.\nThere's no hurry. We have plenty of time.\tIl n'y a pas d'urgence. Nous avons beaucoup de temps.\nThere's nothing better than a good novel.\tIl n'y a rien de mieux qu'un bon roman.\nThere's some leftover food in the fridge.\tIl y a quelques restes dans le frigo.\nThere's some leftover food in the fridge.\tIl y a des restes dans le réfrigérateur.\nThere's something I feel you should know.\tIl y a quelque chose dont j'ai le sentiment que tu devrais le savoir.\nThere's something I feel you should know.\tIl y a quelque chose dont j'ai le sentiment que vous devriez le savoir.\nThere's something I need to do right now.\tIl y a quelque chose que j'ai besoin de faire maintenant.\nThere's something wrong with my computer.\tQuelque chose ne va pas avec mon ordinateur.\nThere’s no better way to start the day.\tIl n'y a pas de meilleure façon pour commencer la journée.\nThese empty boxes take up too much space.\tCes boîtes vides prennent trop de place.\nThey accused him of stealing the bicycle.\tIls l'ont accusé d'avoir volé le vélo.\nThey accused him of stealing the bicycle.\tIls l'accusèrent d'avoir volé le vélo.\nThey accused him of stealing the bicycle.\tElles l'ont accusé d'avoir volé le vélo.\nThey admired the fine view from the hill.\tIls admiraient la belle vue depuis la colline.\nThey are now either in Kyoto or in Osaka.\tIls sont à présent soit à Kyoto, soit à Osaka.\nThey arrived at the foot of the mountain.\tElles arrivèrent au pied de la montagne.\nThey arrived at the foot of the mountain.\tIls arrivèrent au pied de la montagne.\nThey arrived at the foot of the mountain.\tElles sont arrivées au pied de la montagne.\nThey arrived at the foot of the mountain.\tIls sont arrivés au pied de la montagne.\nThey became friends in elementary school.\tIls sont devenus amis à l'école primaire.\nThey broke out into spontaneous laughter.\tIls éclatèrent d'un rire naturel.\nThey entertained us at dinner last night.\tIls nous ont reçus à dîner hier soir.\nThey entertained us at dinner last night.\tElles nous ont reçus à dîner hier soir.\nThey entertained us at dinner last night.\tIls nous ont reçues à dîner hier soir.\nThey entertained us at dinner last night.\tElles nous ont reçues à dîner hier soir.\nThey kept flashing that light in my eyes.\tIls n'arrêtaient pas de me mettre cette lumière dans les yeux.\nThey left there the day before yesterday.\tIls en sont partis avant-hier.\nThey really wanted to know what happened.\tIls voulaient vraiment savoir ce qui s'était passé.\nThey spent the afternoon around the pool.\tElles passèrent l'après-midi autour de la piscine.\nThey spent the afternoon around the pool.\tElles ont passé l'après-midi autour de la piscine.\nThey spent the afternoon around the pool.\tIls passèrent l'après-midi autour de la piscine.\nThey spent the afternoon around the pool.\tIls ont passé l'après-midi autour de la piscine.\nThey studied the map to find a short cut.\tIls étudièrent la carte pour trouver un raccourci.\nThey supported his right to speak freely.\tIls soutinrent son droit à parler librement.\nThey supported his right to speak freely.\tIls ont soutenu son droit à parler librement.\nThey supported his right to speak freely.\tElles soutinrent son droit à parler librement.\nThey supported his right to speak freely.\tElles ont soutenu son droit à parler librement.\nThey talked on the telephone every night.\tIls discutaient tous les soirs au téléphone.\nThey waved flags to welcome the princess.\tIls agitèrent des drapeaux pour souhaiter la bienvenue à la princesse.\nThey waved flags to welcome the princess.\tElles agitèrent des drapeaux pour souhaiter la bienvenue à la princesse.\nThey were in that room with me all night.\tIls étaient dans cette pièce, avec moi, toute la nuit.\nThey were in that room with me all night.\tElles étaient dans cette pièce, avec moi, toute la nuit.\nThey were speaking in a Southern dialect.\tIls parlaient en dialecte du Sud.\nThey worked together to put out the fire.\tIls travaillèrent ensemble pour étouffer le feu.\nThey're expressing their love by hugging.\tIls expriment leur amour en s'enlaçant.\nThis afternoon we will have an interview.\tCet après-midi nous allons donner une interview.\nThis airport is easily accessible by bus.\tCet aéroport est facilement accessible par le bus.\nThis answer may not necessarily be wrong.\tCette réponse n'est pas nécessairement fausse.\nThis car was cheap enough for him to buy.\tCette voiture était suffisamment bon marché pour qu'il puisse l'acheter.\nThis church was destroyed by cannon fire.\tCette église fut détruite par un tir d'obus.\nThis color is a bit darker than that one.\tCette couleur est un peu plus sombre que celle-ci.\nThis company's profit margin is very big.\tLa marge bénéficiaire de cette entreprise est très importante.\nThis diagram will illustrate what I mean.\tCe schéma illustrera ce que je veux dire.\nThis dictionary has about 40,000 entries.\tCe dictionnaire comporte environ quarante mille entrées.\nThis is a good book for children to read.\tC'est un bon livre pour les enfants à lire.\nThis is a sociological study on abortion.\tC'est une étude sociologique sur l'avortement.\nThis is one of the things he always says.\tC'est l'une des choses qu'il dit toujours.\nThis is the church where Blake is buried.\tC'est l'église où Blake est enterré.\nThis is the culmination of years of work.\tC'est l'aboutissement d'années de travail.\nThis is the hardest thing I've ever done.\tC'est la chose la plus dure que j'ai jamais faite.\nThis is the worst movie I have ever seen.\tC'est le pire film que j'ai jamais vu.\nThis medicine does not have side effects.\tCe médicament n'a pas d'effets secondaires.\nThis melody is familiar to many Japanese.\tCette mélodie est connue de nombreux Japonais.\nThis morning I got up earlier than usual.\tCe matin je me suis levé plus tôt que d'habitude.\nThis movie is so terrible it's hilarious.\tCe film est tellement nul que c'en est risible.\nThis restaurant is full of young couples.\tCe restaurant est plein de jeunes couples.\nThis was the best-selling book last week.\tC'était le livre le plus vendu la semaine dernière.\nThis word means several different things.\tCe mot signifie plusieures choses différentes.\nThose countries used to belong to France.\tCes pays appartenaient à la France.\nThoughts are expressed by means of words.\tLes pensées s'expriment par des mots.\nTickets are still available if you hurry.\tDes tickets sont toujours disponibles si tu te dépêches.\nTickets are still available if you hurry.\tDes billets sont toujours disponibles si vous vous dépêchez.\nTime is more precious than anything else.\tLe temps est la chose la plus précieuse.\nTo make a long story short, he was fired.\tEn bref, il a été viré.\nTo my surprise, he had a beautiful voice.\tÀ ma surprise, il avait une voix magnifique.\nTo try to bring it back would be foolish.\tEssayer de le réinstaurer serait imprudent.\nTo try to bring it back would be foolish.\tEssayer de le ramener serait imprudent.\nTom always wants to sit in the front row.\tTom veut toujours s'asseoir au premier rang.\nTom and Mary adopted a handicapped child.\tTom et Marie ont adopté un enfant handicapé.\nTom and Mary adopted a handicapped child.\tTom et Marie adoptèrent un enfant handicapé.\nTom and Mary are getting ready to go out.\tTom et Marie se préparent pour sortir.\nTom and Mary don't know what's happening.\tTom et Mary ne savent pas ce qu'il se passe.\nTom and Mary were on the same wavelength.\tTom et Marie étaient sur la même longueur d’onde.\nTom and Mary will get married next month.\tTom et Mary se marieront le mois prochain.\nTom armed himself with a gun and a knife.\tTom s'arma d'un fusil et d'un couteau.\nTom asked the waitress for the wine list.\tTom a demandé la carte des vins à la serveuse.\nTom asked the waitress for the wine list.\tTom demanda la carte des vins à la serveuse.\nTom bought a Chinese-Japanese dictionary.\tTom a acheté un dictionnaire chinois-japonais.\nTom bought a Chinese-Japanese dictionary.\tTom acheta un dictionnaire chinois-japonais.\nTom bought a Japanese-Chinese dictionary.\tTom a acheté un dictionnaire japonais-chinois.\nTom bought a Japanese-Chinese dictionary.\tTom acheta un dictionnaire japonais-chinois.\nTom can't leave Boston until next Monday.\tTom ne peut pas quitter Boston avant lundi prochain.\nTom cheated on his girlfriend for months.\tTom a trompé sa petite amie durant des mois.\nTom congratulated Mary on her graduation.\tTom félicita Mary pour son diplôme.\nTom could learn a thing or two from Mary.\tTom pourrait apprendre une chose ou deux de Mary.\nTom couldn't go anywhere without his dog.\tTom ne pouvais aller nulle part sans son chien.\nTom couldn't make a living as a musician.\tTom n'a pas réussi à gagner sa vie en tant que musicien.\nTom cried for help, but nobody heard him.\tTom appela à l'aide, mais personne ne l'entendit.\nTom didn't clap after Mary's performance.\tTom n'a pas applaudi après la performance de Mary.\nTom didn't have a good time at the party.\tTom n'a pas passé un bon moment à la fête.\nTom didn't understand the joke Mary told.\tTom n'a pas compris la blague que Marie a racontée.\nTom didn't want to leave his dog with me.\tTom ne voulait pas laisser son chien avec moi.\nTom didn't want to leave his dog with me.\tTom n'a pas voulu laisser son chien avec moi.\nTom doesn't need to know where I'm going.\tTom n'a pas besoin de savoir où je vais.\nTom doesn't really understand how I feel.\tTom ne comprend pas vraiment comment je me sens.\nTom doesn't wear glasses, but he used to.\tTom ne porte pas de lunettes, mais il en portait.\nTom fainted as soon as he saw the needle.\tTom s'est évanoui dès qu'il a vu l'aiguille.\nTom followed his parents down the street.\tTom a suivi ses parents dans la rue.\nTom got killed in an automobile accident.\tTom a été tué dans un accident de voiture.\nTom got mad at Mary because she was late.\tTom s'est mis en colère contre Mary car elle était en retard.\nTom grabbed the rope with his right hand.\tTom attrapa la corde avec sa main droite.\nTom has a really good sense of direction.\tTom a un très bon sens de l'orientation.\nTom has been spreading rumors about Mary.\tTom a répandu des rumeurs sur Marie.\nTom has decided to put off his departure.\tTom a décidé de différer son départ.\nTom has less money than his brother does.\tTom a moins d'argent que n'en a son frère.\nTom has stayed at my house several times.\tTom est resté chez moi plusieurs fois.\nTom hoped to get back together with Mary.\tTom espérait renouer avec Marie.\nTom hung out with his friends last night.\tTom a traîné avec ses amis la nuit dernière.\nTom is a Canadian who lives in Australia.\tTom est un canadien qui vit en Australie.\nTom is head over heels in love with Mary.\tTom est follement amoureux de Mary.\nTom is just a little bit shorter than me.\tTom est juste un peu plus petit que moi.\nTom is one of the few people I can trust.\tTom est une des rares personnes auxquelles je puisse faire confiance.\nTom is single and has never been married.\tTom est célibataire et n'a jamais été marié.\nTom is the captain of this baseball team.\tTom est le capitaine de cette équipe de baseball.\nTom isn't accustomed to working at night.\tTom n'est pas habitué à travailler la nuit.\nTom isn't qualified to teach high school.\tTom n'est pas qualifié pour enseigner au lycée.\nTom knew that Mary was trying to do that.\tTom savait que Mary essayait de le faire.\nTom left some dirty dishes in the sink­.\tTom a laissé de la vaisselle sale dans l'évier.\nTom likes to write poems and song lyrics.\tThomas aime écrire des poèmes et des paroles de chansons.\nTom loves Mary, but she doesn't love him.\tTom aime Marie, mais elle ne l'aime pas.\nTom made a great deal of money last year.\tTom a fait beaucoup d'argent l'année dernière.\nTom made a list of songs he doesn't like.\tTom a fait une liste des chansons qu'il n'aimait pas.\nTom made a list of songs he doesn't like.\tTom fit une liste des chansons qu'il n'aimait pas.\nTom never really wanted to go to Harvard.\tTom n'a jamais vraiment voulu aller à Harvard.\nTom never used to smoke, but he does now.\tTom ne fumait jamais, mais il le fait maintenant.\nTom noticed that his hands weren't clean.\tTom remarqua que ses mains n'étaient pas propres.\nTom often borrows money from his friends.\tTom emprunte souvent de la monnaie à ses amis.\nTom only sleeps about five hours a night.\tTom ne dort qu'environ cinq heures par nuit.\nTom promised he wouldn't do that anymore.\tTom a promis qu'il ne ferait plus jamais cela.\nTom promised me he would be here by 2:30.\tTom m'a promis d'être là avant deux heures et demie.\nTom propped his bicycle against the wall.\tTom posa son vélo contre le mur.\nTom refused to help Mary do her homework.\tTom refusa d'aider Marie à faire ses devoirs.\nTom refused to help Mary do her homework.\tTom a refusé d'aider Marie à faire ses devoirs.\nTom regularly eats sushi with his mother.\tTom mange régulièrement des sushis avec sa mère.\nTom restrained himself from hitting Mary.\tTom se retint de frapper Mary.\nTom restrained himself from hitting Mary.\tTom s'est retenu de frapper Mary.\nTom said Boston is a nice place to visit.\tTom a dit que Boston est un endroit agréable à visiter.\nTom said Mary was coming over for dinner.\tTom a dit que Marie venait pour le dîner.\nTom said he saw Mary get into John's car.\tTom dit avoir vu monter Marie dans la voiture de John.\nTom says he already knows how to do that.\tTom dit qu'il sait déjà comment faire cela.\nTom says he doesn't want to study French.\tTom déclare ne pas vouloir étudier le français.\nTom says he's read this book three times.\tTom dit qu'il a lu ce livre trois fois.\nTom sent money to his daughter to Boston.\tTom a envoyé de l'argent à sa fille à Boston.\nTom spends too much time on the computer.\tTom passe trop de temps sur l'ordinateur.\nTom still doesn't speak French very well.\tTom ne parle toujours pas très bien français.\nTom thinks Mary doesn't get enough sleep.\tTom pense que Mary ne dort pas assez.\nTom tied the canoe to the top of his car.\tTom a fixé le canoé sur le toit de sa voiture.\nTom told Mary about his imaginary friend.\tTom a parlé de son ami imaginaire à Marie.\nTom told me to treat others with respect.\tTom m'a dit de traiter les autres avec respect.\nTom told me where you hid the gold coins.\tTom m'a dit où tu cachais les pièces d'or.\nTom told me where you hid the gold coins.\tTom m'a dit où vous cachiez les pièces d'or.\nTom tripled his investment in six months.\tTom a triplé son investissement en six mois.\nTom tripled his investment in six months.\tTom tripla son investissement en six mois.\nTom wanted Mary to stay with him forever.\tTom voulait que Mary reste avec lui pour toujours.\nTom wanted me to meet him at the station.\tTom voulait que j'aille le chercher à la gare.\nTom wants to know more about Mary's past.\tTom veut en savoir davantage sur le passé de Marie.\nTom was badly beaten before being killed.\tTom a été roué de coups avant d'être tué.\nTom was badly beaten before being killed.\tTom a été sévèrement frappé avant d'être tué.\nTom was chosen from among 300 applicants.\tTom a été choisi parmi trois cents candidats.\nTom was mugged on his way home from work.\tTom s'est fait agressé en rentrant chez lui du travail.\nTom went to Japan on a work holiday visa.\tTom est allé au Japon avec un visa vacances-travail.\nTom's a beginner, but he catches on fast.\tTom est débutant, mais il apprend vite.\nUnfortunately, elephants can't sing well.\tMalheureusement, les éléphants ne peuvent pas bien chanter.\nUnfortunately, elephants can't sing well.\tDommage que les éléphants ne puissent pas bien chanter !\nWater turns into steam when it is boiled.\tL'eau se transforme en vapeur quand elle est bouillie.\nWe are all but ready for the cold winter.\tNous sommes tout sauf prêts pour le rude hiver.\nWe are encouraged to use our imagination.\tOn nous encourage à utiliser notre imagination.\nWe can't pretend that this didn't happen.\tNous ne pouvons pas prétendre que ça n'est pas arrivé.\nWe couldn't convince him of his mistakes.\tNous n'avons pu le convaincre de ses propres fautes.\nWe did nothing wrong. It was only a kiss.\tNous n'avons rien fait de mal. Ce n'était qu'un baiser.\nWe did nothing wrong. It was only a kiss.\tNous n'avons rien fait de mal. Il ne s'agissait que d'un baiser.\nWe didn't have many visitors this summer.\tNous n'avons pas eu beaucoup de visiteurs cet été.\nWe discussed the problem for a long time.\tNous avons discuté du problème depuis longtemps déjà.\nWe found a secret door into the building.\tNous avons trouvé une porte dérobée dans le bâtiment.\nWe have a few surprises in store for her.\tNous lui réservons quelques surprises.\nWe have a gig at the club tomorrow night.\tNous faisons un bœuf au club demain soir.\nWe have a new coach and some new players.\tNous avons un nouvel entraîneur et de nouveaux joueurs.\nWe have known each other since childhood.\tNous nous connaissons depuis l'enfance.\nWe have more customers than we can count.\tNous avons plus de clients que nous ne pouvons en compter.\nWe have more customers than we can count.\tNous avons plus de clients que nous ne pouvons en dénombrer.\nWe have more important things to discuss.\tNous avons des choses plus importantes à discuter.\nWe have to crack down on illegal trading.\tIl faut sévir face au commerce illégal.\nWe have to crack down on illegal trading.\tIl faut prendre des mesures plus fermes contre le commerce illégal.\nWe have to find out what's going on here.\tNous devons savoir ce qui se passe ici.\nWe have to get up early tomorrow morning.\tNous devons nous lever tôt demain matin.\nWe have to work hard to fix this problem.\tNous devons travailler dur pour résoudre ce problème.\nWe haven't been to Boston in a long time.\tNous ne sommes pas allés à Boston depuis longtemps.\nWe live in the country during the summer.\tNous vivons à la campagne durant l'été.\nWe make progress only one step at a time.\tNous progressons seulement un pas après l'autre.\nWe must make up for the loss in some way.\tOn doit compenser les pertes d'une manière ou d'une autre.\nWe must pay a toll to drive on this road.\tNous devons payer le péage pour rouler sur cette route.\nWe must sleep at least seven hours a day.\tOn devrait dormir au minimum sept heures par nuit.\nWe need to find somebody who can help us.\tNous avons besoin de trouver quelqu'un qui peut nous aider.\nWe often have barbecues and pool parties.\tNous faisons souvent des barbecues et des soirées piscine.\nWe owe more on our house than it's worth.\tNous avons davantage de dettes sur notre maison qu'elle n'en vaut.\nWe put up the flags on national holidays.\tNous arborons les drapeaux lors des jours de fêtes nationales.\nWe searched the house from top to bottom.\tNous avons fouillé la maison de fond en comble.\nWe should take a break and have some tea.\tNous devrions faire une pause et prendre un thé.\nWe spent the afternoon cleaning our gear.\tNous avons passé l'après-midi à nettoyer notre équipement.\nWe stayed at home because it was raining.\tNous sommes restés à la maison parce qu'il pleuvait.\nWe took an examination in math last week.\tNous avons passé un examen de mathématiques la semaine passée.\nWe took an examination in math last week.\tNous avons passé un examen de mathématiques la semaine dernière.\nWe want you to be more careful next time.\tNous voulons que tu sois plus prudent la prochaine fois.\nWe watched a baseball game on television.\tOn a regardé un match de baseball à la télévision.\nWe watched a baseball game on television.\tNous avons regardé un match de baseball à la télévision.\nWe were all shaking from the bitter cold.\tNous tremblions tous dans le froid vif.\nWe were shocked at the news of his death.\tNous fûmes choqués à la nouvelle de sa mort.\nWe were shocked at the news of his death.\tNous fûmes choquées à la nouvelle de sa mort.\nWe were shocked at the news of his death.\tNous avons été choqués à la nouvelle de sa mort.\nWe were shocked at the news of his death.\tNous avons été choquées à la nouvelle de sa mort.\nWe were shown all of their family photos.\tOn nous montra toutes leurs photos de famille.\nWe were very sorry we couldn't help them.\tNous étions vraiment désolés de ne pouvoir les aider.\nWe will eat, and then go straight to bed.\tOn mange et puis on va tout de suite se coucher.\nWe wish him well in his future endeavors.\tNous lui adressons nos souhaits pour ses futures entreprises.\nWe'll leave tomorrow, weather permitting.\tNous partirons demain, si le temps le permet.\nWe'll see what Tom has to say about that.\tNous verrons ce que Tom a à dire à ce sujet.\nWe're expecting a good harvest this year.\tOn s'attend à une bonne récolte cette année.\nWe're expecting a good harvest this year.\tLa moisson s'annonce bonne cette année.\nWe're looking forward to your being here.\tNous nous réjouissons de votre présence.\nWe're one of the best teams in the world.\tNous sommes l'une des meilleures équipes au monde.\nWe're ready to put the boat in the water.\tNous sommes prêts à mettre le bateau à l'eau.\nWe're ready to put the boat in the water.\tNous sommes prêtes à mettre le bateau à l'eau.\nWe're very grateful for your hospitality.\tNous sommes très reconnaissants pour votre hospitalité.\nWe've all done things we're not proud of.\tNous avons tous fait des choses dont nous ne sommes pas fiers.\nWe've been together for a very long time.\tNous sommes ensemble depuis très longtemps.\nWe've installed several security cameras.\tNous avons installé plusieurs caméras de sécurité.\nWeather permitting, let's go on a picnic.\tLa météo le permettant, faisons un pique-nique.\nWhat are you going to do with this money?\tQu'est-ce que tu vas faire avec cet argent ?\nWhat did you just write in your notebook?\tQue viens-tu d'écrire sur ton calepin ?\nWhat did you just write in your notebook?\tQue venez-vous d'écrire sur votre calepin ?\nWhat do you like to do in your free time?\tQu'aimes-tu faire de ton temps libre ?\nWhat do you like to do in your free time?\tQu'aimez-vous faire de votre temps libre ?\nWhat do you like to do in your free time?\tQu'est-ce que tu aimes faire pendant ton temps libre ?\nWhat do you plan on doing with the money?\tQu'est-ce que tu prévois de faire avec l'argent ?\nWhat do you plan on doing with the money?\tQue prévois-tu de faire avec l'argent ?\nWhat do you plan on doing with the money?\tQue prévoyez-vous de faire avec l'argent ?\nWhat do you want to drink with your meal?\tQue voulez-vous boire avec votre repas ?\nWhat do you want to drink with your meal?\tQue veux-tu boire avec ton repas ?\nWhat does a Scotsman wear under his kilt?\tQu'est-ce qu'un Écossais porte sous son kilt ?\nWhat does any of that have to do with me?\tQu'est-ce que tout cela a à voir avec moi ?\nWhat does not kill me, makes me stronger.\tTout ce qui ne me tue pas me rend plus fort.\nWhat does that gentleman do for a living?\tQu'est-ce que ce monsieur fait dans la vie ?\nWhat does that gentleman do for a living?\tQue fait ce monsieur, dans la vie ?\nWhat does that gentleman do for a living?\tQue fait ce monsieur, pour subvenir à ses besoins ?\nWhat doesn't kill you makes you stronger.\tCe qui ne vous tue pas vous renforce.\nWhat happened to you? You look miserable.\tQu'est-ce qui t'arrive ? Tu fais une gueule d'enterrement.\nWhat is it that makes you think that way?\tQu'est-ce qui vous fait penser ainsi ?\nWhat is that big building in front of us?\tQuel est ce gros bâtiment en face de nous ?\nWhat is the active ingredient in aspirin?\tQuel est le principe actif, dans l'aspirine ?\nWhat time do you think Tom will get home?\tÀ quelle heure penses-tu que Tom rentrera ?\nWhat time does this train reach Yokohama?\tÀ quelle heure arrive le train à Yokohama ?\nWhat time is the plane scheduled to land?\tÀ quelle heure l'atterrissage de l'avion est-il prévu ?\nWhat was your name before you changed it?\tQuel était votre nom avant d'en changer ?\nWhat were you like when you were fifteen?\tÀ quoi ressemblais-tu quand tu avais quinze ans ?\nWhat's going to happen to your prisoners?\tQue va-t-il advenir de vos prisonniers ?\nWhat's the most delicious fruit in Japan?\tQuel est le fruit le plus délicieux au Japon ?\nWhat's the weather forecast for tomorrow?\tQuelles sont les prévisions météo pour demain ?\nWhat's your favorite flavor of ice cream?\tQuel est ton parfum de glace préféré ?\nWhat's your favorite flavor of ice cream?\tQuel est votre parfum de glace préféré ?\nWhat's your problem with straight people?\tQuel est votre problème avec les hétérosexuels ?\nWhatever happens, we have to be prepared.\tQuoiqu'il arrive, nous devons être prêts.\nWhen I opened the door, I broke the lock.\tLorsque j'ai ouvert la porte, j'ai cassé la serrure.\nWhen I woke up this morning, I felt sick.\tLorsque je me suis réveillé ce matin, je me sentais malade.\nWhen I woke up this morning, I felt sick.\tLorsque je me suis réveillé ce matin, je me suis senti malade.\nWhen I woke up this morning, I felt sick.\tLorsque je me suis réveillée ce matin, je me sentais malade.\nWhen I woke up this morning, I felt sick.\tLorsque je me suis réveillée ce matin, je me suis sentie malade.\nWhen it comes to fishing, he's an expert.\tPour ce qui est de la pêche, c'est un expert.\nWhen it was stretched, the material tore.\tLorsqu'elle était étirée, l'étoffe se déchirait.\nWhen it was stretched, the material tore.\tLorsqu'il fut étiré, le tissu se déchira.\nWhen my dad finds out, he won't be happy.\tLorsque mon père le découvrira, il ne sera pas content.\nWhen she heard the bad news, she fainted.\tQuand elle a entendu la mauvaise nouvelle, elle s'est évanouie.\nWhen was the last time you talked to Tom?\tQuand as-tu parlé à Tom pour la dernière fois ?\nWhen were potatoes introduced into Japan?\tQuand la pomme de terre fut-elle introduite au Japon ?\nWhere do you get off telling me anything?\tComment vous permettez-vous de me dire quoi que ce soit ?\nWhere do you get off telling me anything?\tD'où as-tu le toupet de me dire quoi que ce soit ?\nWhere do you usually go to get a haircut?\tOù te rends-tu habituellement pour te faire couper les cheveux ?\nWhere do you usually go to get a haircut?\tOù vous rendez-vous habituellement pour vous faire couper les cheveux ?\nWhich came first, the chicken or the egg?\tLequel est venu en premier, la poule ou l'œuf ?\nWhich color do you prefer, blue or green?\tQuelle couleur tu préfères, le bleu ou le vert?\nWhich do you usually drink, wine or beer?\tQue bois-tu d'habitude ? Vin ou bière ?\nWhich do you usually drink, wine or beer?\tQue buvez-vous d'habitude ? Vin ou bière ?\nWhich is your book, this one or that one?\tLequel est votre livre ? celui-ci ou celui-là ?\nWhip the egg-whites until they are stiff.\tBattez les blancs d'œufs en neige.\nWho will provide capital for the venture?\tQui fournira des fonds pour le capital-risque ?\nWho's taking responsibility for the loss?\tQui prend la responsabilité de la perte ?\nWho's taking responsibility for the loss?\tQui assume la responsabilité de la perte ?\nWhoever told you such a ridiculous story?\tQui diable vous a conté histoire aussi ridicule ?\nWhose idea was it to pitch the tent here?\tDe qui était l'idée de dresser la tente ici ?\nWhy aren't you already on board the ship?\tPourquoi n'êtes-vous pas déjà à bord du bateau ?\nWhy aren't you already on board the ship?\tPourquoi n'es-tu pas déjà à bord du bateau ?\nWhy didn't you tell me about this sooner?\tPourquoi ne me l'as-tu pas dit avant ?\nWhy didn't you tell me about this sooner?\tPourquoi tu me l’as pas dit plus tôt ?\nWhy do all the cool things happen to you?\tPourquoi tous les trucs sympa t'arrivent-ils ?\nWhy do all the cool things happen to you?\tPourquoi tous les trucs sympa vous arrivent-ils ?\nWhy do all the cool things happen to you?\tPourquoi tous les trucs sympa t'arrivent-ils à toi ?\nWhy do all the cool things happen to you?\tPourquoi tous les trucs sympa vous arrivent-ils à vous ?\nWhy do you want to be alone all the time?\tPourquoi veux-tu tout le temps être seul?\nWhy don't you come to the movies with me?\tTu viens voir un film avec moi ?\nWhy is Mary going with him to the picnic?\tPourquoi Mary va-t-elle avec lui au pique-nique ?\nWhy should I tell the truth if you won't?\tPourquoi devrais-je dire la vérité si tu ne le fais pas ?\nWhy should I tell the truth if you won't?\tPourquoi devrais-je dire la vérité si vous ne le faites pas ?\nWhy would you do that without telling us?\tPourquoi ferais-tu cela sans nous le dire ?\nWhy would you do that without telling us?\tPourquoi feriez-vous cela sans nous le dire ?\nWill you be eating here or is this to go?\tAllez-vous manger ici ou est-ce pour emporter ?\nWould you like me to repeat the question?\tVoudriez-vous que je répète la question ?\nWould you like me to repeat the question?\tVoudrais-tu que je répète la question ?\nWould you like to go see a movie with me?\tAccepteriez-vous d'aller voir un film avec moi ?\nWould you like to go see a movie with me?\tAccepterais-tu d'aller voir un film avec moi ?\nWould you like to go to the lake with us?\tVoudrais-tu venir au lac avec nous ?\nWould you like to go to the lake with us?\tVoudriez-vous venir au lac avec nous ?\nWould you like to tell me something else?\tVeux-tu me dire encore quelque chose ?\nWould you please explain the rules to me?\tPourrais-tu m'expliquer les règles ?\nWould you please explain the rules to me?\tPourrais-tu m'en expliquer les règles ?\nWould you please explain the rules to me?\tPourriez-vous m'expliquer les règles ?\nWould you please explain the rules to me?\tPourriez-vous m'en expliquer les règles ?\nWould you please not leave the door open?\tVoudriez-vous bien ne pas laisser la porte ouverte ?\nYesterday it rained the entire afternoon.\tHier, il a plu toute l'après-midi.\nYesterday's vices are tomorrow's customs.\tLes vices d'hier sont les coutumes de demain.\nYou are carrying your joke a bit too far.\tTu pousses la blague trop loin.\nYou are sure to succeed, whatever you do.\tTu réussiras sans aucun doute, quoique tu fasses.\nYou can do it if you put your mind to it.\tTu peux le faire si tu y mets ton esprit.\nYou can do it if you put your mind to it.\tVous pouvez le faire si vous y mettez votre esprit.\nYou can't build buildings on swampy land.\tVous ne pouvez construire de bâtiments sur des terrains marécageux.\nYou can't fool me with a trick like that.\tTu ne peux pas me tromper avec un truc comme ça.\nYou can't separate language from culture.\tOn ne peut séparer langue et culture.\nYou cannot be too careful about spelling.\tOn ne saurait être trop prudent en orthographe.\nYou could count to ten when you were two.\tVous pouviez compter jusqu'à dix lorsque vous étiez deux.\nYou could count to ten when you were two.\tVous pouviez compter jusqu'à dix lorsque vous aviez deux ans.\nYou don't know what you're talking about.\tVous ne savez pas de quoi vous parlez.\nYou don't know what you're talking about.\tTu ne sais pas de quoi tu parles.\nYou gave me this picture a long time ago.\tTu m'as donné cette photo, il y a longtemps.\nYou gave me this picture a long time ago.\tTu m'as donné ce tableau, il y a longtemps.\nYou had better ask him which way to take.\tTu aurais mieux fait de lui demander quel chemin prendre.\nYou had better ask him which way to take.\tVous auriez mieux fait de lui demander quel chemin prendre.\nYou had better ask the doctor for advice.\tTu ferais mieux de prendre conseil auprès d'un médecin.\nYou had better not keep company with him.\tTu ferais mieux de ne pas le fréquenter.\nYou had better not keep company with him.\tVous feriez mieux de ne pas le fréquenter.\nYou have a little fever today, don't you?\tVous avez un peu de fièvre aujourd'hui, n'est-ce pas ?\nYou have a little fever today, don't you?\tTu as un peu de fièvre aujourd'hui, n'est-ce pas ?\nYou have a lot of money, and I have none.\tTu as beaucoup d'argent, et je n'en ai pas.\nYou have little to gain and much to lose.\tVous avez peu à gagner et beaucoup à perdre.\nYou have little to gain and much to lose.\tTu as peu à gagner et beaucoup à perdre.\nYou have such a wonderful eye for detail.\tTu as vraiment le sens du détail.\nYou have to report to the police at once.\tIl faut que tu fasses tout de suite un rapport à la police.\nYou haven't eaten anything yet, have you?\tTu n'as encore rien mangé, n'est-ce pas ?\nYou haven't eaten anything yet, have you?\tVous n'avez encore rien mangé, n'est-ce pas ?\nYou look a little green around the gills.\tVous n'avez pas l'air en forme.\nYou look depressed. Did something happen?\tTu as l'air déprimé, quelque chose est-il arrivé ?\nYou look depressed. Did something happen?\tTu as l'air déprimée, quelque chose est-il survenu ?\nYou look depressed. Did something happen?\tVous avez l'air déprimé, quelque chose s'est-il passé ?\nYou look depressed. Did something happen?\tVous avez l'air déprimée, quelque chose est-il arrivé ?\nYou must do it even if you don't want to.\tTu dois le faire, même si tu ne veux pas.\nYou must do it even if you don't want to.\tVous devez le faire, même si vous ne voulez pas.\nYou must go outside if you want to smoke.\tVous devez sortir si vous voulez fumer.\nYou need to look at the big picture here.\tTu dois voir le tableau dans son ensemble.\nYou need to work on saving your marriage.\tIl vous faut œuvrer à sauver votre mariage.\nYou never told me your girlfriend's name.\tTu ne m'as jamais dit le nom de ta copine.\nYou never told me your girlfriend's name.\tVous ne m'avez jamais dit le nom de votre petite-amie.\nYou only have to follow the instructions.\tTu as juste à suivre les instructions.\nYou really have a talent for translation.\tVous avez vraiment du talent pour la traduction.\nYou should always think before you speak.\tVous devez toujours réfléchir avant de parler.\nYou should be able to walk in a few days.\tVous devriez être en mesure de marcher dans quelques jours.\nYou should be able to walk in a few days.\tTu devrais être en mesure de marcher dans quelques jours.\nYou should be more careful the next time.\tTu devrais être plus prudent, la prochaine fois.\nYou should be more careful the next time.\tTu devrais être plus prudente, la prochaine fois.\nYou should be more careful the next time.\tVous devriez être plus prudent, la prochaine fois.\nYou should be more careful the next time.\tVous devriez être plus prudente, la prochaine fois.\nYou should be more careful the next time.\tVous devriez être plus prudents, la prochaine fois.\nYou should be more careful the next time.\tVous devriez être plus prudentes, la prochaine fois.\nYou should be respectful to your parents.\tTu dois être respectueux de tes parents.\nYou should have helped him with his work.\tTu aurais dû l'aider dans son travail.\nYou should make sure of it before you go.\tTu devrais t'en assurer avant de partir.\nYou should play with your cat more often.\tTu devrais jouer plus souvent avec ton chat.\nYou should take advantage of this chance.\tTu devrais profiter de cette chance.\nYou should take care of your sick mother.\tVous devez vous occuper de votre mère malade.\nYou should try to live within your means.\tVous devriez essayer de vivre en fonction de vos moyens.\nYou shouldn't be impatient with children.\tVous ne devriez pas être impatient avec les enfants.\nYou shouldn't be impatient with children.\tVous ne devriez pas être impatiente avec les enfants.\nYou shouldn't be impatient with children.\tVous ne devriez pas être impatients avec les enfants.\nYou shouldn't be impatient with children.\tVous ne devriez pas être impatientes avec les enfants.\nYou shouldn't visit my grandfather today.\tTu ne devrais pas rendre visite à mon grand-père aujourd'hui.\nYou still haven't told me where you live.\tVous ne m'avez pas encore dit où vous vivez.\nYou still haven't told me where you live.\tVous ne m'avez toujours pas dit où vous vivez.\nYou still haven't told me where you live.\tTu ne m'as toujours pas dit où tu vis.\nYou still haven't told me where you live.\tTu ne m'as pas encore dit où tu vis.\nYou think you're pretty funny, don't you?\tVous pensez que vous êtes assez marrant, non ?\nYou think you're pretty funny, don't you?\tTu penses que tu es assez marrant, non ?\nYou took the words right out of my mouth.\tTu m'as volé les mots de la bouche.\nYou took the words right out of my mouth.\tTu m'as ôté les mots de la bouche.\nYou took the words right out of my mouth.\tVous m'avez ôté les mots de la bouche.\nYou were alone at that time, weren't you?\tVous étiez seul, à ce moment-là, n'est-ce pas ?\nYou were alone at that time, weren't you?\tVous étiez seule, à ce moment-là, n'est-ce pas ?\nYou were alone at that time, weren't you?\tVous étiez seuls, à ce moment-là, n'est-ce pas ?\nYou were alone at that time, weren't you?\tVous étiez seules, à ce moment-là, n'est-ce pas ?\nYou were alone at that time, weren't you?\tTu étais seul, à ce moment-là, n'est-ce pas ?\nYou were alone at that time, weren't you?\tTu étais seule, à ce moment-là, n'est-ce pas ?\nYou will find this book very interesting.\tTu trouveras ce livre très intéressant.\nYou won't drown if you learn how to swim.\tTu ne te noieras pas si tu apprends à nager.\nYou'd better try to assert yourself more.\tTu ferais mieux d'essayer de t'affirmer davantage.\nYou'll find something that interests you.\tTu trouveras quelque chose qui t'intéresse.\nYou'll find something that interests you.\tVous trouverez quelque chose qui vous intéresse.\nYou'll have to stand on your toes to see.\tIl vous faudra, pour voir, vous tenir sur le bout des pieds.\nYou'll have to stand on your toes to see.\tIl te faudra te tenir sur le bout des pieds, afin de voir.\nYou'll never be able to keep it a secret.\tTu ne seras jamais capable de garder un secret.\nYou'll never be able to keep it a secret.\tVous ne serez jamais capable de garder un secret.\nYou're afraid that I'm right, aren't you?\tTu as peur que j'aie raison, n'est-ce pas ?\nYou're afraid that I'm right, aren't you?\tVous avez peur que j'aie raison, n'est-ce pas ?\nYou're always disagreeing with your boss.\tVous êtes toujours en désaccord avec votre patron.\nYou're better off not getting in his way!\tNe t'oppose pas à lui.\nYou're not asking me to give up, are you?\tVous me demandez de renoncer, pas vrai?\nYou're not really a millionaire, are you?\tTu n'es pas vraiment millionnaire, si ?\nYou're not really a millionaire, are you?\tVous n'êtes pas vraiment millionnaire, si ?\nYou're not responsible for what happened.\tVous n'êtes pas responsable de ce qui s'est passé.\nYou're the one I've been wanting to meet.\tVous êtes celui que je voulais rencontrer.\nYou're the one I've been wanting to meet.\tVous êtes celle que je voulais rencontrer.\nYou've bought more stamps than necessary.\tTu as acheté plus de timbres-poste que nécessaire.\nYoung people tend to take things too far.\tLes jeunes gens ont tendance à aller trop loin.\nYour parents can't keep us apart forever.\tTes parents ne peuvent nous garder éloignés pour toujours.\nYour parents can't keep us apart forever.\tVos parents ne peuvent nous garder éloignés pour toujours.\nYour parents can't keep us apart forever.\tTes parents ne peuvent nous garder éloignées pour toujours.\nYour parents can't keep us apart forever.\tVos parents ne peuvent nous garder éloignées pour toujours.\nYour problem is you're easily distracted.\tTon problème...c'est que tu es facilement distrait.\nYour refusal to help complicated matters.\tTon refus d'aider a compliqué les choses.\nYour replacement has already been picked.\tVotre successeur a déjà été choisi.\n\"Are those your books?\" \"No, they aren't.\"\t\"Est-ce que ce sont vos livres ?\" \"Non, ce ne sont pas mes livres.\"\n\"Are those your books?\" \"No, they aren't.\"\t« Sont-ce là vos livres ? » « Non, ce ne le sont pas. »\n\"Do you think he will come?\" \"I hope not.\"\t« Penses-tu qu'il viendra  ? » « J'espère que non. »\n\"May I borrow this pen?\" \"Sure, go ahead.\"\t« Pourrais-je emprunter ce stylo ? » « Bien sûr, vas-y. »\n\"Tatoeba\" means \"for example\" in Japanese.\t\"Tatoeba\" signifie \"par exemple\" en japonais.\n\"What time is it now?\" \"It's ten o'clock.\"\t« Quelle heure est-il ? » « Il est dix heures. »\n\"When do you get up?\" \"I get up at eight.\"\t« À quelle heure vous levez-vous ? » « À 8 heures. »\nA baseball came flying through the window.\tUne balle de baseball vint voler à travers la fenêtre.\nA brass band is marching along the street.\tUne fanfare marche à travers la rue.\nA dolphin is no more a fish than a dog is.\tUn dauphin n'est pas plus un poisson que ne l'est un chien.\nA driver's job is not as easy as it looks.\tLe travail de chauffeur n'est pas aussi simple qu'il ne semble.\nA few years ago, there was a huge scandal.\tIl y a quelques années, il y a eu un énorme scandale.\nA fire can spread faster than you can run.\tUn feu peut se propager plus rapidement qu'on ne peut courir.\nA heavy snow kept us from going to school.\tUne neige abondante nous empêcha d'aller à l'école.\nA little heavier rain might cause a flood.\tUne pluie un peu plus forte pourrait causer des inondations.\nA lot of people think that bats are birds.\tBeaucoup de gens pensent que les chauves-souris sont des oiseaux.\nA man came up to me and asked for a match.\tUn homme s'approcha et demanda une allumette.\nA passenger airplane took off for the USA.\tUn avion de ligne s'envola à destination des États-Unis.\nA well is a place where you can get water.\tUn puits est un lieu où on peut avoir de l'eau.\nActually, I did want to ask you one thing.\tEn réalité, je voulais te demander quelque chose.\nActually, I did want to ask you one thing.\tEn réalité, je voulais vous demander quelque chose.\nAfter that incident, he never drank again.\tAprès cet incident, il ne but plus jamais.\nAfter that incident, he never drank again.\tAprès cet incident, il n'a plus jamais bu.\nAll I want to do is finish what I started.\tTout ce que je veux faire, c'est terminer ce que j'ai commencé.\nAll I want to do is finish what I started.\tTout ce que je veux faire, c'est finir ce que j'ai commencé.\nAll you have to do is sign your name here.\tVous avez juste à signer ici.\nAm I fully covered in case of an accident?\tSuis-je complètement assuré en cas d'accident?\nAm I supposed to answer that question now?\tSuis-je supposé répondre maintenant à cette question ?\nAm I supposed to answer that question now?\tSuis-je supposée répondre maintenant à cette question ?\nAre these the glasses you are looking for?\tEst-ce que ce sont les verres que tu cherches ?\nAre these the glasses you are looking for?\tSont-ce là les verres que tu cherches ?\nAre you familiar with the rules of soccer?\tConnais-tu les règles du football ?\nAre you going to take part in the contest?\tVas-tu participer à la compétition ?\nAre you going to take part in the contest?\tAllez-vous participer à la compétition ?\nAre you just going to stand there all day?\tEst-ce que tu vas juste rester là debout toute la journée ?\nAre you just going to stand there all day?\tAllez-vous juste rester planté là toute la journée ?\nAre you sure you don't want to go with us?\tEs-tu sûr que tu ne veux pas venir avec nous ?\nAre you sure you don't want to go with us?\tÊtes-vous sûre de ne pas vouloir venir avec nous ?\nAre you willing to help me with that work?\tVoulez-vous m'aider pour ce travail ?\nAs far as I know, he is a reliable person.\tPour autant que je sache, c'est une personne digne de confiance.\nAs far as I know, he's a diligent student.\tÀ ma connaissance, c'est un étudiant appliqué.\nAs far as I know, she has not yet married.\tPour autant que je sache, elle ne s'est pas encore mariée.\nAs far as I know, she hasn't departed yet.\tPour autant que je sache, elle n'est pas encore partie.\nAs soon as I got home, the telephone rang.\tDès que je fus arrivé, le téléphone sonna.\nAs soon as I got home, the telephone rang.\tDès que je suis arrivé, le téléphone a sonné.\nAs soon as he went to bed, he fell asleep.\tAussitôt qu'il alla au lit, il s'endormit.\nAs soon as she saw me, she started to cry.\tDès qu'elle me vit, elle se mit à pleurer.\nAs soon as the door opened, they ran away.\tDès que la porte s'ouvrit, ils s'enfuirent.\nAs the proverb goes, time really is money.\tComme le dit le proverbe, le temps c'est vraiment de l'argent.\nAt any rate, we can't change the schedule.\tNous ne pouvons en aucun cas modifier l'horaire.\nAt our high school, French is an elective.\tDans notre lycée, le français est une matière optionnelle.\nAt this hour, there is incredible traffic.\tÀ cette heure il y a un trafic incroyable.\nBecause of Tom, Mary has become depressed.\tÀ cause de Tom, Mary est devenue dépressive.\nBecause of the snow, the train didn't run.\tÀ cause de la neige, le train n'était pas en service.\nBecause of the snow, the train didn't run.\tEn raison de la neige, le train ne roulait pas.\nBeing an only child, he was the sole heir.\tÉtant enfant unique, il était le seul héritier.\nBelieve it or not, she has three children.\tCrois-le ou non, elle a trois enfants.\nBoth of my parents are not strict with me.\tMes deux parents ne sont pas stricts avec moi.\nBread is made from flour, water and yeast.\tLe pain est fait avec de la farine, de l'eau et de la levure.\nCan I ask why this is so important to you?\tPuis-je demander pourquoi cela vous importe autant ?\nCan I ask why this is so important to you?\tPuis-je demander pourquoi cela t'importe autant ?\nCan someone tell me where the keyboard is?\tQuelqu'un peut-il me dire où se trouve le clavier ?\nCan we get to the moon in the near future?\tPourrons-nous aller sur la lune dans un futur proche ?\nCan you believe this is already happening?\tPouvez-vous croire que ça soit déjà en train d'arriver ?\nCan you believe this is already happening?\tPouvez-vous croire que ce soit déjà en train d'arriver ?\nCan you believe this is already happening?\tPouvez-vous croire que ce soit déjà en train de se produire ?\nCan you believe this is already happening?\tPouvez-vous croire que ce soit déjà en train d'avoir lieu ?\nCan you believe this is already happening?\tPeux-tu croire que ce soit déjà en train d'arriver ?\nCan you believe this is already happening?\tPeux-tu croire que ce soit déjà en train de se produire ?\nCan you believe this is already happening?\tPeux-tu croire que ce soit déjà en train d'avoir lieu ?\nCan you make out what he is trying to say?\tPeux-tu discerner ce qu'il essaie de dire ?\nCan you recommend a good dictionary to me?\tPeux-tu me recommander un bon dictionnaire?\nCan you still remember where we first met?\tPeux-tu encore te souvenir où nous nous sommes rencontrés la première fois ?\nCan you still remember where we first met?\tPeux-tu encore te souvenir où nous nous sommes rencontrés pour la première fois ?\nCan you still remember where we first met?\tPeux-tu encore te souvenir où nous nous sommes rencontrées la première fois ?\nCan you still remember where we first met?\tPeux-tu encore te souvenir où nous nous sommes rencontrées pour la première fois ?\nCan you still remember where we first met?\tPouvez-vous encore vous souvenir où nous nous sommes rencontrés la première fois ?\nCan you still remember where we first met?\tPouvez-vous encore vous souvenir où nous nous sommes rencontrées la première fois ?\nCan you still remember where we first met?\tPouvez-vous encore vous souvenir où nous nous sommes rencontrés pour la première fois ?\nCan you still remember where we first met?\tPouvez-vous encore vous souvenir où nous nous sommes rencontrées pour la première fois ?\nCan you tell me how to get to the station?\tPouvez-vous m'indiquer comment me rendre à la gare ?\nCan you tell me how to get to the station?\tPouvez-vous me dire comment me rendre à la gare ?\nCan't you understand that it's impossible?\tNe peux-tu pas comprendre que c'est impossible ?\nCan't you understand that it's impossible?\tNe pouvez-vous pas comprendre que c'est impossible ?\nCancer can be cured if discovered in time.\tLe cancer peut être guéri s'il est découvert à temps.\nCats were sacred animals in ancient Egypt.\tLes chats étaient des animaux sacrés dans l'Égypte antique.\nCherry trees are planted along the street.\tDes cerisiers sont plantés le long de la rue.\nChildren are sometimes afraid of the dark.\tLes enfants ont parfois peu de l'obscurité.\nChurches were erected all over the island.\tOn érigea des églises dans toute l'île.\nClearly, this is the most important point.\tClairement, c'est le point le plus important.\nClose your eyes and tell me what you hear.\tFerme les yeux et dis-moi ce que tu entends !\nClose your eyes and tell me what you hear.\tFermez les yeux et dites-moi ce que vous entendez !\nCockfighting is illegal in many countries.\tLes combats de coqs sont illégaux dans de nombreux pays.\nCome soon or there won't be any food left.\tArrive bientôt où il ne restera plus de nourriture !\nCome soon or there won't be any food left.\tArrivez bientôt où il ne restera plus de nourriture !\nCompared to our house, yours is a mansion.\tComparée à notre maison, la vôtre est un manoir.\nCould you make it a little shorter for me?\tPourriez-vous me le raccourcir un peu ?\nCould you please tell me why you love her?\tPeux-tu, s'il te plait, me dire pourquoi tu l'aimes ?\nCould you send someone up to make the bed?\tPourriez-vous envoyer quelqu'un pour faire le lit ?\nCountless stars were twinkling in the sky.\tD'innombrables étoiles scintillaient dans le ciel.\nCut the bell peppers into two-inch strips.\tCoupez les poivrons en lamelles de cinq centimètres.\nDeposit this check in my checking account.\tDépose ce chèque sur mon compte courant.\nDeveloping political awareness takes time.\tDévelopper la conscience politique prend du temps.\nDeveloping political awareness takes time.\tDévelopper une conscience politique prend du temps.\nDid I tell you about my party this Friday?\tT'ai-je parlé de ma fête de ce vendredi ?\nDid any of you gentlemen wait on this man?\tL'un de vous, Messieurs, a-t-il servi ce monsieur ?\nDid that accident really happen last year?\tCet accident est-il vraiment survenu l'année dernière ?\nDid the trip live up to your expectations?\tCe voyage a-t-il été à la hauteur de vos attentes ?\nDid you get everything ready for tomorrow?\tAs-tu tout préparé pour demain ?\nDid you give a copy of the disk to anyone?\tAs-tu remis une copie du disque à qui que ce soit ?\nDid you give a copy of the disk to anyone?\tAvez-vous remis une copie du disque à qui que ce soit ?\nDid you know she is good at making coffee?\tSavais-tu qu'elle sait bien faire le café ?\nDid you take the book back to the library?\tTu as rendu le livre à la bibliothèque ?\nDid you write this fairy tale by yourself?\tAs-tu écrit ce conte tout seul ?\nDid your parents approve of your marriage?\tTa famille a-t-elle approuvé ton mariage ?\nDidn't you wear that same shirt yesterday?\tNe portiez-vous pas la même chemise, hier ?\nDidn't you wear that same shirt yesterday?\tNe portais-tu pas la même chemise, hier ?\nDo we have time for another cup of coffee?\tOn a le temps pour prendre une autre tasse de café ?\nDo whatever it is that he tells you to do.\tFais quoi qu'il te dise de faire.\nDo whatever it is that he tells you to do.\tFaites quoi qu'il te dise de faire.\nDo whatever it is that he tells you to do.\tFaites quoi qu'il vous dise de faire.\nDo you have a Christmas vacation in Japan?\tAvez-vous des vacances de Noël au Japon ?\nDo you have any idea what my life is like?\tAs-tu une idée de ce à quoi ma vie ressemble ?\nDo you have anything to say in particular?\tAvez-vous quelque chose de particulier à dire ?\nDo you know the man that's staring at you?\tConnais-tu l'homme qui te regarde ?\nDo you know the man that's staring at you?\tConnaissez-vous l'homme qui vous regarde ?\nDo you know the man that's staring at you?\tConnais-tu l'homme qui te dévisage ?\nDo you know the man that's staring at you?\tConnaissez-vous l'homme qui vous dévisage ?\nDo you mean to tell me you can't find one?\tVeux-tu dire que tu n'arrives pas à en trouver un ?\nDo you mean to tell me you can't find one?\tVeux-tu dire que tu n'arrives pas à en trouver une ?\nDo you really believe I killed my brother?\tCroyez-vous vraiment que j'aie tué mon frère ?\nDo you really believe I killed my brother?\tCrois-tu vraiment que j'aie tué mon frère ?\nDo you really think Tom is better than me?\tPenses-tu réellement que Tom est meilleur que moi ?\nDo you really want to talk about that now?\tTu veux vraiment parler de ça maintenant ?\nDo you really want to talk about that now?\tVoulez-vous vraiment parler de cela maintenant ?\nDo you remember the day when we first met?\tTe souviens-tu du jour où nous nous sommes rencontrés pour la première fois ?\nDo you remember the day when we first met?\tTe souviens-tu du jour où l'on s'est rencontré ?\nDo you remember the day when we met first?\tTu te souviens de notre première rencontre ?\nDo you remember the time we went to Paris?\tTe souviens-tu de la fois où nous sommes allés à Paris ?\nDo you remember the time we went to Paris?\tTe souviens-tu de l'époque où nous sommes allés à Paris ?\nDo you remember the time we went to Paris?\tTe souviens-tu de l'époque où nous sommes allées à Paris ?\nDo you remember the time we went to Paris?\tVous souvenez-vous de l'époque où nous sommes allés à Paris ?\nDo you remember the time we went to Paris?\tVous souvenez-vous de l'époque où nous sommes allées à Paris ?\nDo you spend more time at home or at work?\tPasses-tu davantage de temps chez toi ou au travail ?\nDo you spend more time at home or at work?\tPasses-tu davantage de temps à la maison ou au travail ?\nDo you spend more time at home or at work?\tPassez-vous davantage de temps chez vous ou au travail ?\nDo you spend more time at home or at work?\tPassez-vous davantage de temps à la maison ou au travail ?\nDo you still want to go to the lighthouse?\tVeux-tu encore aller jusqu'au phare ?\nDo you think I don't know what's going on?\tTu crois que je vois pas ce qui se passe ?\nDo you think it will be nice out tomorrow?\tPenses-tu qu'il fera beau demain, dehors ?\nDo you think you've made the wrong choice?\tPenses-tu que tu as fait le mauvais choix ?\nDo you think you've made the wrong choice?\tPensez-vous avoir fait le mauvais choix ?\nDo you think your money is safe in a bank?\tPenses-tu que ton argent est en sécurité dans une banque ?\nDo you think your money is safe in a bank?\tPensez-vous que votre argent est en sécurité dans une banque ?\nDo you understand what I am saying to you?\tComprenez-vous ce que je vous dis ?\nDo you understand what I am saying to you?\tComprends-tu ce que je te dis ?\nDo you want me to come cook you something?\tVeux-tu que je vienne te cuisiner quelque chose ?\nDo you want me to come cook you something?\tVoulez-vous que je vienne vous cuisiner quelque chose ?\nDo you want me to come cook you something?\tVeux-tu que je vienne vous cuisiner quelque chose ?\nDoes anyone know the name of the deceased?\tQuelqu'un connaît-il le nom du défunt ?\nDoes anyone know the name of the deceased?\tQuelqu'un connaît-il le nom de la défunte ?\nDoes this mean you won't be sleeping here?\tCela signifie-t-il que tu ne dormiras pas ici ?\nDoes this mean you won't be sleeping here?\tCela signifie-t-il que vous ne dormirez pas ici ?\nDon't argue with a woman when she's tired.\tIl ne faut pas se disputer avec une femme lorsqu'elle est fatiguée.\nDon't forget to extinguish your cigarette.\tN'oubliez pas d'éteindre votre cigarette.\nDon't interfere in other people's affairs.\tNe vous mêlez pas des affaires des autres.\nDon't tell me you don't know how to drive.\tNe me dis pas que tu ne sais pas conduire.\nDon't you have anything smaller than this?\tN'avez-vous pas quelque chose de plus petit que ça ?\nDon't you think this hat looks good on me?\tNe penses-tu pas que ce chapeau me va bien ?\nDon't you think this hat looks good on me?\tNe penses-tu pas que ce chapeau me sied ?\nDon't you think this hat looks good on me?\tNe pensez-vous pas que ce chapeau me sied ?\nDon't you think this hat looks good on me?\tNe pensez-vous pas que ce chapeau me va bien ?\nDon't you understand what's going on here?\tNe comprends-tu pas ce qui se passe, ici ?\nDon't you understand what's going on here?\tNe comprends-tu pas ce qui est en train de se passer, ici ?\nDon't you understand what's going on here?\tNe comprenez-vous pas ce qui se passe, ici ?\nDon't you understand what's going on here?\tNe comprenez-vous pas ce qui est en train de se passer, ici ?\nEach of us has to be careful when driving.\tChacun d'entre nous doit être prudent lors qu'il conduit.\nEach of us has to be careful when driving.\tChacun d'entre nous doit être prudent lorsqu'il conduit.\nEach of us has to be careful when driving.\tChacun d'entre nous doit être prudent quand il conduit.\nEmployers sometimes exploit their workers.\tLes employeurs exploitent parfois leurs travailleurs.\nEurope has a smaller population than Asia.\tL'Europe comporte une population plus faible que l'Asie.\nEventually, my curiosity overcame my fear.\tFinalement, ma curiosité a surmonté ma crainte.\nEvery family has a skeleton in the closet.\tChaque famille a un squelette dans son placard.\nEvery member but me believes what he says.\tÀ part moi, tous les membres croient à ce qu'il dit.\nEvery student in the class knows the fact.\tTous les élèves dans la classe connaissent les faits.\nEveryone wants to be young and attractive.\tTout le monde veut être jeune et séduisant.\nEveryone wants to meet you. You're famous!\tTout le monde veut te rencontrer, tu es célèbre !\nEveryone wants to meet you. You're famous!\tTout le monde veut vous rencontrer, vous êtes célèbres !\nEverything must be handled very carefully.\tTout doit être traité avec beaucoup de prudence.\nExcuse me, what is the name of this place?\tExcusez-moi, quel est le nom de cet endroit ?\nFarmers always complain about the weather.\tLes paysans se plaignent toujours du temps.\nFew people live to be more than a hundred.\tPeu de gens vivent au-delà de cent ans.\nFinish your homework before you go to bed.\tFinis tes devoirs avant d'aller au lit.\nFirst, I want to eat a little bit of cake.\tD'abord, je veux manger un peu de gâteau.\nFive minutes' walk brought us to the park.\tCinq minutes de marche nous amenèrent au parc.\nFor goodness' sake, please be nice to him.\tPour l'amour de Dieu, sois gentil avec lui.\nFortunately he didn't die in the accident.\tHeureusement il n'est pas mort dans l'accident.\nFrankly, I don't like what you're wearing.\tFranchement, je n'aime pas ce que tu portes.\nFrench has many more vowels than Japanese.\tLe français a beaucoup plus de voyelles que le japonais.\nFrom now on, I'm going to be here for you.\tDésormais, je vais être là pour toi.\nFrom now on, I'm going to be here for you.\tDésormais, je vais être là pour vous.\nFrom year to year, pollution is worsening.\tD'année en année, la pollution empire.\nGas was escaping from a crack in the pipe.\tL'essence s'échappait d'une fissure dans le tube.\nGas was escaping from a crack in the pipe.\tLe gaz s'échappait d'une fissure dans la conduite.\nGenerally speaking, Americans like coffee.\tDe façon générale, les Américains aiment le café.\nGiven her inexperience, she has done well.\tÉtant donné son inexpérience, elle a bien fait.\nGradually the interest rate will increase.\tLes taux d'intérêt vont progressivement augmenter.\nHave you been told where to park your car?\tT'a-t-on dit où garer ta voiture ?\nHave you been told where to park your car?\tVous a-t-on dit où garer votre voiture ?\nHave you been told why we didn't hire you?\tT'a-t-on dit pourquoi nous ne t'avons pas embauché ?\nHave you been told why we didn't hire you?\tVous a-t-on dit pourquoi nous ne vous avons pas embauché ?\nHave you been told why we didn't hire you?\tT'a-t-on dit pourquoi nous ne t'avons pas embauchée ?\nHave you been told why we didn't hire you?\tVous a-t-on dit pourquoi nous ne vous avons pas embauchée ?\nHave you been told why we didn't hire you?\tVous a-t-on dit pourquoi nous ne vous avons pas embauchés ?\nHave you been told why we didn't hire you?\tVous a-t-on dit pourquoi nous ne vous avons pas embauchées ?\nHave you ever eaten alone in a restaurant?\tAvez-vous jamais mangé seul dans un restaurant ?\nHave you ever eaten alone in a restaurant?\tAvez-vous jamais mangé seule dans un restaurant ?\nHave you ever eaten alone in a restaurant?\tAvez-vous jamais mangé seuls dans un restaurant ?\nHave you ever eaten alone in a restaurant?\tAvez-vous jamais mangé seules dans un restaurant ?\nHave you ever eaten alone in a restaurant?\tAs-tu jamais mangé seul dans un restaurant ?\nHave you ever eaten alone in a restaurant?\tAs-tu jamais mangé seule dans un restaurant ?\nHave you ever ridden in a hot air balloon?\tAvez-vous déjà volé en montgolfière ?\nHave you ever thought of becoming a nurse?\tAvez-vous songé à devenir infirmière ?\nHave you ever uploaded a video to YouTube?\tAs-tu jamais téléchargé une vidéo sur Youtube ?\nHave you found an answer to this question?\tAs-tu jamais trouvé réponse à cette question ?\nHave you prepared everything for tomorrow?\tAs-tu tout préparé pour demain ?\nHave you prepared everything for tomorrow?\tAvez-vous tout préparé pour demain ?\nHave you read anything interesting lately?\tAvez-vous lu quelque chose d'intéressant dernièrement ?\nHave you read the book Tom bought for you?\tAs-tu lu le livre que Tom t'a acheté ?\nHave you read the book Tom bought for you?\tAvez-vous lu le livre que Tom vous a acheté ?\nHe addressed the audience in a soft voice.\tIl s'adressa à son auditoire avec une voix douce.\nHe always talks as if he knows everything.\tIl parle toujours comme s'il connaissait tout.\nHe attached great importance to the event.\tIl accorda une grande importance à cet événement.\nHe begged his father to buy him a bicycle.\tIl harcelait son père pour qu'il lui achète un vélo.\nHe boasts that he can speak six languages.\tIl se vante de pouvoir parler six langues différentes.\nHe bought a pair of black shoes yesterday.\tIl a acheté une paire de chaussures noires hier.\nHe bought the picture for next to nothing.\tIl acheta le tableau pour presque rien.\nHe bribed the judge and got off scot-free.\tIl a acheté le juge et s'en est sorti impuni.\nHe came to Japan when he was a boy of ten.\tIl vint au Japon, alors qu'il n'était qu'un garçon de 10 ans.\nHe can stay here for one night, no longer.\tIl peut rester ici pour une nuit, pas plus.\nHe can stay here for one night, no longer.\tIl peut rester ici pour une nuit, pas davantage.\nHe committed suicide to atone for his sin.\tIl s'est suicidé pour expier son péché.\nHe complained that he couldn't find a job.\tIl se plaignit de ne pouvoir trouver un emploi.\nHe couldn't pass the entrance examination.\tIl n'a pas réussi l'examen d'entrée.\nHe delivered a very long speech yesterday.\tHier, il prononça un très long discours.\nHe didn't come back to the base yesterday.\tIl n'est pas revenu à la base hier.\nHe does not need a wife to look after him.\tIl n'a pas besoin d'une femme pour s'occuper de lui.\nHe does nothing but watch TV all day long.\tIl ne fait rien d'autre que de regarder la télé toute la journée.\nHe doesn't resemble either of his parents.\tIl ne ressemble à aucun de ses parents.\nHe donated countless pieces to the museum.\tIl fit donation d'innombrables pièces au musée.\nHe donated countless pieces to the museum.\tIl a fait donation d'innombrables pièces au musée.\nHe donated countless pieces to the museum.\tIl a donné d'innombrables pièces au musée.\nHe donated countless pieces to the museum.\tIl donna d'innombrables pièces au musée.\nHe drinks himself unconscious every night.\tIl se soûle chaque soir jusqu'à en perdre conscience.\nHe explained to me how to use the machine.\tIl m'a expliqué comment utiliser cette machine.\nHe expressed himself very well in English.\tIl s'exprimait très bien en anglais.\nHe fed his dog at the same time every day.\tIl nourrissait son chien à la même heure chaque jour.\nHe fed his dog at the same time every day.\tIl a nourri son chien à la même heure chaque jour.\nHe finally achieved what he set out to do.\tIl a finalement accompli ce qu'il avait entrepris.\nHe gave her an engagement ring last night.\tIl lui a donné une bague de fiançailles, hier soir.\nHe gave his daughter quite a lot of money.\tIl a donné pas mal d'argent à sa fille.\nHe gave me not only advice but also money.\tIl ne me donna pas seulement des conseils, mais aussi de l'argent.\nHe gives me a bad time, as he always does.\tIl me donne du mal, comme il fait toujours.\nHe had his car stolen in that parking lot.\tSa voiture a été volée dans ce parking.\nHe had no difficulty in finding the place.\tIl n'eut aucune difficulté pour trouver la place.\nHe has become thin beyond all recognition.\tIl a tellement maigri qu'on ne le reconnait plus.\nHe has no distinct idea of how to proceed.\tIl n'a pas d'idée distincte de comment procéder.\nHe has spent ten years in jail for murder.\tIl a passé dix ans derrière les barreaux pour meurtre.\nHe has taken all this trouble for nothing.\tIl a pris toute cette peine pour rien.\nHe helped me to get over the difficulties.\tIl m'a aidé à surmonter les difficultés.\nHe inherited the business from his father.\tIl hérita l'affaire de son père.\nHe inherited the business from his father.\tIl hérita le commerce de son père.\nHe is a doctor and a university professor.\tIl est docteur et professeur d'université.\nHe is completely absorbed in his business.\tIl est complètement absorbé par ses affaires.\nHe is concerned about his parent's health.\tIl est inquiet pour la santé de ses parents.\nHe is leaving for Peru tomorrow, isn't he?\tIl part pour le Pérou demain, n'est-ce pas ?\nHe is rich, but his older brother is poor.\tIl est riche, mais son frère ainé est pauvre.\nHe is so honest that everybody trusts him.\tIl est tellement honnête que tout le monde lui fait confiance.\nHe is writing a letter to his parents now.\tIl est en train d'écrire une lettre à ses parents.\nHe knows how to make good use of his time.\tIl sait comment bien utiliser son temps.\nHe left without so much as saying goodbye.\tIl partit sans même dire au revoir.\nHe likes being surrounded by young people.\tIl aime être entouré de jeunes.\nHe looked at me with a strange expression.\tIl me regarda avec une drôle de mine.\nHe made an important scientific discovery.\tIl a fait une découverte scientifique importante.\nHe must be stupid to believe such a thing.\tIl doit être stupide de croire une telle chose.\nHe must be very angry to say such a thing.\tIl doit être très en colère pour dire une telle chose.\nHe needed capital to start a new business.\tIl avait besoin de fonds pour démarrer sa nouvelle entreprise.\nHe promised me that he won't tell anybody.\tIl m'a promis qu'il ne le dirait à personne.\nHe promised me that he would come at four.\tIl m'a promis qu'il viendrait à quatre heures.\nHe said nothing that would make her angry.\tIl ne disait rien qui puisse la mettre en colère.\nHe saw himself as the savior of the world.\tIl se voyait comme le sauveur du monde.\nHe seems to have been ill for a long time.\tIl a l'air d'avoir été très longtemps malade.\nHe stayed at a hotel for a couple of days.\tIl a logé à l'hôtel pour quelques jours.\nHe stopped smoking on his doctor's advice.\tIl a arrêté de fumer sur les conseils du docteur.\nHe stretched out his arm to take the book.\tIl allongea le bras pour attraper le livre.\nHe struck a match, but quickly put it out.\tIl craqua une allumette mais l'éteignit bientôt.\nHe succeeded in spite of all difficulties.\tIl a réussi malgré toutes les difficultés.\nHe succeeded in swimming across the river.\tIl a réussi à traverser la rivière à la nage.\nHe thinks of everything in terms of money.\tIl pense tout en termes d'argent.\nHe thinks that his success is due to luck.\tIl pense que c'est la chance qui est la cause de son succès.\nHe thought the matter over for three days.\tIl réfléchit au problème pendant trois jours.\nHe took over the business from his father.\tIl a pris la suite des affaires de son père.\nHe took over the business from his father.\tIl a repris l'entreprise de son père.\nHe used to get up early when he was young.\tIl avait l'habitude de se lever de bonne heure quand il était jeune.\nHe was busy getting ready for his journey.\tIl était occupé à s'apprêter pour son voyage.\nHe was carrying an umbrella under his arm.\tIl portait un parapluie sous le bras.\nHe was constantly borrowing money from me.\tIl m'empruntait de l'argent en permanence.\nHe was covered with mud from head to foot.\tIl était couvert de boue, de la tête aux pieds.\nHe was listening to the music in his room.\tIl écoutait de la musique dans sa chambre.\nHe was more surprised than I had expected.\tIl fut davantage surpris que ne m'y attendais.\nHe was nearly run over at an intersection.\tIl a manqué de se faire renverser à un croisement.\nHe was never to see his native land again.\tIl ne reverrait plus jamais son pays natal.\nHe was not able to join in the discussion.\tIl fut dans l'impossibilité de se joindre à la discussion.\nHe was not able to join in the discussion.\tIl fut incapable de se joindre à la discussion.\nHe was playing football with an empty can.\tIl jouait au football avec une boîte de conserve vide.\nHe was sentenced to death by firing squad.\tIl a été condamné à mort par fusillade.\nHe was the first man to cross the Pacific.\tIl était le premier homme à franchir le Pacifique.\nHe went above and beyond the call of duty.\tIl a été bien au-delà de son devoir.\nHe went fishing instead of playing tennis.\tIl est allé pêcher au lieu de jouer au tennis.\nHe will soon get used to the climate here.\tIl s'habituera bientôt au climat d'ici.\nHe would like to take part in the contest.\tIl voudrait participer au concours.\nHe would sometimes talk with the soldiers.\tIl parlait parfois avec les soldats.\nHe's just not the person I thought he was.\tIl n'est simplement pas la personne que je pensais.\nHe's very honest, so we can depend on him.\tIl est très honnête, donc nous pouvons nous reposer sur lui.\nHeaven knows we've done everything we can.\tDieu sait que nous avons fait tout ce que nous pouvions.\nHer daughter has become a beautiful woman.\tSa fille est devenue une belle femme.\nHer father left her the house in his will.\tSon père lui a laissé la maison dans son testament.\nHer husband is a member of the Oda family.\tSon mari est un membre du clan Oda.\nHis boots and pants were covered with mud.\tSes bottes et son pantalon étaient couverts de boue.\nHis daughter has become a beautiful woman.\tSa fille est devenue une belle femme.\nHis doctor advised him to give up smoking.\tSon médecin lui conseilla d'arrêter de fumer.\nHis explanation doesn't make sense at all.\tSon explication ne tient pas du tout debout.\nHis family emigrated to the United States.\tSa famille émigra aux États-Unis d'Amérique.\nHis family emigrated to the United States.\tSa famille a émigré aux États-Unis d'Amérique.\nHis father left him the house in his will.\tSon père lui légua la maison dans son testament.\nHis hobby is painting pictures of flowers.\tSon passe-temps est de peindre des tableaux de fleurs.\nHis house is three times larger than mine.\tSa maison est trois fois plus grande que la mienne.\nHis ideas never earned him a single penny.\tSes idées ne lui ont jamais rapporté un sou.\nHis ideas never earned him even one penny.\tSes idées ne lui rapportèrent jamais même un sou.\nHis laziness is a bad sign for the future.\tSa paresse était un mauvais présage pour l'avenir.\nHis little sister is very cute, isn't she?\tSa petite sœur est très mignonne, n'est-ce pas ?\nHis name is known throughout this country.\tSon nom est connu de tous dans ce pays.\nHis name is known to everyone in the town.\tEn ville, tout le monde connaît son nom.\nHis parents were pleased with his success.\tSes parents furent contents de son succès.\nHis proposals were adopted at the meeting.\tSes propositions furent adoptées à la réunion.\nHis reason for not going is still unclear.\tSa raison de ne pas y aller est encore obscure.\nHis salary can't keep pace with inflation.\tSon salaire n'arrive pas à suivre le rythme de l'inflation.\nHis short stature makes him feel insecure.\tSa petite stature le fait se sentir peu sûr de lui.\nHis story is strange, but it's believable.\tSon histoire est étrange, mais crédible.\nHokkaido is in the northern part of Japan.\tHokkaïdo est dans la partie nord du Japon.\nHokkaido is in the northern part of Japan.\tHokkaïdo se trouve dans la partie nord du Japon.\nHow about going to the movies on Saturday?\tÇa te dirait d'aller voir un film samedi ?\nHow about going to the movies on Saturday?\tQue diriez-vous d'aller au cinéma samedi ?\nHow are you getting along in your new job?\tComment ça va avec ton nouveau travail ?\nHow are you getting along with your study?\tComment tu t'en sors avec tes études ?\nHow can they just make up stuff like that?\tComment peuvent-ils simplement concocter un truc pareil ?\nHow did you come up with such a good idea?\tComment avez-vous trouvé une si bonne idée ?\nHow did you come up with such a good idea?\tComment as-tu trouvé une si bonne idée ?\nHow did you learn to speak French so well?\tComment as-tu appris à si bien parler le français ?\nHow did you learn to speak French so well?\tComment avez-vous appris à si bien parler le français ?\nHow do you calculate the volume of a cube?\tComment calculez-vous le volume d'un cube ?\nHow long does it take to get to the beach?\tCombien de temps est-ce que ça prend pour aller à la plage ?\nHow many books can I take out at one time?\tCombien de livres puis-je prendre en une seule fois ?\nHow many books can I take out at one time?\tCombien de livres puis-je retirer en une seule fois ?\nHow many brothers and sisters do you have?\tCombien de frères et sœurs as-tu ?\nHow many brothers and sisters do you have?\tCombien de frères et sœurs avez-vous ?\nHow many concerts did you go to last year?\tÀ combien de concerts t'es-tu rendu l'année passée ?\nHow many concerts did you go to last year?\tÀ combien de concerts t'es-tu rendue l'année dernière ?\nHow many students are there in your class?\tCombien d'élèves y a-t-il dans ta classe ?\nHow many times a day do you feed your dog?\tCombien de fois par jour nourris-tu ton chien ?\nHow many times a day do you feed your dog?\tCombien de fois par jour nourrissez-vous votre chien ?\nHow many times a day should I feed my dog?\tCombien de fois par jour devrais-je nourrir mon chien ?\nHow much do you charge to fix a flat tire?\tCombien prenez-vous pour réparer un pneu à plat ?\nHowever, I'm not good at speaking English.\tCependant, je ne suis pas doué pour parler anglais.\nHurry up, or you will miss the last train.\tDépêche-toi, ou tu vas rater le dernier train.\nI always thought you'd make a cute couple.\tJ'ai toujours pensé que vous feriez un couple très mignon.\nI am afraid it will rain in the afternoon.\tJe crains qu'il ne pleuve dans l'après-midi.\nI am certain that you have noble thoughts.\tJe suis sûr que vos pensées sont nobles.\nI am constantly forgetting people's names.\tJ'oublie toujours les noms des gens.\nI am expecting some serious work from you.\tJ'attends de toi un travail sérieux.\nI am not used to staying up late at night.\tJe ne suis pas habitué à veiller tard le soir.\nI am very grateful to you for your advice.\tJe te suis très reconnaissant pour ton conseil.\nI am very thankful to you for your advice.\tJe te suis très reconnaissant pour ton conseil.\nI am what I am today thanks to my parents.\tJe dois ce que je suis aujourd'hui à mes parents.\nI am working hard trying to learn English.\tJe travaille dur pour essayer d'apprendre l'anglais.\nI apologize for not writing to you before.\tVeuillez m'excuser de ne pas vous avoir écrit avant.\nI applaud your decision to study medicine.\tJ'applaudis votre décision d'étudier la médecine.\nI appreciate any assistance you can offer.\tJ'apprécie toute l'assistance que tu peux me proposer.\nI appreciate any assistance you can offer.\tJ'apprécie toute l'assistance que vous pouvez me proposer.\nI asked Tom why he wanted to go to Boston.\tJ'ai demandé à Tom pourquoi il voulait aller à Boston.\nI asked Tom why he wanted to study French.\tJ'ai demandé à Tom pourquoi il souhaitait apprendre le français.\nI asked for a seat in the smoking section.\tJ'ai demandé un siège dans le compartiment fumeur.\nI ate something that didn't agree with me.\tJ'ai mangé quelque chose qui ne passe pas.\nI awoke one morning to find myself famous.\tUn beau matin, je me suis réveillé célèbre.\nI can hear a cat scratching at the window.\tJ'entends un chat qui gratte à la fenêtre.\nI can neither confirm nor deny the rumors.\tJe ne peux confirmer ni infirmer les rumeurs.\nI can't ask you to take that sort of risk.\tJe ne peux pas vous demander de courir un tel risque.\nI can't believe I locked myself out again.\tJe n'arrive pas à croire que je me sois à nouveau enfermé dehors.\nI can't believe I locked myself out again.\tJe n'arrive pas à croire que je me sois à nouveau enfermée dehors.\nI can't believe I used to watch this show.\tJe n'arrive pas à croire que je regardais cette émission.\nI can't believe I'm even considering this.\tJe n'arrive pas à croire que je l'envisage même.\nI can't believe I'm even considering this.\tJe n'arrive pas à croire que je sois même en train de l'envisager.\nI can't believe you're trying to bribe me.\tJe n'arrive pas à croire que vous essayiez de me corrompre.\nI can't believe you're trying to bribe me.\tJe n'arrive pas à croire que tu essaies de me corrompre.\nI can't endure that noise a moment longer.\tJe ne peux pas supporter ce bruit un instant de plus.\nI can't figure out how to upload an image.\tJe n'arrive pas à comprendre comment télécharger une image.\nI can't finish the job in so short a time.\tJe ne peux pas terminer le travail en aussi peu de temps.\nI can't go back there and neither can you.\tJe ne peux pas y retourner et toi non plus.\nI can't go back there and neither can you.\tJe ne peux pas y retourner et vous non plus.\nI can't go with you because I'm very busy.\tJe ne peux pas aller avec vous parce que je suis très occupé.\nI can't imagine what it must've been like.\tJe n'arrive pas à imaginer ce à quoi ça a dû ressembler.\nI can't imagine what you're going through.\tJe n'arrive pas à imaginer ce que tu traverses.\nI can't imagine what you're going through.\tJe n'arrive pas à imaginer ce que vous traversez.\nI can't put up with that noise any longer.\tJe ne peux plus supporter ce bruit.\nI can't remember anything from last night.\tJe ne me souviens de rien de la nuit dernière.\nI can't see the stage well from this seat.\tDe cette place, je ne peux pas voir la scène.\nI can't understand anything Tom is saying.\tJe ne comprends rien à ce que Tom dit.\nI cannot give you a definite answer today.\tJe ne peux pas vous donner une réponse définitive aujourd'hui.\nI caught up on all my homework last night.\tJe me suis mis à jour dans tous mes devoirs la nuit dernière.\nI could not persuade him that it was true.\tJe n'ai pas pu le persuader que c'était vrai.\nI couldn't get a definite answer from him.\tJe n'ai pas pu avoir une réponse définitive de sa part.\nI couldn't have said it any better myself.\tJe n'aurais pu mieux le dire moi-même.\nI couldn't make him understand my English.\tJe ne réussis pas à lui faire comprendre mon anglais.\nI couldn't make him understand my English.\tJe ne réussissais pas à lui faire comprendre mon anglais.\nI cross the railroad tracks every morning.\tJe traverse la voie ferrée chaque matin.\nI didn't expect so many people to be here.\tJe ne m'attendais pas à ce qu'il y ait tant de monde ici.\nI didn't feel like going out this evening.\tJe ne suis pas d'humeur à sortir ce soir.\nI didn't know apple trees grow from seeds.\tJ'ignorais que les pommiers croissaient à partir de graines.\nI didn't know that he could speak English.\tJe ne savais pas qu'il savait parler anglais.\nI didn't mean to challenge your authority.\tJe ne voulais pas remettre en cause ton autorité.\nI didn't mean to challenge your authority.\tJe ne voulais pas remettre en cause votre autorité.\nI didn't mean to give you that impression.\tJe n’avais pas l’intention de te donner cette impression.\nI didn't receive even one letter from her.\tJe n'ai pas reçu ne serait-ce qu'une lettre d'elle.\nI didn't receive even one letter from her.\tJe ne reçus pas même une lettre d'elle.\nI didn't receive even one letter from her.\tJe n'ai pas reçu même une lettre d'elle.\nI do hope you will come and visit us soon.\tJ'espère vraiment que vous reviendrez vite nous rendre visite.\nI don't answer the phone when I'm working.\tJe ne réponds pas au téléphone lorsque je travaille.\nI don't believe that Tom can speak French.\tJe ne crois pas que Tom puisse parler français.\nI don't have any problem getting to sleep.\tJe n'ai aucun problème à m'endormir.\nI don't have time to answer any questions.\tJe n'ai pas le temps de répondre à des questions.\nI don't have time to do what I want to do.\tJe n'ai pas le temps de faire ce que je veux faire.\nI don't have to apologize for what I said.\tJe n'ai pas à demander des excuses pour ce que j'ai dit.\nI don't have to apologize for what I said.\tJe n'ai pas à m'excuser de ce que j'ai dit.\nI don't know anything about riding horses.\tJe ne connais rien à l'équitation.\nI don't know anything about what happened.\tJe ne sais rien de ce qui s'est passé.\nI don't know anything about what happened.\tJe ne sais rien de ce qui s'est produit.\nI don't know anything about what happened.\tJe ne sais rien de ce qui est arrivé.\nI don't know how he can live in this mess.\tJe ne sais pas comment il arrive à vivre dans ce désordre.\nI don't know how to say goodbye in French.\tJ'ignore comment dire au revoir en français.\nI don't know how to say goodbye in French.\tJe ne sais comment dire au revoir en français.\nI don't know how to say goodbye in French.\tJe ne sais pas comment dire au revoir en français.\nI don't know if I can make it without you.\tJ'ignore si je peux y parvenir sans toi.\nI don't know if I can make it without you.\tJ'ignore si je peux y parvenir sans vous.\nI don't know if Tom still lives in Boston.\tJe ne sais pas si Tom vit encore à Boston.\nI don't know if Tom still lives in Boston.\tJe ne sais pas si Tom habite encore à Boston.\nI don't know if it's what he wants or not.\tJ'ignore si c'est ce qu'il veut ou pas.\nI don't know if she will go there with me.\tJe ne sais pas si elle viendra là-bas avec moi.\nI don't know the reason why he was absent.\tJe ne connais pas la raison de son absence.\nI don't know the reason why he went there.\tJe ne connais pas la raison qui l'a poussé à se rendre là.\nI don't know what you're so worried about.\tJ'ignore ce qui vous soucie tant.\nI don't know what you're so worried about.\tJ'ignore ce qui te soucie tant.\nI don't know what you're so worried about.\tJe ne sais pas ce qui vous soucie tant.\nI don't know what you're so worried about.\tJe ne sais pas ce qui te soucie tant.\nI don't know when he got back from France.\tJe ne sais pas quand est-ce qu'il est rentré de France.\nI don't know who else to turn to for help.\tJe ne sais plus vers qui me tourner pour avoir de l'aide.\nI don't know who you are and I don't care.\tJ'ignore qui vous êtes et je m'en fiche.\nI don't like going out by myself at night.\tJe n'aime pas sortir seul le soir.\nI don't like going out by myself at night.\tJe n'aime pas sortir seule le soir.\nI don't like to eat garlic in the morning.\tJe n’aime pas manger de l’aïl le matin.\nI don't make as much money as I'd like to.\tJe ne gagne pas autant d'argent que je le souhaiterais.\nI don't really know why he wrote the book.\tJe ne sais pas réellement pourquoi il écrivit ce livre.\nI don't really want to go there by myself.\tJe ne veux pas vraiment y aller seule.\nI don't really want to go there by myself.\tJe ne veux pas vraiment y aller seul.\nI don't really want to go there by myself.\tJe ne veux pas vraiment m'y rendre seule.\nI don't really want to go there by myself.\tJe ne veux pas vraiment m'y rendre seul.\nI don't recognize this shirt. Whose is it?\tJe ne reconnais pas cette chemise. À qui appartient-elle ?\nI don't recognize this shirt. Whose is it?\tCette chemise ne me dit rien. À qui est-elle ?\nI don't remember you asking me to do that.\tJe ne me souviens pas que vous m'ayez demandé de faire cela.\nI don't remember you asking me to do that.\tJe ne me souviens pas que tu m'aies demandé de faire cela.\nI don't think I can make it to your party.\tJe ne pense pas pouvoir assister à votre fête.\nI don't think I can make it to your party.\tJe ne pense pas pouvoir assister à ta fête.\nI don't think I can make it to your party.\tJe ne pense pas que je puisse assister à votre fête.\nI don't think I can make it to your party.\tJe ne pense pas que je puisse assister à ta fête.\nI don't think anybody's going to help you.\tJe ne pense pas que quiconque ne va t'aider.\nI don't think anybody's going to help you.\tJe ne pense pas que quiconque ne va vous aider.\nI don't understand a word of what he says.\tJe ne comprends pas un mot de ce qu'il dit.\nI don't understand what this means at all.\tJe ne comprends pas du tout ce que ça veut dire.\nI don't understand what's happening to me.\tJe ne comprends pas ce qu'il m'arrive.\nI don't want Tom's death on my conscience.\tJe ne veux pas la mort de Tom sur la conscience.\nI don't want to buy it if I don't need it.\tJe ne veux pas l'acheter si je n'en ai pas besoin.\nI don't want to go outside this afternoon.\tJe ne veux pas sortir cet après-midi.\nI don't want to talk about that right now.\tJe ne veux pas en parler pour le moment.\nI don't want to waste time talking to Tom.\tJe ne veux pas perdre du temps à parler à Tom.\nI doubt the new proposal will be accepted.\tJe doute que la nouvelle proposition sera acceptée.\nI drank three cups of coffee this morning.\tJ'ai bu trois tasses de café ce matin.\nI drank three cups of coffee this morning.\tJ'ai bu trois cafés ce matin.\nI feel happier than I've ever felt before.\tJe me sens plus heureux que n'importe quand auparavant.\nI feel like I'm going to be lucky tonight.\tJe sens que je vais avoir de la chance, ce soir.\nI feel sleepy when I listen to soft music.\tÇa me donne envie de dormir d'écouter de la musique douce.\nI felt like an outcast among those people.\tJe me sentis comme un réprouvé parmi ces gens.\nI felt like an outcast among those people.\tJe me suis senti comme un réprouvé parmi ces gens.\nI felt tired from having worked for hours.\tJe suis fatigué d'avoir travaillé pendant des heures.\nI felt winded after running up the stairs.\tJe me sentis essoufflé après avoir monté les escaliers en courant.\nI felt winded after running up the stairs.\tJe me sentis essoufflée après avoir monté les escaliers en courant.\nI find foreign languages very interesting.\tJe trouve les langues étrangères très intéressantes.\nI found it difficult to be kind to others.\tJe trouvais difficile d'être gentil envers les autres.\nI found it difficult to solve the problem.\tJ'ai trouvé le problème difficile à résoudre.\nI found out when we're supposed to arrive.\tJ'ai déterminé quand nous sommes supposés arriver.\nI found out when we're supposed to arrive.\tJ'ai déterminé quand nous sommes supposées arriver.\nI found something interesting in the town.\tJ'ai trouvé quelque chose d’intéressant dans la ville.\nI grind my own coffee beans every morning.\tJe mouds mes propres graines de café tous les matins.\nI guess I'm going to have to learn French.\tJ'imagine que je vais devoir apprendre le français.\nI guess we should go get something to eat.\tJe suppose que nous devrions aller prendre quelque chose à manger.\nI had a glass of beer to quench my thirst.\tJ'eus un verre de bière pour étancher ma soif.\nI had back surgery a couple of months ago.\tJ'ai subi une opération chirurgicale du dos, il y a quelques mois.\nI had not waited long before the bus came.\tJe n'ai pas attendu longtemps avant que le bus arrive.\nI had to walk because there were no taxis.\tJe dus marcher car il n'y avait pas de taxis.\nI had to walk because there were no taxis.\tJ'ai dû marcher car il n'y avait pas de taxis.\nI have a feeling that she will come today.\tJ'ai le sentiment qu'elle viendra aujourd'hui.\nI have a few friends in the United States.\tJ'ai quelques amis aux États-Unis.\nI have a friend whose father is a teacher.\tJ'ai un ami dont le père est professeur.\nI have a full-length mirror in my bedroom.\tJ'ai un miroir en pied dans ma chambre.\nI have a lot of work to get through today.\tJ'ai beaucoup de travail à faire aujourd'hui.\nI have already finished reading this book.\tJ’ai déjà fini de lire ce livre.\nI have been to the airport to see him off.\tJe suis allé à l'aéroport pour lui dire au revoir.\nI have been to the airport to see him off.\tJ'étais à l'aéroport pour lui dire adieu.\nI have been to the station to see him off.\tJe suis allé le raccompagner à la gare.\nI have been wanting to ask you a question.\tJe veux te poser une question.\nI have been wanting to ask you a question.\tÇa fait quelque temps que je veux te poser une question.\nI have been wanting to ask you a question.\tÇa fait quelque temps que je veux vous poser une question.\nI have been wanting to ask you a question.\tJe veux vous poser une question.\nI have known Tom since I was a little boy.\tJe connais Tom depuis tout petit.\nI have little time for reading these days.\tJ'ai peu de temps pour lire ces jours-ci.\nI have no hesitation in telling the truth.\tJe n'ai aucune hésitation à dire la vérité.\nI have no idea how long I was unconscious.\tJe n'ai aucune idée de combien de temps je suis resté inconscient.\nI have no idea how long I was unconscious.\tJe n'ai aucune idée de combien de temps je suis restée inconsciente.\nI have not been able to find a job so far.\tJe n'ai pas encore trouvé de travail.\nI have not had a chance to see that movie.\tJe n'ai pas eu l'occasion de voir ce film.\nI have not heard from him for a long time.\tJe n'ai pas entendu parler de lui depuis longtemps.\nI have nothing to tell you for the moment.\tJe n'ai rien à vous dire pour le moment.\nI have only half as many books as he does.\tJe n'ai que moitié moins de livres que lui.\nI have only half as many books as he does.\tJe ne dispose que de moitié moins de livres que lui.\nI have some extra tickets for the concert.\tJ'ai des places en plus pour le concert.\nI have some extra tickets for the concert.\tJ'ai des places supplémentaires pour le concert.\nI have some extra tickets for the concert.\tJ'ai des places de rabe pour le concert.\nI have the same number of books as he has.\tJ'ai autant de livres que lui.\nI have the same number of books as he has.\tJe dispose d'autant de livres que lui.\nI have three times more books than he has.\tJ'ai trois fois plus de livres que lui.\nI have three times more money than you do.\tJ'ai trois fois plus d'argent que vous.\nI have to finish the work by four o'clock.\tIl faut que j'aie terminé mon travail à quatre heures.\nI have to take some money out of the bank.\tJe dois aller retirer de l'argent.\nI have to talk to Tom about what happened.\tje dois parler à Tom de ce qui était arrivé.\nI haven't attended any of his conferences.\tJe n'ai été présent à aucune de ses conférences.\nI haven't been completely honest with you.\tJe n'ai pas été tout à fait honnête avec toi.\nI haven't gotten any letters from Tom yet.\tJe n'ai eu aucun courrier de Tom pour le moment.\nI haven't gotten any letters from Tom yet.\tJe n'ai pas encore reçu de lettres de Tom.\nI haven't the faintest idea what you mean.\tJe n'ai pas la moindre idée de ce que vous voulez dire.\nI haven't the faintest idea what you mean.\tJe n'ai pas la moindre idée de ce que tu veux dire.\nI hear that Tom really speaks French well.\tJ'entends dire que Tom parle vraiment bien le français.\nI heard a noise coming from the next room.\tJ'ai entendu un bruit provenant de la pièce d'à côté.\nI heard from someone that she got married.\tJ'ai entendu dire par quelqu'un qu'elle s'était mariée.\nI heard you are planning to switch majors.\tJ'ai entendu dire que tu prévois de changer de spécialisations.\nI hesitate to broach the subject with her.\tJ'hésite à mettre le sujet sur la table avec elle.\nI hope Tom didn't tell anybody I was here.\tJ'espère que Tom n'a dit à personne que j'étais là.\nI hope everything will be fine in the end.\tJ'espère que tout ira bien à la fin.\nI hope something bad doesn't happen to us.\tJ'espère que rien de mauvais ne nous arrive.\nI hope the weather will clear up tomorrow.\tJ'espère que le temps va s'éclaircir demain.\nI hope we don't have to wait for too long.\tJ'espère que nous n'aurons pas à attendre trop longtemps.\nI intend to stay in Nagoya for three days.\tJ'ai l'intention de rester à Nagoya pendant 3 jours.\nI just don't feel like doing that tonight.\tJe n'ai juste pas envie de faire ça ce soir.\nI just don't want to discuss it right now.\tJe ne veux pas en discuter pour le moment, un point c'est tout.\nI just don't want to discuss it right now.\tJe ne veux tout simplement pas en discuter pour le moment.\nI just don't want you making any mistakes.\tJe ne veux tout simplement pas que vous commettiez d'erreurs.\nI just don't want you making any mistakes.\tJe ne veux tout simplement pas que tu commettes d'erreurs.\nI just don't want you making any mistakes.\tJe ne veux pas que vous commettiez d'erreurs, un point c'est tout.\nI just don't want you making any mistakes.\tJe ne veux pas que tu commettes d'erreurs, un point c'est tout.\nI just don't want you to misunderstand me.\tJe ne veux pas que vous me compreniez de travers, un point c'est tout.\nI just don't want you to misunderstand me.\tJe ne veux pas que tu me comprennes de travers, un point c'est tout.\nI just don't want you to misunderstand me.\tJe ne veux tout simplement pas que vous me compreniez de travers.\nI just don't want you to misunderstand me.\tJe ne veux tout simplement pas que tu me comprennes de travers.\nI just got my textbooks for this semester.\tJe viens de recevoir mes manuels pour ce semestre.\nI just got out of prison three months ago.\tJe viens de sortir de prison, il y a trois mois.\nI just have one quibble with this product.\tJ'ai juste une objection à propos de ce produit.\nI just kind of want to be alone right now.\tJe veux simplement me retrouver seul, à l'instant.\nI just kind of want to be alone right now.\tJe veux simplement me retrouver seule, à l'instant.\nI just want life to be like it was before.\tJe veux juste que la vie soit comme elle était auparavant.\nI just want to go over this one more time.\tJe veux juste parcourir ceci une fois de plus.\nI just want to know what I'm getting into.\tJe veux juste savoir dans quoi je mets les pieds.\nI just want to wish you a merry Christmas.\tJe veux juste vous souhaiter un joyeux Noël.\nI just wish I could contribute more money.\tJ'aimerais simplement pouvoir donner davantage d'argent.\nI just wish I could contribute more money.\tJ'aimerais simplement pouvoir contribuer davantage, financièrement.\nI know a lot about environmental problems.\tJ'ai beaucoup de connaissances au sujet des problèmes environnementaux.\nI know that you have issues with your mom.\tJe sais que tu as des problèmes avec ta maman.\nI know that you have issues with your mom.\tJe sais que vous avez des problèmes avec votre maman.\nI know this is hard for you to understand.\tJe sais que c'est difficile à comprendre, pour toi.\nI know this is hard for you to understand.\tJe sais que c'est difficile à comprendre, pour vous.\nI know you're just doing that to annoy me.\tJe sais que tu fais cela juste pour que je m'énerve.\nI learned how to use a hammer from my dad.\tJ'ai appris à employer un marteau par mon père.\nI let him sleep at my house for the night.\tJe l'ai fait dormir chez moi pour la nuit.\nI like listening to classical music a lot.\tJ'aime beaucoup écouter de la musique classique.\nI like long stories with surprise endings.\tJ'aime les longues histoires avec des fins surprenantes.\nI like summer holidays better than school.\tJe préfère les vacances d'été à l'école.\nI like summer, but I can't stand the heat.\tJ'aime l'été mais je ne supporte pas la chaleur.\nI like the original better than the remix.\tJe préfère l'original au remixage.\nI look forward to seeing you at Christmas.\tJ'ai hâte de vous voir à Noël.\nI love watching movies that make me think.\tJ'adore regarder des films qui me donnent à réfléchir.\nI love watching movies that make me think.\tJ'adore regarder des films qui me font réfléchir.\nI made friends with a student from abroad.\tJe me suis lié d'amitié avec un étudiant étranger.\nI miss the hustle and bustle of city life.\tL'activité et l'affairement de la vie citadine me manquent.\nI must go to the station at three o'clock.\tJe dois être à la gare à trois heures.\nI must work hard to make up for lost time.\tIl faut que je travaille dur pour rattraper le temps perdu.\nI need to find something to cut this with.\tIl me faut trouver quelque chose pour couper ceci.\nI need to get something done very quickly.\tIl me faut faire faire quelque chose très rapidement.\nI need to go back to Boston for a funeral.\tJe dois retourner à Boston pour un enterrement.\nI need to know who I have to give this to.\tJ'ai besoin de savoir à qui je dois donner ceci.\nI never claimed that I could speak French.\tJe n'ai jamais prétendu pouvoir parler le français.\nI often wrote to her when I was a student.\tJe lui ai souvent écrit lorsque j'étais étudiant.\nI opened an account in my daughter's name.\tJ'ai ouvert un compte au nom de ma fille.\nI pressed the button to turn the radio on.\tJ'ai appuyé sur le bouton pour allumer la radio.\nI presume that he has paid the money back.\tJe suppose qu'il a rendu l'argent.\nI promise I'll take good care of your dog.\tJe promets que je prendrai bien soin de votre chien.\nI promise I'll take good care of your dog.\tJe promets que je prendrai bien soin de ton chien.\nI ran into an old friend at Tokyo Station.\tJ'ai rencontré par hasard un vieil ami à la gare de Tokyo.\nI really do appreciate all your hard work.\tJ'apprécie vraiment tout ton labeur.\nI really do appreciate all your hard work.\tJ'apprécie vraiment tout votre labeur.\nI really don't think that'll be necessary.\tJe ne pense vraiment pas que ce sera nécessaire.\nI really don't understand what's so funny.\tJe ne comprends vraiment pas ce qui est si drôle.\nI really like this skirt. Can I try it on?\tJ'aime beaucoup cette jupe, puis-je l'essayer ?\nI really think you should stop doing that.\tJe pense vraiment que vous devriez arrêter de faire ça.\nI really think you should stop doing that.\tJe pense vraiment que tu devrais arrêter de faire ça.\nI returned the knife which I had borrowed.\tJ'ai rendu le couteau que j'avais emprunté.\nI saw the children walk across the street.\tJe vis les enfants traverser la rue.\nI saw your cousin Tom just a few days ago.\tJ'ai vu ton cousin Tom il y a quelques jours à peine.\nI should have told you everything earlier.\tJ'aurais dû te raconter tout ça plus tôt.\nI should not have done that. It was wrong.\tJe n'aurais pas dû faire ça. C'était mal.\nI should not have done that. It was wrong.\tJe n'aurais pas dû faire ça. C'était une erreur.\nI stayed home all day long reading novels.\tJe restais à la maison à lire des romans toute la journée.\nI stood under a tree to avoid getting wet.\tJe me suis abrité sous un arbre pour éviter d'être mouillé.\nI stopped off at Osaka on my way to Tokyo.\tEn route pour Tokyo, j'ai fait une halte à Osaka.\nI strolled along the streets to kill time.\tJ'ai flâné dans les rues pour passer le temps.\nI strolled along the streets to kill time.\tJe me suis promené le long des rues pour tuer le temps.\nI suggest that you proceed very carefully.\tJe suggère que tu procèdes très prudemment.\nI suggest that you proceed very carefully.\tJe suggère que vous procédiez très prudemment.\nI suggest that your son come to our party.\tJe propose que votre fils vienne à notre fête.\nI sure hope there's nothing wrong with it.\tJ'espère vraiment qu'il n'y a là rien qui cloche.\nI take a bath every morning in the summer.\tJe prends un bain chaque matin en été.\nI take full responsibility for the action.\tJ'assume l'entière responsabilité de cette action.\nI thanked him from the bottom of my heart.\tJe l'ai remercié du fond du cœur.\nI think I left something in the classroom.\tJe pense que j'ai laissé quelque chose dans la salle de classe.\nI think Tom believes everything Mary says.\tJe pense que Tom croit tout ce que Marie lui dit.\nI think Tom wants something to write with.\tJe pense que Tom veut quelque chose pour écrire.\nI think it's a bad idea to loan Tom money.\tJe pense que prêter de l'argent à Tom est une mauvaise idée.\nI think it's time for me to buy a new car.\tJe pense qu'il est temps pour moi d'acheter une nouvelle voiture.\nI think it's time for me to call a doctor.\tJe pense qu'il est temps pour moi d'appeler un médecin.\nI think it's time for me to call it a day.\tJe pense qu'il est temps pour moi d'arrêter pour aujourd'hui.\nI think it's time for me to call it quits.\tJe pense qu'il est temps pour moi d'en rester là.\nI think it's time for me to get a new job.\tJe pense qu'il est temps pour moi de prendre un nouvel emploi.\nI think that Shintaro speaks English well.\tJe pense que Shintaro parle bien anglais.\nI think that this was not a wise decision.\tJe crois que ce n'était pas une sage décision.\nI think that's just what I need right now.\tJe pense que c'est précisément ce qu'il me faut à l'instant.\nI think that's just what I need right now.\tJe pense que c'est précisément ce dont j'ai besoin à l'instant.\nI think there's somebody in the next room.\tJe pense qu'il y a quelqu'un dans la pièce voisine.\nI think this machine is in need of repair.\tJe pense que cette machine a besoin d'être réparée.\nI think we'll get off at the next station.\tJe pense que nous descendrons à la prochaine station.\nI think you might have a drinking problem.\tJe pense qu'il se pourrait que tu aies un problème d'alcool.\nI think you might have a drinking problem.\tJe pense qu'il se pourrait que vous ayez un problème d'alcool.\nI think you ought to postpone the meeting.\tJe pense que vous devriez remettre la réunion.\nI think you ought to postpone the meeting.\tJe pense que tu devrais remettre la réunion.\nI think you ought to postpone the meeting.\tJe pense que vous devriez décaler la réunion.\nI think you ought to postpone the meeting.\tJe pense que tu devrais décaler la réunion.\nI think you should think about the future.\tJe pense que tu devrais penser à l'avenir.\nI think you should think about the future.\tJe pense que tu dois penser à l'avenir.\nI think you're being a little too careful.\tJe pense que tu es un peu trop prudent.\nI think you're being a little too careful.\tJe pense que tu fais preuve d'un peu trop de prudence.\nI think you're being a little too careful.\tJe pense que tu es un peu trop prudente.\nI think you're being a little too careful.\tJe pense que vous êtes un peu trop prudent.\nI think you're being a little too careful.\tJe pense que vous êtes un peu trop prudente.\nI think you're being a little too careful.\tJe pense que vous êtes un peu trop prudentes.\nI think you're being a little too careful.\tJe pense que vous êtes un peu trop prudents.\nI think you're being a little too careful.\tJe pense que vous faites preuve d'un peu trop de prudence.\nI thought Tom told you what you had to do.\tJe pensais que Tom t'avait dit ce que tu devais faire.\nI thought about calling Tom, but I didn't.\tJ’ai pensé appeler Tom, mais je ne l’ai pas fait.\nI thought my parents would be proud of me.\tJe pensais que mes parents seraient fiers de moi.\nI thought that book was difficult to read.\tJe pensais que ce livre était difficile à lire.\nI thought you should read these documents.\tJ'ai pensé que vous devriez lire ces documents.\nI took it for granted that she would come.\tJe pensais qu'il allait de soi qu'elle viendrait.\nI took it for granted that you would come.\tJ'étais convaincu que vous viendriez.\nI took it for granted that you would come.\tJ'étais convaincu que tu viendrais.\nI tried to talk to Tom, but he ignored me.\tJ'ai essayé de parler à Tom, mais il m'a ignoré.\nI understand that a mistake has been made.\tJe comprends qu'une erreur a été commise.\nI used to look up to him, but not anymore.\tJe l'admirais, mais plus maintenant.\nI used to look up to him, but not anymore.\tAuparavant, je l'admirais, mais plus maintenant.\nI usually go shopping on Sunday afternoon.\tJ'ai l'habitude de faire mes courses le dimanche après-midi.\nI value our friendship more than anything.\tJ'accorde davantage de valeur à notre amitié qu'à quoi que ce soit d'autre.\nI very much don't want to have to do that.\tJe ne veux vraiment pas avoir à faire cela.\nI wake up at half past six in the morning.\tJe me réveille à six heures et demie le matin.\nI want a box three times as large as this.\tJe veux une boîte trois fois plus grande que ceci.\nI want the same jacket as you are wearing.\tJe veux la même veste que celle que tu portes.\nI want the same jacket as you are wearing.\tJe veux la même veste que celle que vous portez.\nI want to apologize for everything I said.\tJe veux présenter mes excuses pour tout ce que j'ai dit.\nI want to find out what Tom did yesterday.\tJe veux découvrir ce que Tom a fait hier.\nI want to give you enough time to do that.\tJe veux t'allouer suffisamment de temps pour faire ça.\nI want to give you enough time to do that.\tJe veux vous allouer suffisamment de temps pour faire ça.\nI want to go over it again in more detail.\tJe veux le parcourir à nouveau de manière plus détaillée.\nI want to grow up to be a great scientist.\tJe veux devenir un grand scientifique.\nI want to see the director of the company.\tJe veux voir le directeur de la société.\nI want to show you something very special.\tJe veux vous montrer quelque chose de très spécial.\nI want to show you something very special.\tJe veux vous montrer quelque chose de très particulier.\nI want to show you something very special.\tJe veux te montrer quelque chose de très particulier.\nI want to stay in America for a few years.\tJe veux séjourner en Amérique pendant quelques années.\nI want to take part to the next triathlon.\tJe veux participer au prochain triathlon.\nI was about to go out when the phone rang.\tJ'allais sortir quand le téléphone a sonné.\nI was going to write to you, but I forgot.\tJ'allais t'écrire mais j'ai oublié.\nI was going to write to you, but I forgot.\tJ'allais vous écrire mais j'ai oublié.\nI was leaving home when Tom telephoned me.\tJe partais de chez moi lorsque Tom m'a téléphoné.\nI was leaving home when Tom telephoned me.\tJe partais de chez moi quand Tom me téléphona.\nI was offered the choice of tea or coffee.\tOn m'a proposé le choix entre un thé et un café.\nI was really tired so I went to bed early.\tJ'étais très fatigué, donc je me suis couché tôt.\nI was rendered speechless by his rudeness.\tSa grossièreté me rendit sans voix.\nI was still eating when the doorbell rang.\tJ'étais encore en train de manger lorsque la sonnette retentit.\nI was to have finished the work yesterday.\tJe devais finir le travail hier.\nI was to have finished the work yesterday.\tJe devais avoir fini le travail hier.\nI was watching TV when the telephone rang.\tJe regardais la télé lorsque le téléphone a sonné.\nI wasn't able to come because of the rain.\tJe fus dans l'incapacité de venir en raison de la pluie.\nI wasn't the only one who didn't know Tom.\tJe n'étais pas le seul qui ne connaissait pas Tom.\nI went home in order to change my clothes.\tJe suis allé à la maison pour changer mes vêtements.\nI went on a ten-day trip to Easter Island.\tJ'ai entrepris un voyage de dix jours à l'île de Pâques.\nI went to bed a little earlier than usual.\tJe suis allé au lit un peu plus tôt que d'habitude.\nI went to see a movie with Tom after work.\tJe suis allé voir un film avec Tom après le travail.\nI will be studying when you come at seven.\tÀ 7h quand tu viendras je serai en train d'étudier.\nI will give this book to whoever wants it.\tJe vais donner ce livre à ceux qui le veulent.\nI will meet you at three o'clock tomorrow.\tJe te rencontrerai à trois heures demain.\nI will teach you how to skate next Sunday.\tJe t'enseignerai le skate dimanche prochain.\nI wish I could break the habit of smoking.\tSi seulement je pouvais perdre l'habitude que j'ai de fumer.\nI wish I had followed the doctor's advice.\tJ'aurais dû suivre les conseils du médecin.\nI wish our classroom were air-conditioned.\tJ'aimerais que notre classe soit équipée de l'air conditionné.\nI wish we'd bought another bottle of wine.\tNous aurions dû acheter une autre bouteille de vin.\nI won a prize in the spelling competition.\tJ'ai gagné un prix à la compétition d'orthographe.\nI won't hire anyone without your approval.\tJe n'embaucherai personne sans votre approbation.\nI wonder if Tom knows Mary's phone number.\tJe me demande si Tom connaît le numéro de téléphone de Mary.\nI wonder if someone could help me do this.\tJe me demande si quelqu'un pourrait m'aider à faire cela.\nI wonder if you could get me another beer.\tJe me demandais si tu pouvais m'apporter une autre bière.\nI wonder where Tom learned how to do that.\tJe me demande où Tom a appris comment faire cela.\nI wonder why we play tennis in miniskirts.\tJe me demande pourquoi on joue au tennis en mini-jupe ?\nI would prefer to speak to you in private.\tJe préfèrerais m'entretenir avec vous en privé.\nI would prefer to speak to you in private.\tJe préfèrerais te parler en privé.\nI would rather starve than work under him.\tJe préfèrerais mourir de faim que de travailler sous ses ordres.\nI wouldn't want anything to happen to you.\tJe ne voudrais pas qu'il t'arrive quelque chose.\nI wouldn't want anything to happen to you.\tJe ne voudrais pas qu'il vous arrive quelque chose.\nI wrote the wrong address on the envelope.\tJe me suis trompé d'adresse sur l'enveloppe.\nI'd be very grateful if you could help me.\tJe serais très reconnaissant si vous pouviez m'aider.\nI'd like stay longer, but I have to leave.\tJ'aimerais rester plus longtemps mais je dois partir.\nI'd like to ask you a couple of questions.\tJ'aimerais te poser quelques questions.\nI'd like to ask you a couple of questions.\tJ'aimerais vous poser quelques questions.\nI'd like to borrow fifty dollars from you.\tJ'aimerais t'emprunter cinquante dollars.\nI'd like to get together with you tonight.\tJ'aimerais te rencontrer ce soir.\nI'd like to get together with you tonight.\tJ'aimerais vous rencontrer ce soir.\nI'd like to give you the key, but I can't.\tJ'aimerais te donner la clé, mais je ne peux pas.\nI'd like to give you the key, but I can't.\tJ'aimerais vous donner la clé, mais je ne peux pas.\nI'd like to go with you if you don't mind.\tJ'aimerais aller avec toi si tu n'y vois pas d'inconvénient.\nI'd like to go with you if you don't mind.\tJ'aimerais y aller avec toi si tu n'y vois pas d'inconvénient.\nI'd like to go with you if you don't mind.\tJ'aimerais aller avec vous si vous n'y voyez pas d'inconvénient.\nI'd like to go with you if you don't mind.\tJ'aimerais y aller avec vous si vous n'y voyez pas d'inconvénient.\nI'd like to have a test for breast cancer.\tJe voudrais passer un test pour le cancer du sein.\nI'd like to have dinner with you sometime.\tJ'aimerais dîner avec toi un de ces quatre.\nI'd like to have dinner with you sometime.\tJ'aimerais dîner avec vous un de ces quatre.\nI'd like to play tennis with you some day.\tUn jour, j'aimerais jouer au tennis avec vous.\nI'd really like it if we could be friends.\tJ'apprécierais vraiment que nous puissions être amis.\nI'd really like it if we could be friends.\tJ'apprécierais vraiment que nous puissions être amies.\nI'll be able to finish it in a day or two.\tJe serai en mesure de l'achever d'ici un jour ou deux.\nI'll be absent from home in the afternoon.\tJe serai absent de la maison l'après-midi.\nI'll be there at two o'clock without fail.\tJ'y serais à deux heures sans faute.\nI'll do it according to your instructions.\tJe le ferai en suivant tes instructions.\nI'll do whatever it takes to get you back.\tJe ferai tout ce qu'il faut pour que tu me reviennes.\nI'll do whatever it takes to get you back.\tJe ferai tout ce qu'il faut pour te récupérer.\nI'll never tell anyone who you really are.\tJe ne dirai jamais à personne qui tu es vraiment.\nI'll never tell anyone who you really are.\tJe ne dirai jamais à personne qui vous êtes vraiment.\nI'll soon register for a course in German.\tJe vais bientôt m'inscrire à un cours en allemand.\nI'll take your suitcase to your room, sir.\tJe vais porter votre valise dans votre chambre, Monsieur.\nI'm about to tell you something important.\tJe suis sur le point de te dire quelque chose d'important.\nI'm fed up with your constant complaining.\tJ'en ai marre de t'entendre râler constamment.\nI'm glad you're here to help me with this.\tJe suis content que tu sois ici pour m'aider avec ça.\nI'm going to buy a camera for my daughter.\tJe vais acheter un appareil photo pour ma fille.\nI'm going to have to think about that one.\tIl va me falloir y réfléchir.\nI'm going to have to think about that one.\tIl va me falloir y songer.\nI'm having lunch with my sister right now.\tJe suis en train de déjeuner avec ma sœur.\nI'm looking for your sister. Where is she?\tJe cherche ta sœur. Où est-elle ?\nI'm looking for your sister. Where is she?\tJe cherche après ta sœur. Où est-elle ?\nI'm looking forward to seeing your father.\tJe suis impatient de voir ton père.\nI'm moving, so I need boxes for my things.\tJe déménage, alors j'ai besoin de cartons pour mes affaires.\nI'm not crazy. You're the one who's crazy.\tJe ne suis pas fou. Tu es celui qui est fou.\nI'm so tired that I can't walk any longer.\tJe suis tellement fatigué que je ne peux plus marcher.\nI'm so tired that I can't walk any longer.\tJe suis tellement fatiguée que je ne peux plus marcher.\nI'm sorry I have kept you waiting so long.\tJe suis désolée de vous avoir fait attendre si longtemps.\nI'm sorry but I forgot to do the homework.\tJe suis désolée mais j'ai oublié de faire les devoirs.\nI'm sorry for everything I've done to you.\tJe suis désolé pour tout ce que je t'ai fait.\nI'm sorry for everything I've done to you.\tJe suis désolée pour tout ce que je t'ai fait.\nI'm sorry for everything I've done to you.\tJe suis désolé pour tout ce que je vous ai causé.\nI'm sorry for everything I've done to you.\tJe suis désolée pour tout ce que je vous ai causé.\nI'm sorry, but I already have a boyfriend.\tJe suis désolée mais j'ai déjà un jules.\nI'm sorry, but I already have a boyfriend.\tJe suis désolée mais j'ai déjà un mec.\nI'm sorry, but I already have a boyfriend.\tJe suis désolé mais j'ai déjà un mec.\nI'm sorry, but I already have a boyfriend.\tJe suis désolée mais j'ai déjà un petit ami.\nI'm sorry, but I already have a boyfriend.\tJe suis désolée mais j'ai déjà un petit copain.\nI'm sorry, but I cannot answer right away.\tJe suis désolé, mais je ne peux pas répondre tout de suite.\nI'm staying at a hotel for the time being.\tJe séjourne dans un hôtel, pour le moment.\nI'm still not used to getting up so early.\tJe ne suis toujours pas habitué à me lever si tôt.\nI'm sure you must have a lot of questions.\tJe suis sûr que tu dois avoir beaucoup de questions.\nI'm sure you must have a lot of questions.\tJe suis sûre que vous devez avoir beaucoup de questions.\nI'm sure you never told me not to do this.\tJe suis sûr que tu ne m'as jamais dit de ne pas faire ça.\nI'm sure you never told me not to do this.\tJe suis sûre que vous ne m'avez jamais dit de ne pas faire ceci.\nI'm thinking of embarking on a new career.\tJe pense à me lancer dans une nouvelle carrière.\nI'm willing to help you if you want me to.\tJe suis prêt à vous aider, si vous voulez que je le fasse.\nI'm willing to help you if you want me to.\tJe suis disposé à vous aider, si vous voulez que je le fasse.\nI'm willing to help you if you want me to.\tJe suis prêt à t'aider, si tu veux que je le fasse.\nI'm willing to help you if you want me to.\tJe suis prête à vous aider, si vous voulez que je le fasse.\nI'm willing to help you if you want me to.\tJe suis disposée à vous aider, si vous voulez que je le fasse.\nI'm willing to help you if you want me to.\tJe suis prête à t'aider, si tu veux que je le fasse.\nI'm willing to help you if you want me to.\tJe suis disposé à t'aider, si tu veux que je le fasse.\nI'm willing to help you if you want me to.\tJe suis disposée à t'aider, si tu veux que je le fasse.\nI'm wondering whether to take on that job.\tJe me demande si je dois accepter ce travail.\nI've advertised my house in the newspaper.\tJ'ai fait la publicité de ma maison dans le journal.\nI've always wanted to try to learn French.\tJ'ai toujours voulu essayer d'apprendre le français.\nI've been waiting for Tom for a long time.\tCela fait longtemps que j'attends Tom.\nI've been waiting for you for over a week.\tJe t'attends depuis plus d'une semaine.\nI've been waiting for you for three hours!\tÇa fait trois heures que je t'attends !\nI've been waiting for you for three hours!\tJe t'attends depuis trois heures !\nI've eaten a great deal of food this week.\tJ'ai beaucoup mangé cette semaine.\nI've found something I'd like to show you.\tJ'ai trouvé quelque chose que j'aimerais te montrer.\nI've found something I'd like to show you.\tJ'ai trouvé quelque chose que j'aimerais vous montrer.\nI've got accustomed to speaking in public.\tJe me suis habitué à parler en public.\nI've got accustomed to speaking in public.\tJe me suis habituée à parler en public.\nI've got an appointment tomorrow with Tom.\tJ'ai rendez-vous demain avec Tom.\nI've got better things to do with my time.\tJ'ai mieux à faire de mon temps.\nI've got better things to do with my time.\tJ'ai des choses plus utiles à faire de mon temps.\nI've got my guitar in the trunk of my car.\tJ'ai ma guitare dans le coffre de la voiture.\nI've got plenty more where that came from.\tJ'en ai plein d'autres là d'où c'est venu.\nI've just talked to Tom about that matter.\tJe viens de parler à Tom à propos de cette affaire.\nI've known her for more than twenty years.\tJe la connais depuis plus de vingt ans.\nI've never seen anything like this before.\tJe n'ai encore jamais rien vu de tel auparavant.\nI've spent most of my life here in Boston.\tJ'ai passé la plus grande partie de ma vie ici, à Boston.\nIce skating can be graceful and beautiful.\tLe patin à glace peut être beau et gracieux.\nIf God is with us, then who is against us?\tSi Dieu est avec nous, alors qui est contre nous ?\nIf I were you, I wouldn't do such a thing.\tSi j'étais toi, je ne ferais pas une telle chose.\nIf I were you, I wouldn't do such a thing.\tSi j'étais vous, je ne ferais pas une telle chose.\nIf I've misjudged you, I'm terribly sorry.\tJe suis profondément désolé si je t'ai méjugé.\nIf I've misjudged you, I'm terribly sorry.\tJe suis profondément désolée si je vous ai méjugée.\nIf he doesn't come, what will you do then?\tS'il ne vient pas, que feras-tu alors ?\nIf it rains tomorrow, I will stay at home.\tS'il pleut demain, je reste à la maison.\nIf it rains, we will go to the art museum.\tS'il pleut, on ira au musée d'art.\nIf that's true, then she's better than me.\tSi c'est vrai, alors elle est meilleure que moi.\nIf we begin early, we can finish by lunch.\tSi nous commençons tôt, nous pouvons finir pour le déjeuner.\nIf we had wings, could we fly to the moon?\tSi nous avions des ailes, pourrions-nous voler vers la Lune ?\nIf you are ever in Japan, come and see me.\tSi vous passez un jour par le Japon, venez me voir.\nIf you are to succeed, you must work hard.\tTu dois travailler dur pour réussir.\nIf you don't hurry, you'll miss the train.\tSi tu ne te dépêches pas, tu manqueras le train.\nIf you ever touch me again, I'll kill you.\tSi jamais tu me touches encore, je te tuerai.\nIf you ever touch me again, I'll kill you.\tSi jamais vous me touchez encore, je vous tuerai.\nIf you want to come with us, come with us.\tSi tu veux venir avec nous, fais-le.\nIf you want to come with us, come with us.\tSi vous voulez venir avec nous, faites-le.\nIf you want to succeed in life, work hard.\tSi tu veux réussir dans la vie, travaille dur !\nIf you want to succeed in life, work hard.\tSi vous voulez réussir dans la vie, travaillez dur !\nIf your feet get wet, you'll catch a cold.\tSi tu te mouilles les pieds, tu attraperas froid.\nIf your feet get wet, you'll catch a cold.\tSi vous vous mouillez les pieds, vous attraperez froid.\nIn Washington, no one knew what to expect.\tÀ Washington, personne ne savait à quoi s'attendre.\nIn all probability, the cabinet will fall.\tSelon toute probabilité, le gouvernement va tomber.\nIn case of an emergency, push this button.\tEn cas d'urgence, appuyez sur ce bouton.\nIn due time, his innocence will be proven.\tEn temps utile, son innocence sera établie.\nIn due time, his innocence will be proven.\tSon innocence sera prouvée en temps voulu.\nIn poker, three of a kind beats two pairs.\tAu poker, un brelan bat deux paires.\nIn terms of salary, that job is fantastic.\tEn termes de salaire, le poste est super.\nIn the summer I wear short-sleeved shirts.\tEn été je porte des chemises à manches courtes.\nIn their case, it was love at first sight.\tEn ce qui les concerne, c'était le coup de foudre.\nIn those days, few people went to college.\tPeu de gens allaient alors en faculté.\nIs that singer popular among your friends?\tCe chanteur est-il populaire parmi tes amis ?\nIs there any other way besides extraction?\tY aurait-il une autre solution que l'extraction ?\nIs there central heating in this building?\tY a-t-il un chauffage central dans ce bâtiment ?\nIs this new model available on the market?\tEst-ce que ce nouveau modèle est disponible sur le marché ?\nIs this new model available on the market?\tCe nouveau modèle est-il disponible sur le marché ?\nIs this the dictionary you're looking for?\tEst-ce là le dictionnaire que tu cherches ?\nIs this the key your uncle is looking for?\tEst-ce la clé que ton oncle cherche ?\nIs this the place where your mother works?\tEst-ce là que ta mère travaille ?\nIs this the place where your mother works?\tEst-ce là que votre mère travaille ?\nIt appears that she might change her mind.\tIl semble possible qu'elle change d'opinion.\nIt cost him ten dollars to get the ticket.\tIl lui a fallu dix dollars pour avoir le billet.\nIt couldn't have happened at a worse time.\tÇa ne pouvait pas plus mal tomber.\nIt doesn't matter whether you come or not.\tQue vous veniez ou pas n'a pas d'importance.\nIt goes without saying that time is money.\tCela va sans dire que le temps, c'est de l'argent.\nIt is definite that he will go to America.\tIl est clair qu'il va en Amérique.\nIt is important for them to do their best.\tIl est important pour eux de faire de leur mieux.\nIt is no use trying to solve this problem.\tCela ne sert à rien d'essayer de résoudre ce problème.\nIt is not known when he came up to London.\tOn ne sait pas quand il est venu à Londres.\nIt is very dangerous to cross this street.\tIl est très dangereux de traverser la route.\nIt is very kind of you to come and see me.\tC'est vraiment sympa de ta part de venir me voir.\nIt isn't easy to learn a foreign language.\tIl n'est pas facile d'apprendre une langue étrangère.\nIt looks like something's going to happen.\tOn dirait que quelque chose va arriver.\nIt looks like something's going to happen.\tIl semble que quelque chose va survenir.\nIt makes me really happy that you're here.\tJe me réjouis vraiment que tu sois ici.\nIt may have been Tom that wrote this note.\tC'est peut-être Tom qui a écrit ce mot.\nIt might rain. We should take an umbrella.\tIl pourrait pleuvoir ; nous devrions prendre un parapluie.\nIt pains me to disagree with your opinion.\tÇa me fait mal d'être en désaccord avec ton opinion.\nIt pains me to disagree with your opinion.\tJe suis au regret de ne pas être d'accord avec ton opinion.\nIt pains me to disagree with your opinion.\tJe suis au regret de ne pas être d'accord avec votre opinion.\nIt seems as if you are the first one here.\tOn dirait que vous êtes le premier ici.\nIt seems that the rainy season has set in.\tIl semble que la saison des pluies ait commencé.\nIt seems to me that this is too expensive.\tIl me semble que c'est trop cher.\nIt shouldn't come as a surprise to anyone.\tÇa ne devrait être une surprise pour personne.\nIt takes 10 minutes to get to the station.\tIl faut 10 minutes pour aller à la gare.\nIt takes about ten minutes to boil an egg.\tIl faut quelque dix minutes pour cuire un œuf.\nIt was a great privilege working with you.\tCe fut un grand privilège de travailler avec vous.\nIt was a mistake to refuse his assistance.\tC'est une erreur d'avoir refusé son assistance.\nIt was he that broke the window yesterday.\tC'est lui qui a cassé la fenêtre hier.\nIt was raining hard, so we played indoors.\tIl pleuvait des cordes, aussi nous jouâmes à l'intérieur.\nIt was raining hard, so we played indoors.\tIl pleuvait des cordes, aussi nous avons joué à l'intérieur.\nIt would be better if you read more books.\tIl serait préférable que vous lisiez plus de livres.\nIt wouldn't take all that long to explain.\tÇa ne prendrait pas tant de temps que ça d'expliquer.\nIt wouldn't take all that long to explain.\tCela ne prendrait pas si longtemps d'expliquer.\nIt's a direct flight from Tokyo to London.\tC'est un vol direct Tokyo-Londres.\nIt's a great honor to be able to meet you.\tC'est un grand honneur de pouvoir le connaître.\nIt's a pity that you can't travel with us.\tIl est dommage que vous ne puissiez voyager avec nous.\nIt's a pity that you can't travel with us.\tC'est dommage que tu ne puisses pas voyager avec nous.\nIt's been three years since I've seen Tom.\tÇa fait trois ans que je n'ai pas vu Tom.\nIt's better for you not to see my grandpa.\tC'est mieux pour vous de ne pas voir mon grand-père.\nIt's better to be crazy than to be boring.\tIl est préférable d'être fou que d'être ennuyeux !\nIt's better to err on the side of caution.\tIl vaut mieux pêcher par excès de prudence.\nIt's better to walk back than to get lost.\tIl est préférable de retourner en arrière plutôt que de se perdre.\nIt's cheaper to order things by the dozen.\tC'est meilleur marché de commander des choses à la douzaine.\nIt's cheaper to order things by the dozen.\tC'est moins cher de commander des choses à la douzaine.\nIt's considered to be an important matter.\tOn le considère comme une affaire importante.\nIt's considered to be an important matter.\tOn la considère comme une affaire importante.\nIt's dangerous to jump off a moving train.\tIl est dangereux de sauter d'un train en marche.\nIt's easier to teach children than adults.\tIl est plus facile d'enseigner aux enfants qu'aux adultes.\nIt's getting harder for me to concentrate.\tMa concentration s'atténue progressivement.\nIt's hard to keep up with his dirty deeds.\tIl est difficile de se tenir au courant de ses sales tours.\nIt's not a good car, but it's still a car.\tCe n'est pas une bonne voiture mais c'est toujours une voiture.\nIt's not as hot today as it was yesterday.\tIl ne fait pas aussi chaud aujourd'hui qu'hier.\nIt's not easy to speak a foreign language.\tCe n'est pas facile de parler une langue étrangère.\nIt's said that she's a well-known actress.\tOn dit qu'elle est une actrice renommée.\nIt's shameful to treat a child so cruelly.\tIl est honteux de traiter un enfant si cruellement.\nIt's so hot outside, you could fry an egg.\tIl fait tellement chaud qu'on pourrait faire cuire des œufs sur le capot des voitures.\nIt's the first thing that my father wrote.\tC'est la première chose que mon père écrivit.\nIt's time you stopped watching television.\tIl est temps que tu arrêtes de regarder la télé.\nIt's too bad you can't come with us today.\tC'est dommage que tu ne puisses pas venir avec nous, aujourd'hui.\nIt's too bad you can't come with us today.\tC'est dommage que vous ne puissiez pas venir avec nous, aujourd'hui.\nJapan has diplomatic relations with China.\tLe Japon a des relations diplomatiques avec la Chine.\nJapan has diplomatic relations with China.\tLe Japon entretient des relations diplomatiques avec la Chine.\nJapanese tourists can be found everywhere.\tOn peut trouver partout des touristes japonais.\nLast month he had his house painted white.\tLe mois dernier, il a fait peindre sa maison en blanc.\nLast summer, I worked part time on a farm.\tL'été dernier, j'ai travaillé à temps partiel dans une ferme.\nLet me know if I need to make any changes.\tFaites-moi savoir si j'ai besoin de faire des changements.\nLet me know if there is anything I can do.\tFais-moi savoir s'il y a quoi que ce soit que je puisse faire.\nLet me know the result as soon as you can.\tFaites-moi savoir le résultat aussitôt que vous pouvez.\nLet me see the pictures you took in Paris.\tMontre-moi les photos que tu as prises à Paris.\nLet me think it over for a couple of days.\tLaisse-moi y penser pendant quelques jours.\nLet us know if you're available next week.\tFaites-nous savoir si vous êtes disponible la semaine prochaine.\nLet's go and see as many things as we can.\tAllons-y et voyons autant de choses que nous pourrons.\nLet's hope they don't even think about it.\tEspérons qu'ils n'y songent même pas !\nLet's keep each other company for a while.\tTenons-nous compagnie un moment.\nLet's let the workers go home early today.\tAujourd'hui, laissons les ouvriers finir plus tôt.\nLet's list all the reasons not to do that.\tListons tous les raisons de ne pas faire cela.\nLet's see who can finish doing this first.\tVoyons qui peut finir ceci en premier.\nLook out for cars when you cross the road.\tFaites attention aux voitures quand vous traversez la route.\nMaking money is not the only goal in life.\tFaire de l'argent n'est pas le seul but de la vie.\nMan eats to live, he does not live to eat.\tLes hommes mangent pour vivre, mais ne vivent pas pour manger.\nMany English words are derived from Latin.\tBeaucoup de mots anglais sont d'origine latine.\nMany countries have problems with poverty.\tBeaucoup de pays ont des problèmes de pauvreté.\nMany economists are ignorant of that fact.\tDe nombreux économistes ignorent ce fait.\nMany weeds were growing among the flowers.\tEntre les fleurs poussaient beaucoup de mauvaises herbes.\nMany young people came to Moscow to study.\tBeaucoup de jeunes sont venus à Moscou pour étudier.\nMany young people came to Moscow to study.\tBeaucoup de jeunes sont venus étudier à Moscou.\nMany young people in Spain are unemployed.\tDe nombreux jeunes en Espagne sont sans emploi.\nMary received many gifts for her birthday.\tMary a reçu beaucoup de cadeaux pour son anniversaire.\nMaybe Tom won't go to Boston on this trip.\tPeut-être Tom n'ira-t-il pas à Boston durant ce voyage.\nMaybe Tom won't go to Boston on this trip.\tPeut-être que Tom n'ira pas à Boston durant ce voyage.\nMinorities are despised in many countries.\tLes minorités sont méprisées dans de nombreux pays.\nMinorities are despised in many countries.\tOn méprise les minorités dans de nombreux pays.\nMistakes like these are easily overlooked.\tDes erreurs de cette sorte passent facilement inaperçues.\nMom is washing the dog because he's dirty.\tMaman lave le chien parce qu'il est sale.\nMom remained in the car while Dad shopped.\tMaman est restée dans la voiture pendant que papa faisait les courses.\nMost Hollywood movies have a happy ending.\tLa plupart des films hollywoodiens ont une fin heureuse.\nMost accidents happen in the neighborhood.\tLa plupart des accidents ont lieu dans le voisinage.\nMost accidents happen in the neighborhood.\tLa plupart des accidents surviennent dans le voisinage.\nMost castles have a moat surrounding them.\tLes châteaux sont, en majeure partie, entourés par des douves.\nMost castles have a moat surrounding them.\tLa plupart des châteaux sont entourés de douves.\nMost of my traveling companions were nice.\tLa plupart de mes compagnons de voyage étaient sympathiques.\nMother bought me a nice dress last Sunday.\tLa mère m'a acheté une belle robe dimanche dernier.\nMother divided the cake into eight pieces.\tMère coupa le gâteau en huit.\nMt. Fuji is noted for its beautiful shape.\tLe mont Fuji est connu pour sa belle forme.\nMy annual income exceeds five million yen.\tMon revenu annuel dépasse les 5 millions de yens.\nMy association with him did not last long.\tNotre association ne dura pas longtemps.\nMy association with them didn't last long.\tJe ne suis pas resté longtemps en relation avec eux.\nMy backyard can hold more than ten people.\tMa cour peut accueillir plus de dix personnes.\nMy camera can shoot high-definition video.\tMa caméra peut prendre des vidéos haute-définition.\nMy driver's license will expire next week.\tMon permis de conduire expire la semaine prochaine.\nMy father gave me a watch for my birthday.\tMon père m'a donné une montre pour mon anniversaire.\nMy father has been out of work for a year.\tMon père est resté sans emploi pendant un an.\nMy father has never been sick in his life.\tMon père n'a jamais été malade de sa vie.\nMy father is going to go abroad next week.\tMon père va partir à l'étranger la semaine prochaine.\nMy father used to read me bedtime stories.\tMon père me lisait des histoires pour dormir.\nMy father used to read me bedtime stories.\tMon père avait l'habitude de me lire des histoires pour dormir.\nMy figures don't seem to tally with yours.\tMes chiffres ne semblent pas correspondre avec les vôtres.\nMy friends congratulated me on my success.\tMes amis me félicitèrent pour mon succès.\nMy grandfather gave me a birthday present.\tMon grand-père m'a offert quelque chose pour mon anniversaire.\nMy grandfather takes a walk every morning.\tMon grand-père va marcher tous les matins.\nMy grandfather was killed in World War II.\tMon grand-père fut tué pendant la 2e guerre mondiale.\nMy legs hurt because I walked a lot today.\tMes jambes me font mal, parce que j'ai beaucoup marché aujourd'hui.\nMy mother taught me how to make miso soup.\tMa mère m'a enseigné à faire la soupe de miso.\nMy plan for the summer is to go to Europe.\tMon plan pour l'été est de me rendre en Europe.\nMy sister came along on the shopping trip.\tMa sœur se joignit aux courses.\nMy sister's hair reaches to her shoulders.\tLes cheveux de ma sœur lui arrivent aux épaules.\nMy son thinks women are stronger than men.\tMon fils pense que les femmes sont plus fortes que les hommes.\nMy uncle has a glass eye and a wooden leg.\tMon oncle a un œil de verre et une jambe de bois.\nMy uncle has been diagnosed with leukemia.\tOn a posé à mon oncle le diagnostic de leucémie.\nMy, you're looking green around the gills.\tMon vieux, t'as pas l'air bien !\nNever have I seen such a beautiful sunset.\tJamais je n'ai vu un si beau coucher de soleil.\nNew blankets were distributed to the poor.\tDe nouvelles couvertures furent distribuées aux pauvres.\nNext year my birthday will fall on Sunday.\tL'année prochaine mon anniversaire tombera un dimanche.\nNine million people voted in the election.\tNeuf millions de personnes ont voté pour cette élection.\nNo matter what happens, just keep smiling.\tPeu importe ce qui arrive, garde le sourire.\nNo matter what happens, just keep smiling.\tPeu importe ce qui arrive, gardez simplement le sourire.\nNo one ate any of the cookies that I made.\tPersonne n'a mangé le moindre des biscuits que j'ai faits.\nNo one knows what'll happen in the future.\tPersonne ne sait ce qu'il se passera dans le futur.\nNot all Americans shared Wilson's opinion.\tTous les américains ne partageaient pas l'avis de Wilson.\nNot knowing what to answer, I kept silent.\tNe sachant pas quoi répondre, je me tus.\nNot knowing what to answer, I kept silent.\tNe sachant que répondre, je restai coi.\nNothing can prevent her from marrying him.\tRien ne pourrait l'empêcher de se marier avec lui.\nNothing happens unless you make it happen.\tRien ne se passe à moins que vous ne fassiez en sorte que ça se passe.\nOf the 23 who were arrested, four escaped.\tDes vingt-trois qui furent arrêtés, quatre s'échappèrent.\nOf the 23 who were arrested, four escaped.\tDes vingt-trois qui ont été arrêtés, quatre se sont échappés.\nOf the 23 who were arrested, four escaped.\tDes vingt-trois qui ont été arrêtées, quatre se sont échappées.\nOf the 23 who were arrested, four escaped.\tDes vingt-trois qui furent arrêtées, quatre s'échappèrent.\nOnly a few TV programs are worth watching.\tSeuls quelques émissions de télévision sont dignes d'intérêt.\nOnly six people were present at the party.\tIl n'y avait que six personnes à la fête.\nOsaka is the second largest city of Japan.\tOsaka est la deuxième plus grande ville du Japon.\nOur car is equipped with air conditioning.\tNotre voiture est équipée de l'air conditionné.\nOur children like dogs, but I prefer cats.\tNos enfants aiment les chiens, mais moi, je préfère les chats.\nOur college uses far too much electricity.\tNotre collège utilise bien trop d'électricité.\nOur escape was nothing short of a miracle.\tNotre évasion n'était rien moins qu'un miracle.\nOur escape was nothing short of a miracle.\tNotre évasion ne fut rien moins qu'un miracle.\nOur family has lived here for generations.\tNotre famille a vécu ici durant des générations.\nOur plans fell through at the last minute.\tNos plans ont échoué à la dernière minute.\nOur problems are nothing compared to hers.\tNos problèmes ne sont rien comparés aux siens.\nOver 100 people were present at the party.\tPlus de 100 personnes étaient présentes à la fête.\nOver-sleeping is no excuse for being late.\tDormir trop longtemps n'est pas une excuse pour être en retard.\nPeople are saying that the crisis is over.\tLes gens disent que la crise est passée.\nPeople should have realistic expectations.\tLes gens devraient avoir des attentes réalistes.\nPhilosophy is often regarded as difficult.\tLa philosophie est considérée comme difficile.\nPlaying the piano is her favorite pastime.\tJouer du piano est son occupation favorite.\nPlease call me up between seven and eight.\tAppelez-moi entre sept et huit heures, s'il vous plaît.\nPlease come to my office in the afternoon.\tS'il vous plait venez à mon bureau dans l'après-midi.\nPlease do whatever you think is necessary.\tJe te prie de faire quoi que ce soit dont tu penses que c'est nécessaire.\nPlease do whatever you think is necessary.\tJe vous prie de faire quoi que ce soit dont vous pensez que c'est nécessaire.\nPlease let me know when you come to Osaka.\tFaites-moi savoir quand vous venez à Osaka ?\nPlease move this stone from here to there.\tDéplacez cette pierre d'ici à là, s'il vous plaît.\nPlease promise you'll never do that again.\tS'il te plaît, promets-moi que tu ne feras plus jamais cela.\nPlease step back and keep behind the line.\tVeuillez reculer et rester derrière la ligne.\nPlease tell me how to pronounce this word.\tVeuillez me dire comment il faut prononcer ce mot.\nPlease tell me the answer to the question.\tS'il te plaît, dis-moi la réponse à la question.\nPlease transfer 450 dollars to my account.\tTransférez 450 dollars sur mon compte, je vous prie.\nPoaching is not allowed in national parks.\tLe braconnage est interdit dans les parcs nationaux.\nPut the following sentences into Japanese.\tTraduisez les phrases suivantes en japonais.\nQuakers believe that all people are equal.\tLes quakers pensent que tous les hommes sont égaux.\nReckless driving will lead to an accident.\tLa conduite inconsidérée provoquera un accident.\nRemember that we are all in the same boat.\tSouviens-toi que nous sommes tous dans le même bateau.\nRoutine exercise is great for your health.\tUn exercice régulier est excellent pour la santé.\nSaying and doing are two different things.\tDire et faire sont deux choses différentes.\nSeveral children are playing on the beach.\tPlusieurs enfants sont en train de jouer sur la plage.\nShe accompanied her friend to the concert.\tElle accompagna son ami au concert.\nShe accompanied her friend to the concert.\tElle accompagna son amie au concert.\nShe accompanied her friend to the concert.\tElle a accompagné son ami au concert.\nShe accompanied her friend to the concert.\tElle a accompagné son amie au concert.\nShe acted as if she knew nothing about it.\tElle agissait comme si elle n'était au courant de rien.\nShe always acts politely toward everybody.\tElle agit toujours poliment envers tout le monde.\nShe applied her handkerchief to his wound.\tElle appliqua son mouchoir sur sa plaie.\nShe bought a handkerchief for ten dollars.\tElle a acheté un mouchoir pour dix dollars.\nShe bought six yards of cloth for a dress.\tElle acheta six yards d'étoffe pour une robe.\nShe bought six yards of cloth for a dress.\tElle acheta six yards de toile pour une robe.\nShe brought me a cup of tea without sugar.\tElle m'apporta une tasse de thé sans sucre.\nShe brought me a cup of tea without sugar.\tElle m'a apporté une tasse de thé sans sucre.\nShe called to tell him that she'd be late.\tElle l'appela pour lui dire qu'elle serait en retard.\nShe couldn't convince him to ride a horse.\tElle ne put le convaincre de monter à cheval.\nShe couldn't convince him to ride a horse.\tElle n'a pas pu le convaincre de monter à cheval.\nShe cursed him for forgetting his promise.\tElle le maudit pour avoir oublié sa promesse.\nShe didn't even try to do the right thing.\tElle n'a même pas essayé de faire ce qu'il fallait.\nShe doesn't know what she's talking about.\tElle ne sait pas de quoi elle parle.\nShe explained the reason why she was late.\tElle expliqua la raison de son retard.\nShe finished her errand and returned home.\tElle a terminé ses courses et elle est rentrée chez elle.\nShe first met him when they were students.\tElle l'a rencontré pour la première fois lorsqu'ils étaient étudiants.\nShe gave me a lovely watch, but I lost it.\tElle m'a donné une montre ravissante mais je l'ai perdue.\nShe got a master's degree three years ago.\tElle a eu un diplôme de master il y a trois ans.\nShe had good reason to file for a divorce.\tElle avait une bonne raison de demander le divorce.\nShe has a tattoo of a lizard on her thigh.\tElle a un lézard tatoué sur la cuisse.\nShe interrupted him while he was speaking.\tElle l'interrompit tandis qu'il parlait.\nShe interrupted him while he was speaking.\tElle l'a interrompu tandis qu'il parlait.\nShe is a particularily interesting person.\tC'est une personne particulièrement intéressante.\nShe is more an acquaintance than a friend.\tElle est plus une relation qu'une amie.\nShe is not only intelligent but beautiful.\tElle est non seulement intelligente, mais aussi jolie.\nShe is not so much a singer as a comedian.\tElle n'est pas aussi bonne chanteuse que comique.\nShe is the one who took care of his wound.\tElle est celle qui a pris soin de sa blessure.\nShe is well known in both India and China.\tElle est très connue à la fois en Inde et en Chine.\nShe knows a lot about the latest fashions.\tElle connaît bien les dernières modes.\nShe looks pretty no matter what she wears.\tQuoi qu'elle porte elle est très jolie.\nShe looks pretty no matter what she wears.\tElle est belle quoiqu'elle porte.\nShe lost her memory in a traffic accident.\tElle a perdu la mémoire suite à un accident de la circulation.\nShe may have left her car key in her room.\tElle a peut-être laissé les clés de sa voiture dans sa chambre.\nShe must have finished the work yesterday.\tElle a dû finir ce travail hier.\nShe must have known that she had a cancer.\tElle devait savoir qu'elle avait un cancer.\nShe must have visited England last summer.\tElle a dû visiter l'Angleterre l'été dernier.\nShe never dreamed she'd meet him overseas.\tElle n'a jamais rêvé qu'elle le rencontrerait à l'étranger.\nShe never managed to pay the bill on time.\tElle n'est jamais arrivée à payer la facture au terme.\nShe promised to marry him, but she didn't.\tElle avait promis de se marier avec lui mais elle ne l'a pas fait.\nShe put some of the ointment on her hands.\tElle mit de la pommade sur ses mains.\nShe read an amusing story to the children.\tElle a lu une histoire amusante aux enfants.\nShe sat still for fear of waking the baby.\tElle se tenait immobile de peur de réveiller le bébé.\nShe showed me a letter written in English.\tElle m'a montré une lettre écrite en anglais.\nShe smiled and accepted my little present.\tElle sourit et accepta mon petit cadeau.\nShe sometimes has her mother cut her hair.\tElle se fait parfois couper les cheveux par sa mère.\nShe spent a lot of time writing her essay.\tElle passa beaucoup de temps à écrire sa dissertation.\nShe spent a lot of time writing her essay.\tElle a passé beaucoup de temps à écrire sa dissertation.\nShe stayed in that area for a short while.\tElle ne resta dans cette région que pour peu de temps.\nShe suggested that I write to him at once.\tElle suggéra que je lui écrive immédiatement.\nShe suggested that I write to him at once.\tElle a suggéré que je lui écrive immédiatement.\nShe thought she could get him to like her.\tElle pensait qu'elle pouvait faire en sorte qu'il l'apprécie.\nShe told the story with tears in her eyes.\tElle raconta l'histoire avec des larmes dans les yeux.\nShe took her ring off and threw it at him.\tElle a retiré son anneau et le lui a jeté.\nShe took her ring off and threw it at him.\tElle retira son anneau et le lui jeta.\nShe used to go mountain climbing with him.\tElle allait faire de l'escalade avec lui.\nShe wanted to get away from everyday life.\tElle voulait échapper au train-train quotidien.\nShe was able to answer whatever was asked.\tElle était capable de répondre, qu'importe ce qui était demandé.\nShe was advised by him to give up smoking.\tIl lui a conseillé d'arrêter de fumer.\nShe was asked not to speak at the meeting.\tOn lui a demandé de ne pas parler à la réunion.\nShe was asked not to speak at the meeting.\tOn lui demanda de ne pas parler à la réunion.\nShe was late because of the heavy traffic.\tElle était en retard à cause d'une circulation chargée.\nShe was loved by everybody in the village.\tElle était aimée de tout le monde dans le village.\nShe was so angry that she could not speak.\tElle était tellement énervée qu'elle n'arrivait pas à parler.\nShe was so angry that she could not speak.\tElle était si en colère de ne pas pouvoir parler.\nShe was very beautiful when she was young.\tElle était très belle quand elle était jeune.\nShe went for a walk with him this morning.\tElle est allée faire une promenade avec lui ce matin.\nShe went into the room and lay on the bed.\tElle est allée dans la chambre et s'est étendue sur le lit.\nShe will be a college student next spring.\tElle sera étudiante dans le supérieur le printemps prochain.\nShe will be a famous artist in the future.\tElle sera, dans l'avenir, une artiste renommée.\nShe will be back in less than ten minutes.\tElle sera de retour dans moins de dix minutes.\nShe won first prize in the speech contest.\tElle a gagné le premier prix au concours de diction.\nShe wondered where she had lost her purse.\tElle se demanda où elle avait perdu son sac à main.\nShe'll give her photo to whoever wants it.\tElle donnera sa photo à qui la veut.\nShould I make a cream pie or a pound cake?\tDois-je plutôt faire une tarte à la crème ou bien un quatre-quarts ?\nSince I had a cold, I didn't go visit him.\tComme j'avais un rhume, je ne suis pas allé lui rendre visite.\nSince it was Sunday, the store was closed.\tComme c'était dimanche, le magasin était fermé.\nSome Americans joined the Communist Party.\tQuelques Étasuniens rejoignirent le parti communiste.\nSome fish are able to change their gender.\tCertains poissons sont capables de changer de sexe.\nSome of my friends can speak English well.\tCertains de mes amis parlent bien anglais.\nSome of my friends can speak English well.\tJ’ai quelques amis qui parlent bien anglais.\nSome of the apples in the box were rotten.\tQuelques pommes dans la boîte étaient pourries.\nSome people like cats, others prefer dogs.\tCertains aiment les chats, d'autres préfèrent les chiens.\nSome people like sports, and others don't.\tCertaines personnes aiment le sport, d'autres non.\nSomeday I will buy a cotton candy machine.\tUn jour j'achèterai une machine à barbe-à-papa.\nSomething embarrassing happened last week.\tQuelque chose d'embarrassant s'est produit la semaine passée.\nSomething embarrassing happened last week.\tQuelque chose d'embarrassant s'est produit la semaine dernière.\nSomething seems to be wrong with my clock.\tQuelque chose semble ne pas aller avec ma montre.\nSorry to trouble you, but can you help me?\tDésolé de vous déranger, mais pouvez-vous m'aider ?\nSpace travel was thought to be impossible.\tOn tenait les voyages spatiaux pour impossible.\nSpeaking English is very difficult for me.\tParler anglais est très difficile pour moi.\nStrictly speaking, the earth is not round.\tLa Terre n’est pas ronde stricto sensu.\nSwitch on the light. I can't see anything.\tAllume la lumière. Je n'y vois rien.\nTaiwanese food is milder than Indian food.\tLa cuisine taïwanaise est moins épicée que la cuisine indienne.\nTelephone him if the message is important.\tTéléphone-lui si le message est important.\nTell Tom that I don't want to talk to him.\tDis à Tom que je ne veux pas lui parler.\nTen years is a really long period of time.\tDix ans, c'est long.\nThank you for helping me stick to my diet.\tMerci de m'aider à m'en tenir à mon régime.\nThank you in advance for your cooperation.\tMerci beaucoup d'avance pour votre coopération.\nThank you in advance for your cooperation.\tMerci beaucoup d'avance pour ta coopération.\nThank you very much for all you have done.\tMerci beaucoup pour tout ce que vous avez fait.\nThank you very much for all you have done.\tMerci pour tout ce que tu as fait.\nThanks for seeing me on such short notice.\tMerci de me voir au pied levé.\nThat accident was due to his carelessness.\tCet accident a été dû à sa négligence.\nThat company's stock price fell yesterday.\tLe prix de l'action de cette société a chuté hier.\nThat cut on your arm looks pretty serious.\tTon entaille au bras a l'air assez grave.\nThat is new a shop which opened last week.\tC'est un nouveau magasin qui a ouvert la semaine dernière.\nThat is the girl whose father is a doctor.\tC'est la fille dont le père est médecin.\nThat problem naturally invited discussion.\tCe problème a tout naturellement attisé les discussions.\nThat sounds a lot easier to do than it is.\tÇa a l'air bien plus facile à faire que ça n'est.\nThat store sells newspapers and magazines.\tLe magasin vend des journaux et des magazines.\nThat's enough money to cover the expenses.\tIl y a bien assez d'argent pour les dépenses.\nThat's something that happens quite often.\tC'est quelque chose qui se produit assez souvent.\nThat's the ugliest snowman I've ever seen.\tC'est le bonhomme de neige le plus moche que j'aie jamais vu.\nThat's what got me into this line of work.\tC'est ce qui m'a introduit dans ce métier.\nThe American economy suffered a recession.\tL'économie étasunienne souffrait d'une récession.\nThe Catholic Church is opposed to divorce.\tL'Église catholique s'oppose au divorce.\nThe Japanese eat rice at least once a day.\tLes Japonais mangent du riz au moins une fois par jour.\nThe Japanese economy grew by 4% last year.\tL'économie japonaise a crû de 4 % l'an dernier.\nThe Rhine runs between France and Germany.\tLe Rhin s'étend entre la France et l'Allemagne.\nThe Rhine runs between France and Germany.\tLe Rhin coule entre la France et l’Allemagne.\nThe accident happened before my very eyes.\tL'accident s'est produit sous mes propres yeux.\nThe accident is still vivid in his memory.\tL'accident est encore vivace dans sa mémoire.\nThe advantages outweigh the disadvantages.\tLes avantages l'emportent sur les désavantages.\nThe airport was closed because of the fog.\tL'aéroport était fermé à cause du brouillard.\nThe apple does not fall far from the tree.\tLe fruit ne tombe jamais loin de l'arbre.\nThe apple does not fall far from the tree.\tLa pomme ne tombe pas loin du tronc.\nThe apple trees blossomed early this year.\tLes pommiers ont fleuri tôt cette année.\nThe audience consisted mainly of students.\tL'assistance se composait principalement d'étudiants.\nThe audience consisted mainly of students.\tL'auditoire se composait essentiellement d'étudiants.\nThe audience consisted mainly of students.\tLe public était essentiellement composé d'étudiants.\nThe beaches are less crowded in September.\tLes plages sont moins encombrées en septembre.\nThe bigger they are, the harder they fall.\tPlus dure sera la chute.\nThe body converts extra calories into fat.\tLe corps transforme les calories en trop en graisse.\nThe body converts extra calories into fat.\tLe corps transforme les calories superflues en graisse.\nThe boys are still playing in the sandbox.\tLes garçons sont encore en train de jouer dans le bac à sable.\nThe camera you bought is better than mine.\tL'appareil photo que tu as acheté est meilleur que le mien.\nThe camera you bought is better than mine.\tL'appareil photo que vous avez acheté est meilleur que le mien.\nThe car's tires were caked with dried mud.\tLes pneus de la voiture étaient couverts de boue séchée.\nThe cat was not buried alive. He survived.\tLe chat n'a pas été enterré vivant. Il a survécu.\nThe children are going to the beach today.\tLes enfants vont à la plage aujourd'hui.\nThe children received shoes for Christmas.\tLes enfants ont reçu des chaussures pour Noël.\nThe city supplied the needy with blankets.\tLa ville pourvut les nécessiteux de couvertures.\nThe clock stopped. It needs a new battery.\tL'horloge s'est arrêtée. Il y faut une nouvelle pile.\nThe company announced hundreds of layoffs.\tL'entreprise annonça des centaines de licenciements.\nThe company announced hundreds of layoffs.\tL'entreprise a annoncé des centaines de licenciements.\nThe company announced hundreds of layoffs.\tL'entreprise annonça des centaines de mises à pied.\nThe company announced hundreds of layoffs.\tL'entreprise a annoncé des centaines de mises à pied.\nThe conference was not a complete success.\tLa conférence n'a pas totalement été un succès.\nThe consequence was that she lost her job.\tLa conséquence fut qu'elle perdit son poste.\nThe conversation moved on to other topics.\tLa conversation se déplaça vers d'autres sujets.\nThe cost of living in Japan is going down.\tLe coût de la vie au Japon est en train de baisser.\nThe cost of living increased dramatically.\tLe coût de la vie a augmenté de manière drastique.\nThe doctor advised me not to eat too much.\tLe médecin m'a conseillé de ne pas trop manger.\nThe door was locked, so I couldn't get in.\tLa porte était fermée, donc je n’ai pas pu entrer.\nThe election results were extremely close.\tLes résultats du vote étaient très serrés.\nThe end does not always justify the means.\tLa fin ne justifie pas toujours les moyens.\nThe events unfolded just as she predicted.\tLes événements se déroulèrent exactement tel qu'elle le prédit.\nThe experience soured his outlook on life.\tL'expérience a aigri son attitude face à la vie.\nThe explorers ventured inside the caverns.\tLes exploratrices s'aventurèrent à l'intérieur des cavernes.\nThe fence will be painted by Tom tomorrow.\tLa barrière sera peinte par Tom demain.\nThe firemen rushed into the burning house.\tLes pompiers se précipitèrent à l'intérieur de la maison en feu.\nThe frogs' croaking helped me fall asleep.\tLe coassement des grenouilles m'aida à m'endormir.\nThe frogs' croaking helped me fall asleep.\tLe coassement des grenouilles m'a aidé à m'endormir.\nThe game starts at two tomorrow afternoon.\tLe match commence à deux heures demain après-midi.\nThe leaves of the trees began to turn red.\tLes feuilles des arbres commencèrent à devenir rouges.\nThe library will issue you a library card.\tLa bibliothèque te procurera une carte de lecteur.\nThe library will issue you a library card.\tLa bibliothèque vous fournira une carte de lecteur.\nThe magician had the children's attention.\tLe magicien avait capté l'attention des enfants.\nThe mailman comes around every three days.\tLe facteur passe par ici tous les trois jours.\nThe more she talked, the more bored I got.\tPlus elle parlait, plus je m'ennuyais.\nThe most amazing thing happened yesterday.\tLa chose la plus incroyable s'est produite hier.\nThe most amazing thing happened yesterday.\tLa chose la plus merveilleuse est arrivée hier.\nThe movie was so sad that everybody cried.\tLe film était si triste que tout le monde a pleuré.\nThe music carried me back to my childhood.\tLa musique m'a ramené à mon enfance.\nThe music carried me back to my childhood.\tLa musique m'a ramenée à mon enfance.\nThe mystery of her death was never solved.\tLe mystère de sa mort ne fut jamais résolu.\nThe new Harry Potter movie is pretty lame.\tLe nouveau film sur Harry Potter est assez mauvais.\nThe new government has financial troubles.\tLe nouveau gouvernement a des problèmes financiers.\nThe new supermarket was opened last month.\tLe nouveau supermarché a été ouvert le mois dernier.\nThe news soon spread all over the village.\tLa nouvelle se répandit rapidement dans tout le village.\nThe number of boys in our class is thirty.\tLe nombre de garçons dans notre classe est de trente.\nThe only language Tom can speak is French.\tLa seule langue que Tom peut parler est le français.\nThe opening ceremony took place yesterday.\tLa cérémonie d'ouverture a eu lieu hier.\nThe parents succeeded in calming him down.\tLes parents réussirent à le calmer.\nThe patient fainted at the sight of blood.\tLe patient s'évanouit à la vue du sang.\nThe patient's condition changes every day.\tL'état du patient évolue de jour en jour.\nThe pickpocket disappeared into the crowd.\tLe voleur à la tire disparut dans la foule.\nThe pickpocket disappeared into the crowd.\tLe tire-laine disparut dans la foule.\nThe picnic was called off because of rain.\tLe pique-nique a été annulé à cause de la pluie.\nThe picture of the accident makes me sick.\tL'image de l'accident me rendit malade.\nThe picture of the tower was out of focus.\tLa photo de la tour était floutée.\nThe place is worth visiting at least once.\tLe lieu vaut la peine d'être visité au moins une fois.\nThe place where he lives is far from town.\tL'endroit où il vit est éloigné de la ville.\nThe plane took off at exactly ten o'clock.\tL'avion a décollé à 10h précises.\nThe plane was late because of bad weather.\tL'avion fut en retard en raison du mauvais temps.\nThe plants suffered damage from the frost.\tLes plantes ont été endommagées par le gel.\nThe poem's rhyme scheme is highly complex.\tLa métrique du poème est hautement complexe.\nThe point of play is that it has no point.\tLe but du jeu est qu'il n'a pas de but.\nThe police arrested the suspect yesterday.\tHier, la police a arrêté le suspect.\nThe proof of the pudding is in the eating.\tLa preuve que le gâteau est bon est qu'il est consommé.\nThe provisions ran out after a short time.\tLes provisions s'épuisèrent après peu de temps.\nThe provisions ran out after a short time.\tLes provisions se sont épuisées après peu de temps.\nThe river flows between the two countries.\tLa rivière coule entre les deux pays.\nThe rivers were flooded by the heavy rain.\tLes rivières débordèrent à cause des pluies torrentielles.\nThe skin is the largest organ of the body.\tLa peau est l'organe du corps le plus grand.\nThe smoke alarm has never been maintained.\tL'alarme anti-fumée n'a jamais eu de maintenance.\nThe snow prevented the train from running.\tLa neige empêcha le train de rouler.\nThe snow prevented the train from running.\tLa neige empêcha le train de fonctionner.\nThe spinning top skidded across the floor.\tLa toupie glissait sur le sol.\nThe stable is right behind the farm house.\tL'écurie est juste derrière la ferme.\nThe surviving refugees longed for freedom.\tLes réfugiés rescapés aspiraient à la liberté.\nThe teacher answers every question we ask.\tL'instituteur répond à toutes les questions que nous posons.\nThe teacher asked me a difficult question.\tLe professeur m'a posé une question difficile.\nThe teacher was disappointed at my answer.\tL'instituteur a été étonné par ma réponse.\nThe teacher was disappointed at my answer.\tL'instituteur fut étonné par ma réponse.\nThe telephone was just ringing, wasn't it?\tLe téléphone était juste en train de sonner, non ?\nThe top of Mt. Fuji was covered with snow.\tLe sommet du Mt Fuji était couvert de neige.\nThe town is always crawling with tourists.\tLa ville grouille toujours de touristes.\nThe town is two miles away from the coast.\tCette ville est à deux milles de la côte.\nThe traffic crept along at a snail's pace.\tLa circulation se traînait à un rythme d'escargot.\nThe truth is rarely pure and never simple.\tLa vérité est rarement pure, et jamais simple.\nThe two cars collided at the intersection.\tLes deux voitures sont entrées en collision à l'intersection.\nThe weather changes very often in England.\tLe temps change souvent en Angleterre.\nThe weather today is worse than yesterday.\tLe temps est, aujourd'hui, pire qu'il n'était hier.\nThe weather today is worse than yesterday.\tLe temps est, aujourd'hui, pire qu'hier.\nThe wind ripped the roof off our building.\tLe vent a arraché le toit de notre immeuble.\nThe witness perjured herself on the stand.\tLe témoin s'est parjuré à la barre.\nThe young lady carried a child in her arm.\tLa jeune femme portait un enfant dans les bras.\nThe young woman's face became even redder.\tLe visage de la jeune femme devint encore plus rouge.\nTheir house is just opposite the bus stop.\tLeur maison se trouve juste en face de l'arrêt de bus.\nTheir way of thinking is behind the times.\tLeur façon de penser est surannée.\nThere are cases where honesty doesn't pay.\tIl y a des cas où l'honnêteté ne paie pas.\nThere are cases where honesty doesn't pay.\tIl y a des cas dans lesquels l'honnêteté ne paie pas.\nThere are frequently earthquakes in Japan.\tIl y a fréquemment des tremblements de terre au Japon.\nThere are happy people and unhappy people.\tIl y a des gens heureux et des gens malheureux.\nThere are lots of things we've got to fix.\tNous avons beaucoup de choses à régler.\nThere are not many books on these shelves.\tIl n'y a pas beaucoup de livres sur ces étagères.\nThere are sentences which everybody knows.\tIl y a des phrases que tout le monde connaît.\nThere is a Catholic church very near here.\tIl y a une église catholique très près d'ici.\nThere is a big stack of mail on the table.\tIl y a une grosse pile de courrier sur la table.\nThere is a bookstore across from my house.\tIl y a une librairie de l'autre côté de ma rue.\nThere is a little milk left in the bottle.\tIl reste un peu de lait dans la bouteille.\nThere is a marked difference between them.\tEntre les deux, il y a une énorme différence.\nThere is a marked difference between them.\tIl y a une différence marquée entre ces deux-là.\nThere is a park in the middle of the city.\tIl y a un parc au milieu de la ville.\nThere is a pond in the middle of the park.\tIl y a un étang au milieu du parc.\nThere is an urgent need for social change.\tOn a un besoin urgent de changement social.\nThere is something about him I don't like.\tIl y a quelque chose en lui qui me déplait.\nThere is something about him I don't like.\tIl y a quelque chose que je n'aime pas à propos de lui.\nThere was a steady increase in population.\tIl y eut une croissance soutenue de la population.\nThere was a steady increase in population.\tIl y a eu une croissance soutenue de la population.\nThere were a lot of people at the concert.\tIl y avait beaucoup de monde au concert.\nThere were hundreds of cars on the street.\tIl y avait des centaines de voitures dans la rue.\nThere were only six people at the meeting.\tIl y avait seulement six personnes à la réunion.\nThere were only six people at the meeting.\tIl n'y avait que six personnes à la réunion.\nThere were three coffee mugs on the table.\tIl y avait trois mugs à café sur la table.\nThere's a party going on in the next room.\tUne fête se déroule dans la pièce d'à côté.\nThere's hardly any coffee left in the pot.\tIl reste à peine un peu de café dans la cafetière.\nThere's no need for that kind of behavior.\tOn n'a pas besoin de ce genre de comportement.\nThese butterflies are rare in our country.\tCes papillons sont rares dans notre pays.\nThese products are selling like hot cakes.\tCes produits se vendent comme des petits pains.\nThey are chiseling a statue out of marble.\tIls sculptent une statue de marbre.\nThey are fascinated by blood and violence.\tIls sont fascinés par le sang et la violence.\nThey are matters which we need to discuss.\tCe sont des affaires dont nous devons parler.\nThey complained of the room being too hot.\tIls se plaignaient que la pièce soit trop chaude.\nThey complained of the room being too hot.\tElles se plaignaient que la pièce soit trop chaude.\nThey finished building the bridge on time.\tIls ont achevé la construction du pont dans les délais.\nThey gathered at a farm in New York State.\tIls se sont rassemblés dans une ferme dans l'État de New-York.\nThey gathered at a farm in New York State.\tIls se sont réunis dans une ferme dans l'État de New-York.\nThey gave up their plan to climb Mt. Fuji.\tIls ont abandonné leur projet d'escalader le mont Fuji.\nThey have been good neighbors to this day.\tJusqu'à aujourd'hui, ils ont été de bons voisins.\nThey hurried to the scene of the accident.\tIls se précipitèrent sur le lieu de l'accident.\nThey hurried to the scene of the accident.\tElles se précipitèrent sur le lieu de l'accident.\nThey hurried to the scene of the accident.\tIls se sont précipités sur le lieu de l'accident.\nThey hurried to the scene of the accident.\tElles se sont précipitées sur le lieu de l'accident.\nThey hurried to the scene of the accident.\tCe sont eux qui se sont précipités sur le lieu de l'accident.\nThey hurried to the scene of the accident.\tCe sont elles qui se sont précipitées sur le lieu de l'accident.\nThey live in a rundown tenement on 5th St.\tIls résident dans un immeuble délabré sur la cinquième rue.\nThey live on the 12th floor of this condo.\tIls vivent au douzième étage de ces appartements.\nThey mistook my politeness for friendship.\tIls prirent ma politesse pour de l'amitié.\nThey mistook my politeness for friendship.\tElles prirent ma politesse pour de l'amitié.\nThey probably saw our ship come into port.\tIls ont probablement vu notre bateau arriver au port.\nThey probably saw our ship come into port.\tElles ont probablement vu notre bateau arriver au port.\nThey seem to have had a good time in Rome.\tIls ont l'air de passer un bon moment à Rome.\nThey seem to have had a good time in Rome.\tElles ont l'air de passer un bon moment à Rome.\nThey were playing footsie under the table.\tIls se faisaient du pied sous la table.\nThey were playing footsie under the table.\tElles se faisaient du pied sous la table.\nThey weren't able to discover any secrets.\tIls furent incapables de découvrir le moindre secret.\nThey will have to cut down their expenses.\tIls devront réduire leurs dépenses.\nThey'll get out of class in forty minutes.\tIls vont sortir de classe dans quarante minutes.\nThey're taking Mary to the emergency room.\tIls emmènent Marie à la salle des urgences.\nThink it over and tell me what you decide.\tRéfléchis-y et dis-moi ce que tu décides.\nThink it over and tell me what you decide.\tRéfléchissez-y et dites-moi ce que vous décidez.\nThis artist's lifestyle is unconventional.\tLe style de vie de cet artiste est non-conventionnel.\nThis book is easy enough for them to read.\tCe livre est suffisamment facile pour qu'ils puissent le lire.\nThis cake tastes like it has cheese in it.\tCe gâteau a le goût de fromage.\nThis city is 1,600 meters above sea level.\tCette ville est à 1600 mètres d'altitude.\nThis city is 1,600 meters above sea level.\tCette ville est à 1600 mètres au-dessus du niveau de la mer.\nThis gentleman asks interesting questions.\tCe monsieur pose des questions intéressantes.\nThis heater won't heat up that large room.\tCe radiateur ne réchauffera pas cette grande pièce.\nThis house is very comfortable to live in.\tCette maison est très agréable à vivre.\nThis is a proverb that I don't understand.\tC'est un proverbe que je ne comprends pas.\nThis is a story about love and friendship.\tIl s'agit d'une histoire d'amour et d'amitié.\nThis is the best book that I've ever read.\tC'est le meilleur livre que j'aie jamais lu.\nThis is the book I want to give my mother.\tC'est le livre que je veux donner à ma mère.\nThis is the craziest thing I've ever seen.\tC'est la chose la plus dingue que j'ai jamais vue.\nThis is the least expensive method of all.\tC'est la méthode la moins chère de toutes.\nThis is the magazine I spoke to you about.\tC'est le magazine dont je vous ai parlé.\nThis is the watch that I bought yesterday.\tC'est la montre dont j'ai fait hier l'acquisition.\nThis medicine has no harmful side effects.\tCe remède n'a pas d'effets secondaires.\nThis movie is frightening to the children.\tCe film fait peur aux enfants.\nThis problem is difficult for me to solve.\tJ'ai du mal à résoudre ce problème.\nThis product has significant shortcomings.\tCe produit a des défauts notables.\nThis product has significant shortcomings.\tCe produit comporte des défauts notables.\nThis showy dress isn't appropriate for me.\tCette robe tapageuse n'est pas appropriée pour moi.\nThis tie goes well with the suit, I guess.\tCette cravate va bien avec le costume, je trouve.\nThose shoes go well with this white skirt.\tCes chaussures vont bien avec cette jupe blanche.\nThough she was tired, she kept on working.\tBien qu'elle fût fatiguée, elle continua à travailler.\nThunderstorms are both scary and exciting.\tLes orages sont à la fois effrayants et excitants.\nTo tell the truth, I don't agree with you.\tEn fait, je ne suis pas d'accord avec toi.\nToday, I'm busy getting ready for my trip.\tAujourd'hui, je suis occupé à me préparer pour mon voyage.\nToday, too, the temperature is below zero.\tLa température est encore aujourd'hui en dessous de zéro.\nTom always wears sunglasses, even indoors.\tTom porte toujours des lunettes de soleil, même à l'intérieur.\nTom and Mary are getting married tomorrow.\tTom et Mary se marient demain.\nTom and Mary eat lunch together every day.\tTom et Mary déjeunent ensemble tous les jours.\nTom and Mary got married on Christmas Eve.\tTom et Marie se sont mariés la veille de Noël.\nTom and Mary have very different opinions.\tThomas et Marie ont des opinions très différentes.\nTom and Mary want to know what's going on.\tTom et Marie veulent savoir ce qu'il se passe.\nTom asked Mary to look after the children.\tTom a demandé à Marie de s'occuper des enfants.\nTom asked Mary to look after the children.\tTom a demandé à Marie de surveiller les enfants.\nTom asked Mary's advice about the problem.\tTom a demandé conseil à Mary à propos du problème.\nTom ate some spoiled food and became sick.\tTom a mangé de la nourriture avariée et est tombé malade.\nTom blamed Mary for the project's failure.\tTom a blâmé Mary pour l'échec du projet.\nTom bought a box of candy to give to Mary.\tTom a acheté une boîte de bonbons pour donner à Marie.\nTom came to my office to ask me for money.\tTom est venu dans mon bureau pour me demander de l'argent.\nTom certainly doesn't need any more money.\tTom n'a certainement pas besoin de plus d'argent.\nTom certainly doesn't speak for all of us.\tTom ne parles certainement pas pour nous tous.\nTom didn't choose the same thing Mary did.\tTom n'a pas choisi la même chose que Marie.\nTom didn't have time to finish his report.\tTom n'a pas eu le temps pour finir son rapport.\nTom didn't know what Mary's last name was.\tTom ne savait pas quel était le nom de famille de Mary.\nTom didn't take many pictures on his trip.\tTom n'a pas pris beaucoup de photos durant son voyage.\nTom doesn't appear to be paying attention.\tTom ne semble pas être attentif.\nTom doesn't know anything about computers.\tTom ne connaît rien aux ordinateurs.\nTom doesn't know exactly where Mary lives.\tTom ne sait pas exactement où vit Marie.\nTom doesn't know if Mary is dead or alive.\tTom ne sait pas si Marie est morte ou vivante.\nTom doesn't know if Mary is dead or alive.\tTom ne sait pas si Mary est morte ou vivante.\nTom doesn't know what he's doing, does he?\tTom ne sait pas ce qu'il fait, n'est-ce pas ?\nTom doesn't know where Mary wants to live.\tTom ne sait pas où Marie veut vivre.\nTom doesn't often eat lunch with his wife.\tTom ne déjeune pas souvent avec sa femme.\nTom doesn't remember where he put his key.\tTom ne se souvient plus où il a mis sa clé.\nTom doesn't seem to understand any French.\tTom ne semble pas comprendre le français du tout.\nTom eats nothing but his mother's cooking.\tTom ne mange rien d'autre que les plats de sa mère.\nTom feels that his team will win the game.\tTom sent que son équipe gagnera le match.\nTom fell over and landed flat on his face.\tTom est tombé la tête la première.\nTom gave his father a tie on Father's Day.\tTom a donné une cravate à son père le jour de la fête des pères.\nTom got more Christmas presents than Mary.\tTom a reçu plus de cadeaux de Noël que Marie.\nTom has been a prison guard for ten years.\tTom fut gardien de prison pendant dix ans.\nTom has been on death row for three years.\tThomas a été dans le couloir de la mort pendant trois ans.\nTom has been waiting for over three hours.\tTom attend depuis plus de trois heures.\nTom has great wealth, but he is not happy.\tTom est riche, mais n'est pas tellement heureux.\nTom has three sons. One's almost your age.\tTom a trois fils. L'un d'eux à presque ton âge.\nTom has to speak French every day at work.\tTous les jours, Tom doit parler français au travail.\nTom hates getting up early in the morning.\tTom déteste se lever tôt le matin.\nTom is checking his messages on his phone.\tTom vérifie ses messages sur son téléphone.\nTom is just trying to get under your skin.\tTom veut te faire péter les plombs.\nTom is the most influential man in Boston.\tTom est l'homme le plus influent de Boston.\nTom isn't sure what time the party starts.\tTom n'est pas sûr de l'heure à laquelle commence la fête.\nTom learned to drive when he was thirteen.\tTom a appris à conduire quand il avait treize ans.\nTom lived in Boston until a few years ago.\tTom a vécu à Boston jusqu'il y a quelques années.\nTom looked at Mary and then winked at her.\tTom regarda Mary et lui fit un clin d'œil.\nTom never told me why he didn't like Mary.\tTom ne m'a jamais dit pourquoi il n'aimait pas Mary.\nTom planted three apple trees in his yard.\tTom a planté trois pommiers dans sa cour.\nTom plays computer games for hours on end.\tTom joue aux jeux vidéo pendant des heures à la suite.\nTom put the screws in a small plastic bag.\tTom a mis les vis dans un petit sac en plastique.\nTom said he doesn't know anyone in Boston.\tTom a dit qu'il ne connait personne à Boston.\nTom saw a large rat run across the street.\tTom a vu un gros rat traverser la rue.\nTom says he dreams about Mary every night.\tTom dit qu'il rêve de Marie toutes les nuits.\nTom should be here within fifteen minutes.\tTom devrait être ici dans quinze minutes.\nTom stopped me from leaving the classroom.\tTom m'a empéché de quitter la classe.\nTom told Mary where he hid the gold coins.\tTom a dit à Mary où il avait caché les pièces d'or.\nTom told me that he wasn't afraid of Mary.\tTom m'a dit qu'il n'avait pas peur de Marie.\nTom told me that the book was interesting.\tTom m'a dit que ce livre était intéressant.\nTom took more than one picture, didn't he?\tTom a pris plus d'une photo, n'est-ce pas ?\nTom took the hook out of the fish's mouth.\tTom enleva l'hameçon de la gueule du poisson.\nTom tried to drown himself in his bathtub.\tTom a tenté de se noyer dans sa baignoire.\nTom wanted Mary to help him in the garden.\tTom voulait que Marie l'aide dans le jardin.\nTom wanted Mary to say that she loved him.\tTom voulait que Mary dise qu'elle l'aime.\nTom wanted Mary to sing his favorite song.\tTom voulait que Mary chante sa chanson préférée.\nTom wants to keep things the way they are.\tTom souhaite garder les choses telles qu'elles sont.\nTom was heartbroken when Mary passed away.\tTom a eu le cœur brisé quand Mary est morte.\nTom was mauled by a dog when he was a kid.\tTom a été attaqué par un chien quand il était enfant.\nTom was mauled by a dog when he was a kid.\tTom a été mutilé par un chien quand il était enfant.\nTom went to his study and locked the door.\tTom est allé à son cabinet de travail et a verrouillé la porte.\nTom wishes he could swap places with Mary.\tTom aimerait pouvoir échanger sa place avec Mary.\nTom works at a computer company in Boston.\tTom travaille pour une boite d'informatique à Boston.\nTom's heart suddenly began to beat faster.\tLe cœur de Tom se mit soudain à battre plus vite.\nTom's heart suddenly began to beat faster.\tLe cœur de Tom s'est soudainement mis à battre plus vite.\nTom's not well enough to go to work today.\tTom ne va pas assez bien pour aller travailler aujourd'hui.\nTom, are you a dog person or a cat person?\tDis-moi, Tom, es-tu plutôt chiens ou chats ?\nToudaiji is the bigger of the two temples.\tToudaiji est le plus grand des deux temples.\nToyota's new car sports a hefty price tag.\tLa nouvelle voiture de sport de Toyota affiche une étiquette de prix salée.\nTry to make the most of every opportunity.\tEssaie de tirer profit de chaque occasion.\nUp until now, they've been good neighbors.\tJusqu'à présent, ils étaient de bons voisins.\nWalt Whitman is my favorite American poet.\tWalt Whitman est mon poète américain favori.\nWas there something you wanted to tell me?\tTu voulais me dire quelque chose?\nWe agreed to start early the next morning.\tNous nous mîmes d'accord pour commencer tôt le lendemain.\nWe always play tennis on Saturday morning.\tNous jouons toujours au tennis le samedi matin.\nWe are all looking forward to your coming.\tNous nous réjouissons de votre venue.\nWe are doing business with many countries.\tNous faisons des affaires avec de nombreux pays.\nWe are doing business with many countries.\tNous sommes en affaires avec de nombreux pays.\nWe are going to travel abroad this summer.\tNous allons voyager à l'étranger cet été.\nWe are looking forward to seeing you soon.\tNous sommes impatients de vous voir.\nWe became Americanized after World War II.\tNous avons obtenu la nationalité Américaine après la Seconde Guerre mondiale.\nWe believe the time of death was 2:20 p.m.\tNous pensons que la mort remonte à quatorze heures vingt.\nWe competed with each other for the prize.\tNous nous disputâmes le prix.\nWe considered the problem from all angles.\tNous avons étudié le problème sous tous les angles.\nWe decided to leave him alone for a while.\tNous décidâmes de le laisser tranquille pendant un certain temps.\nWe didn't know which car we should get in.\tOn ne savait pas trop dans quelle voiture on devait rentrer.\nWe don't really know anything about death.\tNous ne savons vraiment rien de la mort.\nWe don't want any freeloaders around here.\tNous ne voulons pas de pique-assiettes par ici.\nWe flew nonstop from Osaka to Los Angeles.\tNous avons volé non-stop d'Osaka à Los Angeles.\nWe had no choice except to put up with it.\tNous n'avions d'autre choix que de faire avec.\nWe hardly ever talk to each other anymore.\tOn ne s'adresse quasiment plus la parole.\nWe have a good team and everyone knows it.\tNous avons une bonne équipe et tout le monde le sait.\nWe have a warrant to search your property.\tNous disposons d'un mandat pour fouiller votre propriété.\nWe have exams right after summer vacation.\tNous avons des examens juste après les congés estivaux.\nWe have few opportunities to speak German.\tNous n'avons pas beaucoup d'occasion de parler allemand.\nWe have other important issues to discuss.\tIl y a d'autres problèmes importants dont nous devons discuter.\nWe have plenty of work to do this morning.\tNous avons beaucoup à faire ce matin.\nWe have plenty of work to do this morning.\tOn a du pain sur la planche ce matin.\nWe have to make sure we get there on time.\tNous devons nous assurer d'arriver à temps.\nWe hope this will be to your satisfaction.\tNous espérons que ce sera à votre goût.\nWe intended to stay there about two weeks.\tNous avions l’intention de rester là près de deux semaines.\nWe marveled at the little boy's eloquence.\tNous fûmes émerveillés par l'éloquence du petit garçon.\nWe must choose the right moment carefully.\tNous devons choisir avec soin le moment opportun.\nWe must get to the bottom of this mystery.\tNous devons approfondir ce mystère.\nWe must talk her out of this foolish plan.\tNous devons la persuader de laisser tomber ce plan stupide.\nWe need to find what's inside these boxes.\tNous devons savoir ce qu'il y a dans ces boîtes.\nWe resumed negotiations with that company.\tNous avons repris les tractations avec cette société.\nWe sat in the very back of the auditorium.\tNous nous sommes assis au fond de l'auditorium.\nWe should've bought three bottles of wine.\tNous aurions dû acheter trois bouteilles de vin.\nWe went to Boston, where we stayed a week.\tNous sommes allés à Boston où nous avons séjourné une semaine.\nWe were supposed to be here two weeks ago.\tNous étions censés être ici il y a deux semaines.\nWe will present our idea to the committee.\tNous présenterons notre idée au comité.\nWe will present our idea to the committee.\tC'est nous qui présenterons notre idée au comité.\nWe'd be very interested in what you think.\tOn aimerait beaucoup connaître votre opinion.\nWe're getting nowhere with those problems.\tCes problèmes ne nous mènent à rien.\nWe're going to see a foreign film tonight.\tNous allons voir un film étranger ce soir.\nWe've known each other since we were kids.\tNous nous connaissons depuis que nous sommes gosses.\nWere you listening to the radio yesterday?\tÉcoutais-tu la radio, hier ?\nWere you listening to the radio yesterday?\tÉcoutiez-vous la radio, hier ?\nWere you nervous during the job interview?\tÉtiez-vous nerveux au cours de l'entretien d'embauche?\nWere you playing tennis yesterday morning?\tJouais-tu au tennis hier matin ?\nWhat are the children doing in the garden?\tQue font les enfants au jardin ?\nWhat are the children doing in the garden?\tQu'est-ce que les enfants font au jardin ?\nWhat are you going to be when you grow up?\tTu veux faire quoi quand tu seras grand ?\nWhat denominations would you like that in?\tEn quelles coupures voudriez-vous cela ?\nWhat do you enjoy doing in your free time?\tQu'aimes-tu faire pendant ton temps libre ?\nWhat do you enjoy doing in your free time?\tQu'appréciez-vous faire pendant votre temps libre ?\nWhat do you spend most of your time doing?\tQue fais-tu, la plupart du temps ?\nWhat do you spend most of your time doing?\tQue faites-vous, la plupart du temps ?\nWhat do you want to do after you graduate?\tQue voulez-vous faire après que vous aurez été diplômée ?\nWhat do you want to do after you graduate?\tQue voulez-vous faire après que vous aurez été diplômé ?\nWhat do you want to do after you graduate?\tQue voulez-vous faire après que vous aurez été diplômées ?\nWhat do you want to do after you graduate?\tQue voulez-vous faire après que vous aurez été diplômés ?\nWhat do you want to do after you graduate?\tQue veux-tu faire après que tu auras été diplômée ?\nWhat do you want to do after you graduate?\tQue veux-tu faire après que tu auras été diplômé ?\nWhat do you want to see while you're here?\tQue veux-tu voir tant que tu es là ?\nWhat do you want to see while you're here?\tQue veux-tu voir tant que tu y es ?\nWhat do you want to see while you're here?\tQue voulez-vous voir tant que vous êtes là ?\nWhat do you want to see while you're here?\tQue voulez-vous voir tant que vous y êtes ?\nWhat if you gave a speech and nobody came?\tEt si tu faisais un discours et que personne ne venait ?\nWhat is the length of this piece of cloth?\tQuelle est la longueur de cette étoffe ?\nWhat is the ultimate purpose of education?\tQuelle est la finalité de l'éducation ?\nWhat kind of places would you like to see?\tQuel genre d'endroits aimerais-tu voir ?\nWhat kind of songs are popular these days?\tQuel genre de musiques est en vogue ces temps-ci ?\nWhat makes you think I'd want to see that?\tQu'est-ce qui vous fait croire que je voudrais voir ça ?\nWhat makes you think I'm hiding something?\tQu'est-ce qui te fait penser que je cache quelque chose ?\nWhat makes you think I'm hiding something?\tQu'est-ce qui vous fait penser que je cache quelque chose ?\nWhat natural foods help curb the appetite?\tQuels sont les aliments naturels qui aident à couper l'appétit ?\nWhat reason did he give for being so late?\tQuelle raison a-t-il donnée pour expliquer son retard?\nWhat right do you have to order us around?\tDe quel droit nous donnez-vous des ordres ?\nWhat right do you have to order us around?\tDe quel droit nous donnes-tu des ordres ?\nWhat sort of things do you do on weekends?\tQuel genre de choses fais-tu le week-end ?\nWhat sort of things do you do on weekends?\tQuel genre de trucs fais-tu le week-end ?\nWhat time will the flight arrive in Tokyo?\tQuand l'avion arrivera-t-il à Tokyo ?\nWhat would happen if I pushed this button?\tQue se passerait-il, si j'appuyais sur ce bouton ?\nWhat would you do if you were in my place?\tQue feriez-vous si vous étiez à ma place ?\nWhat would you do if you were in my place?\tQue feriez-vous à ma place ?\nWhat you said does not apply to this case.\tCe que tu dis ne s'applique pas à ce cas.\nWhat you said does not apply to this case.\tCe que vous dites ne s'applique pas dans ce cas.\nWhat's going to happen that's so terrible?\tQue va-t-il arriver de si terrible ?\nWhat's the first thing you're going to do?\tQuelle est la première chose que vous allez faire ?\nWhat's the first thing you're going to do?\tQuelle est la première chose que tu vas faire ?\nWhat's the name of your insurance company?\tQuel est le nom de ta compagnie d'assurance ?\nWhat's your favorite programming language?\tQuel est ton langage de programmation préféré ?\nWhen I grow up I want to be just like you.\tLorsque je deviendrai grand, je veux être tout comme toi.\nWhen I grow up I want to be just like you.\tLorsque je deviendrai grande, je veux être tout comme toi.\nWhen I grow up I want to be just like you.\tLorsque je deviendrai grand, je veux être tout comme vous.\nWhen I see him, I think of my grandfather.\tQuand je le vois, je pense à mon grand-père.\nWhen did the Thirty Years' War take place?\tQuand la Guerre de Trente Ans a-t-elle eu lieu ?\nWhen did you arrive? Did you arrive today?\tQuand êtes-vous arrivés ? Êtes-vous arrivés aujourd'hui ?\nWhen did you arrive? Did you arrive today?\tQuand êtes-vous arrivé ? Êtes-vous arrivé aujourd'hui ?\nWhen did you arrive? Did you arrive today?\tQuand êtes-vous arrivée ? Êtes-vous arrivée aujourd'hui ?\nWhen did you arrive? Did you arrive today?\tQuand êtes-vous arrivées ? Êtes-vous arrivées aujourd'hui ?\nWhen does school let out for the holidays?\tQuand l'école ferme-t-elle pour les congés ?\nWhen does the rainy season in Japan begin?\tQuand la saison des pluies commence-t-elle au Japon ?\nWhen life gives you lemons, make lemonade.\tLorsque la vie te procure des citrons, fais de la limonade.\nWhen my mom finds out, she won't be happy.\tLorsque ma mère le découvrira, elle ne sera pas contente.\nWhen she heard that, she felt like crying.\tQuand elle entendit ça, elle eut envie de pleurer.\nWhen was the last time you dyed your hair?\tQuand est-ce que tu t'es teint les cheveux pour la dernière fois ?\nWhen was the last time you spoke with Tom?\tÀ quand remonte la dernière fois que vous avez parlé avec Tom ?\nWhen we arrived, the crowd had faded away.\tLorsque nous arrivâmes, la foule s'était dissipée.\nWhether you like it or not doesn't matter.\tQue tu aimes ça ou pas n'a pas d'importance.\nWhich color do you like more, blue or red?\tQuelle couleur est-ce que tu préfères ? Le bleu ou le rouge ?\nWhile you're young, you should read a lot.\tOn devrait beaucoup lire tandis qu'on est jeune.\nWhite carpets are very hard to keep clean.\tIl est très difficile de garder propres des tapis blancs.\nWho do you think came to see me yesterday?\tDevine qui est venu me rendre visite hier.\nWho is the man that you were talking with?\tQui est l'homme à qui tu parlais ?\nWho is the man that you were talking with?\tQui est l'homme auquel tu étais en train de parler ?\nWho is the man that you were talking with?\tQui est l'homme auquel vous étiez en train de parler ?\nWho told you to write with your left hand?\tQui t'a dit d'écrire avec ta main gauche ?\nWho's taking responsibility for this mess?\tQui assume la responsabilité de ce foutoir ?\nWho's taking responsibility for this mess?\tQui prend la responsabilité de cette pagaille ?\nWhy do you spend so much time watching TV?\tPourquoi passes-tu autant de temps à regarder la télé ?\nWhy do you want to know what I'm thinking?\tPourquoi veux-tu savoir ce que je pense ?\nWhy do you want to know what I'm thinking?\tPourquoi voulez-vous savoir ce que je pense ?\nWhy do you want to know what I'm thinking?\tPourquoi veux-tu savoir ce que je suis en train de penser ?\nWhy don't you ask when you have a problem?\tPourquoi ne demandes-tu pas lorsque tu as un problème ?\nWhy don't you give me what I want to have?\tPourquoi ne me donnes-tu pas ce que je veux avoir ?\nWill you help me with my English homework?\tM'aideras-tu avec mon devoir d'anglais ?\nWill you keep my valuables for me, please?\tVeux-tu me garder mes effets de valeur, s'il te plait ?\nWill you please put that in simpler words?\tPourrais-tu reformuler ça avec des mots plus simples ?\nWomen like men who make them feel special.\tLes femmes aiment les hommes qui les font se sentir spéciales.\nWould it be OK if I turned off the lights?\tMe serait-il loisible d'éteindre les lumières ?\nWould you be interested in coming with us?\tSeriez-vous intéressé de venir avec nous ?\nWould you be interested in coming with us?\tSeriez-vous intéressée de venir avec nous ?\nWould you be interested in coming with us?\tSerais-tu intéressé de venir avec nous ?\nWould you be interested in coming with us?\tSerais-tu intéressée de venir avec nous ?\nWould you consider giving me a small loan?\tVoudriez-vous réfléchir à m'accorder un modeste prêt ?\nWould you like to leave a message for him?\tVoulez-vous lui laisser un message ?\nWould you like to leave a message for him?\tVoudriez-vous lui laisser un message ?\nWould you mind sending this letter for me?\tEst-ce que tu pourrais me poster ces lettres ?\nWrite a poem with four three-line stanzas.\tÉcrivez un poème de quatre strophes de trois vers chacune.\nWrite a poem with four three-line stanzas.\tÉcrivez un poème de quatre strophes de chacune trois vers.\nWrite a poem with four three-line stanzas.\tÉcrivez un poème de quatre strophes de trois vers.\nYears of farm work have hardened his body.\tDes années de travail agricole ont durci son corps.\nYou are mistaken if you think he is wrong.\tTu te trompes si tu penses qu'il a tort.\nYou are, so to speak, a fish out of water.\tVous êtes, pour ainsi dire, un poisson hors de l'eau.\nYou can come to visit us anytime you want.\tVous pouvez venir nous rendre visite à tout moment.\nYou can park on either side of the street.\tTu peux te garer des deux côtés de la rue.\nYou can park on either side of the street.\tVous pouvez vous garer des deux côtés de la rue.\nYou can pick up a lot of words by reading.\tOn peut apprendre beaucoup de mots en lisant.\nYou can see the whole city from this hill.\tTu peux voir toute la ville depuis cette colline.\nYou can trust him. He'll never betray you.\tTu peux lui faire confiance. Il ne te trahira jamais.\nYou can trust him. He'll never betray you.\tTu peux te fier à lui. Il ne te trahira jamais.\nYou can trust him. He'll never betray you.\tVous pouvez lui faire confiance. Il ne vous trahira jamais.\nYou can trust him. He'll never betray you.\tVous pouvez vous fier à lui. Il ne vous trahira jamais.\nYou can use my car if you drive carefully.\tTu peux utiliser ma voiture pour autant que tu conduises prudemment.\nYou can use my car if you drive carefully.\tVous pouvez conduire ma voiture pour autant que vous conduisiez prudemment.\nYou can't count on him for financial help.\tTu ne peux pas compter sur son aide financière.\nYou cannot read this novel without crying.\tTu ne peux pas lire ce roman sans pleurer.\nYou couldn't solve the problem, could you?\tVous n'avez pas pu résoudre le problème, n'est-ce pas ?\nYou couldn't solve the problem, could you?\tTu n'as pas pu résoudre le problème, n'est-ce pas ?\nYou do not want to incur the wrath of God.\tTu ne veux pas encourir la colère de Dieu.\nYou do not want to incur the wrath of God.\tVous ne voulez pas encourir la colère de Dieu.\nYou don't have to worry about her anymore.\tTu n'as plus besoin de te faire du souci pour elle.\nYou don't have to worry about her anymore.\tVous n'avez plus besoin de vous faire du souci pour elle.\nYou don't need to get a haircut this week.\tTu n'as pas besoin d'une coupe de cheveux cette semaine.\nYou don't need to prepare a formal speech.\tTu n'as pas besoin de préparer une allocution formelle.\nYou have a really good sense of direction.\tTu as vraiment un bon sens de l'orientation.\nYou have a really good sense of direction.\tVous avez vraiment un bon sens de l'orientation.\nYou have made the very same mistake again.\tTu as de nouveau commis exactement la même erreur.\nYou have made the very same mistake again.\tVous avez exactement refait la même erreur.\nYou have to make the crease very straight.\tIl vous faut faire le pli bien droit.\nYou have to make the crease very straight.\tIl te faut faire le pli bien droit.\nYou have to turn in the reports on Monday.\tTu dois remettre les rapports lundi.\nYou look like a little girl in that dress.\tTu parais être une petite fille, dans cette robe.\nYou look like a little girl in that dress.\tTu as l'air d'une petite fille dans cette robe.\nYou may give the book to whoever wants it.\tTu peux donner le livre à qui en voudra.\nYou may give the book to whoever wants it.\tTu peux donner le livre à qui le voudra.\nYou might get something in the mail today.\tIl se pourrait que tu aies quelques chose au courrier d'aujourd'hui.\nYou might get something in the mail today.\tIl se pourrait que vous ayez quelques chose au courrier d'aujourd'hui.\nYou must be careful not to make him angry.\tTu dois faire attention à ne pas le mettre en colère.\nYou must keep this machine free from dust.\tTu dois préserver cette machine de la poussière.\nYou must keep this machine free from dust.\tVous devez préserver cette machine de la poussière.\nYou must not make noises in the classroom.\tTu ne dois pas faire de bruit en classe.\nYou must not make noises in the classroom.\tVous ne devez pas faire de bruit en classe.\nYou must practice it at regular intervals.\tTu dois le pratiquer à intervalle régulier.\nYou really shouldn't use pirated software.\tVous ne devriez vraiment pas utiliser des logiciels piratés.\nYou run into Japanese tourists everywhere.\tOn trouve des touristes japonais partout.\nYou seem to be in such a nasty mood today.\tTu sembles être d'une humeur massacrante, aujourd'hui.\nYou should be careful in choosing friends.\tTu devrais être prudent dans le choix de tes amis.\nYou should be more careful at a crosswalk.\tTu devrais être plus prudent au passage piéton.\nYou should have left half an hour earlier.\tVous auriez dû partir une demi-heure plus tôt.\nYou should have nothing to complain about.\tTu ne devrais pas avoir de motif de te plaindre.\nYou shouldn't have gone there by yourself.\tTu n'aurais pas dû t'y rendre tout seul.\nYou shouldn't judge a person by his looks.\tTu ne devrais pas juger les gens selon leur apparence.\nYou still have a lot to learn about women.\tTu as encore beaucoup à apprendre sur les femmes.\nYou still have a lot to learn about women.\tVous avez encore beaucoup à apprendre à propos des femmes.\nYou still haven't told me how old you are.\tTu ne m'as toujours pas dit quel âge tu as.\nYou still haven't told me how old you are.\tVous ne m'avez toujours pas dit quel âge vous avez.\nYou still haven't told me why you're here.\tTu ne m'as pas encore dit pourquoi tu es ici.\nYou still haven't told me why you're here.\tVous ne m'avez pas encore dit pourquoi vous êtes ici.\nYou understand what I'm saying, don't you?\tTu comprends ce que je suis en train de dire, n'est-ce pas ?\nYou understand what I'm saying, don't you?\tVous comprenez ce que je suis en train de dire, n'est-ce pas ?\nYou won't believe who sat down next to me.\tVous n'allez pas croire qui s'est assis à côté de moi !\nYou won't believe who sat down next to me.\tTu ne vas pas croire qui s'est assis à côté de moi !\nYou won't find a dog bigger than this one.\tTu ne trouveras pas de chien plus gros que celui-ci.\nYou won't find a dog bigger than this one.\tVous ne trouverez pas de chien plus gros que celui-ci.\nYou'd better be careful not to catch cold.\tTu devrais faire attention à ne pas attraper froid.\nYou'll find the letter under these papers.\tVous trouverez la lettre sous ces papiers.\nYou'll find the letter under these papers.\tTu trouveras la lettre sous ces papiers.\nYou're always complaining about something.\tTu râles toujours après quelque chose.\nYou're just the person I want to speak to.\tTu es précisément la personne à laquelle je veux parler.\nYou're just the person I want to speak to.\tVous êtes précisément la personne à laquelle je veux parler.\nYou're more beautiful than I remember you.\tTu es plus belle que dans mon souvenir.\nYou're not even close to the right answer.\tVous êtes très loin de trouver la bonne réponse.\nYou're not the only one with this problem.\tTu n'es pas le seul avec ce problème.\nYou're not the only one with this problem.\tTu n'es pas la seule avec ce problème.\nYou're not the only one with this problem.\tVous n'êtes pas le seul avec ce problème.\nYou're not the only one with this problem.\tVous n'êtes pas la seule avec ce problème.\nYou're not the only one with this problem.\tVous n'êtes pas les seules avec ce problème.\nYou're not the only one with this problem.\tVous n'êtes pas les seuls avec ce problème.\nYou're running a big risk in trusting him.\tTu prends un risque important en lui faisant confiance.\nYou're running a big risk in trusting him.\tVous encourez un risque important en lui accordant votre confiance.\nYou're spending too much time watching TV.\tTu passes trop de temps à regarder la télé.\nYou're spending too much time watching TV.\tVous passez trop de temps à regarder la télé.\nYou're the prettiest woman I've ever seen.\tVous êtes la plus jolie femme que j'ai jamais vue.\nYou're too young to remember the nineties.\tTu es trop jeune pour te rappeler les années quatre-vingt-dix.\nYou're too young to remember the nineties.\tTu es trop jeune pour te rappeler les années nonante.\nYou're wanted on the phone. It's from Tom.\tOn te demande au téléphone. C'est Tom.\nYour camera is only half the size of mine.\tTon appareil photo est seulement deux fois plus petit que le mien.\nYour dress is unsuitable for the occasion.\tTa robe ne convient pas à la circonstance.\nYour hypothesis is completely unrealistic.\tTon hypothèse est complètement irréaliste.\nYour method of teaching English is absurd.\tVotre méthode d'enseigner l'anglais est absurde.\nYour problem is you're not patient enough.\tLe problème, c'est que vous n'êtes pas assez patients.\nYour problem is you're not patient enough.\tLe problème, c'est que vous n'êtes pas assez patientes.\nYour problem is you're not patient enough.\tLe problème, c'est que vous n'êtes pas assez patient.\nYour problem is you're not patient enough.\tLe problème, c'est que vous n'êtes pas assez patiente.\n\"How about playing catch?\" \"Sure, why not?\"\t\"Et si on jouait à se lancer la balle?\" - \"Oui, pourquoi pas?\"\n\"Natto\" smells awful, but tastes delicious.\tLe \"Natto\" a une odeur terrible, mais un goût délicieux.\n\"Pass me the salt, please.\" \"Here you are.\"\t« Passez-moi le sel s'il vous plaît. » « Tenez. »\n\"What are these?\" \"They are your pictures.\"\t\"Et ça c'est quoi?\" \"Ce sont vos photos.\"\nA 6% yield is guaranteed on the investment.\tUn rendement de 6% sur investissement est garanti.\nA Persian cat was sleeping under the table.\tUn chat persan dormait sous la table.\nA beam of sunlight came through the clouds.\tUn rayon de soleil traversait les nuages.\nA bunch of people told me not to eat there.\tUn tas de gens m'ont dit de ne pas manger là.\nA camel is a horse designed by a committee.\tUn dromadaire est un cheval conçu par un comité.\nA contagious disease descended on the town.\tUne épidémie s'abattit sur la ville.\nA cup of coffee cost 200 yen in those days.\tUne tasse de café coûtait deux cents yens à cette époque.\nA father and son represent two generations.\tUn père et son fils représentent deux générations.\nA few firefighters suffered minor injuries.\tQuelques pompiers ont souffert de blessures légères.\nA few minutes' walk brought him to the zoo.\tIl fut au zoo en deux ou trois minutes de marche.\nA few minutes' walk brought us to the park.\tAprès quelques minutes de marche, nous étions au parc.\nA fierce battle was fought by the soldiers.\tLes soldats engagèrent une féroce bataille.\nA fire broke out in the middle of the city.\tUn feu éclata au milieu de la ville.\nA fire broke out in the middle of the city.\tUn feu se déclara au cœur de la ville.\nA glass of water will make you feel better.\tUn verre d'eau vous fera du bien.\nA honeymoon in Canada costs a lot of money.\tUne lune de miel au Canada coûte beaucoup d'argent.\nA lot of foreigners visit Japan every year.\tBeaucoup d'étrangers visitent le Japon chaque année.\nA lot of my classmates think that I'm dumb.\tBeaucoup de mes camarades de classe pensent que je suis bête.\nA lot of people feel the same way Tom does.\tBeaucoup de gens ressentent la même chose que Tom.\nA new bridge is being built over the river.\tOn construit un nouveau pont au-dessus de la rivière.\nA square is both a rectangle and a rhombus.\tUn carré est à la fois un rectangle et un losange.\nA stranger came up to me and asked the way.\tUne personne inconnue est venue près de moi me demander le chemin.\nA stream of people came out of the theater.\tUn flot de gens sortit du théâtre.\nA tall building was built next to my house.\tUne tour a été construite à côté de chez moi.\nA tall building was built next to my house.\tUne tour a été érigée à côté de chez moi.\nA true gentleman never betrays his friends.\tUn vrai gentleman ne trahit pas ses amis.\nA woman visited us while you were sleeping.\tUne femme est venue nous voir pendant que vous dormiez.\nA young man broke into my house last night.\tUn jeune homme a cambriolé ma maison la nuit dernière.\nA young man broke into my house last night.\tUn jeune homme a cambriolé la maison la nuit dernière.\nAccording to the TV, it will rain tomorrow.\tSelon la télévision, il pleuvra demain.\nAfter days of warm weather, it became cold.\tAprès des jours de temps chaud, il se mit à faire froid.\nAll of a sudden, the clerk lost his temper.\tTout à coup, l'employée perdit son sang-froid.\nAll of us want to live as long as possible.\tNous voulons tous vivre aussi longtemps que possible.\nAll sorts of people came to the exhibition.\tToutes sortes de gens sont venus à l'exposition.\nAll the students protested against the war.\tTous les étudiants protestèrent contre la guerre.\nAll the students protested against the war.\tTous les étudiants ont protesté contre la guerre.\nAll this damage is the result of the storm.\tTous ces dégâts sont le résultat de la tempête.\nAll work and no play makes Jack a dull boy.\tTout le travail sans jouer fait de Jack un enfant morose.\nAll you have to do is push this red button.\tTout ce que tu dois faire est d'appuyer sur ce bouton rouge.\nAllied forces were attacking from the west.\tLes forces Alliées attaquaient par l'ouest.\nAlmost all the students believed the rumor.\tPresque tous les étudiants ont cru à la rumeur.\nAlways be smarter than people who hire you.\tSois toujours plus malin que les gens qui t'embauchent.\nAn elderly person was resting under a tree.\tUne personne âgée se reposait sous un arbre.\nAn electric current can generate magnetism.\tUn courant électrique peut générer du magnétisme.\nAnd everyone has the ability to contribute.\tEt chacun a la possibilité de contribuer.\nAny man wearing a toupee fears a windy day.\tTout homme portant un postiche craint les jours de vent.\nAnything is infinitely better than nothing.\tQuoi que ce soit vaut infiniment mieux que rien.\nAnything is infinitely better than nothing.\tN'importe quoi est infiniment mieux que rien.\nAnything that can be misunderstood will be.\tTout ce qui peut être mal compris le sera.\nAre there still enough chairs for everyone?\tEst-ce qu'il y a toujours assez de chaises pour tout le monde ?\nAre these the glasses you were looking for?\tSont-ce les lunettes que vous cherchiez ?\nAre these the glasses you were looking for?\tCe sont les lunettes que tu cherchais ?\nAre you going to eat the rest of your stew?\tVas-tu manger le reste de ton ragoût ?\nAre you going to eat the rest of your stew?\tAllez-vous manger le reste de votre ragoût ?\nAre you going to visit any other countries?\tVas-tu visiter d'autres pays ?\nAre you in favor of or against that policy?\tÊtes-vous pour ou contre cette politique ?\nAre you intentionally trying to confuse me?\tFaites-vous exprès d'essayer de m'embrouiller les idées ?\nAre you intentionally trying to confuse me?\tFais-tu exprès d'essayer de m'embrouiller les idées ?\nAre you seriously thinking about not going?\tPenses-tu sérieusement ne pas t'y rendre ?\nAre you seriously thinking about not going?\tPensez-vous sérieusement ne pas vous y rendre ?\nAre you seriously thinking about not going?\tSongez-vous sérieusement à ne pas vous y rendre ?\nAre you seriously thinking about not going?\tSonges-tu sérieusement à ne pas t'y rendre ?\nAre you sure you know where Tom's house is?\tEs-tu certain que tu sais où la maison de Tom est ?\nAre you sure you saw someone on the bridge?\tEs-tu sûr d'avoir vu quelqu'un sur le pont ?\nAre you sure you saw someone on the bridge?\tÊtes-vous sûre d'avoir vu quelqu'un sur le pont ?\nAre you sure you're not taking on too much?\tEs-tu sûr que tu n'es pas en train de prendre trop ?\nAs I was reading, I became more interested.\tEn lisant, mon intérêt grandit.\nAs for me, I have nothing against the plan.\tQuant à moi, je n'ai rien contre le plan.\nAs for me, I like chicken better than pork.\tEn ce qui me concerne, je préfère le poulet au porc.\nAs he grew older, he became more obstinate.\tEn vieillissant, il est devenu plus obstiné.\nAs soon as he saw a policeman, he ran away.\tDès qu'il a vu le policier, il s'est enfui.\nAstronomy deals with the stars and planets.\tL'astronomie traite des étoiles et des planètes.\nAt the beginning, I couldn't understand it.\tAu début, je n'arrivais pas à le comprendre.\nAutumn came and the leaves started to fall.\tL'automne arriva et les feuilles se mirent à tomber.\nAutumn came and the leaves started to fall.\tVint l'automne et les feuilles se mirent à tomber.\nBe careful, there are cougars in this area.\tFais attention, il y a des couguars dans ce coin !\nBe careful, there are cougars in this area.\tFaites attention, il y a des couguars dans ce coin !\nBefore I knew it, I couldn't see the birds.\tLe temps de me rendre compte, je ne pouvais plus voir les oiseaux.\nBirds usually wake up early in the morning.\tLes oiseaux se réveillent d'habitude tôt le matin.\nBirds usually wake up early in the morning.\tLes oiseaux sont habituellement réveillés très tôt le matin.\nBrazil supplies us with much of our coffee.\tLe Brésil nous apporte une grande partie de notre café.\nBy the way, have you ever been to Hokkaido?\tAu fait, êtes-vous déjà allé à Hokkaido ?\nCalifornia and Nevada border on each other.\tLa Californie et le Nevada se jouxtent.\nCan I persuade you to stay a few more days?\tPuis-je vous convaincre de rester quelques jours de plus ?\nCan a case be made for late-term abortions?\tPeut-on défendre les avortements tardifs ?\nCan you describe the situation you were in?\tEst-ce que vous pourriez expliquer la situation dans laquelle vous vous trouviez ?\nCan you help her out before they catch her?\tPeux-tu l'aider avant qu'ils ne l'attrapent ?\nCan you help her out before they catch her?\tPeux-tu l'aider avant qu'elles ne l'attrapent ?\nCan you help her out before they catch her?\tPouvez-vous l'aider avant qu'ils ne l'attrapent ?\nCan you help her out before they catch her?\tPouvez-vous l'aider avant qu'elles ne l'attrapent ?\nCan you make yourself understood in French?\tPeux-tu te faire comprendre en français ?\nCan you make yourself understood in French?\tPouvez-vous vous faire comprendre en français ?\nCan you please tell me your name once more?\tPouvez-vous s'il vous plait me répéter votre nom ?\nCan you see what's wrong with this picture?\tPouvez-vous voir ce qui cloche dans cette image?\nCan you think of any better way to do this?\tPouvez-vous réfléchir à une quelconque meilleure façon de le faire ?\nCertain poisons, properly used, are useful.\tCertains poisons, correctement utilisés, sont utiles.\nChess and checkers are favorites with them.\tLes échecs et les dames sont leurs jeux favoris.\nChildren often try to imitate their elders.\tLes enfants essayent souvent d'imiter leurs aînés.\nChildren should be kept away from the pond.\tLes enfants devraient être tenus éloignés de la mare.\nChildren should be taught not to tell lies.\tOn devrait apprendre aux enfants à ne pas dire de mensonges.\nChildren usually get up early on Christmas.\tLes enfants se lèvent habituellement tôt le jour de Noël.\nCity life has advantages and disadvantages.\tVivre en ville a ses avantages et ses inconvénients.\nCleveland was not sure the boy was his son.\tCleveland n'était pas sûr que le garçon soit son fils.\nClint Eastwood was elected mayor of Carmel.\tClint Eastwood a été élu maire de Carmel.\nCockroaches hide themselves during the day.\tLes cafards se cachent dans la journée.\nColumbus believed that the Earth was round.\tChristophe Colomb croyait que la terre était ronde.\nColumbus proved that the world is not flat.\tChristophe Colomb prouva que le monde n'était pas plat.\nConcert tickets are on sale at this office.\tLes tickets de concert sont en vente à cet endroit.\nCould I get you to update this data for me?\tPourrais-tu mettre à jour ces données pour moi ?\nCould I get you to update this data for me?\tPourriez-vous mettre à jour ces données pour moi ?\nCould you explain how the dishwasher works?\tPourriez-vous nous expliquer comment fonctionne le lave-vaisselle ?\nCould you please turn your television down?\tPourriez-vous baisser votre télévision ?\nCould you put those bags in the car for me?\tPourriez-vous mettre ces sacs dans la voiture pour moi  ?\nCould you tell me how to adjust the volume?\tPourriez-vous m'indiquer comment ajuster le niveau sonore ?\nCould you tell me how to use the telephone?\tPouvez-vous me dire comment utiliser le téléphone ?\nDarkness causes many children to be afraid.\tL'obscurité fait peur à beaucoup d'enfants.\nDentists take x-rays to examine your teeth.\tLes dentistes utilisent les rayons X pour examiner vos dents.\nDespite their efforts, they didn't succeed.\tEn dépit de leur efforts, ils n'ont pas réussi.\nDespite their efforts, they didn't succeed.\tEn dépit de leur efforts, ils n'y sont pas parvenus.\nDespite their efforts, they didn't succeed.\tEn dépit de leur efforts, elles n'ont pas réussi.\nDespite their efforts, they didn't succeed.\tEn dépit de leur efforts, elles n'y sont pas parvenues.\nDid Tom get hurt in the accident yesterday?\tEst-ce que Tom a été blessé dans l'accident d'hier ?\nDid you enjoy going to exhibits in Romania?\tAvez-vous aimé aller à des expositions en Roumanie ?\nDid you mail the letter yesterday or today?\tVous avez posté la lettre hier ou aujourd'hui ?\nDid you see the way Tom was looking at you?\tAs-tu remarqué la façon dont Tom te regardait ?\nDid you see the way Tom was looking at you?\tAvez-vous vu la façon dont Tom vous regardait ?\nDid you speak with him about your projects?\tTu lui as parlé de tes projets ?\nDid you speak with him about your projects?\tLui avez-vous parlé de vos projets ?\nDidn't it occur to you to shut the windows?\tNe vous est-il pas venu à l'esprit de fermer les fenêtres ?\nDidn't you hear the voice in the next room?\tN'as-tu pas entendu une voix dans la pièce voisine?\nDo you agree with what he says in the book?\tÊtes-vous d'accord avec ce qu'il dit dans le livre ?\nDo you have a room that's a little cheaper?\tAvez-vous une chambre qui soit un peu moins cher ?\nDo you have a special menu for vegetarians?\tAvez-vous un menu spécial pour les végétariens ?\nDo you have anything to say regarding this?\tAvez-vous quelque chose à dire en rapport avec cela ?\nDo you have more than one copy of this key?\tDisposez-vous de plus d'une copie de cette clé ?\nDo you have more than one copy of this key?\tDisposes-tu de plus d'une copie de cette clé ?\nDo you have one a little bigger than these?\tEn avez-vous un, un peu plus grand que ceux-ci ?\nDo you have one a little bigger than these?\tEn as-tu un, un peu plus grand que ceux-ci ?\nDo you have plans for additional education?\tAvez-vous des projets de formation supplémentaire ?\nDo you know any doctors who speak Japanese?\tConnais-tu des médecins qui parlent japonais ?\nDo you know any doctors who speak Japanese?\tConnaissez-vous des médecins qui parlent japonais ?\nDo you know the reason why she is so angry?\tSais-tu la raison pour laquelle elle est si en colère ?\nDo you know what Tom does in his free time?\tSais-tu ce que Tom fait pendant son temps libre ?\nDo you know what Tom does in his free time?\tSavez-vous ce que Tom fait pendant son temps libre ?\nDo you know where Tom and his friends went?\tSais-tu où Tom et ses amis sont allés ?\nDo you know where Tom and his friends went?\tSavez-vous où Tom et ses amies sont allés ?\nDo you prefer subtitled or dubbed TV shows?\tPréférez-vous les émissions de télé sous-titrées ou doublées ?\nDo you remember the town where he was born?\tTe souviens-tu de la ville où il est né ?\nDo you think we have any chance of winning?\tPensez-vous que nous avons une chance de gagner?\nDo you understand the difficulty of my job?\tComprenez-vous la difficulté de mon travail ?\nDo you want to come over and watch a movie?\tVoulez-vous venir ici et regarder un film ?\nDo you want to come over and watch a movie?\tVeux-tu venir ici et regarder un film ?\nDo you want to tell the jury what happened?\tVoulez-vous dire aux jurés ce qui s'est passé ?\nDogs wag their tails and cats swish theirs.\tLes chiens remuent la queue et les chats fouettent la leur.\nDon't act like you don't know how to dance.\tNe fais pas comme si tu ne savais pas danser !\nDon't act like you don't know how to dance.\tNe faites pas comme si vous ne saviez pas danser !\nDon't act like you don't know what's wrong.\tNe fais pas comme si tu ne savais pas ce qui est mal !\nDon't act like you don't know what's wrong.\tNe faites pas comme si vous ne saviez pas ce qui est mal !\nDon't act like you don't know what's wrong.\tNe fais pas comme si tu ne savais pas ce qui ne va pas !\nDon't act like you don't know what's wrong.\tNe faites pas comme si vous ne saviez pas ce qui ne va pas !\nDon't despise others because they are poor.\tNe méprisez pas les autres parce qu'ils sont pauvres.\nDon't forget to let me know when it's time.\tN'oublie pas de me faire savoir quand il sera temps.\nDon't get a stomachache by eating too much.\tN'attrape pas mal à l'estomac en mangeant trop.\nDon't hesitate to ask if you want anything.\tN'hésitez pas à demander si vous désirez quelque chose.\nDon't talk about people behind their backs.\tNe parle pas des gens derrière leurs dos.\nDon't worry. I've already taken care of it.\tPas d'inquiétude, je m'en suis déjà occupé.\nDuring the war, we had to do without sugar.\tPendant la guerre, nous devions nous passer de sucre.\nEither you or he has to attend the meeting.\tSoit toi, soit lui doit assister à la réunion.\nEnglish is not easy, but it is interesting.\tL'anglais n'est pas facile mais est intéressant.\nEnglish is not easy, but it is interesting.\tL'anglais n'est pas facile, mais c'est intéressant.\nEnglish is useful in diplomacy and tourism.\tL'anglais est très utile dans la diplomatie et le tourisme.\nEnglishmen are, on the whole, conservative.\tLes Anglais sont, pour la plupart, conservateurs.\nEquality is guaranteed by the Constitution.\tL'égalité est garantie par la Constitution.\nEven the greatest scholar can't solve that.\tMême le plus grand des érudits ne peut pas résoudre cela.\nEven though he was sick, he went to school.\tBien qu'il fût malade, il alla à l'école.\nEven though he was sick, he went to school.\tBien que malade, il se rendit à l'école.\nEven though he was sick, he went to school.\tBien que malade, il s'est rendu à l'école.\nEven though he was sick, he went to school.\tBien que malade, il alla à l'école.\nEven though he was sick, he went to school.\tBien que malade, il est allé à l'école.\nEvery even number is the sum of two primes.\tTout nombre pair est la somme de deux nombres premiers.\nEvery monster starts off as someone's baby.\tTous les monstres commencent comme les bébés de quelqu'un.\nEvery part of the island has been explored.\tChaque partie de l'île a été explorée.\nEvery word in this dictionary is important.\tTous les mots de ce dictionnaire sont importants.\nEverybody knew Tom could speak French well.\tTout le monde savait que Tom pouvait bien parler français.\nEverybody knows that two and two make four.\tTout le monde sait que deux et deux font quatre.\nEverybody says that he's an effeminate guy.\tTout le monde dit qu'il est efféminé.\nEveryone gathered together for the picture.\tIls se sont regroupés pour la photo.\nEveryone is in the living room watching TV.\tTout le monde est dans le salon à regarder la télé.\nEveryone is more or less interested in art.\tTout le monde est plus ou moins intéressé par l'art.\nEveryone knows what they have to do, right?\tChacun sait ce qu'il a à faire, n'est-ce pas ?\nExcuse me sir, could you spare some change?\tExcusez-moi, Monsieur, auriez-vous une petite pièce ?\nFew people were killed in the car accident.\tIl y a peu de personnes tuées dans cet accident.\nFew students could understand what he said.\tPeu d'étudiants pourraient comprendre ce qu'il dit.\nFlip to the back of the book for the index.\tReporte-toi à la fin pour consulter la table des matières.\nFold the napkins and put one by each plate.\tPlie les serviettes de table et disposes-en une à côté de chaque assiette.\nFollow us. We're headed to the nearest bar.\tSuis-nous ! Nous nous rendons au café le plus proche.\nFollow us. We're headed to the nearest bar.\tSuivez-nous ! Nous nous rendons au café le plus proche.\nFrom year to year they were growing poorer.\tIls s'appauvrissaient d'année en année.\nGenerally speaking, history repeats itself.\tEn règle générale, l'histoire se répète.\nGood students always keep their desk clean.\tLes bons étudiants gardent toujours leurs bureaux propres.\nGraham Greene is a favorite author of mine.\tGraham Greene est l'un de mes auteurs favoris.\nGrandma is three and a half times your age.\tGrand-mère a trois fois et demie votre âge.\nGranting that favor is out of the question.\tAccorder cette faveur est hors de question.\nGuns don't kill people. People kill people.\tCe ne sont pas les armes qui tuent les hommes, ce sont les hommes qui tuent les hommes.\nHand in the three sheets of paper together.\tRemettez les trois feuilles de papier en même temps.\nHandmade goods are very expensive nowadays.\tLes produits faits à la main sont très chers de nos jours.\nHandmade goods are very expensive nowadays.\tLes produits faits main sont très chers de nos jours.\nHave you been seeing a lot of him recently?\tLe vois-tu beaucoup ces temps-ci ?\nHave you checked the suggestions box today?\tAvez-vous vérifié la boîte à idées, aujourd'hui ?\nHave you eaten anywhere interesting lately?\tAs-tu mangé quelque part d'intéressant, ces derniers temps ?\nHave you eaten anywhere interesting lately?\tAvez-vous mangé quelque part d'intéressant, ces derniers temps ?\nHave you ever cut your finger with a knife?\tT'es-tu jamais coupé le doigt avec un couteau ?\nHave you ever had lunch at this restaurant?\tAvez-vous jamais déjeuné dans ce restaurant ?\nHave you ever had lunch at this restaurant?\tAs-tu jamais déjeuné dans ce restaurant ?\nHave you ever seen such a beautiful sunset?\tAvez-vous déjà vu un si beau coucher de soleil ?\nHave you ever tried to think about nothing?\tAs-tu jamais essayé de ne penser à rien ?\nHave you finished writing your composition?\tAs-tu terminé d'écrire ton essai ?\nHave you finished your French homework yet?\tAs-tu déjà terminé tes devoirs de français ?\nHave you received an answer to your letter?\tAs-tu reçu une réponse à ta lettre ?\nHave you received an answer to your letter?\tAvez-vous reçu une réponse à votre lettre ?\nHaving seen him before, I knew him at once.\tComme je l'avais déjà vu, je l'ai tout de suite reconnu.\nHe abandoned his hope of becoming a doctor.\tIl a abandonné l'espoir d'être médecin.\nHe accomplishes whatever he sets out to do.\tIl va au bout de tout ce qu'il entreprend.\nHe asked her to marry him, but she refused.\tIl lui a demandé de l'épouser mais elle a refusé.\nHe asked me if I knew her telephone number.\tIl m'a demandé si je connaissais son numéro de téléphone.\nHe became more and more famous as a critic.\tIl devint de plus en plus célèbre comme critique.\nHe came near to being drowned in the river.\tIl a manqué se noyer dans la rivière.\nHe can't tell what is written on the paper.\tIl ne peut pas dire ce qui est écrit sur le papier.\nHe caught hold of a rope and saved himself.\tIl s'est accroché à une corde et s'est sauvé tout seul.\nHe despises people of a lower social class.\tIl méprise les personnes de classe sociale inférieure à la sienne.\nHe directed all his energy to his business.\tIl consacrait toute son énergie à son commerce.\nHe does not even know how to sign his name.\tIl ne sait même pas comment signer de son nom.\nHe doesn't carry much baggage on his trips.\tIl ne prend pas beaucoup de bagages en voyage.\nHe doesn't seem to be heading for the town.\tIl ne semble pas se diriger vers la ville.\nHe doesn't tolerate that type of behaviour.\tIl ne supporte pas ce type de comportement.\nHe found it impossible to go there on foot.\tIl jugea impossible de s'y rendre à pied.\nHe gave back all the money he had borrowed.\tIl rendit tout l'argent qu'il avait emprunté.\nHe gave us not only clothes but some money.\tIl nous donna non seulement des habits, mais aussi un peu d'argent.\nHe gives an apple to the teacher every day.\tIl donne chaque jour une pomme à l'instituteur.\nHe got a prize for winning the competition.\tIl reçut un prix pour avoir remporté le concours.\nHe had served as a congressman and senator.\tIl avait servi comme député et sénateur.\nHe had served as a congressman and senator.\tIl avait servi en tant que député et sénateur.\nHe had to share a bedroom with his brother.\tIl dut partager une chambre avec son frère.\nHe had to share a bedroom with his brother.\tIl a dû partager une chambre avec son frère.\nHe had to share a bedroom with his brother.\tIl lui fallut partager une chambre avec son frère.\nHe had to share a bedroom with his brother.\tIl lui a fallu partager une chambre avec son frère.\nHe handed over all his property to his son.\tIl remit toute sa propriété à son fils.\nHe has a chance of equaling the old record.\tIl a une chance d'égaler l'ancien record.\nHe has been living in Ankara for six years.\tIl vit à Ankara depuis six ans.\nHe has enough ability to manage a business.\tIl a suffisamment de talent pour gérer une affaire.\nHe has enough ability to manage a business.\tIl est assez apte à gérer une affaire.\nHe has none of his father's aggressiveness.\tIl n'a rien de l'agressivité de son père.\nHe has not written to them for a long time.\tIl ne leur a pas écrit depuis longtemps.\nHe has some experience in teaching English.\tIl a déjà enseigné l'anglais.\nHe has the backing of a certain politician.\tIl a l'appui d'un certain politicien.\nHe has the backing of a certain politician.\tIl jouit de l'appui d'un certain politicien.\nHe has the bad habit of chewing his pencil.\tIl a la mauvaise habitude de mâchouiller son crayon.\nHe helped an old lady get up from her seat.\tIl a aidé une vieille femme à se lever de son siège.\nHe hopes to exhibit his paintings in Japan.\tIl espère exposer ses peintures au Japon.\nHe is absorbed in reading detective novels.\tIl est absorbé à lire des romans de détectives.\nHe is absorbed in reading detective novels.\tIl est captivé par sa lecture de romans policiers.\nHe is going to buy a new bicycle next week.\tIl va acheter un nouveau vélo la semaine prochaine.\nHe is much better than me at the high jump.\tIl est bien meilleur que moi au saut en hauteur.\nHe is not ashamed of his father being poor.\tIl n'a pas honte que son père soit pauvre.\nHe is one of the greatest artists in Japan.\tC'est l'un des plus grands artistes au Japon.\nHe is ready to join us under one condition.\tIl est prêt à se joindre à nous à une condition.\nHe is reputed the best lawyer in this city.\tIl a la réputation d'être le meilleur avocat de la ville.\nHe is the president of the company in fact.\tIl est en fait le président de la société.\nHe is working hard to pass the examination.\tIl travaille dur en vue de réussir son examen.\nHe made a thorough analysis of the problem.\tIl fit une analyse détaillée du problème.\nHe made reference to the previous director.\tIl a fait référence au directeur précédent.\nHe made reference to the previous director.\tIl a fait référence à la directrice précédente.\nHe never fully recovered from his injuries.\tIl ne s'est jamais pleinement remis de ses blessures.\nHe often sits for many hours reading books.\tIl s'assoit souvent pendant de nombreuses heures à lire des livres.\nHe often tells us we must help one another.\tIl nous dit souvent que nous devons nous entraider.\nHe parked his car in front of the building.\tIl gara sa voiture devant le bâtiment.\nHe promised to meet him at the coffee shop.\tIl promit de le rencontrer au café.\nHe quit smoking for the sake of his health.\tIl arrêta de fumer pour sa santé.\nHe ran as fast as his legs could carry him.\tIl courut aussi vite que ses jambes purent le porter.\nHe ran to the station and caught the train.\tIl courut à la gare et put prendre le train.\nHe received a sizable advance for his book.\tIl a reçu une avance substantielle pour son livre.\nHe reminds me of his father when he speaks.\tIl me rappelle son père quand il parle.\nHe said the same thing over and over again.\tIl a répété toujours la même chose.\nHe says he is leaving the country for good.\tIl dit qu'il quitte le pays pour de bon.\nHe slowly let the clutch out and drove off.\tIl relâcha doucement l'embrayage puis partit.\nHe started to learn Spanish from the radio.\tIl a commencé à apprendre l'espagnol à la radio.\nHe that will steal an egg will steal an ox.\tQui vole un œuf vole un bœuf.\nHe thinks of everything in terms of profit.\tIl pense à n'importe quoi en termes de profits.\nHe told us a very exciting adventure story.\tIl nous a conté une histoire d'aventure très passionnante.\nHe took part in the anti-war demonstration.\tIl prit part à la manifestation contre la guerre.\nHe took part in the anti-war demonstration.\tIl a pris part à la manifestation contre la guerre.\nHe turned off the light and he went to bed.\tIl a éteint la lumière et s'est couché.\nHe walked away with a sad look on his face.\tIl s'en alla l'air triste.\nHe walked away with a sad look on his face.\tIl s'en alla la mine dépitée.\nHe was accused of squandering public funds.\tIl était accusé de détournement d'argent public.\nHe was ashamed of having done such a thing.\tIl avait honte de lui d'avoir fait une telle chose.\nHe was granted admission to the university.\tIl fut admis à l'université.\nHe was scared to admit that he didn't know.\tIl avait peur d'admettre qu'il ne savait pas.\nHe was standing at the top of the mountain.\tIl se tenait au sommet de la montagne.\nHe was strict in disciplining his children.\tIl était strict dans l'éducation de ses enfants.\nHe was surrounded by a throng of reporters.\tIl était entouré d'un parterre de journalistes.\nHe who knows the most often says the least.\tCelui qui sait est celui qui, la plupart du temps, en dit le moins.\nHe would not give it up without a struggle.\tIl n'abandonnerait pas cela sans se battre.\nHe would sit and look at the sea for hours.\tIl s'asseyait et regardait la mer pendant des heures.\nHe writes to his mother every now and then.\tIl écrit une lettre à sa mère de temps en temps.\nHe's always breaking into our conversation.\tIl se mêle toujours de notre conversation.\nHe's back from his travels in Central Asia.\tIl est revenu de son voyage en Asie centrale.\nHe's been doing this for over twenty years.\tIl fait ça depuis plus de vingt ans.\nHe's so thin that he looks like a skeleton.\tIl est tellement maigre qu'il ressemble à un squelette.\nHe's what they call a walking encyclopedia.\tIl est ce qu'on appelle « une encyclopédie sur pattes ».\nHealth is an important factor of happiness.\tLa santé est un facteur essentiel du bonheur.\nHer communication skills could be improved.\tSon aptitude à communiquer pourrait être améliorée.\nHer hands are full taking care of the baby.\tSes mains sont occupées à prendre soin du bébé.\nHer unexpected visit got him all worked up.\tSa visite inopinée l'a tout excité.\nHis comments about the book were favorable.\tSes commentaires sur le livre étaient favorables.\nHis failing the test is no laughing matter.\tSon échec à son test n'est pas un sujet de plaisanterie.\nHis family has to live on his small income.\tSa famille doit vivre de son petit revenu.\nHis father had died of cancer 10 years ago.\tSon père est mort du cancer, il y a dix ans.\nHis health has declined since the accident.\tSa santé s'est dégradée depuis l'accident.\nHis income is three times larger than mine.\tSon revenu est trois fois plus élevé que le mien.\nHis knowledge of geography is insufficient.\tSes connaissances en géographie sont insuffisantes.\nHis plane leaves for Hong Kong at 2:00 p.m.\tSon avion part pour Hong Kong à 14 heures.\nHis success was nothing short of a miracle.\tSon succès n'était rien moins qu'un miracle.\nHis teaching methods are highly unorthodox.\tSes méthodes pédagogiques sont peu orthodoxes.\nHis unusual behavior aroused our suspicion.\tSon comportement inhabituel éveilla notre méfiance.\nHold on tight, otherwise you will fall off.\tAccroche-toi fermement, autrement tu vas tomber.\nHold on tight, otherwise you will fall off.\tAccrochez-vous fermement, autrement vous allez tomber.\nHow can I get my toddler to eat vegetables?\tComment puis-je faire en sorte que mon gamin mange des légumes ?\nHow can you contribute to our organisation?\tComment pouvez-vous contribuer à notre organisation ?\nHow do you know I'm not the one who did it?\tComment savez-vous que je ne suis pas celui qui l'a fait ?\nHow do you know I'm not the one who did it?\tComment savez-vous que je ne suis pas celle qui l'a fait ?\nHow do you know I'm not the one who did it?\tComment sais-tu que je ne suis pas celui qui l'a fait ?\nHow do you know I'm not the one who did it?\tComment sais-tu que je ne suis pas celle qui l'a fait ?\nHow is it that you can speak this language?\tComment se fait-il que tu saches parler cette langue　 ?\nHow long have you been waiting for the bus?\tCombien de temps as-tu attendu le bus ?\nHow much did you charge Tom to fix his car?\tCombien as-tu demandé à Tom pour réparer sa voiture ?\nHow much is it including insurance and tax?\tC'est combien, taxe et assurance incluses ?\nHow much longer will the thunderstorm last?\tCombien de temps l'orage va-t-il encore durer ?\nHow's your Christmas shopping coming along?\tComment vont vos achats de Noël?\nI almost forgot to pay my bills last month.\tJ'ai presque oublié de payer mes factures le mois dernier.\nI also use this study for receiving guests.\tJ'emploie également ce bureau pour recevoir des invités.\nI always wear boots when it rains or snows.\tJe porte toujours des bottes lorsqu'il pleut ou qu'il neige.\nI am afraid they can't get along very well.\tJ'ai peur qu'ils ne s'entendent pas très bien.\nI am ashamed about what happened yesterday.\tJ'ai honte de ce qui s'est passé hier.\nI am interested in the cello and the piano.\tJe m'intéresse au violoncelle et au piano.\nI am no longer young, but I can still bite.\tJe ne suis plus jeune, mais je peux encore mordre.\nI am no longer young, but I can still bite.\tJe ne suis plus tout jeune, mais je peux encore mordre.\nI am no longer young, but I can still bite.\tJe ne suis plus toute jeune, mais je peux encore mordre.\nI am tired of listening to his long speech.\tJe suis fatigué d'écouter son long discours.\nI am tired of listening to his long speech.\tJe suis fatiguée d'écouter son long discours.\nI am writing to express my dissatisfaction.\tJ'écris pour exprimer mon insatisfaction.\nI bet you're feeling really good right now.\tJe parie que tu te sens vraiment bien, à l'instant.\nI bet you're feeling really good right now.\tJe parie que vous vous sentez vraiment bien, à l'instant.\nI borrowed this comic book from his sister.\tJ'ai emprunté cette bande dessinée à sa sœur.\nI broke a bone in my foot while exercising.\tJe me suis cassé un os du pied en faisant de l'exercice.\nI can easily convince you of his innocence.\tJe peux facilement vous convaincre de son innocence.\nI can lend you some money if you need some.\tJe peux te prêter un peu d'argent, si tu en as besoin.\nI can lend you some money if you need some.\tJe peux vous avancer un peu d'argent, si vous en avez besoin.\nI can tell by his accent that he is German.\tÀ son accent, je peux dire qu'il est allemand.\nI can't believe you really want to do that.\tJe ne peux pas croire que tu veuilles vraiment faire cela.\nI can't believe you really want to do that.\tJe ne peux pas croire que vous vouliez vraiment faire cela.\nI can't believe you thought I was cheating.\tJe n'arrive pas à croire que vous pensiez que je trichais.\nI can't believe you thought I was cheating.\tJe n'arrive pas à croire que tu pensais que je trichais.\nI can't decide what to eat for lunch today.\tJe n'arrive pas à me décider quoi manger pour le déjeuner aujourd'hui.\nI can't express myself in French very well.\tJe ne peux pas très bien m'exprimer en français.\nI can't forgive him for behaving like that.\tUn tel comportement de sa part est impardonnable.\nI can't hear anything because of the noise.\tJe ne peux pas entendre quoi que ce soit à cause du bruit.\nI can't imagine living without electricity.\tJe ne peux pas imaginer vivre sans électricité.\nI can't make it to your party next weekend.\tJe ne peux pas venir à ta fête le week-end prochain.\nI can't make it to your party next weekend.\tJe ne peux pas venir à votre fête le week-end prochain.\nI can't open the door. Do you have the key?\tJe n'arrive pas à ouvrir la porte. As-tu la clé ?\nI can't tell you how much this means to me.\tJe ne peux pas te dire combien ça signifie pour moi.\nI can't tell you how much this means to me.\tJe ne peux pas vous dire combien ça signifie pour moi.\nI can't tell you how to pronounce the word.\tJe ne sais pas te dire comment prononcer ce mot.\nI can't understand what they were thinking.\tJe n'arrive pas à comprendre ce qu'ils pensaient.\nI can't understand why he left so suddenly.\tJe n'arrive pas à comprendre pourquoi il est parti si soudainement.\nI cannot afford a camera above 300 dollars.\tJe n'ai pas les moyens d'acheter un appareil-photo à plus de 300 dollars.\nI cannot afford a camera above 300 dollars.\tJe ne peux pas me permettre d'acheter un appareil-photo de plus de 300 dollars.\nI caught him stealing pears in the orchard.\tJe l'ai trouvé en train de voler des poires dans le verger.\nI concentrated my attention on the lecture.\tJe concentrai mon attention sur la lecture.\nI concentrated my attention on the lecture.\tJe me concentrais sur le cours.\nI concentrated my attention on the subject.\tJ'ai concentré mon attention sur le sujet.\nI could hear everything the president said.\tJ'ai pu entendre tout ce que le président disait.\nI could hear everything the president said.\tJe pourrais entendre tout ce que le président disait.\nI could kick myself for not bringing a map.\tJe me mettrais des baffes de ne pas avoir apporté une carte.\nI could never forgive myself if I did that.\tJe ne pourrais jamais me pardonner si je faisais cela.\nI could not stand my house being torn down.\tJe ne pouvais pas supporter que ma maison soit détruite.\nI couldn't figure out how to open the door.\tJe ne suis pas parvenu à trouver comment ouvrir la porte.\nI couldn't remember the title of that song.\tJe ne pouvais pas me rappeler le titre de cette chanson.\nI couldn't remember the title of that song.\tJe ne pus me rappeler le titre de cette chanson.\nI couldn't remember the title of that song.\tJe n'ai pas pu me rappeler le titre de cette chanson.\nI deactivated my Twitter account yesterday.\tJ'ai désactivé mon compte Twitter hier.\nI deeply regret having caused the accident.\tJe regrette profondément avoir causé l'accident.\nI did everything I could to be your friend.\tJ'ai fait tout ce que je pouvais pour être votre ami.\nI didn't eat everything that she served me.\tJe n'ai pas mangé tout ce qu'elle m'a servi.\nI didn't know you were that good at French.\tJ'ignorais que vous étiez aussi bon en français.\nI didn't know you were that good at French.\tJ'ignorais que vous étiez aussi bonne en français.\nI didn't know you were that good at French.\tJ'ignorais que vous étiez aussi bonnes en français.\nI didn't know you were that good at French.\tJ'ignorais que vous étiez aussi bons en français.\nI didn't know you were that good at French.\tJ'ignorais que tu étais aussi bon en français.\nI didn't know you were that good at French.\tJ'ignorais que tu étais aussi bonne en français.\nI didn't take it. You can check my pockets.\tJe ne l'ai pas pris. Tu peux vérifier mes poches.\nI didn't take it. You can check my pockets.\tJe ne l'ai pas pris. Vous pouvez vérifier mes poches.\nI didn't take it. You can check my pockets.\tJe ne l'ai pas prise. Tu peux vérifier mes poches.\nI didn't take it. You can check my pockets.\tJe ne l'ai pas prise. Vous pouvez vérifier mes poches.\nI didn't want to spend any more time alone.\tJe ne voulais plus passer de temps seul.\nI didn't want to spend any more time alone.\tJe ne voulais plus passer davantage de temps seul.\nI didn't want to spend any more time alone.\tJe ne voulais plus passer seul davantage de temps.\nI don't approve of your going out with him.\tJe n'approuve pas que tu sortes avec lui.\nI don't have time for a vacation this year.\tJe n'ai pas le temps de partir en vacances cette année.\nI don't know how much longer I can do this.\tJ'ignore combien de temps encore je peux faire ça.\nI don't know how to reply to that question.\tJe ne sais pas comment répondre à cette question.\nI don't know how to reply to that question.\tJe ne sais comment répondre à cette question.\nI don't know the first thing about fishing.\tJe n'ai pas la moindre connaissance en matière de pêche.\nI don't know the reason he is absent today.\tJe ne sais pas la raison pour laquelle il est absent aujourd'hui.\nI don't know what I'm going to do with you.\tJe ne sais ce que je vais faire avec vous.\nI don't know what I'm going to do with you.\tJe ne sais ce que je vais faire de vous.\nI don't know what I'm going to do with you.\tJe ne sais pas ce que je vais faire avec vous.\nI don't know what I'm going to do with you.\tJe ne sais pas ce que je vais faire de vous.\nI don't know what I'm going to do with you.\tJ'ignore ce que je vais faire avec vous.\nI don't know what I'm going to do with you.\tJ'ignore ce que je vais faire de vous.\nI don't know what I'm going to do with you.\tJ'ignore ce que je vais faire avec toi.\nI don't know what I'm going to do with you.\tJ'ignore ce que je vais faire de toi.\nI don't know what I'm going to do with you.\tJe ne sais ce que je vais faire avec toi.\nI don't know what I'm going to do with you.\tJe ne sais pas ce que je vais faire avec toi.\nI don't know what I'm going to do with you.\tJe ne sais ce que je vais faire de toi.\nI don't know what I'm going to do with you.\tJe ne sais pas ce que je vais faire de toi.\nI don't know what the consequences will be.\tJe ne sais pas quelles seront les conséquences.\nI don't know what you're complaining about.\tJe ne sais pas de quoi vous vous plaignez.\nI don't know what you're complaining about.\tJe ne sais pas de quoi tu te plains.\nI don't know what's going to happen to you.\tJe ne sais pas ce qui va t'arriver.\nI don't know what's going to happen to you.\tJe ne sais pas ce qui va vous arriver.\nI don't know what's going to happen to you.\tJ'ignore ce qui va t'arriver.\nI don't know what's going to happen to you.\tJ'ignore ce qui va vous arriver.\nI don't know when my mother will come back.\tJe ne sais pas quand ma maman reviendra.\nI don't know whether I should laugh or cry.\tJ'ignore si je devrais rire ou pleurer.\nI don't know whether to turn left or right.\tJe ne sais pas s'il faut tourner à gauche ou à droite.\nI don't know why I bother repeating myself.\tJe ne sais pas pourquoi je m'embête à me répéter.\nI don't know why you didn't tell the truth.\tJ'ignore pourquoi vous n'avez pas dit la vérité.\nI don't know why you didn't tell the truth.\tJ'ignore pourquoi tu n'as pas dit la vérité.\nI don't like this tie. Show me another one.\tJe n'aime pas cette cravate. Montrez-m'en une autre.\nI don't need whatever it is you're selling.\tJe n'ai pas besoin de quoi que ce soit que vous vendiez.\nI don't plan on being a waiter all my life.\tJe ne prévois pas d'être serveur toute ma vie.\nI don't really want to talk about this now.\tJe ne veux pas vraiment en discuter maintenant.\nI don't recognize over half of these names.\tJe ne reconnais pas plus de la moitié de ces noms.\nI don't remember getting paid for the work.\tJe ne me rappelle pas avoir été payé pour le travail.\nI don't remember how we ended up in Boston.\tJe ne me souviens pas comment nous avons finis à Boston.\nI don't remember when this photo was taken.\tJe ne me rappelle pas quand cette photo a été prise.\nI don't see what you're so concerned about.\tJe ne vois pas ce qui te préoccupe tant.\nI don't see what you're so concerned about.\tJe ne vois pas ce qui vous préoccupe tant.\nI don't think I'm the only one who noticed.\tJe ne pense pas être le seul à avoir remarqué.\nI don't think we want to go down that road.\tJe ne pense pas que nous voulions prendre cette direction.\nI don't understand this obsession of yours.\tJe ne comprends pas cette obsession que tu as.\nI don't understand this obsession of yours.\tJe ne comprends pas cette obsession que vous avez.\nI don't understand what she wants me to do.\tJe ne comprends pas ce qu'elle veut que je fasse.\nI don't understand why this has to be done.\tJe ne comprends pas pourquoi ceci doit être fait.\nI don't want to be involved in that matter.\tJe ne veux pas être impliqué dans cette histoire.\nI don't want to be involved in this affair.\tJe ne veux pas être impliqué dans cette affaire.\nI don't want to get bogged down in details.\tJe ne veux pas me perdre en détails.\nI don't want to go if you don't go with me.\tJe ne veux pas y aller si tu n'y vas pas avec moi.\nI don't want to go if you don't go with me.\tJe ne veux pas y aller si tu ne viens pas avec moi.\nI don't want to hear another word about it!\tJe ne veux pas entendre un mot de plus à ce sujet !\nI don't yet know what we're supposed to do.\tJe ne sais pas encore ce que nous sommes supposés faire.\nI don't yet know what we're supposed to do.\tJe ne sais pas encore ce que nous sommes supposées faire.\nI eat lunch here two or three times a week.\tJe déjeune ici deux ou trois fois par semaine.\nI felt very relieved when I heard the news.\tJe me sentis très soulagé lorsque j'entendis les nouvelles.\nI felt very relieved when I heard the news.\tJe me suis senti très soulagée lorsque j'ai entendu les nouvelles.\nI felt very relieved when I heard the news.\tJe me suis senti très soulagé lorsque j'ai entendu les nouvelles.\nI felt very relieved when I heard the news.\tJe me sentis très soulagée lorsque j'entendis les nouvelles.\nI forgot to attach a stamp to the envelope.\tJ’ai oublié de mettre un timbre sur l’enveloppe.\nI found a rare book I had been looking for.\tJ'ai trouvé un livre rare que j'avais recherché.\nI found it difficult to get along with him.\tJe trouvai difficile de m'entendre avec lui.\nI gave him what little money I had with me.\tJe lui ai donné le peu d'argent que j'avais sur moi.\nI get a lot of satisfaction out of my work.\tJe retire beaucoup de satisfactions de mon travail.\nI got all tongue-tied when she spoke to me.\tJe devins complètement muet lorsqu'elle me parla.\nI guess Tom wasn't really Mary's boyfriend.\tJ'imagine que Tom n'était pas vraiment le petit ami de Mary.\nI had a bad cold and was in bed for a week.\tJ'ai eu un mauvais rhume et ai été alité durant une semaine.\nI had a bad cold and was in bed for a week.\tJ'ai eu un mauvais rhume et ai été alitée durant une semaine.\nI had a dentist's appointment this morning.\tJ'avais un rendez-vous chez le dentiste, ce matin.\nI had a dentist's appointment this morning.\tJ'ai eu un rendez-vous chez le dentiste, ce matin.\nI had a lot of money, but spent everything.\tJe disposais de beaucoup d'argent, mais j'ai tout dépensé.\nI had a premonition that this would happen.\tJ'ai eu une prémonition que ça arriverait.\nI had a premonition that this would happen.\tJ'ai eu une prémonition que ça aurait lieu.\nI had a raincoat on so I didn't get so wet.\tJe portais un imperméable, donc je ne me suis pas tellement mouillé.\nI had a raincoat on so I didn't get so wet.\tJe portais un imperméable, donc je ne me suis pas tellement mouillée.\nI had a really great time with your family.\tJ'ai vraiment passé du bon temps avec votre famille.\nI had a really great time with your family.\tJ'ai vraiment passé du bon temps avec ta famille.\nI had no idea you knew how to play mahjong.\tJe n'avais pas idée que vous saviez jouer au mah-jong.\nI had no idea you knew how to play mahjong.\tJe n'avais pas idée que tu savais jouer au mah-jong.\nI had some things to do before the meeting.\tJ'ai eu des choses à faire avant la réunion.\nI had some trouble figuring out the answer.\tJ'ai eu du mal à trouver la réponse.\nI had some work that needed to be finished.\tJ'ai eu du travail qu'il fallait finir.\nI had the same problem when I was your age.\tJ'ai eu le même problème à ton âge.\nI had the same problem when I was your age.\tJ'ai eu le même problème lorsque j'avais ton âge.\nI had the same problem when I was your age.\tJ'ai eu le même problème à votre âge.\nI had the same problem when I was your age.\tJ'ai eu le même problème lorsque j'avais votre âge.\nI had to drop out of college and get a job.\tJ'ai dû abandonner la fac et prendre un boulot.\nI have a friend whose father is a magician.\tJ'ai un ami dont le père est magicien.\nI have an appointment with my lawyer today.\tJ'ai rendez-vous avec mon avocat aujourd'hui.\nI have an ever growing list of to-do items.\tJ'ai une liste toujours croissante de tâches à faire.\nI have an ever growing list of to-do items.\tJ'ai une liste toujours croissante de tâches à effectuer.\nI have been studying French four years now.\tJ'étudie le français depuis quatre ans maintenant.\nI have been waiting for an hour and a half.\tJ'ai attendu une heure et demie.\nI have been working since six this morning.\tJe travaille depuis six heures ce matin.\nI have left my umbrella in the phone booth.\tJ'ai laissé le parapluie dans la cabine téléphonique.\nI have made many sacrifices for my country.\tJ'ai accompli de nombreux sacrifices pour mon pays.\nI have no money to buy the dictionary with.\tJe n'ai pas d'argent pour acheter un dictionnaire.\nI have read three books since this morning.\tJ'ai lu trois livres depuis ce matin.\nI have something that I want to say to him.\tJ'ai quelque chose à lui dire.\nI have ten times as many books as you have.\tJ'ai dix fois plus de livres que tu en as.\nI have to make the best of that small room.\tJe dois tirer le meilleur parti de cette petite pièce.\nI have to study for tomorrow's French test.\tJe dois étudier pour le contrôle de français de demain.\nI have to take my medicine every six hours.\tJe dois prendre mon médicament toutes les six heures.\nI have to talk with him about the new plan.\tJe dois lui parler du nouveau plan.\nI have to withdraw some cash from the bank.\tJe dois retirer un peu de liquide à la banque.\nI heard someone calling me from a distance.\tJ'ai entendu quelqu'un m'appeler de loin.\nI hope I can manage to make both ends meet.\tJ'espère pouvoir joindre les deux bouts.\nI hope that what you are eating is healthy.\tJ'espère que ce que vous mangez est sain.\nI hope that what you are eating is healthy.\tJ'espère que ce que vous êtes en train de manger est sain.\nI hope that what you are eating is healthy.\tJ'espère que ce que tu manges est sain.\nI hope that what you are eating is healthy.\tJ'espère que ce que tu es en train de manger est sain.\nI hope we'll see each other again sometime.\tJ'espère que nous nous reverrons un jour.\nI hope you will have a good time in Europe.\tJ'espère que tu passeras un bon moment en Europe.\nI just don't want to be disappointed again.\tJe ne veux tout simplement pas être à nouveau déçu.\nI just don't want to be disappointed again.\tJe ne veux tout simplement pas être à nouveau déçue.\nI just don't want to be disappointed again.\tJe ne veux pas être à nouveau déçu, un point c'est tout.\nI just don't want to be disappointed again.\tJe ne veux pas être à nouveau déçue, un point c'est tout.\nI just learned six new facts about wombats.\tJe viens d'apprendre six nouvelles choses à propos des wombats.\nI just said I didn't want to talk about it.\tJe viens de dire que je ne voulais pas en parler.\nI just said I didn't want to talk about it.\tJ'ai simplement dit que je ne voulais pas en parler.\nI just saw some things I couldn't identify.\tJ'ai simplement vu des choses que je n'ai pas pu identifier.\nI just want to keep things nice and simple.\tJe veux juste faire en sorte que le choses soient chouettes et simples.\nI just wanted to tell you how pleased I am.\tJe voulais juste vous dire combien j'étais satisfait.\nI just wanted to tell you how pleased I am.\tJe voulais juste te dire combien j'étais satisfait.\nI just wanted to tell you how pleased I am.\tJe voulais juste vous dire combien j'étais satisfaite.\nI just wanted to tell you how pleased I am.\tJe voulais juste te dire combien j'étais satisfaite.\nI knew all along that he was telling a lie.\tJe savais depuis le début qu'il disait un mensonge.\nI knocked on the door, but nobody answered.\tJe frappai à la porte, mais personne ne répondit.\nI know a lot of people don't agree with me.\tJe sais que beaucoup de gens ne sont pas d'accord avec moi.\nI know what Tom and Mary are going through.\tJe sais ce que traversent Tom et Mary.\nI know what Tom and Mary are going through.\tJe sais ce que Tom et Mary traversent.\nI like meat, but eggs do not agree with me.\tJ'aime la viande, mais les œufs sont indigestes pour moi.\nI like music, particularly classical music.\tJ'aime la musique et plus particulièrement la musique classique.\nI like to play music written by my friends.\tJ'aime interpréter de la musique écrite par mes amis.\nI live miles away from the nearest station.\tJ'habite à des kilomètres de la gare la plus proche.\nI love him more than any of the other boys.\tJe l'aime plus qu'aucun des autres garçons.\nI made a big mistake when choosing my wife.\tJ'ai commis une grosse erreur en choisissant ma femme.\nI met my teacher on the way to the station.\tJe suis tombé sur mon professeur en allant à la gare.\nI met my teacher on the way to the station.\tJ'ai rencontré mon professeur sur le chemin de la gare.\nI missed seeing that movie. Did you see it?\tJ'ai loupé ce film. L'as-tu vu ?\nI missed seeing that movie. Did you see it?\tJ'ai loupé ce film. L'avez-vous vu ?\nI need a lot of cloth to make a long dress.\tJ'ai besoin de beaucoup d'étoffe pour confectionner une robe longue.\nI never realized how much I would miss you.\tJe n'ai jamais pris conscience de combien tu me manquerais.\nI never realized how much I would miss you.\tJe n'ai jamais pris conscience de combien vous me manqueriez.\nI noticed that I had slept past my station.\tJe m'aperçus que je m'étais endormi et que j'avais raté mon arrêt.\nI now view life differently than I used to.\tJe vois désormais la vie différemment de ce que je le faisais auparavant.\nI often recall my happy childhood memories.\tJe me remémore souvent mes heureux souvenirs d'enfance.\nI only have one mouth, but I have two ears.\tJe n'ai qu'une bouche, mais j'ai deux oreilles.\nI overslept because my alarm didn't go off.\tJ'ai continué à dormir parce que mon alarme n'a pas sonné.\nI prefer white chocolate to dark chocolate.\tJe préfère le chocolat blanc au chocolat noir.\nI promised myself I wouldn't do this again.\tJe me promis que je ne le ferais plus.\nI promised myself I wouldn't do this again.\tJe me suis promis que je ne le ferais plus.\nI promised myself I wouldn't do this again.\tJe me promis de ne plus le faire.\nI promised myself I wouldn't do this again.\tJe me suis promis de ne plus le faire.\nI read an interesting article this morning.\tJ'ai lu un article intéressant ce matin.\nI read five different magazines each month.\tJe lis cinq différents types de magazine chaque mois.\nI read this book when I was in high school.\tJ'ai lu ce livre quand j'étais au lycée.\nI really can't understand modern sculpture.\tJe ne comprends vraiment pas la sculpture moderne.\nI really don't feel like talking right now.\tJe n'éprouve vraiment pas l'envie de parler en ce moment.\nI recognize that what he says is the truth.\tJe reconnais que ce qu'il dit est la vérité.\nI refuse to be treated like a slave by you.\tJe refuse que tu me traites comme une esclave.\nI remember the day you were born very well.\tJe me souviens fort bien du jour de ta naissance.\nI remember the day you were born very well.\tJe me rappelle très bien le jour de ta naissance.\nI saw a figure approaching in the distance.\tJ'ai vu une silhouette s'approcher.\nI saw the person I expected standing there.\tJe vis la personne que j'attendais se tenir là.\nI should have been watching more carefully.\tJ'aurais dû regarder plus attentivement.\nI should have paid a little more attention.\tJ'aurais dû faire un peu plus attention.\nI should have talked to you first about it.\tJ'aurais dû vous en parler en premier.\nI should have talked to you first about it.\tJ'aurais dû t'en parler en premier.\nI should not have stayed up late yesterday.\tJe n'aurais pas dû rester debout tard hier.\nI shouldn't have to put up with this noise.\tJe ne devrais pas avoir à supporter ce bruit.\nI spent the whole day in reading the novel.\tJ'ai passé la journée entière à lire le roman.\nI spent the whole day in reading the novel.\tJ'ai passé toute la journée à lire ce roman.\nI spoke to him about it over the telephone.\tJe lui en ai parlé au téléphone.\nI still don't understand how this happened.\tJe ne comprends toujours pas comment c'est arrivé.\nI study French with Tom three times a week.\tJ'étudie le français avec Tom trois fois par semaine.\nI suddenly realized that my watch was gone.\tSoudain j'ai remarqué que ma montre avait disparu.\nI think I can solve this problem by myself.\tJe pense pouvoir résoudre ce problème par mes propres moyens.\nI think I can solve this problem by myself.\tJe pense pouvoir résoudre ce problème par moi-même.\nI think Tom knows more than he's admitting.\tJe pense que Tom en sait plus qu'il ne l'admet.\nI think it's impossible for us to beat him.\tJe pense qu'il nous est impossible de le battre.\nI think it's necessary for him to go there.\tJe pense qu'il est nécessaire pour lui d'aller là -bas.\nI think it's time for me to do my homework.\tJe pense qu'il est temps pour moi de faire mes devoirs.\nI think it's time for me to join the fight.\tJe pense qu'il est temps pour moi de me joindre à la lutte.\nI think maybe Tom has something else to do.\tJe pense que Tom a autre chose à faire.\nI think she is sick. She has a temperature.\tJe pense qu'elle est malade. Elle a la fièvre.\nI think something may have happened to Tom.\tJe pense qu'il est peut-être arrivé quelque chose à Tom.\nI think that I'm not academically oriented.\tJe pense que je ne suis pas fait pour les études.\nI think this sweater will look good on you.\tJe pense que ce sweat t'ira bien.\nI think we'd better ask Tom what he thinks.\tJe pense que nous devrions demander à Tom ce qu'il en pense.\nI think we're looking for different things.\tJe pense que nous recherchons des choses différentes.\nI think we've already wasted too much time.\tJe pense que nous avons déjà gaspillé trop de temps.\nI think you're the only one who needs help.\tJe pense que tu es le seul à avoir besoin d'aide.\nI thought about resigning from the company.\tJ'ai songé à démissionner de l'entreprise.\nI thought we had until 2:30 to finish this.\tJe pensais que nous avions jusqu'à quatorze heures trente pour terminer ceci.\nI thought you wouldn't mind waiting for me.\tJe pensais que ça ne te dérangerait pas de m'attendre.\nI thought you wouldn't mind waiting for me.\tJe pensais que ça ne vous dérangerait pas de m'attendre.\nI told you to open the hood, not the trunk.\tJe t'ai dit d'ouvrir le toit, pas le coffre.\nI took the opportunity to visit the museum.\tJ'ai profité de l'occasion pour visiter le musée.\nI tried my best, but I still lost the race.\tJ'ai fait de mon mieux, mais j'ai tout de même perdu la course.\nI used to play tennis when I was a student.\tJe jouais au tennis quand j'étais étudiant.\nI waited for an hour, but he didn't appear.\tJ'ai attendu pendant une heure, mais il n'est pas apparu.\nI want a licensed guide who speaks English.\tJ'aimerais un guide officiel qui sache parler anglais.\nI want it delivered to me by noon tomorrow.\tJe veux que ce me soit livré pour demain midi.\nI want to do everything I'm expected to do.\tJe veux faire tout ce que je suis censé faire.\nI want to exchange this for a smaller size.\tJe voudrais l'échanger contre une plus petite taille.\nI want to follow you wherever you're going.\tJe veux vous suivre où que vous alliez.\nI want to know more about your school life.\tJe veux en savoir plus à propos de votre vie d'étudiant.\nI want to show you something in the office.\tJe veux vous montrer quelque chose dans le bureau.\nI want to show you something in the office.\tJe veux te montrer quelque chose dans le bureau.\nI want to stay in a hotel near the airport.\tJe veux séjourner dans un hôtel près de l'aéroport.\nI want you all to be on your best behavior.\tJ'aimerais que vous soyez tous bien sages.\nI was a fool for marrying someone like her.\tJ'étais un idiot d'avoir épousé quelqu'un comme elle.\nI was able to visit several American homes.\tJ'ai pu visiter plusieurs maisons américaines.\nI was at the hospital a couple of days ago.\tJ'étais à l'hôpital il y a quelques jours.\nI was conscious that something was missing.\tJ'avais conscience qu'il manquait quelque chose.\nI was in the right place at the right time.\tJe me trouvais au bon endroit au bon moment.\nI was in the right place at the right time.\tJe me suis trouvé au bon endroit au bon moment.\nI was not conscious of a man looking at me.\tJe n'avais pas conscience qu'un homme me regardait.\nI was rereading the letters you sent to me.\tJe relisais les lettres que tu m'as envoyées.\nI will be leaving for Australia next month.\tJe partirai pour l'Australie le mois prochain.\nI will be through with the book in no time.\tJ'en aurai fini avec le livre en un rien de temps.\nI will get you a bicycle for your birthday.\tJe t'offrirai un vélo pour ton anniversaire.\nI will get you a bicycle for your birthday.\tJe te dégoterai un vélo pour ton anniversaire.\nI will take such action as seems necessary.\tJe prendrai toutes les mesures qui paraissent nécessaires.\nI will take the one that is more expensive.\tJe prendrai le plus cher.\nI will tell her what to say at the meeting.\tJe lui dirai quoi dire à la réunion.\nI will try to live up to your expectations.\tJ'essaierai d'être à la hauteur de vos attentes.\nI will visit my uncle in Kyoto this summer.\tJ'irai rendre visite à mon oncle à Kyoto cet été.\nI wish I'd studied harder when I was young.\tSi seulement j'avais étudié plus dur quand j'étais jeune.\nI wish the fedora would come back in style.\tJ'aimerais que le chapeau mou revienne à la mode.\nI wish you had done what I asked you to do.\tJ'aurais aimé que tu fasses ce que je t'ai demandé de faire.\nI wonder how much time we've wasted so far.\tJe me demande combien de temps nous avons gâché jusqu'à présent.\nI wonder what has made him change his mind.\tJe me demande ce qui a pu le faire changer d'avis.\nI wonder what the weather will be tomorrow.\tJe me demande comment le temps sera demain.\nI worked hard all day, so I was very tired.\tJ'avais travaillé dur toute la journée, donc j'étais très fatigué.\nI would like to repay him for his kindness.\tJ'aimerais lui rendre la pareille pour sa gentillesse.\nI would prefer that you didn't submit this.\tJe préférerais que tu ne soumettes pas cela.\nI'd be curious to know what Tom has to say.\tJe serais curieux de savoir ce que Tom a à dire.\nI'd be delighted if you could come with us.\tJe serais ravi que tu puisses venir avec nous.\nI'd be delighted if you could come with us.\tJe serais ravie que tu puisses venir avec nous.\nI'd be delighted if you could come with us.\tJe serais ravi que vous puissiez venir avec nous.\nI'd be delighted if you could come with us.\tJe serais ravie que vous puissiez venir avec nous.\nI'd like to buy two 45-cent stamps, please.\tJe voudrais acheter deux timbres à 45 cents s'il vous plaît.\nI'd like to hire someone who speaks French.\tJ'aimerais engager quelqu'un qui parle français.\nI'd like to make a reservation for tonight.\tJe voudrais faire une réservation pour ce soir.\nI'd like to make some changes in the draft.\tJe souhaiterais apporter des modifications au document de travail.\nI'll be glad to drink a glass of champagne.\tJe serai heureux de boire un verre de Champagne.\nI'll be grateful if you can do that for me.\tJe serai reconnaissant si vous pouvez le faire pour moi.\nI'll be presenting a paper at a conference.\tJe présenterai un article à une conférence.\nI'll be waiting for you at the usual place.\tJe t'attendrai au même endroit que d'habitude.\nI'll do my very best not to disappoint you.\tJe ferai de mon mieux pour ne pas vous décevoir.\nI'll do my very best not to disappoint you.\tJe ferai de mon mieux pour ne pas te décevoir.\nI'll get him to carry my suitcase upstairs.\tJe vais lui faire porter ma valise à l'étage.\nI'll go tell the others what we need to do.\tJe vais dire aux autres ce que nous devons faire.\nI'll have to catch the 8:15 train to Paris.\tJe dois prendre le train de 8 h 15 pour Paris.\nI'll have to catch the 8:15 train to Paris.\tJe dois attraper le train de 8h 15 pour Paris.\nI'll let you know when it has been decided.\tJe te ferais savoir quand ça sera décidé.\nI'll meet you down at the station tomorrow.\tJe te verrai à la gare demain.\nI'll never forget going to Hawaii with her.\tJe n'oublierai jamais la fois où je suis allé à Hawaï avec elle.\nI'll speak to him at the first opportunity.\tJe lui parlerai à la première occasion.\nI'll teach you everything you need to know.\tJe t'enseignerai tout ce que tu as besoin de savoir.\nI'll teach you everything you need to know.\tJe t'apprendrai tout ce que tu as besoin de connaître.\nI'll teach you everything you need to know.\tJe vous enseignerai tout ce que vous avez besoin de savoir.\nI'll teach you everything you need to know.\tJe vous apprendrai tout ce que vous avez besoin de connaître.\nI'll visit you sometime in the near future.\tJe te rendrai visite un jour dans le futur proche.\nI'll visit you sometime in the near future.\tJe vous rendrai visite un jour dans le futur proche.\nI'm afraid I differ with you on this point.\tJ'ai bien peur de ne pas être du même avis que toi sur ce point.\nI'm afraid she won't accept my explanation.\tJ'ai peur qu'elle n'accepte pas mon explication.\nI'm breaking up with my girlfriend tonight.\tJe romps ce soir avec ma petite amie.\nI'm breaking up with my girlfriend tonight.\tJe romps ce soir avec ma petite copine.\nI'm breaking up with my girlfriend tonight.\tJe romps ce soir avec ma nana.\nI'm certain that I'll win the tennis match.\tJe suis sûre de remporter le match de tennis.\nI'm economically independent of my parents.\tJe suis financièrement indépendant de mes parents.\nI'm getting a master's degree in education.\tJ'obtiens un diplôme supérieur en éducation.\nI'm getting off the train at the next stop.\tJe descends du train à la prochaine station.\nI'm getting tired. It's your turn to drive.\tJe commence à m'endormir. C'est à ton tour de conduire.\nI'm going to have to cancel my appointment.\tJe vais devoir annuler mon rendez-vous.\nI'm in no mood to argue politics right now.\tJe ne suis pas d'humeur à débattre de politique, là, maintenant.\nI'm just not cut out for this kind of work.\tJe ne suis simplement pas taillé pour ce genre de travail.\nI'm just writing a letter to my girlfriend.\tJ'écris juste une lettre à ma petite amie.\nI'm just writing a letter to my girlfriend.\tJ'écris juste une lettre à ma copine.\nI'm looking forward to the summer vacation.\tJ'ai hâte que les vacances d'été arrivent.\nI'm not certain we can get tickets tonight.\tJe ne suis pas certain que nous puissions obtenir des billets ce soir.\nI'm not even sure I want to see that movie.\tJe ne suis même pas sûr de vouloir voir ce film.\nI'm not even sure I want to see that movie.\tJe ne suis même pas sûre de vouloir voir ce film.\nI'm not going to send Tom a Christmas card.\tJe ne vais pas envoyer une carte de Noël à Tom.\nI'm not permitted to discuss that with you.\tJe suis pas autorisé à parler de ça avec vous.\nI'm planning to stay at the Hillside Hotel.\tJ'envisage de rester à l'hôtel Hillside.\nI'm pretty sure that Tom doesn't like Mary.\tJe suis presque certain que Tom n'aime pas Marie.\nI'm pretty sure that Tom doesn't like Mary.\tJe suis presque certaine que Tom n'aime pas Marie.\nI'm right in the middle of doing something.\tJe suis en plein en train de faire quelque chose.\nI'm seriously considering moving to Boston.\tJe pense sérieusement à déménager à Boston.\nI'm sorry if my being here embarrasses you.\tJe suis désolé si ma présence vous embarrasse.\nI'm sorry if my being here embarrasses you.\tJe suis désolée si ma présence vous embarrasse.\nI'm sorry if my being here embarrasses you.\tJe suis désolé si ma présence t'embarrasse.\nI'm sorry if my being here embarrasses you.\tJe suis désolée si ma présence t'embarrasse.\nI'm sorry, but I already have a girlfriend.\tJe suis désolé, mais j'ai déjà une petite amie.\nI'm sorry, but I already have a girlfriend.\tJe suis désolé, mais j'ai déjà une petite copine.\nI'm sorry, but I already have a girlfriend.\tJe suis désolée, mais j'ai déjà une petite amie.\nI'm sorry, but I already have a girlfriend.\tJe suis désolée, mais j'ai déjà une petite copine.\nI'm sorry, but I already have a girlfriend.\tJe suis désolé, mais j'ai déjà une nana.\nI'm sorry, but I can't eat dinner with you.\tDésolé, mais je ne peux pas dîner avec vous.\nI'm sorry, but you're not allowed to enter.\tJe suis désolé, mais vous n'êtes pas autorisé à entrer.\nI'm the spokesperson for this organization.\tJe suis le porte-parole de cette organisation.\nI'm the spokesperson for this organization.\tJe suis le porte-parole de cette institution.\nI'm too tired to ride my bicycle back home.\tJe suis trop fatigué pour rentrer chez moi en vélo.\nI'm washing my hands because they're dirty.\tJe me lave les mains car elles sont sales.\nI'm willing to try eating anything you eat.\tJe suis prêt à essayer de manger tout ce que tu manges.\nI've already found somebody to do that job.\tJ'ai déjà trouvé quelqu'un pour faire ce boulot.\nI've already found somebody to do that job.\tJ'ai déjà trouvé quelqu'un pour accomplir ce boulot.\nI've already told Tom he can borrow my car.\tJ'ai déjà dit à Tom qu'il pouvait emprunter ma voiture.\nI've already written my part of the report.\tJ'ai déjà écrit ma part du rapport.\nI've been asking myself that same question.\tJe me posais la même question.\nI've been saving up to buy a new saxophone.\tJ'économise pour m'acheter un nouveau saxophone.\nI've been searching for my puppy for weeks.\tÇa fait des semaines que je cherche mon chiot.\nI've been thinking about it the entire day.\tJ'y ai songé toute la journée.\nI've got a job and I don't want to lose it.\tJ'ai un boulot et ne veux pas le perdre.\nI've made a list of foods that I can't eat.\tJ'ai fait une liste des aliments que je ne peux pas manger.\nI've made a list of things I'd like to buy.\tJ'ai dressé une liste des choses que je voudrais bien acheter.\nI've never come across such a strange case.\tJe ne suis jamais tombé sur un cas aussi étrange.\nI've never come across such a strange case.\tJe n'ai jamais rencontré un cas aussi étrange.\nI've never eaten anything like this before.\tJe n'ai jamais mangé quelque chose de semblable auparavant.\nI've never heard English spoken so quickly.\tJe n'ai jamais entendu parler anglais si vite.\nI've never seen Tom behave this way before.\tJe n'ai jamais vu Tom se comporter comme cela avant.\nI've never seen Tom behave this way before.\tJe n'ai jamais vu Tom se comporter de cette façon auparavant.\nI've worn out two pairs of shoes this year.\tJ'ai usé deux paires de chaussures cette année.\nIMF stands for International Monetary Fund.\tFMI signifie \"Fonds Monétaire International\".\nIf I were in your place, I would not do so.\tSi j'étais à ta place, je ne ferais pas cela.\nIf I were in your place, I would not do so.\tSi j'étais à votre place, je ne ferais pas ainsi.\nIf a brain can do it, a computer can do it.\tSi un cerveau le peut, un ordinateur le peut.\nIf he studied hard, he would pass the test.\tS'il travaillait dur, il pourrait avoir son examen.\nIf he'd known the truth, he'd have told me.\tS'il avait connu la vérité, il me l'aurait dite.\nIf it snows tomorrow, I'll build a snowman.\tS'il neige demain, je ferai un bonhomme de neige.\nIf it was easy, it wouldn't be a challenge.\tSi c'était facile, ce ne serait pas un défi.\nIf the phone rings again, I will ignore it.\tSi le téléphone sonne encore, je n'y répondrais pas.\nIf you don't want to go, you don't have to.\tSi tu ne veux pas y aller, tu n'y es pas obligé.\nIf you don't want to go, you don't have to.\tSi tu ne veux pas y aller, tu n'y es pas obligée.\nIf you don't want to go, you don't have to.\tSi vous ne voulez pas y aller, vous n'y êtes pas obligé.\nIf you don't want to go, you don't have to.\tSi vous ne voulez pas y aller, vous n'y êtes pas obligée.\nIf you don't want to go, you don't have to.\tSi vous ne voulez pas y aller, vous n'y êtes pas obligés.\nIf you don't want to go, you don't have to.\tSi vous ne voulez pas y aller, vous n'y êtes pas obligées.\nIf you give him an inch, he'll take a mile.\tDonnez-lui la main, il vous prendra le bras.\nIf you keep trying, you will make progress.\tSi tu n'arrêtes pas d'essayer, tu feras des progrès.\nIf you mix blue and red, you'll get purple.\tSi on mélange du bleu et du rouge, on obtient du violet.\nIf you touch that wire, you'll get a shock.\tSi vous touchez ce câble, vous recevrez une décharge.\nIf you touch that wire, you'll get a shock.\tSi tu touches ce fil, tu recevras une décharge.\nIf you want to succeed, use your time well.\tSi vous voulez réussir, gérez bien votre temps.\nIf you were in my place, what would you do?\tQu'est-ce que tu ferais à ma place ?\nIf you were in my place, what would you do?\tQu'est-ce que vous feriez à ma place ?\nIf you were in my place, what would you do?\tQue feriez-vous si vous étiez à ma place ?\nIf you were in my place, what would you do?\tQue feriez-vous à ma place ?\nIllness prevented me from coming to school.\tLa maladie m'a empêché d'aller à l'école.\nIn Japan a new school year starts in April.\tAu Japon, la nouvelle année scolaire commence en avril.\nIn any case, I'll inform you when he comes.\tEn tout cas, je vous informerai lorsqu'il vient.\nIn general, little girls are fond of dolls.\tEn général, les petites filles adorent les poupées.\nIn general, young people dislike formality.\tLes jeunes ont en général une aversion pour les formalités.\nIn the fall, many birds head for the south.\tÀ l'automne, beaucoup d'oiseaux migrent vers le sud.\nIn the first place, you should be punctual.\tAvant tout, soyez ponctuel !\nIs it necessary for me to attend the party?\tDois-je nécessairement me rendre à la fête ?\nIs it true that you weren't here yesterday?\tEst-il vrai que vous n'étiez pas là hier ?\nIs it true that you weren't here yesterday?\tEst-il vrai que tu n'étais pas là hier ?\nIs the cat on the chair or under the chair?\tEst-ce que le chat est sur la chaise ou sous la chaise ?\nIs the cat on the chair or under the chair?\tLe chat est-il sur ou sous la chaise ?\nIs there anyone who can speak Chinese here?\tY a-t-il quelqu'un qui parle mandarin, ici ?\nIsn't anybody going to say congratulations?\tPersonne ne va-t-il me féliciter ?\nIsn't anybody going to say congratulations?\tPersonne ne va-t-il nous féliciter ?\nIt certainly feels like it's going to rain.\tOn dirait vraiment qu'il va pleuvoir.\nIt doesn't matter whether he agrees or not.\tCela n'a pas d'importance qu'il soit d'accord ou pas.\nIt doesn't matter which team wins the game.\tPeu importe quelle équipe gagne le match.\nIt happens more often than you would think.\tCela arrive plus souvent que tu ne le penserais.\nIt happens more often than you would think.\tCela arrive plus souvent que vous ne le penseriez.\nIt is a pity that he has no sense of humor.\tIl est dommage qu'il n'ait aucun sens de l'humour.\nIt is completely natural for her to be mad.\tIl est tout naturel qu'elle soit en colère.\nIt is difficult to prove that ghosts exist.\tC'est difficile de prouver l'existence des fantômes.\nIt is doubtful whether he will come or not.\tC'est à se demander s'il viendra ou non.\nIt is high time you started a new business.\tIl est grand temps que tu démarres une nouvelle affaire.\nIt is high time you started a new business.\tIl est grand temps que vous entrepreniez une nouvelle affaire.\nIt is impossible for him to do it in a day.\tIl lui est impossible de faire ça en une journée.\nIt is more blessed to give than to receive.\tDonner rend plus heureux que recevoir.\nIt is no exaggeration to call him a genius.\tCe n'est pas une exagération d'affirmer que c'est un génie.\nIt is not easy to find the way to the park.\tCe n'est pas facile de trouver son chemin pour aller au parc.\nIt is not easy to learn a foreign language.\tIl n'est pas facile d'apprendre une langue étrangère.\nIt is not my intent to hurt you in any way.\tIl n'est pas dans mon intention de vous blesser le moins du monde.\nIt is not my intent to hurt you in any way.\tIl n'est dans mon intention de te blesser d'aucune manière.\nIt is possible that he has had an accident.\tIl est possible qu'il ait eu un accident.\nIt is up to me to tell the sad news to her.\tIl me revient de lui annoncer la triste nouvelle.\nIt may have been Tom who broke this window.\tC'est peut être Tom qui a cassé cette fenêtre.\nIt seems like I'm going to have a hard day.\tIl semble que je vais avoir une journée difficile.\nIt seems like it might rain this afternoon.\tIl semble qu'il puisse pleuvoir cette après-midi.\nIt seems that Tom is upset about something.\tIl semble que Tom est contrarié par quelque chose.\nIt seems those two are made for each other.\tIl semble que ces deux-là sont faits l'un pour l'autre.\nIt so happened that I had no money with me.\tIl se trouva que je n'avais point d'argent sur moi.\nIt so happened that I had no money with me.\tIl se trouva que je n'avais pas d'argent avec moi.\nIt took Rei 20 days to get over her injury.\tIl a fallu 20 jours à Rei pour se remettre de sa blessure.\nIt took me three hours to write the letter.\tCela m'a pris trois heures pour écrire cette lettre.\nIt took us half an hour to set up the tent.\tIl nous a fallu une demi-heure pour monter la tente.\nIt was a shock to hear about Tom's divorce.\tCe fut un choc d'apprendre le divorce de Tom.\nIt was a vase that my son broke last night.\tC'était un vase que mon fils a cassé la nuit dernière.\nIt was childish of him to behave like that.\tC'était très immature de sa part de se comporter ainsi.\nIt was hard for me to turn down his demand.\tIl m'a été difficile de rejeter sa revendication.\nIt was him that broke the window yesterday.\tC'est lui qui a cassé la fenêtre hier.\nIt was stupid of me to make such a mistake.\tC'était stupide de ma part de faire une telle erreur.\nIt was ten degrees below zero this morning.\tIl faisait moins dix ce matin.\nIt wasn't easy for him to keep his promise.\tCe n'était pas facile pour lui de tenir sa promesse.\nIt will cost you $100 to fly to the island.\tCela te coutera 100$ pour un vol vers l'île.\nIt won't be long before he is up and about.\tIl ne va pas tarder à se lever.\nIt won't be long before he is up and about.\tIl ne tardera pas à être sur pieds.\nIt would be better for you to speak to him.\tIl vaudrait mieux pour toi que tu lui parles.\nIt would be nice if you helped me a little.\tCela aurait été gentil si tu m'avais un peu aidé.\nIt's a bit strange as far as I'm concerned.\tC'est un peu étrange, selon moi.\nIt's a rainy day, so we can't play outside.\tC'est un jour pluvieux alors nous ne pouvons pas jouer dehors.\nIt's a shame that the singer died so young.\tIl est dommage que le chanteur soit mort si jeune.\nIt's almost seven. We have to go to school.\tIl est presque sept heures. Nous devons nous rendre à l'école.\nIt's almost seven. We have to go to school.\tIl est presque sept heures. Il nous faut aller à l'école.\nIt's an excellent method to relieve stress.\tC'est une excellente méthode pour soulager le stress.\nIt's been seven years since we got married.\tÇa fait sept ans que nous nous sommes mariés.\nIt's been three years since we got married.\tÇa fait trois ans que nous nous sommes mariés.\nIt's difficult to learn a foreign language.\tIl est difficile d'apprendre une langue étrangère.\nIt's impossible that he forgot our meeting.\tC'est impossible qu'il ait oublié notre rendez-vous.\nIt's not as cold today as it was yesterday.\tIl ne fait pas aussi froid aujourd'hui qu'hier.\nIt's not as cold today as it was yesterday.\tIl ne fait pas aussi froid aujourd'hui qu'il le faisait hier.\nIt's not just illegal, it's also dangerous.\tCe n'est pas simplement illégal, c'est également dangereux.\nIt's not possible to do two things at once.\tIl n'est pas possible de faire deux choses à la fois.\nIt's one of the oldest buildings in Boston.\tC'est l'un des plus vieux bâtiments de Boston.\nIt's really different from what I expected.\tC'est tout différent de ce à quoi je m'attendais.\nIt's really hard to choose the right color.\tC'est vraiment difficile de choisir la bonne couleur.\nIt's so simple that even a child can do it.\tC'est tellement simple que même un enfant peut le faire.\nIt's so simple that even a child can do it.\tC'est si simple que même un enfant peut le faire.\nIt's strange that our friends are not here.\tC'est étrange que nos amis ne soient pas ici.\nIt's the biggest house in the neighborhood.\tC'est la plus grande demeure du voisinage.\nIt's the biggest house in the neighborhood.\tC'est la plus grande maison du voisinage.\nIt's the story of a boy, a girl, and a cat.\tC'est l'histoire d'un garçon, d'une fille et d'un chat.\nIt's time to go to bed. Turn off the radio.\tIl est déjà l'heure de se coucher, éteignez la radio.\nIt's time to go to bed. Turn off the radio.\tIl est l'heure de dormir. Eteins la radio.\nIt's very big of you to admit you're wrong.\tC'est grand de ta part de reconnaître que tu as tort.\nIt's warm today so you can swim in the sea.\tIl fait bon aujourd'hui donc on peut nager dans la mer.\nIt's your responsibility to finish the job.\tIl est de votre responsabilité de terminer ce travail.\nIt's your responsibility to finish the job.\tIl est de votre responsabilité de terminer ce boulot.\nIt's your responsibility to finish the job.\tIl est de ta responsabilité de terminer ce travail.\nIt's your responsibility to finish the job.\tIl est de ta responsabilité de terminer ce boulot.\nIt's your responsibility to finish the job.\tIl est de votre responsabilité d'achever ce travail.\nIt's your responsibility to finish the job.\tIl est de votre responsabilité d'achever ce boulot.\nIt's your responsibility to finish the job.\tIl est de ta responsabilité d'achever ce travail.\nIt's your responsibility to finish the job.\tIl est de ta responsabilité d'achever ce boulot.\nJanuary is the first month of the calendar.\tJanvier est le premier mois du calendrier.\nJapan has enjoyed prosperity since the war.\tLe Japon a prospéré après la guerre.\nKeep an eye on my bag while I buy a ticket.\tSurveille mon sac pendant que je vais acheter un ticket.\nKyoto is visited by many people every year.\tKyoto est visitée par beaucoup de gens chaque année.\nLadies and gentlemen, please come this way.\tMesdames et Messieurs, par ici s'il vous plaît.\nLast summer I had a chance to visit London.\tL'été dernier, j'ai eu l'opportunité de visiter Londres.\nLast summer, I spent three weeks in Boston.\tL'été dernier, j'ai passé trois semaines à Boston.\nLast week my mother came down with the flu.\tLa semaine dernière ma mère a attrapé la grippe.\nLet's continue where we left off yesterday.\tReprenons là où nous en sommes restés hier.\nLet's continue where we left off yesterday.\tReprenons là où nous en sommes restées hier.\nLet's discuss these problems one at a time.\tDiscutons de ces problèmes un à un !\nLet's divide this money between you and me.\tDivisons cet argent entre toi et moi.\nLet's forget about what happened yesterday.\tOublions ce qui s'est passé hier.\nLet's not do anything that might upset Tom.\tNe faisons rien qui puisse contrarier Tom.\nLet's proceed with the items on the agenda.\tProcédons avec les points de l'ordre du jour.\nLet’s go now. Otherwise, we’ll be late.\tAllons-y maintenant. Sinon, nous serons en retard.\nLife as it is is very uninteresting to him.\tLa vie telle qu'elle est lui semble très inintéressante.\nListening to music is a great way to relax.\tÉcouter de la musique est un formidable moyen de se détendre.\nLocal shops do good business with tourists.\tLes boutiques locales gagnent beaucoup d'argent grâce aux touristes.\nLondon is among the world's largest cities.\tLondres est l'une des plus grandes villes mondiales.\nLook at the picture at the top of the page.\tRegarde l'image en haut de la page.\nLook at the picture at the top of the page.\tRegardez l'image en haut de la page.\nLook both ways before you cross the street.\tRegardez alentour avant de traverser la route.\nLook both ways before you cross the street.\tRegarde de chaque côté avant de traverser la rue.\nLook out for pickpockets on crowded trains.\tFais attention aux voleurs dans les trains bondés.\nLooking out of the window, I saw a rainbow.\tEn regardant par la fenêtre, je vis un arc-en-ciel.\nLuckily, Tom had some money I could borrow.\tHeureusement, Tom avait un peu d'argent que j'ai pu emprunter.\nLuckily, Tom had some money I could borrow.\tHeureusement, Tom avait de l'argent que j'ai pu emprunter.\nMacbeth raised an army to attack his enemy.\tMacbeth leva une armée pour attaquer son ennemi.\nMake another appointment at the front desk.\tDemande un autre rendez-vous à la réception.\nMake sure that you arrive at seven o'clock.\tAssurez-vous que vous arrivez à 7 heures exactement.\nMalaria is a disease that mosquitoes carry.\tLa malaria est une maladie que les moustiques transportent.\nMany families eat dinner while watching TV.\tBeaucoup de familles dînent en regardant la télévision.\nMarriage is the main cause of all divorces.\tLe mariage est la cause principale de tous les divorces.\nMath and English were my favorite subjects.\tLes maths et l'anglais étaient mes matières préférées.\nMen, dogs, fish, and birds are all animals.\tLes hommes, les chiens, les poissons et les oiseaux sont tous des animaux.\nMiraculously, nobody was seriously injured.\tMiraculeusement, personne n'a été grièvement blessé.\nMoney doesn't necessarily make you happier.\tL'argent ne vous rend pas nécessairement plus heureux.\nMoney doesn't necessarily make you happier.\tL'argent ne nous rend pas nécessairement plus heureux.\nMore often than not, he is late for school.\tLe plus souvent, il est en retard pour l'école.\nMore than 3,000 people were at the concert.\tPlus de 3 000 personnes étaient au concert.\nMore tractors meant fewer horses and mules.\tDavantage de tracteurs signifiait moins de chevaux et de mules.\nMost Japanese eat rice at least once a day.\tLa plupart des Japonais mangent du riz au moins une fois par jour.\nMost young adults enjoy going out at night.\tLa plupart des jeunes adultes aiment sortir la nuit.\nMother goes to the hospital in the morning.\tMère se rend à l'hôpital le matin.\nMother goes to the hospital in the morning.\tMère se rend à l'hôpital dans la matinée.\nMother goes to the hospital in the morning.\tMère se rend à l'hôpital en matinée.\nMother looked at me with tears in her eyes.\tMaman me regarda avec des larmes dans les yeux.\nMy brother is a member of the rescue squad.\tMon frère est membre de l'équipe de secours.\nMy brother is holding a camera in his hand.\tMon frère a un appareil photo à la main.\nMy cat is going to have kittens next month.\tMa chatte va avoir des chatons le mois prochain.\nMy cat rubbed her head against my shoulder.\tMon chat frotta sa tête contre mon épaule.\nMy cat rubbed her head against my shoulder.\tMa chatte frotta sa tête contre mon épaule.\nMy dad gives me an allowance of $10 a week.\tMon père m'alloue une somme de dix dollars par semaine.\nMy daughter has reached a marriageable age.\tMa fille a atteint l'âge de penser au mariage.\nMy father encouraged me to study the piano.\tMon père m'a encouragé à apprendre le piano.\nMy father encouraged me to study the piano.\tMon père m'encourageait à apprendre le piano.\nMy father is interested in ancient history.\tMon père s'intéresse à l'histoire ancienne.\nMy father often takes me to baseball games.\tMon père m’emmène souvent aux matchs de base-ball.\nMy father owns a small business in Fukuoka.\tMon père tient un petit magasin à Fukuoka.\nMy father teaches English at a high school.\tMon père enseigne l'anglais au lycée.\nMy father visited my uncle in the hospital.\tMon père rendit visite à mon oncle à l'hôpital.\nMy father visited my uncle in the hospital.\tMon père a rendu visite à mon oncle à l'hôpital.\nMy friends and I went to a party yesterday.\tMes amis et moi sommes allés faire la fête, hier.\nMy friends and I went to a party yesterday.\tMes amies et moi sommes allées faire la fête, hier.\nMy grandfather died of a disease at eighty.\tMon grand-père est mort d'une maladie à 80 ans.\nMy grandfather passed away three years ago.\tMon grand-père est mort il y a trois ans.\nMy grandfather's photograph is on the wall.\tLa photo de mon grand-père est sur le mur.\nMy grandpa lived to the ripe old age of 97.\tMon papy vécut jusqu'à l'âge canonique de quatre-vingt-dix-sept ans.\nMy heart aches for those starving children.\tMon cœur souffre pour ces enfants qui meurent de faim.\nMy mother and father aren't home right now.\tMa mère et mon père ne sont pas chez eux en ce moment.\nMy mother gets up earlier than anyone else.\tMa mère se lève plus tôt que qui que ce soit d'autre.\nMy mother spends a lot of money on clothes.\tMa mère dépense beaucoup d'argent pour les vêtements.\nMy mother spends a lot of money on clothes.\tMa mère dépense beaucoup d'argent en fringues.\nMy name is known to everybody in my school.\tMon nom est connu de tous dans mon école.\nMy neighbor renovated her house completely.\tMon voisin a complètement rénové sa maison.\nMy neighbor renovated his house completely.\tMon voisin a complètement rénové sa maison.\nMy parents have kicked me out of the house.\tMes parents m'ont mis à la porte.\nMy parents have kicked me out of the house.\tMes parents m'ont fichu dehors.\nMy parents met each other in the mountains.\tMes parents se sont rencontrés dans les montagnes.\nMy sister asked me to teach her how to ski.\tMa petite sœur m'a demandé de lui apprendre à skier.\nMy sister takes piano lessons twice a week.\tMa sœur prend des leçons de piano deux fois par semaine.\nMy sister will get married early next year.\tMa sœur se marie au début de l'année prochaine.\nMy son can already count up to one hundred.\tMon fils sait déjà compter jusqu'à cent.\nMy uncle comes to see me from time to time.\tMon oncle vient me voir de temps en temps.\nMy younger sister got married in her teens.\tMa sœur cadette s'est mariée avant d'avoir vingt ans.\nNative Americans fought with bow and arrow.\tLes Amérindiens combattirent avec des arcs et des flèches.\nNative Americans fought with bow and arrow.\tLes Amérindiens ont combattu avec des arcs et des flèches.\nNature plays an important role in our life.\tLa nature joue un rôle important dans notre vie.\nNeither of them cares for strenuous sports.\tAucun d'eux ne s'intéresse aux sports éprouvants.\nNext week, I'm taking the plane to Chicago.\tLa semaine prochaine, je prends l'avion pour Chicago.\nNo matter what you say, the answer is \"no.\"\tPeu importe ce que tu dis, la réponse est «non ».\nNo one can achieve anything without effort.\tPersonne ne peut accomplir quoi que ce soit sans effort.\nNo one has yet found the fountain of youth.\tPersonne n'a encore trouvé la fontaine de jouvence.\nNo one seems to know what this is used for.\tPersonne ne semble savoir à quoi ceci est employé.\nNo sooner had he said it than he was sorry.\tÀ peine l'eut-il dit qu'il le regretta.\nNo student was able to answer the question.\tAucun étudiant ne put répondre à la question.\nNot a day passes without traffic accidents.\tPas un jour ne passe sans qu'il y ait des accidents de la route.\nNot a single star could be seen in the sky.\tAucune étoile ne pouvait être vue dans le ciel.\nNot all English people like fish and chips.\tTous les Anglais n'aiment pas le poisson-pommes frites.\nNot all of us are born with musical talent.\tNous ne sommes pas tous nés avec un talent musical.\nNot having a telephone is an inconvenience.\tNe pas avoir de téléphone est un inconvénient.\nNot knowing what to say, I remained silent.\tNe sachant pas quoi dire, je suis resté silencieux.\nNot knowing what to say, I remained silent.\tNe sachant pas quoi dire je suis restée silencieuse.\nOn the whole, my company is doing well now.\tDans l'ensemble, ma société va bien, actuellement.\nOnce he had written the letter, he sent it.\tDès qu'il a eu écrit la lettre, il l'a envoyée.\nOnce he had written the letter, he sent it.\tLa lettre écrite, il l'expédia.\nOnce he had written the letter, he sent it.\tLa lettre une fois écrite, il l'expédia.\nOnce outside, I gave a deep sigh of relief.\tUne fois dehors, je poussai un profond soupir de soulagement.\nOnce upon a time, there lived a cruel king.\tIl était une fois un roi cruel.\nOne can't help many, but many can help one.\tUn seul ne peut venir en aide à la multitude, mais la multitude peut venir en aide à un seul.\nOne man's medicine is another man's poison.\tCe qui fait le bonheur des uns fait le malheur des autres.\nOne month after he had become ill, he died.\tUn mois après être tombé malade, il mourut.\nOne of my hobbies is collecting old stamps.\tL'un de mes passe-temps est de collectionner les vieux timbres-poste.\nOne of the tigers has escaped from the zoo.\tL'un des tigres s'est échappé du zoo.\nOne police officer suffered minor injuries.\tUn officier de police a subi des blessures mineures.\nOne-third of the Earth's surface is desert.\tUn tiers de la surface de la Terre est désert.\nOnly I could answer the question correctly.\tIl n'y eut que moi qui put correctement répondre à la question.\nOnly Takeuchi didn't accept the invitation.\tSeul Takeuchi n'a pas accepté l'invitation.\nOur health is our most precious possession.\tNotre santé est notre bien le plus précieux.\nOur school has about one thousand students.\tNotre école compte environ mille étudiants.\nOur studio is still located on Park Street.\tNotre studio est toujours situé sur la rue Park.\nOur teacher has a wonderful sense of humor.\tNotre professeur a un merveilleux sens de l'humour.\nParallel lines do not intersect each other.\tLes lignes parallèles ne se croisent pas.\nPeople around the world are getting fatter.\tLes gens à travers le monde deviennent obèses.\nPeople have the right to defend themselves.\tLes gens ont le droit de se défendre.\nPeople of your age often have this problem.\tLes gens de votre âge ont souvent ce problème.\nPeople talk without having anything to say.\tLes gens parlent pour ne rien dire.\nPeople were evacuated because of the flood.\tLes gens furent évacués en raison de la crue.\nPeople who don't want to go, don't have to.\tLes gens qui ne veulent pas y aller n'ont pas besoin de le faire.\nPeople who don't want to go, don't have to.\tLes gens qui ne veulent pas partir n'ont pas besoin de le faire.\nPlease allow me to ask you a few questions.\tPermettez-moi de vous poser quelques questions, je vous prie.\nPlease help yourself to the chocolate cake.\tSers-toi en gâteau au chocolat, je t'en prie.\nPlease let me know as soon as it's decided.\tFaites-le-moi savoir dès que c'est décidé.\nPlease let me know the schedule beforehand.\tLaissez-moi savoir le programme au préalable, s'il vous plaît.\nPlease permit me to ask you some questions.\tPermettez-moi de vous poser quelques questions, je vous prie.\nPlease replace the empty printer cartridge.\tVeuillez remplacer la cartouche d'encre vide de l'imprimante.\nPlease take care of my dog while I am away.\tPrenez soin de mon chien pendant mon absence s'il vous plait.\nPlease tell me where the police station is.\tS'il vous plaît, dites-moi où est la station de police.\nPolice think the fire was deliberately lit.\tLa police pense que le feu a été allumé délibérément.\nPoor eyesight is a handicap to a sportsman.\tUne mauvaise vue est un handicap pour un sportif.\nPromise me you won't to do anything stupid.\tPromets-moi que tu ne feras rien d'irréfléchi !\nPromise me you won't to do anything stupid.\tPromettez-moi que vous ne ferez rien d'irréfléchi !\nPut on your shoes. Let's go out for dinner.\tMets tes chaussures et allons dîner.\nRead over your paper before you hand it in.\tAvant de rendre vos réponses, relisez-les encore une fois.\nRecent advances in medicine are remarkable.\tLes récentes avancées de la médecine sont remarquables.\nRespect yourself and you will be respected.\tRespecte-toi et tu seras respecté.\nRespect yourself and you will be respected.\tRespectez-vous et vous serez respecté.\nRespect yourself and you will be respected.\tRespectez-vous et vous serez respectée.\nRespect yourself and you will be respected.\tRespectez-vous et vous serez respectés.\nRespect yourself and you will be respected.\tRespectez-vous et vous serez respectées.\nRespect yourself and you will be respected.\tRespecte-toi et tu seras respectée.\nRussia is the largest country in the world.\tLa Russie est le pays le plus étendu du monde.\nSakura's way of speaking gets on my nerves.\tLa façon de parler de Sakura me tape sur les nerfs.\nSapporo is the fifth largest city in Japan.\tSapporo est la cinquième plus grande ville du Japon.\nScience will not solve all of our problems.\tLa science ne résoudra pas tous nos problèmes.\nSeen from a distance, it looks like a ball.\tVu de loin, ça ressemble à une balle.\nServing people is his sole purpose in life.\tServir les gens est le seul but de sa vie.\nSeveral men are fishing from the riverbank.\tPlusieurs hommes pêchent à partir de la berge.\nShakespeare created many famous characters.\tShakespeare a créé de nombreux personnages célèbres.\nShe advised him not to go there by himself.\tElle lui recommanda de ne pas s'y rendre seul.\nShe advised him not to go there by himself.\tElle lui a recommandé de ne pas s'y rendre seul.\nShe advised him to see a lawyer, so he did.\tElle lui conseilla de voir un avocat, aussi le fit-il.\nShe advised him to see a lawyer, so he did.\tElle lui a conseillé de voir un avocat, il l'a donc fait.\nShe always has to be the one giving orders.\tElle a toujours le rôle de celle qui donne des ordres.\nShe asked me to pick her up at the station.\tElle me demanda d'aller la chercher à la gare.\nShe assisted her brother with his homework.\tElle aidait son frère dans ses devoirs.\nShe believed him when he said he loved her.\tElle le crut lorsqu'il lui dit qu'il l'aimait.\nShe believed him when he said he loved her.\tElle l'a cru lorsqu'il lui a dit qu'il l'aimait.\nShe can't stand being treated like a child.\tElle ne peut pas supporter d'être traitée comme une enfant.\nShe confronted him and demanded an apology.\tElle le mit face à ses responsabilités et exigea des excuses.\nShe could not get over her husband's death.\tElle ne put surmonter la mort de son mari.\nShe could not get over her husband's death.\tElle ne put surmonter le décès de son époux.\nShe couldn't convince him to give a speech.\tElle ne put le convaincre de faire un discours.\nShe couldn't convince him to give a speech.\tElle n'a pas pu le convaincre de faire un discours.\nShe didn't want him to pamper the children.\tElle ne voulait pas qu'il dorlote les enfants.\nShe donated countless pieces to the museum.\tElle donna d'innombrables pièces au musée.\nShe donated countless pieces to the museum.\tElle a donné d'innombrables pièces au musée.\nShe donated countless pieces to the museum.\tElle fit donation d'innombrables pièces au musée.\nShe donated countless pieces to the museum.\tElle a fait donation d'innombrables pièces au musée.\nShe drank two glasses of wine at the party.\tElle but deux verres de vin à la fête.\nShe emphasized the importance of education.\tElle a souligné l'importance de l'éducation.\nShe felt something between love and hatred.\tSes sentiments étaient mitigés entre l'amour et la haine.\nShe gathered the pieces of the broken dish.\tElle rassembla les débris de l'assiette brisée.\nShe gave a poor explanation for being late.\tElle donna une explication peu convaincante de son retard.\nShe gave me a watch for a birthday present.\tElle me donna une montre en guise de cadeau d'anniversaire.\nShe gave me a watch for a birthday present.\tElle m'a offert une montre comme cadeau d'anniversaire.\nShe gave me an album as a birthday present.\tElle m'a offert un album en tant que cadeau d'anniversaire.\nShe glimpsed him running through the crowd.\tElle l'entraperçut quand il se faufilait dans la foule.\nShe goes to market every day to buy things.\tElle se rend tous les jours au marché pour acheter des trucs.\nShe had the box carried to the first floor.\tElle fit porter la caisse au premier étage.\nShe had the box carried to the first floor.\tElle fit porter la caisse au rez-de-chaussée.\nShe had to share a bedroom with her sister.\tIl lui fallut partager une chambre avec sa sœur.\nShe had to share a bedroom with her sister.\tIl lui a fallu partager une chambre avec sa sœur.\nShe had to share a bedroom with her sister.\tElle dut partager une chambre avec sa sœur.\nShe had to share a bedroom with her sister.\tElle a dû partager une chambre avec sa sœur.\nShe handed him the money that she owed him.\tElle lui tendit l'argent qu'elle lui devait.\nShe handed him the money that she owed him.\tElle lui a tendu l'argent qu'elle lui devait.\nShe has a rich vocabulary of English words.\tElle a un riche vocabulaire de mots anglais.\nShe has been asked to sit on the committee.\tOn lui a demandé de siéger au comité.\nShe is an efficient and reliable assistant.\tC'est une assistante efficace et digne de confiance.\nShe is on the verge of a nervous breakdown.\tElle est au bord de la crise de nerfs.\nShe lay awake for hours thinking about him.\tElle reposa éveillée pendant des heures, à penser à lui.\nShe lay awake for hours thinking about him.\tElle est restée allongée, éveillée, à penser à lui pendant des heures.\nShe liked tennis and became a tennis coach.\tElle aimait le tennis et devint coach.\nShe looked at him with a smile on her face.\tElle le regarda, le sourire aux lèvres.\nShe looked at him with a smile on her face.\tElle l'a regardé, le visage souriant.\nShe looked very beautiful in her new dress.\tElle avait l'air très belle dans sa nouvelle robe.\nShe looked worried about her school report.\tElle avait l'air inquiète au sujet de son bulletin.\nShe loves him now more than she did before.\tElle l'aime maintenant davantage qu'elle ne le faisait auparavant.\nShe loves him now more than she did before.\tElle l'aime désormais davantage qu'elle ne le faisait auparavant.\nShe married a hotshot lawyer from New York.\tElle épousa un avocat new-yorkais de haut vol.\nShe married a hotshot lawyer from New York.\tElle a épousé un avocat new-yorkais de haut vol.\nShe often takes advantage of his ignorance.\tElle tire souvent profit de son ignorance.\nShe participates in many school activities.\tElle prend part à beaucoup d'activités scolaires.\nShe prides herself on her skill in cooking.\tElle est fière de son talent culinaire.\nShe prides herself on her skill in cooking.\tElle est fière de ses talents culinaires.\nShe said nothing that would make him angry.\tElle ne dit rien qui l'aurait mis en colère.\nShe said nothing that would make him angry.\tElle n'a rien dit qui l'aurait mis en colère.\nShe seems to have left for Tokyo yesterday.\tElle semble être partie pour Tokyo hier.\nShe spent her life in pursuit of the truth.\tElle passa sa vie à rechercher la vérité.\nShe spent her life in pursuit of the truth.\tElle a passé sa vie à rechercher la vérité.\nShe still has a little money, but not much.\tElle a encore un peu d'argent, mais pas beaucoup.\nShe talks everything over with her parents.\tElle parle de tout avec ses parents.\nShe tends to underestimate her own ability.\tElle a tendance à sous-estimer ses capacités.\nShe told me that I could sleep on the sofa.\tElle m'a dit que je pouvais dormir sur le canapé.\nShe told me that I could sleep on the sofa.\tElle m'a dit que je pourrais dormir sur le canapé.\nShe told me that I could sleep on the sofa.\tElle me dit que je pouvais dormir sur le canapé.\nShe told me that I could sleep on the sofa.\tElle me dit que je pourrais dormir sur le canapé.\nShe was advised by him to give up drinking.\tIl lui conseilla d'arrêter de boire.\nShe was advised by him to give up drinking.\tIl lui a conseillé d'arrêter de boire.\nShe was advised by him to go to the police.\tIl lui conseilla d'aller voir la police.\nShe was advised by him to go to the police.\tIl lui a conseillé d'aller voir la police.\nShe was ashamed of her children's behavior.\tElle avait honte du comportement de ses enfants.\nShe was clearly satisfied with the results.\tElle était manifestement contente des résultats.\nShe went into her room to change her dress.\tElle alla dans sa chambre pour changer sa robe.\nShe will grow up to be a very good pianist.\tElle va devenir une excellente pianiste.\nShe will not be able to come here tomorrow.\tElle ne pourra pas venir demain.\nShe works as a nurse in the local hospital.\tElle travaille comme infirmière dans l'hôpital local.\nShe works for a large American corporation.\tElle travaille pour une grande société étasunienne.\nShe works with single-minded determination.\tElle travaille avec une détermination obsessionnelle.\nShe'll spend the next four years in prison.\tElle va passer les quatre prochaines années en prison.\nShe's busy now, so she can't talk with you.\tElle est occupée pour le moment, donc elle ne peut vous parler.\nShe's busy now, so she can't talk with you.\tElle est occupée pour le moment, donc elle ne peut pas vous parler.\nShe's busy now, so she can't talk with you.\tElle est occupée pour le moment, donc elle ne peut te parler.\nShe's busy now, so she can't talk with you.\tElle est occupée pour le moment, donc elle ne peut pas te parler.\nShe's busy now, so she can't talk with you.\tElle est occupée à l'heure qu'il est, donc elle ne peut vous parler.\nShe's busy now, so she can't talk with you.\tElle est occupée à l'heure qu'il est, donc elle ne peut te parler.\nShe's busy now, so she can't talk with you.\tElle est occupée à l'heure qu'il est, donc elle ne peut pas vous parler.\nShe's busy now, so she can't talk with you.\tElle est occupée à l'heure qu'il est, donc elle ne peut pas te parler.\nShopping malls are popular among teenagers.\tLes galeries commerciales sont en vogue parmi les adolescents.\nSince it was already late, I went to sleep.\tComme il était déjà tard, j'allai dormir.\nSince it was already late, I went to sleep.\tComme il était déjà tard, je suis allé dormir.\nSince it was already late, I went to sleep.\tComme il était déjà tard, je suis allée dormir.\nSmoking has a great deal to do with cancer.\tFumer a beaucoup à voir avec le cancer.\nSome people go to church on Sunday morning.\tCertaines personnes vont à l'église le dimanche matin.\nSome would say that he's playing with fire.\tCertains diraient qu'il joue avec le feu.\nSomebody needs to be here for the children.\tQuelqu'un doit être là pour les enfants.\nSomebody needs to be here for the children.\tIl faut que quelqu'un soit là pour les enfants.\nSomebody needs to be here for the children.\tIl faut que quelqu'un soit présent pour les enfants.\nSomebody needs to be here for the children.\tQuelqu'un doit être présent pour les enfants.\nSomething might fall on you, so be careful.\tQuelque chose pourrait te tomber dessus, alors sois prudent.\nSomething might fall on you, so be careful.\tQuelque chose pourrait te tomber dessus, alors sois prudente.\nSomething might fall on you, so be careful.\tQuelque chose pourrait vous tomber dessus, alors soyez prudent.\nSomething might fall on you, so be careful.\tQuelque chose pourrait vous tomber dessus, alors soyez prudente.\nSomething might fall on you, so be careful.\tQuelque chose pourrait vous tomber dessus, alors soyez prudents.\nSomething might fall on you, so be careful.\tQuelque chose pourrait vous tomber dessus, alors soyez prudentes.\nSometimes it seems that everybody hates me.\tParfois, il semble que tout le monde me déteste.\nSorry, I must have dialed the wrong number.\tDésolé, j'ai dû composer le mauvais numéro.\nSpeak louder so that everyone may hear you.\tParle plus fort afin que tout le monde puisse t'entendre.\nSwimming is one thing I can do fairly well.\tNager est une chose que je sais assez bien faire.\nSwiss chocolate really melts in your mouth.\tLe chocolat suisse fond réellement dans ta bouche.\nTake an umbrella with you in case it rains.\tPrenez un parapluie au cas où il pleuvrait.\nTastes in music vary from person to person.\tLes goûts musicaux varient selon les personnes.\nThank you for all you did for me that time.\tMerci pour tout ce que tu as fait pour moi cette fois-là.\nThank you for listening to my presentation.\tMerci d'avoir écouté ma présentation.\nThanks to his help, I finished my homework.\tGrâce à son aide, j'ai fini mes devoirs.\nThanks to your stupidity, we lost the game.\tGrâce à votre stupidité, nous avons perdu la partie.\nThat blow on the head knocked him out cold.\tCe coup sur la tête l'étendit inconscient.\nThat chicken hasn't laid any eggs recently.\tCette poule n'a pas pondu d'œufs récemment.\nThat child wants some friends to play with.\tCet enfant veut des amis avec lesquels jouer.\nThat couple gets soused nearly every night.\tCe couple est éméché quasiment tous les soirs.\nThat doesn't mean you shouldn't be careful.\tÇa ne signifie pas que tu ne devrais pas être prudent.\nThat doesn't mean you shouldn't be careful.\tÇa ne signifie pas que tu ne devrais pas être prudente.\nThat doesn't mean you shouldn't be careful.\tÇa ne signifie pas que vous ne devriez pas être prudent.\nThat doesn't mean you shouldn't be careful.\tÇa ne signifie pas que vous ne devriez pas être prudents.\nThat doesn't mean you shouldn't be careful.\tÇa ne signifie pas que vous ne devriez pas être prudente.\nThat doesn't mean you shouldn't be careful.\tÇa ne signifie pas que vous ne devriez pas être prudentes.\nThat is something you should not have said.\tVoilà quelque chose que tu n'aurais pas dû dire.\nThat is the building where my father works.\tC'est le bâtiment où mon père travaille.\nThat kind of machine is yet to be invented.\tCe genre de machine reste encore à être inventée.\nThat sort of flattery will get you nowhere.\tCette sorte de flatterie ne te mènera nulle part.\nThat sounds like the kind of thing he'd do.\tÇa semble être le genre de chose qu'il ferait.\nThat student sometimes pretends to be sick.\tCet étudiant fait parfois semblant d'être malade.\nThat's an interesting piece of information.\tVoilà une information intéressante.\nThat's why I'm telling you not to go alone.\tC'est pourquoi je te dis de ne pas y aller seul.\nThat's why I'm telling you not to go alone.\tC'est pourquoi je vous dis de ne pas partir seul.\nThe Beatles are popular among young people.\tLes beatles sont connus des jeunes gens.\nThe Federal Reserve slashed interest rates.\tLa réserve fédérale a cassé les taux d'intérêts.\nThe Murais have been married for ten years.\tLes Murais sont mariés depuis dix ans.\nThe Rhine flows between France and Germany.\tLe Rhin coule entre la France et l’Allemagne.\nThe accident happened at that intersection.\tL'accident s'est produit à ce carrefour.\nThe accident happened at that intersection.\tL'accident est survenu à ce carrefour.\nThe accident happened at that intersection.\tL'accident a eu lieu à ce carrefour.\nThe assignment is due two weeks from today.\tLe devoir est pour dans deux semaines aujourd'hui.\nThe beginning of the story was interesting.\tLe début de l'histoire était intéressant.\nThe bigger they come, the harder they fall.\tPlus dure sera la chute.\nThe blue lines on the map represent rivers.\tLes lignes bleues sur la carte symbolisent les rivières.\nThe boxer was pressured to throw the fight.\tLe boxeur fut contraint de s'allonger.\nThe boy lifted the heavy box with one hand.\tLe jeune homme souleva la lourde caisse d'une seule main.\nThe car is parked in front of the building.\tLa voiture est garée devant le bâtiment.\nThe cause of the accident is still obscure.\tLa cause de l'accident est encore obscure.\nThe children love listening to fairy tales.\tLes enfants adorent écouter des contes.\nThe city was soon occupied by the soldiers.\tBientôt, la cité fut occupée par les soldats.\nThe comic scenes in the play were overdone.\tLes scènes comiques de la pièce étaient exagérées.\nThe company's stock price jumped yesterday.\tLa valeur de l'action de l'entreprise a bondi hier.\nThe country's economy is about to collapse.\tL'économie du pays est sur le point de s'effondrer.\nThe days grow shorter as winter approaches.\tLes jours raccourcissent comme l'hiver approche.\nThe doctor's office is on the second floor.\tLe cabinet du médecin se trouve au premier étage.\nThe doctor's remarks reassured the patient.\tLes remarques du docteur rassurent le patient.\nThe dog kept me from approaching his house.\tLe chien m'empêchait d'approcher sa maison.\nThe door was locked and we couldn't get in.\tLa porte était fermée et nous n'avons pas pu rentrer.\nThe earth is similar to an orange in shape.\tLa Terre a une forme similaire à celle d'une orange.\nThe employee was escorted off the premises.\tL'employé fut escorté hors des locaux.\nThe employee was escorted off the premises.\tL'employée fut escortée hors des locaux.\nThe employee was escorted off the premises.\tL'employé a été escorté hors des locaux.\nThe employee was escorted off the premises.\tL'employée a été escortée hors des locaux.\nThe escaped convict is armed and dangerous.\tLe détenu en cavale est armé et dangereux.\nThe escaped prisoners are still on the run.\tLes prisonniers fugitifs sont toujours en cavale.\nThe escaped prisoners are still on the run.\tLes évadés sont toujours en cavale.\nThe evidence convinced us of his innocence.\tLa preuve nous a convaincus de son innocence.\nThe fact that they came here is undeniable.\tLe fait qu'ils vinrent ici est indéniable.\nThe fact was of interest to the scientists.\tCe fait intéressait les scientifiques.\nThe factory uses many complicated machines.\tL'usine utilise de nombreuses machines compliquées.\nThe firm went under due to lack of capital.\tLa société a coulé à cause d'un manque de capitaux.\nThe first atomic bomb was dropped on Japan.\tLa première bombe atomique a été larguée sur le Japon.\nThe footprints continued down to the river.\tLes traces de pas continuaient jusqu'à la rivière.\nThe frost did a lot of damage to the crops.\tLe gel causa beaucoup de dommages aux récoltes.\nThe frost did a lot of damage to the crops.\tLe gel a causé beaucoup de dommages aux récoltes.\nThe frost did a lot of damage to the crops.\tLe gel occasionna beaucoup de dommages aux récoltes.\nThe frost did a lot of damage to the crops.\tLe gel a occasionné beaucoup de dommages aux récoltes.\nThe girl tried hard to hold back her tears.\tLa fille s'efforçait de retenir ses larmes.\nThe goods will be delivered free of charge.\tLes marchandises seront livrées gratuitement.\nThe grownups were talking among themselves.\tLes adultes parlaient entre eux.\nThe hailstones were as big as tennis balls.\tLes grêlons étaient gros comme des balles de tennis.\nThe heroine of the novel committed suicide.\tL'héroïne du roman s'est suicidée.\nThe house is small, but it's enough for us.\tLa maison est petite, mais c'est assez pour nous.\nThe house is small, but it's enough for us.\tLa maison est petite, mais ça nous suffit.\nThe house is small, but it's enough for us.\tLa maison est petite, mais c'est suffisant pour nous.\nThe house was full of colorful art objects.\tLa maison était pleine d'objets d'art polychromes.\nThe house was full of colorful art objects.\tLa maison était emplie d'objets d'art pleins de couleurs.\nThe ice was thick enough for me to walk on.\tLa glace était suffisamment épaisse pour que je puisse y marcher dessus.\nThe important thing is that we're together.\tL'important, c'est qu'on soit ensemble.\nThe king imposed heavy taxes on the people.\tLe roi imposa de lourdes taxes sur le peuple.\nThe line is busy now. Please hold the line.\tLa ligne est juste occupée. Veuillez rester en ligne.\nThe long discussion came to an end at last.\tCette longue dispute est enfin terminée.\nThe loud drill gave her husband a headache.\tLe bruit sonore de perceuse donna mal au crâne à son mari.\nThe lubrication system was poorly designed.\tLe système de lubrification a été mal conçu.\nThe man left the restaurant without paying.\tL'homme quitta le restaurant sans payer.\nThe manager called an urgent staff meeting.\tLe directeur a convoqué une réunion d'urgence du personnel.\nThe meeting room is occupied at the moment.\tLa salle de réunion est occupée pour le moment.\nThe mother separated the fighting children.\tLa mère sépara les enfants en train de se battre.\nThe motive for the murder is not yet known.\tLe mobile du meurtre n'est pas encore connu.\nThe nation needed more and better teachers.\tLa nation avait besoin de davantage d'enseignants et de meilleurs.\nThe novel takes place in Victorian England.\tLe roman se passe dans l'Angleterre victorienne.\nThe old man served the king for many years.\tLe vieil homme servit le roi durant de nombreuses années.\nThe older children helped the younger ones.\tLes enfants les plus âgés aidaient les plus jeunes.\nThe older children helped the younger ones.\tLes aînés aidaient leurs cadets.\nThe older children helped the younger ones.\tLes grands aidaient les petits.\nThe patient is recovering from his illness.\tLe patient se remet de sa maladie.\nThe pay is terrible and the hours are long.\tLe salaire est misérable et les heures sont longues.\nThe people here are accustomed to the cold.\tLes gens ici sont accoutumés au froid.\nThe phone rang while I was taking a shower.\tLe téléphone a sonné quand je me douchais.\nThe photographs are the only proof we have.\tLes photographies sont les seules preuves que nous ayons.\nThe picture brought back a lot of memories.\tLa photo a fait resurgir de nombreux souvenirs.\nThe pirates had no choice but to surrender.\tLes pirates n'avaient pas d'autre choix que de se rendre.\nThe police think that Tom poisoned himself.\tLa police pense que Tom s'est empoisonné.\nThe policeman suspected the man was guilty.\tL'agent de police suspecta que l'homme était coupable.\nThe principal of our school is an American.\tLe principal de notre école est un Américain.\nThe problem will resolve itself eventually.\tLe problème finira bien par se résoudre de lui-même.\nThe problem's being looked into as I speak.\tTandis que je m'exprime, le problème est en cours d'investigation.\nThe professor seemed to be lost in thought.\tLe professeur semblait perdu dans ses pensées.\nThe prosecutor asked me a leading question.\tLe procureur me posa une question insidieuse.\nThe recent events have affected him deeply.\tLes récents événements l'ont profondément affecté.\nThe result was far from being satisfactory.\tLe résultat était loin d'être satisfaisant.\nThe school is five kilometers from my home.\tL'école est à cinq kilomètres de chez moi.\nThe schoolboys teased each other endlessly.\tLes écoliers se taquinaient sans fin.\nThe score is 9 to 2 in favor of our school.\tLe score est de 9 à 2 en faveur de notre école.\nThe sentence is not grammatically accurate.\tLa phrase n'est pas grammaticalement exacte.\nThe ship lowered its gangway after docking.\tLe navire abaissa sa passerelle après s'être mis à quai.\nThe shrine was built two hundred years ago.\tLe temple fut érigé il y a deux cents ans.\nThe small boy slowly made some new friends.\tLe petit garçon se fit lentement de nouveaux amis.\nThe soldiers could do nothing until spring.\tLes soldats ne purent rien entreprendre jusqu'au printemps.\nThe soldiers filled the sandbags with sand.\tLes soldats remplirent les sacs de sable.\nThe storm did great damage to her property.\tLa tempête occasionna beaucoup de dommages sur sa propriété.\nThe street our hotel is on is the next one.\tLa rue qui mène à notre hôtel est la prochaine.\nThe streets in Tokyo are full on Saturdays.\tLes rues de Tokyo sont pleines de gens le samedi.\nThe suspect wanted to avoid being arrested.\tLe suspect voulait éviter d'être arrêté.\nThe teacher pokes his nose into everything.\tLe prof fourre son nez partout.\nThe teacher told him to study English hard.\tLe professeur lui dit de travailler son anglais assidûment.\nThe team was quite nervous before the game.\tL'équipe était assez nerveuse avant la partie.\nThe telephone was invented by Bell in 1876.\tLe téléphone a été inventé par Bell en 1876.\nThe thick fog made it hard to see the road.\tIl était difficile de voir la route à cause de l'épais brouillard.\nThe thief ran away when he saw a policeman.\tLe voleur fila lorsqu'il vit un policier.\nThe time will come when you will regret it.\tIl arrivera un moment où tu le regretteras.\nThe top of the mountain is covered in snow.\tLe sommet de la montagne est couvert de neige.\nThe two pieces were glued tightly together.\tLes deux morceaux furent fermement collés ensemble.\nThe wind blew the umbrella out of her hand.\tLe vent a arraché le parapluie de ses mains.\nThe wind carries seeds for great distances.\tLe vent transporte les graines sur de longues distances.\nThe world is more dangerous than I thought.\tLe monde est plus dangereux que je ne le pensais.\nThen I'm afraid we have a bit of a problem.\tDans ce cas, j'ai bien peur qu'il y ait un petit problème.\nTheory and practice should go hand in hand.\tLa théorie et la pratique devraient aller main dans la main.\nThere are a lot of bad people in the world.\tIl y a beaucoup de mauvaises personnes dans le monde.\nThere are a lot of dogs here, aren't there?\tIl y a beaucoup de chiens ici, n'est-ce pas ?\nThere are a lot of poodles under the couch.\tIl y a de nombreux caniches sous le canapé.\nThere are fifty stars on the American flag.\tIl y a cinquante étoiles sur le drapeau américain.\nThere are many abandoned cats in the world.\tIl y a beaucoup de chats abandonnés dans le monde.\nThere are many more people than I expected.\tIl y a plus de monde que je n'en attendais.\nThere are many people living in this house.\tBeaucoup de monde vit dans cette maison.\nThere are many people trying to buy houses.\tIl y a beaucoup de gens qui vont acheter des maisons.\nThere are many tall buildings in that town.\tIl y a de nombreux bâtiments de grande taille dans cette ville.\nThere are many tall buildings in that town.\tCette ville comporte de nombreux bâtiments de grande taille.\nThere are more clouds today than yesterday.\tIl y a aujourd'hui quelques nuages de plus qu'hier.\nThere are more clouds today than yesterday.\tAujourd'hui, il y a davantage de nuages qu'hier.\nThere are people who are afraid of spiders.\tIl y a des personnes qui ont peur des araignées.\nThere are various ways to get to her house.\tIl y a différents chemins pour se rendre chez elle.\nThere is a man waiting for you at the door.\tIl y a un homme qui vous attend à la porte.\nThere is a man waiting for you at the door.\tIl y a un homme qui t'attend à la porte.\nThere is a place for everyone in the world.\tIl y a une place pour chacun, dans le monde.\nThere is a river between Saitama and Chiba.\tIl y a une rivière séparant Saitama et Chiba.\nThere is a river between Saitama and Chiba.\tUne rivière sépare Saitama et Chiba.\nThere is a tinge of red in the eastern sky.\tIl y a une pointe de rouge dans le ciel oriental.\nThere is an urgent need for food and water.\tIl y a un besoin urgent de nourriture et d'eau.\nThere is no point in pretending to be sick.\tIl n'y a aucun intérêt à feindre la maladie.\nThere is no progress without communication.\tIl n'y a pas de progrès sans communication.\nThere is no room for doubt about his guilt.\tSa culpabilité ne laisse aucun doute.\nThere is no use waiting for her any longer.\tÇa ne sert à rien de continuer à l'attendre.\nThere is no way of knowing where he's gone.\tIl n'y a aucun moyen de savoir où il est allé.\nThere is no way of knowing where he's gone.\tIl n'y a aucun moyen de savoir où il s'en est allé.\nThere is no way of knowing where he's gone.\tIl n'y a aucun moyen de savoir où il est parti.\nThere is nothing the matter with the motor.\tIl n'y a pas de souci avec le moteur.\nThere was a sudden change in the situation.\tIl y eut un soudain revirement de la situation.\nThere was something moving in the distance.\tQuelque chose se déplaçait au loin.\nThere's a good chance that he'll be chosen.\tIl y a une bonne chance qu'il soit choisi.\nThere's a little bit of water in the glass.\tIl y a un peu d'eau dans le verre.\nThere's a long line at every cash register.\tIl y a une grande queue à chaque distributeur automatique.\nThere's a long line at every cash register.\tIl y a une longue file d'attente à chaque distributeur automatique.\nThere's a long line at every cash register.\tIl y a une grande queue à chaque distributeur de billets.\nThere's a long line at every cash register.\tIl y a une grande queue à chaque distributeur.\nThere's a lot of danger during a big storm.\tIl y a beaucoup de dangers au cours d'une grosse tempête.\nThere's a lot of room left for improvement.\tIl reste de nombreuses opportunités d'amélioration.\nThere's always a first time for everything.\tIl y a toujours une première fois à tout.\nThere's always a first time for everything.\tIl y a toujours une première fois pour tout.\nThere's no way I'm going to work on Sunday.\tJe ne travaillerai en aucune manière dimanche.\nThere's something I think you need to know.\tIl y a quelque chose que je pense qu'il faut que tu saches.\nThere's still plenty that needs to be done.\tIl reste beaucoup à faire.\nThese flowers bloom earlier than others do.\tCes fleurs fleurissent plus tôt que les autres.\nThese shelves cannot support so many books.\tCes étagères ne peuvent pas supporter autant de livres.\nThese shoes are too small for me to put on.\tCes chaussures sont trop petites pour moi.\nThey answered my questions with difficulty.\tIls ont répondu à mes questions avec difficulté.\nThey are talking about what they will sing.\tIls parlent de ce qu'ils vont chanter.\nThey are willing to talk about the problem.\tIls sont disposés à discuter du problème.\nThey are willing to talk about the problem.\tElles sont disposées à discuter du problème.\nThey are willing to talk about the problem.\tCe sont eux qui sont disposés à discuter du problème.\nThey are willing to talk about the problem.\tCe sont elles qui sont disposées à discuter du problème.\nThey built a safe building for earthquakes.\tIls ont construit un bâtiment résistant aux tremblements de terre.\nThey demanded that the mayor should resign.\tIls exigèrent que le maire démissionnât.\nThey demanded that the mayor should resign.\tIls ont exigé que le maire démissionne.\nThey furnished the library with many books.\tIls fournirent à la bibliothèque de nombreux livres.\nThey grow strawberries in their greenhouse.\tIls cultivent des fraises dans leur serre.\nThey grow strawberries in their greenhouse.\tElles cultivent des fraises dans leur serre.\nThey have been reading an interesting book.\tIls ont lu un livre intéressant.\nThey haven’t slept for forty-eight hours.\tIls n'ont pas dormi depuis quarante-huit heures.\nThey kept it secret that they were in love.\tIls ont gardé leur amour secret.\nThey kept singing until a rescue team came.\tIls continuèrent à chanter jusqu'à ce que vienne une équipe de secours.\nThey know things these people want to know.\tIls savent des choses que ces gens veulent savoir.\nThey know things these people want to know.\tElles savent des choses que ces gens veulent savoir.\nThey made him work from morning till night.\tIls le firent travailler du matin au soir.\nThey rented the upstairs room to a student.\tIls louèrent la chambre d'en haut à un étudiant.\nThey rented the upstairs room to a student.\tIls ont loué la chambre d'en haut à un étudiant.\nThey sailed along the west coast of Africa.\tIls ont navigué le long de la côte occidentale de l'Afrique.\nThey say she is the kindest woman on earth.\tJe pense que c'est la femme la plus gentille sur terre.\nThey set a new record for the longest kiss.\tIls ont établi un nouveau record du plus long baiser.\nThey set a new record for the longest kiss.\tElles ont établi un nouveau record du plus long baiser.\nThey set the time and place of the wedding.\tIls ont fixé la date et du lieu du mariage.\nThey set the time and place of the wedding.\tElles ont fixé la date et du lieu du mariage.\nThey walked down the street singing a song.\tIls descendirent la rue en chantant une chanson.\nThey walked down the street singing a song.\tElles descendirent la rue en chantant une chanson.\nThey walked down the street singing a song.\tIls ont descendu la rue en chantant une chanson.\nThey walked down the street singing a song.\tElles ont descendu la rue en chantant une chanson.\nThey welcomed me warmly, so I felt at home.\tIls m'ont accueilli chaleureusement, je me sentais donc comme à la maison.\nThey were never to return to their country.\tJamais ils ne retournèrent en leur pays.\nThey were only interested in selling books.\tTout ce qui les intéressait était de vendre des livres.\nThey were stuck for hours in a traffic jam.\tIls restèrent coincés dans un embouteillage durant des heures.\nThis book is so difficult, I can't read it.\tCe livre est tellement dur, je ne peux pas le lire.\nThis book is too difficult for you to read.\tCe livre est trop difficile à lire pour toi.\nThis book is worth reading again and again.\tCe livre mérite d'être lu encore et encore.\nThis child believes that the earth is flat.\tCet enfant pense que la Terre est plate.\nThis city is famous for its beautiful park.\tCette ville est réputée pour ses magnifiques jardins.\nThis custom dates back to the 12th century.\tCette coutume remonte au douzième siècle.\nThis form must be filled out in triplicate.\tCe formulaire doit être complété en trois exemplaires.\nThis grocery store only sells organic food.\tCette épicerie ne vend que de la nourriture bio.\nThis grocery store only sells organic food.\tCette épicerie ne vend que des aliments bio.\nThis is not my first time riding a bicycle.\tCe n'est pas la première fois que je monte à vélo.\nThis is not my first time riding a bicycle.\tCe n'est pas la première fois que je fais du vélo.\nThis is nothing more than wishful thinking.\tCe n'est rien d'autre que prendre ses désirs pour des réalités.\nThis is sometimes called the walk of shame.\tOn appelle parfois cela le défilé de la honte.\nThis is the craziest thing I've ever heard.\tC'est la chose la plus dingue que j'ai jamais entendue.\nThis is the end of the world as we know it.\tC'est la fin du monde tel que nous le connaissons.\nThis is the end of the world as we know it.\tC'est la fin du monde tel que nous le connaissions.\nThis is the place where my father was born.\tC'est le lieu où naquit mon père.\nThis is the restaurant that I often eat at.\tJ'ai l'habitude de manger dans ce restaurant.\nThis is the strangest thing I've ever done.\tC'est la chose la plus étrange que j'ai jamais faite.\nThis is the stupidest thing I've ever done.\tC'est la chose la plus stupide que j'ai jamais faite.\nThis movie is for adults, not for children.\tCe film est pour les adultes, pas pour les enfants.\nThis organization cannot exist without you.\tCette organisation ne peut exister sans vous.\nThis place is famous for its scenic beauty.\tCet endroit est renommé pour la beauté de ses paysages.\nThis program is broadcast every other week.\tCette émission est diffusée de manière bi-hebdomadaire.\nThis road is too narrow for trucks to pass.\tCette route est trop étroite pour le passage des camions.\nThis suitcase is too heavy for me to carry.\tCette valise est trop lourde pour que je la porte.\nThis summer I went on vacation in Scotland.\tCet été je suis parti en Écosse pour les vacances.\nThis supermarket delivers only on Saturday.\tCe supermarché ne livre que le samedi.\nThis textbook is written in simple English.\tCe livre de classe est écrit en anglais simplifié.\nThis time, you won't avoid your punishment.\tCette fois, tu n'échapperas pas à ta punition.\nThis was a stupid idea from the very start.\tC'était une mauvaise idée depuis le début.\nThis watch is less expensive than that one.\tCette montre-ci est moins onéreuse que celle-là.\nThis work calls for a high degree of skill.\tCe travail exige un haut degré de compétence.\nThose agenda items were discussed together.\tCes points de l'ordre du jour ont été discutés ensemble.\nTo his surprise, the door opened by itself.\tÀ son étonnement, la porte s'ouvrit d'elle-même.\nTo tell the truth, she no longer loves him.\tÀ dire vrai, elle ne l'aime plus.\nToday you can get two for the price of one.\tAujourd'hui tu peux en obtenir deux pour le prix d'un.\nToday, everything went awry from the start.\tAujourd'hui, tout est allé de travers depuis le départ.\nTokyo has a population of over ten million.\tTokyo a une population de plus de dix millions.\nTom and Mary both wanted a lot of children.\tTom et Marie voulaient tous les deux beaucoup d'enfants.\nTom and Mary have recently moved to Boston.\tTom et Mary ont récemment déménagé à Boston.\nTom and Mary often work together on Friday.\tTom et Marie travaillent souvent ensemble le vendredi.\nTom and Mary split up after their son died.\tTom et Mary se sont séparés après la mort de leur fils.\nTom begged Mary to give him another chance.\tTom supplia Marie de lui donner une seconde chance.\nTom broke his promise and didn't help Mary.\tTom a rompu sa promesse, et n'a pas aidé Mary.\nTom can't have written this letter himself.\tTom ne peut pas avoir écrit lui-même cette lettre.\nTom can't see anything without his glasses.\tTom ne peut rien voir sans ses lunettes.\nTom can't see anything without his glasses.\tTom ne voit rien sans ses lunettes.\nTom carried his duffel bag on his shoulder.\tTom portait son sac en toile sur l'épaule.\nTom certainly spends a lot of time indoors.\tIl est certain que Tom passe beaucoup de temps à l'intérieur.\nTom claims that he has never killed anyone.\tTom affirme qu'il n'a jamais tué personne.\nTom could swim when he was three years old.\tTom pouvait nager quand il avait trois ans.\nTom didn't even offer Mary a cup of coffee.\tTom n'a même pas offert un café à Mary.\nTom didn't get married until he was thirty.\tTom ne s'est pas marié avant d'avoir trente ans.\nTom didn't have time to watch TV yesterday.\tTom n'a pas eu le temps hier de regarder la télévision.\nTom didn't know anything about Mary's past.\tTom ne savait rien du passé de Mary.\nTom didn't know where Mary had gone skiing.\tTom ne savait pas où Marie était allée skier.\nTom didn't remember where he'd put his pen.\tTom ne se rappelait pas où il avait mis son stylo.\nTom didn't want his friends to see him cry.\tTom ne voulait pas que ses amis le voient pleurer.\nTom didn't want to let Mary into his house.\tTom ne voulait pas laisser Marie entrer chez lui.\nTom does little other than play the guitar.\tTom ne fait pas grand-chose à part jouer de la guitare.\nTom doesn't know what Mary is trying to do.\tTom ne sait pas ce que Marie essaie de faire.\nTom doesn't know what Mary wants him to do.\tTom ne sait pas ce que Marie veut qu'il fasse.\nTom doesn't know what Mary was going to do.\tTom ne sait pas ce que Marie allait faire.\nTom doesn't know where Mary parked her car.\tTom ne sait pas où Marie a garé la voiture.\nTom doesn't like Mary's living there alone.\tTom n'aime pas que Mary vive là-bas toute seule.\nTom doesn't like the way Mary looks at him.\tTom n'aime pas la façon dont Mary le regarde.\nTom doesn't like to lend his books to Mary.\tTom n'aime pas prêter ses livres à Mary.\nTom doesn't remember if he locked the door.\tTom ne se souvient pas s'il a fermé la porte.\nTom doesn't remember turning off the light.\tTom ne se souvient pas avoir éteint la lumière.\nTom doesn't remember where he put his keys.\tTom ne sait plus où il a mis ses clés.\nTom doesn't take very good care of his dog.\tTom ne s'occupe pas très bien de son chien.\nTom doesn't think that it'll rain tomorrow.\tTom ne pense pas qu'il va pleuvoir demain.\nTom doesn't think this is such a good idea.\tTom ne pense pas que cela soit une bonne idée.\nTom doesn't want to take that kind of risk.\tTom ne veut pas prendre ce genre de risque.\nTom dyed his hair the same color as Mary's.\tTom s'est teint ses cheveux de la même couleur que Mary.\nTom goes jogging in the park every morning.\tTom va faire du jogging dans le parc tous les matins.\nTom goes jogging in the park every morning.\tTom va courir dans le parc tous les matins.\nTom had better hurry or he'll miss the bus.\tTom ferait mieux de se dépêcher ou il ratera le bus.\nTom had expected something quite different.\tTom s'était attendu à quelque chose de plutôt différent.\nTom had no right to treat Mary like he did.\tTom n'avait pas le droit de traiter Marie comme il l'a fait.\nTom has been patiently waiting all morning.\tTom a patiemment attendu toute la matinée.\nTom has gotten himself into trouble before.\tTom s'est déjà attiré des ennuis.\nTom has what it takes to be a good teacher.\tTom a l’étoffe d’un bon professeur.\nTom has what it takes to be a good teacher.\tTom a l’étoffe d’un bon enseignant.\nTom hasn't had a fight with anybody lately.\tTom ne s'est battu avec personne dernièrement.\nTom hopes that Mary will come next weekend.\tTom espère que Marie viendra le weekend prochain.\nTom inherited the business from his father.\tTom a hérité de l'entreprise de son père.\nTom is far from satisfied with Mary's work.\tTom est loin d'être satisfait par le travail de Mary.\nTom is going to go swimming this afternoon.\tTom va aller nager cet après-midi.\nTom is obviously very good at what he does.\tTom est évidemment excellent dans ce qu'il fait.\nTom is one of the richest men in the world.\tTom est l'un des hommes les plus riches du monde.\nTom is pretty sure everything will go well.\tTom est pratiquement sûr que tout se passera bien.\nTom just can't seem to get along with Mary.\tTom ne semble tout simplement pas pouvoir aller de pair avec Mary.\nTom looked at his reflection in the mirror.\tTom regarda son reflet dans le miroir.\nTom looked at his reflection in the mirror.\tTom a regardé son reflet dans le miroir.\nTom made a list of things he needed to buy.\tTom a fait sa liste des courses.\nTom made thirty thousand dollars last week.\tTom s'est fait trente mille dollars la semaine dernière.\nTom paid the driver and got out of the cab.\tTom paya le chauffeur et descendit du taxi.\nTom said he didn't know how to play tennis.\tTom a dit qu'il ne savait pas faire de tennis.\nTom saw Mary sitting alone on a park bench.\tTom vit Mary assise toute seule sur un banc du parc.\nTom says he doesn't know much about Boston.\tTom dit qu'il ne connaît pas grand-chose sur Boston.\nTom should let Mary know that he likes her.\tTom devrait faire savoir à Mary qu'il l'apprécie.\nTom shouldn't say things like that to Mary.\tTom ne devrait pas dire des choses comme ça à Mary.\nTom showed her the letter from Santa Claus.\tTom lui a montré la lettre du père Noël.\nTom takes the kids to the school every day.\tTom emmène les enfants à l'école tous les jours.\nTom thought Mary was probably about thirty.\tTom pensait que Mary avait probablement la trentaine.\nTom told Mary that he had a new girlfriend.\tTom a dit à Mary qu'il avait une nouvelle petite amie.\nTom told me he was having trouble sleeping.\tTom m'a dit qu'il avait des problèmes pour dormir.\nTom told me he was having trouble sleeping.\tTom m'a dit qu'il avait du mal à dormir.\nTom tried to persuade Mary to stay at home.\tTom essaya de persuader Mary de rester à la maison.\nTom tried to persuade Mary to stay at home.\tTom a essayé de persuader Mary de rester chez elle.\nTom used to be in a relationship with Mary.\tTom entretenait une relation avec Mary.\nTom was disappointed in Mary's performance.\tTom a été déçu de la performance de Mary.\nTom was disappointed in Mary's performance.\tTom fut déçu de la performance de Mary.\nTom went back to his own room and lay down.\tTom retourna dans sa chambre et s'allongea.\nTom went back to his own room and lay down.\tTom est retourné dans sa chambre et s'est allongé.\nTom will never know it was you who told me.\tTom ne saura jamais que c'est toi qui me l'as dit.\nTom will never know it was you who told me.\tTom ne saura jamais que c'est vous qui me l'avez dit.\nTom wondered why Mary had stayed in Boston.\tTom se demanda pourquoi Mary était restée à Boston.\nTom would do anything for his sister, Mary.\tTom ferait n'importe quoi pour sa sœur Mary.\nTom's behavior never ceases to surprise me.\tLe comportement de Tom n’en finit pas de me surprendre.\nTom's flight was postponed for three hours.\tLe vol de Tom a été décalé de trois heures.\nTom's parents were asleep when he got home.\tLes parents de Tom étaient endormis quand il rentra chez lui.\nTrade between two countries can be complex.\tLes échanges commerciaux entre pays peuvent être complexes.\nTraffic accidents are increasing in number.\tLe nombre d'accidents de la route est en augmentation.\nTrue happiness consists of desiring little.\tLe vrai bonheur consiste à désirer peu.\nTry these shoes on and see if they fit you.\tEssaie ces chaussures et vois si elles te vont.\nTry these shoes on and see if they fit you.\tEssaie ces souliers et vois s'ils te vont.\nTry these shoes on and see if they fit you.\tEssayez ces chaussures et voyez si elles vous vont.\nTry these shoes on and see if they fit you.\tEssayez ces souliers et voyez s'ils vous vont.\nUnfortunately, the information is accurate.\tMalheureusement, l'information est exacte.\nUntil that day, I had never eaten dog meat.\tJusqu'à ce jour, je n'avais jamais consommé de viande de chien.\nUntil that day, I had never eaten dog meat.\tJusqu'à ce jour-là, je n'avais jamais mangé de viande de chien.\nUrgent business kept me from coming sooner.\tUne affaire urgente m'a empêché d'arriver plus tôt.\nUsed car salesmen are a disreputable bunch.\tLes vendeurs de voitures d'occasion sont un groupe mal famé.\nUsed car salesmen are a disreputable bunch.\tLes vendeurs de voitures d'occasion sont un groupe à la mauvaise réputation.\nWalking along the street, I found a wallet.\tEn marchant dans la rue, j'ai trouvé un portefeuille.\nWas that you I heard singing in the shower?\tÉtait-ce toi que j'ai entendu chanter sous la douche ?\nWash your hands before you handle the food.\tLave-toi les mains, avant de toucher la nourriture !\nWater the flowers before you eat breakfast.\tArrose les plantes avant de prendre ton petit-déjeuner.\nWe accept all major credit and debit cards.\tNous acceptons toutes les principales cartes de crédit et de débit.\nWe are anxious about our daughter's health.\tNous sommes inquiets au sujet de la santé de notre fille.\nWe are going to visit our aunt next Sunday.\tDimanche prochain, nous allons rendre visite à notre tante.\nWe are looking for a nice house to live in.\tNous cherchons une belle maison pour y habiter.\nWe are looking forward to seeing you again.\tNous nous réjouissons de vous revoir.\nWe are the same age, but different heights.\tNous avons le même âge mais sommes de tailles différentes.\nWe cannot overestimate the value of health.\tNous ne pouvons pas surestimer la valeur de la santé.\nWe communicated with each other by gesture.\tNous communiquions ensemble par gestes.\nWe cross the railroad tracks every morning.\tNous traversons la voie ferrée chaque matin.\nWe did not get your letter until yesterday.\tNous n'avions pas reçu ta lettre jusqu'à hier.\nWe don't even know what we're fighting for.\tNous ne savons même pas pour quoi nous nous battons.\nWe don't know what they want to use it for.\tNous ignorons à quoi ils veulent l'employer.\nWe don't know what they want to use it for.\tNous ignorons à quoi elles veulent l'employer.\nWe don't know what they want to use it for.\tNous ignorons à quel usage ils le destinent.\nWe don't know what they want to use it for.\tNous ignorons à quel usage elles le destinent.\nWe finally reached the top of the mountain.\tNous atteignîmes finalement le sommet de la montagne.\nWe had a spell of fine weather last autumn.\tNous avons connu de beaux jours l'automne dernier.\nWe had a spell of fine weather last autumn.\tNous avons eu de beaux jours l'automne dernier.\nWe had to make the best of our small house.\tNous devions faire au mieux avec notre petite maison.\nWe had to pay ten thousand yen in addition.\tOn a dû payer dix mille yen en plus.\nWe hardly ever see you around here anymore.\tNous ne vous voyons guère plus par ici.\nWe hardly ever see you around here anymore.\tNous ne te voyons guère plus par ici.\nWe have a lot to learn from other cultures.\tNous avons beaucoup à apprendre des autres cultures.\nWe have a majority interest in the company.\tNous avons une participation majoritaire dans l'entreprise.\nWe have an obesity problem in this country.\tNous avons un problème d'obésité dans ce pays.\nWe have equipped our office with computers.\tNous avons équipé notre bureau d'ordinateurs.\nWe have not heard from him since last year.\tNous n'avons pas eu de nouvelles de lui depuis l'année dernière.\nWe have to make the most of this situation.\tNous devons tirer le meilleur parti de la situation.\nWe have to sing at an old folks home today.\tNous devons aller chanter dans une maison de retraite, aujourd'hui.\nWe have to sing at an old folks home today.\tOn doit aller chanter dans une maison de retraite, aujourd'hui.\nWe have to stop him from drinking any more.\tNous devons l'empêcher de boire davantage.\nWe have until October to complete our plan.\tNous avons jusqu'à octobre pour compléter notre plan.\nWe haven't yet decided what to do tomorrow.\tNous n'avons pas encore décidé que faire demain.\nWe haven't yet finished what we have to do.\tNous n'avons pas encore terminé ce que nous avons à faire.\nWe heard something moving in the next room.\tNous avons entendu quelque chose bouger dans la pièce adjacente.\nWe heard something moving in the next room.\tNous avons entendu quelque chose bouger dans la pièce d'à côté.\nWe heard something moving in the next room.\tNous entendîmes quelque chose bouger dans la pièce d'à côté.\nWe heard something moving in the next room.\tNous entendîmes quelque chose bouger dans la pièce adjacente.\nWe hurried, so we didn't miss the last bus.\tNous nous sommes dépêchés, c'est pourquoi nous n'avons pas raté le dernier bus.\nWe must get together for a drink some time.\tNous devons nous rencontrer pour prendre un verre, un de ces jours.\nWe must take care of our planet, the earth.\tNous devons prendre soin de notre planète : la Terre.\nWe need to band together to beat the enemy.\tNous devons nous unir pour battre l'ennemi.\nWe should not have done that. It was wrong.\tNous n'aurions pas dû faire ça. C'était mal.\nWe shouldn't judge people by how they look.\tNous ne devrions pas juger les gens sur leur apparence.\nWe sometimes lack patience with old people.\tOn manque parfois de patience avec les personnes âgées.\nWe spent hours trying to solve the problem.\tNous avons passé des heures à essayer de résoudre le problème.\nWe spent the whole evening talking to them.\tNous avons passé toute la soirée à leur parler.\nWe stayed with them all through the summer.\tNous restâmes avec eux tout au long de l'été.\nWe stopped for lunch at a local restaurant.\tNous nous sommes arrêtés pour déjeuner dans un restaurant du coin.\nWe stopped for lunch at a local restaurant.\tNous nous sommes arrêtées pour déjeuner dans un restaurant du coin.\nWe tried to cheer him up by taking him out.\tOn a essayé de lui remonter le moral en l'emmenant faire une sortie.\nWe walked up and down the streets of Kyoto.\tNous avons flâné dans les rue de Kyoto.\nWe went to the café that I told you about.\tNous sommes allés au café dont je t'ai parlé.\nWe went to the café that I told you about.\tNous sommes allées au café dont je t'ai parlé.\nWe went to the café that I told you about.\tNous sommes allés au café dont je vous ai parlé.\nWe went to the café that I told you about.\tNous sommes allées au café dont je vous ai parlé.\nWe were talking to each other all the time.\tNous étions tout le temps en train de parler entre nous.\nWe were thoroughly satisfied with his work.\tNous étions entièrement satisfaits par son travail.\nWe were very tired from the five-hour trip.\tNous étions très fatigués par le voyage de cinq heures.\nWe were very tired from the five-hour trip.\tNous étions très fatiguées par le voyage de cinq heures.\nWe will employ a man who can speak English.\tNous engagerons un homme qui sait parler l'anglais.\nWe'd better get a move on or we'll be late.\tOn ferait mieux de se bouger ou on va être en retard.\nWe'll cross that bridge when we come to it.\tTout finit toujours par s'arranger.\nWe'll have to shovel the snow off the roof.\tNous devons dégager la neige du toit.\nWe'll never forget what you've done for us.\tNous n'oublierons jamais ce que vous avez fait pour nous.\nWe'll try to be more careful the next time.\tNous essayerons d'être plus prudents la prochaine fois.\nWe'll try to be more careful the next time.\tNous essayerons d'être plus prudentes la prochaine fois.\nWe're going to try to get you full custody.\tNous allons essayer de vous obtenir la garde complète.\nWe're having some guests over this evening.\tNous avons des invités, ce soir.\nWe're lucky Tom is here to help us do this.\tNous avons de la chance que Tom soit là pour nous aider à faire ça.\nWe're positive that they forgot to call us.\tNous sommes sûrs qu'ils ont oublié de nous appeler.\nWe've got to fill this hole with something.\tNous devons combler ce trou avec quelque chose.\nWearing glasses should correct your vision.\tPorter des lunettes devrait corriger ta vision.\nWhat I really want is something hot to eat.\tCe que je veux vraiment, c'est quelque chose de chaud à manger.\nWhat are you doing here this time of night?\tQue faites-vous ici à cette heure de la nuit ?\nWhat are you doing here this time of night?\tQue fais-tu ici à cette heure de la nuit ?\nWhat do you call this vegetable in English?\tComment appelle-t-on ce légume en anglais ?\nWhat do you have planned for the afternoon?\tQu'as-tu prévu pour l'après-midi ?\nWhat do you have planned for the afternoon?\tQu'avez-vous prévu pour l'après-midi ?\nWhat do you say to going swimming tomorrow?\tQue penses-tu d'aller nager demain ?\nWhat do you think you'll do with your life?\tQue penses-tu que tu feras de ta vie ?\nWhat do you think you'll do with your life?\tQue pensez-vous que vous ferez de votre vie ?\nWhat does it mean when a girl winks at you?\tQu'est-ce que signifie le fait qu'une fille vous fasse un clin d'œil ?\nWhat does it take to get some service here?\tQue faut-il faire pour être un tant soit peu servi ici ?\nWhat exactly is it that you want me to say?\tQue veux-tu que je dise, exactement ?\nWhat have we done to be punished like this?\tQu'avons-nous fait pour être ainsi punis ?\nWhat have we done to be punished like this?\tQu'avons-nous fait pour être ainsi punies ?\nWhat kind of software does Tom usually use?\tDe quelle sorte de logiciel se sert Tom habituellement ?\nWhat makes you think that I'm against that?\tQu'est-ce qui vous fait penser que je suis contre ?\nWhat makes you think that I'm against that?\tQu'est-ce qui te fait penser que je suis contre ?\nWhat on earth does this have to do with me?\tQu'est-ce que ça a à faire avec moi le moins du monde ?\nWhat on earth does this have to do with me?\tQu'est-ce que ça a le moins du monde à faire avec moi ?\nWhat sort of father do you think you'll be?\tQuelle sorte de père crois-tu que tu seras ?\nWhat sort of father do you think you'll be?\tQuelle sorte de père pensez-vous que vous serez ?\nWhat time do you leave home in the morning?\tÀ quelle heure pars-tu de chez toi, le matin ?\nWhat time do you leave home in the morning?\tÀ quelle heure partez-vous de chez vous, le matin ?\nWhat would you do if you had one year free?\tQue ferais-tu si tu disposais d'un an de libre ?\nWhat would you do if you had one year free?\tQue feriez-vous si vous disposiez d'une année de libre ?\nWhat would you say if you were in my place?\tQue dirais-tu si tu étais à ma place ?\nWhat would you say if you were in my place?\tQue dirais-tu à ma place ?\nWhat you've done is absolutely inexcusable.\tCe que tu as fait est absolument inexcusable.\nWhat's in the box is none of your business.\tCe qu'il y a dans la boite ne te regarde pas.\nWhat's the tallest mountain you've climbed?\tQuelle est la plus haute montagne dont tu aies fait l'ascension ?\nWhatever happens, he won't change his mind.\tQuoi qu'il arrive, il ne changera pas d'avis.\nWhatever you do, don't drop your new phone.\tQuoi que tu fasses, ne fais pas tomber ton nouveau téléphone !\nWhen I grow up, I want to be just like you.\tQuand je serai grand, je veux être exactement comme toi.\nWhen I grow up, I want to be just like you.\tQuand je serai grande, je veux être exactement comme toi.\nWhen I grow up, I want to be just like you.\tQuand je serai grand, je veux être exactement comme vous.\nWhen I grow up, I want to be just like you.\tQuand je serai grande, je veux être exactement comme vous.\nWhen I opened the curtains, it was snowing.\tQuand j'ai ouvert les rideaux, il neigeait.\nWhen I opened the door, I found him asleep.\tLorsque j'ai ouvert la porte, je l'ai trouvé endormi.\nWhen I was a child, I could sleep anywhere.\tQuand j'étais petit, je pouvais dormir partout.\nWhen I was a child, I could sleep anywhere.\tQuand j'étais petit, je pouvais dormir n'importe où.\nWhen I was your age, I was already married.\tÀ votre âge, j'étais déjà marié.\nWhen I was your age, I was already married.\tÀ votre âge, j'étais déjà mariée.\nWhen I was your age, I was already married.\tÀ ton âge, j'étais déjà marié.\nWhen I was your age, I was already married.\tÀ ton âge, j'étais déjà mariée.\nWhen I woke up, I found I had been tied up.\tLorsque je me suis éveillé, je me suis retrouvé ligoté.\nWhen my wife finds out, she won't be happy.\tLorsque ma femme le découvrira, elle ne sera pas contente.\nWhen she was young, she was very beautiful.\tLorsqu'elle était jeune, elle était très belle.\nWhere do the buses for downtown leave from?\tD'où partent les bus pour le centre ville ?\nWhere is it? I've been searching for hours.\tOù est-ce ? J'ai cherché durant des heures.\nWhere were you at 2:30 on Monday afternoon?\tOù étiez-vous à 14h30 lundi après-midi ?\nWhere were you at 2:30 on Monday afternoon?\tOù étais-tu à 14h30 lundi après-midi ?\nWhere were you when the explosion occurred?\tOù vous trouviez-vous lorsque l'explosion est survenue ?\nWhich do you like better, spring or autumn?\tQu’est-ce que vous préférez, le printemps ou l’automne?\nWhich do you like better, spring or autumn?\tQu'est-ce que tu préfères, le printemps ou l'automne ?\nWhich do you like better, summer or winter?\tQue préférez-vous ? L'été ou bien l'hiver ?\nWhich do you like better, sushi or tempura?\tQu'est-ce que tu préfères ? Les sushis ou les tempuras ?\nWhich train should I take to go to Shibuya?\tQuel est le train que je dois prendre pour aller à Shibuya ?\nWho knows what you'll find up in the attic?\tQui sait ce que tu trouveras dans le grenier ?\nWho knows what you'll find up in the attic?\tQui sait ce que tu dénicheras dans le grenier ?\nWho knows what you'll find up in the attic?\tQui sait ce que vous trouverez bien dans le grenier ?\nWho was it that broke the window yesterday?\tQui est celui qui a cassé la fenêtre hier ?\nWho would look after my children if I died?\tQui s'occupera de mes enfants si je meurs ?\nWhoever stole the money should be punished.\tQuiconque a volé l'argent devrait être puni.\nWhy can't you take things just as they are?\tPourquoi ne peux-tu pas accepter les choses juste comme elles sont ?\nWhy did you choose that particular subject?\tPourquoi avez-vous choisi ce thème particulier ?\nWhy did you choose that particular subject?\tPourquoi as-tu choisi ce thème particulier ?\nWhy did you decide to speak about that now?\tPourquoi avez-vous décidé d'en parler maintenant ?\nWhy didn't you tell us there was a witness?\tPourquoi ne nous as-tu pas dit qu'il y avait un témoin ?\nWhy didn't you tell us there was a witness?\tPourquoi ne nous avez-vous pas dit qu'il y avait un témoin ?\nWhy didn't you tell us there was a witness?\tQue ne nous as-tu pas dit qu'il y avait un témoin ?\nWhy didn't you tell us there was a witness?\tQue ne nous avez-vous pas dit qu'il y avait un témoin ?\nWhy don't you look it up in the phone book?\tPourquoi ne regardes-tu pas dans le répertoire de ton téléphone ?\nWhy don't you sit and have a drink with me?\tPourquoi ne vous asseyez-vous pas prendre un verre avec moi ?\nWhy don't you sit and have a drink with me?\tPourquoi ne t'assieds-tu pas prendre un verre avec moi ?\nWhy don't you sit right there on the couch?\tPourquoi ne vous asseyez-vous pas ici sur le canapé ?\nWhy don't you sit right there on the couch?\tPourquoi ne t'assieds-tu pas ici sur le canapé ?\nWhy don't you take the rest of the day off?\tPourquoi ne prenez-vous pas le reste de la journée ?\nWhy don't you take the rest of the day off?\tPourquoi ne prends-tu pas le reste de la journée ?\nWhy don't you take the rest of the day off?\tPourquoi ne prenez-vous pas congé pour le reste de la journée ?\nWhy don't you take the rest of the day off?\tPourquoi ne prends-tu pas congé pour le reste de la journée ?\nWhy is there so much violence in the world?\tPourquoi y a-t-il autant de violence dans le monde?\nWhy is this website taking so long to load?\tPourquoi ce site web met-il tant de temps à charger ?\nWhy would I want to do something like that?\tPourquoi voudrais-je faire une telle chose ?\nWhy would you want to do a thing like that?\tPourquoi voudriez-vous faire une telle chose ?\nWhy would you want to do a thing like that?\tPourquoi voudrais-tu faire une telle chose ?\nWill you show me what you bought yesterday?\tTu me montreras ce que tu as acheté hier ?\nWould you like me to do something about it?\tAimeriez-vous que j'y fasse quelque chose ?\nWould you like me to do something about it?\tAimerais-tu que j'y fasse quelque chose ?\nWould you like to play tennis every Sunday?\tAimerais-tu jouer au tennis tous les dimanches ?\nWould you like to play tennis every Sunday?\tAimeriez-vous jouer au tennis tous les dimanches ?\nWould you mind if I watched TV for a while?\tVerrais-tu un inconvénient à ce que je regarde la télévision pendant un moment ?\nWould you prefer a window or an aisle seat?\tPréférez-vous un hublot ou un couloir ?\nYou are acting like a three-year-old child.\tTu agis comme un gamin de 3 ans.\nYou are an idiot to go out in this weather.\tTu es un imbécile de sortir par un temps pareil.\nYou are not entitled to attend the meeting.\tVous n'avez pas le droit d'assister à la réunion.\nYou are old enough to make your own living.\tTu es assez grand pour gagner ta vie par toi-même.\nYou are responsible for what you have done.\tTu es responsable de ce que tu as fait.\nYou are telling it second hand, aren't you?\tTu le rapportes par ouï-dire, n'est-ce pas ?\nYou can borrow an umbrella if you need one.\tTu peux emporter un parapluie si tu en as besoin d'un.\nYou can call me this afternoon if you want.\tTu peux m'appeler cet après-midi si tu veux.\nYou can do whatever you want to, of course.\tTu peux faire tout ce qui te chante, bien sûr.\nYou can do whatever you want to, of course.\tVous pouvez faire tout ce qui vous chante, bien sûr.\nYou can have either of these, but not both.\tTu peux avoir l'un ou l'autre, mais pas les deux.\nYou can probably guess what happens though.\tTu devines probablement ce qui va arriver.\nYou can't fix it. You should buy a new one.\tTu ne peux pas le réparer. Tu devrais en acheter un nouveau.\nYou can't keep something that big a secret.\tOn ne peut pas garder secret un truc aussi gros.\nYou can't keep something that big a secret.\tTu ne peux pas garder secret quelque chose d'aussi gros.\nYou can't keep something that big a secret.\tVous ne pouvez pas garder secret quelque chose d'aussi gros.\nYou can't kill someone that's already dead.\tOn ne peut pas tuer quelqu'un qui est déjà mort.\nYou cannot achieve anything without effort.\tOn n'arrive à rien sans effort.\nYou didn't expect to find me here, did you?\tTu ne t'attendais pas à me trouver ici, n'est-ce pas ?\nYou found me where no one else was looking.\tTu m'as trouvée où personne ne cherchait.\nYou had better go home as soon as possible.\tTu ferais mieux d'aller chez toi le plus tôt possible.\nYou had better go home as soon as possible.\tVous feriez mieux d'aller chez vous le plus tôt possible.\nYou had better make use of the opportunity.\tTu ferais mieux de mettre à profit l'occasion.\nYou had better make use of the opportunity.\tVous feriez mieux de mettre l'occasion à profit.\nYou had better not start until they arrive.\tTu ferais mieux de ne pas commencer avant qu'ils n'arrivent.\nYou have changed since I saw you last year.\tTu as changé depuis que je t'ai vu l'année dernière.\nYou have changed since I saw you last year.\tVous avez changé depuis que je vous ai vu l'an passé.\nYou have changed since I saw you last year.\tVous avez changé depuis que je vous ai vus l'an passé.\nYou have changed since I saw you last year.\tVous avez changé depuis que je vous ai vue l'an passé.\nYou have changed since I saw you last year.\tVous avez changé depuis que je vous ai vues l'an passé.\nYou have no idea how much that means to me.\tVous n'avez aucune idée de ce que ça signifie pour moi.\nYou have no idea how much that means to me.\tTu n'as aucune idée de ce que ça signifie pour moi.\nYou have only to answer the first question.\tTu dois juste répondre à la première question.\nYou have only to answer the first question.\tVous devez seulement répondre à la première question.\nYou have the advantage of a good education.\tTu as l'avantage d'une bonne éducation.\nYou have the advantage of a good education.\tVous avez l'avantage d'une bonne éducation.\nYou have to get this work finished by noon.\tVous devez avoir terminé votre travail avant midi.\nYou have to make up the time you have lost.\tVous devez rattraper le temps que vous avez perdu.\nYou have to make up the time you have lost.\tTu dois rattraper le temps perdu.\nYou have to strike the iron while it's hot.\tIl faut battre le fer tant qu'il est chaud.\nYou haven't said anything to Tom, have you?\tTu n'as rien dit à Tom, n'est-ce pas ?\nYou look a lot like someone I used to know.\tTu ressembles beaucoup à quelqu'un que je connaissais.\nYou must be worn out after working all day.\tNul doute que tu dois être exténué après avoir travaillé toute la journée.\nYou must go and see the headmaster at once.\tTu dois aller voir le directeur tout de suite.\nYou must have forgotten them at the office.\tTu as dû les oublier au bureau.\nYou must take advantage of the opportunity.\tTu dois profiter de cette occasion.\nYou must take advantage of the opportunity.\tTu dois saisir cette occasion.\nYou must take advantage of the opportunity.\tTu dois tirer avantage de cette occasion.\nYou must work hard, if you want to succeed.\tTu dois travailler dur si tu veux réussir.\nYou ought not to have disclosed the secret.\tTu n'aurais pas dû dévoiler le secret.\nYou ought to have started half an hour ago.\tVous auriez dû commencer il y a une demi-heure.\nYou ought to have started half an hour ago.\tTu aurais dû commencer il y a une demi-heure.\nYou ought to have started half an hour ago.\tTu aurais dû démarrer il y a une demi-heure.\nYou ought to have started half an hour ago.\tVous auriez dû démarrer il y a une demi-heure.\nYou promised not to be rude to me any more.\tVous m'avez promis de ne plus être brutal avec moi.\nYou said you needed someone to protect you.\tTu disais avoir besoin de quelqu'un pour te protéger.\nYou said you needed someone to protect you.\tVous disiez avoir besoin de quelqu'un pour vous protéger.\nYou scared the living day lights out of me!\tTu m'as fait une peur bleue !\nYou scared the living day lights out of me!\tVous m'avez fait une peur bleue !\nYou seem to have thought of something else.\tTu sembles avoir pensé à quelque chose d'autre.\nYou seem to have thought of something else.\tVous semblez avoir songé à quelque chose d'autre.\nYou should always ask for permission first.\tTu devrais toujours demander la permission.\nYou should apologize to Tom for being late.\tTu devrais t'excuser auprès de Tom pour ton retard.\nYou should apologize to her for being rude.\tTu devrais t'excuser auprès d'elle d'être grossier.\nYou should ask your parents for permission.\tTu devrais demander la permission à tes parents.\nYou should ask your parents for permission.\tVous devriez demander la permission à vos parents.\nYou should have seen that movie last night.\tTu aurais dû voir ce film hier soir.\nYou should keep clear of that side of town.\tTu devrais éviter ce côté de la ville.\nYou should think before you begin to speak.\tTu devrais réfléchir avant de parler.\nYou shouldn't eat just before going to bed.\tTu ne devrais pas manger juste avant d'aller te coucher.\nYou shouldn't have eaten so much ice cream.\tTu n'aurais pas dû manger autant de glace.\nYou shouldn't have gone to visit Tom alone.\tTu n'aurais pas dû rendre visite à Tom seul.\nYou shouldn't have gone to visit Tom alone.\tTu n'aurais pas dû rendre visite à Tom seule.\nYou shouldn't have gone to visit Tom alone.\tVous n'auriez pas dû rendre visite à Tom seul.\nYou shouldn't have gone to visit Tom alone.\tVous n'auriez pas dû rendre visite à Tom seule.\nYou shouldn't let people use you like that.\tTu ne devrais pas laisser les gens t'utiliser ainsi.\nYou shouldn't let people use you like that.\tVous ne devriez pas laisser les gens vous utiliser ainsi.\nYou shouldn't pop your bubble gum in class.\tTu ne devrais pas faire des bulles avec ton chewing-gum en classe.\nYou told us she was kind and she really is.\tTu nous as dit qu'elle était gentille et elle l'est vraiment.\nYou told us she was kind and she really is.\tVous nous avez dit qu'elle était gentille et elle l'est vraiment.\nYou went to the park yesterday, didn't you?\tVous êtes allés au parc hier, n'est-ce pas ?\nYou will be paid according to your ability.\tTu seras payé en fonction de ta compétence.\nYou will find the restaurant on your right.\tVous trouverez le restaurant sur votre droite.\nYou will find the restaurant on your right.\tTu trouveras le restaurant à ta droite.\nYou will miss the train if you don't hurry.\tTu vas manquer le train si tu ne te dépêches pas.\nYou wouldn't understand. It's a girl thing.\tVous ne comprendriez pas. C'est un truc de filles.\nYou wouldn't understand. It's a girl thing.\tTu ne comprendrais pas. C'est un truc de filles.\nYou'd better not swim if you've just eaten.\tTu ferais bien de ne pas nager après avoir mangé.\nYou'll soon get used to speaking in public.\tTu vas bientôt t'habituer à parler en publique.\nYou're back late. What have you been up to?\tTu es en retard. Qu'as-tu fait ?\nYou're crazy to buy such an expensive bike.\tTu es fou d'acheter un vélo aussi cher.\nYou're either with me or you're against me.\tTu es soit avec soit contre moi.\nYou're either with me or you're against me.\tSoit tu es avec moi, soit tu es contre moi.\nYou're either with me or you're against me.\tVous êtes soit avec moi, soit contre.\nYou're either with me or you're against me.\tSoit vous êtes avec moi, soit vous êtes contre moi.\nYou're either with me or you're against me.\tVous êtes soit avec soit contre moi.\nYou're going to have to pay for the repair.\tTu vas devoir payer la réparation.\nYou're not the only one who feels that way.\tTu n'es pas le seul à ressentir cela.\nYou're not the only one who feels that way.\tVous n'êtes pas le seul à ressentir cela.\nYou're not the only one who feels that way.\tTu n'es pas la seule à ressentir cela.\nYou're not the only one who feels that way.\tVous n'êtes pas la seule à ressentir cela.\nYou're starting to sound like your old man.\tTu commences à parler comme ton vieux.\nYou've got to go even if you don't want to.\tTu dois y aller même si tu ne le veux pas.\nYou've got to go even if you don't want to.\tVous devez y aller même si vous ne le voulez pas.\nYou've put on a little weight, haven't you?\tT'as pris quelques kilos, non?\nYou've put on a little weight, haven't you?\tTu as un peu grossi, non?\nYour family should come before your career.\tVotre famille devrait passer avant votre carrière.\nYour lives will be spared if you surrender.\tVos vies seront épargnées si vous vous rendez.\nYour lives will be spared if you surrender.\tVous serez épargnés si vous vous rendez.\nYour problems are nothing compared to mine.\tTes problèmes ne sont rien, comparés aux miens.\nYour pronunciation is more or less correct.\tVotre prononciation est à peu près correcte\nYour pronunciation is more or less correct.\tVotre prononciation est plus ou moins correcte.\nYour shoes are wet. Put them near the fire.\tTes chaussures sont mouillées. Pose-les près du feu.\nZap it in the microwave for thirty seconds.\tFourre-le trente secondes au micro-ondes.\nZap it in the microwave for thirty seconds.\tPasse-le trente secondes au micro-ondes.\nZap it in the microwave for thirty seconds.\tFourrez-le trente secondes au micro-ondes.\nZap it in the microwave for thirty seconds.\tPassez-le trente secondes au micro-ondes.\n\"How old is she?\" \"She is twelve years old.\"\t\"Quel âge a-t-elle ?\" \"Elle a douze ans.\"\n\"May I use your dictionary?\" \"By all means.\"\t\"Puis-je utiliser votre dictionnaire ?\" \"Je vous en prie.\"\n\"We have to do this now.\" \"There's no time.\"\t« Nous devons faire ça maintenant. » « Il n'y a pas le temps. »\n\"What would you like?\" \"I would like a dog.\"\t« Que voudriez-vous ? » « Je voudrais un chien. »\nA Japanese would not have said such a thing.\tUn Japonais n'aurait pas dit une telle chose.\nA bead of sweat started forming on his brow.\tUne goutte de sueur perla sur son sourcil.\nA bird in the hand is worth two in the bush.\tMieux vaut un oiseau dans la main que cent dans les airs.\nA bird in the hand is worth two in the bush.\tUn tiens vaut mieux que deux tu l'auras\nA blast of cold air swept through the house.\tUne rafale de vent froid déferla sur la maison.\nA bright red ladybug landed on my fingertip.\tUne coccinelle rouge et brillante se posa sur le bout de mon doigt.\nA few glasses of wine can loosen the tongue.\tQuelques verres de vin peuvent redonner parole à la langue.\nA few glasses of wine can loosen the tongue.\tQuelques verres de vin peuvent délier la langue.\nA few minutes' walk brought me to the shore.\tUne marche de quelques minutes me conduisit au rivage.\nA friend to everybody is a friend to nobody.\tL'ami de tout le monde n'est l'ami de personne.\nA great change has come about after the war.\tUn grand changement est intervenu depuis la guerre.\nA huge tanker just pulled out from the dock.\tUn pétrolier géant vient de quitter le bassin.\nA hundred people were hurt in a train wreck.\tUne centaine de personnes ont été blessées dans un accident de train.\nA jaywalker exposes himself to great danger.\tUn piéton indiscipliné s'expose à de grands dangers.\nA lot of people were killed in World War II.\tBeaucoup de gens furent tués pendant la Seconde Guerre mondiale.\nA man's body dies, but his soul is immortal.\tLe corps meurt, mais l'âme est immortelle.\nA moral person doesn't lie, cheat, or steal.\tUne personne vertueuse ne ment, ne triche et ne vole pas.\nA new school building is under construction.\tUne nouvelle école est en construction.\nA nod is as good as a wink to a blind horse.\tUn hochement de tête est aussi utile qu'un clin d'œil à un cheval aveugle.\nA pelican can fit a lot of fish in its beak.\tUn pélican peut placer beaucoup de poisson dans son bec.\nA rubber ball bounces because it is elastic.\tUne balle en caoutchouc rebondit parce qu'elle est élastique.\nA woman was hanging the washing on the line.\tUne femme étendait son linge sur une corde.\nA young man is singing in front of the door.\tUn jeune homme chante devant la porte.\nAdmit it, Tom, you're still in love with me.\tAdmets-le, Tom, tu es toujours amoureux de moi.\nAfter I had done my homework, I went to bed.\tAprès avoir fait mes devoirs, je suis allé me coucher.\nAfter his accident, he is happy to be alive.\tAprès son accident, il est heureux d'être en vie.\nAll in all, we had a good time at the party.\tToutes choses égales, nous avons passé du bon temps à la fête.\nAll of a sudden, the barn went up in flames.\tTout à coup, la grange s'est enflammée.\nAll of my students call me by my first name.\tTous mes étudiants m'appellent par mon prénom.\nAll of us went to the theater to see a play.\tNous sommes tous allés au théâtre voir une pièce.\nAll of us went to the theater to see a play.\tNous sommes toutes allées au théâtre voir une pièce.\nAll the answers to this question were wrong.\tToutes les réponses à cette question étaient fausses.\nAll things considered, he is a good teacher.\tTout bien considéré, c'est un bon professeur.\nAll you have to do is to wait for her reply.\tTout ce que tu as à faire est d'attendre sa réponse.\nAlthough she lives nearby, I rarely see her.\tBien qu'elle vive à proximité, je la vois rarement.\nAmericans eat special foods on Thanksgiving.\tLes américains mangent une nourriture spécial pendant Thanksgiving.\nAn awning broke his fall and saved his life.\tUn auvent amortit sa chute et lui sauva la vie.\nAn extremely terrible thing happened to him.\tUne chose terrible lui est arrivé.\nAncient customs are dying out quickly today.\tLes vieilles coutumes sont en train de disparaître rapidement aujourd'hui.\nAny book will do provided it is interesting.\tN'importe quel livre fera l'affaire pourvu qu'il soit intéressant.\nAny time will do so long as it is after six.\tN'importe quand, pourvu que ce soit après six heures.\nAnybody wanna grab something to eat with me?\tQuelqu'un veut-il aller chercher un truc à manger avec moi?\nAre there any Chinese restaurants near here?\tY a-t-il des restaurants chinois à proximité ?\nAre you doing anything special this evening?\tFaites-vous quoi que ce soit de spécial, ce soir ?\nAre you doing anything special this evening?\tFais-tu quoi que ce soit de spécial, ce soir ?\nAre you spending enough time with your kids?\tPassez-vous suffisamment de temps avec vos enfants ?\nAre you spending enough time with your kids?\tPasses-tu suffisamment de temps avec tes enfants ?\nAre you sure that you want to quit your job?\tEs-tu sûr que tu veux quitter ton emploi ?\nAre you sure that you want to quit your job?\tÊtes-vous sûr que vous voulez quitter votre emploi ?\nAre you sure that you want to quit your job?\tEs-tu sûre que tu veux quitter ton emploi ?\nAre you sure that you want to quit your job?\tÊtes-vous sûre que vous voulez quitter votre emploi ?\nAre you sure you don't want to come tonight?\tEs-tu sûr de ne pas vouloir venir ce soir ?\nAre you sure you don't want to come tonight?\tEs-tu sûre de ne pas vouloir venir ce soir ?\nAre you sure you don't want to come tonight?\tÊtes-vous sûr de ne pas vouloir venir ce soir ?\nAre you sure you don't want to come tonight?\tÊtes-vous sûre de ne pas vouloir venir ce soir ?\nAre you sure you don't want to come tonight?\tÊtes-vous sûrs de ne pas vouloir venir ce soir ?\nAre you sure you don't want to come tonight?\tÊtes-vous sûres de ne pas vouloir venir ce soir ?\nAren't you a little young for this position?\tN'êtes-vous pas un peu jeune pour ce poste ?\nAs far as I know, he has never come on time.\tPour autant que je sache, il n'est jamais venu à l'heure.\nAs far as I know, he's an excellent student.\tPour autant que je sache, c'est un excellent élève.\nAs far as I know, she is a very good person.\tPour autant que je sache, c'est une bonne personne.\nAs is often the case with him, he came late.\tComme d'habitude avec lui, il est arrivé en retard.\nAs soon as she saw me, she burst out crying.\tDès qu'elle me vit, elle éclata en sanglots.\nAs soon as the dog saw me, it began to bark.\tAussitôt que le chien me vit, il se mit à aboyer.\nAs we go up higher, the air becomes thinner.\tÀ mesure qu'on monte en altitude, l'atmosphère s'appauvrit.\nAs we grow older, our memory becomes weaker.\tPlus nous grandissons, plus notre mémoire faillit.\nAs you climb higher, the air becomes colder.\tEn montant plus haut, l'air devient plus froid.\nAs you make your bed, so you must lie in it.\tComme on fait son lit, on se couche.\nAt last, her dream to be a doctor came true.\tAu final, son rêve de devenir un médecin se réalisa.\nAt the foot of the hill is a beautiful lake.\tAu pied de la colline se trouve un très joli lac.\nAtomic energy can be used for peaceful ends.\tL'énergie atomique peut être utilisée à des fins pacifiques.\nAttempts to negotiate a peace treaty failed.\tLes tentatives pour négocier un traité de paix ont échoué.\nBad weather upset our plans to go on a hike.\tLe mauvais temps a bouleversé nos plans de sortie en randonnée.\nBiodiversity continues to decline each year.\tChaque année la biodiversité continue de reculer.\nBut we don't have anything in common at all.\tMais nous n'avons vraiment rien en commun.\nBy the time we got there, the ship had left.\tLe temps que nous arrivions, le bateau était parti.\nCan I borrow a pen? Mine's on its last legs.\tPuis-je emprunter un stylo ? Le mien est au bout du rouleau.\nCan I borrow a pen? Mine's on its last legs.\tPuis-je emprunter un stylo ? Le mien est à l'agonie.\nCan I get you something to wet your whistle?\tPuis-je vous offrir un verre ?\nCan I get you something to wet your whistle?\tPuis-je t'offrir un verre ?\nCan you account for all the money you spent?\tPouvez-vous rendre compte de tout l'argent que vous avez dépensé ?\nCan you account for all the money you spent?\tPeux-tu rendre compte de tout l'argent que tu as dépensé ?\nCan you account for all the money you spent?\tPeux-tu rendre compte de tout l'argent que vous avez dépensé ?\nCan you estimate how late the train will be?\tPouvez-vous estimer quel retard aura le train ?\nCan you fix this or should I call a plumber?\tPeux-tu réparer ceci ou devrais-je appeler un plombier ?\nCan you fix this or should I call a plumber?\tPouvez-vous réparer ceci ou devrais-je appeler un plombier ?\nCan you identify the man using this picture?\tPouvez-vous identifier l'homme à l'aide de cette photo ?\nCan you identify the man using this picture?\tPouvez-vous identifier l'homme qui utilise cette photo ?\nCan you identify the man using this picture?\tPeux-tu identifier l'homme à l'aide de cette photo ?\nCan you recommend a place to stay in London?\tPeux-tu me recommander un lieu de séjour à Londres?\nCan you recommend a place to stay in London?\tPouvez-vous me recommander un endroit à Londres où je puisse séjourner ?\nCan you spin a basketball on your fingertip?\tPeux-tu faire tourner un ballon de basket sur le bout de ton doigt ?\nCan you tell me why you want to work for us?\tPouvez-vous me dire pourquoi vous voulez travailler pour nous ?\nCan you tell me why you want to work for us?\tPeux-tu me dire pourquoi tu veux travailler pour nous ?\nCircumstances did not permit me to help you.\tLes circonstances ne m'ont pas permis de vous aider.\nCircumstances did not permit me to help you.\tLes circonstances ne m'ont pas permis de t'aider.\nComputers save us a lot of time and trouble.\tL'ordinateur nous épargne du temps et des problèmes.\nComputers save us a lot of time and trouble.\tLes ordinateurs nous épargnent beaucoup de temps et d'ennuis.\nCould you keep your eye out for my car keys?\tPourrais-tu garder un œil sur mes clés de voiture ?\nCould you please briefly introduce yourself?\tPourrais-tu brièvement te présenter ?\nCould you please briefly introduce yourself?\tPourriez-vous brièvement vous présenter ?\nCould you put a little sunscreen on my back?\tPourriez-vous me mettre un peu de crème solaire dans le dos?\nCould you tell me how to get to Park Street?\tPourriez-vous me dire comment me rendre à la rue du Parc ?\nCould you tell me how to get to your office?\tPourriez-vous me dire comment se rendre à votre bureau ?\nCould you tell me your mobile number please?\tPourrais-tu, s'il te plait, me donner ton numéro de portable ?\nCould you tell me your mobile number please?\tPourrais-tu, s'il te plait, m'indiquer ton numéro de portable ?\nCreditors have better memories than debtors.\tLes créanciers ont meilleure mémoire que les débiteurs.\nDaily exercise is essential for your health.\tUn exercice sportif quotidien est indispensable pour la santé.\nDid Tom ever tell you how he first met Mary?\tTom t'a-t-il déjà dit comment il a rencontré Mary pour la première fois ?\nDid you learn to swim when you were a child?\tAs-tu appris à nager quand tu étais enfant ?\nDid you see him at the station this morning?\tL'avez-vous vu à la gare ce matin ?\nDid you see the accident with your own eyes?\tAvez-vous vu l'accident de vos propres yeux ?\nDo this work by tomorrow if at all possible.\tFais ce travail pour demain si c'est dans le domaine du possible.\nDo this work by tomorrow if at all possible.\tEffectuez ce travail pour demain si c'est dans le domaine du possible.\nDo we have to get up early tomorrow morning?\tDevons-nous nous lever tôt demain matin?\nDo you ask every new employee that question?\tPosez-vous cette question à chaque nouvel employé ?\nDo you have a piece of paper I can write on?\tAvez-vous un bout de papier sur lequel je peux écrire?\nDo you have a piece of paper I can write on?\tDisposez-vous d'un morceau de papier sur lequel je puisse écrire ?\nDo you have a piece of paper I can write on?\tAs-tu un morceau de papier sur lequel je puisse écrire ?\nDo you have something to do with this group?\tAvez-vous quoi que ce soit à voir avec ce groupe ?\nDo you know anyone who hums while they work?\tConnais-tu qui que ce soit qui fredonne en travaillant ?\nDo you know anyone who hums while they work?\tConnaissez-vous qui que ce soit qui fredonne en travaillant ?\nDo you know how long they have been married?\tSais-tu depuis combien de temps ils sont mariés ?\nDo you know how long they have been married?\tSavez-vous depuis combien de temps ils sont mariés ?\nDo you know who conquered Mt. Everest first?\tSais-tu qui a conquis le mont Everest en premier ?\nDo you really think Tom is better than I am?\tPenses-tu vraiment que Tom est meilleur que moi ?\nDo you sometimes go abroad on your holidays?\tVas-tu quelquefois en vacances à l'étranger ?\nDo you think you could make it before lunch?\tPensez-vous que vous puissiez le faire avant le déjeuner?\nDo you want to be a bartender all your life?\tTu veux être un barman toute ta vie ?\nDo you want to be a bartender all your life?\tVoulez-vous être un barman toute votre vie ?\nDo you want us to try prying this door open?\tVeux-tu que nous tentions de forcer cette porte ?\nDo you want us to try prying this door open?\tVoulez-vous que nous essayions de forcer cette porte ?\nDon't ask what they think. Ask what they do.\tNe demandez pas ce qu'ils pensent. Demandez ce qu'ils font.\nDon't count your chickens before they hatch.\tNe comptez pas vos poussins avant qu'ils ne soient éclos.\nDon't feel embarrassed. These things happen.\tNe te sens pas gêné. Ces choses arrivent.\nDon't feel embarrassed. These things happen.\tNe te sens pas gênée. Ces choses arrivent.\nDon't feel embarrassed. These things happen.\tNe vous sentez pas gêné. Ces choses arrivent.\nDon't feel embarrassed. These things happen.\tNe vous sentez pas gênée. Ces choses arrivent.\nDon't feel embarrassed. These things happen.\tNe vous sentez pas gênés. Ces choses arrivent.\nDon't feel embarrassed. These things happen.\tNe vous sentez pas gênées. Ces choses arrivent.\nDon't forget to fill the tank with gasoline.\tN'oublie pas de remplir le réservoir d'essence.\nDon't let go of my hand, or you'll get lost.\tNe lâche pas ma main, ou tu vas te perdre.\nDon't respond to questions marked with an X.\tNe répondez pas aux questions marquées d'un X.\nDon't shout at me. I can hear you all right.\tNe me crie pas dessus. Je t'entends très bien.\nDon't waste my time asking stupid questions.\tNe gaspille pas mon temps en posant des questions stupides.\nDon't waste my time asking stupid questions.\tNe gaspillez pas mon temps en posant des questions stupides.\nDon't worry. There's nothing wrong with you.\tNe te fais pas de souci ! Il n'y a rien qui cloche avec toi.\nDon't worry. There's nothing wrong with you.\tNe vous faites pas de souci ! Il n'y a rien qui cloche avec vous.\nDon't you think that Tom was a little weird?\tNe pensez-vous pas que Tom était un peu bizarre ?\nDon't you think that Tom was a little weird?\tNe penses-tu pas que Tom était un peu bizarre ?\nDouglas finally agreed to talk with Lincoln.\tDouglas accepta enfin de parler avec Lincoln.\nEven if it rains, I'll go swimming tomorrow.\tMême s'il pleut, j'irai nager demain.\nEven the hard-hearted can be moved to tears.\tMême les cœurs de pierre peuvent être émus à en pleurer.\nEventually, Tom found out what had happened.\tFinalement, Tom a découvert ce qui s'était passé.\nEvery bride is beautiful on her wedding day.\tToute mariée est belle, le jour de son mariage.\nEverybody knew she could speak English well.\tTout le monde savait qu'elle pouvait parler très bien anglais.\nEveryone is responsible for his own actions.\tTout le monde est responsable de ses propres actions.\nEveryone’s eyes were fixed on the screens.\tTous les yeux étaient braqués sur les écrans.\nEverything is subject to the laws of nature.\tTout est soumis aux lois de la nature.\nExcuse me, but do you mind if ask your name?\tVeuillez m'excuser, mais verriez-vous un inconvénient à ce que je demande votre nom ?\nFactory waste sometimes pollutes our rivers.\tLes déchets d'usines polluent quelquefois nos rivières.\nFaith is believing what you know ain't true.\tLa foi consiste à croire ce que tu sais être faux.\nFeel free to comment on any point made here.\tN'hésitez pas à faire des commentaires sur n'importe quel point évoqué ici.\nFew people live to be one hundred years old.\tPeu de gens vivent centenaires.\nFew people live to be one hundred years old.\tPeu de gens vivent jusqu'à cent ans.\nFish is an important food source for people.\tLe poisson est une source de nourriture importante pour les hommes.\nFoot-and-mouth disease is highly contagious.\tLa fièvre aphteuse est hautement contagieuse.\nFor one thing, I couldn't afford to do that.\tPremièrement, je n'avais pas les moyens de le faire.\nFor one thing, I couldn't afford to do that.\tEt d'abord, je ne disposais pas des moyens de le faire.\nFor one thing, I couldn't afford to do that.\tPremièrement, je n'aurais pas les moyens de le faire.\nFrance used to have many colonies in Africa.\tLa France avait de nombreuses colonies en Afrique.\nFrankly speaking, I don't like your haircut.\tFranchement, je n'aime pas ta coiffure.\nFrogs turn into princes only in fairy tales.\tLes grenouilles ne se transforment en princes que dans les contes.\nFrom now on, let's eat lunch in the kitchen.\tÀ partir de maintenant, prenons notre déjeuner dans la cuisine.\nFurniture made of good materials sells well.\tLe mobilier fait avec de bons matériaux se vend bien.\nGenes consist of a specific sequence of DNA.\tLes gènes consistent en une séquence particulière d'ADN.\nGraham Greene is one of my favorite authors.\tGraham Greene est l'un de mes auteurs favoris.\nHad I known about it, I would have told you.\tSi je l'avais su, je vous l'aurais dit.\nHave any of your friends ever been arrested?\tL'un quelconque de vos amis s'est-il jamais fait arrêter ?\nHave any of your friends ever been arrested?\tL'un quelconque de tes amis s'est-il jamais fait arrêter ?\nHave any of your friends ever been arrested?\tL'une quelconque de vos amies s'est-elle jamais fait arrêter ?\nHave any of your friends ever been arrested?\tL'une quelconque de tes amies s'est-elle jamais fait arrêter ?\nHaving done the work, she has nothing to do.\tAyant fait son travail, elle n'a plus rien à faire.\nHaving lived in Tokyo, I know the city well.\tAyant vécu à Tokyo, je connais bien la ville.\nHe added a little sugar and milk to his tea.\tIl ajouta un peu de sucre et du lait à son thé.\nHe applied for a job with the Bank of Tokyo.\tIl a postulé pour un emploi à la banque de Tokyo.\nHe applied for admission to the riding club.\tIl a fait une demande d'adhésion au cercle hippique.\nHe attempted to climb the fence to no avail.\tIl tenta sans succès de grimper par-dessus la clôture.\nHe attempted to climb the fence to no avail.\tIl a tenté, sans succès, d'escalader la clôture.\nHe attempted to climb the fence to no avail.\tIl a tenté, sans succès, de passer par-dessus la barrière.\nHe became sick and they laid him on a bench.\tIl s'est trouvé mal et ils l'ont allongé sur un banc.\nHe called on state troops to end the strike.\tIl en appela à la troupe pour mettre fin à la grève.\nHe came to school even though he was unwell.\tIl est venu à l'école bien qu'il soit malade.\nHe chose the wrong man to pick a fight with.\tIl a choisi le mauvais adversaire pour se bagarrer.\nHe comes every day to visit his sick friend.\tIl vient chaque jour rendre visite à son ami malade.\nHe couldn't concentrate on the conversation.\tIl ne pouvait se concentrer sur la conversation.\nHe devoted himself to the study of medicine.\tIl s'est dévoué à l'étude de la médecine.\nHe did his best to be in time for the train.\tIl a fait de son mieux pour être à l'heure pour le train.\nHe doesn't seem to be aware of the problems.\tIl ne semble pas être conscient des problèmes.\nHe encouraged his son to do something great.\tIl encouragea son fils à réaliser quelque chose de grand.\nHe gave the police a false name and address.\tIl a donné un faux nom et une fausse adresse à la police.\nHe gets a reasonable salary as a bank clerk.\tIl reçoit un salaire raisonnable en tant qu'employé de banque.\nHe had an interview with the Prime Minister.\tIl a eu une entrevue avec le Premier ministre.\nHe had the good fortune to find a good wife.\tIl a eu la grande chance de trouver une bonne épouse.\nHe had the privilege of a private education.\tIl jouissait du privilège d'une éducation privée.\nHe has a very materialistic outlook on life.\tIl a une vision de la vie très matérialiste.\nHe has been studying French for eight years.\tIl étudie le français depuis huit ans.\nHe has completely avoided being sentimental.\tIl a complètement évité d'être sentimental.\nHe has no equal in the field of electronics.\tIl n'a pas d'égal dans le domaine de l'électronique.\nHe has published many papers on the subject.\tIl a publié de nombreux articles sur le sujet.\nHe has spent three years writing this novel.\tIl a mis trois ans à écrire ce roman.\nHe has taken charge of his father's company.\tIl a pris la charge de l'entreprise de son père.\nHe has very little interest in his children.\tIl porte très peu d'intérêt à ses enfants.\nHe held his breath while watching the match.\tIl a regardé le match tout en retenant son souffle.\nHe is a man whose heart is filled with hope.\tC'est un homme dont le cœur est plein d'espoir.\nHe is a recognized authority on the subject.\tIl est une autorité reconnue sur le sujet.\nHe is absorbed in reading a detective story.\tIl est absorbé dans la lecture d'un roman policier.\nHe is alert to every chance of making money.\tIl est à l'affût de tout ce qui pourrait lui faire gagner de l'argent.\nHe is always saying bad things about others.\tIl est tout le temps en train de dire du mal des autres.\nHe is furious at what they have done to him.\tIl est furieux de ce qu'ils lui ont fait.\nHe is going to be a doctor when he grows up.\tIl deviendra docteur quand il sera grand.\nHe is one of the best brains in our country.\tC'est l'un des meilleurs cerveaux du pays.\nHe is precisely the one you are looking for.\tIl est précisément celui que tu cherches.\nHe is precisely the one you are looking for.\tIl est précisément celui que vous cherchez.\nHe is reading a book. Let's leave him alone.\tIl lit un livre. Laissons-le tranquille.\nHe is said to have taken part in the battle.\tOn dit qu'il a participé à la bataille.\nHe is talking of going to Spain this winter.\tIl est en train de parler d'aller en Espagne cet hiver.\nHe is the tallest man that I have ever seen.\tC'est l'homme le plus grand que j'ai jamais vu.\nHe just texted me. I think he's drunk again.\tIl vient de m'envoyer un texto. Je pense qu'il est de nouveau soûl.\nHe just texted me. I think he's drunk again.\tIl vient de m'envoyer un texto. Je pense qu'il est à nouveau saoul.\nHe kept his promise and helped his brothers.\tIl tint sa promesse et aida ses frères.\nHe knows about the modern history of France.\tIl a des connaissances en histoire moderne de la France.\nHe left for London the day before yesterday.\tIl partit pour Londres avant-hier.\nHe looked at the ship through his telescope.\tIl regarda le navire avec le télescope.\nHe lost his balance and fell off the ladder.\tIl perdit l'équilibre et tomba de l'échelle.\nHe lost hope and killed himself with poison.\tIl a perdu espoir et s'est tué avec du poison.\nHe lost hope and killed himself with poison.\tIl perdit espoir et se tua à l'aide de poison.\nHe loved me, but he doesn't love me anymore.\tIl m'aimait mais il ne m'aime plus.\nHe made a cranberry sauce to accompany duck.\tIl a préparé une sauce aux airelles pour accompagner le canard.\nHe needs a few jokes to lighten up his talk.\tIl a besoin de quelques plaisanteries pour alléger son discours.\nHe often attributes his success to his wife.\tIl attribue souvent son succès à sa femme.\nHe often looks back on his high school days.\tIl évoque souvent ses souvenirs de l'époque du lycée.\nHe ought to have arrived in New York by now.\tIl devrait être arrivé à New-York maintenant.\nHe painted the picture which is on the wall.\tIl a peint le tableau qui est au mur.\nHe put his tools away after he had finished.\tIl mit ses outils de côté après qu'il eût fini.\nHe ran across the street, leaving her alone.\tIl a traversé la route en courant, la laissant toute seule.\nHe reached home shortly before five o'clock.\tIl arriva chez lui un peu avant cinq heures.\nHe reached home shortly before five o'clock.\tIl arriva chez lui un peu avant dix-sept heures.\nHe rescued the child from the burning house.\tIl a secouru l'enfant de la maison en feu.\nHe said he would write to me, but he hasn't.\tIl avait dit qu'il m'écrirait, mais il n'en fut rien.\nHe said that he had seen the picture before.\tIl avait dit qu'il avait vu le film avant.\nHe sleeps during the day and works at night.\tIl dort le jour et travaille la nuit.\nHe sleeps during the day and works at night.\tIl dort durant le jour et travaille de nuit.\nHe sleeps during the day and works at night.\tIl dort durant le jour et travaille la nuit.\nHe speaks English as if he were an American.\tIl parle anglais comme s'il était étatsunien.\nHe thinks that they are not sentient beings.\tIl pense qu'ils ne sont pas des êtres doués de sens.\nHe thinks that they are not sentient beings.\tIl pense qu'elles ne sont pas des êtres doués de sens.\nHe thought that he could climb the mountain.\tIl pensait qu'il pouvait faire l'ascension de la montagne.\nHe told me that he would start the next day.\tIl me dit qu'il commencerait le jour suivant.\nHe tried with all his might to lift the box.\tIl essaya de toutes ses forces de soulever la boîte.\nHe wanted to know more about the trees, too.\tIl voulait aussi en savoir davantage sur les arbres.\nHe was always trying to provoke an argument.\tIl cherchait constamment à déclencher une dispute.\nHe was at the wrong place at the wrong time.\tIl se trouvait au mauvais endroit au mauvais moment.\nHe was having lunch when I entered the room.\tIl était en train de déjeuner quand je suis entré dans la pièce.\nHe was having lunch when I entered the room.\tIl était en train de déjeuner quand je suis entrée dans la pièce.\nHe was in the right place at the right time.\tIl se trouvait au bon endroit au bon moment.\nHe was scared when the monkey jumped at him.\tIl a été effrayé lorsque le singe lui a sauté dessus.\nHe was silent for what seemed to me an hour.\tIl resta silencieux pendant ce qui me sembla une heure.\nHe was so tired that he fell right to sleep.\tIl était si fatigué qu'il s'endormit immédiatement.\nHe was the first actor I had met in my life.\tC'était le premier acteur que j'avais rencontré dans ma vie.\nHe was walking up the hill at a steady pace.\tIl grimpait la colline à un pas soutenu.\nHe went fishing in a river near the village.\tIl alla pêcher dans une rivière à proximité du village.\nHe went through many hardships in his youth.\tIl est passé par de nombreuses rudes épreuves au cours de sa jeunesse.\nHe who sleeps with dogs wakes up with fleas.\tQui dort avec des chiens se réveille avec des puces.\nHe will have no chance of winning her heart.\tIl n'aura aucune chance de gagner son cœur.\nHe will never give in even when he is wrong.\tIl ne cédera jamais, même s'il a tort.\nHe would do whatever it takes to make money.\tIl ferait n'importe quoi pour gagner de l'argent.\nHe's only a couple of years younger than me.\tIl n'a que quelques années de moins que moi.\nHe's spending too much time on the computer.\tIl passe trop de temps à l'ordinateur.\nHe's the prom king and she's the prom queen.\tIl est le roi du bal et elle en est la reine.\nHe's very young. He's much younger than Tom.\tIl est très jeune. Il est beaucoup plus jeune que Tom.\nHelp me pick out a tie to go with this suit.\tAide-moi à choisir une cravate qui aille avec ce costume.\nHelp me pick out a tie to go with this suit.\tAidez-moi à trouver une cravate qui va avec cet ensemble.\nHelp yourself to anything you'd like to eat.\tSers-toi, mange ce que tu veux.\nHer hair was long enough to reach the floor.\tSes cheveux étaient si longs qu'ils touchaient le sol.\nHer novel has been translated into Japanese.\tSon roman a été traduit en japonais.\nHer vital signs are being closely monitored.\tSes signes vitaux sont contrôlés de près.\nHis apparent anger proved to be only a joke.\tSon apparente colère n'était en fait qu'une plaisanterie.\nHis doctor told him to cut down on drinking.\tLe docteur lui a dit de diminuer la boisson.\nHis house was sold for ten thousand dollars.\tSa maison s'est vendue pour dix mille dollars.\nHis incompetence began to irritate everyone.\tSon incompétence commençait à énerver tout le monde.\nHis name is known to everybody in this area.\tSon nom est connu de tous dans cette région.\nHis new book met with a favorable reception.\tSon nouveau livre a eu un accueil favorable.\nHis novel has been translated into Japanese.\tSon roman a été traduit en japonais.\nHis recovery was nothing short of a miracle.\tSon rétablissement n'était ni plus ni moins qu'un miracle.\nHis salary is too low to support his family.\tSon salaire est trop bas pour soutenir sa famille.\nHot, dry areas will become hotter and drier.\tLes régions chaudes et sèches deviendront plus chaudes et plus sèches.\nHow come Mary is going on a picnic with him?\tPourquoi Mary va-t-elle avec lui au pique-nique ?\nHow did you become involved in this project?\tComment vous êtes-vous impliqué dans ce projet ?\nHow did you become involved in this project?\tComment t'es-tu impliqué dans ce projet ?\nHow did you become involved in this project?\tComment t'es-tu impliquée dans ce projet ?\nHow did you become involved in this project?\tComment vous êtes-vous impliquée dans ce projet ?\nHow did you become involved in this project?\tComment vous êtes-vous impliqués dans ce projet ?\nHow did you become involved in this project?\tComment vous êtes-vous impliquées dans ce projet ?\nHow did you come up with such a good excuse?\tComment as-tu trouvé une si bonne excuse ?\nHow did you wind up doing this kind of work?\tComment as-tu fini par faire ce genre de travail ?\nHow did you wind up doing this kind of work?\tComment avez-vous fini par faire ce genre de travail ?\nHow far is it from here to the next village?\tÀ quelle distance se trouve le prochain village ?\nHow far is it from the airport to the hotel?\tQuelle est la distance entre l’aéroport et l'hôtel ?\nHow long do I have to wait for the next bus?\tCombien de temps dois-je attendre pour le prochain bus?\nHow long do you think the meeting will last?\tCombien de temps pensez-vous que la réunion va durer ?\nHow long does it take to get to the stadium?\tCombien faut-il de temps pour aller au stade ?\nHow long does it take to get to the station?\tCombien de temps cela prend-il pour arriver à la station ?\nHow many combat situations have you been in?\tDans combien de situations de combat vous êtes-vous retrouvé ?\nHow many combat situations have you been in?\tDans combien de situations de combat vous êtes-vous retrouvés ?\nHow many combat situations have you been in?\tDans combien de situations de combat vous êtes-vous retrouvées ?\nHow many galaxies are there in the universe?\tCombien y a-t-il de galaxies dans l'univers ?\nHow many people were present at the meeting?\tCombien de personnes étaient-elles présentes à la réunion ?\nHow much did they give you for your old car?\tCombien vous ont-ils donné de votre vieille voiture ?\nHow much did they give you for your old car?\tCombien t'ont-ils donné de ta vieille voiture ?\nHow much did they give you for your old car?\tCombien t'ont-ils donné de ta chignole ?\nHow much did they give you for your old car?\tCombien t'ont-ils donné de ta guimbarde ?\nHow much did they give you for your old car?\tCombien vous ont-ils donné de votre vieille guimbarde ?\nHow much do I owe you for the cup of coffee?\tCombien vous dois-je pour le café ?\nHow much do I owe you for the cup of coffee?\tCombien te dois-je pour le café ?\nHow much is the car you are planning to buy?\tCombien coûte la voiture que vous envisagez d'acheter ?\nHow much longer is this storm going to last?\tCombien de temps va encore durer cette tempête ?\nHow much money do you have on you right now?\tCombien d'argent avez-vous sur vous à l'instant ?\nHow much money do you have on you right now?\tCombien d'argent as-tu sur toi à l'instant ?\nHow much time do you spend with your spouse?\tCombien de temps passez-vous avec votre épouse ?\nHow much will it cost to get to the airport?\tCombien cela coûtera-t-il d'aller à l'aéroport ?\nHow much would you want to pay for the tour?\tCombien voudriez-vous payer pour la visite ?\nHow often and how much should I feed my dog?\tÀ quelle fréquence et en quelle quantité devrais-je nourrir mon chien ?\nHow tall are you, and how much do you weigh?\tCombien mesures-tu et combien pèses-tu ?\nHundreds of buffaloes moved toward the lake.\tDes centaines de bœufs se sont dirigés vers le lac.\nHurry up and you can still catch your train.\tSi tu te dépêches tu peux encore attraper ton train.\nHurry up and you can still catch your train.\tSi vous vous dépêchez vous pouvez encore attraper votre train.\nI almost forgot to tell Tom about the party.\tJ'ai failli oublier de parler de la soirée à Tom.\nI already sent an email to the support team.\tJ'ai déjà envoyé un courriel à l'équipe d'assistance.\nI always felt like she was hiding something.\tJ'avais toujours l'impression qu'elle cachait quelque chose.\nI always have a lot of fun when I come here.\tJe m'amuse toujours beaucoup quand je viens ici.\nI am accustomed to eating this sort of food.\tJ'ai l'habitude de manger ce type de nourriture.\nI am alarmed by your irresponsible attitude.\tJe suis inquiet de votre attitude irresponsable.\nI am alarmed by your irresponsible attitude.\tJe suis étonné par ton attitude irresponsable.\nI am forbidden to stay out after 10 o'clock.\tJe n'ai pas le droit de rester dehors après 10 heures.\nI am hungry because I did not eat breakfast.\tJ'ai faim, parce que je n'avais pas pris de petit déjeuner.\nI am hungry because I did not eat breakfast.\tJ'ai faim, car je n'ai pas pris mon petit déjeuner.\nI am in agreement with most of what he says.\tJe suis d'accord avec la majeure partie de ce qu'il dit.\nI am in agreement with most of what he says.\tJe suis en accord avec l'essentiel de ce qu'il dit.\nI am in no position to do anything about it.\tJe ne suis pas en mesure de faire quoique ce soit à ce sujet.\nI am not as interested in literature as you.\tJe ne suis pas autant intéressé par la littérature que vous.\nI am sorry that I have troubled you so much.\tJe suis désolé de t'avoir autant embêté.\nI am sorry to have kept you waiting so long.\tJe suis désolé de t'avoir fait attendre si longtemps.\nI am sure of his winning the speech contest.\tJe suis sûr qu'il va remporter le concours de diction.\nI am thinking of closing my savings account.\tJe pense clôturer mon compte d'épargne.\nI am very sorry to inform you that she died.\tJe suis au regret de vous informer qu'elle est décédée.\nI applied for membership in the association.\tJ'ai soumis ma candidature pour devenir membre de l'association.\nI asked Tom why he had never gotten married.\tJ'ai demandé à Tom pourquoi il ne s'était jamais marié.\nI asked Tom why he had never studied French.\tJ'ai demandé à Tom pourquoi il n'a jamais étudié le français.\nI awoke to find everything had been a dream.\tJe me suis réveillé pour me rendre compte que tout avait été un rêve.\nI became acquainted with your dad yesterday.\tJ'ai fait hier la connaissance de ton papa.\nI became very sleepy after a bit of reading.\tJe me mis à avoir très sommeil après un peu de lecture.\nI calculated that it would cost 300 dollars.\tJ'ai calculé que cela coûtera 300 dollars.\nI called him, but a girl answered the phone.\tJe l'ai appelé mais une fille a répondu au téléphone.\nI called him, but a girl answered the phone.\tJe l'appelai mais une fille répondit au téléphone.\nI can never stay angry at Tom for very long.\tJe ne peux jamais rester fâché contre Tom bien longtemps.\nI can not feel at home in a luxurious hotel.\tJe n'arrive pas à me sentir chez moi dans un hôtel de luxe.\nI can't afford to buy such an expensive car.\tJe n'ai pas les moyens de me payer une voiture aussi chère.\nI can't believe I didn't even think of that.\tJe n'arrive pas à croire que je n'y aie même pas pensé.\nI can't believe I let you talk me into this.\tJe n'arrive pas à croire que je vous laisse m'en persuader.\nI can't believe I let you talk me into this.\tJe n'arrive pas à croire que je te laisse m'en persuader.\nI can't believe that you enjoyed that movie.\tJe n'arrive pas à croire que ce film t'ait plu.\nI can't believe that you enjoyed that movie.\tJe n'arrive pas à croire que ce film vous ait plu.\nI can't believe your mom made you wear that.\tJe n'arrive pas à croire que ta mère t'aie fait porter ça.\nI can't believe your mom made you wear that.\tJe n'arrive pas à croire que votre mère vous aie fait porter ça.\nI can't blame you for breaking your promise.\tJe ne peux pas te blâmer d'avoir rompu ta promesse.\nI can't carry this suitcase. It's too heavy.\tJe ne peux pas porter cette valise. C'est trop lourd.\nI can't express myself in English very well.\tJe n'arrive pas à très bien m'exprimer en anglais.\nI can't find my ticket. I must have lost it.\tJe n'arrive pas à trouver mon ticket. Je dois l'avoir perdu.\nI can't finish the job in such a short time.\tJe ne peux pas terminer le travail en un temps aussi court.\nI can't imagine a world without electricity.\tJe ne peux pas m'imaginer un monde sans électricité.\nI can't make heads or tails of what you say.\tJe n'entends rien à ce que tu dis.\nI can't understand the meaning of this word.\tJe n'arrive pas à comprendre la signification de ce mot.\nI can't understand what he is trying to say.\tJe n'arrive pas à comprendre ce qu'il essaie de dire.\nI cannot thank you enough for your kindness.\tJe ne te remercierai jamais assez pour ta gentillesse.\nI couldn't answer any questions on the test.\tJe ne peux répondre à aucune question dans ce test.\nI couldn't make myself understood in French.\tJe n'arrivais pas à me faire comprendre en français.\nI didn't steal it. You can check my pockets.\tJe ne l'ai pas volé. Vous pouvez vérifier mes poches.\nI didn't steal it. You can check my pockets.\tJe ne l'ai pas volée. Vous pouvez vérifier mes poches.\nI didn't steal it. You can check my pockets.\tJe ne l'ai pas volé. Tu peux vérifier mes poches.\nI didn't steal it. You can check my pockets.\tJe ne l'ai pas volée. Tu peux vérifier mes poches.\nI didn't want to do this in the first place.\tJe ne voulais pas faire ceci en premier lieu.\nI didn't want to do this in the first place.\tJe ne voulais pas faire ceci au départ.\nI didn't want to spend any more time in bed.\tJe ne voulais plus passer de temps au lit.\nI didn't want to spend any more time in bed.\tJe ne voulais plus passer davantage de temps au lit.\nI don't feel comfortable posing in the nude.\tJe ne me sens pas à l'aise de poser nu.\nI don't feel comfortable posing in the nude.\tJe ne me sens pas à l'aise de poser nue.\nI don't feel like translating this sentence.\tJe n'ai pas envie de traduire cette phrase.\nI don't know how to persuade Tom to help us.\tJe ne sais pas comment persuader Tom de nous aider.\nI don't know how you did it, but you did it.\tJe ne sais pas comment vous l'avez fait mais vous l'avez fait.\nI don't know how you did it, but you did it.\tJe ne sais pas comment tu l'as fait mais tu l'as fait.\nI don't know what I want to do with my life.\tJ'ignore ce que je veux faire de ma vie.\nI don't know what could have happened to it.\tJe ne sais pas ce qui aurait pu lui arriver.\nI don't know what could have happened to it.\tJ'ignore ce qui aurait pu lui arriver.\nI don't know what motivated me to come here.\tJe ne sais pas ce qui m'a motivé à venir ici.\nI don't know what the meeting will be about.\tJ'ignore à quel sujet se tiendra la réunion.\nI don't know when, but it'll happen someday.\tJ'ignore quand, mais ça arrivera un jour.\nI don't like such sports as tennis and golf.\tJe n'aime pas les sports tel que le tennis et le golf.\nI don't like this tie. Show me a better one.\tJe n'aime pas cette cravate. Montrez-m'en une autre.\nI don't particularly want to be here at all.\tJe ne veux pas du tout être ici en particulier.\nI don't see what you two are so happy about.\tJe ne vois pas de quoi vous êtes tellement contents, tous les deux.\nI don't see what you two are so happy about.\tJe ne vois pas de quoi vous êtes tellement contentes, toutes les deux.\nI don't think I'll be needing anything else.\tJe ne pense pas qu'il me faille quoi que ce soit d'autre.\nI don't think I'll be needing anything else.\tJe ne pense pas qu'il va me falloir quoi que ce soit d'autre.\nI don't think I'll be needing anything else.\tJe ne pense pas avoir besoin de quoi que ce soit d'autre.\nI don't think I'll be needing anything else.\tJe ne pense pas que j'aurai besoin de quoi que ce soit d'autre.\nI don't think he was being straight with me.\tJe ne pense pas qu'il était franc avec moi.\nI don't think he's playing with a full deck.\tJe ne crois pas qu'il joue avec un jeu complet.\nI don't think he's playing with a full deck.\tJe pense qu'il lui manque une case.\nI don't think it's good for him to go alone.\tJe ne pense pas qu'il soit bon qu'il y aille seul.\nI don't think it's good for him to go alone.\tJe ne pense pas qu'il soit bon qu'il s'y rende seul.\nI don't understand why Tom brought you here.\tJe ne comprends pas pourquoi Tom t'a amené ici.\nI don't understand why Tom brought you here.\tJe ne comprends pas pourquoi Tom vous a amenées ici.\nI don't want to burden you with my troubles.\tJe ne veux pas vous accabler avec mes ennuis.\nI don't want to know what's going to happen.\tJe ne veux pas savoir ce qu'il va se passer.\nI don't want to participate in the ceremony.\tJe ne veux pas participer à la cérémonie.\nI don't want to work under these conditions.\tJe ne veux pas travailler dans de telles conditions.\nI fear that I might not be able to help you.\tJe crains de ne pouvoir t'aider.\nI feel cold. Do you mind closing the window?\tJ'ai froid. Ça ne te gêne pas de fermer la fenêtre ?\nI feel like doing something different today.\tJ'ai envie de faire quelque chose de différent, aujourd'hui.\nI fell asleep while I was doing my homework.\tJe me suis endormi en faisant mes devoirs.\nI felt relieved when my plane landed safely.\tJe me sentis soulagé quand mon avion atterrit en sécurité.\nI felt relieved when my plane landed safely.\tJe me suis senti soulagé quand mon avion a atterri en sécurité.\nI finally found the solution to the problem.\tJ'ai finalement trouvé la solution au problème.\nI gave careful consideration to the problem.\tJ'ai prêté grande attention à ce problème.\nI gave them a present for their anniversary.\tJe leur ai remis un cadeau pour leur anniversaire.\nI gave them a present for their anniversary.\tC'est moi qui leur ai remis un cadeau pour leur anniversaire.\nI gave you a chance, but you didn't take it.\tJe vous ai donné une chance mais vous ne l'avez pas saisie.\nI gave you a chance, but you didn't take it.\tJe t'ai donné une chance mais tu ne l'as pas saisie.\nI get goose bumps when I see a horror movie.\tJ'ai la chair de poule lorsque je regarde un film d'horreur.\nI get goose bumps when I see a horror movie.\tJ'ai la chair de poule quand je vois un film d'horreur.\nI got a letter from an old friend yesterday.\tJ'ai reçu une lettre d'un vieil ami hier.\nI got to know her through one of my friends.\tJ'ai fait sa connaissance par l'intermédiaire de l'un de mes amis.\nI got you confused with your oldest brother.\tJe vous ai pris pour votre frère aîné.\nI got you confused with your oldest brother.\tJe t'ai pris pour ton frère aîné.\nI had a little difficulty in getting a taxi.\tJ'ai eu quelque difficulté à trouver un taxi.\nI had almost finished my work when she came.\tJ'avais presque terminé mon travail lorsqu'elle vint.\nI had my wallet stolen from my inner pocket.\tOn m'a volé mon portefeuille qui se trouvait dans la poche intérieure.\nI had no intention of going there by myself.\tJe n'avais aucune intention de m'y rendre par mes propres moyens.\nI had no intention of going there by myself.\tJe n'avais aucune intention de m'y rendre seul.\nI had no intention of going there by myself.\tJe n'avais aucune intention de m'y rendre seule.\nI had to beg my friends to come to my party.\tJ'ai dû supplier mes amis de venir à ma fête.\nI hate mosquitoes, but they seem to love me.\tJ'ai les moustiques en horreur mais ils semblent m'adorer.\nI hate the world because the world hates me.\tJe déteste le monde parce que le monde me déteste.\nI have a boiled egg for breakfast every day.\tJe mange un œuf à la coque chaque matin pour le petit déjeuner.\nI have a boiled egg for breakfast every day.\tJe mange un œuf coque chaque matin au petit déjeuner.\nI have a client waiting in the waiting room.\tJ'ai un client qui attend dans la salle d'attente.\nI have a friend waiting for me in the lobby.\tJ'ai un ami qui m'attend dans le hall.\nI have a lot of money in my savings account.\tJ'ai beaucoup d'argent sur mon compte épargne.\nI have a lot of money in my savings account.\tJ'ai beaucoup d'argent sur mon compte d'épargne.\nI have a lot of things to do this afternoon.\tJ'ai beaucoup de choses à faire cet après-midi.\nI have abandoned the idea of buying a house.\tJ'ai abandonné l'idée d'acheter une maison.\nI have always considered you a close friend.\tJe vous ai toujours considéré comme un ami proche.\nI have always considered you a close friend.\tJe vous ai toujours considérée comme une amie proche.\nI have always considered you a close friend.\tJe vous ai toujours considéré comme un ami intime.\nI have always considered you a close friend.\tJe vous ai toujours considérée comme une amie intime.\nI have always considered you a close friend.\tJe t'ai toujours considérée comme une amie proche.\nI have always considered you a close friend.\tJe t'ai toujours considérée comme une amie intime.\nI have always considered you a close friend.\tJe t'ai toujours considéré comme un ami proche.\nI have always considered you a close friend.\tJe t'ai toujours considéré comme un ami intime.\nI have been waiting for almost half an hour.\tJ'attends depuis presque une demie heure.\nI have done everything I was supposed to do.\tJ'ai fait tout ce que j'étais supposé faire.\nI have five times as many stamps as he does.\tJ'ai cinq fois plus de timbres qu'il n'en a.\nI have many friends who are native speakers.\tJ'ai de nombreux amis qui sont des locuteurs natifs.\nI have many friends who are native speakers.\tJ'ai de nombreuses amies qui sont des locutrices natives.\nI have no idea why he quit his job suddenly.\tJe n'ai aucune idée de pourquoi il a soudainement quitté son boulot.\nI have no more than one hundred yen with me.\tJe n'ai pas plus de cent yens sur moi.\nI have not been sick for the past ten years.\tJe n'ai jamais été malade de ces dix dernières années.\nI have plenty of time, but not enough money.\tJ'ai certes beaucoup de temps, mais je n'ai pas assez d'argent.\nI have seen this happen over and over again.\tJe l'ai vu se produire des tas de fois.\nI have something very important to tell you.\tJ'ai quelque chose de très important à te dire.\nI have something very important to tell you.\tJ'ai quelque chose de très important à vous dire.\nI have something very important to tell you.\tIl me faut te dire quelque chose de très important.\nI have something very important to tell you.\tIl me faut vous dire quelque chose de très important.\nI have three times as many books as he does.\tJ'ai trois fois plus de livres que lui.\nI have to change the batteries in the radio.\tIl faut que je change les piles de cette radio.\nI have to finish up some things before I go.\tJe dois finir deux trois trucs avant d'y aller.\nI have to think about what needs to be done.\tJe dois réfléchir sur ce qu'il faut faire.\nI haven't been back here since the incident.\tJe ne suis pas revenu ici depuis l'accident.\nI haven't eaten anything since this morning.\tJe n'ai rien mangé depuis ce matin.\nI hear his business is on the verge of ruin.\tApparemment son entreprise est au bord de la faillite.\nI hope I didn't make you feel uncomfortable.\tJ'espère que je ne t'ai pas mis mal à l'aise.\nI hope I didn't make you feel uncomfortable.\tJ'espère que je ne t'ai pas mise mal à l'aise.\nI hope I didn't make you feel uncomfortable.\tJ'espère que je ne vous ai pas mis mal à l'aise.\nI hope I didn't make you feel uncomfortable.\tJ'espère ne pas vous avoir indisposé.\nI hope I didn't make you feel uncomfortable.\tJ'espère ne pas vous avoir indisposée.\nI hope to continue to see more of the world.\tJ'espère continuer à voir davantage le monde.\nI hope to see reindeer on my trip to Sweden.\tJ'espère voir des rennes lors de mon voyage en Suède.\nI hope you'll find this office satisfactory.\tJ'espère que ce bureau vous conviendra.\nI hurried in order to catch the first train.\tJe me dépêchai pour avoir le premier train.\nI just can't stand this hot weather anymore.\tJe ne peux juste plus supporter cette chaleur.\nI just don't want there to be any bloodshed.\tJe ne veux tout simplement pas qu'il y ait une effusion de sang.\nI just thought that you wouldn't want to go.\tJ'ai simplement pensé que vous ne voudriez pas y aller.\nI just thought that you wouldn't want to go.\tJ'ai simplement pensé que vous ne voudriez pas vous y rendre.\nI just thought that you wouldn't want to go.\tJ'ai simplement pensé que tu ne voudrais pas y aller.\nI just thought that you wouldn't want to go.\tJ'ai simplement pensé que tu ne voudrais pas t'y rendre.\nI just want to be your friend, nothing more.\tJe veux juste être ton ami, rien de plus.\nI just want to be your friend, nothing more.\tJe veux juste être ton amie, rien de plus.\nI just want to be your friend, nothing more.\tJe veux juste être votre ami, rien de plus.\nI just want to be your friend, nothing more.\tJe veux juste être votre amie, rien de plus.\nI just want to know why you brought me here.\tJe veux juste savoir pourquoi tu m'as amené ici.\nI just want to know why you brought me here.\tJe veux juste savoir pourquoi tu m'as amenée ici.\nI just want to know why you brought me here.\tJe veux juste savoir pourquoi vous m'avez amenée ici.\nI just want to know why you brought me here.\tJe veux juste savoir pourquoi vous m'avez amené ici.\nI just want to talk with you a little while.\tJe veux juste te parler un petit moment.\nI just want to talk with you a little while.\tJe veux juste vous parler un petit moment.\nI just want to talk with you a little while.\tJe veux juste converser avec vous un petit moment.\nI just want to talk with you a little while.\tJe veux juste m'entretenir avec vous un petit moment.\nI just want to talk with you a little while.\tJe veux juste m'entretenir avec toi un petit moment.\nI just wanted to let you know I have a date.\tJe voulais juste te faire savoir que je sors avec quelqu'un.\nI know Tom wants us to go swimming with him.\tJe sais que Tom veut que nous allions à la piscine avec lui.\nI know a good restaurant that's inexpensive.\tJe connais un bon restaurant qui est bon marché.\nI know somebody who speaks French very well.\tJe connais quelqu'un qui parle très bien français.\nI know someone who has never seen the ocean.\tJe connais quelqu'un qui n'a jamais vu l'océan.\nI know that I calculated the bill correctly.\tJe sais que j'ai correctement calculé la facture.\nI know that I calculated the bill correctly.\tJe sais que j'ai correctement calculé la note.\nI liked walking alone on the deserted beach.\tJ'appréciai de marcher seul sur la plage déserte.\nI liked walking alone on the deserted beach.\tJ'ai apprécié de marcher seul sur la plage déserte.\nI looked in my closet for something to wear.\tJe regardai dans mon placard pour quelque chose à me mettre.\nI looked in my closet for something to wear.\tJ'ai regardé dans mon placard pour quelque chose à me mettre.\nI missed you a lot while you were in Boston.\tTu m'as beaucoup manqué pendant que tu étais à Boston.\nI must offer you an apology for coming late.\tJe vous dois des excuses pour mon retard.\nI need a pair of scissors to cut this paper.\tJ'ai besoin d'une paire de ciseaux pour couper ce papier.\nI need to have a word with you in my office.\tIl me faut avoir un mot avec vous dans mon bureau.\nI need to have a word with you in my office.\tIl me faut avoir un mot avec toi dans mon bureau.\nI never dreamed that I would meet her again.\tJe n'aurais jamais imaginé la revoir.\nI never dreamed that I would meet her there.\tJe n'aurais jamais rêvé la rencontrer là.\nI never imagined myself going home so early.\tJe ne me suis jamais imaginé aller chez moi si tôt.\nI never make a speech without being nervous.\tJe ne fais jamais un discours sans être nerveux.\nI never should've let Tom eat so much candy.\tJamais je n’aurais dû laisser Tom manger autant de bonbons.\nI owe it to my parents that I am so healthy.\tJe dois à mes parents d'être en aussi bonne santé.\nI persuaded her to make herself comfortable.\tJe la convainquis de se mettre à l'aise.\nI persuaded her to make herself comfortable.\tJe l'ai convaincue de se mettre à l'aise.\nI plan to finish it in two or three minutes.\tJe prévois de le terminer dans deux ou trois minutes.\nI plan to go. I don't care if you do or not.\tJe prévois de m'y rendre. Je me fiche que tu y ailles ou pas.\nI plan to go. I don't care if you do or not.\tJe prévois d'y aller. Ça m'est égal que vous y alliez aussi ou pas.\nI prefer soap as a liquid rather than a bar.\tJe préfère le savon liquide à une savonnette.\nI promise you I'll explain everything later.\tJe vous promets que j'expliquerai tout plus tard.\nI promise you I'll explain everything later.\tJe te promets que j'expliquerai tout plus tard.\nI ran as fast as I could to catch the train.\tJe courus aussi vite que je pus pour attraper le train.\nI ran the risk of losing my job to help her.\tJ'ai couru le risque de perdre mon travail pour l'aider.\nI really wish I knew why Tom didn't like me.\tJ'aimerais vraiment savoir pourquoi Tom ne m'aime pas.\nI rode a horse for the first time yesterday.\tJe suis monté à cheval pour la première fois hier.\nI said nothing, which made him more furious.\tJe ne dis rien, ce qui le rendit plus furieux.\nI said to myself, \"I wonder what she means.\"\tJe me disais \"qu'a-t-elle voulu dire\".\nI sat behind a very tall man in the theater.\tJ'étais assis derrière un homme très grand au cinéma.\nI saw the two together on several occasions.\tJe les vis ensemble à plusieurs occasions.\nI saw the two together on several occasions.\tJe les ai vus ensemble à plusieurs occasions.\nI saw the two together on several occasions.\tJe les ai vues ensemble à plusieurs occasions.\nI see you had to work late again last night.\tJe vois que vous avez à nouveau dû travailler tard, hier soir.\nI see you had to work late again last night.\tJe vois que tu as à nouveau dû travailler tard, hier soir.\nI should've listened to what my mother said.\tJ'aurais dû écouter ce que ma mère avait dit.\nI shouldn't have to do all this work myself.\tJe ne devrais pas avoir à faire tout ce travail moi-même.\nI stopped at the supermarket on my way home.\tJe m'arrêtai au supermarché sur le chemin de la maison.\nI stopped at the supermarket on my way home.\tJe me suis arrêté au supermarché sur le chemin de la maison.\nI studied French for three hours last night.\tJ'ai étudié le français pendant trois heures la nuit dernière.\nI suppose I could change a tire if I had to.\tJe suppose que je saurais changer un pneu si je le devais.\nI suppose I could change a tire if I had to.\tJe suppose que je saurais changer un pneu s'il me le fallait.\nI suppose you've already applied for a visa.\tJe suppose que tu as déjà soumis une demande de visa.\nI suppose you've already applied for a visa.\tJe suppose que vous avez déjà soumis une demande de visa.\nI swear I never showed anyone that document.\tJe jure que je n'ai jamais montré ce document à quiconque.\nI talked my wife out of buying a new carpet.\tJ'ai dissuadé ma femme d'acheter un nouveau tapis.\nI think I've had a little too much to drink.\tJe crois que j'ai bu un peu trop.\nI think I've seen that guy somewhere before.\tJe pense avoir déjà vu ce type quelque part.\nI think Tom did something he shouldn't have.\tJe pense que Tom a fait quelque chose qu'il n'aurait pas dû faire.\nI think Tom probably knows about it already.\tJe pense que Tom est probablement déjà au courant.\nI think he can get along with his neighbors.\tJe pense qu'il peut s'entendre avec ses voisins.\nI think he regrets having divorced his wife.\tJe pense qu'il regrette d'avoir divorcé de sa femme.\nI think he's coming, but I'm not quite sure.\tJe pense qu'il viendra, mais je n'en suis pas tout à fait sûr.\nI think it's dangerous to swim in this lake.\tJe pense qu'il est dangereux de nager dans ce lac.\nI think it's good for you to read this book.\tJe pense que c'est bien pour toi que tu lises ce livre.\nI think it's good for you to read this book.\tJe pense que c'est bien pour vous que vous lisiez ce livre.\nI think it's time for me to change my plans.\tJe pense qu'il est temps pour moi de changer mes plans.\nI think it's time for me to go back to work.\tJe pense qu'il est temps pour moi de retourner au travail.\nI think it's time for me to turn off the TV.\tJe pense qu'il est temps pour moi d'éteindre la télé.\nI think it's unlikely that plants feel pain.\tJe pense qu'il est peu probable que les plantes ressentent la douleur.\nI think my boyfriend is spying on my emails.\tJe pense que mon petit copain espionne mes courriels.\nI think that China will play an active role.\tJe crois que la Chine jouera un rôle actif.\nI think there are lots of sites to see here.\tJe pense qu'il y a ici de nombreux sites à voir.\nI think there's something we're all missing.\tJe pense qu'il y a quelque chose dont nous manquons tous.\nI think this is beside the point, right now.\tJe pense que c'est hors sujet, pour l'instant.\nI think we're going to stay for another day.\tJe pense que nous allons rester un jour de plus.\nI think we've done a pretty good job so far.\tJe pense que nous avons fait un assez bon boulot jusqu'à présent.\nI think you haven't understood the question.\tJe crois que tu n'as pas compris la question.\nI think you've mistaken me for someone else.\tJe pense que vous m'avez pris pour quelqu'un d'autre.\nI thought I'd try eating Mexican food today.\tJe pensais essayer la nourriture mexicaine, aujourd'hui.\nI thought my eyes were playing tricks on me.\tJe pensais que mes yeux me jouaient des tours.\nI took a taxi from the station to the hotel.\tJ'ai pris un taxi pour aller de la gare à l'hôtel.\nI tried to pretend I was something I wasn't.\tJ'essayais de faire semblant d'être quelque chose que je n'étais pas.\nI turned on the radio to listen to the news.\tJ'ai allumé la radio pour écouter les nouvelles.\nI used to go ice fishing when I was younger.\tJ'allais pêcher sous la glace, lorsque j'étais plus jeune.\nI used to swim every day when I was a child.\tJ'avais l'habitude de nager quotidiennement quand j'étais enfant.\nI usually don't bother with people like him.\tJe ne me soucie pas, d'ordinaire, de gens comme lui.\nI usually don't bother with people like him.\tJe ne me soucie pas, d'ordinaire, de gens tels que lui.\nI want my children to have dual citizenship.\tJe veux que mes enfants disposent de la double nationalité.\nI want my children to have dual citizenship.\tJe veux que mes enfants jouissent de la double nationalité.\nI want my money back and I want it back now.\tJe veux qu'on me rende mon argent et je veux qu'on me le rende maintenant.\nI want that information as soon as possible.\tJe veux cette information aussi tôt que possible.\nI want this more than anything in the world.\tJe le veux plus que tout au monde.\nI want to ask you about the money you found.\tJe veux te questionner au sujet de l'argent que tu as trouvé.\nI want to ask you about the money you found.\tJe veux vous questionner au sujet de l'argent que vous avez trouvé.\nI want to continue this discussion tomorrow.\tJe veux continuer cette discussion demain.\nI want to go to the top of the Eiffel Tower.\tJe veux me rendre au haut de la Tour Eiffel.\nI want to go to the top of the Eiffel Tower.\tJe veux me rendre en haut de la Tour Eiffel.\nI want to go to the top of the Eiffel Tower.\tJe veux aller en haut de la Tour Eiffel.\nI want to have something to remember you by.\tJe veux disposer de quelque chose par laquelle me souvenir de vous.\nI want to have something to remember you by.\tJe veux disposer de quelque chose par laquelle me souvenir de toi.\nI want to have something to remember you by.\tJe veux disposer de quelque chose qui me rappelle à vous.\nI want to have something to remember you by.\tJe veux disposer de quelque chose qui me rappelle à toi.\nI want to know if you will be free tomorrow.\tJe veux savoir si tu seras libre demain.\nI want to know if you will be free tomorrow.\tJe veux savoir si vous serez libre demain.\nI want to know if you will be free tomorrow.\tJe veux savoir si vous serez libres demain.\nI want to know that what I'm doing is right.\tJe veux savoir que ce que je fais est correct.\nI want to know that what I'm doing is right.\tJe veux savoir que ce que je fais est bien.\nI want to learn to play the guitar like you.\tJe veux apprendre à jouer de la guitare tel que tu le fais.\nI want to learn to play the guitar like you.\tJe veux apprendre à jouer de la guitare tel que vous le faites.\nI want to see a doctor about my stomachache.\tJe veux voir un médecin à propos de mes maux d'estomac.\nI want to thank you all for a job well done.\tJe veux tous vous remercier pour du bon boulot.\nI want to thank you all for a job well done.\tJe veux toutes vous remercier pour du bon boulot.\nI want you to come work here at our company.\tJe veux que vous veniez travailler ici dans notre entreprise.\nI want you to come work here at our company.\tJe veux que tu viennes travailler ici dans notre entreprise.\nI was about to leave when the doorbell rang.\tJ'étais sur le point de partir quand la cloche d'entrée sonna.\nI was absent from school because I was sick.\tJ'ai été absent de l'école parce que j'étais malade.\nI was absent from school because I was sick.\tJ'étais absente de l'école parce que j'étais malade.\nI was absent from school because I was sick.\tJ'ai été absent de l'école parce que j'ai été malade.\nI was afraid that I might hurt his feelings.\tJe craignais de heurter sa sensibilité.\nI was afraid that I might hurt his feelings.\tJe craignais de l'offenser.\nI was leaving home, when it started to rain.\tJe sortais de chez moi, lorsqu'il s'est mis à pleuvoir.\nI was the only one not invited to the party.\tJe fus le seul à ne pas être invité à la fête.\nI was the only one not invited to the party.\tJe fus le seul à ne pas être invité à la soirée.\nI was the only one not invited to the party.\tJ'ai été le seul à ne pas être invité à la fête.\nI was the only one not invited to the party.\tJe fus la seule à ne pas être invitée à la fête.\nI was the only one not invited to the party.\tJ'ai été la seule à ne pas être invitée à la fête.\nI was the only one not invited to the party.\tJe fus la seule à ne pas être invitée à la soirée.\nI was the only one not invited to the party.\tJ'ai été le seul à ne pas être invité à la soirée.\nI was the only one not invited to the party.\tJ'ai été la seule à ne pas être invitée à la soirée.\nI was told that it's dangerous to swim here.\tOn m'a dit que c'est dangereux de nager par ici.\nI wasn't aware that someone was watching me.\tJe n'avais pas conscience que quelqu'un m'observait.\nI wasn't aware that you were feeling so bad.\tJe n'étais pas conscient que vous vous sentiez si mal.\nI wasn't aware that you were feeling so bad.\tJe n'étais pas conscient que tu te sentais si mal.\nI watched a movie with my friend in my room.\tJ'ai regardé un film avec mon ami, dans ma chambre.\nI went snorkeling in a beautiful coral reef.\tJ'ai été nager avec un tuba dans un beau récif corallien.\nI went there for the purpose of meeting him.\tJe m'y rendis dans le but de le rencontrer.\nI went there for the purpose of meeting him.\tJ'y suis allé dans le but de le rencontrer.\nI went to see a movie with Tom after school.\tJe suis allé voir un film avec Tom après l'école.\nI will give you a bicycle for your birthday.\tJe t'offrirai un vélo pour ton anniversaire.\nI will give you a bicycle for your birthday.\tJe vous donnerai une bicyclette pour votre anniversaire.\nI will give you a bicycle for your birthday.\tPour ton anniversaire, je te donnerai un vélo.\nI wish I had eaten lunch before I came here.\tJ'aurais aimé avoir déjeuné avant de venir ici.\nI wonder what language they speak in Brazil.\tJe me demande quelle langue est parlé au Brésil.\nI wonder why they left my name off the list.\tJe me demande pourquoi ils ont retiré mon nom de la liste.\nI worry about whether I'll be a good father.\tJe m'inquiète de savoir si je serai un bon père.\nI would like to express my gratitude to her.\tJe voudrais lui exprimer ma gratitude.\nI would prefer any alternative to a lawsuit.\tJe préférerais n'importe quoi plutôt qu'un procès.\nI would rather stay at home than go fishing.\tJe préférerais rester à la maison que d'aller pêcher.\nI would rather you came tomorrow than today.\tJe préférerais que vous veniez demain plutôt qu'aujourd'hui.\nI'd like to ask one or two questions myself.\tJ'aimerais poser une ou deux questions par moi-même.\nI'd like to dedicate this song to my mother.\tJ'aimerais dédier cette chanson à ma mère.\nI'd like to get married to someone like you.\tJ'aimerais épouser quelqu'un comme toi.\nI'd like to get married to someone like you.\tJ'aimerais épouser quelqu'un comme vous.\nI'd like to have more time to talk with you.\tJ'aimerais avoir plus de temps pour parler avec toi.\nI'd like to hear a lot more about your trip.\tJ'aimerais en entendre bien davantage à propos de ton voyage.\nI'd like to hear a lot more about your trip.\tJ'aimerais en entendre bien davantage à propos de votre voyage.\nI'd like to talk to you about what happened.\tJ'aimerais m'entretenir avec vous de ce qui s'est passé.\nI'd like to talk to you about what happened.\tJ'aimerais m'entretenir avec vous de ce qui a eu lieu.\nI'd like to talk with you about your grades.\tJe voudrais m'entretenir avec vous de vos notes.\nI'd like to talk with you about your grades.\tJe voudrais m'entretenir avec toi de tes notes.\nI'd rather go for a walk than see the movie.\tJe préfèrerais faire une promenade plutôt qu'aller voir un film.\nI'll be OK as long as I stay awake, won't I?\tÇa ira tant que je reste debout, non ?\nI'll be counting on you to bring the drinks.\tJe compte sur toi pour amener les boissons.\nI'll be counting on you to bring the drinks.\tJe compte sur toi pour amener la boisson.\nI'll be staying here for another three days.\tJe vais rester ici pendant encore trois jours.\nI'll get something to drink for both of you.\tJe vais vous chercher une boisson.\nI'll get you out of this horrible situation.\tJe vais te sortir de cette horrible situation.\nI'll get you out of this horrible situation.\tJe vais vous sortir de cette horrible situation.\nI'll monitor your progress from my computer.\tJe surveillerai ta progression depuis mon ordinateur.\nI'll monitor your progress from my computer.\tJe superviserai ta progression depuis mon ordinateur.\nI'll mow the lawn tomorrow, unless it rains.\tJe tondrai la pelouse demain, à moins qu'il ne pleuve.\nI'll tell Tom the truth when the time comes.\tJe vais dire à Tom la vérité, le moment venu.\nI'm afraid my depth perception is very poor.\tJ'ai peur que ma perception de la profondeur soit très mauvaise.\nI'm afraid something is wrong with my watch.\tJe crains que quelque chose n'aille pas avec ma montre.\nI'm amazed at his rapid progress in English.\tJe suis stupéfait de son rapide progrès en anglais.\nI'm familiar with the way he asks questions.\tJe suis familier de sa façon de poser les questions.\nI'm fixing the radio I found on my way home.\tJe répare la radio que j'ai trouvée sur le chemin vers chez moi.\nI'm going to work out the problem by myself.\tJe vais résoudre le problème moi-même.\nI'm looking for my keys. Have you seen them?\tJe cherche mes clés. Les avez-vous vues ?\nI'm looking for my keys. Have you seen them?\tJe cherche mes clés. Les as-tu vues ?\nI'm looking for my wallet. Have you seen it?\tJe cherche mon portefeuille. L'avez-vous vu ?\nI'm looking for my wallet. Have you seen it?\tJe cherche mon portefeuille. L'as-tu vu ?\nI'm looking forward to receiving your reply.\tJ'ai hâte de recevoir ta réponse.\nI'm looking forward to receiving your reply.\tIl me tarde de recevoir votre réponse.\nI'm looking forward to the return of spring.\tJ'attends avec impatience le retour du printemps.\nI'm not going to do that unless you help me.\tJe ne vais pas le faire, à moins que tu m'aides.\nI'm not going to do that unless you help me.\tJe ne vais pas le faire, à moins que vous m'aidiez.\nI'm not going to let anything happen to you.\tJe ne vais rien laisser vous arriver.\nI'm not going to let anything happen to you.\tJe ne vais rien laisser t'arriver.\nI'm not surprised you don't know the answer.\tJe ne suis pas surpris que vous ne connaissiez pas la réponse.\nI'm not surprised you don't know the answer.\tJe ne suis pas surprise que vous ne connaissiez pas la réponse.\nI'm not surprised you don't know the answer.\tJe ne suis pas surpris que tu ne connaisses pas la réponse.\nI'm not surprised you don't know the answer.\tJe ne suis pas surprise que tu ne connaisses pas la réponse.\nI'm often told I don't look good in a skirt.\tOn me dit souvent que les jupes ne me vont pas bien.\nI'm planning to disguise myself as a doctor.\tJe prévois de me déguiser comme médecin.\nI'm pretty sure I'm going to need some help.\tJe suis presque sûr que je vais avoir besoin d'aide.\nI'm pretty sure Tom did what he said he did.\tJe suis sûr que Tom a fait ce qu'il a dit.\nI'm putting all my effort into this project.\tJe jette toutes mes forces dans ce projet.\nI'm ready to start working whenever you are.\tJe suis prêt à commencer à travailler dès que tu l'es.\nI'm really hungry. I haven't eaten all week.\tJ'ai vraiment faim. Je n'ai pas mangé de toute la semaine.\nI'm so grateful to you for this opportunity.\tJe vous suis tellement reconnaissant pour cette opportunité.\nI'm sorry, but I didn't catch what you said.\tJe suis désolé, mais je n'ai pas saisi ce que tu as dit.\nI'm sure I can find something for you to do.\tJe suis certain de pouvoir vous trouver quelque chose à faire.\nI'm sure I can find something for you to do.\tJe suis certaine de pouvoir te trouver quelque chose à faire.\nI'm sure everything will work out just fine.\tJe suis sûr que tout va rouler.\nI'm sure everything will work out just fine.\tJe suis sûre que tout va rouler.\nI'm sure you'll tell me what I want to know.\tJe suis sûr que tu me raconteras ce que je veux savoir.\nI'm sure you'll tell me what I want to know.\tJe suis sûre que tu me raconteras ce que je veux savoir.\nI'm sure you'll tell me what I want to know.\tJe suis sûr que vous me raconterez ce que je veux savoir.\nI'm sure you'll tell me what I want to know.\tJe suis sûre que vous me raconterez ce que je veux savoir.\nI'm visiting my grandmother in the hospital.\tJe viens juste rendre visite à ma grand-mère à l'hôpital.\nI've almost finished listening to the album.\tJ'ai presque fini d'écouter l'album.\nI've been waiting for you since two o'clock.\tJe vous attends déjà depuis quatorze heures.\nI've given up on the idea of buying a house.\tJ'ai abandonné l'idée d'acheter une maison.\nI've given up on the idea of buying a house.\tJ'ai laissé tomber l'idée d'acheter une maison.\nI've got little time for reading these days.\tJe n'ai pas beaucoup de temps pour lire ces jours-ci.\nI've got some things for you in my suitcase.\tJ'ai quelques trucs pour toi dans ma valise.\nI've got some things for you in my suitcase.\tJ'ai quelques trucs pour vous dans ma valise.\nI've just eaten some sushi and drunk a beer.\tJe viens de manger des sushis et de boire une bière.\nI've lost my umbrella. I must buy a new one.\tJ'ai perdu mon parapluie et je dois en acheter un nouveau.\nI've never made this kind of mistake before.\tJe n'ai jamais fait ce genre d'erreurs auparavant.\nI've no friend to talk to about my problems.\tJe n'ai pas d'ami avec lequel je puisse m'entretenir de mes problèmes.\nIf I knew his address, I would write to him.\tSi je connaissais son adresse, je lui écrirais.\nIf I won the lottery, I'd buy you a new car.\tSi je gagnais à la loterie, je t'achèterais une nouvelle voiture.\nIf I'm not too busy, I'll help you tomorrow.\tSi je ne suis pas trop occupé, je t'aiderai demain.\nIf I'm not too busy, I'll help you tomorrow.\tSi je ne suis pas trop occupée, je t'aiderai demain.\nIf I'm not too busy, I'll help you tomorrow.\tSi je ne suis pas trop occupé, je vous aiderai demain.\nIf I'm not too busy, I'll help you tomorrow.\tSi je ne suis pas trop occupée, je vous aiderai demain.\nIf it were not for exams, we would be happy.\tN'était-ce pour les examens, nous serions contents.\nIf it were not for exams, we would be happy.\tÀ part les examens, nous serions contents.\nIf it were not for exams, we would be happy.\tS'il n'y avait les examens, nous serions contents.\nIf it were not for water, we could not live.\tSans eau, nous ne pourrions pas vivre.\nIf you have any difficulty, ask me for help.\tSi tu as la moindre difficulté, n'hésites pas à me demander de l'aide.\nIf you push this button, the door will open.\tSi vous poussez sur ce bouton, la porte s'ouvrira.\nIf you push this button, the door will open.\tSi vous pressez ce bouton, la porte s'ouvrira.\nIf you won a million yen, what would you do?\tSi tu avais un million de yens, que ferais-tu?\nIn addition to English, he can speak French.\tEn plus de parler anglais, il sait parler français.\nIn any case, I'll have to go there tomorrow.\tQuoi qu'il arrive, je vais devoir y aller demain.\nIn bad weather, one can easily catch a cold.\tOn peut facilement s'enrhumer par mauvais temps.\nIn the future, you have to get here on time.\tA l'avenir, tu dois être ici à l'heure.\nInstead of going myself, I sent a messenger.\tAu lieu d'y aller moi-même, j'ai envoyé un messager.\nInstead of going myself, I sent a messenger.\tAu lieu d'y aller moi-même, j'ai envoyé un coursier le faire.\nIs there anyone who can pronounce this word?\tY a-t-il quelqu'un qui puisse prononcer ce mot ?\nIs there somebody sitting in this seat here?\tQuelqu'un est-il assis à cette place ?\nIs there something that you want to tell me?\tY a-t-il quelque chose que tu veuilles me dire ?\nIs there something that you want to tell me?\tY a-t-il quelque chose que vous vouliez me dire ?\nIs there something that you want to tell me?\tY a-t-il quelque chose que vous veuillez me dire ?\nIt cost me a fortune to get my car repaired.\tÇa m'a coûté un pont de faire réparer ma voiture.\nIt cost me a fortune to get my car repaired.\tÇa m'a coûté une fortune de faire réparer ma voiture.\nIt is a pity that you cannot travel with us.\tIl est dommage que vous ne puissiez voyager avec nous.\nIt is a pity that you cannot travel with us.\tC'est dommage que tu ne puisses pas voyager avec nous.\nIt is crazy of you to put your life at risk.\tC'est insensé de ta part de mettre ta vie en danger.\nIt is crazy of you to put your life at risk.\tC'est insensé de ta part de mettre ta vie en jeu.\nIt is dangerous to jump onto a moving train.\tC'est dangereux de sauter pour monter abord d'un train en marche.\nIt is hard to adapt this story for children.\tC'est difficile d'adapter cette histoire pour les enfants.\nIt is impossible for him to give up smoking.\tIl lui est impossible d'arrêter de fumer.\nIt is impossible for us to cross that river.\tIl nous est impossible de traverser la rivière.\nIt is not necessary for you to quit the job.\tTu n'es pas obligé de quitter ton travail.\nIt is often necessary to depend upon others.\tIl est souvent nécessaire de dépendre des autres.\nIt is said that the taste of love is bitter.\tOn dit que le goût de l'amour est amer.\nIt is true that he is young, but he is wise.\tIl est vrai qu'il est jeune, mais il est sage.\nIt isn't safe for us to remain in this area.\tNous ne sommes pas en sécurité dans cet endroit.\nIt looks like we're almost out of the woods.\tIl semble que nous soyons presque sortis du tunnel.\nIt might rain. We'd better take an umbrella.\tIl pourrait pleuvoir ; nous ferions mieux de prendre un parapluie.\nIt seems that they're bored of married life.\tIl semble qu'ils en aient assez de la vie d'époux.\nIt seems that you're not having fun in here.\tIl semble que vous ne vous amusiez pas ici.\nIt seems that you're not having fun in here.\tIl semble que tu ne t'amuses pas ici.\nIt seems to me that she is a little selfish.\tIl me semble qu'elle est un peu égoïste.\nIt takes years to master a foreign language.\tIl faut des années afin de maîtriser une langue étrangère.\nIt was a dry year, and many animals starved.\tC'était une année de sécheresse et de nombreux animaux furent affamés.\nIt was difficult to remove the coffee stain.\tIl fut difficile d'avoir la tache de café.\nIt was difficult to remove the coffee stain.\tIl fut difficile de venir à bout de la tache de café.\nIt was extremely hot, so I took my coat off.\tIl faisait extrêmement chaud, aussi je retirai mon manteau.\nIt was gambling that brought about his ruin.\tC'est le jeu qui l'a conduit à la ruine.\nIt was gambling that brought about his ruin.\tC'est le jeu qui entraîna sa ruine.\nIt was in Tokyo that I first met her father.\tC'est à Tokyo que j'ai rencontré son père pour la première fois.\nIt was raining off and on all day yesterday.\tIl a plu par intermittence toute la journée d'hier.\nIt was so cold yesterday that I stayed home.\tIl a fait tellement froid hier que je suis resté à la maison.\nIt was stupid of him to turn down her offer.\tC'était idiot de sa part de refuser sa proposition.\nIt was stupid of him to turn down his offer.\tC'était idiot de sa part de refuser sa proposition.\nIt's at least three hundred miles from here.\tC'est au moins à trois-cents miles d'ici.\nIt's been a long time since I've worn a tie.\tÇa fait longtemps que je n'ai pas porté une cravate.\nIt's been a while since I've studied French.\tÇa fait un moment que je n'ai pas étudié le français.\nIt's been my dream since I was a little boy.\tÇa a été mon rêve depuis que je suis petit garçon.\nIt's been thirty years since we got married.\tCela fait trente ans que nous nous sommes mariés.\nIt's dark in here. Do you have a flashlight?\tIl fait sombre là-dedans. Disposez-vous d'une lampe torche ?\nIt's dark in here. Do you have a flashlight?\tIl fait sombre là-dedans. As-tu une lampe torche ?\nIt's hard for me to live on my small income.\tIl est difficile pour moi de vivre avec mon petit revenu.\nIt's hard to get a taxi outside the station.\tC'est difficile de trouver un taxi en dehors de la station.\nIt's hard to swat a fly with your bare hand.\tIl est dur d'écraser une mouche à mains nues.\nIt's impossible for me to explain it to you.\tC'est impossible pour moi de te l'expliquer.\nIt's impossible to find parking around here.\tIl est impossible de trouver à se garer autour d'ici.\nIt's impossible to learn English in a month.\tIl est impossible d'apprendre l'anglais en un mois.\nIt's not known who first invented the wheel.\tOn ignore qui inventa en premier la roue.\nIt's not legal to keep wild animals as pets.\tGarder des animaux sauvages comme animaux domestiques est illicite.\nIt's obvious to everyone that he's a genius.\tC’est évident pour tout le monde qu’il est un génie.\nIt's something my sister never wanted to do.\tC'est quelque chose que ma sœur n'a jamais eu envie de faire.\nIt's still too early to talk about this now.\tC'est encore trop tôt pour parler de ça.\nIt's time for us to do something about that.\tIl est temps pour nous de faire quelque chose à ce sujet.\nIt's too bad you can't stay a little longer.\tC'est dommage que tu ne puisses pas rester un peu plus longtemps.\nIt's too bad you can't stay a little longer.\tC'est dommage que vous ne puissiez pas rester un peu plus lontemps\nIt's too late to do anything about that now.\tC'est trop tard pour y faire quelque chose maintenant.\nJapan imports great quantities of crude oil.\tLe Japon importe une grande quantité de pétrole.\nJapan imports great quantities of crude oil.\tLe Japon importe de grandes quantités de pétrole.\nJapan is located in the Northern Hemisphere.\tLe Japon se situe dans l'hémisphère nord.\nJapan plays a key role in the world economy.\tLe Japon joue un rôle clé dans l'économie mondiale.\nJust a second. This call might be important.\tRien qu'une seconde ! Cet appel pourrait être important.\nKansas is smack dab in the middle of the US.\tLe Kansas est pile poil au milieu des USA.\nKeep all medicines out of reach of children.\tPlacez tous les médicaments hors de portée des enfants.\nKissing a smoker is like licking an ashtray.\tEmbrasser une personne qui fume, c'est comme lécher un cendrier.\nKyoto is famous for its shrines and temples.\tKyoto est connu pour ses autels et ses temples.\nLast summer, I worked part time on the farm.\tL'été dernier j'ai travaillé à temps partiel à la ferme.\nLet's clean the entire office next Saturday.\tNettoyons entièrement le bureau samedi prochain.\nLet's do something different this afternoon.\tFaisons quelque chose de différent, cet après-midi !\nLet's do something different this afternoon.\tFaisons quelque chose de différent, cette après-midi !\nLet's do this again. It's been a lot of fun.\tRefaisons-le. C'était très marrant.\nLet's eat the ice cream now before it melts.\tMangeons la glace maintenant, avant qu'elle ne fonde !\nLet's forget about what happened last night.\tOublions ce qu'il s'est passé la nuit dernière.\nLet's have a serious talk about your future.\tParlons sérieusement de ton avenir.\nLet's have a serious talk about your future.\tParlons sérieusement de votre avenir.\nLet's not forget the real reason we're here.\tN'oublions pas la véritable raison pour laquelle nous sommes là.\nLet's not forget the real reason we're here.\tN'oublions pas la véritable raison pour laquelle nous sommes ici.\nLet's pitch the tent while it's still light.\tPlantons la tente tant qu'il fait encore jour.\nLet's put off the meeting until next Friday.\tRemettons la réunion à vendredi prochain !\nLet's see you talk your way out of this one.\tVoyons comment tu vas te sortir de celui-ci !\nLet's see you talk your way out of this one.\tVoyons comment vous allez vous sortir de celui-ci !\nLet's try to clear up this misunderstanding.\tEssayons de dissiper ce malentendu.\nLife without love is just totally pointless.\tUne vie sans amour n'a absolument aucun sens.\nLondon's climate differs from that of Tokyo.\tLe climat de Londres diffère de celui de Tokyo.\nLooking into the room, I found nobody there.\tRegardant dans la pièce, je n'ai trouvé personne.\nLoosen the screws and remove the lamp cover.\tRelâchez les vis et retirez l'abat-jour.\nMaking such a decision is not an easy thing.\tPrendre une telle décision n'est pas chose facile.\nMany clients come to that lawyer for advice.\tDe nombreux clients viennent consulter cet avocat.\nMany lost their homes during the earthquake.\tBeaucoup perdirent leurs maisons lors du tremblement de terre.\nMany young people were present at the party.\tIl y avait beaucoup de jeunes à la fête.\nMary knitted Tom a sweater for his birthday.\tMarie a tricoté un chandail à Tom pour son anniversaire.\nMore than 10,000 people signed the petition.\tPlus de dix mille personnes ont signé la pétition.\nMost Americans agreed with President Wilson.\tLa plupart des Étasuniens étaient d'accord avec le président Wilson.\nMost of the participants are from Australia.\tLa plupart des participants sont d'Australie.\nMost of this building's tenants are artists.\tLa plupart des locataires de l'immeuble sont des artistes.\nMy apartment is more comfortable than yours.\tMon appartement est plus confortable que le tien.\nMy brother wants to go to the moon some day.\tMon frère veut se rendre sur la Lune, un de ces quatre.\nMy cell phone has a built-in digital camera.\tMon téléphone portable a un appareil photo numérique intégré.\nMy dog follows me whenever I leave the room.\tMon chien me suit, chaque fois que je quitte la pièce.\nMy father doesn't just smoke, he drinks too.\tMon père ne fait pas que fumer, il boit aussi.\nMy father graduated from Harvard University.\tMon père est diplômé de l'université d'Harvard.\nMy father has never gotten sick in his life.\tMon père n'a jamais été malade de sa vie.\nMy father played golf on the Sunday morning.\tMon père jouait au golf le dimanche matin.\nMy father reads the newspaper every morning.\tMon père lit le journal tous les matins.\nMy father smokes a pack of cigarettes a day.\tMon papa fume un paquet de cigarettes par jour.\nMy father spends a lot of time on his hobby.\tMon père consacre beaucoup de temps à son passe-temps.\nMy father was, I think, a little drunk then.\tMon père était un peu saoul alors, je pense.\nMy folks used to tell me stories about that.\tMes parents me racontaient des histoires à ce sujet.\nMy grandfather was a soldier during the war.\tMon grand-père était soldat pendant la guerre.\nMy hobby is taking pictures of wild flowers.\tMon passe-temps est de prendre des photos de fleurs sauvages.\nMy investments earn about 10 percent a year.\tMes investissements me rapportent environ 10 pour cent par an.\nMy mom spoke with the school superintendent.\tMa maman a parlé avec le directeur de l'école.\nMy mom spoke with the school superintendent.\tMa maman a parlé avec la directrice de l'école.\nMy opinion is entirely different from yours.\tMon opinion est entièrement différente de la vôtre.\nMy painting is starting to look pretty cool.\tMon tableau commence à avoir de la gueule.\nMy parents persuaded me not to travel alone.\tMes parents m'ont dissuadé de voyager seul.\nMy sister is constantly reading comic books.\tMa sœur passe son temps à lire des bandes dessinées.\nMy sister married her high school classmate.\tMa sœur s'est mariée avec son camarade de lycée.\nMy sister sang an English song at the party.\tMa sœur a chanté une chanson anglaise à la fête.\nMy son always gets sick when he rides a bus.\tMon fils est toujours malade quand il prend le bus.\nMy wife is going out of town for a few days.\tMa femme quitte la ville pour quelques jours.\nNew York State is almost as large as Greece.\tL'état de New York est presque aussi large que la Grèce.\nNo citizen should be deprived of his rights.\tAucun citoyen ne devrait être privé de ses droits.\nNo matter who says so, I can't believe that.\tPeu importe qui dit ça, je ne peux pas y croire.\nNo one I know can afford to eat out anymore.\tPersonne que je connaisse n'a plus les moyens de sortir manger.\nNo one expected him to be a candidate again.\tPersonne ne s'attendait à ce qu'il se porte de nouveau candidat.\nNo one knows what will happen in the future.\tPersonne ne sait ce qu'il adviendra dans le futur.\nNobody could explain how the thing was made.\tPersonne ne pouvait expliquer comment cette chose était faite.\nNobody goes outside in this kind of weather.\tPersonne ne sort par ce temps.\nNobody knows when the earthquake will occur.\tPersonne ne sait quand le tremblement de terre arrivera.\nNobody wants to work outdoors on a cold day.\tPersonne ne veut travailler en extérieur un jour où il fait froid.\nNot feeling well, I stayed home on that day.\tNe me sentant pas bien, je suis resté à la maison ce jour-là.\nNow that he has gone, we miss him very much.\tMaintenant qu'il est parti, il nous manque énormément.\nOil has been discovered under the North Sea.\tDu pétrole a été découvert sous la Mer du Nord.\nOkinawa is the southernmost island in Japan.\tL'île la plus au Sud du Japon est Okinawa.\nOn arriving home, I discovered the burglary.\tEn arrivant à la maison, j'ai découvert le cambriolage.\nOn my way home, I came across an old friend.\tEn rentrant à la maison, j'ai rencontré un vieil ami.\nOn the whole, the Japanese are conservative.\tDans l'ensemble, les Japonais sont plutôt conservateurs.\nOnce washed, the lining will look brand new.\tUne fois lavée, la doublure paraîtra comme neuve.\nOne of you two is going to have to go there.\tL'un de vous deux va devoir s'y rendre.\nOur daughter burned her finger with a match.\tNotre fille s'est brûlée le doigt avec une allumette.\nOur daughter burned her finger with a match.\tNotre fille s'est brûlé le doigt avec une allumette.\nOur lives are determined by our environment.\tNos vies sont déterminées par notre environnement.\nOur problem is how to get in touch with him.\tNotre problème est comment entrer en contact avec lui.\nOur school is further away than the station.\tNotre école se trouve au-delà de la gare.\nOur teacher warned him not to be late again.\tNotre professeur l'avertit de ne plus être en retard.\nOur team returned home after a huge victory.\tNotre équipe est rentrée à la maison après une immense victoire.\nOur visitors are sitting in the living room.\tNos visiteurs sont assis dans le salon.\nPeace has returned after three years of war.\tLa paix est revenue après trois années de guerre.\nPeople like him because of his friendliness.\tLes gens l'apprécient pour son amabilité.\nPeople used to laugh at him behind his back.\tLes gens se moquaient de lui derrière son dos.\nPeople who ignore history tend to repeat it.\tLes personnes qui ignorent l'histoire ont tendance à la répéter.\nPlease bring me the book next time you come.\tS'il te plaît, amène-moi le livre la prochaine fois que tu viendras.\nPlease give me a piece of paper to write on.\tDonne-moi un morceau de papier sur quoi écrire, s'il te plait.\nPlease give me a piece of paper to write on.\tVeuillez me donner un morceau de papier sur quoi écrire.\nPlease give my best regards to your parents.\tPrésentez mes respects à vos parents.\nPlease let me off in front of that building.\tLaissez-moi devant ce bâtiment, s'il vous plaît.\nPlease make sure the drinking water is pure.\tAssurez-vous que l'eau soit pure.\nPlease make sure the drinking water is pure.\tAssure-toi que l'eau soit pure.\nPlease make sure your seat belt is fastened.\tVeuillez vous assurer que votre ceinture est attachée.\nPlease make sure your seat belt is fastened.\tJe te prie de t'assurer que ta ceinture est attachée.\nPlease put the chair away. It is in the way.\tÉloigne la chaise. Elle se trouve dans le passage.\nPlease remind me to write a letter tomorrow.\tS'il te plaît, rappelle-moi d'écrire une lettre demain.\nPlease tell me the reason why she got angry.\tS'il te plait, dis-moi pourquoi elle s'est mise en colère.\nPlease use a pencil to write down your name.\tVeuillez utiliser un crayon pour écrire votre nom.\nPlease wake me up at seven tomorrow morning.\tRéveillez-moi à sept heures demain matin s'il vous plaît.\nPlease write down your contact address here.\tVeuillez noter ici votre adresse de contact.\nPlease write down your contact address here.\tNote ici ton adresse de contact, je te prie.\nPolicemen aren't permitted to drink on duty.\tLes policiers ne sont pas autorisés à boire en service.\nProbably you are allergic to pollen or dust.\tTu es probablement allergique au pollen ou à la poussière.\nReal friendship is more valuable than money.\tUne réelle amitié est plus précieuse que l'argent.\nRegardless of what he does, he does it well.\tQuoi qu’il fasse, il le fait bien.\nRemove the chicken's giblets before cooking.\tÔtez les abats du poulet avant de le cuire.\nScotland is famous for its woollen textiles.\tL'Écosse est renommée pour ses tissus de laine.\nShall we talk about it over a cup of coffee?\tDevrait-on en parler autour d'un café ?\nShe accused him of being inattentive to her.\tElle lui reprocha d'être indifférent envers elle.\nShe advised him that he should stay at home.\tElle lui conseilla de rester chez lui.\nShe advised him that he should stay at home.\tElle lui a conseillé de rester chez lui.\nShe advised him to go to the police station.\tElle lui conseilla d'aller au poste de police.\nShe advised him to go to the police station.\tElle lui a conseillé d'aller au poste de police.\nShe approached him with a smile on her face.\tElle s'approcha de lui, un sourire aux lèvres.\nShe approached him with a smile on her face.\tElle lui fit des avances, un sourire aux lèvres.\nShe approached him with a smile on her face.\tElle lui a fait des avances, un sourire aux lèvres.\nShe approached him with a smile on her face.\tElle s'est approchée de lui, un sourire aux lèvres.\nShe as well as her friends is fond of music.\tElle et ses amis adorent la musique.\nShe claims that she knows nothing about him.\tElle prétend ne rien savoir à son sujet.\nShe could not get over her fear of the dark.\tElle ne pouvait vaincre sa peur du noir.\nShe couldn't convince him to ask for a loan.\tElle ne put le convaincre de solliciter un prêt.\nShe couldn't convince him to ask for a loan.\tElle n'a pas pu le convaincre de solliciter un prêt.\nShe couldn't convince him to ask for a loan.\tElle ne pourrait pas le convaincre de solliciter un prêt.\nShe couldn't study abroad for lack of money.\tElle ne pouvait pas étudier à l'étranger par manque d'argent.\nShe danced with him at the high school prom.\tElle dansa avec lui au bal des étudiants.\nShe danced with him at the high school prom.\tElle a dansé avec lui au bal des étudiants.\nShe didn't know what to do with the problem.\tElle ignorait comment prendre le problème.\nShe doesn't have as much patience as you do.\tElle n'a pas autant de patience que vous.\nShe doesn't have as much patience as you do.\tElle n'a pas autant de patience que toi.\nShe earns half as much money as her husband.\tElle gagne moitié moins que son mari.\nShe got her master's degree three years ago.\tElle a eu un diplôme de master il y a trois ans.\nShe had no sooner seen me than she ran away.\tQuand qu'elle m'a vu, elle est partie en courant.\nShe has been dating him for about two years.\tElle sort avec lui depuis environ deux ans.\nShe has been waiting for him thirty minutes.\tÇa fait 30 minutes qu'elle l'attend.\nShe is coming home at the end of this month.\tElle rentre à la maison à la fin du mois.\nShe is curious to find who sent the flowers.\tElle est curieuse de savoir qui a envoyé les fleurs.\nShe is no less beautiful than her sister is.\tElle n'est pas moins belle que sa sœur.\nShe is very becoming in a black party dress.\tElle est très comme il faut dans une robe de soirée noire.\nShe is what one would call a cultured woman.\tElle est ce qu'on appelle une femme cultivée.\nShe left the old newspapers lying in a heap.\tElle laissa les vieux journaux qui s'amoncelaient en tas.\nShe made many mistakes in typing the report.\tElle a fait beaucoup de fautes en tapant le rapport.\nShe makes him do his homework before dinner.\tElle lui fait faire ses devoirs avant le dîner.\nShe makes him do his homework before dinner.\tElle lui fait faire ses devoirs avant le souper.\nShe may be late, in which case we will wait.\tElle pourrait être en retard, dans ce cas nous l'attendrons.\nShe needed someone who would understand her.\tElle avait besoin de quelqu'un qui la comprendrait.\nShe relied on the medicine as a last resort.\tElle ne se résolut au médicament qu'en dernier recours.\nShe scrubbed the kitchen floor with a brush.\tElle nettoya le sol de la cuisine à l'aide d'une brosse.\nShe scrubbed the kitchen floor with a brush.\tElle a nettoyé le sol de la cuisine à l'aide d'une brosse.\nShe selected a blue dress from the wardrobe.\tElle choisit une robe bleue dans la garde-robe.\nShe snuck out the house without him knowing.\tElle s'est faufilée hors de la maison sans qu'il le sache.\nShe spends all her time thinking about boys.\tElle passe tout son temps à penser aux garçons.\nShe takes after her mother in every respect.\tElle tient complètement de sa mère.\nShe thinks money and happiness are the same.\tElle pense que l'argent et le bonheur sont la même chose.\nShe told him that she believed in astrology.\tElle lui a dit qu'elle croyait en l'astrologie.\nShe told me that she had bigger fish to fry.\tElle me dit qu'elle avait des choses plus importantes sur le feu.\nShe told me that she had bigger fish to fry.\tElle m'a dit qu'elle avait des choses plus importantes sur le feu.\nShe took two weeks' leave and visited China.\tElle prit deux semaines de congés et visita la Chine.\nShe tried to conceal her grief at the party.\tElle a essayé de dissimuler son chagrin à la fête.\nShe wanted to return home, but she got lost.\tElle voulait rentrer chez elle, mais elle se perdit.\nShe wanted to return home, but she got lost.\tElle voulait rentrer à la maison, mais elle se perdit.\nShe warned him not to go out at night alone.\tElle l'avertit de ne pas sortir seul durant la nuit.\nShe was advised by him to come back at once.\tIl lui conseilla de revenir immédiatement.\nShe was advised by him to come back at once.\tIl lui a conseillé de revenir immédiatement.\nShe was advised by him to get more exercise.\tIl lui conseilla de faire davantage d'exercice.\nShe was advised by him to get more exercise.\tIl lui a conseillé de faire davantage d'exercice.\nShe was anxious about her children's health.\tElle se faisait des soucis pour la santé de son enfant.\nShe was indignant when I said she was lying.\tElle était indignée quand j'ai dit qu'elle mentait.\nShe was leading her grandmother by the hand.\tElle guidait sa grand-mère en la tenant par la main.\nShe was seen at a restaurant with her lover.\tElle a été vue au restaurant avec son amant.\nShe went out of the room with downcast eyes.\tElle est sortie de la pièce avec un regard démoralisé.\nShe wished to punish only those responsible.\tElle ne souhaitait punir que ceux qui étaient responsables.\nShe worships him and the ground he walks on.\tElle le vénère, lui et le sol sur lequel il marche.\nShe worships him and the ground he walks on.\tElle l'idolâtre, lui et le sol sur lequel il marche.\nShe's about the same age as my older sister.\tElle a à peu près le même âge que ma sœur aînée.\nShe's about the same age as my older sister.\tElle a environ le même âge que ma sœur aînée.\nShe's not the kind of girl you think she is.\tElle n'est pas le genre de fille que tu crois.\nShut up. If you don't, you'll be thrown out.\tFerme-la. Sinon, tu seras viré.\nShut up. If you don't, you'll be thrown out.\tFermez-la. Sinon, vous serez viré.\nShut up. If you don't, you'll be thrown out.\tFermez-la. Sinon, vous serez virés.\nShut up. If you don't, you'll be thrown out.\tFermez-la. Sinon, vous serez virée.\nShut up. If you don't, you'll be thrown out.\tFermez-la. Sinon, vous serez virées.\nShut up. If you don't, you'll be thrown out.\tFerme-la. Sinon, tu seras virée.\nSince I had a slight fever, I stayed in bed.\tComme j'avais un peu de fièvre, je restai au lit.\nSince I had a slight fever, I stayed in bed.\tComme j'avais un peu de fièvre, je suis resté au lit.\nSince I had a slight fever, I stayed in bed.\tComme j'avais une légère fièvre, je restai au lit.\nSince I had a slight fever, I stayed in bed.\tComme j'avais une légère fièvre, je suis resté au lit.\nSince he was feeling sick, he stayed in bed.\tComme il se sentait malade, il resta au lit.\nSince he was feeling sick, he stayed in bed.\tComme il se sentait malade, il est resté au lit.\nSince there was no taxi, I had to walk home.\tÉtant donné qu'il n'y avait pas de taxis, j'ai dû marcher jusqu'à chez moi.\nSince there was no taxi, I had to walk home.\tÉtant donné qu'il n'y avait pas de taxis, je dus marcher jusqu'à chez moi.\nSoldiers shared their food with the Indians.\tLes soldats partagèrent leur nourriture avec les Indiens.\nSome Germans work for only one euro an hour.\tCertains Allemands ne travaillent que pour un euro de l'heure.\nSome Germans work for only one euro an hour.\tCertains Allemands travaillent pour seulement un euro de l'heure.\nSome believed his story, and others did not.\tQuelques-un croyaient en son histoire, d'autres non.\nSome children play video games all the time.\tCertains enfants jouent tout le temps aux jeux vidéo.\nSome people like him and other people don't.\tIl y a des gens qui l'apprécient et d'autres non.\nSome people talk too much and do too little.\tCertaines personnes parlent trop et font trop peu.\nSome photos were printed in black and white.\tCertaines photos furent imprimées en noir et blanc.\nSome stars began to appear in the night sky.\tQuelques étoiles commencèrent à apparaître dans le ciel nocturne.\nSomebody told me that I shouldn't trust you.\tQuelqu'un m'a dit que je ne devrais pas me fier à toi.\nSomebody told me that I shouldn't trust you.\tQuelqu'un m'a dit que je ne devrais pas me fier à vous.\nSomeone has torn two pages out of this book.\tQuelqu'un a déchiré deux pages de ce livre.\nSomething is wrong with our electric heater.\tIl y a quelque chose qui ne va pas avec notre radiateur électrique.\nSometimes I wish I had a different religion.\tParfois, j'aimerais avoir une autre religion.\nSometimes I'm right and sometimes I'm wrong.\tJ'ai parfois raison et parfois tort.\nSometimes, you must fail before you succeed.\tOn doit parfois échouer avant de réussir.\nSoon, it won't be unheard of to live to 150.\tBientôt, ce ne sera plus inédit de vivre jusqu'à cent cinquante ans.\nSoon, it won't be unheard of to live to 150.\tBientôt, vivre jusqu'à 150 ans n'aura plus rien d'extraordinaire.\nSooner or later, I'll probably visit Boston.\tUn jour ou l'autre, je visiterai sûrement Boston.\nSpain will need to borrow 100 billion euros.\tL'Espagne devra emprunter cent milliards d'euros.\nStudents stand up when their teacher enters.\tLes élèves se lèvent lorsque leur professeur entre.\nTV plays an important part in everyday life.\tLa télévision joue un rôle important dans la vie quotidienne.\nThank you for helping me carry my suitcases.\tMerci de m'aider à porter mes valises.\nThat book is familiar to all young children.\tTous les petits enfants connaissent ce livre.\nThat brand of tequila really packs a wallop.\tCette marque de tequila cogne vraiment.\nThat company is managed by my older brother.\tCette entreprise est dirigée par mon frère aîné.\nThat doesn't explain what happened, does it?\tÇa n'explique pas ce qui s'est produit, si ?\nThat is the exactly the same idea as I have.\tC'est exactement la même idée que j'ai.\nThat just goes to prove that you are a liar.\tCela tend à prouver que vous êtes un menteur.\nThat movie theater always shows good movies.\tCe cinéma propose toujours de bons films.\nThat picture brought back a lot of memories.\tCette photo a fait resurgir de nombreux souvenirs.\nThat's a job of your own choosing, isn't it?\tC'est un travail que tu as toi-même choisi, n'est-ce pas ?\nThat's a job of your own choosing, isn't it?\tC'est un travail que vous avez vous-même choisi, n'est-ce pas ?\nThat's the most absurd idea I've ever heard.\tC'est l'idée la plus absurde que j'ai jamais entendue.\nThat's the ugliest baby that I've ever seen.\tC'est le bébé le plus laid que j'ai jamais vu.\nThat's your answer for everything, isn't it?\tC'est votre réponse à tout, n'est-ce pas ?\nThat's your answer for everything, isn't it?\tC'est ta réponse à tout, n'est-ce pas ?\nThe Olympic Games are held every four years.\tLes Jeux Olympiques ont lieu tous les quatre ans.\nThe Olympic Games are held every four years.\tLes Jeux Olympiques sont organisés tous les quatre ans.\nThe President made an address to the nation.\tLe Président fit une allocution à la nation.\nThe Soviet Union launched Sputnik I in 1957.\tL'Union Soviétique lança Spoutnik I en mille-neuf-cent-cinquante-sept.\nThe Soviet Union launched Sputnik I in 1957.\tL'Union Soviétique lança Spoutnik I en dix-neuf-cent-cinquante-sept.\nThe Texans began to organize their own army.\tLes Texans commencèrent à lever leur propre armée.\nThe accident resulted from his carelessness.\tL'accident est dû à son imprudence.\nThe air conditioner seems to be working now.\tL'air conditionné semble désormais fonctionner.\nThe animal struggled to get out of the cage.\tL'animal s'est démené pour sortir de la cage.\nThe athletic meet was postponed due to rain.\tLa rencontre d'athlétisme fut reportée à cause de la pluie.\nThe athletic meet was postponed due to rain.\tLa rencontre sportive a été retardée à cause de la pluie.\nThe author dedicated the book to his sister.\tL'auteur dédicaçait le livre à sa sœur.\nThe battery on my cell phone is running low.\tLa batterie de mon portable flanche.\nThe boy had a mischievous smirk on his face.\tLe garçon arborait un petit sourire espiègle.\nThe breakfast dishes were still in the sink.\tLes effets du petit déjeuner étaient encore dans l'évier.\nThe children tried to imitate their teacher.\tLes enfants essayaient d'imiter leur instituteur.\nThe cops are looking for the gang's hideout.\tLes flics recherchent la planque de la bande.\nThe corpse has a gunshot wound in the chest.\tLe cadavre présente une blessure par balle à la poitrine.\nThe corpse has a gunshot wound in the chest.\tLe cadavre montre une blessure par balle à la poitrine.\nThe cow gave birth to a calf with two heads.\tLa vache mit bas un veau à deux têtes.\nThe date of manufacture is shown on the lid.\tLa date de fabrication est indiquée sur le couvercle.\nThe doctor advised me to take more exercise.\tLe docteur me conseilla de faire plus d'exercice.\nThe doctor persuaded him to give up smoking.\tLe médecin l'a persuadé d'arrêter de fumer.\nThe doctor says she suffers from rheumatism.\tLe médecin a dit qu'elle souffre de rhumatisme.\nThe doctor told Tom to stop eating dog food.\tLe médecin a dit à Tom d'arrêter de manger de la nourriture pour chien.\nThe doctor told Tom to stop eating dog food.\tLe docteur a dit à Tom d'arrêter de manger de la nourriture pour chien.\nThe doctor told Tom to stop eating dog food.\tLe médecin a demandé à Tom d'arrêter de manger de la nourriture pour chien.\nThe doctor told Tom to stop eating dog food.\tLe docteur a demandé à Tom d'arrêter de manger de la nourriture pour chien.\nThe dragonfly was skimming across the water.\tLa libellule effleurait l'eau.\nThe driver told us which bus we should take.\tLe chauffeur nous indiqua quel bus nous devions prendre.\nThe earthquake triggered a powerful tsunami.\tLe séisme provoqua un puissant tsunami.\nThe enemy dropped many bombs on the factory.\tL'ennemi a largué beaucoup de bombes sur l'usine.\nThe engineer told us how to use the machine.\tL'ingénieur nous a dit comment utiliser la machine.\nThe evening meal is served between 9 and 12.\tOn peut dîner entre neuf heures et minuit.\nThe fans sought to shake the actress's hand.\tLes fans cherchaient à serrer la main de l'actrice.\nThe film I told you about has been released.\tLe film dont je t'ai parlé est sorti.\nThe fire reduced the whole village to ashes.\tLe feu a réduit le village en cendres dans son intégralité.\nThe fireman could not extinguish the flames.\tLe pompier ne pouvait éteindre les flammes.\nThe fireman could not extinguish the flames.\tLe pompier ne pouvait étouffer les flammes.\nThe fish he caught yesterday is still alive.\tLe poisson qu'il a pris hier, est toujours vivant.\nThe garden was surrounded by a wooden fence.\tLe jardin était entouré par une barrière en bois.\nThe girl lifted the heavy box with one hand.\tLa fille leva la lourde caisse d'une seule main.\nThe girl made off with her employer's money.\tLa gamine s'envola avec l'argent de son employeur.\nThe girl was busy making tea for her friend.\tLa fille était occupée à préparer du thé pour son ami.\nThe girls are going to be late this evening.\tLes filles vont être en retard ce soir.\nThe good news is that you don't have cancer.\tLa bonne nouvelle, c'est que vous n'avez pas de cancer.\nThe grand prize is a kiss from the princess.\tLa récompense suprême est un baiser de la princesse.\nThe house was struck by lightning yesterday.\tHier, la maison a été frappée par la foudre.\nThe job comes with a lot of fringe benefits.\tLe poste est agrémenté de nombreux avantages en nature.\nThe job of a driver is harder than it looks.\tLe travail de chauffeur est plus difficile qu'il n'y paraît.\nThe little boy accidentally broke the glass.\tLe petit garçon a cassé le verre par accident.\nThe man charged me with being irresponsible.\tL'homme m'a accusé d'être irresponsable.\nThe man you met at the station is my father.\tL'homme que vous avez rencontré à la gare est mon père.\nThe market for luxury goods is growing fast.\tLe marché du luxe croît rapidement.\nThe mayor provided me with an identity card.\tLe maire m'a fourni une carte d'identité.\nThe men were working with picks and shovels.\tLes hommes travaillaient avec des pics et des pelles.\nThe mere sight of a mosquito makes her sick.\tLa simple vue d'un moustique la rend malade.\nThe most beautiful girls are from Lithuania.\tLes filles les plus belles viennent de Lituanie.\nThe news that he was still alive reached us.\tLa nouvelle disant qu'il était encore en vie nous est parvenue.\nThe orange left a strange taste in my mouth.\tL'orange a laissé un goût étrange dans ma bouche.\nThe other team has some really good players.\tL'autre équipe a quelques très bons joueurs.\nThe pain went away because I took the pills.\tLa douleur est partie parce que j'ai pris les cachets.\nThe paper says that a typhoon is on its way.\tLe journal indique qu'un typhon est en route.\nThe place was packed to the brim last night.\tL'endroit était plein à ras bord, hier soir.\nThe plumber used many tools to fix our sink.\tLe plombier a utilisé de nombreux outils pour réparer notre évier.\nThe police got to the scene of the accident.\tLa police est arrivée sur le lieu de l'accident.\nThe police searched the premises thoroughly.\tLes policiers ont soigneusement fouillé les lieux.\nThe police uncovered a major drug operation.\tLa police a mis au jour un trafic de drogue de premier plan.\nThe police were suspicious of his movements.\tLa police était suspicieuse de ses mouvements.\nThe population of the city is about 100,000.\tLa ville compte environ 100 000 habitants.\nThe president made a statement on the issue.\tLe président a fait une déclaration sur le sujet.\nThe press is interested in his private life.\tLa presse s'intéresse à sa vie privée.\nThe prince was changed into a tree by magic.\tLe prince fut changé en arbre par magie.\nThe quick brown fox jumps over the lazy dog.\tPortez ce vieux whisky au juge blond qui fume.\nThe radio is too loud. Turn the volume down.\tLa radio est trop forte. Baisse le volume.\nThe rebels made a barricade across the road.\tLes rebelles ont fait une barricade à travers la route.\nThe red lines on the map represent railways.\tLes lignes rouges sur la carte représentent les chemins de fer.\nThe road which leads to the hotel is narrow.\tLa rue qui mène à l'hôtel est étroite.\nThe rumor was completely without foundation.\tLa rumeur était complètement infondée.\nThe sea is to fish what the sky is to birds.\tLa mer est aux poissons ce que le ciel est aux oiseaux.\nThe sidewalk was covered with fallen leaves.\tLe trottoir était couvert de feuilles mortes.\nThe skyscraper is in the center of the city.\tLe gratte-ciel se trouve au centre-ville.\nThe snow prevented us from arriving on time.\tLa neige nous a empêchés d'arriver à l'heure.\nThe spider web glistened in the morning dew.\tLa toile d'araignée luisait dans la rosée du matin.\nThe students have access to these computers.\tLes élèves ont accès à ces ordinateurs.\nThe subject has not yet been fully explored.\tLe sujet n'est pas encore entièrement exploré.\nThe sum of two plus three plus four is nine.\tLa somme de deux plus trois plus quatre est neuf.\nThe surgeon took out his patient's appendix.\tLe chirurgien retira l'appendice du patient.\nThe syntax of Python scripts is very simple.\tLes scripts Python ont une syntaxe très simple.\nThe teacher treated all the students fairly.\tL'enseignant traita équitablement tous les étudiants.\nThe terrible scene made him tremble in fear.\tLa scène effroyable le fit trembler de peur.\nThe thieves opened the door with a pass key.\tLes voleurs ont ouvert la porte avec un passe-partout.\nThe tree's roots extend deep into the earth.\tLes racines de l'arbre s'étendent profondément dans la terre.\nThe trouble is that I have no money with me.\tL'ennui, c'est que je n'ai pas d'argent sur moi.\nThe truth is that the parents were to blame.\tLa vérité était que les parents étaient responsables.\nThe truth is that we can't live without air.\tLa vérité c'est que les humains ne peuvent pas vivre sans air.\nThe twins are as alike as two peas in a pod.\tLes jumeaux se ressemblent tels deux gouttes d'eau.\nThe twins are as alike as two peas in a pod.\tLes jumelles se ressemblent telles deux gouttes d'eau.\nThe two boys look more alike than I thought.\tLes deux garçons se ressemblent plus que je ne le pensais.\nThe weather forecast is not reliable at all.\tLe bulletin météo n'est pas fiable du tout.\nThe weather was not only cold, but also wet.\tIl faisait froid et il pleuvait également beaucoup.\nThe world is changing more and more quickly.\tLe monde change de plus en plus vite.\nThe wreckage is scattered over a large area.\tL'épave est éparpillée sur une grande étendue.\nThe yen is rising and the dollar is falling.\tLe yen est en hausse et le dollar tombe.\nThe young man saved the child from drowning.\tLe jeune homme sauva l'enfant de la noyade.\nTheir friendship gradually turned into love.\tLeur amitié s'est peu à peu transformé en amour.\nThere are fifty states in the United States.\tIl y a 50 États aux États-Unis.\nThere are five patients in the waiting room.\tIl y a cinq patients dans la salle d'attente.\nThere are many different ways of doing this.\tIl y a de nombreuses façons différentes de le faire.\nThere are plenty of fresh eggs on the table.\tIl y a plein d'œufs frais sur la table.\nThere are some tomatoes in the refrigerator.\tIl y a quelques tomates dans le réfrigérateur.\nThere has to be a first time for everything.\tIl y a toujours une première fois pour tout.\nThere is a library in every city in America.\tIl y a une bibliothèque dans chaque ville étatsunienne.\nThere is a little hope that he will succeed.\tIl y a peu d'espoir qu'il soit couronné de succès.\nThere is a little hope that he will succeed.\tIl y a peu d'espoir qu'il y parvienne.\nThere is a strong bond between the brothers.\tIl y a un lien fort entre les frères.\nThere is an urgent need for blood donations.\tIl y a un besoin urgent de dons de sang.\nThere is no market for these goods in Japan.\tIl n'y a pas de marché pour ces marchandises au Japon.\nThere is no way to confirm that he is alive.\tIl n'y a aucun moyen de confirmer qu'il est en vie.\nThere is nothing as important as friendship.\tIl n'y a rien d'aussi important que l'amitié.\nThere is only one store on the whole island.\tIl n'y a qu'un seul magasin sur toute l'île.\nThere was a cottage on the side of the hill.\tIl y avait un cottage sur le flanc de la colline.\nThere was a cottage on the side of the hill.\tIl y avait une petite maison sur le flanc de la colline.\nThere was a cottage on the side of the hill.\tIl y avait une chaumière sur le flanc de la colline.\nThere was only one survivor of the accident.\tIl n'y avait qu'un survivant à l'accident.\nThere was only one survivor of the accident.\tIl n'y avait qu'une survivante à l'accident.\nThere's a cure for everything, except death.\tTout est curable, à l'exception de la mort.\nThere's no entertainment in the countryside.\tIl n'y a pas de loisirs à la campagne.\nThere's no need for her to go there herself.\tElle n'a pas besoin de s'y rendre en personne.\nThere's no need for her to go there herself.\tElle n'a pas besoin d'y aller en personne.\nThese books are worth reading at least once.\tCes ouvrages valent le coup d'être lus au moins une fois.\nThese problems must be dealt with carefully.\tCes problèmes doivent être traités avec attention.\nThey accused me of having broken my promise.\tIls m'accusèrent de ne pas avoir tenu ma promesse.\nThey agreed to work together on the project.\tIls s'accordèrent pour collaborer au projet.\nThey attempted to assassinate the president.\tIls ont tenté d'assassiner le président.\nThey discussed his proposals at the meeting.\tIls discutèrent de ses propositions à la réunion.\nThey got married when they were still young.\tIls se sont mariés quand ils étaient encore jeunes.\nThey had no beards, no hair and no eyebrows.\tIls n'étaient dotés ni de barbe, ni de cheveux, ni de sourcils.\nThey had no beards, no hair and no eyebrows.\tElles n'étaient dotées ni de barbe, ni de cheveux, ni de sourcils.\nThey had no beards, no hair and no eyebrows.\tIls n'étaient dotés ni de barbes, ni de cheveux, ni de sourcils.\nThey jumped through a window into the river.\tIls sautèrent par une fenêtre dans la rivière.\nThey manage to get along without much money.\tIls s'arrangent pour s'en tirer avec peu d'argent.\nThey manage to get along without much money.\tElles se débrouillent pour s'en tirer avec peu d'argent.\nThey must be crazy to believe such nonsense.\tIls doivent être fous pour croire à de telles absurdités.\nThey say there are ghosts in this old house.\tOn dit qu'il y a des fantômes dans cette vieille maison.\nThey went on an expedition to the Antarctic.\tIls partirent en expédition en Antarctique.\nThey were prohibited from leaving the hotel.\tOn leur refusa de quitter l'hôtel.\nThey're bringing him in for questioning now.\tIls sont actuellement en train de l'amener pour lui poser des questions.\nThey're having a going-out-of-business sale.\tIls ont une liquidation.\nThings were never quite the same after that.\tLes choses ne furent jamais plus tout à fait les mêmes, après ça.\nThis book is much more useful than that one.\tCe livre-ci est bien plus utile que celui-là.\nThis box is very heavy, so I can't carry it.\tCette caisse est très lourde de sorte que je ne peux pas la porter.\nThis building is on the verge of collapsing.\tCet édifice menace de s'effondrer.\nThis camera is less expensive than that one.\tCette caméra est moins chère que celle-là.\nThis camera is less expensive than that one.\tCet appareil photo est moins cher que celui-là.\nThis coffee is so hot that I can't drink it.\tLe café est si chaud que je ne peux pas le boire.\nThis coffee is so hot that I can't drink it.\tCe café est si chaud que je n'arrive pas à le boire.\nThis dictionary has been of great use to me.\tCe dictionnaire m'a été d'une grande utilité.\nThis factory produces 500 automobiles a day.\tCette usine produit 500 voitures par jour.\nThis is no time to quibble over terminology.\tCe n'est pas le moment de tergiverser sur la terminologie.\nThis is one of the best restaurants in town.\tC'est l'un des meilleurs restaurants de la ville.\nThis is the fifth concert by this orchestra.\tC'est le cinquième concert de cet orchestre.\nThis looks like a close-range gunshot wound.\tÇa ressemble à une blessure par balle tirée à bout portant.\nThis plane flies between Osaka and Hakodate.\tCet avion va d'Osaka à Hakodate.\nThis pond doesn't go dry even in the summer.\tCet étang ne s'assèche pas, même en été.\nThis screwdriver is too small to be any use.\tCe tournevis est trop petit pour être d'une quelconque utilité.\nThis shouldn't come as a surprise to anyone.\tÇa ne devrait être une surprise pour personne.\nThis theory is scientifically controversial.\tCette théorie est scientifiquement controversée.\nThis train runs between New York and Boston.\tCe train va de New-York à Boston.\nThose children are waiting for their mother.\tCes enfants attendent leur mère.\nTickets are available online or at the door.\tLes billets sont disponibles en ligne ou sur place.\nTickets are available to the public for $30.\tLes billets sont disponibles au public pour 30 $.\nTime goes by quickly when you're having fun.\tLe temps passe vite lorsqu'on s'amuse.\nTo speak a foreign language well takes time.\tParler une langue étrangère prend beaucoup de temps.\nTo tell the truth, we got married last year.\tÀ vrai dire, nous nous sommes mariés l'année dernière.\nTo tell you the truth, I'm completely bored.\tPour te dire la vérité, j'en ai ma claque.\nTom already knows you want to quit your job.\tTom sait déjà que tu veux quitter ton boulot.\nTom and Mary are getting married in October.\tTom et Marie se marient en octobre.\nTom and Mary both ordered the lunch special.\tTom et Mary ont tous deux commandé le déjeuner spécial.\nTom and Mary insult each other all the time.\tTom et Marie s'insultent l'un l'autre tout le temps.\nTom and Mary speak to each other in English.\tTom et Marie se parlent en anglais.\nTom asked Mary to drive John to the airport.\tTom demanda à Marie de conduire John à l'aéroport.\nTom asked Mary where she had parked the car.\tTom a demandé à Mary où elle avait garé la voiture.\nTom asked me to pick Mary up at the airport.\tTom m'a demandé d'aller chercher Mary à l'aéroport.\nTom can speak French almost as well as Mary.\tTom peut parler français presque aussi bien que Mary.\nTom can speak French much better than I can.\tTom peut parler le français bien mieux que moi.\nTom certainly knows how to entertain people.\tTom sait très bien comment s'y prendre pour divertir les autres.\nTom could see Mary was getting very nervous.\tTom pouvait voir que Mary devenait très nerveuse.\nTom couldn't answer all of Mary's questions.\tTom n'a pas pu répondre à toutes les questions de Marie.\nTom didn't believe a word of what Mary said.\tTom n'a pas cru un mot de ce qu'a dit Marie.\nTom didn't have the courage to disobey Mary.\tTom n'avait pas le courage de désobéir à Mary.\nTom didn't have the courage to disobey Mary.\tTom n'a pas eu le courage de désobéir à Mary.\nTom didn't tell me he couldn't speak French.\tTom ne m'a pas dit qu'il ne pouvait pas parler français.\nTom doesn't need to finish this by tomorrow.\tTom n'a pas besoin de finir ceci d'ici demain.\nTom doesn't seem to be aware of the problem.\tTom ne paraissait pas conscient du problème.\nTom had no way of verifying the information.\tTom n'avait aucun moyen de vérifier l'information.\nTom hardly ever speaks French to his mother.\tTom ne parle quasiment jamais français avec sa mère.\nTom has a bright career as a medical doctor.\tTom a une brillante carrière en tant que médecin.\nTom has a funny way of laughing, doesn't he?\tIl a un drôle de rire Thomas, non ?\nTom has no intention of apologizing to Mary.\tTom n'a aucune intention d'aller s'excuser auprès de Marie.\nTom heard someone humming his favorite tune.\tTom entendit quelqu'un fredonner sa chanson préférée.\nTom is saving money for a trip to Australia.\tTom économise de l'argent pour un voyage en Australie.\nTom is the only one not invited to my party.\tTom est le seul que je n'ai pas invité à ma fête.\nTom is the tallest boy on our football team.\tDans notre équipe de football, c'est Tom le plus grand.\nTom knows he's wrong, but he won't admit it.\tTom sait qu'il a tort, mais il ne l'admettra pas.\nTom lives 10 miles from the Canadian border.\tTom vit à seize kilomètres de la frontière canadienne.\nTom lives 10 miles from the Canadian border.\tTom habite à 16 km de la frontière canadienne.\nTom lives 10 miles from the Canadian border.\tTom habite à seize kilomètres de la frontière canadienne.\nTom made a list of places he wants to visit.\tTom a fait une liste des endroits qu'il veut visiter.\nTom made a list of places he wants to visit.\tTom a fait une liste des lieux qu'il souhaite visiter.\nTom probably can't do that as well as I can.\tTom ne peut sûrement pas faire ça aussi bien que moi.\nTom put a star on top of the Christmas tree.\tTom a mis une étoile au sommet du sapin de Noël.\nTom put a star on top of the Christmas tree.\tTom mit une étoile au sommet du sapin de Noël.\nTom put down his spoon and picked up a fork.\tTom posa sa cuillère et pris une fourchette.\nTom said he had more important things to do.\tTom a dit qu'il avait des choses plus importantes à faire.\nTom said he had plenty of friends in Boston.\tTom a dit qu'il avait beaucoup d'amis à Boston.\nTom said he was calling from his cell phone.\tTom a dit qu'il appelait de son téléphone portable.\nTom said he'd rather not go to Mary's party.\tTom a dit qu'il préférerait ne pas aller à la fête de Mary.\nTom saw his former employer at a conference.\tTom a vu son ancien employeur à une conférence.\nTom spends very little time with his family.\tTom passe très peu de temps avec sa famille.\nTom suggested another plan to the committee.\tTom suggéra un autre projet à la commission.\nTom takes a bath every evening after dinner.\tTom prend un bain chaque soir après le souper.\nTom talked too much and let the secret slip.\tTome parla trop et laissa échapper le secret.\nTom told me that he liked working with Mary.\tTom m'a dit qu'il aimait travailler avec Mary.\nTom took Mary's hands and held them tightly.\tTom prit les mains de Marie et les tenait fermement.\nTom tried to kiss Mary, but she leaned back.\tTom essaya d'embrasser Marie, mais elle se pencha en arrière.\nTom tried to open the door, but he couldn't.\tTom tenta d'ouvrir la porte, mais n'y parvint pas.\nTom turned over a new leaf when he met Mary.\tTom a tourné la page quand il a rencontré Marie.\nTom warned Mary to stay away from his house.\tTom a prévenu Mary de rester loin de sa maison.\nTom was badly injured in a traffic accident.\tTom a été grièvement blessé dans un accident de la circulation.\nTom was guilty of spreading lies about Mary.\tTom était coupable d'avoir répandu des mensonges sur Marie.\nTom wasn't smiling when he entered the room.\tTom ne souriait pas quand il est entré dans la pièce.\nTom won a prize in the spelling competition.\tTom a remporté un prix au concours d'orthographe.\nTom's behavior at the party was inexcusable.\tLe comportement de Tom à la fête était inexcusable.\nTom's broken arm took several weeks to heal.\tLe bras cassé de Tom a mis plusieurs semaines à guérir.\nTomorrow, I'm going to study at the library.\tDemain, je vais étudier à la bibliothèque.\nTranslating this sentence will be very easy.\tTraduire cette phrase sera très facile.\nTry on this new suit to see if it fits well.\tEssaie ce nouveau costume pour voir s'il te va bien.\nTry putting yourself in your mother's shoes.\tEssaie de te mettre à la place de ta mère.\nTry putting yourself in your mother's shoes.\tEssayez de vous mettre à la place de votre mère.\nTry to answer as many questions as possible.\tEssaie de répondre au plus grand nombre de questions possible !\nTry to answer as many questions as possible.\tEssayez de répondre au plus grand nombre de questions possible !\nUnder no circumstances can we accept checks.\tEn aucune circonstance nous ne pouvons accepter les chèques.\nWas that word appropriate in that situation?\tCe mot était-il approprié dans cette situation ?\nWater the flowers before you have breakfast.\tArrose les plantes avant de prendre ton petit déjeuner.\nWe all consider your idea to be impractical.\tNous considérons tous que ton idée est impraticable.\nWe all consider your idea to be impractical.\tNous considérons tous que votre idée est impraticable.\nWe are having trouble with our new neighbor.\tNous avons des problèmes avec notre nouveau voisin.\nWe aren't going to stay at that hotel again.\tNous ne resterons plus dans cet hôtel.\nWe arrived to find a huge meal ready for us.\tNous trouvâmes en arrivant un repas gigantesque préparé pour nous.\nWe can't be the only two people who're late.\tNous ne pouvons être les deux seules personnes à être en retard.\nWe can't be the only two people who're late.\tNous ne pouvons être les deux seules personnes qui soient en retard.\nWe can't really keep all this stuff, can we?\tNous ne pouvons pas vraiment garder tous ces trucs, si ?\nWe couldn't help but think that he was dead.\tNous ne pûmes nous empêcher de penser qu'il était mort.\nWe didn't know the whole story at that time.\tÀ ce moment-là, nous ne connaissions pas toute l'histoire.\nWe discussed quite a few interesting things.\tOn a parlé de pas mal de choses intéressantes.\nWe discussed the problem far into the night.\tNous avons débattu de ce problème jusque tard dans la nuit.\nWe divided ten dollars among the five of us.\tNous divisâmes dix dollars entre nous cinq.\nWe don't have class on Wednesday afternoons.\tNous n'avons pas de cours le mercredi après-midi.\nWe don't want them to decrease our paycheck.\tNous ne voulons pas qu'ils réduisent notre paie.\nWe enjoyed ourselves at the seaside all day.\tNous avons profité de la plage toute la journée.\nWe found a secret passage into the building.\tNous avons trouvé un passage secret dans l'immeuble.\nWe had hardly started when it began to rain.\tNous avions à peine commencé lorsqu'il se mit à pleuvoir.\nWe had to call off the game because of rain.\tNous dûmes annuler la partie à cause de la pluie.\nWe have illustrated the story with pictures.\tNous avons illustré l'histoire d'images explicatives.\nWe have problems that need to be dealt with.\tNous avons des problèmes qui doivent être traités.\nWe live about three miles above this bridge.\tNous vivons environ trois milles au-delà de ce pont.\nWe lost sight of them over half an hour ago.\tNous les avons perdus de vue il y a plus d'une demi-heure.\nWe must find something to plug up this hole.\tNous devons trouver quelque chose pour boucher ce trou.\nWe receive many telephone calls from abroad.\tNous recevons beaucoup d'appels venant de l'étranger.\nWe should probably postpone the competition.\tNous devrions probablement remettre la compétition.\nWe should use the electric blankets tonight.\tNous devrions utiliser les couvertures électriques chauffantes ce soir.\nWe should've brought another bottle of wine.\tNous aurions dû apporter une autre bouteille de vin.\nWe spent our holiday exploring rural France.\tNous avons passé nos vacances à découvrir la campagne française.\nWe studied the government's economic policy.\tNous avons étudié la politique économique du gouvernement.\nWe talked without the aid of an interpreter.\tNous avons parlé sans l'aide d'un interprète.\nWe thought it wise not to continue our trip.\tNous considérâmes qu'il était sage de ne pas poursuivre notre voyage.\nWe try to go to Boston at least once a year.\tNous essayons d'aller à Boston au moins une fois par an.\nWe will have an English test this afternoon.\tNous aurons un test d'Anglais cette après-midi.\nWe'll do whatever it takes to get that done.\tNous ferons tout ce qu'il faut pour que cela soit fait.\nWe'll let you know the result within a week.\tNous vous ferons connaître le résultat d'ici une semaine.\nWe'll let you know the result within a week.\tNous vous signifierons le résultat d'ici une semaine.\nWe're all thinking the same thing, I'm sure.\tNous pensons tous la même chose, j'en suis sûr.\nWe're going to another party after this one.\tNous allons à une autre fête après celle-ci.\nWe're going to another party after this one.\tNous nous rendons à une autre fête après celle-ci.\nWe're going to discuss the problem tomorrow.\tNous discuterons du problème demain.\nWe're safer here than we would be in a city.\tNous sommes davantage en sécurité ici que nous le serions en ville.\nWe're well on our way to making that happen.\tNous sommes en bonne voie pour y parvenir.\nWe've got better things to do with our time.\tNous avons mieux à faire de notre temps.\nWere you at the library yesterday afternoon?\tÉtiez-vous à la bibliothèque hier après-midi?\nWhat age was she when she first drove a car?\tQuel âge avait-elle lorsqu'elle conduisit une voiture pour la première fois ?\nWhat are you doing at school this afternoon?\tQue faites-vous à l’école cet après-midi ?\nWhat brand of dog food do you feed your dog?\tQuelle marque de nourriture pour chien donnes-tu à manger à ton chien ?\nWhat brand of dog food do you feed your dog?\tQuelle marque de nourriture pour chien donnez-vous à manger à votre chien ?\nWhat do they do with all their leisure time?\tQue font-ils de tout leur temps libre ?\nWhat do they do with all their leisure time?\tQue font-elles de tout leur temps libre ?\nWhat do you think I should pack for my trip?\tQue penses-tu que je devrais mettre dans ma valise pour mon voyage ?\nWhat do you think I should pack for my trip?\tQue pensez-vous que je devrais mettre dans ma valise pour mon voyage ?\nWhat doesn't kill us only makes us stronger.\tCe qui ne nous tue pas ne fait que nous renforcer.\nWhat is the most romantic city in the world?\tQuelle est la ville la plus romantique du monde ?\nWhat is the total amount of money you spent?\tQuel est le montant total d'argent que tu as dépensé ?\nWhat is the total amount of money you spent?\tQuel est le montant total d'argent que vous avez dépensé ?\nWhat is your greatest source of inspiration?\tQuelle est votre plus grande source d'inspiration ?\nWhat kind of changes do you want us to make?\tQuelle sorte de changements voudriez-vous que nous opérions ?\nWhat language do they speak in your country?\tQuelle langue parle-t-on dans votre pays ?\nWhat number bus do I take to get to Waikiki?\tQuel numéro de bus dois-je prendre pour aller à Waikiki ?\nWhat was the hotel called? I can't remember.\tComment s'appelait l'hôtel ? Je ne m'en souviens plus.\nWhat will it take to get you to vote for me?\tQu'est-ce que ça demanderait que vous votiez pour moi ?\nWhat would you do in this type of situation?\tQu’est-ce que tu ferais, toi, dans ce genre de situation ?\nWhat would you like to do while you're here?\tQue voudrais-tu faire tant que tu es ici ?\nWhat's the weirdest thing you've ever eaten?\tQuelle est la chose la plus étrange que vous ayez jamais mangée ?\nWhat's the weirdest thing you've ever eaten?\tQuelle est la chose la plus étrange que tu aies jamais mangée ?\nWhat's the weirdest thing you've ever eaten?\tQuelle est la chose la plus bizarre que vous ayez jamais mangée ?\nWhat's the weirdest thing you've ever eaten?\tQuelle est la chose la plus bizarre que tu aies jamais mangée ?\nWhat's your favorite non-alcoholic beverage?\tQuelle est ta boisson non-alcoolisée préférée ?\nWhat's your impression of the United States?\tQue penses-tu des États-Unis ?\nWhatever he may say, I won't change my mind.\tQuoi qu'il dise, je ne changerai pas d'avis.\nWhen are you going back to your own country?\tQuand retournes-tu dans ton propre pays ?\nWhen are you going back to your own country?\tQuand retournez-vous dans votre propre pays ?\nWhen was the last time you saw the sunshine?\tDe quand date la dernière fois que tu as vu la lumière du jour ?\nWhen you come next time, bring your brother.\tLorsque tu viens la prochaine fois, emmène ton frère !\nWhen you come next time, bring your brother.\tLorsque vous venez la prochaine fois, emmenez votre frère !\nWhere are you going to vacation this summer?\tOù allez-vous en vacances cet été ?\nWhere can I find an outlet for all my anger?\tOù puis-je trouver un exutoire à toute ma colère ?\nWhere did you find it, at school or at home?\tOù l'as-tu trouvé ? À l'école ou à la maison ?\nWhere did you find it, at school or at home?\tOù l'avez-vous trouvé ? À l'école ou à la maison ?\nWhere did you find it, at school or at home?\tOù l'as-tu trouvée ? À l'école ou à la maison ?\nWhere did you find it, at school or at home?\tOù l'avez-vous trouvée ? À l'école ou à la maison ?\nWhere were you on the night of October 20th?\tOù étiez-vous dans la nuit du 20 octobre ?\nWhere were you on the night of October 20th?\tOù étais-tu dans la nuit du 20 octobre ?\nWhether we go or not depends on the weather.\tQue nous allions ou pas dépend du temps.\nWhether you believe it or not, I believe it.\tQue vous y croyiez ou non, j'y crois.\nWhether you believe it or not, I believe it.\tQue vous y croyiez ou pas, j'y crois.\nWhich do you like better, apples or bananas?\tQu'est-ce-que tu préfères, les pommes ou les bananes ?\nWhich do you like better, apples or bananas?\tQue préférez-vous, les pommes ou les bananes ?\nWho can tell what will happen in the future?\tQui peut dire ce qui arrivera dans le futur.\nWho is playing the piano in the living room?\tQui joue du piano dans le salon ?\nWho was it that bought this skirt yesterday?\tQui était-ce qui a acheté cette jupe hier ?\nWho's that beautiful woman eating all alone?\tQui est cette belle femme qui mange toute seule ?\nWhy did you put off the printing of my book?\tPourquoi avez-vous remis l'impression de mon livre à plus tard ?\nWhy do Americans eat turkey on Thanksgiving?\tPourquoi les Étasuniens mangent-ils de la dinde le jour d'action de grâce ?\nWhy do you close your eyes when you kiss me?\tPourquoi fermes-tu les yeux quand tu m'embrasses ?\nWhy don't we go ahead and start the meeting?\tPourquoi n'avançons-nous pas et ne commençons-nous pas la réunion ?\nWhy don't you pick on someone your own size?\tPourquoi ne t'attaques-tu pas à quelqu'un de ta taille ?\nWhy don't you tell me what you want to hear?\tPourquoi ne me dites-vous pas ce que vous voulez entendre ?\nWhy don't you tell me what you want to hear?\tPourquoi ne me dis-tu pas ce que tu veux entendre ?\nWhy would anyone want to swim in this river?\tPourquoi quiconque voudrait nager dans cette rivière ?\nWhy would anyone want to swim in this river?\tPourquoi quiconque voudrait nager dans ce fleuve ?\nWill you answer all my questions truthfully?\tRépondrez-vous sincèrement à toutes mes questions ?\nWill you give any discount if I pay in cash?\tJ'ai droit à une réduction si je paie cash ?\nWill you lend me your CD player for an hour?\tPeux-tu me prêter ton lecteur de CDs pour une heure ?\nWith great power comes great responsibility.\tAvec un grand pouvoir viennent de grandes responsabilités.\nWould it be OK if I drank a little more tea?\tEst-ce que ça irait si je buvais un peu plus de thé ?\nWould you be so kind as to shut that window?\tSeriez-vous assez aimable pour fermer cette fenêtre ?\nWould you let me think about it for a while?\tEst-ce que je peux y réfléchir un moment ?\nWould you like to take part in the festival?\tVoudriez-vous participer au festival ?\nWould you mind if I ate a piece of this pie?\tVerrais-tu un inconvénient à ce que je mange un morceau de cette tarte ?\nWould you mind if I ate a piece of this pie?\tVerriez-vous un inconvénient à ce que je mange un morceau de cette tourte ?\nWould you mind letting me see your passport?\tPouvez-vous me laisser voir votre passeport ?\nWould you show us some samples of your work?\tPourriez-vous nous montrer quelques échantillons de votre travail ?\nWould you show us some samples of your work?\tPourrais-tu nous montrer quelques échantillons de ton travail ?\nYou are old enough to take care of yourself.\tTu es assez grand pour t'occuper de toi-même.\nYou can stay here as long as you keep quiet.\tTu peux rester ici aussi longtemps que tu restes tranquille.\nYou can stay here as long as you keep quiet.\tVous pouvez rester ici tant que vous gardez votre calme.\nYou can't be hungry. You've just had dinner.\tVous ne pouvez pas avoir faim. Vous venez juste de dîner.\nYou can't put two saddles on the same horse.\tOn ne peut poser deux selles sur le même cheval.\nYou can't understand this sentence, can you?\tTu ne comprends pas cette peine, n'est-ce pas ?\nYou cooked the steak just the way I like it.\tVous avez cuit le bifteck exactement comme je l'aime.\nYou could be a little nicer to your brother.\tTu pourrais être un peu plus gentil à l'égard de ton frère.\nYou could be a little nicer to your brother.\tVous pourriez être un peu plus gentil à l'égard de votre frère.\nYou don't have what it takes to be a leader.\tT'as n'as pas les qualités d'un leader.\nYou don't have what it takes to be a leader.\tTu n'as pas les qualifications pour diriger un groupe.\nYou don't have what it takes to be a leader.\tTu n’as pas l’étoffe d’un meneur.\nYou don't have what it takes to be a leader.\tTu n’as pas l’étoffe d’une meneuse.\nYou don't have what it takes to be a leader.\tVous n’avez pas l’étoffe d’un meneur.\nYou don't have what it takes to be a leader.\tVous n’avez pas l’étoffe d’une meneuse.\nYou don't have what it takes to be a leader.\tTu n’as pas la carrure d’un meneur.\nYou don't have what it takes to be a leader.\tTu n’as pas la carrure d’une meneuse.\nYou don't have what it takes to be a leader.\tVous n’avez pas la carrure d’un meneur.\nYou don't have what it takes to be a leader.\tVous n’avez pas la carrure d’une meneuse.\nYou don't want to get married either, right?\tTu ne veux pas te marier non plus, exact ?\nYou don't want to get married either, right?\tVous ne voulez pas vous marier non plus, exact ?\nYou don't want to get me in trouble, do you?\tTu ne veux pas m'attirer d'ennuis, si ?\nYou don't want to get me in trouble, do you?\tVous ne voulez pas m'attirer d'ennuis, si ?\nYou had better do as the doctor advised you.\tTu ferais mieux de faire comme le médecin te l'a recommandé.\nYou had better do as the doctor advised you.\tTu ferais mieux de faire comme le médecin t'a conseillé.\nYou have a habit of exaggerating everything.\tTu as l'habitude de tout exagérer.\nYou haven't seen Tom this morning, have you?\tVous n'avez pas vu Tom ce matin, n'est-ce pas ?\nYou haven't seen Tom this morning, have you?\tTu n'as pas vu Tom ce matin, n'est-ce pas ?\nYou haven't washed your hands yet, have you?\tTu ne t'es pas encore lavé les mains, si ?\nYou may come at any time tomorrow afternoon.\tVous pouvez venir à n'importe quelle heure demain après-midi.\nYou may not remember me, but I remember you.\tTu ne te souviens peut-être pas de moi, mais je me souviens de toi.\nYou may not remember me, but I remember you.\tIl se peut que vous ne vous souveniez pas de moi, mais je me souviens de vous.\nYou may stay here as long as you keep quiet.\tTu peux rester ici, du moment que tu gardes le silence.\nYou must not lose sight of your main object.\tIl ne faut pas que tu perdes de vue ton objectif principal.\nYou must take your parents advice seriously.\tTu ne dois pas prendre à la légère le conseil de tes parents.\nYou must treat them with more consideration.\tVous devez les traiter avec davantage de considération.\nYou needn't have taken an umbrella with you.\tTu n'avais pas besoin de prendre un parapluie avec toi.\nYou never know what life may throw your way.\tOn ne sait jamais ce que la vie nous réserve.\nYou never know what you can do till you try.\tOn ne sait jamais ce qu'on peut faire jusqu'à ce qu'on essaie.\nYou ought not to call at this time of night.\tTu ne devrais pas appeler à cette heure de la nuit.\nYou probably already know about our company.\tVous connaissez probablement déjà notre entreprise.\nYou probably already know about our company.\tTu es probablement déjà informé sur notre entreprise.\nYou really expressed yourself quite clearly.\tTu t'es vraiment exprimé clairement.\nYou remind me of myself when I was your age.\tTu me rappelles moi lorsque j'avais ton âge.\nYou remind me of myself when I was your age.\tVous me rappelez moi lorsque j'avais votre âge.\nYou should apologize to him for coming late.\tTu devrais lui présenter des excuses pour être arrivé en retard.\nYou should apologize to him for coming late.\tTu devrais lui présenter des excuses pour être arrivée en retard.\nYou should apologize to him for coming late.\tVous devriez lui présenter des excuses pour être arrivé en retard.\nYou should apologize to him for coming late.\tVous devriez lui présenter des excuses pour être arrivée en retard.\nYou should apologize to him for coming late.\tVous devriez lui présenter des excuses pour être arrivés en retard.\nYou should apologize to him for coming late.\tVous devriez lui présenter des excuses pour être arrivées en retard.\nYou should make sure that you tie a bowline.\tTu devrais t'assurer que tu fais un nœud de chaise.\nYou should not have done that. It was wrong.\tTu n'aurais pas dû faire ça. C'était mal.\nYou should not have done that. It was wrong.\tVous n'auriez pas dû faire ça. C'était mal.\nYou should've told Tom that a long time ago.\tTu aurais dû dire ça à Tom il y a longtemps.\nYou should've told Tom that a long time ago.\tVous auriez dû dire cela à Tom il y a longtemps.\nYou shouldn't eat just before you go to bed.\tVous ne devriez pas manger avant d'aller au lit.\nYou smoke far too much. You should cut back.\tTu fumes beaucoup trop. Tu devrais freiner ta consommation.\nYou will be able to play tennis better soon.\tVous seriez bientôt en mesure de mieux jouer au tennis.\nYou will get the worst beating of your life.\tTu vas prendre la pire raclée de ta vie.\nYou will get the worst beating of your life.\tVous allez prendre la pire raclée de votre vie.\nYou will get the worst beating of your life.\tVous allez prendre la pire rame de votre vie.\nYou will get the worst beating of your life.\tVous allez prendre la pire rossée de votre vie.\nYou will have to apologize when you see him.\tVous devez lui présenter des excuses quand vous le verrez.\nYou wouldn't want that to happen, would you?\tTu ne voudrais pas que ça se produise, si ?\nYou're going to have to do better than that.\tIl va vous falloir faire mieux que ça.\nYou're going to have to do better than that.\tIl va te falloir faire mieux que ça.\nYou're not telling me anything I don't know.\tVous ne me dites rien que j'ignore.\nYou're not telling me anything I don't know.\tTu ne me dis rien que j'ignore.\nYou're the most beautiful girl in the world.\tTu es la plus belle fille du monde.\nYou're the most beautiful girl in the world.\tVous êtes la plus belle fille du monde.\nYou're the most handsome man I've ever seen.\tVous êtes le plus bel homme qu'il m'ait été donné de voir.\nYou're the most handsome man I've ever seen.\tTu es le plus bel homme qu'il m'ait été donné de voir.\nYou're the most handsome man I've ever seen.\tVous êtes le plus bel homme que j'aie jamais vu.\nYou're the most handsome man I've ever seen.\tTu es le plus bel homme que j'aie jamais vu.\nYou're the most important person in my life.\tTu es la personne la plus importante dans ma vie.\nYou're the most important person in my life.\tVous êtes la personne qui compte le plus dans mon existence.\nYou're the only person I know who is my age.\tTu es la seule personne que je connaisse qui ait mon âge.\nYour proposal is worthy of being considered.\tVotre proposition mérite qu'on la considère.\nYour wife is going to ask you for a divorce.\tTa femme va te demander le divorce.\nYour wife is going to ask you for a divorce.\tVotre femme va vous demander le divorce.\nYour wish will come true in the near future.\tVotre souhait se réalisera dans un proche avenir.\nYour wish will come true in the near future.\tTon souhait se réalisera dans un proche avenir.\nZoology deals with the study of animal life.\tLa zoologie est l'étude de la vie animale.\n\"Are the drinks free?\" \"Only for the ladies.\"\t« Les boissons sont-elles gratuites ? » « Seulement pour les filles. »\n\"The Gettysburg Address\" is a concise speech.\t\"Le discours de Gettysburg\" est un texte concis.\n\"What were you two talking about?\" \"Nothing.\"\t« De quoi parliez-vous tous les deux ? » « De rien. »\n\"What were you two talking about?\" \"Nothing.\"\t« De quoi parliez-vous toutes les deux ? » « De rien. »\n\"What will you have to do?\" asked her friend.\t« Que feras-tu ? » demanda son ami.\n\"What will you have to do?\" asked her friend.\t« Que feras-tu ? » demanda son amie.\n\"Where was he headed?\" \"He was headed north.\"\t« Où s'en était-il allé ? » « Il se dirigeait au nord. »\n\"Will you pass me the sugar?\" \"Here you are.\"\t\"Peux-tu me passer le sucre ?\" \"Le voilà.\"\nA big earthquake occurred in India yesterday.\tUn gros tremblement de terre a eu lieu en Inde hier.\nA big earthquake occurred in India yesterday.\tUn gros tremblement de terre a secoué l'Inde hier.\nA blind person's hearing is often very acute.\tLes aveugles ont souvent une perception auditive accrue.\nA blind person's hearing is often very acute.\tLes aveugles ont souvent l'ouïe très fine.\nA crowd soon gathered around the fire engine.\tLa foule se rassembla bientôt autour du camion de pompier.\nA good doctor is sympathetic to his patients.\tUn bon docteur est bien disposé à l'égard de ses patients.\nA good pair of glasses will help you to read.\tUne bonne paire de lunettes vous aidera à lire.\nA great responsibility lies on his shoulders.\tUne grande responsabilité repose sur ses épaules.\nA group of children were playing in the park.\tUn groupe d'enfant jouait dans le parc.\nA holiday this summer is out of the question.\tUn congé cet été est hors de question.\nA lot of people in our neighborhood own guns.\tBeaucoup de gens dans notre voisinage possèdent des armes.\nA man whose wife is dead is called a widower.\tUn homme dont la femme est morte s'appelle un veuf.\nA nephew is a son of one's brother or sister.\tUn neveu est le fils d'un frère ou d'une sœur.\nA secure income is an important thing for me.\tUn revenu assuré est une chose importante pour moi.\nAdolescents often quarrel with their parents.\tLes adolescents se disputent souvent avec leurs parents.\nAfter an absence of seven years, I went home.\tAprès sept ans d'absence je suis revenu chez moi.\nAfter several delays, the plane finally left.\tAprès plusieurs retardements, l'avion finit par décoller.\nAfter she had lunch, she got ready to go out.\tAprès son déjeuner elle était prête à sortir.\nAfter the hurricane, their house was a wreck.\tAprès l'ouragan, leur maison était en ruines.\nAgriculture consumes a great amount of water.\tL'agriculture consomme une grande quantité d'eau.\nAir is a mixture of gases that we cannot see.\tL'air est un mélange de gaz que nous ne pouvons pas voir.\nAlcohol consumption is increasing every year.\tLa consommation d'alcool augmente chaque année.\nAll families with children get special rates.\tToutes les familles avec des enfants bénéficient de prix réduits.\nAll the floors in her house are made of wood.\tTout le par-terre de sa maison est en bois.\nAll the lights in the building have gone out.\tToutes les lumières du bâtiment se sont éteintes.\nAll the signs are that she is getting better.\tTous les signes montrent qu'elle va mieux.\nAll the things I bought have already arrived.\tToutes les choses que j'ai achetées sont déjà arrivées.\nAmerican women didn't have the right to vote.\tLes femmes étasuniennes n'avaient pas le droit de vote.\nAmong the guests were the mayor and his wife.\tParmi les invités, il y avait le maire et sa femme.\nAnd while I'm at it, I have another question.\tEt pendant que j'y suis, j'ai une autre question.\nAre there any letters for me in today's mail?\tY a-t-il des lettres pour moi dans le courrier d'aujourd'hui ?\nAre you planning to take part in the meeting?\tAvez-vous prévu de participer à la réunion ?\nAre you planning to take part in the meeting?\tPrévoyez-vous de participer à la réunion ?\nAre you sure that you want to give this away?\tEs-tu sûr de vouloir donner ça ?\nAre you sure you don't want something to eat?\tEs-tu sûr de ne pas vouloir manger quelque chose ?\nAre you sure you don't want something to eat?\tEs-tu sûre de ne pas vouloir manger quelque chose ?\nAre you sure you don't want something to eat?\tÊtes-vous sûr de ne pas vouloir manger quelque chose ?\nAre you sure you don't want something to eat?\tÊtes-vous sûre de ne pas vouloir manger quelque chose ?\nAre you sure you don't want something to eat?\tÊtes-vous sûrs de ne pas vouloir manger quelque chose ?\nAre you sure you don't want something to eat?\tÊtes-vous sûres de ne pas vouloir manger quelque chose ?\nAs far as I know, he has never been overseas.\tPour autant que je sache, il n'a encore jamais été à l'étranger.\nAs far as I know, this is the latest edition.\tPour autant que je sache, c'est l'édition la plus récente.\nAs long as you keep quiet, you can stay here.\tDu moment que tu es silencieux, tu peux rester ici.\nAs soon as I have it, I'll forward it to you.\tDès que j'en dispose, je vous le transmets.\nAs soon as I have it, I'll forward it to you.\tDès que j'en dispose, je te le transmets.\nAs soon as they return, I will telephone you.\tDès qu'ils sont de retour, je vous téléphone.\nAs time passed, the radioactivity diminished.\tAvec le temps, la radioactivité a diminué.\nAt last, they experienced the joy of victory.\tIls ont finalement ressenti la joie de vaincre.\nAutumn is the best season for going on hikes.\tL'automne est la meilleure saison pour aller faire des randonnées.\nBack in those days, I loved to play checkers.\tÀ l'époque, j'adorais jouer aux dames.\nBe sure to drop in on us if you come our way.\tVenez nous rendre visite si vous passez dans le coin.\nBe sure to put out the fire before you leave.\tAssurez-vous d'éteindre le feu avant que vous ne partiez.\nBesides the rain, we experienced heavy winds.\tOutre la pluie, nous avons eu des vents très forts.\nBody temperature is highest in the afternoon.\tLa température du corps est plus élevée l'après-midi.\nBurn this letter after you finish reading it.\tBrûle cette lettre après avoir fini de la lire.\nBurn this letter after you finish reading it.\tBrûle cette lettre après que tu aies fini de la lire.\nBurn this letter after you finish reading it.\tBrûlez cette lettre après que vous ayez fini de la lire.\nBurn this letter after you finish reading it.\tBrûlez cette lettre après avoir fini de la lire.\nCan I have two hamburgers and a coke, please?\tPuis-je avoir deux hamburgers et un coca, s'il vous plaît.\nCan I take my shirt off? It's so hot in here.\tPuis-je retirer ma chemise ? Il fait si chaud là-dedans.\nCan I tempt you to try another piece of cake?\tTu reprendras bien un autre morceau de gâteau?\nCan the meeting be finished within two hours?\tEst-ce que la réunion peut finir dans les deux heures ?\nCan you account for your absence last Friday?\tPouvez-vous justifier votre absence de vendredi dernier ?\nCan you believe it? He's even lazier than me.\tArrives-tu à le croire ? Il est encore plus fainéant que moi.\nCan you believe it? He's even lazier than me.\tPouvez-vous le croire ? Il est encore plus fainéant que moi.\nCan you get that to me by the end of the day?\tPeux-tu me l'obtenir pour la fin de la journée ?\nCan you get that to me by the end of the day?\tPouvez-vous me l'obtenir d'ici la fin de la journée ?\nCan you make yourself understood in Japanese?\tParvenez-vous à vous faire comprendre en japonais ?\nCan you make yourself understood in Japanese?\tParviens-tu à te faire comprendre en japonais ?\nCan you still remember the time we first met?\tArrives-tu à te rappeler le moment où nous nous sommes rencontrés pour la première fois ?\nCan you still remember the time we first met?\tArrives-tu à te rappeler le moment où nous nous sommes rencontrés la première fois ?\nCan you still remember the time we first met?\tArrivez-vous à vous rappeler le moment où nous nous sommes rencontrés pour la première fois ?\nCan you still remember the time we first met?\tArrivez-vous à vous rappeler le moment où nous nous sommes rencontrés la première fois ?\nCan you tell me where the subway entrance is?\tPouvez-vous m'indiquer où se trouve l'entrée du métro ?\nChicken pox is a common sickness in children.\tLa varicelle est une maladie commune chez les enfants.\nChildren often cry just to attract attention.\tLes enfants pleurent souvent juste pour attirer l'attention.\nChildren usually have faith in their parents.\tLes enfants ont d'habitude foi en leurs parents.\nConcerning this matter, I'm the one to blame.\tEn ce qui concerne cette affaire, je suis le fautif.\nCould we get a bottle of your best champagne?\tPourrions-nous avoir une bouteille de votre meilleur champagne ?\nCould you describe to the jury what happened?\tPourriez-vous décrire au jury ce qui s'est passé ?\nCould you describe to the jury what happened?\tPourriez-vous décrire au jury ce qui est survenu ?\nCould you describe to the jury what happened?\tPourriez-vous décrire au jury ce qui s'est produit ?\nCould you go to the store and grab some eggs?\tPourriez-vous aller au magasin et prendre des œufs?\nCould you go to the store and grab some eggs?\tPourrais-tu aller au magasin me chercher des œufs?\nCould you hand me the newspaper on the table?\tPourriez-vous me passer le journal qui se trouve sur la table ?\nCountry people are often afraid of strangers.\tLes habitants de la campagne ont souvent peur des étrangers.\nCuban cigars are among the best in the world.\tLes cigares cubains sont parmi les meilleurs au monde.\nDid you fall in love with her at first sight?\tTu es tombée amoureuse d'elle dès que tu l'as vue ?\nDid you fall in love with her at first sight?\tAs-tu eu le coup de foudre pour elle ?\nDo you find that washing machine easy to use?\tTrouvez-vous cette machine à laver facile à utiliser ?\nDo you find that washing machine easy to use?\tTrouves-tu cette machine à laver facile à utiliser ?\nDo you have a flashlight that I could borrow?\tDisposez-vous d'une lampe torche que je pourrais emprunter ?\nDo you know of any good restaurant near here?\tConnaissez-vous un bon restaurant près d'ici ?\nDo you know the girl waving at us over there?\tConnais-tu la fille qui nous fait signe de l'autre côté ?\nDo you know what time that accident happened?\tSavez-vous à quelle heure l'accident est survenu?\nDo you listen to the radio at home every day?\tÉcoutes-tu tous les jours la radio à la maison ?\nDo you mind if I ask you a personal question?\tVoyez-vous un inconvénient à ce que je vous pose une question personnelle ?\nDo you really want to lead this kind of life?\tVeux-tu vraiment vivre ce genre de vie ?\nDo you really want to lead this kind of life?\tVoulez-vous vraiment vivre ce genre de vie ?\nDo you remember where you left your umbrella?\tVous souvenez-vous où vous avez laissé votre parapluie?\nDo you sell any guidebooks written in French?\tVendez-vous des guides écrits en français ?\nDo you spend a lot of time with your friends?\tPassez-vous beaucoup de temps avec vos amis ?\nDo you spend a lot of time with your friends?\tPassez-vous beaucoup de temps avec vos amies ?\nDo you spend a lot of time with your friends?\tPasses-tu beaucoup de temps avec tes amis ?\nDo you spend a lot of time with your friends?\tPasses-tu beaucoup de temps avec tes amies ?\nDo you think he made that mistake on purpose?\tPensez-vous qu'il a fait cette erreur exprès ?\nDo you think he made that mistake on purpose?\tPenses-tu qu'il a commis cette erreur intentionnellement ?\nDo you think that money really matters to me?\tPensez-vous que l'argent compte vraiment pour moi ?\nDo you think there's something wrong with me?\tPensez-vous que quelque chose n'aille pas avec moi ?\nDo you think there's something wrong with me?\tPenses-tu que quelque chose n'aille pas avec moi ?\nDo you think you would ever consider suicide?\tPenses-tu que tu envisagerais jamais de te suicider ?\nDo you think you would ever consider suicide?\tPensez-vous que vous envisageriez jamais de vous suicider ?\nDo you want me to bring you something to eat?\tVeux-tu que je t'apporte quelque chose à manger?\nDo you want me to teach you some swear words?\tVeux-tu que je t'enseigne des gros mots ?\nDo you want me to teach you some swear words?\tVoulez-vous que je vous enseigne des gros mots ?\nDoctors have discovered some startling facts.\tLes docteurs ont découvert des données surprenantes.\nDoes Tom want me to drive him to the airport?\tTom veut-il que je le conduise à l'aéroport ?\nDon't cross the road while the signal is red.\tNe traverse pas la rue tant que le feu est rouge.\nDon't do the crime, if you can't do the time.\tNe commets pas le crime si tu ne peux pas purger la peine.\nDon't do the crime, if you can't do the time.\tNe commettez pas le crime si vous ne pouvez pas purger la peine.\nDon't enter the room until I say \"All right.\"\tNe rentre pas dans la chambre avant que je ne te dise « c'est bon ».\nDon't get off while the vehicle is in motion.\tNe descendez pas pendant que le véhicule est en marche !\nDon't let anyone enter or approach this room.\tNe laissez personne s'approcher ou entrer dans cette pièce.\nDon't let me down like you did the other day.\tNe me laisse pas tomber comme tu l'as fait l'autre jour.\nDon't let me down like you did the other day.\tNe me laissez pas tomber comme vous l'avez fait l'autre jour.\nDon't talk about business while we're dining.\tNe parle pas affaires tant que nous dînons.\nDon't you ever knock before you enter a room?\tNe frappes-tu jamais avant d'entrer dans une chambre ?\nDon't you ever knock before you enter a room?\tNe frappez-vous jamais avant d'entrer dans une chambre ?\nDon't you think that's probably a good thing?\tNe penses-tu pas qu'il s'agisse probablement d'une bonne chose ?\nDon't you think that's probably a good thing?\tNe pensez-vous pas qu'il s'agisse probablement d'une bonne chose ?\nDrivers should be aware of the traffic rules.\tLes conducteurs devraient être informés des règles de circulation.\nDrug addiction is a cancer in modern society.\tLa toxicomanie est un cancer au sein de la société moderne.\nDuring the night, everything looks different.\tDurant la nuit, tout a l'air différent.\nEarthquakes and floods are natural disasters.\tLes tremblements de terre et les inondations sont des catastrophes naturelles.\nEconomic development is important for Africa.\tLe développement économique est important pour l'Afrique.\nEnglish and German are two related languages.\tLa langue anglaise est proche de la langue allemande.\nEnglish and German are two related languages.\tL'allemand et l'anglais sont des langues parentes.\nEnglish has become an international language.\tL'anglais est devenu une langue internationale.\nEnglish is spoken in many parts of the world.\tOn parle anglais dans bon nombre d'endroits de par le monde.\nEven if he doesn't come, we'll have to begin.\tMême s'il ne vient pas, il nous faudra commencer.\nEven the teacher could not solve the problem.\tMême le professeur ne pouvait pas résoudre le problème.\nEven though he apologized, I'm still furious.\tMême s'il s'est excusé, je suis encore en colère.\nEven though she was busy, she came to see me.\tBien qu'elle fut occupée, elle vint me voir.\nEven though she was busy, she came to see me.\tBien qu'elle fut occupée, elle est venue me voir.\nEventually, Tom will likely agree to help us.\tTom finira sûrement par accepter de nous aider.\nEvery girl's crazy about a sharp-dressed man.\tToutes les filles sont folles d'un homme bien habillé.\nEvery student has free access to the library.\tTous les étudiants ont un libre accès à la bibliothèque.\nEvery time I see you, I think of your mother.\tÀ chaque fois que je te vois, je pense à ta mère.\nEveryone admires the pictures painted by him.\tTout le monde admire les tableaux qu'il a peints.\nEveryone could easily see his disappointment.\tChacun pouvait facilement constater sa déception.\nEveryone should exercise their right to vote.\tChacun devrait exercer son droit de vote.\nExcuse me for opening your letter by mistake.\tPardonnez-moi pour avoir ouvert votre lettre par erreur.\nFather bought me the latest model motorcycle.\tPapa m'a acheté une moto du modèle le plus récent.\nFinally, I found the answer to your question.\tFinalement, j'ai trouvé la réponse à la question.\nFirst of all, we have to finish the homework.\tTout d'abord, nous devons finir les devoirs.\nFish like carp and trout live in fresh water.\tLes poissons tels que la carpe ou la truite vivent en eau douce.\nFlorence is the most beautiful city in Italy.\tFlorence est la ville la plus belle d'Italie.\nGermany shares a border with the Netherlands.\tL'Allemagne est limitrophe des Pays-Bas.\nGive me back the book after you have read it.\tRends-moi le livre après que tu l'as lu.\nGive me back the book after you have read it.\tRendez-moi le livre après que vous l'avez lu.\nGoing to this school requires a lot of money.\tAller à cette école nécessite beaucoup d'argent.\nGunpowder needs to be handled very carefully.\tLa poudre à canon doit être manipulée avec beaucoup de précautions.\nHappy is the man who is content with his lot.\tHeureux l'homme qui se satisfait de son sort.\nHappy is the man who is content with his lot.\tHeureux l'homme qui est satisfait de son sort.\nHas anyone in your family ever been arrested?\tEst-ce que quelqu'un dans votre famille a déjà été arrêté?\nHave you been told where the meeting will be?\tVous a-t-on dit où la réunion se tiendra ?\nHave you ever been a witness in a court case?\tAvez-vous jamais été témoin d'une affaire en justice ?\nHave you ever been a witness in a court case?\tAs-tu jamais été témoin d'une affaire en justice ?\nHave you ever been betrayed by a good friend?\tAs-tu jamais été trahi par un bon ami ?\nHave you ever been betrayed by a good friend?\tAvez-vous jamais été trahie par une bonne amie ?\nHave you ever seen a spider spinning its web?\tAs-tu déjà vu une araignée tisser sa toile ?\nHave you ever seen a spider spinning its web?\tAvez-vous déjà vu une araignée tisser sa toile ?\nHave you read the article about Asia in Time?\tAvez-vous lu l'article sur l'Asie dans le Time ?\nHaven't I already told you about this before?\tNe t'en ai-je pas parlé avant ?\nHe asked his father to take him to the store.\tIl demanda à son père de l'emmener au magasin.\nHe asked his wife if she was coming with him.\tIl a demandé à sa femme si elle venait avec lui.\nHe asked his wife if she was coming with him.\tIl a demandé à sa femme si elle l'accompagnait.\nHe asked me who I thought would win the race.\tIl me demanda qui, je pensais, gagnerait la course\nHe attended the meeting in place of his boss.\tIl a participé à la réunion au nom de son patron.\nHe behaves respectfully toward his superiors.\tIl est respectueux envers ses supérieurs.\nHe broke his word, which made his wife angry.\tIl n'a pas tenu parole, ce qui a mis sa femme en colère.\nHe broke the machine by using it incorrectly.\tIl a cassé la machine en l'utilisant de façon incorrecte.\nHe contributed a lot of money to the charity.\tIl a donné beaucoup d'argent à cette œuvre.\nHe crosses the railroad tracks every morning.\tIl traverse la voie ferrée chaque matin.\nHe crushed the sheet of paper up into a ball.\tIl chiffonna la feuille de papier en une boule.\nHe denied having been involved in the affair.\tIl a nié avoir été impliqué dans l'affaire.\nHe denied knowing anything about their plans.\tIl a nié connaître quoi que ce soit à propos de leurs plans.\nHe deprived my little sister of all her toys.\tIl priva ma petite sœur de tous ses jouets.\nHe didn't run fast enough to catch the train.\tIl n'a pas couru assez vite pour attraper le train.\nHe doesn't have the capacity to be president.\tIl n'a pas la capacité d'être président.\nHe explored the region around the South Pole.\tIl a exploré la région aux alentours du pôle Sud.\nHe fell in love with the girl at first sight.\tIl a eu le coup de foudre pour la fille.\nHe gathered the courage to decline the offer.\tIl rassembla le courage de décliner la proposition.\nHe got his car washed at the filling station.\tIl a fait laver sa voiture à la station-essence.\nHe has a bookstore in the center of the city.\tIl tient une librairie dans le centre-ville.\nHe has just as many books as his father does.\tIl a autant de livres que son père.\nHe has not written to us since last February.\tIl ne nous a pas écrit depuis février.\nHe hurried past me without stopping to speak.\tIl a pressé le pas en me dépassant, sans s'arrêter pour discuter.\nHe is always finding fault with other people.\tIl trouve toujours à redire aux autres.\nHe is amusing himself by playing video games.\tIl s'amuse en jouant aux jeux vidéos.\nHe is as smart as any other boy in the class.\tIl est aussi intelligent que n'importe quel autre garçon de la classe.\nHe is bound to pass the entrance examination.\tIl est obligé de réussir l'examen d'entrée.\nHe is concerned about the result of the exam.\tIl s'inquiète pour les résultats de l'examen.\nHe is leaving Narita for Hawaii this evening.\tIl quitte Narita pour Hawaii ce soir.\nHe is my neighbor, but I don't know him well.\tC'est mon voisin, mais je ne le connais pas bien.\nHe is proficient in both Spanish and Italian.\tIl est compétent en espagnol et en italien.\nHe is rarely, if ever, late for appointments.\tIl est rarement, voire jamais, en retard aux rendez-vous.\nHe is still grappling with religious beliefs.\tIl bataille encore avec les croyances religieuses.\nHe is taller than any other boy in his class.\tIl est plus grand que tout autre garçon de sa classe.\nHe is the last person to speak ill of others.\tC'est le dernier à dire du mal des autres.\nHe is well acquainted with French literature.\tIl est expert en littérature française.\nHe knows better than to believe such a thing.\tIl est suffisamment avisé pour ne pas croire à une telle chose.\nHe knows better than to believe such a thing.\tIl n'est pas bête au point de croire à une chose pareille.\nHe laid on his back and looked up at the sky.\tIl s'étendit sur le dos et regarda le ciel.\nHe left for America the day before yesterday.\tIl est parti pour l'Amérique avant-hier.\nHe looked at me out of the corner of his eye.\tIl me regarda du coin de l'œil.\nHe looked for every possible means of escape.\tIl chercha tous les moyens possibles pour s'échapper.\nHe may be clever, but he is not very helpful.\tC'est vrai qu'il est intelligent, mais il n'est pas très serviable.\nHe occupies a prominent position in the firm.\tIl occupe un poste important dans la société.\nHe played an important role on the committee.\tIl remplissait un rôle important au comité.\nHe played an important role on the committee.\tIl jouait un rôle important au comité.\nHe promised me that he wouldn't tell anybody.\tIl m'a promis qu'il ne le dirait à personne.\nHe promised me that he wouldn't tell anybody.\tIl me promit qu'il ne le dirait à personne.\nHe put up a notice about the change in price.\tIl a affiché une note sur le changement de prix.\nHe read the entire Old Testament in one year.\tIl lut la totalité de l'Ancien Testament en un an.\nHe received quite a few letters this morning.\tIl a reçu pas mal de lettres, ce matin.\nHe sacrificed his health to fulfill his duty.\tIl sacrifia sa santé pour accomplir son devoir.\nHe said he was suffering from a bad headache.\tIl a dit qu'il souffrait d'un mauvais mal de tête.\nHe said, \"Let's take a walk along the river.\"\t\"Allons marcher le long de la rivière\", dit-il.\nHe saved the boy at the risk of his own life.\tIl sauva l'enfant au péril de sa propre vie.\nHe says that he has no memory of the evening.\tIl dit qu'il n'a aucun souvenir de la soirée.\nHe says that he has no memory of the evening.\tIl dit n'avoir aucun souvenir de la soirée.\nHe says that he has no memory of the evening.\tIl déclare qu'il n'a aucun souvenir de la soirée.\nHe says that he has no memory of the evening.\tIl déclare n'avoir aucun souvenir de la soirée.\nHe shuddered with horror at the grisly sight.\tIl frissonna d'horreur à ce spectacle macabre.\nHe spends all his time extolling her virtues.\tIl passe son temps à chanter ses louanges.\nHe spends all his time extolling her virtues.\tIl passe son temps à prôner ses vertus.\nHe studied hard in order to get into college.\tIl a beaucoup étudié afin de pouvoir entrer à l'université.\nHe tends to get angry when people oppose him.\tIl a tendance à se mettre en colère quand les gens s'opposent à lui.\nHe took a picture of the beautiful landscape.\tIl prit une photo du beau paysage.\nHe took my umbrella without bothering to ask.\tIl me prit mon parapluie sans se donner la peine de demander.\nHe tried harder to get good marks than I did.\tIl a travaillé plus dur que je ne l'ai fait pour obtenir des bonnes notes.\nHe tried to comfort her, but she kept crying.\tIl essaya de la consoler, mais elle n'arrêtait pas de pleurer.\nHe tried to make his wife happy, but in vain.\tIl essaya en vain de rendre sa femme heureuse.\nHe tried to make his wife happy, but in vain.\tIl a essayé en vain de rendre sa femme heureuse.\nHe used a big piece of paper to make the bag.\tIl utilisa un grand morceau de papier pour confectionner le sac.\nHe uses foul language whenever he gets angry.\tIl devient grossier quand il s'énerve.\nHe was hospitalized for a surgical operation.\tIl a été hospitalisé pour une opération chirurgicale.\nHe was mad at me because I broke up with him.\tIl était furieux après moi parce que j'avais rompu avec lui.\nHe was moved to tears when he heard the news.\tLes larmes lui vinrent aux yeux en entendant les nouvelles.\nHe was scolded by his teacher for being lazy.\tIl fut sermonné par son instituteur pour sa paresse.\nHe was scolded by his teacher for being lazy.\tIl a été grondé par son instituteur pour sa paresse.\nHe was sick, so he couldn't attend the party.\tIl était malade, aussi il ne put assister à la fête.\nHe was sick, so he couldn't attend the party.\tIl était malade, il ne put donc assister à la fête.\nHe was sick, so he couldn't attend the party.\tIl était malade, aussi il n'a pas pu assister à la fête.\nHe was sick, so he couldn't attend the party.\tIl était malade, il n'a donc pas pu assister à la fête.\nHe was sick, so he couldn't attend the party.\tIl était malade, de telle sorte qu'il n'a pas pu assister à la fête.\nHe was sick, so he couldn't attend the party.\tIl était malade, de telle sorte qu'il ne put assister à la fête.\nHe was sick, so he couldn't attend the party.\tIl était malade, de sorte qu'il n'a pas pu assister à la fête.\nHe was sick, so he couldn't attend the party.\tIl était malade, de sorte qu'il ne put assister à la fête.\nHe was sitting in the library when I saw him.\tIl était assis dans la bibliothèque quand je l'ai vu.\nHe was the only one not invited to the party.\tIl fut le seul à ne pas être invité à la soirée.\nHe was the only one not invited to the party.\tIl a été le seul à ne pas être invité à la soirée.\nHe was the only one not invited to the party.\tIl fut le seul à ne pas être invité à la fête.\nHe was the only one not invited to the party.\tIl a été le seul à ne pas être invité à la fête.\nHe was very naughty when he was a little boy.\tIl était très malicieux lorsqu'il était petit garçon.\nHe went for a swim in the lake every morning.\tIl alla se baigner dans le lac tous les matins.\nHe will be playing tennis tomorrow afternoon.\tDemain après-midi, il sera en train de jouer au tennis.\nHe will be waiting for you about two o'clock.\tIl vous attendra vers les deux heures.\nHe wore a mask so no one would recognize him.\tIl portait un masque, de telle manière que personne ne pourrait le reconnaître.\nHe would like to know whether you play chess.\tIl voudrait savoir si vous jouez aux échecs.\nHe wrote a book about the American Civil War.\tIl a écrit un livre sur la guerre de Sécession.\nHe'll be sure to smell a rat if I'm with you.\tIl aura sûrement la puce à l'oreille si je suis avec toi.\nHe's an interpreter in an international bank.\tC'est un interprète dans une banque internationale.\nHe's getting more and more stubborn with age.\tIl devient de plus en plus têtu avec l'âge.\nHe's got the biggest eyebrows I've ever seen.\tIl a les plus gros sourcils que j'ai jamais vus.\nHe's much more into her than she is into him.\tIl est bien plus accroché à elle qu'elle à lui.\nHemingway enjoyed big game hunting in Africa.\tHemingway aimait la chasse aux grands fauves en Afrique.\nHer behavior was appropriate to the occasion.\tSon comportement était de circonstance.\nHer clothes were made of very cheap material.\tSes vêtements étaient faits de tissu très bon marché.\nHer house is on the other side of the bridge.\tSa maison est de l'autre côté du pont.\nHer pregnancy was fraught with complications.\tIl y a eu plein de complications pendant sa grossesse.\nHis cousin, whose name I forget, was a nurse.\tSa cousine, dont j'oublie le nom, était infirmière.\nHis daughter, as well as his son, was famous.\tSa fille, tout autant que son fils, fut célèbre.\nHis father is conservative and old-fashioned.\tSon père est conservateur et vieux-jeu.\nHis grandfather bought him the expensive toy.\tSon grand-père lui a acheté le jouet coûteux.\nHis new book is going to come out next month.\tSon prochain livre va sortir le mois prochain.\nHis secretary can speak three languages well.\tSa secrétaire maîtrise trois langues.\nHis story is much more interesting than hers.\tSon histoire est beaucoup plus intéressante que la sienne.\nHow can I deactivate my account on this site?\tComment puis-je désactiver mon compte sur ce site ?\nHow can I get rid of all those fallen leaves?\tComment puis-je éliminer ces feuilles mortes ?\nHow large is the population of New York City?\tQuelle est la taille de la population de New York ?\nHow long do you plan to stay in this country?\tCombien de temps comptes-tu rester dans ce pays ?\nHow long do you think they have been married?\tDepuis combien de temps crois-tu qu'ils sont mariés ?\nHow long does it take to walk to the station?\tCombien de temps cela met-il pour marcher jusqu'à la gare ?\nHow long have you been living on Park Street?\tDepuis combien de temps vivez-vous rue du Parc ?\nHow long have you been planning this wedding?\tDepuis combien de temps avez-vous planifié ce marriage ?\nHow many audiobooks do you have on your iPod?\tCombien de livres audio as-tu sur ton iPod ?\nHow many audiobooks do you have on your iPod?\tCombien de livres audio avez-vous sur votre iPod ?\nHow many different schools have you attended?\tCombien d'écoles différentes as-tu fréquentées ?\nHow many different schools have you attended?\tCombien d'écoles différentes avez-vous fréquentées ?\nHow many flights to Tokyo do you offer a day?\tCombien proposez-vous de vols pour Tokyo par jour ?\nHow many instruments do you know how to play?\tDe combien d'instruments sais-tu jouer ?\nHow many instruments do you know how to play?\tDe combien d'instruments savez-vous jouer ?\nHow many people do you need for a rugby game?\tCombien de joueurs faut-il pour un match de rugby ?\nHow much did you have to pay for the tickets?\tCombien t'a-t-il fallu payer pour les billets ?\nHow much did you have to pay for the tickets?\tCombien vous a-t-il fallu payer pour les billets ?\nHow much time do you spend shaving every day?\tCombien de temps passes-tu chaque jour à te raser ?\nHow much time do you spend shaving every day?\tCombien de temps passez-vous chaque jour à vous raser ?\nHow old were you when your father was killed?\tQuel âge avais-tu quand ton père s'est fait tué ?\nHow old were you when your father was killed?\tQuel âge aviez-vous quand votre père a été tué ?\nHumans are healed, but machines are repaired.\tLes humains sont soignés mais les machines réparées.\nHurry up, otherwise you'll be late for lunch.\tDépêchez-vous ou vous serez en retard pour déjeuner.\nI admire your perseverance and determination.\tJ'admire votre persévérance et votre détermination.\nI admire your perseverance and determination.\tJ'admire ta persévérance et ta détermination.\nI always take some exercise before breakfast.\tJ'accomplis toujours quelques exercices avant le petit-déjeuner.\nI am calling to make an appointment with you.\tJ'appelle pour convenir d'un rendez-vous avec vous.\nI am going to do it whether you agree or not.\tJe vais le faire, que tu sois d'accord ou pas.\nI am going to do it whether you agree or not.\tJe vais le faire, que vous soyez d'accord ou pas.\nI am going to stay here for a couple of days.\tJe vais rester ici quelques jours.\nI am in the habit of taking a walk every day.\tJ'ai pour habitude de faire une promenade chaque jour.\nI am in the habit of taking a walk every day.\tJ'ai pour habitude d'effectuer une promenade chaque jour.\nI am looking for a book about medieval Spain.\tJe cherche un livre traitant de l'Espagne médiévale.\nI am looking for a book about medieval Spain.\tJe cherche un livre à propos de l'Espagne médiévale.\nI am more than grateful to you for your help.\tJe te suis infiniment reconnaissant pour ton aide.\nI am not wholly convinced that you are right.\tJe ne suis pas totalement convaincu que vous ayez raison.\nI am staying at the hotel for the time being.\tJe reste à l'hôtel pour le moment.\nI am staying at the hotel for the time being.\tPour l'instant, je séjourne à l'hôtel.\nI am sure that he will become a great singer.\tJe suis sûr qu'il deviendra un grand chanteur.\nI am sure that he will become a great singer.\tJe suis sûre qu'il deviendra un grand chanteur.\nI am tired of eating at the school cafeteria.\tJ'en ai marre de manger à la cantine de l'école.\nI am tired of the day-to-day routine of life.\tJe suis fatigué de la routine quotidienne de la vie.\nI apologized for having been late for school.\tJe présentai mes excuses pour avoir été en retard à l'école.\nI apologized for having been late for school.\tJ'ai présenté mes excuses pour avoir été en retard à l'école.\nI arrived at Narita the day before yesterday.\tJe suis arrivée à Narita avant-hier.\nI asked for a seat in the no-smoking section.\tJ'ai demandé une place en non-fumeur.\nI assume you must be a close friend of Tom's.\tJ'imagine que vous êtes un ami intime de Tom.\nI believe you, but unfortunately Tom doesn't.\tJe te crois, mais malheureusement Tom, lui, ne te croit pas.\nI can carry that for you if you'd like me to.\tJe peux porter cela pour vous si vous voulez.\nI can carry that for you if you'd like me to.\tJe peux porter ça pour toi si tu veux.\nI can't afford to buy anything in this store.\tJe ne peux pas me permettre d'acheter quoi que ce soit dans ce magasin.\nI can't always understand everything you say.\tJe ne peux toujours comprendre ce que tu dis.\nI can't always understand everything you say.\tJe ne peux toujours comprendre ce que vous dites.\nI can't always understand everything you say.\tJe ne parviens pas toujours à comprendre ce que tu dis.\nI can't believe people really eat that stuff.\tJe n'arrive pas à croire que des gens mangent vraiment ce truc.\nI can't believe the way everyone is reacting.\tJe n'arrive pas à croire la manière dont tout le monde réagit.\nI can't believe we've never done this before.\tJe n'arrive pas à croire que nous n'ayons jamais fait cela auparavant.\nI can't believe we've never done this before.\tJe n'arrive pas à croire que nous ne l'ayons jamais fait auparavant.\nI can't figure out how to open this suitcase.\tJe n'arrive pas à trouver comment ouvrir cette valise.\nI can't figure out how to solve this problem.\tJe n'arrive pas à trouver comment résoudre ce problème.\nI can't find the word to express what I feel.\tJe ne trouve pas le mot pour exprimer ce que je ressens.\nI can't focus on two things at the same time.\tJe n'arrive pas à me concentrer sur deux choses à la fois.\nI can't focus on two things at the same time.\tJe ne parviens pas à me concentrer sur deux choses à la fois.\nI can't imagine a future with no electricity.\tJe ne peux pas imaginer un futur sans électricité.\nI can't imagine your not knowing her address.\tJe ne peux concevoir que vous ne connaissiez pas son adresse.\nI can't keep living the way I've been living.\tJe ne peux pas continuer à vivre de la manière dont je vis.\nI can't keep up with you if you walk so fast.\tJe ne peux pas te suivre si tu marches si vite.\nI can't keep up with you if you walk so fast.\tJe ne peux pas vous suivre si vous marchez si vite.\nI can't make heads or tails of what you said.\tCe que vous avez dit n'a pour moi ni queue ni tête.\nI can't make heads or tails of what you said.\tCe que tu as dit n'a pour moi ni queue ni tête.\nI can't say I'm terribly proud of what I did.\tJe ne peux pas dire que je sois terriblement fier de ce que j'ai fait.\nI can't say I'm terribly proud of what I did.\tJe ne peux pas dire que je sois terriblement fière de ce que j'ai fait.\nI can't stop thinking about the stolen money.\tJe ne parviens pas à cesser de penser à l'argent volé.\nI caught him by the arm before he could fall.\tJe l'attrapai par le bras avant qu'il ne tombât.\nI couldn't enter because the door was closed.\tJe ne pus entrer car la porte était fermée.\nI couldn't have solved this case without you.\tJe n'aurais pu résoudre cette affaire sans toi.\nI couldn't have solved this case without you.\tJe n'aurais pu résoudre cette affaire sans vous.\nI couldn't let Tom go without saying goodbye.\tJe ne pouvais pas laisser Tom s'en aller sans dire au revoir.\nI couldn't make myself understood in English.\tJe ne pouvais pas me faire comprendre en anglais.\nI couldn't put up with her arrogant behavior.\tJe ne pouvais supporter son attitude arrogante.\nI couldn't put up with that noise any longer.\tJe ne pouvais plus supporter ce bruit.\nI didn't expect such a nice present from you.\tJe ne m'attendais pas à un si gentil cadeau de ta part.\nI didn't mean to interrupt your conversation.\tJe n'avais pas l'intention d'interrompre votre conversation.\nI didn't mean to interrupt your conversation.\tJe n'avais pas l'intention d'interrompre ta conversation.\nI didn't realize the difference between them.\tJe ne fais pas la différence entre eux.\nI didn't recognize him at first on the train.\tJe ne l'ai pas reconnu tout de suite dans le train.\nI didn't want to spend any more time in jail.\tJe ne voulais pas passer davantage de temps en prison.\nI do not like wearing anybody else's clothes.\tJe n'aime pas porter les vêtements de quelqu'un d'autre.\nI don't approve of the way he bullies others.\tJe n'approuve pas la manière qu'il a de tyranniser les autres.\nI don't feel like doing my math homework now.\tJe ne suis pas d'humeur à faire mes exercices de mathématiques.\nI don't feel like taking a walk this morning.\tJe n'ai pas envie de faire une marche ce matin.\nI don't have anything else planned for today.\tJe n'ai rien d'autre de prévu aujourd'hui.\nI don't have anything to say on that subject.\tJe n'ai rien a dire à ce sujet.\nI don't have as much money as you think I do.\tJe n'ai pas autant d'argent que tu le penses.\nI don't have as much money as you think I do.\tJe n'ai pas autant d'argent que vous le pensez.\nI don't know how to operate a spinning wheel.\tJe ne sais pas me servir d'un rouet.\nI don't know if he will visit us next Sunday.\tJe ne sais pas s'il nous rendra visite dimanche prochain.\nI don't know if he would have done it for me.\tJe ne sais pas s'il l'aurait fait pour moi.\nI don't know if it will rain tomorrow or not.\tJe ne sais pas s'il pleuvra ou pas demain.\nI don't know if you'll be here when I return.\tJe ne sais pas si tu seras là quand je reviendrai.\nI don't lend my books to any of the students.\tJe ne prête mes livres à aucun des étudiants.\nI don't like him coming to my house so often.\tJe n'aime pas qu'il vienne si souvent chez moi.\nI don't pretend to understand global warming.\tJe ne prétends pas comprendre le réchauffement climatique.\nI don't quite understand what you are saying.\tJe ne comprends pas tout à fait ce que vous dites.\nI don't quite understand what you are saying.\tJe ne comprends pas tout à fait ce que tu dis.\nI don't really think there'll be any trouble.\tJe ne pense pas vraiment qu'il y aura le moindre problème.\nI don't really understand what just happened.\tJe ne comprends pas vraiment ce qui vient de se produire.\nI don't really understand what just happened.\tJe ne comprends pas vraiment ce qui vient de se passer.\nI don't really understand what just happened.\tJe ne comprends pas vraiment ce qui vient d'arriver.\nI don't see how that is any of your business.\tJe ne vois pas en quoi ce sont vos affaires.\nI don't see how that is any of your business.\tJe ne vois pas en quoi ce sont tes affaires.\nI don't suppose you know anything about this.\tJe ne pense pas que tu saches quoi que ce soit à ce propos.\nI don't think Tom will be at school tomorrow.\tJe ne pense pas que Tom sera à l'école demain.\nI don't think any more students want to come.\tJe ne pense pas que davantage d'étudiants veulent venir.\nI don't think that she looks like her mother.\tJe ne pense pas qu'elle ressemble à sa mère.\nI don't want this news to be made public yet.\tJe ne veux pas que cette nouvelle soit déjà rendue publique.\nI don't want to go bald when I'm still young.\tJe ne veux pas devenir chauve quand je suis encore jeune.\nI don't want to go bald when I'm still young.\tJe ne veux pas devenir chauve tant je suis encore jeune.\nI don't want you to get the wrong impression.\tJe ne veux pas que vous ayez une fausse impression.\nI don't want you to get the wrong impression.\tJe ne veux pas que tu aies une fausse impression.\nI entrusted my wife with the family finances.\tJ'ai confié à ma femme les finances du foyer.\nI feel sympathy for people with that disease.\tJe ressens de la compassion pour les gens avec cette maladie.\nI felt my heart pound after running a little.\tJe sentais mon cœur battre après avoir un peu couru.\nI find myself in a rather delicate situation.\tJe me suis retrouvé dans une situation plutôt délicate.\nI found it difficult to put it into practice.\tJ'ai trouvé difficile de le mettre en pratique.\nI found that there was a little girl sobbing.\tJe me rendis compte qu'une petite fille sanglotait.\nI found the book I had long been looking for.\tJ'ai trouvé le livre que j'ai longtemps cherché.\nI go to the museum whenever I get the chance.\tJe me rends au musée chaque fois que j'en ai l'occasion.\nI guess I should have read it more carefully.\tJ'imagine que j'aurais dû le lire plus attentivement.\nI guess that goes without saying, doesn't it?\tJ'imagine que ça va sans dire, n'est-ce pas ?\nI had enough time, so I didn't need to hurry.\tJ'avais suffisamment de temps, alors je n'avais pas besoin de me presser.\nI had never heard anyone speak of him before.\tJe n'avais jamais entendu parlé de lui avant.\nI had no idea you could speak French so well.\tJe n'avais aucune idée que tu pouvais parler français si bien.\nI had no idea you could speak French so well.\tJe n'avais aucune idée que vous pouviez parler français si bien.\nI had the same thing happen to me last month.\tIl m'est arrivé la même chose, le mois dernier.\nI had the same thing happen to me last month.\tIl m'est arrivée la même chose, le mois dernier.\nI had to walk here because my car broke down.\tJ'ai dû marcher jusqu'ici parce que ma voiture est tombée en panne.\nI had to walk here because my car broke down.\tIl m'a fallu marcher jusqu'ici parce que ma voiture est tombée en panne.\nI hadn't considered not going to the meeting.\tJe n'ai pas envisagé de ne pas me rendre à la réunion.\nI hate to run the risk, but I have no choice.\tJe déteste en courir le risque mais je n'ai pas le choix.\nI have a feeling you might want to see these.\tJ'ai l'impression que vous pourriez vouloir voir ceux-ci.\nI have a feeling you might want to see these.\tJ'ai l'impression que tu voudrais peut-être voir ceux-ci.\nI have absolute confidence in your judgement.\tJ'ai une absolue confiance en ton jugement.\nI have absolute confidence in your judgement.\tJ'ai une absolue confiance en votre jugement.\nI have an attraction for older, chubby women.\tJe suis attiré par les femmes mûres et grassouillettes.\nI have cut up all but one of my credit cards.\tJ'ai interrompu toutes mes cartes de crédit sauf une.\nI have heard nothing from him for five years.\tJe n'ai pas eu de ses nouvelles depuis cinq ans.\nI have plenty of things to eat in the pantry.\tJ'ai plein de choses à manger dans le garde-manger.\nI have plenty of things to eat in the pantry.\tJ'ai plein de choses à manger dans l'office.\nI have read your book. It's very interesting.\tJ'ai lu votre livre, il est très intéressant.\nI have some friends in the police department.\tJ'ai des amis à la préfecture.\nI have to give back the book before Saturday.\tJe dois rendre le livre avant samedi.\nI have too many things on my mind these days.\tJ'ai trop de choses dans la tête ces jours-ci.\nI have two or three calls lined up for today.\tJ'ai deux ou trois appels à passer aujourd'hui.\nI haven't been able to solve the problem yet.\tJ'ai été incapable de résoudre le problème pour le moment.\nI haven't read the book you're talking about.\tJe n'ai pas encore lu le livre dont tu parles.\nI heard voices on the other side of the door.\tJ'ai entendu des voix de l'autre côté de la porte.\nI hope I will become a dentist in the future.\tJ'espère que je deviendrai dentiste.\nI hope to get away from Tokyo for a few days.\tJ'espère partir de Tokyo pour quelques jours.\nI hope you can be a better father than I was.\tJ'espère que tu deviendras un meilleur père que moi.\nI hope you will succeed in winning the prize.\tJ'espère que tu vas réussir à remporter le prix.\nI hurried in order not to be late for school.\tJe me suis dépêché pour ne pas être en retard à l'école.\nI immediately recognized them and so did Tom.\tJe les ai tout de suite reconnus et Tom aussi.\nI immediately recognized them and so did Tom.\tJe les ai tout de suite reconnues et Tom aussi.\nI just assumed everything was going to be OK.\tJ'ai simplement supposé que tout irait bien.\nI just can't believe they're getting married.\tJe n'arrive simplement pas à croire qu'ils se marient.\nI just can't believe they're getting married.\tJe n'arrive simplement pas à croire qu'elles se marient.\nI just didn't want you to think I was stingy.\tJe n'ai simplement pas voulu que vous pensiez que j'étais radin.\nI just didn't want you to think I was stingy.\tJe n'ai simplement pas voulu que tu penses que j'étais radin.\nI just want you to tell Tom what you told me.\tJe veux seulement que tu dises à Tom ce que tu m'as dit.\nI knew something wasn't right about that guy.\tJe savais que quelque chose clochait, chez ce type.\nI know quite a few people who don't eat meat.\tJe connais un certain nombre de personnes qui ne mangent pas de viande.\nI know that things haven't been easy for you.\tJe sais que les choses ne vous ont pas été faciles.\nI know that things haven't been easy for you.\tJe sais que les choses ne t'ont pas été faciles.\nI left my baby in her care and went shopping.\tJe lui ai confié la garde de mon enfant et suis allé faire des courses.\nI like shopping at the local farmers' market.\tJ'aime faire mes courses au marché fermier du coin.\nI look forward to seeing you again very soon.\tJ'ai hâte de vous revoir très bientôt.\nI lost the watch I had bought the day before.\tJ'ai perdu la montre que j'avais achetée la veille.\nI met a friend while I was waiting for a bus.\tJ'ai rencontré un ami tandis que j'attendais un bus.\nI met a friend while I was waiting for a bus.\tJ'ai rencontré une amie tandis que j'attendais un bus.\nI must make up for lost time by driving fast.\tJe dois rattraper le temps perdu en conduisant vite.\nI never imagined I'd feel this way about you.\tJe ne m'étais jamais imaginé que je me sentirais ainsi à ton égard.\nI never imagined I'd feel this way about you.\tJe ne m'étais jamais imaginé que je ressentirais cela à ton égard.\nI opened the window to let in some fresh air.\tJ'ai ouvert la fenêtre, afin de laisser entrer de l'air frais.\nI opened the window to let in some fresh air.\tJ'ouvris la fenêtre, afin de laisser entrer de l'air frais.\nI ought to have written the letter yesterday.\tJ'étais censé avoir rédigé cette lettre hier.\nI plan to stay here until my money gives out.\tJ'ai l'intention de rester ici jusqu'à ce que mon argent s'épuise.\nI play trumpet in a symphonic wind orchestra.\tJe joue de la trompette dans un orchestre symphonique d'instruments à vent.\nI played tennis yesterday for the first time.\tJ'ai joué au tennis pour la première fois hier.\nI put the meat we just bought in the freezer.\tJ'ai mis la viande que nous venons d'acheter au congélateur.\nI put the meat we just bought in the freezer.\tJe mets la viande que nous venons d'acheter au congélateur.\nI really couldn't have done this without you.\tJe n'aurais vraiment pas pu faire ça sans vous.\nI really couldn't have done this without you.\tJe n'aurais vraiment pu faire ça sans vous.\nI really couldn't have done this without you.\tJe n'aurais vraiment pas pu faire ça sans toi.\nI really don't want to go to Boston with Tom.\tJe ne veux vraiment pas aller à Boston avec Tom.\nI really have to think about this a bit more.\tIl faut vraiment que j'y réfléchisse un peu plus.\nI really need to go home and catch some zees.\tJe dois vraiment rentrer chez moi et dormir.\nI really need to go home and catch some zees.\tJe dois vraiment rentrer chez moi et pioncer.\nI remember returning the book to the library.\tJe me souviens avoir rendu le livre à la bibliothèque.\nI rented an apartment when I lived in Boston.\tJ'ai loué un appartement quand je vivais à Boston.\nI saw the old man feed his dog chicken bones.\tJe vis le vieil homme donner à manger des os de poulet à son chien.\nI saw the old man feed his dog chicken bones.\tJ'ai vu le vieil homme donner à manger des os de poulet à son chien.\nI should have gone to bed earlier last night.\tJ'aurais dû aller me coucher plus tôt la nuit dernière.\nI shouldn't have wasted my time reading that.\tJe n'aurais pas dû perdre mon temps à lire ça.\nI skipped out on my appointment with my boss.\tJe me suis défilé de mon rendez-vous avec mon patron.\nI suggest you do your job and let me do mine.\tJe suggère que vous fassiez votre boulot et me laissiez faire le mien.\nI suggest you do your job and let me do mine.\tJe suggère que tu fasses ton boulot et me laisses faire le mien.\nI suppose you want to ask me where I've been.\tJe suppose que vous voulez me demander où j'ai été.\nI suppose you want to ask me where I've been.\tJe suppose que tu veux me demander où j'ai été.\nI take a walk every day except when it rains.\tJe me promène quotidiennement, excepté s'il pleut.\nI take it for granted that people are honest.\tJe prends pour argent comptant que les gens sont honnêtes.\nI telephoned to make sure that he was coming.\tJ'ai téléphoné afin d'être sûr qu'il vienne.\nI think Tom drank out of my glass by mistake.\tJe pense que Tom a bu dans mon verre par erreur.\nI think Tom would probably disagree with you.\tJe pense que Tom ne serait probablement pas d'accord avec vous.\nI think a part-time job is a good experience.\tJe pense qu'un travail à mi-temps est une bonne expérience.\nI think it'd be better if you didn't do that.\tJe pense que ce serait mieux que tu ne fasses pas cela.\nI think it's better for us to adopt his plan.\tJe pense que c'est mieux pour nous d'adopter son plan.\nI think it's time for me to apologize to her.\tJe pense qu'il est temps pour moi de lui présenter des excuses.\nI think it's time for me to ask for her help.\tJe pense qu'il est temps pour moi de lui demander son aide.\nI think it's time for me to ask for her help.\tJe pense qu'il est temps pour moi de requérir son aide.\nI think it's time for me to buy a decent car.\tJe pense qu'il est temps pour moi d'acquérir une voiture digne de ce nom.\nI think it's time for me to buy a decent car.\tJe pense qu'il est temps pour moi d'acheter une voiture digne de ce nom.\nI think it's time for me to buy a new camera.\tJe pense qu'il est temps pour moi d'acquérir un nouvel appareil photo.\nI think it's time for me to buy a new camera.\tJe pense qu'il est temps pour moi d'acheter un nouvel appareil photo.\nI think it's time for me to buy a new camera.\tJe pense qu'il est temps pour moi de faire l'acquisition d'un nouvel appareil photo.\nI think it's time for me to buy my son a car.\tJe pense qu'il est temps pour moi d'acheter une voiture à mon fils.\nI think it's time for me to buy my son a car.\tJe pense qu'il est temps pour moi d'acheter une voiture pour mon fils.\nI think it's time for me to clean the garage.\tJe pense qu'il est temps pour moi de nettoyer le garage.\nI think it's time for me to close the window.\tJe pense qu'il est temps pour moi de fermer la fenêtre.\nI think it's time for me to consult a doctor.\tJe pense qu'il est temps pour moi de consulter un médecin.\nI think it's time for me to consult a lawyer.\tJe pense qu'il est temps pour moi de consulter un avocat.\nI think it's time for me to get my own place.\tJe pense qu'il est temps pour moi de disposer de mon propre logement.\nI think it's time for me to get my own place.\tJe pense qu'il est temps pour moi de prendre mon propre logement.\nI think it's time for me to leave for school.\tJe pense qu'il est temps pour moi de partir pour l'école.\nI think it's time for me to lose some weight.\tJe pense qu'il est temps pour moi de perdre du poids.\nI think it's time for me to organize a party.\tJe pense qu'il est temps pour moi d'organiser une fête.\nI think it's time for me to organize a party.\tJe pense qu'il est temps pour moi de mettre sur pieds une fête.\nI think it's you who should apologize to her.\tJe pense que c'est à toi de lui présenter tes excuses.\nI think we all should have been more careful.\tJe pense que nous aurions tous dû être plus prudents.\nI think we all should have been more careful.\tJe pense que nous aurions toutes dû être plus prudentes.\nI think we should stick to the original plan.\tJe pense que nous devrions nous en tenir au plan initial.\nI think we should stick to the original plan.\tJe pense qu'on devrait s'en tenir au plan initial.\nI think you should change your eating habits.\tJe pense que tu devrais changer tes habitudes alimentaires.\nI thought a person like you would understand.\tJe pensais que quelqu’un comme toi comprendrais.\nI thought maybe I'd better not clean my room.\tJe pensais que peut-être je ferais mieux de ne pas nettoyer ma chambre.\nI thought that you were able to speak French.\tJe pensais que tu étais capable de parler français.\nI thought that you were able to speak French.\tJe pensais que vous étiez en mesure de parler français.\nI thought the company had sent Tom to Boston.\tJe pensais que l'entreprise avait envoyé Tom à Boston.\nI thought you said you couldn't eat raw fish.\tJe pensais que tu avais dit que tu ne pouvais pas manger de poisson cru.\nI thought you said you couldn't eat raw fish.\tJe pensais que vous aviez dit que vous ne pouviez pas manger de poisson cru.\nI tried to solve the problem, but I couldn't.\tJ'ai essayé de résoudre ce problème, mais je n'ai pas pu.\nI used to do that, but I don't do it anymore.\tJe le faisais mais je ne le fais plus.\nI used to do that, but I don't do it anymore.\tJe faisais ça avant, mais plus maintenant.\nI visited Rome for the first time in my life.\tJ'ai visité Rome pour la première fois de ma vie.\nI want a car, but I have no money to buy one.\tJe veux une voiture mais je n'ai pas d'argent pour l'acheter.\nI want a hot shower before I go back to work.\tJe veux une douche chaude avant de retourner au travail.\nI want an answer from you as soon a possible.\tJe veux une réponse de votre part aussi tôt que possible.\nI want an answer from you as soon a possible.\tJe veux une réponse de ta part aussi tôt que possible.\nI want this luggage taken to my room at once.\tJe veux ces bagages dans ma chambre immédiatement.\nI want this matter taken care of immediately.\tJe veux qu'on prenne immédiatement soin de cette affaire.\nI want to emphasize this point in particular.\tJe veux insister sur ce point en particulier.\nI want to get as far away from here as I can.\tJe veux m'éloigner autant que faire se peut d'ici.\nI want to make a complaint to the management.\tJe souhaite me plaindre à la direction.\nI want to speak to whoever is in charge here.\tJe veux parler à quiconque est ici le responsable.\nI want you to go and see if it's still there.\tJe veux que tu ailles voir si c'est toujours là.\nI want you to go and see if it's still there.\tJe veux que tu ailles voir si ça y est toujours.\nI want you to go and see if it's still there.\tJe veux que vous alliez voir si c'est toujours là.\nI want you to go and see if it's still there.\tJe veux que vous alliez voir si ça y est toujours.\nI wanted to hit him, but he ran away from me.\tJe voulais le frapper, mais il m'a fui.\nI wanted to save this for a special occasion.\tJe voulais le réserver pour une occasion spéciale.\nI wanted to thank you for what you did today.\tJe voulais vous remercier pour ce que vous avez fait aujourd'hui.\nI wanted to thank you for what you did today.\tJe voulais te remercier pour ce que tu as fait aujourd'hui.\nI was able to succeed because of your advice.\tJe fus capable de réussir grâce à votre conseil.\nI was able to succeed because of your advice.\tJe fus capable de réussir grâce à ton conseil.\nI was able to succeed because of your advice.\tJ'ai été capable de réussir grâce à votre conseil.\nI was able to succeed because of your advice.\tJ'ai été capable de réussir grâce à ton conseil.\nI was born in Osaka, but brought up in Tokyo.\tJe suis né à Osaka mais j'ai été élevé à Tokyo.\nI was born in Osaka, but brought up in Tokyo.\tJe suis née à Osaka mais j'ai été élevée à Tokyo.\nI was deeply impressed by Roman architecture.\tJ'ai été très impressionné par l'architecture romane.\nI was on the spot when he had a heart attack.\tJ'étais sur place quand il a eu une attaque cardiaque.\nI was probably thirty years old at that time.\tJ'avais probablement trente ans à cette époque.\nI was thinking about what she had said to me.\tJe réfléchissais à ce qu'elle m'avait dit.\nI was told that I needed to get enough sleep.\tOn m'a dit que j'avais besoin de prendre suffisamment de sommeil.\nI was too embarrassed to look her in the eye.\tJ'étais trop embarrassé pour la regarder dans les yeux.\nI went skiing for the first time this winter.\tJe suis allé skier pour la première fois cet hiver.\nI will accept the work, provided you help me.\tJ'accepterai le travail, à condition que vous m'aidiez.\nI will accept the work, provided you help me.\tJ'accepterai le travail, à condition que tu m'aides.\nI will explain the situation to you later on.\tJe vous expliquerai la situation un peu plus tard.\nI will give you a call as soon as I get home.\tJe vous appellerai dès mon retour à la maison.\nI will help you when I have finished my work.\tJe vous aiderai quand j'aurai fini mon travail.\nI will wait till you have written the letter.\tJ'attendrai jusqu'à ce que vous écriviez la lettre.\nI wish there were some cute guys in my class.\tJ'aimerais qu'il y ait de mignons garçons dans ma classe.\nI wonder if I should really become a teacher.\tJe me demande si je devrais vraiment devenir enseignant.\nI wonder if he can reserve the flight for me.\tJe me demande s'il pourrait réserver le vol pour moi.\nI wonder if you have something to write with.\tJe me demande si vous avez quelque chose pour écrire.\nI wonder what happens if I press this button.\tJe me demande ce qui se produit si j'appuie sur ce bouton.\nI wonder what the future has in store for us.\tJe me demande ce que nous réserve l'avenir.\nI wonder why tennis is played in mini-skirts.\tJe me demande pourquoi on joue au tennis en mini-jupe ?\nI wondered what time the concert would begin.\tJe me demandais à quelle heure pourrait commencer le concert.\nI worked as hard as I could so I didn't fail.\tJ'ai travaillé aussi dur que j'ai pu afin de ne pas échouer.\nI worked as hard as I could so I didn't fail.\tJ'ai travaillé aussi dur que j'ai pu de manière à ne pas échouer.\nI would like to go to Austria to study music.\tJe voudrais aller en Autriche faire des études musicales.\nI wouldn't tell Tom about that if I were you.\tJe ne le dirais pas à Tom si j'étais toi.\nI wouldn't tell Tom about that if I were you.\tJe n'en informerais pas Tom si j'étais vous.\nI'd appreciate an answer as soon as possible.\tJ'aimerais bien avoir une réponse dès que possible.\nI'd like to ask you about a car you repaired.\tJ'aimerais vous interroger au sujet d'une voiture que vous avez réparée.\nI'd like to ask you about a student of yours.\tJ'aimerais vous interroger au sujet d'un de vos étudiants.\nI'd like to ask you about a student of yours.\tJ'aimerais vous interroger au sujet d'une de vos étudiantes.\nI'd like to ask you about a student of yours.\tJ'aimerais t'interroger au sujet d'un de tes étudiants.\nI'd like to ask you about a student of yours.\tJ'aimerais t'interroger au sujet de l'une de tes étudiantes.\nI'd like to get together as soon as possible.\tJ'aimerais que nous nous rencontrions dès que possible.\nI'd like to know a little bit more about you.\tJ'aimerais en savoir un petit peu plus à ton sujet.\nI'd like to know a little bit more about you.\tJ'aimerais en savoir un petit peu plus à votre sujet.\nI'd like to know how you got my phone number.\tJ'aimerais savoir comment vous avez obtenu mon numéro de téléphone.\nI'd like to know how you got my phone number.\tJ'aimerais savoir comment tu as obtenu mon numéro de téléphone.\nI'd like to talk to someone about what I saw.\tJ'aimerais discuter avec quelqu'un de ce que j'ai vu.\nI'd like to thank you all for coming tonight.\tJ'aimerais tous vous remercier d'être venus ce soir.\nI'd like to thank you all for coming tonight.\tJ'aimerais toutes vous remercier d'être venues ce soir.\nI'd like to try doing this without your help.\tJ'aimerais essayer de le faire sans votre aide.\nI'd like to try doing this without your help.\tJ'aimerais essayer de le faire sans ton aide.\nI'd like you to help me gather some firewood.\tJ'aimerais que tu m'aides à ramasser du bois pour le feu.\nI'll always love you, no matter what happens.\tJe t'aimerai toujours quoi qu'il arrive.\nI'll do my homework after I watch television.\tJe ferai mes devoirs après avoir regardé la télévision.\nI'll never forget visiting Paris last summer.\tJe n'oublierai jamais ma visite de Paris de l'été dernier.\nI'll remain your ally no matter what happens.\tJe resterai votre allié, quoi qu'il advienne.\nI'll remain your ally no matter what happens.\tJe resterai ton allié, quoi qu'il advienne.\nI'm ashamed to ask you such a silly question.\tJ'ai honte de poser une question si stupide.\nI'm at a loss about what to do with the mess.\tJe ne sais que faire avec ce désordre.\nI'm being sincere when I say that I love you.\tJe suis sincère quand je te dis que je t'aime.\nI'm confident that I'll win the tennis match.\tJe suis sûre de remporter le match de tennis.\nI'm constantly telling her to behave herself.\tJe lui dis constamment de bien se comporter.\nI'm going to go to the doctor this afternoon.\tJe vais chez le médecin, cet après-midi.\nI'm going to work during the spring vacation.\tJe vais travailler pendant les vacances de printemps.\nI'm looking for my shoes. Have you seen them?\tJe cherche mes godasses. Tu les as vues ?\nI'm looking forward to hearing from you soon.\tJ'ai hâte d'avoir de vos nouvelles.\nI'm not angry at you, just very disappointed.\tJe ne suis pas en colère après toi, seulement très déçu.\nI'm not angry at you, just very disappointed.\tJe ne suis pas en colère après toi, seulement très déçue.\nI'm not angry at you, just very disappointed.\tJe ne suis pas en colère après vous, seulement très déçu.\nI'm not angry at you, just very disappointed.\tJe ne suis pas en colère après vous, seulement très déçue.\nI'm really tired and want to go to bed early.\tJe suis très fatigué, je veux me coucher plus tôt.\nI'm sorry for what I said. I was out of line.\tJe suis désolé d'avoir dit ce que j'ai dit. J'ai dérapé.\nI'm sorry for what I said. I was out of line.\tJe suis désolée d'avoir dit ce que j'ai dit. J'ai dérapé.\nI'm sorry, but I didn't know it was a secret.\tPardonnez-moi, mais j'ignorais que c'était un secret.\nI'm sorry, but I don't have any small change.\tJe suis désolé mais je n'ai pas la moindre petite monnaie.\nI'm sorry, but I don't have any small change.\tJe suis désolée mais je n'ai pas la moindre petite monnaie.\nI'm sure I've seen that guy somewhere before.\tJe suis certain d'avoir déjà vu ce type quelque part.\nI'm sure I've seen that guy somewhere before.\tJe suis certaine d'avoir déjà vu ce type quelque part.\nI'm surprised no one else heard the gunshots.\tJe suis surpris que personne d'autre n'ait entendu les détonations.\nI'm surprised no one else heard the gunshots.\tJe suis surprise que personne d'autre n'ait entendu les détonations.\nI'm surprised no one else heard the gunshots.\tJe suis surpris que personne d'autre n'ait entendu les coups de feu.\nI'm surprised no one else heard the gunshots.\tJe suis surprise que personne d'autre n'ait entendu les coups de feu.\nI'm trying to figure out what you do for fun.\tJ'essaie de m'imaginer ce que tu fais pour t'amuser.\nI'm trying to figure out what you do for fun.\tJ'essaie de m'imaginer ce que vous faites pour vous amuser.\nI'm trying to figure out what you do for fun.\tJ'essaie de comprendre ce que tu fais pour t'amuser.\nI'm trying to figure out what you do for fun.\tJ'essaie de comprendre ce que vous faites pour vous amuser.\nI've always fed my dogs in the early evening.\tJ'ai toujours nourri mes chiens en début de soirée.\nI've always wanted to learn to cook like you.\tJ'ai toujours voulu apprendre à cuisiner comme toi.\nI've been really lonely these past two weeks.\tJ'ai été très seul ces deux dernières semaines.\nI've been really lonely these past two weeks.\tJ'ai été très seule ces deux dernières semaines.\nI've got to stop eating such sweet ice cream.\tIl faut que j'arrête de manger de la glace aussi sucrée.\nI've loved you since the day I first saw you.\tJe t'ai aimé dès le premier jour.\nI've never felt this way about anyone before.\tJe ne me suis jamais senti ainsi vis à vis de quiconque auparavant.\nI've never felt this way about anyone before.\tJe ne me suis jamais sentie ainsi vis à vis de quiconque auparavant.\nI've never met a musician that I didn't like.\tJe n'ai jamais rencontré un musicien que je n'aimais pas.\nI've tried everything I know to cheer him up.\tJ'ai essayé tout ce que je connais pour lui remonter le moral.\nIceland entered into an alliance with France.\tL'Islande a conclu une alliance avec la France.\nIf I had enough money, I could buy this book.\tSi j'avais assez d'argent, je pourrais m'acheter ce livre.\nIf I start eating potato chips, I can't stop.\tSi je me mets à manger des chips, je ne sais pas m'arrêter.\nIf I were to go abroad, I would go to France.\tSi je me rendais à l'étranger, j'irais en France.\nIf I'd only read the contract more carefully!\tSi seulement j'avais lu le contrat avec davantage d'attention !\nIf he's proficient in English, I'll hire him.\tS'il est compétent en anglais, je l'engagerai.\nIf he's still alive, he'd be very old by now.\tS'il était encore vivant, il serait très vieux à l'heure qu'il est.\nIf it is fine tomorrow, we'll go on a picnic.\tSi demain le temps est beau, nous irons pique-niquer.\nIf it snows tomorrow, I will build a snowman.\tS'il neige demain, je ferai un bonhomme de neige.\nIf we're going to do this, let's do it right.\tSi nous allons faire cela, faisons-le correctement.\nIf you can't do the time, don't do the crime.\tSi tu ne peux pas purger la peine, ne commets pas le crime.\nIf you can't do the time, don't do the crime.\tSi vous ne pouvez pas purger la peine, ne commettez pas le crime.\nIf you do not have this book, you can buy it.\tSi vous ne disposez pas de ce livre, vous pouvez en faire l'acquisition.\nIf you do not have this book, you can buy it.\tSi tu n'as pas ce livre, tu peux l'acheter.\nIf you do not have this book, you can buy it.\tSi vous n'avez pas ce livre, vous pouvez l'acheter.\nIf you do that, everyone's going to hate you.\tSi tu fais ça, tout le monde va te détester.\nIf you do that, everyone's going to hate you.\tSi vous faites ça, tout le monde va vous détester.\nIf you don't want to sing, you don't have to.\tSi tu ne veux pas chanter, ne te sens pas obligé.\nIf you don't want to sing, you don't have to.\tSi tu ne veux pas chanter, ne te sens pas obligée.\nIf you need a ride, I could come and get you.\tSi tu as besoin de te faire conduire, je pourrais venir te chercher.\nIf you see a mistake, then please correct it.\tSi tu vois une faute alors corrige-la s'il te plaît.\nIf you see a mistake, then please correct it.\tSi vous voyez une erreur, alors veuillez la corriger.\nIf you start now, you will get there in time.\tSi tu pars maintenant, tu seras là à temps.\nIf you want to stay here, you are welcome to.\tSi vous voulez rester ici, vous êtes bienvenu.\nIf you want to stay here, you are welcome to.\tSi vous voulez rester ici, vous êtes bienvenue.\nIf you want to stay here, you are welcome to.\tSi vous voulez rester ici, vous êtes bienvenus.\nIf you want to stay here, you are welcome to.\tSi vous voulez rester ici, vous êtes bienvenues.\nIf you want to stay here, you are welcome to.\tSi tu veux rester ici, tu es bienvenu.\nIf you want to stay here, you are welcome to.\tSi tu veux rester ici, tu es bienvenue.\nIf you want to succeed, you should work hard.\tSi tu veux avoir du succès, alors tu dois travailler dur.\nIf you're not with us then you're against us.\tSi vous n'êtes pas avec nous, alors vous êtes contre nous.\nIn a few days, the baby will be able to walk.\tLe bébé saura marcher dans quelques jours.\nIn addition to this, there are other reasons.\tPar là-dessus, il y a d'autres raisons.\nIn all probability, we'll arrive before them.\tSelon toute probabilité, nous arriverons avant eux.\nIn what kind of situations would you do that?\tDans quelle sorte de situations feriez-vous ça ?\nIreland and England are separated by the sea.\tL'Irlande et l'Angleterre sont séparées par la mer.\nIs it really necessary to buy all this stuff?\tEst-il vraiment nécessaire d'acheter tout ce bazar ?\nIs there anything you want me to buy for you?\tY-a-t-il quelque chose que tu voudrais que je t'achète ?\nIsn't there something you want to say to Tom?\tY a-t-il quelque chose que tu voudrais que je dise à Tom ?\nIt cost me 50 dollars to have my watch fixed.\tÇa m'a coûté 50 dollars pour réparer ma montre.\nIt is a six hours' drive from Sofia to Varna.\tIl y a six heures de route de Sofia à Varna.\nIt is about ten minutes' walk to the station.\tIl faut environ dix minutes de marche pour se rendre à la gare.\nIt is cruel of him to say such things to her.\tC'est cruel de sa part que de lui dire de telles choses.\nIt is difficult for him to solve the problem.\tIl lui est difficile de résoudre le problème.\nIt is easy to add numbers using a calculator.\tIl est aisé d'additionner des nombres en utilisant une calculatrice.\nIt is forbidden for you to touch that switch.\tIl t'est interdit de toucher cet interrupteur.\nIt is important to know your own limitations.\tC'est important que tu connaisses tes propres limites.\nIt is important to know your own limitations.\tC'est important de connaître ses propres limites.\nIt is less muggy today than it was yesterday.\tIl fait moins lourd aujourd'hui qu'hier.\nIt is no use arguing with such a foolish man.\tÇa ne sert à rien de discuter avec un homme aussi dérangé.\nIt is not easy to be understood by everybody.\tCe n'est pas facile d'être compris par tout le monde.\nIt is not easy to distinguish good from evil.\tCe n'est pas facile de discerner le bien du mal.\nIt is on this point that our opinions differ.\tC'est sur ce point que nos opinions diffèrent.\nIt is still unclear what caused the accident.\tLes causes de l'accident sont encore floues.\nIt is true that she teaches French at school.\tIl est exact qu'elle enseigne le français à l'école.\nIt is uncertain whether he will agree or not.\tCe n'est pas sûr qu'il soit d'accord.\nIt looks like Tom is really enjoying himself.\tOn dirait que Tom s'amuse vraiment.\nIt looks like the dog wants something to eat.\tIl semble que le chien veuille manger quelque chose.\nIt makes no difference whether you go or not.\tQue tu partes ou pas est indifférent.\nIt must be really creepy to work in a morgue.\tÇa doit vraiment être sinistre de travailler dans une morgue.\nIt takes time to develop political awareness.\tDévelopper une conscience politique prend du temps.\nIt took me three hours to finish my homework.\tÇa m'a pris trois heures pour finir mes devoirs.\nIt was Mary that bought this skirt yesterday.\tC'est Mary qui a acheté cette jupe hier.\nIt was not until yesterday that I noticed it.\tCe n'est que depuis hier que je m'en suis rendu compte.\nIt was not until yesterday that I noticed it.\tJe m'en suis rendu compte pas plus tard qu'hier.\nIt's a miracle that you were able to survive.\tC'est un miracle que tu aies pu survivre.\nIt's a miracle that you were able to survive.\tC'est un miracle que vous ayez pu survivre.\nIt's a nice place, but I wouldn't live there.\tC'est un chouette endroit mais je ne voudrais pas y vivre.\nIt's a pity that he can't get married to her.\tIl est dommage qu'il ne puisse l'épouser.\nIt's a problem we do not have any answer for.\tC'est un problème pour lequel nous n'avons pas de réponse.\nIt's been a pleasure doing business with you.\tCe fut un plaisir de faire des affaires avec vous.\nIt's been my dream since I was a little girl.\tÇa a été mon rêve depuis que je suis petite fille.\nIt's cheaper if you order these by the dozen.\tC'est meilleur marché si tu les commandes par douze.\nIt's cheaper if you order these by the dozen.\tC'est meilleur marché si tu les commandes à la douzaine.\nIt's cheaper if you order these by the dozen.\tC'est meilleur marché si vous les commandez par douze.\nIt's cheaper if you order these by the dozen.\tC'est meilleur marché si vous les commandez à la douzaine.\nIt's cheaper if you order these by the dozen.\tC'est moins cher si tu les commandes à la douzaine.\nIt's cheaper if you order these by the dozen.\tC'est moins cher si vous les commandez à la douzaine.\nIt's cheaper if you order these by the dozen.\tC'est moins cher si vous les commandez par douze.\nIt's cheaper if you order these by the dozen.\tC'est moins cher si tu les commandes par douze.\nIt's going to be difficult for us to do that.\tÇa va nous être difficile de le faire.\nIt's good for us to eat vegetables every day.\tIl est bon pour nous de manger des légumes tous les jours.\nIt's high time you left for school, isn't it?\tIl est grand temps que tu partes à l'école, pas vrai ?\nIt's not what you wear, it's how you wear it.\tLe problème, ce n'est pas ce que tu portes, mais comment tu le portes.\nIt's so noisy here I can't hear myself think.\tC'est si bruyant ici que je n'arrive pas à m'entendre penser.\nIt's the most beautiful thing I've ever seen.\tC'est la plus belle chose que j'ai jamais vue.\nJust a moment. I haven't made up my mind yet.\tJuste un instant. Je ne me suis pas encore décidé.\nJust a moment. I haven't made up my mind yet.\tJuste un instant. Je ne me suis pas encore décidée.\nJust then I heard footsteps in the stairwell.\tJuste à ce moment-là, j'entendis des pas dans la cage d'escalier.\nJust then I heard footsteps in the stairwell.\tJuste à ce moment-là, j'ai entendu des pas dans la cage d'escalier.\nKeep an eye on the boys. They're mischievous.\tGarde un œil sur les garçons ; ils sont espiègles.\nKeep an eye on the boys. They're mischievous.\tGarde un œil sur les garçons : ce sont des petits galopins.\nKeep an eye on the child for me for a moment.\tSurveille l'enfant pour moi un moment.\nKeep me apprised of any further developments.\tTenez-moi au courant de tout nouveau développement.\nKnowing is one thing, teaching quite another.\tSavoir est une chose, enseigner en est complètement une autre.\nLet me give you a lift as far as the station.\tLaisse-moi t'emmener jusqu'à la station.\nLet me give you a lift as far as the station.\tLaissez-moi vous accompagner en voiture jusqu'à la gare.\nLet me give you a lift as far as the station.\tLaisse-moi t'accompagner en voiture jusqu'à la gare.\nLet me see your health insurance certificate.\tFaites-moi voir votre carte d'assurance sociale.\nLet's do it at our own pace without hurrying.\tFaisons-le à notre rythme, sans nous précipiter.\nLet's get the work over with so we can relax.\tFinissons-en avec ce travail afin de pouvoir nous détendre.\nLet's hit the town tonight and have some fun.\tAllons en ville ce soir et faisons la fête.\nLet's share this money between the two of us.\tPartageons cet argent entre nous deux.\nLife doesn't always go the way we want it to.\tLa vie ne se déroule pas toujours de la manière que nous voulons.\nLightning lit up the room every now and then.\tLes éclairs illuminaient la pièce par intermittences.\nLincoln is admired because of his leadership.\tLincoln est admiré pour son leadership.\nLiving in a cluttered home is very stressful.\tVivre dans une maison encombrée est très stressant.\nMadison made an emotional speech in Congress.\tMadison a fait un discours émouvant au Congrès.\nMary kept on working in spite of her illness.\tMary a continué à travailler malgré sa maladie.\nMaybe Tom should pay more attention in class.\tTom devrait peut-être faire plus attention en classe.\nMaybe Tom should've stayed with the children.\tPeut-être que Tom aurait dû rester avec les enfants.\nMaybe Tom was the one who stole your bicycle.\tPeut-être que Tom était celui qui a volé votre vélo.\nMaybe you should have a little talk with Tom.\tTu devrais peut-être avoir une petite discussion avec Tom.\nMaybe you should have a little talk with Tom.\tVous devriez peut-être avoir une petite discussion avec Tom.\nMost Americans are descended from immigrants.\tLa plupart des Américains sont des descendants d'immigrants.\nMother Teresa was born in Yugoslavia in 1910.\tMère Teresa est née en Yougoslavie en 1910.\nMountains look better viewed from a distance.\tÀ distance, les montagnes ont l'air plus belles.\nMt. Everest is the highest peak in the world.\tLe Mont Everest est le plus haut du monde.\nMusicians are usually sensitive to criticism.\tLes musiciens sont généralement sensibles à la critique.\nMy brother fell off a tree and broke his leg.\tMon frère tomba de l'arbre et se cassa une jambe.\nMy brother seems to enjoy himself at college.\tMon frère a l'air de s'amuser à l'université.\nMy father always speaks in a very loud voice.\tMon père parle toujours très fort.\nMy father complained about the traffic noise.\tMon père se plaignait du bruit de la circulation.\nMy father is arriving at the station at five.\tMon père arrive à la gare à 5 heures.\nMy friends don't pay attention to me anymore.\tMes amis ne me prêtent plus attention.\nMy friends don't pay attention to me anymore.\tMes amies ne me prêtent plus attention.\nMy friends gave us a whirlwind tour of Paris.\tMes amis nous ont fait faire un tour éclair de Paris.\nMy friends scolded me for my stupid behavior.\tMes amis m'ont réprimandé pour mon comportement stupide.\nMy friends stood by me during the court case.\tMes amis se tenaient à mes cotés lors du processus.\nMy mother bought two bottles of orange juice.\tMa mère a acheté deux bouteilles de jus d’orange.\nMy mother doesn't know how to ride a bicycle.\tMa mère ne sait pas faire de vélo.\nMy mother faints every time she sees a mouse.\tMa mère tombe dans les pommes à chaque fois qu'elle voit une souris !\nMy mother gets up the earliest every morning.\tMa mère est celle qui se lève le plus tôt tous les matins.\nMy mother told me I needed to eat less candy.\tMa mère m'a dit que je devais manger moins de sucre.\nMy new assistant is eager to learn the ropes.\tMon nouvel assistant est impatient d'apprendre le métier.\nMy uncle comes back from America next Monday.\tMon oncle revient d'Amérique lundi prochain.\nMy wife used to stay home, but she works now.\tAvant ma femme restait à la maison, mais maintenant elle travaille.\nNeedless to say, theft was a rare occurrence.\tIl va sans dire que les vols étaient quelque chose d'exceptionnel.\nNew roads were constructed one after another.\tDe nouvelles routes furent construites l'une après l'autre.\nNext thing you know, you'll be in the papers.\tAvant même que tu ne le saches, tu seras dans les journaux.\nNo less than 100 people attended the meeting.\tPas moins de 100 personnes ont participé à la réunion.\nNo matter what game he plays, he always wins.\tQu'importe le jeu auquel il joue, il gagne toujours.\nNo matter what happens, I won't be surprised.\tQuoi qu'il advienne, je ne serai pas surpris.\nNo matter what happens, I'll keep my promise.\tQuoiqu'il arrive, je tiendrai ma promesse.\nNobody can believe in you more than yourself.\tPersonne ne peut croire en toi plus que toi-même.\nNobody could remember the sequence of events.\tPersonne ne pouvait se rappeler de la succession des évènements.\nNobody knows what goes on behind those doors.\tPersonne ne sait ce qu'il se passe derrière ces portes.\nNobody told me it was going to get this cold.\tPersonne ne m'a dit qu'il allait faire si froid.\nNone of the teachers could solve the problem.\tAucun des professeurs n'a pu résoudre le problème.\nNot knowing what to do, I asked him for help.\tNe sachant que faire, je lui demandai de l'aide.\nNot knowing what to do, he asked me for help.\tNe sachant pas quoi faire, il m'a appelé à l'aide.\nNuclear weapons are a threat to all humanity.\tLes armes nucléaires sont une menace pour toute l'humanité.\nOn Sunday we were on the beach flying a kite.\tDimanche nous étions sur la plage à faire du cerf-volant.\nOnce she starts talking, she is hard to stop.\tUne fois qu'elle commence à parler, il est dur de l'arrêter.\nOne good friend is better than ten relatives.\tUn bon ami est plus précieux que dix parents.\nOur army attacked the enemy during the night.\tNotre armée attaqua l'ennemi à la nuit.\nOur army attacked the enemy during the night.\tNotre armée a attaqué l'ennemi pendant la nuit.\nOur cities create serious pollution problems.\tNos villes créent de sérieux problèmes de pollution.\nOur company supports several cultural events.\tNotre entreprise soutient différents événements culturels.\nOur eyes take time to adjust to the darkness.\tNos yeux prennent du temps pour s'adapter au noir.\nOur music teacher advised me to visit Vienna.\tNotre professeur de musique me conseilla de visiter Vienne.\nPeople used to write books using typewriters.\tLes gens avaient l'habitude d'écrire des livres en utilisant des machines à écrire.\nPeople who will lie for you, will lie to you.\tLes gens qui mentiront pour vous, vous mentiront.\nPerhaps we will see each other again tonight.\tPeut-être nous verrons-nous de nouveau ce soir.\nPilots communicate with the airport by radio.\tLes pilotes communiquent par radio avec l'aéroport.\nPlease book me a room in a first-class hotel.\tS'il vous plait, réservez-moi une chambre dans un hôtel de première classe.\nPlease don't smoke cigarettes no matter what.\tMerci de ne pas fumer de cigarettes, quoi qu'il en soit.\nPlease fill out the Customs Declaration Form.\tRemplissez s'il vous plait le formulaire de déclaration à la douane.\nPlease forgive me for forgetting to call you.\tPardonne-moi d'avoir oublié de te téléphoner.\nPlease forgive me for forgetting to call you.\tPardonnez-moi d'avoir oublié de vous téléphoner.\nPlease get all of your junk out of this room.\tJe te prie de virer tout ton bazar de cette pièce.\nPlease get all of your junk out of this room.\tJe vous prie de virer tout votre bazar de cette pièce.\nPlease keep your cynical remarks to yourself.\tJe te prie de garder tes remarques cyniques pour toi-même.\nPlease let me know if you have any questions.\tVeuillez me faire savoir si vous avez quelques questions que ce soit.\nPlease let me know if you have any questions.\tFais-moi savoir, je te prie, si tu as quelques questions que ce soit.\nPlease let me know if you have any questions.\tVeuillez me faire savoir si vous avez la moindre question.\nPlease let me know if you have any questions.\tFais-moi savoir, je te prie, si tu as la moindre question.\nPlease limit your presentation to 30 minutes.\tVeuillez limiter votre présentation à trente minutes.\nPlease note the change in the meeting agenda.\tVeuillez prendre note du changement dans l'ordre du jour de la réunion.\nPlease put some candles on the birthday cake.\tMets quelques bougies sur le gâteau d'anniversaire, s'il te plait.\nPlease put some candles on the birthday cake.\tMettez quelques bougies sur le gâteau d'anniversaire, s'il vous plait.\nPlease remind me to mail the report tomorrow.\tRappelle-moi de poster le rapport demain s'il te plait.\nPlease remind me to mail the report tomorrow.\tRappelle-moi d'envoyer le rapport demain s'il te plait.\nPlease see to it that the dog doesn't go out.\tJe te prie de faire en sorte que le chien ne sorte pas.\nPlease see to it that the dog doesn't go out.\tJe te prie de faire en sorte que le chien n'aille pas dehors.\nPlease see to it that the dog doesn't go out.\tJe vous prie de faire en sorte que le chien ne sorte pas.\nPlease see to it that the dog doesn't go out.\tJe vous prie de faire en sorte que le chien n'aille pas dehors.\nPlease translate this sentence into Japanese.\tVeuillez traduire cette phrase en japonais.\nPlease translate this sentence into Japanese.\tTraduis cette phrase en japonais, s'il te plaît.\nRabbits are related to beavers and squirrels.\tLes lapins sont de la même famille que les castors et les écureuils.\nRain is the water that falls from the clouds.\tLa pluie, c'est de l'eau qui tombe des nuages.\nRefugees poured in from all over the country.\tDes réfugiés ont afflué en provenance de tout le pays.\nRegardless what you say, I don't believe you.\tQuoi que vous disiez, je ne vous crois pas.\nSchool has closed for the Christmas holidays.\tL'école est fermée pour les vacances de Noël.\nSee what happens when you give people advice?\tVois-tu ce qui arrive lorsque tu donnes des conseils aux gens ?\nSee what happens when you give people advice?\tVoyez-vous ce qui arrive lorsque vous donnez des conseils aux gens ?\nSee what happens when you give people advice?\tVois-tu ce qui arrive lorsqu'on donne des conseils aux gens ?\nSee what happens when you give people advice?\tVoyez-vous ce qui arrive lorsqu'on donne des conseils aux gens ?\nSeven is sometimes considered a lucky number.\tLe sept est parfois considéré comme un chiffre porte-bonheur.\nSeveral houses were washed away by the flood.\tDe plusieurs maisons furent emportées par la crue.\nShe advised him to stop taking that medicine.\tElle lui a conseillé d'arrêter de prendre ce médicament.\nShe asked him if he knew my telephone number.\tElle lui a demandé s'il connaissait mon numéro de téléphone.\nShe burst into tears when she heard the news.\tElle fondit en larmes quand elle entendit les nouvelles.\nShe did not visit me on Sunday but on Monday.\tElle ne m'a pas rendu visite dimanche, mais lundi.\nShe didn't mention the reason for being late.\tElle ne précisa pas la raison de son retard.\nShe doesn't hate him. In fact, she loves him.\tElle ne le déteste pas. En fait, elle l'aime.\nShe explained to him how to solve the puzzle.\tElle lui expliqua comment résoudre l'énigme.\nShe explained to him how to solve the puzzle.\tElle lui a expliqué comment résoudre l'énigme.\nShe fainted, but came to after a few minutes.\tElle s'évanouit mais reprit ses sens après quelques minutes.\nShe fainted, but came to after a few minutes.\tElle s'est évanouie mais a repris ses sens après quelques minutes.\nShe gave him a few pointers on pronunciation.\tElle lui donna quelques indications sur la prononciation.\nShe gave him a few pointers on pronunciation.\tElle lui donna quelques tuyaux sur la prononciation.\nShe greeted him cheerfully as she always did.\tElle le salua gaiement, comme à son habitude.\nShe had a great attachment to that old house.\tElle était très attachée a cette vieille maison.\nShe had lived in Hiroshima until she was ten.\tElle a vécu à Hiroshima jusqu'à ses dix ans.\nShe has a 10 percent interest in the company.\tElle détient dix pour cent des parts de l'entreprise.\nShe has a bad habit of chewing on her pencil.\tElle a la mauvaise habitude de mâcher son crayon.\nShe has known him since they were very young.\tElle le connaît depuis leur prime enfance.\nShe heard him cry in the middle of the night.\tElle l'entendit pleurer au milieu de la nuit.\nShe is always finding fault with her husband.\tElle trouve toujours des défauts à son mari.\nShe is going to wash the bike this afternoon.\tElle lavera le vélo cet après-midi.\nShe is good at making up interesting stories.\tElle est forte pour inventer des histoires intéressantes.\nShe is more of an acquaintance than a friend.\tC'est plus une connaissance qu'une amie.\nShe lives near the beach, but she can't swim.\tElle vit à côté de la plage mais elle ne sait pas nager.\nShe lives near the ocean, but she can't swim.\tElle vit près de l'océan mais ne sait pas nager.\nShe looked at him and knew that he was angry.\tElle le regarda et sut qu'il était en colère.\nShe picked out a pink shirt for me to try on.\tElle choisit une chemise rose que je dus essayer.\nShe said that she had to be back before dawn.\tElle a dit qu'elle devait être de retour avant l'aube.\nShe seems to be involved in that murder case.\tElle semble être impliquée dans cette affaire de meurtre.\nShe showed her courage in the face of danger.\tElle montra son courage face au danger.\nShe slowly disappeared into the foggy forest.\tElle disparut lentement dans la forêt brumeuse.\nShe spends way too much time surfing the web.\tElle passe carrément trop de temps à naviguer sur le Net.\nShe spends way too much time surfing the web.\tElle passe carrément trop de temps à naviguer sur la toile.\nShe spends way too much time surfing the web.\tElle passe carrément trop de temps à surfer sur le web.\nShe told her children to put away their toys.\tElle dit à ses enfants de ranger leurs jouets.\nShe tried to comfort him, but he kept crying.\tElle essaya de le réconforter mais il continua à pleurer.\nShe tried to comfort him, but he kept crying.\tElle a essayé de le réconforter mais il a continué à pleurer.\nShe was playing with her sister at that time.\tElle jouait alors avec sa sœur.\nShe was quite nervous about her first flight.\tElle était très inquiète pour son premier vol.\nShe was ready to give him back all his money.\tElle était prête à lui rendre tout son argent.\nShe was the last to cross the finishing line.\tElle fut la dernière à franchir la ligne d'arrivée.\nShe was the last to cross the finishing line.\tElle a été la dernière à franchir la ligne d'arrivée.\nShe went to the train station to see him off.\tElle se rendit à la gare pour lui faire ses adieux.\nShe went to the train station to see him off.\tElle s'est rendue à la gare pour lui faire ses adieux.\nShe'll tell him about it when she comes back.\tElle le lui dira lorsqu'elle reviendra.\nShe's been feeling a little on edge recently.\tElle était un peu à cran ces derniers temps.\nShe, of all people, wouldn't do such a thing.\tElle, d'entre tous, ne ferait pas une telle chose.\nSince I had a cold, I was absent from school.\tComme j'étais affligé d'un rhume, j'ai été absent de l'école.\nSince I had a cold, I was absent from school.\tComme je me collais un rhume, j'ai été absent de l'école.\nSince I had a cold, I was absent from school.\tComme je me tapais un rhume, j'ai été absente de l'école.\nSince my mother was sick, I looked after her.\tComme ma mère était malade, j'ai pris soin d'elle.\nSince when are you two on a first name basis?\tDepuis quand vous appelez-vous tous deux par vos prénoms ?\nSocial networking sites are all the rage now.\tLes réseaux sociaux ont le vent en poupe, à l'heure actuelle.\nSome abstract art is difficult to understand.\tUne part de l'art abstrait est difficile à comprendre.\nSome animals can sense the coming of a storm.\tCertains animaux peuvent sentir l'arrivée d'un orage.\nSome diseases are caused by a defective gene.\tCertaines maladies sont causées par un gène défectueux.\nSome of them are healthy, but others are not.\tCertains d'entre eux sont en bonne santé mais pas les autres.\nSomething is wrong with the engine of my car.\tQuelque chose est détraqué dans le moteur de ma voiture.\nSometimes water becomes a precious commodity.\tParfois l'eau devient une denrée précieuse.\nStrictly speaking, his answer is not correct.\tStricto sensu, sa réponse n'est pas correcte.\nStrong winds stripped the tree of its leaves.\tDes vents forts dépouillèrent l'arbre de ses feuilles.\nSwimming is good exercise for the whole body.\tLa nage est un bon exercice pour l'ensemble du corps.\nTake off your hat when you enter a classroom.\tOn ôte son chapeau quand on entre dans une salle de classe.\nTake your coat off and make yourself at home.\tÔte ton manteau et fais comme chez toi.\nTake your coat off and make yourself at home.\tÔtez votre manteau et faites comme chez vous.\nTake your umbrella with you in case it rains.\tPrends ton parapluie avec toi au cas où il pleuvrait.\nTake your umbrella with you in case it rains.\tPrenez un parapluie avec vous au cas où il pleut.\nTalking to him always puts me in a good mood.\tLui parler me met toujours de bonne humeur.\nTelephone booths are very scarce around here.\tLes cabines téléphoniques sont très rares, dans les environs.\nThank you for helping me keep out of trouble.\tMerci de m'aider à me tenir en dehors des ennuis.\nThat company puts out a magazine, doesn't it?\tCette société publie un magazine, n'est-ce pas ?\nThat doesn't seem quite so important anymore.\tÇa ne semble plus tout à fait aussi important.\nThat experience left a bad taste in my mouth.\tCette expérience m'a laissé un goût amer.\nThat which is easily acquired is easily lost.\tCe qui est facilement gagné est facilement perdu.\nThat which is easily acquired is easily lost.\tAussitôt gagné, aussitôt dépensé.\nThat which is easily acquired is easily lost.\tCe qui vient de la flûte, s'en retourne au tambour.\nThat writer is well known all over the world.\tC'est un écrivain réputé dans le monde entier.\nThat's a question we're all asking ourselves.\tTelle est la question que nous nous posons tous.\nThat's enough crying. Pull yourself together.\tAssez de larmes. Ressaisis-toi.\nThat's one reason why I'll never do it again.\tC'est une des raisons pour lesquelles je ne le referai plus jamais.\nThat's reversing the logical order of things.\tC'est renverser l'ordre logique des choses.\nThat's the most important thing in the world.\tC'est la chose la plus importante au monde.\nThat's why so many students are absent today.\tC'est pourquoi tant d'étudiants sont absents aujourd'hui.\nThe Colombian government demanded more money.\tLe gouvernement colombien a exigé plus d'argent.\nThe Medieval Era gave way to the Renaissance.\tL'époque médiévale fit place à la Renaissance.\nThe President refused to answer the question.\tLe président refusa de répondre à la question.\nThe Statue of Liberty is located in New York.\tLa statue de la Liberté est située à New York.\nThe U.S. economy is the largest in the world.\tL'économie des États-Unis d'Amérique est la plus grosse du monde.\nThe United States is a country of immigrants.\tLes États-Unis d'Amérique sont un pays d'immigrants.\nThe accountant would not concede the mistake.\tLe comptable ne voulait pas concéder l'erreur.\nThe accountant would not concede the mistake.\tLe comptable ne voulait pas admettre l'erreur.\nThe actor’s career lasted for thirty years.\tLa carrière de l'acteur a duré trente ans.\nThe administration makes important decisions.\tL'administration prend des décisions importantes.\nThe apple was cut in two by her with a knife.\tLa pomme fut coupée en deux par elle avec un couteau.\nThe apples that he sent to me were delicious.\tLes pommes qu'il m'a fait parvenir étaient délicieuses.\nThe audience clapped loudly after his speech.\tL'assistance applaudit bruyamment après son discours.\nThe bad weather's preventing me from leaving.\tLe mauvais temps m'empêche de partir.\nThe bar was so crowded you could hardly move.\tIl y avait tellement de monde dans le bar qu'on pouvait à peine bouger.\nThe big fire reduced the whole town to ashes.\tLe grand incendie réduisit toute la ville en cendres.\nThe brain needs a continuous supply of blood.\tLe cerveau a besoin d'un afflux continu de sang.\nThe bus is capable of carrying thirty people.\tLe bus peut transporter trente personnes.\nThe car broke down on the way to the airport.\tLa voiture est tombée en panne en allant à l'aéroport.\nThe castle is on the other side of the river.\tLe château se situe sur l'autre rive du fleuve.\nThe cat arched its back and stretched itself.\tLe chat arqua le dos et s'étira.\nThe cat arched its back and stretched itself.\tLe chat fit le gros dos et s'étira.\nThe cause of the accident is not known to us.\tLa cause de l'accident nous est inconnue.\nThe clouds floating in the sky are beautiful.\tLes nuages flottant dans le ciel sont magnifiques.\nThe cook prepares different dishes every day.\tLe cuisinier prépare des plats différents tous les jours.\nThe cost of living has increased drastically.\tLe coût de la vie a augmenté radicalement.\nThe country is abundant in natural resources.\tCe pays abonde en ressources naturelles.\nThe country's economy depends on agriculture.\tL'économie du pays dépend de l'agriculture.\nThe date of the party is still up in the air.\tLa date de la fête n'a pas encore été arrêtée.\nThe dictator came to power fifteen years ago.\tLe dictateur est arrivé au pouvoir il y a quinze ans.\nThe doctor was not sure what the trouble was.\tLe docteur n'était pas sûr de quoi il retournait.\nThe dog was covered in mud from head to foot.\tLe chien était couvert de boue de la tête aux pattes.\nThe enemy is becoming more and more powerful.\tL'ennemi devient de plus en plus puissant.\nThe family is the most basic unit of society.\tLa famille est l'unité la plus basique de la société.\nThe fire broke out after the staff went home.\tL'incendie se déclara après que les employés fussent rentrés chez eux.\nThe fireman chopped his way through the door.\tLe pompier se ménagea, à la hache, un chemin jusqu'à la porte.\nThe first casualty of every war is the truth.\tLa première victime de toute guerre est la vérité.\nThe flowers in the garden are very beautiful.\tLes fleurs dans le jardin sont très jolies.\nThe government has imposed a new tax on wine.\tLe gouvernement a instauré une nouvelle taxe sur le vin.\nThe government must make fundamental changes.\tLe gouvernement doit faire des changements fondamentaux.\nThe hero finally defeated the evil scientist.\tLe héros vainquit finalement le méchant scientifique.\nThe higher you go, the lower the temperature.\tPlus haut tu montes, plus la température chute.\nThe horse chafed at the bit put in its mouth.\tLe cheval s'impatientait avec son mors en bouche.\nThe house is going to feel empty without you.\tLa maison va sembler vide sans toi.\nThe house where I live belongs to my parents.\tLa maison dans laquelle j'habite appartient à mes parents.\nThe information you gave me is of little use.\tL'information que tu m'as donnée ne m'aide guère.\nThe information you gave me is of little use.\tL'information que vous m'avez fournie n'a guère d'utilité.\nThe lavishness of the party amazed everybody.\tL'opulence de la fête émerveilla tout le monde.\nThe majority of those men worked in the mine.\tLa plupart de ces hommes travaillaient à la mine.\nThe murder happened between 3 a.m. and 5 a.m.\tLe meurtre a eu lieu entre trois et cinq heures.\nThe museum has an exhibit of ancient weapons.\tLe musée présente une exposition d'armes anciennes.\nThe native people were forced off their land.\tLes autochtones furent déportés de leur terre.\nThe new house didn't live up to expectations.\tLa nouvelle maison n'était pas à la hauteur de mes attentes.\nThe number of college students is increasing.\tLe nombre d'universitaires est en augmentation.\nThe number of employees doubled in ten years.\tLe nombre d'employés a doublé en dix ans.\nThe old church by the lake is very beautiful.\tLa vieille église du lac est très belle.\nThe old man stopped suddenly and looked back.\tLe vieil homme s'arrêta brusquement et regarda derrière lui.\nThe older he grew, the more modest he became.\tPlus il vieillissait, plus il devenait modeste.\nThe plumber pumped the water out of the pipe.\tLe plombier pompa l'eau pour la faire sortir du tuyau.\nThe population of this village had decreased.\tLa population de ce village avait diminué.\nThe post office is just across from the bank.\tLa poste se trouve juste en face de la banque.\nThe president is a down-to-earth kind of man.\tLe président est plutôt quelqu'un de terre-à-terre.\nThe president's son leads the special forces.\tLe fils du président mène les forces spéciales.\nThe president's son leads the special forces.\tLe fils du président commande les forces spéciales.\nThe primary cause of his failure is laziness.\tLa principale cause de son échec est la fainéantise.\nThe resistance movement has gone underground.\tLe mouvement de résistance est entré dans la clandestinité.\nThe roads are slippery, so please be careful.\tLes routes sont glissantes, alors faites attention.\nThe robot was so lifelike that it was creepy.\tLe robot semblait tellement vivant que c'était terrifiant.\nThe royal jewels are kept under lock and key.\tLes joyaux de la couronne sont conservés sous bonne garde.\nThe royal wedding was a magnificent occasion.\tLe mariage royal fut un événement magnifique.\nThe service agent helped me solve my problem.\tL'agent de service m'a aidé à résoudre mon problème.\nThe shirt that I've just bought is very nice.\tLa chemise que je viens d'acheter est très belle.\nThe soldiers decimated the unruly population.\tLes soldats ont décimé la population rebelle.\nThe sooner we start, the sooner we'll finish.\tLe plus tôt nous commençons, le plus tôt nous finirons.\nThe storm prevented us from arriving on time.\tLa tempête nous a empêchés d'arriver à l'heure.\nThe swimming pool is closed due to the storm.\tLa piscine municipale est fermée en raison de la tempête.\nThe teacher gave way to the students' demand.\tL'enseignant céda à la revendication des étudiants.\nThe teacher told him not to forget his books.\tLe professeur lui a dit de ne pas oublier ses livres.\nThe test of the new engine takes place today.\tLe test du nouveau moteur a lieu aujourd'hui.\nThe tetanus shot hurt more than the dog bite.\tL'injection du tétanos fit plus mal que la morsure du chien.\nThe thief is certain to be caught eventually.\tLe voleur est certain de se faire prendre, au bout du compte.\nThe town has changed a great deal since then.\tLa ville a beaucoup changé depuis lors.\nThe town has changed a great deal since then.\tLa ville a depuis lors beaucoup changé.\nThe truth is that he was not fit for the job.\tLa vérité était qu'il n'était pas adapté à ce travail.\nThe unclaimed items were sold off at auction.\tLes objets non réclamés furent vendus aux enchères.\nThe university bears the name of its founder.\tL'université porte le nom de son fondateur.\nThe vast majority of children love ice cream.\tLa très grande majorité des enfants aime la glace.\nThe volcanic eruption threatened the village.\tL'éruption volcanique menaça le village.\nThe washing machine is a wonderful invention.\tLa machine à laver est une invention merveilleuse.\nThe weather outlook for tomorrow is not good.\tLes prévisions météorologiques pour demain ne sont pas bonnes.\nThe weather will definitely be good tomorrow.\tC'est sûr que demain le temps sera beau.\nThe weather will delay the start of the race.\tLe temps va retarder le départ de la course.\nThe whale is the largest animal on the earth.\tLa baleine est le plus gros animal sur terre.\nThe whole family was out harvesting the corn.\tLa famille entière était dehors à récolter le maïs.\nThe worth of friendship is greater than gold.\tL'amitié vaut plus que de l'or.\nTheir habitat is threatened by deforestation.\tLeur habitat est menacé par la déforestation.\nTheir trip was postponed because of the rain.\tLeur voyage fut remis en raison de la pluie.\nThere are a lot of dustballs under the couch.\tIl y a beaucoup de moutons sous le canapé.\nThere are a lot of dustballs under the couch.\tIl y a beaucoup de nounouches sous le canapé.\nThere are a lot of places to see around here.\tIl y a beaucoup d'endroits à voir dans les alentours.\nThere are a lot of places to see in Hokkaido.\tIl y a beaucoup d'endroits à voir à Hokkaido.\nThere are many words that I don't understand.\tIl y a beaucoup de mots que je ne comprends pas.\nThere are many words that I don't understand.\tIl y a de nombreux mots que je ne comprends pas.\nThere are not enough chairs for us to sit on.\tIl n'y a pas assez de chaises pour que nous puissions nous asseoir.\nThere are not enough chairs for us to sit on.\tIl n'y a pas assez de chaises pour qu'on puisse s'asseoir.\nThere is a TV remote control under the couch.\tIl y a une télécommande sous le canapé.\nThere is a TV remote control under the couch.\tSous le canapé, il y a une télécommande.\nThere is a chance that he will pass the exam.\tIl est possible qu'il réussisse l'examen.\nThere is a friendly atmosphere in the office.\tIl règne une atmosphère amicale dans le bureau.\nThere is a small garden in front of my house.\tIl y a un petit jardin devant ma maison.\nThere is an urgent need for medical supplies.\tIl y a un besoin urgent de fournitures médicales.\nThere is enough time to finish this homework.\tIl y a suffisamment de temps pour terminer ce devoir.\nThere is insufficient light to take pictures.\tIl n'y a pas assez de lumière pour prendre des photos.\nThere is nothing like cold beer on a hot day.\tIl n'y a rien de tel qu'une bière fraîche un jour de canicule !\nThere is nothing more important than friends.\tIl n'y a rien de plus important que les amis.\nThere must be a logical explanation for this.\tIl doit y avoir une explication logique à ceci.\nThere was a cold wind blowing from the north.\tIl y avait un vent froid soufflant du nord.\nThere was an attempt on the president's life.\tIl y a eu un attentat contre le président.\nThere's something I want to discuss with you.\tIl y a quelque chose que je veux discuter avec toi.\nThere's something I want to discuss with you.\tIl y a quelque chose que je veux discuter avec vous.\nThere's something I want to discuss with you.\tIl y a quelque chose dont je veux m'entretenir avec toi.\nThere's something I want to discuss with you.\tIl y a quelque chose dont je veux m'entretenir avec vous.\nThese questions can be answered quite simply.\tOn peut répondre très simplement à ces questions.\nThese two are very different from each other.\tCes deux-ci sont très différents l'un de l'autre.\nThey arrived just in time for the last train.\tIls arrivèrent juste à temps pour le dernier train.\nThey arrived just in time for the last train.\tElles arrivèrent juste à temps pour le dernier train.\nThey decided to put an end to the discussion.\tIls ont décidé de mettre fin à la discussion.\nThey decided to put an end to the discussion.\tIls ont décidé de mettre un terme à la discussion.\nThey decided to settle in a suburb of London.\tIls décidèrent de s'installer dans une banlieue de Londres.\nThey don't understand me when I speak German.\tIls ne me comprennent pas lorsque je parle allemand.\nThey don't want us to see what they're doing.\tIls ne veulent pas que nous voyions ce qu'ils font.\nThey felt many emotions on their wedding day.\tLeur mariage a été un jour plein d'émotions pour eux.\nThey regarded him as the best doctor in town.\tIls le considéraient comme le meilleur médecin de la ville.\nThey regarded the man as a danger to society.\tIls considéraient cet homme comme un danger pour la société.\nThey say that he has been dead for two years.\tIls disent qu'il est mort depuis deux ans.\nThey went on an expedition to the North Pole.\tIls s'en furent en expédition pour le pôle Nord.\nThey're constructing a bridge over the river.\tIls construisent un pont au-dessus de la rivière.\nThey're eating dinner now in the dining room.\tIls déjeunent maintenant dans la salle-à-manger.\nThey're eating dinner now in the dining room.\tElles déjeunent maintenant dans la salle-à-manger.\nThey're eating dinner now in the dining room.\tIls dînent maintenant dans la salle-à-manger.\nThey're eating dinner now in the dining room.\tElles dînent maintenant dans la salle-à-manger.\nThings don't always turn out the way we plan.\tLes choses ne se passent pas toujours de la manière que nous avons prévue.\nThis English composition is far from perfect.\tCette composition d'anglais est loin d'être parfaite.\nThis flower is more beautiful than that rose.\tCette fleur est plus belle que cette rose.\nThis happened prior to receiving your letter.\tCeci est survenu avant la réception de ta lettre.\nThis happened prior to receiving your letter.\tCeci est survenu avant la réception de votre lettre.\nThis is a tropical storm. It'll be over soon.\tC'est une tempête tropicale. Elle sera bientôt passée.\nThis is exactly what I didn't want to happen.\tC'est exactement ce que je voulais éviter.\nThis is not the first time this has happened.\tCe n'est pas la première fois que ça se produit.\nThis is not the first time this has happened.\tCe n'est pas la première fois que ça arrive.\nThis is the best cake that I have ever eaten.\tC'est le meilleur gâteau que j'ai jamais mangé.\nThis is the best party I've been to all year.\tC’est la meilleure fête à laquelle je suis allé de toute l’année.\nThis is the best party I've been to all year.\tC’est la meilleure fête à laquelle je suis allée de toute l’année.\nThis is the third longest river in the world.\tC'est le troisième fleuve le plus long du monde.\nThis is the village where my father was born.\tC'est le village où mon père est né.\nThis is the village where my father was born.\tC'est le village dans lequel est né mon père.\nThis isn't an unappealing proposition, is it?\tCe n'est pas une proposition peu attrayante, n'est-ce pas ?\nThis painting is worth a great deal of money.\tCette peinture vaut son pesant d'or.\nThis place has a mysterious atmosphere to it.\tL'atmosphère de cet endroit est mystérieuse.\nThis railing is not as stable as it could be.\tCette rampe n'est pas aussi stable qu'elle le pourrait.\nThis school supplies students with textbooks.\tCette école fournit des manuels aux étudiants.\nThis school supplies students with textbooks.\tCette école fournit des manuels aux élèves.\nThis seems like a good place to pitch a tent.\tÇa semble être un bon endroit pour planter une tente.\nThis summer we had an unusual amount of rain.\tCet été nous avons eu un nombre inhabituel de précipitations.\nThis type of thing never used to happen here.\tCe genre de chose ne se passait jamais ici d'habitude.\nThis will never happen again, I swear to you.\tÇa ne se reproduira jamais, je te le jure.\nThis will never happen again, I swear to you.\tÇa ne se reproduira jamais, je vous le jure.\nThis work is simple enough for a child to do.\tCe travail est assez simple pour être accompli par un enfant.\nThis work is simple enough for a child to do.\tCe travail est assez simple pour être accompli par une enfant.\nThis year, Valentine's Day falls on a Sunday.\tCette année, la Saint-Valentin tombe un dimanche.\nThose who don't want to go, don't need to go.\tCeux qui ne veulent pas y aller n'ont pas besoin de le faire.\nThose who don't want to go, don't need to go.\tCeux qui ne veulent pas partir n'ont pas besoin de le faire.\nThose who violate the rules will be punished.\tCeux qui violent les lois seront punis.\nTickets for today's game sold like hot cakes.\tLes billets pour le match d'aujourd'hui se sont vendus comme des petits pains.\nTom always flies economy class to save money.\tTom prend toujours des avions en classe économique pour économiser de l'argent.\nTom and Mary cut classes and went to the zoo.\tTom et Mary ont séché les cours et sont allés au zoo.\nTom and Mary finally decided to get divorced.\tTom et Mary ont finalement décidé de divorcer.\nTom and Mary have just gotten back to Boston.\tTom et Marie viennent de rentrer à Boston.\nTom and Mary weren't particularly kind to me.\tTom et Marie n'ont pas été particulièrement gentils avec moi.\nTom asked Mary if she'd like a cup of coffee.\tTom a demandé à Mary si elle voulait un café.\nTom asked Mary who had given her the picture.\tTom a demandé à Mary qui lui a donné la photo.\nTom asked me if I would be home this evening.\tTom m'a demandé si je serais à la maison ce soir.\nTom asked me to bring my own eating utensils.\tTom m'a demandé d'apporter mes propres ustensiles alimentaires.\nTom can't say for sure when Mary will arrive.\tTom ne peut pas dire avec certitude quand Mary arrivera.\nTom can't stand the smell of cigarette smoke.\tTom ne supporte pas l'odeur de la fumée de cigarette.\nTom closes his eyes when he swims underwater.\tTom ferme les yeux quand il nage sous l'eau.\nTom complained that he had too much homework.\tTom s'est plaint qu'il avait trop de devoirs.\nTom could never make me laugh the way you do.\tTom ne pourrait jamais me faire rire comme tu le fais.\nTom could never make me laugh the way you do.\tTom ne pourrait jamais me faire rire de la manière dont vous le faites.\nTom did everything he could for his children.\tTom a fait tout ce qu'il pouvait pour ses enfants.\nTom didn't expect Mary to react like she did.\tTom ne s'attendait pas à ce que Marie réagisse comme elle le fit.\nTom didn't want Mary to see him in handcuffs.\tTom ne voulait pas que Marie le voie en menottes.\nTom didn't want to continue the conversation.\tTom ne voulait pas poursuivre la conversation.\nTom didn't want to think about the situation.\tTom ne voulait pas penser à la situation.\nTom doesn't have to go if he doesn't want to.\tTom n'est pas obligé d'y aller s'il ne veut pas.\nTom doesn't know when Mary will leave Boston.\tTom ne sait pas quand Marie partira de Boston.\nTom doesn't need to do that. Mary will do it.\tTom ne doit pas faire ça. Mary le fera.\nTom doesn't seem to have any self-confidence.\tTom ne semble pas avoir confiance en lui.\nTom doesn't seem to have any self-confidence.\tTom ne semble pas avoir la moindre confiance en lui.\nTom doesn't think anybody else wants to come.\tTom ne pense pas que quelqu'un d'autre voudra venir.\nTom doesn't want me around when Mary is here.\tTom ne veut pas de ma présence quand Marie est là.\nTom doesn't want to do anything to hurt Mary.\tTom ne veut rien faire qui puisse blesser Marie.\nTom goes to bed at the same time every night.\tTom se couche à la même heure tous les soirs.\nTom goes to bed at the same time every night.\tTom va au lit à la même heure toutes les nuits.\nTom has asked us to buy him something to eat.\tTom nous a demandé de lui acheter quelque chose à manger.\nTom has been in the hospital for three weeks.\tCela fait trois semaines que Tom est à l'hôpital.\nTom has lived in Boston for more than a year.\tTom a vécu à Boston pendant plus d'un an.\nTom hasn't seen Mary since they got divorced.\tTom n'a pas vu Mary depuis qu'ils ont divorcé.\nTom is doing everything he can to save money.\tTom fait tout ce qu'il peut pour économiser.\nTom is looking for someone who speaks French.\tTom est en quête de quelqu'un qui parle français.\nTom is out in the yard, playing with our dog.\tTom est dans la cour, en train de jouer avec notre chien.\nTom is the legal owner of this piece of land.\tTom est le propriétaire légal de ce terrain.\nTom knows that Mary doesn't love him anymore.\tTom sait que Marie ne l'aime plus.\nTom looked around, but Mary was already gone.\tTom regarda autour de lui, mais Marie était déjà partie.\nTom promised me that he wouldn't tell anyone.\tTom m'a promis qu'il ne le dirait à personne.\nTom said that he didn't want to be disturbed.\tTom a dit qu'il ne voulait pas être dérangé.\nTom said that he doesn't regret his decision.\tTom a dit qu'il ne regrettait pas sa décision.\nTom says he likes Boston better than Chicago.\tTom dit qu'il aime mieux Boston que Chicago.\nTom seems to be unwilling to lower the price.\tTom ne semble pas vouloir baisser le prix.\nTom speaks French better than his classmates.\tTom parle mieux français que ses camarades de classe.\nTom speaks five languages, including Russian.\tTom parle cinq langues, y compris le russe.\nTom speaks five languages, including Russian.\tTom parle cinq langues, dont le russe.\nTom told me that he wants to meet my parents.\tTom m'a dit qu'il veut rencontrer mes parents.\nTom tried to tell Mary what she needed to do.\tTom essaya de dire à Mary ce qu'elle avait besoin de faire.\nTom tried to tell Mary what she needed to do.\tTom a essayé de dire à Mary ce qu'elle avait besoin de faire.\nTom wanted Mary to bring him a cup of coffee.\tTom voulait que Marie lui apporte une tasse de café.\nTom wanted the job, but they didn't hire him.\tTom voulait le boulot, mais on ne l'a pas embauché.\nTom wanted to pull the trigger, but couldn't.\tTom voulait appuyer sur la gâchette, mais il n'y arrivait pas.\nTom wanted to spend some time in the country.\tTom voulait passer quelque temps à la campagne.\nTom wanted to spend some time in the country.\tTom voulait passer quelque temps dans le pays.\nTom wants a better percentage of the profits.\tTom veut un plus gros pourcentage du profit.\nTom was Mary's boyfriend before she met John.\tTom était le petit ami de Marie avant qu'elle ne rencontre John.\nTom was late for class, as is often the case.\tComme d'habitude, Tom est en retard pour l'école.\nTom was sitting near a very attractive woman.\tTom était assis près d'une femme très attirante.\nTom went into the kitchen to get some coffee.\tTom entra dans la cuisine pour prendre du café.\nTom will thank me for this one of these days.\tTom me remerciera pour ça un de ces jours.\nTom wished he could understand French better.\tTom aurait aimé pouvoir mieux comprendre le français.\nTom wishes for his son to inherit his estate.\tTom aimerait que son fils hérite de ses biens.\nTom's at the door. Please ask him to come in.\tTom est à la porte. S'il te plaît, dis-lui d'entrer.\nTom's budget contained a lot of guesstimates.\tLe budget de Tom contenait beaucoup d'estimations approximatives.\nTom's lunch includes a sandwich and an apple.\tLe déjeuner de Tom comprend un sandwich et une pomme.\nTomorrow night, I am going to Narita airport.\tDemain soir, je vais à l'aéroport de Narita.\nTomorrow, I'll take the books to the library.\tDemain, je prendrai les livres à la bibliothèque.\nTomorrow, I'll take the books to the library.\tDemain, j'amènerai les livres à la bibliothèque.\nTrying to do such a thing is a waste of time.\tEssayer de faire une telle chose est une perte de temps.\nTurn off the television. I can't concentrate.\tÉteins la télévision. Je n'arrive pas à me concentrer.\nTwo weeks have passed and I haven't seen you.\tDeux semaines sont passées et je ne t'ai pas vu.\nTwo weeks have passed and I haven't seen you.\tDeux semaines sont passées et je ne vous ai pas vu.\nTwo weeks have passed and I haven't seen you.\tDeux semaines sont passées et je ne t'ai pas vue.\nTwo weeks have passed and I haven't seen you.\tDeux semaines sont passées et je ne vous ai pas vue.\nTwo weeks have passed and I haven't seen you.\tDeux semaines sont passées et je ne vous ai pas vus.\nTwo weeks have passed and I haven't seen you.\tDeux semaines sont passées et je ne vous ai pas vues.\nTwo weeks have passed and I haven't seen you.\tDeux semaines ont passé et je ne t'ai pas vu.\nTwo weeks have passed and I haven't seen you.\tDeux semaines ont passé et je ne t'ai pas vue.\nTwo weeks have passed and I haven't seen you.\tDeux semaines ont passé et je ne vous ai pas vu.\nTwo weeks have passed and I haven't seen you.\tDeux semaines ont passé et je ne vous ai pas vue.\nTwo weeks have passed and I haven't seen you.\tDeux semaines ont passé et je ne vous ai pas vus.\nTwo weeks have passed and I haven't seen you.\tDeux semaines ont passé et je ne vous ai pas vues.\nVivaldi wrote a lot of music for the bassoon.\tVivaldi a écrit beaucoup de musique pour basson.\nWashing the car took longer than we expected.\tLaver la voiture prit plus de temps que nous l'escomptions.\nWe are expecting the publication of his book.\tNous attendons la publication de son ouvrage.\nWe are going to have a meeting here tomorrow.\tNous allons avoir une réunion ici demain.\nWe are going to his house. Want to come with?\tNous nous rendons à sa maison. Voulez-vous vous joindre ?\nWe are going to his house. Want to come with?\tNous nous rendons à sa maison. Veux-tu te joindre ?\nWe are prone to judge every one by ourselves.\tNous avons tendance à juger tout le monde par nous-même.\nWe are working hard to make up for lost time.\tNous travaillons dur pour rattraper le temps perdu.\nWe can't just act as if nothing has happened.\tNous ne pouvons pas simplement agir comme si rien ne s'était passé.\nWe can't just act as if nothing has happened.\tNous ne pouvons pas simplement agir comme si rien ne s'était produit.\nWe can't live without water for even one day.\tNous ne pouvons vivre sans eau, même pour un jour.\nWe can't live without water for even one day.\tNous n'arrivons pas à vivre sans eau, même pour un jour.\nWe could hear wolves howling in the distance.\tNous pouvions entendre des loups hurler au loin.\nWe couldn't go out because of the heavy rain.\tNous n'avons pas pu sortir à cause de l'averse.\nWe couldn't have done this without your help.\tNous n'aurions pas pu faire cela sans ton aide.\nWe couldn't have done this without your help.\tNous n'aurions pas pu faire cela sans votre aide.\nWe eat more processed food than natural food.\tNous mangeons davantage de nourriture industrielle que de naturelle.\nWe go mountain climbing almost every weekend.\tNous faisons de l'alpinisme presque chaque week-end.\nWe go to the movies together once in a while.\tNous allons ensemble au cinéma de temps en temps.\nWe had known him for five years when he died.\tNous le connaissions depuis cinq ans lorsqu'il est mort.\nWe had known him for five years when he died.\tNous le connaissions depuis cinq ans lorsqu'il est décédé.\nWe have had more snow than usual this winter.\tNous avons eu plus de neige que d'habitude cet hiver.\nWe have no hot water because the pipes broke.\tNous n'avons pas d'eau chaude car les tuyaux ont rompu.\nWe have no hot water because the pipes broke.\tNous ne disposons pas d'eau chaude car les tuyaux ont rompu.\nWe have the opportunity to make some changes.\tNous avons la possibilité de faire quelques changements.\nWe have to be willing to take the first step.\tNous devons avoir envie de faire le premier pas.\nWe have to put off the game till next Sunday.\tNous devons remettre la partie à dimanche prochain.\nWe have to put right what we have done wrong.\tIl nous faut redresser nos torts.\nWe lost our electricity because of the storm.\tNous avons été dépourvus d'électricité en raison de la tempête.\nWe lost our electricity because of the storm.\tNous avons été privés d’électricité à cause de la tempête.\nWe must continue to study as long as we live.\tNous devons continuer d'étudier aussi longtemps que nous vivrons.\nWe must look after her children this evening.\tNous devons garder ses enfants, ce soir.\nWe need to invest in clean, renewable energy.\tNous devons investir dans une énergie propre et renouvelable.\nWe probably won't have much snow this winter.\tNous n'aurons probablement pas beaucoup de neige cet hiver.\nWe really should buy a new car, shouldn't we?\tNous devrions vraiment acheter une nouvelle voiture, non ?\nWe reduced our spending during the recession.\tNous avons réduit nos dépenses pendant la récession.\nWe regard him as the best player on the team.\tNous le considérons comme le meilleur joueur de l'équipe.\nWe saw the lady carried away to the hospital.\tNous avons vu la femme emmenée à l'hôpital.\nWe sent you an email with an activation link.\tNous vous avons fait parvenir un courriel contenant un lien d'activation.\nWe should determine what is to be done first.\tNous devrions décider de ce qu'il faut faire en premier.\nWe study the past for the sake of the future.\tNous étudions le passé pour le bien du futur.\nWe were astonished to hear what had happened.\tNous fûmes stupéfaits d'entendre ce qui s'était passé.\nWe weren't able to determine her whereabouts.\tNous fûmes dans l'incapacité de déterminer sa localisation.\nWe will be able to raise cows and sheep, too.\tNous serons également en mesure d'élever des vaches et des moutons.\nWe will have some visitors one of these days.\tNous aurons quelques visiteurs un de ces jours.\nWe wish him the best in his future endeavors.\tNous lui souhaitons le meilleur dans ses futures entreprises.\nWe're confident we'll be able to handle this.\tNous sommes confiants que nous serons en mesure de gérer cela.\nWe're facing a much bigger problem than that.\tNous sommes confrontés à un problème bien plus grave.\nWe're keeping all options open at this point.\tNous gardons toutes les options ouvertes à ce stade.\nWe're planning to spend our honeymoon abroad.\tNous prévoyons de passer notre lune de miel à l'étranger.\nWe've achieved a lot in the past three years.\tNous avons accompli beaucoup de choses au cours des trois dernières années.\nWeather permitting, we will leave in an hour.\tSi le temps le permet, nous partirons dans une heure.\nWhat are you going to do for summer vacation?\tQu'allez-vous faire pendant vos vacances d'été ?\nWhat bugged me most was having been deceived.\tCe qui me tracassait le plus était d'avoir été abusé.\nWhat do I have to do now that I'm registered?\tQue dois-je faire, maintenant que je suis enregistré ?\nWhat do you enjoy most about learning French?\tQu'est-ce qui vous plaît le plus dans l'apprentissage du français ?\nWhat do you say to taking a walk in the park?\tQue penserais-tu d'une balade au parc ?\nWhat do you say to taking a walk in the park?\tQu’est ce que tu dirais d’aller faire un tour au parc ?\nWhat do you say to taking a walk in the park?\tQue diriez-vous d'une balade dans le parc ?\nWhat do you think caused him to lose his job?\tQu'est-ce qui, selon vous, a causé la perte de son emploi ?\nWhat do you think you'd like to do next time?\tQue pensez-vous que vous aimeriez faire la prochaine fois ?\nWhat do you think you'd like to do next time?\tQue penses-tu que tu aimerais faire la prochaine fois ?\nWhat else do you think Tom is planning to do?\tQue penses-tu que Tom a l'intention de faire d'autre ?\nWhat is the difference between this and that?\tQuelle est la différence entre ceci et cela ?\nWhat kind of fuel do you use in this machine?\tQuelle sorte de carburant employez-vous pour cette machine ?\nWhat kind of information are you looking for?\tDe quelles informations vous enquérez-vous ?\nWhat kinds of goods do you sell in your shop?\tQuelles sortes de marchandises vendez-vous dans votre magasin ?\nWhat kinds of goods do you sell in your shop?\tQuelle sorte de marchandises vends-tu dans ton échoppe ?\nWhat seems simple to you seems complex to me.\tCe qui vous paraît simple m'apparaît compliqué.\nWhat seems simple to you seems complex to me.\tCe qui t'apparaît simple me paraît compliqué.\nWhat should we do if he happens to come late?\tQue devrions-nous faire s'il s'avère qu'il vient tard ?\nWhat time did you close the store last night?\tÀ quelle heure as-tu fermé le magasin hier soir ?\nWhat time did you close the store last night?\tÀ quelle heure as-tu fermé la boutique hier soir ?\nWhat time did you close the store last night?\tÀ quelle heure as-tu fermé le magasin la nuit dernière ?\nWhat time did you close the store last night?\tÀ quelle heure as-tu fermé la boutique la nuit dernière ?\nWhat time did you close the store last night?\tÀ quelle heure avez-vous fermé le magasin la nuit dernière ?\nWhat time did you close the store last night?\tÀ quelle heure avez-vous fermé la boutique la nuit dernière ?\nWhat time did you close the store last night?\tÀ quelle heure avez-vous fermé le magasin hier soir ?\nWhat time did you close the store last night?\tÀ quelle heure avez-vous fermé la boutique hier soir ?\nWhat time does the train for New York depart?\tÀ quelle heure le train pour New York part-il ?\nWhat time does the train for New York depart?\tÀ quelle heure part le train pour New York ?\nWhat will you be doing at this time tomorrow?\tQue seras-tu en train de faire à cette heure, demain ?\nWhat would I do if something happened to you?\tQue ferais-je si quelque chose t'arrivait ?\nWhat would I do if something happened to you?\tQue ferais-je si quelque chose vous arrivait ?\nWhat's the strangest thing you've ever eaten?\tQuelle est la chose la plus étrange que vous ayez jamais mangée ?\nWhat's the strangest thing you've ever eaten?\tQuelle est la chose la plus étrange que tu aies jamais mangée ?\nWhen I try to walk, I get an awful pain here.\tQuand j'essaie de marcher, j'ai une douleur affreuse ici.\nWhen the curtain went up, the stage was dark.\tLorsque le rideau fut levé, la scène était sombre.\nWhen they finally found him, it was too late.\tQuand ils le trouvèrent enfin, il était trop tard.\nWhen was the last time you got your hair cut?\tQuand vous êtes-vous fait couper les cheveux pour la dernière fois ?\nWhere can I go to buy art books and catalogs?\tOù puis-je me rendre pour acquérir des livres et des catalogues d'art ?\nWhite smoke billowed from the Sistine Chapel.\tDe la fumée blanche s'est élevée de la Chapelle Sixtine.\nWho is sitting at the other end of the table?\tQui est assis là à l'autre bout de la table ?\nWho's taking responsibility for this problem?\tQui assume la responsabilité de ce problème ?\nWho's that cute guy I saw you with yesterday?\tQui est ce mignon garçon avec lequel je vous ai vu hier ?\nWho's that cute guy I saw you with yesterday?\tQui est ce mignon garçon avec lequel je vous ai vue hier ?\nWho's that cute guy I saw you with yesterday?\tQui est ce mignon garçon avec lequel je vous ai vus hier ?\nWho's that cute guy I saw you with yesterday?\tQui est ce mignon garçon avec lequel je vous ai vues hier ?\nWho's that cute guy I saw you with yesterday?\tQui est ce mignon garçon avec lequel je t'ai vu hier ?\nWho's that cute guy I saw you with yesterday?\tQui est ce mignon garçon avec lequel je t'ai vue hier ?\nWhy did you buy such an expensive dictionary?\tPourquoi as-tu acheté un dictionnaire aussi cher ?\nWhy don't you just admit that you were wrong?\tPourquoi n'admettez-vous pas que vous aviez tort ?\nWhy don't you stick around for a few minutes?\tPourquoi ne restez-vous pas quelques minutes ?\nWhy don't you stick around for a few minutes?\tPourquoi ne restes-tu pas quelques minutes ?\nWhy don't you tell me something I don't know?\tPourquoi ne me dis-tu pas quelque chose que j'ignore ?\nWhy don't you tell me something I don't know?\tPourquoi ne me dites-vous pas quelque chose que j'ignore ?\nWhy don't you tell me what this is all about?\tPourquoi ne me dites-vous pas de quoi tout ceci retourne ?\nWhy don't you tell me what this is all about?\tPourquoi ne me dis-tu pas de quoi tout ceci retourne ?\nWhy don't you tell me what this is all about?\tPourquoi ne me dites-vous pas de quoi il s'agit ?\nWhy don't you tell me what this is all about?\tPourquoi ne me dis-tu pas de quoi il s'agit ?\nWhy on earth did you take him to the station?\tPourquoi, mon Dieu, l'as-tu amené à la gare ?\nWhy on earth did you take him to the station?\tPourquoi, Diable, l'as-tu amené à la gare ?\nWhy would you want to do something like that?\tPourquoi voudrais-tu faire une chose pareille ?\nWill I have the pleasure of seeing you again?\tAurai-je le plaisir de te revoir ?\nWill you put the dishes away in the cupboard?\tPeux-tu ranger la vaisselle dans l'armoire ?\nWill you tell me how long you have loved him?\tMe direz-vous combien de temps l'avez-vous aimé ?\nWith her heart pounding, she opened the door.\tLe cœur battant, elle ouvrit la porte.\nWithout Tom's advice, Mary would have failed.\tSans les conseils de Tom, Mary aurait échoué.\nWithout his glasses, he is as blind as a bat.\tSans ses lunettes il est comme une taupe.\nWorkaholics view holidays as a waste of time.\tLes accros du travail considèrent les vacances comme une perte de temps.\nWorrying is like paying a debt you don't owe.\tSe faire du souci est comme de payer une dette qu'on ne devrait pas.\nWould it be all right if I visited you today?\tEst-ce que ça pose un problème si je viens te rendre visite aujourd'hui?\nWould you be kind enough to explain it to me?\tSerais-tu assez gentil pour me l'expliquer ?\nWould you be so kind as to lend me your book?\tTu voudrais bien me prêter ton livre ?\nWould you be so kind as to lend me your book?\tAuriez-vous la gentillesse de me prêter votre livre ?\nWould you like go out for a drink after work?\tAimeriez-vous sortir prendre un verre après le travail ?\nWould you like to have a drink before dinner?\tSouhaitez-vous boire un verre avant le dîner ?\nWould you mind telling me where you got this?\tEst-ce que ça te dérangerait si tu pouvais me dire où tu as trouvé cela?\nWould you please send me a catalogue by mail?\tPouvez-vous m'envoyer un catalogue par la poste, je vous prie ?\nWould you please turn on the air conditioner?\tVoudriez-vous mettre l'air conditionné en marche ?\nYesterday I played tennis for the first time.\tHier j'ai joué au tennis pour la première fois.\nYesterday, I read a really interesting story.\tHier, j'ai lu une histoire vraiment intéressante.\nYesterday, I read a really interesting story.\tJ'ai lu hier une histoire fort intéressante.\nYokohama is the second largest city in Japan.\tYokohama est la deuxième plus grande ville du Japon.\nYou are old enough to stand on your own feet.\tTu es assez grand pour tenir sur tes propres pieds.\nYou are the most important person in my life.\tTu es la personne la plus importante dans ma vie.\nYou are the most important person in my life.\tVous êtes la personne la plus importante dans ma vie.\nYou are too critical of others' shortcomings.\tVous êtes trop critique des défauts des autres.\nYou are too critical of others' shortcomings.\tTu es trop critique des défauts des autres.\nYou aren't going to call my parents, are you?\tVous n'allez pas appeler mes parents, n'est-ce pas ?\nYou aren't going to tell my parents, are you?\tVous n'allez pas le dire à mes parents, n'est-ce pas ?\nYou can always count on him in any emergency.\tVous pouvez toujours compter sur lui en cas d'urgence.\nYou can buy whichever you like, but not both.\tTu peux acheter celui que tu aimes, mais pas les deux.\nYou can reach me at the address written here.\tTu peux me joindre à l'adresse écrite ici.\nYou could do this if you put your mind to it.\tTu pourrais le faire s'y tu y consacrais ton esprit.\nYou could go back to Boston if you wanted to.\tTu pouvais retourner à Boston si tu le voulais.\nYou didn't come to school yesterday, did you?\tVous n'êtes pas venu à l'école hier, n'est-ce pas ?\nYou have finished your homework, haven't you?\tAs-tu fini tes devoirs ?\nYou have friends who can help you, don't you?\tTu as des amis qui peuvent t'aider, n'est-ce pas ?\nYou have friends who can help you, don't you?\tVous avez des amies qui peuvent vous aider, n'est-ce pas ?\nYou have friends who can help you, don't you?\tTu as des amies qui peuvent t'aider, n'est-ce pas ?\nYou have friends who can help you, don't you?\tVous avez des amis qui peuvent vous aider, n'est-ce pas ?\nYou have no idea how important you are to me.\tTu n'as pas idée de combien tu es important pour moi.\nYou have no idea how important you are to me.\tTu n'as pas idée de combien tu es importante pour moi.\nYou have somebody you can talk to, don't you?\tTu as quelqu'un à qui parler, n'est-ce pas ?\nYou have somebody you can talk to, don't you?\tVous avez quelqu'un à qui parler, n'est-ce pas ?\nYou have to pay 10,000 yen extra on holidays.\tLe prix varie de 10000 yens entre un jour de semaine et un jour de vacances.\nYou know I can't wait for you if you're late.\tTu sais que je ne peux pas t'attendre si tu es en retard.\nYou know I can't wait for you if you're late.\tVous savez que je ne peux pas vous attendre si vous êtes en retard.\nYou made that mistake on purpose, didn't you?\tTu as commis cette erreur exprès, n'est-ce pas ?\nYou made that mistake on purpose, didn't you?\tVous avez commis cette erreur exprès, n'est-ce pas ?\nYou must not lose sight of your goal in life.\tTu ne dois pas perdre de vue ton but dans la vie.\nYou must not take advantage of her innocence.\tTu ne dois pas profiter de son innocence.\nYou must put an end to this foolish behavior.\tTu dois mettre fin à ce comportement stupide.\nYou never know when this might come in handy.\tTu ne sais jamais quand ça se révélerait utile.\nYou ought to have taken your father's advice.\tIl aurait fallu que tu prennes l'avis de ton père.\nYou should always save money for a rainy day.\tTu devrais toujours économiser de l'argent en prévision de périodes de vaches maigres.\nYou should brush your teeth after every meal.\tTu devrais te brosser les dents après chaque repas.\nYou should brush your teeth after every meal.\tVous devriez vous brosser les dents après chaque repas.\nYou should come over this evening for dinner.\tTu devrais venir ce soir pour dîner.\nYou should keep this machine clean and lubed.\tIl faut tenir cette machine propre et lubrifiée.\nYou should not feel superior to other people.\tTu ne devrais pas te sentir supérieur aux autres.\nYou should work in the interests of humanity.\tTu devrais travailler dans l'intérêt de l'humanité.\nYou should work in the interests of humanity.\tTu devrais œuvrer dans l'intérêt de l'humanité.\nYou shouldn't ride a bicycle on the sidewalk.\tTu ne devrais pas rouler en vélo sur le trottoir.\nYou will be able to read this book next year.\tTu seras capable de lire ce livre l'an prochain.\nYou will soon get used to speaking in public.\tTu t'habitueras vite à parler en public.\nYou'll be asked why you want to be a teacher.\tOn te demandera pourquoi tu veux être enseignante.\nYou'll be asked why you want to be a teacher.\tOn vous demandera pourquoi vous voulez être enseignant.\nYou'll be asked why you want to be a teacher.\tOn vous demandera pourquoi vous voulez être enseignante.\nYou'll be asked why you want to be a teacher.\tOn te demandera pourquoi tu veux être enseignant.\nYou'll feel better if you take this medicine.\tTu te sentiras mieux si tu prends ce remède.\nYou'll feel better if you take this medicine.\tVous vous sentirez mieux si vous prenez ce remède.\nYou'll have to learn all these dates by rote.\tTu devras apprendre toutes ces dates par cœur.\nYou'll have to learn all these dates by rote.\tVous devrez apprendre toutes ces dates par cœur.\nYou'll never guess what happened to me today.\tVous ne devinerez jamais ce qui m'est arrivé aujourd'hui.\nYou'll never guess what happened to me today.\tTu ne devineras jamais ce qui m'est arrivé aujourd'hui.\nYou'll soon get used to eating Japanese food.\tVous vous habituerez bien vite à manger de la nourriture japonaise.\nYou'll soon get used to eating Japanese food.\tTu t'habitueras bien vite à manger de la nourriture japonaise.\nYou're not as beautiful as you think you are.\tTu n'es pas aussi beau que tu crois.\nYou're not as beautiful as you think you are.\tTu n'es pas aussi belle que tu crois.\nYou're not as beautiful as you think you are.\tVous n'êtes pas aussi beau que vous pensez.\nYou're not as beautiful as you think you are.\tVous n'êtes pas aussi belle que vous pensez.\nYou're probably too young to understand this.\tVous êtes probablement trop jeune pour le comprendre.\nYou're probably too young to understand this.\tTu es probablement trop jeune pour le comprendre.\nYou're the most beautiful woman in the world.\tTu es la femme la plus belle du monde.\nYou're the most beautiful woman in the world.\tTu es la femme la plus belle au monde.\nYou're the only person I know who can't swim.\tTu es la seule personne que je connaisse qui ne sache pas nager.\nYou're the only person that can persuade him.\tTu es la seule personne qui peut le convaincre.\nYour PhD thesis has to be written in English.\tVotre thèse de doctorat doit être écrite en anglais.\nYour dream will come true in the near future.\tTon rêve se réalisera dans un avenir proche.\nYour effort will be rewarded in the long run.\tVos efforts seront récompensés sur le long terme.\nYour idea is definitely worth thinking about.\tVotre idée mérite vraiment réflexion.\nYour idea is definitely worth thinking about.\tTon idée mérite vraiment réflexion.\nYour question is not relevant to the subject.\tTa question n'a pas de rapport avec le sujet.\nYour question is not relevant to the subject.\tVotre question ne se réfère pas au sujet.\n\"Thank you for your help.\" \"It's my pleasure.\"\t\"Merci de votre aide.\" \"Je vous en prie.\"\n\"This looks pretty interesting,\" Hiroshi says.\t« Ça semble très intéressant », dit Hiroshi.\n\"This looks pretty interesting,\" Hiroshi says.\t\"Ca a l'air plutôt intéressant\" dit Hiroshi.\n\"Tom's death was an accident.\" \"Are you sure?\"\t« La mort de Tom était un accident. » « En êtes-vous sûr ? »\n\"Where are my glasses?\" \"Where you left them.\"\t« Où se trouvent mes lunettes ? » « Là où tu les as laissées. »\n\"Will it stop raining soon?\" \"I'm afraid not.\"\t« Est-ce qu'il va bientôt s'arrêter de pleuvoir ? » - « J'ai bien peur que non. »\nA camel is, so to speak, a ship on the desert.\tUn chameau est, pour ainsi dire, un bateau dans le désert.\nA chain is only as strong as its weakest link.\tUne chaîne n'est aussi forte que son maillon le plus faible.\nA comparable car would cost far more in Japan.\tUne telle voiture coûterait beaucoup plus cher au Japon.\nA great number of citizens went into the army.\tUn grand nombre de citoyens sont entrés dans l'armée.\nA heavy stone slab was lowered over the grave.\tUne lourde dalle de pierre fut descendue sur la tombe.\nA large pillar obstructs the view of the lake.\tUn large pilier bloque la vue sur le lac.\nA long train of camels was moving to the west.\tUne longue file de chameaux se déplaçait vers l'ouest.\nA lot of houses were washed away by the flood.\tBeaucoup de maisons furent balayées par l'inondation.\nA man who speaks the truth needs a fast horse.\tUn homme qui dit la vérité a besoin d'un cheval rapide.\nA new serial will begin in next month's issue.\tUne nouvelle série sera publiée dans l'édition du mois prochain.\nA swarm of locusts descended on the cornfield.\tUn essaim de sauterelles s'abattit sur le champ de maïs.\nA telephone is something you can't do without.\tLe téléphone est une chose dont on ne peut se passer.\nA triathlon is a forbidding test of endurance.\tUn triathlon est un difficile test d'endurance\nA true gentleman would not betray his friends.\tUn vrai gentleman ne trahit pas ses amis.\nA tuft of hair showed from underneath her cap.\tUne touffe de cheveux apparaissait du dessous de sa casquette.\nAbout how many days will it take to get there?\tCombien de jours environ faut-il pour arriver là-bas ?\nAbove all, logic requires precise definitions.\tSurtout, la logique nécessite des définitions précises.\nAccording to the paper, it will snow tomorrow.\tSelon les journaux, il neigera demain.\nAccording to the radio, it will snow tomorrow.\tD'après la radio, il va neiger demain.\nAccording to the radio, it will snow tomorrow.\tD'après la radio, il neigera demain.\nAccording to the radio, it will snow tomorrow.\tSelon la radio, il va neiger demain.\nAdding comments makes reading the code easier.\tAjouter des commentaires rend la lecture du code plus facile.\nAdding comments makes the code easier to read.\tAjouter des commentaires rend le code plus facile à lire.\nAll future meetings will be held in this room.\tToutes les futures réunions se tiendront dans cette pièce.\nAll future meetings will be held in this room.\tToutes les futures réunions seront tenues dans cette pièce.\nAll living things on earth depend one another.\tToutes les choses vivantes sur terre dépendent les unes des autres.\nAll the inmates are present and accounted for.\tTous les détenus sont présents.\nAlthough I was exhausted, I continued to work.\tBien que je fusse épuisé, je continuais à travailler.\nAlthough she has many weaknesses, I trust her.\tBien qu'elle ait beaucoup de faiblesses, je lui fais confiance.\nAm I the only one that sees the humor in this?\tSuis-je la seule à y percevoir l'humour ?\nAm I the only one that sees the humor in this?\tSuis-je le seul à y percevoir l'humour ?\nAmerica is often referred to as a melting pot.\tOn parle souvent des États-Unis comme d'un creuset.\nAmerica's foreign debt shot past $500 billion.\tLa dette extérieure des États-Unis a dépassé les 500 milliards de dollars.\nAn important quality of steel is its strength.\tUne caractéristique importante de l'acier est sa force.\nAny book will do as long as it is interesting.\tN'importe quel livre fera l'affaire du moment qu'il est intéressant.\nApart from his parents, no one knows him well.\tEn dehors de ses parents personne ne le connait bien.\nAre they now available throughout Switzerland?\tSont-ils maintenant disponibles dans toute la Suisse ?\nAre you sure you don't want me to go with you?\tEs-tu sûre que tu ne veux pas que je vienne avec toi ?\nAre you sure you don't want me to go with you?\tÊtes-vous sûrs que vous ne vouliez pas que je vienne avec vous ?\nAre you sure you don't want me to go with you?\tÊtes-vous sûr de ne pas vouloir que je vienne avec vous ?\nAre you sure you don't want me to go with you?\tÊtes-vous sûres de ne pas vouloir que je vienne avec vous ?\nAre you sure you want to go through with this?\tÊtes-vous sûre de vouloir aller jusqu'au bout ?\nAre you wearing that dress for the first time?\tPortes-tu cette robe pour la première fois ?\nAre you wearing that dress for the first time?\tPortez-vous cette robe pour la première fois ?\nArmstrong was the first man to reach the moon.\tArmstrong fut le premier homme à atteindre la lune.\nAs a matter of fact, I know nothing about him.\tEn fait, je ne sais rien de lui.\nAs far as I am concerned, I have no objection.\tEn ce qui me concerne, je n’ai pas d'objection.\nAs soon as she opened the door, a cat ran out.\tAussitôt qu'elle ouvrit la porte, un chat s'échappa.\nAs we age, our ability to remember gets worse.\tEn vieillissant, notre capacité mémorielle empire.\nAssuming your story is true, what should I do?\tEn supposant que votre histoire est véridique, que devrais-je faire ?\nAt last, they reached the top of the mountain.\tIls finirent par atteindre le sommet de la montagne.\nAt the start, I was really still a bit scared.\tAu début, j'avais vraiment encore un peu peur.\nAvoid crossing this street when it is raining.\tÉvitez de traverser cette rue quand il pleut.\nBe sure to turn out the light when you go out.\tAssure-toi de couper l'électricité en partant.\nBears like to scratch their back on tree bark.\tLes ours aiment se gratter le dos sur l'écorce des arbres.\nBecause of the typhoon, the school was closed.\tÀ cause du typhon, l'école fut fermée.\nBecause of your advice, I was able to succeed.\tGrâce à votre conseil, j'ai pu réussir.\nBillie Holliday had an earthy, gravelly voice.\tBillie Holliday avait une voix naturelle et rauque.\nBooks such as these are too difficult for him.\tLes livres de ce genre sont trop difficiles pour lui.\nBy the time he finds out, it will be too late.\tQuand il s'en apercevra, il sera trop tard.\nCalm down. I'll come over as soon as possible.\tCalmez-vous. Je passe dès que possible.\nCamping is impossible where there is no water.\tIl est impossible de camper là où il n'y a pas d'eau.\nCan I use my travelers' checks to pay the fee?\tPuis-je utiliser un chèque voyage pour payer la cotisation ?\nCan you believe it? She's even lazier than me.\tArrives-tu à le croire ? Elle est encore plus fainéante que moi.\nCan you read what's written on the blackboard?\tParvenez-vous à lire ce qui est écrit au tableau ?\nCan you read what's written on the blackboard?\tParviens-tu à lire ce qui est écrit au tableau ?\nCan you read what's written on the blackboard?\tPouvez-vous lire ce qui est écrit au tableau ?\nCan you read what's written on the blackboard?\tPeux-tu lire ce qui est écrit au tableau ?\nCan you see the big white building over there?\tVois-tu le grand bâtiment blanc là-bas ?\nCan you tell me when the next bus will arrive?\tPeux-tu me dire quand arrive le prochain bus ?\nCan you tell me where the nearest bus stop is?\tPourriez-vous m'indiquer l'arrêt de bus le plus proche ?\nCan't you see it's bigger than the both of us?\tNe te rends-tu pas compte que ça nous dépasse, tous les deux ?\nCan't you see it's bigger than the both of us?\tNe vous rendez-vous pas compte que ça nous dépasse, tous les deux ?\nCan't you see it's bigger than the both of us?\tNe vous rendez-vous pas compte que ça nous dépasse, toutes les deux ?\nCan't you see it's bigger than the both of us?\tNe te rends-tu pas compte que ça nous dépasse, toutes les deux ?\nCanada has thirteen provinces and territories.\tLa Canada comporte treize provinces et territoires.\nCatching cancer early increases survival odds.\tContracter un cancer tôt accroît les chances de survie.\nCheese and butter are products made from milk.\tLe fromage et le beurre sont des produits laitiers.\nChildren don't always listen to their parents.\tLes enfants n'écoutent pas toujours leurs parents.\nChinese calligraphy is considered an art form.\tLa calligraphie chinoise est considérée comme une forme d'art.\nColumbus' discovery of America was accidental.\tLa découverte de l'Amérique par Colomb fut accidentelle.\nCome and see me when it is convenient for you.\tVenez me voir quand cela vous convient.\nComputers are better than us at playing chess.\tLes ordinateurs sont meilleurs que nous pour jouer aux échecs.\nConvincing Tom to do the right thing was hard.\tConvaincre Tom de faire ce qui était juste fut difficile.\nCorporations are competing to fill the vacuum.\tLes entreprises se concurrencent pour remplir le vide.\nCould you give me a lift to the train station?\tPourrais-tu me déposer à la gare ?\nCould you please explain what's going on here?\tPourrais-tu, s'il te plait, expliquer ce qui se passe ici ?\nDemocracy is the dictatorship of the majority.\tLa démocratie est la dictature de la majorité.\nDid you find out what time the meeting starts?\tAs-tu découvert à quelle heure commence la réunion ?\nDid you find out what time the meeting starts?\tAvez-vous découvert à quelle heure commence la réunion ?\nDid you go abroad for pleasure or on business?\tÊtes-vous partis à l'étranger pour le plaisir ou pour le travail ?\nDid you go abroad for pleasure or on business?\tVous êtes-vous rendu à l'étranger pour le plaisir ou pour le travail ?\nDid you take part in the discussion yesterday?\tAvez-vous pris part à la discussion, hier ?\nDid you talk to your new classmates yesterday?\tAvez-vous parlé à vos nouveaux camarades de classe hier ?\nDidn't your mother teach you to say thank you?\tTa mère ne t'a-t-elle pas enseigné à dire merci ?\nDidn't your mother teach you to say thank you?\tVotre mère ne vous a-t-elle pas enseigné à dire merci ?\nDinosaurs became extinct a very long time ago.\tLes dinosaures se sont éteints il y a très longtemps.\nDo I look like a guy who wants to get married?\tAi-je l'air d'un gars qui veut se marier ?\nDo I look like a guy who wants to get married?\tEst-ce que je ressemble à un gars qui veut se marier ?\nDo you have a problem with what was suggested?\tAs-tu un problème avec ce qui a été suggéré ?\nDo you have a problem with what was suggested?\tAvez-vous un problème avec ce qui a été suggéré ?\nDo you have something to do with that company?\tEst-ce que tu as quelque chose à avoir avec cette entreprise ?\nDo you know how many people live in Australia?\tSais-tu combien de personnes vivent en Australie?\nDo you know the reason why the sky looks blue?\tConnais-tu la raison pour laquelle le ciel paraît bleu ?\nDo you think I'm too old to go back to school?\tPenses-tu que je sois trop vieux pour retourner à l'école ?\nDo you think I'm too old to go back to school?\tPensez-vous que je sois trop vieux pour retourner à l'école ?\nDo you think the road is wide enough for cars?\tCroyez-vous que le chemin est assez large pour les voitures ?\nDo you think we'll have good weather tomorrow?\tEst-ce que tu penses qu'on va avoir beau temps demain ?\nDon't ask me so many questions. Use your head.\tNe me posez pas tant de questions, servez-vous de votre tête.\nDon't expose this chemical to direct sunlight.\tNe soumettez pas ce produit chimique à la lumière directe du soleil.\nDon't expose this chemical to direct sunlight.\tN'exposez pas ce produit chimique à la lumière directe du soleil.\nDon't fail to come here by the appointed time.\tN'oubliez pas de venir ici à l'heure convenue.\nDon't get an upset stomach by eating too much.\tNe perturbe pas ton estomac en mangeant trop.\nDon't hesitate to ask your teacher a question.\tN'hésitez pas à poser une question à votre professeur.\nDon't judge others by the color of their skin.\tNe jugez pas les autres à la couleur de leur peau.\nDon't look down on him just because he's poor.\tNe le regarde pas avec mépris juste parce qu'il est pauvre.\nDon't look down on him just because he's poor.\tNe le considérez pas avec dédain juste parce qu'il est pauvre.\nDon't put the wallet on the top of the heater.\tNe mets pas le portefeuille sur le radiateur.\nDon't stick your nose where it doesn't belong.\tNe fourre pas le nez dans un vase étranger.\nDon't worry. We have plenty of water and food.\tNe vous en faites pas. Nous disposons de plein d'eau et de nourriture.\nDon't worry. We have plenty of water and food.\tNe t'en fais pas. Nous avons plein d'eau et de nourriture.\nDr. Skeleton is known for his study on ghosts.\tLe docteur Skeleton est connu pour son étude sur les fantômes.\nEven if it should rain, I will start tomorrow.\tMême s'il doit pleuvoir, je commencerai demain.\nEver since he arrived, everything has changed.\tDepuis qu'il est arrivé, tout a changé.\nEverybody in the building felt the earthquake.\tTout le monde dans le bâtiment a ressenti le séisme.\nEverybody in the building felt the earthquake.\tTout le monde dans le bâtiment a ressenti le tremblement de terre.\nEveryone has their own strong and weak points.\tTout le monde a ses points forts et ses points faibles.\nExcuse me, I have to get off at the next stop.\tExcusez-moi, je dois descendre au prochain arrêt.\nFive thousand dollars is a large sum of money.\tCinq mille dollars est une grande somme d'argent.\nFrankly, I'm not that impressed with his idea.\tFranchement, je ne suis pas impressionné par son idée.\nFrankly, I'm not that impressed with his idea.\tFranchement, je ne suis pas impressionnée par son idée.\nFriends are always willing to help each other.\tLes amis sont toujours désireux de s'entraider.\nGenerally speaking, Japanese are hard workers.\tEn général, les Japonais travaillent dur.\nGenerally speaking, men are taller than women.\tGénéralement, les hommes sont plus grands que les femmes.\nGet up at once, or you will miss the 7:00 bus.\tLève-toi tout de suite, ou tu vas manquer le bus de 7 heures.\nGet up fifteen minutes earlier in the morning.\tLevez-vous quinze minutes plus tôt le matin.\nGive me the money you owe me and I'll be gone.\tDonnez-moi les sous que vous me devez et je partirai.\nGive the television remote control back to me.\tRends-moi la télécommande de la télé.\nGo and get a chair from the next room, please.\tAllez chercher une chaise dans la pièce d'à côté, s'il vous plait.\nGoing out in this rain is out of the question.\tIl est hors de question de sortir avec cette pluie.\nGoing out in this rain is out of the question.\tIl est hors de question de sortir sous cette pluie.\nGrandpa always said there'd be days like this.\tGrand-Papa disait toujours qu'on connaîtrait des jours tels que ceux-ci.\nGrandpa always said there'd be days like this.\tBon-Papa disait toujours qu'on connaîtrait des jours tels que ceux-ci.\nHalf of the bananas in the basket were rotten.\tLa moitié des bananes du panier étaient pourries.\nHave you already decided on your thesis topic?\tAvez-vous déjà choisi votre sujet de thèse ?\nHave you already spent the money Tom gave you?\tAvez-vous déjà dépensé l'argent que Tom vous avait donné ?\nHave you already spent the money Tom gave you?\tAs-tu déjà dépensé l'argent que Tom t'avait donné ?\nHave you ever eaten chocolate-covered popcorn?\tAs-tu déjà mangé du pop-corn enrobé de chocolat ?\nHave you ever read a book written about Japan?\tAvez-vous jamais lu un livre à propos du Japon ?\nHave you ever thought about quitting your job?\tAs-tu jamais songé à quitter ton boulot ?\nHave you ever thought about quitting your job?\tAvez-vous jamais songé à quitter votre emploi ?\nHave you studied Darwin's theory of evolution?\tAvez-vous étudié la théorie de l'évolution de Darwin ?\nHe accidentally hit his thumb with the hammer.\tIl s'est accidentellement frappé le pouce avec son marteau.\nHe always troubles himself about minor things.\tIl se tracasse toujours pour des choses sans importances.\nHe attributed the accident to the bad weather.\tIl attribua l'accident au mauvais temps.\nHe became a singer against his parents wishes.\tIl est devenu chanteur contre le souhait de ses parents.\nHe can speak not only English but also German.\tIl ne parle pas seulement anglais mais aussi allemand.\nHe could not stand being kept waiting so long.\tIl ne supportait pas qu'on le fasse attendre aussi longtemps.\nHe couldn't wait to try out his new surfboard.\tIl ne pouvait attendre d'essayer sa nouvelle planche de surf.\nHe cut the advertisement out of the newspaper.\tIl découpa l'annonce du journal.\nHe didn't know what to do with the extra food.\tIl ne sut pas quoi faire avec la nourriture excédentaire.\nHe examined the spare parts one after another.\tIl examina les pièces détachées l'une après l'autre.\nHe examined the spare parts one after another.\tIl a examiné les pièces de rechange l'une après l'autre.\nHe faked his death and assumed a new identity.\tIl simula son décès et prit une nouvelle identité.\nHe feels relaxed when he's playing the guitar.\tIl se sent bien quand il joue de la guitare.\nHe feels relaxed when he's playing the guitar.\tIl est détendu quand il joue de la guitare.\nHe fetched a few cushions to prop up her head.\tIl a pris quelques coussins pour soutenir sa tête.\nHe found no difficulty in solving the problem.\tIl n'éprouva aucune difficulté à résoudre le problème.\nHe glanced at her with no sign of recognition.\tIl lui jeta un coup d'œil sans montrer de signe de reconnaissance.\nHe got into the habit of smoking in his youth.\tIl a pris l'habitude de fumer dans sa jeunesse.\nHe got lost while he was walking in the woods.\tIl s'est perdu en marchant dans les bois.\nHe got lost while he was walking in the woods.\tIl se perdit en marchant dans les bois.\nHe had no money and so could not buy any food.\tIl n'avait pas d'argent et n'a donc pas pu acheter de nourriture.\nHe has postponed his departure until tomorrow.\tIl a remis son départ jusqu'à demain.\nHe has postponed his departure until tomorrow.\tIl a remis son départ à demain.\nHe has postponed his departure until tomorrow.\tIl a décalé son départ jusqu'à demain.\nHe has postponed his departure until tomorrow.\tIl a postposé son départ à demain.\nHe has postponed his departure until tomorrow.\tIl a reporté son voyage à demain.\nHe is always a step or two ahead of the times.\tIl est toujours en avance d'un temps ou deux sur l'époque.\nHe is always complaining about his low salary.\tIl est toujours en train de se plaindre à propos de son faible salaire.\nHe is an honest man and will always remain so.\tC'est un honnête homme et le restera toujours.\nHe is fighting with his back against the wall.\tIl se bat le dos au mur.\nHe is not always in the office in the morning.\tIl n'est pas toujours à son bureau le matin.\nHe is not as intelligent as his older brother.\tIl n'est pas aussi intelligent que son frère ainé.\nHe is not fond of sports, and I am not either.\tIl n'aime pas le sport. Moi non plus.\nHe is not the sort of guy who gives in easily.\tCe n'est pas le genre de type à abandonner facilement.\nHe is one of the greatest scientists in Japan.\tC'est un des plus grands scientifiques au Japon.\nHe listened to the music with his eyes closed.\tIl ferma les yeux et écouta la musique.\nHe listened to the music with his eyes closed.\tIl écoutait la musique en fermant les yeux.\nHe lived on crackers and water for three days.\tIl a vécu de crackers et d'eau pendant trois jours.\nHe made an effort to get to the station early.\tIl fit un effort pour arriver tôt à la gare.\nHe marches to the beat of a different drummer.\tIl marche au rythme d'un autre tambour.\nHe never fails to give her a birthday present.\tIl n'oublie jamais de lui faire un cadeau d'anniversaire.\nHe opened the window to let in some fresh air.\tIl ouvrit la fenêtre pour laisser entrer de l'air frais.\nHe played the guitar and she played the piano.\tIl jouait de la guitare, elle jouait du piano.\nHe reached across the table and shook my hand.\tIl étendit la main par-dessus la table et serra la mienne.\nHe said that he would come back here tomorrow.\tIl a dit qu'il reviendrait ici demain.\nHe said to her under his breath, \"I love you.\"\tIl lui a dit à voix basse, \"Je t'aime\".\nHe screwed up his courage and proposed to her.\tIl rassembla son courage et la demanda en mariage.\nHe seldom does anything he really hates to do.\tIl fait rarement quoi que ce soit qu'il déteste vraiment faire.\nHe selected a pair of socks to match his suit.\tIl choisit une paire de chaussettes pour aller avec son costume.\nHe selected a pair of socks to match his suit.\tIl choisit une paire de chaussettes pour aller avec son complet.\nHe showed courage in the face of great danger.\tIl a fait preuve de courage face à un grand danger.\nHe spends his evenings in front of his laptop.\tIl passe ses soirées en face de son ordinateur portable.\nHe spends his evenings in front of his laptop.\tIl passe ses soirées face à son ordinateur portable.\nHe taught us that Columbus discovered America.\tIl nous apprit que Colomb avait découvert l'Amérique.\nHe told me that Poe's novels were interesting.\tIl m'a dit que les romans de Poe étaient intéressants.\nHe told me that he would wait till I returned.\tIl me dit qu'il m'attendra jusqu'à mon retour.\nHe told us he had gone through many hardships.\tIl nous raconta qu'il était passé par de nombreuses épreuves.\nHe told us he had gone through many hardships.\tIl nous a dit qu'il avait traversé bien des difficultés.\nHe took a taxi in order not to miss the train.\tIl a pris un taxi pour ne pas rater le train.\nHe took advantage of every opportunity he had.\tIl a saisi toutes les opportunités qui se présentaient à lui.\nHe took my umbrella without so much as asking.\tIl me prit mon parapluie sans se donner la peine de demander.\nHe wants to sell his old car to a man in Kobe.\tIl veut vendre sa vieille voiture à un homme à Kobe.\nHe was a famous poet and a competent diplomat.\tIl était un poète connu et un diplomate compétent.\nHe was absent from school because he was sick.\tIl était absent à l'école parce qu'il était malade.\nHe was absent from school because he was sick.\tIl était absent de l'école parce qu'il était malade.\nHe was absent from school because he was sick.\tIl a été absent de l'école parce qu'il a été malade.\nHe was afraid that he might hurt her feelings.\tIl craignait qu'il puisse blesser ses sentiments.\nHe was eager to return to school in September.\tIl était impatient de retourner à l'école en septembre.\nHe was going to leave the house when she came.\tIl allait quitter la maison lorsqu'elle est arrivée.\nHe was kind enough to take me to the hospital.\tIl eut l'amabilité de me conduire à l'hôpital.\nHe was my student. Now he teaches my children.\tIl fut mon élève. Maintenant, il enseigne à mes enfants.\nHe was never to see his wife and family again.\tIl ne devait jamais revoir sa femme et ses enfants.\nHe was slightly injured in a traffic accident.\tIl a été légèrement blessé dans un accident de la circulation.\nHe was very scared when he saw this big snake.\tIl était très effrayé à la vue de ce gros serpent.\nHe was very tall, so I recognized him at once.\tIl était très grand, aussi je le reconnus tout de suite.\nHe watched the horse race with his binoculars.\tIl observa la course de chevaux à l'aide de ses jumelles.\nHe went to see her while she stayed in London.\tIl est allé la voir lorsqu'elle habitait à Londres.\nHe went to the post office to mail the letter.\tIl est parti au bureau de poste pour poster une lettre.\nHe will be angry to learn that she told a lie.\tIl sera furieux d'apprendre qu'elle a dit un mensonge.\nHe will get his job back at the next election.\tIl retrouvera son travail lors des prochaines élections.\nHe will have left here by the time you return.\tIl sera parti d'ici au moment où vous revenez.\nHe will have left here by the time you return.\tIl sera parti d'ici au moment où tu reviens.\nHe would like to take part in the competition.\tIl voudrait participer à la compétition.\nHe's the type who doesn't worry about details.\tIl est du genre à ne pas se soucier des détails.\nHer ability to write with her foot is amazing.\tSa capacité à écrire avec le pied est surprenante.\nHer ability to write with her foot is amazing.\tSa capacité d'écrire du pied est étonnante.\nHis absence gave birth to all sorts of rumors.\tSon absence donna cours à toutes sortes de rumeurs.\nHis aunt takes care of his dog during the day.\tSa tante s'occupe de son chien pendant la journée.\nHis behavior disappointed many of his friends.\tSa conduite a déçu beaucoup de ses amis.\nHis family and his doctor urged him not to go.\tSa famille et son docteur le supplièrent de ne pas partir.\nHis income is too small to support his family.\tSon revenu est trop faible pour subvenir aux besoins de sa famille.\nHis son has what it takes to be a good doctor.\tSon fils a l’étoffe d’un bon docteur.\nHis son has what it takes to be a good doctor.\tSon fils a l’étoffe d’un bon médecin.\nHis wife has started to work out of necessity.\tSa femme a pris un travail par nécessité.\nHonesty is the primary reason for his success.\tL'honnêteté est la raison première de son succès.\nHopefully the weather will be just like today.\tEspérons que le temps sera simplement comme aujourd'hui.\nHow about having a barbecue party next Sunday?\tQue dites-vous d'un barbecue dimanche prochain ?\nHow about having a barbecue party next Sunday?\tQue dites-vous d'organiser un barbecue dimanche prochain ?\nHow about having a barbecue party next Sunday?\tQue dis-tu d'un barbecue dimanche prochain ?\nHow about having a barbecue party next Sunday?\tQue dis-tu d'organiser un barbecue dimanche prochain ?\nHow can I extract the audio from a video clip?\tComment puis-je extraire le son d'une séquence vidéo ?\nHow long did it take you to write this report?\tCombien de temps ça t'a pris d'écrire ce rapport ?\nHow long did it take you to write this report?\tCombien de temps cela vous a-t-il pris d'écrire ce rapport ?\nHow many times do you think you've eaten here?\tCombien de fois penses-tu avoir mangé ici ?\nHow many times do you think you've eaten here?\tCombien de fois pensez-vous avoir mangé ici ?\nHow much do you think I can get for my kidney?\tCombien penses-tu que je puisse tirer de mon rein ?\nHurry up, and you will be in time for the bus.\tDépêche-toi, et tu seras à l'heure pour le bus.\nI advise you never to live beyond your income.\tJe te conseille de ne jamais vivre au-dessus de tes moyens.\nI advise you never to live beyond your income.\tJe vous conseille de ne jamais vivre au-dessus de votre revenu.\nI always have to wear a tie because of my job.\tJe dois toujours porter une cravate à cause de mon travail.\nI am already forgetting my grandmother's face.\tJ'oublie déjà le visage de ma grand-mère.\nI am deeply grateful to you for your kindness.\tJe vous suis profondément reconnaissante pour votre gentillesse.\nI am deeply grateful to you for your kindness.\tJe te suis profondément reconnaissante pour ta gentillesse.\nI am deeply grateful to you for your kindness.\tJe te suis profondément reconnaissant pour ta gentillesse.\nI am looking forward to hearing from you soon.\tJ'ai hâte d'avoir de tes nouvelles.\nI am looking forward to seeing you again soon.\tJe me réjouis de vous revoir bientôt.\nI am not accustomed to walking long distances.\tJe ne suis pas habitué à marcher sur de longues distances.\nI am only too glad to help you with your work.\tJe suis seulement trop content de t'aider dans ton travail.\nI am surprised by a lot of the things he does.\tJe suis surpris par toutes les choses qu'il fait.\nI am very happy to hear about your engagement.\tJe suis très heureux d'apprendre tes fiançailles.\nI apologize for coming by at such a late hour.\tJe vous présente mes excuses pour passer à une heure si tardive.\nI asked Tom if I could talk to him in private.\tJ'ai demandé à Tom si je pouvais lui parler en privé.\nI asked for a seat in the non-smoking section.\tJ'ai demandé une place dans la partie non-fumeur.\nI asked her to make four copies of the letter.\tJe lui ai demandé de faire quatre copies de la lettre.\nI bought a bottle of beer at the liquor store.\tJ'ai acheté une bouteille de bière au marchand de vin.\nI bought an eight-acre farm for my retirement.\tJ'ai acheté une ferme de 8 acres pour ma retraite.\nI bought some Romanian books for the students.\tJ'emporte quelques livres roumains pour les étudiants.\nI bought the novel on which the film is based.\tJ'ai acheté le roman d'après lequel le film fut adapté.\nI can easily give up chocolate to lose weight.\tJe peux facilement arrêter le chocolat pour perdre du poids.\nI can pick you up from work if you want me to.\tSi tu veux, je peux venir te chercher au travail.\nI can spot a bleached blonde from a mile away.\tJe peux repérer une fausse blonde à des kilomètres.\nI can't believe I finally managed to meet you.\tJe n'arrive pas à croire que je me sois finalement débrouillé pour te rencontrer.\nI can't believe I finally managed to meet you.\tJe n'arrive pas à croire que je me sois finalement débrouillée pour te rencontrer.\nI can't believe I finally managed to meet you.\tJe n'arrive pas à croire que je me sois finalement débrouillé pour vous rencontrer.\nI can't believe I finally managed to meet you.\tJe n'arrive pas à croire que je me sois finalement débrouillée pour vous rencontrer.\nI can't believe I'm talking to you about this.\tJe n'arrive pas à croire que je t'en parle.\nI can't believe I'm talking to you about this.\tJe n'arrive pas à croire que je te parle de ça.\nI can't believe I'm talking to you about this.\tJe n'arrive pas à croire que je m'en entretienne avec toi.\nI can't believe I'm talking to you about this.\tJe n'arrive pas à croire que je m'en entretienne avec vous.\nI can't believe I'm talking to you about this.\tJe n'arrive pas à croire que je vous parle de ça.\nI can't believe I'm talking to you about this.\tJe n'arrive pas à croire que je vous en parle.\nI can't believe I'm talking to you about this.\tJe n'arrive pas à croire que je sois en train de t'en parler.\nI can't believe I'm talking to you about this.\tJe n'arrive pas à croire que je sois en train de vous en parler.\nI can't believe I'm talking to you about this.\tJe n'arrive pas à croire que je sois en train de te parler de ça.\nI can't believe I'm talking to you about this.\tJe n'arrive pas à croire que je sois en train de vous parler de ça.\nI can't believe everything that just happened.\tJe n'arrive pas à croire à tout ce qui vient de se passer.\nI can't believe everything that just happened.\tJe n'arrive pas à croire à tout ce qui vient de se produire.\nI can't believe everything that just happened.\tJe n'arrive pas à croire à tout ce qui vient d'avoir lieu.\nI can't believe you're considering doing that.\tJe n'arrive pas à croire que vous envisagiez de faire ça.\nI can't believe you're considering doing that.\tJe n'arrive pas à croire que tu envisages de faire ça.\nI can't concentrate on that problem right now.\tJe ne peux pas m'occuper de ce problème maintenant.\nI can't figure out the answer to this problem.\tJe n'arrive pas à trouver la réponse à cette question.\nI can't figure out the answer to this problem.\tJe ne parviens pas à trouver la réponse à cette question.\nI can't go to the restaurant with you tonight.\tJe ne peux pas aller au restaurant avec toi ce soir.\nI can't help you unless you tell me the truth.\tJe ne peux pas t'aider, à moins que tu me dises la vérité.\nI can't help you unless you tell me the truth.\tJe ne peux pas vous aider, à moins que vous me disiez la vérité.\nI can't ignore my commanding officer's orders.\tJe ne peux pas ignorer les ordres de mon officier supérieur.\nI can't promise anything, but I'll do my best.\tJe ne peux rien promettre, mais je vais faire de mon mieux.\nI could feel the sweat trickling down my back.\tJe pouvais sentir la sueur me dégouliner du dos.\nI could not make myself understood in English.\tJe n'ai pas pu me faire comprendre en anglais.\nI couldn't bring myself to tell her the truth.\tMalgré tout, je n'ai pas pu me résoudre à lui dire la vérité.\nI couldn't live with that kind of uncertainty.\tJe ne pourrais pas vivre dans une telle incertitude.\nI couldn't make myself heard in the classroom.\tJe ne pouvais me faire entendre dans la salle de classe.\nI couldn't think of anything better than that.\tJe ne pourrais pas songer à quoi que ce soit de mieux que ça.\nI decided to take his side against the others.\tJ'ai décidé de prendre son parti contre les autres.\nI did that without asking for anyone's advice.\tJe l'ai fait sans consulter personne.\nI didn't have the heart to tell him the truth.\tJe n'avais pas le cœur de lui dire la vérité.\nI didn't know about that until quite recently.\tJe n'en savais rien jusqu'il y a peu.\nI don't believe that Santa Claus is imaginary.\tJe ne crois pas que le Père Noël soit imaginaire.\nI don't believe the child came to Tokyo alone.\tJe ne crois pas que cet enfant est venu seul à Tokyo.\nI don't care who pays, as long as it isn't me.\tJe me fiche de savoir qui paie, du moment que ce n'est pas moi.\nI don't feel like going to the movies tonight.\tJe n'ai pas envie d'aller au cinéma ce soir.\nI don't go to the movies as often as I'd like.\tJe ne vais pas au cinéma aussi souvent que je le voudrais.\nI don't know exactly how or why that happened.\tJ'ignore exactement comment et pourquoi c'est arrivé.\nI don't know exactly how or why that happened.\tJ'ignore exactement comment et pourquoi cela s'est produit.\nI don't know whether the story is true or not.\tJe ne sais pas si l'histoire est avérée ou pas.\nI don't mind being criticized when I am wrong.\tQue l'on me critique lorsque je me trompe ne me dérange pas.\nI don't recall you saying anything about that.\tJe ne me souviens pas que vous ayez dit quoi que ce fut à ce sujet.\nI don't recall you saying anything about that.\tJe ne me souviens pas que tu aies dit quoi que ce fut à ce sujet.\nI don't remember actually deciding to do that.\tJe ne me souviens pas d'avoir réellement décidé de faire cela.\nI don't think I realized how much I loved you.\tJe ne pense pas avoir réalisé à quel point je t'aimais.\nI don't think Mary is as pretty as her sister.\tJe ne pense pas que Mary soit aussi jolie que sa sœur.\nI don't think Tom can deal with the situation.\tJe ne pense pas que Tom puisse gérer la situation.\nI don't think Tom can deal with the situation.\tJe ne pense pas que Tom puisse faire face à la situation.\nI don't think anyone really knows the real me.\tJe ne pense pas que quiconque me connaisse vraiment.\nI don't think the house is as big as we hoped.\tJe ne pense pas que la maison soit aussi grande que nous l'espérions.\nI don't think your seeing him is good for you.\tJe ne crois pas qu'il soit bon pour toi de le voir.\nI don't understand the meaning of this phrase.\tJe ne comprends pas le sens de cette phrase.\nI don't understand what the teacher is saying.\tJe ne comprends pas ce que l'instituteur est en train de dire.\nI don't understand what the teacher is saying.\tJe ne comprends pas ce que l'institutrice est en train de dire.\nI don't understand what you are talking about.\tJe ne comprends pas de quoi vous parlez.\nI don't want there to be any misunderstanding.\tJe ne veux pas qu'il y ait la moindre mécompréhension ici.\nI don't want to get involved in that business.\tJe ne veux pas être impliqué dans cette affaire.\nI don't want to hear anything more about that.\tJe ne veux rien entendre de plus à ce sujet.\nI don't want to watch television this evening.\tJe ne veux pas regarder la télévision ce soir.\nI exhausted myself by walking a long distance.\tJe me suis épuisé en faisant une longue marche.\nI feel terrible about the way things happened.\tJe me sens très mal à propos de la manière dont les choses se sont déroulées.\nI feel terrible about the way things happened.\tJe me sens très mal à propos de la manière dont les choses se sont passées.\nI feel terrible about the way things happened.\tJe me sens très mal à propos de la manière dont les choses sont arrivées.\nI figured it was better not to go without you.\tJ'ai estimé qu'il était préférable de ne pas y aller sans vous.\nI figured it was better not to go without you.\tJ'ai estimé qu'il était préférable de ne pas y aller sans toi.\nI figured it was better not to go without you.\tJ'ai estimé qu'il était préférable de ne pas s'y rendre sans vous.\nI figured it was better not to go without you.\tJ'ai estimé qu'il était préférable de ne pas s'y rendre sans toi.\nI finally feel like everything's going my way.\tJ'ai finalement le sentiment que tout va dans mon sens.\nI finally found out what was wrong with my TV.\tJ'ai finalement trouvé ce qui déconnait avec ma télé.\nI finally found out what was wrong with my TV.\tJ'ai finalement trouvé ce qui n'allait pas dans ma télé.\nI finally talked her into lending me the book.\tJ'ai finalement réussi à la persuader de me prêter le livre.\nI find it strange that she hasn't arrived yet.\tIl est étrange qu'elle ne soit pas encore arrivée.\nI find it strange that she hasn't arrived yet.\tJe trouve étrange qu'elle ne soit pas encore arrivée.\nI forgot to write the address on the envelope.\tJ'ai oublié d'écrire l'adresse sur l'enveloppe.\nI forgot to write the address on the envelope.\tJ'ai omis d'écrire l'adresse sur l'enveloppe.\nI found what I was looking for in the drawers.\tJ'ai trouvé ce que je cherchais dans les tiroirs.\nI gathered from this letter that he was angry.\tJ'ai déduit de cette lettre qu'il était en colère.\nI got a letter from a friend of mine in Japan.\tJ'ai reçu une lettre de l'un de mes amis au Japon.\nI got up early in order to attend the meeting.\tJe me suis levé tôt pour assister à la réunion.\nI had never seen so many squirrels in my life.\tJe n'avais jamais vu autant d'écureuils de ma vie.\nI had never seen such a beautiful girl before.\tJe n'avais jamais vu une aussi belle jeune fille auparavant.\nI had never seen that kind of fish until then.\tJe n'avais jamais vu ce genre de poisson jusqu'à maintenant.\nI had to wait twenty minutes for the next bus.\tJe fus contraint d'attendre le bus suivant durant vingt minutes.\nI had too much to drink and I can barely walk.\tJ'ai trop bu et je peux à peine marcher.\nI have a feeling you'll be a very good lawyer.\tJ'ai le sentiment que vous serez un très bon avocat.\nI have a feeling you'll be a very good lawyer.\tJ'ai le sentiment que vous ferez un très bon avocat.\nI have a friend coming over to visit tomorrow.\tJ'ai un ami qui vient me rendre visite demain.\nI have been learning English these four years.\tJ'ai appris l'anglais durant ces quatre années.\nI have been reflecting on what you said to me.\tJ'ai réfléchi à ce que tu m'as dit.\nI have been reflecting on what you said to me.\tJ'ai réfléchi à ce que vous m'avez dit.\nI have books that I have reread several times.\tJ'ai des livres que j'ai relus plusieurs fois.\nI have doubts about the success of their plan.\tJ'ai des doutes sur la réussite de leur plan.\nI have neither seen nor heard of such a thing.\tJe n'ai jamais vu ni entendu parler d'une telle chose.\nI have no intention of telling you the result.\tJe n'ai pas l'intention de vous faire part du résultat.\nI have no will power when it comes to dieting.\tJe n'ai aucune volonté lorsqu'il s'agit de suivre un régime.\nI have no will power when it comes to dieting.\tJe ne dispose d'aucune volonté lorsqu'il s'agit de faire un régime.\nI have rather a busy afternoon in front of me.\tJ'ai une après-midi assez remplie qui m'attend.\nI have some powerful friends who can help you.\tJe dispose d'amis puissants qui peuvent t'aider.\nI have some powerful friends who can help you.\tJe dispose d'amis puissants qui peuvent vous aider.\nI have to be home tonight before it gets dark.\tJe dois être à la maison ce soir avant qu'il ne fasse noir.\nI have to be home tonight before it gets dark.\tJe dois être chez moi ce soir avant qu'il ne fasse noir.\nI have to deliver this package to Tom Jackson.\tJe dois livrer ce paquet à Tom Jackson.\nI have to do my homework instead of going out.\tJe ne sors pas, car je dois faire mes devoirs.\nI have to go to the airport to meet my family.\tJe dois aller à l'aéroport pour rencontrer ma famille.\nI have to take the entrance examination today.\tJe dois passer l'examen d'entrée aujourd'hui.\nI have two dogs, three cats, and six chickens.\tJ'ai deux chiens, trois chats et six poules.\nI hear she is going to get married next month.\tJ'entends qu'elle va se marier le mois prochain.\nI hear she is going to get married next month.\tJ'ai entendu dire qu'elle allait se marier le mois prochain.\nI hear the Freemasons have a secret handshake.\tJ'ai ouï dire que les francs-maçons ont une poignée de main secrète.\nI hear the Freemasons have a secret handshake.\tOn me dit que les francs-maçons ont une poignée de main secrète.\nI heard Tom gave you his grandfather's violin.\tJ'ai entendu dire que Tom t'a donné le violon de son grand-père.\nI heard that he gave himself up to the police.\tJ'ai entendu qu'il s'est rendu à la police.\nI hope we're going to do something worthwhile.\tJ'espère que nous allons faire quelque chose qui vaille le coup.\nI hope we're going to do something worthwhile.\tJ'espère que nous allons faire quelque chose qui en vaut la peine.\nI just did what I thought you'd want me to do.\tJe n'ai fait que ce que je pensais que tu voudrais que je fisse.\nI just did what I thought you'd want me to do.\tJe n'ai fait que ce que je pensais que tu voudrais que je fasse.\nI just did what I thought you'd want me to do.\tJe n'ai fait que ce que je pensais que vous voudriez que je fisse.\nI just did what I thought you'd want me to do.\tJe n'ai fait que ce que je pensais que vous voudriez que je fasse.\nI just don't want to see you get disappointed.\tJe ne veux pas te voir être déçu, un point c'est tout.\nI just don't want to see you get disappointed.\tJe ne veux pas te voir être déçue, un point c'est tout.\nI just don't want to see you get disappointed.\tJe ne veux pas vous voir être déçu, un point c'est tout.\nI just don't want to see you get disappointed.\tJe ne veux pas vous voir être déçus, un point c'est tout.\nI just don't want to see you get disappointed.\tJe ne veux pas vous voir être déçue, un point c'est tout.\nI just don't want to see you get disappointed.\tJe ne veux pas vous voir être déçues, un point c'est tout.\nI just don't want to see you get disappointed.\tJe ne veux tout simplement pas vous voir être déçu.\nI just don't want to see you get disappointed.\tJe ne veux tout simplement pas vous voir être déçue.\nI just don't want to see you get disappointed.\tJe ne veux tout simplement pas vous voir être déçus.\nI just don't want to see you get disappointed.\tJe ne veux tout simplement pas vous voir être déçues.\nI just don't want to see you get disappointed.\tJe ne veux tout simplement pas te voir être déçu.\nI just don't want to see you get disappointed.\tJe ne veux tout simplement pas te voir être déçue.\nI just need a few hours to finish this report.\tJe n'ai besoin que de quelques heures pour achever ce rapport.\nI just wanted to make sure everyone was awake.\tJe voulais simplement m'assurer que tout le monde était réveillé.\nI know better than to be believe such a rumor.\tJ'ai mieux à faire que de croire à une telle rumeur.\nI know better than to be believe such a rumor.\tJe ne suis pas assez bête pour croire une telle rumeur.\nI know that I don't want to be married to you.\tJe sais que je ne veux pas être marié avec toi.\nI know that I don't want to be married to you.\tJe sais que je ne veux pas être mariée avec toi.\nI know that I don't want to be married to you.\tJe sais que je ne veux pas être marié avec vous.\nI know that I haven't been a very good father.\tJe sais que je n'ai pas été un très bon père.\nI know the photographer who took this picture.\tJe connais le photographe qui a pris cette photo.\nI know the reason why Tom was angry with them.\tJe sais la raison pour laquelle Tom était en colère contre eux.\nI know you're busy, but I could use some help.\tJe sais que tu es occupé mais je ne refuserais pas un coup de main.\nI know you're busy, but I could use some help.\tJe sais que tu es occupée mais je ne refuserais pas un coup de main.\nI know you're busy, but I could use some help.\tJe sais que vous êtes occupé mais je ne refuserais pas un coup de main.\nI know you're busy, but I could use some help.\tJe sais que vous êtes occupée mais je ne refuserais pas un coup de main.\nI know you're busy, but I could use some help.\tJe sais que vous êtes occupés mais je ne refuserais pas un coup de main.\nI know you're busy, but I could use some help.\tJe sais que vous êtes occupées mais je ne refuserais pas un coup de main.\nI know you've got more important things to do.\tJe sais que vous avez des choses plus importantes à faire.\nI know you've got more important things to do.\tJe sais que tu as des choses plus importantes à faire.\nI like English better than I like mathematics.\tJe préfère l'anglais aux mathématiques.\nI like the mountains more than I like the sea.\tJe préfère la montagne à la mer.\nI lost the camera I had bought the day before.\tJ'ai perdu l'appareil photo que j'avais acheté la veille.\nI make it a rule to take a walk every morning.\tJe me fais une règle de marcher chaque matin.\nI may not be able to cope with those problems.\tJe ne vais peut-être pas réussir à me sortir de ces problèmes.\nI met her by chance at a restaurant yesterday.\tJe l'ai rencontrée par hasard dans un restaurant hier.\nI met him just as he was coming out of school.\tJe l'ai rencontré alors qu'il sortait de l'école.\nI myself didn't have to go and meet him there.\tJe n'ai pas eu besoin d'aller le rencontrer moi-même.\nI never see you without thinking of my father.\tJe ne vous vois jamais sans penser à mon père.\nI never thought I would find a woman like you.\tJe n'ai jamais pensé que je trouverais une femme comme toi.\nI never thought I would find a woman like you.\tJe n'ai jamais pensé que je trouverais une femme telle que vous.\nI no longer wish to be a part of this project.\tJe ne veux plus être partie prenante à ce projet.\nI often spend my free time listening to music.\tJe passe souvent mon temps libre à écouter de la musique.\nI often think about the place where I met you.\tJe pense souvent au lieu où je t'ai rencontré.\nI often think about the place where I met you.\tJe pense souvent au lieu où je t'ai rencontrée.\nI once saw a man walk barefoot over hot coals.\tUne fois j'ai vu un homme marcher pieds nus sur des charbons ardents.\nI parked on the street in front of your house.\tJe me suis garé sur la rue en face de votre maison.\nI parked on the street in front of your house.\tJe me suis garée sur la rue en face de votre maison.\nI parked on the street in front of your house.\tJe me suis garé sur la rue en face de ta maison.\nI parked on the street in front of your house.\tJe me suis garée sur la rue en face de ta maison.\nI pay 30 euros for every visit to the dentist.\tJe paye 30 euros chaque fois que je vais chez le dentiste.\nI prefer reading books to watching television.\tJe préfère lire plutôt que regarder la télévision.\nI promise I'll mop the floor tomorrow morning.\tJe promets que je passerai le sol à la serpillère, demain matin.\nI promise you I won't do anything to harm you.\tJe te promets que je ne ferai rien pour te faire du mal.\nI promise you I won't do anything to harm you.\tJe vous promets que je ne ferai rien pour vous faire du mal.\nI ran into an old friend of mine this morning.\tJe suis tombé ce matin sur un vieil ami à moi.\nI really don't know what you're talking about.\tJe ne sais vraiment pas de quoi vous parlez.\nI really don't know what you're talking about.\tJe ne sais vraiment pas de quoi tu parles.\nI really don't want anything to eat right now.\tJe ne veux vraiment pas quoi que ce soit à manger pour l'instant.\nI really had to run for it to catch the train.\tJ'ai dû beaucoup courir pour attraper le train.\nI really wish I knew who painted this picture.\tJ'aimerais vraiment savoir qui a peint ce tableau.\nI regret not having studied hard for the test.\tJe regrette de ne pas avoir beaucoup étudié pour le test.\nI remember my mother teaching me the alphabet.\tJe me souviens que ma mère m'apprenait l'alphabet.\nI remember my mother teaching me the alphabet.\tJe me souviens de ma mère m'enseignant l'alphabet.\nI replied that I didn't have parents any more.\tJ'ai répondu que je n'avais plus de parents.\nI replied that I didn't have parents any more.\tJe répondis que je n'avais plus de parents.\nI sat watching an exciting game on television.\tJe me suis assis pour regarder une excitante partie à la télévision.\nI saw a movie for the first time in two years.\tC'est la première fois en 2 ans que j'ai vu un film.\nI saw an exciting baseball game last Saturday.\tJ'ai vu un match de baseball passionnant samedi dernier.\nI spoke loudly so that everyone could hear me.\tJe parlai fort, de manière à ce que chacun puisse m'entendre.\nI sprained my finger while playing volleyball.\tJe me suis foulé le doigt en jouant au volley-ball.\nI still can't remember what Tom told me to do.\tJe n'arrive toujours pas à me rappeler ce que Tom m'a dit de faire.\nI suppose I'd do the same thing if I were you.\tJe suppose que je ferais la même chose si j'étais à ta place.\nI suppose I'd do the same thing if I were you.\tJe suppose que je ferais la même chose si j'étais à votre place.\nI suppose you'll be studying all day tomorrow.\tJe suppose que vous allez étudier toute la journée de demain.\nI suppose you'll be studying all day tomorrow.\tJe suppose que tu vas étudier toute la journée de demain.\nI teach French at a nearby junior high school.\tJ'enseigne le français dans un collège du coin.\nI think I'm really in love for the first time.\tJe pense que je suis vraiment amoureux pour la première fois.\nI think he is the greatest artist of the time.\tJe pense que c'est le plus grand artiste du moment.\nI think it's time for me to abandon that idea.\tJe pense qu'il est temps pour moi de laisser tomber cette idée.\nI think it's time for me to abandon that idea.\tJe pense qu'il est temps pour moi d'abandonner cette idée.\nI think it's time for me to abandon that plan.\tJe pense qu'il est temps pour moi de laisser tomber ce projet.\nI think it's time for me to abandon that plan.\tJe pense qu'il est temps pour moi d'abandonner ce projet.\nI think it's time for me to clean the chimney.\tJe pense qu'il est temps que je nettoie la cheminée.\nI think it's time for me to sharpen my pencil.\tJe pense qu'il est temps que j'aiguise mon crayon.\nI think it's time for me to turn on the radio.\tJe pense qu'il est temps que j'allume la radio.\nI think that I should organize a little party.\tJe crois que je devrais organiser une petite fête.\nI think there's something here you should see.\tJe pense qu'il y a quelque chose que vous devriez voir.\nI think we can do this without any extra help.\tJe pense que nous pouvons le faire sans aucune aide supplémentaire.\nI think you might eventually change your mind.\tJe pense qu'il se pourrait que tu changes finalement d'avis.\nI think you might eventually change your mind.\tJe pense qu'il se pourrait que vous changiez finalement d'avis.\nI think you're going to find this interesting.\tJe pense que tu vas trouver ceci intéressant.\nI think you're going to find this interesting.\tJe pense que vous allez trouver ceci intéressant.\nI thought that he knew everything about Japan.\tJe pensais qu'il savait tout sur le Japon.\nI thought that my father was going to kill me.\tJ'ai cru que mon père allait me tuer.\nI thought your dad took away your credit card.\tJe pensais que ton père t'avait retiré ta carte de crédit.\nI thought your dad took away your credit card.\tJe pensais que votre père vous avait retiré votre carte de crédit.\nI translated everything Tom wrote into French.\tJ'ai traduit en français tout ce que Tom a écrit.\nI tried to tell Tom, but he refused to listen.\tJ'ai essayé de le dire à Tom, mais il a refusé d'écouter.\nI trust the room will be to your satisfaction.\tJ'espère que la chambre sera à votre goût.\nI vowed that I would never speak to her again.\tJ'ai juré que je ne lui parlerai plus jamais.\nI want the money you owe me and I want it now.\tJe veux l'argent que vous me devez et je le veux maintenant !\nI want the money you owe me and I want it now.\tJe veux l'argent que tu me dois et je le veux maintenant !\nI want to believe that everything's all right.\tJe veux croire que tout va bien.\nI want to get married and I want to have kids.\tJe veux me marier et avoir des enfants.\nI want to get married and I want to have kids.\tJe veux me caser et avoir des enfants.\nI want to know the truth about my son's death.\tJe veux connaître la vérité au sujet du décès de mon fils.\nI want to leave this city and never come back.\tJe veux quitter cette ville et ne jamais revenir.\nI want to see you in my office this afternoon.\tJe veux vous voir cet après-midi dans mon bureau.\nI want to see you in my office this afternoon.\tJe veux te voir cet après-midi dans mon bureau.\nI want to see you in my office this afternoon.\tJe veux vous voir cette après-midi dans mon bureau.\nI want to see you in my office this afternoon.\tJe veux te voir cette après-midi dans mon bureau.\nI want to study Japan's history at university.\tJe veux étudier l'histoire du Japon à l'université.\nI want you to explain it to me in more detail.\tJe veux que tu me l'expliques plus en détail.\nI want you to explain it to me in more detail.\tJe veux que vous me l'expliquiez plus en détail.\nI want you to know that Tom's important to me.\tJe veux que tu saches que Tom est important pour moi.\nI want you to know that Tom's important to me.\tJe veux que vous sachiez que Tom est important pour moi.\nI want you to know what's true and what's not.\tJe veux que tu saches ce qui est vrai et ce qui ne l'est pas.\nI want you to know what's true and what's not.\tJe veux que vous sachiez ce qui est vrai et ce qui ne l'est pas.\nI wanted you to see that I'm not all that bad.\tJe voulais que tu constates que je ne suis pas si mauvais.\nI wanted you to see that I'm not all that bad.\tJe voulais que vous constatiez que je ne suis pas si mauvais.\nI was able to find the book I was looking for.\tJ'ai réussi à trouver le livre que je recherchais.\nI was about to leave my house when she called.\tJ'étais sur le point de sortir de chez moi quand elle m'a appelée.\nI was absent from school because I had a cold.\tJ'étais absent de l'école car j'avais un rhume.\nI was so excited that I could not fall asleep.\tJ'étais énervé si bien que je ne pouvais m'endormir.\nI was very tired, so I fell asleep right away.\tJ'étais très fatigué alors je me suis immédiatement endormi.\nI was very tired, so I fell asleep right away.\tJ'étais très fatiguée alors je me suis immédiatement endormie.\nI went to the hospital to have my eyes tested.\tJe suis allé à l'hôpital pour faire examiner mes yeux.\nI will come up with a solution to the problem.\tJe vais trouver une solution au problème.\nI will keep on smoking no matter what you say.\tJe continuerai de fumer quoi que vous disiez.\nI will look after your cat while you are away.\tJe prendrai soin de votre chat quand vous serez partis.\nI will tell him the news as soon as I see him.\tJe lui raconterai la nouvelle dès que je le verrai.\nI will write letters to you as often as I can.\tJe t'écrirai des lettres aussi souvent que possible.\nI wish I had the will power to stay on a diet.\tJ'aimerais disposer de la volonté de me tenir à un régime.\nI wish that we could spend more time together.\tJ'aimerais que nous puissions passer davantage de temps ensemble.\nI wonder where to hang the picture he gave me.\tJe me demande où accrocher la photo qu'il m'a donnée.\nI would be very grateful if you would help me.\tJe te serais très reconnaissant si tu voulais bien m'aider.\nI would buy it, except that it costs too much.\tJe l’achèterais s'il ne coûtait pas aussi cher.\nI would like to call on you one of these days.\tJ'aimerais te rendre visite un de ces jours.\nI would like to read some books about Lincoln.\tJe voudrais lire quelques livres sur Lincoln.\nI would like to retract my previous statement.\tJe voudrais revenir sur ma déclaration précédente.\nI'd be willing to do anything to get that job.\tJe serais prêt à faire n'importe quoi pour obtenir cet emploi.\nI'd like to add some information to my report.\tJe voudrais ajouter quelques informations à mon rapport.\nI'd like to make an appointment with Dr. King.\tJe souhaiterais prendre rendez-vous avec le docteur King.\nI'd like to read some books about the Beatles.\tJ'aimerais lire des livres sur les Beatles.\nI'd like to remind you that you're under oath.\tJ'aimerais vous rappeler que vous êtes sous serment.\nI'd like to remind you that you're under oath.\tJ'aimerais te rappeler que tu es sous serment.\nI'd like to say a few words by way of apology.\tJ'aimerais dire quelques mots pour m'excuser.\nI'd like you to help me install this software.\tJ'aimerais que vous m'aidiez à installer ce logiciel.\nI'll be back in time for my mother's birthday.\tJe serai de retour à temps pour l'anniversaire de ma mère.\nI'll be with you as soon as I finish this job.\tJe serai avec toi aussitôt après que je termine ce travail.\nI'll come straight to the point. You're fired.\tJe vais être direct. Vous êtes viré.\nI'll come to visit you at your house tomorrow.\tJe viendrai te rendre visite demain chez toi.\nI'll come to visit you at your house tomorrow.\tJe viendrai vous rendre visite demain chez vous.\nI'll get my son to go instead of going myself.\tJ'enverrais mon fils plutôt que d'y aller moi-même.\nI'll give you anything you want within reason.\tJe te donnerai tout ce que tu veux dans les limites du raisonnable.\nI'll help you after work if I'm not too tired.\tJe t'aiderai après le travail si je ne suis pas trop fatigué.\nI'll help you after work if I'm not too tired.\tJe vous aiderai après le travail si je ne suis pas trop las.\nI'll help you within the limits of my ability.\tJe vous aiderai dans la mesure de mes possibilités.\nI'll help you within the limits of my ability.\tJe t'aiderai dans la mesure de mes possibilités.\nI'll look after your child while you are away.\tJe surveillerai ton enfant pendant que tu es partie.\nI'll look after your child while you are away.\tJe surveillerai votre enfant pendant que vous êtes parti.\nI'll look after your child while you are away.\tJe surveillerai votre enfant pendant que vous êtes partie.\nI'll look after your child while you are away.\tJe surveillerai votre enfant pendant que vous êtes partis.\nI'll look after your child while you are away.\tJe surveillerai ton enfant pendant que tu es parti.\nI'll look after your child while you are away.\tJe prendrai soin de votre enfant pendant que vous êtes partie.\nI'm asking you to do this because I trust you.\tJe te demande de le faire parce que j'ai confiance en toi.\nI'm asking you to do this because I trust you.\tJe vous demande de le faire parce que j'ai confiance en vous.\nI'm looking for my passport. Have you seen it?\tJe cherche mon passeport. L'avez-vous vu ?\nI'm looking for my passport. Have you seen it?\tJe cherche mon passeport. L'as-tu vu ?\nI'm looking forward to seeing you next Sunday.\tJe me réjouis de te voir dimanche prochain.\nI'm moving, so I need boxes for my belongings.\tJe déménage, alors j'ai besoin de cartons pour mes affaires.\nI'm nervous when speaking in another language.\tJe suis nerveux lorsque je parle une autre langue.\nI'm nervous when speaking in another language.\tJe suis nerveuse lorsque je parle une autre langue.\nI'm not above begging in order to get the job.\tJ'irais jusqu'à mendier afin d'obtenir ce poste.\nI'm not allowed to tell what you want to know.\tJe ne suis pas autorisé à te dire ce que tu veux savoir.\nI'm not going to stay if you don't want me to.\tJe ne vais pas rester si tu ne le veux pas.\nI'm not going to stay if you don't want me to.\tJe ne vais pas rester si vous ne le voulez pas.\nI'm not the guy you want making this decision.\tJe ne suis pas le type dont tu veux qu'il prenne cette décision.\nI'm not the same fool I was fifteen years ago.\tJe ne suis plus l'idiot que j'étais il y a quinze ans.\nI'm out of breath after running up the stairs.\tJ'ai le souffle coupé d'avoir monté les marches quatre à quatre.\nI'm planning on staying at his place tomorrow.\tJ'envisage de rester chez lui demain.\nI'm secretly in love with someone else's wife.\tJe suis secrètement amoureux de la femme de quelqu'un d'autre.\nI'm sending you a birthday present by airmail.\tJe t'envoie un cadeau d'anniversaire par le courrier aérien.\nI'm sorry to disturb you while you're talking.\tJe suis désolé de vous déranger pendant que vous parlez.\nI'm sorry, I don't let in people I don't know.\tJe suis désolé, je n'admets pas les gens que je ne connais pas.\nI'm sorry, but I don't speak French very well.\tJe suis désolé mais je ne parle par très bien le français.\nI'm sorry, but I don't speak French very well.\tJe suis désolée mais je ne parle par très bien le français.\nI'm sorry, but my mother is out at the moment.\tDésolé, ma mère n'est pas là pour le moment.\nI'm sure I can find something for you to wear.\tJe suis sûr de pouvoir trouver quelque chose à vous mettre.\nI'm sure I can find something for you to wear.\tJe suis sûre de pouvoir trouver quelque chose à te mettre.\nI'm sure my parents won't let me go by myself.\tJe suis certain que mes parents ne me laisseront pas aller seul.\nI'm sure my parents won't let me go by myself.\tJe suis certain que mes parents ne me laisseront pas y aller seul.\nI'm sure my parents won't let me go by myself.\tJe suis certain que mes parents ne me laisseront pas partir seul.\nI'm sure my parents won't let me go by myself.\tJe suis certaine que mes parents ne me laisseront pas aller seule.\nI'm sure my parents won't let me go by myself.\tJe suis certaine que mes parents ne me laisseront pas y aller seule.\nI'm sure my parents won't let me go by myself.\tJe suis certaine que mes parents ne me laisseront pas partir seule.\nI'm surprised they didn't have anything to do.\tJe suis surpris qu'ils n'aient eu quoi que ce soit à faire.\nI'm surprised they didn't have anything to do.\tJe suis surprise qu'ils n'aient eu quoi que ce soit à faire.\nI'm surprised they didn't have anything to do.\tJe suis surpris qu'elles n'aient eu quoi que ce soit à faire.\nI'm surprised they didn't have anything to do.\tJe suis surprise qu'elles n'aient eu quoi que ce soit à faire.\nI'm thinking of learning Korean next semester.\tJe pense apprendre le coréen le semestre prochain.\nI'm too tired to think about this problem now.\tJe suis trop fatigué pour réfléchir maintenant à ce problème.\nI'm trying to find a lawyer to handle my case.\tJ'essaye de trouver un avocat pour s'occuper de mon affaire.\nI'm visiting a friend of mine in the hospital.\tJe rends visite à un ami à moi à l'hôpital.\nI'm visiting a friend of mine in the hospital.\tJe rends visite à une amie à moi à l'hôpital.\nI've already rescheduled my appointment twice.\tJ'ai déjà reprogrammé mon rendez-vous deux fois.\nI've already rescheduled my appointment twice.\tJ'ai déjà remis mon rendez-vous deux fois.\nI've always dreamed of owning my own business.\tJ'ai toujours rêvé de posséder ma propre entreprise.\nI've always dreamed of owning my own business.\tJ'ai toujours rêvé d'avoir ma propre entreprise.\nI've always wanted to write a children's book.\tJ'ai toujours voulu écrire un livre pour enfants.\nI've been bitten by mosquitos all over my arm.\tJ'ai été mordu par des moustiques sur tout le bras.\nI've been in love with you since kindergarten.\tJe suis amoureux de toi depuis l'école maternelle.\nI've been waiting for this moment all my life.\tJ'ai attendu ce moment toute ma vie.\nI've heard that some people sleep in bathtubs.\tJ'ai entendu que des gens s'endorment dans leurs baignoires.\nI've learned to live with the pain in my back.\tJ'ai appris à vivre avec la douleur dans mon dos.\nI've never been able to handle responsibility.\tJe n'ai jamais été capable de prendre en main des responsabilités.\nI've never been so embarrassed in all my life.\tJe n'ai jamais été aussi gêné de toute ma vie.\nI've never been so embarrassed in all my life.\tJe n'ai jamais été aussi gênée de toute ma vie.\nI've never been under so much pressure before.\tJe n'ai jamais été autant mis à l'épreuve.\nIf anything happens here, can I depend on you?\tSi quoi que ce soit se produit ici, puis-je compter sur toi ?\nIf anything happens here, can I depend on you?\tSi quoi que ce soit se produit ici, puis-je compter sur vous ?\nIf it is fine tomorrow, we will play baseball.\tS'il fait beau demain, nous irons jouer au baseball.\nIf it rains, the excursion will be called off.\tEn cas de pluie, l'excursion sera annulée.\nIf the car is gone, he can't be at the office.\tS'il n'y a plus la voiture, il ne peut pas être au bureau.\nIf the phone rings again, I plan to ignore it.\tSi le téléphone sonne encore, mon intention est de l'ignorer.\nIf the phone rings again, I plan to ignore it.\tSi le téléphone sonne de nouveau, j'ai l'intention de l'ignorer.\nIf the phone rings again, I plan to ignore it.\tSi le téléphone sonne à nouveau, j'ai l'intention de l'ignorer.\nIf the phone rings again, I plan to ignore it.\tSi le téléphone sonne encore, j'ai l'intention de l'ignorer.\nIf you do your best, you're likely to succeed.\tSi tu fais de ton mieux, tu réussiras probablement.\nIf you do your best, you're likely to succeed.\tSi vous faites de votre mieux, vous réussirez probablement.\nIf you don't trust them, they won't trust you.\tSi vous ne vous fiez pas à eux, ils ne se fieront pas à vous.\nIf you don't trust them, they won't trust you.\tSi vous ne vous fiez pas à elles, elles ne se fieront pas à vous.\nIf you don't trust them, they won't trust you.\tSi tu ne te fies pas à eux, ils ne se fieront pas à toi.\nIf you don't trust them, they won't trust you.\tSi tu ne te fies pas à elles, elles ne se fieront pas à toi.\nIf you don't want me to stay here, I'll leave.\tSi tu ne veux pas que je reste ici, je partirai.\nIf you don't want me to stay here, I'll leave.\tSi vous ne voulez pas que je reste ici, je partirai.\nIf you don't want to do it, you don't have to.\tSi tu ne veux pas le faire, tu n'y es pas obligé.\nIf you don't want to do it, you don't have to.\tSi vous ne voulez pas le faire, vous n'y êtes pas obligé.\nIf you don't want to do it, you don't have to.\tSi tu ne veux pas le faire, tu n'y es pas obligée.\nIf you don't want to do it, you don't have to.\tSi vous ne voulez pas le faire, vous n'y êtes pas obligés.\nIf you don't want to do it, you don't have to.\tSi vous ne voulez pas le faire, vous n'y êtes pas obligée.\nIf you don't want to do it, you don't have to.\tSi vous ne voulez pas le faire, vous n'y êtes pas obligées.\nIf you find a mistake, please leave a comment.\tSi vous trouvez une erreur, merci de laisser un commentaire.\nIf you go near a camel, you risk being bitten.\tSi vous approchez d'un chameau, vous risquez d'être mordu.\nIf you take this medicine, you'll feel better.\tSi vous prenez ce remède, vous vous sentirez mieux.\nIf you take this medicine, you'll feel better.\tSi tu prends ce remède, tu te sentiras mieux.\nIf you want one, you'll have to find your own.\tSi tu en veux une, il te faudra trouver la tienne.\nIf you want one, you'll have to find your own.\tSi vous en voulez une, il vous faudra trouver la vôtre.\nIf you want one, you'll have to find your own.\tSi vous en voulez un, il vous faudra trouver le vôtre.\nIf you want one, you'll have to find your own.\tSi tu en veux un, il te faudra trouver le tien.\nIf your tooth hurts, you should see a dentist.\tSi ta dent te fait mal, tu devrais aller voir un dentiste.\nImagination affects every aspect of our lives.\tL'imagination affecte tous les aspects de notre vie.\nIn Japan, the new school year begins in April.\tAu Japon, la nouvelle année scolaire commence en avril.\nIn case anything happens, call me immediately.\tAu cas où il se passe quoi que ce soit, téléphone-moi immédiatement !\nIn case anything happens, call me immediately.\tAu cas où il se passe quoi que ce soit, téléphonez-moi immédiatement !\nIn fact, the opposite is more likely to occur.\tEn fait, l'inverse est davantage susceptible de se produire.\nIn hot weather, water evaporates more quickly.\tPar temps chaud l'eau s'évapore plus rapidement.\nIn other words, I don't like to work with him.\tEn d'autres mots, je n'aime pas travailler avec lui.\nIn short, all our efforts resulted in nothing.\tEn résumé, tous nos efforts n'ont mené à rien.\nIn the United States, school buses are yellow.\tAux États-Unis, les bus scolaires sont jaunes.\nIn this town, there is only one train station.\tDans cette ville, il n'y a qu'une gare.\nIn those days, few people could travel abroad.\tÀ l'époque, peu de gens pouvaient voyager à l'étranger.\nInstead of complaining, maybe you should help.\tAu lieu de te plaindre, tu devrais peut-être aider.\nInstead of complaining, maybe you should help.\tAu lieu de vous plaindre, vous devriez peut-être aider.\nInstead of going to school, he stayed at home.\tAu lieu d'aller à l'école, il est resté à la maison.\nIs it a disgrace to be divorced with children?\tEst-il honteux d'être divorcé avec des enfants ?\nIs it true that chicken soup will cure a cold?\tEst il vrai qu'une soupe de poulet guérira un rhume ?\nIs the world more mad than usual this morning?\tLe monde est-il ce matin plus fou que d'habitude ?\nIs there anyone who doesn't have one of these?\tY a-t-il quelqu'un qui n'a pas l'un de ceux-ci ?\nIs there anyone who doesn't have one of these?\tQuiconque est-il dépourvu de l'un de ceux-ci ?\nIs there something in the fridge we can drink?\tY a-t-il au frigo quelque chose qu'on puisse boire ?\nIs this the reason you didn't want me to come?\tEst-ce là la raison pour laquelle tu n'as pas voulu que je vienne ?\nIs this the reason you didn't want me to come?\tEst-ce là la raison pour laquelle vous n'avez pas voulu que je vienne ?\nIt could be a trap. Don't let your guard down.\tCela pourrait être un piège. Faites attention.\nIt is dangerous for you to swim in this river.\tC'est dangereux pour toi de nager dans cette rivière.\nIt is difficult to convey the meaning exactly.\tC'est difficile de traduire précisément la signification.\nIt is important for old people to stay strong.\tIl est important que les personnes âgées restent fortes.\nIt is like looking for a needle in a haystack.\tAutant chercher une aiguille dans une botte de foin.\nIt is no use blaming him for the accident now.\tÇa ne sert à rien de lui reprocher encore l'accident maintenant.\nIt is no use blaming him for the accident now.\tÇa ne sert à rien de lui reprocher l'accident maintenant.\nIt is not too much to say that he is a genius.\tIl n'est pas excessif de dire que c'est un génie.\nIt is too difficult a problem for me to solve.\tCe problème est trop difficile à résoudre pour moi.\nIt is true that he is young, but he is clever.\tC'est vrai qu'il est jeune, mais il est intelligent.\nIt is very hard to live up to your reputation.\tIl est très difficile d'être à la hauteur de votre réputation.\nIt looks like he'll be coming here next month.\tIl semble qu'il viendra ici le mois prochain.\nIt looks like we're in for some nasty weather.\tOn dirait qu'on est parti pour avoir du mauvais temps.\nIt never occurred to me that I might be fired.\tIl ne m'est jamais venu à l'esprit que je pourrais être viré.\nIt never occurred to me that I might be wrong.\tIl ne m'est jamais venu à l'esprit que je pourrais avoir tort.\nIt seems a cruel thing to clip a bird's wings.\tCouper les ailes d'un oiseau semble une chose cruelle.\nIt seems like we're going to be a little late.\tIl semble que nous serons un peu en retard.\nIt seems that she is not pleased with the job.\tIl semble quelle ne soit pas enchantée par le poste.\nIt started raining just as I was leaving home.\tIl s'est mit à pleuvoir juste quand je suis parti de chez moi.\nIt takes about 15 minutes to get to my office.\tÇa prend environ quinze minutes de se rendre à mon bureau.\nIt took one week to locate their hiding place.\tIl fallut une semaine pour localiser leur cachette.\nIt was careless of him to make such a mistake.\tC'était négligent de sa part de faire une telle erreur.\nIt was cheaper than I had thought it would be.\tC'était moins cher que je l'avais pensé.\nIt was not long before we met again by chance.\tIl ne s'écoula pas beaucoup de temps avant que nous nous rencontrassions de nouveau par hasard.\nIt was not my intention to hurt your feelings.\tTe blesser n'était pas dans mes intentions.\nIt was not my intention to hurt your feelings.\tVous blesser n'était pas dans mes intentions.\nIt'll be easy to find a renter for this house.\tIl sera facile de trouver un locataire pour cette maison.\nIt's a miracle that he survived the hurricane.\tC'est un miracle qu'il ait surveçu l'ouragan.\nIt's a nice day and I feel like taking a walk.\tC'est une belle journée et j'ai envie de faire une promenade.\nIt's clear from his actions that he loves her.\tIl est clair, d'après ses actions, qu'il l'aime.\nIt's difficult to balance a ball on your nose.\tIl est difficile de garder une balle en équilibre sur son nez.\nIt's going to rain. Look at those dark clouds.\tIl va bientôt pleuvoir. Regarde ces nuages noirs.\nIt's hard to support a family on minimum wage.\tIl est difficile de subvenir aux besoins d'une famille en touchant le SMIC.\nIt's important that I be informed immediately.\tIl est important d'être informé immédiatement.\nIt's next to impossible to finish it in a day.\tC'est proche de l'impossible de finir ça en un jour.\nIt's not easy for me to travel alone in Japan.\tCe n'est pas facile pour moi de voyager au Japon.\nIt's not what he said, but the way he said it.\tCe n'est pas ce qu'il a dit, mais la manière dont il l'a dit.\nIt's one of the best books I've read in years.\tC'est l'un des meilleurs livres que j'ai lus depuis des années.\nIt's quite clear to me that this is the truth.\tC'est plutôt clair pour moi que c'est la vérité.\nIt's quite clear to me that this is the truth.\tIl est clair pour moi que c'est la vérité.\nIt's the first thing that I do in the morning.\tC'est la première chose que j'effectue le matin.\nIt's up to you to decide whether or not to go.\tC'est ta responsabilité de savoir si tu y vas ou pas.\nJapanese love to soak in a hot tub before bed.\tLes japonais aiment prendre un bain chaud avant de se coucher.\nJazz fusion is a combination of rock and jazz.\tLe Jazz fusion est un mélange de rock et de jazz.\nJust pull the door shut. It'll lock by itself.\tPousse juste la porte. Elle se verrouille toute seule.\nLast year saw a big political change in Japan.\tL'année dernière a connu d'importants changements politiques au Japon.\nLet's not waste any more of each other's time.\tNe gâchons plus le temps l'un de l'autre !\nLet's start with the easy questions, shall we?\tCommençons par les questions faciles, d'accord ?\nLogic is the beginning of wisdom, not the end.\tLa logique est le commencement de la sagesse, pas sa fin.\nLogic is the beginning of wisdom, not the end.\tLa logique est le commencement de la sagesse, non sa fin.\nLook out for pedestrians when you drive a car.\tFaites attention aux piétons lorsque vous conduisez en voiture.\nLooters stole ancient artifacts from the tomb.\tDes pillards ont dérobé des objets antiques de la tombe.\nMake sure you cut the board against the grain.\tAssurez-vous de couper la planche dans le sens contraire du fil.\nMany atrocities were committed during the war.\tDe nombreuses atrocités ont été commises pendant la guerre.\nMany children at this school are malnourished.\tDe nombreux enfants de cette école sont mal nourris.\nMany companies advertise their products on TV.\tBeaucoup d'entreprises font de la publicité sur leur produits à télé.\nMarriage is a dinner that begins with dessert.\tLe mariage est un dîner qui commence par le dessert.\nMary is one of the richest women in the world.\tMarie est l'une des femmes les plus riches du monde.\nMary separated from her husband two years ago.\tMarie s'est séparée de son mari il y a deux ans.\nMary will stop at nothing to achieve her goal.\tMarie n'épargnera rien pour atteindre son objectif.\nMaybe Tom didn't do what everyone says he did.\tPeut-être que Tom n'a pas fait ce que tout le monde dit qu'il a fait.\nMaybe Tom should quit before he hurts himself.\tTom devrait peut-être arrêter avant de se faire du mal.\nMembers of that tribe settled along the river.\tLes membres de cette tribu se sont établis le long du fleuve.\nMembers of that tribe settled along the river.\tLes membres de cette tribu se sont installés le long de la rivière.\nMilk boils at a higher temperature than water.\tLe lait bout à plus haute température que l'eau.\nMillions of people starve to death every year.\tChaque année, des millions de gens meurent de faim.\nMost big Japanese companies depend on exports.\tLa plupart des grandes entreprises japonaises dépendent des exportations.\nMost employees expect a pay raise once a year.\tLa plupart des employés attendent une augmentation de salaire une fois par an.\nMost people only want to hear their own truth.\tLa plupart des gens ne veulent qu'entendre leur propre vérité.\nMother advised me to take a walk for a change.\tMère me conseilla de faire une promenade, pour changer.\nMusical talent usually blooms at an early age.\tLe talent musical s'épanouit généralement à un âge précoce.\nMy brother loves taking pictures of mountains.\tMon frère adore prendre des photos des montagnes.\nMy dream is to live peacefully in the village.\tMon rêve est de vivre paisiblement dans un village.\nMy faith in the next generation is increasing.\tMa confiance dans la prochaine génération croit.\nMy father always sleeps while watching the TV.\tMon père s'endort toujours quand il regarde la TV.\nMy father banks part of his salary every week.\tChaque semaine, mon père épargne une partie de son salaire.\nMy father is going to make a trip to New York.\tMon père va faire un voyage à New York.\nMy father is proud of being tall and handsome.\tMon père est fier d'être grand et élégant.\nMy father is too stubborn to admit his faults.\tMon père est trop têtu pour admettre ses fautes.\nMy father is two years younger than my mother.\tMon père est deux ans plus jeune que ma mère.\nMy father tried to teach us the value of work.\tMon père a essayé de nous enseigner la valeur du travail.\nMy father used to read books to me at bedtime.\tMon père me lisait des livres au moment du coucher.\nMy father used to read books to me at bedtime.\tMon père avait l'habitude de me lire des livres au moment du coucher.\nMy friend asked me if I was feeling all right.\tMon ami me demanda si je me sentais bien.\nMy friends dropped by to see me the other day.\tAvant-hier mes amis sont passés me voir un moment.\nMy grandparents were born in the last century.\tMes grands-parents sont nés au siècle dernier.\nMy life would be completely empty without you.\tMa vie serait complètement vide, sans toi.\nMy life would be completely empty without you.\tMa vie, sans toi, serait complètement vide.\nMy mother goes to the hospital in the morning.\tMa mère se rend à l'hôpital dans la matinée.\nMy mother goes to the hospital in the morning.\tMa mère se rend à l'hôpital le matin.\nMy muscles ached from playing tennis too much.\tJ'avais mal aux muscles à force de trop jouer au tennis.\nMy new job leaves me little time to socialize.\tMon nouvel emploi me laisse peu de temps pour rencontrer des gens.\nMy sister asked me to lend her the dictionary.\tMa sœur m'a demandé de lui prêter le dictionnaire.\nMy son is going to leave for France next week.\tMon fils va partir pour la France la semaine prochaine.\nMy son is going to leave for France next week.\tMon fils part pour la France la semaine prochaine.\nMy wife has faults. None the less, I love her.\tMa femme a fauté. Néanmoins, je l'aime.\nMy wife holds the purse strings in our family.\tC'est ma femme qui tient les cordons de la bourse dans notre famille.\nMy wife is always complaining about something.\tMa femme se plaint toujours de quelque chose.\nNapoleon lived in exile on the island of Elba.\tNapoléon vécut en exil sur l'île d'Elbe.\nNever did I expect to see her in such a place.\tJe n'aurais jamais cru la rencontrer dans un tel endroit.\nNever rub your eyes when your hands are dirty.\tNe vous frottez jamais les yeux lorsque vos mains sont souillées.\nNo criminal charges will be filed against you.\tAucune charge ne sera retenue contre vous.\nNo criminal charges will be filed against you.\tAucune charge ne sera retenue contre toi.\nNo criminal charges will be filed against you.\tVous ne ferez l'objet d'aucune incrimination.\nNo matter what happens, don't forget to smile.\tQuoi qu'il arrive, n'oublie pas de sourire.\nNo, I'm not mad at you, I'm just disappointed.\tNon, je ne t'en veux pas, je suis seulement déçu.\nNobody can see this movie without being moved.\tPersonne ne peut voir ce film sans être ému.\nNuclear power is used to generate electricity.\tOn utilise l'énergie nucléaire pour produire de l'électricité.\nOats have long been food for horses and mules.\tL'avoine est depuis longtemps une nourriture pour les chevaux et les mules.\nOfficially, he works for us as an interpreter.\tOfficiellement, il travaille pour nous en tant qu'interprète.\nOn hearing the bad news, she burst into tears.\tEn entendant les mauvaises nouvelles elle éclata en sanglots.\nOne of my favorite authors is Herman Melville.\tL'un de mes écrivains préférés est Herman Melville.\nOne's teachers should be treated with respect.\tOn devrait traiter ses enseignants avec respect.\nOur apartment is starting to look pretty cool.\tNotre appartement commence à avoir de la gueule.\nOur team did not reach the playoffs this year.\tNotre équipe n'a pas atteint, cette année, les phases finales.\nOur ultimate goal is to establish world peace.\tNotre ultime but est d'établir la paix dans le monde.\nOur world is only a tiny part of the universe.\tNotre monde est seulement une minuscule partie de l'univers.\nOver the holidays, I spent days doing nothing.\tPendant les vacances, j'ai passé des jours à ne rien faire.\nParents provide protection for their children.\tLes parents assurent la protection de leurs enfants.\nPeople are protesting against nuclear weapons.\tDes gens sont en train de manifester contre les armes nucléaires.\nPeople who wait on you here are very friendly.\tLes gens qui vous servent ici sont très aimables.\nPlease do not enter the room without knocking.\tVeuillez ne pas entrer dans la pièce sans frapper.\nPlease don't blow your nose on the tablecloth.\tJe te prie de ne pas te moucher dans la nappe.\nPlease don't hesitate to ask me any questions.\tS'il vous plaît, n'hésitez pas à me poser des questions.\nPlease have my baggage brought to the station.\tVeuillez faire porter mes bagages à la gare !\nPlease just tell me what it is you want to do.\tJe te prie de simplement me dire ce que tu veux.\nPlease pick me up at the hotel at six o'clock.\tPassez me prendre à l'hôtel à six heures, s'il vous plaît.\nPlease put this where children can't reach it.\tMettez ça hors de portée des enfants, s'il vous plaît.\nPlease send me a letter as soon as you arrive.\tVeuillez m'écrire une lettre dès que vous arrivez.\nPlease speak louder so everybody can hear you.\tS'il vous plaît, parlez plus fort pour que tout le monde vous entende.\nPlease tell me your name and telephone number.\tDonnez-moi votre nom et numéro de téléphone.\nPlease turn down the volume a little bit more.\tS'il vous plaît, baissez un peu le volume.\nPlease turn off the light so that I can sleep.\tMerci d'éteindre la lumière que je puisse dormir.\nPlease turn off the light so that I can sleep.\tÉteins la lumière que je puisse dormir, s'il te plait.\nPlease turn off the light so that I can sleep.\tÉteignez la lumière que je puisse dormir, je vous prie.\nPlease turn out the light so that I can sleep.\tMerci d'éteindre la lumière que je puisse dormir.\nPlease turn out the light so that I can sleep.\tÉteins la lumière que je puisse dormir, s'il te plait.\nPlease turn out the light so that I can sleep.\tÉteignez la lumière que je puisse dormir, je vous prie.\nPretty flowers do not necessarily smell sweet.\tLes jolies fleurs ne sentent pas nécessairement bon.\nPreviously people believed the earth was flat.\tAvant, les gens croyaient que la Terre était plate.\nPungent fumes arose from the chemical mixture.\tD'âcres vapeurs émanaient de la composition chimique.\nPut this medicine where children can't get it.\tRange ces médicaments où les enfants ne pourront pas les trouver.\nQuit sitting on the fence and make a decision!\tArrête d'hésiter et prend une décision !\nRoosevelt and Willkie discussed the situation.\tRoosevelt et Willkie discutèrent de la situation.\nScience can be used for good or evil purposes.\tLa science peut être employée à bon ou à mauvais escient.\nScience does not solve all of life's problems.\tLa science ne résout pas tous les problèmes de la vie.\nSeen from space, Earth seems relatively small.\tVue de l'espace, la Terre semble relativement petite.\nSeveral American warships were sent to Panama.\tNombre de navires de guerre étasuniens furent envoyés à Panama.\nShe acted as if she didn't care what happened.\tElle agit comme si elle ne s'occupait pas de ce qui était arrivé.\nShe burned herself while lighting a cigarette.\tElle s'est brûlée en allumant une cigarette.\nShe came back ten minutes after the explosion.\tElle est revenue dix minutes après l'explosion.\nShe came very near to being run over by a car.\tElle a bien failli être renversée par une voiture.\nShe couldn't convince him to accept the bribe.\tElle ne pourrait le convaincre d'accepter le pot-de-vin.\nShe couldn't convince him to accept the bribe.\tElle ne put le convaincre d'accepter le pot-de-vin.\nShe couldn't convince him to accept the bribe.\tElle n'a pas pu le convaincre d'accepter le pot-de-vin.\nShe cremated him within 24 hours of his death.\tElle le fit incinérer dans les vingt-quatre heures suivant son décès.\nShe does not speak English as fluently as you.\tElle ne parle pas aussi couramment anglais que toi.\nShe doesn't like to leave anything unfinished.\tElle n'aime pas laisser quoi que ce soit inachevé.\nShe dog-eared the page and set the book aside.\tElle corna la page et mis le livre de côté.\nShe expected him to buy her an expensive gift.\tElle s'attendait à ce qu'il lui achète un cadeau de valeur.\nShe failed in her attempt to swim the Channel.\tElle a échoué dans sa tentative de traverser la Manche à la nage.\nShe has an important role in our organization.\tElle joue un rôle important au sein de notre organisation.\nShe insisted that he should stay where he was.\tElle insista pour qu'il reste où il était.\nShe intends to play tennis tomorrow afternoon.\tElle prévoit de jouer au tennis demain après-midi.\nShe is always complaining of her small salary.\tElle se plaint sans arrêt de son faible salaire.\nShe is always finding fault with other people.\tElle trouve toujours à redire aux autres.\nShe is busy at present and can't speak to you.\tElle est occupée pour l'instant et ne peut vous parler.\nShe is busy at present and can't speak to you.\tElle est occupée pour l'instant et ne peut te parler.\nShe is different from her sister in every way.\tElle est différente de sa sœur en tout point.\nShe is no less charming than her older sister.\tElle n'est pas moins charmante que sa grande sœur.\nShe is now better off than when she was young.\tElle est maintenant plus à l'aise que quand elle était jeune.\nShe is proficient in both Spanish and Italian.\tElle est très compétente en espagnol et en italien.\nShe is very nervous and is always ill at ease.\tElle est extrêmement nerveuse et toujours agitée.\nShe isn't old enough to get a driving license.\tElle n'est pas assez grande pour obtenir son permis de conduire.\nShe knew better than to tell him such a story.\tElle n'était pas bête au point de lui raconter une telle histoire.\nShe lost her only son in the traffic accident.\tElle a perdu son fils unique dans l'accident de la route.\nShe loved me in the same way that I loved her.\tElle m'aimait de la même manière que je l'aimais.\nShe must have forgotten all about the promise.\tElle a certainement complètement oublié sa promesse.\nShe must've been beautiful when she was young.\tC'était certainement une belle femme quand elle était jeune.\nShe said, \"I owe it to him that I am popular.\"\t\"C'est à lui que je dois ma popularité\", dit-elle.\nShe sat there silently with tears in her eyes.\tElle s'assit là silencieusement avec des larmes aux yeux.\nShe seems to be nervous about her first class.\tElle a l'air anxieuse vis-à-vis de son premier cours.\nShe sent me a present in return for my advice.\tElle m'a envoyé un cadeau en remerciement de mes conseils.\nShe spends a lot of time practicing the piano.\tElle passe beaucoup de temps à exercer son piano.\nShe spends a major part of her income on food.\tElle dépense la majeure partie de son salaire en nourriture.\nShe suggested that I go to the store with him.\tElle suggéra que j'aille au magasin avec lui.\nShe suggested that I go to the store with him.\tElle a suggéré que j'aille au magasin avec lui.\nShe suggested that I go to the store with him.\tElle suggéra que je me rende au magasin avec lui.\nShe suggested that I go to the store with him.\tElle a suggéré que je me rende au magasin avec lui.\nShe sympathized with those unfortunate people.\tElle a éprouvé de la compassion pour ces malheureux.\nShe talked him into buying her a diamond ring.\tElle le persuada de lui acheter une bague en diamant.\nShe volunteered to go to the meeting with him.\tElle se porta volontaire pour aller à la réunion avec lui.\nShe volunteered to go to the meeting with him.\tElle offrit d'aller à la réunion avec lui.\nShe volunteered to go to the meeting with him.\tElle s'est portée volontaire pour aller à la réunion avec lui.\nShe volunteered to go to the meeting with him.\tElle a offert d'aller à la réunion avec lui.\nShe walked past him without even noticing him.\tElle le dépassa en marchant, sans même le remarquer.\nShe was able to kill two birds with one stone.\tElle a su faire d'une pierre deux coups.\nShe was advised by him on how to stay healthy.\tElle a été conseillée par lui sur comment rester en bonne santé.\nShe was born with a silver spoon in her mouth.\tElle est née avec une cuillère en argent dans la bouche.\nShe was born with a silver spoon in her mouth.\tElle est née avec une cuillère d'argent dans la bouche.\nShe was determined never to talk to him again.\tElle était déterminée à ne plus jamais lui parler.\nShe was determined never to talk to him again.\tElle était déterminée à ne jamais plus lui parler.\nShe was more beautiful than all of the others.\tElle était plus belle que tous les autres.\nShe was more beautiful than all of the others.\tElle était plus belle que toutes les autres.\nShe was supposed to attend the party with him.\tElle était supposée paraître à la fête avec lui.\nShe was supposed to attend the party with him.\tElle était supposée assister à la fête avec lui.\nShe was supposed to attend the party with him.\tElle était supposée être présente à la fête avec lui.\nShe was the first one to pay attention to him.\tElle fut la première à le remarquer.\nShe was the first one to pay attention to him.\tElle a été la première à le remarquer.\nShe went from place to place in search of him.\tElle se rendait d'un lieu à un autre à sa recherche.\nShe went outside to get a breath of fresh air.\tElle est sortie pour prendre un peu l'air frais.\nShe went to see him in the hospital every day.\tElle alla le voir à l'hôpital chaque jour.\nShe will be seventeen years old next February.\tElle aura dix-sept ans en février.\nShe will give her picture to whoever wants it.\tElle donnera sa photo à qui la veut.\nShe wrote to her parents at least once a week.\tElle a écrit à ses parents au moins une fois par semaine.\nShe's only interested in fish and cockroaches.\tElle est seulement intéressée par les poissons et les cafards.\nShe's sitting in the kitchen and drinking tea.\tElle est assise dans la cuisine, à boire du thé.\nShe's very susceptible to hypnotic suggestion.\tElle est très réceptive à la suggestion hypnotique.\nShort skirts have already gone out of fashion.\tLes jupes courtes ne sont déjà plus à la mode.\nShow me what you have hidden behind your back.\tMontre-moi ce que tu as caché derrière ton dos !\nShow me what you have hidden behind your back.\tMontrez-moi ce que vous avez caché derrière votre dos !\nSince my mother was sick, I couldn't go there.\tComme ma mère était malade, je n'ai pas pu m'y rendre.\nSince you did the cooking, I'll do the dishes.\tJe ferai la vaisselle puisque tu as fait la cuisine.\nSmoking is prohibited in all public buildings.\tFumer est interdit dans tous les bâtiments publics.\nSome people like coffee and others prefer tea.\tCertaines personnes aiment le café et d'autres préfèrent le thé.\nSome things are perhaps not worth translating.\tCertaines choses ne valent peut-être pas le coup d'être traduites.\nSomehow, he weaseled himself out of jury duty.\tD'une manière ou d'une autre, il s'est défilé de son devoir de juré.\nSomeone should put that dog out of its misery.\tQuelqu'un doit mettre un terme au supplice de ce chien.\nSomething very weird happened to me yesterday.\tQuelque chose de très étrange m'est arrivé hier.\nSoon nobody will have anything to do with you.\tBientôt, personne ne voudra avoir quoi que ce soit à faire avec toi.\nSoon nobody will have anything to do with you.\tBientôt, personne ne voudra avoir quoi que ce soit à faire avec vous.\nSt. Valentine's Day falls on Sunday this year.\tLa Saint-Valentin tombe un dimanche, cette année.\nStop taking pictures. You look like a tourist.\tArrête de prendre des photos. On dirait un touriste.\nStop taking pictures. You look like a tourist.\tArrête de prendre des photos. On dirait une touriste.\nTake lots of vitamin C to avoid catching cold.\tPour éviter d'attraper un rhume, prenez beaucoup de vitamine C.\nTake this medicine. You will feel better soon.\tPrenez ce médicament. Vous vous sentirez rapidement mieux.\nTake your time. We have all afternoon to shop.\tPrenez votre temps. Nous avons toute l'après-midi pour faire les magasins.\nTell Tom I don't know where he parked his car.\tDis à Tom que je ne sais pas où il a garé sa voiture.\nTell Tom I don't know where he parked his car.\tDites à Tom que je ne sais pas où il a garé sa voiture.\nTell Tom that he needs to wear a tie tomorrow.\tDis à Tom qu'il faut qu'il porte une cravate demain.\nTell Tom that he needs to wear a tie tomorrow.\tDites à Tom qu'il lui faut porter une cravate demain.\nThat can't be Mary. She's in the hospital now.\tCe ne peut pas être Mary. Elle est à l'hôpital en ce moment.\nThat country is about twice as large as Japan.\tCe pays est environ deux fois plus grand que le Japon.\nThat still leaves us with the question of why.\tÇa nous laisse malgré tout avec la question du pourquoi.\nThat twenty-kilometer run really wiped me out.\tCette course de vingt kilomètres m'a vraiment lessivé.\nThat's a filthy job and I don't want to do it.\tC'est un boulot dégueulasse et je ne veux pas le faire.\nThat's a filthy job and I don't want to do it.\tC'est un sale boulot et je ne veux pas le faire.\nThat's the best thing that could happen to me.\tC'est ce qui pourrait m'arriver de mieux.\nThat's the best thing that could happen to me.\tC'est la meilleure chose qui puisse m'arriver.\nThat's the best thing that could happen to me.\tC'est la meilleure chose qui pourrait m'arriver.\nThat's the problem with doing things your way.\tC'est le problème de faire les choses à ta manière.\nThat's the problem with doing things your way.\tC'est le problème de faire les choses à votre manière.\nThe FBI secretly bugged the mobster's hangout.\tLe FBI a secrètement truffé de micros le repaire du bandit.\nThe German domination didn’t last very long.\tLa domination allemande ne dura pas très longtemps.\nThe Sahara is the largest desert in the world.\tLe Sahara est le plus grand désert du monde.\nThe Titanic's maiden voyage didn't go so well.\tLe voyage inaugural du Titanic ne se passa pas si bien.\nThe air is bad here. Will you open the window?\tL'air est mauvais ici. Voulez-vous ouvrir la fenêtre ?\nThe air is thin at the top of a high mountain.\tL'air est rare au sommet d'une haute montagne.\nThe apples which he sent to me were delicious.\tLes pommes qu'il m'a fait parvenir étaient délicieuses.\nThe article alludes to an event now forgotten.\tL'article fait allusion à un événement à présent oublié.\nThe athletic meet was put off until next week.\tLa rencontre sportive a été repoussée d'une semaine.\nThe athletic meet was put off until next week.\tLa rencontre d'athlétisme a été reportée d'une semaine.\nThe author of this article is a famous critic.\tL'auteur de cet article est un critique célèbre.\nThe ball hit him on the left side of the head.\tLa balle l'atteignit au côté gauche de la tête.\nThe barometer is falling. It is going to rain.\tLe baromètre descend - il va pleuvoir.\nThe black telephone costs more than the white.\tLe téléphone noir coûte plus cher que le blanc.\nThe boy dug a grave for his dog that had died.\tL'enfant creusa une tombe pour son chien qui venait de mourir.\nThe boy next door fell head first from a tree.\tLe garçon d'à côté est tombé d'un arbre la tête la première.\nThe boy threw a paper airplane at the teacher.\tLe garçon lança un avion de papier en direction de l'instituteur.\nThe boy threw a paper airplane at the teacher.\tLe garçon a lancé un avion de papier en direction de l'instituteur.\nThe boy threw a paper airplane at the teacher.\tC'est le garçon qui lança un avion de papier en direction de l'instituteur.\nThe boy threw a paper airplane at the teacher.\tLe garçon lança un avion en papier en direction de l'instituteur.\nThe boy threw a paper airplane at the teacher.\tC'est le garçon qui a lancé un avion de papier en direction de l'instituteur.\nThe charge for a front row seats is 5 dollars.\tLe prix d'un siège au premier rang est de cinq dollars.\nThe chief justice will swear in the president.\tLe président de la cour suprême recevra le serment du Président.\nThe chief justice will swear in the president.\tC'est le président de la cour suprême qui recevra le serment du Président.\nThe children built a sand castle on the beach.\tLes enfants construisirent un château de sable sur la plage.\nThe children were left to fend for themselves.\tLes enfants furent laissés à eux-mêmes.\nThe church is on the other side of the street.\tL’église est de l’autre côté de la rue.\nThe computer is a relatively recent invention.\tL'ordinateur est une invention relativement récente.\nThe country declared war against its neighbor.\tCe pays déclara la guerre contre son voisin.\nThe country is heading in the right direction.\tLe pays s'oriente dans la bonne direction.\nThe cuffs of his suit jacket are badly frayed.\tLes poignets de la veste de son complet sont très usés.\nThe dog felt guilty about eating the homework.\tLe chien s'est senti coupable d'avoir mangé le devoir.\nThe dog followed its master, wagging its tail.\tLe chien suivit son maître en agitant la queue.\nThe drug addict had to undergo rehabilitation.\tLe drogué dut suivre un programme de désintoxication.\nThe drug smuggler was arrested at the airport.\tLe passeur de drogue a été arrêté à l'aéroport.\nThe drug smuggler was arrested at the airport.\tLe passeur a été arrêté à l'aéroport.\nThe employees voted on the manager's proposal.\tLes employés votèrent sur la proposition du dirigeant.\nThe explanation of each fact took a long time.\tL'explication de chaque fait prit beaucoup de temps.\nThe fact is that he didn't even take the exam.\tEn fait, il n’avait même pas passé l’examen.\nThe financial crisis has left many unemployed.\tLa crise financière coûte leur emploi à de nombreuses personnes.\nThe first edition was published ten years ago.\tLa première édition fut publiée il y a dix ans.\nThe first thing you have to do is take a bath.\tLa première chose que tu as à faire est prendre un bain.\nThe first time, she wasn't very firm with him.\tLa première fois, elle ne fut pas bien ferme avec lui.\nThe fog began to disappear around ten o'clock.\tLe brouillard commença à se dissiper vers 10 heures.\nThe food supplies will not hold out till then.\tLes provisions de nourriture ne tiendront pas jusque là.\nThe furniture in this office is really modern.\tL'ameublement de ce bureau est vraiment moderne.\nThe grass is always greener on the other side.\tL'herbe est toujours plus verte de l'autre côté.\nThe hiker has reached the top of the mountain.\tLe randonneur a atteint le sommet de la montagne.\nThe lawyer believed in his client's innocence.\tL'avocat croyait en l'innocence de son client.\nThe leader of the party is a famous scientist.\tLe chef du parti est un célèbre savant.\nThe leaders were out of touch with the people.\tLes dirigeants étaient en déphasage avec le peuple.\nThe living room furniture was modern in style.\tLe mobilier du salon était de style moderne.\nThe man sitting over there is a famous singer.\tL'homme assis là-bas est un chanteur célèbre.\nThe man you see over there is a famous writer.\tL'homme que vous voyez là-bas est un écrivain célèbre.\nThe match was cancelled due to the heavy rain.\tLe match a été annulé en raison de la forte pluie.\nThe meeting has been postponed until tomorrow.\tLa réunion a été reportée à demain.\nThe more I listen to her, the less I like her.\tPlus je l'écoute, moins je l'aime.\nThe more I think about it, the less I like it.\tPlus j'y pense, moins j'aime.\nThe more books you read, the more you'll know.\tPlus tu liras de livres, plus tu en sauras.\nThe most common name in the world is Mohammed.\tLe prénom le plus répandu dans le monde est Mahomet.\nThe murder charge was reduced to manslaughter.\tL'inculpation pour assassinat a été reclassée en homicide.\nThe murder charge was reduced to manslaughter.\tLa mise en cause pour assassinat a été reclassée en homicide.\nThe negotiations are at a very delicate stage.\tLes négociations en sont à une étape très délicate.\nThe new president was a warm and friendly man.\tLe nouveau président était un homme chaleureux et amical.\nThe next meeting will be on the tenth of June.\tLa prochaine réunion aura lieu le dix juin.\nThe next two years were busy ones for Jackson.\tLes deux années suivantes furent chargées pour Jackson.\nThe old man attempted to swim five kilometers.\tLe vieil homme tenta de nager 5 kilomètres.\nThe old man was accompanied by his grandchild.\tLe vieil homme fut accompagné par son petit-enfant.\nThe only thing we have to fear is fear itself.\tLa seule chose que nous devons craindre est la crainte-même.\nThe only thing we have to fear is fear itself.\tLa seule chose que nous devons craindre est la crainte elle-même.\nThe only thing we have to fear is fear itself.\tLa seule chose à craindre, c'est la crainte elle-même.\nThe original was written as a school textbook.\tL'original a été écrit en tant que manuel scolaire.\nThe park is located in the center of the city.\tLe parc se situe au centre-ville.\nThe park is located in the center of the city.\tLe parc est situé au centre-ville.\nThe police arrested the pickpocket in the act.\tLa police arrêta le pickpocket en flagrant délit.\nThe police roped off the street near the spot.\tLa police a délimité la rue près de l'endroit.\nThe policeman was confronted by the angry mob.\tLe policier était confronté à la foule en colère.\nThe policeman was confronted by the angry mob.\tLe policier se retrouva face à la foule en colère.\nThe potato was so hot that it burned my mouth.\tLa patate était tellement chaude que ça m'a brûlé la bouche.\nThe potato was so hot that it burned my mouth.\tLa pomme de terre était si chaude que je m'en suis brûlé la bouche.\nThe president is fully aware of the situation.\tLe président est parfaitement au courant de la situation.\nThe princess was beautiful beyond description.\tLa princesse était d'une beauté indescriptible.\nThe product is vacuum-sealed to keep it fresh.\tLe produit est scellé sous vide pour le garder frais.\nThe red flag indicated the presence of danger.\tLe drapeau rouge indiquait la présence d'un danger.\nThe report is being prepared by the committee.\tLe rapport est en cours de préparation par le comité.\nThe rescue workers arrived two hours too late.\tLes secouristes sont arrivés deux heures trop tard.\nThe restaurant was far from the train station.\tLe restaurant était loin de la gare.\nThe result of the experiment was inconclusive.\tLe résultat de l'expérience était peu concluant.\nThe rich are not always happier than the poor.\tLes riches ne sont pas toujours plus heureux que les pauvres.\nThe rich grow richer and the poor grow poorer.\tLes riches s'enrichissent et les pauvres s'appauvrissent.\nThe rocket blew up a few seconds after launch.\tLa fusée explosa quelques secondes après son lancement.\nThe salesgirl couldn't open the cash register.\tLa vendeuse ne parvenait pas à ouvrir la caisse enregistreuse.\nThe salesgirl couldn't open the cash register.\tLa vendeuse n'arrivait pas à ouvrir la caisse enregistreuse.\nThe shopkeeper went out of her way to help us.\tLa commerçante s'est mise en quatre pour nous aider.\nThe situation is a lot worse than we imagined.\tLa situation est bien pire que nous ne l'imaginions.\nThe stock market was surprisingly quiet today.\tLa Bourse a été étonnamment calme aujourd'hui.\nThe store can supply us with anything we need.\tLe magasin peut nous approvisionner en tout ce dont nous avons besoin.\nThe storm had a serious effect on the economy.\tLa tempête a eu un effet grave sur l'économie.\nThe storm had a serious effect on the economy.\tLa tempête eut un effet grave sur l'économie.\nThe students often copy each other's homework.\tLes élèves copient souvent leurs devoirs sur les autres.\nThe students were ill at ease before the exam.\tLes étudiants étaient mal à l'aise avant l'examen.\nThe thief had special tools for picking locks.\tLe voleur disposait d'outils spéciaux pour crocheter les serrures.\nThe thief ran away when she saw the policeman.\tLa voleuse s'échappa lorsqu'elle vit le policier.\nThe trouble is that he thinks only of himself.\tLe problème, c'est qu'il ne pense qu'à lui.\nThe university administration lowered tuition.\tL'administration de l'université a abaissé les droits d'inscription.\nThe urban population of America is increasing.\tLa population urbaine des États-Unis est en augmentation.\nThe water from this fountain is safe to drink.\tL'eau de cette fontaine est potable.\nThe worst part is, it wasn't always like this.\tLe pire, c'est que ça n'a pas toujours été comme ça.\nThe young man put out his hand and I shook it.\tLe jeune homme tendit la main et je la lui serrai.\nThere are a lot of different people in Europe.\tIl y a beaucoup de personnes différentes en Europe.\nThere are a lot of tall buildings in New York.\tIl y a de nombreux bâtiments élevés à New-York.\nThere are lots of things I want to talk about.\tIl y a de nombreuses choses dont je veux parler.\nThere are more girls than boys in this school.\tIl y a plus de filles que de garçons dans cette école.\nThere are some things that I don't understand.\tIl y a des choses que je ne comprends pas.\nThere are two slices of pizza for each person.\tIl y a deux parts de pizza par personne.\nThere are various kinds of candy in that bowl.\tIl y a différentes sortes de bonbons dans cette coupe.\nThere is a rapid increase in world population.\tIl y a une augmentation rapide de la population mondiale.\nThere is an urgent need for good legal advice.\tIl y a un besoin urgent de bon conseil juridique.\nThere is no telling what will happen tomorrow.\tImpossible de savoir ce qui va se passer demain.\nThere is to be no fraternizing with the enemy.\tIl n'y aura pas de fraternisation avec l'ennemi.\nThere was a cherry tree growing in the garden.\tUn cerisier poussait dans le jardin.\nThere was a sign saying, \"Keep off the grass.\"\tIl y avait un panneau disant \"Pelouse interdite\".\nThere were a lot of men among the inhabitants.\tIl y avait une quantité d'hommes parmi les habitants.\nThere were a lot of young couples in the park.\tIl y avait, dans le parc, de nombreux jeunes couples.\nThere were few students left in the classroom.\tIl ne restait que peu d'étudiants dans la salle de classe.\nThere were more than fifty girls at the party.\tIl y avait plus de cinquante filles à la fête.\nThere were no more than two books on the desk.\tIl n'y avait pas plus de deux livres sur le bureau.\nThere were no railroads in Japan at that time.\tIl n'y avait pas de chemins de fer au Japon à cette époque.\nThere's a spring in the center of the village.\tIl y a une source au centre du village.\nThere's something about Tom that I don't like.\tIl y a quelque chose à propos de Tom que je n'aime pas.\nThese clothes are dirty and need to be washed.\tCes vêtements sont sales et ont besoin d'être lavés.\nThese oil fields have only begun to be tapped.\tOn a seulement commencé à exploiter ces puits de pétrole.\nThey adapted themselves to the change quickly.\tIls s'adaptèrent rapidement au changement.\nThey are appealing for money to help refugees.\tIls ont lancé un appel de fonds pour l'aide aux réfugiés.\nThey are not very different from anybody else.\tIls ne sont pas très différents de qui que ce soit d'autre.\nThey are not very different from anybody else.\tElles ne sont pas très différentes de qui que ce soit d'autre.\nThey caught him playing a trick on his sister.\tIls le prirent en train de faire une farce à sa sœur.\nThey caught him playing a trick on his sister.\tIls l'ont pris en train de faire une farce à sa sœur.\nThey caught him playing a trick on his sister.\tElles le prirent en train de faire une farce à sa sœur.\nThey caught him playing a trick on his sister.\tElles l'ont pris en train de faire une farce à sa sœur.\nThey condemned him for his cruelty to animals.\tIls le réprouvèrent pour sa cruauté envers les animaux.\nThey defused the bomb before it could blow up.\tIls désamorcèrent la bombe avant qu'elle puisse exploser.\nThey had been thinking about it for some time.\tIls y avaient songé depuis un bout de temps.\nThey had been thinking about it for some time.\tElles y avaient songé depuis un bout de temps.\nThey have solved the problem once and for all.\tIls ont résolu le problème une fois pour toutes.\nThey have solved the problem once and for all.\tElles ont résolu le problème une fois pour toutes.\nThey kept him waiting outside for a long time.\tIls le firent attendre un long moment dehors.\nThey kept him waiting outside for a long time.\tIls le firent poireauter dehors.\nThey played quite a few Ella Fitzgerald songs.\tIls ont passé pas mal de chansons d'Ella Fitzgerald.\nThey saluted each other by raising their hats.\tIls se saluèrent mutuellement en soulevant leurs chapeaux.\nThey shook hands when they met at the airport.\tIls se serrèrent la main lorsqu'ils se rencontrèrent à l'aéroport.\nThey should have told us they were moving out.\tIls auraient dû nous dire qu'ils déménageaient.\nThey want to participate in the Olympic Games.\tIls veulent participer aux Jeux Olympiques.\nThey went on a trip abroad for the first time.\tIls ont voyagé à l'étranger pour la première fois.\nThey were walking along the street arm in arm.\tIls marchaient le long de la rue bras-dessus bras-dessous.\nThey're just like rats leaving a sinking ship.\tIls sont juste comme des rats quittant un navire qui sombre.\nThink it over and let me know what you decide.\tRéfléchis-y et dis-moi ce que tu décides.\nThink it over and let me know what you decide.\tRéfléchissez-y et tenez-moi au courant de ce que vous décidez.\nThis bad weather is more than I bargained for.\tCe mauvais temps est pire que ce que j'avais anticipé.\nThis book is both interesting and instructive.\tCe livre est à la fois intéressant et instructif.\nThis book is easy enough for children to read.\tCe livre est assez facile pour être lu par des enfants.\nThis car was so cheap that he could afford it.\tCette voiture était tellement bon marché qu'il put en faire l'acquisition.\nThis company has been spying on its employees.\tCette entreprise espionnait ses employés.\nThis course teaches basic skills in First Aid.\tDans ce cours, on apprend les connaissances de base en premier secours.\nThis desk is different from the one I ordered.\tCe bureau est différent de celui que j'ai commandé.\nThis flower is yellow and the others are blue.\tCette fleur est jaune et les autres sont bleues.\nThis instant soup comes in individual packets.\tCette soupe instantanée est en portions individuelles.\nThis is the best tasting pear I've ever eaten.\tC'est la meilleure poire que j'aie jamais mangée.\nThis is the house I lived in when I was young.\tC'est la maison où j'habitais quand j'étais jeune.\nThis is the house I lived in when I was young.\tC'est la maison où je vivais étant petit.\nThis is the last place I want to be right now.\tC'est le dernier endroit où je veux être en ce moment.\nThis is the last time I'm going to remind you.\tC'est la dernière fois que je te le rappelle.\nThis is the palace the king and queen live in.\tC'est dans ce palais qu'habitent le roi et la reine.\nThis is the place where the battle took place.\tC'est le lieu où la bataille a eu lieu.\nThis is the place where the incident happened.\tC'est l'endroit où est survenu l'incident.\nThis is the same type of car as my father has.\tC'est le même type de voiture que celle de mon père.\nThis is the same watch that I lost a week ago.\tC'est la même montre que celle que j'ai perdue il y a une semaine.\nThis is true of adults as well as of children.\tCela est valable pour les adultes aussi bien que les enfants.\nThis lake is among the deepest in the country.\tCe lac est parmi les plus profonds du pays.\nThis local newspaper is published once a week.\tCe journal local est publié une fois par semaine.\nThis medicine is still not sold in pharmacies.\tCe médicament n'est pas encore vendu en pharmacie.\nThis mountain has an altitude of 3,000 meters.\tCette montagne fait 3 000 mètres d'altitude.\nThis oil painting dates from the 17th century.\tCette peinture à l'huile date du 17e siècle.\nThis product is intended for private use only.\tCe produit est destiné seulement à un usage privé.\nThis road will lead you to the center of town.\tCette route vous mènera au centre-ville.\nThis young man knows little about his country.\tCe jeune homme en connait peu sur son pays.\nThousands of foreigners visit Japan each year.\tDes milliers d'étrangers visitent le Japon chaque année.\nThousands of people wanted to know the answer.\tDes milliers de personnes voulaient connaître la réponse.\nThree years have gone by since we got married.\tTrois ans se sont écoulés depuis que nous nous sommes mariés.\nTo our surprise, she has gone to Brazil alone.\tÀ notre surprise, elle est allée seule au Brésil.\nTo tell the truth, I don't like her very much.\tPour dire la vérité, je ne l'aime pas trop.\nToday I got to meet my new philosophy teacher.\tAujourd'hui je dois rencontrer mon nouveau professeur de philosophie.\nTom and Mary don't like the same kind of food.\tTom et Marie n'aiment pas le même genre de nourriture.\nTom and Mary don't really have much in common.\tTom et Mary n'ont pas vraiment beaucoup en commun.\nTom and Mary left the office together at 2:30.\tTom et Mary ont quitté le bureau ensemble à 14h30.\nTom bent down and picked up a handful of sand.\tTom se pencha et ramassa une poignée de sable.\nTom certainly appeared to be enjoying himself.\tTom avait l'air de bien s'amuser.\nTom committed crimes, but was never convicted.\tTom a commis des crimes, mais n'a jamais été condamné.\nTom complained about the room being too small.\tTom se plaignit que la chambre était trop petite.\nTom couldn't forget Mary even if he wanted to.\tQu'il le veuille ou non, Tom ne pourrait pas oublier Marie.\nTom couldn't have done it without Mary's help.\tTom n'aurait pas pu le faire sans l'aide de Mary.\nTom didn't drink the milk Mary poured for him.\tTom n'a pas bu le lait que Marie a versé pour lui.\nTom doesn't always understand what's going on.\tTom ne comprend pas toujours ce qui se passe.\nTom doesn't have what it takes to be the boss.\tTom n’a pas la carrure du patron.\nTom doesn't know anything about Mary's family.\tTom ne sait rien de la famille de Mary.\nTom doesn't think he'll be able come tomorrow.\tTom ne pense pas pouvoir venir demain.\nTom doesn't think it will snow this afternoon.\tTom ne pense pas qu'il va neiger cet après-midi.\nTom doesn't understand why Mary is so popular.\tTom ne comprend pas pourquoi Marie est si populaire.\nTom doesn't yet know whether he can go or not.\tTom ne sait pas encore s'il peut y aller ou non.\nTom drank the whole bottle of wine by himself.\tTom a bu toute la bouteille de vin à lui tout seul.\nTom emigrated to Australia when he was thirty.\tTom a émigré en Australie quand il avait trente ans.\nTom found a hundred dollar bill on the street.\tTom a trouvé un billet de cent dollars dans la rue.\nTom grew up in a small town not far from here.\tTom a grandi dans une petite ville, non loin d'ici.\nTom has been talking on the phone for an hour.\tCela fait une heure que Tom discute au téléphone.\nTom hasn't eaten a decent meal in a long time.\tTom n'a pas mangé un vrai repas depuis longtemps.\nTom is an old friend of mine from high school.\tTom est un vieil ami à moi du lycée.\nTom is in prison for a crime he didn't commit.\tTom est en prison pour un crime qu'il n'a pas commis.\nTom is just a little bit shorter than Mary is.\tTom est juste un peu plus petit que Mary.\nTom is quite capable of looking after himself.\tTom est tout à fait capable de prendre soin de lui-même.\nTom is standing over there near the fireplace.\tTom est debout là-bas près de la cheminée.\nTom is the boy I told you about the other day.\tTom est le garçon dont je t'ai parlé l'autre jour.\nTom is the most intelligent guy I've ever met.\tTom est le garçon le plus intelligent que j'ai jamais rencontré.\nTom is the one who broke the window yesterday.\tTom est celui qui a brisé sa fenêtre hier.\nTom isn't sure he's ready to perform on stage.\tTom n'est pas sûr d'être prêt à monter sur scène.\nTom just stood there watching everybody dance.\tTom s'est seulement tenu là, à regarder tout le monde danser.\nTom knew it was wrong to do what he was doing.\tTom savait que c'était mal de faire ce qu'il était en train de faire.\nTom made quite a lot of money in his twenties.\tTom s'est fait pas mal d'argent quand il avait la vingtaine.\nTom opened the door and held it open for Mary.\tTom ouvrit la porte et la tint ouverte pour Marie.\nTom picked up some pretty shells on the beach.\tTom ramassa de jolis coquillages sur la plage.\nTom promised himself he'd never do that again.\tTom se promit de ne plus jamais refaire cela.\nTom promised himself he'd never do that again.\tTom s'est promis de ne plus jamais refaire cela.\nTom quickly realized that something was wrong.\tTom s'est vite rendu compte que quelque chose n'allait pas.\nTom said he didn't know how to swim very well.\tTom a dit qu'il ne savait pas très bien nager.\nTom said he'd be willing to try anything once.\tTom a dit qu'il serait prêt à tout essayer une fois.\nTom seems to be about to ask another question.\tTom semble sur le point de poser une autre question.\nTom should take advantage of this opportunity.\tTom devrait mettre à profit cette opportunité.\nTom showed Mary several pictures of his house.\tTom montra à Marie plusieurs photos de sa maison.\nTom showed Mary several pictures of his house.\tTom a montré plusieurs photos de sa maison à Marie.\nTom tasted the soup and said it was delicious.\tTom a goûté la soupe et a dit que c'était délicieux.\nTom took his girlfriend out on Saturday night.\tTom est sorti avec sa petite amie samedi soir.\nTom wanted to get out of bed, but he couldn't.\tTom voulu sortir du lit, mais il n'a pas pu.\nTom wanted to spend more time with his family.\tTom voulait passer plus de temps avec sa famille.\nTom was fatter three years ago than he is now.\tTom était plus gros il y a trois ans qu'il ne l'est maintenant.\nTom will spend the rest of his life in prison.\tTom passera le reste de sa vie en prison.\nTom would do anything to get Mary's attention.\tTom ferait n'importe quoi pour attirer l'attention de Marie.\nTom would just like to know what he did wrong.\tTom voudrait juste savoir ce qu'il a fait de mal.\nTom would just like to know what he did wrong.\tTom voudrait seulement savoir ce qu'il a fait de mal.\nTom wrote an article for the school newspaper.\tTom a écrit un article pour le journal scolaire.\nTom's been going through a rough patch lately.\tCes derniers temps ont été difficiles pour Tom.\nTry to find out if everything he said is true.\tEssayez de savoir si tout ce qu'il a dit est vrai.\nUnfortunately, Tom let the cat out of the bag.\tMalheureusement, Tom a laissé le chat sortir du sac.\nUnless you hurry, you will be late for school.\tÀ moins de vous dépêcher, vous serez en retard à l'école.\nUnless you hurry, you will be late for school.\tÀ moins de te dépêcher, tu seras en retard à l'école.\nVery good, but you're capable of doing better.\tC'est très bien, mais vous êtes capable de faire mieux.\nWalking along the street, I met an old friend.\tEn marchant dans la rue, j'ai rencontré un vieil ami.\nWas it you that left the door open last night?\tÉtait-ce toi qui as laissé la porte ouverte hier soir ?\nWas it you that left the door open last night?\tÉtait-ce toi qui as laissé la porte ouverte la nuit dernière ?\nWas it you that left the door open last night?\tÉtait-ce toi qui as laissé la porte ouverte la nuit passée ?\nWas it you that left the door open last night?\tÉtait-ce vous qui avez laissé la porte ouverte la nuit dernière ?\nWas it you that left the door open last night?\tÉtait-ce vous qui avez laissé la porte ouverte la nuit passée ?\nWas it you that left the door open last night?\tÉtait-ce vous qui avez laissé la porte ouverte hier soir ?\nWe all jumped into the water at the same time.\tNous sautâmes tous dans l'eau, à l'unisson.\nWe all jumped into the water at the same time.\tNous sautâmes toutes dans l'eau, à l'unisson.\nWe all jumped into the water at the same time.\tNous avons tous sauté dans l'eau, au même moment.\nWe all jumped into the water at the same time.\tNous avons toutes sauté dans l'eau, au même moment.\nWe can't just sit here without doing anything.\tNous ne pouvons pas simplement rester assis là sans rien faire.\nWe can't just sit here without doing anything.\tNous ne pouvons pas simplement rester assis là sans faire quoi que ce soit.\nWe can't live even one more day without water.\tNous ne pouvons pas vivre, même un jour de plus, sans eau.\nWe did not help him, so he made it by himself.\tNous ne l'avons pas aidé, donc il l'a fait par lui-même.\nWe did not help him, so he made it by himself.\tNous ne l'avons pas assisté, donc il l'a fait par lui-même.\nWe differed as to the solution to the problem.\tNous différions quant à la solution au problème.\nWe had many bitter experiences during the war.\tNous eûmes de nombreuses expériences amères durant la guerre.\nWe have a lot of English books in the library.\tNous avons beaucoup de livres anglais à la bibliothèque.\nWe have a new puppy. He is about 12 weeks old.\tNous avons un nouveau chiot. Il a à peu près 12 semaines.\nWe have a new student joining our class today.\tNous avons aujourd'hui un nouvel élève qui rejoint notre classe.\nWe have far better things to do with our time.\tNous avons beaucoup mieux à faire avec notre temps.\nWe have no choice. I guess we'll have to walk.\tNous n'avons pas le choix. Je suppose qu'il nous faudra marcher.\nWe haven't seen each other since we were kids.\tNous ne nous sommes pas vus depuis que nous étions enfants.\nWe managed to get it back without her knowing.\tOn s'est débrouillé pour le récupérer sans qu'elle le sache.\nWe managed to get it back without her knowing.\tOn est parvenu à le récupérer sans qu'elle le sache.\nWe managed to get it back without her knowing.\tOn est parvenu à la récupérer sans qu'elle le sache.\nWe managed to get it back without her knowing.\tOn s'est débrouillé pour la récupérer sans qu'elle le sache.\nWe really hope another war will not break out.\tNous espérons vraiment qu'il n'y aura pas une autre guerre.\nWe received an immediate answer to our letter.\tNous avons reçu aussitôt une réponse à notre lettre.\nWe should ask Tom what he thinks we should do.\tNous devrions demander à Tom ce qu'il pense que nous devrions faire.\nWe should deal with this matter without delay.\tNous devrions nous occuper de cette affaire sans tarder.\nWe should place much value on the environment.\tNous devrions donner plus de valeur à l'environnement.\nWe shouldn't do anything about that right now.\tNous ne devrions rien faire à ce sujet pour le moment.\nWe were told by him to leave the room at once.\tIl nous a dit de quitter immédiatement la pièce.\nWe will have lived here for a year next March.\tEn mars, ça fera un an que nous habitons ici.\nWe will someday make the world a better place.\tUn jour nous ferons du monde un meilleur endroit.\nWe're investigating the murder of Tom Jackson.\tNous enquêtons sur le meurtre de Tom Jackson.\nWe're moving out of this apartment next month.\tNous déménageons de cet appartement le mois prochain.\nWe've known each other since we were children.\tNous nous connaissons depuis que nous sommes gosses.\nWell done! You have drawn this picture nicely.\tBravo ! Tu as joliment réalisé ce dessin.\nWhat I really want to do is to get some sleep.\tCe que je veux vraiment, c'est prendre du repos.\nWhat are some foods commonly eaten in America?\tPouvez-vous citer quelques aliments communément consommés aux États-Unis d'Amérique ?\nWhat are some good foods to eat with potatoes?\tQu'y a-t-il comme bons aliments à manger avec des pommes de terre ?\nWhat do nurses spend most of their time doing?\tÀ quoi les infirmières passent-elles la plupart de leur temps ?\nWhat do you say to going out for a short walk?\tQue dis-tu de sortir pour une courte promenade ?\nWhat do you say to going out for a short walk?\tQue dites-vous de sortir pour une brève promenade ?\nWhat fruit would you like to have for dessert?\tQuel fruit voudrais-tu comme dessert ?\nWhat fruit would you like to have for dessert?\tQuel fruit voudriez-vous comme dessert ?\nWhat if someone killed Tom? What would you do?\tEt si quelqu'un tuait Tom ? Que ferais-tu ?\nWhat is the highest mountain in North America?\tQuelle est la montagne la plus élevée en Amérique du Nord ?\nWhat is the most beautiful thing in the world?\tQuelle est la plus belle chose au monde ?\nWhat is the strangest thing you've ever eaten?\tQuelle est la chose la plus étrange que tu aies jamais mangé ?\nWhat makes you think I won't be able to do it?\tQu'est-ce qui te fait croire que je n'en serai pas capable ?\nWhat person does everyone take off his hat to?\tPour quelle personne tout le monde tire-t-il son chapeau ?\nWhat subject do you think he is interested in?\tQuel sujet penses-tu l'intéresse ?\nWhat time does the next train leave for Tokyo?\tÀ quelle heure part le prochain train pour Tokyo ?\nWhat time is your plane scheduled to take off?\tÀ quelle heure le décollage de votre avion est-il prévu ?\nWhat time is your plane scheduled to take off?\tÀ quelle heure ton avion doit-il décoller ?\nWhat were you doing about this time yesterday?\tQu'étiez-vous en train de faire hier à cette heure-ci ?\nWhat you said makes absolutely no sense to me.\tCe que vous avez dit n'a pour moi absolument aucun sens.\nWhat you said makes absolutely no sense to me.\tCe que tu as dit n'a pour moi absolument aucun sens.\nWhat's standing between us and that happening?\tQu'est-ce qui s'interpose entre nous et cet événement ?\nWhatever you do, don't ever press this button.\tQuoi que tu fasses, ne presse jamais ce bouton.\nWhen is the last time you wrote a love letter?\tQuand as-tu écrit une lettre d'amour pour la dernière fois ?\nWhen was the last time you slept in this room?\tC'est quand la dernière fois que tu as dormi dans cette chambre ?\nWhen we landed, we saw our friend on the pier.\tEn débarquant, nous vîmes notre ami sur le quai.\nWhen you're mad, count to ten before speaking.\tLorsque tu es en colère, compte jusqu'à dix avant de parler.\nWhere did you get the money to buy that dress?\tOù as-tu déniché l'argent pour acheter cette robe ?\nWhere did you get those strange-looking shoes?\tOù as-tu dégoté ces chaussures à l'allure bizarre ?\nWhich comes first, your career or your family?\tQu'est-ce qui est plus important, ta carrière ou ta famille ?\nWhich one do you prefer, this one or that one?\tTu préfères lequel ? Celui-ci ou celui-là ?\nWho came up with that idea in the first place?\tQui a eu cette idée au départ ?\nWho can afford to buy such an expensive house?\tQui peut se permettre d'acheter une maison si chère ?\nWho can afford to buy such an expensive house?\tQui peut se permettre d'acheter une maison aussi chère ?\nWho do you think is the best coach in the NFL?\tQui est selon toi le meilleur entraîneur de la NFL ?\nWho drives better, your father or your mother?\tQui conduit le mieux, ton père ou ta mère ?\nWho knows more about you than your own mother?\tQui en sait plus sur toi que ta propre mère ?\nWho'll take care of the dog while we are gone?\tQui s'occupera du chien pendant notre absence ?\nWhy are you protesting against the government?\tPourquoi protestez-vous contre le gouvernement ?\nWhy don't we take some time to think about it?\tPourquoi ne prenons-nous pas un peu de temps pour y réfléchir ?\nWhy don't you just ask your parents for money?\tPourquoi ne demandez-vous pas simplement de l'argent à vos parents ?\nWhy don't you just ask your parents for money?\tPourquoi ne demandes-tu pas simplement de l'argent à tes parents ?\nWhy in the world would I want to be a teacher?\tPourquoi, Dieu, voudrais-je être enseignant ?\nWhy in the world would I want to be a teacher?\tPourquoi, Dieu, voudrais-je être enseignante ?\nWhy would you ever want to do a job like that?\tPourquoi voudrais-tu jamais faire un boulot comme celui-là ?\nWhy would you ever want to do a job like that?\tPourquoi voudrais-tu jamais faire un tel boulot ?\nWhy would you ever want to do a job like that?\tPourquoi voudriez-vous jamais faire un boulot comme celui-là ?\nWhy would you ever want to do a job like that?\tPourquoi voudriez-vous jamais faire un tel boulot ?\nWill I get to the station if I take this road?\tParviendrai-je à la gare si je prends cette route ?\nWill you pick me up at seven tomorrow morning?\tViendras-tu me chercher demain matin à sept heures ?\nWill you put down that paper and listen to me?\tVas-tu laisser ce papier et m'écouter ?\nWill you put down that paper and listen to me?\tVas-tu laisser cet article et m'écouter ?\nWill you tell him about it when he comes home?\tEst-ce que tu lui en parleras quand il rentrera à la maison ?\nWorld War One had ended just 15 years earlier.\tLa première guerre mondiale s'était terminée juste quinze ans auparavant.\nWould it be OK if I discussed it with my wife?\tCela irait-il si j'en discutais avec mon épouse ?\nWould it be OK if I took a vacation next week?\tEst-ce que ça irait si je prenais un congé, la semaine prochaine ?\nWould you be willing to write a letter for me?\tSeriez-vous prêt à écrire une lettre pour moi ?\nWould you be willing to write a letter for me?\tSeriez-vous prête à écrire une lettre pour moi ?\nWould you be willing to write a letter for me?\tSerais-tu disposée à écrire une lettre pour moi ?\nWould you be willing to write a letter for me?\tSerais-tu prêt à écrire une lettre pour moi ?\nWould you care to come and see me on Saturday?\tVoudrais-tu venir me rendre visite samedi ?\nWould you have time to fix this flat tire now?\tDisposeriez-vous du temps pour réparer ce pneu à plat, maintenant ?\nWould you have time to help me with something?\tAurais-tu le temps de m'aider à quelque chose?\nWould you have time to help me with something?\tDisposeriez-vous de temps pour m'aider à quelque chose ?\nWould you kindly make room for this old woman?\tVoudriez-vous être assez aimable pour laisser la place à cette dame âgée ?\nWould you like me to get you something to eat?\tTu veux que je te ramène quelque chose?\nWould you please tell this gentleman who I am?\tVoudriez-vous, je vous prie, dire à ce monsieur qui je suis ?\nWould you please tell this gentleman who I am?\tVoudrais-tu, je te prie, dire à ce monsieur qui je suis ?\nYou and Tom used to be friends. What happened?\tTom et toi étiez amis. Que s'est-il passé?\nYou are bound to fail unless you study harder.\tÀ moins que tu étudies plus intensivement, tu te destines à l'échec.\nYou are bound to fail unless you study harder.\tÀ moins d'étudier plus intensivement, tu es condamné à l'échec.\nYou can be pretty helpful when you want to be.\tTu peux être assez serviable lorsque tu le veux.\nYou can be pretty helpful when you want to be.\tVous pouvez être assez serviable lorsque vous le voulez.\nYou can borrow a copy from any public library.\tTu peux emprunter une copie dans n'importe quelle bibliothèque publique.\nYou can do whatever you want to do, of course.\tTu peux faire tout ce qui te chante, bien sûr.\nYou can do whatever you want to do, of course.\tVous pouvez faire tout ce qui vous chante, bien sûr.\nYou can see the ancient ruins in the distance.\tVous pouvez voir les anciennes ruines au loin.\nYou can skate safely on this side of the lake.\tOn peut patiner de ce coté du lac en toute sécurité.\nYou can sleep here for a while if you want to.\tTu peux dormir ici, un moment, si tu veux.\nYou can sleep here for a while if you want to.\tVous pouvez dormir ici, un moment, si vous voulez.\nYou can stay in the extra bedroom if you want.\tVous pouvez rester dans la chambre supplémentaire, si vous voulez.\nYou can stay in the extra bedroom if you want.\tTu peux rester dans la chambre supplémentaire, si tu veux.\nYou can't be too careful when you drive a car.\tTu ne pourras jamais être trop prudent lorsque tu conduis une voiture.\nYou can't enter the building without a permit.\tVous ne pouvez pas pénétrer dans le bâtiment sans autorisation.\nYou could do a lot if you put your mind to it.\tTu pourrais accomplir beaucoup si tu y consacrais l'esprit.\nYou don't expect me to face Tom alone, do you?\tVous ne vous attendez à ce que je fasse face à Tom toute seule, n'est-ce pas ?\nYou don't expect me to face Tom alone, do you?\tTu ne t'attends pas à ce que je fasse face à Tom seul, n'est-ce pas ?\nYou don't seem to realize how serious this is.\tTu ne sembles pas réaliser à quel point ceci est sérieux.\nYou don't seem to realize how serious this is.\tVous ne semblez pas réaliser à quel point ceci est sérieux.\nYou have something in your pockets, don't you?\tTu as quelque chose dans les poches, n'est-ce pas ?\nYou have to do it, whether you like it or not.\tTu dois le faire, que ça te plaise ou non.\nYou have to go the rest of the way without me.\tTu va devoir faire le reste du chemin sans moi.\nYou have to go the rest of the way without me.\tVous devez faire le reste du chemin sans moi.\nYou may give this picture to whoever wants it.\tTu peux donner cette photo à qui la veut.\nYou must avoid making those kinds of mistakes.\tIl faut que tu évites de faire ce genre d'erreurs.\nYou must come every six months for a check-up.\tVous devez venir tous les six mois pour un check-up.\nYou must get the job done before the deadline.\tVous devez terminer le travail avant l'échéance.\nYou must get the job done before the deadline.\tTu dois terminer ce travail avant le délai.\nYou must see to it that the cakes do not burn.\tTu dois faire attention que les gâteaux ne brûlent pas.\nYou should cut up your meat before you eat it.\tTu devrais couper ta viande en morceaux avant de la manger.\nYou should look out for potholes when driving.\tTu devrais faire attention aux nid-de-poules lorsque tu conduis.\nYou should pay more attention to what he says.\tTu devrais accorder plus d'attention à ce qu'il dit.\nYou should stay in the hospital for treatment.\tTu devrais rester à l'hôpital pour te faire soigner.\nYou should stick those pictures in your album.\tTu devrais mettre ces photos dans ton album.\nYou should stick those pictures in your album.\tVous devriez mettre ces photos dans votre album.\nYou should stretch properly before exercising.\tVous devriez vous étirer correctement avant l'exercice.\nYou should take advantage of this opportunity.\tVous devriez tirer parti de cette chance.\nYou should take advantage of this opportunity.\tTu devrais profiter de cette occasion.\nYou should write it down before you forget it.\tTu devrais le noter avant de l'oublier.\nYou should've let Tom do what he wanted to do.\tTu aurais dû laisser Tom faire ce qu'il voulait.\nYou should've let Tom do what he wanted to do.\tVous auriez dû laisser Tom faire ce qu'il voulait.\nYou want me to wash my hands first, don't you?\tTu veux que je me lave d'abord les mains, n'est-ce pas ?\nYou want me to wash my hands first, don't you?\tVous voulez que je me lave d'abord les mains, n'est-ce pas ?\nYou were here just the other day, weren't you?\tVous étiez ici pas plus tard que l'autre jour, n'est-ce pas ?\nYou were here just the other day, weren't you?\tVous étiez ici pas plus tard que l'autre jour, pas vrai ?\nYou were here just the other day, weren't you?\tTu étais ici pas plus tard que l'autre jour, n'est-ce pas ?\nYou were here just the other day, weren't you?\tTu étais ici pas plus tard que l'autre jour, pas vrai ?\nYou'd better wear a sweater under your jacket.\tVous feriez mieux de porter un pull sous votre veste.\nYou'll find yourself in a miserable situation.\tTu te retrouveras dans une situation lamentable.\nYou'll get a lot of presents on your birthday.\tTu auras beaucoup de cadeaux pour ton anniversaire.\nYou'll soon get used to living in the country.\tTu t'habitueras vite à vivre à la campagne.\nYou're going to be late if you don't hurry up.\tTu vas être en retard si tu ne te dépêches pas.\nYou're just not the person I thought you were.\tTu n'es simplement pas la personne que je pensais.\nYou're just not the person I thought you were.\tVous n'êtes simplement pas la personne que je pensais.\nYou're spending too much time on the computer.\tTu passes trop de temps à l'ordinateur.\nYou're spending too much time on the computer.\tVous passez trop de temps à l'ordinateur.\nYou're the last person I expected to see here.\tTu es la dernière personne que je m'attendais à voir ici.\nYou're the last person I expected to see here.\tVous êtes la dernière personne que je m'attendrais voir ici.\nYou're the most beautiful girl I've ever seen.\tVous êtes la plus belle fille qu'il m'ait été donné de voir.\nYou're the most beautiful girl I've ever seen.\tVous êtes la plus belle fille que j'aie jamais vue.\nYou're the most beautiful girl I've ever seen.\tTu es la plus belle fille qu'il m'ait été donné de voir.\nYou're the most beautiful girl I've ever seen.\tTu es la plus belle fille que j'aie jamais vue.\nYou're the only person I know that can't swim.\tTu es la seule personne que je connaisse qui ne sache pas nager.\nYou're the only person I know that owns a gun.\tVous êtes la seule personne que je connaisse qui possède une arme à feu.\nYou're the only person I know who can help me.\tVous êtes la seule personne que je connaisse qui puisse m'aider.\nYou're the only person I know who can help me.\tTu es la seule personne que je connaisse qui puisse m'aider.\nYou're too young to know what a slide rule is.\tTu es trop jeune pour savoir ce qu'est une règle à calcul.\nYou're too young to know what a slide rule is.\tVous êtes trop jeunes pour savoir ce qu'est une règle à calcul.\nYou're welcome to come with us if you want to.\tTu es le bienvenu si tu veux venir avec nous.\nYou're welcome to come with us if you want to.\tVous êtes le bienvenu si vous voulez venir avec nous.\nYou've got my sunglasses and I want them back.\tTu as mes lunettes de soleil et je veux que tu me les rendes.\nYou've got my sunglasses and I want them back.\tVous avez mes lunettes de soleil et je veux que vous me les rendiez.\nYou've got no alibi for the day of the murder.\tVous n'avez pas d'alibi pour le jour du meurtre.\nYour efforts will be rewarded in the long run.\tVos efforts seront récompensés sur le long terme.\n\"A rolling stone gathers no moss\" is a proverb.\t\"Pierre qui roule n'amasse pas mousse\" est un proverbe.\n\"Thank you for helping me.\" \"Don't mention it.\"\t« Merci de m'aider. » « Il n'y a pas de quoi. »\n\"Where are your books?\" \"They are on the desk.\"\t« Où sont vos livres ? » « Ils sont sur le bureau. »\nA bad cold has kept me from studying this week.\tUn mauvais rhume m'a empêché d'étudier, cette semaine.\nA bat flying in the sky looks like a butterfly.\tUne chauve-souris qui vole dans le ciel ressemble à un papillon.\nA beautiful salesgirl waited on me in the shop.\tUne superbe vendeuse s'occupait de moi dans le magasin.\nA devastating earthquake hit the state capital.\tUn tremblement de terre dévastateur a frappé la capitale de l'État.\nA fire broke out in my neighborhood last night.\tUn feu s'est déclenché dans mon quartier la nuit dernière.\nA fire broke out in the neighborhood yesterday.\tHier, un incendie a éclaté dans le voisinage.\nA fire broke out in the supermarket last night.\tUn feu s'est déclaré hier soir dans le supermarché.\nA friend of mine came to see me during the day.\tUn de mes amis vint me voir pendant la journée.\nA good cook doesn't throw out yesterday's soup.\tUn bon cuisinier ne jette pas la soupe d'hier.\nA good lie is easier to believe than the truth.\tUn beau mensonge est plus facile à croire que la vérité.\nA good teacher must be patient with his pupils.\tUn bon professeur doit être patient avec ses élèves.\nA lot of people are dealing with allergies now.\tDe nombreuses personnes ont des problèmes d'allergies, actuellement.\nA lot of people are dealing with hay fever now.\tDe nombreuses personnes ont des problèmes de rhume des foins, actuellement.\nA loud noise jolted me awake from a deep sleep.\tUn bruit strident me réveilla en sursaut d'un sommeil profond.\nA lunar month is shorter than a calendar month.\tLe mois lunaire est plus court que le mois solaire du calendrier.\nA man came in and sat on the stool next to her.\tUn homme entra et s'assit sur un tabouret à côté d'elle.\nA man of wealth has to pay a lot of income tax.\tUne personne fortunée doit payer beaucoup d'impôts sur le revenu.\nA silhouette of a girl appeared on the curtain.\tLa silhouette d'une jeune fille apparut sur le rideau.\nA strange sound was heard from behind the door.\tOn a entendu un bruit étrange qui venait de derrière la porte.\nA team is only as strong as its weakest member.\tLa force d'une équipe est celle de son membre le plus faible.\nA truck was standing in the middle of the road.\tUn poids-lourd se tenait au milieu de la chaussée.\nA tsunami is coming, so please be on the alert.\tUn tsunami approche, alors soyez sur vos gardes.\nAbout one third of the earth's surface is land.\tÀ peu près un tiers de la surface de la Terre est occupé par les terres.\nAfter decades of civil war, order was restored.\tAprès des décennies de guerre civile, l'ordre fut restauré.\nAfter the revolution, France became a republic.\tAprès la Révolution, la France devint une République.\nAll of my friends got asked to dance except me.\tToutes mes amies ont été invitées à danser, sauf moi.\nAll our teachers were young and loved teaching.\tTous nos professeurs étaient jeunes et aimaient enseigner.\nAll our teachers were young and loved teaching.\tTous nos professeurs étaient jeunes et adoraient enseigner.\nAll the guests were touched by her hospitality.\tTous les invités étaient émus par son hospitalité.\nAll the names are listed in alphabetical order.\tTous les noms sont listés dans l'ordre alphabétique.\nAll the people who go to church believe in God.\tTous les gens qui se rendent à l'église croient en Dieu.\nAll we can do is wait for the police to arrive.\tTout ce que nous pouvons faire est d'attendre que la police arrive.\nAll you have to do is apologize for being late.\tTout ce que tu dois faire, c'est présenter tes excuses pour ton retard.\nAlthough her house is nearby, I seldom see her.\tBien que je demeure à proximité, je ne la rencontre que rarement.\nAlthough she is rich, she dresses quite simply.\tBien qu'elle soit riche, elle se vêt très simplement.\nAn Englishman would not pronounce it like that.\tUn Anglais ne le prononcerait pas de cette façon.\nAn Englishman would not pronounce it like that.\tUn Anglais ne le prononcerait pas ainsi.\nAn Englishman would not pronounce it like that.\tUn Anglais ne prononcerait pas cela ainsi.\nAnimals can't tell what's real and what's fake.\tLes animaux ne peuvent distinguer ce qui est vrai de ce qui est faux.\nAnother thing that is required is a dictionary.\tUne autre chose qui est requise est un dictionnaire.\nAny song sung in French puts me in a sexy mood.\tN'importe quelle chanson chantée en français me met dans une humeur libidineuse.\nAre you going to vote in the upcoming election?\tVas-tu voter à la prochaine élection ?\nAre you going to vote in the upcoming election?\tAllez-vous voter à la prochaine élection ?\nAre you telling me you've never studied French?\tÊtes-vous en train de me dire que vous n'avez jamais étudié la langue française ?\nAre you the girl Tom has been hanging out with?\tTu es la fille avec qui Tom traîne?\nAs a rule, I go to school before eight o'clock.\tComme la règle le veut, je vais à l'école avant huit heures.\nAs far as I'm concerned, things are going well.\tEn ce qui me concerne, les choses se passent bien.\nAs soon as I can afford to buy a house, I will.\tDès que j'ai les moyens d'acquérir une maison, je le ferai.\nAt a glance, he knew that the child was hungry.\tD'un seul regard il sut que l'enfant avait faim.\nAt any rate, he was satisfied with the results.\tEn tout état de cause, il était satisfait des résultats.\nAt last, spring has come to this part of Japan.\tEnfin, le printemps est arrivé dans cette partie du Japon.\nAt night, parents tuck their children into bed.\tLe soir, les parents bordent leurs enfants dans leur lit.\nAt the end of the speech she repeated the word.\tÀ la fin du discours elle répéta le mot.\nBeautiful poppies were growing beside the road.\tDe jolis coquelicots poussaient sur le bord de la route.\nBetween you and me, I think our boss is stupid.\tDe toi à moi, je pense que notre patron est stupide.\nBooks are to the mind what food is to the body.\tLes livres sont à l'esprit ce que la nourriture est au corps.\nBy the way, have you heard from her since then?\tÀ propos, avez-vous entendu parler d'elle depuis ?\nBy the way, have you heard from her since then?\tÀ propos, as-tu entendu parler d'elle depuis ?\nBy the way, have you heard from her since then?\tÀ propos, vous a-t-elle donné de ses nouvelles, depuis ?\nBy the way, have you heard from her since then?\tÀ propos, t'a-t-elle donné de ses nouvelles, depuis ?\nCan I see the special exhibit with this ticket?\tPuis-je voir l'exposition temporaire avec ce ticket ?\nCan you please tell me where the restaurant is?\tPourriez-vous me dire où se trouve le restaurant, s'il vous plaît ?\nCan you save enough money for the down payment?\tPeux-tu épargner assez d'argent pour la mise de base ?\nCan you save enough money for the down payment?\tPeux-tu mettre assez d'argent de côté pour la mise de base ?\nCan you save enough money for the down payment?\tPeux-tu épargner assez d'argent pour la mise de fond ?\nCan you save enough money for the down payment?\tPeux-tu mettre assez d'argent de côté pour la mise de fond ?\nCan you save enough money for the down payment?\tPouvez-vous mettre assez d'argent de côté pour la mise de base ?\nCan you save enough money for the down payment?\tPouvez-vous mettre assez d'argent de côté pour la mise de fond ?\nCan you save enough money for the down payment?\tPouvez-vous épargner assez d'argent pour la mise de base ?\nCan you save enough money for the down payment?\tPouvez-vous épargner assez d'argent pour la mise de fond ?\nCan you tell me where the nearest pay phone is?\tPouvez-vous me dire où se trouve la cabine téléphonique la plus proche ?\nCan't you see a stapler somewhere around there?\tTu n'as pas vu une agrafeuse par ici ?\nCircumstances forced us to put off the meeting.\tLes circonstances nous ont forcés à remettre la réunion à plus tard.\nCloning people raises serious ethical problems.\tLe clonage humain pose de sérieux problèmes d'éthique.\nCold weather and insects destroyed their crops.\tLe temps froid et les insectes détruisirent leurs récoltes.\nCome to think of it, I really need a cellphone.\tRéfléchis-y, j'ai vraiment besoin d'un téléphone cellulaire.\nCome to think of it, I really need a cellphone.\tPenses-y, j'ai vraiment besoin d'un téléphone mobile.\nCompetition is neither good nor evil in itself.\tLa compétition en soi n'est ni bonne ni mauvaise.\nContact my assistant if you have any questions.\tContactez mon assistant si vous avez quelque question que ce soit.\nContact my assistant if you have any questions.\tContacte mon assistante si tu as la moindre question.\nCorn is an important crop in the United States.\tLe maïs est une culture importante aux États-Unis d'Amérique.\nDid the union participate in the demonstration?\tLe syndicat a-t-il pris part à la manifestation ?\nDid you enjoy yourself at the party last night?\tVous vous êtes amusé hier à la soirée ?\nDid you go anywhere during the summer vacation?\tEs-tu allé quelque part pendant les vacances d'été ?\nDid you go anywhere during the summer vacation?\tEs-tu allée quelque part pendant les vacances d'été ?\nDid you go anywhere during the summer vacation?\tÊtes-vous allée quelque part pendant les vacances d'été ?\nDid you go anywhere during the summer vacation?\tÊtes-vous allées quelque part pendant les vacances d'été ?\nDid you go anywhere during the summer vacation?\tÊtes-vous allés quelque part pendant les vacances d'été ?\nDidn't you know that Tom could play the guitar?\tNe savais-tu pas que Tom pouvait jouer de la guitare ?\nDo you know any good places to eat around here?\tConnais-tu de bons endroits pour manger, autour d'ici ?\nDo you know any good places to eat around here?\tConnaissez-vous de bons endroits pour manger, autour d'ici ?\nDo you know why he has been absent from school?\tSavez-vous pourquoi il est absent de l'école ?\nDo you mind if I ask you a couple of questions?\tVoyez-vous un inconvénient à ce que je vous pose une ou deux questions ?\nDo you really want me to go to Boston with you?\tVeux-tu vraiment que je t'accompagne à Boston?\nDo you really want to go to the party with Tom?\tVeux-tu vraiment aller à la fête avec Tom ?\nDo you remember what Tom was wearing yesterday?\tVous rappelez-vous ce que Tom portait hier ?\nDo you remember what Tom was wearing yesterday?\tTu te rappelles ce que Tom portait hier ?\nDo you think it's worthwhile? I don't think so.\tVous croyez que ça en vaut la peine ? Je ne crois pas.\nDo you think that you would enjoy being famous?\tPenses-tu que tu aurais plaisir à être renommé ?\nDo you think that you would enjoy being famous?\tPensez-vous que vous auriez plaisir à être renommé ?\nDo you think that you would enjoy being famous?\tPensez-vous que vous auriez plaisir à être renommée ?\nDo you think that you would enjoy being famous?\tPensez-vous que vous auriez plaisir à être renommés ?\nDo you think that you would enjoy being famous?\tPensez-vous que vous auriez plaisir à être renommées ?\nDo you think that you would enjoy being famous?\tPenses-tu que tu aurais plaisir à être renommée ?\nDoes this mean that we have to file bankruptcy?\tCela signifie-t-il que nous devions nous déclarer en faillite ?\nDoing that sort of thing makes you look stupid.\tFaire ce genre de chose te fait paraître stupide.\nDoing that sort of thing makes you look stupid.\tFaire ce genre de chose vous fait paraître stupide.\nDon't be lulled into a false sense of security.\tNe vous laissez pas bercer par une illusion de sécurité.\nDon't expect me to help you with your homework.\tNe t'attends pas à ce que je t'aide pour tes devoirs.\nDon't hesitate to tell me if you need anything.\tN'hésite pas à me dire si tu as besoin de quelque chose.\nDon't interrupt me! Can't you see I am talking?\tNe m'interromps pas ! Ne peux-tu pas voir que je suis en train de parler ?\nDon't interrupt me! Can't you see I am talking?\tNe m'interrompez pas ! Ne pouvez-vous pas voir que je suis en train de converser ?\nDon't kill the goose that lays the golden eggs.\tNe tuez pas la poule aux œufs d'or.\nDon't put the glass near the edge of the table.\tNe mets pas le verre au bord de la table.\nDon't trust him with such a large sum of money.\tNe lui confie pas autant d'argent !\nDon't worry about things that aren't important.\tNe te soucie pas de choses sans importance !\nDon't worry about things that aren't important.\tNe vous souciez pas de choses sans importance !\nDon't worry. I told you everything would be OK.\tNe t'en fais pas. Je vous ai dit que tout irait bien.\nDon't worry. I told you everything would be OK.\tNe vous en faites pas. Je vous ai dit que tout irait bien.\nDon't worry. I told you everything would be OK.\tNe vous en faites pas. Je t'ai dit que tout irait bien.\nDriving through that snowstorm was a nightmare.\tConduire dans cette tempête de neige fut un cauchemar.\nDriving through that snowstorm was a nightmare.\tConduire dans cette tempête de neige a été un cauchemar.\nDuring the war, factories ran around the clock.\tPendant la guerre, les usines tournaient vingt-quatre heures sur vingt-quatre.\nEnvironmental changes gave rise to new species.\tLes changements environnementaux donnent naissance à de nouvelles espèces.\nEven though I looked for it, I did not find it.\tJ'ai eu beau chercher, je ne l'ai pas trouvé.\nEven though it's small, it's still a great car.\tMême si elle est petite, c'est tout de même une grande voiture.\nEvery boy and girl is taught to read and write.\tOn enseigne à lire et à écrire à chaque garçon ou fille.\nEvery privilege carries responsibility with it.\tChaque privilège apporte son lot de responsabilités.\nEvery time I read the Bible, I am deeply moved.\tChaque fois que je lis la bible je suis profondément ému.\nEverybody in the room let out a sigh of relief.\tTout le monde dans la pièce poussa un soupir de soulagement.\nEverybody in the room let out a sigh of relief.\tTout le monde dans la pièce a poussé un soupir de soulagement.\nEveryone voted for it. No one voted against it.\tTout le monde à voté pour. Personne n'a voté contre.\nExcuse me, sir, have you been drinking tonight?\tVeuillez m'excuser, Monsieur, avez-vous bu ce soir ?\nFactories were producing more than ever before.\tLes usines produisaient davantage que jamais auparavant.\nFast forward to the part where they're kissing.\tMets l'avance rapide jusqu'à la scène où ils s'embrassent.\nFather took his place at the head of the table.\tPère prit place au bout de la table.\nFather took his place at the head of the table.\tPapa prit place au bout de la table.\nFew people are able to understand his theories.\tPeu de gens sont capables de comprendre ses théories.\nFortunately, there is an elevator in our hotel.\tHeureusement, il y a un ascenseur dans notre hôtel.\nFrankly speaking, his speeches are always dull.\tHonnêtement, ses discours sont toujours ennuyeux.\nFrom the moment he arrived, everything changed.\tDu moment où il est arrivé, tout a changé.\nGenerally speaking, women live longer than men.\tD'une manière générale, les femmes vivent plus longtemps que les hommes.\nGenerally speaking, women live longer than men.\tEn général, les femmes vivent plus longtemps que les hommes.\nGenerally, women live 10 years longer than men.\tEn général, les femmes vivent dix ans de plus que les hommes.\nGoodbye. I'll see you at the time we agreed on.\tAu revoir. Je vous verrai à l'heure que nous avons convenue.\nGoodbye. I'll see you at the time we agreed on.\tAu revoir. Je vous verrai à l'heure dont nous avons convenu.\nGoodbye. I'll see you at the time we agreed on.\tAu revoir. Je vous verrai à l'heure convenue.\nHappiness isn't merely having many possessions.\tLe bonheur ne consiste pas seulement à avoir de nombreux biens.\nHappiness isn't merely having many possessions.\tLe bonheur ne consiste pas seulement à posséder de nombreux biens.\nHarajuku is one of the hottest places in Tokyo.\tHarajuku est un des lieux les plus actifs de Tokyo.\nHave you been playing basketball all afternoon?\tAs-tu joué au basket toute l'après-midi?\nHave you decided on the subject of your thesis?\tAvez-vous décidé de votre sujet de thèse ?\nHave you ever thought about becoming a teacher?\tAs-tu déjà pensé à devenir enseignant ?\nHave you ever thought about becoming a teacher?\tN'avez-vous jamais pensé à devenir enseignant ?\nHave you heard anything about the organization?\tAs-tu entendu quoi que ce soit à propos de l'organisation ?\nHave you heard anything about the organization?\tAvez-vous entendu quoi que ce soit à propos de l'organisation ?\nHave you made up your mind to become a teacher?\tAs-tu décidé de devenir professeur ?\nHe admitted that he wanted to escape from here.\tIl a reconnu qu'il était impatient de s'enfuir d'ici.\nHe amazed everyone by passing his driving test.\tTous furent épatés qu'il eût réussi à l'examen du permis de conduire.\nHe brought me coffee, when I had asked for tea.\tIl m'a apporté un café, alors que j'avais demandé un thé.\nHe can speak both English and French very well.\tIl parle très bien et l'anglais et le français.\nHe canceled the appointment at the last moment.\tIl a annulé le rendez-vous au dernier moment.\nHe comes into contact with all kinds of people.\tIl est en rapport avec toutes sortes de gens.\nHe complains of not having enough time to read.\tIl se plaint de ne pas avoir suffisamment de temps pour lire.\nHe complains of not having enough time to read.\tIl se plaint de ne pas avoir assez de temps pour lire.\nHe couldn't stand the bitterness of the coffee.\tIl ne pouvait pas supporter l'amertume du café.\nHe decided to give up smoking once and for all.\tIl décida de cesser de fumer une fois pour toutes.\nHe didn't have time to spend with his children.\tIl n'avait pas de temps à consacrer à ses enfants.\nHe didn't succeed in explaining what he wanted.\tIl ne parvint pas à expliquer ce qu'il voulait.\nHe doesn't stand a chance against his opponent.\tIl n'a aucune chance contre son adversaire.\nHe explained his plan both to my son and to me.\tIl a expliqué son plan à mon fils et à moi.\nHe gave a detailed description of the accident.\tIl a donné une description détaillée de l'accident.\nHe gave an excuse about why he had been absent.\tIl fournit une excuse pour son absence.\nHe had scarcely escaped when he was recaptured.\tÀ peine s'était-il échappé qu'il fut recapturé.\nHe happened to catch sight of a rare butterfly.\tIl advint qu'il aperçut un papillon rare.\nHe has devoted himself to his studies recently.\tIl s'est consacré à ses études dernièrement.\nHe is second to none when it comes to debating.\tIl est imbattable lorsqu'il s'agit de débattre.\nHe is so careless that he often makes mistakes.\tIl est si insouciant qu'il commet souvent des erreurs.\nHe is unmarried and has no brothers or sisters.\tIl est célibataire et n'a pas de frères et sœurs.\nHe is very much interested in Japanese history.\tIl s'intéresse beaucoup à l'histoire du Japon.\nHe is very slow at making friends with anybody.\tIl est très lent pour sympathiser avec qui que ce soit.\nHe isn't back yet. He may have had an accident.\tIl n'est pas encore de retour. Peut-être a-t-il eu un accident.\nHe kept the invaders at bay with a machine gun.\tIl tenait les envahisseurs à distance à la mitrailleuse.\nHe knows quite well what it is like to be poor.\tIl connaît assez bien ce que ça fait que d'être pauvre.\nHe left the Mexican capital to return to Texas.\tIl a quitté la capitale mexicaine pour retourner au Texas.\nHe lied to me. That is why I am angry with him.\tIl m'a menti. C'est pour ça que je suis en colère contre lui.\nHe lives in a posh apartment near Central Park.\tIl vit dans un appartement de luxe près de Central Park.\nHe looked like a deer caught in the headlights.\tIl avait l'air d'un cerf hypnotisé par les phares.\nHe peeked inside, afraid of what he would find.\tIl jeta un œil à l'intérieur, inquiet de ce qu'il trouverait.\nHe picked up a mirror and looked at his tongue.\tIl prit un miroir et se regarda la langue.\nHe prides himself on his knowledge of politics.\tIl est fier de ses connaissances en politique.\nHe ran the risk of being caught and imprisoned.\tIl courait le risque de se faire attraper et emprisonner.\nHe regained consciousness and was able to talk.\tIl reprit conscience et put parler.\nHe regained consciousness and was able to talk.\tIl a repris conscience et a pu parler.\nHe said he had come to Japan the previous week.\tIl dit qu'il s'est rendu au Japon la semaine précédente.\nHe said his father was ill, but that was a lie.\tIl dit que son père était malade, mais c'était un mensonge.\nHe should have the right to decide for himself.\tIl devrait avoir le droit de décider par lui-même.\nHe suggested that I accompany him to the party.\tIl a suggéré que je l'accompagne à la fête.\nHe told me that he wanted to leave the company.\tIl me dit qu'il voulait quitter la société.\nHe told me that he wanted to leave the company.\tIl me dit qu'il voulait quitter l'entreprise.\nHe told me that he would visit Nara next month.\tIl m'a dit qu'il allait rendre visite à Nara le mois prochain.\nHe took the job without giving it much thought.\tIl a accepté le poste sans trop y réfléchir.\nHe tried to solve the problem, but had no luck.\tIl tenta de résoudre le problème mais manqua de chance.\nHe tried to solve the problem, but had no luck.\tIl a tenté de résoudre le problème mais a manqué de chance.\nHe walked down the street whistling cheerfully.\tIl descendit à pied la rue en sifflotant gaiement.\nHe was a Frenchman. I could tell by his accent.\tIl était français. Je pouvais le deviner d'après son accent.\nHe was court-martialed for dereliction of duty.\tIl fut traduit en cour martiale pour abandon de poste.\nHe was delighted to know I had passed the exam.\tIl était ravi de savoir que j'avais réussi l'examen.\nHe was surprised to hear about the murder case.\tIl était surpris d'entendre parler du meurtre.\nHe was taken care of by a certain young doctor.\tUn certain jeune médecin a pris soin de lui.\nHe was the first man I interviewed for the job.\tIl a été le premier homme avec qui j'ai eu un entretien d'embauche.\nHe was working at the office yesterday evening.\tHier soir, il travaillait au bureau.\nHe will commit suicide if he can't see his son.\tIl se suicidera s'il ne peut pas voir son fils.\nHe will have to undergo an operation next week.\tIl devra subir une opération la semaine prochaine.\nHe witnessed the accident on his way to school.\tIl assista à l'accident sur le chemin de l'école.\nHe won the first prize at the chess tournament.\tIl a emporté le premier prix du tournoi d'échecs.\nHe won't talk to her and she won't talk to him.\tIl refuse de lui parler et elle refuse de lui parler.\nHe won't talk to her and she won't talk to him.\tIls refusent de se parler.\nHe won't talk to her and she won't talk to him.\tIl refuse de lui parler et elle itou.\nHe writes to me less and less often these days.\tIl m'écrit de moins en moins souvent ces jours-ci.\nHe's very influential in the world of medicine.\tIl est très influent dans le monde de la médecine.\nHeavy snow delayed the train for several hours.\tUne neige terrible a retardé le train de plusieurs heures.\nHer behavior at the party was far from perfect.\tSon comportement lors de la fête était loin d'être parfait.\nHer genius makes up for her lack of experience.\tSon génie compensa son manque d'expérience.\nHer hair was so long that it reached the floor.\tSa chevelure était tellement longue qu'elle atteignait le sol.\nHer husband has been in prison for three years.\tSon mari est en prison pour trois ans.\nHer mother lives in the country all by herself.\tSa mère vit seule à la campagne.\nHer only wish was to see her son one last time.\tSon unique désir était de revoir son fils une dernière fois.\nHer voice could hardly be heard over the noise.\tSa voix était à peine audible à cause du bruit.\nHippopotamuses are agressive and unpredictable.\tLes hippopotames sont agressifs et imprévisibles.\nHis camera is three times as expensive as mine.\tSon appareil photo est 3 fois plus cher que le mien.\nHis high salary enabled him to live in comfort.\tSon salaire élevé lui a permis de vivre dans le confort.\nHis hobbies are playing the guitar and singing.\tSes passe-temps sont de jouer de la guitare et de chanter.\nHis name is known to everybody in this country.\tSon nom est connu de tous dans ce pays-ci.\nHis niece is attractive and mature for her age.\tSa nièce est séduisante et mûre pour son âge.\nHis only wish was to see his son one last time.\tSon seul désir a été de voir son fils pour la dernière fois.\nHis proposal is completely out of the question.\tSa proposition est complètement hors de question.\nHis visits became less frequent as time passed.\tSes visites devenaient de moins en moins fréquentes avec le temps.\nHistorically, the Persian Gulf belongs to Iran.\tHistoriquement, le golfe Persique appartient à l'Iran.\nHow about eating out this evening for a change?\tQue dites-vous d'aller dîner dehors, ce soir, pour changer ?\nHow about eating out this evening for a change?\tQue dis-tu d'aller dîner dehors, ce soir, pour changer ?\nHow are things going with your youngest sister?\tComment ça marche pour ta petite sœur ?\nHow can you tell good English from bad English?\tComment distingues-tu le bon anglais du mauvais anglais ?\nHow do you think you'd look wearing that dress?\tDe quoi, penses-tu, aurais-tu l'air dans cette robe ?\nHow do you think you'd look wearing that dress?\tDe quoi, pensez-vous, auriez-vous l'air dans cette robe ?\nHow far can you stick your finger up your nose?\tJusqu'à quelle profondeur peux-tu t'enfoncer le doigt dans le nez ?\nHow far can you stick your finger up your nose?\tJusqu'à quelle profondeur arrives-tu à t'enfoncer le doigt dans le nez ?\nHow far can you stick your finger up your nose?\tJusqu'à quelle profondeur arrivez-vous à vous enfoncer le doigt dans le nez ?\nHow is it that you're always so full of energy?\tComment ça se fait que tu sois toujours aussi plein d'énergie ?\nHow is it that you're always so full of energy?\tComment se fait-il que vous soyez toujours aussi énergique ?\nHow long does it take from here to the station?\tCombien de temps faut-il d'ici à la gare ?\nHow long does it take to get to Vienna on foot?\tCombien de temps faut-il pour atteindre Vienne à pied ?\nHow long will it take me to finish my homework?\tCombien de temps me faudra-t-il pour finir mes devoirs ?\nHow many engineers took part in the conference?\tCombien d'ingénieurs ont-ils pris part à la conférence ?\nHow many students are there in your university?\tCombien d'élèves y a-t-il dans votre université ?\nHuman remains were found during the excavation.\tDes restes humains furent trouvés au cours de l'excavation.\nI am glad that the matter was settled amicably.\tJe suis heureux que cette affaire se soit réglée à l'amiable.\nI am looking forward to seeing you next Sunday.\tJ'ai hâte de te revoir dimanche prochain.\nI am not used to drinking coffee without sugar.\tJe ne suis pas habitué à boire du café sans sucre.\nI appreciate your telling me this face-to-face.\tJ'apprécie que vous me le disiez les yeux dans les yeux.\nI appreciate your telling me this face-to-face.\tJ'apprécie que tu me le dises les yeux dans les yeux.\nI asked the villagers many times to let me die.\tJ'ai demandé à maintes reprises aux villageois de me laisser mourir.\nI became acquainted with your father yesterday.\tJ'ai fait la connaissance de votre père, hier.\nI became acquainted with your father yesterday.\tJ'ai fait hier la connaissance de votre père.\nI became acquainted with your father yesterday.\tJ'ai fait la connaissance de ton père, hier.\nI became acquainted with your father yesterday.\tJ'ai fait hier la connaissance de ton père.\nI began to doubt the accuracy of his statement.\tJ'ai commencé à douter de la justesse de son propos.\nI bought this book for myself, not for my wife.\tJ'ai acheté ce livre pour moi, pas pour ma femme.\nI called your office today, but you weren't in.\tJ'ai appelé ton bureau aujourd'hui, mais tu n'y étais pas.\nI called your office today, but you weren't in.\tJ'ai appelé votre bureau aujourd'hui, mais vous n'y étiez pas.\nI came upon an old friend of mine on the train.\tJe suis tombé sur un vieil ami à moi dans le train.\nI can fall back on my savings if I lose my job.\tJe peux me rabattre sur mes économies si je perds mon travail.\nI can remember when you were just a little boy.\tJe me souviens de quand tu n'étais qu'un petit garçon.\nI can remember when you were just a little boy.\tJe me rappelle quand tu n'étais qu'un petit garçon.\nI can't believe I didn't think of that earlier.\tJe n'arrive pas à croire que je n'aie pas pensé à ça plus tôt.\nI can't believe this is really happening to me.\tJe ne peux pas croire que ça m'arrive.\nI can't believe you're talking to me like this.\tJe n'arrive pas à croire que vous me parliez ainsi.\nI can't believe you're talking to me like this.\tJe n'arrive pas à croire que tu me parles ainsi.\nI can't do anything until this project is done.\tJe ne peux rien faire tant que ce projet n'est pas fini.\nI can't figure out how to operate this machine.\tJe n'arrive pas à comprendre comment faire fonctionner cet engin.\nI can't figure out how to operate this machine.\tJe n'arrive pas à comprendre comment faire fonctionner cette machine.\nI can't help but laugh when I think about that.\tJe ne peux m'empêcher de rire quand je pense à ça.\nI can't help thinking my father is still alive.\tJe ne peux m'empêcher de penser que mon père est toujours en vie.\nI can't kiss you the way you want to be kissed.\tJe ne peux t'embrasser de la manière dont tu veux que je t'embrasse.\nI can't kiss you the way you want to be kissed.\tJe ne peux vous embrasser de la manière dont vous voulez que je vous embrasse.\nI can't prove it, but I'm sure he was murdered.\tJe ne peux pas le prouver mais je suis certain qu'il a été assassiné.\nI can't remember where this little doodad goes.\tJe n'arrive pas à me rappeler où va ce petit truc.\nI can't remember where this little doodad goes.\tJe n'arrive pas à me rappeler où va ce bidule.\nI can't see in because the curtains are closed.\tJe ne peux pas voir à l'intérieur parce que les rideaux sont fermés.\nI can't tell you exactly how long it will take.\tJe ne peux pas te dire exactement combien de temps cela prendra.\nI can't tell you exactly how long it will take.\tJe ne peux pas te dire exactement combien de temps ça prendra.\nI can't tell you exactly how long it will take.\tJe ne peux pas vous dire exactement combien de temps cela prendra.\nI can't tell you how long I've waited for this.\tJe ne peux pas te dire pendant combien de temps j'ai attendu ça.\nI can't thank you enough for all your kindness.\tJe ne peux pas vous remercier suffisamment pour votre gentillesse.\nI can't think of anything that I'd like better.\tJe ne vois pas ce qui pourrait me faire plus plaisir.\nI consider watching television a waste of time.\tJe considère que regarder la télévision est une perte de temps.\nI couldn't have done it without you. Thank you.\tJe n'aurais pas pu le faire sans toi. Merci.\nI didn't even know that my car had been stolen.\tJe ne savais même pas que ma voiture avait été volée.\nI didn't even know that my car had been stolen.\tJ'ignorais même que ma voiture avait été volée.\nI didn't even know that my car had been stolen.\tJ'ignorais même que ma voiture avait fait l'objet d'un vol.\nI didn't know you still had friends at the IRS.\tJ'ignorais que tu avais encore des amis au fisc.\nI didn't know you still had friends at the IRS.\tJ'ignorais que vous aviez encore des amis au fisc.\nI didn't know you still had friends at the IRS.\tJ'ignorais que tu disposais encore d'amis au fisc.\nI didn't know you still had friends at the IRS.\tJ'ignorais que vous disposiez encore d'amis au fisc.\nI didn't quite catch the name of that designer.\tJe n'ai pas tout à fait compris le nom de ce créateur.\nI didn't tell anyone what time I'd be arriving.\tJe n'ai dit à personne à quelle heure j'arriverais.\nI didn't tell anyone what time I'd be arriving.\tJe ne dis à personne à quelle heure j'arriverais.\nI do not know the woman talking to our teacher.\tJe ne connais pas la femme qui parle à notre professeur.\nI don't believe we've been formally introduced.\tJe ne crois pas que nous ayons été formellement présentés.\nI don't even know if I want to do this anymore.\tJe ne sais même pas si je veux continuer à faire ceci.\nI don't have enough money to buy a new bicycle.\tJe n'ai pas assez d'argent pour acheter un nouveau vélo.\nI don't have enough money to buy a new bicycle.\tJe n'ai pas assez d'argent pour acheter une nouvelle bicyclette.\nI don't know anything about their relationship.\tJe ne connais rien de leur relation.\nI don't know exactly at what time she's coming.\tJe ne sais pas exactement à quelle heure elle arrive.\nI don't know how you can believe such nonsense.\tJ'ignore comment vous pouvez croire à de telles balivernes.\nI don't know when it happened, but it happened.\tJe ne sais pas quand c'est arrivé, mais c'est arrivé.\nI don't know whether I will have time to do it.\tJ'ignore si j'aurai le temps de le faire.\nI don't need your money. I just need your time.\tJe n'ai pas besoin de ton argent. J'ai besoin de ton temps.\nI don't need your money. I just need your time.\tJe n'ai pas besoin de votre argent. J'ai besoin de votre temps.\nI don't see any reason why I have to apologize.\tJe ne vois aucune raison pour laquelle je devrais m'excuser.\nI don't see why Tom wanted me to be here today.\tJe ne comprends pas pourquoi Tom voulait que je sois là aujourd'hui.\nI don't understand the meaning of the question.\tJe ne comprends pas le sens de la question.\nI don't understand why this keeps coming loose.\tJe ne comprends pas pourquoi ceci se desserre toujours.\nI don't want an apology. I want an explanation.\tJe ne veux pas des excuses. Je veux une explication.\nI don't want to discourage you from doing that.\tJe veux pas t'empêcher de le faire.\nI don't want to go out in this kind of weather.\tJe ne veux pas sortir par ce temps.\nI don't want to wait any longer than necessary.\tJe ne veux pas attendre plus que nécessaire.\nI fall asleep easily while watching television.\tJe m'endors facilement en regardant la télé.\nI feel cold. Would you shut the window, please?\tJ'ai froid. Voudrais-tu fermer la fenêtre, s'il te plait ?\nI figure that she will succeed in her business.\tJe pense qu'elle réussira dans son affaire.\nI figured a change of scenery might do us good.\tJ'ai pensé qu'un changement de décor pourrait nous faire du bien.\nI find learning languages to be very rewarding.\tJe trouve très gratifiant d'apprendre des langues étrangères.\nI folded my shirts and put them in my suitcase.\tJe pliai mes chemises et les plaçai dans ma valise.\nI folded my shirts and put them in my suitcase.\tJ'ai plié mes chemises et les ai placées dans ma valise.\nI found it difficult to keep a diary every day.\tJ'ai trouvé difficile de tenir un journal tous les jours.\nI got a useful piece of information out of him.\tJ'ai obtenu de lui un renseignement utile.\nI got up early enough to catch the first train.\tJe me suis levé de bonne heure pour prendre le premier train.\nI guess I felt like eating something different.\tJe suppose que j'ai eu envie de manger quelque chose de différent.\nI had a doctor's appointment yesterday morning.\tJ'avais un rendez-vous chez le médecin, hier matin.\nI had a headache, and I took the day off today.\tJ'avais mal à la tête et j'ai pris un jour de congé aujourd'hui.\nI had a problem with my car on the way to work.\tJ'ai eu un problème avec ma voiture, sur le chemin du travail.\nI had been making the same mistake all my life.\tJ'avais commis la même erreur toute ma vie.\nI had been reading for an hour when he came in.\tJe lisais depuis une heure lorsqu'il entra.\nI had my hair cut at the barber shop yesterday.\tJe me suis fait couper les cheveux chez le coiffeur hier.\nI had some trouble finding her house yesterday.\tJ'ai eu du mal à trouver sa maison hier.\nI had some trouble finding her house yesterday.\tÇa n'a pas été facile pour moi de trouver sa maison hier.\nI had to sip the coffee because it was too hot.\tJe dus boire le café à petites gorgées parce qu'il était trop chaud.\nI hate women who say that all men are the same.\tJe déteste les femmes qui disent que tous les hommes sont les mêmes.\nI hate women who say that all men are the same.\tJe déteste les femmes qui disent que tous les hommes sont pareils.\nI have a feeling I've met her somewhere before.\tJ'ai l'impression de l'avoir déjà rencontrée quelque part.\nI have a feeling I've met her somewhere before.\tJ'ai le sentiment de l'avoir déjà rencontrée quelque part.\nI have a friend whose father is a famous actor.\tJ'ai un ami dont le père est un acteur célèbre.\nI have a sore throat. Do you have a cough drop?\tJ'ai un mal de gorge. As-tu une pastille pour la toux ?\nI have a sore throat. Do you have a cough drop?\tJ'ai mal à la gorge. Avez-vous une pastille pour la toux ?\nI have no choice but to eat what they serve me.\tJe n'ai d'autre choix que de manger ce qu'ils me servent.\nI have no choice but to eat what they serve me.\tJe n'ai d'autre choix que de manger ce qu'elles me servent.\nI have no choice but to eat what they serve me.\tJe ne dispose pas d'autre choix que de manger ce qu'ils me servent.\nI have no choice but to eat what they serve me.\tJe ne dispose pas d'autre choix que de manger ce qu'elles me servent.\nI have no idea to what extent I can trust them.\tJe n'ai aucune idée jusqu'à quel point je peux leur faire confiance.\nI have the same dictionary as your brother has.\tJ'ai le même dictionnaire que votre frère.\nI have to check and see what the contract says.\tJe dois vérifier et voir ce que le contrat stipule.\nI have to go shopping. I'll be back in an hour.\tJe dois aller faire les courses, je reviens dans une heure.\nI haven't read the final page of the novel yet.\tJe n'ai pas encore lu la dernière page de ce roman.\nI heard strange noises coming from his bedroom.\tJ'entendis des bruits étranges provenant de sa chambre.\nI heard strange noises coming from his bedroom.\tJ'entendis des bruits étranges en provenance de sa chambre.\nI heard strange noises coming from his bedroom.\tJ'ai entendu des bruits étranges provenant de sa chambre.\nI heard strange noises coming from his bedroom.\tJ'ai entendu des bruits étranges en provenance de sa chambre.\nI hit the snooze button and went back to sleep.\tJ'ai tapé sur le bouton de remise en sommeil et suis allé me rendormir.\nI just didn't want you to go there by yourself.\tJe ne voulais juste pas que tu t'y rendes seul.\nI just didn't want you to go there by yourself.\tJe ne voulais juste pas que tu t'y rendes seule.\nI just didn't want you to go there by yourself.\tJe ne voulais juste pas que vous vous y rendiez seul.\nI just didn't want you to go there by yourself.\tJe ne voulais juste pas que vous vous y rendiez seule.\nI just didn't want you to go there by yourself.\tJe ne voulais juste pas que vous vous y rendiez seuls.\nI just didn't want you to go there by yourself.\tJe ne voulais juste pas que vous vous y rendiez seules.\nI just don't feel like celebrating my birthday.\tJe n'ai simplement pas envie de fêter mon anniversaire.\nI just think you should be careful, that's all.\tJe pense simplement que tu devrais être prudent, c'est tout.\nI just think you should be careful, that's all.\tJe pense simplement que vous devriez être prudents, c'est tout.\nI just think you should be careful, that's all.\tJe pense simplement que vous devriez être prudent, c'est tout.\nI just think you should be careful, that's all.\tJe pense simplement que vous devriez être prudente, c'est tout.\nI just think you should be careful, that's all.\tJe pense simplement que vous devriez être prudentes, c'est tout.\nI just think you should be careful, that's all.\tJe pense simplement que tu devrais être prudente, c'est tout.\nI just thought of something really interesting.\tJe viens de penser à quelque chose de très intéressant.\nI just wish we could leave this horrible place.\tJ'espère juste que nous puissions quitter cet horrible endroit.\nI knew someone would come rescue us eventually.\tJe savais que quelqu'un viendrait nous sauver, au bout du compte.\nI knew there was something different about you.\tJe savais qu'il y avait quelque chose de différent en toi.\nI knew there was something different about you.\tJe savais qu'il y avait quelque chose de différent en vous.\nI know I'm not the brightest girl in the world.\tJe sais que je ne suis pas la fille la plus brillante au monde.\nI know I'm not the brightest girl in the world.\tJe sais que je ne suis pas une lumière.\nI know your mom doesn't want you to talk to me.\tJe sais que ta mère ne veut pas que tu me parles.\nI left home early so I wouldn't miss the train.\tJe suis parti tôt de la maison pour être sûr ne pas rater le train.\nI left home early so I wouldn't miss the train.\tJe suis partie tôt de la maison pour être sûre ne pas rater le train.\nI like children. That's why I became a teacher.\tJ'aime les enfants. C'est pourquoi je suis devenu enseignant.\nI like swimming, but I don't like to swim here.\tJ'aime nager, mais je n'aime pas nager ici.\nI like the smell of bread just out of the oven.\tJ'aime l'odeur du pain tout juste sorti du four.\nI live near the sea so I often go to the beach.\tJe vis près de la mer alors je me rends souvent à la plage.\nI looked around hoping to spot a friendly face.\tJe regardai alentour, espérant repérer un visage amical.\nI looked around hoping to spot a friendly face.\tJ'ai regardé alentour, espérant repérer un visage amical.\nI made hotel reservations one month in advance.\tJ'ai effectué les réservations d'hôtel un mois à l'avance.\nI managed to make myself understood in English.\tJe me suis débrouillé pour me faire comprendre en anglais.\nI met him by accident at the airport yesterday.\tJe l'ai rencontré par hasard hier à l'aéroport.\nI met him by accident at the airport yesterday.\tJe l'ai croisé par hasard hier à l'aéroport.\nI missed the train. I should have come earlier.\tJ'ai loupé le train. J'aurais dû venir plus tôt.\nI missed the train. I should have come earlier.\tJ'ai manqué le train. J'aurais dû venir plus tôt.\nI need you to take in the hem by about an inch.\tJ'ai besoin que vous réduisiez l'ourlet d'à peu près un pouce.\nI never for a moment imagined that I would win.\tJe n'ai jamais imaginé un instant que je gagnerais.\nI often go swimming at the beach in the summer.\tJe vais souvent nager à la plage en été.\nI play guitar with a band every Saturday night.\tJe joue de la guitare dans un groupe, tous les samedis soir.\nI pulled an all-nighter preparing for the exam.\tJ'ai passé une nuit blanche à préparer l'examen.\nI ran as fast as I could, but I missed the bus.\tJ'ai couru aussi vite que j'ai pu, mais j'ai quand même raté le bus.\nI ran as fast as possible to catch up with her.\tJ'ai couru aussi vite que j'ai pu pour la rattraper.\nI ran as fast as possible to catch up with him.\tJ'ai couru le plus vite possible pour le rattraper.\nI ran to school, but the bell had already rung.\tJe courus à l'école, mais la cloche avait déjà retenti.\nI really wish I could go with you, but I can't.\tJ'aurais vraiment voulu pouvoir venir avec toi, mais je ne peux pas.\nI really wish I could go with you, but I can't.\tJ'aurais vraiment voulu pouvoir venir avec vous, mais je ne peux pas.\nI regretted having wasted a great deal of time.\tJ'ai regretté d'avoir perdu beaucoup de temps.\nI remember the horror I felt when she screamed.\tJe me souviens de l'horreur que j'ai ressentie lorsqu'elle a hurlé.\nI remembered your birthday this year, didn't I?\tJe me suis souvenu de ton anniversaire, cette année, pas vrai ?\nI remembered your birthday this year, didn't I?\tJe me suis souvenu de votre anniversaire, cette année, pas vrai ?\nI sat behind a very tall person at the theater.\tJe me suis assis derrière une très grande personne au théâtre.\nI saw Yoshida for the first time in five years.\tJ'ai rencontré Yoshida pour la première fois en cinq ans.\nI saw him go into the toilet a few minutes ago.\tJe l'ai vu entrer dans les toilettes il y a quelques minutes.\nI should've married your sister instead of you.\tJ'aurais dû épouser ta sœur, plutôt que toi.\nI should've married your sister instead of you.\tJ'aurais dû épouser votre sœur, plutôt que vous.\nI should've married your sister instead of you.\tJ'aurais dû épouser ta sœur, au lieu de toi.\nI shouldn't have drunk so much beer last night.\tJe n'aurais pas dû boire autant de bière la nuit dernière.\nI shouldn't have to do all this work by myself.\tJe ne devrais pas avoir à faire tout ce travail moi-même.\nI sometimes feel drowsy in the early afternoon.\tJe me sens parfois somnolent en début d'après-midi.\nI sometimes hear my father singing in the bath.\tJ'entends parfois mon père chanter dans le bain.\nI spent the summer vacation at my aunt's house.\tJ'ai passé les vacances d'été chez ma tante.\nI spent yesterday reading instead of going out.\tJ'ai passé la journée d'hier à lire au lieu de sortir.\nI spoke to the boy who seemed to be the oldest.\tJ'ai parlé au garçon qui semblait le plus vieux.\nI stayed home all day instead of going to work.\tJe suis resté à la maison toute la journée au lieu d'aller travailler.\nI suppose I've got to get my feet wet sometime.\tJe suppose qu'il faut parfois se jeter à l'eau.\nI suppose that's why you don't like me so much.\tJe suppose que c'est là la raison pour laquelle vous ne m'appréciez pas tant que ça.\nI suppose that's why you don't like me so much.\tJe suppose que c'est là la raison pour laquelle tu ne m'apprécies pas tant que ça.\nI suspect they water down the beer in that pub.\tJe les soupçonne de couper la bière avec de l'eau dans ce bistro.\nI think it's time for me to ask for directions.\tJe pense qu'il est temps que je demande des indications.\nI think it's time for me to ask for directions.\tJe pense qu'il est temps que je demande des instructions.\nI think it's time for me to ask for his advice.\tJe pense qu'il est temps que je sollicite ses conseils.\nI think something terrible has happened to Tom.\tJe pense que quelque chose de terrible est arrivé à Tom.\nI think they should put a heavy tax on imports.\tJe pense qu'ils devraient imposer une lourde taxe à l'importation.\nI think this must be the place where Tom lives.\tJe pense que ce doit être l'endroit où Tom habite.\nI think this tie will go great with that shirt.\tJe pense que cette cravate ira à merveille avec cette chemise.\nI think we're going to have a very strong team.\tJe pense que nous allons disposer d'une équipe très forte.\nI thought Tom was going to take us to see Mary.\tJe pensais que Tom nous amenait voir Mary.\nI thought this pair of shoes would last longer.\tJe pensais que cette paire de chaussures durerait plus longtemps.\nI thought you'd want to try some Japanese food.\tJe pensais que tu voudrais essayer de la nourriture japonaise.\nI thought you'd want to try some Japanese food.\tJe pensais que vous voudriez essayer de la nourriture japonaise.\nI took my shoes off and put them under the bed.\tJ'ai enlevé mes chaussures et les ai mises sous le lit.\nI used a ribbon to tie my hair into a ponytail.\tJe me suis servi d'un ruban pour me faire une queue de cheval.\nI usually eat lunch at 11:30 to avoid the rush.\tJe déjeune habituellement à onze heures et demie pour éviter la cohue.\nI want an hourly update about what's happening.\tJe veux être tenu au courant de ce qui se passe heure par heure.\nI want an hourly update about what's happening.\tJe veux être tenue au courant de ce qui se passe heure par heure.\nI want this luggage carried to my room at once.\tJe veux que l'on porte ce bagage immédiatement dans ma chambre.\nI want to have a talk with him about my future.\tJe veux lui parler de mon avenir.\nI want you to do something about it right away.\tJe veux que vous y fassiez quelque chose sur-le-champ.\nI want you to do something about it right away.\tJe veux que vous y fassiez quelque chose derechef.\nI want you to do something about it right away.\tJe veux que tu y fasses quelque chose sur-le-champ.\nI want you to do something about it right away.\tJe veux que tu y fasses quelque chose derechef.\nI want you to take back what you said just now.\tJe veux que tu retires ce que tu viens de dire.\nI want you to tell me everything that happened.\tJe veux que tu me dises tout ce qui s'est passé.\nI want you to tell me everything that happened.\tJe veux que tu me dises tout ce qui a eu lieu.\nI want you to tell me everything that happened.\tJe veux que tu me dises tout ce qui s'est produit.\nI wanted to know why you didn't come yesterday.\tJe voulais savoir pourquoi vous n'êtes pas venu hier.\nI wanted to know why you didn't come yesterday.\tJe voulais savoir pourquoi vous n'êtes pas venus hier.\nI wanted to know why you didn't come yesterday.\tJe voulais savoir pourquoi vous n'êtes pas venue hier.\nI wanted to know why you didn't come yesterday.\tJe voulais savoir pourquoi vous n'êtes pas venues hier.\nI wanted to know why you didn't come yesterday.\tJe voulais savoir pourquoi tu n'es pas venu hier.\nI wanted to know why you didn't come yesterday.\tJe voulais savoir pourquoi tu n'es pas venue hier.\nI was bitten by a lot of insects in the forest.\tJ'ai été mordu par beaucoup d'insectes dans la forêt.\nI was bitten by a lot of insects in the forest.\tJ'ai été piqué par un grand nombre d'insectes dans la forêt.\nI was hoping I wouldn't have to work on Sunday.\tJ'espérais ne pas devoir travailler le dimanche.\nI was just about to go out when the phone rang.\tJ'étais sur le point de partir quand le téléphone sonna.\nI was just about to go out, when the bell rang.\tJ'étais juste sur le point de partir quand le téléphone sonna.\nI was playing a game when I felt an earthquake.\tJ'étais en train de jouer quand j'ai senti un tremblement de terre.\nI was told that we have to bring our own water.\tOn m'a dit qu'il nous fallait apporter notre propre eau.\nI will be very happy to accept your invitation.\tJe serai très heureux d'accepter ton invitation.\nI will go along with you as far as the station.\tJe vais vous accompagner jusqu'à la gare.\nI will go along with you as far as the station.\tJe vais t'accompagner jusqu'à la gare.\nI will go with you after I have eaten my lunch.\tJ'irai avec toi après avoir déjeuné.\nI will go with you after I have eaten my lunch.\tJ'irai avec vous après avoir déjeuné.\nI wish I had a little more time to finish this.\tJ'aimerais disposer d'un petit peu plus de temps pour finir ça.\nI wish I had known about this when I was a kid.\tJ'aurais aimé savoir ceci quand j'étais enfant.\nI wish I had known about this when I was a kid.\tJ'aurais bien aimé savoir ça quand j'étais gamin.\nI wish you had not told the story to my mother.\tJ'aurais aimé que tu ne racontes pas cette histoire à ma mère.\nI wish you would shut the door when you go out.\tJe souhaiterais que tu fermes la porte quand tu sors.\nI wonder if Tom ever took Mary up on her offer.\tJe me demande si Tom a accepté l'offre de Mary.\nI would appreciate a reply as soon as possible.\tJ'apprécierais une réponse aussitôt que possible.\nI would like to sit in the non-smoking section.\tJe voudrais être assis dans le compartiment non-fumeur s'il vous plaît.\nI would like to thank you for your cooperation.\tJ'aimerais vous remercier pour votre coopération.\nI would rather walk than wait for the next bus.\tJe préfère marcher plutôt que d'attendre le prochain bus.\nI would really appreciate a glass of cold beer.\tJ'apprécierais beaucoup un verre de bière fraîche.\nI wouldn't object if you wanted to go with her.\tJe ne m'opposerais pas si tu voulais aller avec elle.\nI'd like to give this to somebody we can trust.\tJ'aimerais donner ceci à quelqu'un auquel nous pouvons nous fier.\nI'd like to have the sauce on the side, please.\tJ'aimerais avoir la sauce sur le côté, s'il vous plaît.\nI'd like to spend the rest of my life with you.\tJ'aimerais passer le reste de ma vie avec toi.\nI'd like to take advantage of this opportunity.\tJe souhaiterais profiter de cette occasion.\nI'll get in touch with you as soon as I arrive.\tJe prendrai contact avec toi dès que j'arriverai.\nI'll let you know the results as soon as I can.\tJe te ferai connaître les résultats dès que je peux.\nI'll look after your affairs when you are dead.\tJe m'occuperai de tes affaires quand tu seras mort.\nI'll mow the lawn tomorrow if it's not raining.\tJe tondrai la pelouse demain, s'il ne pleut pas.\nI'll phone you as soon as I get to the airport.\tJe t'appellerai dès que j'arrive à l'aéroport.\nI'll phone you as soon as I get to the airport.\tJe vous appellerai dès que j'arrive à l'aéroport.\nI'll take care of my parents when they get old.\tJe m'occuperai de mes parents quand ils vieilliront.\nI'll use magic on him and turn him into a frog.\tJ'emploierai la magie contre lui et le changerai en grenouille.\nI'm at the hospital. I got struck by lightning.\tJe suis à l'hôpital. J'ai été frappé par la foudre.\nI'm fighting mad because someone stole my bike.\tJe suis en rogne parce que quelqu'un a fauché mon vélo.\nI'm glad for this opportunity to work with you.\tJe suis content d'avoir l'opportunité de travailler avec vous.\nI'm not sure if it's a compliment or an insult.\tJe ne suis pas sûr s'il s'agit d'un compliment ou bien d'une insulte.\nI'm not sure if it's a compliment or an insult.\tJe ne suis pas sûre s'il s'agit d'un compliment ou bien d'une insulte.\nI'm not the kind of person that you think I am.\tJe ne suis pas le genre de personne que tu crois.\nI'm not used to talking to people I don't know.\tJe n'ai pas pour habitude de parler à des gens que je ne connais pas.\nI'm so drunk now that I'm seeing two keyboards.\tJe suis tellement soûl maintenant que je vois deux claviers.\nI'm so drunk that I can't feel my face anymore.\tJe suis tellement bourré que je ne peux plus sentir mon visage.\nI'm sorry I'm such a big disappointment to you.\tJe suis désolé d'être une telle déception pour toi.\nI'm sorry to hear that your father passed away.\tJe suis désolé d'apprendre que ton père est décédé.\nI'm sorry, I don't buzz in people I don't know.\tJe suis désolé, je n'admets pas les gens que je ne connais pas.\nI'm sorry, I don't buzz in people I don't know.\tDésolé, je ne laisse pas entrer les gens que je ne connais pas.\nI'm sorry. I'll do anything to make this right.\tJe suis désolé. Je ferai n'importe quoi pour réparer cela.\nI'm sorry. I'll do anything to make this right.\tJe suis désolée. Je ferai n'importe quoi pour réparer cela.\nI'm still having the same dream about drowning.\tJ'ai toujours ce même rêve de noyade.\nI'm sure that he will take part in the contest.\tJe suis sûr qu'il va participer à la compétition.\nI'm thinking of visiting you one of these days.\tJe réfléchis à vous rendre visite un de ces jours.\nI'm thinking of visiting you one of these days.\tJe pense à te rendre visite un de ces quatre.\nI'm very much obliged to you for your kindness.\tJe vous suis très reconnaissant de votre générosité.\nI've been asked to forward this message to you.\tOn m'a demandé de vous transmettre ce message.\nI've been studying French for a very long time.\tJ'apprend le français depuis longtemps.\nI've been studying French for a very long time.\tJ'ai appris le français depuis longtemps.\nI've been upset not having written you a reply.\tJ'ai été tracassé de ne pas vous avoir écrit de réponse.\nI've been upset not having written you a reply.\tJ'ai été tracassée de ne pas t'avoir écrit de réponse.\nI've been very busy since the new term started.\tJ'ai été très occupé depuis le début du nouveau mandat.\nI've got a flashlight in the glove compartment.\tJ'ai une lampe-torche dans la boîte à gants.\nI've gotten tired of watching this boring game.\tJe me suis lassé de regarder cette partie ennuyeuse.\nIf I had known about it, I would have told you.\tSi je l'avais su, je vous l'aurais dit.\nIf I had known about it, I would have told you.\tSi je l'avais su, je te l'aurais dit.\nIf I had known about it, I would have told you.\tL'aurais-je su, je te l'aurais dit.\nIf I had known about it, I would have told you.\tL'aurais-je su, je vous l'aurais dit.\nIf I had taken that plane, I would be dead now.\tSi j'avais pris cet avion, je serais mort à l'heure qu'il est.\nIf I were in her place, I wouldn't give up yet.\tSi j'étais à sa place, je n'abandonnerais pas encore.\nIf I were in her place, I wouldn't give up yet.\tSerais-je à sa place, je n'abandonnerais pas encore.\nIf by any chance it should rain, he won't come.\tSi, par le plus grand des hasards, il devait pleuvoir, il ne viendrait pas.\nIf he knew her phone number, he could call her.\tS'il connaissait son numéro de téléphone, il pourrait l'appeler.\nIf she had married you, she would be happy now.\tSi elle s'était mariée avec toi, elle serait heureuse maintenant.\nIf you abuse your computer, it won't work well.\tSi tu maltraites ton ordinateur, il ne fonctionnera pas bien.\nIf you act like that, he'll think you hate him.\tSi tu agis ainsi, il pensera que tu le détestes.\nIf you act like that, he'll think you hate him.\tSi vous agissez ainsi, il pensera que vous le détestez.\nIf you could do that for me, I'd appreciate it.\tSi tu pouvais faire ça pour moi, je l'apprécierais.\nIf you could do that for me, I'd appreciate it.\tSi tu pouvais le faire pour moi, je l'apprécierais.\nIf you could do that for me, I'd appreciate it.\tSi vous pouviez faire ça pour moi, je l'apprécierais.\nIf you could do that for me, I'd appreciate it.\tSi vous pouviez le faire pour moi, je l'apprécierais.\nIf you could do that for me, I'd appreciate it.\tSi vous pouviez faire ça pour moi, j'apprécierais.\nIf you could do that for me, I'd appreciate it.\tSi vous pouviez le faire pour moi, j'apprécierais.\nIf you could do that for me, I'd appreciate it.\tSi tu pouvais le faire pour moi, j'apprécierais.\nIf you could do that for me, I'd appreciate it.\tSi tu pouvais faire ça pour moi, j'apprécierais.\nIf you hadn't done it, someone else would have.\tSi tu ne l'avais pas fait, quelqu'un d'autre l'aurait fait.\nIf you want my help, you'll have to ask for it.\tSi tu veux mon aide, tu vas devoir la demander.\nIf you're going to do this, you'd better hurry.\tSi tu vas faire ça, tu ferais mieux de te grouiller !\nIf you're going to do this, you'd better hurry.\tSi vous allez le faire, vous feriez mieux de vous dépêcher !\nIf you're going to kill me, I want to know why.\tSi tu es sur le point de me tuer, je veux savoir pourquoi.\nIn addition to that, he failed the examination.\tEn plus de cela, il échoua à l'examen.\nIn all likelihood, it will rain this afternoon.\tSelon toute probabilité, il va pleuvoir cet après-midi.\nIndia gained independence from Britain in 1947.\tL'Inde a obtenu l'indépendance vis-à-vis du Royaume-Uni en 1947.\nIs it really possible to do a brain transplant?\tEst-il vraiment possible de procéder à une transplantation de cerveau ?\nIs it really possible to predict an earthquake?\tEst-il vraiment possible de prévoir un tremblement de terre ?\nIs that what you were talking about last night?\tEst-ce ce dont tu discutais hier soir ?\nIs that what you were talking about last night?\tEst-ce là ce dont tu discutais hier au soir ?\nIs that what you were talking about last night?\tEst-ce ce dont vous discutiez hier soir ?\nIs that what you were talking about last night?\tEst-ce là ce dont vous discutiez hier soir ?\nIs there anything to drink in the refrigerator?\tY a-t-il quoi que ce soit à boire dans le réfrigérateur ?\nIs there anything you want that you don't have?\tY a-t-il quoi que ce soit que vous vouliez qui vous fasse défaut ?\nIs there anything you want that you don't have?\tY a-t-il quoi que ce soit que tu veuilles qui te manque ?\nIs there something in particular that you want?\tY a-t-il quelque chose de particulier que tu veuilles ?\nIs there something in particular that you want?\tY a-t-il quelque chose de particulier que vous vouliez ?\nIs this ladder strong enough to bear my weight?\tEst-ce que cette échelle est assez solide pour supporter mon poids ?\nIt appeared to me that he was very intelligent.\tIl m'a semblé être très intelligent.\nIt cost me a lot of money to build a new house.\tÇa m'a coûté beaucoup d'argent de construire une nouvelle maison.\nIt doesn't matter whether he comes late or not.\tPeu importe, s’il arrive en retard ou non.\nIt doesn't matter who says that, it's not true.\tPeu importe qui dit cela, ce n'est pas vrai.\nIt is a pity that you cannot come to the party.\tC'est dommage que vous ne pouvez pas venir à la fête.\nIt is good for us to understand other cultures.\tC'est une bonne chose pour nous de comprendre d'autres cultures.\nIt is human nature to be bugged by such things.\tIl est dans la nature humaine d'être ennuyé par de telles choses.\nIt is impossible to put the plan into practice.\tIl est impossible de mettre ce plan à exécution.\nIt is necessary that we provide for the future.\tIl est nécessaire que nous pourvoyions pour le futur.\nIt is not easy to speak naturally on the radio.\tCe n'est pas facile de parler de manière naturelle à la radio.\nIt is not surprising that he was elected mayor.\tCe n'est pas surprenant qu'il ait été élu maire.\nIt is said that smoking is bad for your health.\tOn dit que fumer est mauvais pour votre santé.\nIt is time you went to bed. Turn off the radio.\tIl est l'heure que tu ailles te coucher. Coupe la radio.\nIt looks like Tom doesn't really want this job.\tOn dirait que Tom ne veut pas vraiment ce travail.\nIt looks like we might have good weather today.\tOn dirait qu'il va faire beau aujourd'hui.\nIt makes no difference whether he comes or not.\tÇa ne fait aucune différence, qu'il vienne ou pas.\nIt matters little whether he comes late or not.\tCela importe peu qu'il vienne tard ou non.\nIt may sound strange, but what he said is true.\tCela peut sembler étrange, mais ce qu'il a dit est vrai.\nIt must be nice to have friends in high places.\tÇa doit être bien d'avoir des amis haut placés.\nIt requires more courage to suffer than to die.\tIl faut plus de courage pour souffrir que pour mourir.\nIt takes time to speak a foreign language well.\tCela prend du temps de bien parler une langue étrangère.\nIt took me two hours to memorize this sentence.\tJ'ai mis deux heures pour mémoriser cette phrase.\nIt was careless of you to forget your homework.\tIl était négligent de votre part d'oublier vos devoirs à la maison.\nIt was one of the great discoveries in science.\tCe fut une des grandes découvertes de la science.\nIt was one of the worst experiences of my life.\tCe fut l'une des pires expériences de ma vie.\nIt was quite easy for me to carry the plan out.\tIl me fut très aisé d'exécuter le plan.\nIt was such a boring speech that I fell asleep.\tC'était un discours si ennuyeux que je me suis endormi.\nIt was such a boring speech that I fell asleep.\tC'était un discours si ennuyeux que je me suis endormie.\nIt was the bad weather that caused his illness.\tC'est le mauvais temps qui fût la cause de sa maladie.\nIt was the best thing that ever happened to me.\tCe fut la meilleure chose qui m'est jamais arrivée.\nIt was the best thing that ever happened to me.\tÇa a été la meilleure chose qui m'est jamais arrivée.\nIt was the greatest discovery in human history.\tCe fut la plus grande découverte de l'histoire de l'humanité.\nIt was very different from what I had imagined.\tC'était très différent de ce que j'avais imaginé.\nIt's a lot more fun than I thought it would be.\tC'est beaucoup plus amusant que je ne le pensais.\nIt's because I was asked to come that I'm here.\tC'est parce qu'on m'a demandé de venir que je suis là.\nIt's characteristic of him to behave like that.\tC'est typique de lui de se comporter de la sorte.\nIt's convenient living so close to the station.\tC’est pratique d’habiter si près de la station.\nIt's dangerous to text while crossing the road.\tIl est dangereux d'envoyer des SMS tout en traversant la rue.\nIt's easy to lose your footing on loose gravel.\tC'est facile de perdre pied lorsqu'on marche sur du gravier.\nIt's easy to see the fireworks from over there.\tIl est facile de voir les feux d'artifice de là-bas.\nIt's going to take me a while to get this done.\tLe faire va me prendre du temps.\nIt's hard for him to live on his small pension.\tIl lui est difficile de vivre de sa maigre pension.\nIt's hard for him to live on his small pension.\tIl lui est difficile de vivre de sa maigre retraite.\nIt's important to eat three square meals a day.\tIl est important de manger trois repas complets par jour.\nIt's not quite as difficult to do as it sounds.\tCe n'est pas vraiment aussi difficile à faire que ça n'en a l'air.\nIt's okay as long as no one finds out about it.\tC'est bon, aussi longtemps que personne ne le découvre.\nIt's possible that Tom isn't telling the truth.\tIl est possible que Tom ne dise pas la vérité.\nIt's unusual for you to do something like that.\tIl vous est inhabituel de faire une telle chose.\nIt's unusual for you to do something like that.\tC'est inhabituel pour toi de faire quelque chose comme ça.\nIt's up to you to keep things running smoothly.\tIl ne tient qu'à toi que les choses continuent à se dérouler en douceur.\nIt's up to you to keep things running smoothly.\tIl ne tient qu'à vous que les choses continuent à se dérouler en douceur.\nIt's very rude of you to say a thing like that.\tC'est très impoli de ta part de dire un truc pareil.\nJohn and Mary have known each other since 1976.\tJohn et Mary se connaissent depuis 1976.\nJuggling is another thing I'm not very good at.\tJongler est un autre truc auquel je ne suis pas très bon.\nJust between you and me, do you love my sister?\tJuste entre toi et moi, aimes-tu ma sœur ?\nJust between you and me, do you love my sister?\tJuste entre vous et moi, aimez-vous ma sœur ?\nLake Geneva is the largest lake in Switzerland.\tLe lac de Genève est le plus grand lac de Suisse.\nLet's get out of here before the cops get here.\tSortons d'ici avant que la police arrive.\nLet's hope that Tom can handle that by himself.\tEspérons que Tom puisse gérer cela par lui-même.\nLet's hope the situation doesn't get any worse.\tEspérons que la situation n'empire pas.\nLet's meet halfway between your house and mine.\tRencontrons-nous à mi-chemin entre ta maison et la mienne.\nLet's put this money aside for our summer trip.\tMettons cet argent de côté pour notre voyage estival.\nMan is the only animal that possesses language.\tL'homme est le seul animal qui possède le langage.\nMary took out a loan in order to pay her debts.\tMary a fait un prêt pour pouvoir payer ses dettes.\nMiniskirts have been out of date for some time.\tLes minijupes n'ont plus été en vogue depuis quelque temps.\nMy aunt lives in a lonely house in the country.\tMa tante vit dans une maison isolée à la campagne.\nMy colleague filled in for me while I was sick.\tMon collègue m'a remplacé pendant que j'étais malade.\nMy computer has got to be useful for something.\tIl faut bien que mon ordinateur me serve à quelque chose.\nMy dad thinks my boyfriend is a real whack job.\tMon paternel pense que mon petit ami est un vrai dingue.\nMy dad thinks my boyfriend is a real whack job.\tMon père trouve que mon petit ami est un vrai barge.\nMy father and mother were sitting under a tree.\tMon père et ma mère étaient assis sous un arbre.\nMy father has gone to China. He isn't here now.\tMon père est parti en Chine. Il ne se trouve pas là pour l'instant.\nMy father has gone to China. He isn't here now.\tMon père est parti pour la Chine. Il ne se trouve pas là pour l'instant.\nMy father has gone to China. He isn't here now.\tMon père est parti en Chine. Il n'est pas là pour l'instant.\nMy father has gone to China. He isn't here now.\tMon père est parti pour la Chine. Il n'est pas là pour l'instant.\nMy father implied our summer trip was arranged.\tMon père a sous-entendu que notre voyage estival était arrangé.\nMy father is so old that he is hard of hearing.\tMon père est si vieux qu'il est dur d'oreille.\nMy father's birthday falls on Sunday this year.\tCette année, l'anniversaire de mon père tombe un dimanche.\nMy friend Tom has twice as many stamps as I do.\tMon ami Tom a deux fois plus de timbres que moi.\nMy house is ten minutes' walk from the station.\tMa maison est à 10 minutes à pied de la gare.\nMy mommy and daddy will love me no matter what.\tMa maman et mon papa m'aimeront, quoi qu'il advienne.\nMy mother would freak out if she knew about it.\tMa mère flipperait si elle était au courant.\nMy name is Tom and I'll be your server tonight.\tJe m'appelle Tom et je serai votre serveur ce soir.\nMy parents pushed me to quit the baseball club.\tMes parents m'ont obligé à quitter le club de baseball.\nMy sister is not a good cook, and neither am I.\tMa sœur n'est pas bonne cuisinière et moi non plus.\nMy sister is thin, but I'm a little overweight.\tMa sœur est mince, mais je suis un peu grosse.\nMy three-year-old niece kissed me on the cheek.\tMa nièce de trois ans m'a embrassé sur la joue.\nMy uncle lives in Madrid, the capital of Spain.\tMon oncle vit à Madrid, la capitale de l'Espagne.\nNever rub your eyes after cutting a hot pepper.\tNe vous frottez jamais les yeux après avoir coupé un piment.\nNews of the recent blast is all over the radio.\tPartout à la radio il y a des nouvelles de l'explosion qui a eu lieu récemment.\nNews of the recent blast is all over the radio.\tLes nouvelles de la récente explosion sont partout à la radio.\nNo amount of training can prepare you for this.\tAucun entraînement ne peut nous préparer à cela.\nNo charges have been filed against the suspect.\tAucune plainte n'a été déposée contre le suspect.\nNo matter how tired I might be, I have to work.\tAussi fatigué que je puisse être, je dois travailler.\nNo one can predict where lightning will strike.\tPersonne ne peut prédire où la foudre frappera.\nNo one can tell what will happen in the future.\tPersonne ne peut dire ce qu'il se passera dans le futur.\nNo sooner had he arrived than the bus departed.\tLe bus est parti juste au moment où il est arrivé.\nNot everyone believed this plan was a good one.\tTout le monde ne croyait pas que ce plan était bon.\nNot knowing what to do, I asked him for advice.\tNe sachant pas quoi faire, je lui ai demandé conseil.\nOh, I haven't decided what I'm going to do yet.\tOh, je n'ai pas encore décidé ce que je vais faire.\nOh, I'm sorry. I guess I have the wrong number.\tOh, je suis désolé. J'imagine que j'ai fait un mauvais numéro.\nOnce a species goes extinct, it's gone forever.\tUne fois qu'une espèce est éteinte, c'est pour toujours.\nOne million people lost their lives in the war.\tUn million de personnes ont perdu la vie pendant la guerre.\nOne of my hobbies is making artificial flowers.\tL'un de mes passe-temps est de faire des fleurs artificielles.\nPainting is another thing I can do fairly well.\tPeindre est une autre chose que je peux faire assez bien.\nParents need to set the rules around the house.\tIl faut que les parents établissent les règles domestiques.\nParis is one of the cities I visited last year.\tParis est l'une des villes que j'ai visitées l'an passé.\nPerhaps you would have preferred a French dish.\tPeut-être auriez-vous préféré un plat français.\nPlease lend me the video when you have seen it.\tS'il vous plaît prêtez-moi la vidéo quand vous l'aurez vue.\nPlease settle this account by October 28, 1998.\tPrière de régler ce compte avant le 28 octobre 1998.\nPlease spend a few minutes thinking about this.\tMerci de consacrer quelques minutes à y réfléchir.\nPlease spend a few minutes thinking about this.\tVeuillez consacrer quelques minutes à y réfléchir.\nPlease spend a few minutes thinking about this.\tVeuillez consacrer quelques minutes à y réfléchir, je vous prie.\nPlease turn off the light before you go to bed.\tJe te prie d'éteindre la lumière avant d'aller au lit.\nPlease turn off the light before you go to bed.\tJe vous prie d'éteindre la lumière avant d'aller au lit.\nPlease turn off the light before you go to bed.\tJe te prie d'éteindre la lumière avant que tu n'ailles au lit.\nPlease turn off the light before you go to bed.\tJe vous prie d'éteindre la lumière avant que vous n'alliez au lit.\nPlease will you close the door when you go out.\tVeuillez fermer la porte en sortant.\nPoliticians never tell us their inner thoughts.\tLes politiciens ne nous disent jamais leurs arrières-pensées.\nPrices are double what they were ten years ago.\tLes prix sont le double de ce qu'ils étaient il y a dix ans.\nPrices are double what they were two years ago.\tLes prix sont deux fois plus élevés qu'il y a deux ans.\nRevenues are growing, but not as fast as costs.\tLes recettes augmentent mais pas aussi vite que les coûts.\nSake is a traditional Japanese alcoholic drink.\tLe saké est une boisson alcoolique traditionnelle japonaise.\nScientists haven't found a cure for cancer yet.\tLes scientifiques ne savent pas encore soigner le cancer.\nSeveral soldiers were injured in the offensive.\tPlusieurs soldats furent blessés lors de l'offensive.\nShe advised him to take better care of himself.\tElle lui conseilla de prendre davantage soin de lui-même.\nShe advised him to take better care of himself.\tElle lui a conseillé de prendre davantage soin de lui-même.\nShe and I have about the same number of stamps.\tElle et moi disposons à peu près du même nombre de timbres.\nShe breaks a dish every time she washes dishes.\tElle casse une assiette chaque fois qu'elle fait la vaisselle.\nShe combed her hair and bound it with a ribbon.\tElle se peigna les cheveux et les attacha avec un bandeau.\nShe combed her hair and bound it with a ribbon.\tElle peigna ses cheveux et les attacha avec un ruban.\nShe combed her hair and bound it with a ribbon.\tElle s'est peigné les cheveux et les a attachés avec un ruban.\nShe could not keep her daughter from going out.\tElle ne pouvait pas empêcher sa fille de sortir.\nShe couldn't attend the morning church service.\tElle ne put assister au service religieux du matin.\nShe couldn't attend the morning church service.\tElle n'a pas pu assister au service religieux du matin.\nShe couldn't convince him to buy her a new car.\tElle n'a pas pu le convaincre de lui acheter une nouvelle voiture.\nShe did not eat anything until she was rescued.\tElle n'a rien mangé avant d'être secourue.\nShe didn't want him to go out with other women.\tElle ne voulait pas qu'il sorte avec d'autres femmes.\nShe feeds her dog the same thing that she eats.\tElle nourrit son chien avec ce qu'elle mange elle-même.\nShe feeds her dog the same thing that she eats.\tElle donne à manger à son chien la même chose qu'elle mange.\nShe gave birth to a pretty baby girl last week.\tElle a accouché d’une adorable petite fille la semaine dernière.\nShe got married without her parents knowing it.\tElle se maria sans que ses parents ne le sachent.\nShe had a blue dress on at the party yesterday.\tElle portait une robe bleue à la fête, hier.\nShe has improved her skill in cooking recently.\tElle a amélioré son habileté à cuisiner, récemment.\nShe has tried various methods of slimming down.\tElle a essayé diverses méthodes pour maigrir.\nShe intends to participate in a beauty contest.\tElle a l'intention de prendre part à un concours de beauté.\nShe is not only beautiful but also intelligent.\tElle est non seulement belle mais aussi intelligente.\nShe is the one you should model yourself after.\tElle est celle dont tu devrais prendre modèle.\nShe is the one you should model yourself after.\tElle est celle dont vous devriez prendre modèle.\nShe is trying to prove the existence of ghosts.\tElle tente de prouver l'existence des fantômes.\nShe is trying to prove the existence of ghosts.\tElle tente de prouver l'existence de fantômes.\nShe is trying to save as much money as she can.\tElle essaie d'économiser autant qu'elle peut.\nShe is well known both in Japan and in America.\tElle est très connue à la fois au Japon et en Amérique.\nShe isn't old enough to get a driver's license.\tElle n'est pas assez grande pour obtenir son permis de conduire.\nShe lost her money, her family and her friends.\tElle a perdu son argent, sa famille et ses amis.\nShe lost sight of her friend in the huge crowd.\tElle a perdu de vue son ami dans la foule immense.\nShe made it plain that she wanted to marry him.\tElle fit clairement comprendre qu'elle voulait l'épouser.\nShe may have been beautiful when she was young.\tPeut-être a-t-elle été belle lorsqu'elle était jeune.\nShe refuses to abandon her career for marriage.\tElle refuse d'abandonner sa carrière pour le mariage.\nShe set up an association to help blind people.\tElle a fondé une association pour aider des aveugles.\nShe spends a lot of money when she goes abroad.\tElle dépense beaucoup d'argent quand elle va à l'étranger.\nShe spent a good deal of money on her vacation.\tElle dépensa une bonne partie de son argent durant ses congés.\nShe started kissing him as soon as he got home.\tElle se mit à l'embrasser aussitôt qu'il arriva chez eux.\nShe started kissing him as soon as he got home.\tElle se mit à l'embrasser aussitôt qu'il arriva chez lui.\nShe started kissing him as soon as he got home.\tElle s'est mise à l'embrasser aussitôt qu'il est arrivé chez eux.\nShe started kissing him as soon as he got home.\tElle s'est mise à l'embrasser aussitôt qu'il est arrivé chez lui.\nShe stayed up late to finish sewing your dress.\tElle s'est couchée tard pour finir de coudre ta robe.\nShe steered our efforts in the right direction.\tElle a dirigé nos efforts dans la bonne direction.\nShe suggested that I give it to him right away.\tElle suggéra que je le lui donne sans délai.\nShe suggested that I give it to him right away.\tElle a suggéré que je le lui donne sans délai.\nShe suggested that I should clean the bathroom.\tElle suggéra que je devrais nettoyer la salle-de-bain.\nShe suggested that I should clean the bathroom.\tElle a suggéré que je devrais nettoyer la salle-de-bain.\nShe suggested that the customer buy a blue tie.\tElle a suggéré au client d'acheter une cravate bleue.\nShe talked on and on about her family problems.\tElle parlait encore et encore de ses problèmes familiaux.\nShe thinks about him when she's feeling lonely.\tElle pense à lui lorsqu'elle se sent seule.\nShe was advised by him to listen to her doctor.\tIl lui conseilla d'écouter son médecin.\nShe was advised by him to listen to her doctor.\tIl lui a conseillé d'écouter son médecin.\nShe was always ready to help people in trouble.\tElle était toujours prête à aider ceux dans le besoin.\nShe was brushing her hair in front of a mirror.\tElle se brossait les cheveux devant un miroir.\nShe was ready to help him with washing the car.\tElle était prête à l'aider pour laver la voiture.\nShe went to rehab and straightened herself out.\tElle est allée en réhabilitation et s'en est sortie.\nShe's curious to find out who sent the flowers.\tElle est curieuse de savoir qui a envoyé les fleurs.\nShe's not old enough to get a driver's license.\tElle n'est pas assez âgée pour obtenir le permis de conduire.\nSheep are bred for their fleece and their meat.\tLes moutons sont élevés pour leur toison et leur viande.\nSleep is no less necessary to health than food.\tLe sommeil n'est pas moins nécessaire à la santé que la nourriture.\nSome go to school by bicycle, others go by bus.\tCertains vont à l'école à bicyclette, d'autres en bus.\nSome guy named Tom said he was looking for you.\tUn type appelé Tom a dit qu'il te cherchait.\nSome people are fascinated by shiny new things.\tCertaines personnes sont fascinées par les nouvelles choses étincelantes.\nSome people gain weight when they stop smoking.\tCertaines personnes grossissent après avoir arrêté de fumer.\nSomebody must break the sad news to her mother.\tQuelqu'un doit annoncer les tristes nouvelles à sa mère.\nSomeday she'll have to pay for what she's done.\tUn jour elle devra payer pour ce qu'elle a fait.\nSomeone must have taken my umbrella by mistake.\tQuelqu'un a dû prendre mon parapluie par inadvertance.\nSomething happened here, but I don't know what.\tQuelque chose s'est produit ici, mais je ne sais pas quoi.\nSomething happened here, but I don't know what.\tQuelque chose s'est passé ici, mais je ne sais pas quoi.\nSomething happened here, but I don't know what.\tQuelque chose s'est produit ici, mais j'ignore quoi.\nSomething happened here, but I don't know what.\tQuelque chose s'est passé ici, mais j'ignore quoi.\nSomething happened here, but I don't know what.\tQuelque chose a eu lieu ici, mais je ne sais pas quoi.\nSomething happened here, but I don't know what.\tQuelque chose a eu lieu ici, mais j'ignore quoi.\nSomething is wrong with the engine of this car.\tQuelque chose ne va pas avec le moteur de cette voiture.\nSomething is wrong with the engine of this car.\tLe moteur de cette voiture a un problème.\nSomething must have happened to him on the way.\tQuelque chose a dû lui arriver en chemin.\nSometimes it's better to just not say anything.\tParfois il est préférable de juste ne rien dire du tout.\nSometimes things that happen do not make sense.\tParfois, les choses qui arrivent n'ont pas de sens.\nSometimes things that happen do not make sense.\tParfois, les choses qui arrivent sont dénuées de sens.\nSooner or later, the hostages will be released.\tTôt ou tard les otages seront libérés.\nSooner or later, the hostages will be set free.\tTôt ou tard, les otages seront libérés.\nSpending time with friends on the beach is fun.\tC'est amusant de passer du temps sur la plage avec des copains.\nStrange to say, no one voted for the candidate.\tAussi étrange à dire, personne ne vota pour le candidat.\nTake a screenshot of just the highlighted text.\tRegardez juste le texte surligné à l'écran.\nTensions are growing between the two countries.\tLa tension monte entre les deux pays.\nThank you for helping me celebrate my birthday.\tMerci de m'aider à fêter mon anniversaire.\nThank you for helping me correct the situation.\tMerci de m'avoir aidé à corriger la situation.\nThat dog is exactly twice the size of this one.\tCe chien est exactement deux fois plus grand que celui-ci.\nThat is insane. Only a fool would believe that.\tC'est insensé. Seul un idiot croirait cela.\nThat made the problem all the more complicated.\tLe problème n'en a été que plus compliqué.\nThat reminds me of something I heard yesterday.\tCela me rappelle quelque chose que j'ai entendue hier.\nThat student raised his hand to ask a question.\tCet élève leva la main pour poser une question.\nThat student raised his hand to ask a question.\tCet étudiant leva la main pour poser une question.\nThat's pretty much everything you need to know.\tC'est à peu près tout ce qu'il vous faut savoir.\nThat's pretty much everything you need to know.\tC'est à peu près tout ce qu'il te faut savoir.\nThe Battle for Belleau Wood lasted three weeks.\tLa Bataille du bois Belleau a duré trois semaines.\nThe Indians were not happy with this agreement.\tLes Indiens n'étaient pas satisfaits de cet accord.\nThe Mona Lisa was painted by Leonardo da Vinci.\tMona Lisa a été peinte par Léonard de Vinci.\nThe Mona Lisa was painted by Leonardo da Vinci.\tLa Joconde a été peinte par Léonard de Vinci.\nThe Red Cross distributed food to the refugees.\tLa Croix-Rouge distribua des vivres aux réfugiés.\nThe accident happened the day before yesterday.\tL'accident s'est passé avant-hier.\nThe accident happened the day before yesterday.\tL'accident s'est produit avant-hier.\nThe accident took place near that intersection.\tL'accident a eu lieu près de ce croisement.\nThe actor died at the height of his popularity.\tL'acteur mourut au sommet de sa popularité.\nThe area of the factory is 1,000 square meters.\tLa superficie de l'usine est de mille mètres carrés.\nThe armed forces occupied the entire territory.\tLes forces armées occupèrent l’entièreté du territoire.\nThe army is in the north to protect the border.\tL'armée est dans le nord pour protéger la frontière.\nThe bakery is located next to the butcher shop.\tLa boulangerie se trouve à côté de la charcuterie.\nThe baseball game was put off till next Sunday.\tLe match de baseball a été reporté à dimanche prochain.\nThe bell had already rung when I got to school.\tLa sonnerie avait déjà retenti lorsque j'arrivai à l'école.\nThe boy could not find his way out of the maze.\tLe garçon ne pouvait trouver son chemin hors du labyrinthe.\nThe bus was empty except for one elderly woman.\tLe bus était vide, à l'exception d'une vieille dame.\nThe busy mother told the children to run along.\tLa mère, affairée, dit aux enfants de déguerpir.\nThe captain gave the order to abandon the ship.\tLe capitaine donna l'ordre d'abandonner le navire.\nThe car's antenna is built into the windshield.\tL'antenne de la voiture est intégrée au pare-brise.\nThe cause of death seems to be a gunshot wound.\tLa cause de la mort semble être une blessure par balle.\nThe cause of his death still remains a mystery.\tLa cause de sa mort reste encore un mystère.\nThe chances are that the bill will be rejected.\tLa probabilité est que le projet de loi sera rejeté.\nThe cherry blossoms are at their best in April.\tC'est en avril que les fleurs de cerisiers sont à leur zénith.\nThe child came aboard the plane in a good mood.\tL'enfant monta dans l'avion de bonne humeur.\nThe coffee was so hot that I couldn't drink it.\tLe café était tellement chaud que je n'ai pas pu le boire.\nThe construction crews worked around the clock.\tLes équipes de construction ont travaillé vingt-quatre heures sur vingt-quatre.\nThe country's main products are cocoa and gold.\tLes principaux produits du pays sont le cacao et l'or.\nThe electricity went out, but it's back on now.\tIl y a eu une coupure d'électricité, mais maintenant c'est revenu.\nThe explorers cut their way through the forest.\tLes explorateurs se ménagèrent un passage à travers la forêt.\nThe five of us stood in a circle holding hands.\tTous les cinq nous formâmes un cercle en nous tenant les mains.\nThe game was called off on account of the rain.\tLe match fut annulé à cause de la pluie.\nThe garbage collector comes three times a week.\tLes éboueurs passent trois fois par semaine.\nThe girl and her parents were very sympathetic.\tLa fille et ses parents étaient très sympathiques.\nThe girl was afraid to jump down from the roof.\tLa jeune fille avait peur de sauter du toit.\nThe girl was afraid to jump down from the roof.\tLa fille avait peur de sauter du toit.\nThe girl was visibly shaken after the accident.\tLa fille était visiblement en état de choc après l'accident.\nThe groom left the bride standing at the altar.\tLe marié laissa la mariée devant l'autel.\nThe ground was covered with frost this morning.\tLe sol état couvert de givre, ce matin.\nThe hotel was designed by a Japanese architect.\tCet hôtel a été conçu par un architecte japonais.\nThe ice is not thick enough to hold our weight.\tLa glace n'est pas assez épaisse pour supporter notre poids.\nThe job of a driver is not as easy as it looks.\tLe travail de chauffeur n'est pas aussi simple qu'il ne semble.\nThe main character dies at the end of the book.\tLe personnage principal meurt à la fin du livre.\nThe man controlled the country for fifty years.\tL'homme contrôla le pays pendant cinquante ans.\nThe man couldn't so much as write his own name.\tLe type ne pouvait même pas écrire son propre nom.\nThe man reading a paper over there is my uncle.\tL'homme par là-bas qui lit le journal est mon oncle.\nThe mandate of the president lasted five years.\tLe mandat du président dure cinq ans.\nThe moment she was alone she opened the letter.\tElle ouvrit la lettre dès qu'elle fut toute seule.\nThe more I sleep, the less I feel like working.\tPlus je dors, moins j'ai envie de travailler.\nThe movie is now showing at a theater near you.\tLe film est projeté en ce moment au cinéma près de chez toi.\nThe new fur coats were displayed in the window.\tLes nouveaux manteaux de fourrure étaient exposés dans la vitrine.\nThe new students entered the hall full of hope.\tLes nouveaux élèves pénétrèrent dans la salle, pleins d'espoirs.\nThe new tunnel is twice as long as the old one.\tLe nouveau tunnel est deux fois plus long que l'ancien.\nThe old man freed the little fox from the trap.\tCe vieil homme a libéré le renardeau du piège.\nThe older we grow, the less innocent we become.\tPlus on devient vieux, moins on devient innocent.\nThe only thing we could do was to bear with it.\tLa seule chose que nous pouvions faire était de le supporter.\nThe patient will soon recover from his illness.\tLe patient va bientôt se remettre de sa maladie.\nThe people listened to the speaker attentively.\tLe peuple écouta l'orateur avec attention.\nThe petals floated on the surface of the water.\tLes pétales flottaient sur la surface de l'eau.\nThe petals floated on the surface of the water.\tLes pétales flottaient à la surface de l'eau.\nThe police say they know you had an accomplice.\tLes policiers disent qu'ils savent que vous aviez un complice.\nThe policeman arrested him for drunken driving.\tLe policier l'a arrêté pour conduite en état d'ivresse.\nThe policeman captured the man who was running.\tLe policier captura l'homme qui courrait.\nThe poor girl made a living by selling flowers.\tLa pauvre fille gagnait sa vie en vendant des fleurs.\nThe population of this city is on the increase.\tLa population de cette ville croît.\nThe price of vegetables varies from day to day.\tLe prix des légumes varie au jour le jour.\nThe rain didn't stop them from doing their job.\tLa pluie ne les a pas empêchés de faire leur travail.\nThe reason which he gave is hard to understand.\tLa raison qu'il donna est difficile à comprendre.\nThe reason which he gave is hard to understand.\tLa raison qu'il a donnée est difficile à comprendre.\nThe recent advances in medicine are remarkable.\tLes récentes avancées de la médecine sont remarquables.\nThe robber aimed his gun at the police officer.\tLe voleur a braqué son arme à feu sur l'officier de police.\nThe robber ran away when the policeman saw him.\tLe voleur s'enfuit quand le policier le vit.\nThe room smelled like someone had been smoking.\tLa pièce sentait comme si quelqu'un avait fumé.\nThe sentence is free from grammatical mistakes.\tLa phrase ne contient pas de faute de grammaire.\nThe skyscraper was built on a solid foundation.\tLe gratte-ciel a été érigé sur de solides fondations.\nThe space race was an exciting time in history.\tLa course spatiale fut une période excitante de l'histoire.\nThe stadium was packed with excited spectators.\tLe stade était bondé de spectateurs enthousiastes.\nThe station is located between these two towns.\tLa gare est située entre ces deux villes.\nThe statistics gave ammunition to her argument.\tLes statistiques fournirent de l'eau à son moulin.\nThe sudden death of his brother surprised them.\tLa mort soudaine de son frère les a surpris.\nThe sun rises in the east and sets in the west.\tLe soleil se lève à l’est et se couche à l’ouest.\nThe teacher told them not to swim in the river.\tL'instituteur leur dit de ne pas nager dans la rivière.\nThe teacher told them not to swim in the river.\tL'institutrice leur dit de ne pas nager dans la rivière.\nThe terrible scene sent shivers down his spine.\tL'horrible scène provoqua des frissons le long de sa colonne vertébrale.\nThe three boys had only two dollars among them.\tLes trois garçons disposaient entre eux de seulement deux dollars.\nThe train station will be closed from tomorrow.\tLa gare sera fermée à partir de demain.\nThe trouble with you is that you talk too much.\tLe problème avec toi, c'est que tu parles trop.\nThe trouble with you is that you talk too much.\tLe problème avec vous, c'est que vous parlez trop.\nThe two girls wore the same dress to the dance.\tLes deux filles portaient la même robe au bal.\nThe workers came to ask about their pay raises.\tLes ouvriers sont venus s'enquérir de leurs augmentations de salaires.\nThere are grammar mistakes in this composition.\tIl y a des fautes de grammaire dans cette composition.\nThere are many interesting people in the world.\tIl y a beaucoup de gens intéressants, dans le monde.\nThere are no food stores in the immediate area.\tIl n'y a pas de magasin d'alimentation à proximité immédiate.\nThere is a bench in front of the train station.\tIl y a un banc devant la gare.\nThere is a lot of pressure on women to be thin.\tIl y a beaucoup de pression sur les femmes pour qu'elles soient minces.\nThere is a nice park in the center of the town.\tIl y a un chouette parc au centre de la ville.\nThere is a police car parked outside our house.\tIl y a une voiture de police garée devant notre maison.\nThere is an urgent need for affordable housing.\tIl y a un besoin urgent de logement abordable.\nThere is an urgent need for experienced pilots.\tIl y a un besoin urgent de pilotes expérimentés.\nThere is an urgent need for qualified teachers.\tIl y a un besoin urgent d'enseignants qualifiés.\nThere is no denying that she is very efficient.\tOn ne peut nier qu'elle est très efficace.\nThere must be some misunderstanding between us.\tIl doit y avoir un malentendu entre nous.\nThere seems to be no possibility of compromise.\tApparemment, aucun compromis n'est envisageable.\nThere was a drop in temperature after the rain.\tAprès la pluie, la température chuta.\nThere was a large audience in the concert hall.\tIl y avait beaucoup de public dans l'auditorium.\nThere was a large harvest of peaches last year.\tLa récolte de pêches de l'année dernière était abondante.\nThere was absolutely no furniture in that room.\tIl n'y avait absolument aucun mobilier dans la pièce.\nThere was nothing but an old chair in the room.\tIl n'y avait rien dans la chambre, excepté une vieille chaise.\nThere's a good view of Mt. Akagi from upstairs.\tIl y a une belle vue du Mont Akagi à l'étage.\nThere's no guarantee that the stock will go up.\tIl n'y aucune garantie que l'action va monter.\nThere's no guarantee that the stock will go up.\tIl n'y a aucune garantie que l'action va grimper.\nThere's something important I need to tell you.\tIl y a quelque chose d'important que je dois te dire.\nThere's something important I need to tell you.\tIl y a quelque chose d'important que je dois vous dire.\nThese days few people suffer from tuberculosis.\tDe nos jours, peu de gens souffrent de tuberculose.\nThese documents were printed on recycled paper.\tCes documents ont été imprimés sur du papier recyclé.\nThese grapes are so sour that I can't eat them.\tLes raisins sont tellement surs que je ne peux les manger.\nThey advertised that they had a house for sale.\tIls annoncèrent qu'ils avaient une maison à vendre.\nThey advertised that they had a house for sale.\tElles annoncèrent qu'elles avaient une maison à vendre.\nThey are no more alike than a cow and a canary.\tIls ne sont pas plus semblables qu'une vache à un canari.\nThey entered into a discussion about the issue.\tIls ont commencé un débat concernant le problème.\nThey gathered at the coffee shop for a meeting.\tIls se sont rassemblés à la cafétéria pour une réunion.\nThey have practiced this custom for many years.\tIls pratiquent cette coutume depuis des années.\nThey saw us as they were getting off the train.\tIls nous virent alors qu'ils étaient en train de descendre du train.\nThey saw us as they were getting off the train.\tElles nous ont vus alors qu'elles étaient en train de descendre du train.\nThey saw us as they were getting off the train.\tIls nous ont vues alors qu'ils étaient en train de descendre du train.\nThey say that you never forget your first love.\tOn dit qu'on oublie jamais son premier amour.\nThey sell various kinds of goods at that store.\tIls vendent différentes sortes d'articles dans ce magasin.\nThey shouldn't let children swim in that river.\tIls ne devraient pas laisser les enfants nager dans cette rivière.\nThey took a sample of my blood at the hospital.\tIls m'ont pris un échantillon de sang à l'hôpital.\nThey were disappointed that you could not come.\tIls étaient déçus que tu n'aies pas pu venir.\nThey were in the right place at the right time.\tIls se trouvaient au bon endroit au bon moment.\nThey were in the right place at the right time.\tElles se trouvaient au bon endroit au bon moment.\nThey were listening to the lecture attentively.\tIls écoutaient l'exposé avec attention.\nThey were stuck in the elevator for four hours.\tIls sont restés coincés dans l'ascenseur pendant quatre heures.\nThey were stuck in the elevator for four hours.\tElles sont restées coincées dans l'ascenseur pendant quatre heures.\nThey're not going to be able to find the hotel.\tIls ne vont pas pouvoir trouver l'hôtel.\nThis book is so difficult that I can't read it.\tCe livre est si difficile que je ne peux pas le lire.\nThis is my first time, so I'm a little nervous.\tC'est ma première fois alors je suis un peu nerveux.\nThis is my first time, so I'm a little nervous.\tC'est ma première fois alors je suis un peu nerveuse.\nThis is the reason why I didn't come yesterday.\tC'est la raison pour laquelle je ne suis pas venue hier.\nThis is the reason why I didn't come yesterday.\tC'est la raison pour laquelle je ne suis pas venu hier.\nThis is the village where I spent my childhood.\tC'est le village où j'ai passé mon enfance.\nThis is the window which was broken by the boy.\tVoici la fenêtre que le jeune garçon a brisée.\nThis letter says that he will arrive on Monday.\tCette lettre dit qu'il arrivera lundi prochain.\nThis mall is so big that I can't find the exit.\tCe centre commercial est tellement grand que je n'arrive pas à en trouver la sortie.\nThis morning I missed the train I usually take.\tCe matin j'ai raté le train que je prends d'habitude.\nThis one has a lot of advantages over that one.\tCelui-ci est bien avantagé par rapport à celui-là.\nThis science-fiction novel is very interesting.\tCe roman de science-fiction est très intéressant.\nThis side of the house catches the morning sun.\tCette façade de la maison est exposée au soleil le matin.\nThis song reminds me of someone I used to know.\tCette chanson me rappelle quelqu'un que je connaissais.\nThis telephone is connected to the fax machine.\tCe téléphone est relié au fax.\nThis train will get you there in half the time.\tCe train vous y emmènera en moitié moins de temps.\nThis year, Valentine's Day falls on a Thursday.\tCette année, la Saint-Valentin tombe un jeudi.\nThousands of foreigners visit Japan every year.\tDes milliers d'étrangers visitent le Japon chaque année.\nThousands of satellites orbit around the earth.\tDes milliers de satellites orbitent autour de la Terre.\nTo tell the truth, I'm tired of violent movies.\tPour dire la vérité, j'en ai assez de voir des films violents.\nTom always tries to do what he thinks is right.\tTom essaye toujours de faire ce qu'il pense juste.\nTom always tries to do what he thinks is right.\tTom essaye toujours de faire ce qu'il pense être juste.\nTom and I aren't friends. We're just coworkers.\tTom et moi ne sommes pas amis. Nous ne sommes que collègues.\nTom and Mary are on good terms with each other.\tTom et Mary sont en bons termes.\nTom and Mary are planning a picnic at the lake.\tTom et Mary préparent un pic-nique au bord du lac.\nTom and Mary don't like the same kind of music.\tTom et Marie n'aiment pas le même genre de musique.\nTom and Mary left Boston at the end of October.\tTom et Mary quittèrent Boston à la fin d'octobre.\nTom asked Mary why she was buying so much food.\tTom a demandé à Mary pourquoi elle achetait autant de nourriture.\nTom came on Monday and went back the day after.\tTom vint le lundi et repartit le jour suivant.\nTom certainly had an interesting story to tell.\tTom avait certainement une histoire intéressante à raconter.\nTom couldn't borrow as much money as he needed.\tTom n'a pas pu emprunter autant d'argent qu'il le fallait.\nTom didn't have enough money to go home by bus.\tTom n'a pas eu assez d'argent pour rentrer à la maison en bus.\nTom didn't help Mary as much as he should have.\tTom n'a pas aidé Marie autant qu'il aurait dû.\nTom didn't know who Mary was planning to marry.\tTom ne savait pas avec qui Marie envisageait de se marier.\nTom doesn't have a date for the Saturday night.\tTom n'a aucun rendez-vous amoureux pour samedi soir.\nTom doesn't have what it takes to be a teacher.\tTom n’a pas l’étoffe d’un professeur.\nTom doesn't have what it takes to be a teacher.\tTom n’a pas l’étoffe d’un enseignant.\nTom doesn't know where Mary buys her groceries.\tTom ne sait pas où Mary achète ses épiceries.\nTom doesn't know whether to turn left or right.\tTom ne sait pas s'il faut tourner à gauche ou à droite.\nTom doesn't want to deal with this problem now.\tTom ne veut pas s'occuper de ce problème maintenant.\nTom gave them a general idea of what he wanted.\tTom donna une idée générale de ce qu'il voulait.\nTom gets angry when he doesn't get his own way.\tTom se met en colère quand tout ne se passe pas comme il veut.\nTom graduated from high school three years ago.\tTom a terminé ses études secondaires il y a trois ans.\nTom had to do it even though he didn't want to.\tTom a dû le faire même s'il ne le voulait pas.\nTom has been absent from school for three days.\tTom a été absent de l'école pendant trois jours.\nTom has been dating Mary for about three years.\tTom sort avec Mary depuis environ trois ans.\nTom has been told several times not to do that.\tTom a été prié plusieurs fois de ne pas faire ça.\nTom has never lived anywhere other than Boston.\tTom n'a jamais vécu ailleurs qu'à Boston.\nTom hasn't eaten anything in the past 36 hours.\tTom n'a rien mangé au cours des trente-six dernières heures.\nTom immigrated to Australia when he was thirty.\tTom a immigré en Australie lorsqu'il avait trente ans.\nTom is not as smart as he likes to think he is.\tTom n'est pas aussi intelligent qu'il aime le croire.\nTom isn't as good at French as he thinks he is.\tTom n'est pas aussi bon en français qu'il croit l'être.\nTom just told his wife that he was leaving her.\tTom vient de dire à sa femme qu'il la quittait.\nTom knew Mary's husband before she got married.\tTom connaissait le mari de Marie avant qu'elle ne se marie.\nTom learned how to swim when he was very young.\tTom a appris à nager quand il était très jeune.\nTom looked very tired when I saw him yesterday.\tTom avait l'air très fatigué quand je l'ai vu hier.\nTom may come and visit me any time he wants to.\tTom peut venir me rendre visite quand il le souhaite.\nTom persuaded Mary to go to the party with him.\tTom a convaincu Marie d'aller à la fête avec lui.\nTom put all his belongings in a small suitcase.\tTom mit tous ses biens dans une petite valise.\nTom sat alone with a half-empty bottle of wine.\tTom s'assit seul avec une bouteille de vin à moitié vide.\nTom sat alone with a half-empty bottle of wine.\tTom s'est assis seul avec une bouteille de vin à moitié vide.\nTom says that he's never tried eating dog food.\tTom dit qu'il n'a jamais essayé de manger de la nourriture pour chien.\nTom still hasn't found what he was looking for.\tTom n'a toujours pas trouvé ce qu'il cherchait.\nTom told Mary that their relationship was over.\tTom a dit à Mary que leur relation était terminée.\nTom told me I was the one he wanted to talk to.\tTom m'a dit que j'étais celui à qui il voulait parler.\nTom told me I was the one he wanted to talk to.\tTom me dit que j'étais celui à qui il voulait parler.\nTom told me I was the one he wanted to talk to.\tTom m'a dit que j'étais celle à qui il voulait parler.\nTom told me I was the one he wanted to talk to.\tTom me dit que j'étais celle à qui il voulait parler.\nTom tried to convince Mary to dye her hair red.\tTom a essayé de convaincre Mary de teindre ses cheveux en rouge.\nTom wanted Mary to wait for him at the library.\tTom voulait que Mary l'attende à la bibliothèque.\nTom will be absent today because he has a cold.\tTom sera absent aujourd'hui car il a un rhume.\nTom won't let Mary do anything she wants to do.\tTom ne laissera pas Mary faire tout ce qu'elle a envie de faire.\nTom won't let Mary do anything she wants to do.\tTom ne laissera Mary rien faire de ce dont elle a envie.\nTom's bitten his nails right down to the quick.\tTom s'est rongé les ongles jusqu'au sang.\nTom's goal is to own a home before he's thirty.\tL'objectif de Tom est de posséder un logement avant d'avoir trente ans.\nTom, I'm in trouble. I need you to come get me.\tTom, je suis dans le pétrin. Je veux que tu viennes me chercher.\nUnless you stop fighting, I'll call the police.\tÀ moins que vous n'arrêtiez de vous battre, je vais appeler la police.\nWe are going to have a party on Saturday night.\tNous allons faire une fête samedi soir.\nWe are having a serious talk about your future.\tNous avons une sérieuse conversation à propos de ton avenir.\nWe are not too young to tell what love is like.\tNous ne sommes pas trop jeunes pour dire à quoi l'amour ressemble.\nWe can't have all those people over for dinner.\tNous ne pouvons pas recevoir tous ces gens à dîner.\nWe could go out together like we did last year.\tNous pourrions sortir ensemble comme nous l'avons fait l'année passée.\nWe could really use another person around here.\tUne personne de plus ne serait pas de refus.\nWe debated on the question of world population.\tNous avons débattu de la question de la population mondiale.\nWe estimate the damage at one thousand dollars.\tNous estimons le dommage à mille dollars.\nWe estimate the damage at one thousand dollars.\tNous estimons les dégâts à mille dollars.\nWe had no customers, so we shut the shop early.\tNous n'avions pas de clients, alors nous avons fermé tôt la boutique.\nWe had no customers, so we shut the shop early.\tNous n'avions pas de clients, alors nous avons fermé tôt le magasin.\nWe have a lot of snow at this time of the year.\tNous avons beaucoup de neige à cette époque de l'année.\nWe have left undone what we ought to have done.\tNous avons laissé inachevé ce que nous aurions dû faire.\nWe have lost a battle, but we will win the war.\tNous avons perdu une bataille, mais nous gagnerons la guerre.\nWe have no one but ourselves to blame for that.\tNous ne pouvons que nous blâmer nous-mêmes pour cela.\nWe have nothing to lose and everything to gain.\tNous n'avons rien à perdre et tout à gagner.\nWe have to figure out a way to make some money.\tNous devons trouver un moyen de faire un peu d'argent.\nWe have to make sure we have enough volunteers.\tNous devons nous assurer que nous avons assez de bénévoles.\nWe have two dogs, three cats, and six chickens.\tNous avons deux chiens, trois chats et six poulets.\nWe learned why the French Revolution broke out.\tOn a appris pourquoi la révolution française a éclaté.\nWe lost no time in sending him to the hospital.\tNous n'avons pas perdu de temps en l'envoyant à l'hôpital.\nWe missed you very much at the party yesterday.\tTu nous as beaucoup manqué à la fête hier.\nWe observed this plant closely for a few weeks.\tNous avons observé cette plante de près pendant quelques semaines.\nWe observed this plant closely for a few weeks.\tNous avons observé cette plante attentivement pendant quelques semaines.\nWe observed this plant closely for a few weeks.\tNous avons observé cette usine attentivement pendant quelques semaines.\nWe observed this plant closely for a few weeks.\tNous avons observé ce site industriel attentivement pendant quelques semaines.\nWe picked apples so we could make an apple pie.\tNous cueillîmes des pommes de manière à confectionner une tarte.\nWe picked apples so we could make an apple pie.\tNous avons cueilli des pommes de manière à confectionner une tarte.\nWe probably won't have to go to Boston anymore.\tNous n'aurons probablement plus besoin d'aller à Boston.\nWe promised to stand by him in case of trouble.\tNous avons promis de le soutenir en cas de problèmes.\nWe saw paramedics treating the gunshot victims.\tNous vîmes des auxiliaires médicaux en train de traiter les victimes de la fusillade.\nWe saw paramedics treating the gunshot victims.\tNous avons vu des auxiliaires médicaux en train de traiter les victimes de la fusillade.\nWe saw what looked like an oasis in the desert.\tNous vîmes quelque chose qui semblait comme une oasis dans le désert.\nWe shall try to answer the following questions.\tNous essayerons de répondre aux questions suivantes.\nWe shall try to answer the following questions.\tNous tenterons de répondre aux questions suivantes.\nWe should not despise a man because he is poor.\tNous ne devrions pas mépriser un homme parce qu'il est pauvre.\nWe shouldn't have left Tom alone in the garage.\tNous n'aurions pas dû laisser Tom tout seul dans le garage.\nWe treated him in the politest manner possible.\tNous l'avons traité de la façon la plus polie possible.\nWe want to know why you weren't here yesterday.\tNous voulons savoir pourquoi vous n'étiez pas ici hier.\nWe were able to see the sunset from our window.\tNous pouvions voir le coucher de soleil par la fenêtre.\nWe wish him all success in his future endeavor.\tNous lui souhaitons tout le succès dans sa future entreprise.\nWe wish him all success in his future endeavor.\tNous lui souhaitons un plein succès dans sa future entreprise.\nWe'll dine together and then go to the theater.\tNous allons dîner ensemble puis aller au théâtre.\nWe'll get them to talk no matter what it takes.\tNous les ferons parler, coûte que coûte.\nWe'll have lived here for two years next April.\tCela fera deux ans que nous vivons ici avril prochain.\nWe'll read this book until the end of the year.\tNous lirons cet ouvrage jusqu'à la fin de l'année.\nWe'll see what the judge has to say about that.\tNous verrons ce que le juge a à dire à ce sujet.\nWe're getting out of here. The cops are coming.\tOn s'tire d'ici, les flics arrivent.\nWe're getting out of here. The storm is coming.\tNous sortons d'ici. La tempête approche.\nWe're in the process of writing the report now.\tNous sommes en train de rédiger le rapport.\nWe're investigating the deaths of Tom and Mary.\tNous enquêtons sur les décès de Tom et Marie.\nWe're trying to have a serious discussion here.\tNous essayons d'avoir une conversation sérieuse, là.\nWe've been working on this problem all weekend.\tNous avons travaillé sur ce problème tout le week-end.\nWe've now been together for nearly three years.\tCela fait presque trois ans que nous sommes ensemble.\nWhat am I supposed to do with what you gave me?\tQue suis-je censé faire avec ce que tu m'as donné ?\nWhat are you planning to do after this is over?\tQue prévois-tu de faire après que tout cela sera fini ?\nWhat do you consider your greatest achievement?\tQue considères-tu comme ta plus grande réussite ?\nWhat do you think might be causing the problem?\tQue pensez-vous pourrait être la cause du problème?\nWhat does your son want to be when he grows up?\tQue veut faire ton fils quand il sera grand ?\nWhat makes you think I don't like your friends?\tQu'est-ce qui te fait penser que je n'aime pas tes amis ?\nWhat were you doing when I called this morning?\tQue faisais-tu quand j'ai appelé ce matin ?\nWhat would you do if you had a million dollars?\tQue ferais-tu, si tu avais un million de dollars ?\nWhat's wrong with being nude in your own house?\tQu'y a-t-il de mal à être nu chez soi ?\nWhat's your favorite free software application?\tQuel est ton logiciel libre préféré ?\nWhen I get through with my work, I'll call you.\tJe t'appellerai dès que j'en aurai fini avec mon travail.\nWhen I got home, I had a nice, ice-cold shower.\tLorsque je suis rentré chez moi, j'ai pris une bonne douche glacée.\nWhen I got home, I had a nice, ice-cold shower.\tLorsque je suis rentrée chez moi, j'ai pris une bonne douche glacée.\nWhen I saw her recently, she looked very happy.\tLorsque je la vis récemment, elle avait l'air très heureuse.\nWhen I was a child, I was always drinking milk.\tLorsque j'étais enfant, je buvais toujours du lait.\nWhen did America become independent of England?\tDepuis quand les États-Unis sont-ils indépendants de l'Angleterre ?\nWhen he finished speaking, everyone was silent.\tLorsqu'il acheva de parler, tout le monde était silencieux.\nWhen he finished speaking, there was a silence.\tQuand il a fini de parler, il y a eu un silence.\nWhen the bomb exploded, I happened to be there.\tQuand la bombe explosa, je me trouvais justement là.\nWhen we arrived, the lecture had already begun.\tQuand nous sommes arrivés, le cours avait déjà commencé.\nWhen your husband finds out, he won't be happy.\tLorsque ton mari le découvrira, il ne sera pas content.\nWhen your husband finds out, he won't be happy.\tLorsque votre mari le découvrira, il ne sera pas content.\nWhere is the most beautiful place in the world?\tOù se trouve l'endroit le plus beau au monde ?\nWhere were you when your wife disappeared, Tom?\tOù étais-tu quand ta femme a disparu, Tom ?\nWhere were you when your wife disappeared, Tom?\tOù étiez-vous quand votre femme a disparu, Tom ?\nWhether we like it or not, we have to go there.\tBon gré mal gré, nous devons y aller.\nWhile in London, he visited the British Museum.\tPendant qu'il séjournait à Londres, il visita le British Museum.\nWho can predict what will happen in the future?\tQui peut prédire ce qu'il se produira dans le futur ?\nWhoever is at the door, please ask him to wait.\tQuel que soit celui qui est à la porte, demande lui d'attendre.\nWhy don't you start by telling us how you feel?\tPourquoi ne commencez-vous pas par nous dire ce que vous ressentez ?\nWhy don't you start by telling us how you feel?\tPourquoi ne commences-tu pas par nous dire ce que tu ressens ?\nWhy don't you start by telling us what you saw?\tPourquoi ne commencez-vous pas par nous dire ce que vous avez vu ?\nWhy don't you start by telling us what you saw?\tPourquoi ne commences-tu pas par nous dire ce que tu as vu ?\nWhy don't you stay and drink some wine with us?\tPourquoi ne restez-vous pas boire du vin avec nous ?\nWhy don't you stay and drink some wine with us?\tPourquoi ne restes-tu pas boire du vin avec nous ?\nWhy don't you stop worrying and get some sleep?\tEt si tu arrêtais de te faire du souci et que tu prenais du repos ?\nWhy don't you stop worrying and get some sleep?\tEt si vous arrêtiez de vous faire du souci et que vous preniez du repos ?\nWhy don't you tell me what happened last night?\tPourquoi ne me dis-tu pas ce qui s'est passé hier soir ?\nWhy don't you tell me what happened last night?\tPourquoi ne me dis-tu pas ce qui s'est passé hier au soir ?\nWhy don't you tell me what happened last night?\tPourquoi ne me dis-tu pas ce qui s'est passé la nuit dernière ?\nWhy don't you tell me what happened last night?\tPourquoi ne me dites-vous pas ce qui s'est passé hier soir ?\nWhy don't you tell me what happened last night?\tPourquoi ne me dites-vous pas ce qui s'est produit hier soir ?\nWhy wouldn't you let me tell you what happened?\tPourquoi ne me laissez-vous pas vous dire ce qui est arrivé ?\nWhy wouldn't you let me tell you what happened?\tPourquoi ne me laissez-vous pas vous conter ce qui est arrivé ?\nWhy wouldn't you let me tell you what happened?\tPourquoi ne me laisses-tu pas te dire ce qui est arrivé ?\nWhy wouldn't you let me tell you what happened?\tPourquoi ne me laisses-tu pas te conter ce qui est arrivé ?\nWhy wouldn't you let me tell you what happened?\tPourquoi ne me laisses-tu pas te dire ce qui s'est passé ?\nWhy wouldn't you let me tell you what happened?\tPourquoi ne me laissez-vous pas vous dire ce qui s'est passé ?\nWith a little more patience, you could succeed.\tAvec un peu plus de patience, tu pourrais réussir.\nWomen aren't exactly throwing themselves at me.\tLes femmes ne se jettent pas vraiment à mon cou.\nWomen feel that men are often very complicated.\tLes femmes trouvent que les hommes sont souvent très compliqués.\nWould you be willing to show me how to do that?\tSerais-tu disposé à me montrer comment faire ça ?\nWould you be willing to show me how to do that?\tSerais-tu disposée à me montrer comment le faire ?\nWould you be willing to show me how to do that?\tSeriez-vous disposé à me montrer comment faire ça ?\nWould you be willing to show me how to do that?\tSeriez-vous disposée à me montrer comment faire ça ?\nWould you be willing to show me how to do that?\tSeriez-vous disposés à me montrer comment faire ça ?\nWould you be willing to show me how to do that?\tSeriez-vous disposées à me montrer comment faire ça ?\nWould you like to go to the zoo this afternoon?\tEst-ce que tu voudrais aller au zoo cet après-midi ?\nWould you mind if I drank the rest of the milk?\tVerrais-tu un inconvénient à ce que je boive le reste du lait ?\nWould you mind if I drank the rest of the milk?\tVerriez-vous un inconvénient à ce que je boive le reste du lait ?\nYou alone can do it, but you can't do it alone.\tToi seul peux le faire, mais tu ne peux le faire seul.\nYou alone can do it, but you can't do it alone.\tVous seul pouvez le faire, mais vous ne pouvez le faire seul.\nYou alone can do it, but you can't do it alone.\tToi seule peux le faire, mais tu ne peux le faire seule.\nYou alone can do it, but you can't do it alone.\tVous seule pouvez le faire, mais vous ne pouvez le faire seule.\nYou alone can do it, but you can't do it alone.\tVous seuls pouvez le faire, mais vous ne pouvez le faire seuls.\nYou alone can do it, but you can't do it alone.\tVous seules pouvez le faire, mais vous ne pouvez le faire seules.\nYou are the last person I expected to see here.\tTu es la dernière personne que je m'attendais à voir ici.\nYou attach too much importance to what he says.\tTu attaches trop d'importance à ce qu'il dit.\nYou can see the whole park from the restaurant.\tOn peut voir l'intégralité du parc depuis le restaurant.\nYou can't have a rainbow without a little rain.\tOn ne peut avoir d'arc-en-ciel sans un peu de pluie.\nYou do not have to take your umbrella with you.\tCe n'est pas obligatoire de prendre un parapluie.\nYou do not have to take your umbrella with you.\tTu n'es pas obligée de prendre ton parapluie.\nYou don't really expect me to tell you, do you?\tTu n'espères pas vraiment que je te le dise, si ?\nYou don't really expect me to tell you, do you?\tVous n'espérez pas vraiment que je vous le dise, si ?\nYou had better not use those four-letter words.\tVous feriez mieux de ne pas utiliser ces mots de quatre lettres.\nYou have to be here at 2:30 tomorrow afternoon.\tTu dois être ici à 14h30 demain après-midi.\nYou have to be here at 2:30 tomorrow afternoon.\tVous devez être ici à 14h30 demain après-midi.\nYou have to do this whether you like it or not.\tVous devez le faire, que vous aimiez ça ou pas.\nYou have to do this whether you like it or not.\tTu dois le faire, que tu aimes ça ou pas.\nYou haven't been a teacher very long, have you?\tÇa ne fait pas longtemps que tu es enseignant, pas vrai ?\nYou know where to find me if you need anything.\tTu sais où me trouver si tu as besoin de quoi que ce soit.\nYou know where to find me if you need anything.\tVous savez où me trouver si vous avez besoin de quoi que ce soit.\nYou must be careful when talking to a European.\tTu dois faire attention lorsque tu parles à un Européen.\nYou must exercise more care in writing English.\tVous devez faire preuve de davantage de soin, lorsque vous écrivez en anglais.\nYou must exercise more care in writing English.\tTu dois faire preuve de davantage de soin, lorsque tu écris en anglais.\nYou must not get off the train before it stops.\tVous ne devez pas descendre du train avant son arrêt.\nYou ought to ask for your teacher's permission.\tTu dois demander la permission à ton professeur.\nYou say you don't want to get your hands dirty.\tTu dis que tu ne veux pas te salir les mains.\nYou should allow an hour to get to the airport.\tTu devrais prévoir une heure pour atteindre l'aéroport.\nYou should allow an hour to get to the airport.\tVous devriez prévoir une heure pour atteindre l'aéroport.\nYou should allow an hour to get to the airport.\tTu devrais compter une heure pour atteindre l'aéroport.\nYou should allow an hour to get to the airport.\tVous devriez compter une heure pour atteindre l'aéroport.\nYou should always wash your hands before meals.\tTu devrais toujours te laver les mains avant les repas.\nYou should always wash your hands before meals.\tVous devriez toujours vous laver les mains avant les repas.\nYou should distinguish between right and wrong.\tTu dois faire la différence entre le bien et le mal.\nYou should distinguish between right and wrong.\tTu dois savoir distinguer le bien du mal.\nYou should receive them by the end of the week.\tVous devriez les recevoir à la fin de la semaine.\nYou should've rejected such an unfair proposal.\tTu aurais dû refuser une proposition aussi injuste.\nYou should've rejected such an unfair proposal.\tVous auriez dû rejeter une proposition aussi injuste.\nYou shouldn't believe everything Tom tells you.\tTu ne devrais pas avoir une confiance aveugle en Tom.\nYou shouldn't believe everything Tom tells you.\tTu ne devrais pas croire tout ce que Tom te dit.\nYou were dying, but the doctor saved your life.\tVous étiez en train de mourir mais le médecin vous a sauvé la vie.\nYou were dying, but the doctor saved your life.\tVous étiez en train de mourir mais le toubib vous a sauvé la vie.\nYou were dying, but the doctor saved your life.\tTu étais en train de mourir mais le médecin t'a sauvé la vie.\nYou were dying, but the doctor saved your life.\tTu étais en train de mourir mais le toubib t'a sauvé la vie.\nYou work too hard these days. Aren't you tired?\tVous travaillez trop ces derniers temps. N'êtes-vous donc pas fatigués ?\nYou work too hard these days. Aren't you tired?\tVous travaillez trop ces derniers temps. N'êtes-vous donc pas fatigué ?\nYou're exposing yourself to a lot of criticism.\tTu t'exposes à bien des critiques.\nYou're probably tired after such a long flight.\tVous êtes probablement fatigué après un vol aussi long.\nYou're probably tired after such a long flight.\tVous êtes probablement fatiguée après un vol aussi long.\nYou're probably tired after such a long flight.\tTu es probablement fatigué après un vol aussi long.\nYou're probably tired after such a long flight.\tTu es probablement fatiguée après un vol aussi long.\nYou're the best thing that ever happened to me.\tVous êtes la meilleure chose qui me soit jamais arrivée.\nYou're the best thing that ever happened to me.\tC'est toi qui es la meilleure chose qui me soit jamais arrivée.\nYou're the best thing that ever happened to me.\tC'est vous qui êtes la meilleure chose qui me soit jamais arrivée.\nYou're the most beautiful woman I've ever seen.\tTu es la plus belle femme qu'il m'ait été donné de voir.\nYou're the most beautiful woman I've ever seen.\tVous êtes la plus belle femme qu'il m'ait été donné de voir.\nYou're the most beautiful woman I've ever seen.\tTu es la plus belle femme que j'aie jamais vue.\nYou're the most beautiful woman I've ever seen.\tVous êtes la plus belle femme que j'aie jamais vu.\nYou've always got to be ready for an emergency.\tTu dois toujours être prêt à réagir pour une urgence.\nYou've still got all your life in front of you.\tVous avez encore toute la vie devant vous.\nYou've still got all your life in front of you.\tTu as encore toute la vie devant toi.\nYoung men such as you are needed for this work.\tCe sont de jeunes hommes comme vous dont on a besoin pour ce travail.\nYoung men such as you are needed for this work.\tCe sont de jeunes hommes comme vous qu'il nous faut pour ce travail.\nYoung people are prone to fall into temptation.\tLes jeunes gens sont propres à céder à la tentation.\nYour breakfast is ready. Don't let it get cold.\tTon petit déjeuner est prêt. Ne le laisse pas refroidir.\nYour feet will lead you to where your heart is.\tVos pieds vous conduiront là où est votre cœur.\nYour feet will lead you to where your heart is.\tVos pieds vous conduiront là où votre cœur se trouve.\nYour philosophy of life is different than mine.\tTa philosophie de la vie est différente de la mienne.\nYour philosophy of life is different than mine.\tVotre philosophie de la vie est différente de la mienne.\nYour wife's on the phone. She says it's urgent.\tVotre épouse est au bout du fil. Elle dit que c'est urgent.\nZoology and botany deal with the study of life.\tLa zoologie et la botanique traitent de l'étude de la vie.\n\"How much is he asking for?\" \"A thousand euros.\"\t-\"Combien est-ce qu'il en demande ?\" - \"Mille euros.\"\n\"How soon will the bus come?\" \"In five minutes.\"\t\"Dans combien de temps va venir le bus ?\" \"Dans 5 minutes.\"\n\"I can make it to my class on time,\" he thought.\t\"Je peux arriver en classe à temps\", pensa-t-il.\n\"Why don't you come?\" \"Because I don't want to.\"\t« Pourquoi ne viens-tu pas ? » « Parce que je ne veux pas. »\n\"Why don't you come?\" \"Because I don't want to.\"\t« Pourquoi ne venez-vous pas ? » « Parce que je ne veux pas. »\n\"Will they go on strike again?\" \"I'm afraid so.\"\t«Ces gens-là vont-ils de nouveau entrer en grève ?» «Il semble bien que oui.»\nA bicycle will rust if you leave it in the rain.\tUn vélo rouille, si tu le laisses sous la pluie.\nA bunch of people were standing outside waiting.\tUn groupe de gens se tenaient à l'extérieur, à attendre.\nA captain is in charge of his ship and its crew.\tUn capitaine est chargé de ce bateau et de son équipage.\nA careful reader would have noticed the mistake.\tUn lecteur attentif aurait noté l'erreur.\nA customs official asked me to open my suitcase.\tUn agent des douanes me demanda d'ouvrir ma valise.\nA detective arrived upon the scene of the crime.\tUn détective arriva sur la scène du crime.\nA detective arrived upon the scene of the crime.\tUn détective est arrivé sur la scène du crime.\nA girl approached the king from among the crowd.\tUne fille s'approcha du roi à travers la foule.\nA great crowd waited for the president to speak.\tUne large foule attendait que le président parlât.\nA guide conducted the visitors round the museum.\tUn guide fit faire le tour du musée aux touristes.\nA known mistake is better than an unknown truth.\tUne erreur connue est meilleure qu'une vérité inconnue.\nA merchant is a person who buys and sells goods.\tUn commerçant est une personne qui achète et qui vend de la marchandise.\nA merchant is a person who buys and sells goods.\tUn marchand, c'est quelqu'un qui achète et vend des biens.\nA nice day, isn't it? Why not go out for a walk?\tUne belle journée, n'est-ce pas ? Pourquoi ne pas sortir faire une balade ?\nA small car is more economical than a large one.\tUne petite voiture est plus économique qu'une grande.\nA stranger is a friend you just haven't met yet.\tUn étranger est un ami que vous n'avez simplement pas encore rencontré.\nA thief broke into the house to steal the money.\tUn voleur s'est introduit par effraction dans la maison pour voler de l'argent.\nA woman whose husband is dead is called a widow.\tUne femme dont le mari est mort s'appelle une veuve.\nAccording to the X-ray, everything is all right.\tSelon les rayons X, vous n'avez pas de problèmes.\nActors and politicians never pass up a photo op.\tLes acteurs et les politiciens ne manquent jamais une occasion de se faire retoucher leurs photos.\nAfter a while passion and infatuation ooze away.\tAu bout d'un moment, la passion et l'engouement s'essoufflent.\nAfter much consideration, we accepted his offer.\tAprès mûre réflexion nous avons accepté son offre.\nAfter much consideration, we accepted his offer.\tAprès mûre réflexion nous avons accepté sa proposition.\nAfter we walked for a while, we got to the lake.\tAprès avoir marché un moment, nous sommes parvenus au lac.\nAfter we walked for a while, we got to the lake.\tAprès avoir marché un moment, nous sommes parvenues au lac.\nAfter we walked for a while, we got to the lake.\tAprès avoir marché un moment, nous parvînmes au lac.\nAl Capone was finally sent away for tax evasion.\tAl Capone fut finalement jeté en prison pour évasion fiscale.\nAll that you have to do is to follow his advice.\tTout ce que vous avez à faire est de suivre son avis.\nAll the children fell asleep before it got dark.\tTous les enfants s'endormirent avant qu'il fasse noir.\nAll the passengers got seasick during the storm.\tTous les passagers eurent le mal de mer pendant la tempête.\nAll the people present were moved by his speech.\tToute l'assistance était émue par son discours.\nAlthough he's young, he's an outstanding doctor.\tBien qu'il soit jeune, c'est un remarquable médecin.\nAmericans spend much of their free time at home.\tLes Étasuniens passent beaucoup de leur temps libre chez eux.\nAn atomic bomb was dropped on Hiroshima in 1945.\tUne bombe atomique fut lâchée sur Hiroshima en 1945.\nAn eagle's wings are more than one meter across.\tLes ailes d'un aigle font plus d'un mètre d'envergure.\nAn old man was resting in the shade of the tree.\tUn vieil homme se reposait à l'ombre de l'arbre.\nAn ounce of prevention is worth a pound of cure.\tIl vaut mieux prévenir que guérir.\nAny play opening to bad reviews won't last long.\tToute pièce qui ouvre sur de mauvaises critiques ne fait pas long feu.\nAnyone who criticizes him is asking for trouble.\tQuiconque le critique cherche des ennuis.\nAre there any English magazines in this library?\tY a-t-il de quelconques magazines en langue anglaise dans cette bibliothèque ?\nAre you absolutely sure that it was Tom you saw?\tEs-tu absolument sûr que c'était Tom que tu as vu ?\nAre you closer to your mother or to your father?\tEs-tu plus proche de ta mère ou de ton père ?\nAre you closer to your mother or to your father?\tÊtes-vous plus proche de votre mère ou de votre père ?\nAs far as I am concerned, I have nothing to say.\tEn ce qui me concerne, je n'ai rien à dire.\nAs far as I know, Tom doesn't have a girlfriend.\tD'après ce que je sais, Thomas n'a pas de copine.\nAs soon as she got her salary, she spent it all.\tDès qu'elle a reçu son salaire, elle l'a dépensé en totalité.\nAs soon as she got her salary, she spent it all.\tDès qu'elle a reçu son salaire, elle l'a claqué.\nAs you know, we were late due to the heavy rain.\tComme tu le sais, nous étions en retard à cause de la forte pluie.\nAt last, she was able to contact her old friend.\tEnfin, elle fut en mesure de contacter son vieil ami.\nAt least for now, I'm not going to say anything.\tDu moins pour le moment, je ne vais rien dire.\nAt present, the cause of the disease is unknown.\tActuellement, la cause de la maladie reste inconnue.\nAt this rate, we'll have to change the schedule.\tÀ ce rythme, nous allons devoir changer l'horaire.\nBasketball was my favorite sport in high school.\tLe basket-ball était mon sport favori au lycée.\nBecause my mother was ill, I could not go there.\tJe n'ai pas pu y aller car ma mère était malade.\nBecause of the dense fog, nothing could be seen.\tÀ cause de l'épais brouillard, on n'y voyait goutte.\nBecause of the dense fog, nothing could be seen.\tÀ cause de l'épais brouillard, on n'y voyait rien.\nBecause of the dense fog, nothing could be seen.\tÀ cause de l'épais brouillard, on n'y voyait rien du tout.\nBecause of the pills I took, the pain went away.\tÀ cause des cachets que j'ai pris, la douleur est partie.\nBefore going home, I have a few drinks to relax.\tAvant de rentrer, je prendrais bien un verre pour relaxer.\nBelieve me, everything he's told you is a crock.\tCrois-moi, tout ce qu'il t'a dit c'est des conneries.\nBesides being a surgeon, he was a famous writer.\tCe n'était pas seulement un chirurgien, mais c'était également un écrivain célèbre.\nBesides being a surgeon, he was a famous writer.\tEn plus d'être chirurgien, il était aussi un écrivain célèbre.\nBlack Americans continued to suffer from racism.\tLes Étasuniens noirs continuaient à endurer le racisme.\nBoth Tom and Mary didn't know how to send a fax.\tTom et Mary ne savaient ni l'un ni l'autre envoyer un fax.\nBreakfast is served from 7:30 a.m. to 11:00 a.m.\tLe petit déjeuner est servi de 7h30 à 11h00 le matin.\nBuses in the country don't usually come on time.\tLes cars, à la campagne, ne sont habituellement pas à l'heure.\nBy the time you land at Narita, it will be dark.\tLe temps que vous atterrissiez à Narita, il fera nuit.\nBy the way, how many of you are keeping a diary?\tDu reste : combien d'entre vous tiennent-ils un journal ?\nBy the way, how many of you are keeping a diary?\tDu reste : combien d'entre vous tiennent-elles un journal ?\nCalculate how much money we will need next year.\tCalculez combien nous aurons besoin d'argent l'année prochaine.\nCan computers actually translate literary works?\tEst-ce que les ordinateurs peuvent traduire les œuvres littéraires ?\nCan eating just vegetables help you lose weight?\tEst-ce que ne manger que des fruits et légumes vous aide à perdre du poids ?\nCan eating just vegetables help you lose weight?\tEst-ce que ne manger que des fruits et légumes t'aide à perdre du poids ?\nCan eating just vegetables help you lose weight?\tNe manger que des fruits et légumes vous aide-t-il à perdre du poids ?\nCan eating just vegetables help you lose weight?\tNe manger que des fruits et légumes t'aide-t-il à perdre du poids ?\nCan you direct me to the nearest subway station?\tPouvez-vous m'indiquer la station de métro la plus proche ?\nCan you imagine him driving such a splendid car?\tPouvez-vous l'imaginer conduire une si belle voiture ?\nCan you make sense of what the writer is saying?\tPouvez-vous donner du sens à ce que l'auteur veut dire ?\nCan you tell me how to get to the train station?\tPeux-tu me dire comment aller à la gare?\nCan you tell me how to get to the train station?\tPouvez-vous me dire comment aller à la gare?\nCan you understand the meaning of this sentence?\tPouvez-vous comprendre le sens de cette phrase ?\nCan you understand the meaning of this sentence?\tPeux-tu comprendre la signification de cette phrase ?\nCan't this wait until things are back to normal?\tCeci ne peut-il attendre que les choses reviennent à la normale ?\nCertain teachers do not understand this problem.\tCertains professeurs ne comprennent pas ce problème.\nChurches are designated on the map with crosses.\tLes églises sont représentées par une croix sur la carte.\nCoastal cities will take the brunt of the storm.\tLes villes côtières encaisseront le gros de la tempête.\nCoastal cities will take the brunt of the storm.\tLes villes côtières encaisseront le plus gros de la tempête.\nCoastal cities will take the brunt of the storm.\tLes villes côtières feront les frais de la tempête.\nCoastal cities will take the brunt of the storm.\tLes villes côtières recevront le plus fort de la tempête.\nCould you bring me a pillow and blanket, please?\tVoudriez-vous bien m'apporter un oreiller et une couverture, je vous prie ?\nCould you lend me some money until this weekend?\tPourriez-vous me prêter de l'argent jusqu'au week-end prochain ?\nCould you move forward so we can close the door?\tPouvez-vous vous avancer pour qu'on puisse fermer la porte ?\nCould you please tell me again why you are late?\tPourrais-tu me répéter pourquoi tu es en retard ?\nCould you please tell me again why you are late?\tVoudriez-vous me répéter pourquoi vous êtes en retard ?\nCould you please tell me your height and weight?\tPourrais-tu m'indiquer ta taille et ton poids, je te prie ?\nCould you please tell me your height and weight?\tPourriez-vous, je vous prie, m'indiquer votre taille et votre poids ?\nCould you recommend a nice restaurant near here?\tPeux-tu recommander un chouette restaurant près d'ici ?\nCould you recommend a nice restaurant near here?\tPourriez-vous recommander un chouette restaurant près d'ici ?\nDelete his name from the list of the applicants.\tEnlevez son nom de la liste des candidats.\nDid you choose an interesting book for your son?\tAs-tu choisi un livre intéressant pour ton fils ?\nDid you choose an interesting book for your son?\tAvez-vous choisi un livre intéressant pour votre fils ?\nDid you go straight home after school yesterday?\tEst-ce que tu es directement rentré chez toi après l'école hier ?\nDid you go straight home after school yesterday?\tEs-tu directement rentrée chez toi hier, après l'école ?\nDid you go straight home after school yesterday?\tÊtes-vous directement rentré chez vous hier, après l'école ?\nDid you go straight home after school yesterday?\tÊtes-vous directement rentrée chez vous hier, après l'école ?\nDid you go straight home after school yesterday?\tÊtes-vous directement rentrés chez vous hier, après l'école ?\nDid you go straight home after school yesterday?\tÊtes-vous directement rentrées chez vous hier, après l'école ?\nDid you have a good time on your trip to London?\tT'es-tu amusé lors de ton voyage à Londres ?\nDid you have a good time on your trip to London?\tT'es-tu amusée lors de ton voyage à Londres ?\nDid you hear the news on the radio this morning?\tAvez-vous entendu la nouvelle à la radio ce matin ?\nDigital music is becoming more and more popular.\tLa musique numérique devient de plus en plus populaire.\nDigital music is becoming more and more popular.\tLa musique numérique gagne en popularité.\nDinner is ready, so we can eat whenever we want.\tLe dîner est prêt, nous pouvons manger quand nous le voulons.\nDinner is ready, so we can eat whenever we want.\tLe dîner est prêt, nous pouvons donc manger quand bon nous semble.\nDo you have any idea what they're talking about?\tAvez-vous la moindre idée de quoi ils parlent ?\nDo you have the same thing in a different color?\tAvez-vous la même chose dans une couleur différente ?\nDo you have the same thing in a different color?\tAs-tu la même chose dans une couleur différente ?\nDo you know what it is like to be really hungry?\tSavez-vous ce que c'est d'être réellement affamé ?\nDo you really think that your plan is realistic?\tPensez-vous vraiment que votre projet soit réaliste ?\nDo you really think that your plan is realistic?\tPenses-tu vraiment que ton projet soit réaliste ?\nDo you think he will be elected president again?\tPensez-vous qu'il sera réélu président ?\nDo you think you could make a little less noise?\tPenses-tu pouvoir faire légèrement moins de bruit ?\nDo you want to install this free browser add-on?\tVoulez-vous installer ce supplément gratuit pour votre navigateur ?\nDo you want to know where you made your mistake?\tVeux-tu savoir où tu t'es trompé ?\nDo you want to know where you made your mistake?\tVoulez-vous savoir où vous vous êtes trompé ?\nDon't go out in this heat without wearing a hat.\tNe sors pas par cette chaleur sans porter de chapeau.\nDon't go out in this heat without wearing a hat.\tNe sortez pas par cette chaleur sans porter de chapeau.\nDon't let his snide remarks get the best of you.\tNe laisse pas ses remarques sarcastiques prendre le dessus sur toi.\nDon't shout like that. I can hear you perfectly.\tNe crie pas comme ça. Je t'entends parfaitement.\nDon't think I don't appreciate what you've done.\tNe pensez pas que je ne sois pas reconnaissant de ce que vous avez fait !\nDon't think I don't appreciate what you've done.\tNe pensez pas que je ne sois pas reconnaissante de ce que vous avez fait !\nDon't think I don't appreciate what you've done.\tNe pense pas que je ne sois pas reconnaissant de ce que tu as fait !\nDon't think I don't appreciate what you've done.\tNe pense pas que je ne sois pas reconnaissante de ce que tu as fait !\nDon't you think I know what people say about me?\tNe penses-tu pas que je sais ce que les gens disent de moi ?\nDon't you think I know what people say about me?\tNe pensez-vous pas que je sais ce que les gens disent de moi ?\nDon't you think it's strange that he's not here?\tPenses-tu qu'il soit étrange qu'il ne soit pas là ?\nDon't you think it's strange that he's not here?\tPensez-vous qu'il soit étrange qu'il ne soit pas là ?\nEating yogurt with a fork is somewhat difficult.\tManger du yaourt à la fourchette est assez difficile.\nEducational reforms still have a long way to go.\tLes réformes de l'éducation ont encore un bout de chemin à faire.\nEnglish has borrowed numerous words from French.\tL'anglais a emprunté de nombreux mots au français.\nEuropean currencies weakened against the dollar.\tLes monnaies européennes se sont affaiblies face au dollar.\nEven though it's small, it's a great restaurant.\tMême s'il est petit, c'est un grand restaurant.\nEven though it's small, it's still my apartment.\tMême s'il est petit, c'est tout de même mon appartement.\nEven with all his wealth and fame, he's unhappy.\tMême avec toute sa richesse et sa célébrité, il est malheureux.\nEven with his glasses, he doesn't see very well.\tIl ne voit pas très bien malgré ses lunettes.\nEverybody in that family has a car of their own.\tTout le monde dans cette famille a sa propre voiture.\nEverybody knows that he lost his leg in the war.\tTout le monde sait qu'il a perdu sa jambe à la guerre.\nEverybody was anxious to know what had happened.\tTout le monde était anxieux de savoir ce qui s'était passé.\nEveryone in the class learned the poem by heart.\tTous dans la classe apprirent le poème par cœur.\nEveryone knows that Bell invented the telephone.\tTout le monde sait que Bell a inventé le téléphone.\nEveryone was really impressed with that machine.\tTout le monde était impressionné par cette machine.\nEverything is working out just as Tom predicted.\tTout fonctionne comme Tom l'avait prédit.\nEverything is working out just as Tom predicted.\tTout marche comme Tom l'avait prédit.\nEverything that you say may be used against you.\tTout ce que tu dis peut être utilisé contre toi.\nEverything that you say may be used against you.\tTout ce que vous dites peut être utilisé contre vous.\nExcuse me, but would you please open the window?\tVeuillez m'excuser, mais voudriez-vous ouvrir la fenêtre, je vous prie ?\nExcuse me, but would you please open the window?\tJe te prie de m'excuser, mais voudrais-tu ouvrir la fenêtre, je te prie ?\nFamilies began to have fewer and fewer children.\tLes familles ont commencé à avoir de moins en moins d'enfants.\nFar from being pleased, my father is very angry.\tLoin d'être satisfait, mon père est très en colère.\nFish such as carp and trout live in fresh water.\tLes poissons tels que la carpe ou la truite vivent en eau douce.\nFollow me. I'll show you how to get out of here.\tSuis-moi ! Je te montrerai comment sortir d'ici.\nFollow me. I'll show you how to get out of here.\tSuivez-moi ! Je vous montrerai comment sortir d'ici.\nFor a moment, he thought of going after the man.\tIl a brièvement pensé poursuivre l'homme.\nFor the time being, I intend to stay at a hotel.\tPour l'instant, je compte séjourner à l'hôtel.\nFrom now on, I'll try to help you with the work.\tDésormais, j'essayerai de t'aider dans ton travail.\nFrom now on, I'm going to say what's on my mind.\tDésormais, je vais dire ce que je pense.\nFull religious freedom is assured to all people.\tUne totale liberté de culte est garantie à tous.\nGenerally speaking, men are stronger than women.\tGénéralement, les hommes sont plus forts que les femmes.\nGerman Shepherds are good at sniffing out drugs.\tLes bergers allemands sont bons pour détecter l'odeur de la drogue.\nGermany did not want war with the United States.\tL'Allemagne ne voulait pas la guerre avec les États-Unis d'Amérique.\nGet a job so you can support your wife and kids.\tTrouve un boulot, de façon à pouvoir subvenir aux besoins de ta femme et de tes enfants !\nGet a job so you can support your wife and kids.\tTrouve un emploi, de façon à pouvoir subvenir aux besoins de ta femme et de tes enfants !\nGet a job so you can support your wife and kids.\tTrouvez un boulot, de façon à pouvoir subvenir aux besoins de votre femme et de vos enfants !\nGet a job so you can support your wife and kids.\tTrouvez un emploi, de façon à pouvoir subvenir aux besoins de votre femme et de vos enfants !\nGet in touch with me as soon as you arrive here.\tContacte-moi dès que tu arrives ici.\nGet in touch with me as soon as you arrive here.\tContactez-moi dès que vous arrivez ici.\nGet in touch with me as soon as you arrive here.\tContacte-moi aussitôt que tu arrives ici.\nGet in touch with me as soon as you arrive here.\tContactez-moi aussitôt que vous arrivez ici.\nGet in touch with me as soon as you arrive here.\tPrends contact avec moi dès que tu arrives ici.\nGet in touch with me as soon as you arrive here.\tPrenez contact avec moi dès que vous arrivez ici.\nGetting people to change is extremely difficult.\tFaire en sorte que les gens changent est extrêmement difficile.\nGive a thief enough rope and he'll hang himself.\tDonnez assez de corde à un voleur et il se pendra lui-même.\nGive me another couple of days to think it over.\tDonne-moi quelques jours pour le reconsidérer.\nHackers break into computers without permission.\tLes pirates informatiques s'introduisent dans les ordinateurs sans autorisation.\nHad I known you'd be here, I wouldn't have come.\tSi j'avais su que tu étais là, je ne serais pas venu.\nHad I known you'd be here, I wouldn't have come.\tSi j'avais su que tu étais là, je ne serais pas venue.\nHad I known you'd be here, I wouldn't have come.\tSi j'avais su que vous étiez là, je ne serais pas venu.\nHad I known you'd be here, I wouldn't have come.\tSi j'avais su que vous étiez là, je ne serais pas venue.\nHalf of the people in the office took a day off.\tLa moitié du bureau a pris une journée de congé.\nHave you already tried not thinking of anything?\tAs-tu déjà essayé de ne penser à rien ?\nHaving a telephone helped her find more clients.\tAvoir un téléphone l'a aidée à trouver plus de clients.\nHaving a telephone helped her find more clients.\tDisposer d'un téléphone l'aida à trouver davantage de clients.\nHe always leaves the window open when he sleeps.\tIl laisse toujours la fenêtre ouverte quand il dort.\nHe always leaves the window open when he sleeps.\tIl laisse toujours la fenêtre ouverte lorsqu'il dort.\nHe applies this principle to everything in life.\tIl applique ce principe à tout dans la vie.\nHe came across this old coin in an antique shop.\tIl tomba par hasard sur cette vieille pièce dans un magasin d'antiquités.\nHe decided to rent his property to that company.\tIl a décidé de louer sa propriété à cette société.\nHe departed for London the day before yesterday.\tIl partit pour Londres avant-hier.\nHe devoted all his time to the study of history.\tIl a consacré tout son temps à l'étude de l'histoire.\nHe didn't get in until 2 o'clock in the morning.\tIl n'a pas pu arriver avant 2 heures du matin.\nHe doesn't get along with anybody in the office.\tIl ne peut collaborer avec personne au bureau.\nHe fell asleep at the wheel and had an accident.\tIl s'est endormi au volant et a eu un accident.\nHe had to leave the city, so he moved to Berlin.\tIl a dû quitter la ville, alors il a déménagé à Berlin.\nHe has been drinking steadily since his divorce.\tIl boit sans discontinuer, depuis son divorce.\nHe has been the chief of his tribe for 35 years.\tC'est le chef de sa tribu depuis 35 ans.\nHe has engaged in religious activity since then.\tIl s'est engagé dans des activités religieuses depuis lors.\nHe has only a superficial knowledge of Japanese.\tIl n'a du japonais qu'une connaissance superficielle.\nHe is a nice man, except that he talks too much.\tC'est un chic type, sauf qu'il parle trop.\nHe is a scientist who is respected by everybody.\tC'est un scientifique qui est respecté par tous.\nHe is capable of running a mile in four minutes.\tIl est capable de courir un mille en quatre minutes.\nHe is living with his friend for the time being.\tIl vit avec son ami pour l'instant.\nHe is not man to lose heart at a single failure.\tIl n'est pas le genre de personne à se décourager à la moindre déconvenue.\nHe is the most obstinate child I have ever seen.\tIl est l'enfant le plus obstiné que j'ai jamais vu.\nHe learned the news while reading the newspaper.\tIl a appris la nouvelle en lisant le journal.\nHe left his parents when he was eight years old.\tIl a quitté ses parents quand il a eu huit ans.\nHe likes not only baseball but football as well.\tIl n'aime pas seulement le baseball, mais aussi le football.\nHe looked back at us many times and walked away.\tIl s'est retourné plusieurs fois pour nous regarder et il s'est éloigné.\nHe makes it a rule never to speak ill of others.\tIl tient pour principe de ne jamais parler des autres en mal.\nHe makes it a rule to take a walk every morning.\tIl tient pour principe de faire une promenade chaque matin.\nHe might possibly say something ambiguous again.\tIl pourrait éventuellement redire quelque chose d'ambigu.\nHe needs a more productive outlet for his anger.\tIl a besoin d'un exutoire à sa colère plus productif.\nHe needs proper medical attention at a hospital.\tIl lui faut des soins médicaux appropriés dans un hôpital.\nHe never fails to write to his mother every day.\tIl écrit absolument tous les mois à sa mère.\nHe regularly trains with bodybuilding equipment.\tIl s'entraîne régulièrement avec un appareil de musculation.\nHe reminded his wife to wake him up at 7:00 a.m.\tIl a rappelé à sa femme de le réveiller à 7 heures du matin.\nHe said better times were ahead for the country.\tIl a dit que la situation allait s'améliorer pour le pays.\nHe said he was tired, so he would go home early.\tIl a dit qu'il était fatigué et que donc il irait tôt chez lui.\nHe said that he had met her on the previous day.\tIl dit qu'il l'avait rencontrée la veille.\nHe says he's innocent, but they put him in jail.\tIl dit qu'il est innocent, mais ils l'ont mis en prison.\nHe showed his disapproval by raising an eyebrow.\tIl montra sa désapprobation en levant un sourcil.\nHe smokes like a chimney and drinks like a fish.\tIl fume comme un pompier et boit comme une outre.\nHe stayed in bed because he wasn't feeling well.\tIl resta au lit parce qu'il ne se sentait pas bien.\nHe stayed in bed because he wasn't feeling well.\tIl est resté au lit parce qu'il ne se sentait pas bien.\nHe stressed the convenient aspects of city life.\tIl souligna les aspects pratiques de la vie citadine.\nHe thinks that blue is the most beautiful color.\tIl pense que le bleu est la plus belle couleur.\nHe thought that it would be interesting and fun.\tIl pensait que ça serait intéressant et amusant.\nHe thought that it would be interesting and fun.\tIl pensait que ce serait intéressant et amusant.\nHe took over the business after his father died.\tIl reprit l'affaire après le décès de son père.\nHe translated Homer from the Greek into English.\tIl a traduit Homère du grec à l'anglais.\nHe was overwhelmed by the intensity of her love.\tIl était écrasé par l'intensité de son amour.\nHe was proud that he was selected by the people.\tIl était fier d'avoir été choisi par le peuple.\nHe was the sort of man you could get along with.\tIl était le genre d'homme avec lequel on pouvait s'entendre.\nHe went out of his way to find the house for me.\tIl s'est démené pour me trouver la maison.\nHe went to America to study American literature.\tIl est allé en Amérique pour étudier la littérature américaine.\nHe who lives by the sword will die by the sword.\tCelui qui vit par l'épée, périra par l'épée.\nHe will come back to Japan in the middle of May.\tIl reviendra au Japon au milieu du mois de mai.\nHe wishes he had gone to the theater last night.\tIl aurait souhaité aller au théâtre hier soir.\nHe worked hard in order to pass the examination.\tIl a travaillé dur afin de réussir l'examen.\nHe works as a teacher, but actually he is a spy.\tIl travaille comme enseignant, mais en fait c'est un espion.\nHe's a man of his word, so you can count on him.\tC'est un homme de parole, alors vous pouvez compter sur lui.\nHe's a regular at the bars and pubs around here.\tC'est un client régulier des bars et des pubs du coin.\nHer business was started with capital of $2,000.\tSon entreprise a été démarrée avec un capital de deux mille dollars.\nHer gray hair makes her look older than her age.\tSes cheveux gris la rendent plus vieille qu'elle ne l'est vraiment.\nHer husband also wanted custody of the children.\tSon mari réclamait aussi la garde des enfants.\nHere is a list of moderately priced restaurants.\tVoici une liste de restaurants à prix modérés.\nHere, everybody feels respected and appreciated.\tIci, chacun se sent respecté et aimé.\nHis behavior spoke volumes about his upbringing.\tSon comportement en disait long sur son éducation.\nHis joke made all the class burst into laughter.\tSa blague a fait exploser de rire toute la classe.\nHis mother sat up all night waiting for her son.\tLa mère veilla toute la nuit à attendre son fils.\nHot lemon with honey is a good remedy for colds.\tDu citron chaud avec du miel est un bon remède contre les rhumes.\nHow can you tell an Englishman from an American?\tComment pouvez-vous faire la différence entre un Anglais et un Américain ?\nHow do you eat like that without gaining weight?\tComment fais-tu pour manger ainsi, sans prendre de poids ?\nHow do you eat like that without gaining weight?\tComment faites-vous pour manger ainsi, sans prendre de poids ?\nHow do you know that Tom isn't a native speaker?\tComment savez-vous que Tom n'est pas un locuteur natif ?\nHow do you know that Tom isn't a native speaker?\tComment sais-tu que Tom n'est pas un locuteur natif ?\nHow do you know that you don't need a bodyguard?\tComment savez-vous que vous ne requérez pas de garde du corps ?\nHow do you know that you don't need a bodyguard?\tComment sais-tu que tu ne requiers pas de garde du corps ?\nHow do you know those guys won't try to kill us?\tComment savez-vous que ces types n'essayeront pas de nous tuer ?\nHow do you know those guys won't try to kill us?\tComment sais-tu que ces types n'essayeront pas de nous tuer ?\nHow long did it take you to translate this book?\tCombien de temps avez-vous mis pour traduire ce livre ?\nHow long will it take me to walk to the station?\tCombien de temps me faudra-t-il pour marcher jusqu'à la gare ?\nHow long would it take to swim across the river?\tCombien de temps cela prendrait-il pour traverser la rivière à la nage ?\nHow many days does it usually take to get there?\tCombien de jours faut-il pour y aller, d'habitude ?\nHow many letters does the Russian alphabet have?\tCombien de lettres figurent dans l'alphabet russe ?\nHow many pennies does it take to make one pound?\tCombien de cents faut-il pour faire une livre sterling ?\nHow many times do you have to go to the dentist?\tCombien de fois dois-tu aller voir le dentiste ?\nHow many years has it been since I last saw you?\tDepuis combien d'années ne t'ai-je pas vu ?\nHow many years has it been since I last saw you?\tDepuis combien d'années ne t'ai-je pas vue ?\nHow many years has it been since I last saw you?\tDepuis combien d'années ne vous ai-je pas vu ?\nHow many years has it been since I last saw you?\tDepuis combien d'années ne vous ai-je pas vus ?\nHow many years has it been since I last saw you?\tDepuis combien d'années ne vous ai-je pas vue ?\nHow many years has it been since I last saw you?\tDepuis combien d'années ne vous ai-je pas vues ?\nHow much is the car that you're planning to buy?\tCombien coûte la voiture que tu prévois d'acheter ?\nI always have two cups of coffee in the morning.\tMoi, le matin, je bois toujours deux tasses de café.\nI always wear a watch so I know what time it is.\tJe porte toujours une montre donc je sais l'heure qu'il est.\nI am fond of soccer, rugby, football, and so on.\tJ'adore le football, le rugby, le football américain, etc.\nI am sure this book will be of great use to you.\tJe suis sûr que ce livre sera d'une grande utilité pour toi.\nI apologize for the delay in sending the agenda.\tJe vous prie de m'excuser pour le délai dans l'envoi de l'ordre du jour.\nI appeal to you to contribute to the new clinic.\tJe fais appel à vous pour contribuer à la nouvelle clinique.\nI arranged for a car to meet you at the airport.\tJ'ai prévu pour toi une voiture qui vient te chercher à l'aéroport.\nI asked him not to play the piano late at night.\tJe lui ai demandé de ne pas jouer du piano trop tard la nuit.\nI assure you this is about much more than money.\tJe vous assure qu'il s'agit de bien plus que d'argent.\nI assure you this is about much more than money.\tJe t'assure qu'il s'agit de bien plus que d'argent.\nI can remember when you were just a little girl.\tJe me souviens de quand tu n'étais qu'une petite fille.\nI can remember when you were just a little girl.\tJe me rappelle quand tu n'étais qu'une petite fille.\nI can see some people walking across the street.\tJe peux voir des personnes traverser la rue.\nI can't figure out why he didn't tell the truth.\tJe ne comprends pas pourquoi il n'a pas dit la vérité.\nI can't figure out why he didn't tell the truth.\tJe n'arrive pas à me figurer pourquoi il n'a pas dit la vérité.\nI can't go out because I have a lot of homework.\tJe ne peux pas sortir parce que j'ai des devoirs.\nI can't see you without thinking of your mother.\tJe ne peux te voir sans penser à ta mère.\nI can't tell you how many times I've been there.\tJe ne peux pas te dire combien de fois je suis venu ici.\nI can't tell you how many times I've been there.\tJe ne peux pas vous dire combien de fois je suis venu ici.\nI can't tell you why she was absent from school.\tJe ne sais pas te dire pourquoi elle était absente de l'école.\nI can't understand what you're trying to get at.\tJe ne parviens pas à comprendre ce que tu cherches à dire.\nI cannot help wondering if he will come on time.\tJe ne peux pas m'empêcher de me demander s'il viendra à l'heure.\nI cannot put up with his bad manners any longer.\tJe ne peux plus du tout supporter ses mauvaises manières.\nI closed the door so that they wouldn't hear us.\tJ'ai fermé la porte pour ne pas qu'ils nous entendent.\nI did everything I could to help Tom find a job.\tJ'ai fait tout mon possible pour aider Tom à trouver un emploi.\nI didn't expect to see you at a place like this.\tJe ne m'attendais pas à te voir dans un endroit pareil.\nI didn't expect to see you at a place like this.\tJe ne m'attendais pas à vous voir dans un endroit comme celui-ci.\nI didn't know Tom was going to Boston with Mary.\tJe ne savais pas que Tom allait à Boston avec Mary.\nI didn't like this game until I started winning.\tJe n'aimais pas ce jeu, jusqu'à ce que je commence à gagner.\nI didn't mean to eavesdrop on your conversation.\tJe n'avais pas l'intention d'épier votre conversation.\nI don't believe you. You're always telling lies.\tJe ne vous crois pas. Vous dites toujours des mensonges.\nI don't care if you go or not. I'm going anyway.\tJe me fiche que tu y ailles ou pas. J'y vais de toutes façons.\nI don't care if you go or not. I'm going anyway.\tJe me fiche que vous y alliez ou pas. J'y vais de toutes façons.\nI don't care if you're busy. Please help me now.\tÇa m'est égal que tu sois occupé. Aide-moi maintenant, je te prie !\nI don't care if you're busy. Please help me now.\tÇa m'est égal que tu sois occupée. Aide-moi maintenant, je te prie !\nI don't care if you're busy. Please help me now.\tÇa m'est égal que tu sois occupé. Je te prie de m'aider maintenant.\nI don't care if you're busy. Please help me now.\tÇa m'est égal que tu sois occupée. Je te prie de m'aider maintenant.\nI don't care if you're busy. Please help me now.\tÇa m'est égal que vous soyez occupé. Je vous prie de m'aider maintenant.\nI don't care if you're busy. Please help me now.\tÇa m'est égal que vous soyez occupée. Je vous prie de m'aider maintenant.\nI don't care if you're busy. Please help me now.\tÇa m'est égal que vous soyez occupés. Je vous prie de m'aider maintenant.\nI don't care if you're busy. Please help me now.\tÇa m'est égal que vous soyez occupées. Je vous prie de m'aider maintenant.\nI don't intend to get mixed up in your business.\tJe n’ai pas l’intention de me mêler de votre affaire.\nI don't intend to get mixed up in your business.\tJe n’ai pas l’intention de me mêler de vos affaires.\nI don't intend to get mixed up in your business.\tJe n'ai pas l'intention de me mêler de vos affaires.\nI don't know why I'm in a bad mood this morning.\tJe ne vois pas pourquoi je suis de mauvaise humeur ce matin.\nI don't know why you didn't tell me immediately.\tJ'ignore pourquoi tu ne me l'as pas immédiatement dit.\nI don't know yet, but I'll find out soon enough.\tJe l'ignore encore mais je vais bientôt le découvrir.\nI don't remember the last time I climbed a tree.\tJe ne me rappelle pas la dernière fois que j'ai grimpé à un arbre.\nI don't think either of us wants that to happen.\tJe ne pense pas qu'aucun de nous deux ne veuille que cela arrive.\nI don't think either of us wants that to happen.\tJe ne pense pas qu'aucune de nous deux ne veuille que cela arrive.\nI don't think either of us wants that to happen.\tJe ne pense pas qu'aucun de nous deux ne veuille que cela survienne.\nI don't think either of us wants that to happen.\tJe ne pense pas qu'aucune de nous deux ne veuille que cela survienne.\nI don't think this shirt goes with that red tie.\tJe ne pense pas que cette chemise aille avec cette cravate rouge.\nI don't understand why he didn't tell the truth.\tJe ne comprends pas pourquoi il n'a pas dit la vérité.\nI doubt this is anything you'd be interested in.\tJe doute que ce soit de quelque intérêt pour vous.\nI doubt this is anything you'd be interested in.\tJe doute que ce soit de quelque intérêt pour toi.\nI doubt this is anything you'd be interested in.\tJe doute que ce soit quoi que ce soit qui t'intéresserait.\nI doubt this is anything you'd be interested in.\tJe doute que ce soit quoi que ce soit qui vous intéresserait.\nI feel the need to do something different today.\tJe ressens le besoin de faire quelque chose de différent aujourd'hui.\nI felt out of place in the expensive restaurant.\tJe me sentais mal à l'aise dans ce restaurant cher.\nI find it hard to get up early on cold mornings.\tJe trouve dur de se réveiller tôt par matins froids.\nI find it hard to get up early on cold mornings.\tJe trouve qu'il est difficile de se lever par les matins froids.\nI found out something interesting today at work.\tJ'ai découvert quelque chose d'intéressant au travail, aujourd'hui.\nI gave her my word I would be back home by nine.\tJe lui ai donné ma parole que je serai de retour pour neuf heures.\nI go for a walk every day, except when it rains.\tJe me promène quotidiennement, excepté s'il pleut.\nI go for a walk every day, except when it rains.\tJe sors faire une promenade tous les jours, sauf quand il pleut.\nI had left the key in the office the day before.\tJ'ai laissé la clé au bureau, le jour précédent.\nI had some free time, so I wandered around town.\tJ'avais un peu de temps de libre, alors j'ai flâné autour de la ville.\nI had some time to think about what I had to do.\tJ'ai disposé de temps pour réfléchir à ce que j'avais à faire.\nI had the feeling you were going to ask me that.\tJ'ai eu le sentiment que vous alliez me le demander.\nI had the feeling you were going to ask me that.\tJ'ai eu le sentiment que tu allais me le demander.\nI hate it when my clothes smell like cigarettes.\tJe déteste quand mes habits sentent la clope.\nI have an extremely tight schedule for tomorrow.\tJ'ai un programme extrêmement chargé pour demain.\nI have no intention of meddling in your affairs.\tJe n'ai aucune intention de m'immiscer dans vos affaires.\nI have no intention of meddling in your affairs.\tJe n'ai aucune intention de me mêler de tes affaires.\nI have read three Shakespearian works up to now.\tJusqu'à présent, j'ai lu trois œuvres de Shakespeare.\nI have something to tell you. I am your brother.\tJ'ai quelque chose à te dire. Je suis ton frère.\nI have to learn many words and phrases by heart.\tJe dois mémoriser beaucoup de vocabulaire et d'expressions.\nI have to pull a ripcord to start my lawn mower.\tJe dois tirer sur une cordelette de démarrage pour lancer ma tondeuse.\nI have to take some photos for my class project.\tIl me faut prendre des photos pour mon exposé.\nI have to take some photos for my class project.\tIl me faut prendre des photos pour mon élocution.\nI haven't eaten French food since I left France.\tJe n'ai pas consommé de nourriture française depuis que j'ai quitté la France.\nI haven't felt like this since I was a teenager.\tJe ne me suis pas senti comme ça depuis mon adolescence.\nI haven't worked up the courage to tell her yet.\tJe n'ai pas encore réuni le courage de le lui dire.\nI heard a strange noise coming from the kitchen.\tJ'entendis un bruit étrange en provenance de la cuisine.\nI heard a strange noise coming from the kitchen.\tJ'ai entendu un bruit étrange provenant de la cuisine.\nI hope everything will turn out well in the end.\tJ'espère que tout ira bien à la fin.\nI hope he will come up with a new and good idea.\tJ'espère qu'il lui viendra une nouvelle et bonne idée.\nI just can't get used to taking orders from Tom.\tJe n'arrive simplement pas à m'habituer à recevoir des ordres de Tom.\nI knew there was something fishy about that guy.\tJe savais que ce type avait quelque chose de louche.\nI know an English teacher who comes from Canada.\tJe connais un professeur d'anglais qui vient du Canada.\nI know you aren't stupid enough to believe that.\tJe sais que tu n'es pas stupide au point de croire ça.\nI know you aren't stupid enough to believe that.\tJe sais que tu n'es pas assez stupide pour croire cela.\nI know you aren't stupid enough to believe that.\tJe sais que vous n'êtes pas assez stupide pour croire cela.\nI know you aren't stupid enough to believe that.\tJe sais que vous n'êtes pas stupides au point de croire cela.\nI leave home before eight o'clock every morning.\tJe quitte la maison tous les matins avant huit heures.\nI left my wallet at home on that particular day.\tJ'avais oublié mon portefeuille à la maison ce jour-là.\nI looked Tom in the eyes and told him the truth.\tJ'ai regardé Tom dans les yeux et lui ai dit la vérité.\nI lost the door key, so I can't enter the house.\tJ'ai perdu la clé de la porte, alors je ne peux pas entrer dans la maison.\nI made friends with them at the school festival.\tJe m'en suis fait des amis à la fête de l'école.\nI made friends with them at the school festival.\tJe suis devenu amis avec eux à la fête de l'école.\nI made friends with them at the school festival.\tJe m'en suis fait des amies à la fête de l'école.\nI moved to England from Germany when I was nine.\tJ'ai déménagé d'Allemagne en Angleterre lorsque j'avais neuf ans.\nI need you to show me what you have in your bag.\tJ'ai besoin que tu me montres ce que tu as dans ton sac.\nI never wrote to her, despite the urge to do so.\tJe ne lui ai jamais écrit, malgré l'envie irrépressible de le faire.\nI notice the sale prices are written in red ink.\tJe remarque que les prix de vente sont écrits à l'encre rouge.\nI often use SSH to access my computers remotely.\tJ'utilise souvent SSH pour accéder à mes ordinateurs à distance.\nI plan to study this afternoon after I get home.\tJe prévois de bûcher cet après-midi, après être rentré chez moi.\nI plan to study this afternoon after I get home.\tJe prévois de bûcher cet après-midi, après être rentrée chez moi.\nI promised to help my brother with his homework.\tJ'ai promis d'aider mon frère avec ses devoirs.\nI received your letter the day before yesterday.\tJ'ai reçu ta lettre avant-hier.\nI received your letter the day before yesterday.\tJ'ai reçu votre lettre avant-hier.\nI recommend a thorough checkup for your husband.\tJe recommande un bilan complet pour votre époux.\nI reserved my hotel room three weeks in advance.\tJ'ai réservé ma chambre d'hôtel trois semaines à l'avance.\nI saw Tom a few minutes ago and he looked tired.\tJ'ai vu Tom il y a quelques minutes et il avait l'air fatigué.\nI saw a fishing boat about a mile off the shore.\tJ'ai vu un bateau de pêche à environ un mile de la côte.\nI saw a man yesterday eating from a garbage can.\tJ'ai vu un homme hier, manger dans une poubelle.\nI saw her taking a walk in the park at midnight.\tJe l'ai vue se promener dans le parc à minuit.\nI saw some of the guests leave the banquet room.\tJ'ai vu quelques invités quitter la salle du banquet.\nI sent him a letter to let him know my decision.\tJe lui ai envoyé une lettre pour lui faire savoir ma décision.\nI shouldn't have drunk that last bottle of beer.\tJe n'aurais pas dû boire cette dernière bouteille de bière.\nI spoke slowly so that they could understand me.\tJ'ai parlé lentement pour qu'ils puissent me comprendre.\nI still haven't gotten over what happened to me.\tJe ne me suis toujours pas remis de ce qui m'est arrivé.\nI succeeded in reaching the top of the mountain.\tJ'ai réussi à atteindre le sommet de la montagne.\nI suggested that we bring the meeting to an end.\tJe suggérai que nous missions fin à cette réunion.\nI suppose you're already packed and ready to go.\tJe suppose que tu as déjà fait tes valises et que tu es prêt à partir.\nI suppose you're already packed and ready to go.\tJe suppose que tu as déjà fait tes valises et que tu es prête à partir.\nI suppose you're already packed and ready to go.\tJe suppose que vous avez déjà fait vos valises et que vous êtes prêt à partir.\nI suppose you're already packed and ready to go.\tJe suppose que vous avez déjà fait vos valises et que vous êtes prêts à partir.\nI suppose you're already packed and ready to go.\tJe suppose que vous avez déjà fait vos valises et que vous êtes prête à partir.\nI suppose you're already packed and ready to go.\tJe suppose que vous avez déjà fait vos valises et que vous êtes prêtes à partir.\nI think I'll stay in Boston for a few more days.\tJe pense que je vais rester à Boston pour quelques jours de plus.\nI think I've persuaded Tom to donate some money.\tJe crois que j'ai convaincu Tom de faire un don.\nI think Tom probably doesn't like you very much.\tJe crois que Tom ne vous aime probablement pas beaucoup.\nI think it natural for her to decline his offer.\tJe pense qu'il était normal qu'elle refuse son offre.\nI think it's highly unlikely that Tom will swim.\tJe pense qu'il est peu probable que Tom nagera.\nI think it's time for me to buy a decent camera.\tJe pense qu'il est temps que j'achète un appareil photo digne de ce nom.\nI think it's time for me to get my eyes checked.\tJe pense qu'il est temps que je me fasse contrôler les yeux.\nI think it's time for me to move to the suburbs.\tJe pense qu'il est temps que je déménage en banlieue.\nI think there's something you're not telling me.\tJe pense que vous me cachez quelque chose.\nI think this medicine will do you a lot of good.\tJe pense que ce médicament vous fera beaucoup de bien.\nI think you know exactly what I'm talking about.\tJe pense que tu sais exactement de quoi je parle.\nI think you know exactly what I'm talking about.\tJe pense que vous savez exactement de quoi je parle.\nI thought you were supposed to be at school now.\tJe pensais que tu étais censé être en cours maintenant.\nI thought you were supposed to be at school now.\tJe pensais que tu étais censé être en cours en ce moment.\nI thought you were supposed to be at school now.\tJe pensais que tu étais censée être à l'école maintenant.\nI thought you were supposed to be at school now.\tJe pensais que tu étais censée être à l'école en ce moment.\nI thought you were supposed to be at school now.\tJe pensais que vous étiez censés être en cours maintenant.\nI thought you were supposed to be at school now.\tJe pensais que vous étiez censées être à l'école maintenant.\nI thought you'd always wanted to see this movie.\tJe pensais que tu avais toujours voulu voir ce film.\nI thought you'd always wanted to see this movie.\tJe pensais que vous aviez toujours voulu voir ce film.\nI took it for granted that you were on our side.\tJ'ai pris comme acquis que vous étiez de notre côté.\nI want him to be informed about that in advance.\tJe veux qu'il soit informé de cela en avance.\nI want those reports on my desk within the hour.\tJe veux ces rapports, dans l'heure, sur mon bureau.\nI want to eat some Korean food that isn't spicy.\tJe veux manger de la nourriture coréenne qui ne soit pas épicée.\nI want to know if my baggage is going to arrive.\tJ'aimerais bien savoir si mes bagages vont bientôt arriver.\nI want to make sure you are who you say you are.\tJe veux m'assurer que tu es celui que tu dis être.\nI want to make sure you are who you say you are.\tJe veux m'assurer que tu es celle que tu dis être.\nI want to make sure you are who you say you are.\tJe veux m'assurer que vous êtes celle que vous dites être.\nI want to make sure you are who you say you are.\tJe veux m'assurer que vous êtes celui que vous dites être.\nI want to make sure you are who you say you are.\tJe veux m'assurer que vous êtes celles que vous dites être.\nI want to make sure you are who you say you are.\tJe veux m'assurer que vous êtes ceux que vous dites être.\nI want to make sure you are who you say you are.\tJe veux m'assurer que vous êtes celle que vous déclarez être.\nI want to make sure you are who you say you are.\tJe veux m'assurer que vous êtes celui que vous déclarez être.\nI want to make sure you are who you say you are.\tJe veux m'assurer que vous êtes celles que vous déclarez être.\nI want to make sure you are who you say you are.\tJe veux m'assurer que vous êtes ceux que vous déclarez être.\nI want to make sure you are who you say you are.\tJe veux m'assurer que tu es celle que tu déclares être.\nI want to make sure you are who you say you are.\tJe veux m'assurer que tu es celui que tu déclares être.\nI want you to go to your room and lock the door.\tJe veux que tu ailles dans ta chambre et que tu verrouilles la porte.\nI want you to go to your room and lock the door.\tJe veux que tu ailles dans ta chambre et que tu en verrouilles la porte.\nI want you to go to your room and lock the door.\tJe veux que vous alliez dans votre chambre et que vous verrouilliez la porte.\nI want you to go to your room and lock the door.\tJe veux que vous alliez dans votre chambre et que vous en verrouilliez la porte.\nI was bored because I had seen the movie before.\tJe m'ennuyais parce que j'avais déjà vu le film.\nI was born on the twenty-second of June in 1974.\tJe suis né le vingt-deux juin 1974.\nI was deeply affected when I heard of his death.\tJe fus profondément affecté lorsque j'appris son décès.\nI was deeply affected when I heard of his death.\tJ'ai été profondément affecté lorsque j'ai appris son décès.\nI was surprised at the news of his sudden death.\tJ'ai été surpris par la nouvelle de son décès soudain.\nI will be working on my report all day tomorrow.\tJe travaillerai à mon rapport toute la journée de demain.\nI will forgive him out of consideration for you.\tJe lui pardonnerai en vertu de la considération que je vous porte.\nI will give these tickets to whoever wants them.\tJe donnerai ces tickets à celui qui les voudra.\nI will go there on foot or by bicycle next time.\tJ'irai à pied ou en vélo, la prochaine fois.\nI will go there on foot or by bicycle next time.\tJe m'y rendrai à pied ou en vélo, la prochaine fois.\nI will have finished the work before you return.\tJ'aurai terminé le travail avant que vous ne reveniez.\nI will have finished the work before you return.\tJ'aurai terminé le travail avant que tu ne reviennes.\nI will have lived here for ten years next month.\tCela fera dix ans que j'habite ici le mois prochain.\nI will see to it that you meet her at the party.\tJe m'arrangerai pour que vous la rencontriez lors de la fête.\nI wish she would stop playing that stupid music.\tSi seulement elle arrêtait de jouer cette musique idiote !\nI wish that I could give you the money you need.\tJ'aimerais pouvoir te donner l'argent dont tu as besoin.\nI wish that I could give you the money you need.\tJe voudrais pouvoir vous donner l'argent dont vous avez besoin.\nI withdrew some money from the bank for my trip.\tJ'ai retiré de l’argent de la banque pour mon voyage.\nI wonder what the weather will be like tomorrow.\tJe me demande comment le temps sera demain.\nI wore a hat yesterday because it was very cold.\tHier j’ai mis un chapeau parce qu’il faisait très froid.\nI'd like to ask you the same question once more.\tJ'aimerais vous poser la même question une fois de plus.\nI'd like to confirm my reservation for the 30th.\tJ'aimerais confirmer ma réservation pour le 30.\nI'd love to know if my luggage is arriving soon.\tJ'aimerais bien savoir si mes bagages vont bientôt arriver.\nI'd rather not talk about it, if you don't mind.\tJe préfère ne pas en parler, si tu veux bien.\nI'll be returning to Boston sometime next month.\tJe retournerai à Boston le mois prochain.\nI'll have to make amends to them for my mistake.\tIl me faudra leur faire amende honorable pour mon erreur.\nI'll help you prevent that from happening again.\tJe vais t'aider à faire en sorte que cela ne recommence pas.\nI'll never be able to do that without your help.\tJe ne pourrai jamais faire ça sans ton aide.\nI'll never be able to do that without your help.\tJe ne serai jamais capable de faire cela sans votre aide.\nI'll pay you back the money I owe you next week.\tJe te rembourserai la semaine prochaine l'argent que je te dois.\nI'm afraid even your friends can't save you now.\tJe crains que même tes amis ne puissent désormais te sauver.\nI'm afraid even your friends can't save you now.\tJe crains que même vos amis ne puissent désormais vous sauver.\nI'm amazed by the rate at which industries grow.\tJe suis ébahi par le rythme auquel les industries se développent.\nI'm getting back together with my ex-girlfriend.\tJe retourne avec mon ex petite amie.\nI'm getting back together with my ex-girlfriend.\tJe retourne avec mon ex petite copine.\nI'm going to Japan with my girlfriend in August.\tJ'irai au Japon avec ma copine en août.\nI'm going to do something by myself for a while.\tJe vais faire quelque chose par moi-même, pendant un moment.\nI'm on my way to visit a friend in the hospital.\tJe suis en route pour rendre visite à un ami à l'hôpital.\nI'm on my way to visit a friend in the hospital.\tJe suis en route pour rendre visite à une amie à l'hôpital.\nI'm pretty sure that Tom doesn't have a brother.\tJe suis pratiquement sûr que Tom n'a pas de frère.\nI'm pretty sure that Tom doesn't have a brother.\tJe suis pratiquement sûre que Tom n'a pas de frère.\nI'm really busy today, otherwise I would accept.\tJe suis vraiment occupé, aujourd'hui, sans quoi j'accepterais.\nI'm really busy today, otherwise I would accept.\tJe suis vraiment occupée, aujourd'hui, sans quoi j'accepterais.\nI'm really looking forward to my birthday party.\tJ'attends ma fête d'anniversaire avec beaucoup d'impatience.\nI'm sorry that I can't be who you want me to be.\tJe suis désolé de ne pouvoir être celui que tu voudrais que je sois.\nI'm sorry that I can't be who you want me to be.\tJe suis désolée de ne pouvoir être celle que tu voudrais que je sois.\nI'm sorry to interrupt you while you're talking.\tJe suis désolé de vous interrompre pendant que vous parlez.\nI'm thinking about putting my house up for sale.\tJe réfléchis à mettre ma maison en vente.\nI'm thinking about visiting my friend next year.\tJ'envisage de rendre visite à mon ami l'année prochaine.\nI've been looking for a new job for a long time.\tJe cherche une nouvelle place depuis longtemps.\nI've been looking for a new job for a long time.\tJe cherche un nouveau poste depuis longtemps.\nI've been working since I was sixteen years old.\tJe travaille depuis mes seize ans.\nI've changed. I'm not the same man I used to be.\tJ'ai changé. Je ne suis plus l'homme que j'étais.\nI've got Tom's address somewhere on my computer.\tJ'ai l'adresse de Tom quelque part dans mon ordinateur.\nI've made peace with my maker. I'm ready to die.\tJ'ai fait la paix avec mon créateur. Je suis prêt à mourir.\nI've made the same mistakes as I made last time.\tJ'ai commis les mêmes erreurs que la dernière fois.\nI've never been to a professional baseball game.\tJe ne suis jamais allé à un match de base-ball professionnel.\nI've never been to a professional baseball game.\tJe ne suis jamais allée à un match de base-ball professionnel.\nIf I had one million yen now, I would buy a car.\tLà maintenant, si j'avais un million de yens, j'achèterais une voiture.\nIf I screw up, what's the worst that can happen?\tSi je foire, quel est le pire qui puisse advenir ?\nIf I screw up, what's the worst that can happen?\tSi je foire, quel est le pire qui puisse se passer ?\nIf I screw up, what's the worst that can happen?\tSi je me vautre, quel est le pire qui puisse advenir ?\nIf I were caught, do you know what would happen?\tSi je me faisais prendre, sais-tu ce qui arriverait ?\nIf I were caught, do you know what would happen?\tSi je me faisais prendre, savez-vous ce qui arriverait ?\nIf I were caught, do you know what would happen?\tSi je me faisais prendre, sais-tu ce qui adviendrait ?\nIf Tom finds out I told you this, he'll kill me.\tSi Tom découvre que je t'ai dit ceci, il me tuera.\nIf Tom finds out I told you this, he'll kill me.\tSi Tom découvre que je vous ai dit ceci, il me tuera.\nIf he had been free, he would have gone fishing.\tS'il avait été libre, il serait allé pêcher.\nIf he is proficient in English, I'll employ him.\tS'il maîtrise l'anglais, je l'embaucherai.\nIf he is proficient in English, I'll employ him.\tS'il est compétent en anglais, je l'emploierai.\nIf it is sunny tomorrow, we will go on a picnic.\tS'il fait beau demain, nous irons pique-niquer.\nIf it's raining tomorrow, we'll go there by car.\tS'il pleut, demain, nous irons en voiture.\nIf it's raining tomorrow, we'll go there by car.\tS'il pleut, demain, nous nous y rendrons en voiture.\nIf so, then there's no problem at all, is there?\tSi tel est le cas, il n'y aucun problème, n'est-ce pas ?\nIf you don't mind, may we inspect your suitcase?\tSi ça ne vous dérange pas, pourrions-nous inspecter votre valise ?\nIf you don't study harder, you'll fail for sure.\tSi tu n'étudies pas plus dur, il est certain que tu échoueras.\nIf you don't want to talk about it, that's okay.\tSi tu ne veux pas en parler, ce n'est pas grave.\nIf you don't water the plants, they will wither.\tSi tu n'arroses pas les plantes, elles vont se flétrir.\nIf you had a million dollars, what would you do?\tSi tu disposais d'un million de dollars, que ferais-tu ?\nIf you had a million dollars, what would you do?\tSi vous disposiez d'un million de dollars, que feriez-vous ?\nIf you have something to say, say it to my face.\tSi vous avez quelque chose à dire, dites-le-moi en face !\nIf you have something to say, say it to my face.\tSi tu as quelque chose à dire, dis-le-moi en face !\nIf you really like Mary, you should ask her out.\tSi tu aimes vraiment Mary, tu devrais l'inviter à sortir.\nIn 1958, Brazil won its first World Cup victory.\tEn 1958, le Brésil a gagné sa première Coupe du Monde.\nIn a way you are right, but I still have doubts.\tD'une certaine manière tu as raison, mais j'ai encore des doutes.\nIn a way you are right, but I still have doubts.\tEn un sens, vous avez raison, mais j'ai encore des doutes.\nIn all probability, we'll arrive before they do.\tSelon toute probabilité, nous arriverons avant eux.\nIn politics there are no friends, only partners.\tEn politique, il n'y a pas d'amis, seulement des partenaires.\nIn time he'll come to see the error of his ways.\tAvant peu il prendra conscience de l'erreur de ses manières.\nIs it OK to drink alcoholic drinks in this park?\tEst-il autorisé de boire de l'alcool dans ce parc ?\nIs it OK to drink alcoholic drinks in this park?\tEst-il admis de boire de l'alcool dans ce parc ?\nIs she so stupid that she believes such a thing?\tEst-elle assez bête pour croire une telle chose ?\nIs there a link between smoking and lung cancer?\tY a-t-il un lien entre fumer et le cancer du poumon ?\nIt always takes time to get used to a new place.\tÇa prend toujours du temps pour s'habituer à une nouvelle place.\nIt has been over three years since I moved here.\tCela fait plus de trois ans depuis que j'ai emménagé ici.\nIt is an advantage to be able to use a computer.\tC'est un avantage de savoir utiliser un ordinateur.\nIt is an advantage to be able to use a computer.\tC'est un avantage d'être capable d'utiliser un ordinateur.\nIt is certain that he will pass the examination.\tC'est sûr qu'il va réussir l'examen.\nIt is hard to distinguish you from your brother.\tIl est difficile de te distinguer de ton frère.\nIt is in this room that the summit will be held.\tC'est dans cette pièce que le sommet se tiendra.\nIt is kind of you go out of your way to help me.\tMerci d'être venus spécialement pour m'aider.\nIt is necessary for you to go there immediately.\tIl faut que tu y ailles immédiatement.\nIt is necessary for you to go there immediately.\tIl est nécessaire que tu viennes ici immédiatement.\nIt is necessary for you to go there immediately.\tIl faut que vous vous y rendiez immédiatement.\nIt is one of the biggest summer music festivals.\tC'est l'un des plus gros festivals de musique en été.\nIt is one of the biggest summer music festivals.\tC'est l'un des plus gros festivals de musique estivaux.\nIt is preferable that he gets there by tomorrow.\tIl est préférable qu'il arrive là-bas d'ici demain.\nIt is said that the poor are not always unhappy.\tOn dit que les gens pauvres ne sont pas toujours malheureux.\nIt is said that treasure is buried in this area.\tIl est dit qu'un trésor est enterré dans cet endroit.\nIt is useless to discuss the matter any further.\tIl est inutile de discuter de l'affaire plus longtemps.\nIt looks like they're satisfied with the result.\tOn dirait qu'ils sont contents du résultat.\nIt makes no difference whether you agree or not.\tCela ne changera rien que vous soyez d'accord ou pas\nIt occurred to him that he should start at once.\tIl lui vint à l'esprit de commencer tout de suite.\nIt occurred to me that my watch might be broken.\tJ'ai compris que ma montre devait être cassée.\nIt seems that he believes what he said is right.\tIl semble qu'il croie que ce qu'il dit est juste.\nIt takes more than one swallow to make a summer.\tUne hirondelle ne fait pas le printemps.\nIt took a long time for her to write the report.\tCela lui a pris du temps pour écrire le rapport.\nIt took me a long time to get used to the noise.\tM'habituer au bruit me prit beaucoup de temps.\nIt took me a long time to get used to the noise.\tM'habituer au bruit me prit un long moment.\nIt took me a long time to get used to the noise.\tM'accoutumer au bruit me prit beaucoup de temps.\nIt took me a long time to get used to the noise.\tM'accoutumer au bruit me prit un long moment.\nIt took me a long time to get used to the noise.\tM'accoutumer au bruit m'a pris beaucoup de temps.\nIt took me a long time to get used to the noise.\tM'habituer au bruit m'a pris beaucoup de temps.\nIt took me a long time to get used to the noise.\tM'accoutumer au bruit m'a pris un long moment.\nIt took me a long time to get used to the noise.\tM'habituer au bruit m'a pris un long moment.\nIt was not until yesterday that I knew her name.\tCe n'est que depuis hier que j'ai appris son nom.\nIt was not until yesterday that I knew his name.\tCe n'est que depuis hier que j'ai appris son nom.\nIt was not until yesterday that I knew the news.\tJe n'ai pas eu connaissance des nouvelles jusqu'à hier.\nIt was very sensible of him to reject the bribe.\tCe fut très avisé de sa part de refuser le pot-de-vin.\nIt was very sensible of him to reject the bribe.\tRefuser le bakchich fut très avisé de sa part.\nIt wasn't until yesterday that I heard the news.\tCe n'est que depuis hier que j'ai entendu les infos.\nIt will take some time before he understands it.\tCela prendra du temps avant qu'il comprenne ça.\nIt'll take some time to get used to living here.\tÇa prendra un peu de temps pour s'habituer à vivre ici.\nIt's about time you stopped watching television.\tIl est temps d'arrêter de regarder la télévision.\nIt's anybody's guess who will win the next race.\tSavoir qui gagnera la prochaine course est pure conjecture.\nIt's been a long time since I last spoke French.\tÇa fait longtemps depuis la dernière fois que j'ai parlé français.\nIt's been a long time since I last spoke French.\tÇa fait longtemps que je n'ai pas parlé français.\nIt's been a long time since I've seen you smile.\tÇa fait longtemps que je ne t'ai pas vue sourire.\nIt's been a long time since I've seen you smile.\tÇa fait longtemps que je ne vous ai pas vu sourire.\nIt's difficult to understand why you want to go.\tIl est difficile de comprendre pourquoi tu veux partir.\nIt's difficult to understand why you want to go.\tIl est difficile de comprendre pourquoi tu veux y aller.\nIt's difficult to understand why you want to go.\tIl est difficile de comprendre pourquoi tu veux t'en aller.\nIt's difficult to understand why you want to go.\tIl est difficile de comprendre pourquoi vous voulez partir.\nIt's difficult to understand why you want to go.\tIl est difficile de comprendre pourquoi vous voulez y aller.\nIt's difficult to understand why you want to go.\tIl est difficile de comprendre pourquoi vous voulez vous en aller.\nIt's going to be great and exciting to be there.\tÇa va être super et passionnant d'y être.\nIt's hard for me to express ideas through words.\tIl m'est difficile d'exprimer des idées par des mots.\nIt's more complicated than I originally thought.\tC'est plus dur que ce que je pensais.\nIt's more complicated than I originally thought.\tC'est plus compliqué que je ne le pensais à l'origine.\nIt's more complicated than I originally thought.\tC'est plus compliqué que ce que j'avais pensé au départ.\nIt's not necessary to write more than 400 words.\tIl n'est pas nécessaire d'écrire plus de quatre cents mots.\nIt's rumored that they are going to get married.\tLa rumeur dit qu'ils vont se marier.\nJuggling is actually a lot easier than it looks.\tJongler est en fait beaucoup plus facile que cela en a l'air.\nJuggling is actually a lot easier than it looks.\tJongler est en réalité beaucoup plus facile qu'il n'y paraît.\nLet me introduce you to a new way of doing that.\tLaisse-moi te montrer une nouvelle manière de faire ça.\nLet me introduce you to a new way of doing that.\tLaisse-moi t'initier à une nouvelle façon de le faire.\nLet me introduce you to a new way of doing that.\tLaissez-moi vous présenter une nouvelle manière de faire cela.\nLet me know when you will arrive at the airport.\tDites-moi quand vous arrivez à l'aéroport.\nLet me tell you about the origin of this school.\tLaisse-moi te raconter l'origine de cette école.\nLet's change into our swimsuits and go swimming.\tPassons nos maillots de bain et allons nager.\nLet's compare the translation with the original.\tComparons la traduction à l'original.\nLet's forget the past and talk about the future.\tOublions le passé et parlons de l'avenir.\nLet's get down to brass tacks and talk business.\tVenons-en aux faits et parlons affaires.\nLet's go get snockered like we did last weekend.\tAllons nous bourrer la gueule comme on a fait le week-end dernier.\nLet's leave the matter as it is for the present.\tLaissons le problème où il est pour le moment.\nLet's list all the reasons we shouldn't do that.\tListons toutes les raisons pour lesquelles nous ne devrions pas faire ça.\nLet's see if we can find out what the matter is.\tEssayons de savoir quel est le problème.\nLet's sit here for a while and look at the view.\tAsseyons-nous ici un moment à contempler la vue !\nLet's wrap up this work now and go out drinking.\tTorchons maintenant ce boulot et sortons boire un verre.\nListen carefully and do exactly what I tell you.\tÉcoute attentivement et fais exactement ce que je te dis !\nListen carefully and do exactly what I tell you.\tÉcoutez attentivement et faites exactement ce que je vous dis !\nListen carefully to what I am going to tell you.\tÉcoutez soigneusement ce que je vais vous dire.\nLook up words you don't know in your dictionary.\tCherchez les mots que vous ne connaissez pas dans votre dictionnaire.\nMany Americans protested the purchase of Alaska.\tDe nombreux Étasuniens protestèrent contre l'acquisition de l'Alaska.\nMany criminals in America are addicted to drugs.\tAux États-Unis de nombreux criminels sont dépendants à la drogue.\nMany people believe that money brings happiness.\tBeaucoup de gens pensent que l'argent fait le bonheur.\nMany people use cash machines to withdraw money.\tBeaucoup de gens utilisent des distributeurs de billets pour retirer de l'argent.\nMany young people don't listen to radio anymore.\tDe nombreux jeunes gens n'écoutent plus la radio.\nMary is going to open a gift from her boyfriend.\tMary va ouvrir un cadeau de son petit ami.\nMary thinks that the world is a dangerous place.\tMarie pense que le monde est un endroit dangereux.\nMass production reduced the price of many goods.\tLa production en masse a réduit le prix de beaucoup de biens.\nMass production reduced the price of many goods.\tLa production de masse a réduit le prix de beaucoup de marchandises.\nMastering a foreign language calls for patience.\tMaîtriser une langue étrangère demande de la patience.\nMastering a foreign language calls for patience.\tMaîtriser une langue étrangère requiert de la patience.\nMay I talk with you in private about the matter?\tPuis-je vous parler de ce sujet en privé ?\nMay I use your eraser? I seem to have lost mine.\tPuis-je utiliser ta gomme ? Il semble que j'ai égaré la mienne.\nMaybe Tom was trying to warn us about something.\tPeut-être Tom essayait de nous avertir à propos de quelque chose.\nMen were attracted to her like moths to a flame.\tLes hommes étaient attirés par elle comme les papillons de nuit par une flamme.\nMonopoly is a popular game for families to play.\tLe Monopoly est un jeu populaire pour les familles.\nMore and more students are joining the protests.\tDe plus en plus d'étudiants se joignent aux protestations.\nMost people are very passionate about something.\tLa plupart des gens sont très passionnés par quelque chose.\nMuseums do a pretty good job preserving history.\tLes musées effectuent un assez bon travail de sauvegarde historique.\nMy boss has the ability to read books very fast.\tMon chef a la capacité de lire des livres très rapidement.\nMy boss rejected the budget for the new project.\tMon chef a rejeté le budget pour le nouveau projet.\nMy dream is to lead a quiet life in the country.\tMon rêve est de vivre une vie tranquille à la campagne.\nMy dream is to make it as an actor in Hollywood.\tMon rêve est de devenir acteur à Hollywood.\nMy first impression of him proved to be correct.\tMa première impression sur lui s'avéra correcte.\nMy mother always gets up earlier in the morning.\tMa mère se lève toujours plus tôt le matin.\nMy mother was in the hospital during the summer.\tMa mère était à l'hôpital pendant l'été.\nMy parents hardly ever punished me for anything.\tMes parents ne m'ont pour ainsi dire jamais puni pour quoi que ce soit.\nMy parents hardly ever punished me for anything.\tMes parents ne m'ont pour ainsi dire jamais punie pour quoi que ce soit.\nMy parents never punished me for anything I did.\tMes parents ne me punissaient jamais pour quoi que je fisse.\nMy sister has three times as many books as I do.\tMa sœur a trois fois plus de livres que moi.\nNever put off to tomorrow what you can do today.\tNe remets pas à demain ce que tu peux faire aujourd’hui.\nNew York City policemen wear dark blue uniforms.\tLes policiers de la ville de New York portent un uniforme bleu sombre.\nNo one in his class can run faster than he does.\tPersonne de sa classe n'est plus rapide que lui.\nNot a sound was to be heard in the concert hall.\tOn n'entendait pas un son dans la salle de concert.\nNot knowing what to do, I telephoned the police.\tNe sachant que faire, j'ai appelé la police.\nOn the other hand, there are some disadvantages.\tD'un autre côté, il y a quelques désavantages.\nOnce you've started something, don't give it up.\tUne fois que vous avez commencé quelque chose, n'abandonnez pas.\nOne does not wear a red mini skirt to a funeral.\tOn ne porte pas une mini-jupe rouge à des funérailles.\nOprah Winfrey has great influence over her fans.\tOprah Winfrey exerce une grande influence sur ses admirateurs.\nOur French teacher gives us a test every Monday.\tNotre professeur de français nous donne un contrôle chaque lundi.\nOur class has twenty-five boys and twenty girls.\tNotre classe compte 25 garçons et 20 filles.\nOur conversation was interrupted by his sneezes.\tNotre conversation a été interrompue par ses éternuements.\nOver three thousand people attended the concert.\tPlus de trois mille personnes assistèrent au concert.\nOver three thousand people attended the concert.\tPlus de trois mille personnes ont assisté au concert.\nPaparazzi thronged both sides of the red carpet.\tLes paparazzi se pressaient des deux côtés du tapis rouge.\nParis is one of the largest cities in the world.\tParis est une des villes les plus grandes du monde.\nPatience is sometimes the most effective weapon.\tLa patience est parfois l'arme la plus efficace.\nPeople might think you're stupid if you do that.\tLes gens pourront penser que tu es stupide si tu fais ça.\nPhotography is now considered a new form of art.\tLa photographie est désormais considérée comme une nouvelle forme d'art.\nPlease forgive me for not answering your letter.\tPardonnez-moi de ne pas avoir répondu à votre lettre.\nPlease mail this form to your insurance company.\tS'il vous plait, envoyez ce formulaire par la poste à votre compagnie d'assurance.\nPlease note that the price is subject to change.\tVeuillez noter que le prix est susceptible d'évoluer.\nPlease note that the price is subject to change.\tVeuillez noter que le prix est sujet à des changements.\nPlease tell me which bus to take to go downtown.\tVeuillez me dire quel bus prendre pour me rendre en ville.\nPlease tell me which bus to take to go downtown.\tDis-moi quel bus prendre pour me rendre en ville, s'il te plait.\nPlease translate this Japanese text into French.\tVeuillez traduire ce texte japonais en français.\nReading is to the mind what food is to the body.\tLa lecture est à l'esprit ce que la nourriture est au corps.\nSaint Patrick's Day is celebrated on March 17th.\tLa Saint Patrick est célébrée le dix-sept mars.\nScience does not solve all the problems of life.\tLa science ne résout pas tous les problèmes.\nSeen from the moon, the earth looks like a ball.\tDe la Lune, la Terre ressemble à un ballon.\nSend in something to eat or I'll kill a hostage.\tFaites venir quelque chose à manger ou je tue un otage.\nSeveral bridges have been damaged or swept away.\tPlusieurs ponts ont été endommagés ou emportés.\nSexual harassment has now become a social issue.\tLe harcèlement sexuel est maintenant devenu un problème de société.\nShe acknowledged that she couldn't speak French.\tElle a admis ne pas être capable de parler français.\nShe advised him to walk instead of taking a bus.\tElle lui conseilla de marcher plutôt que de prendre le bus.\nShe advised him to walk instead of taking a bus.\tElle lui a conseillé de marcher plutôt que de prendre le bus.\nShe always takes her time in choosing her dress.\tElle prend toujours son temps pour choisir sa robe.\nShe asked him for some money to buy a new dress.\tElle lui demanda de l'argent pour acheter une nouvelle robe.\nShe asked him for some money to buy a new dress.\tElle lui a demandé de l'argent pour acheter une nouvelle robe.\nShe asked him to stay, but he had to go to work.\tElle lui demanda de rester, mais il devait se rendre au travail.\nShe asked him to stay, but he had to go to work.\tElle lui a demandé de rester, mais il devait se rendre au travail.\nShe asked me to continue writing to your father.\tElle m'a demandé de continuer à écrire à ton père.\nShe bought a shirt for him to wear to the party.\tElle lui acheta une chemise à porter à la fête.\nShe bought a shirt for him to wear to the party.\tElle lui a acheté une chemise à porter à la fête.\nShe brought him to our place to meet my parents.\tElle l'emmena chez nous pour rencontrer mes parents.\nShe brought him to our place to meet my parents.\tElle l'a emmené chez nous pour rencontrer mes parents.\nShe celebrated her fifteenth birthday yesterday.\tElle a célébré hier son quinzième anniversaire.\nShe explained to him why she couldn't visit him.\tElle lui expliqua pourquoi elle ne pourrait lui rendre visite.\nShe explained to him why she couldn't visit him.\tElle lui expliqua pourquoi elle ne pouvait lui rendre visite.\nShe explained to him why she couldn't visit him.\tElle lui a expliqué pourquoi elle ne pourrait lui rendre visite.\nShe explained to him why she couldn't visit him.\tElle lui a expliqué pourquoi elle ne pouvait lui rendre visite.\nShe furnished the room with beautiful furniture.\tElle aménagea la pièce avec de beaux meubles.\nShe goes jogging every morning before breakfast.\tElle va courir chaque matin avant le petit-déjeuner.\nShe got him to do anything she wanted him to do.\tElle obtint qu'il fasse tout ce qu'elle voulait.\nShe got him to do anything she wanted him to do.\tElle a obtenu qu'il fasse tout ce qu'elle voulait.\nShe had been sick for a week when I visited her.\tElle était malade depuis une semaine quand je lui ai rendu visite.\nShe has to take in the waist of her pants a bit.\tElle doit reprendre un peu la taille de son pantalon.\nShe held him tightly and never wanted to let go.\tElle le tint fermement et ne voulut jamais lâcher.\nShe hurt her foot when she fell off her bicycle.\tElle s'est blessée au pied en tombant de vélo.\nShe inferred from his silence that he was angry.\tElle déduisit de son silence qu'il était en colère.\nShe left me simply because I had a small income.\tElle m'a laissé tomber simplement parce que j'avais un petit revenu.\nShe listens to him even though no one else does.\tElle l'écoute alors que personne d'autre ne le fait.\nShe looked at the picture to refresh her memory.\tElle regarda la photo pour se rafraîchir la mémoire.\nShe makes a point of going to church on Sundays.\tElle va à l'église tous les dimanches.\nShe married him even though she didn't like him.\tElle l'épousa, bien qu'elle ne l'appréciât pas.\nShe married him even though she didn't like him.\tElle l'a épousé, bien qu'elle ne l'appréciât pas.\nShe obeys him no matter what he tells her to do.\tElle lui obéit, quoi qu'il lui dise de faire.\nShe realized that she had better tell the truth.\tElle a réalisé qu'elle ferait mieux de dire la vérité.\nShe seems to be in trouble. Tell her what to do.\tElle semble être en difficulté, dites-lui ce qu'il faut faire.\nShe stood transfixed as if she had seen a ghost.\tElle est restée figée comme si elle avait vu un fantôme.\nShe studies as hard as any student in her class.\tElle étudie autant que n'importe quel autre élève de la classe.\nShe taught the child never to play with matches.\tElle a appris à son enfant à ne jamais jouer avec des allumettes.\nShe told me which clothes would be good to wear.\tElle m'a indiqué quels vêtements il conviendrait de porter.\nShe tried to persuade him to attend the meeting.\tElle tenta de le persuader de se rendre à la réunion.\nShe tried to persuade him to attend the meeting.\tElle a tenté de le persuader de se rendre à la réunion.\nShe tried to persuade him to organize a boycott.\tElle tenta de le persuader d'organiser un boycott.\nShe was absent from school because she was sick.\tElle était absente à l'école car elle était malade.\nShe was accused of having lied about the affair.\tElle fut accusée d'avoir menti sur l'affaire.\nShe was approaching thirty when I first met her.\tElle approchait les 30 ans lorsque que je l'ai rencontrée pour la première fois.\nShe was approaching thirty when I first met her.\tQuand je la rencontrai pour la première fois, elle avait presque trente ans.\nShe was ashamed of herself for her carelessness.\tElle avait honte de son inattention.\nShe was clever enough not to be deceived by him.\tElle était suffisamment habile pour ne pas être trompée par lui.\nShe was very worried about her husband's health.\tElle était très inquiète au sujet de la santé de son époux.\nShe will be glad if you go to see her in person.\tElle appréciera que tu ailles la voir en personne.\nShe would often practice the violin on the roof.\tElle avait l'habitude de jouer du violon sur le toit.\nShe wouldn't let him in the room no matter what.\tElle ne voulait pas le laisser entrer dans la pièce, quoi qu'il advienne.\nShe wrote to him to tell him that she loved him.\tElle lui écrivit pour lui dire qu'elle l'aimait.\nShe wrote to him to tell him that she loved him.\tElle lui a écrit pour lui dire qu'elle l'aimait.\nShe'd rather be spending time with someone else.\tElle aimerait autant passer du temps avec quelqu'un d'autre.\nShe's a fixture at all the high-society parties.\tElle fait partie des meubles dans toutes les soirées de la haute.\nSince it's nice out, I'd like to go take a walk.\tComme il fait beau dehors, j'aimerais aller faire une promenade.\nSir, that CD is available only by special order.\tMonsieur, ce CD n'est disponible que sur commande.\nSome Canadian territories have almost no people.\tCertaines régions du Canada sont très peu peuplées.\nSome days seem to just drag on and last forever.\tCertains jours semblent se traîner et durer éternellement.\nSome months have thirty days, others thirty one.\tCertains mois comportent trente jours, d'autres trente et un.\nSome politicians are wolves in sheep's clothing.\tCertains politiciens sont des loups déguisés en agneaux.\nSomeone ate all the cookies from the cookie jar.\tQuelqu'un a mangé tous les biscuits du pot.\nStock prices declined for five consecutive days.\tLe cours des actions a baissé pendant cinq jours de suite.\nStop worrying about that and focus on your work.\tArrête de te faire du souci pour ça et concentre-toi sur ton travail.\nStrangely enough, I didn't feel any pain at all.\tBizarrement, je ne ressentis absolument aucune douleur.\nTeachers should deal fairly with their students.\tLes enseignants devraient traiter leurs élèves équitablement.\nTell me what to write and I'll write it for you.\tDis-moi quoi écrire et je l'écrirai pour toi.\nTell me what to write and I'll write it for you.\tDites-moi quoi écrire et je l'écrirai pour vous.\nThat cake looks good too. Give me a small piece.\tCe gâteau a l'air également bon. Donne-m'en un petit morceau.\nThat child grew a lot in a short amount of time.\tCet enfant a beaucoup grandi en peu de temps.\nThat exercise is good for the abdominal muscles.\tCet exercice est bon pour les muscles abdominaux.\nThat guy is always asking his parents for money.\tCe gars est toujours en train de demander de l'argent à ses parents.\nThat house is small, but it's big enough for us.\tCette maison est petite mais elle est suffisamment grande pour nous.\nThat is the same umbrella as I found on the bus.\tC'est le même parapluie que j'ai trouvé dans le bus.\nThat mountain is five times as high as this one.\tCette montagne est cinq fois plus haute que celle-ci.\nThat movie isn't as interesting as the original.\tCe film n'est pas aussi intéressant que l'original.\nThat was one of the biggest mistakes in my life.\tCe fut l'une des plus grosses erreurs de ma vie.\nThat was the first time I had ever driven a car.\tC'était la première fois que j'avais conduit une voiture.\nThe Beatles gave five concerts in Tokyo in 1996.\tLes Beatles ont donné cinq concerts à Tokyo en 1996.\nThe Tomei Expressway connects Tokyo with Nagoya.\tLa voie rapide « Tomei » relie Tokyo à Nagoya.\nThe accident came about through my carelessness.\tCet accident est survenu à cause de ma négligence.\nThe accident happened because he wasn't careful.\tL'accident a eu lieu parce qu'il n'était pas prudent.\nThe accused told the judge that he was innocent.\tL'accusé déclara au juge qu'il était innocent.\nThe accused told the judge that he was innocent.\tL'accusée déclara au juge qu'elle était innocente.\nThe agenda for the meeting has been distributed.\tL'ordre du jour de la réunion a été distribué.\nThe assassin smothered his victim with a pillow.\tL'assassin étouffa sa victime avec un oreiller.\nThe baby has been crying for almost ten minutes.\tLe bébé pleure déjà depuis presque dix minutes.\nThe bad weather delayed the plane for two hours.\tLe mauvais temps a retardé l'avion durant deux heures.\nThe birth rate and death rate were nearly equal.\tLes taux de natalité et de mortalité étaient pratiquement égaux.\nThe black cat purred, as if he was being petted.\tLe chat noir a ronronné, comme s'il était caressé.\nThe bridge saved them a lot of time and trouble.\tLe pont leur a fait gagner pas mal de temps et épargné beaucoup de soucis.\nThe bus will take you to the center of the city.\tLe bus vous amène dans le centre-ville.\nThe button battery for my computer's timer died.\tLa pile-bouton de l'horloge de mon ordinateur est morte.\nThe cat chased the mouse, but couldn't catch it.\tLe chat a traqué la souris mais n'est pas arrivé à l'attraper.\nThe cause of the accident is a complete mystery.\tLa cause de l'accident est un mystère complet.\nThe colonists bartered with the natives for fur.\tLes colons faisaient du troc avec les autochtones pour obtenir de la fourrure.\nThe commission concluded that the answer was no.\tLa commission conclut que la réponse était non.\nThe company decided to hire two new secretaries.\tLa société décida d'employer deux nouvelles secrétaires.\nThe company, wholly owned by NTT, is doing well.\tLa société, entièrement détenue par NTT, se porte bien.\nThe contents of the box are listed on the label.\tLe contenu de la boîte est indiqué sur l'étiquette.\nThe cops threw tear-gas bombs into the building.\tLes flics ont jeté des grenades lacrymogènes dans le bâtiment.\nThe coral reef is the region's prime attraction.\tLe récif corallien est la principale attraction de la région.\nThe doctor advised him not to eat between meals.\tLe docteur lui a conseillé de ne pas manger entre les repas.\nThe doctor advised him to stop working too much.\tLe docteur lui a conseillé d'arrêter de travailler autant.\nThe doctor advised my father to give up smoking.\tLe médecin a conseillé à mon père d'arrêter de fumer.\nThe doctor told her that she should take a rest.\tLe docteur lui dit qu'elle devrait se reposer.\nThe doctor warned him of the dangers of smoking.\tLe médecin l'a averti des dangers de la cigarette.\nThe drunk driver had to spend the night in jail.\tLe conducteur en état d'ébriété dut passer la nuit en cellule.\nThe earliest civilizations arose in Mesopotamia.\tLes civilisations premières apparurent en Mésopotamie.\nThe explorers made their way through the jungle.\tLes explorateurs se ménagèrent un passage à travers la jungle.\nThe fact that I'm here proves that I'm innocent.\tLe fait d'être ici prouve mon innocence.\nThe fact that I'm here proves that I'm innocent.\tLe fait que je suis ici prouve que je suis innocent.\nThe flame flickered for a moment, then died out.\tLa flamme vacilla pendant un moment, puis mourut.\nThe gallows were already standing on the square.\tLa potence était déjà dressée sur la place.\nThe girl went to school in spite of her illness.\tLa jeune fille est allée à l'école bien qu'elle soit malade.\nThe girl who is dressed in white is my fiancée.\tLa jeune fille en blanc est ma fiancée.\nThe last part of the trip was across the desert.\tLa dernière partie de l'excursion fut un parcours à travers le désert.\nThe last part of the trip was across the desert.\tL'ultime étape du voyage fut un parcours à travers le désert.\nThe last time when I saw him, he was quite well.\tLa dernière fois que je l'ai vu, il allait assez bien.\nThe law will be effective from the 1st of April.\tLa loi entrera en vigueur à partir du 1er avril.\nThe majority of his income goes to pay his rent.\tL'essentiel de son revenu passe dans son loyer.\nThe man who I thought was my friend deceived me.\tL'homme que je pensais être mon ami m'a trompé.\nThe meeting was canceled because of the typhoon.\tLa réunion a été annulée à cause du typhon.\nThe military has a very strict chain of command.\tLes militaires ont une chaîne de commandement très stricte.\nThe minimum wage in Okinawa is 642 yen per hour.\tLe salaire horaire minimum à Okinawa est de 642 yens.\nThe moment she was alone, she opened the letter.\tAu moment où elle était seule, elle ouvrit la lettre.\nThe moment she was alone, she opened the letter.\tAussitôt qu'elle fut seule, elle ouvrit la lettre.\nThe money you give them will be put to good use.\tL'argent que vous leur donnez sera consacré à un bon usage.\nThe mother occasionally reread her son's letter.\tLa mère relisait parfois la lettre de son fils.\nThe mother occasionally reread her son's letter.\tLa mère relut parfois la lettre de son fils.\nThe old lady climbed the stairs with difficulty.\tLa vieille dame monta les escaliers avec difficulté.\nThe older we get, the weaker our memory becomes.\tPlus nous vieillissons, plus notre mémoire faiblit.\nThe older we get, the weaker our memory becomes.\tPlus nous vieillissons, plus notre mémoire s'affaiblit.\nThe older we grow, the more forgetful we become.\tPlus on devient vieux, plus on devient distrait.\nThe only way to know if it fits is to try it on.\tLe seul moyen de savoir si ça va est de l'essayer.\nThe pier took a real beating from the hurricane.\tLe quai a vraiment été battu par l'ouragan.\nThe pirates buried their treasure in the ground.\tLes pirates ont enfoui leur trésor sous terre.\nThe plane was delayed on account of bad weather.\tL'avion a été retardé à cause du mauvais temps.\nThe police accused her of texting while driving.\tLa police l'accusa d'échanger des textos en conduisant.\nThe police have few clues to go on in this case.\tLa police a peu d'indices sur cette affaire.\nThe police officer put handcuffs on the suspect.\tLa police mit les menottes au suspect.\nThe police officer put handcuffs on the suspect.\tLa police passa les menottes au suspect.\nThe police started to look into the murder case.\tLa police commença à enquêter sur l'affaire de meurtre.\nThe product of two negative numbers is positive.\tLe produit de deux nombres négatifs est positif.\nThe professor gave a lecture on the Middle East.\tLe professeur donna un cours sur le Moyen-Orient.\nThe questionnaire form was distributed properly.\tLe formulaire du questionnaire a été correctement distribué.\nThe rainy season begins towards the end of June.\tLa saison des pluies commence vers fin juin.\nThe rainy season begins towards the end of June.\tLa saison des pluies commence vers la fin du mois de juin.\nThe reports of my death are greatly exaggerated.\tLes compte-rendus de ma mort sont très exagérés.\nThe salesclerk will come to help you right away.\tLa vendeuse viendra vous aider tout de suite.\nThe scientist is famous both at home and abroad.\tCe scientifique est connu autant chez lui qu'à l'étranger.\nThe snow prevented the airplane from taking off.\tLa neige a empêché l'avion de décoller.\nThe soldiers on the boats would be easy targets.\tLes soldats sur les bateaux feraient des cibles faciles.\nThe sound of a gunshot echoed across the canyon.\tLe son d'une détonation résonna à travers la gorge.\nThe sound of a gunshot echoed across the canyon.\tLe son d'un coup de feu résonna à travers le défilé.\nThe stated price does not include labor charges.\tLe prix indiqué n'inclue pas la main d'œuvre.\nThe supermarket is open Monday through Saturday.\tLe supermarché est ouvert du lundi au samedi.\nThe surgeon forgot something inside the patient.\tLe chirurgien a oublié quelque chose à l'intérieur du patient.\nThe tall man wore a pink carnation in his lapel.\tL'homme de grande taille portait un œillet rose au revers.\nThe teacher has a great influence on his pupils.\tLe professeur a une grande influence sur ses élèves.\nThe teacher has a great influence on his pupils.\tLe professeur exerce une influence bénéfique sur ses élèves.\nThe teacher recommended that I read Shakespeare.\tLe professeur m'a recommandé de lire Shakespeare.\nThe teacher taught them that the earth is round.\tL'instituteur leur a enseigné que la Terre est ronde.\nThe thief was marched off to the police station.\tLe cambrioleur fut envoyé à la préfecture de police.\nThe three boys opened the doors of the building.\tLes trois garçons ouvrèrent les portes du bâtiment.\nThe time will come when you will know the truth.\tLe jour viendra où tu sauras la vérité.\nThe train for Birmingham leaves from platform 3.\tLe train pour Birmingham part du quai 3.\nThe train was delayed because of heavy snowfall.\tLe train fut retardé à cause des importantes chutes de neige.\nThe two men sitting on the bench were Americans.\tLes deux hommes assis sur le banc étaient américains.\nThe urban-renewal project is now well under way.\tLe projet de renouveau urbain est désormais bien en route.\nThe urban-renewal project is now well under way.\tLe projet de rénovation urbaine est désormais bien en route.\nThe urban-renewal project is now well under way.\tLe projet de renouveau urbain est désormais bien engagé.\nThe warranty doesn't cover normal wear and tear.\tLa garantie ne couvre pas l'usure normale.\nThe weather was not only cold, it was also damp.\tLe temps était non seulement froid, mais aussi humide.\nThe whereabouts of the suspect is still unknown.\tLe suspect n'a pas encore été localisé.\nThere are many Americans who can speak Japanese.\tIl existe de nombreux Américains qui peuvent parler le japonais.\nThere are many Japanese restaurants in New York.\tIl y a de nombreux restaurants japonais à New-York.\nThere are not enough chairs in the meeting room.\tIl n'y a pas assez de chaises dans la salle de réunion.\nThere are some people who think it's a bad idea.\tIl y a des gens qui pensent que c'est une mauvaise idée.\nThere have been many cases of cholera this year.\tIl y a eu beaucoup de cas de choléra cette année.\nThere is a white line in the middle of the road.\tIl y a une ligne blanche au milieu de la route.\nThere is little hope that she will come on time.\tIl y a un petit espoir qu'elle vienne à l'heure.\nThere is not much I can do to help, I am afraid.\tJe crains qu'il n'y ait pas grand-chose que je puisse faire pour aider.\nThere used to be some big trees around the pond.\tAvant, il y avait de grands arbres autour de l'étang.\nThere was a curtain which was covering the door.\tIl y avait un rideau qui cachait la porte.\nThere was no indication that anything was wrong.\tIl n'y avait aucune indication que quoi que ce soit clochait.\nThere was only a little milk left in the bottle.\tIl ne restait plus qu'un peu de lait dans la bouteille.\nThere's a lot of wind this morning, isn't there?\tIl y a beaucoup de vent ce matin, n'est-ce pas ?\nThere's a possibility that the man was murdered.\tIl est possible que l'homme a été assassiné.\nThere's a problem with the plane's landing gear.\tIl y a un problème avec le train d'atterrissage de l'avion.\nThese senseless killings will not go unpunished.\tCes massacres insensés ne resteront pas impunis.\nThey announced that they were getting a divorce.\tIls ont annoncé qu'ils allaient divorcer.\nThey announced that they were getting a divorce.\tIls annoncèrent qu'ils allaient divorcer.\nThey awarded her first prize at the flower show.\tIls lui remirent le premier prix au concours floral.\nThey couldn't find out why your car won't start.\tIls n'ont pu déterminer pourquoi ta voiture refuse de démarrer.\nThey found gunshot residue on the victim's hand.\tIls trouvèrent des résidus de coups de feu sur la main de la victime.\nThey found gunshot residue on the victim's hand.\tElles trouvèrent des résidus de coups de feu sur la main de la victime.\nThey look just like rats leaving a sinking ship.\tIls ont vraiment l'air de rats quittant un navire qui sombre.\nThey started to sell a new type of car in Tokyo.\tIls ont commercialisé un nouveau type de voiture à Tokyo.\nThey usually go to school from Monday to Friday.\tHabituellement, ils vont à l'école du lundi au vendredi.\nThey usually go to school from Monday to Friday.\tHabituellement, elles vont à l'école du lundi au vendredi.\nThis author is critical of the mainstream media.\tCet auteur est critique des média traditionnels.\nThis book deals with life in the United Kingdom.\tCe livre traite de la vie au Royaume-Uni.\nThis book deals with the invasion of the Romans.\tCe livre traite de l'invasion des Romains.\nThis book is way more interesting than that one.\tCe livre-ci est, de loin, plus intéressant que celui-là.\nThis car is my father's, but it'll soon be mine.\tCette voiture est à mon père, mais ce sera bientôt la mienne.\nThis is a lot harder than I thought it would be.\tC'est bien plus dur que je ne le pensais.\nThis is a problem you have to solve by yourself.\tC'est un problème que tu dois résoudre par toi-même.\nThis is just a symptom of a much bigger problem.\tCe n'est que le symptôme d'un problème bien plus grand.\nThis is the guide who took us around the castle.\tC'est le guide qui nous a montré le château-fort.\nThis is the longest novel that I have ever read.\tC'est le plus grand roman que j'ai jamais lu.\nThis is the longest novel that I have ever read.\tC'est le plus long roman que j'ai jamais lu.\nThis is the most comfortable chair in our house.\tC'est la chaise la plus confortable de notre maison.\nThis is the most enjoyable thing I've ever done.\tC'est la chose la plus plaisante que j'ai jamais faite.\nThis is the person I talked about the other day.\tC'est la personne dont j'ai parlé l'autre jour.\nThis is the same necklace that I lost yesterday.\tC'est le même collier que celui que j'ai perdu hier.\nThis picture reminds me of when I was a student.\tCette image me rappelle quand j'étais étudiant.\nThis problem may be solved in a variety of ways.\tCe problème peut être résolu de différentes manières.\nThis sentence seems to be grammatically correct.\tCette phrase semble être grammaticalement correcte.\nThose pants are a little too tight in the waist.\tCe pantalon est un peu trop serré à la taille.\nTo put it briefly, she turned down his proposal.\tPour faire court, elle a refusé sa demande en mariage.\nTo tell the truth, I've already seen that movie.\tÀ vrai dire, j'ai déjà vu ce film.\nTom and Mary don't like the same kind of movies.\tTom et Marie n'aiment pas le même genre de films.\nTom asked Mary to do that, so you don't have to.\tTom a demandé à Mary de faire cela, donc vous n'avez pas à le faire.\nTom asked Mary who had been the first to arrive.\tTom a demandé à Mary qui était arrivé en premier.\nTom broke the rules and was kicked off the team.\tTom a enfreint les règles et a été exclu de l'équipe.\nTom broke the rules and was kicked off the team.\tTom a enfreint les règles et a été expulsé de l'équipe.\nTom can reach me at this number any time of day.\tTom peut me joindre à ce numéro à tout moment de la journée.\nTom certainly doesn't seem to mind helping Mary.\tTom ne semble certainement pas penser à aider Mary.\nTom certainly doesn't seem to mind helping Mary.\til ne vient certainement pas à l'esprit de Tom d'aider Mary.\nTom claims he can accurately predict the future.\tTom prétend qu'il peut prédire avec précision l'avenir.\nTom clearly doesn't understand French very well.\tTom ne comprend manifestement pas très bien le français.\nTom didn't arrive until it was already too late.\tTom n'est arrivé que lorsqu'il était déjà trop tard.\nTom didn't get in until after 2:30 this morning.\tTom n'est rentré qu'après 02h30 ce matin.\nTom didn't know that Mary couldn't speak French.\tTom ignorait que Marie ne savait pas parler français.\nTom didn't want to go back to where he was born.\tTom ne voulait pas retourner là où il était né.\nTom doesn't have the will power to quit smoking.\tTom n'a pas la volonté d'arrêter de fumer.\nTom doesn't know where Mary usually goes skiing.\tTom ne sait pas où Marie a l'habitude d'aller skier.\nTom doesn't know where Mary usually goes skiing.\tTom ignore où Marie a l'habitude d'aller skier.\nTom doesn't often do his homework before dinner.\tTom ne fait pas souvent son travail avant le dîner.\nTom doesn't take very good care of his children.\tTom ne s'occupe pas très bien de ses enfants.\nTom expected Mary to believe everything he said.\tTom s'attendait à ce que Marie croie tout ce qu'il lui a dit.\nTom fell asleep and missed the end of the movie.\tTom s'est endormi et a raté la fin du film.\nTom fell asleep and missed the end of the movie.\tTom s'endormit et manqua la fin du film.\nTom got an emergency call and had to leave work.\tTom a reçu un appel urgent et a dû partir du travail.\nTom has a friend whose mother is a veterinarian.\tThomas a un ami dont la mère est vétérinaire.\nTom has been teaching me how to play the guitar.\tTom m'a appris à jouer de la guitare.\nTom has money. However, he's not all that happy.\tTom a de l'argent. Cependant, il n'est pas du tout heureux.\nTom is looking for a reasonably-priced used car.\tTom cherche une voiture d'occasion à prix raisonnable.\nTom is probably just a little younger than Mary.\tTom est probablement juste un peu plus jeune que Marie.\nTom isn't as busy this week as he was last week.\tTom n'est pas aussi occupé cette semaine que la semaine dernière.\nTom isn't the only one here who's a good singer.\tTom n'est pas le seul, ici, à bien chanter.\nTom knew Mary understood what they needed to do.\tTom savait que Mary comprenait ce qu'ils avaient besoin de faire.\nTom knew there wasn't much he could do about it.\tTom savait qu'il ne pouvait pas y faire grand chose.\nTom learned how to do that from his grandfather.\tTom a appris à faire ça avec son grand-père.\nTom lived the high life until the money ran out.\tTom avait la belle vie jusqu'à ce que l'argent s'épuise.\nTom may have been in Boston with Mary last week.\tTom a peut-être été à Boston avec Marie la semaine dernière.\nTom plays tennis after school three days a week.\tTom joue au tennis après l'école trois fois par semaine.\nTom pushed against the door with all his weight.\tTom s'appuya contre la porte avec tout son poids.\nTom said he wouldn't mind sleeping on the floor.\tTom a dit que ça ne le dérangerait pas de dormir par terre.\nTom says he thinks it's a waste of time to vote.\tTom dit qu'il pense que c'est une perte de temps de voter.\nTom thought that Mary was having money problems.\tTom pensait que Mary avait des problèmes d'argent.\nTom told me later that he wasn't really married.\tTom m'a dit plus tard qu'il n'était pas réellement marié.\nTom waited patiently for three hours, then left.\tTom attendit patiemment trois heures durant, puis renonça.\nTom wanted Mary to know that he didn't hate her.\tTom voulait que Mary sache qu'il ne la détestait pas.\nTom wanted Mary to tell him about her childhood.\tTom voulait que Marie lui parle de son enfance.\nTom was in almost every picture in Mary's album.\tTom était presque sur toutes les photos de l'album de Marie.\nTom won't be going camping with us this weekend.\tTom ne viendra pas camper avec nous ce week-end.\nTom's workstation is usually tidier than Mary's.\tLe poste de travail de Tom est généralement plus ordonné que celui de Marie.\nTraveling was much more difficult in those days.\tVoyager était alors beaucoup plus difficile.\nTrying to find happiness only makes you unhappy.\tEssayer de trouver le bonheur te rend seulement malheureux.\nTwo months have passed since he left for France.\tDeux mois ont passé depuis qu'il est parti pour la France.\nTwo months have passed since he left for France.\tDeux mois se sont déjà écoulés, depuis qu'il est parti pour la France.\nWe ate an early lunch while we were at the mall.\tNous avons déjeuné tôt pendant que nous étions à la galerie.\nWe ate an early lunch while we were at the mall.\tNous avons déjeuné tôt tandis que nous étions à la galerie.\nWe climbed up the mountain, but with difficulty.\tNous avons escaladé la montagne, non sans difficulté.\nWe discovered relics of an ancient civilization.\tNous avons découvert les vestiges d'une ancienne civilisation.\nWe have another ten miles to walk before sunset.\tNous devons encore marcher dix miles avant le coucher du soleil.\nWe have another ten miles to walk before sunset.\tNous devons encore marcher seize kilomètres avant le coucher du soleil.\nWe have little money available for the research.\tNous avons peu d'argent à disposition pour la recherche.\nWe have no choice but to give up the whole plan.\tNous n'avons d'autre choix que d'abandonner le projet dans son entier.\nWe have to find out why they want us to do this.\tNous devons découvrir pourquoi ils veulent que nous fassions cela.\nWe have to memorize this poem by the next class.\tNous devons mémoriser ce poème pour le prochain cours.\nWe have to take this problem into consideration.\tNous devons prendre ce problème en considération.\nWe haven't seen each other for such a long time.\tNous ne nous sommes pas vus depuis si longtemps.\nWe hope to reach the summit before it gets dark.\tNous espérons atteindre le sommet avant qu'il ne fasse sombre.\nWe must work hard to break down social barriers.\tNous devons travailler dur à abattre les barrières sociales.\nWe must, first of all, be careful of our health.\tNous devons, avant tout, faire attention à notre santé.\nWe often hear about an energy crisis these days.\tNous entendons souvent parler d'une crise de l'énergie, de nos jours.\nWe should not put restrictions on foreign trade.\tNous ne devrions pas imposer de restrictions au commerce extérieur.\nWe should write a formal letter to the director.\tNous devrions écrire une lettre formelle au directeur.\nWe talked about everything we could think about.\tNous avons parlé de tout ce qui nous passait par la tête.\nWe thought that we wouldn't be able to stop him.\tNous pensions que nous ne pourrions pas l'arrêter.\nWe used to go to the movies on Saturday evening.\tNous avions l'habitude d'aller au cinéma le samedi soir.\nWe were just about to leave when she telephoned.\tNous étions sur le point de partir quand elle a téléphoné.\nWe're in the process of remodelling our kitchen.\tNous sommes en train de réaménager notre cuisine.\nWhat I was looking for was right before my eyes.\tCe que je cherchais était précisément là sous mes yeux.\nWhat are some foods you only eat in the evening?\tQuels sont les aliments que tu ne consommes que le soir ?\nWhat are some foods you only eat in the evening?\tQuels sont les aliments que vous ne consommez que le soir ?\nWhat are some foods you only eat in the evening?\tQuels sont les aliments qu'on ne consomme que le soir ?\nWhat color are you going to paint Tom's bedroom?\tEn quelle couleur vas-tu peindre la chambre de Tom ?\nWhat did you say? Could you please say it again?\tQu'avez-vous dit ? Pouvez-vous le répéter ?\nWhat do firefighters do when there are no fires?\tQue font les pompiers en l'absence d'incendies ?\nWhat do you spend a majority of your time doing?\tÀ quoi passes-tu la plupart de ton temps ?\nWhat do you spend a majority of your time doing?\tÀ quoi passez-vous la plupart de votre temps ?\nWhat do your children usually eat for breakfast?\tQu'est-ce que vos enfants mangent d'habitude au petit-déjeuner ?\nWhat do your children usually eat for breakfast?\tQu'est-ce que tes enfants mangent d'habitude au petit-déjeuner ?\nWhat is the second largest country in the world?\tQuel est le deuxième plus grand pays du monde ?\nWhat kind of person would do that kind of thing?\tQuelle sorte de personne ferait cette sorte de chose ?\nWhat makes you think that Tom will listen to me?\tQu'est-ce qui te laisse croire que Tom m'écoutera ?\nWhat makes you think you won't be able to do it?\tQu'est-ce qui te fait croire que tu n'en seras pas capable ?\nWhat matters is whether you do your best or not.\tPeu importe que vous fassiez ou non de votre mieux.\nWhat should you do if you are bitten by a cobra?\tQue faire si vous avez été mordu par un cobra ?\nWhat were you dreaming about when I woke you up?\tDe quoi rêvais-tu lorsque je t'ai réveillé ?\nWhat were you dreaming about when I woke you up?\tDe quoi rêvais-tu lorsque je t'ai réveillée ?\nWhat you do is more important than what you say.\tCe que vous faites est plus important que ce que vous dites.\nWhat you have said applies only to single women.\tCe que vous avez dit ne s'applique qu'aux femmes célibataires.\nWhatever doesn't kill us only makes us stronger.\tTout ce qui ne nous tue pas ne fait que nous renforcer.\nWhen I painted this picture, I was 23 years old.\tQuand j'ai peint ce tableau, j'avais 23 ans.\nWhen asked how to do it, he said he didn't know.\tQuand on lui a demandé comment le faire, il a dit qu'il ne savait pas.\nWhen he retired, his son took over his business.\tQuand il partit à la retraite, son fils reprit son affaire.\nWhen he saw her letter, he felt somewhat uneasy.\tLorsqu'il vit sa lettre, il se sentit un peu mal à l'aise.\nWhen the bell rang, the teacher ended the class.\tLorsque la cloche retentit, l'instituteur termina le cours.\nWhere do you plan to go on vacation next summer?\tOù prévois-tu d'aller en vacances, l'été prochain ?\nWhere do you plan to go on vacation next summer?\tOù prévoyez-vous d'aller en vacances, l'été prochain ?\nWhere do you plan to go on vacation next summer?\tOù prévois-tu de te rendre en vacances, l'été prochain ?\nWhere do you plan to go on vacation next summer?\tOù prévoyez-vous de vous rendre en vacances, l'été prochain ?\nWhere do you suppose you'll spend your vacation?\tOù penses-tu que tu passeras tes congés ?\nWhile waiting for bus, I was caught in a shower.\tTandis que j'attendais le bus, j'ai été pris sous une averse.\nWhile you are reading to me, I can do my sewing.\tPendant que tu me fais la lecture, je peux coudre.\nWho was it that bought those pictures yesterday?\tQui était-ce qui a acheté ces photos, hier ?\nWho's that cute girl I saw you with at the mall?\tQui est cette mignonne fille avec laquelle je vous ai vu à la galerie commerciale ?\nWho's that cute girl I saw you with at the mall?\tQui est cette mignonne fille avec laquelle je t'ai vu à la galerie commerciale ?\nWho's that cute girl I saw you with at the mall?\tQui est cette mignonne fille avec laquelle je t'ai vue à la galerie commerciale ?\nWho's that cute girl I saw you with at the mall?\tQui est cette mignonne fille avec laquelle je vous ai vue à la galerie commerciale ?\nWho's that cute girl I saw you with at the mall?\tQui est cette mignonne fille avec laquelle je vous ai vus à la galerie commerciale ?\nWho's that cute girl I saw you with at the mall?\tQui est cette mignonne fille avec laquelle je vous ai vues à la galerie commerciale ?\nWho's to say it's not what's supposed to happen?\tQui pourra dire que ce n'est pas ce qui était supposé avoir lieu ?\nWho's to say it's not what's supposed to happen?\tQui pourra dire que ce n'est pas ce qui était supposé se passer ?\nWhy are conventional language classes so boring?\tPourquoi les cours de langues traditionnels sont-ils si ennuyeux ?\nWhy did you agree to spend the evening with Tom?\tPourquoi as-tu accepté de passer la soirée avec Tom ?\nWhy did you agree to spend the evening with Tom?\tPourquoi avez-vous accepté de passer la soirée avec Tom ?\nWhy do you think soccer isn't popular in the US?\tQue crois-tu qu'est la raison pour laquelle le football n'est pas aussi populaire aux États-Unis d'Amérique ?\nWhy does the US government let people have guns?\tPourquoi le gouvernement américain laisse-t-il les gens posséder des armes ?\nWhy don't we settle the matter once and for all?\tPourquoi ne pas régler le problème une fois pour toutes ?\nWhy don't you take a long walk off a short pier?\tPourquoi n'irais-tu pas te perdre quelque part ?\nWhy don't you tell me how you think it happened?\tPourquoi ne me dis-tu pas comment tu penses que ça s'est produit ?\nWhy don't you tell me how you think it happened?\tPourquoi ne me dis-tu pas comment tu penses que ça s'est passé ?\nWhy don't you tell me how you think it happened?\tPourquoi ne me dis-tu pas comment tu penses que c'est arrivé ?\nWhy don't you tell me how you think it happened?\tPourquoi ne me dites-vous pas comment vous pensez que c'est arrivé ?\nWhy don't you tell me how you think it happened?\tPourquoi ne me dites-vous pas comment vous pensez que ça s'est produit ?\nWhy don't you tell me how you think it happened?\tPourquoi ne me dites-vous pas comment vous pensez que ça a eu lieu ?\nWhy don't you tell me how you think it happened?\tPourquoi ne me dites-vous pas comment vous pensez que ça s'est passé ?\nWhy don't you tell me why you think it happened?\tPourquoi ne me dites-vous pas pourquoi vous pensez que c'est arrivé ?\nWhy don't you tell me why you think it happened?\tPourquoi ne me dis-tu pas pourquoi tu penses que c'est arrivé ?\nWill you exchange this sweater for a larger one?\tAllez-vous échanger ce tricot contre un plus large ?\nWith any luck, there will be no school tomorrow.\tAvec un peu de chance, il n'y aura pas d'école demain.\nWould it be OK if I discussed it with my family?\tEst-ce que ça irait si j'en discutais avec ma famille ?\nWould you be so kind as to open the door for me?\tAuriez-vous l'amabilité de m'ouvrir la porte ?\nWould you be willing to share your code with me?\tSeriez-vous disposé à partager votre code avec moi ?\nWould you be willing to share your code with me?\tSeriez-vous disposés à partager votre code avec moi ?\nWould you be willing to share your code with me?\tSeriez-vous disposées à partager votre code avec moi ?\nWould you be willing to share your code with me?\tSeriez-vous disposée à partager votre code avec moi ?\nWould you be willing to share your code with me?\tSerais-tu disposé à partager ton code avec moi ?\nWould you be willing to share your code with me?\tSerais-tu disposée à partager ton code avec moi ?\nWould you be willing to share your code with me?\tSerais-tu disposé à partager votre code avec moi ?\nWould you be willing to share your code with me?\tSerais-tu disposée à partager votre code avec moi ?\nWould you like to go out for a drink after work?\tÇa te dirait d'aller boire un verre après le travail ?\nWould you like to see your husband grow a beard?\tVoudriez-vous voir votre époux se laisser pousser la barbe ?\nWould you like to talk about what just happened?\tAimeriez-vous parler de ce qui vient de se produire ?\nWould you like to talk about what just happened?\tAimerais-tu parler de ce qui vient d'arriver ?\nWould you like to visit the White House someday?\tAimerais-tu visiter la Maison-Blanche un jour ?\nWould you like to visit the White House someday?\tAimeriez-vous visiter la Maison-Blanche un jour ?\nWould you mind carrying it up the stairs for me?\tVoudriez-vous le porter au haut de l'escalier pour moi ?\nYou are not allowed to turn left on this street.\tOn n'a pas le droit de tourner à gauche dans cette rue.\nYou burnt a hole in my coat with your cigarette.\tVous avez fait un trou dans mon manteau avec votre cigarette.\nYou can go from Washington to New York by train.\tVous pouvez aller de Washington à New York en train.\nYou can't just come here without an appointment.\tVous ne pouvez pas simplement venir ici sans rendez-vous.\nYou can't just come here without an appointment.\tTu ne peux pas simplement venir ici sans rendez-vous.\nYou can't just come here without an appointment.\tTu ne peux pas simplement te pointer ici sans rendez-vous.\nYou cannot kill yourself by holding your breath.\tTu ne peux pas te tuer en retenant ta respiration.\nYou gave Tom the money he asked for, didn't you?\tVous avez donné à Tom l'argent qu'il a demandé, n'est-ce pas ?\nYou have a choice of black tea, coffee, or milk.\tVous avez le choix entre du thé noir, du café ou du lait.\nYou look like you've just lost your best friend.\tOn dirait que tu viens de perdre ton meilleur ami.\nYou may catch sight of our house from the train.\tTu peux apercevoir notre maison du train.\nYou may catch sight of our house from the train.\tVous pouvez apercevoir notre maison du train.\nYou need another ten dollars to buy that camera.\tTu as encore besoin de dix dollars pour acheter cet appareil photo.\nYou should assume that Tom won't help us at all.\tTu devrais admettre que Tom ne nous aiderais pas du tout.\nYou should be careful in your choice of friends.\tTu devrais être circonspect dans le choix de tes amis.\nYou should have a doctor examine your condition.\tVous devriez vous faire examiner par un docteur.\nYou should have a doctor examine your condition.\tVous devriez voir un docteur.\nYou should have introduced yourself to the girl.\tTu aurais dû te présenter à la fille.\nYou should have refused such an unfair proposal.\tTu aurais dû refuser une proposition aussi injuste.\nYou should not despise a man because he is poor.\tTu ne devrais pas mépriser un homme parce qu'il est pauvre.\nYou should not despise a man because he is poor.\tVous ne devriez pas mépriser un homme parce qu'il est pauvre.\nYou should set a good example for your children.\tVous devriez montrer le bon exemple à vos enfants.\nYou should spend more time studying than you do.\tTu devrais passer plus de temps à étudier que tu ne le fais.\nYou should spend more time studying than you do.\tTu devrais passer davantage de temps à étudier que tu ne le fais.\nYou should spend more time studying than you do.\tVous devriez passer plus de temps à étudier que vous ne le faites.\nYou should spend more time studying than you do.\tVous devriez passer davantage de temps à étudier que vous ne le faites.\nYou shouldn't get near my dog while he's eating.\tVous ne devriez pas vous approcher de mon chien pendant qu'il mange.\nYou still haven't told me when you get off work.\tTu ne m'as toujours pas dit quand tu termines ton travail.\nYou still haven't told me when you get off work.\tVous ne m'avez toujours pas dit quand vous terminez votre travail.\nYou still haven't told me when you get off work.\tVous ne m'avez pas encore dit quand vous terminez votre travail.\nYou still haven't told me when you get off work.\tTu ne m'as pas encore dit quand tu termines ton travail.\nYou still haven't told me why you quit your job.\tTu ne m'as toujours pas dit pourquoi tu as démissionné de ce poste.\nYou thought I wouldn't come tonight, didn't you?\tTu te doutais que je ne viendrais pas cette nuit, pas vrai ?\nYou want answers to questions you shouldn't ask.\tVous voulez des réponses à des questions que vous ne devriez pas poser.\nYou were nodding off at times during my lecture.\tTu t'es assoupi de temps en temps pendant mon cours.\nYou were nodding off at times during my lecture.\tVous vous êtes assoupi, à certains moments au long de mon sermon.\nYou will be all right again in a couple of days.\tVous serez tout à fait remis dans quelques jours.\nYou will be all right again in a couple of days.\tVous serez tout à fait remise dans quelques jours.\nYou will be all right again in a couple of days.\tTu seras tout à fait remis dans quelques jours.\nYou will be all right again in a couple of days.\tTu seras tout à fait remise dans quelques jours.\nYou will be all right again in a couple of days.\tVous serez tout à fait remises dans quelques jours.\nYou will soon get accustomed to your new school.\tTu vas bientôt t'habituer à ta nouvelle école.\nYou will soon get accustomed to your new school.\tVous allez bientôt vous accoutumer à votre nouvelle école.\nYou will soon get used to the change of climate.\tTu vas bientôt t'habituer au changement de climat.\nYou won't even remember me a few years from now.\tTu ne te rappelleras même pas de moi d'ici quelques années.\nYou won't even remember me a few years from now.\tVous ne vous rappellerez même pas de moi d'ici quelques années.\nYou would have to practice the violin every day.\tTu devrais t'exercer au violon tous les jours.\nYou'd be surprised what you can learn in a week.\tTu serais surprise de ce que tu peux apprendre en une semaine.\nYou'd better sober up before the boss gets back.\tTu ferais mieux de te dégriser avant que le patron revienne.\nYou'll soon get accustomed to this cold weather.\tVous vous habituerez vite à ce temps froid.\nYou'll soon get accustomed to this cold weather.\tTu t'habitueras vite à ce temps froid.\nYou're not the only one who doesn't believe Tom.\tVous n'êtes pas la seule à ne pas croire Tom.\nYou're not the only one who doesn't believe Tom.\tVous n'êtes pas le seul à ne pas croire Tom.\nYou're not the only one who doesn't believe Tom.\tTu n'es pas la seule à ne pas croire Tom.\nYou're not the only one who doesn't believe Tom.\tTu n'es pas le seul à ne pas croire Tom.\nYou're the most incredible person I've ever met.\tVous êtes la personne la plus incroyable que j'aie jamais rencontrée.\nYou're the only person who shows me any respect.\tVous êtes la seule personne qui me témoigne un quelconque respect.\nYou're the only person who shows me any respect.\tVous êtes la seule personne à me témoigner un quelconque respect.\nYour singing puts professional singers to shame.\tVotre chant ferait pâlir un chanteur professionnel.\n\"Can I use your dictionary?\" \"Yes, here you are.\"\t« Puis-je utiliser votre dictionnaire ? » « Oui, je vous en prie. »\n\"May I help you?\" \"Yes, I'm looking for a dress.\"\t« Est-ce que je peux vous aider ? » « Oui, je cherche une robe. »\n\"When does he study?\" \"He studies before dinner.\"\t\"Quand étudie-t-il ?\" \"Il étudie avant le repas.\"\n\"Will you show me your ticket?\" \"Yes, of course.\"\t\"Pouvez-vous me montrer votre billet ?\" \"Oui, bien sûr.\"\n\"You've got a crush on this girl.\" \"No, I don't!\"\t« Tu en pinces pour cette fille. » « Non, c'est faux ! »\nA doctor told me that eating eggs was bad for me.\tUn docteur m'a dit que manger des œufs était mauvais pour ma santé.\nA good night's sleep will do you a world of good.\tUne bonne nuit de sommeil te fera un bien fou.\nA good night's sleep will do you a world of good.\tUne bonne nuit de sommeil vous fera un bien fou.\nA leap year has three hundred and sixty-six days.\tUne année bissextile a trois cent soixante-six jours.\nA leap year has three hundred and sixty-six days.\tUne année bissextile compte trois cent soixante-six jours.\nA long piece of thread easily becomes tangled up.\tUn long fil s'emmêle facilement.\nA lot of passengers were injured in the accident.\tBeaucoup de passagers furent blessés dans l'accident.\nA man who smacks his wife around is contemptible.\tUn homme qui bat sa femme est méprisable.\nA monument was erected in memory of the deceased.\tUn monument a été érigé à la mémoire des défunts.\nA monument was erected in memory of the deceased.\tUn monument a été érigé à la mémoire du défunt.\nA monument was erected in memory of the deceased.\tUn monument a été érigé à la mémoire de la défunte.\nA number of cars are parked in front of my house.\tPlusieurs voitures sont garées devant chez moi.\nA portrait of an old man was hanging on the wall.\tLe portrait d’un vieil homme était accroché au mur.\nA sneeze leaves your body at forty miles an hour.\tUn éternuement est expulsé de notre corps à soixante kilomètres heure.\nA trip to Hawaii will cost you about 200 dollars.\tUn voyage à Hawaii coûte environ 200 dollars.\nAccording to the newspaper, he committed suicide.\tSelon les journaux, il s'est suicidé.\nActually, I don't like the way your hair is done.\tEn réalité, je n'aime pas ta coiffure.\nAfter the rain, there were puddles on the street.\tAprès la pluie il y avait des flaques d'eau sur la route.\nAfter you have read it, give the book back to me.\tAprès l'avoir lu, rends-moi le livre.\nAgainst all expectations, we became good friends.\tContre toute attente, nous devînmes amis.\nAgainst all expectations, we became good friends.\tContre toute attente, nous devînmes amies.\nAgainst all expectations, we became good friends.\tContre toute attente, nous sommes devenus amis.\nAgainst all expectations, we became good friends.\tContre toute attente, nous sommes devenues amies.\nAgainst the snow, the white rabbit was invisible.\tAu milieu de la neige le lapin blanc était invisible.\nAll that you have to do is to wait for his reply.\tTout ce que tu as à faire c'est attendre sa réponse.\nAll the goods for sale are set out on the tables.\tToutes les marchandises en vente étaient étalées sur les tables.\nAll the money put together still won't be enough.\tTout l'argent réuni ne suffira pas.\nAll the money spent, we started looking for work.\tUne fois tout l'argent dépensé, on commença à chercher du travail.\nAll things considered, she is a fairly good wife.\tEn prenant tout en considération, elle est une assez bonne épouse.\nAll this bickering is starting to fray my nerves.\tToutes ces querelles m'usent les nerfs.\nAnd with that we finish the activities for today.\tNous terminons ainsi les activités d'aujourd'hui.\nAnything that is too stupid to be spoken is sung.\tTout ce qui est trop stupide pour être dit est chanté.\nAnything the group decides is OK is fine with me.\tQuoi que le groupe approuve me va bien.\nAnything you're good at contributes to happiness.\tN'importe quoi auquel vous êtes bon contribue au bonheur.\nAnything you're good at contributes to happiness.\tN'importe quoi auquel tu es bon contribue au bonheur.\nAnything you're good at contributes to happiness.\tN'importe quoi auquel on est bon contribue au bonheur.\nApparently, the murder happened in a locked room.\tApparemment, le meurtre a eu lieu en chambre close.\nAre you doing something special on your birthday?\tFaites-vous quelque chose de spécial pour votre anniversaire ?\nAre you doing something special on your birthday?\tFais-tu quelque chose de spécial pour ton anniversaire ?\nAre you going to do your homework this afternoon?\tVas-tu faire tes devoirs cet après-midi ?\nAre you seriously thinking about eating all that?\tEnvisages-tu sérieusement d'ingurgiter tout ça ?\nAre you suggesting that we impersonate policemen?\tEs-tu en train de suggérer que nous nous fassions passer pour des agents de police ?\nAre you suggesting that we impersonate policemen?\tÊtes-vous en train de suggérer que nous nous fassions passer pour des policiers ?\nAre you sure that you haven't forgotten anything?\tEs-tu sûr de n'avoir rien oublié ?\nAre you sure that you haven't forgotten anything?\tEs-tu sûre de n'avoir rien oublié ?\nAre you sure that you haven't forgotten anything?\tÊtes-vous sûr de n'avoir rien oublié ?\nAre you sure that you haven't forgotten anything?\tÊtes-vous sûre de n'avoir rien oublié ?\nAre you sure that you haven't forgotten anything?\tÊtes-vous sûrs de n'avoir rien oublié ?\nAre you sure that you haven't forgotten anything?\tÊtes-vous sûres de n'avoir rien oublié ?\nArmies invaded and conquered the enemy territory.\tLes armées envahissaient et conquéraient le territoire ennemi.\nAs soon as I get to London, I'll drop you a line.\tAussitôt que j'arrive à Londres, je te laisserai un mot.\nAs soon as she wakes up, we'll turn on the music.\tDès qu'elle sera réveillée, nous mettrons la musique.\nAt any rate, I must finish this work by tomorrow.\tEn tout état de cause, je dois finir ce travail pour demain.\nBe it ever so humble, there's no place like home.\tOn n'est jamais aussi bien que chez soi.\nBelieve me when I tell you that I don't love you.\tCrois-moi quand je te dis que je ne t'aime pas.\nBradford is arguably the ugliest town in Britain.\tBradford est prétendument la ville la plus laide de Grande-Bretagne.\nCambodia appealed to the United Nations for help.\tLe Cambodge a demandé de l'aide aux Nations Unies.\nCan anyone vouch for your whereabouts last night?\tQuelqu'un peut-il se porter garant de votre localisation hier soir ?\nCan you give me a geological explanation of lava?\tPeux-tu me donner une explication de nature géologique concernant la lave ?\nCan you understand the meaning of this paragraph?\tPouvez-vous comprendre la signification de ce paragraphe ?\nCan you understand the meaning of this paragraph?\tPeux-tu comprendre le sens de ce paragraphe ?\nChildren under three are admitted free of charge.\tL'entrée est gratuite pour les enfants de moins de trois ans.\nClose the door after you when you leave the room.\tFermez la porte derrière vous quand vous quittez la pièce.\nCome closer and have a good look at this picture.\tApproche-toi et regarde bien cette image.\nCost is a definite factor in making our decision.\tLe coût est un facteur décisif dans la décision que nous avons prise.\nCould we have a table in the non-smoking section?\tPourrions-nous avoir une table dans le coin non-fumeur ?\nCould you rewrite this sentence. It is not clear.\tPourrais-tu réécrire cette phrase ? Elle n'est pas claire.\nCustomer satisfaction is our number one priority.\tLa satisfaction client est notre priorité numéro un.\nDespite all his setbacks, he remains an optimist.\tMalgré tous ses revers, il reste optimiste.\nDespite all his setbacks, he remains an optimist.\tMalgré tous ses revers, il demeure optimiste.\nDid she go to the station to see her teacher off?\tS'est-elle rendue à la gare pour faire ses adieux à son professeur ?\nDo you ever think before you open your big mouth?\tNe réfléchis-tu jamais avant d'ouvrir ta grande gueule ?\nDo you have any idea how stupid I feel right now?\tAs-tu la moindre idée de combien je me sens désormais idiote ?\nDo you have any other questions about the matter?\tAvez-vous d'autres questions sur le sujet ?\nDo you have any other questions about the matter?\tAs-tu d'autres questions sur le sujet ?\nDo you have something that you want to say to me?\tVous avez quelque chose à me dire ?\nDo you really hide your money under the mattress?\tCaches-tu vraiment ton argent sous le matelas ?\nDo you really want to put your life in her hands?\tEs-tu sûr de vouloir mettre ta vie entre ses mains ?\nDo you really want to put your life in her hands?\tÊtes-vous sûr de vouloir mettre votre vie entre ses mains ?\nDo you remember the day when we saw the accident?\tTe souviens-tu du jour où nous avons vu l'accident ?\nDo you think this jelly's firm enough to eat yet?\tNe crois-tu pas que cette gelée est déjà suffisamment ferme pour être mangée ?\nDo you think we should import rice from the U.S.?\tPensez-vous que nous devrions importer du riz des États-Unis ?\nDo you want to spend the rest of your life alone?\tVeux-tu passer seul le reste de ta vie ?\nDo you want to spend the rest of your life alone?\tVeux-tu passer seule le reste de ta vie ?\nDo you want to spend the rest of your life alone?\tVoulez-vous passer seul le reste de votre vie ?\nDo you want to spend the rest of your life alone?\tVoulez-vous passer seule le reste de votre vie ?\nDoes a child's musical talent depend on heredity?\tLe talent d'un enfant pour la musique repose-t-il sur l'hérédité ?\nDon't forget to pick me up at 6 o'clock tomorrow.\tN'oubliez pas de me prendre à six heures demain.\nDon't forget to pick me up at 6 o'clock tomorrow.\tN'oublie pas de venir me chercher à 6 heures demain.\nDon't let anything stand between you and success.\tNe laissez rien s'interposer entre vous et le succès.\nDon't let anything stand between you and success.\tNe laisse rien s'interposer entre toi et le succès.\nDon't let the children monopolize the television.\tNe laisse pas les enfants monopoliser la télévision.\nDon't waste your time in a dead-end relationship.\tNe perds pas ton temps dans une relation vouée à l'échec.\nDon't you know that he passed away two years ago?\tVous ne saviez pas qu'il est mort il y a deux ans ?\nDon't you smell something burning in the kitchen?\tNe sentez-vous pas quelque chose qui brûle dans la cuisine ?\nDon't you smell something burning in the kitchen?\tNe sens-tu pas quelque chose qui brûle dans la cuisine ?\nDon't you think most Japanese students work hard?\tNe pensez-vous pas que la plupart des étudiants japonais travaillent dur ?\nDue to the fog, traffic is temporarily suspended.\tPour cause de brouillard, la circulation est temporairement suspendue.\nDuring the rush hours in Tokyo, traffic is heavy.\tPendant l'heure de pointe, la circulation à Tokyo est dense.\nEach time I went to see him, I found him at work.\tChaque fois que je suis venu le voir, je l'ai trouvé au travail.\nElephants are the world’s largest land animals.\tLes éléphants sont les animaux terrestres les plus gros du monde.\nEven God cannot make two times two not make four.\tMême Dieu ne peut pas faire que deux fois deux ne fassent pas quatre.\nEven wounds that have healed, leave scars behind.\tMême les blessures qui sont guéries laissent des cicatrices derrière elles.\nEverybody is supposed to wear a tie at the party.\tTout le monde est censé porter une cravate à cette soirée.\nEveryone is entitled to be moody once in a while.\tTout le monde a le droit d'être de mauvaise humeur une fois de temps en temps.\nEveryone is looking forward to watching the game.\tTous se réjouissent de voir la partie.\nEveryone should be able to express their opinion.\tTout le monde doit pouvoir exprimer son opinion.\nEverywhere you look you can see children playing.\tOù que tu regardes, tu peux voir des enfants jouer.\nEverywhere you look you can see children playing.\tOù que vous regardiez, vous pouvez voir des enfants jouer.\nExcept for leap years, February has only 28 days.\tEn dehors des années bissextiles, février ne compte que vingt-huit jours.\nFar from being a failure, it was a great success.\tLoin d'être un échec, c'était un énorme succès.\nFewer young people know how to write in longhand.\tDe moins en moins de jeunes savent écrire en écriture cursive.\nFewer young people know how to write in longhand.\tMoins de jeunes savent écrire en cursive.\nFish can be dry and tasteless if it's overcooked.\tLe poisson, s'il est trop cuit, peut être sec et dénué de goût.\nFood and blankets were given out to the refugees.\tDe la nourriture et des couvertures ont été données aux réfugiés.\nFood must be chewed well to be digested properly.\tLa nourriture doit être bien mastiquée pour être digérée correctement.\nForests cover around 9.4% of the earth's surface.\tLes forêts recouvrent environ 9,4% de la surface terrestre.\nFour percent inflation is forecast for this year.\tOn a prévu quatre pour cent d'inflation pour cette année.\nFull body scanners were installed at the airport.\tDes scanners corporels intégraux ont été installés à l'aéroport.\nFur provides animals protection against the cold.\tLa fourrure fournit aux animaux une protection contre le froid.\nGenerally speaking, the climate of Japan is mild.\tDe façon générale, le climat du Japon est plutôt doux.\nGenerally speaking, the climate of Japan is mild.\tDans l'ensemble, le Japon a un climat doux.\nGet a move on kids or you'll miss the school bus.\tAllons-y les enfants ou vous allez manquer le car scolaire.\nGive your passport number and your date of birth.\tDonne ton numéro de passeport et ta date de naissance.\nHad he been there, would you have wanted to come?\tS'il avait été là, aurais-tu voulu venir ?\nHalf of the world’s population lives in cities.\tLa moitié de la population mondiale vit en ville.\nHave you finished your preparations for the trip?\tAvez-vous terminé vos préparatifs pour le voyage ?\nHave you gotten used to eating Japanese food yet?\tT'es-tu enfin accoutumé à consommer de la nourriture japonaise ?\nHave you gotten used to eating Japanese food yet?\tT'es-tu enfin accoutumée à consommer de la nourriture japonaise ?\nHave you gotten used to eating Japanese food yet?\tVous êtes-vous enfin accoutumé à consommer de la nourriture japonaise ?\nHave you gotten used to eating Japanese food yet?\tVous êtes-vous enfin accoutumée à consommer de la nourriture japonaise ?\nHave you gotten used to eating Japanese food yet?\tVous êtes-vous enfin accoutumés à consommer de la nourriture japonaise ?\nHave you gotten used to eating Japanese food yet?\tVous êtes-vous enfin accoutumées à consommer de la nourriture japonaise ?\nHave you told everyone where the meeting will be?\tAs-tu annoncé à tout le monde où la réunion se tiendra ?\nHave you told everyone where the meeting will be?\tAvez-vous annoncé à tout le monde où la réunion se tiendra ?\nHe always leaves the window open while he sleeps.\tIl laisse toujours la fenêtre ouverte quand il dort.\nHe always leaves the window open while he sleeps.\tIl laisse toujours la fenêtre ouverte lorsqu'il dort.\nHe always speaks of the government with contempt.\tIl parle toujours du gouvernement avec mépris.\nHe asked me if I had slept well the night before.\tIl me demanda si j'avais bien dormi la nuit précédente.\nHe began to work to get Congress to reduce taxes.\tIl s'est mis à œuvrer afin que le Congrès réduise les impôts.\nHe began to work to get Congress to reduce taxes.\tIl se mit à œuvrer afin que le Congrès réduisît les impôts.\nHe calculated that it would cost him 100 dollars.\tIl calcula que cela lui coûterait 100 dollars.\nHe commanded me to leave the bedroom immediately.\tIl m'ordonna de quitter la chambre immédiatement.\nHe contracted malaria while living in the jungle.\tIl contracta la malaria, tandis qu'il vivait dans la jungle.\nHe couldn't get his ideas across to the students.\tIl était incapable de faire passer ses idées aux étudiants.\nHe criticized the war after leaving the military.\tIl critiqua la guerre après avoir quitté les armes.\nHe did not believe anyone had the right to do so.\tIl ne crut pas que quiconque eut le droit de le faire.\nHe died a few days before his hundredth birthday.\tIl mourut quelques jours avant son centenaire.\nHe doesn't know how to write a letter in English.\tIl ne connaît pas la façon d'écrire une lettre en anglais.\nHe doesn't mean to be mean. It's just his nature.\tIl n'est pas intentionnellement cruel. C'est juste sa nature.\nHe drank a cup of tea and then asked for another.\tIl but un tasse de thé et en demanda une autre.\nHe expected that their talk was going to be long.\tIl s'attendait à ce que la conversation dure longtemps.\nHe gave us an essay to write during the vacation.\tIl nous a donné une rédaction à écrire pour les vacances.\nHe gets really testy when he doesn't get his way.\tIl devient vraiment irritable quand il n'obtient pas ce qu'il veut.\nHe got up early so he'd be in time for the train.\tIl se leva tôt de manière à être à l'heure pour le train.\nHe had not even spoken to the president about it.\tIl n'en avait pas même parlé au président.\nHe had words with his friend and then struck him.\tIl eut des mots avec son ami et le frappa alors.\nHe hadn't eaten all day long and was very hungry.\tIl n'avait pas mangé de la journée et était affamé.\nHe has a sufficient income to support his family.\tIl a des revenus suffisants pour subvenir aux besoins de sa famille.\nHe has friends from many different walks of life.\tIl a des amis de nombreuses professions différentes.\nHe has retired, but he is still an actual leader.\tIl a pris sa retraite, mais c'est encore lui le vrai dirigeant.\nHe has something to do with the traffic accident.\tIl est impliqué dans l'accident de la route.\nHe has the habit of standing up when he is angry.\tIl a l'habitude de se lever lorsqu'il est en colère.\nHe hurried up so that he wouldn't miss the train.\tIl se pressa pour ne pas rater le train.\nHe is carrying out experiments in his laboratory.\tIl entreprend des expériences dans son laboratoire.\nHe is considered the prime suspect by the police.\tIl est considéré comme le suspect numéro un par la police.\nHe is our teacher and a person we should respect.\tC'est notre professeur et il faut respecter sa personne.\nHe is very friendly, so I enjoy working with him.\tIl est très sympathique, donc j'aime bien travailler avec lui.\nHe is working as a security guard at a warehouse.\tIl travaille comme gardien dans un entrepôt.\nHe kept his sense of humor until the day he died.\tIl a conservé son sens de l'humour jusqu'au jour où il est mort.\nHe leaned over her and said, \"No, I'm not lying.\"\tIl se pencha au-dessus d'elle et dit : « Non, je ne mens pas. »\nHe looked calm, but actually he was very nervous.\tIl avait l'air calme, mais en réalité, il était très nerveux.\nHe lost hope and killed himself by taking poison.\tIl a perdu espoir et s'est suicidé en prenant du poison.\nHe negotiated a free trade agreement with Canada.\tIl a négocié un accord de libre-échange avec le Canada.\nHe never goes out fishing without taking his son.\tIl ne part jamais à la pêcher sans amener son fils avec lui.\nHe once knew her, but they are no longer friends.\tIl la connut par le passé, mais à présent ils ne sont plus amis.\nHe referred to his past experience in his speech.\tIl se référa à son expérience passée dans son discours.\nHe returned home for the first time in ten years.\tIl revint chez lui pour la première fois en dix ans.\nHe returned home for the first time in ten years.\tIl est retourné chez lui pour la première fois en dix ans.\nHe said he did not know the man, which was a lie.\tIl a dit qu'il ne connaissait pas cet homme, ce qui était un mensonge.\nHe said he did not know the man, which was a lie.\tIl dit qu'il ne connaissait pas l'homme, ce qui était un mensonge.\nHe said that if he were there, he would help her.\tIl a dit que s'il était là, il l'aiderait.\nHe should apologize for being rude to the guests.\tIl devrait s'excuser d'avoir été impoli avec les invités.\nHe sits in this chair when he watches television.\tIl est assis dans cette chaise quand il regarde la télévision.\nHe spends all his time chatting online on Jabber.\tIl passe tout son temps à discuter en ligne sur Jabber.\nHe squashed the insect with the heel of his foot.\tIl écrasa l'insecte du talon.\nHe started learning English at the age of eleven.\tIl commença à apprendre l'anglais à l'âge de onze ans.\nHe thanked the host for the very enjoyable party.\tIl remercia l'hôte pour la très divertissante fête.\nHe tried to make his wife happy, but he couldn't.\tIl essaya de rendre sa femme heureuse, mais il n'y parvint pas.\nHe tried to make his wife happy, but he couldn't.\tIl a essayé de rendre sa femme heureuse, mais il n'y est pas parvenu.\nHe was determined to finish the work at any cost.\tIl était déterminé à finir le travail à n'importe quel prix.\nHe was smiling as if nothing had happened to him.\tIl souriait comme si rien ne lui était arrivé.\nHe was still alive when the rescue party arrived.\tIl est resté en vie quand l'équipe de secours est arrivée.\nHe was surprised at the long-distance phone bill.\tIl a été surpris de la facture téléphonique pour l'appel longue distance.\nHe was writing a letter while listening to music.\tIl écrivait une lettre en écoutant de la musique.\nHe wasn't earning a large salary when he retired.\tIl ne gagnait pas un gros salaire lorsqu'il prit sa retraite.\nHe went on to demonstrate how to use the machine.\tIl poursuivit sa démonstration de l'utilisation de la machine.\nHe went to New York as soon as he got the letter.\tIl est allé à New York aussitôt qu'il a eu la lettre.\nHe will have been working for five hours by noon.\tÀ midi, il aura travaillé cinq heures déjà.\nHe will make a business trip to London next week.\tIl ira en voyage d'affaire à Londres la semaine prochaine.\nHe wondered to himself why his wife had left him.\tIl se demanda pourquoi sa femme l'avait quitté.\nHe would often come to see us when I was a child.\tIl nous rendait souvent visite lorsque j'étais petit.\nHe would sit for hours reading detective stories.\tIl s'assiérait des heures à lire des histoires de détectives.\nHe wrote her a long letter, which he didn't mail.\tIl lui a écrit une longue lettre qu'il n'a pas envoyée.\nHe zones out in front of the TV for hours on end.\tIl traîne sans arrêt devant la télé pendant des heures.\nHe's not smart enough to add numbers in his head.\tIl n'a pas assez de cervelle pour faire des additions de tête.\nHe's nothing special. Just another working stiff.\tIl n'est rien en particulier. Juste un employé comme les autres.\nHer birthday party will be held tomorrow evening.\tSa fête d'anniversaire se tiendra demain soir.\nHer hopes were dashed when she heard the verdict.\tSes espoirs furent réduits à néant lorsqu'elle entendit le verdict.\nHere is a list of things you should avoid eating.\tVoici une liste de choses que vous devriez éviter de manger.\nHere is a list of things you should avoid eating.\tVoici une liste de choses que tu devrais éviter de manger.\nHere. Take this with you. It might come in handy.\tVoici. Prends ceci avec toi. Ça pourrait t'être utile.\nHere. Take this with you. It might come in handy.\tVoici. Prenez ceci avec vous. Ça pourrait vous être utile.\nHey man, take it easy. I'm just messing with you.\tHé vieux, le prends pas mal. Je te taquine juste.\nHis birthday just happens to be the same as mine.\tIl se trouve que son anniversaire tombe le même jour que moi.\nHis birthday just happens to be the same as mine.\tSon anniversaire tombe justement le même jour que le mien.\nHis family dates back to the seventeenth century.\tSa famille remonte au dix-septième siècle.\nHis older sister is older than my oldest brother.\tSa sœur ainée est plus âgée que mon frère ainé le plus âgé.\nHis salary is double what it was seven years ago.\tSon salaire est le double de ce qu'il était il y a sept ans.\nHow about starting again from the very beginning?\tQue dis-tu de recommencer depuis le tout début ?\nHow about starting again from the very beginning?\tQue dis-tu de reprendre depuis le tout début ?\nHow about starting again from the very beginning?\tQue dites-vous de recommencer depuis le tout début ?\nHow about starting again from the very beginning?\tQue dites-vous de reprendre depuis le tout début ?\nHow come you know so much about Japanese history?\tComment se fait-il que tu en saches autant sur l'histoire du Japon ?\nHow did you reach such an interesting conclusion?\tComment êtes-vous parvenu à une conclusion si intéressante ?\nHow did you reach such an interesting conclusion?\tComment êtes-vous parvenue à une conclusion si intéressante ?\nHow did you reach such an interesting conclusion?\tComment êtes-vous parvenus à une conclusion si intéressante ?\nHow did you reach such an interesting conclusion?\tComment êtes-vous parvenues à une conclusion si intéressante ?\nHow did you reach such an interesting conclusion?\tComment es-tu parvenu à une conclusion si intéressante ?\nHow did you reach such an interesting conclusion?\tComment es-tu parvenue à une conclusion si intéressante ?\nHow many books do you think you have read so far?\tCombien de livres penses-tu avoir lu jusqu'à maintenant ?\nHow many books do you think you have read so far?\tCombien de livres crois-tu que tu as lus jusqu'à présent ?\nHow many hotels do you think there are in Boston?\tCombien d'hôtels penses-tu qu'il y a à Boston ?\nHow many hotels do you think there are in Boston?\tCombien d'hôtels pensez-vous qu'il y ait à Boston ?\nHow many hours a day do you spend in your office?\tCombien d'heures quotidiennes passez-vous dans votre bureau ?\nHow many hours a day do you spend in your office?\tCombien d'heures quotidiennes passes-tu dans ton bureau ?\nHow many years did it take to build the pyramids?\tCombien d'années cela a-t-il pris de construire les pyramides ?\nHow much longer do you suggest we devote to this?\tCombien de temps supplémentaire suggérez-vous que nous consacrions à ceci ?\nHundreds of thousands of people were out of work.\tDes centaines de milliers de personnes étaient sans emploi.\nHurry up, or you will be late for the last train.\tDépêchez-vous, ou vous serez en retard pour le dernier train.\nI admit this may not be the best way of doing it.\tJ'admets que ce n'est peut-être pas le meilleur moyen de le faire.\nI admit, I'm not the tidiest person in the world.\tJ'admets, je ne suis pas la personne la plus ordonnée du monde.\nI advised him not to spend all his money on food.\tJe lui ai conseillé de ne pas dépenser tout son argent en nourriture.\nI always carry a bottle of mineral water with me.\tJ'ai tout le temps une bouteille d'eau minérale sur moi.\nI always thought that Tom would become a teacher.\tJ'ai toujours pensé que Tom deviendrait professeur.\nI am counting on you to give the opening address.\tJe compte sur vous pour prononcer le discours inaugural.\nI am having trouble with one thing after another.\tJ'ai des problèmes avec une chose après l'autre.\nI am not accustomed to making speeches in public.\tJe ne suis pas habitué à discourir en public.\nI asked Tom if he knew anybody who taught French.\tJ'ai demandé à Tom s'il connaissait quelqu'un qui enseignait le français.\nI ate lunch at around eleven because I was hungry\tJ'ai déjeuné vers onze heures parce que j'avais faim.\nI believe it's my duty to protect these children.\tJe crois qu'il est de mon devoir de protéger ces enfants.\nI borrowed the screwdriver from a friend of mine.\tJ'ai emprunté le tournevis à l'un de mes amis.\nI called my friend after arriving at the station.\tUne fois arrivé à la station, j’ai appelé mon ami.\nI can understand why you don't want to eat there.\tJe peux comprendre pourquoi vous ne voulez pas manger là.\nI can understand why you don't want to eat there.\tJe peux comprendre pourquoi vous ne voulez pas y manger.\nI can understand why you don't want to eat there.\tJe peux comprendre pourquoi tu ne veux pas manger là.\nI can understand why you don't want to eat there.\tJe peux comprendre pourquoi tu ne veux pas y manger.\nI can't bear the thought of her with another man.\tJe ne supporte pas l'idée d'elle avec un autre homme.\nI can't explain the difference between those two.\tJe ne peux expliquer la différence entre les deux.\nI can't explain the difference between those two.\tJe ne peux expliquer la différence entre ces deux-là.\nI can't figure out why nobody comes here anymore.\tJe ne comprends pas pourquoi personne ne vient plus ici.\nI can't get at the exact meaning of the sentence.\tJe ne peux connaître le sens exact de cette peine.\nI can't help feeling something's not quite right.\tJe ne peux pas m'empêcher d'avoir le sentiment que quelque chose cloche.\nI can't help feeling something's not quite right.\tJe ne peux m'empêcher d'avoir le sentiment que quelque chose cloche.\nI can't necessarily agree with you on that point.\tJe ne suis pas forcément d'accord avec vous sur ce point.\nI can't say I share your enthusiasm for the idea.\tJe ne peux pas dire que je partage votre enthousiasme pour cette idée.\nI can't tell you how much I appreciate your help.\tJe ne peux pas te dire combien j'apprécie ton aide.\nI can't tell you how much I appreciate your help.\tJe ne peux pas te dire combien je te suis reconnaissant pour ton aide.\nI can't tell you how much I appreciate your help.\tJe ne peux pas vous dire combien j'apprécie votre aide.\nI can't tell you how much I appreciate your help.\tJe ne peux pas vous dire combien je vous suis reconnaissant pour votre aide.\nI can't thank you enough for what you did for me.\tJe ne saurais vous remercier assez pour ce que vous avez fait pour moi.\nI can't turn it on, because the switch is broken.\tJe ne peux pas l'allumer parce que l'interrupteur est cassé.\nI could not catch as many fish as I had expected.\tJe n'ai pas pu pêcher autant de poissons que je ne le pensais.\nI couldn't help laughing when I heard that story.\tJe ne pus m'empêcher de rire lorsque j'entendis cette histoire.\nI couldn't help laughing when I heard that story.\tJe n'ai pas pu m'empêcher de rire lorsque j'ai entendu cette histoire.\nI cut my finger while trying to open the package.\tJe me suis coupé le doigt en tentant d'ouvrir le colis.\nI didn't get a chance to introduce myself to her.\tJe n'ai pas eu l'occasion de me présenter à elle.\nI didn't get a chance to introduce myself to her.\tJe n'eus pas l'occasion de me présenter à elle.\nI don't agree with segregation of people by race.\tJe suis contre la ségrégation raciale.\nI don't care what color ink, just bring me a pen.\tLa couleur m'est indifférente, apporte-moi juste un stylo.\nI don't have a prejudice against foreign workers.\tJe n'ai pas de préjugé contre les travailleurs étrangers.\nI don't have time to help you with your homework.\tJe n'ai pas le temps pour t'aider dans tes devoirs.\nI don't have to do that if I don't want to, do I?\tJe n'ai pas à faire cela si je ne le veux pas, si ?\nI don't know what to say to make you feel better.\tJe ne sais pas quoi dire pour te consoler.\nI don't know whether Tom still lives here or not.\tJe ne sais pas si Tom vit encore ici ou pas.\nI don't know whether Tom still lives here or not.\tJ'ignore si Tom vit encore ici ou non.\nI don't know whether Tom still lives here or not.\tJ'ignore si Tom vit encore ici ou pas.\nI don't know whether Tom still lives here or not.\tJe ne sais pas si Tom vit encore ici ou non.\nI don't think anyone really expected you to help.\tJe ne pense pas que quiconque ne s'attendait à ce que tu donnes un coup de main.\nI don't think anyone really expected you to help.\tJe ne pense pas que quiconque ne s'attendait à ce que vous donniez un coup de main.\nI don't think that anybody really understands me.\tJe ne pense pas que quiconque me comprenne réellement.\nI don't think this is a good time to talk to Tom.\tJe ne pense pas que ce soit un bon moment pour parler à Tom.\nI don't understand what all of the fuss is about.\tJe ne comprends pas pourquoi on fait tout ce foin.\nI don't want to be any more burden to my parents.\tJe ne veux plus être aucune charge pour mes parents.\nI don't want to hear another complaint about you.\tJe ne veux plus entendre de plaintes vous concernant.\nI don't want to hear another complaint about you.\tJe ne veux pas entendre d'autres plaintes te concernant.\nI don't want you to make the same mistake I made.\tJe ne veux pas que vous commettiez la même erreur que moi.\nI feel sort of dizzy and I feel like throwing up.\tJ'ai comme la tête qui tourne et j'ai la nausée.\nI feel sort of dizzy and I feel like throwing up.\tJ'ai comme la tête qui tourne et comme envie de vomir.\nI feel the same way about you as you do about me.\tJ'éprouve la même chose à votre égard que vous éprouvez au mien.\nI feel the same way about you as you do about me.\tJ'éprouve la même chose à votre endroit que vous éprouvez au mien.\nI feel the same way about you as you do about me.\tJ'éprouve la même chose à ton égard que tu éprouves au mien.\nI feel the same way about you as you do about me.\tJ'éprouve la même chose à ton endroit que tu éprouves au mien.\nI found the book which I had lost the day before.\tJ'ai retrouvé le livre que j'avais perdu hier.\nI found the secret compartment quite by accident.\tJe découvris le compartiment secret tout à fait par accident.\nI gave him advice, to which he paid no attention.\tJe lui ai donné un conseil auquel il n'a pas prêté attention.\nI get the feeling you don't really want me to go.\tJ'ai le sentiment que vous ne voulez pas vraiment que je parte.\nI get the feeling you don't really want me to go.\tJ'ai le sentiment que tu ne veux pas vraiment que je parte.\nI got up early in order to catch the first train.\tJe me suis levé tôt pour prendre le premier train.\nI had a crush on you when we were in high school.\tJ'étais entiché de toi lorsque nous étions au lycée.\nI had a crush on you when we were in high school.\tJ'étais entichée de toi lorsque nous étions au lycée.\nI had not seen a lion before I was ten years old.\tJe n'avais jamais vu de lion avant l'âge de mes dix ans.\nI had to cancel my trip on account of the strike.\tJ'ai dû annuler mon voyage à cause de la grève.\nI had to pay a large sum of money to get it back.\tJ'ai dû payer une forte somme pour le récupérer.\nI hadn't planned to tell you anything about this.\tJe n'avais pas prévu de vous dire quoi que ce fut à ce sujet.\nI hadn't planned to tell you anything about this.\tJe n'avais pas prévu de te dire quoi que ce fut à ce sujet.\nI hate to interrupt, but I need to say something.\tIl me peine de vous interrompre mais il me faut dire quelque chose.\nI have a friend whose father is a famous pianist.\tJ'ai un ami dont le père est un pianiste connu.\nI have a friend whose father is an animal doctor.\tJ'ai un ami dont le père est vétérinaire.\nI have just had one of the worst days of my life.\tJe viens d'avoir une des pires journées de ma vie.\nI have never had more than $500 in my possession.\tJe n'ai jamais eu plus de 500 dollars en ma possession.\nI have no will power when it comes to exercising.\tJe n'ai aucune force de volonté lorsqu'il s'agit de faire de l'exercice.\nI have no will power when it comes to exercising.\tJe ne dispose d'aucune volonté lorsqu'il s'agit de faire du sport.\nI have to write a letter. Do you have some paper?\tIl faut que j'écrive une lettre. Est-ce que tu as du papier ?\nI have to write a letter. Do you have some paper?\tJe dois écrire une lettre. As-tu du papier ?\nI have work to do, so go away and leave me alone.\tJ'ai du travail à faire, alors va-t'en et laisse-moi tranquille.\nI haven't eaten anything substantial in 48 hours.\tJe n'ai rien mangé de consistant depuis quarante-huit heures.\nI hear a lot of girls wear bikinis at that beach.\tJ'entends dire que beaucoup de filles portent des bikinis sur cette plage.\nI heard that there were alligators in the sewers.\tJ'ai entendu dire qu'il y avait des alligators dans les égouts.\nI held on to the rope tightly so I wouldn't fall.\tJe tins la corde fermement pour ne pas tomber.\nI held on to the rope tightly so I wouldn't fall.\tJe me tins fermement à la corde de sorte que je ne tombe pas.\nI held on to the rope tightly so I wouldn't fall.\tJe me suis fermement tenue à la corde pour ne pas tomber.\nI held on to the rope tightly so I wouldn't fall.\tJe me suis fermement tenu à la corde pour ne pas tomber.\nI hope to have my car paid off by next September.\tJ'espère avoir fini de payer ma voiture pour septembre prochain.\nI hope your assignment in England was successful.\tJ'espère que votre mission en Angleterre a été un succès.\nI just felt like hearing the sound of your voice.\tJ'avais juste envie d'entendre le son de ta voix.\nI just want you all to know you can depend on me.\tJe veux simplement que vous sachiez tous que vous pouvez compter sur moi.\nI just want you all to know you can depend on me.\tJe veux simplement que vous sachiez toutes que vous pouvez compter sur moi.\nI just wanted to say thank you for all your help.\tJe voulais simplement vous dire merci pour toute votre assistance.\nI just wanted to say thank you for all your help.\tJe voulais simplement vous exprimer mes remerciements pour toute votre assistance.\nI kept him company while his wife was in surgery.\tJe lui ai tenu compagnie tandis que sa femme subissait une opération chirurgicale.\nI know I've said some pretty stupid things today.\tJe sais que j'ai dit des trucs assez idiots, aujourd'hui.\nI like to add basil to season my spaghetti sauce.\tJ'aime ajouter du basilic pour relever ma sauce spaghetti.\nI met some friends while I was waiting for a bus.\tJ'ai rencontré des amis tandis que j'attendais un bus.\nI met some friends while I was waiting for a bus.\tJ'ai rencontré des amies tandis que j'attendais un bus.\nI miss you. I need to see you. Could I come over?\tTu me manques. J'ai besoin de te voir. Puis-je venir ?\nI missed my flight. Can I get on the next flight?\tJ'ai raté l'avion, pourrais-je prendre le prochain ?\nI never miss the opportunity to eat Italian food.\tJe ne manque jamais une occasion de manger italien.\nI never thought Tom would do something like that.\tJe n’aurais jamais pensé que Tom ferait une chose pareille.\nI often go out for a short walk just after lunch.\tJe sors souvent faire une courte promenade juste après le déjeuner.\nI often visited the museum when I lived in Kyoto.\tJ'ai souvent visité le musée lorsque je résidais à Kyoto.\nI ought to have made a hotel reservation earlier.\tJ'aurai dû faire une réservation d’hôtel plus tôt.\nI promise to return this videotape within a week.\tJe te promets de te rendre cette cassette vidéo dans une semaine.\nI ran as fast as I could, but I missed the train.\tJ'ai couru aussi vite que je pouvais mais j'ai manqué le train.\nI received a letter written in English yesterday.\tHier, j'ai reçu une lettre écrite en anglais.\nI see no reason why I shouldn't accept her offer.\tJe ne vois pas de raison pour laquelle je ne devrais pas accepter son offre.\nI shouldn't have to tell you to do your homework.\tJe ne devrais pas avoir à te dire de faire tes devoirs.\nI shouldn't have to tell you to do your homework.\tJe ne devrais pas avoir à vous dire de faire vos devoirs.\nI slept all day yesterday, because it was Sunday.\tJ'ai dormi toute la journée hier, parce que c'était dimanche.\nI slept all day yesterday, because it was Sunday.\tComme hier c'était dimanche, j'ai dormi toute la journée.\nI slept all day yesterday, because it was Sunday.\tHier j'ai dormi toute la journée car c'était dimanche.\nI spend a few hours a day maintaining my website.\tJe passe quelques heures par jour à entretenir mon site web.\nI spent all yesterday afternoon cleaning my room.\tJ'ai passé tout l’après-midi d'hier à nettoyer ma chambre.\nI spent the whole evening trying to find my keys.\tJ'ai passé toute l'après-midi à chercher mes clés.\nI spent two hours watching television last night.\tJ'ai passé deux heures à regarder la télévision la nuit dernière.\nI stayed in bed all day instead of going to work.\tJe suis resté au lit toute la journée au lieu d'aller travailler.\nI talked to him on the telephone yesterday night.\tJe lui ai parlé au téléphone hier soir.\nI think I understand the pressures you are under.\tJe pense que je comprends la pression que tu subis.\nI think it would be a good idea to go home early.\tJe pense que ce serait une bonne idée de rentrer tôt chez toi.\nI think it's a little too cold to go on a picnic.\tJe pense qu'il fait un peu trop froid pour faire un pique-nique.\nI think it's strange that he didn't speak to you.\tJe pense qu'il est étrange qu'il ne vous ait pas parlé.\nI think it's strange that he didn't speak to you.\tJe pense qu'il est étrange qu'il ne t'ait pas parlé.\nI think it's time for me to contact him by phone.\tJe pense qu'il est temps que je le contacte par téléphone.\nI think it's time for me to give her a ride home.\tJe pense qu'il est temps que je la conduise chez elle.\nI think it's time for me to start cooking dinner.\tJe pense qu'il est temps que je commence à préparer le dîner.\nI think it's time for me to start cooking dinner.\tJe pense qu'il est temps que je commence à préparer le souper.\nI think it's time for me to throw a little party.\tJe pense qu'il est temps que j'organise une petite fête.\nI think it's time for us to come to an agreement.\tJe pense qu'il est temps pour nous de parvenir à un accord.\nI think it's time for us to come to an agreement.\tJe pense qu'il est temps que nous parvenions à un accord.\nI think we should ask Tom where he wants to live.\tJe pense que nous devrions demander à Tom où il veut habiter.\nI think you had better stick to your present job.\tJe pense que vous feriez mieux de vous accrocher à votre emploi actuel.\nI think you ought to pay more attention in class.\tJe pense que tu devrais prêter plus d'attention en cours.\nI think you ought to pay more attention in class.\tJe pense que vous devriez prêter plus d'attention en cours.\nI think you'll regret it if you don't go with us.\tJe pense que tu regretteras de ne pas être venu avec nous.\nI think you'll regret it if you don't go with us.\tJe pense que tu regretteras de ne pas être venue avec nous.\nI think you'll regret it if you don't go with us.\tJe pense que vous regretterez de ne pas être venu avec nous.\nI think you'll regret it if you don't go with us.\tJe pense que vous regretterez de ne pas être venue avec nous.\nI think you'll regret it if you don't go with us.\tJe pense que vous regretterez de ne pas être venus avec nous.\nI think you'll regret it if you don't go with us.\tJe pense que vous regretterez de ne pas être venues avec nous.\nI told you the truth when I told you I loved you.\tJe t'ai dit la vérité quand je t'ai dit que je t'aimais.\nI understand it, but I still don't agree with it.\tJe le comprends mais je ne suis tout de même pas d'accord.\nI use the Internet as a resource for my research.\tJ'utilise Internet comme ressource pour mes recherches.\nI used to tell people I knew how to speak French.\tJe disais au gens que je savais parler français.\nI usually buy my clothes at the department store.\tJ'achète habituellement mes vêtements au grand magasin.\nI want a boat that'll take me far away from here.\tJe veux un bateau qui m'emmènera loin d'ici.\nI want a boat that'll take me far away from here.\tJe veux un bateau qui m'emmènera très loin d'ici.\nI want my children to reach their full potential.\tJe veux que mes enfants atteignent leur plein potentiel.\nI want to be certain you are who you say you are.\tJe veux être certaine que vous êtes celui que vous déclarez être.\nI want to be certain you are who you say you are.\tJe veux être certain que vous êtes celui que vous déclarez être.\nI want to be certain you are who you say you are.\tJe veux être certaine que vous êtes celle que vous déclarez être.\nI want to be certain you are who you say you are.\tJe veux être certain que vous êtes celle que vous déclarez être.\nI want to be certain you are who you say you are.\tJe veux être certaine que vous êtes ceux que vous déclarez être.\nI want to be certain you are who you say you are.\tJe veux être certain que vous êtes ceux que vous déclarez être.\nI want to be certain you are who you say you are.\tJe veux être certaine que vous êtes celles que vous déclarez être.\nI want to be certain you are who you say you are.\tJe veux être certain que vous êtes celles que vous déclarez être.\nI want to be certain you are who you say you are.\tJe veux être certaine que tu es celle que tu déclares être.\nI want to be certain you are who you say you are.\tJe veux être certaine que tu es celui que tu déclares être.\nI want to be certain you are who you say you are.\tJe veux être certain que tu es celle que tu déclares être.\nI want to be certain you are who you say you are.\tJe veux être certain que tu es celui que tu déclares être.\nI want to make sure you're going to be all right.\tJe veux m'assurer que tu vas aller bien.\nI want to make sure you're going to be all right.\tJe veux m'assurer que tu vas bien aller.\nI want to make sure you're going to be all right.\tJe veux m'assurer que vous allez bien aller.\nI want to see you in your office in half an hour.\tJe veux vous voir dans votre bureau dans une demi-heure.\nI want to see you in your office in half an hour.\tJe veux te voir dans ton bureau dans une demi-heure.\nI wanted to know where the voice was coming from.\tJe voulais savoir d'où la voix provenait.\nI wanted to talk to you because I need your help.\tJe voulais vous parler car j'ai besoin de votre aide.\nI wanted to talk to you because I need your help.\tJe voulais te parler car j'ai besoin de ton aide.\nI was going to suggest the following possibility.\tJ'allais proposer la possibilité suivante.\nI was wondering if I could borrow your newspaper.\tJe me demandais si je pourrais emprunter votre journal.\nI wasn't able to remember the title of that song.\tJ'étais incapable de me rappeler le titre de cette chanson.\nI wasn't able to remember the title of that song.\tJe fus incapable de me rappeler le titre de cette chanson.\nI wasn't able to remember the title of that song.\tJ'ai été incapable de me rappeler le titre de cette chanson.\nI went to his house at 3 o'clock, but he was out.\tJe me suis rendu chez lui à 3 heures mais il était sorti.\nI will have my sister pick you up at the station.\tJe vais vous faire chercher à la gare par ma sœur.\nI will have spent all this money in three months.\tJ'aurai dépensé tout cet argent en trois mois.\nI will never forget the day when I first met him.\tJe n'oublierai jamais le jour où je l'ai rencontré pour la première fois.\nI will provide you all the necessary information.\tJe vous fournirai toutes les informations nécessaires.\nI will tell him about it when he comes next time.\tJe le lui dirai quand il vient la prochaine fois.\nI wish I could figure out how to make more money.\tJ'aimerais trouver comment faire plus d'argent.\nI wish I could figure out how to make more money.\tJe voudrais savoir comment faire plus d'argent.\nI wish I could play the guitar as well as you do.\tJ'aimerais pouvoir jouer de la guitare aussi bien que toi.\nI wish I could play the guitar as well as you do.\tJ'aimerais pouvoir jouer de la guitare aussi bien que vous.\nI wish I were rich enough to buy a car like that.\tJ'aimerais être assez riche pour acheter une voiture comme cela.\nI wish I were rich enough to buy a car like that.\tJe voudrais être assez riche pour acheter une voiture comme cela.\nI wish him the very best in his future endeavors.\tJe lui souhaite le meilleur dans ses futures entreprises.\nI wonder if exchange students can join this club.\tJe me demande si les étudiants étrangers peuvent rejoindre ce cercle.\nI wonder what it is like to travel through space.\tJe me demande ce que cela fait de voyager dans l'espace.\nI would like to check yesterday's stock prices...\tJe voudrais vérifier les cours des actions d'hier...\nI would like to improve my English pronunciation.\tJ'aimerais améliorer ma prononciation de l'anglais.\nI would like to thank you for your collaboration.\tJ'aimerais vous remercier pour votre coopération.\nI'd be delighted if you could join us for dinner.\tJe serais ravi si vous pouviez vous joindre à nous pour déjeuner.\nI'd be delighted if you could join us for dinner.\tJe serais ravie si vous pouviez vous joindre à nous pour déjeuner.\nI'd be delighted if you could join us for dinner.\tJe serais ravi si tu pouvais te joindre à nous pour déjeuner.\nI'd be delighted if you could join us for dinner.\tJe serais ravie si tu pouvais te joindre à nous pour déjeuner.\nI'd like to determine the value of this painting.\tJ'aimerais déterminer la valeur de ce tableau.\nI'd like to explain this in a little more detail.\tJ'aimerais expliquer ça avec un peu plus de détail.\nI'd like to explain this in a little more detail.\tJ'aimerais expliquer ça d'une manière un peu plus détaillée.\nI'd like to forget the whole thing ever happened.\tJ'aimerais oublier que tout ça est arrivé.\nI'd like to forget the whole thing ever happened.\tJ'aimerais oublier que tout ça est survenu.\nI'd like to forget the whole thing ever happened.\tJ'aimerais oublier que tout ça s'est produit.\nI'd like to know the exact exchange rate for yen.\tJ'aimerais savoir le taux exact du change pour le yen.\nI'd like to leave the city and rediscover nature.\tJ'aimerais quitter la ville et redécouvrir la nature.\nI'd like you to look after my dog while I'm away.\tJ'aimerais que tu t'occupes de mon chien en mon absence.\nI'd like you to translate this book into English.\tJe voudrais que tu traduises ce livre en anglais.\nI'd rather stay home if it's all the same to you.\tJ'aimerais autant rester à la maison si ça ne te fait rien.\nI'd rather stay home than go out in this weather.\tJe ferais mieux de rester à la maison plutôt que de sortir par ce temps-là.\nI'll be singing a song at Tom and Mary's wedding.\tJe pousserai la chansonnette au mariage de Tom et Marie.\nI'll be singing a song at Tom and Mary's wedding.\tJe chanterai une chanson au mariage de Tom et Marie.\nI'll be thinking of you every day while I'm away.\tJe penserai chaque jour à toi pendant que je serai parti.\nI'll be thinking of you every day while I'm away.\tJe penserai chaque jour à vous pendant que je serai au loin.\nI'll go to Paris when I have the money necessary.\tJ'irai à Paris quand j'aurai assez d'argent.\nI'll let you know if I find anything interesting.\tJe te ferai savoir si je trouve quoi que ce soit d'intéressant.\nI'll talk to him at the earliest possible moment.\tJe compte parler avec lui dès que l'occasion se présentera.\nI'll talk to him at the earliest possible moment.\tJe lui parlerai dès que possible.\nI'll travel across Europe by bicycle this summer.\tJe voyagerai à travers l'Europe en vélo, cet été.\nI'm afraid we won't be able to help you tomorrow.\tJe crains que nous ne soyons pas en mesure de t'aider demain.\nI'm afraid we won't be able to help you tomorrow.\tJe crains que nous ne soyons pas en mesure de vous aider demain.\nI'm anxious whether I'll do well at this new job.\tJe m'inquiète de savoir si je vais réussir dans ce nouvel emploi.\nI'm beginning to understand why Tom loves Boston.\tJe commence à comprendre pourquoi Tom aime Boston.\nI'm fairly certain that's what's going to happen.\tJe suis assez certain que c'est qui va se produire.\nI'm going to do an internship at a local company.\tJe vais faire un stage dans une entreprise locale.\nI'm going to stop trying to be friendly with you.\tJe vais arrêter d'essayer d'être amical avec toi.\nI'm going to stop trying to be friendly with you.\tJe vais arrêter d'essayer d'être amicale avec toi.\nI'm going to stop trying to be friendly with you.\tJe vais arrêter d'essayer d'être amical avec vous.\nI'm going to stop trying to be friendly with you.\tJe vais arrêter d'essayer d'être amicale avec vous.\nI'm going to stop trying to be friendly with you.\tJe vais arrêter d'essayer d'être amical à votre égard.\nI'm going to stop trying to be friendly with you.\tJe vais arrêter d'essayer d'être amicale à votre égard.\nI'm going to stop trying to be friendly with you.\tJe vais arrêter d'essayer d'être amical à ton égard.\nI'm going to stop trying to be friendly with you.\tJe vais arrêter d'essayer d'être amicale à ton égard.\nI'm going to the supermarket to do some shopping.\tJe me rends au supermarché pour effectuer quelques courses.\nI'm going to the supermarket to do some shopping.\tJe me rends au supermarché pour effectuer quelques emplettes.\nI'm having some problems compiling this software.\tJ'ai quelques difficultés à compiler ce programme.\nI'm not willing to cook dinner for twenty people.\tJe n'ai pas l'intention de préparer à diner pour vingt personnes.\nI'm sick and tired of eating zucchinis every day.\tJe n'en peux vraiment plus de manger des courgettes tous les jours.\nI'm so mad I want to scream and break everything!\tJe suis si furieux que je veux hurler et tout casser !\nI'm sorry, but I can't find the book you lent me.\tJe suis désolé mais je n'arrive pas à trouver le livre que tu m'as prêté.\nI'm sorry, but I don't feel like going out today.\tDésolé, mais je n'ai pas envie de sortir aujourd'hui.\nI'm studying French because I need it for my job.\tJ'étudie le français car j'en ai besoin pour mon travail.\nI've been very busy since I returned from abroad.\tJ'ai été très occupé depuis que je suis rentré de l'étranger.\nI've never seen so many birds at one time before.\tJe n'avais encore jamais vu autant d'oiseaux en même temps auparavant.\nI've paid parking fines a number of times myself.\tJ'ai moi-même payé des tas de fois des amendes pour stationnement interdit.\nI've told you over and over again not to do that.\tJe t'ai sans cesse répété de ne pas faire ça.\nIf I were in your place, I would lend him a hand.\tSi j'étais à ta place, je lui prêterais main forte.\nIf I were in your place, I would lend him a hand.\tSi j'étais à votre place, je lui prêterais main forte.\nIf he finds out, certainly he will be very angry.\tS'il s'en aperçoit, il sera certainement très en colère.\nIf he had been honest, I would have employed him.\tS'il avait été honnête, je l'aurais employé.\nIf he had worked harder, he could have succeeded.\tS'il avait travaillé avec davantage d'application, il aurait pu réussir.\nIf it happens to rain tomorrow I'll stay at home.\tJe resterai à la maison s'il pleut demain.\nIf it were not for the air, planes could not fly.\tS'il n'y avait pas d'air, les avions ne pourraient pas voler.\nIf you buy me an ice cream, I'll give you a kiss.\tSi tu me paies une glace, je te donnerai un baiser.\nIf you don't believe me, go and see for yourself.\tSi tu ne me croies pas, va voir par toi-même.\nIf you don't like the service, don't leave a tip.\tSi vous n'êtes pas satisfait du service, ne laissez pas de pourboire.\nIf you don't like the service, don't leave a tip.\tSi tu n'es pas satisfait du service, ne laisse pas de pourboire.\nIf you eat at this time of night, you'll get fat.\tSi tu manges à cette heure de la nuit, tu vas grossir.\nIf you eat at this time of night, you'll get fat.\tSi vous mangez à cette heure de la nuit, vous allez grossir.\nIf you have questions, don't hesitate to jump in.\tSi vous avez des questions, n'hésitez pas à intervenir.\nIf you have questions, don't hesitate to jump in.\tSi tu as des questions, n'hésite pas à intervenir.\nIf you touch that wire, you will receive a shock.\tSi tu touches à ce câble, tu vas prendre une décharge.\nIf you want to participate, you have to register.\tSi vous souhaitez participer, il faut vous inscrire.\nIf you want to participate, you have to register.\tSi tu souhaites participer, il faut t'inscrire.\nIn Japan, there is no lake bigger than Lake Biwa.\tAu Japon il n'y a pas de lac plus grand que le lac Biwa.\nIn any case, I must finish this work by tomorrow.\tEn tout cas, je dois finir ce travail pour demain.\nIn case I am late, you don't have to wait for me.\tAu cas où je serais en retard, vous n'avez pas besoin de m'attendre.\nIn case I am late, you don't have to wait for me.\tAu cas où je serais en retard, tu n'as pas besoin de m'attendre.\nIn general, consumers prefer quantity to quality.\tEn général les consommateurs préfèrent la quantité à la qualité.\nIn his free time, he likes to be on the Internet.\tPendant son temps libre, il aime être sur Internet.\nIn the Southern region, sales were up 47 percent.\tDans les régions méridionales, les ventes ont augmenté de 47 pour cent.\nIn those days, sugar was less valuable than salt.\tÀ cette époque, le sucre avait moins de valeur que le sel.\nIn those days, sugar was less valuable than salt.\tEn ce temps-là, le sucre avait moins de valeur que le sel.\nInhabitants were not permitted to enter the area.\tLes habitants n'avaient pas le droit de pénétrer la zone.\nIs it OK to drink beer on your university campus?\tEst-il autorisé de boire de la bière sur le campus de votre université ?\nIs it OK to drink beer on your university campus?\tEst-il admis de boire de la bière sur le campus de ton université ?\nIs it true that you are going to study in London?\tEst-ce vrai que tu vas aller étudier à Londres ?\nIs there somewhere in Europe you'd like to visit?\tY a-t-il un endroit en Europe que tu veuilles visiter ?\nIt does not matter to me whether you come or not.\tCela ne fait aucune différence pour moi que vous veniez ou non.\nIt has been two months since my arrival in Tokyo.\tCela fait deux mois que je suis arrivé à Tokyo.\nIt is impossible for him to finish it in an hour.\tIl lui est impossible de finir ça en une heure.\nIt is impossible for me to do the work in a week.\tIl m'est impossible d'accomplir ce travail en une semaine.\nIt is irresponsible of you to break your promise.\tRompre ta promesse est irresponsable de ta part.\nIt is morning. The children are eating breakfast.\tC'est le matin. Les enfants prennent leur petit-déjeuner.\nIt is necessary to have a license to drive a car.\tIl est nécessaire d'avoir un permis pour conduire une voiture.\nIt is not clear what the writer is trying to say.\tCe que l'auteur essaie de dire n'est pas clair.\nIt is not necessary for us to attend the meeting.\tIl ne nous est pas nécessaire d'assister à la réunion.\nIt is regrettable that you did not start earlier.\tIl est regrettable que tu n'aies pas commencé plus tôt.\nIt looks like Tom was able to get what he wanted.\tOn dirait que Tom a été capable d'obtenir ce qu'il voulait.\nIt looks like Tom was able to get what he wanted.\tIl semble que Tom a pu obtenir ce qu'il voulait.\nIt looks like your luggage is on the next flight.\tOn dirait que vos bagages sont sur le prochain vol.\nIt looks like your luggage is on the next flight.\tIl semble que vos bagages soient sur le prochain vol.\nIt might sound like I'm complaining, but I'm not.\tOn pourrait croire que je me plains, mais non.\nIt seems that Tom is unable to solve the problem.\tIl semble que Tom soit incapable de résoudre le problème.\nIt seems to me that I heard a noise in the attic.\tJe crois avoir entendu un bruit au grenier.\nIt takes a lot of electricity to power a country.\tIl faut beaucoup d'électricité pour satisfaire les besoins énergétiques d'un pays.\nIt took me more than a month to get over my cold.\tÇa m'a pris plus d'un mois pour guérir de mon rhume.\nIt took them some time to get used to each other.\tCela leur a pris un moment avant de s'habituer les uns aux autres.\nIt turned out not to be so easy to live with him.\tVivre avec lui ne s'avéra pas si facile.\nIt was impossible for me to answer this question.\tIl m'était impossible de répondre à cette question.\nIt was just an accident that we met at the store.\tNous nous sommes vraiment rencontrés au magasin par hasard.\nIt was not until yesterday that we knew about it.\tOn ne l'a pas su avant hier.\nIt'll be easy to find someone to rent this house.\tIl sera aisé de trouver quelqu'un pour louer cette maison.\nIt's convenient for me to see you at ten tonight.\tC'est pratique pour moi de te voir ce soir à dix heures.\nIt's easier to make plans than to carry them out.\tIl est plus facile de tirer des plans que de les exécuter.\nIt's easier to spend a lot than to save a little.\tIl est plus facile de beaucoup dépenser que d'épargner un peu.\nIt's foolish for you to swim when it's this cold.\tC'est fou de ta part de nager quand il fait si froid.\nIt's my custom to go for a walk before breakfast.\tJ'ai l'habitude de faire une promenade avant le petit déjeuner.\nIt's never too late to make amends for harm done.\tIl n'est jamais trop tard pour réparer le mal qui a été fait.\nIt's never too late to make amends for harm done.\tIl n'est jamais trop tard pour se repentir du mal qui a été fait.\nIt's never too late to make amends for harm done.\tIl n'est jamais trop tard pour expier le mal qui a été fait.\nIt's sometimes difficult to control our feelings.\tC'est parfois difficile de contrôler nos sentiments.\nIt's supposed to get colder and snow later today.\tÇa devrait se refroidir et neiger plus tard dans la journée.\nIt's very hard to see yourself as others see you.\tIl est très difficile de se voir soi-même tel que les autres nous voient.\nIt's very hard to see yourself as others see you.\tIl est très difficile de nous voir nous-même tel que les autres nous voient.\nIt's very hard to see yourself as others see you.\tIl est très difficile de vous voir vous-même tel que les autres vous voient.\nIt’s not a bug, it’s an undocumented feature.\tCe n’est pas un bug, c’est une fonctionnalité non documentée.\nJet planes fly much faster than propeller planes.\tLes avions à réaction volent beaucoup plus vite que les avions à hélice.\nJudging from his appearance, he may be a soldier.\tD'après son apparence, il est peut-être militaire.\nJudging from his expression, he is in a bad mood.\tDe par son expression, il est de mauvaise humeur.\nJust promise me that you won't do anything silly.\tPromets-moi simplement que tu ne feras pas de bêtises.\nKeep an eye on my suitcase while I buy my ticket.\tGarde un œil sur ma valise pendant que j'achète mon ticket.\nLast week she gave birth to a beautiful daughter.\tLa semaine dernière elle donna naissance à une jolie fille.\nLet's unfold the map on the table and discuss it.\tDéplions la carte sur la table et discutons-en.\nLincoln was a good politician and a smart lawyer.\tLincoln était un bon politicien et un avocat intelligent.\nLondon is one of the largest cities in the world.\tLondres est une des villes les plus grandes du monde.\nLondon, the capital of England, is on the Thames.\tLondres, la capitale de l'Angleterre, est située sur la Tamise.\nLook and see how much the cash register rings up.\tRegarde et lis quel montant indique la caisse enregistreuse.\nLook me in the eyes and tell me you didn't do it.\tRegarde-moi dans les yeux et dis-moi que tu ne l'as pas fait.\nLook me in the eyes and tell me you didn't do it.\tRegardez-moi dans les yeux et dites-moi que vous ne l'avez pas fait.\nLook me in the eyes and tell me you didn't do it.\tRegardez-moi dans les yeux et dites-moi que vous ne l'avez pas faite.\nLook me in the eyes and tell me you didn't do it.\tRegarde-moi dans les yeux et dis-moi que tu ne l'as pas faite.\nMake sure you stick together so no one gets lost.\tAssurez-vous de rester groupés pour que personne ne se perde.\nMan is the only animal that blushes. Or needs to.\tL'homme est le seul animal qui rougit. Ou qui ait besoin de le faire.\nMan is the only animal that can make use of fire.\tL'Homme est le seul animal qui peut utiliser le feu.\nMany countries have abolished capital punishment.\tBeaucoup de pays ont aboli la peine de mort.\nMarried people are happier than unmarried people.\tLes gens mariés sont plus heureux que les célibataires.\nMary had been knitting for an hour when I called.\tMary tricotait depuis une heure quand j'ai appelé.\nMay I call on you at your house tomorrow morning?\tPuis-je te rendre visite à ton domicile, demain matin ?\nMay I call on you at your house tomorrow morning?\tPuis-je vous rendre visite à votre domicile, demain matin ?\nMay I charge my cell phone somewhere around here?\tPuis-je charger mon téléphone portable quelque part ici ?\nMost Swiss citizens speak two or three languages.\tLa plupart des Suisses parlent deux ou trois langues.\nMother insists that I should eat more vegetables.\tMa mère insiste sur le fait que je devrais manger plus de légumes.\nMr. Jackson gives us a lot of homework every day.\tM. Jackson nous donne beaucoup de devoirs tous les jours.\nMy brother earns half as much money as my father.\tMon frère gagne moitié moins d'argent que mon père.\nMy decision to study abroad surprised my parents.\tMa décision d'étudier à l'étranger a surpris mes parents.\nMy father disapproved of my going to the concert.\tMon père s'est opposé à ce que j'aille au concert.\nMy father was about to leave when the phone rang.\tMon père était sur le point de partir quand le téléphone sonna.\nMy father was about to leave when the phone rang.\tMon père était sur le point de partir quand le téléphone a sonné.\nMy friend told me that he had bought a new watch.\tMon ami m'a dit qu'il avait acheté une nouvelle montre.\nMy grandfather made the company what it is today.\tMon grand-père a fait de l'entreprise ce qu'elle est aujourd'hui.\nMy grandmother is always complaining of the cold.\tMa grand-mère se plaint toujours du froid.\nMy grandmother lived to be ninety-five years old.\tMa grand-mère a vécu jusqu'à quatre-vingt-quinze ans.\nMy grandmother never changed her style of living.\tMa grand-mère n'a jamais changé de style de vie.\nMy grandmother passed away peacefully last night.\tMa grand-mère est décédée paisiblement la nuit dernière.\nMy sister married him in spite of our objections.\tMa sœur s'est mariée avec lui malgré nos objections.\nMy teacher encouraged me to fulfill my ambitions.\tMon professeur m'a encouragé à réaliser mes ambitions.\nMy uncle died of cancer of the stomach yesterday.\tMon oncle est mort d'un cancer de l'estomac, hier.\nMy uncle died of cancer of the stomach yesterday.\tMon oncle est mort hier d’un cancer à l’estomac.\nMy uncle was standing there with his arms folded.\tMon oncle se tenait là-bas, debout, les bras croisés.\nMy younger brother swims every day in the summer.\tMon frère cadet nage tous les jours durant l'été.\nNeedless to say, he was late for school as usual.\tInutile de le préciser, il est en retard à l'école comme d'habitude.\nNever take a blind man's arm. Let him take yours.\tNe prenez jamais le bras d'un aveugle. Laissez-le prendre le vôtre.\nNo one found any reason to criticize his actions.\tPersonne ne trouva une quelconque raison de critiquer son action.\nNo one seems to have the guts to do that anymore.\tPersonne ne semble plus avoir les tripes de faire ça.\nNonstop flights are almost always more expensive.\tLes vols directs sont presque toujours plus coûteux.\nOnce upon a time, there was a beautiful princess.\tIl était une fois une belle princesse...\nOnce you have made a promise, you should keep it.\tUne fois que vous avez fait une promesse, vous vous devez de la tenir.\nOnce you have made a promise, you should keep it.\tUne fois une promesse faite, il faut la respecter.\nOne of the twins is alive, but the other is dead.\tL'un des jumeaux est en vie, mais l'autre est mort.\nOne third of the friends I grew up with are dead.\tUn tiers des amis avec lesquels j'ai grandi sont morts.\nOnly young children and old fools tell the truth.\tIl n'y a que les enfants et les vieux fous qui disent la vérité.\nOur ancestors came to this country 150 years ago.\tNos ancêtres arrivèrent dans ce pays il y a 150 ans.\nOur company's showroom was a hit with the ladies.\tLe hall d'exposition de notre société a été un succès auprès des dames.\nOur dorm's heating system isn't working properly.\tLe chauffage de notre dortoir ne fonctionne pas correctement.\nOur dorm's heating system isn't working properly.\tLe système de chauffage de notre résidence universitaire ne fonctionne pas correctement.\nOur math teacher drew a circle on the blackboard.\tNotre professeur de mathématiques traça un cercle au tableau.\nParis wouldn't be Paris without the Eiffel Tower.\tParis ne serait pas Paris sans la Tour Eiffel.\nParticipants in a seance try to contact the dead.\tLes participants à la séance tentent d'entrer en contact avec les morts.\nPeople can't do a lot of things at the same time.\tLes gens ne peuvent pas faire beaucoup de choses en même temps.\nPerseverance, as you know, is the key to success.\tLa persévérance, comme vous le savez, est la clé du succès.\nPlease give me a pencil and some sheets of paper.\tS'il vous plait donnez-moi un stylo et du papier.\nPlease inform me of any changes in the situation.\tS'il vous plaît, informez-moi de tout changement de situation.\nPlease let me pick up your sister at the station.\tVeuillez me laisser aller prendre votre sœur à la gare.\nPlease let me pick up your sister at the station.\tLaisse-moi aller prendre ta sœur à la gare, s'il te plait.\nPlease take your time before deciding what to do.\tS'il te plait, prends ton temps avant de décider quoi faire.\nPlease take your time before deciding what to do.\tPrenez, s'il vous plait, votre temps, avant de décider ce qu'il faut faire.\nPlease take your time before deciding what to do.\tVeuillez prendre votre temps, avant de décider de ce qu'il faut faire.\nPlease tell me what you think about this article.\tVeuillez me dire ce que vous pensez de cet article.\nPlease tell me what you think about this article.\tDis-moi, s'il te plait, ce que tu penses de cet article.\nPregnant women often experience morning sickness.\tLes femmes enceintes ont souvent des nausées le matin.\nPrizes will be awarded at the end of the contest.\tLes prix seront décernés au terme de la compétition.\nPrizes will be awarded at the end of the contest.\tLes lots seront attribués à la fin du concours.\nPush the red button if something strange happens.\tAppuyez sur le bouton rouge si quelque chose d'étrange se produit.\nPush the red button if something strange happens.\tAppuie sur le bouton rouge si quelque chose d'étrange survient.\nQuite a few people came to the meeting yesterday.\tPas mal de gens sont venus à la réunion hier.\nQuito, Ecuador, is a little south of the equator.\tQuito, Équateur est situé un peu au sud de l'équateur.\nRainforests provide the earth with many benefits.\tLa forêts pluviales apportent de nombreux bienfaits à la terre.\nReaction is not always the best course of action.\tLa réaction n'est pas toujours la meilleure manière d'agir.\nRead this passage and translate it into Japanese.\tLisez ce passage et traduisez-le en japonais.\nRepetition does not transform a lie into a truth.\tLa répétition ne transforme pas un mensonge en vérité.\nRice is cultivated in several parts of the world.\tLe riz est cultivé en plusieurs points du monde.\nSchools and roads are services paid for by taxes.\tLes écoles et les routes sont des services payés par les impôts.\nShanghai is referred to as the Paris of the East.\tShanghai est surnommée le Paris de l'Orient.\nShe advised him of the date for the next meeting.\tElle l'a informé de la date de la prochaine réunion.\nShe advised him to stay in bed for two more days.\tElle lui conseilla de rester au lit deux jours de plus.\nShe advised him to stay in bed for two more days.\tElle lui a conseillé de rester au lit deux jours de plus.\nShe asked him if he was a student at this school.\tElle lui a demandé s'il était étudiant à cette école.\nShe asked him if he was a student at this school.\tElle lui demanda s'il était étudiant à cette école.\nShe asked me whether she could use the telephone.\tElle m'a demandé si elle pouvait utiliser le téléphone.\nShe asked me whether she could use the telephone.\tElle m'a demandé la permission d'utiliser le téléphone.\nShe bought him a sweater, but he hated the color.\tElle lui acheta un chandail mais il en détesta la couleur.\nShe bought him a sweater, but he hated the color.\tElle lui a acheté un chandail mais il en déteste la couleur.\nShe changed her hairstyle during summer vacation.\tElle changea son style de coiffure pendant les vacances d’été.\nShe divorced him after many years of unhappiness.\tElle a divorcé après de longues années de tristesse.\nShe divorced him after many years of unhappiness.\tElle divorça après de longues années de tristesse.\nShe dumped him because she thought he was a jerk.\tElle le laissa tomber parce qu'elle pensait qu'il était un pauvre type.\nShe dumped him because she thought he was a jerk.\tElle l'a laissé tomber parce qu'elle pensait qu'il était un pauvre type.\nShe dumped him because she thought he was a jerk.\tElle l'a balancé parce qu'elle pensait que c'était un pauvre type.\nShe followed him home to find out where he lived.\tElle le suivit chez lui pour voir où il vivait.\nShe followed him home to find out where he lived.\tElle le suivit chez lui pour déterminer où il vivait.\nShe followed him home to find out where he lived.\tElle l'a suivi chez lui pour voir où il vivait.\nShe followed him home to find out where he lived.\tElle l'a suivi chez lui pour déterminer où il vivait.\nShe got all the more angry because I kept silent.\tMon silence n'a fait que l'énerver encore plus.\nShe grew up near the sea, yet she hates swimming.\tElle a grandi au bord de la mer, et pourtant elle a horreur de nager.\nShe had her heavy suitcase carried by the porter.\tElle fit porter sa lourde valise par le porteur.\nShe handed me the letter without saying anything.\tElle m'a remis la lettre sans rien dire.\nShe has a claim on her deceased husband's estate.\tElle a un droit sur la propriété de son défunt mari.\nShe herself helped him because no one else would.\tElle l'a elle-même aidé car personne d'autre ne voulait le faire.\nShe herself helped him because no one else would.\tElle l'aida elle-même car personne d'autre ne voulait le faire.\nShe herself helped him because no one else would.\tElle l'a elle-même aidé car personne d'autre ne le ferait.\nShe hid the secret from her husband all her life.\tElle cacha le secret à son mari toute sa vie.\nShe is no longer the cheerful woman she once was.\tElle n'est plus la femme gaie qu'elle était.\nShe is no longer the cheerful woman she once was.\tElle n'est plus la femme enjouée qu'elle fut auparavant.\nShe is very shy and feels ill at ease at parties.\tElle est très timide et se sent mal à l'aise dans les fêtes.\nShe lost her father when she was three years old.\tElle a perdu son père lorsqu'elle avait trois ans.\nShe makes excellent meals in the blink of an eye.\tElle prépare d'excellents repas en un tour de main.\nShe might have been beautiful when she was young.\tPeut-être aurait-elle pu être belle lorsqu'elle était jeune.\nShe pleaded with him to stay a little bit longer.\tElle le supplia de rester un petit peu plus longtemps.\nShe stared at him and that made him very nervous.\tElle le fixa et cela le rendit très nerveux.\nShe started pursuing him before he became famous.\tElle a commencé à lui courir après avant qu'il ne devienne célèbre.\nShe told me that she would go to Paris in August.\tElle m'a dit qu'elle irait à Paris en août.\nShe took off her glasses and put her contacts in.\tElle retira ses lunettes et mit ses lentilles.\nShe used to wash her hair before going to school.\tElle avait l'habitude de se laver les cheveux avant d'aller à l'école.\nShe wanted him to say that he would pay the bill.\tElle voulait qu'il dise qu'il paierait l'addition.\nShe was able to solve the problem in ten minutes.\tElle était capable de résoudre le problème en dix minutes.\nShe was asked to convince him to paint the house.\tElle fut requise de le convaincre de peindre la maison.\nSimmer the butter and garlic in a small saucepan.\tFaites mijoter le beurre et l'ail dans une petite casserole.\nSince it stopped raining, he went out for a walk.\tAprès qu'il se fut arrêté de pleuvoir, il sortit faire une promenade.\nSince it stopped raining, he went out for a walk.\tAprès qu'il se fut arrêté de pleuvoir, il est sorti faire une promenade.\nSister, don't let this patient out of your sight.\tMa sœur, ne quittez pas ce patient des yeux.\nSome people laugh at his jokes, but others don't.\tQuelques personnes rient de ses plaisanteries, mais d'autres ne le font pas.\nSome people still believe that the world is flat.\tCertaines personnes croient encore que le monde est plat.\nStop pretending that everything's okay. It's not.\tArrête de faire comme si tout allait bien ! Ce n'est pas le cas.\nTell me if you're going to give it to him or not.\tDis-moi si tu vas le lui donner ou pas.\nTell me if you're going to give it to him or not.\tDites-moi si vous allez le lui donner ou pas.\nTell me what you eat, I'll tell you what you are.\tDites-moi ce que vous mangez, je vous dirai qui vous êtes.\nTen people were slightly injured in the accident.\tDix personnes furent légèrement blessées dans l'accident.\nThanks to the bad weather, the game was canceled.\tGrâce au mauvais temps, le match a été annulé.\nThat brings up another point I'd like to discuss.\tÇa soulève un autre point que j'aimerais discuter.\nThat was the hardest thing I ever did in my life.\tC'est la chose la plus difficile que j'aie jamais faite au cours de ma vie.\nThat's one of the weirdest things I've ever seen.\tVoilà une des choses les plus bizarres qu'il m'ait été donné de voir.\nThat's the computer he used to write the article.\tC'est l'ordinateur sur lequel il écrit son article.\nThe English Channel separates England and France.\tLa Manche sépare la France de l'Angleterre.\nThe accident took place the day before yesterday.\tL'accident s'est produit avant-hier.\nThe baby is in his crib, sucking on his pacifier.\tLe bébé est dans son berceau, à sucer sa tétine.\nThe beach is an ideal place for children to play.\tLa plage est un endroit idéal pour les enfants pour s'amuser.\nThe bishop took pity on the desperate immigrants.\tL'évêque eu pitié des étrangers dans le désespoir.\nThe boy said that the taxi vanished into the fog.\tLe garçon déclara que le taxi avait disparu dans le brouillard.\nThe children were so noisy that I couldn't study.\tLes enfants faisaient tant de bruit que je ne pus étudier.\nThe children were so noisy that I couldn't study.\tLes enfants faisaient tant de bruit que je n'ai pas pu étudier.\nThe company spends a lot of money on advertising.\tLa société dépense beaucoup d'argent en publicité.\nThe company was started with $100,000 in capital.\tLa société a été fondée avec un capital de 100 000$.\nThe cops are searching for the missing documents.\tLes flics recherchent les documents manquants.\nThe death toll from the hurricane climbed to 200.\tLe nombre de morts causées par l'ouragan a grimpé jusqu'à 200.\nThe death toll from the hurricane climbed to 200.\tLe nombre de morts engendré par l'ouragan a grimpé jusqu'à 200.\nThe doctor examined over fifty patients that day.\tLe docteur examina plus de 50 patients ce jour-là.\nThe door swung open and Tom walked into the room.\tLa porte s'ouvrit et Tom entra dans la pièce.\nThe door will lock automatically when you go out.\tLa porte se verrouillera automatiquement quand vous sortirez.\nThe food at that restaurant is too greasy for me.\tLe menu de ce restaurant est trop gras pour moi.\nThe garden is separated from the road by a fence.\tLe jardin est séparé du chemin par une clôture.\nThe government is trying to get rid of pollution.\tLe gouvernement essaie de se débarrasser de la pollution.\nThe grass always seems greener on the other side.\tL'herbe paraît toujours plus verte de l'autre côté.\nThe group was made up of six girls and four guys.\tLe groupe était composé de 6 jeunes filles et 4 garçons.\nThe hard rain spoiled our hike through the woods.\tLa pluie drue gâcha notre excursion à travers bois.\nThe heavy snow made them put off their departure.\tLes fortes chutes de neige leur ont fait repousser leur départ.\nThe higher we go up, the thinner the air becomes.\tPlus haut nous montons, plus l'air se raréfie.\nThe history of China is older than that of Japan.\tL'histoire de la Chine est plus ancienne que celle du Japon.\nThe house stood out because of its unusual shape.\tLa maison se distingue par sa forme inhabituelle.\nThe house was more expensive than I had expected.\tLa maison était plus coûteuse que je ne l'avais espéré.\nThe instrument panel has a very ergonomic layout.\tLe panneau de commandes de l'instrument a une disposition très ergonomique.\nThe invention of the transistor marked a new era.\tL'invention du transistor a marqué une nouvelle ère.\nThe job earns him half a million yen every month.\tLe boulot lui rapporte un demi million de yens par mois.\nThe king and his family live in the royal palace.\tLe roi et sa famille vivent au palais royal.\nThe king reigned over his people for forty years.\tLe roi a régné sur son peuple pendant quarante ans.\nThe lamp was suspended from the branch of a tree.\tLa lampe était suspendue à la branche d'un arbre.\nThe mail train lost most of its mail in the fire.\tLe train postal a perdu une bonne partie de son courrier dans l'incendie.\nThe man driving the bus is a good friend of mine.\tL'homme qui conduit le bus est un bon ami à moi.\nThe mayor didn't like what the journalists wrote.\tCe qu'écrivirent les journalistes déplut au maire.\nThe mayor didn't like what the journalists wrote.\tCe qu'écrivirent les journalistes déplut au bourgmestre.\nThe mayor didn't like what the journalists wrote.\tL'édile n'apprécia pas ce que les journalistes écrivirent.\nThe mayor presented him with the key to the city.\tLe maire lui offrit les clés de la ville.\nThe media blew the whole thing out of proportion.\tLes médias ont monté toute cette affaire en épingle.\nThe money should be distributed to those in need.\tL'argent devrait être distribué à ceux qui sont dans le besoin.\nThe new bridge will have been completed by March.\tLe nouveau pont sera terminé d'ici le mois de mars.\nThe older we grow, the poorer our memory becomes.\tPlus on devient vieux, plus notre mémoire est défaillante.\nThe only thing that matters is that you are safe.\tLa seule chose qui importe est que tu sois en sécurité.\nThe only thing that matters is that you are safe.\tLa seule chose qui compte est que vous soyez en sécurité.\nThe outcome depends entirely on your own efforts.\tLe résultat dépend entièrement de tes propres efforts.\nThe outcome depends entirely on your own efforts.\tLe résultat dépend entièrement de vos propres efforts.\nThe plane we boarded was bound for San Francisco.\tL'avion que nous avons pris était en partance pour San Francisco.\nThe police found the politician dead in his room.\tLa police retrouva l'homme politique mort dans sa chambre.\nThe policeman promised to investigate the matter.\tLa police a promis d'enquêter sur le sujet.\nThe poor young man finally became a great artist.\tLe pauvre jeune homme devint finalement un grand artiste.\nThe population of China is 8 times that of Japan.\tLa population de la Chine est huit fois celle du Japon.\nThe priest's cassock billowed gently in the wind.\tLa soutane du prêtre gonflait doucement au vent.\nThe princess begged forgiveness from the emperor.\tLa princesse implora le pardon de l'empereur.\nThe problem was that I had nothing to say to him.\tLe problème, c'est que je n'avais rien à lui dire.\nThe professor treated her as one of his students.\tLe professeur la considérait comme une de ses élèves.\nThe property was divided equally among the heirs.\tLes biens furent repartis équitablement entre les héritiers.\nThe red lines on the map represent railway lines.\tLes lignes rouges sur la carte représentent les chemins de fer.\nThe river which flows through Paris is the Seine.\tLe fleuve qui traverse Paris s'appelle la Seine.\nThe river which flows through Paris is the Seine.\tLa rivière qui coule à travers Paris est la Seine.\nThe rocket ought to have reached the moon by now.\tLa fusée devrait avoir atteint la Lune maintenant.\nThe salesman demonstrated how to use the machine.\tLe vendeur a fait la démonstration de l'utilisation de la machine.\nThe sentence doesn't have any grammatical errors.\tLa phrase ne comporte aucune faute de grammaire.\nThe soccer game will be played, even if it rains.\tLe match de foot sera disputé, même s'il doit pleuvoir.\nThe soldiers were ready to die for their country.\tLes soldats étaient prêts à mourir pour leur pays.\nThe stock price index soared to an all-time high.\tL'indice boursier a atteint des sommets.\nThe stockholders are making money hand over fist.\tLes actionnaires s'en mettent plein les poches.\nThe students are happy, but the teachers are not.\tLes élèves sont contents, mais pas les professeurs.\nThe suitcase contained nothing but dirty clothes.\tLa valise ne contenait rien d'autre que des vêtements sales.\nThe suspect was holed up in an abandoned factory.\tLe suspect était réfugié dans une usine abandonnée.\nThe thermometer says it's thirty degrees in here.\tLe thermomètre indique qu'il fait trente degrés là-dedans.\nThe time has come when I must tell you the truth.\tIl est temps pour moi de te dire la vérité.\nThe tree was felled with one hard blow of his ax.\tL'arbre fut abattu d'un seul fort coup de sa hache.\nThe weather forecast is not necessarily reliable.\tLes prévisions météo ne sont pas nécessairement fiables.\nThe weather was so cold that the lake froze over.\tLe temps était si froid que le lac gela.\nThe whole neighborhood was surprised at the news.\tTout le voisinage fut surpris par cette nouvelle.\nThere are a few apples on the tree, aren't there?\tIl y a quelques pommes sur cet arbre, n'est-ce pas ?\nThere are a lot of beautiful roses in our garden.\tIl y a beaucoup de jolies roses dans notre jardin.\nThere are a number of nice restaurants near here.\tIl y a de nombreux restaurants sympathiques près d'ici.\nThere are more stars in the sky than I can count.\tIl y a plus d'étoiles dans le ciel que je ne peux en compter.\nThere are seven men and four women in my section.\tIl y a sept hommes et quatre femmes dans ma section.\nThere is a strong bond of affection between them.\tIl y a un fort lien d'affection entre eux.\nThere is an urgent need for better communication.\tIl y a un besoin urgent de meilleure communication.\nThere is little, if any, hope of his being alive.\tIl a peu d'espoirs, si ce n'est aucun, qu'il soit en vie.\nThere is nothing that can't be bought with money.\tIl n'y a rien que l'argent ne puisse acheter.\nThere isn't much butter left in the refrigerator.\tIl ne reste plus beaucoup de beurre dans le frigo.\nThere was a Brazilian girl in my class last year.\tIl y avait une brésilienne dans ma classe l'année dernière.\nThere was a car accident near here, wasn't there?\tIl y a eu un accident de voiture près d'ici, n'est-ce pas?\nThere wasn't much news in last night's newspaper.\tIl n'y avait pas beaucoup de nouvelles dans le journal de la nuit dernière.\nThere were three empty wine bottles on the table.\tIl y avait trois bouteilles de vin vides sur la table.\nThere's a policeman outside who wants to see you.\tIl y a un policier dehors qui veut vous voir.\nThere's no need to hurry. We have plenty of time.\tIl n'est pas nécessaire de se presser. Nous disposons de plein de temps.\nThere's no need to panic. There's plenty of time.\tPas besoin de paniquer. Il reste beaucoup de temps.\nThere's not enough light in this room for sewing.\tIl n'y a pas assez de lumière dans cette pièce pour coudre.\nThere's really no reason for you to go to Boston.\tIl n'y a vraiment aucune raison pour toi d'aller à Boston.\nThere's really no reason for you to go to Boston.\tIl n'y a vraiment aucune raison pour vous d'aller à Boston.\nThere's something I'd like you to take a look at.\tIl y a quelque chose que je voudrais vous montrer.\nThese are just routine questions we ask everyone.\tCe sont juste des questions de routine que nous posons à tout le monde.\nThese problems will be solved in the near future.\tCes problèmes seront résolus dans un proche avenir.\nThey are collecting contributions for the church.\tIls collectent des dons pour l'église.\nThey are hardly likely to come at this late hour.\tIl est très peu probable qu'ils viennent à cette heure tardive.\nThey are used to the humid climate of the summer.\tIls sont accoutumés au climat humide de l'été.\nThey came up with a plan after a long discussion.\tIls ont imaginé un plan après une longue discussion.\nThey dug through the mountain and built a tunnel.\tIls creusèrent à travers la montagne et construisirent un tunnel.\nThey know the importance of protecting the earth.\tIls connaissent l'importance de protéger la terre.\nThey might pay me more if I could use a computer.\tIl se pourrait qu'ils me paient plus si je savais utiliser un ordinateur.\nThey say that you never get over your first love.\tOn dit qu'on ne se remet jamais de son premier amour.\nThey were transferred from one office to another.\tIls étaient renvoyés d'un bureau à l'autre.\nThey will tear down the old building in two days.\tIls vont démolir le vieux bâtiment en deux jours.\nThis book hasn't yet been translated into French.\tCe livre n'a pas encore été traduit en français.\nThis book hasn't yet been translated into French.\tCet ouvrage n'a pas encore été traduit en français.\nThis book is much more interesting than that one.\tCe livre-ci est bien plus intéressant que celui-là.\nThis flower is the most beautiful of all flowers.\tCette fleur est la plus belle de toutes les fleurs.\nThis investment is the opportunity of a lifetime.\tCe placement est l'occasion d'une vie.\nThis is an institution for the criminally insane.\tC'est une institution pour les fous criminels.\nThis is by far the tallest building in this city.\tC'est de loin le plus haut bâtiment de cette ville.\nThis is the largest temple that I have ever seen.\tC'est le plus grand temple que j'ai jamais vu.\nThis is the most interesting book I've ever read.\tC'est le livre le plus intéressant que j'aie jamais lu.\nThis is the pen that he signed the document with.\tC'est le stylo avec lequel il a signé le document.\nThis one's crowded, so let's take the next train.\tCelui-ci est bondé, prenons donc le train suivant.\nThis part of the library is closed to the public.\tCette zone de la bibliothèque est fermée au public.\nThis rug was made without the use of child labor.\tCe tapis est confectionné sans employer d'enfants.\nThis story is far more interesting than that one.\tCette histoire-ci est bien plus intéressante que celle-là.\nThis tastes a lot better than what I usually eat.\tÇa a bien meilleur goût que ce que je bouffe d'habitude.\nThis will be one of the best memories of my life.\tÇa sera l'un des meilleurs souvenirs de ma vie.\nTo make a long story short, everything went fine.\tEn un mot, tout s'est bien passé.\nTo tell the truth, I'm not in favor of it at all.\tÀ dire vrai, je n'approuve pas du tout.\nToday, many people worry about losing their jobs.\tDe nos jours, beaucoup de personnes craignent de perdre leur emploi.\nTom always drinks his coffee black with no sugar.\tTom prend toujours son café noir et sans sucre.\nTom always walks to school when it isn't raining.\tTom va toujours à l'école à pied quand il ne pleut pas.\nTom and I usually talked to each other in French.\tTom et moi nous parlons généralement en français.\nTom and Mary both left the room at the same time.\tTom et Mary ont tous les deux quitté la pièce au même moment.\nTom and Mary have adopted a minimalist lifestyle.\tTom et Marie ont adopté un mode de vie minimaliste.\nTom and Mary have different philosophies of life.\tTom et Marie ont des philosophies de vie différentes.\nTom and Mary spent the night out under the stars.\tTom et Marie ont passé la nuit à la belle étoile.\nTom asked Mary to go out to have dinner with him.\tTom a demandé à Marie de sortir pour dîner avec lui.\nTom asked Mary whether she'd like to go shopping.\tTom a demandé à Mary si elle aimerait aller faire les courses.\nTom asked Mary whether she'd like to go shopping.\tTom a demandé à Mary si elle aimerait aller faire du shopping.\nTom couldn't afford to buy the bicycle he wanted.\tTom ne pouvait pas se permettre d'acheter le vélo qu'il voulait.\nTom didn't know how to say \"thank you\" in French.\tTom ne savait pas comment dire \"merci\" en français.\nTom didn't know where Mary had put her suitcases.\tTom ne savait pas où Marie avait mis ses valises.\nTom didn't think he's ever get used to Thai food.\tTom ne pensait pas s'habituer à la nourriture thaïlandaise un jour.\nTom didn't think that anyone would recognize him.\tTom ne pensait pas que quiconque puisse le reconnaître.\nTom didn't want to come here, but he came anyway.\tTom ne voulait pas venir ici mais il est tout de même venu.\nTom doesn't have enough time for a cup of coffee.\tTom n'a pas le temps de prendre un café.\nTom doesn't know where Mary learned how to drive.\tTom ne sait pas où Mary a appris à conduire.\nTom doesn't spend much time thinking about money.\tTom ne passe pas beaucoup de temps à penser à l'argent.\nTom doesn't think I'm interested in what he does.\tTom ne pense pas que je sois intéressée par ce qu'il fait.\nTom doesn't want Mary to go anywhere without him.\tTom veut que Marie n'aille nulle part sans lui.\nTom doesn't want to go to such a dangerous place.\tTom ne veut pas aller dans un endroit aussi dangereux.\nTom forgot to tell us not to drink the tap water.\tTom a oublié de nous dire de ne pas boire l'eau du robinet.\nTom got out of the bathtub and dried himself off.\tTom sortit de la baignoire et se sécha.\nTom got out of the bathtub and dried himself off.\tTom est sorti de la baignoire et s'est séché.\nTom had his wallet stolen while he was in Boston.\tTom s'est fait voler son portefeuille quand il était à Boston.\nTom has a history of arrests for drunken driving.\tTom n'en est pas à sa première arrestation pour conduite en état d'ébriété.\nTom is our oldest child and Mary is the youngest.\tTom est notre plus vieux enfant et Marie est la plus jeune.\nTom kicked down the door and entered Mary's room.\tTom fracassa la porte et pénétra dans la chambre de Mary.\nTom must be aware that Mary is John's girlfriend.\tTom doit être conscient que Mary est la petite amie de John.\nTom promised Mary that he wouldn't do that again.\tTom a promis à Mary qu'il ne referait plus cela.\nTom put the first aid kit back where he found it.\tTom a remis la trousse de premiers soins là où il l'a trouvée.\nTom said he didn't even want to think about that.\tTom a dit qu'il ne voulait même pas penser à ça.\nTom said he'd like to have another cup of coffee.\tTom a dit qu'il aimerait une autre tasse de café.\nTom seems to be able to speak French fairly well.\tTom semble pouvoir parler français plutôt bien.\nTom seldom makes mistakes when writing in French.\tTom fait rarement des erreurs quand il écrit en français.\nTom showed Mary how to boil water in a paper cup.\tTom montra à Mary comment faire bouillir de l'eau dans un gobelet en carton.\nTom still isn't used to the way things work here.\tTom n'est toujours pas habitué à la façon dont les choses fonctionnent.\nTom takes the trash out every day at six o'clock.\tTom sort les poubelles tous les jours à six heures.\nTom told me he didn't take French in high school.\tTom m'a dit qu'il n'avait pas pris français au lycée.\nTom was arrested as a suspect in a criminal case.\tTom a été arrêté car il est suspecté dans une affaire de meurtre.\nTom was trying to control his own violent temper.\tTom essayait de contrôler son propre tempérament violent.\nTom wasn't aware of the gravity of the situation.\tTom n'était pas conscient de la gravité de la situation.\nTom's face feels rough because he needs to shave.\tLe visage de Tom est rugueux car il a besoin de se raser.\nTom's very unpredictable when he's been drinking.\tTom devient vraiment imprévisible lorsqu'il a bu.\nTwo years went by before I could find a good job.\tDeux ans se sont écoulés avant que j'aie pu trouver un bon travail.\nUnfortunately she already has a steady boyfriend.\tMalheureusement, elle a déjà un petit copain attitré.\nUnfortunately, I already have plans for that day.\tMalheureusement, j'ai déjà quelque chose de prévu ce jour-là.\nWe all knew that it would happen sooner or later.\tNous savions tous que ça arriverait tôt ou tard.\nWe all need to learn to deal with this situation.\tIl nous faut tous apprendre à faire face à cette situation.\nWe are bound to each other by a close friendship.\tUne amitié étroite nous lie.\nWe are still clinging to the dreams of our youth.\tNous nous raccrochons encore aux rêves de notre jeunesse.\nWe arrived at the museum after a ten-minute walk.\tNous sommes arrivés au musée après dix minutes de marche.\nWe can not learn Japanese without learning Kanji.\tOn ne peut pas apprendre le japonais sans apprendre les kanjis.\nWe confirmed the hotel reservations by telephone.\tNous avons confirmé les réservations à l'hôtel par téléphone.\nWe demanded that she should make up for the loss.\tNous exigeâmes qu'elle compense la perte.\nWe demanded that she should make up for the loss.\tNous avons exigé qu'elle compense la perte.\nWe had not gone very far when it started to rain.\tNous ne nous étions pas encore beaucoup éloignés qu'il se mit à pleuvoir.\nWe had to postpone the gathering because of rain.\tNous dûmes remettre la réunion à cause de la pluie.\nWe have a lot of good restaurants here in Boston.\tNous avons beaucoup de bons restaurants ici à Boston.\nWe have not yet discussed which method is better.\tNous n'avons pas encore discuté de quelle méthode est meilleure.\nWe have to bring our teaching methods up to date.\tNous devons mettre à jour notre méthode pédagogique.\nWe have to make sure that we never do this again.\tNous devons nous assurer de ne jamais refaire cela.\nWe hurried to the airport only to miss the plane.\tNous nous précipitâmes à l'aéroport pour finalement manquer l'avion.\nWe learn something new about ourselves every day.\tNous apprenons chaque jour quelque chose de nouveau sur nous-mêmes.\nWe looked at the sky, but couldn't see any stars.\tNous avons regardé le ciel, mais n'avons pas pu voir d'étoiles.\nWe must finish everything before Tuesday morning.\tNous devons tout terminer avant jeudi matin.\nWe must see the matter in its proper perspective.\tNous devons considérer l'affaire sous sa perspective intrinsèque.\nWe need a large amount of money for this project.\tCe projet nécessite des fonds financiers importants.\nWe need to add some statistics to the PowerPoint.\tNous devons ajouter quelques statistiques à la présentation Powerpoint.\nWe need to remember to mail this letter tomorrow.\tNous devons nous rappeler de poster cette lettre demain.\nWe pointed out to him the error in his reasoning.\tNous lui pointâmes l'erreur de son raisonnement.\nWe rented an apartment when we lived in New York.\tNous louions un appartement lorsque nous vivions à New York.\nWe rented an apartment when we lived in New York.\tNous avons loué un appartement quand nous vivions à New York.\nWe sat in lawn chairs and stared at the mountain.\tNous étions assis dans des chaises longues et contemplions la montagne.\nWe sat in lawn chairs and stared at the mountain.\tNous étions assises dans des chaises longues et contemplions la montagne.\nWe saved a lot of time by going down Park Street.\tNous avons gagné beaucoup de temps en passant par la rue du Parc.\nWe should ban advertising aimed towards children.\tNous devrions interdire la publicité à destination des enfants.\nWe should have phoned ahead and reserved a table.\tNous aurions dû téléphoner à l'avance et réserver une table.\nWe should make it if the traffic isn't too heavy.\tNous devrions y parvenir si la circulation n'est pas trop encombrée.\nWe sometimes judge others based on their actions.\tNous jugeons parfois les autres sur leurs actes.\nWe were glad when we saw a light in the distance.\tNous avons été heureux d'apercevoir une lumière au loin.\nWe were supposed to help Tom yesterday afternoon.\tNous étions censés aider Tom hier après-midi.\nWe were supposed to help Tom yesterday afternoon.\tOn était supposé aider Tom hier après-midi.\nWe'll allow a 5 percent discount off list prices.\tNous allons autoriser une remise de 5% sur le tarif.\nWe're looking for an apartment with two bedrooms.\tNous recherchons un appartement avec deux chambres.\nWe've decided to move the meeting to next Sunday.\tNous avons décidé de déplacer la réunion à dimanche prochain.\nWe've done something similar to that in the past.\tNous avons fait quelque chose comme cela dans le passé.\nWearing glasses makes you look more intellectual.\tPorter des lunettes vous fait paraître plus intellectuel.\nWhat are some foods you usually eat with a spoon?\tQuels sont les aliments que tu manges habituellement avec une cuillère ?\nWhat are some foods you usually eat with a spoon?\tQuels sont les aliments que vous mangez habituellement avec une cuillère ?\nWhat are some foods you usually eat with a spoon?\tQuels sont les aliments qu'on mange habituellement avec une cuillère ?\nWhat are you doing buying a house that expensive?\tQu'est-ce qui te prend d'acheter une maison aussi onéreuse ?\nWhat do you think of when you look at this photo?\tÀ quoi penses-tu lorsque tu regardes cette photo ?\nWhat do you think of when you look at this photo?\tÀ quoi pensez-vous lorsque vous regardez cette photo ?\nWhat has made you decide to work for our company?\tQu'est-ce qui vous a décidé à travailler pour notre société ?\nWhat is the best way to learn a foreign language?\tQuel est le meilleur moyen d'apprendre une langue étrangère ?\nWhat is the distance between New York and London?\tQuelle distance y a-t-il entre New-York et Londres ?\nWhat language do they speak in the United States?\tQuelle langue parle-t-on aux USA ?\nWhat language do they speak in the United States?\tQuelle langue parle-t-on aux États-Unis ?\nWhat they did next was bad, even by my standards.\tCe qu'ils firent ensuite fut mauvais, même selon mes normes.\nWhat they did next was bad, even by my standards.\tCe qu'elles firent ensuite fut mauvais, même selon mes normes.\nWhat they did next was bad, even by my standards.\tCe qu'ils ont fait ensuite a été mauvais, même selon mes normes.\nWhat they did next was bad, even by my standards.\tCe qu'elles ont fait ensuite a été mauvais, même selon mes normes.\nWhat'll you do if I don't give you my permission?\tQue feras-tu si je ne te donne pas mon autorisation ?\nWhen I hear that song, I think about my hometown.\tLorsque j'entends cette chanson, je pense à ma ville natale.\nWhen was the last time you had a really good cry?\tQuand as-tu pleuré un bon coup pour la dernière fois ?\nWhether you like it or not, you'll have to do it.\tQue cela te plaise ou non, il faudra que tu le fasses.\nWhich do you like better, white wine or red wine?\tLequel préfères-tu : le vin blanc ou le vin rouge ?\nWho do you think you are to speak to me that way?\tQui êtes-vous pour m'adresser la parole de la sorte ?\nWho is currently the richest person in the world?\tQui est actuellement la personne la plus riche au monde ?\nWho is currently the richest person in the world?\tQuelle est actuellement la personne la plus riche au monde ?\nWho sings the best of all the boys in your class?\tDes garçons de ta classe, qui chante le mieux ?\nWhy are you sorry for something you haven't done?\tPourquoi es-tu désolée pour quelque chose que tu n'as pas fait ?\nWhy don't you meet me out front in a few minutes?\tEt si vous me retrouviez devant, à l'extérieur, dans quelques minutes ?\nWhy don't you meet me out front in a few minutes?\tEt si tu me retrouvais devant, à l'extérieur, dans quelques minutes ?\nWhy don't you start by telling us where you went?\tPourquoi ne commencez-vous pas par nous dire où vous êtes allé ?\nWhy don't you start by telling us where you went?\tPourquoi ne commencez-vous pas par nous dire où vous êtes allés ?\nWhy don't you start by telling us where you went?\tPourquoi ne commencez-vous pas par nous dire où vous êtes allées ?\nWill she forgive him for forgetting her birthday?\tLui pardonnera-t-elle d'avoir oublié son anniversaire ?\nWinning a lottery is an easy way of making money.\tRemporter une loterie est un moyen facile de gagner de l'argent.\nWould you be interested in having dinner with me?\tVous intéresserait-il de souper avec moi ?\nWould you be willing to help me clean the garage?\tSeriez-vous prêt à m'aider à nettoyer le garage ?\nWould you be willing to help me clean the garage?\tSeriez-vous prêts à m'aider à nettoyer le garage ?\nWould you be willing to help me clean the garage?\tSeriez-vous prête à m'aider à nettoyer le garage ?\nWould you be willing to help me clean the garage?\tSeriez-vous prêtes à m'aider à nettoyer le garage ?\nWould you be willing to help me clean the garage?\tSerais-tu prêt à m'aider à nettoyer le garage ?\nWould you be willing to help me clean the garage?\tSerais-tu prête à m'aider à nettoyer le garage ?\nWould you like to go to the theater this evening?\tVoulez-vous aller au théâtre ce soir ?\nWould you mind if we put this off until tomorrow?\tVerriez-vous un inconvénient à ce que nous remettions ceci à demain ?\nWould you mind if we put this off until tomorrow?\tVerrais-tu un inconvénient à ce que nous remettions ceci à demain ?\nWring those clothes well before you hang them up.\tEssorez soigneusement ces vêtements avant de les suspendre.\nYes, it's true, but he doesn't need to know that.\tOui, c'est vrai, mais il n'a pas besoin de le savoir.\nYou are free to do as you please with your money.\tVous êtes libre de faire ce que bon vous semble avec votre argent.\nYou can get from Washington to New York by train.\tVous pouvez aller de Washington à New York en train.\nYou can get from Washington to New York by train.\tVous pouvez vous rendre de Washington à New York en train.\nYou can get from Washington to New York by train.\tVous pouvez vous rendre de Washington à New York par le rail.\nYou can use margarine as a substitute for butter.\tVous pouvez utiliser de la margarine comme substitut au beurre.\nYou can't be too careful in situations like this.\tOn ne saurait être trop prudent dans de telles situations.\nYou can't be too careful in situations like this.\tOn ne saurait être trop prudente dans de telles situations.\nYou can't buy anything interesting in this store.\tTu ne peux rien acheter d'intéressant dans ce magasin.\nYou can't drink seawater because it is too salty.\tTu ne peux pas boire l'eau de mer car elle est trop salée.\nYou can't hurt me any more than you already have.\tTu ne peux pas me blesser davantage que tu l'as déjà fait.\nYou can't hurt me any more than you already have.\tVous ne pouvez pas me blesser davantage que vous l'avez déjà fait.\nYou can't just make up the rules as you go along.\tVous ne pouvez pas juste inventer les règles en cours de route.\nYou can't leave until you've said goodbye to Tom.\tTu ne peux pas partir tant que tu n'as pas dit au revoir à Tom.\nYou can't leave until you've said goodbye to Tom.\tVous ne pouvez pas partir tant que vous n'avez pas dit au revoir à Tom.\nYou can't make me do anything I don't want to do.\tTu ne peux pas me forcer à faire quoi que ce soit que je ne veux pas faire.\nYou don't get up as early as your sister, do you?\tTu ne te lèves pas aussi tôt que ta sœur, n'est-ce pas ?\nYou don't understand how worried I was about you.\tTu ne comprends pas combien j'étais soucieuse à ton sujet.\nYou don't understand how worried I was about you.\tTu ne comprends pas combien j'étais soucieux à ton sujet.\nYou don't understand how worried I was about you.\tVous ne comprenez pas combien j'étais soucieuse à votre sujet.\nYou don't understand how worried I was about you.\tVous ne comprenez pas combien j'étais soucieux à votre sujet.\nYou don't understand how worried I was about you.\tVous ne comprenez pas combien je me faisais de souci à votre sujet.\nYou don't understand how worried I was about you.\tTu ne comprends pas combien je me faisais de souci à ton sujet.\nYou have the freedom to travel wherever you like.\tTu as la liberté de voyager où bon te semble.\nYou may take either the big box or the small one.\tVous pouvez prendre la grosse boîte ou bien la petite.\nYou may take either the big box or the small one.\tVous pouvez prendre la grande boîte ou la petite.\nYou must accept the king of Spain as your leader.\tTu dois reconnaître le Roi d'Espagne comme souverain.\nYou must bear in mind what I've just said to you.\tTu dois garder à l'esprit ce que je viens de te dire.\nYou must do the work, even if you do not like it.\tTu dois faire le travail, même s'il ne te plait pas.\nYou need to be careful when you're driving a car.\tIl faut que tu sois prudent quand tu conduis une voiture.\nYou need to be careful when you're driving a car.\tIl faut que tu sois prudente quand tu conduis une voiture.\nYou need to calm down and pull yourself together.\tIl te faut te calmer et reprendre tes esprits.\nYou need to calm down and pull yourself together.\tIl vous faut vous calmer et reprendre vos esprits.\nYou promised me that you would take care of them.\tTu m'as promis que tu prendrais soin d'eux.\nYou see that tall building over there, don't you?\tTu vois ce bâtiment là-bas, n'est-ce pas ?\nYou see that tall building over there, don't you?\tVous voyez ce bâtiment là-bas, n'est-ce pas ?\nYou should apologize to her for being so distant.\tTu devrais t'excuser auprès d'elle, pour ta distance.\nYou should have told me about the problem sooner.\tVous auriez dû me parler du problème plus tôt.\nYou should have told me about the problem sooner.\tTu aurais dû me parler du problème plus tôt.\nYou should practice playing the violin every day.\tTu devrais t'exercer au violon tous les jours.\nYou shouldn't drink so much coffee late at night.\tTu ne devrais pas boire autant de café tard dans la nuit.\nYou shouldn't take the things Tom says seriously.\tTu ne devrais pas prendre ce que Tom dit au sérieux.\nYou shouldn't take the things Tom says seriously.\tVous ne devriez pas prendre les choses que Tom dit au sérieux.\nYou shouldn't take the things Tom says seriously.\tVous ne devriez pas prendre ce que Tom dit au sérieux.\nYou will miss Japanese food in the United States.\tLa nourriture japonaise va te manquer aux États-Unis.\nYou'd better eat everything that's on your plate.\tTu ferais mieux de manger tout ce qui est dans ton assiette.\nYou'd better eat everything that's on your plate.\tVous feriez mieux de manger tout ce qui se trouve dans votre assiette.\nYou'd better eat everything that's on your plate.\tTu ferais mieux de manger tout ce qui se trouve dans ton assiette.\nYou'd better eat everything that's on your plate.\tVous feriez mieux de manger tout ce qui est dans votre assiette.\nYou'll be able to see the difference very easily.\tVous pourrez voir la différence très facilement.\nYou'll get into trouble if your parents find out.\tTu vas avoir des ennuis si tes parents découvrent ça.\nYou'll get into trouble if your parents find out.\tTu vas avoir des ennuis si tes parents le découvrent.\nYou'll get into trouble if your parents find out.\tVous allez avoir des ennuis si vos parents découvrent ça.\nYou'll get into trouble if your parents find out.\tVous allez avoir des ennuis si vos parents le découvrent.\nYou're still too young to get a driver's license.\tTu es trop jeune encore pour obtenir un permis de conduire.\nYou're the best thing that's ever happened to me.\tVous êtes la meilleure chose qui me soit jamais arrivée.\nYou're the best thing that's ever happened to me.\tC'est vous qui êtes la meilleure chose qui me soit jamais arrivée.\nYou're the one who decided to do this job, right?\tC'est toi qui as décidé d'effectuer ce boulot, pas vrai ?\nYou've got to be crazy to do something like that.\tIl faut être cinglé pour faire quelque chose comme ça.\nYour father's friends aren't his only supporters.\tLes partisans de ton père ne se réduisent pas à ses amis.\nYour stupid remark just added fuel to the flames.\tTa remarque idiote n'a fait qu'attiser les flammes.\nYour tea will get cold if you don't drink it now.\tTon thé va refroidir si tu ne le bois pas maintenant.\nZurich is considered to be a major financial hub.\tZurich est considérée comme une métropole financière.\n\"How long will the meeting last?\" \"For two hours.\"\t«Combien de temps va durer la réunion ?» «Deux heures.»\n\"When do you watch TV?\" \"I watch TV after dinner.\"\t« Quand regardes-tu la télévision ? » « Après avoir dîné. »\n\"Why aren't you going?\" \"Because I don't want to.\"\t\"Pourquoi tu n'y vas pas ?\" \"Parce que je ne veux pas.\"\n\"Why aren't you going?\" \"Because I don't want to.\"\t\"Pourquoi ne viens-tu pas ?\" \"Parce que je ne veux pas.\"\n\"Will he pass the examination?\" \"I am afraid not.\"\t\"Réussira-t-il son examen ?\" \"Je crains que non.\"\nA bad cold prevented her from attending the class.\tUn mauvais rhume l'empêcha d'assister au cours.\nA bad writer's prose is full of hackneyed phrases.\tLa prose d'un mauvais écrivain est pleine de phrases éculées.\nA bird in the hand is better than two in the bush.\tUn tiens vaut mieux que deux tu l'auras.\nA bird in the hand is better than two in the bush.\tMieux vaut un oiseau dans la main que cent dans les airs.\nA boy of seventeen is often as tall as his father.\tUn adolescent de 17 ans est souvent aussi grand que son père.\nA doctor tried to remove the bullet from his back.\tUn docteur tenta d'extraire une balle de son dos.\nA fallen leaf floated on the surface of the water.\tUne feuille morte flottait à la surface de l'eau.\nA gang of three robbed the bank in broad daylight.\tUn groupe de trois individus a dévalisé la banque en plein jour.\nA good many people have told me to take a holiday.\tBeaucoup de gens m'ont dit de prendre des vacances.\nA lack of sleep affected the singer's performance.\tUn manque de sommeil affecta la prestation du chanteur.\nA poor rice harvest will get us into real trouble.\tUne mauvaise récolte de riz nous mettra en sérieuse difficulté.\nA trip to Mars may become possible in my lifetime.\tVoyager sur Mars pourrait devenir possible au cours de mon existence.\nAccording to the thermometer, it's thirty degrees.\tSelon le thermomètre, il fait trente degrés.\nAccording to the thermometer, it's thirty degrees.\tD'après le thermomètre, il fait trente degrés.\nAdvances in science don't always benefit humanity.\tLes progrès de la science ne profitent pas toujours au genre humain.\nAfter they had finished their work, they went out.\tAprès qu'ils eurent achevé leur travail, ils sortirent.\nAll of the apples that fall are eaten by the pigs.\tToutes les pommes qui tombent au sol sont mangées par les porcs.\nAll of the students have to wear the same uniform.\tTous les élèves doivent porter le même uniforme.\nAll of the students have to wear the same uniform.\tToutes les élèves doivent porter le même uniforme.\nAll of the students have to wear the same uniform.\tTous les élèves doivent revêtir le même uniforme.\nAll passengers are required to show their tickets.\tTous les passagers sont priés de présenter leurs tickets.\nAll the members of the committee hate one another.\tTous les membres du comité se haïssent l'un l'autre.\nAlthough I may be unhappy, I won't commit suicide.\tMême si je suis peut-être malheureux, je ne me suiciderai pas.\nAmericans are frank enough to say what they think.\tLes Américains disent franchement ce qu'ils pensent.\nAn accident prohibited his attending the ceremony.\tUn accident l'empêcha d'assister à la cérémonie.\nAn animal can be much more dangerous when wounded.\tUn animal peut être bien plus dangereux lorsqu'il est blessé.\nAn individual is the smallest unit of the society.\tUn individu est la plus petite unité de la société.\nAre you content with your position in the company?\tÊtes-vous satisfait de votre situation dans la société ?\nAre you doing anything special for New Year's Eve?\tFaites-vous quelque chose de particulier pour le réveillon du Nouvel An ?\nAre you doing anything special for New Year's Eve?\tFais-tu quelque chose de particulier pour le réveillon du Nouvel An ?\nAre you seriously thinking about getting involved?\tPensez-vous sérieusement à vous impliquer ?\nAre you seriously thinking about getting involved?\tPenses-tu sérieusement à t'impliquer ?\nAs a boy, he would go to the seaside every summer.\tEnfant, il allait à la mer tous les étés.\nAs long as we love each other, we'll be all right.\tTout ira bien, tant qu'on s'aimera.\nAs more paper money came into use, the value fell.\tPuisque plus de monnaie-papier est entrée en usage, la valeur a chuté.\nAs soon as it gets dark, the fireworks will start.\tDès qu'il fera nuit, les feux d'artifice commenceront.\nAt a young age, I had to learn to fend for myself.\tJeune, il a fallu que je me débrouille par moi-même.\nAt first, they were all convinced he was innocent.\tDans un premier temps, ils étaient tous convaincus qu'il était innocent.\nBlack smoke spewed out of the third-story windows.\tDe la fumée noire s'exhalait par les fenêtres du troisième étage.\nBoth of us began to smile almost at the same time.\tNous avons tous les deux commencé à sourire presque en même temps.\nBy the time we got there, it was already too late.\tLe temps que nous y parvenions, c'était déjà trop tard.\nBy the way, what happened to the money I lent you?\tAu fait, qu'est-il arrivé à l'argent que je t'ai prêté?\nCan I have the paper when you're finished with it?\tPuis-je avoir le journal une fois que vous en aurez terminé ?\nCan I have the paper when you're finished with it?\tPuis-je avoir le journal une fois que tu en auras terminé ?\nCan you at least pretend you're enjoying yourself?\tPeux-tu au moins faire semblant de t'amuser ?\nCan you at least pretend you're enjoying yourself?\tPouvez-vous au moins faire semblant de vous amuser ?\nCan you give me a ride to the office on Wednesday?\tTu pourras me poser au bureau mercredi ?\nCan you make it so she can get on that TV program?\tPeux-tu arranger le coup pour qu'elle figure dans cette émission de télé ?\nCan you please tell me what time the train leaves?\tPouvez-vous me dire à quelle heure le train part, s'il vous plaît ?\nCan you remember how slow the Internet used to be?\tTe rappelles-tu comme Internet était lent ?\nCan you remember the first time we met each other?\tPeux-tu te rappeler la première fois que nous nous sommes rencontrés ?\nCan you remember the first time we met each other?\tPouvez-vous vous rappeler la première fois que nous nous sommes rencontrés ?\nCan you touch your toes without bending your legs?\tArrives-tu à te toucher les orteils sans plier les jambes ?\nCanada is really big and there are lots of people.\tLe Canada est vraiment grand et il y a beaucoup de monde.\nCertain details of the crime were not made public.\tCertains détails du crime n'ont pas été rendus publics.\nChristians view human nature as inherently sinful.\tLes chrétiens considèrent la nature humaine comme intrinsèquement coupable.\nCircumstances forced us to cancel our appointment.\tLes circonstances nous forcèrent à annuler notre rendez-vous.\nCompared to you, I'm just a beginner at this game.\tComparé à vous, je ne suis qu'un débutant à ce jeu.\nCompared to you, I'm just a beginner at this game.\tComparée à vous, je ne suis qu'une débutante à ce jeu.\nCompared to you, I'm just a beginner at this game.\tComparé à toi, je ne suis qu'un débutant à ce jeu.\nCompared to you, I'm just a beginner at this game.\tComparée à toi, je ne suis qu'une débutante à ce jeu.\nCompared to you, I'm only a beginner at this game.\tComparé à vous, je ne suis qu'un débutant à ce jeu.\nCompared to you, I'm only a beginner at this game.\tComparée à vous, je ne suis qu'une débutante à ce jeu.\nCompared to you, I'm only a beginner at this game.\tComparé à toi, je ne suis qu'un débutant à ce jeu.\nCompared to you, I'm only a beginner at this game.\tComparée à toi, je ne suis qu'une débutante à ce jeu.\nCould you keep an eye on my suitcase for a moment?\tPourriez-vous garder l'œil sur ma valise un moment ?\nCould you please tell me again who your father is?\tPourrais-tu me dire à nouveau qui est ton père ?\nCould you please tell me again who your father is?\tPourriez-vous me dire à nouveau qui est votre père ?\nCould you verify that your computer is plugged in?\tPourriez-vous vérifier que votre ordinateur est bien branché ?\nDeclawing cats is forbidden in the European Union.\tArracher les griffes des chats est interdit dans l'Union Européenne.\nDid you pick up on that strange tone in his voice?\tAs-tu remarqué cette intonation bizarre dans sa voix ?\nDid you pick up on that strange tone in his voice?\tAvez-vous remarqué cette intonation bizarre dans sa voix ?\nDo you know Tom well enough to ask him to do this?\tConnais-tu Tom suffisamment pour lui demander de faire ceci?\nDo you know anyone who was on that ship that sunk?\tConnais-tu qui que ce soit qui se trouvait sur ce navire qui a coulé ?\nDo you know anyone who was on that ship that sunk?\tConnaissez-vous qui que ce soit qui se trouvait sur ce navire qui a coulé ?\nDo you know anyone who was on that ship that sunk?\tConnais-tu qui que ce soit qui se trouvait sur ce vaisseau qui a coulé ?\nDo you know anyone who was on that ship that sunk?\tConnaissez-vous qui que ce soit qui se trouvait sur ce vaisseau qui a coulé ?\nDo you know where I might find small cowboy boots?\tSavez-vous où je pourrais trouver des petites bottes de cowboy ?\nDo you know where I'll end up if I take this road?\tSavez-vous où je me retrouverai, si je prends cette route ?\nDo you know who that tall blonde girl in green is?\tSais-tu qui est cette grande fille blonde habillée en vert ?\nDo you really want to put your money in that bank?\tVeux-tu vraiment mettre ton argent dans cette banque ?\nDo you really want to put your money in that bank?\tVoulez-vous vraiment mettre votre argent dans cette banque ?\nDo you think I can use my cellphone in the shower?\tPenses-tu que je puisse utiliser mon téléphone portable dans la douche ?\nDo you think I can use my cellphone in the shower?\tPensez-vous que je puisse utiliser mon téléphone portable dans la douche ?\nDo you think it's wise to wear your uniform today?\tPenses-tu qu'il soit avisé de porter ton uniforme aujourd'hui ?\nDo you think it's wise to wear your uniform today?\tPensez-vous qu'il soit avisé de porter votre uniforme aujourd'hui ?\nDo you think that handguns should be made illegal?\tPenses-tu que les armes de poing devraient être rendues illégales ?\nDo you think that handguns should be made illegal?\tPensez-vous que les armes de poing devraient être rendues illégales ?\nDo you want the long version or the short version?\tVeux-tu la version longue ou la version courte?\nDo you want the long version or the short version?\tVeux-tu la version longue ou abrégée?\nDon't be so greedy or you'll wind up with nothing.\tNe soyez pas si gourmand ou vous finirez sans rien.\nDon't disappoint me the way you did the other day.\tNe me déçois pas comme tu l'as fait l'autre jour.\nDon't feel obligated to talk if you don't want to.\tNe te sens pas obligé de parler si tu ne veux pas.\nDon't forget to turn off the gas before going out.\tN'oubliez pas de couper le gaz avant de sortir.\nDon't tell your father you want to become a clown.\tNe dis pas à ton père que tu veux devenir clown.\nDon't worry about your dog. I'll take care of him.\tNe vous faites pas de souci pour votre chien. J'en prendrai soin.\nDon't worry about your dog. I'll take care of him.\tNe t'en fais pas pour ton chien. Je m'occuperai de lui.\nDozens of young people attended the demonstration.\tDes dizaines de jeunes ont assisté à la manifestation.\nEvery day my dad leaves for work at eight o'clock.\tChaque jour mon père part au travail à huit heures.\nEvery time I see this photo, I think of my father.\tÀ chaque fois que je vois cette photo, je pense à mon père.\nFather translated the German letter into Japanese.\tPère traduisit la lettre allemande en japonais.\nFew people can speak a foreign language perfectly.\tPeu de gens parlent parfaitement une langue étrangère.\nFew students are interested in reading this novel.\tPeu d'étudiants sont intéressés par la lecture de ce roman.\nFill in this application form and send it at once.\tRemplissez ce formulaire de candidature et envoyez-le immédiatement.\nFor certain tasks, my computer can be very useful.\tPour certaines tâches, mon ordinateur peut être bien utile.\nFrance has a higher birthrate than most of Europe.\tLa France a un taux de natalité plus élevé que la plupart des autres pays européens.\nFrom now on, there is no reason to worry any more.\tDésormais, il n'y a plus d'inquiétude à avoir.\nGet me all the information you can on this matter.\tRapporte-moi toutes les informations que tu peux sur cette affaire.\nGirls are often judged by how attractive they are.\tOn juge souvent les filles sur leur séduction.\nGladiators fought with lions inside the Colosseum.\tLes gladiateurs combattaient des lions à l'intérieur du Colisée.\nGrades are important, but they are not everything.\tLes notes sont importantes, mais elles ne sont pas tout.\nHad he heard the news, he might have been shocked.\tS'il avait entendu les nouvelles, il aurait pu être choqué.\nHad he heard the news, he might have been shocked.\tEût-il entendu les nouvelles, il aurait pu être choqué.\nHave there been any signs of the missing children?\tY a-t-il eu le moindre signe des enfants disparus ?\nHave you heard from him since he left for America?\tAs-tu des nouvelles de lui depuis qu'il est parti en Amérique?\nHave you seen a little girl with short black hair?\tAvez-vous vu une fillette aux cheveux noirs et courts ?\nHe always gets home at six o'clock in the evening.\tIl arrive toujours chez lui à six heures du soir.\nHe apologized to us for having broken his promise.\tIl nous présenta ses excuses pour n'avoir pas tenu sa promesse.\nHe began his meal by drinking half a glass of ale.\tIl commença son repas en buvant un demi verre de bière.\nHe betrayed us by telling the enemy where we were.\tIl nous trahit en disant à l'ennemi où nous nous trouvions.\nHe chose not to run for the presidential election.\tIl a choisi de ne pas se présenter à l'élection présidentielle.\nHe cleared his throat before starting the lecture.\tIl s'éclaircit la gorge avant de commencer le cours.\nHe confirmed that it was the wreck of the Titanic.\tIl a confirmé que c'était l'épave du Titanic.\nHe described the accident in detail to the police.\tIl a décrit l'accident en détail à la police.\nHe didn't know what to say, so he remained silent.\tIl ne savait pas quoi dire, alors il resta silencieux.\nHe didn't know what to say, so he remained silent.\tIl ne savait pas quoi dire, alors il est resté silencieux.\nHe didn't say so, but he implied that I was lying.\tIl ne l'a pas dit mais il a insinué que je mentais.\nHe doesn't even remember what happened last night.\tIl ne se souvient même pas de ce qui est arrivé hier soir.\nHe doesn't even remember what happened last night.\tIl ne se souvient même pas de ce qui est arrivé hier au soir.\nHe doesn't even remember what happened last night.\tIl ne se souvient même pas de ce qui s'est passé hier soir.\nHe doesn't even remember what happened last night.\tIl ne se souvient même pas de ce qui s'est passé hier au soir.\nHe doesn't even remember what happened last night.\tIl ne se souvient même pas de ce qui s'est passé la nuit dernière.\nHe doesn't even remember what happened last night.\tIl ne se souvient même pas de ce qui est arrivé la nuit dernière.\nHe doesn't even remember what happened last night.\tIl ne se souvient même pas de ce qui est arrivé la nuit passée.\nHe doesn't even remember what happened last night.\tIl ne se souvient même pas de ce qui s'est passé la nuit passée.\nHe doesn't have the necessary skills for that job.\tIl ne dispose pas des compétences nécessaires à cet emploi.\nHe failed to become a cabinet member at that time.\tAujourd'hui, il a échoué à devenir un membre du cabinet.\nHe fashioned a walking stick from a fallen branch.\tIl façonna une branche tombée en un bâton de marche.\nHe finished drinking one beer and ordered another.\tIl finit de boire une bière et en commanda une autre.\nHe gave me all the money he was carrying with him.\tIl me donna tout l'argent qu'il transportait.\nHe got all his information from secondary sources.\tIl a obtenu toutes ses informations de sources officieuses.\nHe has not come yet. He may have missed the train.\tIl n'est pas encore venu. Peut-être a-t-il manqué le train.\nHe has to have his blood pressure taken every day.\tOn doit lui prendre sa pression artérielle chaque jour.\nHe intimated that all is not well in his marriage.\tIl laissa entendre que tout n'est pas rose dans son mariage.\nHe is busy preparing for the entrance examination.\tIl est occupé à préparer son examen d'entrée.\nHe is capable of teaching both English and French.\tIl peut enseigner le français et l'anglais.\nHe is looking at what used to be my father's desk.\tIl regarde ce qui fut le bureau de mon père.\nHe is not a patient but a doctor in this hospital.\tCe n'est pas un patient, il est médecin dans cet hôpital.\nHe is one of the American presidential candidates.\tIl est un des candidats aux présidentielles américaines.\nHe is one of the American presidential candidates.\tIl est l'un des candidats aux présidentielles étatsuniennes.\nHe is one of the greatest scientists in the world.\tC'est l'un des plus éminents scientifiques au monde.\nHe is the only one of my friends that is talented.\tC'est le seul de mes amis qui a du talent.\nHe is well acquainted with the history of England.\tIl connaît bien l'histoire de l'Angleterre.\nHe is, without question, the best man for the job.\tC'est certainement la personne la plus apte pour ce travail.\nHe is, without question, the best man for the job.\tIl est, sans conteste, le plus qualifié pour ce travail.\nHe laid down his pen and leaned back in his chair.\tIl reposa son stylo et se laissa aller contre le dossier de sa chaise.\nHe memorized that poem when he was five years old.\tIl a mémorisé ce poème quand il avait cinq ans.\nHe memorized that poem when he was five years old.\tIl mémorisa ce poème quand il avait cinq ans.\nHe must be crazy to go out in this stormy weather.\tIl doit être fou pour sortir par ce temps orageux.\nHe never fails to write to his mother every month.\tIl ne manque jamais d’écrire chaque mois à sa mère.\nHe never takes any notice of what his father says.\tIl ne tient jamais compte de ce que lui dit son père.\nHe placed emphasis on the importance of education.\tIl a mis l'accent sur l'importance de l'éducation.\nHe said that he had told you to speak more slowly.\tIl a dit qu'il t'avait demandé de parler plus lentement.\nHe said that his father was ill, but it was a lie.\tIl dit que son père était malade, mais c'était un mensonge.\nHe spoke slowly enough for everyone to understand.\tIl parlait suffisamment lentement pour que chacun comprenne.\nHe thinks he is somebody, but really he is nobody.\tIl croit qu'il est quelqu'un, mais en vérité il n'est personne.\nHe told us such a funny story that we all laughed.\tIl nous raconta une histoire tellement bizarre que nous avons tous ri.\nHe told us such a funny story that we all laughed.\tIl nous a raconté une histoire tellement drôle que nous avons tous ri.\nHe tried with all his might to push the door open.\tIl essaya de toutes ses forces d'ouvrir la porte en la poussant.\nHe used a headache as an excuse for leaving early.\tIl a pris prétexte d’un mal de tête pour rentrer plus tôt.\nHe waited for several seconds and opened the door.\tIl attendit plusieurs secondes et ouvrit la porte.\nHe was angry because I wouldn't give him any help.\tIl était en colère car je refusais de l'aider.\nHe was elected to the Senate in the last election.\tAux dernières élections il a été élu au sénat.\nHe was in the habit of taking a walk after supper.\tIl avait l'habitude de se promener après souper.\nHe was one of the unsung heroes of the revolution.\tIl était l'un des héros méconnus de la révolution.\nHe went on talking as though nothing had happened.\tIl continua de parler comme si de rien n'était.\nHe will not change his mind in spite of my advice.\tMalgré mon conseil, il ne changera pas d'avis.\nHis father passed away last night in the hospital.\tSon père est décédé la nuit dernière à l'hôpital.\nHis helplessness appeals to her motherly sympathy.\tSon impuissance éveille sa compassion maternelle.\nHis sisters as well as he are now living in Kyoto.\tSes sœurs, tout comme lui, vivent maintenant à Kyoto.\nHis supervisor gave him a sterling recommendation.\tSon chef de rayon lui donna un conseil en or.\nHokkaido is located in the northern part of Japan.\tHokkaïdo est située dans la partie nord du Japon.\nHoover was born in the farm state of Iowa in 1874.\tHoover est né en 1874 dans l'État agricole de l'Iowa.\nHope of finding the child alive is fading rapidly.\tL'espoir de trouver l'enfant vivant s'estompe rapidement.\nHow long does it take to get to the train station?\tCombien de temps cela prend-il pour arriver à la station ?\nHow many medals did the Japanese athletes collect?\tCombien de médailles les athlètes japonais ont-ils récoltées ?\nHow many of Shakespeare's tragedies have you read?\tCombien de tragédies de Shakespeare avez-vous lues ?\nHow much money did you spend on your last holiday?\tCombien d'argent as-tu claqué pour tes dernières vacances ?\nHow much money did you spend on your last holiday?\tCombien d'argent avez-vous dépensé pour vos dernières vacances ?\nHow much money did you spend on your last holiday?\tCombien d'argent as-tu dépensé pour tes dernières vacances ?\nHow old were you when you started studying French?\tQuel âge avais-tu quand tu as commencé à apprendre le français ?\nHow old were you when your family moved to Boston?\tQuel âge avais-tu quand ta famille a déménagé à Boston ?\nHow old were you when your family moved to Boston?\tQuel âge aviez-vous quand votre famille a déménagé à Boston ?\nHurry up, and you will be able to catch the train.\tDépêche-toi et tu ne rateras pas le train.\nI absolutely must know what you're planning to do.\tIl me faut absolument savoir ce que vous prévoyez de faire.\nI absolutely must know what you're planning to do.\tIl me faut absolument savoir ce que tu prévois de faire.\nI am afraid things will take a turn for the worse.\tJe crains que les choses n'empirent.\nI am grateful to you for inviting me to the party.\tJe vous suis redevable de m'avoir invité à la fête.\nI am not sure, but I think I want to be a teacher.\tJe ne suis pas sûr, mais je pense vouloir être enseignant.\nI am not used to being spoken to in that rude way.\tJe n'ai pas l'habitude de parler de cette vulgaire manière.\nI am of the opinion that this is the way to do it.\tJe pense que c'est la bonne manière de le faire.\nI am of the opinion that this is the way to do it.\tJe pense qu'on doit le faire ainsi.\nI am sorry that she is absent from the conference.\tJe suis désolé qu'elle soit absente de la conférence.\nI am sorry that she is absent from the conference.\tJe suis désolée qu'elle soit absente de la conférence.\nI am surprised that she refused such a good offer.\tJe suis étonné qu'elle ait refusé une si bonne offre.\nI am very happy that you have agreed to that plan.\tJe suis très heureux que vous ayez souscrit à ce projet.\nI asked Tom to come yesterday, but he didn't come.\tJ'ai demandé à Tom de venir hier, mais il n'est pas venu.\nI beg your pardon. I didn't quite catch your name.\tJe vous demande pardon, je n'ai pas bien compris votre nom.\nI came across this book in a secondhand bookstore.\tJe suis tombé sur cet ouvrage chez un bouquiniste.\nI came near being drowned, trying to rescue a boy.\tJe me suis presque noyé en essayant de sauver un garçon.\nI came to the conclusion that something was wrong.\tJ'en suis arrivé à la conclusion que quelque chose était étrange.\nI can drive to Boston and back on one tank of gas.\tJe peux rouler jusqu'à Boston et faire le retour avec un plein d'essence.\nI can't afford to rent a house like this in Tokyo.\tJe ne peux pas me permettre de louer une telle maison à Tokyo.\nI can't afford to shop at such an expensive store.\tJe n'ai pas les moyens de faire mes courses dans un magasin aussi cher.\nI can't believe he renounced his U.S. citizenship.\tJe n'arrive pas à croire qu'il ait renoncé à sa nationalité étasunienne !\nI can't believe you did all this without any help.\tJe n'arrive pas à croire que vous ayez fait tout cela sans aucune aide.\nI can't believe you did all this without any help.\tJe n'arrive pas à croire que vous ayez fait tout cela sans aide aucune.\nI can't believe you did all this without any help.\tJe n'arrive pas à croire que tu aies fait tout cela sans aucune aide.\nI can't believe you did all this without any help.\tJe n'arrive pas à croire que tu aies fait tout cela sans une aide quelconque.\nI can't believe you weren't as impressed as I was.\tJe n'arrive pas à croire que tu n'as pas été aussi impressionné que je l'ai été.\nI can't remember how to say \"Thank you\" in German.\tJe ne me rappelle plus comment dire \"Merci\" en allemand.\nI can't understand why you are so critical of him.\tJe ne peux pas comprendre pourquoi tu es si critique à son égard.\nI can't understand why you are so critical of him.\tJe ne peux pas comprendre pourquoi vous êtes si critique à son égard.\nI can't understand why you are so critical of him.\tJe ne peux pas comprendre pourquoi vous êtes si critiques à son égard.\nI cannot help thinking that my son is still alive.\tJe ne peux pas m'empêcher de penser que mon fils est toujours en vie.\nI caught a glimpse of him as he turned the corner.\tJe l'aperçus tandis qu'il tournait au coin.\nI copied a passage from the book into my notebook.\tJ'ai recopié un passage du livre sur mon cahier.\nI could really make things hard for you, you know.\tJe pourrais vraiment vous rendre les choses difficiles, vous savez.\nI could really make things hard for you, you know.\tJe pourrais vraiment te rendre les choses difficiles, tu sais.\nI couldn't make myself understood well in English.\tJe n'ai pas pu correctement me faire comprendre en anglais.\nI couldn't make myself understood well in English.\tJe ne pouvais pas correctement me faire comprendre en anglais.\nI didn't factor those variables into the equation.\tJe n'ai pas pris en compte ces variables dans l'équation.\nI didn't know Tom could play the trombone so well.\tJe ne savais pas que Tom pouvait jouer du trombone aussi bien.\nI don't care why Tom did it. I'm just glad he did.\tÇa m'est égal de savoir pourquoi Tom l'a fait. Mais je suis bien content qu'il l'ait fait.\nI don't have the authority to give you permission.\tJe n'ai pas l'autorité pour vous donner la permission.\nI don't know if we're going to be able to do that.\tJe ne sais pas si on va pouvoir faire ça.\nI don't know what would happen if I ever lost you.\tJe ne sais pas ce qu'il se passerait si jamais je te perdais.\nI don't like her, because she always puts on airs.\tJe ne l'aime pas, parce qu'elle fait toujours de l'esbroufe.\nI don't mind helping you clean up after the party.\tÇa ne me dérange pas de t'aider à nettoyer après la fête.\nI don't mind helping you clean up after the party.\tÇa ne me dérange pas de vous aider à nettoyer après la fête.\nI don't switch on the light in my studio at night.\tJe n'allume pas la lumière dans mon studio la nuit.\nI don't think I could ever get used to this smell.\tJe ne pense pas que j'arriverai un jour à m'habituer à cette odeur.\nI don't think there's any harm in telling you now.\tJe ne pense pas qu'il y ait de mal à te le dire maintenant.\nI don't think there's any harm in telling you now.\tJe ne pense pas qu'il y ait de mal à vous le dire maintenant.\nI don't want to hear about all your ex-boyfriends.\tJe ne veux pas entendre parler de tous tes ex-petits amis.\nI don't want to hear any more of your complaining.\tJe ne veux plus t'entendre te plaindre.\nI don't want to work at a supermarket all my life.\tJe ne veux pas travailler dans un supermarché toute ma vie.\nI entered Tom's office after knocking on the door.\tJ'entrai dans le bureau de Tom après avoir frappé à la porte.\nI expect him to get over the shock of his failure.\tJ'ai l'espoir qu'il se remettra du choc de son échec.\nI felt like singing loudly when the exam was over.\tJ'avais envie de chanter à gorge déployée à la fin de l'examen.\nI felt my hands shaking and my heart beating fast.\tJe sentais mes mains trembler et mon cœur s'emballer.\nI forgot I was supposed to bring a bottle of wine.\tJ'ai oublié que j'étais supposé apporter une bouteille de vin.\nI forgot my lunch and bought a sandwich at school.\tJ'ai oublié mon déjeuner et j'ai acheté un casse-croûte à l'école.\nI found a pair of sunglasses by the swimming pool.\tJ'ai trouvé une paire de lunettes de soleil autour de la piscine.\nI found a pair of sunglasses by the swimming pool.\tJ'ai trouvé une paire de lunettes de soleil aux abords de la piscine.\nI fully intend to do everything I said I would do.\tJ'ai parfaitement l'intention de faire tout ce que j'ai dit que je ferais.\nI gained back the weight I'd lost over the summer.\tJ'ai repris le poids que j'avais perdu au cours de l'été.\nI gave my sister a pearl necklace on her birthday.\tJ'ai donné un collier de perles à ma sœur pour son anniversaire.\nI get the feeling you don't really want me to win.\tJ'ai le sentiment que vous ne voulez pas vraiment que je gagne.\nI get the feeling you don't really want me to win.\tJ'ai le sentiment que vous ne voulez pas vraiment que je l'emporte.\nI get the feeling you don't really want me to win.\tJ'ai le sentiment que tu ne veux pas vraiment que je gagne.\nI get the feeling you don't really want me to win.\tJ'ai le sentiment que tu ne veux pas vraiment que je l'emporte.\nI got to the bus stop just after the bus had left.\tJe suis arrivé à l'arrêt de bus juste après qu'il soit parti.\nI had difficulty getting a ticket for the concert.\tJ'eus des difficultés à me procurer un billet pour le concert.\nI had difficulty getting a ticket for the concert.\tJ'ai eu des difficultés à me procurer un billet pour le concert.\nI had no idea it would put you to so much trouble.\tJe n'avais aucune idée que cela te causerait autant de problèmes.\nI had no other choice but to take him at his word.\tJe n'avais d'autre choix que de le prendre au mot.\nI hate it when you pretend like you don't know me.\tJe déteste que tu fasses semblant de ne pas me connaître.\nI hate when other people make me wait a long time.\tJe déteste que les autres gens me fassent attendre pendant longtemps.\nI have a few things to finish up before I go home.\tJ'ai quelques trucs à terminer avant d'aller à la maison.\nI have a friend whose father is a famous novelist.\tJ'ai un ami dont le père est un célèbre romancier.\nI have a friend whose father is a famous novelist.\tJ'ai un ami dont le père est un romancier célèbre.\nI have an appointment I don't want to be late for.\tJ'ai un rendez-vous auquel je ne veux pas être en retard.\nI have an older brother who's the same age as you.\tJ'ai un grand frère du même âge que toi.\nI have not had anything to eat since this morning.\tJe n'ai rien eu à manger depuis ce matin.\nI have nothing to say with regard to that problem.\tJe n'ai rien à dire, concernant ce problème.\nI have nothing to say with regard to that problem.\tJe n'ai rien à dire, en ce qui concerne ce problème.\nI have the feeling you had something else in mind.\tJ'ai le sentiment que vous aviez autre chose en tête.\nI have the feeling you had something else in mind.\tJ'ai le sentiment que tu avais autre chose en tête.\nI have the feeling you had something else in mind.\tJ'ai le sentiment que vous aviez autre chose à l'esprit.\nI have the feeling you had something else in mind.\tJ'ai le sentiment que tu avais autre chose à l'esprit.\nI have to keep my mind on this important question.\tJe dois garder à l'esprit cette importante question.\nI have two dogs. One is white and the other black.\tJ'ai deux chiens. L'un est blanc, l'autre est noir.\nI have underestimated the strength of my opponent.\tJ'ai sous-estimé la force de mon adversaire.\nI hope he'll be able to come! I'd like to see him.\tPourvu qu'il puisse venir ! J'aimerais le voir.\nI hope we have better weapons than the enemy does.\tJ'espère que nous sommes mieux armés que l'ennemi.\nI just got up. Give me a few minutes to get ready.\tJe viens de me lever. Donne-moi quelques minutes pour me préparer.\nI just got up. Give me a few minutes to get ready.\tJe viens de me lever. Donnez-moi quelques minutes pour me préparer.\nI just want to tell Tom before somebody else does.\tJe veux simplement parler à Tom avant que quelqu'un d'autre le fasse.\nI just want you to think about me once in a while.\tJe veux simplement que vous pensiez à moi de temps à autre.\nI just want you to think about me once in a while.\tJe veux simplement que tu penses à moi de temps à autre.\nI know her by sight, but I've never spoken to her.\tJe la connais de vue, mais je ne lui ai jamais parlé.\nI know that tune, but I can't remember the lyrics.\tJe connais cet air mais je n'arrive pas à me rappeler des paroles.\nI know the boy who is sitting closest to the door.\tJe connais le garçon qui est assis le plus près de la porte.\nI know you are hiding yourself behind the curtain.\tJe sais que vous vous cachez derrière le rideau.\nI know you don't want to talk about what happened.\tJe sais que tu ne veux pas parler de ce qui s'est passé.\nI know you don't want to talk about what happened.\tJe sais que tu ne veux pas parler de ce qui s'est produit.\nI know you don't want to talk about what happened.\tJe sais que tu ne veux pas parler de ce qui a eu lieu.\nI know you don't want to talk about what happened.\tJe sais que vous ne voulez pas parler de ce qui s'est passé.\nI know you don't want to talk about what happened.\tJe sais que vous ne voulez pas parler de ce qui s'est produit.\nI know you don't want to talk about what happened.\tJe sais que vous ne voulez pas parler de ce qui a eu lieu.\nI like to spread honey on my toast in the morning.\tJ'aime tartiner du miel sur mon toast le matin.\nI made a list of things I needed to bring with me.\tJ'ai dressé une liste des choses qu'il me fallait emporter.\nI made a list of things I needed to bring with me.\tJe dressai une liste des choses qu'il me fallait emporter.\nI made an appointment to see him at seven o'clock.\tJ'ai pris rendez-vous pour le voir à sept heures.\nI managed to acquire the book after a long search.\tJe me suis débrouillé pour acquérir l'ouvrage après une longue recherche.\nI must get my work done by the day after tomorrow.\tJe dois finir mon travail pour après-demain.\nI need to find something to open this bottle with.\tIl me faut trouver quelque chose pour ouvrir cette bouteille.\nI need to know everything that you know about Tom.\tJ'ai besoin de savoir tout ce que vous connaissez à propos de Tom.\nI need to understand the meaning of this sentence.\tIl me faut comprendre la signification de cette phrase.\nI never stay anywhere long enough to make friends.\tJe ne reste jamais où que ce soit assez longtemps pour me faire des amis.\nI never stay anywhere long enough to make friends.\tJe ne reste jamais où que ce soit assez longtemps pour me faire des amies.\nI only eat meat about three or four times a month.\tJe ne mange de la viande que trois ou quatre fois par mois.\nI only have American coins in my pocket right now.\tJe n'ai que des pièces américaines dans ma poche pour le moment.\nI owe you a big one for getting me out of the jam.\tJe te dois une fière chandelle de m'avoir sorti de ce pétrin.\nI pay most of my bills on the first of each month.\tJe paie la plupart de mes factures le premier du mois.\nI pay most of my bills on the first of each month.\tJe paie la plupart de mes factures au premier du mois.\nI persuaded the policeman not to shoot the monkey.\tJ'ai persuadé le policier de ne pas abattre le singe.\nI persuaded the policeman not to shoot the monkey.\tJ'ai persuadé le policier de ne pas tirer sur le singe.\nI played video games after I finished my homework.\tJ'ai joué à des jeux vidéo après avoir fini mes devoirs.\nI read in the newspaper that he had been murdered.\tJ'ai lu dans le journal qu'il avait été assassiné.\nI really don't want to go out on a date with Mary.\tJe ne veux vraiment pas aller au rendez-vous avec Mary.\nI really don't want to sit in the back of the bus.\tJe ne veux vraiment pas m'asseoir à l'arrière du bus.\nI repeated what he said exactly as he had said it.\tJ'ai répété ce qu'il disait, exactement comme il l'avait dit.\nI should go home before my parents start to worry.\tJe devrais rentrer à la maison avant que mes parents ne commencent à s'inquiéter.\nI should turn in. I need my beauty sleep you know.\tJe devrais aller me coucher. J'ai besoin de dormir tôt, tu sais.\nI spent the whole afternoon chatting with friends.\tJ’ai passé tout l’après-midi à bavarder avec des amis.\nI stayed at home all day instead of going to work.\tJe suis resté à la maison toute la journée au lieu d'aller travailler.\nI still have a lot of questions I want to ask you.\tJ'ai encore beaucoup de questions que je veux te poser.\nI still think it's unlikely that he'll come today.\tJe continue à penser qu'il est improbable qu'il vienne aujourd'hui.\nI suspected that something like this might happen.\tJ'ai soupçonné qu'une telle chose pouvait arriver.\nI think it might rain today, but I could be wrong.\tJe pense qu'il pourrait pleuvoir aujourd'hui, mais je peux me tromper.\nI think it's time for me to confront that problem.\tJe pense qu'il est temps pour moi d'affronter ce problème.\nI think it's time for me to get a bit of exercise.\tJe pense qu'il est temps que je prenne un peu d'exercice.\nI think it's time for me to make some new friends.\tJe pense qu'il est temps que je me fasse de nouveaux amis.\nI think the prices in this store are way too high.\tJe pense que les prix dans ce magasin sont bien trop hauts.\nI think there has been some misunderstanding here.\tJe pense qu'il y a eu comme un malentendu.\nI think this project is moving on the right track.\tJe pense que ce projet est sur la bonne voie.\nI think we can come up with better plan than this.\tJe pense que nous pouvons concevoir un meilleur plan que celui-ci.\nI think you need to find yourself a part-time job.\tJe pense qu'il te faut trouver un emploi à temps partiel.\nI think you need to find yourself a part-time job.\tJe pense qu'il te faut trouver un boulot à temps partiel.\nI think you need to find yourself a part-time job.\tJe pense qu'il vous faut trouver un emploi à temps partiel.\nI think you need to find yourself a part-time job.\tJe pense qu'il vous faut trouver un boulot à temps partiel.\nI think you want this more than you want to admit.\tJe pense que tu veux ceci plus que tu veux ne l'admettre.\nI think your father hoped you would go to college.\tJe pense que ton père espérait que tu irais au lycée.\nI thought maybe I'd better not go home right away.\tJe pensais que peut-être je ferais mieux de ne pas rentrer chez moi immédiatement.\nI thought she wouldn't notice that he wasn't here.\tJe pensais qu'elle ne remarquerait pas qu'il n'était pas là.\nI thought you'd been killed. I'm glad I was wrong.\tJe pensais que tu serais tué. Je me réjouis d'avoir eu tort.\nI thought you'd been killed. I'm glad I was wrong.\tJe pensais que tu serais tuée. Je me réjouis d'avoir eu tort.\nI thought you'd been killed. I'm glad I was wrong.\tJe pensais que vous seriez tué. Je me réjouis d'avoir eu tort.\nI thought you'd been killed. I'm glad I was wrong.\tJe pensais que vous seriez tuée. Je me réjouis d'avoir eu tort.\nI thought you'd been killed. I'm glad I was wrong.\tJe pensais que vous seriez tués. Je me réjouis d'avoir eu tort.\nI thought you'd been killed. I'm glad I was wrong.\tJe pensais que vous seriez tuées. Je me réjouis d'avoir eu tort.\nI told her not to let go of the rope, but she did.\tJe lui ai dit de ne pas lâcher la corde, mais c'est ce qu'elle a fait.\nI took it for granted that you would come with us.\tJ'étais convaincu que vous viendriez avec nous.\nI took it for granted that you would come with us.\tJ'étais convaincu que tu viendrais avec nous.\nI took it for granted that you would come with us.\tJe pensais qu'il était clair que vous nous accompagneriez.\nI understand now why he didn't go to a university.\tMaintenant je comprends pourquoi il n'est pas allé à l'université.\nI want my children to have the best of everything.\tJe veux que mes enfants aient le meilleur de tout.\nI want some beautiful flowers to put on the table.\tJe veux quelques belles fleurs à mettre sur la table.\nI want the whole world to know that we're in love.\tJe veux que le monde entier sache que nous sommes amoureux.\nI want to find somewhere I can sit down and relax.\tJe veux trouver quelque part où je puis m'asseoir et me détendre.\nI want to get Tom something nice for his birthday.\tJe veux trouver pour Tom quelque chose de joli pour son anniversaire.\nI want to keep doing this for as long as possible.\tJe veux continuer à faire ceci aussi longtemps que ceci.\nI want to know when my baggage is going to arrive.\tJe veux savoir quand mes bagages arriveront.\nI want to show you something I've been working on.\tJe veux vous montrer quelque chose sur lequel j'ai travaillé.\nI want to show you something I've been working on.\tJe veux te montrer quelque chose sur lequel j'ai travaillé.\nI want you to know that I can't be there tomorrow.\tJe veux que tu saches que je ne peux pas être là demain.\nI want you to know that I meant every word I said.\tJe veux que tu saches que j'ai voulu dire chaque mot que j'ai dit.\nI want you to say you're not going back to Boston.\tJe veux que tu dises que tu ne retournes pas à Boston.\nI want you to take care of Tom for a little while.\tJe veux que tu prennes soin de Tom pendant un petit moment.\nI want you to tell me what you really think of me.\tJe veux que tu me dises ce que tu penses vraiment de moi.\nI want you to treat me a little nicer from now on.\tJe veux que tu me traites un peu plus gentiment à partir de maintenant.\nI wanted to apologize for what happened yesterday.\tJe voulais m'excuser pour ce qui c'est passé hier.\nI wanted to apologize for what happened yesterday.\tJe voulais m'excuser pour ce qui est survenu hier.\nI wanted to make sure we didn't cause the problem.\tJe voulais être sûr que nous n'avons pas causé le problème.\nI wanted you to understand what you're up against.\tJe voulais que tu comprennes ce que tu affrontes.\nI was ashamed of what I had done to my benefactor.\tJe fus honteux de ce que j'avais fait à mon bienfaiteur.\nI was just wondering what languages you can speak.\tJe me demandais juste quelles langues tu parles.\nI was so afraid that no one would ask me to dance.\tJ'étais tellement effrayée que personne ne voulut m'inviter à danser.\nI was watching television when the telephone rang.\tJ'étais en train de regarder la télé quand le téléphone a sonné.\nI went on vacation, and my plants are still alive.\tJe suis parti en vacances, et mes plantes sont encore en vie.\nI will see to it that everything is ready in time.\tJe veillerai à ce que tout soit prêt à temps.\nI will wait for you in front of the radio station.\tJe t'attendrai devant la station de radio.\nI wish I could go with you, but as it is, I can't.\tJe voudrais pouvoir partir avec toi, mais tel que c'est, je ne peux pas.\nI wish he would make up his mind one way or other.\tJe souhaite qu'il puisse se décider, d'une manière ou d'une autre.\nI wonder what could have made him change his mind.\tJe me demande ce qui a pu le faire changer d'avis.\nI wonder why people always want to know the truth.\tJe me demande pourquoi les gens veulent toujours connaître la vérité.\nI would buy this watch, except it's too expensive.\tJ'aurais bien acheté cette montre, sauf qu'elle est trop chère.\nI would have bought that car if I'd had the money.\tJ'aurais acheté cette voiture si j'avais eu les moyens.\nI would like to see you before I leave for Europe.\tJ'aimerais te voir avant de partir pour l'Europe.\nI would never have guessed that Tom couldn't swim.\tJe n'aurais jamais deviné que Tom ne pouvait pas nager.\nI would've never guessed that Tom was from Boston.\tJe n'aurais jamais deviné que Tom était de Boston.\nI wouldn't do that for all the money in the world.\tJe ne le ferais pas pour tout l'or du monde.\nI wrote a song about what happened here last year.\tJ'ai écrit une chanson à propos de ce qui s'est passé, ici, l'an dernier.\nI wrote a song about what happened here last year.\tJ'ai écrit une chanson au sujet de ce qui s'est produit, ici, l'année dernière.\nI wrote down his phone number on a scrap of paper.\tJe notai son numéro de téléphone sur un morceau de papier.\nI wrote down his phone number on a scrap of paper.\tJ'ai noté son numéro de téléphone sur un morceau de papier.\nI wrote down his phone number on a scrap of paper.\tJe notai son numéro de téléphone sur un bout de papier.\nI wrote down his phone number on a scrap of paper.\tJ'ai noté son numéro de téléphone sur un bout de papier.\nI wrote him a letter asking him to come home soon.\tJe lui ai écrit une lettre pour lui demander de bientôt rentrer à la maison.\nI'd like Tom to spend some time with our children.\tJe voudrais que Tom passe un peu de temps avec nos enfants.\nI'd like to make an appointment to see the doctor.\tJ'aimerais prendre rendez-vous pour voir le docteur.\nI'd like to talk to the doctor alone for a moment.\tJe voudrais parler au médecin seul pendant un moment.\nI'll be grateful to you if you can do that for me.\tJe te serais reconnaissant si tu peux faire ça pour moi.\nI'll be grateful to you if you can do that for me.\tJe vous serais reconnaissant si vous pouviez faire ça pour moi.\nI'll never forget having a good time with you all.\tJe n'oublierai jamais que j'ai passé un bon moment avec vous.\nI'm getting along with my mother-in-law very well.\tJe m'entends très bien avec ma belle-mère.\nI'm getting pretty tired of driving every morning.\tJe me lasse pas mal de conduire tous les matins.\nI'm getting sick and tired of all your complaints.\tJ'en ai plus qu'assez de toutes tes récriminations.\nI'm going to lay aside that money for emergencies.\tJe vais mettre cet argent de côté en cas de besoin.\nI'm going to wear these shoes on our date tonight.\tJe vais porter ces chaussures à notre rencard ce soir.\nI'm not going to do anything you don't want me to.\tJe ne vais rien faire que tu ne veux pas que je fasse.\nI'm not the least bit worried about losing my job.\tJe ne suis pas inquiet de perdre mon travail.\nI'm not the least bit worried about losing my job.\tJe ne suis pas le moins du monde préoccupé de perdre mon boulot.\nI'm sorry to say, but the service isn't very good.\tJe suis désolé de le dire, mais le service n'est pas très bon.\nI've been looking for them for more than one hour.\tJe les ai cherchés pendant plus d'une heure.\nI've been looking for them for more than one hour.\tJe les ai cherchées pendant plus d'une heure.\nI've been waiting here for him since this morning.\tJe l'ai attendu ici depuis ce matin.\nI've got to go to another dreary meeting tomorrow.\tJe dois aller à un autre rendez-vous ennuyeux, demain.\nIf I could afford it, I would buy an electric car.\tSi j'en avais les moyens, j'achèterais une voiture électrique.\nIf I could, I would let every caged bird fly free.\tSi je pouvais, je laisserais s'envoler librement tous les oiseaux en cage.\nIf he hadn't wasted time, he'd be finished by now.\tS'il n'avait pas perdu de temps, il aurait terminé à l'heure qu'il est.\nIf it were not for your help, I might have failed.\tN'eût été grâce à votre aide, j'aurais pu échouer.\nIf my brother were here, he would know what to do.\tSi mon frère était là, il saurait quoi faire.\nIf she had told me the truth, I wouldn't be angry.\tSi elle m'avait dit la vérité, je ne serais pas en colère.\nIf there was no sun, we would not be able to live.\tS'il n'y avait pas de soleil, nous ne pourrions pas vivre.\nIf you can't solve this problem, ask your teacher.\tSi tu n'arrives pas à résoudre ce problème, demandes à ton professeur.\nIf you don't study harder, you'll definitely fail.\tSi tu n'étudies pas plus dur, tu échoueras sans aucun doute.\nIf you have a minute, you might want to read this.\tSi tu as une minute, tu pourrais vouloir lire ceci.\nIf you have something to say, go ahead and say it.\tSi tu as quelque chose à dire, vas-y et dis-le.\nIf you're not careful, you might have an accident.\tSi tu n'es pas prudent, tu pourrais avoir un accident.\nIf you're not careful, you might have an accident.\tSi tu n'es pas prudente, tu pourrais avoir un accident.\nIf you're not careful, you might have an accident.\tSi vous n'êtes pas prudent, vous pourriez avoir un accident.\nIf you're not careful, you might have an accident.\tSi vous n'êtes pas prudente, vous pourriez avoir un accident.\nIf you're not careful, you might have an accident.\tSi vous n'êtes pas prudents, vous pourriez avoir un accident.\nIf you're not careful, you might have an accident.\tSi vous n'êtes pas prudentes, vous pourriez avoir un accident.\nIf you're not listening to the radio, turn it off.\tSi tu n'écoutes pas la radio, éteins-la.\nIf you're not listening to the radio, turn it off.\tSi vous n'écoutez pas la radio, éteignez-la.\nIn Singapore, it is a crime to spit on the ground.\tÀ Singapour, c'est un crime de cracher par terre.\nIn her free time, she likes to be on the Internet.\tPendant son temps libre, elle aime être sur Internet.\nIn my job I have to deal with all kinds of people.\tDans mon travail, j'ai affaire à toutes sortes de gens.\nIn spite of the heavy traffic, we arrived on time.\tEn dépit de la circulation dense, nous arrivâmes à l'heure.\nIndividual freedom is the foundation of democracy.\tLa liberté individuelle est la base de la démocratie.\nIs it all right to take pictures in this building?\tA-t-on le droit de prendre des photos dans ce bâtiment ?\nIs this the first time you've eaten Japanese food?\tEst-ce la première fois que tu manges japonais ?\nIs this the first time you've eaten Japanese food?\tEst-ce la première fois que vous mangez de la nourriture japonaise ?\nIt is cheap, but on the other hand it is not good.\tC'est bon marché, mais d'un autre côté, la qualité est mauvaise.\nIt is difficult to shoot a bird flying in the air.\tC'est difficile de tirer sur un oiseau en plein vol.\nIt is extremely hot and humid in Bali in December.\tIl fait extrêmement chaud et humide à Bali en décembre.\nIt is true that she is pretty, but she is selfish.\tC'est vrai qu'elle est jolie, mais elle est égoïste.\nIt is very careless of you to leave the door open.\tC'est très inconsidéré de ta part de laisser la porte ouverte.\nIt isn't easy to understand why you want to leave.\tIl n'est pas facile de comprendre pourquoi tu veux partir.\nIt looked like no one could stop President Reagan.\tIl semblait que personne ne pouvait arrêter le Président Reagan.\nIt never occurred to him that she would get angry.\tIl n'avait jamais pensé qu'elle se mettrait en colère.\nIt never occurred to me that I might get arrested.\tIl ne m'est jamais venu à l'esprit que je pourrais être arrêté.\nIt seems like the cat caught the scent of a mouse.\tOn dirait que le chat a détecté l'odeur d'une souris.\nIt seems that you are not having a good time here.\tIl semble que vous ne vous amusiez pas ici.\nIt seems that you are not having a good time here.\tIl semble que vous ne passiez un bon moment ici.\nIt took a whole month to break in those new shoes.\tÇa a pris tout un mois de casser ces nouvelles chaussures.\nIt was a pity that Tom couldn't come to our party.\tC'était dommage que Tom ne puisse pas venir à notre fête.\nIt was at that very moment that the bomb went off.\tC'est à ce moment précis que la bombe s'est désactivée.\nIt was mad of him to try to swim in the icy water.\tC'était folie de sa part de tenter de nager dans l'eau glacée.\nIt was nice of you to come all this way to see me.\tC'était chouette de ta part de faire tout ce chemin pour me voir.\nIt was nice of you to come all this way to see me.\tC'était chouette de votre part de faire tout ce chemin pour me voir.\nIt was nice of you to come all this way to see me.\tC'était sympa de ta part de faire tout ce chemin pour me voir.\nIt was nice of you to come all this way to see me.\tC'était sympa de votre part de faire tout ce chemin pour me voir.\nIt was raining heavily when I got up this morning.\tIl pleuvait fort quand je me suis levé ce matin.\nIt was raining when I got on the bus this morning.\tIl pleuvait quand je suis monté dans le bus ce matin.\nIt was very hard for her to suppress her emotions.\tIl lui était très difficile de réprimer ses émotions.\nIt was wise of you to take your umbrella with you.\tC'était judicieux de ta part de prendre un parapluie avec toi.\nIt will only take a moment to answer the question.\tCela prendra seulement un instant pour répondre à la question.\nIt would be counter-productive to do such a thing.\tFaire une telle chose serait contre-productif.\nIt would be counter-productive to do such a thing.\tIl serait contre-productif de faire une telle chose.\nIt would be great if you could join us for dinner.\tÇa serait vraiment bien si tu pouvais te joindre à nous pour déjeuner.\nIt would be great if you could join us for dinner.\tÇa serait vraiment bien si tu pouvais te joindre à nous pour dîner.\nIt would be great if you could join us for dinner.\tÇa serait vraiment bien si vous pouviez vous joindre à nous pour déjeuner.\nIt would be great if you could join us for dinner.\tÇa serait vraiment bien si vous pouviez vous joindre à nous pour dîner.\nIt'll take some time to get used to wearing a wig.\tÇa prendra un peu de temps pour s'habituer à porter une perruque.\nIt's an absolute waste of time to wait any longer.\tCe serait perdre entièrement notre temps que d'attendre une seconde de plus.\nIt's been a long time since I've written anything.\tIl y a longtemps que j'ai écrit quoi que ce soit.\nIt's gotten dark. Please turn on the light for me.\tÇa s'est obscurci. Merci d'allumer la lumière pour moi.\nIt's said that nothing is more precious than time.\tOn dit qu'il n'est rien de plus précieux que le temps.\nIt's supposed to rain every day for the next week.\tIl est sensé pleuvoir tous les jours jusqu'à la semaine prochaine.\nIt's thanks to his father that he owns this hotel.\tC'est grâce à son père qu'il dirige cet hôtel.\nIt's very kind of you to help me with my homework.\tC'est très gentil de ta part de m'aider à faire mes devoirs.\nJapan today is not what it was even ten years ago.\tLe Japon d'aujourd'hui n'est plus le même que celui d'il y a seulement dix ans.\nJupiter is the largest planet in the Solar System.\tJupiter est la plus grosse planète du système solaire.\nJust as I was about to go out, it started raining.\tJuste au moment où j'étais sur le point de sortir, il se mit à pleuvoir.\nJust promise me that you won't do anything stupid.\tPromets-moi seulement que tu ne feras rien de stupide.\nJust tell me the truth. I promise I won't get mad.\tDis-moi juste la vérité. Je promets de ne pas me mettre en colère.\nJust tell me the truth. I promise I won't get mad.\tDites-moi juste la vérité. Je promets de ne pas me mettre en colère.\nLet me take you to someplace where you'll be safe.\tJe vais vous emmener dans un lieu sûr.\nLet me think it over, and I'll let you know later.\tLaisse-moi y réfléchir et je te le ferai savoir plus tard.\nListen to your heart, and you will know it's true.\tÉcoute ton cœur, et tu sauras que c'est la vérité.\nLoneliness and being alone are not the same thing.\tLe sentiment de solitude et le fait d'être seul ne sont pas la même chose.\nMany TV programs have a bad influence on children.\tBeaucoup d'émissions ont une mauvaise influence sur les enfants.\nMany flights were canceled because of the typhoon.\tDe nombreux vols furent annulés en raison du typhon.\nMany flights were canceled because of the typhoon.\tDe nombreux vols ont été annulés en raison du typhon.\nMany people believe acupuncture can cure diseases.\tBeaucoup croient que l'acupuncture peut guérir les maladies.\nMany people encouraged me to fulfill my ambitions.\tDe nombreuses personnes m'ont encouragé à réaliser mes ambitions.\nMany people pushed their way toward the rear exit.\tDe nombreuses personnes se frayèrent un chemin vers la sortie de derrière.\nMary and Alice both married men younger than them.\tMary et Alice ont toutes les deux épousé des hommes plus jeunes qu'elles.\nMary cut herself while she was chopping up onions.\tMarie s'est coupée alors qu'elle hachait des oignons.\nMay I have your name and telephone number, please?\tPourrais-je avoir votre nom et numéro de téléphone s'il vous plait ?\nMoral leadership is more powerful than any weapon.\tL'autorité morale est plus puissante que n'importe quelle arme.\nMost French people are against capital punishment.\tLa plupart des Français sont contre la peine capitale.\nMy alarm clock didn't work. That's why I was late.\tMon radio réveil ne s'est pas déclenché. C'est pour cette raison que je suis en retard.\nMy big brother finished his homework very quickly.\tMon grand frère a fini ses devoirs très rapidement.\nMy brother was threatened by someone waving a gun.\tMon frère a été menacé par quelqu'un qui brandissait une arme.\nMy brother went to the United States to study law.\tMon frère est parti aux États-Unis pour étudier le droit.\nMy father goes to Sydney twice a year on business.\tLes affaires appellent mon père à Sydney deux fois par an.\nMy grandmother on my mother's side lives in Osaka.\tMa grand-mère maternelle vit à Osaka.\nMy husband was probably drunk when he signed this.\tMon mari était probablement ivre quand il a signé ça.\nMy mother is constantly forgetting people's names.\tMa mère oublie constamment le nom des gens.\nMy mother was so tired that she went to bed early.\tMa mère était si fatiguée qu'elle se couchait tôt.\nMy sister has made remarkable progress in English.\tMa sœur a fait des progrès remarquables en anglais.\nMy teeth are totally healthy and free of problems.\tMes dents sont totalement en bonne santé et sans problèmes.\nMy uncle lived in Washington, D. C. for two years.\tMon oncle a vécu à Washington pendant deux ans.\nNapoleon was exiled to the island of Elba in 1814.\tNapoléon a été exilé à l'île d'Elbe en 1814.\nNapoleon was exiled to the island of Elba in 1814.\tNapoléon fut exilé à l'île d'Elbe en 1814.\nNever put off till tomorrow what you can do today.\tNe remets pas à demain ce que tu peux faire aujourd'hui.\nNobody cares how much the dinner is going to cost.\tPersonne ne s'inquiète de combien va coûter le déjeuner.\nNobody cares how much the dinner is going to cost.\tPersonne ne s'inquiète de combien va coûter le dîner.\nNow that you are an adult, you should know better.\tMaintenant que tu es adulte, tu devrais le savoir.\nNow that you are an adult, you should know better.\tMaintenant que vous êtes adultes, vous devriez le savoir.\nOnce she starts talking, there is no stopping her.\tUne fois qu'elle commence à parler, on ne peut plus l'arrêter.\nOne of my favorite tunes was playing on the radio.\tL'une de mes chansons préférées passait à la radio.\nOur bike tour of the French Alps lasted two weeks.\tNotre tour à bicyclette dans les Alpes françaises a duré deux semaines.\nOur bike tour of the French Alps lasted two weeks.\tNotre tour des Alpes françaises à bicyclette dura deux semaines.\nOur bike tour of the French Alps lasted two weeks.\tNotre tour des Alpes françaises à vélo dura deux semaines.\nOur city is rather small in comparison with Tokyo.\tNotre ville est plutôt petite en comparaison de Tokyo.\nOur teacher often overlooked his name on the list.\tNotre instituteur sautait souvent son nom sur la liste.\nParis, which is on the Seine, is a beautiful city.\tParis, qui est traversé par la Seine, est une ville magnifique.\nPay attention to what others around you are doing.\tFais attention à ce que font les autres autour de toi !\nPay attention to what others around you are doing.\tFaites attention à ce que font les autres autour de vous !\nPeople are more educated now than they used to be.\tLes gens sont plus éduqués qu'ils ne l'étaient avant.\nPeople say I look about the same age as my sister.\tLes gens disent que j'ai l'air d'avoir à peu près le même âge que ma sœur.\nPlaying Russian roulette isn't really a good idea.\tJouer à la roulette russe n'est pas vraiment une bonne idée.\nPlease be sure to take one dose three times a day.\tAssurez-vous de prendre une dose trois fois par jour.\nPlease come pick up your package at the reception.\tVeuillez venir récupérer vos colis à la réception.\nPlease fill in your name and address on this form.\tS'il vous plait, remplissez ce formulaire avec votre nom et votre adresse.\nPlease forward this to as many people as possible.\tJe vous prie de rediriger ceci à autant de gens que possible.\nPlease forward this to as many people as possible.\tJe te prie de rediriger ceci à autant de gens que possible.\nPlease leave your message on my answering machine.\tS'il vous plait laissez un message sur mon répondeur.\nPlease let me see your passport and boarding pass.\tVeuillez me présenter votre passeport et votre carte d'embarquement, s'il vous plait.\nPlease turn off the light when you leave the room.\tMerci d'éteindre la lumière lorsque vous quitterez la pièce.\nPlease turn off the light when you leave the room.\tMerci d'éteindre la lumière lorsque vous quittez la pièce.\nPlease turn off the light when you leave the room.\tMerci d'éteindre la lumière lorsque tu quitteras la pièce.\nPlease turn off the light when you leave the room.\tMerci d'éteindre la lumière lorsque tu quittes la pièce.\nPlutonium-244 has a half-life of 80 million years.\tLe plutonium 244 possède une demi-vie de quatre-vingt millions d'années.\nRacial profiling is a controversial police tactic.\tLe profilage racial est une tactique policière controversée.\nRailroad service was suspended because of the fog.\tLe trafic ferroviaire a été interrompu à cause du brouillard.\nRecreational drug use inspires many urban legends.\tL'utilisation occasionnelle de drogues alimente la rumeur populaire.\nRemember to mail the letter on your way to school.\tPense à poster la lettre sur le chemin de l'école.\nRemember to mail the letter on your way to school.\tPensez à poster la lettre sur le chemin de l'école.\nRevolutions that don't succeed are soon forgotten.\tLes révolutions qui échouent sont vite oubliées.\nShe advised him not to go out by himself at night.\tElle lui conseilla de ne pas sortir seul la nuit.\nShe advised him to talk about his life in America.\tElle lui conseilla de parler de sa vie en Amérique.\nShe advised him to talk about his life in America.\tElle lui a conseillé de parler de sa vie en Amérique.\nShe always lets her children do what they want to.\tElle laisse toujours ses enfants faire ce qu'ils veulent.\nShe asked him to call her later, but he forgot to.\tElle lui demanda de l'appeler plus tard, mais il oublia.\nShe asked him to call her later, but he forgot to.\tElle lui a demandé de l'appeler plus tard, mais il a oublié.\nShe asked him to help her father clean the garage.\tElle lui demanda d'aider son père à nettoyer le garage.\nShe asked him to help her father clean the garage.\tElle lui a demandé d'aider son père à nettoyer le garage.\nShe belted out tune after tune at the karaoke bar.\tElle entonna chanson après chanson au karaoké.\nShe complained that the picture was too revealing.\tElle se plaignit que la photo était trop suggestive.\nShe complained that the picture was too revealing.\tElle s'est plainte que la photo était trop suggestive.\nShe couldn't convince him to write a song for her.\tElle ne put le convaincre d'écrire une chanson pour elle.\nShe couldn't convince him to write a song for her.\tElle ne put le convaincre d'écrire une chanson à son intention.\nShe couldn't convince him to write a song for her.\tElle n'a pas réussi à le convaincre d'écrire une chanson pour elle.\nShe goes to the beauty salon at least once a week.\tElle va au salon de beauté au moins 1 fois par semaine.\nShe got him to do everything she wanted him to do.\tElle obtint qu'il fasse tout ce qu'elle voulait.\nShe got him to do everything she wanted him to do.\tElle a obtenu qu'il fasse tout ce qu'elle voulait.\nShe had forgotten her umbrella so I lent her mine.\tElle avait oublié son parapluie alors je lui ai prêté le mien.\nShe heard him scream, so she ran into his bedroom.\tElle l'entendit hurler et elle courut donc dans sa chambre.\nShe heard him scream, so she ran into his bedroom.\tElle l'a entendu hurler et a donc couru dans sa chambre.\nShe helped her father with the work in the garden.\tElle aida son père à faire le travail dans le jardin.\nShe is going to visit her grandmother on Saturday.\tElle va rendre visite à sa grand-mère samedi.\nShe knows ten times as many English words as I do.\tElle connaît dix fois plus de mots en anglais que moi.\nShe made up her mind to graduate from high school.\tElle se décida à passer son bac.\nShe married him only because her parents made her.\tElle l'épousa seulement parce que ses parents la contraignirent.\nShe promised that she would meet him after school.\tElle lui promit qu'elle le rencontrerait après l'école.\nShe promised that she would meet him after school.\tElle lui a promis qu'elle le rencontrerait après l'école.\nShe raised an important objection to his argument.\tElle souleva une objection importante à son argument.\nShe sat on the bed as her mother braided her hair.\tElle était assise sur le lit tandis que sa mère lui tressait les cheveux.\nShe seems to have a tendency to exaggerate things.\tElle a l'air d'avoir tendance à exagérer.\nShe seems to have something to do with the affair.\tIl semble qu'elle ait quelque chose à voir avec cette affaire.\nShe spends time with her grandmother every Sunday.\tElle passe du temps avec sa grand-mère, chaque dimanche.\nShe spends time with her grandmother every Sunday.\tElle passe chaque dimanche du temps avec sa grand-mère.\nShe spoke out strongly against cruelty to animals.\tElle a parlé avec force contre la cruauté envers les animaux.\nShe tasted the cake to see if it was sweet enough.\tElle goûta le gâteau pour voir s'il était assez sucré.\nShe taught French in Italy before moving to Paris.\tElle a enseigné le français en Italie avant de s'installer à Paris.\nShe told him that she had seen me there last week.\tElle lui a dit qu'elle m'y avait vu la semaine passée.\nShe told him that she had seen me there last week.\tElle lui a dit qu'elle m'y avait vu la semaine dernière.\nShe told me that her mother had bought it for her.\tElle me dit que sa mère l'avait acheté pour elle.\nShe warned the children not to play on the street.\tElle avertit les enfants de ne pas jouer dans la rue.\nShe was indignant at the way she had been treated.\tElle fut indignée par la manière avec laquelle elle a été traitée.\nShe was looking forward to going sailing with him.\tElle se réjouissait d'aller faire de la voile avec lui.\nShe was looking forward to spending time with him.\tElle attendait avec impatience de passer du temps avec lui.\nShe was playing the piano when the guests arrived.\tElle était en train de jouer du piano lorsque les invités arrivèrent.\nShe was ready to help him with cleaning the house.\tElle était prête à l'aider au nettoyage de la maison.\nShe was standing on a ladder painting the ceiling.\tElle se tenait sur une échelle, en train de peindre le plafond.\nShe was the most beautiful woman he had ever seen.\tElle était la plus belle femme qu'il avait jamais vue.\nShe waved at me before she got on board the plane.\tElle me fit signe avant d'entrer à bord de l'avion.\nShe will make a business trip to London next week.\tElle a planifié un voyage d'affaire à Londres, la semaine prochaine.\nShe wished she had been born twenty years earlier.\tElle aurait voulu être née vingt ans plus tôt.\nShe wrote to him to tell him how wonderful he was.\tElle lui écrivit pour lui dire combien il était merveilleux.\nShe wrote to him to tell him how wonderful he was.\tElle lui a écrit pour lui dire combien il était merveilleux.\nSmoking is now prohibited on all domestic flights.\tFumer est désormais interdit sur tous les vols intérieurs.\nSome birds are sitting on the branch of that tree.\tDes oiseaux sont posés sur la branche de cet arbre.\nSome families spend their vacation near the beach.\tCertaines familles passent leurs vacances près de la plage.\nSome flowers bloom in spring and others in autumn.\tCertaines fleurs fleurissent au printemps et d'autres en automne.\nSome kids broke into Tom's house and ransacked it.\tDes enfants ont fait irruption dans la maison de Tom et l'ont saccagé.\nSome people are never content with what they have.\tCertaines personnes ne sont jamais contentes de ce qu'elles ont.\nSome people believe in God and other people don't.\tDes gens croient en Dieu et d'autres non.\nSome people say Japan is a male-dominated society.\tCertaines personnes disent que le Japon est une société dominée par la gent masculine.\nSomebody has to be held accountable for his death.\tQuelqu'un doit porter le chapeau pour sa mort.\nSometimes trying your best just isn't good enough.\tParfois, faire de son mieux ne suffit tout simplement pas.\nSometimes trying your best just isn't good enough.\tParfois, faire de son mieux n'est tout simplement pas suffisant.\nSooner or later, Tom will likely agree to help us.\tTôt ou tard, Tom acceptera sûrement de nous aider.\nTake your shoes off before you come into the room.\tÔte tes chaussures avant d'entrer dans la chambre.\nTell me why you were absent from school yesterday.\tDites-moi pourquoi vous étiez absents de l'école hier.\nTell me why you were absent from school yesterday.\tDites-moi pourquoi vous étiez absentes de l'école hier.\nTell me why you were absent from school yesterday.\tDites-moi pourquoi vous étiez absente de l'école hier.\nTell me why you were absent from school yesterday.\tDites-moi pourquoi vous étiez absent de l'école hier.\nTell me why you were absent from school yesterday.\tDis-moi pourquoi tu étais absent de l'école hier.\nTell me why you were absent from school yesterday.\tDis-moi pourquoi tu étais absente de l'école hier.\nThanks to his advice, I have saved a lot of money.\tGrâce à ses conseils, j'ai économisé beaucoup d'argent.\nThat dry-cleaning business is a front for the mob.\tCette affaire de teinturerie est une façade pour la maffia.\nThat house is the only one that survived the fire.\tCette maison est la seule qui a survécu à l'incendie.\nThat is the same umbrella that I found on the bus.\tC'est le même parapluie que celui que j'ai trouvé dans le bus.\nThat last round of chemo really sapped his energy.\tCette dernière séance de chimio a réellement vidé mon énergie.\nThat mountain is about three thousand meters high.\tCette montagne a une altitude d'environ 3.000 mètres.\nThat psychiatrist specialized in eating disorders.\tCe psychiatre s'est spécialisé dans les désordres alimentaires.\nThat tower you see over there is the Eiffel Tower.\tLa tour que vous pouvez voir est la tour Eiffel.\nThat type of person almost never asks for a raise.\tCe genre de personne ne demande presque jamais d'augmentation.\nThat's the worst thing that could possibly happen.\tC'est la pire chose qui pouvait se produire.\nThe Coliseum was the former arena in ancient Rome.\tLe Colisée était l'ancienne grande salle de spectacle dans la Rome antique.\nThe English Channel separates France from England.\tLa Manche sépare la France de l'Angleterre.\nThe French president is to visit Japan next month.\tLe président français va visiter le Japon le mois prochain.\nThe French president is to visit Japan next month.\tLe président français visitera le Japon le mois prochain.\nThe Kiso River is often called the Rhine of Japan.\tLa rivière Kiso est souvent appelée le Rhin du Japon.\nThe accent of this word is on the second syllable.\tL'accent sur ce mot est placé sur la deuxième syllabe.\nThe actress said that she was engaged to a banker.\tL'actrice a dit qu'elle était mariée à un banquier.\nThe airline sent my suitcase to Boston by mistake.\tLa compagnie aérienne a envoyé mes bagages à Boston par erreur.\nThe architecture in this part of the city is ugly.\tL'architecture dans cette partie de la ville est affreuse.\nThe assignment took me longer than I had expected.\tCette tâche me prit plus de temps que je n'avais prévu.\nThe big, yellow bus came hurtling down the street.\tLe gros bus jaune dégringola la rue.\nThe bill was approved by an overwhelming majority.\tLe projet de loi a été approuvé par une majorité écrasante.\nThe boy who lives next door often comes home late.\tLe garçon d'à côté ne rentre souvent que tard à la maison.\nThe children watched TV as Tom was cooking dinner.\tLes enfants regardaient la télévision pendant que Tom préparait le dîner.\nThe cloning of human embryos is prohibited by law.\tLe clonage d'embryons humains est interdit par la loi.\nThe company has unofficially decided to employ me.\tL'entreprise a officieusement décidé de m'employer.\nThe company manufactures a variety of paper goods.\tL'entreprise fabrique des produits en papier divers.\nThe conflict began over a simple misunderstanding.\tLe conflit commença sur un simple malentendu.\nThe criticism of the actor's performance was just.\tLa critique de la représentation de l'acteur était juste.\nThe egg is a universal symbol of life and rebirth.\tL'œuf est un symbole universel de vie et de renaissance.\nThe government's investment will create many jobs.\tL'investissement du gouvernement créera de nombreux emplois.\nThe green lampshade casts a warm glow in the room.\tL'abat-jour vert jette une lueur chaude dans la pièce.\nThe guitar is so expensive that I can't afford it.\tLa guitare est tellement chère que je ne peux pas me la payer.\nThe local coffee shop was replaced by a Starbucks.\tLe café du coin a été remplacé par un Starbucks.\nThe loss adds up to more than one million dollars.\tLa perte s'élève à plus d'un million de dollars.\nThe mere thought of it is enough to make me happy.\tLe simple fait d'y penser suffit à me rendre heureux.\nThe mere thought of it is enough to make me happy.\tLe simple fait d'y penser suffit à me rendre heureuse.\nThe monthly staff meeting is never held on Monday.\tLa réunion mensuelle du personnel n'est jamais tenue les lundis.\nThe monthly staff meeting is never held on Monday.\tLa réunion mensuelle du personnel ne se tient jamais le lundi.\nThe more chocolate you eat, the fatter you'll get.\tPlus tu manges de chocolat, plus gros tu deviens.\nThe more chocolate you eat, the fatter you'll get.\tPlus vous mangez de chocolat, plus gros vous devenez.\nThe mosque was torched in the middle of the night.\tLa mosquée a été incendiée au milieu de la nuit.\nThe new tunnel will link Great Britain and France.\tLe nouveau tunnel reliera la Grande-Bretagne et la France.\nThe news of the mayor's resignation traveled fast.\tL'annonce de la démission du maire se propagea rapidement.\nThe official dinner took place at the White House.\tLe dîner officiel a eu lieu à la Maison Blanche.\nThe official dinner took place at the White House.\tC'est le dîner officiel qui a eu lieu à la Maison Blanche.\nThe old man is always accompanied by his grandson.\tLe vieil homme est toujours accompagné de son petit-fils.\nThe only thing that matters is that you are alive.\tLa seule chose qui importe est que tu sois en vie.\nThe only thing that matters is that you are alive.\tLa seule chose qui compte est que vous soyez en vie.\nThe outdoor concert was canceled due to the storm.\tLe concert en plein air a été annulé en raison de la tempête.\nThe plane climbed to an altitude of 10,000 meters.\tL'avion est monté à une altitude de 10.000 mètres.\nThe police found Tom's fingerprint on the trigger.\tLa police a trouvé l'empreinte digitale de Tom sur la gâchette.\nThe price is low, but the quality isn't very good.\tLe prix est bas mais la qualité n'est pas très bonne.\nThe price is low, but the quality isn't very good.\tLe prix est bas mais la qualité est médiocre.\nThe price of rice rose by more than three percent.\tLe prix du riz augmenta de plus de trois pour cent.\nThe problem is that solar energy is too expensive.\tLe problème est que l'énergie solaire est trop chère.\nThe product is guaranteed to be free from defects.\tLe produit est garanti exempt de défauts.\nThe road up and the road down is one and the same.\tLa route qui monte et celle qui descend n'en forment qu'une.\nThe students divided themselves into three groups.\tLes étudiants se divisèrent en trois groupes.\nThe swimmer raised his head and gasped for breath.\tLe nageur dressa la tête et chercha après l'air.\nThe talks will deal with the problem of pollution.\tLes discussions traiteront du problème de la pollution.\nThe teacher has three times as many books as I do.\tLe professeur a trois fois plus de livres que moi.\nThe telephone is ringing, but nobody is answering.\tLe téléphone sonne mais personne ne répond.\nThe time has come for you to play your trump card.\tC'est le moment pour toi de jouer ton atout.\nThe time has come for you to play your trump card.\tC'est le moment pour vous de jouer votre carte maîtresse.\nThe time will come when your dream will come true.\tLe moment viendra où ton rêve s'incarnera.\nThe time will come when your dream will come true.\tLe moment viendra où votre rêve s'incarnera.\nThe train had already left when we got to station.\tLe train était déjà parti lorsque nous sommes arrivés à la gare.\nThe trip was canceled because of a terrible storm.\tLe voyage a été annulé à cause d'une terrible tempête.\nThe very idea of being sent abroad delighted them.\tL'idée même d'être envoyés à l'étranger les ravissait.\nThe village in which he was born is far from here.\tLe village dans lequel il est né est loin d'ici.\nThe wedding ceremony was performed in the morning.\tLa cérémonie de mariage a eu lieu le matin.\nThe wedding will be held in a 17th century church.\tLe mariage aura lieu dans une église du XVIIe siècle.\nThe whale shark is the largest shark in the world.\tLe requin-baleine est le plus grand requin du monde.\nThe woman managed the drunk as if he were a child.\tLa femme prit en charge le poivrot comme s'il était un enfant.\nThe workmen arrived early, bringing their ladders.\tLes ouvriers sont arrivés tôt, en amenant leurs échelles.\nThere are about seven billion people in the world.\tEnviron sept milliards d'hommes vivent dans le monde.\nThere are certainly some points worth considering.\tIl y a certainement quelques points qui méritent réflexion.\nThere are thirty students in the beginner's group.\tIl y a trente étudiants dans le groupe des commençants.\nThere are times when I'd like to be more like you.\tIl y a des fois où j'aimerais être davantage comme vous.\nThere are times when I'd like to be more like you.\tIl y a des fois où j'aimerais être davantage comme toi.\nThere was a large audience at yesterday's concert.\tIl y a eu un public très nombreux au concert d'hier.\nThere will be an energy crisis in the near future.\tIl y aura une crise énergétique dans l'avenir proche.\nThere will be an energy crisis in the near future.\tIl y aura une crise de l'énergie dans un avenir proche.\nThere's a fine line between bravery and stupidity.\tLa frontière est ténue entre la bravoure et la stupidité.\nThere's no denying the harmful effects of smoking.\tOn ne peut nier les méfaits de la tabagie.\nThere's no reason for you to fear for your safety.\tVous n'avez pas de raison de craindre pour votre sécurité.\nThere's no reason for you to fear for your safety.\tTu n'as pas de raison de craindre pour ta sécurité.\nThere's something else I need to discuss with you.\tIl y a autre chose dont j'ai besoin de parler avec toi.\nThere's something else I need to discuss with you.\tIl y a autre chose dont j'ai besoin de parler avec vous.\nThese are the steps that lead straight to failure.\tCe sont les étapes qui mènent droit à l'échec.\nThese shoes are so tight that I can't put them on.\tCes chaussures sont si serrées que je ne peux pas les mettre.\nThey aren't children any more, but not adults yet.\tCe ne sont plus des enfants, mais pas encore des adultes.\nThey awarded her a gold metal for her achievement.\tIls lui attribuèrent une médaille d'or pour sa réalisation.\nThey awarded her a gold metal for her achievement.\tIls lui attribuèrent une médaille d'or pour son accomplissement.\nThey gave him both material and spiritual support.\tIls lui procurèrent à la fois un soutien matériel et spirituel.\nThey had to find the strongest candidate possible.\tIls devaient trouver le meilleur candidat possible.\nThey prefer the shadows rather than the spotlight.\tIls préfèrent l'ombre à la lumière des projecteurs.\nThey prefer the shadows rather than the spotlight.\tElles préfèrent l'ombre à la lumière des projecteurs.\nThis is a lot more fun than I thought it would be.\tC'est beaucoup plus amusant que je ne le pensais.\nThis is a lot more fun than I thought it would be.\tC'est bien plus amusant que je ne le pensais.\nThis is longer than any other bridge in the world.\tC'est plus long que n'importe quel autre pont au monde.\nThis is the dictionary I told you about yesterday.\tC'est le dictionnaire dont je t'ai parlé hier.\nThis is the man that I see every day on the train.\tC'est l'homme que je vois tous les jours dans le train.\nThis is the very dictionary I've been looking for.\tC'est précisément le dictionnaire que je cherchais.\nThis mountain is covered with snow all year round.\tCette montagne est couverte de neige tout au long de l'année.\nThis piece of information is very important to us.\tCette information nous est très importante.\nThis theory is too difficult for me to comprehend.\tCette théorie est trop difficile pour que je puisse la comprendre.\nThis vending machine takes only hundred-yen coins.\tCe distributeur n'accepte que les pièces de 100 yen.\nThose grapes look sweet, but in fact they're sour.\tCes raisins ont l'air sucré, mais en fait ils sont acides.\nTo my surprise, she could not answer the question.\tÀ ma surprise, elle n'arriva pas à répondre à la question.\nTom and Mary don't like the same kind of TV shows.\tTom et Marie n'aiment pas le même genre d'émissions de télévision.\nTom and Mary never took their eyes off each other.\tTom et Mary ne se sont jamais quittés des yeux.\nTom asked Mary whether she planned to swim or not.\tTom a demandé à Mary si elle pensait aller nager ou non.\nTom asked me for more money than he really needed.\tTom m'a demandé plus d'argent qu'il n'en avait réellement besoin.\nTom asked me if I had a black tie he could borrow.\tTom m'a demandé s'il pouvait m'emprunter une cravate noire.\nTom began to suspect something wasn't quite right.\tTom a commencé à soupçonner que quelque chose n'était pas normal.\nTom certainly had a lot of time to think about it.\tTom avait certainement beaucoup de temps pour y penser.\nTom could barely hear what Mary was trying to say.\tTom pouvait à peine entendre ce que Mary s'efforçait de dire.\nTom didn't commit the crimes he's been accused of.\tTom n'a pas commis les crimes dont il a été accusé.\nTom didn't get home until after 2:30 this morning.\tTom n'est rentré à la maison qu'après 02h30 ce matin.\nTom didn't pay me as much as he promised he would.\tTom ne m'a pas payé autant qu'il l'a promis.\nTom doesn't believe a word of what Mary just said.\tTom ne croit pas un mot de ce que vient de dire Mary.\nTom doesn't brush his teeth as often as he should.\tTom ne se brosse pas les dents aussi souvent qu'il le devrait.\nTom had bruises all over his body after the fight.\tTom avait des ecchymoses sur tout le corps après le combat.\nTom had bruises all over his body after the fight.\tTom avait des bleus sur tout le corps après le combat.\nTom had the only pool in town with a diving board.\tTom avait la seule piscine de la ville avec un plongeoir.\nTom helped his mother decorate the Christmas tree.\tTom aida sa mère à décorer le sapin de Noël.\nTom helped his mother decorate the Christmas tree.\tTom a aidé sa mère à décorer le sapin de Noël.\nTom is living in a small apartment on Park Street.\tTom vit dans un petit appartement, rue du Parc.\nTom isn't really as rich as everyone thinks he is.\tTom n'est pas aussi riche que tout le monde le pense.\nTom isn't really sick. He's just pretending to be.\tTom n'est pas vraiment malade. Il prétend seulement l'être.\nTom isn't the only one here that can speak French.\tTom n'est pas le seul ici qui peut parler français.\nTom lives in a small town not too far from Boston.\tTom vit dans une petite ville non loin de Boston.\nTom mistakenly ate his entree with his salad fork.\tTom a mangé par erreur son entrée avec sa fourchette à salade.\nTom often eats popcorn when he's watching a movie.\tTom mange souvent du pop-corn quand il regarde un film.\nTom said he regretted not following Mary's advice.\tTom a dit qu'il regrettait de ne pas avoir suivi les conseils de Marie.\nTom sent money to help Mary care for her children.\tTom a envoyé de l'argent pour aider Marie à prendre soin de ses enfants.\nTom skipped dinner saying he was too tired to eat.\tTom sauta le dîner en disant qu'il était trop fatigué pour manger.\nTom thinks women in America wear too much perfume.\tTom pense que les américaines mettent trop de parfum.\nTom usually gives easy-to-understand explanations.\tTom donne souvent des explications faciles à comprendre.\nTom wanted Mary to stay at home with the children.\tTom voulait que Mary reste à la maison avec les enfants.\nTom was apparently murdered while he was sleeping.\tTom aurait été assassiné alors qu'il dormait.\nTom was obviously worried about what might happen.\tTom était évidemment inquiet de ce qui pourrait arriver.\nTom was stabbed to death by someone on the subway.\tTom a été poignardé à mort par quelqu'un dans le métro.\nTom was there for me when I really needed someone.\tTom était là pour moi, quand j'avais vraiment besoin de quelqu'un.\nTom was there for me when I really needed someone.\tTom fut là pour moi, quand j'eus vraiment besoin de quelqu'un.\nTom will leave the company at the end of the year.\tTom quittera l'entreprise à la fin de l'année.\nTom's gotten fatter since the last time I saw him.\tTom est devenu plus gros depuis la dernière que je l'ai vu.\nTom's injuries aren't considered life-threatening.\tLes blessures de Tom ne sont pas considérées comme une menace pour sa vie.\nTom's injuries aren't considered life-threatening.\tLes blessures de Tom ne sont pas considérées comme menaçant son pronostic vital.\nTom's parents got divorced when he was very young.\tLes parents de Tom ont divorcé quand il était encore très jeune.\nTomorrow, God willing, we'll be with your parents.\tDemain, si Dieu le veut, nous serons avec tes parents.\nTomorrow, God willing, we'll be with your parents.\tDemain, si Dieu veut, nous serons avec tes parents.\nTomorrow, God willing, we'll be with your parents.\tDemain, si Dieu le veut, nous serons avec vos parents.\nUse your common sense in that kind of a situation.\tFais preuve de bon sens dans une situation de ce genre.\nWalking down the street, I ran into an old friend.\tEn descendant la rue, je tombai sur un vieil ami.\nWater freezes at zero degrees Celsius, doesn't it?\tL'eau gèle à zéro degré, n'est-ce pas ?\nWe already have three events booked for next week.\tNous avons déjà trois événements réservés pour la semaine prochaine.\nWe are sorry we are unable to accept your request.\tNous sommes désolés, nous ne sommes pas en mesure d'accepter votre demande.\nWe become very shorthanded at the end of the year.\tNous sommes vraiment à court de personnel en fin d'année.\nWe bought our plane tickets two months in advance.\tNous avons acheté nos billets d'avion deux mois à l'avance.\nWe came to the conclusion that he should be fired.\tNous sommes arrivés à la conclusion qu'il devrait être licencié.\nWe can't begin the meeting until we have a quorum.\tNous ne pouvons commencer la réunion tant que nous n'avons pas atteint le quorum.\nWe can't change history, but we can learn from it.\tNous ne pouvons changer l'histoire, mais nous pouvons apprendre d'elle.\nWe can't stay here. The roof is about to collapse!\tNous ne pouvons pas rester là. Le toit est sur le point de s'effondrer !\nWe had less snow this winter than we had expected.\tNous avons eu moins de neige cet hiver que nous en attendions.\nWe had less snow this winter than we had expected.\tNous avons eu moins de neige cet hiver que ce que nous attendions.\nWe had less snow this winter than we had expected.\tNous avons eu moins de neige cet hiver que nous l'attendions.\nWe had to gear our lives to the new circumstances.\tIl nous a fallu adapter nos vies aux nouvelles circonstances.\nWe see each other at the supermarket now and then.\tOn se voit au supermarché de temps en temps.\nWe should get away from here as quickly as we can.\tNous devrions déguerpir d'ici aussi vite que possible.\nWe should have paid attention to the announcement.\tOn aurait dû faire attention à l'annonce.\nWe should not impose our opinions on other people.\tNous ne devrions pas imposer nos opinions aux autres.\nWe shouldn't accept his explanation at face value.\tNous ne devrions pas prendre son explication pour argent comptant.\nWe were hoping something interesting would happen.\tNous espérions que quelque chose d'intéressant surviendrait.\nWe were late for school because it rained heavily.\tEn raison de la forte pluie, nous arrivâmes trop tard à l'école.\nWe were reading a book and it was a very good one.\tNous lisions un livre qui était très bon.\nWe woke up very early in order to see the sunrise.\tNous nous levâmes tôt pour voir le lever du soleil.\nWe wouldn't want to disobey the teacher, would we?\tNous n'aimerions pas désobéir au professeur, n'est-ce pas ?\nWe've been through tougher times than this before.\tOn a connu des temps bien plus durs.\nWhat accounts for the fact that women outlive men?\tQu'est-ce qui rend compte du fait que les femmes vivent plus longtemps que les hommes ?\nWhat are some foods you usually eat with red wine?\tQuels sont les aliments qu'on mange habituellement avec du vin rouge ?\nWhat are some foods you usually eat with red wine?\tQuels sont les aliments que tu manges habituellement avec du vin rouge ?\nWhat are some foods you usually eat with red wine?\tQuels sont les aliments que vous mangez habituellement avec du vin rouge ?\nWhat did you think of the movies we saw yesterday?\tQu'as-tu pensé des films que nous avons vus hier ?\nWhat did you think of the movies we saw yesterday?\tQu'avez-vous pensé des films que nous avons vus hier ?\nWhat is the main purpose of your studying English?\tQuel est l'objectif principal de votre apprentissage de l'anglais ?\nWhat is the poorest country in the European Union?\tQuel est le pays le plus pauvre de l'Union Européenne ?\nWhat movie was it that you told me I should watch?\tQuel film m'as-tu dit que je devrais voir ?\nWhat movie was it that you told me I should watch?\tQuel est ce film dont vous m'avez dit que je devrais le voir ?\nWhat number should I call in case of an emergency?\tQuel numéro dois-je appeler en cas d'urgence ?\nWhat sort of people hang out at a place like this?\tQuel genre de personnes traîne dans un endroit pareil ?\nWhat time will the washing machine repairman come?\tÀ quelle heure le réparateur de machines à laver viendra-t-il ?\nWhat was the first instrument you learned to play?\tQuel était le premier instrument auquel vous avez appris à jouer ?\nWhat was the first instrument you learned to play?\tQuel était le premier instrument auquel tu as appris à jouer ?\nWhat you are is more important than what you have.\tCe que tu es importe davantage que ce que tu as.\nWhat's the difference between a star and a planet?\tQuelle est la différence entre une étoile et une planète ?\nWhat's wrong with running around your house naked?\tQu'y a-t-il de mal à courir nu autour de sa maison ?\nWhen I lived in Rome, I took the subway every day.\tQuand j'habitais à Rome, je prenais chaque jour le métro.\nWhen angry, count to four. When very angry, swear.\tSi tu es en colère, compte jusqu'à quatre. Si tu es très en colère, sors une bordée de jurons.\nWhen the last customer leaves, we close the doors.\tLorsque le dernier client s'en va, nous fermons les portes.\nWhen was the last time you went to an art gallery?\tQuand as-tu été dans une galerie d'art pour la dernière fois ?\nWhen was the last time you went to an art gallery?\tQuand avez-vous été dans une galerie d'art pour la dernière fois ?\nWhen will that picture I wanted enlarged be ready?\tQuand la photo que je voulais faire agrandir sera-t-elle prête ?\nWhere is the boarding gate for Japan Airlines 124?\tOù est la porte d'embarquement pour le Japan Airlines 124 ?\nWhether we succeed or not, we have to do our best.\tQue nous réussissions ou non, nous devons faire de notre mieux.\nWhich is the most difficult language in the world?\tQuel est la langue la plus difficile au monde ?\nWhoever gets home first starts cooking the supper.\tCelui qui arrive à la maison en premier commence à préparer le dîner.\nWhy do so many people suffer from low self-esteem?\tPourquoi tant de gens souffrent-ils d'un déficit d'amour-propre ?\nWhy don't you ask me what you really want to know?\tPourquoi ne me demandes-tu pas ce que tu veux vraiment savoir ?\nWhy don't you ask me what you really want to know?\tPourquoi ne me demandez-vous pas ce que vous voulez vraiment savoir ?\nWhy have the apes evolved more than other animals?\tPourquoi les singes ont-ils évolué plus que les autres animaux ?\nWill you entertain the guests while I get dressed?\tVeux-tu bien aller t'occuper des invités pendant que je m'habille ?\nWillingness to correct is an indication of wisdom.\tL'empressement à se corriger est une indication de sagesse.\nWomen are meant to be loved, not to be understood.\tLes femmes sont censées être aimées, pas comprises.\nWomen who seek to be equal with men lack ambition.\tLes femmes qui cherchent à égaler les hommes manquent d'ambition.\nWould you like to get together again next weekend?\tVoudrais-tu qu'on se revoie le week-end prochain ?\nWould you like to go camping with us next weekend?\tAimerais-tu aller camper avec nous le week-end prochain ?\nWould you like to go camping with us next weekend?\tAimeriez-vous aller camper avec nous le week-end prochain ?\nWould you like to have dinner at my place tonight?\tVoulez-vous dîner chez moi ce soir?\nWould you like to have tea with us this afternoon?\tVoudriez-vous prendre le thé avec nous cet après-midi ?\nWould you like to have tea with us this afternoon?\tVoudriez-vous prendre le thé avec nous cette après-midi ?\nWould you like to have tea with us this afternoon?\tVoudrais-tu prendre le thé avec nous cet après-midi ?\nWould you like to have tea with us this afternoon?\tVoudrais-tu prendre le thé avec nous cette après-midi ?\nWould you mind if I poured myself a cup of coffee?\tVerriez-vous un inconvénient à ce que je me serve moi-même une tasse de café ?\nWouldn't it be a better idea to cancel everything?\tNe serait-il pas plus sage de tout annuler ?\nYesterday night, I shared a cab with Paris Hilton.\tHier soir, j'ai partagé un taxi avec Paris Hilton.\nYou are the kind of guitarist I like to sing with.\tTu es le genre de guitariste avec qui j'aime chanter.\nYou are very fortunate that you have such friends.\tVous avez beaucoup de chance d'avoir de tels amis.\nYou are very fortunate that you have such friends.\tTu as beaucoup de chance d'avoir de tels amis.\nYou aren't really going to join the army, are you?\tTu ne vas pas vraiment t'enrôler dans l'armée, si ?\nYou can get a car license after you turn eighteen.\tOn peut obtenir un permis de conduire après avoir eu dix-huit ans.\nYou can make your dream come true by working hard.\tVous pouvez faire prendre corps à votre rêve en travaillant dur.\nYou can only come to China if you’ve got a visa.\tTu ne peux entrer en Chine que si tu disposes d'un visa.\nYou catch more flies with honey than with vinegar.\tOn n'attrape pas des mouches avec du vinaigre.\nYou don't have an alibi for the day of the murder.\tVous n'avez pas d'alibi pour le jour du meurtre.\nYou don't have the qualifications to lead a group.\tTu n'as pas les qualifications pour diriger un groupe.\nYou don't need to thank me. I'm here to serve you.\tIl ne vous est point nécessaire de me remercier. Je suis ici pour vous servir.\nYou don't need to thank me. I'm here to serve you.\tTu n'as pas besoin de me remercier. Je suis là pour te servir.\nYou have provided me with some very useful advice.\tTu m'as fourni des conseils très utiles.\nYou have provided me with some very useful advice.\tVous m'avez fourni quelques précieux conseils.\nYou look like somebody I went to high school with.\tVous ressemblez à quelqu'un avec qui j'ai été au lycée.\nYou look like somebody I went to high school with.\tTu ressembles à quelqu'un avec qui j'ai été au lycée.\nYou must be blind as a bat if you couldn't see it.\tTu dois être myope comme une taupe si tu ne pouvais pas le voir.\nYou must be blind as a bat if you couldn't see it.\tTu dois être aveugle comme une chauve-souris si tu ne pouvais pas le voir.\nYou need to stop ignoring email messages from Tom.\tVous devez arrêter d'ignorer les e-mails de Tom.\nYou seem to want me to talk you out of doing that.\tIl semble que tu veuilles que je te persuade de ne pas le faire.\nYou seem to want me to talk you out of doing that.\tIl semble que vous vouliez que je vous persuade de ne pas le faire.\nYou should be careful not to become overconfident.\tTu devrais faire attention de ne pas devenir trop sûr de toi-même.\nYou should be careful not to become overconfident.\tVous devriez faire attention de ne pas devenir trop sûr de vous-même.\nYou should do all you can to help your neighbours.\tTu dois faire tout ton possible pour aider tes voisins.\nYou should do all you can to help your neighbours.\tOn doit faire tout ce qu'on peut pour aider ses voisins.\nYou should know better than to ask a lady her age.\tVous devriez savoir qu'on ne demande pas son âge à une dame.\nYou should not have done it without my permission.\tTu n'aurais pas dû le faire sans mon accord.\nYou should protect your eyes from direct sunlight.\tTu devrais te protéger les yeux de la lumière directe du soleil.\nYou should protect your eyes from direct sunlight.\tVous devriez vous protéger les yeux de la lumière directe du soleil.\nYou shouldn't go around telling lies about people.\tTu ne devrais pas raconter des mensonges sur les gens à la cantonade.\nYou shouldn't have said that kind of thing to him.\tTu n'aurais pas dû lui dire une telle chose.\nYou were working yesterday afternoon, weren't you?\tTu travaillais, hier après-midi, n'est-ce pas ?\nYou were working yesterday afternoon, weren't you?\tTu étais en train de travailler, hier après-midi, n'est-ce pas ?\nYou were working yesterday afternoon, weren't you?\tVous travailliez, hier après-midi, n'est-ce pas ?\nYou were working yesterday afternoon, weren't you?\tVous étiez en train de travailler, hier après-midi, n'est-ce pas ?\nYou would look stupid wearing your mother's dress.\tT'aurais l'air idiot à porter la robe de ta mère.\nYou would look stupid wearing your mother's dress.\tT'aurais l'air idiote à porter la robe de ta mère.\nYou'd better go to see your family doctor at once.\tTu ferais mieux d'aller voir ton médecin de famille tout de suite.\nYou'd better go to see your family doctor at once.\tVous feriez mieux d'aller voir votre médecin de famille immédiatement.\nYou're never going to believe what happened today.\tTu ne vas jamais croire ce qui est arrivé aujourd'hui.\nYou're the only person who ever comes to visit me.\tVous êtes la seule personne à jamais me rendre visite.\nYoung children shouldn't watch so much television.\tLes jeunes enfants ne devraient pas tant regarder la télévision.\nYour plan is a good one, but mine is a better one.\tVotre projet est bon mais le mien est meilleur.\n\"You had better not wear the red dress.\" \"Why not?\"\t« Tu ferais mieux de ne pas mettre cette robe rouge. » « Pourquoi cela ? »\nA few days ago, you didn't even want to talk to me.\tIl y a quelques jours, tu ne voulais même pas m'adresser la parole.\nA great deal of energy is locked up in the nucleus.\tIl y a beaucoup d'énergie emprisonnée dans le noyau.\nA horseshoe and a four-leaf clover bring good luck.\tUn fer-à-cheval et un trèfle à quatre feuilles portent bonheur.\nA hypochondriac imagines maladies where none exist.\tUn hypocondriaque imagine des maladies là où elles n'existent pas.\nA long spell of rainy weather is harmful to plants.\tUne longue période de temps pluvieux est néfaste pour les plantes.\nA magnet can pick up and hold many nails at a time.\tUn aimant peut soulever et maintenir de nombreux clous en même temps.\nA meal without wine is like a day without sunshine.\tUn repas sans vin est comme une journée sans soleil.\nA new building is being built in front of my house.\tUn nouveau bâtiment est en construction en face de chez moi.\nA person who chases two rabbits won't catch either.\tUne personne qui pourchasse deux lapins n'en attrapera aucun.\nA puppet does not know that it is being controlled.\tUne marionnette ne sait pas qu'elle est manipulée.\nA room without books is like a body without a soul.\tUne pièce sans livres est comme un corps sans âme.\nA sensible man wouldn't say such a thing in public.\tUn homme sensé ne dirait pas une telle chose en public.\nA sentence doesn't have to be long to be beautiful.\tUne phrase n'a pas besoin d'être longue pour être belle.\nA sprain like this should heal within a week or so.\tUne entorse comme celle-ci devrait guérir en une semaine tout au plus.\nAccidents will happen when they are least expected.\tLes accidents arrivent lorsqu'on s'y attend le moins.\nAccording to our teacher, she entered the hospital.\tSelon notre enseignant, elle est entrée à l'hôpital.\nAccording to the newspapers, he will be here today.\tD'après les journaux, il sera là aujourd'hui.\nActivists try to prevent disease in poor countries.\tDes activistes tentent de prévenir les maladies dans les pays pauvres.\nAfter he heard the news, Tom was in seventh heaven.\tAprès avoir entendu la nouvelle, Tom était au septième ciel.\nAgriculture is an important industry in California.\tL'agriculture est une activité importante en Californie.\nAll of a sudden, I felt a sharp pain in my stomach.\tTout à coup, je ressentis une vive douleur à l'estomac.\nAll the cherry trees in the park are in full bloom.\tTous les cerisiers du parc sont en fleurs.\nAnyone can do their bit to protect the environment.\tChacun peut apporter sa pierre à la protection de l'environnement.\nApart from his parents, no one knows him very well.\tPersonne ne le connaît très bien à part ses parents.\nApproximately 300 houses were built here last year.\tEnviron 300 maisons ont été construites ici l'année dernière.\nAre you seriously thinking about becoming involved?\tPenses-tu sérieusement à t'engager ?\nAre you seriously thinking about driving all night?\tEnvisages-tu sérieusement de conduire toute la nuit ?\nAre you seriously thinking about getting a divorce?\tPenses-tu sérieusement à divorcer ?\nAre you seriously thinking about getting a divorce?\tPensez-vous sérieusement à divorcer ?\nAre you seriously thinking about quitting your job?\tPenses-tu sérieusement à quitter ton emploi ?\nAre you seriously thinking about quitting your job?\tPensez-vous sérieusement à quitter votre emploi ?\nAs far as I know, he has never made such a mistake.\tPour autant que je sache, il n'a jamais fait une telle erreur.\nAs soon as I've finished doing that, I'll help you.\tDès que j'ai terminé de faire ça, je t'aiderai.\nAs soon as I've finished doing that, I'll help you.\tAussitôt que j'ai terminé de faire ça, je vous aiderai.\nAs soon as he was left alone, he opened the letter.\tDès qu’il fut seul, il ouvrit la lettre.\nAs soon as she saw me, she greeted me with a smile.\tDès qu'elle me vit, elle me salua d'un sourire.\nAs soon as we got to the lake, we started swimming.\tÀ peine arrivés au lac, nous sommes allés nager.\nAs usual, he was the last to arrive at the theater.\tComme d'habitude, il était le dernier à arriver au théâtre.\nAt least you'll have something to write home about.\tAu moins auras-tu quelque chose à raconter aux tiens.\nAt least you'll have something to write home about.\tAu moins aurez-vous quelque chose à raconter aux vôtres.\nBeing too nervous to reply, he stared at the floor.\tTrop énervé pour répondre, il fixa le sol.\nBesides being an actress, she was a famous painter.\tEn plus d'être une actrice, elle était un peintre célèbre.\nBetter the devil you know than the devil you don't.\tLe diable que tu connais vaut mieux que le diable que tu ne connais pas.\nBring me a clean plate and take the dirty one away.\tApportez-moi une assiette propre et emmenez la sale.\nBy the time she gets there, it will be nearly dark.\tÀ l'heure à laquelle elle va arriver, il fera presque noir.\nBy the time she gets there, it will be nearly dark.\tLe temps qu'elle arrive, il fera presque nuit.\nCan you imagine what the 21st century will be like?\tPeux-tu imaginer ce à quoi le 21e siècle aura l'air ?\nCan you jump over a chair from a standing position?\tEs-tu capable de sauter par dessus une chaise à partir de la station debout ?\nCan you jump over a chair from a standing position?\tÊtes-vous capable de sauter par dessus une chaise à partir de la station debout ?\nCan you jump over a chair from a standing position?\tÊtes-vous capables de sauter par dessus une chaise à partir de la station debout ?\nCan you recommend a place for me to stay in London?\tPouvez-vous recommander un endroit où je puisse séjourner, à Londres ?\nCan't you hear all the car horns honking behind us?\tNe peux-tu pas entendre tous les klaxons des voitures derrière nous ?\nCan't you hear all the car horns honking behind us?\tNe pouvez-vous pas entendre tous les klaxons des voitures derrière nous ?\nCan't you keep your dog from coming into my garden?\tVous ne pouvez pas empêcher votre chien d'entrer dans mon jardin ?\nCanada and Mexico both share a border with the USA.\tLe Canada et le Mexique sont situés le long des frontières américaines.\nCarbon monoxide poisoning can cause hallucinations.\tL'intoxication par le monoxyde de carbone peut provoquer des hallucinations.\nChildren's laughter could be heard in the distance.\tOn pouvait entendre les rires des enfants, au loin.\nChina is about twenty-five times as large as Japan.\tLa Chine est à peu près 25 fois plus grande que le Japon.\nCoffee prices have jumped almost 50% in six months.\tLes prix du café ont bondi de presque cinquante pour cent en six mois.\nCould you please tell me how to get to the station?\tPourriez-vous m'indiquer le chemin de la gare ?\nCould you tell me how to get to the subway station?\tPourriez-vous me dire comment parvenir à la station de métro ?\nCrows all but destroyed the farmer's field of corn.\tDes corneilles ont presque détruit le champ de maïs du fermier.\nCrows all but destroyed the farmer's field of corn.\tLes corneilles ont presque détruit le champ de maïs du fermier.\nDo not count your chickens before they are hatched.\tNe comptez pas vos poussins avant qu'ils ne soient éclos.\nDo not fear the unexpected, but be prepared for it.\tNe craignez pas l'imprévu mais soyez-y prêts.\nDo what you can, with what you have, where you are.\tFais ce que tu peux, avec ce que tu as, là où tu es.\nDo you have any children you haven't told me about?\tAs-tu le moindre enfant dont tu ne m'aies pas parlé ?\nDo you have any children you haven't told me about?\tAvez-vous le moindre enfant dont vous ne m'ayez pas parlé ?\nDo you still want me to give Tom your old computer?\tVeux-tu toujours que je donne ton ancien ordinateur à Tom ?\nDon't complicate the problem by raising new issues.\tNe complique pas le problème en soulevant de nouveaux points.\nDon't let the truth get in the way of a good story.\tNe laissez pas la vérité entraver une bonne histoire.\nDon't mind me. Just keep doing what you were doing.\tNe fais pas attention à moi. Continue ce que tu étais en train de faire.\nDon't people tell you you look like Audrey Hepburn?\tLes gens ne vous disent-ils pas que vous ressemblez à Audrey Hepburn ?\nDon't put off until tomorrow what you can do today.\tNe remettez pas à demain ce que vous pouvez faire aujourd'hui.\nDon't trust people who praise you in your presence.\tNe te fie pas aux gens qui font ton éloge en ta présence.\nDon't trust people who praise you in your presence.\tNe vous fiez pas aux gens qui font votre éloge en votre présence.\nDon't you think we should at least give Tom a call?\tNe penses-tu pas qu'on devrait au moins appeler Tom ?\nDon’t post drunk pictures on Facebook or Twitter.\tNe publiez pas de photos de beuveries sur Facebook ou Twitter.\nDraw two concentric circles of differing diameters.\tTracez deux cercles concentriques de diamètres différents.\nDriving on a slippery road can lead to a car wreck.\tConduire sur une route glissante peut mener à l'accident.\nDuring the war, people went through many hardships.\tPendant la guerre les gens ont traversé bien des épreuves.\nEach time I see this picture, I remember my father.\tChaque fois que je vois cette photo, je me souviens de mon père.\nEither stop talking or say something worth hearing.\tSoit tu te tais, soit tu dis quelque chose d'intéressant.\nEither stop talking or say something worth hearing.\tSoit vous vous taisez, soit vous dites quelque chose d'intéressant.\nElephants are the largest land animals alive today.\tLes éléphants sont les plus gros animaux terrestres vivant actuellement.\nEven if you are busy, you should keep your promise.\tMême si tu es occupé, tu devrais tenir ta promesse.\nEven though he was tired, he went on with his work.\tMême s'il était fatigué, il continua son travail.\nEven though she was a heavy woman, she danced well.\tBien qu'elle fût une grosse femme, elle dansait très bien.\nEvery time I went to his house, he was not at home.\tÀ chaque fois que j'allais chez lui, il n'était pas là.\nEveryone ought to be the master of his own destiny.\tChacun devrait être maître de son destin.\nExcuse me, does this train go to Washington Square?\tExcusez-moi, ce train va-t-il à Washington Square ?\nExpensive meals can't compensate for lack of sleep.\tDes repas onéreux ne compensent en rien le manque de sommeil.\nFor me, being a doctor isn't a job, it's a calling.\tPour moi, être médecin n'est pas un emploi, c'est une vocation.\nFor some reason the microphone didn't work earlier.\tPour une raison quelconque, le microphone ne fonctionnait pas tout à l'heure.\nFrom our point of view, his proposal is reasonable.\tDe notre point de vue, sa proposition est acceptable.\nGenerally speaking, boys like girls with long hair.\tEn général, les garçons aiment les filles aux cheveux longs.\nGenerally speaking, little girls are fond of dolls.\tDe manière générale, les petites filles adorent les poupées.\nGestures are very important in human communication.\tLes gestes sont très importants dans la communication entre humains.\nHad it not been for your help, I would have failed.\tSans ton aide j'aurais échoué.\nHave you given any more thought to what I told you?\tAs-tu réfléchis à ce que je t'ai dit ?\nHave you read the leading article in today's paper?\tAvez-vous lu l'éditorial du journal de ce matin ?\nHave you read the leading article in today's paper?\tAvez-vous lu l'éditorial du journal du matin ?\nHe asked me to return the money to him immediately.\tIl me demanda de lui rendre l'argent immédiatement.\nHe became the company president when he was thirty.\tIl devint président de la société à l'âge de trente ans.\nHe belittles others to make himself feel important.\tIl rabaisse les autres pour se sentir important.\nHe belittles others to make himself feel important.\tIl déprécie les autres pour se sentir important.\nHe came all the way to talk over a problem with me.\tIl a fait tout le chemin pour trouver une solution à un problème en discutant avec moi.\nHe can't chew well, because he has a toothache now.\tIl ne peut pas bien mâcher parce qu'il a mal aux dents, en ce moment.\nHe confided in me things he would tell no one else.\tIl me confiait des choses qu'il n'aurait dites à personne d'autre.\nHe confirmed that something was wrong with his car.\tIl confirma que quelque chose n'allait pas avec sa voiture.\nHe dedicated his whole life to helping poor people.\tIl a consacré sa vie entière à soutenir les pauvres gens.\nHe denounced all forms of dishonesty in government.\tIl dénonça toutes formes de malhonnêteté dans le gouvernement.\nHe didn't answer the phone, so I sent him an email.\tComme il n'a pas répondu au téléphone, je lui ai envoyé un courriel.\nHe didn't make public what he had discovered there.\tIl ne rendit pas public ce qu'il y avait découvert.\nHe doesn't have the necessary skills for that task.\tIl ne dispose pas des compétences nécessaires à cette tâche.\nHe doesn't work here now, but he used to work here.\tIl ne travaille plus ici maintenant, mais avant il travaillait bien ici.\nHe finally made a name for himself as a politician.\tFinalement il s'est fait un nom comme homme politique.\nHe flinches whenever he hears a loud, sudden noise.\tIl tressaille chaque fois qu'il entend un bruit fort et soudain.\nHe got up and left in the middle of the discussion.\tIl s'est levé et est parti au milieu de la discussion.\nHe got up and left in the middle of the discussion.\tIl se leva et partit au milieu de la discussion.\nHe had led the Republican Party with great success.\tIl avait dirigé la Parti Républicain avec beaucoup de succès.\nHe had little experience with international issues.\tIl avait peu d'expérience des problèmes internationaux.\nHe has given up smoking for the sake of his health.\tIl a arrêté de fumer pour préserver sa santé.\nHe has no right to interfere in our family affairs.\tIl n'a pas le droit d'interférer dans nos affaires de famille.\nHe has only a superficial knowledge of the subject.\tIl n'a qu'une connaissance superficielle du sujet.\nHe has squandered every opportunity I've given him.\tIl a gâché toutes les chances que je lui ai données.\nHe introduced me to his relatives at the reception.\tÀ la réception, il m'a présenté à sa famille.\nHe is a type of a person who calls a spade a spade.\tC'est le genre de personne à appeler un chat, un chat.\nHe is acquainted with the modern history of France.\tIl a des connaissances en histoire moderne de la France.\nHe is always dwelling on the pleasures of the past.\tIl est constamment perdu dans des pensées nostalgiques.\nHe is extremely pessimistic and has no aspirations.\tIl est extrêmement pessimiste et n'a pas d'ambitions.\nHe is going to stay with his uncle for the weekend.\tIl va rester avec son oncle pour le weekend.\nHe is in charge of entertaining the foreign guests.\tIl est chargé de divertir les invités étrangers.\nHe is not aggressive enough to succeed in business.\tIl n'est pas suffisamment agressif pour réussir dans les affaires.\nHe is proud that his father was a famous scientist.\tIl est fier de ce que son père était un grand scientifique.\nHe kicked his shoes off without untying them first.\tIl se débarrassa de ses chaussures d'un coup de pied sans préalablement les délacer.\nHe makes it a rule to write in his diary every day.\tIl se fait une règle d'écrire dans son journal tous les jours.\nHe postponed leaving for Hokkaido until next month.\tIl a repoussé son départ pour Hokkaido au mois prochain.\nHe refused our offer to arrange a press conference.\tIl refusa notre proposition d'organiser une conférence de presse.\nHe requested that I come here again this afternoon.\tIl me demanda de revenir ici cet après-midi.\nHe went to see her in the hospital every other day.\tIl alla la voir à l'hôpital tous les deux jours.\nHe will never live up to his parent's expectations.\tIl ne satisfera jamais aux ambitions de ses parents.\nHe will never live up to his parent's expectations.\tIl ne satisfera jamais aux attentes de ses parents.\nHe wrote a book about his adventures in the jungle.\tIl a écrit un livre sur ses aventures dans la jungle.\nHe's the new CEO from the parent company in France.\tIl est le nouveau PDG de la société mère en France.\nHer condition took a turn for the worse last night.\tSa santé s'est soudain aggravée la nuit dernière.\nHis car spun out of control going around the curve.\tSa voiture se mit à tournoyer dans le virage.\nHis fake moustache started to peel off on one side.\tSa fausse moustache commença à se décoller d'un côté.\nHis income is now double what it was ten years ago.\tSes revenus sont à présent le double de ce qu'ils étaient il y a dix ans.\nHis story was too ridiculous for anyone to believe.\tSon histoire était trop ridicule pour que quiconque y croie.\nHow do you help someone who doesn't want your help?\tComment aides-tu quelqu'un qui ne veut pas de ton aide ?\nHow do you remove red wine stains from your carpet?\tComment retire-t-on les taches de vin de son tapis ?\nHow do you remove red wine stains from your carpet?\tComment retire-t-on les taches de vin de sa moquette ?\nHow long has it been since you played with a yo-yo?\tDepuis quand n'as-tu pas joué au yoyo ?\nHow many hours a day does she spend in the kitchen?\tCombien d'heures passe-t-elle par jour dans la cuisine ?\nHow many hours a day does she spend in the kitchen?\tCombien d'heures passe-t-elle par jour à la cuisine ?\nHow many hours a day does she spend in the kitchen?\tCombien d'heures passe-t-elle quotidiennement à la cuisine ?\nHow many letters are there in the English alphabet?\tCombien y a-t-il de lettres dans l'alphabet anglais ?\nHow many letters are there in the English alphabet?\tCombien de lettres y a-t-il dans l'alphabet anglais ?\nHow many people does it take to change a lightbulb?\tCombien de gens cela prend-il de changer une ampoule ?\nHow much do you know about artificial intelligence?\tCombien en sais-tu sur l'intelligence artificielle ?\nHow much do you know about artificial intelligence?\tCombien en savez-vous sur l'intelligence artificielle ?\nHowever hard you try, you can't finish it in a day.\tAussi dur que tu essaies, tu ne peux pas le finir en un jour.\nHowever hard you try, you can't finish it in a day.\tAussi dur que vous essayiez, vous ne pouvez pas le terminer en un jour.\nHuge numbers of soldiers and civilians were killed.\tDes quantités énormes de soldats et de civils furent tués.\nI addressed the envelope containing the invitation.\tJ'inscrivis l'adresse sur l'enveloppe contenant l'invitation.\nI agree with your interpretation to a large extent.\tJe suis d'accord avec votre interprétation, dans une large mesure.\nI am sure I can get in touch with him by telephone.\tJe suis sûr de pouvoir le contacter par téléphone.\nI am surprised that your family has a Japanese car.\tJe suis étonnée que votre famille ait une voiture japonaise.\nI am wondering if I could be of any service to you.\tJe me demandais si je pouvais vous être utile.\nI appreciate your answering my enquiry so promptly.\tJ'apprécie que vous ayez aussi promptement répondu à mon enquête.\nI can assure you that honesty pays in the long run.\tJe t'assure que l'honnêteté paie sur le long terme.\nI can't believe that you actually got into Harvard.\tJe n'arrive pas à croire que tu aies vraiment réussi à rentrer à Harvard.\nI can't believe that's what's really bothering Tom.\tJe ne peux pas croire que ce soit cela qui ennuie vraiment Tom.\nI can't believe that's what's really troubling Tom.\tJe ne peux pas croire que ce soit ce qui trouble réellement Tom.\nI can't believe we've finally finished the project.\tJe n'arrive pas à croire que nous ayons finalement terminé le projet.\nI can't get over how different the weather is here.\tJe n'arrive pas à me faire à l'idée que le temps est si différent ici.\nI can't study anywhere in my house. It's too noisy.\tJe n'arrive à étudier nulle part chez moi; il y a trop de bruit.\nI can't tell you how much your support means to us.\tJe ne peux pas te dire combien ton soutien signifie pour nous.\nI can't tell you how much your support means to us.\tJe ne peux pas vous dire combien votre soutien signifie pour nous.\nI can't understand why she doesn't love me anymore.\tJe n'arrive pas à comprendre pourquoi elle ne m'aime plus.\nI could tell you that I love you, but I'd be lying.\tJe pourrais te dire que je t'aime, mais je mentirais.\nI couldn't bring myself to throw your picture away.\tJe n'ai pas pu me résoudre à jeter ta photo.\nI couldn't bring myself to throw your picture away.\tJe n'ai pas pu me résoudre à jeter votre photo.\nI couldn't prevent Tom from eating all the cookies.\tJe n'ai pas pu empêcher Tom de manger tous les gâteaux.\nI deal in facts and figures, not vague impressions.\tJe raisonne sur des faits et des chiffres, et non pas sur de vagues impressions.\nI didn't feel very well, but I went to work anyway.\tJe ne me sentais pas particulièrement bien mais allai néanmoins travailler.\nI didn't know whether I wanted to go to university.\tJe ne savais pas si je voulais aller à l'université.\nI don't earn enough money to buy clothes regularly.\tJe ne gagne pas assez d'argent pour acheter des vêtements régulièrement.\nI don't even want to think about what could happen.\tJe ne veux même pas songer à ce qui pourrait se produire.\nI don't even want to think about what could happen.\tJe ne veux même pas songer à ce qui pourrait arriver.\nI don't feel well today and prefer to stay at home.\tJe ne me sens pas bien aujourd'hui et je préfère rester à la maison.\nI don't know how you lasted five years in that job.\tJe ne sais comment vous avez tenu ce poste pendant cinq ans.\nI don't know how you lasted five years in that job.\tJe ne sais comment tu as tenu ce poste pendant cinq ans.\nI don't know if I can make it to your party or not.\tJ'ignore si je peux assister à votre fête ou pas.\nI don't know if I can make it to your party or not.\tJ'ignore si je peux assister ou pas à votre fête.\nI don't know if I'll be able to help you on Monday.\tJe ne sais pas si je serai en mesure de vous aider, lundi.\nI don't know if I'll be able to help you on Monday.\tJe ne sais pas si je serai en mesure de t'aider, lundi.\nI don't know whether he'll come by train or by car.\tJe ne sais pas s'il viendra par le train ou en voiture.\nI don't know whether he'll come by train or by car.\tJ'ignore s'il viendra en train ou en voiture.\nI don't like the polluted atmosphere of big cities.\tJe n'aime pas l'atmosphère polluée des grandes villes.\nI don't like to take on the heavy responsibilities.\tJe n'aime pas me charger de lourdes responsabilités.\nI don't really want to bother you with my problems.\tJe ne veux pas vraiment vous ennuyer avec mes problèmes.\nI don't really want to bother you with my problems.\tJe ne veux pas vraiment t'ennuyer avec mes problèmes.\nI don't really want to pay that much for a new car.\tJe ne veux pas vraiment payer autant pour une nouvelle voiture.\nI don't recognize any of the people in the picture.\tJe ne reconnais aucune des personnes sur la photo.\nI don't think I could forgive myself if I did that.\tJe ne pense pas que je puisse me pardonner si je faisais cela.\nI don't think I could forgive myself if I did that.\tJe ne pense pas pouvoir me pardonner si je faisais cela.\nI don't think I could forgive myself if I did that.\tJe ne pense pas que je pourrais me pardonner si je faisais cela.\nI don't think I have what it takes to be a teacher.\tJe ne pense pas avoir l’étoffe d’un enseignant.\nI don't think I have what it takes to be a teacher.\tJe ne pense pas avoir la carrure d’un enseignant.\nI don't think I have what it takes to be a teacher.\tJe ne pense pas avoir la carrure d’une enseignante.\nI don't think I have what it takes to be a teacher.\tJe ne pense pas avoir l’étoffe d’une enseignante.\nI don't think that I deserved the punishment I got.\tJe ne pense pas que je méritais la punition qui m'a été infligée.\nI don't think this is the best time to talk to Tom.\tJe ne pense pas que ce soit le meilleur moment pour parler à Tom.\nI don't understand why she doesn't love me anymore.\tJe ne comprends pas pourquoi elle ne m'aime plus.\nI don't use taxis unless it's absolutely necessary.\tJe n'utilise jamais le service de taxis, à moins que ce ne soit strictement nécessaire.\nI don't want to see him, let alone go out with him.\tJe ne veux pas le voir, encore moins sortir avec lui.\nI feel terrible, but I've just broken your ashtray.\tJe suis terriblement confus, je viens de casser votre cendrier.\nI fell in love with someone my parents didn't like.\tJe suis tombé amoureux de quelqu'un que mes parents n'appréciaient pas.\nI fell in love with someone my parents didn't like.\tJe suis tombée amoureuse de quelqu'un que mes parents n'appréciaient pas.\nI felt somebody patting on my shoulder from behind.\tJe sentis quelqu'un me tapoter l'épaule derrière moi.\nI figured you wouldn't want to go there without me.\tJe me figurais que tu ne voudrais pas y aller sans moi.\nI figured you wouldn't want to go there without me.\tJe me figurais que vous ne voudriez pas y aller sans moi.\nI find it difficult to express my meaning in words.\tJ'éprouve de la difficulté à exprimer mon opinion en paroles.\nI found it necessary to get up early every morning.\tJ'ai estimé nécessaire de me lever tôt chaque matin.\nI found it necessary to get up early every morning.\tJ'estimai nécessaire de me lever tôt chaque matin.\nI found the diary that my father kept for 30 years.\tJ'ai trouvé le journal que mon père a tenu pendant 30 ans.\nI found this book interesting from start to finish.\tJ'ai trouvé ce livre intéressant du début à la fin.\nI get nervous when I speak before a large audience.\tJe deviens nerveux quand je parle devant un large public.\nI get the feeling you don't really want me to stay.\tJ'ai le sentiment que vous ne voulez pas vraiment que je reste.\nI get the feeling you don't really want me to stay.\tJ'ai le sentiment que tu ne veux pas vraiment que je reste.\nI go to the office by bicycle except on rainy days.\tJe me rends au bureau en vélo, à l'exception des jours de pluie.\nI got up on the wrong side of the bed this morning.\tJe me suis levé de mauvais poil ce matin.\nI guess you heard about what happened this morning.\tJe suppose que tu as ouï dire ce qui s'est passé ce matin.\nI guess you heard about what happened this morning.\tJe suppose que vous avez ouï dire ce qui s'est passé ce matin.\nI guess you heard about what happened this morning.\tJe suppose que tu as ouï dire ce qui s'est produit ce matin.\nI guess you heard about what happened this morning.\tJe suppose que vous avez ouï dire ce qui s'est produit ce matin.\nI guess you heard about what happened this morning.\tJe suppose que vous avez ouï dire ce qui est arrivé ce matin.\nI guess you heard about what happened this morning.\tJe suppose que tu as ouï dire ce qui est arrivé ce matin.\nI guess you heard about what happened this morning.\tJe suppose que tu as entendu dire ce qui s'est produit ce matin.\nI guess you heard about what happened this morning.\tJe suppose que vous avez entendu dire ce qui s'est produit ce matin.\nI guess you heard about what happened this morning.\tJe suppose que vous avez entendu dire ce qui est arrivé ce matin.\nI guess you heard about what happened this morning.\tJe suppose que tu as entendu dire ce qui est arrivé ce matin.\nI guess you heard about what happened this morning.\tJe suppose que vous avez entendu dire ce qui s'est passé ce matin.\nI guess you heard about what happened this morning.\tJe suppose que tu as entendu dire ce qui s'est passé ce matin.\nI guess you think you're pretty special, don't you?\tJe présume que vous pensez être plutôt singulier, n'est-ce pas ?\nI guess you think you're pretty special, don't you?\tJe présume que tu penses être plutôt singulier, n'est-ce pas ?\nI guess you think you're pretty special, don't you?\tJe présume que tu penses être plutôt singulière, n'est-ce pas ?\nI guess you think you're pretty special, don't you?\tJe présume que vous pensez être plutôt singulière, n'est-ce pas ?\nI had a couple of questions, but I didn't ask them.\tJ'avais quelques questions mais je ne les ai pas posées.\nI had a nice long chat with my girlfriend's father.\tJ'ai eu une longue et agréable conversation avec le père de ma petite amie.\nI had a nice long chat with my girlfriend's father.\tJ'ai eu une longue et agréable conversation avec le père de ma copine.\nI had hardly reached the school when the bell rang.\tJ'étais à peine arrivé à l'école quand la sonnerie retentit.\nI had some interesting experiences while traveling.\tJ'ai fait des expériences intéressantes en voyageant.\nI had the chance to buy that, but I decided not to.\tJ'ai eu l'occasion de l'acheter mais j'ai décidé de ne pas le faire.\nI had things to do, so I couldn't leave right away.\tJ'ai eu des choses à faire, de telle sorte que je n'ai pas pu partir immédiatement.\nI had to push my bicycle because I had a flat tire.\tJ'ai dû pousser mon vélo, car j'avais un pneu à plat.\nI hate it when my clothes smell of cigarette smoke.\tJe déteste quand mes habits sentent la clope.\nI have been living in Canada for almost five years.\tÇa fait presque 5 ans que je vis au Canada.\nI have been working for this newspaper for 4 years.\tCela fait 4 ans que je travaille pour ce journal.\nI have faith in your ability to do the right thing.\tJe crois en ta capacité à faire ce qu'il faut.\nI have practiced piano every day for fifteen years.\tJ'ai pratiqué le piano tous les jours pendant 15 ans.\nI hope it was as much fun for you as it was for me.\tJ'espère que tu t'es amusé autant que moi.\nI hope that you won't make the same mistake as Tom.\tJ'espère que tu ne feras pas la même erreur que Tom.\nI hope your business trip to France was successful.\tJ'espère que votre voyage d'affaires en France a été une réussite.\nI interpreted what he said in French into Japanese.\tJ'interprétais en japonais ce qu'il disait en français.\nI just don't want to have people thinking I'm weak.\tJe ne veux tout simplement pas que les gens pensent que je suis faible.\nI just don't want to have people thinking I'm weak.\tJe ne veux pas que les gens pensent que je suis faible, un point c'est tout.\nI just know that I don't want to be married to you.\tJe sais tout simplement que je ne veux pas être marié avec toi.\nI just know that I don't want to be married to you.\tJe sais tout simplement que je ne veux pas être mariée avec toi.\nI just know that I don't want to be married to you.\tJe sais tout simplement que je ne veux pas être marié avec vous.\nI just know that I don't want to be married to you.\tJe sais tout simplement que je ne veux pas être mariée avec vous.\nI just know that I don't want to be married to you.\tJe sais que je ne veux pas être marié avec toi, un point c'est tout.\nI just know that I don't want to be married to you.\tJe sais que je ne veux pas être mariée avec toi, un point c'est tout.\nI just know that I don't want to be married to you.\tJe sais que je ne veux pas être marié avec vous, un point c'est tout.\nI just know that I don't want to be married to you.\tJe sais que je ne veux pas être mariée avec vous, un point c'est tout.\nI just posted a great picture of wombats on Flickr.\tJe viens de mettre une excellente image de wombats sur Flickr.\nI just thought you might want to go skiing with us.\tJ'ai simplement pensé qu'il se pourrait que tu veuilles venir skier avec nous.\nI just thought you might want to go skiing with us.\tJ'ai simplement pensé qu'il se pourrait que vous vouliez venir skier avec nous.\nI just want to know what I'm getting involved with.\tJe veux juste savoir dans quoi je mets les pieds.\nI just want to make enough money to feed my family.\tJe veux seulement faire assez d'argent pour nourrir ma famille.\nI just want you to know how much I appreciate this.\tJe veux juste que tu saches combien j'apprécie ça.\nI know a guy who goes fishing almost every weekend.\tJe connais un type qui va pêcher presque chaque week-end.\nI know that plenty of guys want to go out with you.\tJe sais que des tas de garçons veulent sortir avec toi.\nI know that plenty of guys want to go out with you.\tJe sais que des tas de garçons veulent sortir avec vous.\nI know who didn't do what they were supposed to do.\tJe sais qui n'a pas fait ce qu'ils étaient censés faire.\nI know who didn't do what they were supposed to do.\tJe sais qui n'a pas fait ce qu'elles étaient censées faire.\nI know you didn't really want to come on this trip.\tJe sais que vous ne vouliez pas vraiment vous joindre à ce voyage.\nI know you didn't really want to come on this trip.\tJe sais que tu ne voulais pas vraiment te joindre à ce voyage.\nI live with my mother, brother and my grandparents.\tJe vis avec ma mère, mon frère et mes grands-parents.\nI need some cardboard boxes to pack my possessions.\tJ'ai besoin de caisses en carton pour empaqueter mes effets.\nI never for a moment imagined that I'd be homeless.\tÀ aucun moment n'ai-je imaginé que je serais sans domicile.\nI never realized how hard it must be to be a woman.\tJe n'ai jamais réalisé à quel point cela doit être difficile d'être une femme.\nI never should've let you go home alone last night.\tJe n'aurais jamais dû te laisser rentrer chez toi seul, la nuit dernière.\nI never should've let you go home alone last night.\tJe n'aurais jamais dû te laisser rentrer chez toi seule, la nuit dernière.\nI never should've let you go home alone last night.\tJe n'aurais jamais dû vous laisser rentrer chez vous seul, la nuit dernière.\nI never should've let you go home alone last night.\tJe n'aurais jamais dû vous laisser rentrer chez vous seule, la nuit dernière.\nI never should've let you go home alone last night.\tJe n'aurais jamais dû vous laisser rentrer chez vous seuls, la nuit dernière.\nI never should've let you go home alone last night.\tJe n'aurais jamais dû vous laisser rentrer chez vous seules, la nuit dernière.\nI ought to have consulted my parents on the matter.\tJ'aurais dû consulter mes parents au sujet de cette affaire.\nI ran outside and the door locked itself behind me.\tJe courus dehors et la porte se referma derrière moi.\nI ran outside and the door locked itself behind me.\tJ'ai couru dehors et la porte s'est refermée derrière moi.\nI really appreciated your help yesterday afternoon.\tJ'ai vraiment apprécié votre aide, hier après-midi.\nI really appreciated your help yesterday afternoon.\tJ'ai vraiment apprécié ton aide, hier après-midi.\nI really need to go outside and get some fresh air.\tIl me faut vraiment me rendre dehors et prendre un bol d'air frais.\nI reminded him of his interview with the president.\tJe lui ai rappelé son entrevue avec le président.\nI shouldn't have accused him of stealing the money.\tJe n'aurais pas dû l'accuser de voler l'argent.\nI sometimes hear my father singing in the bathroom.\tQuelquefois j'entends mon père chanter dans la salle de bain.\nI suppose I'd better be more careful the next time.\tJe suppose que je ferais mieux d'être plus prudent la prochaine fois.\nI suppose I'd better be more careful the next time.\tJe suppose que je ferais mieux d'être plus prudente la prochaine fois.\nI think I must be leaving since it is getting late.\tJe crois que je devrais partir car il se fait tard.\nI think Tom didn't understand what you were saying.\tJe pense que Tom n'a pas compris ce que vous disiez.\nI think Tom didn't understand what you were saying.\tJe pense que Tom n'a pas compris ce que tu disais.\nI think a movie is more entertaining than any book.\tJe pense qu'un film est beaucoup plus entrainant que n'importe quel livre.\nI think it's going to get steadily hotter from now.\tJe crois qu'il va faire de plus en plus chaud à partir de maintenant.\nI think there's no point in trying to convince her.\tJe pense qu'il ne sert à rien d'essayer de la convaincre.\nI think there's no point in trying to convince him.\tJe pense qu'il ne sert à rien d'essayer de le convaincre.\nI think you need to buy a new pair of hiking boots.\tJe pense que tu as besoin d'acheter une nouvelle paire de chaussures de marche.\nI think you should stick to your training schedule.\tJe pense que tu devrais t'en tenir à ton programme d'entraînement.\nI think you should stick to your training schedule.\tJe pense que vous devriez vous en tenir à votre programme d'entraînement.\nI thought for sure you would stay in Japan forever.\tJe pensais pour de bon que tu resterais pour toujours au Japon.\nI thought for sure you would stay in Japan forever.\tJe pensais pour de bon que vous resteriez pour toujours au Japon.\nI thought it'd be fun to sing a few songs together.\tJ'ai pensé qu'il serait amusant de chanter ensemble quelques chansons.\nI thought you didn't want to talk about this stuff.\tJe pensais que tu ne voulais pas parler de ça.\nI told you guys to go home. Why are you still here?\tJe vous ai dit que vous deviez rentrer chez vous. Pourquoi êtes-vous encore là ?\nI took the 10:30 train, which was ten minutes late.\tJ'ai pris le train de 10 :30, lequel était en retard de dix minutes.\nI usually toss my loose change into my desk drawer.\tJe flanque d'habitude ma petite monnaie dans mon tiroir de bureau.\nI want a boat that will take me far away from here.\tJe veux un bateau qui m'emmènera loin d'ici.\nI want a boat that will take me far away from here.\tJe veux un bateau qui m'emmènera très loin d'ici.\nI want guards posted here and I want them here now.\tJe veux des gardes postés ici et je les veux maintenant !\nI want to apologize for the way I acted last night.\tJe veux présenter mes excuses pour la manière dont j'ai agi hier soir.\nI want to clean the house before my parents return.\tJe veux nettoyer la maison avant que mes parents reviennent.\nI want to find out if the warranty has expired yet.\tJe veux déterminer si la garantie est déjà expirée.\nI want to get there early so we can get good seats.\tJe veux y arriver tôt afin que nous obtenions de bonnes places.\nI want to spend more time doing things that matter.\tJe veux passer davantage de temps à faire des choses qui comptent.\nI want to talk with the manager about the schedule.\tJe voudrais parler avec le manager à propos du calendrier.\nI want to talk with the manager about the schedule.\tJe voudrais m'entretenir avec le gérant au sujet du calendrier.\nI want you to go to your room and pack your things.\tJe veux que tu ailles dans ta chambre et que tu emballes tes affaires.\nI want you to go to your room and pack your things.\tJe veux que vous alliez dans votre chambre et que vous emballiez vos affaires.\nI want you to write to me as soon as you get there.\tJe veux que vous m'écriviez aussitôt arrivée.\nI was wondering if you were going to show up today.\tJe me demandais si tu allais venir aujourd'hui.\nI will give you this bicycle as a birthday present.\tJe vous donnerai cette bicyclette comme cadeau d'anniversaire.\nI will give you this bicycle as a birthday present.\tJe te donnerai ce vélo comme cadeau d'anniversaire.\nI wish my girlfriend would spend more time with me.\tJ'aimerais que ma copine passe davantage de temps avec moi.\nI wish my girlfriend would spend more time with me.\tJ'aimerais que ma petite amie passe davantage de temps avec moi.\nI wonder how many horses died during the Civil War.\tJe me demande combien de chevaux sont morts durant la guerre de sécession.\nI wonder if I should talk to her about the problem.\tJe me demande si je devrais lui parler du problème.\nI wonder if I should talk to her about the problem.\tJe me demande si je devrais l'entretenir du problème.\nI would rather you came on Friday than on Thursday.\tJe préférerais que vous veniez vendredi plutôt que jeudi.\nI wouldn't ask this of you if it weren't important.\tJe ne te le demanderais pas si ce n'était pas important.\nI'd be delighted if they asked me to give a speech.\tJe serais ravi si elles me demandaient de prononcer un discours.\nI'd be delighted if they asked me to give a speech.\tJe serais ravie si elles me demandaient de prononcer un discours.\nI'd be delighted if they asked me to give a speech.\tJe serais ravi s'ils me demandaient de prononcer un discours.\nI'd be delighted if they asked me to give a speech.\tJe serais ravie s'ils me demandaient de prononcer un discours.\nI'd be depressed if they asked me to quit the team.\tJe serais déprimé s'ils me demandaient de quitter l'équipe.\nI'd be depressed if they asked me to quit the team.\tJe serais déprimée s'ils me demandaient de quitter l'équipe.\nI'd be depressed if they asked me to quit the team.\tJe serais déprimé si elles me demandaient de quitter l'équipe.\nI'd be depressed if they asked me to quit the team.\tJe serais déprimée si elles me demandaient de quitter l'équipe.\nI'd be surprised if they asked me to give a speech.\tJe serais surpris qu'ils me demandent de prononcer un discours.\nI'd be surprised if they asked me to give a speech.\tJe serais surprise qu'ils me demandent de prononcer un discours.\nI'd be surprised if they asked me to give a speech.\tJe serais surpris qu'elles me demandent de prononcer un discours.\nI'd be surprised if they asked me to give a speech.\tJe serais surprise qu'elles me demandent de prononcer un discours.\nI'd like some information about your new computers.\tJe voudrais quelques informations à propos de vos nouveaux ordinateurs.\nI'd like to speak with Tom in private for a moment.\tJ’aimerais parler rapidement à Tom en tête à tête.\nI'd like to try out this new model before I buy it.\tJ'aimerais essayer ce nouveau modèle avant de l'acheter.\nI'll explain to you how to use it when I come back.\tJe t'expliquerai comment l'utiliser une fois que je serai rentré.\nI'll get in touch with you again about this matter.\tJe reste à nouveau en contact avec vous pour ce problème.\nI'm glad to have this opportunity to work with you.\tJe suis heureux d'avoir cette occasion de travailler avec toi.\nI'm glad to have this opportunity to work with you.\tJe suis content d'avoir cette occasion de travailler avec vous.\nI'm going to deal with the problem in this chapter.\tJe vais traiter le problème dans ce chapitre.\nI'm going to explain all this in more detail later.\tJe vais vous expliquer tout cela plus en détail ultérieurement.\nI'm pretty sure Tom knows what he's supposed to do.\tJe suis presque sûr que Tom sait ce qu'il est censé faire.\nI'm pretty sure Tom knows what he's supposed to do.\tJe suis presque sûre que Tom sait ce qu'il est censé faire.\nI'm sorry but I can't attend the meeting in person.\tJe m'excuse mais je ne pourrai participer en personne à la réunion.\nI'm sorry but I can't lend you my car next weekend.\tJe suis désolé mais je ne peux pas te prêter ma voiture le week-end prochain.\nI'm sure if you put your mind to it, you can do it.\tJe suis certain que si vous y consacrez votre esprit, vous pouvez le faire.\nI'm thinking of going to Germany to study medicine.\tJe pense que je vais aller en Allemagne pour étudier la médecine.\nI'm trying to find the person who owns this guitar.\tJ'essaie de trouver la personne à qui cette guitare appartient.\nI'm very happy you'll be visiting Tokyo next month.\tJe suis très contente que tu visites Tokyo le mois prochain.\nI'm wondering what'll happen if I push this button.\tJe me demande ce qu'il se passera si j'appuie sur ce bouton.\nI've been learning how to write kanji with a brush.\tJ'ai appris à écrire les idéogrammes à l'aide d'un pinceau.\nI've got no place to go, so I'm going to stay here.\tJe n'ai nulle part où aller alors je vais rester ici.\nI've heard of him, but I don't know him personally.\tJ'ai entendu parler de lui mais je ne le connais pas personnellement.\nI've learned not to put much stock in what he says.\tJ'ai appris à ne pas accorder trop de crédit à ce qu'il dit.\nI've made up my mind to learn how to play the harp.\tJ'ai décidé d'apprendre à jouer de la harpe.\nI've never seen Tom do what you say he always does.\tJe n'ai jamais vu Tom faire ce que tu dis qu'il fait tout le temps.\nI've never seen Tom do what you say he always does.\tJe n'ai jamais vu Tom faire ce que vous dites qu'il fait tout le temps.\nI've never told anyone that my father is in prison.\tJe n'ai jamais dit à personne que mon père est en prison.\nI've never told anyone that my father is in prison.\tJe n'ai jamais dit à quiconque que mon père est en prison.\nI've never told anyone that my father is in prison.\tJe n'ai jamais dit à personne que mon père était en prison.\nI've never told anyone that my father is in prison.\tJe n'ai jamais dit à quiconque que mon père était en prison.\nI've never told anyone why I have trouble sleeping.\tJe n'ai jamais dit à personne pourquoi j'ai des troubles du sommeil.\nI've only had my driver's license for three months.\tJe ne dispose de mon permis de conduire que depuis trois mois.\nIf I create an example, will you correct it for me?\tSi je crée un exemple, le corrigeras-tu pour moi ?\nIf I tell her the truth, she will never forgive me.\tSi je lui dis la vérité, elle ne me pardonnera jamais.\nIf I tell him the truth, she will never forgive me.\tSi je lui dis la vérité, elle ne me pardonnera jamais.\nIf I were a rich man, I wouldn't have to work hard.\tSi j'étais un homme riche, je n'aurais pas à travailler dur.\nIf he had failed the exam, what would he have done?\tS'il avait échoué à l'examen, qu'aurait-il fait ?\nIf he told me the truth, I would have forgiven him.\tS'il m'avait dit la vérité, je lui aurais pardonné.\nIf it rains tomorrow, I'm not going to the meeting.\tS'il pleut demain, je n'irai pas à la réunion.\nIf my brother hadn't helped me, I would've drowned.\tMon frère ne m'eût-il pas aidé, je me serais noyé.\nIf my brother hadn't helped me, I would've drowned.\tMon frère ne m'eût-il pas aidée, je me serais noyée.\nIf my brother hadn't helped me, I would've drowned.\tSi mon frère ne m'avait pas aidé, je me serais noyé.\nIf my brother hadn't helped me, I would've drowned.\tSi mon frère ne m'avait pas aidée, je me serais noyée.\nIf no one has a better proposal, let's get to work.\tSi personne n'a de meilleure proposition, mettons-y nous.\nIf you can't have children, you could always adopt.\tSi tu ne peux pas avoir d'enfants, tu peux toujours en adopter.\nIf you don't have enough money, I'll lend you some.\tSi vous ne disposez pas d'assez d'argent, je vous en prêterai.\nIf you don't have enough money, I'll lend you some.\tSi tu n'as pas assez d'argent, je t'en prêterai.\nIf you don't pay rent, the landlord will evict you.\tSi vous ne payez pas le loyer, le propriétaire va vous expulser.\nIf you taste this sauce you'll find it a bit salty.\tSi tu goûtes cette sauce tu la trouveras un peu salée.\nIn addition to English, she speaks French fluently.\tEn plus de l'anglais, elle parle couramment français.\nIn case of an emergency, what number should I call?\tQuel numéro devrais-je composer en cas d'urgence ?\nIn short, he's run off without paying off his debt.\tEn bref, il s'est enfui sans payer ses dettes.\nIn the land of the blind, the one-eyed man is king.\tAu pays des aveugles, le borgne est roi.\nIs there any difference between your idea and hers?\tY a-t-il une différence quelconque entre ton idée et la sienne ?\nIs there any difference between your idea and hers?\tY a-t-il la moindre différence entre votre idée et la sienne ?\nIt appears to me that you put on my hat by mistake.\tIl m'apparait que vous avez, par erreur, mis mon chapeau.\nIt appears to me that you put on my hat by mistake.\tIl me semble que tu as, par erreur, mis mon chapeau.\nIt doesn't work so well because the battery is low.\tÇa ne marche pas si bien parce que la pile est usée.\nIt has been her dream to be a university professor.\tDevenir professeur d'université est son rêve.\nIt is abnormal to have the heart on the right side.\tIl est anormal d'avoir le cœur du côté droit.\nIt is believed that whales have their own language.\tLes gens pensent que les baleines possèdent leur propre langage.\nIt is difficult for beginners to enjoy windsurfing.\tIl est difficile, pour les débutants, de s'amuser en planche à voile.\nIt is impossible to substitute machines for people.\tIl est impossible de substituer des machines aux humains.\nIt is interesting that no one noticed that mistake.\tC'est intéressant que personne n'a remarqué l'erreur.\nIt is not easy to understand why you want to leave.\tIl n'est pas facile de comprendre pourquoi tu veux partir.\nIt is said that he is the richest man in the world.\tIl est soi-disant l'homme le plus riche du monde.\nIt is so dreadful that I don't want to think of it.\tC'est tellement horrible que je ne veux pas y penser.\nIt looks like the thief came in through the window.\tIl semble que le voleur soit passé par la fenêtre.\nIt may be unwise of you to advertise your presence.\tIl n'est peut-être pas raisonnable de faire savoir votre présence.\nIt rained all day long yesterday, so I stayed home.\tIl a plu toute la journée d'hier, alors je suis resté à la maison.\nIt took me a couple of hours to solve this problem.\tIl m'a fallu deux heures pour résoudre ce problème.\nIt was believed that the sun went around the earth.\tOn croyait que le soleil tournait autour de la terre.\nIt was careless of you to leave the key in the car.\tC'était inconsidéré de ta part de laisser la clé dans la voiture.\nIt was difficult for us to decide which one to buy.\tIl nous fut difficile de décider lequel choisir.\nIt was difficult for us to decide which one to buy.\tIl nous fut difficile de décider laquelle choisir.\nIt was difficult for us to decide which one to buy.\tIl nous a été difficile de décider lequel choisir.\nIt was such a pleasant day that we went for a walk.\tC'était une journée si agréable que nous sommes allés nous promener.\nIt was too muggy for me to get to sleep last night.\tIl faisait trop lourd pour que je m'endorme la nuit dernière.\nIt would be prudent to worry about the details now.\tIl serait prudent de se soucier des détails, maintenant.\nIt would mean a great deal to me if you would stay.\tÇa voudrait dire beaucoup pour moi, si vous restiez.\nIt would mean a great deal to me if you would stay.\tÇa voudrait dire beaucoup pour moi, si tu restais.\nIt would seem that you know something that I don't.\tIl semblerait que vous sachiez quelque chose que j'ignore.\nIt'd definitely be worth it to expand on your idea.\tTon idée vaut sûrement le coup d'être explorée.\nIt'll take some time to finish unloading the truck.\tÇa prendra du temps pour finir de décharger le camion.\nIt's a beautiful night for a swim, don't you think?\tBelle nuit pour une baignade, n'est-ce-pas ?\nIt's ached before, but never as badly as right now.\tÇa a fait mal avant, mais pas aussi cruellement que maintenant.\nIt's already eleven o'clock. I must be leaving now.\tIl est déjà onze heures. Je dois partir.\nIt's bad weather, to be sure, but we've seen worse.\tC'est du mauvais temps, ça ne fait pas de doute, mais nous avons vu pire.\nIt's been a long time since we last saw each other.\tCela fait longtemps que nous nous sommes vus pour la dernière fois.\nIt's been a long time since we last saw each other.\tCela fait longtemps que nous nous sommes vues pour la dernière fois.\nIt's dangerous to expose babies to strong sunlight.\tIl est dangereux de laisser un bébé exposé à un fort ensoleillement.\nIt's fun to learn slang words in foreign languages.\tC'est marrant d'apprendre des mots d'argot dans des langues étrangères.\nIt's fun to learn slang words in foreign languages.\tC'est rigolo d'apprendre des mots d'argot dans des langues étrangères.\nIt's fun to learn slang words in foreign languages.\tC'est gai d'apprendre des mots d'argot dans des langues étrangères.\nIt's good to see that our efforts were not in vain.\tJe suis content de constater que nos efforts n'ont pas été vains.\nIt's hard to tell whether Tom dyes his hair or not.\tC'est difficile de dire si Tom se teint les cheveux ou non.\nIt's impossible to take on more work at the moment.\tIl est impossible de prendre plus de travail en ce moment.\nIt's natural for family members to help each other.\tIl est naturel aux membres d'une famille de s'entraider.\nIt's no use pleading because they'll never give in.\tC'est inutile de supplier car ils ne céderont jamais.\nIt's no use pretending that you can't speak French.\tIl est inutile de prétendre que tu ne sais pas parler français.\nIt's no use pretending that you can't speak French.\tIl est inutile de prétendre que vous ne savez pas parler français.\nIt's not natural for a mother to outlive her child.\tIl n'est pas naturel pour une mère de survivre à son enfant.\nIt's out of stock, but I can give you a rain check.\tCe n'est plus en stock, mais je peux vous faire un bon.\nJudging from his appearance, he must be a rich man.\tÀ en juger par son apparence, il doit être riche.\nJust as we are talking, there was a loud explosion.\tAlors même que nous parlions, il y eut une bruyante explosion.\nJust observe your cat and you will get to know him.\tObserve ton chat et tu le connaîtras.\nLet's go out and have a good time with our friends.\tSortons et passons du bon temps avec nos amis.\nLet's not do anything that might get us in trouble.\tNe faisons rien qui pourrait nous causer des ennuis.\nLet's see if we can come up with a better solution.\tVoyons si nous pouvons trouver une meilleure solution.\nLet's spread the map on the table and talk it over.\tÉtalons la carte sur la table et discutons.\nLie on the bench for a while with your eyes closed.\tAllonge-toi sur le banc pour quelques instants avec les yeux fermés.\nLife in prison is worse than the life of an animal.\tLa vie en prison est pire que la vie d'un animal.\nLike all dogs, he'll chase a rabbit if he sees one.\tComme tous les chiens, il va pourchasser un lapin s'il en voit un.\nLosing your health is worse than losing your money.\tPerdre sa santé est pire que perdre son argent.\nMake sure you turn everything off before you leave.\tAssurez-vous d'avoir tout éteint avant de partir.\nMany architectural monstrosities are seen in Tokyo.\tDe nombreuses monstruosités architecturales peuvent être vues à Tokyo.\nMany sects have initiation rituals for new members.\tDe nombreuses sectes ont des rites d'initiation pour les nouveaux membres.\nMany stores offer discounts in the month of August.\tBeaucoup de magasins proposent des rabais au mois d'août.\nMany young people go abroad during summer vacation.\tPlein de jeunes gens vont à l'étranger pendant leurs vacances d'été.\nMany young people in Japan eat bread for breakfast.\tDe nombreux jeunes gens au Japon mangent du pain au petit déjeuner.\nMetal spoons are generally made of stainless steel.\tLes cuillères métalliques sont généralement faites d'acier inoxydable.\nMore money for education will spur economic growth.\tAllouer plus d'argent à l'éducation stimulera la croissance économique.\nMy cat likes it when I scratch her behind the ears.\tMon chat aime que je le gratouille derrière les oreilles.\nMy cat likes it when I scratch her behind the ears.\tMa chatte aime que je la gratouille derrière les oreilles.\nMy dream is to become a very strong mahjong player.\tMon rêve est de devenir un très bon joueur de mahjong.\nMy father has been doing this job for twenty years.\tMon père fait ce travail depuis vingt ans.\nMy father loves doing some tinkering in the garage.\tMon père adore faire du bricolage dans le garage.\nMy grandfather cannot walk without a walking stick.\tMon grand-père ne peut pas marcher sans canne.\nMy little sister sure knows how to push my buttons.\tMa petite sœur sait très bien comment m'énerver.\nMy mother is the first one to get up every morning.\tMa mère est la première à se lever tous les matins.\nMy mother made me study for three hours last night.\tMa mère m'a fait étudier pendant trois heures la nuit dernière.\nMy parents sent me to fat camp when I was thirteen.\tMes parents m'ont envoyé en camp pour gros quand j'avais treize ans.\nMy parents sent me to fat camp when I was thirteen.\tMes parents m'ont envoyée en camp pour gros quand j'avais treize ans.\nMy sister dressed herself for the party in a hurry.\tMa sœur s'est habillée en vitesse pour la soirée.\nMy uncle has completely recovered from his illness.\tMon oncle est complètement guéri de sa maladie.\nMy wife did not attend the party and neither did I.\tMa femme n'est pas venue à la fête et moi non plus.\nNapoleon's headquarters were in an unused windmill.\tLe quartier général de Napoléon était dans un moulin désaffecté.\nNever choose a vocation just because it looks easy.\tNe choisissez jamais une vocation parce qu'elle semble facile.\nNever go to a doctor whose office plants have died.\tN'allez jamais chez un docteur dont les plantes d'intérieur sont mortes.\nNever in my life have I heard or seen such a thing.\tJamais de ma vie je n'ai vu ou entendu pareille chose.\nNo matter how he tried, he could not open the door.\tIl avait beau essayer, il ne pouvait pas ouvrir la porte.\nNo matter how long it takes, I will finish the job.\tPeu importe le temps que ça prendra, je finirait ce boulot.\nNo matter what you may say, I won't change my mind.\tQuoi que vous disiez, je ne changerai pas d'opinion.\nNo matter what you may say, I won't change my mind.\tQuoi que tu dises, je ne changerai pas d'opinion.\nNo one is so poor that he cannot afford to be neat.\tPersonne n'est assez pauvre pour ne pas pouvoir avoir l'air correct.\nNow that you have made your decision, you must act.\tMaintenant que vous avez pris votre décision vous devez agir.\nOceans do not so much divide the world as unite it.\tLes océans divisent moins le monde qu'ils ne l'unissent.\nOn the whole, I think your plan is a very good one.\tDans l'ensemble, je pense que votre projet est excellent.\nOnce upon a time, there lived a beautiful princess.\tIl était une fois une belle princesse.\nOne of the main products of this country is coffee.\tUn des principaux produits de ce pays est le café.\nOpportunities like this don't come along every day.\tDe telles occasions ne se présentent pas tous les jours.\nOur office is on the northern side of the building.\tNotre bureau est du côté nord de l'immeuble.\nOut of twenty students, only one has read the book.\tSur vingt élèves, un seul a lu le livre.\nOut of twenty students, only one has read the book.\tSur vingt étudiantes, une seule a lu le livre.\nParents should monitor their children's activities.\tLes parents devraient superviser les activités de leurs enfants.\nPeople can easily tell the difference between them.\tLes gens peuvent facilement faire la différence entre eux.\nPeople can easily tell the difference between them.\tLes gens peuvent facilement faire la différence entre elles.\nPeople say that he is the richest man in this town.\tLes gens disent qu'il est l'homme le plus riche de la ville.\nPiercings can be a form of rebellion for teenagers.\tLes piercings peuvent être une forme de rébellion pour les adolescents.\nPlease remove your shoes before entering the house.\tVeuillez retirer vos chaussures avant d'entrer dans la maison.\nPlease speak more loudly so everybody can hear you.\tS'il vous plaît, parlez plus fort pour que tout le monde vous entende.\nPlease think it over and let me know your decision.\tRéfléchissez-y s'il vous plaît et faites-moi part votre décision.\nPlease write your name at the bottom of this paper.\tVeuillez écrire votre nom au bas de ce document.\nPossibly the factory will be closed down next week.\tIl est possible que l'usine soit fermée la semaine prochaine.\nReal friends stick together through thick and thin.\tLes vrais amis restent ensemble au travers des épreuves.\nRefer to the Users' Guide if you have any problems.\tRéférez-vous au guide de l'utilisateur si vous avez le moindre problème.\nRobert Deniro made a cameo appearance in the movie.\tRobert Deniro a fait une brève apparition dans le film.\nSatoru is the fastest runner out of the five of us.\tDe nous cinq, Satoru est celui qui court le plus vite.\nSee to it that this problem gets fixed by tomorrow.\tFais en sorte que ce problème soit réglé pour demain !\nSee to it that this problem gets fixed by tomorrow.\tFaites en sorte que ce problème soit réglé pour demain !\nShe agreed with him on what to do with the old car.\tElle fut d'accord avec lui sur ce qu'il fallait faire avec la vieille voiture.\nShe agreed with him on what to do with the old car.\tElle fut d'accord avec lui sur ce qu'il convenait de faire avec la vieille voiture.\nShe agreed with him on what to do with the old car.\tElle a été d'accord avec lui sur ce qu'il fallait faire avec la vieille voiture.\nShe agreed with him on what to do with the old car.\tElle a été d'accord avec lui sur ce qu'il convenait de faire avec la vieille voiture.\nShe always fed her children before she fed her dog.\tElle a toujours nourri ses enfants avant de nourrir son chien.\nShe always fed her children before she fed her dog.\tElle nourrissait toujours ses enfants avant de nourrir son chien.\nShe asked if she could use the phone, so I let her.\tElle a demandé si elle pouvait utiliser le téléphone, alors je l'ai laissé faire.\nShe asked if she could use the phone, so I let her.\tElle demanda si elle pouvait utiliser le téléphone, alors je la laissai faire.\nShe bears an uncanny resemblance to Marilyn Monroe.\tElle a une troublante ressemblance avec Marilyn Monroe.\nShe became a mother when she was fifteen years old.\tElle devint mère à l'âge de 15 ans.\nShe became a mother when she was fifteen years old.\tElle devint mère quand elle eut 15 ans.\nShe can sing better than anybody else in her class.\tElle sait chanter mieux que n'importe qui dans sa classe.\nShe cleared the dishes from the table after dinner.\tElle débarrassa la vaisselle de la table après dîner.\nShe cleared the dishes from the table after dinner.\tElle débarrassa la vaisselle de la table après déjeuner.\nShe gets herself worked up over every little thing.\tElle s'excite pour rien du tout.\nShe has three times as many dictionaries as you do.\tElle a trois fois plus de dictionnaires que toi.\nShe is always complaining about something or other.\tElle se plaint toujours d'une chose ou d'une autre.\nShe is capable of teaching both English and French.\tElle est capable d'enseigner à la fois l'anglais et le français.\nShe is firmly determined to own a store of her own.\tElle est fermement déterminée à posséder son propre magasin.\nShe made it plain that she wanted to go to college.\tElle fit clairement comprendre qu'elle voulait aller à la fac.\nShe made it plain that she wanted to go to college.\tElle fit clairement comprendre qu'elle voulait aller à l'université.\nShe made it plain that she wanted to go to college.\tElle fit clairement comprendre qu'elle voulait aller à la faculté.\nShe made it plain that she wanted to go to college.\tElle fit clairement comprendre qu'elle voulait aller dans une grande école.\nShe made it plain that she wanted to go to college.\tElle fit clairement comprendre qu'elle voulait aller dans une école supérieure.\nShe made it plain that she wanted to go to college.\tElle a fait clairement comprendre qu'elle voulait aller à la fac.\nShe made it plain that she wanted to go to college.\tElle a fait clairement comprendre qu'elle voulait aller à l'université.\nShe made it plain that she wanted to go to college.\tElle a fait clairement comprendre qu'elle voulait aller à la faculté.\nShe made it plain that she wanted to go to college.\tElle a fait clairement comprendre qu'elle voulait aller dans une école supérieure.\nShe made it plain that she wanted to go to college.\tElle a fait clairement comprendre qu'elle voulait aller dans une grande école.\nShe made it plain that she wanted to go to college.\tElle a fait clairement comprendre qu'elle voulait aller en fac.\nShe made it plain that she wanted to go to college.\tElle a fait clairement comprendre qu'elle voulait aller à l'univ.\nShe regretted that she had not followed his advice.\tElle regretta ne pas avoir suivi son conseil.\nShe replied that she had never seen the man before.\tElle répondit qu'elle n'avait jamais encore vu cet homme.\nShe scrubbed the floor of the kitchen with a brush.\tElle frotta le sol de la cuisine avec une brosse.\nShe speaks English as if she were a native speaker.\tElle parle anglais comme si c'était sa langue maternelle.\nShe told us that we must call a doctor immediately.\tElle nous dit que nous devions appeler un médecin immédiatement.\nShe took off her old shoes and put on the new ones.\tElle retira ses vieilles chaussures et passa les nouvelles.\nShe tried to persuade him not to decline the offer.\tElle essaya de le convaincre de ne pas refuser l'offre.\nShe tried to persuade him not to decline the offer.\tElle a essayé de le convaincre de ne pas refuser l'offre.\nShe used Skype frequently because she was overseas.\tComme elle était à l'étranger, elle téléphonait fréquemment avec Skype.\nShe was at a loss for words to express her feeling.\tElle ne trouvait plus les mots pour exprimer ses sentiments.\nShe was happy to be introduced to him at the party.\tElle était contente de lui être présentée à la fête.\nShe was kind enough to accompany me to the station.\tElle a eu la gentillesse de m'accompagner à la gare.\nShe was only 18 when she graduated from university.\tElle n'avait que 18 ans quand elle fut diplômée de l'université.\nShe waved both her hands so that he could find her.\tElle agitait ses deux mains pour qu'il puisse la trouver.\nShe wrote him a long letter, but he didn't read it.\tElle lui écrivit une longue lettre mais il ne la lut pas.\nShe wrote him a long letter, but he didn't read it.\tElle lui a écrit une longue lettre mais il ne l'a pas lue.\nShe'll get the better of you if you aren't careful.\tElle va profiter de vous si vous ne faites pas attention.\nSome large birds prey upon small birds and animals.\tCertains grands oiseaux chassent les petits et des animaux.\nSome people believe that black cats bring bad luck.\tCertaines personnes pensent que les chats noirs portent malheur.\nSome people take a bath every day and others don't.\tCertaines personnes se baignent tous les jours, d'autres pas.\nSuppose you had ten million yen, what would you do?\tSupposons que vous ayez dix millions de yens, qu'en feriez-vous ?\nTell me which of the two cameras is the better one.\tDites-moi lequel des deux appareils photo est le meilleur.\nThat child may have been kidnapped on his way home.\tCet enfant a pu être enlevé sur le chemin de chez lui.\nThat old man is, so to speak, a walking dictionary.\tLe vieil homme est, pour ainsi dire, un dictionnaire ambulant.\nThat's a very good question. I'm glad you asked it.\tC'est une très bonne question. Je me réjouis que vous l'ayez posée.\nThat's the most important thing to do at this time.\tC'est la chose la plus importante à faire à cette heure.\nThat, of course, does not mean that they are right.\tÇa ne veut naturellement pas dire qu'ils ont raison.\nThe Amazon is fed by a large number of tributaries.\tL'Amazone a un grand nombre d'affluents.\nThe Amazon is fed by a large number of tributaries.\tL'Amazone est alimenté par un grand nombre d'affluents.\nThe Cabinet is meeting today to discuss the crisis.\tLe conseil des ministres se réunit aujourd'hui pour discuter de la crise.\nThe Cold War ended when the Soviet Union collapsed.\tLa guerre froide se termina en même temps que la chute de l'URSS.\nThe English class system is known for its snobbery.\tLe système anglais de classes est connu pour son snobisme.\nThe Japanese government made an important decision.\tLe Gouvernement Japonais a pris une importante décision.\nThe President of the United States is now in Japan.\tLe président des États-Unis est actuellement au Japon.\nThe United States is abundant in natural resources.\tLes États-Unis sont riches en ressources naturelles.\nThe air we breathe consists of oxygen and nitrogen.\tL'air que nous respirons est constituée d'oxygène et d'azote.\nThe air we breathe consists of oxygen and nitrogen.\tL'air que nous respirons est constitué d'oxygène et d'azote.\nThe artistic beauty of the garden is truly amazing.\tLa beauté artistique du jardin est vraiment incroyable.\nThe bar was so smoky that my eyes started to sting.\tLe café était tellement enfumé que mes yeux commençaient à piquer.\nThe bar was so smoky that my eyes started to sting.\tLe café était tellement enfumé que les yeux commençaient à me brûler.\nThe bat was stolen yesterday, along with the balls.\tLa batte de baseball a été volée hier, tout comme les balles.\nThe best place to hide something is in plain sight.\tLe meilleur endroit pour cacher quelque chose est sous le nez de tout le monde.\nThe best way to predict the future is to invent it.\tLa meilleure façon de prédire l'avenir est de l'inventer.\nThe book I bought last week was really interesting.\tLe livre que j'ai acheté la semaine dernière était vraiment intéressant.\nThe bronze statue looks quite nice from a distance.\tLa statue de bronze a l'air assez belle à distance.\nThe buildings were damaged by the storm last night.\tLes bâtiments ont été endommagés par la tempête, la nuit dernière.\nThe castle was transformed into a marvelous museum.\tLe château a été transformé en un merveilleux musée.\nThe climate of Canada is cooler than that of Japan.\tLe climat du Canada est plus froid que celui du Japon.\nThe committee can only act in an advisory capacity.\tLe comité ne peut agir qu'en qualité de conseil.\nThe committee consists of scientists and engineers.\tLe comité est composé de scientifiques et d'ingénieurs.\nThe cost of living in the United States was rising.\tLe coût de la vie aux États-Unis d'Amérique augmentait.\nThe day will soon come when man can travel to Mars.\tLe jour arrivera bientôt où l'homme pourra voyager vers Mars.\nThe detective shadowed the suspect for four blocks.\tLe détective fila le suspect le long de quatre pâtés de maisons.\nThe equator divides the earth into two hemispheres.\tL'équateur divise la Terre en deux hémisphères.\nThe following was inspired in part by a true story.\tCe qui suit fut partiellement inspiré d'une histoire vraie.\nThe hounds flushed the fox out of its hiding place.\tLes chiens levèrent le renard de sa cachette.\nThe housing situation shows no hope of improvement.\tLa situation du logement ne montre aucun espoir d'amélioration.\nThe job looked quite simple, but it took me a week.\tLe travail semblait assez simple, mais il m'a pris une semaine.\nThe last time I saw Tom he was walking on crutches.\tLa dernière fois que j'ai vu Tom, il marchait avec des béquilles.\nThe lunar month is shorter than the calendar month.\tLe mois lunaire est plus court que le mois du calendrier.\nThe meeting will be held next week at the earliest.\tLa réunion se tiendra la semaine prochaine au plus tôt.\nThe mere sight of the doctor made my cousin afraid.\tLa simple vue du docteur effrayait mon cousin.\nThe money we offered them was obviously not enough.\tLe montant que nous leur avons proposé n'était manifestement pas suffisant.\nThe new server should have much better performance.\tLe nouveau serveur devrait être beaucoup plus performant.\nThe old man in front of us is ninety-two years old.\tLe vieux devant nous a quatre-vingt-douze ans.\nThe opposite sides of a parallelogram are parallel.\tLes côtés opposés d'un parallélogramme sont parallèles.\nThe other boys teased him when he got his hair cut.\tLes autres garçons se sont moqués de lui quand il a eu les cheveux coupés.\nThe painting is not worth the price you are asking.\tLa peinture ne vaut pas le prix que vous proposez.\nThe parents are playing a game with their children.\tLes parents jouent à un jeu avec leurs enfants.\nThe pentagram is an important symbol in witchcraft.\tLe pentacle est un symbole important en sorcellerie.\nThe person we're trying to catch is very dangerous.\tLa personne que nous essayons d'attraper est très dangereuse.\nThe police assembled a lot of evidence against him.\tLa police a réuni beaucoup de preuves contre lui.\nThe politician was thought to be telling the truth.\tDu politicien, on supposait, qu'il disait la vérité.\nThe prize money enabled me to go on a world cruise.\tLa récompense m'a permis de partir en croisière autour du monde.\nThe radio is too loud. Please turn the volume down.\tLa radio est trop forte. Baisse le volume, je te prie.\nThe reason is that I want to be an English teacher.\tParce que je veux devenir professeur d'anglais.\nThe region is relatively rich in mineral resources.\tLa région est relativement riche en ressources minérales.\nThe root of a flower is as weak as a baby's finger.\tLa racine d'une fleur est aussi faible que le doigt d'un bébé.\nThe ship will arrive in San Francisco this evening.\tLe bateau arrive ce soir à San Fransisco.\nThe slaughter of the prisoners was a barbarous act.\tLe massacre des prisonniers était un acte barbare.\nThe slippery snake slithered right out of his hand.\tLe serpent glissant s'échappa de ses mains.\nThe smell of dirty socks makes me want to throw up.\tL'odeur des chaussettes sales me donne envie de vomir.\nThe smell of macaroni and cheese makes me nauseous.\tL'odeur des macaronis au fromage me donne la nausée.\nThe spell was broken and the pig turned into a man.\tLe sort fut rompu et le porc se transforma en homme.\nThe teacher dismissed his class when the bell rang.\tL'instituteur ajourna son cours lorsque la cloche retentit.\nThe thief used a screwdriver to break into the car.\tLe voleur a utilisé un tournevis pour s'introduire dans la voiture.\nThe tip of the spear was dipped in a deadly poison.\tLa pointe de la lance était trempée dans un poison mortel.\nThe train was almost an hour behind schedule today.\tLe train était en retard de presque une heure aujourd'hui.\nThe truth is that nothing is totally true or false.\tLa vérité, c'est que rien n'est tout à fait vrai, ni tout à fait faux.\nThe two countries do not have diplomatic relations.\tLes deux pays n'ont pas de bonnes relations diplomatiques.\nThe vaccination left a funny little mark on my arm.\tLa vaccination laissa une petite marque rigolote sur mon bras.\nThe village is connected with our town by a bridge.\tLe village est relié à notre ville par un pont.\nThe voice actors did a excellent job on this movie.\tLes doubleurs ont fait un excellent travail sur ce film.\nThe whistle of the steam train woke us at daybreak.\tLe sifflet du train à vapeur nous réveilla au point du jour.\nThe world's rainforests are currently disappearing.\tLes forêts tropicales sont actuellement en voie de disparition.\nThe world's rainforests are currently disappearing.\tLes forêts pluviales sont actuellement en voie de disparition.\nThe young woman was carrying an infant in her arms.\tLa jeune femme portait un enfant dans les bras.\nThen the pen fell from my hand and I just listened.\tAlors le stylo me tomba de la main et je ne fis qu'écouter.\nTheory and practice do not necessarily go together.\tLa théorie et la pratique ne vont pas nécessairement ensemble.\nTheory and practice do not necessarily go together.\tLa théorie et la pratique ne vont pas forcément de pair.\nThere are cherry trees on both sides of the street.\tIl y a des cerisiers des deux côtés de la route.\nThere are cherry trees on both sides of the street.\tIl y a des cerisiers des deux côtés de la rue.\nThere are dangers that threaten both men and women.\tIl y a des dangers qui menacent aussi bien les hommes que les femmes.\nThere are nine girls and three boys in the library.\tIl y a neuf filles et trois garçons dans la bibliothèque.\nThere aren't any fish living in this river anymore.\tIl n'y a plus de poisson vivant dans cette rivière.\nThere has always been war and there always will be.\tLa guerre a toujours existé et elle existera toujours.\nThere is a subtle difference between the two words.\tIl y a une subtile différence entre les deux mots.\nThere is an old castle at the foot of the mountain.\tIl y a un vieux château au pied de la montagne.\nThere is usually a cool breeze here in the evening.\tPar ici il y a habituellement une brise fraîche le soir.\nThere seems to be something peculiar about the boy.\tIl semble qu'il y ait quelque chose de particulier chez ce garçon.\nThere was nothing that I could do but wait for him.\tJe ne pouvais rien faire sauf l'attendre.\nThere were beautiful flowers on the reception desk.\tIl y avait de belles fleurs au bureau de la réception.\nThere's no need for you to prepare a formal speech.\tIl n'est pas nécessaire que vous prépariez un discours formel.\nThese are just guidelines, not hard and fast rules.\tCe sont uniquement des directives, non des règles absolues.\nThese are just guidelines, not hard and fast rules.\tCe sont juste des indications, non des règles absolues.\nThey do not waste anything nor throw anything away.\tIls ne gâchent ni jettent quoi que ce soit.\nThey don't know what they should do with the money.\tIls ne savent pas ce qu'ils devraient faire avec l'argent.\nThey had been saving money for the trip for a year.\tIls économisaient de l'argent pour le voyage depuis un an.\nThey had been saving money for the trip for a year.\tElles économisaient de l'argent pour le voyage depuis un an.\nThey have been on good terms with their neighbours.\tIls sont en bons termes avec leurs voisins.\nThey have enough capital to build a second factory.\tIls disposent de suffisamment de capital pour bâtir une seconde usine.\nThey put off their departure due to the heavy snow.\tIls ont reporté leur départ à cause des fortes chutes de neige.\nThey replaced the broken television with a new one.\tIls ont remplacé le téléviseur cassé par un nouveau.\nThey searched here and there looking for survivors.\tIls ont fouillé ici et là à la recherche de survivants.\nThey were pretty tired after having worked all day.\tIls étaient vraiment fatigués après avoir travaillé toute la journée.\nThey were standing still with their eyes wide open.\tIls restaient là avec les yeux grand ouvert.\nThey won us over with their small-town hospitality.\tIls nous gagnèrent à eux avec leur hospitalité villageoise.\nThis climate is having a bad effect on your health.\tLe climat a un mauvais effet sur votre santé.\nThis climate is having a bad effect on your health.\tLe climat a un effet néfaste sur ta santé.\nThis flower is yellow, but all the others are blue.\tCette fleur est jaune, mais toutes les autres sont bleues.\nThis guidebook might be of use to you on your trip.\tCe guide pourrait t'être utile pour ton voyage.\nThis is a good dictionary for high school students.\tC'est un bon dictionnaire pour les lycéens.\nThis is a limited time offer to new customers only.\tVoici une offre limitée dans le temps réservée aux nouveaux clients.\nThis is an express train. It won't make many stops.\tC'est un train rapide. Il ne fera que peu d’arrêt.\nThis is the house where I lived when I was a child.\tC'est la maison où je vivais quand j'étais petit.\nThis is the house where I lived when I was a child.\tC'est la maison où j'ai vécu lorsque j'étais enfant.\nThis island belonged to France in the 19th century.\tCette île a appartenu à la France au XIXe siècle.\nThis isn't my umbrella. It belongs to someone else.\tCe n'est pas mon parapluie. Il appartient à quelqu'un d'autre.\nThis medicine will ensure you a good night's sleep.\tCe médicament vous assurera une bonne nuit de sommeil.\nThis might be the last time we ever see each other.\tCela pourrait être la dernière fois que l'on se voit.\nThis might be the last time we ever see each other.\tCela pourrait être la dernière fois que nous nous voyons.\nThis novel was written by a famous American writer.\tCe roman a été écrit par un célèbre écrivain américain.\nThis semester I failed two students for plagiarism.\tCe semestre, j'ai collé deux de mes étudiants pour plagiat.\nThis semester I failed two students for plagiarism.\tCe semestre, j'ai recalé deux étudiants pour plagiat.\nThis song reminds me of my junior high school days.\tCette chanson me rappelle le temps où j'allais au lycée.\nThousands of people became victims of this disease.\tDes milliers de gens furent victimes de cette maladie.\nTo learn a foreign language requires a lot of time.\tApprendre une langue étrangère demande beaucoup de temps.\nTo learn a foreign language requires a lot of time.\tApprendre une langue étrangère requiert beaucoup de temps.\nTo the best of my knowledge, the rumor is not true.\tPour autant que je sache, la rumeur est infondée.\nTom asked Mary many questions about life in Boston.\tTom a posé beaucoup de questions à Marie à propos de la vie à Boston.\nTom certainly doesn't seem to know what he's doing.\tTom ne semble certainement pas savoir ce qu'il est en train de faire.\nTom didn't eat pizza with the rest of us yesterday.\tTom n'a pas mangé de pizza avec le reste d'entre nous hier.\nTom didn't say anything about where he'd come from.\tTom n'a rien dit sur l'endroit d'où il venait.\nTom doesn't know what Mary wants to eat for dinner.\tTom ne sait pas ce que Mary veut manger pour le dîner.\nTom doesn't mind the cold, but Mary can't stand it.\tLe froid ne dérange pas Tom, mais Mary ne le supporte pas.\nTom dressed himself quickly, then ran out the door.\tTom s'est habillé en vitesse, puis il a couru dehors.\nTom finally decided to try jumping over the stream.\tTom a finalement décidé d'essayer de sauter au-dessus du ruisseau.\nTom found the book Mary had given him quite boring.\tTom a trouvé le livre que Mary lui avait donné plutôt ennuyeux.\nTom goes to the barber less than four times a year.\tTom va chez le coiffeur moins de quatre fois par an.\nTom handed the key to Mary and she opened the door.\tTom tendit la clef à Marie et elle ouvrit la porte.\nTom intends to live in Boston for more than a year.\tTom a l'intention de rester à Boston pendant plus d'un an.\nTom said he couldn't remember his own phone number.\tTom a dit qu'il ne pouvait plus se rappeler son propre numéro de téléphone.\nTom said that he didn't want to go to Mary's party.\tTom a dit qu’il ne voulait pas aller à la fête de Marie.\nTom says he feels much better today than yesterday.\tTom dit qu'il se sent beaucoup mieux aujourd'hui qu'hier.\nTom sold his car to Mary for three hundred dollars.\tTom a vendu sa voiture à Mary pour trois cents dollars.\nTom thinks he can succeed where others have failed.\tTom pense qu'il peut réussir là où d'autres ont échoué.\nTom thought it would be a good idea to leave early.\tTom pensa que ce serait une bonne idée de partir tôt.\nTom thought it would be a good idea to leave early.\tTom a pensé que ce serait une bonne idée de partir tôt.\nTom wants to forgive his father for abandoning him.\tTom veut pardonner à son père de l'avoir abandonné.\nTom wasn't allowed to tell Mary everything he knew.\tTom n'était pas autorisé à dire à Mary tout ce qu'il savait.\nTom will try to convince Mary to accept your offer.\tTom essaiera de convaincre Mary d'accepter votre offre.\nTufts University is a very famous school in Boston.\tL'Université Tufts est une école très connue de Boston.\nUp to that time he had been staying with his uncle.\tJusqu'à cette période, il était resté avec son oncle.\nWater is liquid. When it freezes, it becomes solid.\tL'eau est liquide. Lorsqu'elle gèle, elle devient solide.\nWe all want to know why you weren't here yesterday.\tNous aimerions tous savoir pourquoi tu n'étais pas là hier.\nWe all wondered why she had dumped such a nice man.\tNous nous demandions tous pourquoi elle avait balancé un homme aussi charmant.\nWe all wondered why she had dumped such a nice man.\tNous nous demandâmes tous pourquoi elle avait balancé un homme aussi charmant.\nWe are responsible for your protection from now on.\tNous sommes désormais responsables de votre protection.\nWe dissected a frog to examine its internal organs.\tNous disséquâmes une grenouille pour examiner ses organes internes.\nWe had no choice but to call the police last night.\tNous n'avons pas eu d'autres choix que d'appeler la police la nuit dernière.\nWe have five days to go before the summer vacation.\tIl nous reste cinq jours avant les vacances d'été.\nWe have to be prepared to cope with violent storms.\tNous devons nous préparer à faire face à de violentes tempêtes.\nWe hurried to the airport, but we missed the plane.\tNous nous sommes dépêchés pour aller à l'aéroport, mais nous avons raté l'avion.\nWe may as well stay here till the weather improves.\tNous pouvons tout aussi bien rester ici jusqu'à ce que le temps s'améliore.\nWe must create a safe environment for our children.\tNous devons créer un environnement sécurisé pour nos enfants.\nWe must take into account the fact that she is old.\tNous devons tenir compte du fait qu'elle est âgée.\nWe now know that the testimony he gave was coerced.\tNous savons désormais que le témoignage qu'il donna était contraint.\nWe saw something move in the shadows just up ahead.\tNous vîmes quelque chose bouger parmi les ombres juste là-haut, devant.\nWe should learn from those who have gone before us.\tNous devrions apprendre de ceux qui sont partis avant nous.\nWe wandered aimlessly around the shopping district.\tNous nous sommes baladés dans le quartier commerçant.\nWe wandered aimlessly around the shopping district.\tNous errâmes sans but autour du quartier commerçant.\nWe were taught that World War II broke out in 1939.\tOn nous a enseigné que la Seconde Guerre mondiale avait commencé en 39.\nWe were thinking of asking you to join our company.\tNous réfléchissions à vous demander de rejoindre notre société.\nWe were thinking of asking you to join our company.\tNous réfléchissions à te demander de rejoindre notre société.\nWe'll just have to wait and see how things pan out.\tNous n'aurons qu'à attendre pour voir comment les choses évoluent.\nWe're starting to question what we thought we knew.\tNous commençons à douter de ce que nous pensions savoir.\nWe've finished the work, so we may as well go home.\tNous avons terminé le travail, aussi nous pouvons aussi bien rentrer chez nous.\nWealthy older men often marry younger trophy wives.\tLes vieux hommes riches épousent souvent de jeunes femmes décoratives.\nWere you going to the train station when I saw you?\tTe rendais-tu à la gare lorsque je t'ai vu ?\nWere you going to the train station when I saw you?\tTe rendais-tu à la gare lorsque je t'ai vue ?\nWere you going to the train station when I saw you?\tVous rendiez-vous à la gare lorsque je vous ai vu ?\nWere you going to the train station when I saw you?\tVous rendiez-vous à la gare lorsque je vous ai vue ?\nWhat activity do you spend most of your time doing?\tÀ quelle activité t'adonnes-tu la plupart du temps ?\nWhat activity do you spend most of your time doing?\tÀ quelle activité vous adonnez-vous la plupart du temps ?\nWhat are some foods you usually eat with soy sauce?\tQuels sont les aliments qu'on mange habituellement avec de la sauce de soja ?\nWhat are some foods you usually eat with soy sauce?\tQuels sont les aliments que tu manges habituellement avec de la sauce de soja ?\nWhat are some foods you usually eat with soy sauce?\tQuels sont les aliments que vous mangez habituellement avec de la sauce de soja ?\nWhat do you think about Japan's educational system?\tQue pensez-vous du système d'éducation japonais ?\nWhat have you bought your girlfriend for Christmas?\tQu'as-tu acheté à ta copine, pour Noël ?\nWhat have you bought your girlfriend for Christmas?\tQu'avez-vous acheté à votre petite-amie, pour Noël ?\nWhat on earth were you thinking, bringing him here?\tQuelle idée de l'amener ici ?\nWhat should I do to find a suitable job for myself?\tQue dois-je faire pour trouver un emploi qui me conviendrait ?\nWhat's the difference between asteroids and comets?\tQuelle est la différence entre des astéroïdes et des comètes ?\nWhat's the most important part of a good education?\tQuelle est la chose la plus importante pour faire une bonne éducation ?\nWhen I got up, the sun was already high in the sky.\tQuand je me suis levé, le soleil était déjà haut.\nWhen he arrives in Tokyo, I'll call you right away.\tDès qu'il arrive à Tokyo, je vous appelle.\nWhen you get on the highway, shift into fifth gear.\tLorsque tu entres sur l'autoroute, passe en cinquième !\nWhen you get on the highway, shift into fifth gear.\tLorsque vous pénétrez sur l'autoroute, passez en cinquième !\nWhenever I hear that song, I think of my childhood.\tChaque fois que j'entends cette chanson, je pense à mon enfance.\nWhenever I try to get near her, she pushes me away.\tChaque fois que je tente de l'approcher, elle me repousse.\nWhether rains or not, the game is going to be held.\tSaison des pluies ou pas, la partie aura lieu.\nWhich do you like better, the sea or the mountains?\tQue préférez-vous ? La mer ou la montagne ?\nWhy do you have your umbrella up? It's not raining.\tPourquoi tenez-vous votre parapluie en l'air ? Il ne pleut pas.\nWhy do you want to know what we are thinking about?\tPourquoi voulez-vous savoir ce que nous pensons ?\nWill the government raise the consumption tax soon?\tEst-ce que le gouvernement prévoie d'augmenter les taxes sur la consommation d'ici peu ?\nWith a little more effort, he would have succeeded.\tEn faisant un peu plus d'effort, il aurait réussi.\nWould you carry this up to the second floor for me?\tVoudriez-vous me porter ceci au premier étage ?\nWould you carry this up to the second floor for me?\tVoudriez-vous me monter ceci au premier étage ?\nWould you ever go out with a guy who couldn't sing?\tSortirais-tu jamais avec un gars qui ne saurait pas chanter ?\nWould you ever go out with a guy who couldn't sing?\tSortiriez-vous jamais avec un gars qui ne saurait pas chanter ?\nWould you like for me to make you something to eat?\tAimerais-tu que je vous fasse quelque chose à manger ?\nWould you like to get something to eat? It's on me.\tVoudriez-vous avoir quelque chose à manger ? C'est pour moi.\nYou can also ride on an old, restored, steam train.\tIl est aussi possible de monter dans un vieux train à vapeur restauré.\nYou can't buy this medicine without a prescription.\tTu ne peux pas acheter ce médicament sans ordonnance.\nYou can't buy this medicine without a prescription.\tVous ne pouvez pas acheter ce médicament sans ordonnance.\nYou could count to ten when you were two years old.\tTu pouvais compter jusqu'à dix, quand tu avais deux ans.\nYou could count to ten when you were two years old.\tTu pouvais compter jusqu'à dix lorsque tu avais deux ans.\nYou have to look out for other cars when you drive.\tVous devez faire attention aux autres voitures lorsque vous conduisez.\nYou have to study hard to catch up with your class.\tVous devez étudier dur pour rattraper votre classe.\nYou may not believe it, but it is nonetheless true.\tTu n'es pas forcé d'y croire, mais c'est néanmoins la vérité.\nYou may not believe it, but it is nonetheless true.\tTu n'y crois peut-être pas, mais malgré tout c'est un fait.\nYou may not believe it, but it is nonetheless true.\tTu peux ne pas y croire, mais c'est tout de même un fait.\nYou must consider what kind of work you want to do.\tTu dois réfléchir à quelle sorte de travail tu veux faire.\nYou must make allowance for his lack of experience.\tVous devez prendre son manque d'expérience en considération.\nYou must make allowance for his lack of experience.\tTu dois prendre son manque d'expérience en considération.\nYou must make allowance for his lack of experience.\tOn doit prendre son manque d'expérience en considération.\nYou must make an effort to get along with everyone.\tTu dois faire un effort pour t'entendre avec tout le monde.\nYou need to find another way out of this situation.\tTu dois trouver une autre issue à cette situation.\nYou need to find another way out of this situation.\tVous devez trouver une autre issue à cette situation.\nYou never can tell what kind of job you might find.\tTu ne peux jamais dire quelle sorte d'emploi tu vas peut-être trouver.\nYou never listen. I might as well talk to the wall.\tTu n'écoutes jamais, c'est comme si je parlais à un mur.\nYou should always knock before entering Tom's room.\tVous devriez toujours toquer avant de rentrer dans la chambre de Tom.\nYou should have been more careful with your health.\tTu aurais dû être plus prudent avec ta santé.\nYou should have been more careful with your health.\tVous auriez dû prendre davantage de soin de votre santé.\nYou should make sure that you don't make Tom angry.\tTu devrais t'assurer de ne pas énerver Tom.\nYou should not cut in when someone else is talking.\tTu ne dois pas interrompre quelqu'un qui est en train de parler.\nYou should not have gone to such a dangerous place.\tTu n'aurais pas dû aller à un endroit aussi dangereux.\nYou shouldn't talk about people behind their backs.\tVous ne devriez pas parler des gens dans leur dos.\nYou talk so fast I can't understand a word you say.\tTu parles tellement vite que je ne comprends pas un mot de ce que tu dis.\nYou will save time if you adopt this new procedure.\tVous gagnerez du temps si vous adoptez cette nouvelle procédure.\nYou'll be asleep by the time your father gets home.\tTu seras endormi au moment où ton père arrivera à la maison.\nYou'll be asleep by the time your father gets home.\tTu seras endormie au moment où ton père arrivera à la maison.\nYou'll be asleep by the time your father gets home.\tVous serez endormi au moment où votre père arrivera à la maison.\nYou'll be asleep by the time your father gets home.\tVous serez endormie au moment où votre père arrivera à la maison.\nYou'll be asleep by the time your father gets home.\tVous serez endormis au moment où votre père arrivera à la maison.\nYou'll be asleep by the time your father gets home.\tVous serez endormies au moment où votre père arrivera à la maison.\nYou're the most beautiful woman in the whole world.\tTu es la femme la plus belle du monde.\nYou're the most beautiful woman in the whole world.\tTu es la femme la plus belle au monde.\nYou're the most beautiful woman in the whole world.\tVous êtes la femme la plus belle du monde.\nYou're the most beautiful woman in the whole world.\tVous êtes la femme la plus belle au monde.\nYou're welcome to stay with us as long as you want.\tVous pouvez volontiers rester avec nous aussi longtemps que vous le voulez.\nYour answer to the question turned out to be wrong.\tVotre réponse à la question s'est révélée inexacte.\nYour answer to the question turned out to be wrong.\tVotre réponse à la question s'est avérée fausse.\n\"Do you have any siblings?\" \"No, I'm an only child.\"\t\"As-tu des frères et sœurs ?\" \"Non, je suis fils unique.\"\n\"May I help you?\" \"No, thank you. I'm just looking.\"\t« Puis-je vous aider ? » « Non, merci. Je ne fais que regarder. »\n\"My father doesn't drink.\" \"Neither does my father.\"\t\"Mon père ne boit pas.\" \"Le mien non plus.\"\n\"Will you have another slice of pie?\" \"Yes, please.\"\t« Désires-tu un autre morceau de gâteau ? » « Oui, s'il te plait. »\n\"Will you have another slice of pie?\" \"Yes, please.\"\t« Désires-tu un autre morceau de gâteau ? » « Oui, s'il vous plait. »\n\"Will you have another slice of pie?\" \"Yes, please.\"\t« Désirez-vous un autre morceau de gâteau ? » « Oui, s'il vous plait. »\n\"Will you have another slice of pie?\" \"Yes, please.\"\t«Désirez-vous un autre morceau de gâteau ?» «Oui, s'il te plait.»\n\"You're a good guitarist.\" \"I'd like to think I am.\"\t« Vous êtes bon guitariste ! » « J'aimerais le penser ! »\n\"You're a good guitarist.\" \"I'd like to think I am.\"\t« Vous êtes un bon guitariste ! » « J'aimerais le penser ! »\n\"You're a good guitarist.\" \"I'd like to think I am.\"\t« Tu es bon guitariste ! » « J'aimerais le penser ! »\n\"You're a good guitarist.\" \"I'd like to think I am.\"\t« Tu es un bon guitariste ! » « J'aimerais le penser ! »\n\"You're a good guitarist.\" \"I'd like to think I am.\"\t« Tu es bonne guitariste ! » « J'aimerais le penser ! »\n\"You're a good guitarist.\" \"I'd like to think I am.\"\t« Tu es une bonne guitariste ! » « J'aimerais le penser ! »\n\"You're a good guitarist.\" \"I'd like to think I am.\"\t« Vous êtes bonne guitariste ! » « J'aimerais le penser ! »\n\"You're a good guitarist.\" \"I'd like to think I am.\"\t« Vous êtes une bonne guitariste ! » « J'aimerais le penser ! »\nA beautiful woman was seated one row in front of me.\tUne belle femme était assise une rangée devant moi.\nA caged cricket eats just as much as a free cricket.\tLe grillon en cage dévore autant que le grillon en liberté.\nA clear conscience is the sure sign of a bad memory.\tUne conscience pure est un signe indubitable de mauvaise mémoire.\nA drunk driver was responsible for the car accident.\tUn conducteur ivre a été responsable de l'accident de voiture.\nA dye was injected into a vein of the patient's arm.\tUn colorant a été injecté dans une veine du bras du patient.\nA fire broke out at the inn where they were staying.\tUn feu a démarré à l'auberge où ils étaient.\nA large amount of money was spent on the new bridge.\tUne grosse somme d'argent fut consacrée au nouveau pont.\nA large amount of money was spent on the new bridge.\tUne grosse somme d'argent a été consacrée au nouveau pont.\nA lot of people are now trying to sell their houses.\tBeaucoup de gens sont actuellement en train d'essayer de vendre leurs maisons.\nA man was complaining of something in a sharp voice.\tUn homme se plaignait de quelque chose avec une voix aiguë.\nA man who wanted to see you came while you were out.\tUn homme qui cherchait à vous rencontrer est venu pendant que vous étiez sorti.\nA plastic cup is better than one made of real glass.\tUne tasse en plastique est meilleure qu'une en verre véritable.\nA poet looks at the world as a man looks at a woman.\tUn poète regarde le monde comme un homme regarde une femme.\nActually it might be a good idea to start right now.\tEn fait, ce serait une bonne idée de commencer tout de suite.\nAfter hearing the sad news, she broke down in tears.\tAprès avoir entendu la triste nouvelle, elle s'effondra en larmes.\nAfter some hesitation, he laid the book on the desk.\tAprès quelques hésitations il posa le livre sur le bureau.\nAfter we walked for a while, we arrived at the lake.\tAprès avoir marché un moment, nous arrivâmes au lac.\nAfter we walked for a while, we arrived at the lake.\tAprès avoir marché un moment, nous sommes arrivés au lac.\nAfter we walked for a while, we arrived at the lake.\tAprès avoir marché un moment, nous sommes arrivées au lac.\nAiding and abetting the enemy is considered treason.\tAssister et encourager l'ennemi est considéré comme de la trahison.\nAll of a sudden, three dogs appeared in front of us.\tTout à coup, trois chiens apparurent devant nous.\nAlong with thousands of others, he fled the country.\tEn même temps que des milliers d'autres, il a quitté le pays.\nAncient coins were found inside the mysterious tomb.\tDes monnaies antiques furent trouvées à l'intérieur de la mystérieuse tombe.\nAre you really going to let Tom go there by himself?\tEst-ce que tu vas vraiment laisser Tom aller là-bas tout seul ?\nAre you sure you want to put your life in her hands?\tEs-tu sûr de vouloir mettre ta vie entre ses mains ?\nAre you sure you want to put your life in her hands?\tÊtes-vous sûr de vouloir mettre votre vie entre ses mains ?\nAren't you hot? Why don't you take off your sweater?\tTu n'as pas chaud ? Pourquoi n'enlèves-tu pas ton pull ?\nArmenia joined the World Trade Organization in 2003.\tL’Arménie a rejoint l’Organisation mondiale du commerce en 2003.\nAs of tomorrow, this e-mail address will be invalid.\tÀ compter de demain, cette adresse électronique ne sera plus valable.\nAs soon as she heard the news, she burst into tears.\tAussitôt qu'elle entendit la nouvelle, elle éclata en sanglots.\nAtomic energy can be utilized for peaceful purposes.\tL'énergie atomique peut être utilisée à des fins pacifiques.\nAttach a recent photograph to your application form.\tJoignez une photographie récente à votre application.\nBe quiet. If you aren't quiet, you'll be thrown out.\tSoyez calmes. Si vous n'êtes pas calmes, on vous jettera dehors.\nBe quiet. If you aren't quiet, you'll be thrown out.\tSoyez calme. Si vous n'êtes pas calme, on vous jettera dehors.\nBe quiet. If you aren't quiet, you'll be thrown out.\tSois calme. Si tu n'es pas calme, on te jettera dehors.\nBuying such an expensive car is out of the question.\tAcheter une voiture aussi chère est hors de question.\nCan you briefly sum up what was said at the meeting?\tPouvez-vous résumer brièvement ce qui a été dit à la réunion ?\nCan you briefly sum up what was said at the meeting?\tPeux-tu résumer brièvement ce qui s'est dit à la réunion ?\nCan you imagine what life will be like for them now?\tPouvez-vous imaginer ce que la vie sera pour eux, désormais ?\nCan you imagine what life will be like for them now?\tPeux-tu imaginer ce que la vie sera pour elles, désormais ?\nCan you please take this package to the post office?\tPeux-tu apporter ce paquet à la poste, s'il te plaît ?\nCanadian officials weighed the supplies of each man.\tLes fonctionnaires canadiens pesèrent les provisions de chaque homme.\nComplaining about something doesn't change anything.\tSe plaindre de quelque chose ne change rien.\nCould you lend me your bicycle for a couple of days?\tPourrais-tu me prêter ton vélo pendant deux jours ?\nCould you please give me some more examples of that?\tPeux-tu me donner plus d'exemples de ça s'il te plaît.\nCould you tell me how to get to the nearest station?\tPourriez-vous me dire comment me rendre à la gare la plus proche ?\nCuriously, a flower bloomed on the withered up tree.\tCurieusement, une fleur s'épanouit sur l'arbre desséché.\nDid you know that some foxes lived on this mountain?\tSaviez-vous que quelques renards vivaient sur cette montagne ?\nDid you leave at the same time as my younger sister?\tÊtes-vous parti en même temps que ma jeune sœur ?\nDo unto others as you would have others do unto you.\tFais aux autres ce que tu voudrais qu'ils te fassent.\nDo you intend to answer all my questions truthfully?\tAvez-vous l'intention de répondre sincèrement à mes questions ?\nDo you know which deity this temple is dedicated to?\tSavez-vous à quelle divinité ce temple est dédié ?\nDo you think a little salt would improve the flavor?\tCrois-tu qu'un peu de sel améliorera la saveur ?\nDo you think something like that will repeat itself?\tPenses-tu qu'une telle chose va se reproduire ?\nDon't pretend you don't know what I'm talking about.\tNe fais pas semblant d'ignorer de quoi je parle !\nDon't pretend you don't know what I'm talking about.\tNe faites pas semblant d'ignorer de quoi je parle !\nDon't push your child into any vocation he dislikes.\tNe poussez pas votre enfant dans quelque vocation qu'il n'aime pas.\nDon't translate English into Japanese word for word.\tNe traduisez pas mot à mot de l'anglais au japonais.\nDon't you have anything better to do with your time?\tN'as-tu rien à faire de mieux de ton temps ?\nDon't you have anything better to do with your time?\tN'avez-vous rien à faire de mieux de votre temps ?\nDon't you think it odd that she was in such a hurry?\tVous ne trouvez pas bizarre qu'elle était si pressée ?\nEcology is the study of living things all around us.\tL'écologie est l'étude du vivant qui nous entoure.\nEmployees are prohibited from watching the Olympics.\tLes employés ne sont pas autorisés à regarder les jeux olympiques.\nEmployees are prohibited from watching the Olympics.\tIl est interdit aux employés de regarder les jeux olympiques.\nEven if he does something bad, he'll never admit it.\tMême s'il fait quelque chose de répréhensible, il ne l'admettra jamais.\nEven the cleverest students can make silly mistakes.\tMême les étudiants les plus intelligents peuvent faire des erreurs stupides.\nEvery year, many older people die in road accidents.\tChaque année, beaucoup de personnes âgées meurent dans des accidents de la route.\nExcuse me, what's the shortest route to the station?\tVeuillez m'excuser, quel est le chemin le plus court pour la gare ?\nFather translated the French document into Japanese.\tMon père a traduit en japonais le document français.\nFlies and mosquitoes interfered with his meditation.\tDes mouches et des moustiques s'ingérèrent dans sa méditation.\nFluency in English is a very marketable skill today.\tDe nos jours, parler couramment anglais est une compétence avantageuse.\nFor the past 10 years, I've fed my dog dry dog food.\tPendant les dix dernières années, j'ai nourri mon chien avec des croquettes sèches.\nFrankly speaking, this novel isn't very interesting.\tPour parler franchement, ce roman n'est pas très intéressant.\nFresh fruit and vegetables are good for your health.\tLes fruits frais et les légumes sont bons pour votre santé.\nGrandmother looks after the children during the day.\tGrand-mère s'occupe des enfants pendant la journée.\nHave you been told when you are expected to be here?\tT'a-t-on dit quand tu es attendu ici ?\nHave you been told when you are expected to be here?\tVous a-t-on dit quand vous êtes attendu ici ?\nHave you been told when you are expected to be here?\tT'a-t-on dit quand tu es attendue ici ?\nHave you been told when you are expected to be here?\tVous a-t-on dit quand vous êtes attendue ici ?\nHave you been told when you are expected to be here?\tVous a-t-on dit quand vous êtes attendus ici ?\nHave you been told when you are expected to be here?\tVous a-t-on dit quand vous êtes attendues ici ?\nHave you been told when you are expected to be here?\tT'a-t-on indiqué quand tu es attendu ici ?\nHave you been told when you are expected to be here?\tT'a-t-on indiqué quand tu es attendue ici ?\nHave you been told when you are expected to be here?\tVous a-t-on indiqué quand vous êtes attendue ici ?\nHave you been told when you are expected to be here?\tVous a-t-on indiqué quand vous êtes attendu ici ?\nHave you been told when you are expected to be here?\tVous a-t-on indiqué quand vous êtes attendues ici ?\nHave you been told when you are expected to be here?\tVous a-t-on indiqué quand vous êtes attendus ici ?\nHave you given any thought to having dinner with me?\tAs-tu réfléchi le moins du monde à dîner avec moi ?\nHave you given any thought to having dinner with me?\tAvez-vous réfléchi le moins du monde à dîner avec moi ?\nHe buttoned up his coat before walking out the door.\tIl boutonna son manteau avant de sortir par la porte.\nHe called in to say he could not attend the meeting.\tIl a appelé pour dire qu'il ne pourrait pas assister à la réunion.\nHe came to the United States as a boy from Scotland.\tIl arriva aux États-Unis d'Amérique, enfant, en provenance d'Écosse.\nHe can do five somersaults without breaking a sweat.\tIl peut faire cinq sauts périlleux sans souci.\nHe can't do this kind of work, and she can't either.\tIl ne peut pas faire ce type de métier et elle non plus.\nHe checked the calculations again just to make sure.\tIl a revérifié les calculs pour être sûr.\nHe did not answer the phone, so I sent him an email.\tComme il n'a pas répondu au téléphone, je lui ai envoyé un courriel.\nHe died within a few days of his hundredth birthday.\tIl est mort quelques jours avant son centième anniversaire.\nHe ditched the car in an alley and took off running.\tIl abandonna la voiture dans une allée et se mit à courir.\nHe expressed his feelings in the form of a painting.\tIl a exprimé ses sentiments par une peinture.\nHe gave an explanation about why he had been absent.\tIl donna une explication à son absence.\nHe had made enemies during his early political life.\tIl s'était fait des ennemis au cours du début de sa vie politique.\nHe had no sooner arrived than he was asked to leave.\tIl était à peine arrivé qu'on lui demandait déjà de partir.\nHe has no intention to interfere with your business.\tIl ne compte pas se mêler de tes affaires.\nHe has recently made remarkable progress in English.\tIl fait des progrès remarquables en anglais ces derniers temps.\nHe hasn't been heard from since he left the country.\tDepuis qu'il a quitté le pays, on n'a pas entendu parler de lui.\nHe hit the center of the target with his first shot.\tIl a touché le centre de la cible du premier coup.\nHe is a gentleman. He cannot have said such a thing.\tC'est un gentleman, il ne peut avoir dit une telle chose.\nHe is by far the best baseball player at our school.\tIl est de loin le meilleur joueur de base-ball de notre école.\nHe is not the man that he was when I first knew him.\tIl n'est plus le même homme que lorsque je l'ai connu pour la première fois.\nHe is one of the most popular students in the class.\tIl est un des étudiants les plus populaires de la classe.\nHe is said to have been very poor when he was young.\tOn dit qu'il a été très pauvre quand il était jeune.\nHe isn't smart enough to add up numbers in his head.\tIl n'a pas assez de cervelle pour faire des additions de tête.\nHe pinched and scraped for many years to save money.\tIl se serra la ceinture pendant de nombreuses années afin d'économiser de l'argent.\nHe ran away from home three times before he was ten.\tIl a fugué de la maison trois fois avant ses dix ans.\nHe seldom reads an editorial and is not a book worm.\tIl lit rarement un éditorial et n'est pas un rat de bibliothèque.\nHe sent me a letter saying that he could not see me.\tIl me fit parvenir une lettre disant qu'il ne pouvait me voir.\nHe sent me a letter saying that he could not see me.\tIl m'envoya une lettre disant qu'il ne pouvait me voir.\nHe sometimes is absent from work without good cause.\tIl est parfois absent du travail sans bonne raison.\nHe told the children about his adventures in Africa.\tIl a raconté aux enfants ses aventures en Afrique.\nHe told the children about his adventures in Africa.\tIl conta aux enfants ses aventures en Afrique.\nHe took a look at the newspaper before going to bed.\tIl parcourut le journal avant d'aller se coucher.\nHe took charge of the firm after his father's death.\tIl a pris le contrôle de l'entreprise après le décès de son père.\nHe tried to approach her using every possible means.\tIl tenta de s'approcher d'elle en utilisant tous les moyens possibles.\nHe was a former university professor and researcher.\tC'était un ancien professeur d'université et un chercheur.\nHe was aware of my presence but he did not greet me.\tIl était au courant de ma présence mais il ne m'a pas salué.\nHe was completely cleared of the charge against him.\tIl a été complètement lavé de l'accusation qui pesait contre lui.\nHe was found lying unconscious on the kitchen floor.\tOn le retrouva étalé et inconscient sur le sol de la cuisine.\nHe was found lying unconscious on the kitchen floor.\tIl a été trouvé étendu inconscient sur le sol de la cuisine.\nHe was very kind to invite me to his birthday party.\tIl a vraiment été gentil de m'inviter à la fête de son anniversaire.\nHe watched after the children as they were swimming.\tIl surveillait les enfants tandis qu'ils nageaient.\nHe will be prosecuted to the full extent of the law.\tIl sera poursuivi avec toute la sévérité de la loi.\nHe will look after the cats for me while I'm abroad.\tIl s'occupera des chats pour moi quand je serai à l'étranger.\nHe would often sit for hours without doing anything.\tIl reste souvent assis durant des heures à ne rien faire.\nHe would sooner die than get up early every morning.\tIl préférerait mourir plutôt que de se lever tôt chaque matin.\nHe'll never achieve anything unless he works harder.\tIl n'arrivera jamais à rien s'il ne travaille pas plus dur.\nHe's studying hard so he can pass the entrance exam.\tIl travaille dur afin de réussir l'examen d'entrée.\nHer daughter has what it takes to be a good teacher.\tSa fille a l’étoffe d’une bonne enseignante.\nHer daughter has what it takes to be a good teacher.\tSa fille a l’étoffe d’un bon professeur.\nHer daughter has what it takes to be a good teacher.\tSa fille a l’étoffe d’une bonne professeure.\nHer daughter has what it takes to be a good teacher.\tSa fille a l’étoffe d’une bonne institutrice.\nHer husband wants to have his own way in everything.\tSon époux veut tout faire à sa façon.\nHer ideas on education are very different from mine.\tSes idées sur l'éducation sont très différentes des miennes.\nHey, I may have no money, but I still have my pride.\tEh, j'ai peut-être pas d'argent, mais j'ai toujours ma fierté.\nHis brazen act of defiance almost cost him his life.\tSon acte impudent de défiance a failli lui coûter la vie.\nHis son's criminal activities caused him great pain.\tLes activités criminelles de son fils lui ont causé une grande douleur.\nHow did you become interested in studying languages?\tComment en êtes-vous venu à vous intéresser à l'étude des langues ?\nHow did you become interested in studying languages?\tComment en êtes-vous venue à vous intéresser à l'étude des langues ?\nHow did you become interested in studying languages?\tComment en êtes-vous venus à vous intéresser à l'étude des langues ?\nHow did you become interested in studying languages?\tComment en êtes-vous venues à vous intéresser à l'étude des langues ?\nHow did you become interested in studying languages?\tComment en es-tu venu à t'intéresser à l'étude des langues ?\nHow did you become interested in studying languages?\tComment en es-tu venue à t'intéresser à l'étude des langues ?\nHow do I know this isn't another one of your tricks?\tComment sais-je qu'il ne s'agit pas d'un autre de tes tours ?\nHow do I know this isn't another one of your tricks?\tComment sais-je qu'il ne s'agit pas d'un autre de vos tours ?\nHow do you know that you can't do it unless you try?\tComment savez-vous que vous ne pouvez pas, à moins d'essayer ?\nHow do you know that you can't do it unless you try?\tComment sais-tu que tu ne peux pas, à moins d'essayer ?\nHow many payments will it take to pay off this loan?\tCombien d'échéances seront-elles nécessaires pour liquider cet emprunt ?\nHow many times a week does the soccer team practice?\tCombien de fois par semaine l'équipe de football s'entraîne-t-elle ?\nHow many times have I told you to fold your clothes?\tCombien de fois vous ai-je dit de plier vos vêtements ?\nHow many times have I told you to fold your clothes?\tCombien de fois t'ai-je dit de plier tes vêtements ?\nHow much did you spend on Christmas gifts this year?\tCombien as-tu dépensé en cadeaux de Noël, cette année ?\nHow much did you spend on Christmas gifts this year?\tCombien avez-vous dépensé en cadeaux de Noël, cette année ?\nHow much longer will I have to stay in the hospital?\tCombien de temps encore devrai-je rester à l'hôpital ?\nHow would you like your coffee, black or with cream?\tComment préférez-vous votre café, noir ou avec crème ?\nI am counting on you to deliver the opening address.\tJe compte sur vous pour prononcer le discours d'ouverture.\nI am going to introduce you to the rest of the crew.\tJe vais vous présenter au reste de l'équipage.\nI am in the habit of taking a shower in the morning.\tJ'ai l'habitude de prendre une douche le matin.\nI answered your questions. Now let me ask you a few.\tJ'ai répondu à vos questions. Maintenant, laissez-moi vous en poser quelques unes.\nI answered your questions. Now let me ask you a few.\tJ'ai répondu à tes questions. Maintenant, laisse-moi t'en poser quelques unes.\nI avoid crossing the street here if I am in a hurry.\tJ'évite de traverser la rue ici si je suis pressé.\nI can usually tell when someone is hiding something.\tJ'arrive habituellement à deviner lorsque quelqu'un cache quelque chose.\nI can't believe I let you talk me into volunteering.\tJe n'arrive pas à croire que je vous laisse me persuader de me porter volontaire.\nI can't believe I let you talk me into volunteering.\tJe n'arrive pas à croire que je te laisse me persuader de me porter volontaire.\nI can't concentrate on my work because of the noise.\tJe ne peux pas me concentrer sur mon travail à cause du bruit.\nI can't do without an air conditioner in the summer.\tJe ne peux rien faire sans la climatisation en été.\nI can't figure out how to delete what I just posted.\tJe n'arrive pas à comprendre comment supprimer ce que je viens de publier.\nI can't help but feel like I've forgotten something.\tJe ne peux m'empêcher d'avoir l'impression d'avoir oublié quelque chose.\nI can't help but feel like I've forgotten something.\tJe ne peux m'empêcher d'avoir l'impression que j'ai oublié quelque chose.\nI can't imagine what life would be like without you.\tJe n'arrive pas à imaginer à quoi la vie ressemblerait sans toi.\nI can't imagine what life would be like without you.\tJe n'arrive pas à imaginer à quoi la vie ressemblerait sans vous.\nI can't look at this photo without feeling very sad.\tJe ne peux regarder cette photo sans éprouver beaucoup de tristesse.\nI can't remember the last time I ate with my family.\tJe n'arrive pas à me rappeler la dernière fois que j'ai mangé avec ma famille.\nI completely forgot to make something for us to eat.\tJ'ai complètement oublié de préparer quelque chose à manger pour nous.\nI didn't want to look stupid in front of my friends.\tJe ne voulais pas avoir l'air stupide devant mes amis.\nI don't care what you say. It's not going to happen!\tHors de question !\nI don't like to take on such heavy responsibilities.\tJe ne supporte pas d'assumer de si lourdes responsabilités.\nI don't speak French, but I can understand it a bit.\tJe ne parle pas le français mais j'arrive à le comprendre un peu.\nI don't speak French, but I can understand it a bit.\tJe ne parle pas le français mais je parviens à le comprendre un peu.\nI don't think I'll ever sound like a native speaker.\tJe ne pense pas qu'on ne me percevra jamais comme un locuteur natif.\nI don't think he has anything to do with the matter.\tJe ne pense pas qu'il ait quelque chose à voir avec ça.\nI don't think that Tom realizes how rude he's being.\tJe ne pense pas que Tom se rende compte de la sévérité dont il fait preuve.\nI don't understand what the author is trying to say.\tJe ne comprends pas ce que l'auteur essaie de dire.\nI don't want you anywhere near the medicine cabinet.\tJe ne veux pas que vous soyez près de la trousse à pharmacie.\nI expect you to give me an answer by this afternoon.\tJ'attends que vous me donniez une réponse pour cette après-midi.\nI expect you to give me an answer by this afternoon.\tJ'attends que tu me donnes une réponse pour cette après-midi.\nI expect you to give me an answer by this afternoon.\tJ'attends que vous me donniez une réponse pour cet après-midi.\nI expect you to give me an answer by this afternoon.\tJ'attends que tu me donnes une réponse pour cet après-midi.\nI figured you'd probably never want to see me again.\tJ'ai imaginé que vous ne voudriez probablement jamais plus me revoir.\nI forgot to tell you why we're asking for donations.\tJ'ai oublié de vous indiquer pourquoi nous sollicitons des dons.\nI found my father's diary that he kept for 30 years.\tJ'ai trouvé le journal que mon père a tenu pendant 30 ans.\nI gave him a warning, to which he paid no attention.\tJe lui ai donné un avertissement auquel il n'a prêté aucune attention.\nI gave some of my old clothes to the Salvation Army.\tJ'ai donné certains de mes vieux vêtements à l'armée du Salut.\nI gave some of my old clothes to the Salvation Army.\tJ'ai donné de vieux vêtements à moi à l'Armée du Salut.\nI get a three percent commission on anything I sell.\tJ'ai une commission de trois pour cent sur tout ce que je vends.\nI get a three percent commission on anything I sell.\tJ'obtiens une commission de trois pour cent sur tout ce que je vends.\nI get nervous when I speak in front of large crowds.\tJe deviens nerveux lorsque je parle devant une foule nombreuse.\nI get nervous when I speak in front of large crowds.\tJe deviens nerveuse lorsque je parle devant une foule nombreuse.\nI get the feeling you don't really want me to drive.\tJ'ai le sentiment que vous ne voulez pas vraiment que je conduise.\nI get the feeling you don't really want me to drive.\tJ'ai le sentiment que tu ne veux pas vraiment que je conduise.\nI get very angry when you don't answer my questions.\tJe me mets très en colère lorsque vous ne répondez pas à mes questions.\nI get very angry when you don't answer my questions.\tJe me mets très en colère lorsque tu ne réponds pas à mes questions.\nI got an email yesterday that was written in French.\tJ'ai reçu un courriel, hier, qui était rédigé en français.\nI hadn't intended to work at this company this long.\tJe n'avais pas l'intention de travailler aussi longtemps dans cette entreprise.\nI have been living in Rio de Janeiro for four years.\tJ'habite à Rio de Janeiro depuis quatre ans.\nI have read sixty pages, while he has read only ten.\tJ'ai lu soixante pages, pendant qu'il en a seulement lues dix.\nI have some doubts about his coming in this weather.\tJ'ai quelques doutes quant à sa venue par ce temps.\nI have to alter my clothes because I've lost weight.\tJe dois retoucher mes vêtements parce que j'ai perdu du poids.\nI have to go soon because I left the engine running.\tIl faut bientôt que j'y aille car j'ai laissé le moteur allumé.\nI hear that you are having an unusually cold winter.\tOn m'a dit que vous aviez un hiver exceptionnellement froid.\nI hope you have brains enough to see the difference.\tJ'espère que tu as assez de jugeotte pour voir la différence.\nI hope you have brains enough to see the difference.\tJ'espère que vous avez assez de cervelle pour voir la différence.\nI just heard that Tom and Mary are moving to Boston.\tJe viens d'apprendre que Tom et Mary déménagent à Boston.\nI just think you should be more careful, that's all.\tJe pense simplement que tu devrais être plus prudent, c'est tout.\nI just think you should be more careful, that's all.\tJe pense simplement que tu devrais être plus prudente, c'est tout.\nI just think you should be more careful, that's all.\tJe pense simplement que vous devriez être plus prudent, c'est tout.\nI just think you should be more careful, that's all.\tJe pense simplement que vous devriez être plus prudents, c'est tout.\nI just think you should be more careful, that's all.\tJe pense simplement que vous devriez être plus prudente, c'est tout.\nI just think you should be more careful, that's all.\tJe pense simplement que vous devriez être plus prudentes, c'est tout.\nI just want to go home and see my wife and the kids.\tJe veux juste aller chez moi et voir ma femme et les enfants.\nI just want to make sure we're all on the same page.\tJe veux juste m'assurer que nous sommes tous sur la même longueur d'onde.\nI just want to make sure we're all on the same page.\tJe veux juste m'assurer que nous sommes toutes sur la même longueur d'onde.\nI knew you liked me even though you never showed it.\tJe savais que tu m'aimais même si tu ne l'as jamais montré.\nI know you probably want to be alone, so I'll leave.\tJe sais que vous voulez probablement vous retrouver seul alors je vais partir.\nI know you probably want to be alone, so I'll leave.\tJe sais que vous voulez probablement vous retrouver seule alors je vais partir.\nI know you probably want to be alone, so I'll leave.\tJe sais que vous voulez probablement vous retrouver seuls alors je vais partir.\nI know you probably want to be alone, so I'll leave.\tJe sais que vous voulez probablement vous retrouver seules alors je vais partir.\nI know you probably want to be alone, so I'll leave.\tJe sais que tu veux probablement te retrouver seul alors je vais partir.\nI know you probably want to be alone, so I'll leave.\tJe sais que tu veux probablement te retrouver seule alors je vais partir.\nI know you see it, but are you really looking at it?\tJe sais que tu le vois, mais est-ce que tu le regardes vraiment ?\nI know you see it, but are you really looking at it?\tJe sais que vous la voyez, mais la regardez-vous vraiment ?\nI know you see it, but are you really looking at it?\tJe sais que tu le vois, mais le regardes-tu vraiment ?\nI met your son yesterday and he greeted me politely.\tJ'ai rencontré votre fils hier et il m'a poliment salué.\nI met your son yesterday and he greeted me politely.\tJ'ai rencontré votre fils hier et il m'a poliment saluée.\nI met your son yesterday and he greeted me politely.\tJ'ai rencontré ton fils hier et il m'a poliment salué.\nI met your son yesterday and he greeted me politely.\tJ'ai rencontré ton fils hier et il m'a poliment saluée.\nI only wish I had a little more time to finish this.\tJ'aimerais seulement disposer d'un petit peu plus de temps pour finir ça.\nI plan to buy a new car as soon as I can afford one.\tJe prévois d'acheter une nouvelle voiture dès que j'en ai les moyens.\nI plan to buy a new car as soon as I can afford one.\tJe prévois d'acquérir une nouvelle voiture dès que je peux me le permettre.\nI plan to buy a new car as soon as I can afford one.\tJe prévois d'acquérir une nouvelle voiture dès que mes moyens me le permettent.\nI really don't understand what you're talking about.\tJe ne comprends vraiment pas de quoi vous parlez.\nI really don't understand what you're talking about.\tJe ne comprends vraiment pas de quoi tu parles.\nI received a letter from one of my friends in Japan.\tJ'ai reçu une lettre de l'un de mes amis au Japon.\nI returned to my hometown after five years' absence.\tJe suis retourné dans ma ville natale après cinq ans d'absence.\nI studied hard so that I could pass the examination.\tJ'ai étudié dur afin d'être reçu à mon examen.\nI suppose Tom told you what time he plans to arrive.\tJe suppose que Tom t'a dit à quelle heure il prévoit d'arriver.\nI suppose Tom told you what time he plans to arrive.\tJe suppose que Tom vous a dit à quelle heure il prévoit d'arriver.\nI think I might join you, but I haven't decided yet.\tJe pense que je me joindrai à vous, mais je n'ai pas encore décidé.\nI think I still have time for another cup of coffee.\tJe pense avoir encore le temps pour une autre tasse de café.\nI think he has enough intelligence to understand it.\tJe crois qu'il est assez intelligent pour le comprendre.\nI think it's time for me to get a new email address.\tJe pense qu'il est temps pour moi de prendre une nouvelle adresse électronique.\nI think it's time for me to say what I really think.\tJe pense qu'il est temps que je dise ce que je pense vraiment.\nI think it's time for me to say what I really think.\tJe pense que le temps est venu pour moi de dire vraiment ce que je pense.\nI think the time is right to introduce this product.\tJe pense que c'est le bon moment pour lancer ce produit.\nI think there is no point in trying to persuade him.\tJe pense qu'il ne sert à rien d'essayer de le convaincre.\nI think we should be allowed to go anywhere we want.\tJe pense que nous devrions être autorisés à aller où bon nous semble.\nI think we should be allowed to go anywhere we want.\tJe pense que nous devrions être autorisées à aller où bon nous semble.\nI think you'd better lie low until she forgives you.\tJe pense que tu devrais adopter un profil bas jusqu'à ce qu'elle te pardonne.\nI thought it would be a good concert, but it wasn't.\tJe pensais que ça serait un bon concert, mais ce ne fut pas le cas.\nI thought you'd be full after eating that big steak.\tJe pensais que tu serais rassasié après avoir mangé ce gros steak.\nI thought you'd be full after eating that big steak.\tJe pensais que tu serais rassasiée après avoir mangé ce gros steak.\nI thought you'd be full after eating that big steak.\tJe pensais que vous seriez rassasié après avoir mangé ce gros steak.\nI thought you'd be full after eating that big steak.\tJe pensais que vous seriez rassasiée après avoir mangé ce gros steak.\nI thought you'd be full after eating that big steak.\tJe pensais que vous seriez rassasiés après avoir mangé ce gros steak.\nI thought you'd be full after eating that big steak.\tJe pensais que vous seriez rassasiées après avoir mangé ce gros steak.\nI took the liberty of calling him by his first name.\tJ'ai pris la liberté de l'appeler par son prénom.\nI used to go swimming in the sea when I was a child.\tJ'allais souvent nager dans la mer quand j'étais enfant.\nI waited for Tom for three hours, but he never came.\tJ'ai attendu Tom trois heures, mais il n'est jamais venu.\nI want to make sure I understand what you're saying.\tJe veux m'assurer de comprendre ce que vous dites.\nI want to make sure I understand what you're saying.\tJe veux m'assurer de comprendre ce que tu dis.\nI was careful not to say anything to make him angry.\tJe veillai à ne rien dire qui puisse le mettre en colère.\nI was caught in a shower on my way home from school.\tJ'ai été pris sous une averse en revenant de l'école à la maison.\nI was late for the meeting because of a traffic jam.\tJ'étais en retard pour la réunion à cause d'un embouteillage.\nI was late for the meeting because of a traffic jam.\tJ'étais en retard pour la réunion à cause d'une file.\nI was unable to attend the party, nor did I want to.\tJe ne pouvais pas assister à la fête, et je ne le voulais pas non plus.\nI was wondering when you were going to tell me that.\tJe me demandais quand tu allais me le dire.\nI was wondering when you were going to tell me that.\tJe me demandais quand vous alliez me le dire.\nI went into the town in search of a good restaurant.\tJe suis allé en ville pour y chercher un bon restaurant.\nI went to bed after preparing everything in advance.\tJe suis allé me coucher après avoir tout préparé à l'avance.\nI will get through with my homework before he comes.\tJe finirai mes devoirs avant qu'il n'arrive.\nI will have finished the work by seven this evening.\tJ'aurai fini le travail à dix-neuf heures ce soir.\nI will never forget your kindness as long as I live.\tTant que je vivrai je n'oublierai jamais ta gentillesse.\nI will never forget your kindness as long as I live.\tAutant que je vivrai, je n'oublierai jamais ta gentillesse.\nI wish there were a French translation of this book.\tJ'aimerais qu'il y ait une traduction française de ce livre.\nI wish there were a better translation of this book.\tJ'aimerais qu'il y ait une meilleure traduction de ce livre.\nI wish we could have met under better circumstances.\tJ'aimerais que nous ayons pu nous rencontrer sous de meilleurs auspices.\nI wish we could have met under better circumstances.\tJ'aimerais que nous ayons pu nous rencontrer dans de meilleures circonstances.\nI wish you were wrong, but I know that you're right.\tJ'aimerais que tu aies tort, mais je sais que tu as raison.\nI wonder what Tom would do in a situation like this.\tJe me demande ce que Tom ferait dans une telle situation.\nI wonder what the average weight of a strawberry is.\tJe me demande quel est le poids moyen d'une fraise.\nI would just like to thank all of you for your work.\tJ'aimerais simplement vous remercier tous pour votre travail !\nI would like to give him a present for his birthday.\tJe voudrais lui offrir un cadeau pour son anniversaire.\nI would like to leave this town and never come back.\tJe voudrais quitter cette ville et ne jamais revenir.\nI would rather stay at home than go out in the rain.\tJe préférerais rester à la maison plutôt que de sortir sous la pluie.\nI would really like to know why he did such a thing.\tJ'aimerais vraiment savoir pourquoi il a fait une telle chose.\nI'd explain it to you, but your brain would explode.\tJe te l'expliquerais, mais ton cerveau exploserait.\nI'd explain it to you, but your brain would explode.\tJe te l'expliquerais bien, mais ton cerveau exploserait.\nI'd like to discuss some problems we've been having.\tJ'aimerais m'entretenir de problèmes que nous avons eus.\nI'd like to discuss some problems we've been having.\tJ'aimerais discuter de problèmes que nous avons eus.\nI'd like to do shopping on Fifth Avenue in New York.\tJ'aimerais faire du shopping sur la Cinquième Avenue à New York.\nI'd like to earn my keep while I'm staying with you.\tJe voudrais gagner ma nourriture pendant que je séjourne chez toi.\nI'd like to earn my keep while I'm staying with you.\tJe voudrais gagner ma nourriture pendant que je séjourne chez vous.\nI'd like to talk to the coordinator of this project.\tJ'aimerais discuter avec le coordonnateur de ce projet.\nI'd like you to look after my dog during my absence.\tJ'aimerais que vous vous occupiez de mon chien durant mon absence.\nI'd like you to look after my dog during my absence.\tJ'aimerais que vous vous occupiez de ma chienne durant mon absence.\nI'd like you to look after my dog during my absence.\tJ'aimerais que tu t'occupes de mon chien durant mon absence.\nI'd like you to look after my dog during my absence.\tJ'aimerais que tu t'occupes de ma chienne durant mon absence.\nI'll be back soon. I have to run to the post office.\tJe reviens vite. Je dois courir à la poste.\nI'll postpone my trip to Scotland until it's warmer.\tJe repousserai mon voyage en Écosse jusqu'à ce qu'il fasse plus chaud.\nI'll provide you with all the necessary information.\tJe vous fournirai toute l'information nécessaire.\nI'll provide you with all the necessary information.\tJe te fournirai toute l'information nécessaire.\nI'm getting pretty bored with driving every morning.\tJ'en ai plutôt marre de conduire chaque matin.\nI'm going to have to ask you to put your phone away.\tJe vais devoir vous demander d'éloigner votre téléphone.\nI'm hanging a picture of my grandmother on the wall.\tJ'accroche au mur une photo de ma grand-mère.\nI'm hanging a picture of my grandmother on the wall.\tJ'accroche au mur un portrait de ma grand-mère.\nI'm looking for an easy-to-read manga with furigana.\tJe cherche un manga facile à lire et avec des furiganas.\nI'm looking forward to going hunting with my father.\tJ'attends avec impatience d'aller chasser avec mon père.\nI'm not saying this to hurt you, but it's the truth.\tJe ne le dis pas pour te blesser mais c'est la vérité.\nI'm not saying this to hurt you, but it's the truth.\tJe ne le dis pas pour vous blesser mais c'est la vérité.\nI'm quite certain I don't want to be married to you.\tJe suis tout à fait certain que je ne veux pas t'épouser.\nI'm sorry for the pain I caused you and your family.\tJe suis désolé pour la douleur que je vous ai causée, à toi et à ta famille.\nI'm sorry for the pain I caused you and your family.\tJe suis désolé pour la douleur que je vous ai causée, à vous et à votre famille.\nI'm sorry for the pain I caused you and your family.\tJe suis désolée pour la douleur que je vous ai causée, à toi et à ta famille.\nI'm sorry for the pain I caused you and your family.\tJe suis désolée pour la douleur que je vous ai causée, à vous et à votre famille.\nI'm very tired. I don't feel like taking a walk now.\tJe suis très fatigué. Je n'ai pas envie d'aller faire un tour.\nI've been trying to get a little exercise every day.\tJ'ai essayé de faire un petit peu d'exercice tous les jours.\nIf I eat too much chocolate, I break out in pimples.\tSi je mange trop de chocolat, j'ai une éruption de boutons.\nIf I had had more time, I would have written to you.\tSi j'avais eu plus de temps, je t'aurais écrit.\nIf I had more money, I could move to a bigger house.\tSi j'avais davantage d'argent, je pourrais déménager pour une maison plus grande.\nIf I were in good health, I could pursue my studies.\tSi j'étais en bonne santé, je pourrais poursuivre mes études.\nIf blaming me makes you feel better, go right ahead.\tSi me blâmer te fait te sentir mieux, vas-y.\nIf blaming me makes you feel better, go right ahead.\tSi me le reprocher vous fait vous sentir mieux, allez-y.\nIf for some reason that happened, what would you do?\tSi, pour une raison quelconque, cela arrivait, que ferais-tu ?\nIf for some reason that happened, what would you do?\tSi, pour une raison quelconque, cela survenait, que ferais-tu ?\nIf for some reason that happened, what would you do?\tSi, pour une raison quelconque, cela advenait, que ferais-tu ?\nIf for some reason that happened, what would you do?\tSi, pour une raison quelconque, cela avait lieu, que ferais-tu ?\nIf for some reason that happened, what would you do?\tSi, pour une raison quelconque, cela arrivait, que feriez-vous ?\nIf for some reason that happened, what would you do?\tSi, pour une raison quelconque, cela advenait, que feriez-vous ?\nIf for some reason that happened, what would you do?\tSi, pour une raison quelconque, cela survenait, que feriez-vous ?\nIf for some reason that happened, what would you do?\tSi, pour une raison quelconque, cela avait lieu, que feriez-vous ?\nIf she'd known the results, she'd have been shocked.\tSi elle avait connu les résultats, elle en aurait été choquée.\nIf that guitar weren't so expensive, I could buy it.\tSi cette guitare n'était pas aussi chère, je pourrais me la payer.\nIf there's anything else you need, just let me know.\tSi tu as besoin de quoi que ce soit d'autre, tu n'as qu'à me le faire savoir.\nIf there's anything else you need, just let me know.\tSi vous avez besoin de quoi que ce soit d'autre, faites-le-moi savoir.\nIf you can't come, please let me know ahead of time.\tSi vous ne pouvez pas venir, faites-le-moi savoir par avance, je vous prie !\nIf you can't come, please let me know ahead of time.\tSi vous ne pouvez pas venir, veuillez me le faire savoir par avance !\nIf you can't stand the heat, get out of the kitchen.\tSi vous ne supportez pas la chaleur, sortez de la cuisine.\nIf you could go back in time, what would you change?\tSi tu pouvais remonter le temps, qu'est-ce que tu changerais ?\nIf you could go back in time, what would you change?\tSi vous pouviez remonter le temps, que changeriez-vous ?\nIf you don't hurry, you won't get there before dark.\tSi tu ne te dépêches pas, tu n'y seras pas avant la nuit.\nIf you don't hurry, you won't get there before dark.\tSi vous ne vous dépêchez pas, vous n'y arriverez pas avant la nuit.\nIf you don't mind, I'd like to be alone for a while.\tSi vous n'y voyez pas d'inconvénient, j'aimerais être seul un moment.\nIf you don't mind, I'd like to be alone for a while.\tSi vous n'y voyez pas d'inconvénient, j'aimerais être seule un moment.\nIf you don't mind, I'd like to be alone for a while.\tSi tu n'y vois pas d'inconvénient, j'aimerais être seul un moment.\nIf you don't mind, I'd like to be alone for a while.\tSi tu n'y vois pas d'inconvénient, j'aimerais être seule un moment.\nIf you really don't want to come, you don't have to.\tSi tu ne veux vraiment pas venir, tu ne le dois pas.\nIf you take this medicine, you'll feel a lot better.\tSi tu prends ce remède, tu te sentiras beaucoup mieux.\nIf you take this medicine, you'll feel a lot better.\tSi vous prenez ce remède, vous vous sentirez beaucoup mieux.\nIf you want to be free, destroy your television set.\tSi tu veux être libre, détruis ta télévision.\nIf you want to be free, destroy your television set.\tSi tu veux être libre, détruis ton téléviseur !\nIf you were more ambitious, you could go a long way.\tSi tu étais plus ambitieux, tu pourrais aller loin.\nIf you're smart, you'll cash out while you're ahead.\tSi t'es malin, tu profiteras pendant que t'es devant.\nIn American football, a touchdown scores six points.\tEn football américain un touché vaut six points.\nIn Kyoto, you can see both old and modern buildings.\tÀ Kyoto, on peut voir à la fois des bâtiments anciens et modernes.\nIn addition to a thick fog, there was a heavy swell.\tEn plus d'un brouillard épais, il y avait une forte houle.\nIndustrial countries require a lot of skilled labor.\tLes pays industriels requièrent beaucoup de main-d'œuvre qualifiée.\nInstant noodles are a staple among college students.\tLes nouilles instantanées sont la base de l'alimentation parmi les élèves des collèges.\nInstant noodles are a staple among college students.\tLes nouilles instantanées sont la base de l'alimentation parmi les élèves de facultés.\nIran is the eighteenth largest country in the world.\tL'Iran est le dix-huitième plus grand pays du monde.\nIs it necessary for me to explain the reason to him?\tEst-il nécessaire que je lui en explique la raison ?\nIs there any chance of my borrowing your typewriter?\tY a-t-il une possibilité que je puisse emprunter la machine à écrire ?\nIsn't there anything that will make you feel better?\tN'y a-t-il rien qui vous fera vous sentir mieux ?\nIsn't there anything that will make you feel better?\tN'y a-t-il rien qui te fera te sentir mieux ?\nIt goes without saying that money is not everything.\tIl va sans dire que l'argent ne fait pas tout.\nIt has been just a week since I arrived in New York.\tÇa fait justement une semaine que je suis arrivé à New York.\nIt is not easy to catch a hare with your bare hands.\tIl est difficile d'attraper un lièvre avec les mains.\nIt is not easy to catch a hare with your bare hands.\tIl est difficile d'attraper un lièvre à la main.\nIt is often said that the Japanese are hard workers.\tOn entend souvent dire que les Japonais sont des bons travailleurs.\nIt is probable that she will win the speech contest.\tIl est probable qu'elle va gagner le concours d'élocution.\nIt only took us fifteen minutes to complete the job.\tCela ne nous prit que quinze minutes de terminer le travail.\nIt rained yesterday, but it cleared up this morning.\tIl a plu hier, mais ça s'est éclairci ce matin.\nIt takes two hours to go to school by bus and train.\tCela prend deux heures pour aller à l'école en bus et en train.\nIt took a long time to accustom myself to the noise.\tIl m'a fallu longtemps pour m'accoutumer au bruit.\nIt took him several weeks to recover from the shock.\tÇa lui a demandé plusieurs semaines pour se remettre du choc.\nIt was careless of you to leave the key in your car.\tC'était imprudent de votre part de laisser la clé dans votre voiture.\nIt was difficult to persuade him to change his mind.\tIl fut difficile de le convaincre de changer d'idée.\nIt was five years ago that I graduated from college.\tCela fait 5 ans que je suis diplômé de l'université.\nIt was his car, not mine, that broke down yesterday.\tC'était sa voiture, pas la mienne, qui est tombée en panne hier.\nIt was his lengthy narrative that bored me to death.\tC'est son récit interminable qui m'a ennuyé à mourir.\nIt was not until recently that she changed her mind.\tCe n'est que récemment qu'elle a changé d'avis.\nIt was not until yesterday that I learned the truth.\tJusqu'à hier, je n'avais pas appris la vérité.\nIt would be better if we didn't attend that meeting.\tIl serait préférable que nous n'assistions pas à cette réunion.\nIt would have been better if you had left it unsaid.\tIl aurait été préférable que tu ne dises pas ce genre de choses.\nIt's already eleven. It's high time you were in bed.\tIl est déjà onze heures. Tu devrais déjà être au lit.\nIt's already eleven. It's high time you were in bed.\tIl est déjà onze heures. Il est grand temps que vous soyez au lit.\nIt's doubtful if we'll finish in time for Christmas.\tIl est douteux que nous finissions à temps pour Noël.\nIt's expensive to rent an office in downtown Boston.\tCela coûte cher de louer un bureau dans le centre de Boston.\nIt's foolish on your part to swim when it's so cold.\tC'est fou de ta part de nager quand il fait si froid.\nIt's no use trying to keep secrets from journalists.\tIl est inutile d'essayer de garder des secrets pour les journalistes.\nIt's the sort of day when you'd like to stay in bed.\tC'est le genre de jour où tu voudrais rester dans ta chambre.\nIt's the sort of day when you'd like to stay in bed.\tC'est le genre de jours durant lesquels j'aimerais rester au lit.\nJapan is a leader in the world's high-tech industry.\tLe Japon est en tête de l'industrie mondiale des hautes technologies.\nJust out of curiosity, what do you expect to happen?\tJuste par curiosité, qu'attends-tu qu'il se passe ?\nJust out of curiosity, what do you expect to happen?\tJuste par curiosité, qu'attendez-vous qu'il se passe ?\nLake Biwa could be seen from where we were standing.\tNous pouvions voir le lac Biwa d'où nous étions.\nLarge amounts of money were spent on the new bridge.\tDe grosses sommes d'argent furent consacrées au nouveau pont.\nLarge amounts of money were spent on the new bridge.\tDe grosses sommes d'argent ont été consacrées au nouveau pont.\nLast night it was so hot that I couldn't sleep well.\tLa nuit dernière, il faisait tellement chaud que je n'ai pas bien dormi.\nLast night, we looked at the stars from the rooftop.\tLa nuit dernière, nous avons observé les étoiles depuis le toit.\nLet's continue working together to make that happen.\tContinuons à travailler ensemble pour que cela se produise.\nLet's not forget that Tom doesn't understand French.\tN'oublions pas que Tom ne comprend pas le français.\nLet's spend less time arguing and more time working.\tPassons moins de temps à nous disputer et davantage à travailler.\nLong, long ago, there lived an old man and his wife.\tIl y a très très longtemps vivaient un vieil homme et sa femme.\nLong, long ago, there lived an old man in a village.\tIl y a très, très longtemps vivait un vieil homme dans un village.\nLook carefully. I'm going to show you how it's done.\tRegarde bien. Je vais te montrer comment on fait.\nMachines may one day think, but they'll never laugh.\tLes machines pourront peut-être penser, un jour, mais elles ne riront jamais.\nMany children stay after school for club activities.\tBeaucoup d’enfants restent après l’école pour des activités culturelles et sportives.\nMary felt like Tom was undressing her with his eyes.\tMary se sentait comme si Tom essayait de la déshabiller avec ses yeux.\nMeditation doesn't cost anything, but it takes time.\tLa méditation ne coûte rien mais ça prend du temps.\nMilk has to be kept at a relatively low temperature.\tOn doit conserver le lait à température relativement basse.\nMt. Fuji is higher than any other mountain in Japan.\tLe mont Fuji est la plus haute des montagnes du Japon.\nMy cousin, who is a lawyer, is in France at present.\tMon cousin, qui est avocat, est en France actuellement.\nMy coworker really knows how to suck up to the boss.\tMon collègue sait vraiment faire de la lèche au patron.\nMy doctor told me that I needed to lose some weight.\tMon docteur m'a dit que j'avais besoin de perdre du poids.\nMy doctor told me that I needed to lose some weight.\tMon médecin m'a dit qu'il fallait que je perde du poids.\nMy driving instructor says I should be more patient.\tMon moniteur d’auto-école dit que je devrais être plus patient.\nMy family went to the zoo to see pandas last Sunday.\tDimanche dernier, ma famille est allée au zoo pour voir des pandas.\nMy father has already given up smoking and drinking.\tMon père a déjà arrêté de fumer et de boire.\nMy grandmother was pulling up weeds in her backyard.\tMa grand-mère sarclait les mauvaises herbes à l'arrière du jardin.\nMy hands were shaking too much to thread the needle.\tMes mains tremblaient trop pour enfiler l'aiguille.\nMy little brother always sleeps with his teddy bear.\tMon petit frère dort toujours avec son ours en peluche.\nMy money seems to disappear by the end of the month.\tMon argent semble disparaître à la fin du mois.\nMy neighbor always mows his lawn on Sunday mornings.\tMon voisin tond toujours sa pelouse le dimanche matin.\nMy picture's in every police station in the country.\tMa photo est dans tous les postes de police du pays.\nMy pride prevented me from borrowing money from him.\tLa fierté m'empêcha de lui emprunter de l'argent.\nMy short-term memory is getting shorter and shorter.\tMa mémoire immédiate est de plus en plus courte.\nMy sister belonged to the basketball club last year.\tMa sœur faisait partie du club de basketball l'année dernière.\nMy sister is a twenty-one years old college student.\tMa sœur est une étudiante universitaire de 21 ans.\nMy uncle gave me a book yesterday. This is the book.\tMon oncle m'a donné un livre hier. Voici le livre.\nMy uncle went to Mexico in 1983, never to come back.\tMon oncle est parti au Mexique en 1983 pour n'en jamais revenir.\nMy wife and I did our Christmas shopping in October.\tMa femme et moi avons fait nos achats de Noël en octobre.\nNever in his life had he encountered such a dilemma.\tIl n'a jamais rencontré un tel dilemme de sa vie.\nNo matter how hard I try, I can't swim to that rock.\tJ'ai beau essayer, je n'arrive pas à nager jusqu'à ce rocher.\nNo matter how long it takes, I will finish the work.\tPeu importe le temps que ça prend, je finirai le travail.\nNo matter how rich he may be, he is never contented.\tQuel que soit la richesse qu'il puisse détenir, il n'est jamais satisfait.\nNo matter how rich you are, you can't buy true love.\tQu'importe combien on est riche, on ne peut acquérir le véritable amour.\nNobody could've known that this was going to happen.\tPersonne ne pouvait savoir que cela se passerait.\nNobody seems to have paid attention to what he said.\tPersonne ne semble avoir prêté attention à ce qu'il a dit.\nNovels aren't being read as much as they used to be.\tLes romans ne sont plus aussi lus qu'auparavant.\nNow that I have enough money, I can get that camera.\tMaintenant que j'ai suffisamment d'argent, je peux m'acheter cet appareil photo.\nOn the following day, we all had terrible hangovers.\tLe jour suivant, nous eûmes tous de terribles gueules de bois.\nOn the following day, we all had terrible hangovers.\tLe jour suivant, nous eûmes toutes de terribles gueules de bois.\nOn the following day, we all had terrible hangovers.\tLe jour suivant, nous avons tous eu de terribles gueules de bois.\nOn the following day, we all had terrible hangovers.\tLe jour suivant, nous avons toutes eu de terribles gueules de bois.\nOne morning, she unexpectedly met him on the street.\tUn matin, elle le rencontra de manière inopinée, dans la rue.\nOne of the people you were with is a friend of mine.\tUne des personnes avec qui tu étais est un ami à moi.\nOur ancestors arrived in this country 150 years ago.\tNos ancêtres arrivèrent dans ce pays il y a 150 ans.\nOur education system needs to be seriously revamped.\tNotre système éducatif doit être sérieusement repensé.\nOur house has seven rooms including the dining room.\tNotre maison compte sept pièces, la salle à manger comprise.\nParents should monitor their children's whereabouts.\tLes parents devraient superviser les déplacements de leurs enfants.\nParents teach their children that it's wrong to lie.\tLes parents apprennent à leurs enfants que mentir, c'est mal.\nPeople change. There's not much you can do about it.\tLes gens changent. Il n'y a pas grand chose que tu puisses y faire.\nPeople change. There's not much you can do about it.\tLes gens changent. Il n'y a pas grand chose qu'on puisse y faire.\nPeople change. There's not much you can do about it.\tLes gens changent. Il n'y a pas grand chose que vous puissiez y faire.\nPeople change. There's not much you can do about it.\tLes gens changent. Il n'y a pas grand chose à y faire.\nPeople should be the masters of their own destinies.\tLes gens devraient être maîtres de leur propre destin.\nPlease promise me that you'll never lie to me again.\tS'il te plaît, promets-moi que tu ne me mentiras plus jamais.\nPlease promise me that you'll never lie to me again.\tS'il vous plaît, promettez-moi que vous ne me mentirez plus jamais.\nPlease promise me that you'll never lie to me again.\tPromettez-moi, je vous prie, que vous ne me mentirez plus jamais !\nPlease promise me that you'll never lie to me again.\tPromets-moi, je te prie, que tu ne me mentiras plus jamais !\nPlease refer to the owner's manual for more details.\tVeuillez vous reporter au guide d'utilisation pour plus de détails.\nPlease remember to mail the letter on your way home.\tVeuillez penser à poster la lettre sur le chemin de votre domicile.\nPlease say hello to her if you see her at the party.\tSalue-la de ma part si tu la vois à la fête, s'il te plaît.\nPoyang Lake is the largest freshwater lake in China.\tLe lac Poyang est le plus grand lac d'eau douce de Chine.\nProper qualifications are required for the position.\tDes qualifications appropriées sont requises pour le poste.\nQuite by chance, I met my old friend in the airport.\tTout à fait par chance, je rencontrai mon vieil ami à l'aéroport.\nReading is to the mind what exercise is to the body.\tLa lecture est à l'esprit ce que l'exercice physique est au corps.\nRiding a unicycle is one thing I'm not very good at.\tFaire du monocycle est un truc auquel je suis pas très bon.\nSave your long-winded explanations for someone else.\tÉpargne tes explications alambiquées pour quelqu'un d'autre !\nSave your long-winded explanations for someone else.\tÉpargnez vos explications alambiquées pour quelqu'un d'autre !\nScience has brought about many changes in our lives.\tLa science a apporté de nombreuses choses à nos vies.\nSeveral houses were carried away by the great flood.\tDe plusieurs maisons furent emportées par la crue.\nShe agreed with him that I should go to the meeting.\tElle fut d'accord avec lui que je devrais me rendre à la réunion.\nShe agreed with him that I should go to the meeting.\tElle a été d'accord avec lui que je devrais me rendre à la réunion.\nShe breaks something every time she cleans the room.\tElle casse quelque chose chaque fois qu'elle nettoie la pièce.\nShe cried and cried, but no one came to comfort her.\tElle pleura tant et plus mais personne ne vint la réconforter.\nShe cried and cried, but nobody came to comfort her.\tElle pleura tant et plus mais personne ne vint la réconforter.\nShe cried and cried, but nobody came to comfort her.\tElle a pleuré tant et plus mais personne n'est venu la réconforter.\nShe explained to him why she was late for his party.\tElle lui expliqua pourquoi elle était en retard à sa fête.\nShe explained to him why she was late for his party.\tElle lui a expliqué pourquoi elle était en retard à sa fête.\nShe finally managed to get a hold of her old friend.\tElle se débrouilla finalement pour entrer en contact avec son vieil ami.\nShe had a good time talking with him about his trip.\tElle passa un agréable moment à discuter avec lui de son voyage.\nShe had a good time talking with him about his trip.\tElle passa un agréable moment à discuter avec lui à propos de son voyage.\nShe had a good time talking with him about his trip.\tElle passa un agréable moment à s'entretenir avec lui de son voyage.\nShe had a good time talking with him about his trip.\tElle passa un agréable moment à s'entretenir avec lui au sujet de son voyage.\nShe had a good time talking with him about his trip.\tElle a passé un agréable moment à s'entretenir avec lui au sujet de son voyage.\nShe had a good time talking with him about his trip.\tElle a passé un agréable moment à s'entretenir avec lui de son voyage.\nShe had a good time talking with him about his trip.\tElle a passé un agréable moment à discuter avec lui à propos de son voyage.\nShe had a good time talking with him about his trip.\tElle a passé un agréable moment à discuter avec lui de son voyage.\nShe had an unassuming air that put everyone at ease.\tElle avait un air sans prétention qui mettait chacun à son aise.\nShe held him like mother gorillas hold their babies.\tElle le tint de la manière dont les mères-gorilles tiennent leurs bébés.\nShe hid the letter carefully so no one would see it.\tElle cacha soigneusement la lettre de manière à ce que personne ne la voie.\nShe introduced herself to the people who were there.\tElle se présenta aux personnes qui étaient là.\nShe is fresh from college, so she has no experience.\tElle vient de sortir de l'université, donc elle n'a pas d'expérience.\nShe is fresh from college, so she has no experience.\tElle vient de sortir de l'école, donc elle n'a pas d'expérience.\nShe is too young to understand that her father died.\tElle est trop jeune pour comprendre que son père est mort.\nShe looked at me with tears running down her cheeks.\tElle me regarda avec des larmes coulant de ses joues.\nShe makes sure that her family eats a balanced diet.\tElle s'assure que sa famille ait un régime équilibré.\nShe sat next to him wishing she were somewhere else.\tElle s'assit près de lui en souhaitant qu'elle fut ailleurs.\nShe sat next to him wishing she were somewhere else.\tElle s'assit près de lui en souhaitant être ailleurs.\nShe showed him several books that were on the shelf.\tElle lui montra plusieurs livres sur l'étagère.\nShe spends a little time each day reading the Bible.\tElle passe un peu de temps chaque jour à lire la Bible.\nShe spends over a third of her time doing paperwork.\tElle passe plus du tiers de son temps à de la paperasse.\nShe spends over a third of her time doing paperwork.\tElle passe plus du tiers de son temps à s'occuper de paperasse.\nShe spends over a third of her time doing paperwork.\tElle passe plus du tiers de son temps à s'occuper de papiers.\nShe wanted a piece of cake, but there was none left.\tElle voulait un morceau de gâteau mais il n'y en avait plus.\nShe wanted a piece of cake, but there was none left.\tElle voulait un truc facile, mais il n'y en avait aucun de reste.\nShe waved her hand until the train was out of sight.\tElle agita la main jusqu'à ce que le train soit hors de vue.\nShe went over the list to see if her name was there.\tElle parcourut la liste pour voir si son nom y figurait.\nShe went to Italy for the purpose of studying music.\tElle se rendit en Italie pour étudier la musique.\nShe went to the hairdresser's to have her hair done.\tElle est allée chez le coiffeur pour faire ses cheveux.\nShe will surely be enjoying a hot bath at this hour.\tElle apprécierait certainement un bon bain à cette heure.\nShe would rather listen to others than talk herself.\tElle préfère écouter les autres que de parler elle-même.\nShe wrote him a long letter, but she didn't mail it.\tElle lui écrivit une longue lettre mais ne la posta pas.\nShe wrote him a long letter, but she didn't mail it.\tElle lui écrivit une longue lettre mais ne la mit pas au courrier.\nShe wrote him a long letter, but she didn't mail it.\tElle lui a écrit une longue lettre mais ne l'a pas postée.\nShe wrote him a long letter, but she didn't mail it.\tElle lui a écrit une longue lettre mais ne l'a pas mise au courrier.\nSince I couldn't pay the rent, I asked him for help.\tComme je ne pouvais pas payer le loyer, je lui ai demandé de l'aide.\nSince my mother was sick, I stayed home from school.\tComme ma mère était malade, je suis resté à la maison au lieu d'aller à l'école.\nSince my mother was sick, I stayed home from school.\tComme ma mère était malade, je suis restée à la maison plutôt que d'aller à l'école.\nSingers use microphones to make their voices louder.\tLes chanteurs utilisent des microphones pour amplifier leurs voix.\nSome eggs weren't rotten, but the rest of them were.\tQuelques œufs étaient bons, mais les autres étaient pourris.\nSome people are reading some magazines on the train.\tCertaines personnes lisent des magazines dans le train.\nSomeone should talk to him and tell him what's what.\tQuelqu'un devrait lui parler et lui dire ce qu'il en est.\nSomeone should talk to him and tell him what's what.\tQuelqu'un devrait lui parler et lui dire de quoi il retourne.\nTake a look at the FAQ before you call tech support.\tJetez un œil aux QFP avant d'appeler le service technique.\nTake an umbrella with you in case it begins to rain.\tPrends un parapluie avec toi au cas où il se mette à pleuvoir.\nTake your hat off when you enter a house of worship.\tDécouvrez votre chef lorsque vous pénétrez dans un lieu de culte.\nTake your hat off when you enter a house of worship.\tÔtez votre couvre-chef lorsque vous pénétrez dans un lieu de culte.\nThat pretty bird did nothing but sing day after day.\tCe bel oiseau ne faisait rien d'autre que chanter jour après jour.\nThat's the computer on which he writes his articles.\tC'est l'ordinateur sur lequel il écrit son article.\nThat's the computer on which he writes his articles.\tC'est l'ordinateur avec lequel il écrit ses articles.\nThat's the reason why I couldn't attend the meeting.\tC'est la raison pour laquelle je ne pouvais pas assister à la réunion.\nThe Hermitage Museum is located in Saint Petersburg.\tLe musée de l'Ermitage se situe à Saint-Pétersbourg.\nThe Internet is an invaluable source of information.\tInternet est une source d'information inestimable.\nThe Internet is now something we can't live without.\tInternet est à présent quelque chose sans lequel nous ne pouvons pas vivre.\nThe Japanese government can't cope with the problem.\tLe gouvernement japonais ne sait pas gérer le problème.\nThe Japanese government can't cope with the problem.\tLe gouvernement japonais ne peut pas gérer le problème.\nThe Shinano is longer than any other river in Japan.\tLa Shinano est la plus longue de toutes les rivières du Japon.\nThe Zulu tribe in South Africa has its own language.\tLa tribu Zoulou en Afrique du Sud a sa propre langue.\nThe aim is to be out of the country within the hour.\tLe but est de quitter le pays dans l'heure.\nThe botanist studied the flora of the remote island.\tLe botaniste étudia la flore de l'île lointaine.\nThe boy took off his clothes and put on his pajamas.\tLe garçon se déshabilla puis enfila son pyjama.\nThe children are building sand castles on the beach.\tLes enfants construisent des châteaux de sable à la plage.\nThe climate here is very similar to that of England.\tLe climat ici est très comparable à celui de l'Angleterre.\nThe climate of Japan is milder than that of England.\tLe climat du Japon est plus doux que celui de l'Angleterre.\nThe cop went through his pockets, but found nothing.\tLe policier lui a fait les poches, mais n'a rien trouvé.\nThe cops like the victim's boyfriend for the murder.\tLes flics s'intéressent au petit ami de la victime pour le meurtre.\nThe couple separated, never to see each other again.\tLe couple se sépara et ils ne se virent jamais plus.\nThe decision whether I should see her is mine alone.\tLa décision de savoir si je devrais la rencontrer ou pas n'appartient qu'à moi.\nThe dirty boy turned out to be a prince in disguise.\tLe garçon pouilleux se révéla être un prince déguisé.\nThe doctor reassured me about my father's condition.\tLe docteur me rassura quant à l'état de mon père.\nThe doctor told me to eat fewer high-calorie snacks.\tLe médecin m'a dit de manger moins d'en-cas hautement caloriques.\nThe following images are not for the faint of heart.\tLes images qui suivent ne sont pas faites pour les âmes sensibles.\nThe front windshield of a car was smashed to pieces.\tLe pare-brise d'une voiture fut brisé.\nThe front windshield of a car was smashed to pieces.\tLe pare-brise d'une voiture a été mis en pièces.\nThe girl closed her eyes and listened to the pastor.\tLa jeune fille ferma les yeux et écouta le pasteur.\nThe government collapsed after a vote in parliament.\tLe gouvernement est tombé après un vote au parlement.\nThe government collapsed after a vote in parliament.\tLe gouvernement tomba après un vote au parlement.\nThe government should invest more money in industry.\tLe gouvernement devrait investir davantage dans l'industrie.\nThe governor cut the tape and opened the new bridge.\tLe gouverneur coupa le ruban et ouvrit le nouveau pont à la circulation.\nThe hikers were all but frozen when they were found.\tLes randonneurs étaient pratiquement gelés quand on les a trouvés.\nThe hotel we stayed at last summer is near the lake.\tL'hôtel où nous avons séjourné l'été dernier est proche du lac.\nThe house is opposite the church. You can't miss it.\tLa maison est en face de l'église. Vous ne pouvez pas la rater.\nThe ice on the lake is too thin to bear your weight.\tLa glace sur le lac est trop fine pour supporter ton poids.\nThe idea of surprising her suddenly crossed my mind.\tL'idée de la surprendre traversa soudain mon esprit.\nThe leaves on the trees have begun to change colors.\tLes feuilles sur les arbres ont commencé à changer de couleurs.\nThe man left the restaurant without paying his bill.\tL'homme quitta le restaurant sans payer son addition.\nThe more I think about it, the less I understand it.\tPlus j'y pense, moins je le comprends.\nThe more I think about it, the less I understand it.\tPlus j'y pense, moins je la comprends.\nThe more I think about it, the less I understand it.\tPlus j'y réfléchis, moins je le comprends.\nThe more I think about it, the less I understand it.\tPlus j'y réfléchis, moins je la comprends.\nThe mother and daughter represented two generations.\tLa mère et la fille ont représenté deux générations.\nThe national debt has trebled in the last ten years.\tLa dette nationale a triplé au cours des dix dernières années.\nThe natives saw an airplane then for the first time.\tLes indigènes virent alors un avion pour la première fois.\nThe needs of the many outweigh the needs of the few.\tLes besoins du plus grand nombre l'emportent sur les nécessités du plus petit.\nThe new engine must undergo all the necessary tests.\tLe nouveau moteur doit subir tous les tests nécessaires.\nThe new law is expected to cut air pollution by 60%.\tLa nouvelle loi est censée réduire la pollution de l'air de soixante pour cent.\nThe newborn chicks still have not opened their eyes.\tLes poussins nouveaux-nés n'ont pas encore ouvert leurs yeux.\nThe next morning, the snowman had completely melted.\tLe lendemain matin, le bonhomme de neige avait complètement fondu.\nThe police are investigating the cause of the crash.\tLa police enquête sur l'origine de l'accident.\nThe prime minister fell into the Danube and drowned.\tLe Premier Ministre est tombé dans le Danube et s'est noyé.\nThe prince asked the little girl why she was crying.\tLe prince demanda à la petite fille pourquoi elle pleurait.\nThe prince asked the little girl why she was crying.\tLe prince a demandé à la petite fille pourquoi elle pleurait.\nThe problem is not what he said, but how he said it.\tLe problème ne réside pas dans ce qu'il a dit, mais dans la manière dont il l'a dit.\nThe production of vegetables is growing in our area.\tLa production de légumes est en croissance dans notre région.\nThe professor was unable to comprehend what I meant.\tLe professeur fut incapable de comprendre ce que je voulais dire.\nThe senator has a very demanding schedule this week.\tLe sénateur a un emploi du temps très chargé cette semaine.\nThe shortage of manpower poses a big problem for us.\tLe manque de main-d'oeuvre nous pose un grand problème.\nThe situation is getting worse and worse day by day.\tLa situation empire de jour en jour.\nThe speaker should stand where everyone can see him.\tL'orateur devrait se tenir là où tout le monde peut le voir.\nThe strange-looking woman was thought to be a witch.\tLa femme à l'allure étrange était considérée comme étant une sorcière.\nThe teacher explained the meaning of the word to us.\tL'instituteur nous expliqua la signification du mot.\nThe three gunshot victims are in critical condition.\tLes trois victimes de la fusillade sont dans un état critique.\nThe tornado left a trail of destruction in its wake.\tLa tornade laissa une traînée de destruction dans son sillage.\nThe town was destroyed by the flood after the storm.\tLa ville fut détruite par les inondations après la tempête.\nThe tree's root system stretches over thirty meters.\tLe réseau de racines de l'arbre s'étend sur plus de trente mètres.\nThe two countries are engaged in biological warfare.\tLes deux pays sont engagés dans une guerre biologique.\nThe use of this type of radio has become widespread.\tL'utilisation de ce type de radio est devenue répandue.\nThe youth was arrested for being involved in a riot.\tLe jeune fut arrêté pour son implication dans une émeute.\nTheir modest income doesn't allow for many luxuries.\tLeur revenu modeste ne leur permet pas beaucoup de gâteries.\nThere are a lot of beautiful songs on these records.\tIl y a de nombreuses belles chansons sur ces albums.\nThere are a lot of beautiful songs on these records.\tIl y a de nombreuses belles chansons sur ces disques.\nThere are around three thousand mosques in Istanbul.\tIl y a environ trois mille mosquées à Istanbul.\nThere are some cases where this rule does not apply.\tIl y a des cas pour lesquels cette règle ne s’applique pas.\nThere is not much doubt about the cause of the fire.\tIl n'y a pas trop de doutes à avoir quant au parcours du feu.\nThere is not much possibility of his coming on time.\tIl y a peu de chance qu'il arrive à l'heure.\nThere used to be an art museum in this neighborhood.\tAutrefois, il y avait un musée dans le voisinage.\nThere was once a time when I could not trust others.\tIl fut un temps où je ne pouvais faire confiance aux autres.\nThere's a huge mark up on imported electronic goods.\tIl y a une marge énorme sur les biens électroniques importés.\nThere's a rumor going around that she got a new job.\tUne rumeur circule qu'elle aurait un nouvel emploi.\nThere's a rumor going around that she got a new job.\tUne rumeur circule qu'elle aurait un nouveau boulot.\nThere's been a lawyer in the family for generations.\tIl y a eu un avocat dans la famille depuis des générations.\nThere's something I have to let you know right away.\tIl y a quelque chose dont je dois vous informer sans tarder.\nThese cookies aren't expensive, but they taste good.\tCes cookies ne coûtent pas cher mais ils ont bon goût.\nThese simple tips will help you declutter your home.\tCes conseils simples vous aideront à désencombrer votre maison.\nThey announced that they were going to have a party.\tIls annoncèrent qu'ils organisaient une fête.\nThey announced that they were going to have a party.\tIls ont annoncé qu'ils organisent une fête.\nThey can produce the same goods at a far lower cost.\tIls peuvent produire les mêmes marchandises à un coût bien plus bas.\nThey carried the injured player away on a stretcher.\tIls ont emporté le joueur blessé sur une civière.\nThey did not know it was impossible, so they did it.\tIls ne savaient pas que c'était impossible, alors ils l'ont fait.\nThey guaranteed regular employment to their workers.\tIls garantirent un emploi régulier à leurs salariés.\nThey guaranteed regular employment to their workers.\tIls ont garanti un emploi régulier à leurs salariés.\nThey hoped to sell the stocks at even higher prices.\tIls espéraient vendre les actions à des prix encore plus élevés.\nThey said that contact with the plane had been lost.\tIls dirent que le contact avec l'avion avait été perdu.\nThey say that he is the richest person in the world.\tIls disent qu'il est la personne la plus riche du monde.\nThey say that he is the richest person in the world.\tElles disent qu'il est la personne la plus riche du monde.\nThey set fire to their neighbour's house in revenge.\tIls mirent le feu à la maison de leur voisin pour se venger.\nThey should have the right to decide for themselves.\tElles devraient avoir le droit de décider par elles-mêmes.\nThey should have the right to decide for themselves.\tIls devraient avoir le droit de décider par eux-mêmes.\nThey stayed in the room with me for the whole night.\tIls restèrent dans la pièce avec moi toute la nuit durant.\nThey stayed in the room with me for the whole night.\tElles restèrent dans la pièce avec moi toute la nuit durant.\nThey stayed in the room with me for the whole night.\tIls sont restés dans la pièce avec moi toute la nuit durant.\nThey stayed in the room with me for the whole night.\tElles sont restées dans la pièce avec moi toute la nuit durant.\nThey won't allow me to do what I'm being paid to do.\tIls refusent de me laisser faire ce pour quoi je suis payé.\nThey won't allow me to do what I'm being paid to do.\tIls refusent de me laisser faire ce pour quoi je suis payée.\nThey won't allow me to do what I'm being paid to do.\tElles refusent de me laisser faire ce pour quoi je suis payé.\nThey won't allow me to do what I'm being paid to do.\tElles refusent de me laisser faire ce pour quoi je suis payée.\nThey won't allow me to do what I'm being paid to do.\tIls ne m'autoriseront pas à faire ce pour quoi je suis payé.\nThey won't allow me to do what I'm being paid to do.\tIls ne m'autoriseront pas à faire ce pour quoi je suis payée.\nThey won't allow me to do what I'm being paid to do.\tElles ne m'autoriseront pas à faire ce pour quoi je suis payé.\nThey won't allow me to do what I'm being paid to do.\tElles ne m'autoriseront pas à faire ce pour quoi je suis payée.\nThis is one of the most popular restaurants in town.\tC'est l'un des restaurants les plus populaires de la ville.\nThis is the last message I ever plan to send to you.\tC'est le dernier message que j'envisage jamais de vous envoyer.\nThis is the last message I ever plan to send to you.\tC'est le dernier message que j'envisage jamais de t'envoyer.\nThis is the most comfortable chair I've ever sat in.\tC'est chaise la plus confortable dans laquelle je me sois jamais assis.\nThis is the most massive structure I have ever seen.\tC'est la structure la plus massive que j'ai jamais vue.\nThis job shouldn't take more than a couple of hours.\tCe boulot ne devrait pas prendre plus de deux heures.\nThis particular model has a really low battery life.\tCe modèle particulier a une durée de vie de la batterie très faible.\nThis town hasn't changed much in the last ten years.\tCette ville n'a pas beaucoup changé au cours des dix dernières années.\nTo be honest, I've never heard of this place before.\tÀ dire vrai, je n'ai jamais entendu parler de cet endroit auparavant.\nTo tell the truth, I don't like what you're wearing.\tA vrai dire, je n'aime pas ce que tu portes.\nToday was a good day, so I'll sleep soundly tonight.\tAujourd'hui a été une bonne journée, donc je dormirai profondément ce soir.\nTom Jackson is one of the best detectives in Boston.\tTom Jackson est un des meilleurs enquêteurs de Boston.\nTom always makes fun of John because of his dialect.\tTom se moque toujours de John à cause de son dialecte.\nTom and Mary agreed to work together on the project.\tTom et Mary acceptèrent de travailler ensemble sur le projet.\nTom and Mary have decided to get married in October.\tTom et Mary ont décidé de se marier en octobre.\nTom and Mary were only thirteen when they first met.\tTom et Mary n'avaient que treize ans lorsqu'ils se sont rencontrés pour la première fois.\nTom asked Mary what kind of books she liked to read.\tTom demanda à Mary quel genre de livres elle aimait lire.\nTom came into the room without knocking on the door.\tTom est entré dans la pièce sans frapper.\nTom criticized Mary for not doing the job correctly.\tTom a critiqué Mary pour ne pas avoir fait le boulot correctement.\nTom doesn't know what Mary means when she says that.\tTom ne sait pas ce que Marie veut dire quand elle dit cela.\nTom doesn't like being told he's not old enough yet.\tTom n'aime pas qu'on lui dise qu'il n'est pas encore assez grand.\nTom doesn't need to apologize. He did nothing wrong.\tTom n'a pas besoin de s'excuser. Il n'a rien fait de mal.\nTom drinks at least three liters of water every day.\tTom boit au moins trois litres d'eau par jour.\nTom has donated a lot of money to various charities.\tTom a fait don de beaucoup d'argent à divers organismes de bienfaisance.\nTom opened the door, even though I asked him not to.\tTom ouvrit la porte, quand bien même je lui avais demandé de ne pas le faire.\nTom said that he didn't want to ever see Mary again.\tTom a dit qu'il ne voulait plus jamais revoir Mary.\nTom saw the newspaper on the floor and picked it up.\tTom vit le journal sur le sol et le ramassa.\nTom saw the newspaper on the floor and picked it up.\tTom a vu le journal sur le sol et l'a ramassé.\nTom says he can't ignore Mary's behavior any longer.\tTom dit qu'il ne peut pas ignorer le comportement de Mary plus longtemps.\nTom says he knows how difficult it'll be to do that.\tTom dit qu'il sait à quel point il sera difficile de faire cela.\nTom spends about an hour a day practicing the piano.\tTom passe environ une heure par jour à pratiquer le piano.\nTom stopped at a convenience store to buy some milk.\tTom s'est arrêté dans une supérette pour acheter du lait.\nTom thought it would be a good idea to see a doctor.\tTom a pensé que ce serait une bonne idée de voir un docteur.\nTom told me that he couldn't really trust Microsoft.\tTom m'a dit qu'il ne pouvait pas vraiment faire confiance à Microsoft.\nTom was wearing his pajamas when he opened the door.\tTom portait son pyjama quand il a ouvert la porte.\nTom was wearing his pajamas when he opened the door.\tTom portait son pyjama quand il ouvrit la porte.\nTom's thinking of moving so he'll be closer to Mary.\tTom pense à déménager pour se rapprocher de Marie.\nUnfortunately, I have to get up early every morning.\tMalheureusement, je dois me lever de bonne heure chaque matin.\nUntil now, I've never been spoken to by a foreigner.\tJusqu'à présent, un étranger ne m'a jamais adressé la parole.\nUpon seeing what was happening, we decided to leave.\tÀ la vue de ce qui se passait, nous décidâmes de partir.\nWe are busy preparing for our wedding and honeymoon.\tNous sommes occupés à préparer notre mariage et notre lune de miel.\nWe are looking forward to going on a hike next week.\tNous sommes impatients de partir en randonnée la semaine prochaine.\nWe considered going, but finally decided against it.\tNous envisagions de nous y rendre mais nous décidâmes finalement de ne pas le faire.\nWe could see the lights of the town in the distance.\tNous pouvions voir les lumières de la ville au loin.\nWe don't have as much in common as I thought we did.\tNous n'avons pas autant en commun que je le pensais.\nWe gave a party in celebration of his 70th birthday.\tNous avons fait une fête pour célébrer son 70e anniversaire.\nWe had to shut the window because of the mosquitoes.\tNous avons dû fermer la fenêtre à cause des moustiques.\nWe had to wait until she found a chair and sat down.\tNous avons dû attendre qu'elle trouve une chaise et qu'elle s'assoie.\nWe have the extra-large size, but not in that color.\tNous avons la très grande taille, mais pas dans cette couleur.\nWe invited him to the party, but he did not show up.\tNous l'avons invité à la fête mais il ne s'est pas pointé.\nWe invited him to the party, but he did not show up.\tNous l'avons invité à la fête mais il ne s'est pas montré.\nWe know very little about the cause of this disease.\tNous savons très peu de choses de la cause de ce mal.\nWe know very little about the cause of this disease.\tNous savons très peu de choses de la cause de cette maladie.\nWe need to concentrate on coming up with a new plan.\tNous devons nous concentrer pour trouver un nouveau plan.\nWe need to remember to put some gasoline in the car.\tNous devons nous rappeler de mettre de l'essence dans la voiture.\nWe often come across Japanese tourists in this area.\tOn rencontre souvent des touristes japonais dans ce quartier.\nWe ran out of gas in the middle of the intersection.\tNous tombâmes en panne d'essence au milieu du carrefour.\nWe saw Tom talking to Mary in the park this morning.\tNous avons vu Tom parler à Mary dans le parc ce matin.\nWe should make every effort to maintain world peace.\tNous devrions faire tous les efforts possibles pour maintenir la paix dans le monde.\nWe shouldn't judge people based on their appearance.\tNous ne devrions pas juger les gens sur leur apparence.\nWe used to play musical chairs in elementary school.\tNous jouions aux chaises musicales à l'école primaire.\nWe're going to have to make some very tough choices.\tNous allons devoir faire des choix très difficiles.\nWe're out of tissue paper, so I need to go buy some.\tNous n'avons plus de papier de soie, je dois donc aller en acheter.\nWhat answer did you come up with for question three?\tTu as mis quelle réponse pour la question trois ?\nWhat are some foods you usually eat with chopsticks?\tQuels sont les aliments qu'on mange habituellement avec des baguettes ?\nWhat are some foods you usually eat with chopsticks?\tQuels sont les aliments que tu manges habituellement avec des baguettes ?\nWhat are some foods you usually eat with chopsticks?\tQuels sont les aliments que vous mangez habituellement avec des baguettes ?\nWhat are some of the health benefits of eating fish?\tQuels sont certains des bénéfices sur la santé de la consommation de poisson ?\nWhat are you going to do during the summer holidays?\tQue vas-tu faire pendant tes vacances d'été ?\nWhat are you going to do during the summer holidays?\tQu'allez-vous faire pendant vos vacances d'été ?\nWhat does this have to do with our current problems?\tQu'est-ce que ça a à voir avec nos problèmes actuels ?\nWhat is the good of having a car if you don't drive?\tÀ quoi ça sert que tu aies une voiture, vu que tu ne conduis pas ?\nWhat makes you so sure that this won't happen again?\tQu'est-ce qui vous rend si sûr que ça n'arrivera pas de nouveau ?\nWhat makes you so sure that this won't happen again?\tQu'est-ce qui vous rend si sûre que ça ne se produira pas à nouveau ?\nWhat proof do you have that he committed this crime?\tQuelles preuves avez-vous qu'il a commis ce crime ?\nWhat sort of information do you get on the Internet?\tQuelle sorte d'information trouve-t-on sur Internet ?\nWhat you have just said reminds me of an old saying.\tCe que tu as dit me rappelle un vieux proverbe.\nWhat're you going to do during your summer vacation?\tQue vas-tu faire pendant tes vacances d'été ?\nWhat're you going to do during your summer vacation?\tQu'allez-vous faire pendant vos vacances d'été ?\nWhen I got to school, the race had already finished.\tLorsque je parvins à l'école, la course était déjà terminée.\nWhen I was in school, I really hated writing essays.\tLorsque j'étais à l'école, j'avais vraiment horreur d'écrire des dissertations.\nWhen I was in school, I really hated writing essays.\tLorsque j'étais à l'école, j'avais vraiment horreur de faire des rédactions.\nWhen he was a child, he would go fishing on Sundays.\tLorsqu'il était petit, il allait pêcher le dimanche.\nWhen the results are made public, I'll let you know.\tLorsque les résultats seront rendus publics, je te le ferai savoir.\nWhen the results are made public, I'll let you know.\tLorsque les résultats seront rendus publics, je vous le ferai savoir.\nWhen were you thinking of coming back to the States?\tQuand pensais-tu revenir aux USA ?\nWhen were you thinking of coming back to the States?\tQuand pensiez-vous revenir aux USA ?\nWhen you're in a hurry, it's easy to make a mistake.\tQuand on est pressé, il est facile de commettre une erreur.\nWhere were you? We've been looking all over for you.\tOù étais-tu ? Nous t'avons cherché partout.\nWhether he agrees or not, we won't change our plans.\tQu'il soit d'accord ou pas, nous ne changerons pas nos plans.\nWhile swimming in the pool, she lost her locker key.\tElle a perdu la clé de son casier pendant qu'elle nageait dans la piscine.\nWho knows what he'll accomplish if given the chance?\tQui sait ce qu'il accomplira si une chance lui est donnée ?\nWho knows what he'll accomplish if given the chance?\tQui sait ce qu'il accomplira si une chance lui est accordée ?\nWhy are there so many dishonest people in the world?\tPourquoi y a-t'il tant de gens malhonnêtes dans le monde ?\nWhy ask me? Wouldn't it be better to do it yourself?\tPourquoi me demander ? Ne serait-ce pas mieux que tu le fasses toi-même ?\nWhy don't you start by telling us who went with you?\tPourquoi ne commences-tu pas par nous dire qui est allé avec toi ?\nWhy don't you start by telling us who went with you?\tPourquoi ne commencez-vous pas par nous dire qui est allé avec vous ?\nWhy don't you start by telling us who went with you?\tPourquoi ne commences-tu pas par nous dire qui y est allé avec toi ?\nWhy don't you start by telling us who went with you?\tPourquoi ne commencez-vous pas par nous dire qui y est allé avec vous ?\nWhy don't you tell me the way you think it happened?\tPourquoi ne me dites-vous pas de quelle manière vous pensez que ça s'est passé ?\nWhy don't you tell me the way you think it happened?\tPourquoi ne me dis-tu pas de quelle manière tu penses que ça s'est passé ?\nWhy don't you tell me the way you think it happened?\tPourquoi ne me dites-vous pas de quelle manière vous pensez que c'est arrivé ?\nWhy don't you tell me the way you think it happened?\tPourquoi ne me dis-tu pas de quelle manière tu penses que c'est arrivé ?\nWith his new job, he's taken on more responsibility.\tIl a pris davantage de responsabilités avec son nouvel emploi.\nYou can adjust this desk to the height of any child.\tVous pouvez ajuster ce bureau à la taille de n'importe quel enfant.\nYou can't accomplish anything without taking a risk.\tOn ne saurait rien accomplir sans encourir de risque.\nYou can't be forced to testify against your husband.\tOn ne peut vous forcer à témoigner contre votre mari.\nYou can't just leave us here with no food and water.\tVous ne pouvez pas simplement nous laisser ici sans nourriture ni eau.\nYou can't just leave us here with no food and water.\tTu ne peux pas simplement nous laisser ici sans nourriture ni eau.\nYou can't rely on him these days to do a proper job.\tOn ne peut pas compter sur lui pour faire un boulot convenable, ces temps-ci.\nYou could pass for a teenager if you wore a T-shirt.\tTu pourrais passer pour un adolescent si tu portais un T-shirt.\nYou don't have to be a genius to know who said that.\tTu n'as pas besoin d'être un génie pour savoir qui a dit ça.\nYou have no right to pass judgement on these people.\tVous n'avez aucun droit de porter un jugement sur ces gens.\nYou keep on making the same mistake time after time.\tTu continues à faire la même erreur à chaque fois.\nYou keep on making the same mistake time after time.\tVous continuez à faire la même erreur à chaque fois.\nYou know this isn't the way we should be doing this.\tTu sais que ce n'est pas la manière avec laquelle nous devrions faire ça.\nYou know this isn't the way we should be doing this.\tVous savez que ce n'est pas la manière avec laquelle nous devrions faire ça.\nYou may take this book as long as you keep it clean.\tTu pourras prendre ce livre tant que tu le gardes propre.\nYou must not think about your immediate profit only.\tTu ne dois pas penser qu'à ton profit immédiat.\nYou ought not to have said a thing like that to him.\tTu n'aurais pas dû lui dire une telle chose.\nYou ought not to have said a thing like that to him.\tVous n'auriez pas dû lui dire une telle chose.\nYou should acquaint yourself with the local customs.\tTu devrais te familiariser avec les coutumes locales.\nYou should have told him about it while he was here.\tVous auriez dû lui en parler tandis qu'il était là.\nYou should have told him about it while he was here.\tVous auriez dû lui en parler tant qu'il était là.\nYou should have told him about it while he was here.\tTu aurais dû lui en parler tandis qu'il était là.\nYou should not have lent the money to such a person.\tTu n'aurais pas dû prêter cet argent à une telle personne.\nYou still haven't told me what your phone number is.\tTu ne m'as toujours pas dit quel est ton numéro de téléphone.\nYou still haven't told me what your phone number is.\tVous ne m'avez toujours pas dit quel est votre numéro de téléphone.\nYou still haven't told me why you decided not to go.\tTu ne m'as toujours pas dit pourquoi tu as décidé de ne pas partir.\nYou'll have to take his place in case he can't come.\tTu devras prendre sa place, au cas où il ne puisse venir.\nYou'll have to take his place in case he can't come.\tVous devrez prendre sa place, au cas où il ne puisse venir.\nYou'll have to take his place in case he can't come.\tIl faudra que vous preniez sa place, au cas où il ne puisse venir.\nYou'll have to take his place in case he can't come.\tIl faudra que tu prennes sa place, au cas où il ne puisse venir.\nYou're going to turn a lot of heads with that dress.\tTu vas tourner bien des têtes avec cette robe.\nYou're going to turn a lot of heads with that dress.\tVous allez tourner bien des têtes avec cette robe.\nA boy snatched my purse as he rode by on his bicycle.\tUn garçon m'a dérobé mon sac en passant à vélo.\nA dog's sense of smell is much keener than a human's.\tLe sens de l'odorat d'un chien est plus fin que celui d'un humain.\nA good poker player can tell when someone's bluffing.\tUn bon joueur de poker peut deviner quand quelqu'un bluffe.\nA house without books is like a room without windows.\tUne maison sans livres est comme une pièce sans fenêtres.\nA husband and wife promise always to love each other.\tUn mari et une femme promettent toujours de s'aimer l'un l'autre.\nA husband and wife promise always to love each other.\tUn époux et une épouse promettent toujours de s'aimer l'un l'autre.\nA little reflection will show you that you are wrong.\tSi tu réfléchis un peu, tu comprendras que tu te trompes.\nA lot of countries participated in the Olympic Games.\tBeaucoup de pays ont participé aux Jeux Olympiques.\nA lot of people think that lawyers get paid too much.\tBeaucoup de gens pensent que les avocats sont trop payés.\nA number of countries have strict laws against drugs.\tDe nombreux pays ont des lois strictes contre les drogues.\nA polite manner is characteristic of Japanese people.\tLes manières polies sont caractéristiques des Japonais.\nA professional thief can jimmy a car door in no time.\tUn voleur professionnel peut crocheter une portière de voiture en un rien de temps.\nA putrid smell came up out of the hole in the ground.\tUne odeur putride se dégageait du trou dans le sol.\nA selfish man thinks of nothing but his own feelings.\tUn homme égoïste ne pense à rien sauf à ses propres sentiments.\nA stay of execution was ordered at the eleventh hour.\tUne suspension de l'exécution fut ordonnée in extremis.\nA stay of execution was ordered at the eleventh hour.\tUn sursis de l'exécution a été ordonné à la dernière minute.\nA trip to America this summer is out of the question.\tUn voyage en Amérique, cet été, est hors de question.\nA university job would give you a lot more free time.\tUn travail universitaire vous donnerait bien plus de temps libre.\nA winter sport that many people enjoy is ice skating.\tUn des sports d'hiver que beaucoup de personnes apprécient est le patinage sur glace.\nAbout this time tomorrow, we'll be climbing Mt. Fuji.\tDemain à la même heure, nous serons en pleine ascension du Mont Fuji.\nAccording to the newspaper, it's going to rain today.\tD'après le journal, il pleuvra aujourd'hui.\nAfter a while, corn flakes in milk will become soggy.\tAprès un moment, les pétales de maïs se ramollissent dans le lait.\nAfter dinner, bring your guitar along and we'll sing.\tAprès dîner, amène ta guitare et nous chanterons.\nAfter the war, he managed to escape to South America.\tAprès la guerre, il se débrouilla pour s'enfuir en Amérique du Sud.\nAfter the war, he managed to escape to South America.\tAprès la guerre, il s'est débrouillé pour s'enfuir en Amérique du Sud.\nAgriculture was developed more than 10,000 years ago.\tL'agriculture fut élaborée il y a plus de dix mille ans.\nAir pollution prevents some plants from growing well.\tLa pollution de l'air empêche certaines plantes de pousser normalement.\nAlcohol affects you more quickly on an empty stomach.\tL'alcool vous affecte plus rapidement sur un estomac vide.\nAll I want to do is close my eyes and get some sleep.\tTout ce que je veux faire, c'est fermer les yeux et prendre du sommeil.\nAll humanity will suffer if a nuclear war breaks out.\tToute l'humanité souffrira si une guerre nucléaire éclate.\nAll my friends like the same kind of music that I do.\tTous mes amis aiment la même musique que moi.\nAll my friends like the same kind of music that I do.\tTous mes amis apprécient la même musique que moi.\nAll the flowers in the garden died for lack of water.\tToutes les fleurs du jardin sont mortes à cause du manque d'eau.\nAlmost a third of the gunshot victims were teenagers.\tPresque un tiers des victimes de la fusillade étaient des adolescents.\nAlmost a third of the gunshot victims were teenagers.\tPresque un tiers des victimes de la fusillade furent des adolescents.\nAlthough my car is very old, it still runs very well.\tBien que ma voiture soit très vieille, elle roule toujours très bien.\nAmerican kitchens are much bigger than Japanese ones.\tLes cuisines américaines sont plus grandes que les cuisines japonaises.\nAn undercover operative infiltrated the organization.\tUn agent secret infiltra l'organisation.\nAnticipating a cold winter, we bought a bigger stove.\tAnticipant un hiver froid, nous avons acheté un poêle plus grand.\nAnyone over eighteen years of age counts as an adult.\tToute personne de plus de dix-huit ans compte pour un adulte.\nAre you going to break up with me if I get fat again?\tVas-tu rompre avec moi si je redeviens gros ?\nAre you saying that you don't want to see me anymore?\tEs-tu en train de dire que tu ne veux plus me voir ?\nAre you saying that you don't want to see me anymore?\tÊtes-vous en train de dire que vous ne voulez plus me voir ?\nAre you seriously thinking about buying that old car?\tPenses-tu sérieusement à acheter cette vieille voiture ?\nAre you seriously thinking about buying that old car?\tPenses-tu sérieusement à acheter cette chignole ?\nAre you seriously thinking about buying that old car?\tPenses-tu sérieusement à acheter cette vieille guimbarde ?\nAre you seriously thinking about buying that old car?\tPensez-vous sérieusement à acheter cette vieille voiture ?\nAre you seriously thinking about buying that old car?\tPensez-vous sérieusement à faire l'acquisition de cette vieille voiture ?\nAre you seriously thinking about selling this online?\tPensez-vous sérieusement à vendre cela en ligne ?\nAre you seriously thinking about selling this online?\tPensez-vous sérieusement à vendre cela sur Internet ?\nAre you seriously thinking about selling this online?\tPenses-tu sérieusement à vendre cela en ligne ?\nAre you seriously thinking about selling this online?\tPenses-tu sérieusement à vendre cela sur Internet ?\nAre you suggesting that it's beyond my comprehension?\tEs-tu en train de suggérer que c'est au-delà de ma compréhension ?\nAre you suggesting that it's beyond my comprehension?\tÊtes-vous en train de suggérer que c'est au-delà de ma compréhension ?\nAs soon as we find out anything, we will contact him.\tNous le contacterons, dès que nous trouverons quelque chose.\nAs soon as you get the wall painted, you can go home.\tDès que tu as fini de peindre le mur, tu peux rentrer.\nAt the sound of my voice, my dog pricked up his ears.\tAu son de ma voix, mon chien dressait l'oreille.\nBabies grow up inside the amniotic fluid in the womb.\tLes bébés grandissent au milieu du liquide amniotique, dans l'utérus.\nBecause my mother is sick, my father will cook today.\tMa mère étant malade, mon père fera la cuisine aujourd'hui.\nBefore we go anywhere, we should exchange some money.\tAvant d'aller quelque part, nous devrions changer un peu d'argent.\nBetter to die on our feet, than to live on our knees.\tIl vaut mieux mourir sur pieds que de vivre à genoux.\nBuildings are much stronger now than they used to be.\tLes immeubles sont beaucoup plus solides de nos jours qu'ils ne l'étaient auparavant.\nCertain smells can easily trigger childhood memories.\tCertaines odeurs peuvent facilement évoquer des souvenirs d'enfance.\nCheese and other dairy products do not agree with me.\tLe fromage et les autres produits laitiers ne me réussissent pas.\nChildren like to pretend to be adults when they play.\tLes enfants aiment jouer aux adultes.\nCompare your sentence with the one on the blackboard.\tComparez votre phrase avec celle sur le tableau.\nCompare your sentence with the one on the blackboard.\tComparez votre phrase avec celle du tableau.\nCompare your sentence with the one on the blackboard.\tCompare ta phrase avec celle sur le tableau.\nCould you do me a favor? Will you lend me some money?\tPouvez-vous m'accorder une faveur ? Pouvez-vous me prêter de l'argent ?\nCould you please tell me again where you put the key?\tPourrais-tu me répéter où tu as mis la clé ?\nCould you please tell me again where you put the key?\tPourriez-vous me répéter où vous avez mis la clé ?\nCould you please tell me again where you put the key?\tPourrais-tu me redire où tu as mis la clé ?\nCould you please tell me again where you put the key?\tPourrais-tu me dire à nouveau où tu as mis la clé ?\nCould you please tell me where the nearest church is?\tPourriez-vous me dire où se trouve l'église la plus proche ?\nCutting a cake into equal pieces is rather difficult.\tPartager un gâteau en parts égales est assez délicat.\nDid Tom talk to you about his plans for next weekend?\tEst-ce que Tom t'a parlé de ce qui est prévu pour le week-end de la semaine prochaine ?\nDid you get my email yesterday with the instructions?\tAs-tu reçu hier mon courriel avec les instructions ?\nDid you get my email yesterday with the instructions?\tAvez-vous reçu hier mon courriel avec les instructions ?\nDo you eat spaghetti by twirling it around your fork?\tManges-tu les spaghettis en les enroulant autour de ta fourchette ?\nDo you eat spaghetti by twirling it around your fork?\tMangez-vous les spaghettis en les enroulant autour de votre fourchette ?\nDo you feel like going for a swim in the creek later?\tAvez-vous envie d'aller nager dans le ruisseau, plus tard ?\nDo you have a showroom for your products in the city?\tAvez-vous une salle d'exposition pour vos produits en ville ?\nDo you have any idea who would do this kind of thing?\tAvez-vous la moindre idée de qui ferait une telle chose ?\nDo you have any idea who would do this kind of thing?\tAvez-vous la moindre idée de qui ferait une chose pareille ?\nDo you have any idea who would do this kind of thing?\tAs-tu la moindre idée de qui ferait une telle chose ?\nDo you have any idea who would do this kind of thing?\tAs-tu la moindre idée de qui ferait une chose pareille ?\nDo you know why spring rolls are called spring rolls?\tSavez-vous pourquoi les rouleaux de printemps sont ainsi nommés ?\nDo you know why spring rolls are called spring rolls?\tSais-tu pourquoi les rouleaux de printemps sont ainsi nommés ?\nDo you think we should just wait and hope it changes?\tPensez-vous que nous devrions attendre en espérant que cela change?\nDon't act like you don't know what I'm talking about.\tNe fais pas comme si tu ne savais pas de quoi je parlais.\nDon't act like you don't know what I'm talking about.\tNe faites pas comme si vous ne saviez pas de quoi je parlais.\nDon't breathe a word of what I've told you to anyone.\tNe dis rien de ce que je t'ai raconté.\nDon't breathe a word of what I've told you to anyone.\tCela reste entre nous.\nDon't forget to bring your umbrella in case it rains.\tN'oubliez pas de prendre votre parapluie au cas où il pleuvrait.\nDon't interfere with him if you want him to like you.\tNe te mêle pas de ses affaires si tu veux qu'il t'aime.\nDon't interfere with him if you want him to like you.\tNe vous mêlez pas de ses affaires si vous voulez qu'il vous aime.\nDon't tell Tom about what we plan to do next weekend.\tNe parle pas à Tom de ce que nous prévoyons de faire le week-end prochain.\nDrivers must look out for children crossing the road.\tLes conducteurs doivent faire attention aux enfants qui traversent la route.\nEach of them has to write a report about what he saw.\tChacun doit écrire un rapport sur ce qu'il a vu.\nEducation doesn't consist of learning a lot of facts.\tL'éducation ne consiste pas à apprendre beaucoup de faits.\nEliminating the deficit will be a very difficult job.\tÉliminer le déficit sera un travail difficile.\nEnglish is spoken in many countries around the world.\tL'anglais est parlé dans de nombreux pays à travers le monde.\nEven though the weather was bad, I decided to go out.\tBien que le temps fût mauvais, je décidai de sortir.\nEven though the weather was bad, I decided to go out.\tBien que le temps fût mauvais, j'ai décidé de sortir.\nEverybody does stupid stuff like that in high school.\tTout le monde fait ce genre de connerie au lycée.\nEverybody falls in love at least once in their lives.\tTout le monde tombe amoureux au moins une fois dans sa vie.\nFinishing the job by Tuesday will be a piece of cake.\tFinir le travail pour mardi sera du gâteau.\nFlash photography is not permitted beyond this point.\tPassé cette limite, il n'est pas permis de prendre des photos avec un flash.\nFresh fruits and vegetables are good for your health.\tLes fruits frais et les légumes sont bons pour la santé.\nFrom a literary point of view, his work is a failure.\tD'un point de vue littéraire, son œuvre est ratée.\nHaiti is a nation that seems hopelessly impoverished.\tHaïti est une nation qui parait désespérément appauvrie.\nHappiness in marriage is entirely a matter of chance.\tLe bonheur au sein du mariage est entièrement une affaire de chance.\nHave you ever walked through a graveyard at midnight?\tAs-tu déjà marché à travers un cimetière à minuit ?\nHaving failed several times, he tried to do it again.\tAprès avoir échoué plusieurs fois, il essaya une nouvelle fois.\nHe breathed deeply before entering his boss's office.\tIl inspira profondément avant d'entrer dans le bureau de son patron.\nHe bribed that politician with a great deal of money.\tIl a soudoyé cet homme politique avec une grosse somme d'argent.\nHe bribed that politician with a great deal of money.\tIl a corrompu ce politicien avec un bon paquet d'argent.\nHe can't work properly until he's had his cup of joe.\tIl ne peut travailler correctement que lorsqu'il a eu son kawa.\nHe caught the first train and got there just in time.\tIl a pris le premier train et est arrivé juste à temps.\nHe complains about one thing or another all the time.\tIl est toujours à se plaindre d'une chose ou d'une autre.\nHe completely failed to understand why she got angry.\tIl n'a rien compris aux raisons de sa colère.\nHe contends that primitive life once existed on Mars.\tIl affirme qu'une vie primitive a existé sur Mars.\nHe demanded that I should pay the money back at once.\tIl demanda que je le rembourse tout de suite.\nHe demanded that I should pay the money back at once.\tIl exigea que je rembourse immédiatement l'argent.\nHe does nothing but complain from morning till night.\tIl ne fait que se plaindre du matin au soir.\nHe fleeced three old ladies of their meager pensions.\tIl pluma trois vieilles dames de leurs maigres retraites.\nHe found it very hard to keep the conversation going.\tIl trouva très difficile d'entretenir la conversation.\nHe had a kind word and a pleasant smile for everyone.\tIl eut un mot gentil et un sourire agréable à l'intention de chacun.\nHe had a kind word and a pleasant smile for everyone.\tIl a eu un mot gentil et un sourire agréable à l'intention de chacun.\nHe hid his emotions and pretended to be enthusiastic.\tIl a caché ses émotions et a prétendu être enthousiaste.\nHe is a nice person, to be sure, but not very clever.\tC'est un chic type, assurément, mais pas très malin.\nHe lived in France for some time, then went to Italy.\tIl vécut en France quelque temps, puis alla en Italie.\nHe made many grammatical mistakes in his composition.\tIl a fait beaucoup de fautes de grammaire dans sa dissertation.\nHe spent another sleepless night watching television.\tIl a encore passé une nuit blanche devant la télévision.\nHe suggested that the meeting be put off till Monday.\tIl a suggéré le report de la réunion à lundi.\nHe tried to be brave while he was being held hostage.\tIl essaya d'être courageux tandis qu'il était pris en otage.\nHe warned the children against playing in the street.\tIl a averti l'enfant de ne pas jouer dans la rue.\nHe was always pulling my leg when we worked together.\tLorsque nous travaillions ensemble, il ne cessait de me charrier.\nHe wears expensive clothes and owns a lot of jewelry.\tIl porte des vêtements coûteux et possède beaucoup de bijoux.\nHe went to Austria for the purpose of studying music.\tIl est allé en Autriche afin d'étudier la musique.\nHe wore a pullover sweater to keep from getting cold.\tIl a porté un pullover pour ne pas avoir froid.\nHe's not such a great writer and I think he knows it.\tIl n'est pas un très bon écrivain et je pense qu'il le sait.\nHer explanation concerning that matter matches yours.\tSon explication de cette affaire concorde avec la vôtre.\nHer husband eats everything she puts in front of him.\tSon mari mange tout ce qu'elle lui met devant le nez.\nHis health has been getting worse since the accident.\tSa santé s'est détériorée depuis l'accident.\nHis long absences were starting to provoke suspicion.\tSes absences prolongées commencèrent à éveiller la suspicion.\nHis obscene remarks will be expunged from the record.\tSes remarques obscènes seront expurgées de l'enregistrement.\nHis son-in-law completely recovered from his illness.\tSon gendre est complètement rétabli.\nHis warm way with people had made him hugely popular.\tSon contact chaleureux avec les gens l'a rendu extrêmement populaire.\nHow did the railway accident at Tokyo Station happen?\tComment l'accident de chemin de fer à la gare de Tokyo est-il arrivé ?\nHow did the railway accident at Tokyo Station happen?\tComment l'accident de chemin de fer à la gare de Tokyo est-il survenu ?\nHow did the railway accident at Tokyo Station happen?\tComment a eu lieu l'accident de chemin de fer à la gare de Tokyo ?\nHow do I know that you're not going to do that again?\tComment sais-je que tu ne vas pas à nouveau le faire ?\nHow do you know that light travels faster than sound?\tComment sais-tu que la lumière est plus rapide que le son ?\nHow much money do you have in your pockets right now?\tCombien d'argent as-tu dans tes poches à l'instant ?\nHow old were you when you learned to write your name?\tQuel âge aviez-vous lorsque vous avez appris à écrire votre nom ?\nHow old were you when you learned to write your name?\tQuel âge avais-tu lorsque tu as appris à écrire ton nom ?\nHundreds of unemployed men sleep there day and night.\tDes centaines d'hommes sans emploi dorment là jour et nuit.\nI always drink a glass of milk before going to sleep.\tJe bois toujours un verre de lait avant d'aller me coucher.\nI always drink a glass of milk before going to sleep.\tJe bois toujours un verre de lait avant d'aller dormir.\nI always have a good supply of tissues in my pockets.\tJ'ai toujours une bonne réserve de mouchoirs dans mes poches.\nI always have difficulty in making myself understood.\tJe peine toujours à me faire comprendre.\nI always make it a point to paint things as they are.\tJe me suis toujours efforcé de peindre les choses telles qu'elles sont.\nI always thought this would be the right thing to do.\tJ'ai toujours pensé que c'était la bonne chose à faire.\nI am given a monthly allowance of fifty thousand yen.\tJe reçois une allocation mensuelle de cinquante mille yens.\nI am not quite sure if we can meet your requirements.\tJe ne suis pas sûr que nous satisfassions à vos exigences.\nI beg your pardon. I didn't think this was your seat.\tJe vous demande pardon. Je ne pense pas que cela soit votre siège.\nI began to be afraid you would never come back again.\tJe commençais à craindre que vous ne reviendriez jamais.\nI built a house within a stone's throw of the forest.\tJ'ai construit une maison à un jet de pierre de la forêt.\nI built a house within a stone's throw of the forest.\tJ'ai érigé une maison à un jet de pierre de la forêt.\nI can't believe I'm stuck here in this room with you.\tJe n'arrive pas à croire que je sois coincé ici, dans cette pièce, avec toi.\nI can't believe I'm stuck here in this room with you.\tJe n'arrive pas à croire que je sois coincée ici, dans cette pièce, avec toi.\nI can't believe I'm stuck here in this room with you.\tJe n'arrive pas à croire que je sois coincé ici, dans cette pièce, avec vous.\nI can't believe I'm stuck here in this room with you.\tJe n'arrive pas à croire que je sois coincée ici, dans cette pièce, avec vous.\nI can't believe you actually did something like that.\tJe n'arrive pas à croire que vous ayez vraiment fait une telle chose.\nI can't believe you actually did something like that.\tJe n'arrive pas à croire que tu aies vraiment fait une telle chose.\nI can't concentrate with all this commotion going on.\tJe ne parviens pas à me concentrer avec tout ce tumulte.\nI can't figure out how to register a new domain name.\tJe n'arrive pas à comprendre comment enregistrer un nouveau nom de domaine.\nI canceled my appointment because of urgent business.\tJ'ai annulé mon rendez-vous à cause d'une affaire urgente.\nI cannot help loving her in spite of her many faults.\tJe ne peux m'empêcher de l'aimer en dépit de ses nombreux défauts.\nI carried one bag, but the other one was left behind.\tJ'ai porté une valise, mais l'autre a été laissée sur place.\nI did everything in my power to protect her from you.\tJ'ai fait tout ce qui était en mon pouvoir pour la protéger de vous.\nI did everything in my power to protect her from you.\tJ'ai fait tout ce qui était en mon pouvoir pour la protéger de toi.\nI didn't know that soccer was such a dangerous sport.\tJe ne savais pas que le football était un sport si dangereux.\nI didn't know that soccer was such a dangerous sport.\tJ'ignorais que le football était un sport si dangereux.\nI didn't win, but at least I got a consolation prize.\tJe n'ai pas gagné, mais au moins ai-je obtenu un lot de consolation.\nI don't have a lot of money, but I get along somehow.\tJe n'ai pas beaucoup d'argent mais je me débrouille, d'une manière ou d'une autre.\nI don't know about you, but I feel pretty good today.\tJe ne sais pas pour toi, mais je me sens assez bien aujourd'hui.\nI don't know about you, but I feel pretty good today.\tJe ne sais pas ce qu'il en va pour vous, mais je me sens assez bien aujourd'hui.\nI don't know what it is, but it's something very big.\tJe ne sais pas de quoi il s'agit, mais c'est quelque chose de très gros.\nI don't know what it is, but it's something very big.\tJe ne sais pas ce que c'est, mais c'est quelque chose de très grand.\nI don't know whether he's younger or older than I am.\tJe ne sais pas s'il est plus jeune ou plus âgé que moi.\nI don't know who I'll miss more, you or your brother.\tJe ne sais qui, de toi ou de ton frère, me manquera le plus.\nI don't know who I'll miss more, you or your brother.\tJe ne sais qui, de vous ou de votre frère, me manquera le plus.\nI don't see why everyone thinks this book is so good.\tJe ne vois pas pourquoi tout le monde pense que ce livre est si bien.\nI don't think I'd mind eating Chinese food every day.\tJe ne pense pas que ça me dérangerait de manger chinois tous les jours.\nI don't understand why pepperoni pizza is so popular.\tJe ne comprends pas pourquoi les pizzas pepperoni sont si populaires.\nI don't want to bother you guys while you're working.\tJe ne veux pas vous déranger, les mecs, pendant que vous travaillez.\nI don't want to share the hotel room with a stranger.\tJe ne veux pas partager la chambre d'hôtel avec un inconnu.\nI don't want to think about what could have happened.\tJe ne veux pas penser à ce qui aurait pu arriver.\nI don't want to think about what could have happened.\tJe me refuse à penser à ce qui aurait pu arriver.\nI estimate that the work will cost more than $10,000.\tJ‘estime que le travail coûtera plus de 10 000 $.\nI expect a subway station will be here in the future.\tJ'espère qu'il y aura ici une station de métro dans l'avenir.\nI forgot to shutter the windows before the storm hit.\tJ'oubliai de fermer les volets avant que la tempête ne frappe.\nI found my father's diary which he kept for 30 years.\tJ'ai trouvé le journal que mon père a tenu pendant 30 ans.\nI got a stomach tumor and had to have it operated on.\tJ'ai eu une tumeur de l'estomac et j'ai dû la faire opérer.\nI got this as a wedding gift, but I've never used it.\tJe l'ai reçu en cadeau de mariage mais ne l'ai jamais utilisé.\nI got this as a wedding gift, but I've never used it.\tJe l'ai reçue en cadeau de mariage mais ne l'ai jamais utilisée.\nI got this as a wedding gift, but I've never used it.\tJ'ai reçu ceci en cadeau de mariage mais ne l'ai jamais utilisé.\nI got up earlier than usual to catch the first train.\tJe me suis levé plus tôt que d'habitude afin d'attraper le premier train.\nI got up earlier than usual to catch the first train.\tJe me suis levée plus tôt que d'habitude afin d'attraper le premier train.\nI guess I don't understand what you're trying to say.\tJe suppose que je ne comprends pas ce que vous essayez de dire.\nI guess I don't understand what you're trying to say.\tJe suppose que je ne comprends pas ce que vous tentez de dire.\nI guess I don't understand what you're trying to say.\tJe suppose que je ne comprends pas ce que tu essaies de dire.\nI guess I don't understand what you're trying to say.\tJe suppose que je ne comprends pas ce que tu tentes de dire.\nI had hardly left home when it began to rain heavily.\tJ'avais à peine quitté la maison lorsqu'il se mit à fortement pleuvoir.\nI had lunch with Tom at a restaurant near the office.\tJ'ai déjeuné avec Tom dans un restaurant près du bureau.\nI had no idea that you were having problems with Tom.\tJ'étais loin d'imaginer que tu avais des problèmes avec Tom.\nI had no idea that you were having problems with Tom.\tJ'étais loin d'imaginer que vous aviez des problèmes avec Tom.\nI had planned to leave for New York the next morning.\tJ'avais prévu de partir pour New-York le lendemain matin.\nI have been waiting for a friend of mine for an hour.\tJ'ai attendu un des amis pendant une heure.\nI have just arrived. I haven't even unpacked my bags.\tJe viens d'arriver. Je n'ai pas même encore débouclé mes valises.\nI have no idea how many people will be at the picnic.\tJe n'ai aucune idée du nombre de personnes qui viendront au pique-nique.\nI have no interest whatsoever in eating English food.\tJe n'ai pas la moindre envie de manger anglais.\nI hope something good happens before the day is over.\tJ'espère que quelque chose de bien va se produire avant que la journée soit finie.\nI just had something incredibly strange happen to me.\tIl vient de m'arriver quelque chose d'incroyablement étrange.\nI just want some souvenirs to remember this place by.\tJe veux juste quelques souvenirs afin de me rappeler cet endroit.\nI know that Japanese songs are very difficult for us.\tJe sais que les chansons japonaises sont difficiles à chanter pour nous.\nI know that Japanese songs are very difficult for us.\tJe sais qu'on a du mal à chanter des chansons japonaises.\nI know that the last thing you want to do is help me.\tJe sais que la dernière chose que vous veuillez faire est de m'aider.\nI know that the last thing you want to do is help me.\tJe sais que la dernière chose que vous vouliez faire est de m'aider.\nI know that the last thing you want to do is help me.\tJe sais que la dernière chose que tu veuilles faire est de m'aider.\nI know that the last thing you want to do is hurt me.\tJe sais que la dernière chose que tu veuilles faire est de me blesser.\nI know that the last thing you want to do is hurt me.\tJe sais que la dernière chose que vous veuillez faire est de me blesser.\nI know that the last thing you want to do is hurt me.\tJe sais que la dernière chose que vous vouliez faire est de me blesser.\nI looked at my watch and noted that it was past five.\tJ'ai regardé ma montre et ai constaté qu'il était cinq heures passées.\nI love the fact that you always seem to care so much.\tJ'adore le fait que tu sembles toujours prêter tellement d'attention.\nI love to spend time trying to put together a puzzle.\tJ'adore passer du temps à essayer d'assembler les pièces d'un puzzle.\nI moved out of my parent’s house to live on my own.\tJ'ai déménagé de chez mes parents pour vivre seul.\nI must calculate how much money I'll spend next week.\tJe dois calculer combien d'argent je vais dépenser la semaine prochaine.\nI never realized how awful living all alone could be.\tJe n'ai jamais pris conscience de combien vivre seul pouvait être épouvantable.\nI never realized you were interested in Japanese art.\tJe n’avais jamais réalisé que tu t’intéressais aux arts japonais.\nI noticed him sitting with his back against the wall.\tJe l'ai remarqué, assis dos au mur.\nI noticed him sitting with his back against the wall.\tJe l'ai remarqué, assis le dos au mur.\nI now know more about Tom than I really want to know.\tA présent, j'en sais plus sur Tom que ce que j'aurais réellement voulu savoir.\nI often spend my leisure time listening to the radio.\tJ'écoute souvent la radio pendant mes loisirs.\nI ran into an old friend of mine outside the station.\tJe suis tombé sur un vieil ami à moi devant la gare.\nI saw something very bright fly across the night sky.\tJ'ai vu quelque chose de très brillant voler dans le ciel nocturne.\nI scribbled down his address in the back of my diary.\tJ'ai gribouillé son adresse au dos de mon journal.\nI shouldn't have eaten the whole bag of potato chips.\tJe n'aurais pas dû manger le sac complet de chips.\nI shouldn't have to tell you to keep your room clean.\tJe ne devrais pas avoir à te dire de tenir ta chambre propre.\nI shouldn't have walked home late at night by myself.\tJe n'aurais pas dû rentrer tard à la maison, à pied, de nuit, tout seul.\nI shouldn't have walked home late at night by myself.\tJe n'aurais pas dû rentrer tard à la maison, à pied, de nuit, toute seul.\nI speak French to my father and English to my mother.\tJe parle en français à mon père et en anglais à ma mère.\nI spent a week in Berlin living with a German family.\tJ'ai passé une semaine à Berlin à vivre avec une famille allemande.\nI spent hours looking for the key that I had dropped.\tJ'ai passé des heures à chercher la clé que j'avais laissée tomber.\nI still think we should've invited Tom to go with us.\tJe pense toujours que nous aurions dû inviter Tom à venir avec nous.\nI suppose I'll have to be more careful in the future.\tJe suppose qu'il me faudra être plus prudent à l'avenir.\nI suppose I'll have to be more careful in the future.\tJe suppose qu'il me faudra être plus prudente à l'avenir.\nI talked to Tom this morning just before the meeting.\tJ'ai parlé à Tom ce matin juste avant la réunion.\nI think I should probably go home and get some sleep.\tJe pense que je devrais probablement rentrer chez moi et dormir un peu.\nI think Tom came here to tell us something important.\tJe pense que Tom est venu nous dire quelque chose d'important.\nI think it's impossible for him to solve the problem.\tJe pense qu'il lui est impossible de résoudre ce problème.\nI think it's time for me to consider going on a diet.\tJe pense qu'il est temps que je réfléchisse à me mettre au régime.\nI think it's time for me to move into a smaller home.\tJe pense qu'il est temps pour moi de déménager pour un logement plus petit.\nI think it's time for me to put new bait on the hook.\tJe pense qu'il est temps que je mette un nouvel appât à l'hameçon.\nI think it's time for me to split some more firewood.\tJe pense qu'il est temps que je fende un peu plus de bois pour le feu.\nI think it's time for me to walk away from this mess.\tJe pense qu'il est temps que je m'éloigne de ce merdier.\nI think it's time for me to walk away from this mess.\tJe pense qu'il est temps que je m'éloigne de cette pagaille.\nI think there's only a slim chance of that happening.\tJe pense qu'il n'y a que peu de chances que cela arrive.\nI think watching people playing chess isn't much fun.\tJe pense que regarder des gens jouer aux échecs n'a rien d'amusant.\nI thought about giving my saxophone to Tom as a gift.\tJ’ai pensé offrir en cadeau mon saxophone à Tom.\nI told her to sit down and to drink a glass of water.\tJe lui dis de s'asseoir et de boire un verre d'eau.\nI told her to sit down and to drink a glass of water.\tJe lui ai dit de s'asseoir et de boire un verre d'eau.\nI told him, once for all, that I would not marry him.\tJe lui ai dit, une fois pour toutes, que je ne me marierai pas avec lui.\nI understand I can get a bus to Disneyland from here.\tJe pense pouvoir prendre un bus pour Disneyland d'ici.\nI visited the town for the first time in a long time.\tJ'ai visité la ville pour la première fois depuis longtemps.\nI want this photograph developed as soon as possible.\tJe veux que cette photo soit développée aussi vite que possible.\nI want to get a good seat, so I plan to arrive early.\tJe veux disposer d'une bonne place assise, alors je prévois d'arriver tôt.\nI want you to tell me everything you know about that.\tJe veux que vous me disiez tout ce que vous savez à ce sujet.\nI want you to tell me everything you know about that.\tJe veux que vous me disiez tout ce que vous savez à ce propos.\nI want you to tell me everything you know about that.\tJe veux que tu me dises tout ce que tu sais à ce sujet.\nI want you to tell me everything you know about that.\tJe veux que tu me dises tout ce que tu sais à ce propos.\nI want you to tell me everything you know about that.\tJe veux que vous me disiez tout ce que vous en savez.\nI want you to tell me everything you know about that.\tJe veux que tu me dises tout ce que tu en sais.\nI want you to understand this isn't going to be easy.\tJe veux que tu comprennes que ça ne va pas être facile.\nI want you to understand this isn't going to be easy.\tJe veux que vous compreniez que ça ne va pas être facile.\nI want you to understand this isn't going to be easy.\tJe veux que tu comprennes que ça ne va pas être aisé.\nI want you to understand this isn't going to be easy.\tJe veux que vous compreniez que ça ne va pas être aisé.\nI wanted to go outside and get a breath of fresh air.\tJe voulais aller dehors et prendre un bol d'air frais.\nI wanted to have a word with you about what happened.\tJe voulais te toucher un mot de ce qui s'est passé.\nI wanted to have a word with you about what happened.\tJe voulais vous toucher un mot de ce qui s'est passé.\nI wanted to have a word with you about what happened.\tJe voulais te toucher un mot de ce qui a eu lieu.\nI wanted to have a word with you about what happened.\tJe voulais vous toucher un mot de ce qui a eu lieu.\nI was born in Tokyo on the eighth of January in 1950.\tJe suis né à Tokyo le huit janvier 1950.\nI was in such a hurry that I forgot to lock the door.\tJ'étais tellement pressé que j'ai oublié de fermer la porte à clef.\nI was in such a hurry that I forgot to lock the door.\tJ'étais si pressé que j'ai oublié de fermer la porte à clé.\nI was surprised to see so many people at the concert.\tJ'étais surprise de voir autant de gens au concert.\nI was wondering if I could take a vacation next week.\tJe me demandais si je pouvais prendre un congé, la semaine prochaine.\nI wish I had studied English harder when I was young.\tSi seulement j'avais étudié plus dur l'anglais quand j'étais jeune.\nI wish I had the will power to stop eating junk food.\tJ'aimerais disposer de la volonté d'arrêter de manger de la malbouffe.\nI won't divorce you unless you give me a good reason.\tJe ne divorcerai pas de toi à moins que tu ne me donnes une raison valable.\nI won't have enough time for everything I want to do.\tJe n'aurai pas suffisamment de temps pour tout ce que je veux faire.\nI won't have enough time for everything I want to do.\tJe n'aurai pas assez de temps pour tout ce que je veux faire.\nI won't have enough time for everything I want to do.\tJe ne disposerai pas d'assez de temps pour tout ce que je veux faire.\nI wonder if Prince William lets anyone call him Bill.\tJe me demande si le Prince Guillaume laisse quiconque l'appeler Bill.\nI wonder if he will stand by me when I am in trouble.\tJe me demande s'il me soutiendra quand j'aurais des problèmes.\nI wonder if she'll accept a belated birthday present.\tJe me demande si elle acceptera un cadeau d'anniversaire en retard.\nI wonder if there's a market for something like that.\tJe me demande s'il y a un marché pour quelque chose de ce genre.\nI worked in a post office during the summer vacation.\tJ'ai travaillé dans un service postal durant les congés d'été.\nI would like it if we could spend more time together.\tJ'aimerais que nous puissions passer davantage de temps ensemble.\nI would never consider building a house in this area.\tJamais je n'envisagerais de construire une maison dans ce coin.\nI would rather go to the mountains than to the beach.\tJe préfèrerais aller à la montagne plutôt qu'à la plage.\nI would think you have other things to keep you busy.\tJ'imagine que d'autres choses t'occupent.\nI would think you have other things to keep you busy.\tJ'imagine que d'autres choses vous occupent.\nI would think you have other things to keep you busy.\tJ'imagine que d'autres choses te tiennent occupé.\nI would think you have other things to keep you busy.\tJ'imagine que d'autres choses te tiennent occupée.\nI would think you have other things to keep you busy.\tJ'imagine que d'autres choses vous tiennent occupé.\nI would think you have other things to keep you busy.\tJ'imagine que d'autres choses vous tiennent occupés.\nI would think you have other things to keep you busy.\tJ'imagine que d'autres choses vous tiennent occupée.\nI would think you have other things to keep you busy.\tJ'imagine que d'autres choses vous tiennent occupées.\nI'd like a copy of that document as soon as possible.\tJ'aimerais disposer d'une copie de ce document, dès que possible.\nI'd like to book a table for four for tomorrow night.\tJe souhaiterais réserver une table pour quatre pour demain soir.\nI'd like to talk to you when you have some free time.\tJ'aimerais m'entretenir avec toi, lorsque tu auras du temps disponible.\nI'd like to talk to you when you have some free time.\tJ'aimerais te parler, lorsque tu auras du temps disponible.\nI'd like to talk to you when you have some free time.\tJ'aimerais te causer, lorsque tu auras du temps disponible.\nI'd like to talk to you when you have some free time.\tJ'aimerais discuter avec toi, lorsque tu auras du temps disponible.\nI'd like to talk to you when you have some free time.\tJ'aimerais m'entretenir avec vous, lorsque vous aurez du temps disponible.\nI'd like to talk to you when you have some free time.\tJ'aimerais discuter avec vous, lorsque vous aurez du temps disponible.\nI'd like to talk to you when you have some free time.\tJ'aimerais vous parler, lorsque vous aurez du temps disponible.\nI'd like to talk to you when you have some free time.\tJ'aimerais vous causer, lorsque vous aurez du temps disponible.\nI'd like to try this on. Where are the fitting rooms?\tJe voudrais essayer ça. Où sont les cabines d'essayage?\nI'll arrange for someone to pick you up at your home.\tJe m'arrangerai pour que quelqu'un vienne te chercher chez toi.\nI'll arrange for someone to pick you up at your home.\tJe m'arrangerai pour que quelqu'un vienne vous chercher chez vous.\nI'm going to make you an offer that you can't refuse.\tJe vais vous faire une proposition que vous ne pouvez pas refuser.\nI'm going to make you an offer that you can't refuse.\tJe vais te faire une proposition que tu ne peux pas refuser.\nI'm looking forward to seeing you in a wedding dress.\tJe suis impatient de te voir en robe de mariée.\nI'm looking forward to seeing you in a wedding dress.\tJe suis impatient de vous voir en robe de mariée.\nI'm not buying you another drink until you say sorry.\tTant que tu ne te seras pas excusé, je ne te paierai pas un autre verre.\nI'm not flexible enough to sit in the lotus position.\tJe ne suis pas assez souple pour m'asseoir dans la position du lotus.\nI'm not good at eating Japanese food with chopsticks.\tJe ne suis pas doué pour manger de la nourriture japonaise avec des baguettes.\nI'm only going to say this once, so listen carefully.\tJe ne vais dire ceci qu'une seule fois, alors écoutez avec attention !\nI'm only going to say this once, so listen carefully.\tJe ne vais dire ceci qu'une seule fois, alors écoute avec attention !\nI'm really bad with names, but I never forget a face.\tJe suis vraiment nul avec les noms, mais je n'oublie jamais un visage.\nI'm surprised to see you smoking. You didn't used to.\tÇa me surprend de te voir fumer. Tu n'en avais pas l'habitude.\nI've already sent an email to the support department.\tJ'ai déjà envoyé un courriel au service d'assistance.\nI've been given permission to inspect this equipment.\tOn m'a autorisé à inspecter cet équipement.\nI've been looking for someone to babysit my children.\tJe suis à la recherche de quelqu'un pour garder mes enfants.\nI've been trying to get in touch with you for months.\tÇa fait des mois que j'essaie d'entrer en contact avec vous.\nI've been trying to get in touch with you for months.\tÇa fait des mois que j'essaie d'entrer en contact avec toi.\nI've decided to quit my job at the end of this month.\tJ'ai décidé de quitter mon emploi à la fin de ce mois.\nI've got a feeling that something is about to happen.\tJ'ai le pressentiment que quelque chose est sur le point de se produire.\nI've waited two whole hours. I can't wait any longer.\tJ'ai attendu deux heures entières. Je ne peux plus attendre davantage.\nIf I had had more money, I would have bought the pen.\tSi j'avais eu plus d'argent, j'aurais acheté le stylo.\nIf I had wings to fly, I would have gone to save her.\tSi je disposais d'ailes pour voler, je serais allé la sauver.\nIf he had gotten her advice, he would have succeeded.\tS'il avait reçu ses conseils, il aurait réussi.\nIf it had not been for his help, I would have failed.\tS'il ne m'avait pas aidé, j'aurais échoué.\nIf it had not been for his help, I would have failed.\tS'il ne m'avait pas aidée, j'aurais échoué.\nIf it rains tomorrow, the excursion will be canceled.\tS'il pleut demain, l'excursion sera annulée.\nIf it were not for the sun, we could not live at all.\tSi ce n'était pas pour le soleil nous ne pourrions pas vivre du tout.\nIf it were not for water, no one could live on earth.\tSans eau, personne ne pourrait vivre sur terre.\nIf possible, I'd like to know the name of the author.\tSi c'est possible, j'aimerais connaître le nom de l'auteur.\nIf that guitar were not so expensive, I could buy it.\tSi cette guitare n'était pas si chère, je pourrais l'acheter.\nIf the shop is closed today, I'll try again tomorrow.\tSi le magasin est fermé aujourd'hui, j'essaierai à nouveau demain.\nIf there's anything you want to do, you should do it.\tS'il y a quoi que ce soit que tu veuilles faire, tu devrais le faire.\nIf there's anything you want to do, you should do it.\tS'il y a quoi que ce soit que vous veuillez faire, vous devriez le faire.\nIf there's anything you want to do, you should do it.\tS'il y a quoi que ce soit que vous vouliez faire, vous devriez le faire.\nIf walls could talk, what stories would they tell us?\tSi les murs pouvaient parler, quelles histoires nous conteraient-ils ?\nIf you don't want this, I'll give it to someone else.\tSi tu n'en veux pas, je le donnerai à quelqu'un d'autre.\nIf you don't want this, I'll give it to someone else.\tSi tu ne veux pas de ceci, je le donnerai à quelqu'un d'autre.\nIf you don't want this, I'll give it to someone else.\tSi tu n'en veux pas, je la donnerai à quelqu'un d'autre.\nIf you don't want this, I'll give it to someone else.\tSi vous n'en voulez pas, je le donnerai à quelqu'un d'autre.\nIf you don't want this, I'll give it to someone else.\tSi vous n'en voulez pas, je la donnerai à quelqu'un d'autre.\nIf you don't want this, I'll give it to someone else.\tSi vous ne voulez pas de ceci, je le donnerai à quelqu'un d'autre.\nIf you have a question, please raise your right hand.\tSi vous avez une question, veuillez lever la main droite.\nIf you have a question, please raise your right hand.\tSi tu as une question, lève la main droite, je te prie.\nIf you need my advice, I'd be glad to give it to you.\tSi vous aviez besoin de mes conseils, je serais ravi de vous les apporter.\nIf you need my advice, I'd be glad to give it to you.\tSi tu avais besoin de mes conseils, je serais ravi de te les apporter.\nIf you pass this test, you could graduate next month.\tSi tu réussis cet examen, tu pourrais avoir ton diplôme le mois prochain.\nIf you pass this test, you could graduate next month.\tSi vous réussissez cet examen, vous pourriez terminer vos études le mois prochain.\nIn a crisis, you must get in touch with your teacher.\tEn cas de crise, vous devez prendre contact avec votre enseignant.\nIn my city, the temperature is one degree above zero.\tDans ma ville, la température est un degré au-dessus de zéro.\nIn terms of the pay you will get, is this a good job?\tEn termes de rémunération, est-ce un bon poste ?\nIn those days, I used to get up at six every morning.\tEn ces temps, j'avais pour habitude de me lever à 6 heures du matin.\nInformation will be provided on a need-to-know basis.\tL'information sera délivrée en fonction de la nécessité.\nInjustice anywhere is a threat to justice everywhere.\tUne injustice où qu'elle soit est une menace pour la justice partout.\nIt cost me one thousand yen to get the bicycle fixed.\tCela m'a coûté mille yen pour faire réparer mon vélo.\nIt doesn't matter what game he plays, he always wins.\tLe jeu auquel il joue n'a pas d'importance, il gagne toujours.\nIt goes without saying that health is most important.\tCela va de soi que la santé est l'essentiel.\nIt irritates Mary when Tom leaves the toilet seat up.\tCela met en colère Mary quand Tom laisse le siège des toilettes relevé.\nIt is dangerous to ride a motorbike without a helmet.\tIl est dangereux de rouler sans casque à moto.\nIt is necessary for you to go and encourage the girl.\tIl faut que tu ailles encourager la fille.\nIt is not because I hate him, but because I love him.\tCe n'est pas parce que je le hais mais parce que je l'aime.\nIt is said that his father died in a foreign country.\tD'après ce qu'on dit, son père serait mort à l'étranger.\nIt is true that he is young, but he is very reliable.\tIl est vrai qu'il est jeune, mais il est très fiable.\nIt is, even now, a book loved by men and women alike.\tC'est, même aujourd'hui, un ouvrage adoré des hommes comme des femmes.\nIt looks like we're going to be staying here tonight.\tJ'ai l'impression qu'on va rester ici pour la nuit.\nIt makes no difference to me whether he comes or not.\tCela m'est indifférent qu'il vienne ou pas.\nIt pays in the long run to buy goods of high quality.\tCela paie sur le long terme d'acheter des biens de grande qualité.\nIt seems that he has something to do with the matter.\tIl semble qu'il ait quelque chose à voir avec le sujet.\nIt seems to me that she has a tendency to exaggerate.\tIl me semble qu'elle a tendance à exagérer.\nIt was much more difficult than we initially thought.\tCe fut beaucoup plus difficile que nous ne l'avions initialement pensé.\nIt was much more difficult than we initially thought.\tCe fut bien plus difficile que nous ne l'avions initialement pensé.\nIt was much more difficult than we initially thought.\tÇa a été beaucoup plus difficile que nous ne l'avions initialement pensé.\nIt was much more difficult than we initially thought.\tÇa a été bien plus difficile que nous ne l'avions initialement pensé.\nIt was so hot that I thought I was going to pass out.\tIl faisait si chaud que je pensais que j'allais m'évanouir.\nIt was so hot that I thought I was going to pass out.\tIl faisait tellement chaud que je pensais que j'allais m'évanouir.\nIt was so still that you would have heard a pin drop.\tC'était si calme qu'on aurait entendu tomber une épingle.\nIt was such a cold day that we decided not to go out.\tIl faisait tellement froid qu'on a décidé de ne pas sortir.\nIt will take time for him to recover from his wounds.\tÇa lui prendra du temps de se remettre de ses blessures.\nIt would be better for you not to ask him for advice.\tVous feriez mieux de ne pas lui demander conseil.\nIt's a nice day, isn't it? Why not go out for a walk?\tC'est une bonne journée, n'est-ce pas ? Pourquoi ne pas sortir faire une marche ?\nIt's about time you were independent of your parents.\tIl est temps que tu sois indépendant de tes parents.\nIt's been a long time since I've had a real vacation.\tÇa fait longtemps que je n'ai eu de vraies vacances.\nIt's been a long time since I've seen Tom this happy.\tCela faisait longtemps que je n'avais pas vu Tom aussi heureux.\nIt's difficult to feel at home in a foreign language.\tC'est difficile de se sentir à l'aise en parlant une langue étrangère.\nIt's hard for an old man to change his way of living.\tC'est difficile pour un vieil homme de changer sa manière de vivre.\nIt's hotter here in the valley than in the mountains.\tIl fait plus chaud ici dans la vallée que dans les montagnes.\nIt's like a weight has been lifted from my shoulders.\tC'est comme un poids qui a été retiré de mes épaules.\nIt's not going to be easy to finish this job on time.\tTerminer ce boulot à temps ne va pas être facile.\nIt's still early. We should all just chill for a bit.\tIl est encore tôt. Nous devrions tous juste nous détendre un peu.\nJapan has changed significantly in the past 50 years.\tLe Japon a fortement changé dans les 50 dernières années.\nJust looking at her, you can tell that she likes you.\tJuste en la regardant, on peut voir qu'elle t'aime.\nJust looking at her, you can tell that she likes you.\tJuste en la regardant, on peut voir qu'elle vous aime.\nJust looking at her, you can tell that she likes you.\tJuste en la regardant, tu peux voir qu'elle t'aime.\nJust looking at her, you can tell that she likes you.\tJuste en la regardant, vous pouvez voir qu'elle vous aime.\nJust tell me this isn't going to get me into trouble.\tDis-moi juste que ça ne va pas m'attirer des ennuis.\nLast Sunday, Mary and I went to the library together.\tDimanche dernier, Marie et moi sommes allés ensemble à la bibliothèque.\nLast night there was a big fire in the neighbourhood.\tLa nuit dernière, il y a eu un incendie dans le voisinage.\nLast year, the company was sold to private investors.\tL'année passée, la société a été vendue à des investisseurs privés.\nLaws differ from state to state in the United States.\tLes lois diffèrent d'un État à un autre aux États-Unis.\nLet me read the paper when you have finished with it.\tLaisse-moi lire le journal quand tu auras fini avec.\nLet's not forget that Tom is only thirteen years old.\tN'oublions pas que Tom a seulement treize ans.\nLet's take advantage of the vacation to go on a hike.\tProfitons des vacances pour aller randonner.\nMany Peruvians have the habit of chewing coca leaves.\tBeaucoup de péruviens ont l'habitude de mâcher des feuilles de coca.\nMany inmates on death row say they don't want to die.\tDe nombreux prisonniers, dans le couloir de la mort, disent qu'ils ne veulent pas mourir.\nMany people in these parts have fallen on hard times.\tDe nombreuses personnes dans les environs ont connu des moments difficiles.\nMary is not poor. On the contrary, she is quite rich.\tMary n'est pas pauvre, au contraire, elle est plutôt riche.\nMary pretended she was sick to avoid going to school.\tMary fit croire qu'elle était malade pour éviter d'aller à l'école.\nMathematics is not just the memorization of formulas.\tLes mathématiques ne sont pas juste de la mémorisation de formules.\nMeiji was beaten by Keio by a score of three to five.\tMeiji a été vaincue par Keio avec un score de trois à cinq.\nMommy, if I don't like the food, do I have to eat it?\tMaman, si je n'aime pas la nourriture, suis-je obligé de la manger ?\nMore and more married couples share household chores.\tDe plus en plus de couples mariés se partagent les tâches ménagères.\nMore than 40 percent of students go on to university.\tPlus de 40 % des étudiants vont à l'université.\nMore than half the residents are opposed to the plan.\tPlus de la moitié des résidents sont opposés au plan.\nMy dog ate a paper towel. I wonder if he'll get sick.\tMon chien a bouffé une serviette en papier. Je me demande si ça va le rendre malade.\nMy driver's license expires at the end of this month.\tMon permis de conduire expire à la fin de ce mois-ci.\nMy father has been in good shape since his operation.\tMon père est dans un bon état depuis son opération.\nMy father was about to leave when the telephone rang.\tMon père était sur le point de partir lorsque le téléphone sonna.\nMy father will often read the newspaper during meals.\tMon père lit souvent le journal pendant le repas.\nMy grandpa believes that the moon landing was a hoax.\tMon pépé croit que l'atterrissage sur la Lune était un canular.\nMy house is only five minutes' walk from the station.\tMa maison est à seulement cinq minutes à pied de la gare.\nMy hubby and I used to go mountain climbing together.\tMon mari et moi avions l'habitude d'aller ensemble faire de l'escalade.\nMy laptop battery doesn't last as long as it used to.\tLa batterie de mon ordinateur portable ne dure plus aussi longtemps qu'elle en avait l'habitude.\nMy mother bought a refrigerator and had it delivered.\tMa mère a acheté un réfrigérateur et se l'est fait livrer.\nMy mother goes to the market every day to buy things.\tMa mère se rend au marché tous les jours pour acheter des trucs.\nMy mother goes to the market every day to buy things.\tMa mère va au marché tous les jours pour acheter des trucs.\nMy parents wouldn't let me date who I wanted to date.\tMes parents refusaient de me laisser sortir avec qui je voulais.\nNo extremely fat man has ever attempted such a thing.\tAucun homme extrêmement gros n'a jamais tenté une telle chose.\nNo matter how cold it was, he never wore an overcoat.\tQu'importe le froid, il ne portait jamais de manteau.\nNo matter how hard the training was, she never cried.\tLa formation eut beau être difficile, jamais elle ne pleura.\nNo matter how hard the training was, she never cried.\tLa formation a eu beau être difficile, jamais elle n'a pleuré.\nNo matter how hard the training was, she never cried.\tQuelle que fût la difficulté de l'entraînement, elle n'a jamais pleuré.\nNo matter how rich people are, they always want more.\tQu'importe leur richesse, les gens veulent toujours plus.\nNo one is working. Everyone's watching the World Cup.\tPersonne ne travaille. Tout le monde regarde la Coupe du monde.\nNo sooner had she opened the door than a cat ran out.\tÀ peine avait-elle ouvert la porte qu'un chat s'échappa.\nNobody noticed that the picture was hung upside down.\tPersonne ne remarqua que le tableau était suspendu la tête en bas.\nNot everything that you read on the Internet is true.\tTout ce que vous lisez sur Internet n'est pas vrai.\nNot everything that you read on the Internet is true.\tTout ce qu'on lit sur Internet n'est pas vrai.\nNot everything that you read on the Internet is true.\tTout ce que tu lis sur Internet n'est pas vrai.\nNow why would you go and do a stupid thing like that?\tMaintenant, pourquoi irais-tu commettre une telle bêtise ?\nNow why would you go and do a stupid thing like that?\tMaintenant, pourquoi iriez-vous commettre une telle bêtise ?\nOf all these books, this is by far the best on China.\tDe tous ces livres, celui-ci est de loin le meilleur sur la Chine.\nOn the American flag, there's a star for every state.\tSur le drapeau étasunien figure une étoile pour chaque État.\nOnce in a while, he leaves his umbrella in the train.\tDe temps à autre, il laisse son parapluie dans le train.\nOnce upon a time, there lived a great king in Greece.\tIl était une fois un grand roi qui vivait en Grèce.\nOne lives in Fukuoka, and the others live in Niigata.\tL'un vit à Fukuoka, et les autres vivent à Niigata.\nOne man's terrorist is another man's freedom fighter.\tLe terroriste pour l'un est un combattant de la liberté pour un autre.\nOne of the fellows you were with is a friend of mine.\tUne des personnes avec qui vous étiez est un ami à moi.\nOne person more or less doesn't make much difference.\tUne personne de plus ou de moins ne fait pas beaucoup de différence.\nParents can pass many diseases on to their offspring.\tLes parents peuvent transmettre bien des maladies à leur progéniture.\nPeople in these areas are growing hungrier each year.\tLes habitants de ces zones souffrent de plus en plus de la faim chaque année.\nPeople with physical disabilities abhor being pitied.\tLes gens avec des handicaps physiques détestent qu'on les prenne en pitié.\nPershing's forces were not sent directly into battle.\tLes forces de Pershing ne furent pas directement envoyées au combat.\nPlease don't nitpick just for the sake of nitpicking.\tJe te prie de ne pas chercher des poux juste pour le plaisir.\nPlease fill out this questionnaire and send it to us.\tS'il vous plaît, remplissez ce questionnaire et envoyez-le-nous.\nPlease push this button at once in case of emergency.\tVeuillez presser ce bouton immédiatement en cas d'urgence.\nPractice is the only way to master foreign languages.\tLa pratique est la seule façon de maîtriser une langue étrangère.\nProperly used, certain poisons will prove beneficial.\tUtilisés convenablement, certains poisons s’avéreront bénéfiques.\nRasputin had the whole Russian court under his spell.\tRaspoutine tenait toute la cour de Russie sous son charme.\nRight now, all I want to do is sleep for a few hours.\tTout ce que je veux faire à l'instant, c'est de dormir pendant quelques heures.\nSeen from the plane, the island looks very beautiful.\tVu d'avion, cette île a l'air très belle.\nSeveral guys were hanging around in front of the bar.\tPlusieurs types traînaient devant le bar.\nShe absolutely trounces me whenever we play Scrabble.\tElle me bat à plate couture chaque fois que nous jouons au Scrabble.\nShe advised him not to borrow money from his friends.\tElle lui recommanda de ne pas emprunter d'argent à ses amis.\nShe advised him not to borrow money from his friends.\tElle lui a recommandé de ne pas emprunter d'argent à ses amis.\nShe always prides herself on her academic background.\tElle tire toujours gloire de sa formation universitaire.\nShe argued with him about their children's education.\tElle se disputa avec lui au sujet de l'éducation de leurs enfants.\nShe argued with him about their children's education.\tElle s'est disputée avec lui au sujet de l'éducation de leurs enfants.\nShe asked him to come into her house, but he refused.\tElle lui demanda de venir chez elle, mais il refusa.\nShe asked him to come into her house, but he refused.\tElle lui a demandé de venir chez elle, mais il a refusé.\nShe became more and more beautiful as she grew older.\tLes années passant, elle devenait de plus en plus belle.\nShe cherishes the precious memories of her childhood.\tElle chérit les souvenirs précieux de son enfance.\nShe couldn't convince him to accept a personal check.\tElle ne put le convaincre d'accepter un chèque personnel.\nShe couldn't convince him to accept a personal check.\tElle n'a pas pu le convaincre d'accepter un chèque personnel.\nShe explained to him why she didn't like his parents.\tElle lui expliqua pourquoi elle n'aimait pas ses parents.\nShe explained to him why she didn't like his parents.\tElle lui a expliqué pourquoi elle n'aimait pas ses parents.\nShe fell in love with him the first time she met him.\tElle est tombée amoureuse de lui la première fois qu'elle l'a rencontré.\nShe gave me a large room while I stayed at her house.\tElle m'a donné une grande chambre quand je restais dans sa maison.\nShe has recently made remarkable progress in English.\tElle a fait d'incroyables progrès en anglais dernièrement.\nShe has spent hours at the gym trying to lose weight.\tElle a passé des heures à la salle de gym à essayer de perdre du poids.\nShe knelt beside him and asked him what his name was.\tElle s'agenouilla à côté de lui et lui demanda quel était son nom.\nShe knelt beside him and asked him what his name was.\tElle s'est agenouillée à côté de lui et lui a demandé quel était son nom.\nShe lived in the suburbs of Tokyo when she was young.\tElle habitait la banlieue de Tokyo quand elle était jeune.\nShe lost her way and on top of that it began to rain.\tElle perdit son chemin, et pour comble de malchance, il se mit à pleuvoir.\nShe needed the entire afternoon to complete the work.\tElle eut besoin de toute l'après-midi pour accomplir le travail.\nShe needed the entire afternoon to complete the work.\tElle a eu besoin de toute l'après-midi pour terminer le travail.\nShe ran over her lines once before she went on stage.\tElle a revu une fois son texte avant de monter sur scène.\nShe ran very fast to catch up with the other members.\tElle courut très vite pour rattraper les autres membres.\nShe sang the song with tears running down her cheeks.\tElle a chanté des chansons, des larmes lui coulant sur les joues.\nShe sat at the bar downing shot after shot of whisky.\tElle était assise au bar, descendant les verres de whisky les uns à la suite des autres.\nShe should be there now because she left an hour ago.\tElle devrait être là maintenant parce qu'elle est partie il y a une heure.\nShe walked as fast as she could to catch up with him.\tElle marcha aussi vite qu'elle put pour le rattraper.\nShe walked as fast as she could to catch up with him.\tElle a marché aussi vite qu'elle a pu pour le rattraper.\nShe walked up to him and asked him what his name was.\tElle marcha vers lui et lui demanda quel était son nom.\nShe walked up to him and asked him what his name was.\tElle a marché vers lui et lui a demandé quel était son nom.\nShe was looking forward to going to a movie with him.\tElle était impatiente d'aller au cinéma avec lui.\nShe was looking forward to going to a movie with him.\tElle se réjouissait d'aller au cinéma avec lui.\nShe was tired. However, she tried to finish the work.\tElle était fatiguée mais tenta toutefois d'achever le travail.\nShe's completely blasé about the dangers of smoking.\tElle est complètement blasée à propos des dangers du tabagisme.\nSince he didn't know what to say, he remained silent.\tComme il ne savait pas quoi dire, il resta silencieux.\nSince he didn't know what to say, he remained silent.\tComme il ne savait pas quoi dire, il est resté silencieux.\nSince she got her braces, I've hardly seen her smile.\tDepuis qu'elle a ses bagues dentaires, je l'ai à peine vue sourire.\nSince she got her braces, I've hardly seen her smile.\tDepuis qu'elle porte un appareil dentaire, je l'ai à peine vue sourire.\nSixty-nine percent of adult Americans are overweight.\tSoixante-neuf pour cent des adultes américains sont en surpoids.\nSome TV programs are interesting, and others are not.\tCertains programmes TV sont intéressants, d'autres ne le sont pas.\nSome of them are healthy, but others are not healthy.\tCertains d'entre eux sont sains mais d'autres non.\nSome students looked at her with tears in their eyes.\tQuelques étudiants la regardèrent avec des larmes dans les yeux.\nSometimes I can't really grasp the meaning of a word.\tParfois je n'arrive pas vraiment à saisir la signification d'un mot.\nSometimes you have to do things you don't want to do.\tParfois, on doit faire des choses qu'on ne veut pas faire.\nSometimes you have to do things you don't want to do.\tParfois, Il nous faut faire des choses que nous ne voulons pas faire.\nSometimes you have to do things you don't want to do.\tParfois, nous devons faire des choses que nous ne voulons pas faire.\nSorry, but I want to tell her this news face to face.\tDésolé, mais je voudrais lui donner la nouvelle face à face.\nSorry, but I want to tell her this news face to face.\tDésolé mais je voudrais lui donner cette information directement.\nSpanish is spoken in most countries of South America.\tOn parle espagnol dans la plupart des pays d'Amérique du sud.\nStudents should make use of the books in the library.\tLes étudiants devraient utiliser les livres de la bibliothèque.\nSuch a man does not go hunting and seldom owns a gun.\tUn tel homme ne va pas chasser et possède rarement une arme à feu.\nTalking to your plants doesn't help them grow faster.\tParler à vos plantes ne les aide pas à pousser plus vite.\nTell Tom he has to do everything Mary asks him to do.\tDis à Tom qu'il doit faire tout ce que Marie lui demandera.\nTell Tom he has to do everything Mary asks him to do.\tDites à Tom de faire tout ce que Marie lui demandera.\nThank you very much for coming all the way to see me.\tMerci d'avoir fait tout ce chemin pour venir me voir.\nThat kind of thing can happen when you're in a hurry.\tCe genre de chose peut survenir lorsque vous êtes pressé.\nThat kind of thing can happen when you're in a hurry.\tCe genre de chose peut survenir lorsque vous êtes pressés.\nThat kind of thing can happen when you're in a hurry.\tCe genre de chose peut survenir lorsque vous êtes pressée.\nThat kind of thing can happen when you're in a hurry.\tCe genre de chose peut survenir lorsque vous êtes pressées.\nThat was such good a book that I read it three times.\tC'était un livre tellement bien que je l'ai lu trois fois.\nThat's not something I want to think about right now.\tCe n'est pas quelque chose auquel je veux penser, à l'instant.\nThat's not the reason why I said the job wasn't easy.\tCe n'est pas la raison pour laquelle je disais que le travail n'était pas facile.\nThe Brazilian economy is growing by leaps and bounds.\tL'économie brésilienne croit à pas de géant.\nThe British forces were ordered to seize the weapons.\tOn ordonna aux forces britanniques de saisir les armes.\nThe Nozomi is the fastest of all the trains in Japan.\tLe Nozomi est le plus rapide de tous les trains au Japon.\nThe President is to speak on television this evening.\tLe Président doit s'exprimer à la télévision ce soir.\nThe Rhine is the boundary between France and Germany.\tLe Rhin est la limite séparant la France et l'Allemagne.\nThe Tigers lost the game, which was a surprise to us.\tLes Tigres ont perdu le match, ce qui fut pour nous une surprise.\nThe United States of America is a democratic country.\tLes États-Unis d'Amérique sont un pays démocratique.\nThe book was so gripping, I could hardly put it down.\tLe bouquin était tellement captivant que j'ai à peine pu le poser.\nThe boy fell off the bicycle and fractured his skull.\tLe garçon est tombé du vélo et s'est fait une fracture du crâne.\nThe bus stopped suddenly in the middle of the street.\tLe bus s'est arrêté subitement au milieu de la rue.\nThe car won't start because the battery has run down.\tLa voiture ne veut pas démarrer car la batterie est à plat.\nThe child was afraid of being left alone in the dark.\tL'enfant avait peur d'être laissé seul dans le noir.\nThe experience gave him an advantage over the others.\tL'expérience lui a procuré un avantage sur les autres.\nThe fence was not high enough to keep the wolves out.\tLa clôture n'était pas assez haute pour empêcher les loups d'entrer.\nThe general ordered the deployment of two battalions.\tLe général ordonna le déploiement de deux bataillons.\nThe girl was sobbing in the corner of the schoolroom.\tLa fille sanglotait au coin de la salle de classe.\nThe government should do away with these regulations.\tLe gouvernement devrait abroger ces réglementations.\nThe lady that is speaking to that boy is his teacher.\tLa femme qui parle avec ce garçon est son institutrice.\nThe lady that is speaking to that boy is his teacher.\tLa femme qui parle avec ce garçon est son professeur.\nThe letters Tom wrote to Mary were returned unopened.\tLes lettres que Tom a écrit à Mary ont été retournées non décachetées.\nThe magician asked for a volunteer from the audience.\tLe magicien a demandé un volontaire dans le public.\nThe mechanic fixed my car without charging me a dime.\tLe mécanicien a réparé ma voiture sans me charger un sou.\nThe mother was reluctant to leave her children alone.\tLa mère était réticente à l'idée de laisser ses enfants seuls.\nThe new computer is ten times as fast as the old one.\tLe nouvel ordinateur est dix fois plus rapide que l'ancien.\nThe office where my father works is near the station.\tLe bureau de mon père est près de la gare.\nThe old man narrowly escaped being run over by a car.\tLe vieil homme échappa de justesse d'être renversé par une voiture.\nThe older one grows, the weaker one's memory becomes.\tPlus on vieillit, plus on perd la mémoire.\nThe peasantry revolted wielding pitchforks and clubs.\tLa paysannerie se révolta, brandissant fourches et gourdins.\nThe police detained several suspects for questioning.\tLa police a détenu plusieurs suspects pour interrogatoire.\nThe politician tried to cover up the insider trading.\tLe politicien a essayé de couvrir le délit d'initié.\nThe population of this city is decreasing every year.\tLa population de cette ville diminue chaque année.\nThe prince fell in love with a woodcutter's daughter.\tLe prince tomba amoureux de la fille d'un bûcheron.\nThe principal shook hands with each of the graduates.\tLe directeur serra la main à chacun des diplômés.\nThe problem is that solar energy just costs too much.\tLe problème est que l'énergie solaire coûte simplement trop cher.\nThe recent frequency of earthquakes makes us nervous.\tLa récente fréquence des tremblements de terre nous rend nerveux.\nThe recent frequency of earthquakes makes us nervous.\tLa fréquence des tremblements de terre récemment nous rend nerveux.\nThe rescue party searched for the missing passengers.\tL'équipe de secours est partie à la recherche des passagers disparus.\nThe rumor that they would get married spread at once.\tLa rumeur selon laquelle ils se marieraient se répandit tout de suite.\nThe same thing could be said about many other people.\tOn pourrait dire la même chose de nombreux autres gens.\nThe sea got rough, so that we had to give up fishing.\tLa mer a commencé à forcir, aussi nous avons dû arrêter de pêcher.\nThe speed of the spread of AIDS is horrifyingly fast.\tLa vitesse de propagation du SIDA est horriblement rapide.\nThe students demonstrated against the new government.\tLes étudiants ont manifesté contre le nouveau gouvernement.\nThe teacher demonstrated the idea with an experiment.\tL'enseignant démontra l'idée par une expérience.\nThe teacher lined the children up in order of height.\tL'enseignant mit les enfants en ligne par ordre de taille.\nThe thieves divvied up the proceeds from their heist.\tLes voleurs se répartirent le butin du casse.\nThe thieves divvied up the proceeds from their heist.\tLes voleurs se sont répartis le butin du casse.\nThe train wasn't as crowded as I thought it would be.\tLe train n'était pas aussi bondé que je le pensais.\nThe train wasn't as crowded as I thought it would be.\tLe train n'était pas aussi bondé que je l'avais pensé.\nThe universe was born more than 12 billion years ago.\tL'univers est né il y a plus de 12 milliards d'années.\nThe way you sit tells a great deal about your nature.\tLa manière par laquelle tu t'assois en dit long sur ta nature.\nThe woman who he thought was his aunt was a stranger.\tLa femme qu'il prenait pour sa tante, était une étrangère.\nThe woman who he thought was his aunt was a stranger.\tLa femme qu'il tenait pour sa tante, était une étrangère.\nThere are still a lot of things that have to be done.\tIl y a encore de nombreuses choses à faire.\nThere is a lady downstairs who wants to speak to you.\tIl y a en bas une dame qui veut s'entretenir avec vous.\nThere is a lady downstairs who wants to speak to you.\tIl y a en bas une dame qui veut parler avec toi.\nThere is a large parking lot in front of the station.\tIl y a un grand parking en face de la gare.\nThere is no need to be frightened. He won't harm you.\tCe n'est pas nécessaire d'avoir peur. Il ne vous nuira pas.\nThere is so much to do, and only a lifetime to do it.\tIl y a tant à faire et seulement la durée d'une vie pour le faire.\nThere was only one case of chicken pox at the school.\tIl n'y eut qu'un seul cas de varicelle à l'école.\nThere was only one case of chicken pox at the school.\tIl n'y a eu qu'un seul cas de varicelle à l'école.\nThere were no customers, so we closed the shop early.\tIl n'y avait pas de clients, alors nous avons fermé le magasin tôt.\nThere were no customers, so we closed the shop early.\tIl n'y avait pas de clients, alors nous avons fermé tôt la boutique.\nThere's a movie I want to watch on TV tomorrow night.\tIl y a un film que je veux regarder à la télé, demain soir.\nThere's a rumor going around that you two are dating.\tIl y a une rumeur qui circule selon laquelle vous sortez ensemble tous les deux.\nThere's a scratch here. Could you give me a discount?\tIl y a une éraflure ici. Pouvez-vous m'accorder un rabais ?\nThere's no way I’m taking the rap for his mistakes.\tIl n'est pas question que je me fasse enguirlander à cause de ses erreurs.\nThese glasses do not fit me well. They are too large.\tCes lunettes ne me vont pas bien. Elles sont trop grandes.\nThese items must be returned to their rightful owner.\tCes objets doivent être rendus à leur propriétaire légitime.\nThese new computers can crunch data faster than ever.\tCes nouveaux ordinateurs peuvent mouliner les données plus vite que jamais.\nThey killed Tom as an example to the other prisoners.\tIls ont tué Tom pour montrer l'exemple aux autres prisonniers.\nThey like ragtime, jazz and music with a swing to it.\tIls aiment le Ragtime, le Jazz et la musique qui balance.\nThey like ragtime, jazz and music with a swing to it.\tElles aiment le Ragtime, le Jazz et la musique qui bouge.\nThey think the owner of the house is studying abroad.\tIls pensent que le propriétaire de la maison étudie à l'étranger.\nThey were beginning to lose faith in their commander.\tIls commençaient à perdre foi en leur commandant.\nThey were even more interested in his beautiful wife.\tIls furent encore plus intéressés par sa belle épouse.\nThey were even more interested in his beautiful wife.\tElles furent encore plus intéressées par sa belle épouse.\nThey were even more interested in his beautiful wife.\tIls ont été encore plus intéressés par sa belle épouse.\nThey were even more interested in his beautiful wife.\tElles ont été encore plus intéressées par sa belle épouse.\nThis app automatically signs you in when you open it.\tCette application vous ouvre automatiquement une session lorsque vous l'ouvrez.\nThis bread is really delicious. Where did you buy it?\tCe pain est vraiment délicieux. Où l'as-tu acheté?\nThis camera is the one that Tom bought last Thursday.\tCette caméra est celle que Tom a achetée jeudi dernier.\nThis camera is the one that Tom bought last Thursday.\tCet appareil photo est celui que Tom a acheté jeudi dernier.\nThis elevator is out of order. Please use the stairs.\tL'ascenseur est en panne. Merci d'utiliser les escaliers.\nThis is the restaurant where we had dinner last week.\tVoici le restaurant où nous avons dîné la semaine dernière.\nThis is the worst thing that has ever happened to me!\tC'est la pire des choses qui me soit jamais arrivée !\nThis morning I missed the 8:30 train by five minutes.\tCe matin j'ai raté de cinq minutes le train de 8h30.\nThis photo is too blurry. I can't make out your face.\tCette photo est trop floue. Je n'arrive pas à distinguer ton visage.\nThis photo is too blurry. I can't make out your face.\tCette photo est trop floue. Je n'arrive pas à distinguer votre visage.\nThis place is arguably the best restaurant in London.\tOn dit que cet endroit est le meilleur restaurant de Londres.\nThis report is badly written and is full of mistakes.\tCe rapport est mal écrit et plein d'erreurs.\nThis storm is not dangerous. You don't need to worry.\tCette tempête n'est pas dangereuse. Il ne faut pas vous faire de souci.\nThis storm is not dangerous. You don't need to worry.\tCette tempête n'est pas dangereuse. Il ne faut pas te faire de souci.\nThis summer we'll go to the mountains and to the sea.\tCet été, nous irons à la montagne et à la mer.\nTo cross the river, you can use a boat or the bridge.\tPour traverser le fleuve, tu peux utiliser un bateau ou le pont.\nTom agreed to be here at 2:30, but he's not here yet.\tTom a consenti à être là à 2:30, mais il ne l'est pas encore.\nTom always dresses in black or some other dark color.\tTom s'habille toujours en noir ou quelqu'autre couleur sombre.\nTom bet Mary that he could beat her at arm wrestling.\tTom a parié avec Mary qu'il pourrait la battre au bras de fer.\nTom burned all of the letters that Mary had sent him.\tTom a brûlé toutes les lettres que Marie lui avait envoyées.\nTom burned all of the letters that Mary had sent him.\tTom brûla toutes les lettres que Marie lui avait envoyées.\nTom doesn't even let his daughter go out on weekends.\tTom ne laisse même pas sa fille sortir le week-end.\nTom doesn't like women who wear way too much make up.\tTom n'aime pas les femmes qui portent trop de maquillage.\nTom dreams of owning a house in the center of Boston.\tTom rêve d'être propriétaire d'une maison dans le centre de Boston.\nTom fell asleep while driving and caused an accident.\tTom s'est endormi au volant et a causé un accident.\nTom fell asleep while driving and caused an accident.\tTom s'est endormi en conduisant et a causé un accident.\nTom finished his chores and then he did his homework.\tTom a terminé ses corvées et puis il a fait ses devoirs.\nTom finished his chores and then he did his homework.\tTom a terminé ses travaux et puis il a fait ses devoirs.\nTom had no sooner arrived than he was asked to leave.\tÀ peine Tom était-il arrivé qu'on lui demanda de partir.\nTom handed Mary a knife so she could peel the apples.\tTom passa un couteau à Marie pour qu'elle puisse éplucher les pommes.\nTom handed Mary a knife so she could peel the apples.\tTom tendit un couteau à Marie pour qu'elle puisse peler les pommes.\nTom is slowly catching up with the rest of the class.\tTom rattrape lentement le reste de la classe.\nTom is slowly catching up with the rest of the class.\tTom rattrape lentement son retard avec le reste de la classe.\nTom just wants to spend a little more time with Mary.\tTom a juste envie de passer un peu plus de temps avec Marie.\nTom likes to work in the garden before going to work.\tTom aime s'occuper de son jardin avant d'aller travailler.\nTom made it clear that he didn't like Mary very much.\tTom a clairement fait comprendre qu'il n'aimait pas beaucoup Mary.\nTom ran out of matches so he couldn't light the fire.\tTom n'avait plus d'allumettes donc il ne pouvait pas allumer le feu.\nTom said that he had been cleaning the house all day.\tTom a dit qu'il avait nettoyé la maison toute la journée.\nTom saw both Mary and John getting out of their cars.\tTom a vu Mary et John sortir de leurs voitures.\nTom spent the night in the small cabin near the lake.\tTom a passé la nuit dans la petite cabane près du lac.\nTom thinks he's a genius, but I don't agree with him.\tTom pense être un génie, mais je ne suis pas d'accord avec lui.\nTom told Mary that he didn't like her sense of humor.\tTom a dit à Marie qu'il n'aimait pas son sens de l'humour.\nTom told everybody at school about what had happened.\tTom a dit à tout le monde à l'école ce qui s'était passé.\nTom wasn't ready to accept Mary's love or friendship.\tTom n'était pas prêt à accepter l'amour de Marie, ni son amitié.\nTom whispered something in Mary's ear and she nodded.\tTom chuchota quelque chose à l'oreille de Mary et elle hocha la tête.\nTom wished that he could play tennis as well as Mary.\tTom espérait qu'il pourrait jouer au tennis aussi bien que Marie.\nTom wished that he could play tennis as well as Mary.\tTom espérait qu'il pourrait devenir un aussi bon joueur de tennis que Marie.\nTom's death has been officially ruled as an accident.\tLa mort de Tom a été officiellement écartée comme un accident.\nWe all mourned for the people killed in the accident.\tNous avons tous pleuré les gens morts dans l'accident.\nWe all mourned for the people killed in the accident.\tNous avons tous pleuré les gens décédés dans l'accident.\nWe all mourned for the people killed in the accident.\tNous avons tous pleuré les gens tués dans l'accident.\nWe can get a beautiful view of the sea from the hill.\tOn peut avoir une belle vue sur la mer depuis la colline.\nWe can save a little time if we do what Tom suggests.\tNous pouvons économiser un peu de temps si nous faisons ce que Tom suggère.\nWe can't do anything until we get back to the office.\tNous ne pouvons faire quoi que ce soit jusqu'à ce que nous retournions au bureau.\nWe can't leave Tom here. He won't survive on his own.\tNous ne pouvons pas laisser Tom ici. Il ne survivra pas tout seul.\nWe climbed higher so that we might get a better view.\tNous avons grimpé plus haut pour avoir une meilleure vue.\nWe closed the restaurant three hours early yesterday.\tNous avons fermé le restaurant trois heures plus tôt hier.\nWe communicate with one another by means of language.\tNous communiquons les uns avec les autres par l'intermédiaire de la langue.\nWe have some guys on our team who can't speak French.\tNous avons quelques gars dans notre équipe qui ne peuvent pas parler français.\nWe have to figure out a way to get out of here alive.\tNous devons trouver un moyen de sortir d'ici en vie.\nWe have to figure out a way to get out of here alive.\tIl nous faut trouver un moyen de sortir d'ici en vie.\nWe insist that a meeting be held as soon as possible.\tNous insistons pour qu'une réunion soit organisée le plus tôt possible.\nWe looked out the window, but we didn't see anything.\tNous avons regardé par la fenêtre, mais nous n'avons rien vu.\nWe need to think together about the future of Europe.\tNous devons réfléchir ensemble au futur de l'Europe.\nWe need to think together about the future of Europe.\tNous devons réfléchir ensemble à l'avenir de l'Europe.\nWe provided the flood victims with food and clothing.\tNous avons fourni aux victimes de l'inondation de la nourriture et des vêtements.\nWe should have taken the schedule into consideration.\tNous aurions dû prendre en compte les horaires.\nWe tied him up so that he wouldn't be able to escape.\tNous l'avons attaché pour qu'il ne s'échappe pas.\nWe took advantage of the fine weather to play tennis.\tNous avons profité du beau temps pour jouer au tennis.\nWe tried to get him to change his mind, but couldn't.\tNous avons tenté en vain de le faire changer d'avis.\nWe waited in the movie theater for the film to start.\tNous avons attendu le début du film dans la salle de cinéma.\nWe were caught in a shower while we were on a picnic.\tOn s'est retrouvé sous une pluie diluvienne pendant qu'on pique-niquait.\nWe were granted the privilege of fishing in this bay.\tOn nous a octroyé le privilège de pouvoir pêcher dans cette baie.\nWe were in the living room when we heard the gunshot.\tNous nous trouvions dans le salon lorsque nous entendîmes le coup de feu.\nWe were in the living room when we heard the gunshot.\tNous nous trouvions dans le salon lorsque nous entendîmes la détonation.\nWe were in the living room when we heard the gunshot.\tNous nous trouvions dans le salon lorsque nous avons entendu le coup de feu.\nWe were in the living room when we heard the gunshot.\tNous nous trouvions dans le salon lorsque nous avons entendu la détonation.\nWe would move to a bigger house if we had more money.\tNous déménagerions dans une maison plus grande si nous avions plus d'argent.\nWe're in the second week of an unrelenting heat wave.\tNous sommes dans la deuxième semaine d'une implacable vague de chaleur.\nWe're not going to leave Mary alone with Tom, are we?\tNous n'allons pas laisser Mary seule avec Tom, n'est-ce pas ?\nWhat I'm about to say is strictly between you and me.\tCe que je vais dire doit seulement rester entre nous.\nWhat a wonderful morning! I feel on top of the world.\tQuelle merveilleuse matinée ! Je me sens sur le toit du monde.\nWhat do you do when you don't have time to eat lunch?\tQue fais-tu lorsque tu n'as pas le temps de déjeuner ?\nWhat do you do when you don't have time to eat lunch?\tQue faites-vous lorsque vous n'avez pas le temps de déjeuner ?\nWhat do you do when you don't have time to eat lunch?\tQue fait-on lorsque on n'a pas le temps de déjeuner ?\nWhat time does the shuttle bus leave for the airport?\tÀ quelle heure part la navette pour l'aéroport ?\nWhat's new with you? How is your new job working out?\tQuoi de neuf ? Comment se passe ton nouvel emploi ?\nWhatever happens, I want you to know that I love you.\tQuoi qu'il arrive, je veux que tu saches que je t'aime.\nWhatever happens, I want you to know that I love you.\tQuoi qu'il arrive, je veux que vous sachiez que je vous aime.\nWhatever happens, I want you to know that I love you.\tQuoi qu'il arrive, je veux que tu saches que je vous aime.\nWhen Tom stopped for a stop sign, his engine stalled.\tLorsque Tom s'est arrêté au stop, son engin a calé.\nWhen her husband died, she felt like killing herself.\tLorsque son mari mourut, elle voulut se tuer.\nWhen it comes to sweets, I just can't control myself.\tPour les sucreries, je ne sais pas me contrôler.\nWhen you can't do what you want, you do what you can.\tQuand on ne peut pas faire ce que l’on veut, on fait ce que l’on peut.\nWhenever I hear that song, I think of a certain girl.\tChaque fois que j'entends cette chanson, je pense à une certaine fille.\nWhich kind of watch do you prefer, digital or analog?\tQuelle sorte de montre préfères-tu ? Numérique ou analogique ?\nWhich one do you prefer, the red one or the blue one?\tLequel tu préfères, le rouge ou le bleu ?\nWho is the man sitting at the other end of the table?\tQui est l'homme qui est assis à l'autre bout de la table ?\nWhy didn't you tell me that you wanted to go camping?\tPourquoi ne pas m'avoir dit que vous vouliez aller camper ?\nWhy didn't you try the dress on before you bought it?\tPourquoi n'as-tu pas essayé la robe avant de l'acheter ?\nWhy do you say one thing, and then go and do another?\tPourquoi dis-tu une chose et ensuite tu y vas et tu fais autre chose ?\nWhy do you say one thing, and then go and do another?\tPourquoi dites-vous une chose et ensuite vous y allez et vous faites autre chose ?\nWhy don't we think about this for another week or so?\tPourquoi ne réfléchissons-nous pas à ceci pendant plus ou moins une semaine supplémentaire ?\nWhy don't you come over and eat with us this evening?\tPourquoi ne viens-tu pas ici manger avec nous ce soir ?\nWhy don't you come over and eat with us this evening?\tPourquoi ne venez-vous pas ici manger avec nous ce soir ?\nWomen in that country are fighting for their freedom.\tLes femmes de ce pays se battent pour leur liberté.\nWould you carry this down to the second floor for me?\tVoudriez-vous me descendre ceci au premier étage ?\nWould you like to take part in this risky experiment?\tVeux-tu participer à cette expérience risquée ?\nWrite down the facts needed to convince other people.\tÉcrivez les faits nécessaires pour convaincre d'autres gens.\nWrite down the facts needed to convince other people.\tÉcrivez les faits nécessaires pour convaincre les autres gens.\nYesterday, Mary cleaned the house and washed clothes.\tHier, Mary a nettoyé la maison et lavé des vêtements.\nYou are, hands down, the biggest idiot I've ever met.\tTu es sans conteste le pire des idiots que j'ai jamais rencontrés.\nYou are, hands down, the biggest idiot I've ever met.\tTu es, haut la main, le pire des idiots que j'aie jamais rencontré.\nYou can never tell how long these meetings will last.\tOn ne sait jamais combien de temps dureront ces réunions.\nYou can't fix it in the amount of time you have left.\tVous ne pouvez pas le réparer au cours de la somme de temps qui vous reste.\nYou can't force me to do anything I don't want to do.\tTu ne peux pas me forcer à faire quelque chose que je ne veux pas faire.\nYou can't force me to do anything I don't want to do.\tVous ne pouvez pas me forcer à faire quelque chose que je ne veux pas faire.\nYou don't have to eat with Tom, but I wish you would.\tTu n'es pas forcé de manger avec Tom, mais je souhaiterais que tu le fasses.\nYou don't have to talk about it if you don't want to.\tTu n'es pas obligé d'en parler si tu ne veux pas.\nYou don't have to talk about it if you don't want to.\tTu n'es pas obligée d'en parler si tu ne veux pas.\nYou don't have to talk about it if you don't want to.\tVous n'êtes pas obligé d'en parler si vous ne voulez pas.\nYou don't have to talk about it if you don't want to.\tVous n'êtes pas obligée d'en parler si vous ne voulez pas.\nYou don't have to talk about it if you don't want to.\tVous n'êtes pas obligés d'en parler si vous ne voulez pas.\nYou don't have to talk about it if you don't want to.\tVous n'êtes pas obligées d'en parler si vous ne voulez pas.\nYou don't have to talk about it if you don't want to.\tVous n'êtes pas obligé d'en parler si vous ne le voulez pas.\nYou don't have to talk about it if you don't want to.\tVous n'êtes pas obligée d'en parler si vous ne le voulez pas.\nYou don't have to talk about it if you don't want to.\tVous n'êtes pas obligés d'en parler si vous ne le voulez pas.\nYou don't have to talk about it if you don't want to.\tVous n'êtes pas obligées d'en parler si vous ne le voulez pas.\nYou don't have to talk about it if you don't want to.\tTu n'es pas obligée d'en parler si tu ne le veux pas.\nYou don't have to talk about it if you don't want to.\tTu n'es pas obligé d'en parler si tu ne le veux pas.\nYou don't know why Tom didn't come yesterday, do you?\tVous ne savez pas pourquoi Tom était absent hier, n'est-ce pas ?\nYou gave me your word that you would look after them.\tTu m'as promis que tu prendrais soin d'eux.\nYou gave me your word that you would look after them.\tVous m'avez promis que vous prendriez soin d'eux.\nYou might want to have someone look into that matter.\tTu voudrais peut-être que quelqu'un creuse cette affaire.\nYou might want to have someone look into that matter.\tVous voudriez peut-être que quelqu'un creuse cette affaire.\nYou need to set the record straight once and for all.\tTu dois remettre les pendules à l'heure une bonne fois pour toutes.\nYou need to set the record straight once and for all.\tVous devez remettre les pendules à l'heure une bonne fois pour toutes.\nYou never can tell what you might find at that store.\tOn ne peut jamais dire ce qu'on pourrait trouver dans ce magasin.\nYou ought to keep working while you have your health.\tTu devrais continuer à travailler tant que tu as la santé.\nYou pay for the convenience of living near a station.\tTu paies l'avantage de vivre à proximité d'une gare.\nYou really should get this agreement down in writing.\tVous devriez vraiment obtenir cet accord par écrit.\nYou should assume that email messages aren't private.\tOn devrait supposer que les courriels ne sont pas privés.\nYou should look after the children from time to time.\tTu devrais surveiller les enfants de temps en temps.\nYou should look over the contract before you sign it.\tTu devrais parcourir le contrat avant de le signer.\nYou shouldn't eat any fish that come from this river.\tVous ne devriez pas manger de poisson provenant de cette rivière.\nYou shouldn't let your girlfriend borrow your iPhone.\tTu ne devrais pas laisser ta copine emprunter ton iPhone.\nYou shouldn't let your girlfriend borrow your iPhone.\tVous ne devriez pas laisser votre petite amie emprunter votre iPhone.\nYou sort of hinted that you wanted me to ask you out.\tTu as insinué à demi-mot que tu voulais que je t'invite à sortir.\nYou sort of hinted that you wanted me to ask you out.\tVous avez insinué à demi-mot que vous vouliez que je vous invite à sortir.\nYou sound like you don't want to be an archaeologist.\tÀ t'entendre, on dirait que tu ne veux pas être archéologue.\nYou sound like you don't want to be an archaeologist.\tÀ vous entendre, on dirait que vous ne voulez pas être archéologue.\nYou want me to do your dirty work for you, don't you?\tTu veux que je fasse ton sale boulot pour toi, n'est-ce pas ?\nYou want me to do your dirty work for you, don't you?\tVous voulez que je fasse votre sale boulot pour vous, n'est-ce pas ?\nYou'll have to wait at least an hour to get a ticket.\tVous devrez attendre au moins une heure pour obtenir un billet.\nYou'll strain your eyes trying to read in this light.\tTu vas fatiguer tes yeux à essayer de lire dans cette lumière.\nYou'll strain your eyes trying to read in this light.\tVous allez fatiguer vos yeux à essayer de lire dans cette lumière.\nYoung as he is, he has a large family to provide for.\tJeune comme il est, il a une grande famille à nourrir.\n\"Do you have anything to do?\" \"Nothing in particular.\"\t« Avez-vous quelque chose à faire ? » « Rien de spécial. »\n\"Superman\" is showing at the movie theater this month.\t\"Superman\" sort ce mois-ci au cinéma.\nA combination of several mistakes led to the accident.\tUne combinaison de plusieurs erreurs conduisit à l'accident.\nA combination of several mistakes led to the accident.\tUne combinaison de plusieurs erreurs a conduit à l'accident.\nA contract with that company is worth next to nothing.\tUn contrat avec cette entreprise ne vaut quasiment rien.\nA dictionary is an important aid in language learning.\tQuand on étudie les langues, le dictionnaire est d'une aide précieuse.\nA foreign language cannot be mastered in a year or so.\tUne langue étrangère ne peut être maîtrisée en un an et quelques.\nA good case can be made for the legalization of drugs.\tUne bonne défense peut être faite de la légalisation de la drogue.\nA heavy snow fell in Kyoto for the first time in ages.\tUne lourde neige tomba sur Kyoto pour la première fois depuis des lustres.\nA new museum is being built in the center of the city.\tOn construit un nouveau musée dans le centre-ville.\nA note was attached to the document with a paper clip.\tUne note était attachée au document avec un trombone.\nA piece of bread was not enough to satisfy his hunger.\tUn morceau de pain n'était pas suffisant pour apaiser sa faim.\nA trust fund has been set up for each of the children.\tUn fonds fiduciaire a été mis en place pour chacun des enfants.\nAccording to the weather report, it will snow tonight.\tSelon le bulletin de la météo, il neigera ce soir.\nAfter a couple of drinks, the guy was feeling no pain.\tAprès quelques verres le type n'avait plus mal.\nAfter a slow summer season, business began to pick up.\tAprès une saison estivale morose, les affaires commencèrent à reprendre.\nAfter my leg heals, I'll be able to move around again.\tAprès que ma jambe soit guérie, je serai de nouveau capable de me mouvoir.\nAfter six games, Sampras had the edge on his opponent.\tAprès six jeux, Sampras prit l'avantage sur son rival.\nAfter the game, he went straight home to feed his dog.\tAprès la partie, il se rendit directement chez lui pour nourrir son chien.\nAfter the game, he went straight home to feed his dog.\tAprès la partie, il s'est rendu directement chez lui pour nourrir son chien.\nAll the songs I sang for you today were written by me.\tToutes les chansons que je vous ai chantées aujourd'hui ont été écrites par moi.\nAll the songs I sang for you today were written by me.\tJe suis l'auteur de toutes les chansons que je vous ai chantées aujourd'hui.\nAn argument may be logically sound without being true.\tUn argument peut être logiquement sensé sans être vrai.\nAn article about our school appeared in the newspaper.\tUn article concernant notre école a été publié dans le journal.\nAncient archeological sites are under threat in Syria.\tDes sites archéologiques antiques sont menacés en Syrie.\nApparently, there is nothing that cannot happen today.\tApparemment, il n'y a rien qui ne puisse se produire aujourd'hui.\nAre you able to buy a ticket after boarding the train?\tPeut-on acheter un billet à bord du train ?\nAre you planning on staying in Boston for a long time?\tEnvisagez-vous de rester à Boston pour une longue période?\nAre you saying you don't want to be a teacher anymore?\tEs-tu en train de dire que tu ne veux plus être enseignant ?\nAre you saying you don't want to be a teacher anymore?\tEs-tu en train de dire que tu ne veux plus être enseignante ?\nAre you saying you don't want to be a teacher anymore?\tÊtes-vous en train de dire que vous ne voulez plus être enseignant ?\nAre you saying you don't want to be a teacher anymore?\tÊtes-vous en train de dire que vous ne voulez plus être enseignante ?\nAre you seriously thinking about selling this on eBay?\tPenses-tu sérieusement à vendre ça sur eBay ?\nAre you seriously thinking about selling this on eBay?\tPensez-vous sérieusement à vendre ça sur eBay ?\nAre you sure you want to leave without saying goodbye?\tEs-tu sûr que tu veuilles partir sans dire au revoir ?\nAre you sure you want to leave without saying goodbye?\tEs-tu sûre que tu veuilles partir sans dire au revoir ?\nAre you sure you want to leave without saying goodbye?\tÊtes-vous sûr que vous veuillez partir sans dire au revoir ?\nAre you sure you want to leave without saying goodbye?\tÊtes-vous sûrs que vous veuillez partir sans dire au revoir ?\nAre you sure you want to leave without saying goodbye?\tÊtes-vous sûre que vous veuillez partir sans dire au revoir ?\nAre you sure you want to leave without saying goodbye?\tÊtes-vous sûres que vous veuillez partir sans dire au revoir ?\nAre you sure you want to leave without saying goodbye?\tÊtes-vous sûr que vous vouliez partir sans dire au revoir ?\nAre you sure you want to leave without saying goodbye?\tÊtes-vous sûre que vous vouliez partir sans dire au revoir ?\nAre you sure you want to leave without saying goodbye?\tÊtes-vous sûrs que vous vouliez partir sans dire au revoir ?\nAre you sure you want to leave without saying goodbye?\tÊtes-vous sûres que vous vouliez partir sans dire au revoir ?\nAs he gets older, he's getting more and more stubborn.\tEn vieillissant, il devient de plus en plus têtu.\nAs soon as he went out of the house, it began to rain.\tDès qu'il sortit de la maison, il commença à pleuvoir.\nAs soon as we get the tickets, we'll send them to you.\tDès que nous aurons les tickets, nous vous les enverrons.\nAs these trees grow tall, they rob the grass of light.\tÀ mesure que les arbres grandissent, ils privent l'herbe de lumière.\nAs we went around the corner, the lake came into view.\tAlors que nous atteignions le coin, le lac nous apparut.\nBe careful not to drive on the wrong side of the road.\tFais attention à ne pas conduire du mauvais côté de la route !\nBe careful not to drive on the wrong side of the road.\tFaites attention à ne pas conduire du mauvais côté de la route !\nBe sure to turn off the light when you leave the room.\tAssurez-vous d'éteindre la lumière quand vous quittez la pièce.\nBecause I live near the school, I come home for lunch.\tParce que j'habite près de l'école, je rentre à la maison pour le déjeuner.\nBecause of the water shortage, I couldn't take a bath.\tÀ cause de la pénurie d'eau, je n'ai pas pu prendre de bain.\nBeing deeply thankful, he tried to express his thanks.\tÉtant profondément reconnaissant, il tenta d'exprimer ses remerciements.\nBetween you and me, I don't like our new team captain.\tDe toi à moi, je n'apprécie pas notre capitaine d'équipe.\nBlow out all the candles on the birthday cake at once.\tSouffle toutes les bougies du gâteau d'anniversaire d'un coup.\nCall me if you want to do something together tomorrow.\tAppelle-moi si tu veux que nous fassions quelque chose ensemble, demain.\nCall me if you want to do something together tomorrow.\tAppelez-moi si vous voulez que nous fassions quelque chose ensemble, demain.\nCall me if you want to do something together tomorrow.\tAppelle-moi si vous voulez que nous fassions quelque chose ensemble, demain.\nCan you remember the first time you heard the Beatles?\tArrives-tu à te rappeler la première fois que tu as entendu les Beatles ?\nCan you remember the first time you heard the Beatles?\tArrivez-vous à vous rappeler la première fois que vous avez entendu les Beatles ?\nCould you please pull the weeds and water the flowers?\tPeux-tu, s'il te plait, arracher les mauvaises herbes et arroser les fleurs ?\nDid you break up with Tom or did he break up with you?\tAs-tu rompu avec Tom ou a-t-il rompu avec toi ?\nDid you catch anything the last time you went fishing?\tAs-tu attrapé quelque chose la dernière fois que tu es allé pêcher ?\nDo you have an extra English dictionary by any chance?\tAvez-vous un dictionnaire d'anglais supplémentaire, par hasard ?\nDo you have any questions about what needs to be done?\tAvez-vous de quelconques questions à propos de ce qu'il faut faire ?\nDo you know where to go or who to ask for information?\tSais-tu où te rendre ou à qui demander pour obtenir des informations ?\nDo you know where to go or who to ask for information?\tSavez-vous où vous rendre ou à qui demander pour obtenir des informations ?\nDo you really want this information to be made public?\tVeux-tu réellement que cette information soit rendue publique ?\nDo you really want this information to be made public?\tVoulez-vous réellement que cette information soit rendue publique ?\nDo you think that you can put your idea into practice?\tPenses-tu que tu puisses mettre ton idée en pratique ?\nDo you think that you can put your idea into practice?\tPensez-vous pouvoir mettre votre idée en pratique ?\nDon't be so glum about it. Life has its ups and downs.\tNe sois pas triste pour ça. Dans la vie il y a des hauts et des bas.\nDon't let me catch you doing anything like this again.\tQue je ne vous attrape plus à nouveau à faire quoi que ce soit du genre !\nDon't let me catch you doing anything like this again.\tQue je ne t'attrape plus à nouveau à faire quoi que ce soit du genre !\nDon't throw away this magazine. I haven't read it yet.\tNe jetez pas ce magazine. Je ne l'ai pas encore lu.\nEnglish is a very important language in today's world.\tL'anglais est une langue très importante dans le monde actuel.\nEven if it rains, I will start early tomorrow morning.\tMême s'il pleut, je partirai tôt demain matin.\nEven though he was sick, the boy still went to school.\tBien qu'il fut malade, le garçon alla néanmoins à l'école.\nEvery day I either ride a bike or get the bus to work.\tTous les jours, je me rends au travail soit en vélo, soit en bus.\nEvery time I read this book, I discover something new.\tChaque fois que je lis ce livre, je découvre quelque chose de nouveau.\nEvery time she coughed, she felt a great deal of pain.\tChaque fois qu'elle toussait, elle ressentait une forte douleur.\nEvery time she coughed, she felt a great deal of pain.\tChaque fois qu'elle toussait, elle ressentait de fortes douleurs.\nEverywhere he stopped, the people welcomed him warmly.\tPartout où il s'arrêtait, les gens l'accueillaient chaleureusement.\nEverywhere you look you can see young couples kissing.\tOù que l'on regarde, on peut voir de jeunes couples en train de s'embrasser.\nEverywhere you look you can see young couples kissing.\tOù que l'on porte le regard, on peut voir de jeunes couples en train de s'embrasser.\nExercise is to the body what thinking is to the brain.\tLe sport est au corps ce que la pensée est au cerveau.\nFar from hesitating, she willingly offered to help me.\tLoin d'hésiter, elle m'a proposé son aide bien volontiers.\nFather comes home from work about nine in the evening.\tMon père rentre du travail vers neuf heures du soir.\nFrankly speaking, your way of thinking is out of date.\tFranchement, ta manière de penser est dépassée.\nGenerally speaking, men can run faster than women can.\tD'une façon générale, les hommes peuvent courir plus vite que les femmes.\nGoing out drinking with the guys makes him feel macho.\tSortir boire avec ses copains la fait se sentir un mec.\nHave you already told Tom about what happened to Mary?\tAs-tu déjà dit à Tom ce qui est arrivé à Mary ?\nHave you already told Tom about what happened to Mary?\tAvez-vous déjà dit à Tom ce qui est arrivé à Mary ?\nHave you been told the reasons why we didn't hire you?\tT'a-t-on dit les raisons pour lesquelles nous ne t'avons pas embauché ?\nHave you been told the reasons why we didn't hire you?\tVous a-t-on dit les raisons pour lesquelles nous ne vous avons pas embauché ?\nHave you been told the reasons why we didn't hire you?\tVous a-t-on dit les raisons pour lesquelles nous ne vous avons pas embauchée ?\nHave you been told the reasons why we didn't hire you?\tVous a-t-on dit les raisons pour lesquelles nous ne vous avons pas embauchés ?\nHave you been told the reasons why we didn't hire you?\tVous a-t-on dit les raisons pour lesquelles nous ne vous avons pas embauchées ?\nHave you been told the reasons why we didn't hire you?\tT'a-t-on dit les raisons pour lesquelles nous ne t'avons pas embauchée ?\nHe attended the meeting as our company representative.\tIl participa à la réunion en tant que représentant de notre société.\nHe attended the meeting as the company representative.\tIl participa à la réunion en qualité de représentant de notre société.\nHe banged his head against a shelf and got a big lump.\tIl s'est cogné la tête contre une étagère et s'est fait un gros hématome.\nHe brought food to his guest and provided him shelter.\tIl apporta de la nourriture à son invité et lui procura un abri.\nHe brought food to his guest and provided him shelter.\tIl apporta de la nourriture à son invitée et lui procura un abri.\nHe cooked up a good excuse for not going to the party.\tIl concocta une bonne excuse pour ne pas venir à la fête.\nHe could show his feeling with music instead of words.\tIl a pu montrer ses sentiments par la musique plutôt que par les mots.\nHe couldn't fulfill the promise he made to his father.\tIl n'a pas pu remplir la promesse qu’il a faite à son père.\nHe did well in all subjects, particularly mathematics.\tIl était bon dans toutes les matières, particulièrement en mathématiques.\nHe failed to escape from the fire and burned to death.\tTardant à s'échapper de l'incendie, il est mort.\nHe fumbled with the keys before finding the right one.\tIl farfouilla les clés avant de trouver la bonne.\nHe graduated from some rinky-dink college in Oklahoma.\tIl est diplômé d'une faculté de seconde zone en Oklahoma.\nHe gritted his teeth and forced back his growing fear.\tIl serra les dents et refoula sa peur croissante.\nHe had his sister help him paint the wall of his room.\tIl a pu avoir l'aide de sa sœur pour peindre le mur de sa chambre.\nHe has a lot of difficulty seeing without his glasses.\tIl a beaucoup de difficulté à voir sans ses lunettes.\nHe has been playing chess since he was in high school.\tIl joue aux échecs depuis qu'il est au Lycée.\nHe implied that something was wrong with his marriage.\tIl sous-entendait que quelque chose n'allait pas dans son mariage.\nHe looks pale. He must have drunk too much last night.\tIl n'a pas l'air bien. Il a dû trop boire la nuit dernière.\nHe made use of the opportunity to improve his English.\tIl a profité de cette opportunité pour améliorer son anglais.\nHe moved to a good company that offered a good salary.\tIl est parti pour une bonne entreprise qui proposait un bon salaire.\nHe never speaks English without making a few mistakes.\tIl ne parle jamais anglais sans commettre quelques erreurs.\nHe not only speaks French, but he speaks Spanish, too.\tIl ne parle pas seulement en français, mais aussi en espagnol.\nHe not only speaks French, but he speaks Spanish, too.\tIl ne parle pas que français, mais aussi espagnol.\nHe pleaded with his mother to let him go to the party.\tIl implora sa mère de le laisser aller à la fête.\nHe read the letter with tears running down his cheeks.\tIl lut la lettre, les larmes lui coulant le long des joues.\nHe tried to give up smoking several times, but failed.\tIl a essayé d'arrêter de fumer plusieurs fois mais il a échoué.\nHe was so immature, he couldn't resist the temptation.\tIl était si puéril, qu'il ne pouvait pas résister à la tentation.\nHe went around the neighborhood collecting signatures.\tIl a fait le tour du quartier en récupérant des signatures.\nHe went to France to brush up on his speaking ability.\tIl est allé en France pour remettre à niveau son aptitude à parler la langue.\nHe went to art school to study painting and sculpture.\tIl fréquenta une académie des beaux-arts afin d'étudier la peinture et la sculpture.\nHe winced as the nurse pushed the needle into his arm.\tIl grimaça tandis que l'infirmière enfonçait l'aiguille dans son bras.\nHe'll have many hardships to go through in the future.\tNous aurons de nombreuses difficultés à surmonter dans le futur.\nHe's somewhat hard of hearing, so please speak louder.\tIl est un peu dur d'oreille, alors veuillez parler plus fort.\nHer mind is filled with dreams of becoming an actress.\tSon esprit est rempli de rêves de devenir une actrice.\nHis wife is worn out after looking after the children.\tSa femme est épuisée après avoir surveillé les enfants.\nHow can anyone sleep with all this commotion going on?\tComment quiconque peut-il dormir avec tout ce boucan ?\nHow do I know that you're not going to try to kill me?\tComment sais-je que vous n'allez pas essayer de me tuer ?\nHow do I know that you're not going to try to kill me?\tComment sais-je que tu ne vas pas essayer de me tuer ?\nHow is that question germane to what we're discussing?\tEn quoi cette question se rapporte-t-elle à ce dont nous discutons ?\nHow long does it take from here to your house on foot?\tCombien de temps cela prend-il à pied d'ici à chez toi ?\nHow long does it take to walk to your house from here?\tCombien de temps cela prend-il de marcher d'ici à chez toi ?\nHow long does it take to your office from the airport?\tCombien de temps cela prend-il depuis l'aéroport jusqu'à votre bureau ?\nHow long does it take to your office from the airport?\tCombien de temps cela prend-il depuis l'aéroport à ton bureau ?\nHow long has it been since you've seen your boyfriend?\tDepuis quand n'avez-vous pas vu votre petit ami ?\nHow many different pieces are there in Japanese chess?\tCombien de pièces différentes comportent les échecs japonais ?\nHow many hours does it take to go to Okinawa by plane?\tCombien d'heures faut-il pour aller à Okinawa en avion ?\nHow many times a minute does the average person blink?\tCombien de fois par minute une personne moyenne cligne-t-elle des yeux ?\nHow much money do you spend on textbooks per semester?\tCombien d'argent dépenses-tu en manuels chaque semestre ?\nI always stretch my leg muscles before playing tennis.\tJ'étire toujours les muscles de mes jambes avant de jouer au tennis.\nI am convinced that things will change for the better.\tJe suis convaincu que les choses vont changer pour le mieux.\nI am not sure whether I will be able to come with you.\tJe ne suis pas sûr de pouvoir venir avec toi.\nI am not sure whether I will be able to come with you.\tJe ne suis pas sûr de pouvoir venir avec vous.\nI can barely remember what my grandfather looked like.\tJe peux à peine me souvenir à quoi mon grand-père ressemblait.\nI can hardly wait to get home and sleep in my own bed.\tJe suis impatient d'être à la maison et de dormir dans mon propre lit.\nI can tell you things you won't hear from anyone else.\tJe peux te raconter des choses que tu n'entendras de personne d'autre.\nI can't afford to buy a used car, much less a new one.\tJe ne peux pas me permettre d'acheter une voiture d'occasion, et encore moins une nouvelle.\nI can't believe we haven't run into each other before.\tJe n'arrive pas à croire que nos chemins ne se soient pas croisés auparavant.\nI can't believe you didn't recognize your own brother.\tJe n'arrive pas à croire que tu n'aies pas reconnu ton propre frère.\nI can't believe you didn't recognize your own brother.\tJe n'arrive pas à croire que vous n'ayez pas reconnu votre propre frère.\nI can't believe you don't want butter on your popcorn.\tJe n'arrive pas à croire que tu ne veuilles pas de beurre sur ton pop-corn.\nI can't believe you're taking pictures of cockroaches.\tJe n'arrive pas à croire que tu prends des clichés de cafards.\nI can't conceive how I could have made such a mistake.\tJe ne comprends pas comment j'ai pu faire une erreur pareille.\nI can't figure out how to post a comment to this blog.\tJe n'arrive pas à trouver comment publier un commentaire sur ce journal.\nI can't put up with the inconvenience of country life.\tJe n'arrive pas à supporter les désagréments de la vie à la campagne.\nI can't remember her address no matter how much I try.\tPeu importe à quel point j'essaie, je n'arrive pas à me rappeler son adresse.\nI can't solve this problem. It's too difficult for me.\tJe ne peux pas résoudre ce problème ; il est trop difficile pour moi.\nI can't tell you any more, I've already said too much.\tJe ne peux pas t'en dire plus, j'en ai déjà trop dit.\nI can't tell you any more, I've already said too much.\tJe ne peux pas vous en dire plus, j'en ai déjà trop dit.\nI can't thank you enough for the help you've given me.\tJe ne sais assez vous remercier pour l'aide que vous m'avez fournie.\nI can't thank you enough for the help you've given me.\tJe ne sais assez te remercier pour l'aide que tu m'as fournie.\nI cannot disclose any information about the informant.\tJe ne peux dévoiler aucune information au sujet de l'informateur.\nI carefully took down everything that my teacher said.\tJ'ai soigneusement noté toutes les choses que le professeur avait dites.\nI changed the arrangement of the furniture in my room.\tJ'ai changé la disposition des meubles de ma pièce.\nI convinced Tom that he should go to Boston with Mary.\tJ'ai persuadé Tom d'aller à Boston avec Mary.\nI don't believe half of what I've been told about you.\tJe ne crois pas la moitié de ce qu'on m'a dit sur toi.\nI don't believe half of what I've been told about you.\tJe ne crois pas la moitié de ce qu'on m'a dit sur vous.\nI don't have a dress good enough for such an occasion.\tJe n'ai pas de robe assez bonne pour une telle occasion.\nI don't have time to be bothered by such small things.\tJe n'ai pas le temps de me soucier de ce genre de futilités.\nI don't know whether he will agree to our plan or not.\tJe ne sais pas s'il sera d'accord ou non avec notre projet.\nI don't suppose there's much chance of that happening.\tJe ne suppose pas qu'il y ait de grandes chances que ça arrive.\nI don't suppose there's much chance of that happening.\tJe ne suppose pas qu'il y ait de grandes chances que ça se produise.\nI don't suppose there's much chance of that happening.\tJe ne suppose pas qu'il y ait de grandes chances que ça survienne.\nI don't think any of us are happy about what happened.\tJe ne pense pas qu'aucun d'entre nous soit heureux de ce qui s'est passé.\nI don't think any of us are happy about what happened.\tJe ne pense pas qu'aucune d'entre nous soit heureuse de ce qui s'est passé.\nI don't think being poor is anything to be ashamed of.\tJe ne crois pas qu'on doive avoir honte d'être pauvre.\nI don't think being poor is anything to be ashamed of.\tJe ne pense pas qu'être pauvre soit quelque chose dont on doit avoir honte.\nI don't think that you should worry about it too much.\tJe ne pense pas que vous devriez vous faire trop de mouron à ce sujet.\nI don't think that you should worry about it too much.\tJe ne pense pas que tu devrais te faire trop de bile à ce sujet.\nI don't want to be rich. I just don't want to be poor.\tJe ne veux pas être riche. Je ne veux juste pas être pauvre.\nI don't want to waste my time trying to do this again.\tJe ne veux pas gaspiller mon temps à essayer de le refaire.\nI failed to catch the last bus, and came home by taxi.\tJe n'ai pas réussi à attraper le dernier bus et suis rentré à la maison en taxi.\nI fed my dog what I thought was good quality dog food.\tJ'ai donné à mon chien ce que je croyais être de la nourriture canine de qualité.\nI feel better today, but I am not well enough to work.\tAujourd'hui je me sens mieux, mais je ne suis pas assez bien pour travailler.\nI finally understand the basic principles of calculus.\tJe comprends finalement les principes de base du calcul.\nI finally understand the basic principles of calculus.\tJe comprends finalement les principes de base des calculs.\nI finally understand the basic principles of calculus.\tJe comprends finalement les principes de base du tartre.\nI found it difficult to understand what he was saying.\tJ'ai eu du mal à saisir ce qu'il disait.\nI found it rather difficult to make myself understood.\tJ'ai eu beaucoup de difficultés à me faire comprendre.\nI found this book by chance in a secondhand bookstore.\tJ'ai trouvé ce livre par hasard dans une librairie qui vend des livres d'occasion.\nI got up early, so that I could catch the first train.\tJe me suis levé tôt de façon à pouvoir attraper le premier train.\nI grabbed my little sister's hand and started running.\tJe saisis la main de ma petite sœur et me mit à courir.\nI had an argument with Tom about the use of marijuana.\tJe me suis disputé avec Tom à propos de l'usage de marijuana.\nI had to work hard to keep up with the other students.\tJ'ai dû travailler dur pour suivre le rythme des autres élèves.\nI have a part-time job working as a Santa at the mall.\tJ'ai un boulot à temps partiel à travailler comme Père-Noël à la galerie commerciale.\nI hear that even taxi drivers often get lost in Tokyo.\tJ'ai entendu dire que même les chauffeurs de taxi se perdent souvent dans Tokyo.\nI held the conch to my ear and heard the ocean inside.\tJe tins la conque à mon oreille et entendis l'océan à l'intérieur.\nI imagine that you went through a lot of difficulties.\tJ'imagine que vous avez traversé nombre de difficultés.\nI just want to let you know that I won't let you down.\tJe veux juste te faire savoir que je ne te laisserai pas tomber.\nI just want to let you know that I won't let you down.\tJe veux juste vous faire savoir que je ne vous laisserai pas tomber.\nI knew I shouldn't have done it, but I did it anyways.\tJe savais que je n'aurais pas dû le faire, mais je l'ai tout de même fait.\nI knew I shouldn't have done it, but I did it anyways.\tJe savais que je n'aurais pas dû le faire, mais je l'ai fait quand même.\nI know an American girl who speaks Japanese very well.\tJe connais une fille Américaine qui parle très bien le japonais.\nI live near the sea so I often get to go to the beach.\tJ'habite près de la mer donc j'ai souvent l'occasion d'aller à la plage.\nI lost track of all time during our walk in the woods.\tJ'ai perdu toute notion du temps lors de notre promenade dans les bois.\nI make it a rule to brush my teeth before I go to bed.\tJ'ai pour principe de me brosser les dents avant d'aller au lit.\nI mistook her for her sister. They look so much alike.\tJe l'ai prise pour sa sœur. Elles se ressemblent tellement.\nI read the article about you in yesterday's newspaper.\tJ'ai lu l'article sur vous dans le journal d'hier.\nI read the article about you in yesterday's newspaper.\tJ'ai lu l'article sur toi dans le journal d'hier.\nI read the article about you in yesterday's newspaper.\tJ'ai lu l'article vous concernant dans le journal d'hier.\nI read the article about you in yesterday's newspaper.\tJ'ai lu l'article te concernant dans le journal d'hier.\nI saw him walking around town wearing his Sunday best.\tJe l'ai vu marcher à travers la ville dans son costume du dimanche.\nI suggest we drink as little as possible to be polite.\tJe suggère que nous buvions aussi peu que possible pour être polis.\nI think it's time for me to get a new pair of glasses.\tJe pense qu'il est temps que je trouve une nouvelle paire de lunettes.\nI think it's time for me to get a new pair of glasses.\tJe pense qu'il est temps pour moi d'acquérir une nouvelle paire de lunettes.\nI think you're the most beautiful girl I've ever seen.\tJe pense que tu es la plus belle fille que j'aie jamais vue.\nI think you're the most beautiful girl I've ever seen.\tJe pense que vous êtes la plus belle fille que j'ai jamais vue.\nI thought Tom would ask Mary to go with him to Boston.\tJ'ai pensé que Tom allait demander à Mary de l'accompagner à Boston.\nI told my mom I was gay and it didn't faze her at all.\tJ'ai dit à ma mère que j'étais homo et ça ne l'a pas démontée le moins du monde.\nI told you you had to go home. Why are you still here?\tJe vous ai dit que vous deviez rentrer chez vous. Pourquoi êtes-vous encore là ?\nI took a bus so I wouldn't be late for my appointment.\tJ'ai pris un bus pour ne pas être en retard au rendez-vous.\nI took him to the most expensive restaurant on campus.\tJe l'ai amené au restaurant le plus cher du campus.\nI took it for granted that she had received my letter.\tIl allait de soi pour moi qu'elle avait reçu ma lettre.\nI took it for granted that you would come to my party.\tJ'étais convaincu que vous viendriez à ma fête.\nI took it for granted that you would come to my party.\tJ'étais convaincu que tu viendrais à ma fête.\nI took some creative liberties. I hope you don't mind.\tJ'ai pris certaines licences créatives. J'espère que ça ne vous dérange pas.\nI tried in vain to persuade him not to smoke any more.\tJ'ai tenté en vain de le convaincre de ne plus fumer.\nI tried to call you last night, but you didn't answer.\tJ'ai essayé de t'appeler hier soir mais tu n'as pas répondu.\nI used to go fishing quite often, but now I rarely go.\tJ'allais assez souvent pêcher ; mais maintenant j'y vais rarement.\nI want to emphasize the need to get this done on time.\tJe veux souligner la nécessité de le faire faire à temps.\nI want to live in a quiet city where the air is clean.\tJe veux vivre dans une ville tranquille où l'air est sain.\nI want to write my girlfriend a love letter in French.\tJe veux écrire une lettre d'amour en français à ma petite amie.\nI was about to leave for work when the telephone rang.\tJ'allais partir pour aller travailler lorsque le téléphone sonna.\nI was caught in a shower and got drenched to the skin.\tJ'ai été pris sous une averse et ai été trempé jusqu'aux os.\nI was flat on my back for a week with a terrible cold.\tJ'ai été terrassé par un terrible rhume durant une semaine.\nI was flat on my back for a week with a terrible cold.\tJ'ai été terrassée par un terrible rhume durant une semaine.\nI was lucky that I was able to find a good babysitter.\tJ'étais chanceux d'avoir été capable de trouver une bonne baby-sitter.\nI was taken in by his good looks and gracious manners.\tJ'ai été abusé par sa bonne apparence et ses manières élégantes.\nI was thrown out of the house with everything I owned.\tJe fus chassé de la maison avec tout ce que je possédais.\nI watched baseball on TV after I finished my homework.\tJ'ai regardé le baseball à la télévision après avoir terminé mes devoirs.\nI went there for the express purpose of earning money.\tJe suis venu là dans le but urgent de gagner de l'argent.\nI wish you could drop in at my house on your way home.\tJe voudrais que tu puisses passer chez moi sur ton chemin.\nI wish you would take me to a restaurant for a change.\tJ'aimerais que tu m'emmènes au restaurant pour changer.\nI wonder why some people think black cats are unlucky.\tJe me demande pourquoi certaines personnes pensent que les chats noirs portent malheur.\nI would appreciate any information you can send to us.\tJ'apprécierais toute information que vous pourriez nous faire parvenir.\nI would like to thank you for accepting my invitation.\tJe vous remercie d'avoir accepté mon invitation.\nI'd like to ask you a few questions if you don't mind.\tJ'aimerais vous poser quelques questions, si vous n'y voyez pas d'inconvénient.\nI'd like to ask you a few questions if you don't mind.\tJ'aimerais te poser quelques questions, si tu n'y vois pas d'inconvénient.\nI'd like to find somebody to take care of my children.\tJ'aimerais trouver quelqu'un pour s'occuper de mes enfants.\nI'd like to rent your most inexpensive car for a week.\tJ'aimerais louer votre voiture la moins chère, pour une semaine.\nI'd really like to know why he did that sort of thing.\tJ'aimerais vraiment savoir pourquoi il a fait ce genre de chose.\nI'll be raising my prices by three percent next month.\tJ'augmenterai mes prix de trois pour cent le mois prochain.\nI'll buy that old clock no matter how expensive it is.\tJe ferai l'acquisition de cette vieille horloge quel qu'en soit le prix.\nI'll leave no stone unturned to find out who did this.\tJe mettrai tout en œuvre pour découvrir qui a fait ça.\nI'll leave no stone unturned to find out who did this.\tJe ferai tout mon possible pour découvrir qui a fait ça.\nI'll leave no stone unturned to find out who did this.\tJe ne ménagerai aucun effort pour découvrir qui a fait ça.\nI'll leave no stone unturned to find out who did this.\tJe ne négligerai aucun détail pour découvrir qui a fait ça.\nI'll never tell anyone where I've hidden the treasure.\tJe ne dirai jamais à personne où j'ai caché le trésor.\nI'll understand if you don't want to go there with me.\tJe comprendrai si tu ne veux pas y aller avec moi.\nI'll understand if you don't want to go there with me.\tJe comprendrai si vous ne voulez pas y aller avec moi.\nI'm afraid I cannot make myself understood in English.\tJe crains de ne pas pouvoir me faire comprendre en anglais.\nI'm afraid you'll have to learn to live with the pain.\tJe crains que tu ne doives apprendre à supporter cette douleur.\nI'm capable of dealing with problems like this myself.\tJe suis capable de traiter de tels problèmes par moi-même.\nI'm glad you could come. Please make yourself at home.\tJe suis heureux que vous puissiez venir. S'il vous plaît, faites comme chez vous.\nI'm going off to Vancouver next week to see my sister.\tJe pars pour Vancouver la semaine prochaine pour voir ma sœur.\nI'm going to get myself some coffee. Do you want some?\tJe vais me chercher du café. En veux-tu ?\nI'm going to get myself some coffee. Do you want some?\tJe vais me chercher du café. En voulez-vous ?\nI'm going to run a couple of errands. Wanna tag along?\tJe vais faire des courses. Tu veux me suivre ?\nI'm going to study for the final exams this afternoon.\tJe vais travailler pour les examens finaux cet après-midi.\nI'm looking for the perfect spot to hang this picture.\tJe cherche l'emplacement idéal pour accrocher ce tableau.\nI'm looking for the perfect spot to hang this picture.\tJe cherche l'emplacement idéal pour accrocher cette photo.\nI'm not quite happy with the wording of this sentence.\tJe ne suis pas complètement satisfait de la formulation de cette phrase.\nI'm on my way to visit a friend who's in the hospital.\tJe suis en route pour rendre visite à un ami qui est à l'hôpital.\nI'm on my way to visit a friend who's in the hospital.\tJe suis en route pour rendre visite à une amie qui est à l'hôpital.\nI'm only going to say this once, so you better listen.\tJe ne vais le dire qu'une seule fois, alors vous feriez mieux d'écouter.\nI'm only going to say this once, so you better listen.\tJe ne vais le dire qu'une seule fois, alors tu ferais mieux d'écouter.\nI'm sorry that I haven't been able to be here for you.\tJe suis désolé d'avoir été dans l'incapacité d'être là pour vous.\nI'm sorry that I haven't been able to be here for you.\tJe suis désolé d'avoir été dans l'incapacité d'être là pour toi.\nI'm sorry that I haven't been able to be here for you.\tJe suis désolée d'avoir été dans l'incapacité d'être là pour vous.\nI'm sorry that I haven't been able to be here for you.\tJe suis désolée d'avoir été dans l'incapacité d'être là pour toi.\nI've already spent all my pocket money for this month.\tJ'ai déjà dépensé tout mon argent de poche pour le mois.\nI've been debating whether I should mention it or not.\tJe me demandais si je devais le dire ou pas.\nI've grown tired of watching this uninteresting match.\tJe me suis lassé de regarder cette partie inintéressante.\nI've never seen a more god-forsaken stretch of desert.\tJe n'ai jamais vu une bande de désert aussi désolée.\nIf I had been rich, I would have given you some money.\tSi j'avais été riche, je t'aurais donné de l'argent.\nIf I had been rich, I would have given you some money.\tSi j'avais été riche, je vous aurais donné de l'argent.\nIf I had known your email address, I would've written.\tSi j'avais connu ton mél, je t'aurais écrit.\nIf I were to tell you all I know, you would be amazed.\tS'il me fallait te dire tout ce que je sais, tu serais stupéfait.\nIf for some reason I'm late, please don't wait for me.\tSi pour une raison quelconque je suis en retard, ne m'attendez pas s'il vous plait.\nIf he is innocent, it follows that his wife is guilty.\tS'il est innocent, c'est donc sa femme qui est coupable.\nIf he really doesn't want to go, he shouldn't have to.\tS'il ne veut vraiment pas y aller, il ne devrait pas y être obligé.\nIf he really doesn't want to go, he shouldn't have to.\tS'il ne veut vraiment pas s'en aller, il ne devrait pas y être obligé.\nIf he really doesn't want to go, he shouldn't have to.\tS'il ne veut vraiment pas partir, il ne devrait pas y être obligé.\nIf it happens to rain, the garden party won't be held.\tSi la pluie survient, la fête champêtre n'aura pas lieu.\nIf it snows on the mountain, it is cold in the valley.\tS'il neige sur la montagne, il fait froid dans la vallée.\nIf it were not for water, no living things could live.\tS'il n'y avait pas d'eau, rien ne pourrait vivre.\nIf there were no telephones, it would be inconvenient.\tS'il n'y avait pas de téléphones, ça ne serait pas pratique.\nIf you are free tomorrow, I can show you around Kyoto.\tSi vous êtes libres demain, je vous ferai visiter Kyoto.\nIf you could only speak English, you would be perfect.\tSi vous pouviez seulement parler l'anglais, vous seriez parfait.\nIf you could only speak English, you would be perfect.\tSi vous pouviez seulement parler l'anglais, vous seriez parfaite.\nIf you could only speak English, you would be perfect.\tSi vous pouviez seulement parler l'anglais, vous seriez parfaits.\nIf you don't miss the train, you'll get there in time.\tSi tu ne manques pas le train, tu y seras à temps.\nIf you don't miss the train, you'll get there in time.\tSi vous ne manquez pas le train, vous y serez à temps.\nIf you don't want to be alone, I can keep you company.\tSi tu ne veux pas rester seul, je peux te tenir compagnie.\nIf you don't want to give a speech, you don't have to.\tSi tu ne veux pas prononcer de discours, ne te sens pas obligé.\nIf you don't want to give a speech, you don't have to.\tSi tu ne veux pas prononcer de discours, ne te sens pas obligée.\nIf you go out so lightly dressed, you'll catch a cold.\tSi tu sors habillé aussi légèrement, tu vas attraper froid.\nIf you go out so lightly dressed, you'll catch a cold.\tSi tu sors vêtue aussi légèrement, tu vas attraper froid.\nIf you had a time machine, which year would you visit?\tSi tu disposais d'une machine à remonter le temps, quelle année irais-tu visiter ?\nIf you had a time machine, which year would you visit?\tSi vous disposiez d'une machine à remonter le temps, quelle année iriez-vous visiter ?\nIf you have something to say, say it now or pipe down.\tSi tu as quelque chose à dire, alors dis-le maintenant ou ferme-la.\nIf you need more information, we are happy to send it.\tSi vous avez besoin de davantage d'information, nous serons heureux de vous en envoyer.\nIf you plant an apple seed, it might grow into a tree.\tSi tu plantes une graine de pommier, elle pourrait devenir un arbre.\nIf you really want to know, all you need to do is ask.\tSi vous voulez vraiment savoir, tout ce que vous avez à faire est de demander.\nIf you really want to know, all you need to do is ask.\tSi tu veux vraiment savoir, tout ce que tu as à faire est de demander.\nIf you rest, you will be back on your feet again soon.\tSi vous vous reposez, vous serez bientôt de nouveau sur pieds.\nIf you rest, you will be back on your feet again soon.\tSi tu te reposes, tu seras bientôt de nouveau sur pieds.\nIf you turn on me like that, I won't say another word.\tSi tu t'en prends à moi comme ça, je ne dirais plus rien.\nIf you want me to help you, all you have to do is ask.\tSi tu veux que je t'aide, tout ce que tu as à faire est de demander.\nIf you want me to help you, all you have to do is ask.\tSi tu veux que je vous aide, tout ce que tu as à faire est de demander.\nIf you want me to help you, all you have to do is ask.\tSi vous voulez que je vous aide, tout ce que vous avez à faire est de demander.\nIf you want me to kiss you, all you have to do is ask.\tSi tu veux que je t'embrasse, tout ce que tu as à faire est de demander.\nIf you want me to kiss you, all you have to do is ask.\tSi vous voulez que je vous embrasse, tout ce que vous avez à faire est de demander.\nIf you want me to play the piano, I'll play the piano.\tSi tu veux que je joue du piano, je jouerai du piano.\nIf your child drinks poison, rush him to the hospital.\tSi votre enfant boit du poison, emmenez-le d'urgence à l'hôpital.\nIn a town with only one barber, who shaves the barber?\tDans une ville avec un seul barbier, qui rase le barbier ?\nIn a town with only one barber, who shaves the barber?\tDans une ville avec un seul coiffeur pour hommes, qui rase le coiffeur ?\nIn front of the university, there are some bookstores.\tEn face de l'université, il y a quelques librairies.\nIn front of the university, there are some bookstores.\tIl y a devant la faculté quelques librairies.\nIn most countries, teachers do not receive high wages.\tDans la plupart des pays, les enseignants ne perçoivent pas de salaires élevés.\nIn my city, there is no school for learning Esperanto.\tDans ma ville, il n'y a pas d'école pour apprendre l'espéranto.\nIn recent years, science has made remarkable progress.\tDans les dernières années, la science a fait des progrès remarquables.\nInsurance policies don't cover preexisting conditions.\tLes polices d'assurance ne prennent pas en charge les maladies antérieures.\nIs there a particular way I'm supposed to address you?\tSuis-je censé m'adresser à vous d'une manière particulière ?\nIs there a particular way I'm supposed to address you?\tSuis-je censée m'adresser à vous d'une manière particulière ?\nIs there a particular way I'm supposed to address you?\tSuis-je censé m'adresser à toi d'une manière particulière ?\nIs there a particular way I'm supposed to address you?\tSuis-je censée m'adresser à toi d'une manière particulière ?\nIs there anything special you want to do this weekend?\tY a-t-il quelque chose de spécial que tu veuilles faire ce week-end ?\nIs there anything special you want to do this weekend?\tY a-t-il quelque chose de spécial que vous veuillez faire ce week-end ?\nIs there anything special you want to do this weekend?\tY a-t-il quelque chose de spécial que vous vouliez faire ce week-end ?\nIs there anything you want to add to what I just said?\tY a-t-il quoi que ce soit que tu veuilles ajouter à ce que je viens de dire ?\nIs there anything you want to add to what I just said?\tY a-t-il quoi que ce soit que vous veuillez ajouter à ce que je viens de dire ?\nIs there anything you want to add to what I just said?\tY a-t-il quoi que ce soit que vous vouliez ajouter à ce que je viens de dire ?\nIs there something in particular that you want to eat?\tY a-t-il quelque chose de particulier que tu veuilles manger ?\nIs there something in particular that you want to eat?\tY a-t-il quelque chose de particulier que vous vouliez manger ?\nIs there something in particular that you want to see?\tY a-t-il quelqu'un en particulier que tu veuilles voir ?\nIs there something in particular that you want to see?\tY a-t-il quelqu'un en particulier que vous veuillez voir ?\nIt doesn't matter to me whether she comes here or not.\tÇa m'est indifférent qu'elle vienne ici ou pas.\nIt doesn't matter who pitches, that team always loses.\tQu'importe qui lance, cette équipe perd toujours.\nIt is hard for the couple to live together any longer.\tIl est difficile pour ce couple de vivre ensemble plus longtemps.\nIt is impossible for me to finish the work in an hour.\tIl m'est impossible de terminer le travail en une heure.\nIt is questionable whether this data can be relied on.\tQue l'on puisse se fier à ces données est douteux.\nIt is very kind of you to send me such a nice present.\tC'est très gentil de ta part de m'envoyer un si joli cadeau.\nIt means a lot to me to know that you want me to stay.\tSavoir que vous voulez que je reste veut dire beaucoup pour moi.\nIt means a lot to me to know that you want me to stay.\tSavoir que tu veux que je reste veut dire beaucoup pour moi.\nIt was a fine day and there were no clouds in the sky.\tC'était une belle journée et il n'y avait pas de nuages dans le ciel.\nIt was not easy to get a lot of money in a short time.\tIl n'était pas simple de gagner beaucoup d'argent en peu de temps.\nIt would be good to sleep, even for just a little bit.\tIl serait bon de dormir, même un petit peu.\nIt would be nice to spend the summer in the mountains.\tÇa serait chouette de passer l'été dans les montagnes.\nIt would have been nice if you had helped me a little.\tCela aurait été gentil si tu m'avais un peu aidé.\nIt would've been nice if Tom had told us he'd be late.\tÇa aurait été bien si Tom nous avait dit qu'il serait en retard.\nIt's a very small price for such an important victory.\tC'est un prix très modique pour une victoire d'une telle importance.\nIt's hard to admit to yourself that you are a failure.\tIl est difficile d'accepter l'idée à soi-même qu'on est un échec.\nIt's not every day you get a building named after you.\tCe n'est pas tous les jours qu'on a un immeuble à son nom.\nIt's quite difficult to master French in 2 or 3 years.\tC'est assez difficile de maîtriser le français en 2, 3 ans.\nIt's way too crowded in here. Let's go somewhere else.\tC'est beaucoup trop bondé, ici. Allons ailleurs.\nItaly has some of the best art galleries in the world.\tL'Italie possède quelques-unes des meilleures galeries d'art du monde.\nJudging from the look of the sky, it is going to snow.\tD'après l'aspect du ciel, il va neiger.\nJudging from what you say, he must be a great scholar.\tÀ en juger par ce que vous dites, il doit être un grand érudit.\nJust remember I dropped everything to be here for you.\tRappelle-toi simplement que j'ai tout laissé tomber pour être ici pour toi.\nJust remember I dropped everything to be here for you.\tRappelez-vous simplement que j'ai tout laissé tomber pour être ici pour vous.\nLet's throw it away and start over with a clean slate.\tJetons-le et recommençons avec une feuille vierge.\nListen carefully and do exactly what I tell you to do.\tÉcoute attentivement et fais exactement ce que je te dis de faire !\nListen carefully and do exactly what I tell you to do.\tÉcoutez attentivement et faites exactement ce que je vous dis de faire !\nMake sure to turn off all the lights before going out.\tAssure-toi d'éteindre toutes les lumières avant de sortir.\nMake sure to turn off all the lights before going out.\tAssurez-vous d'éteindre toutes les lampes avant de sortir.\nMake sure to turn off all the lights before going out.\tAssurez-vous d'éteindre toutes les lumières avant de sortir.\nMaking amends is the first step toward rehabilitation.\tL'expiation est le premier pas vers la réhabilitation.\nMany people prefer to cook with butter instead of oil.\tBeaucoup de gens préfèrent cuisiner avec du beurre plutôt qu'avec de l'huile.\nMary had a little lamb whose fleece was white as snow.\tMarie avait un petit agneau dont la toison était blanche comme neige.\nMore than 40 percent of the students go to university.\tPlus de 40 % des étudiants vont à l'université.\nMuch as I'd like to come, I'm afraid I'll be too busy.\tJ'aimerais vraiment venir mais je crains de n'être trop occupé.\nMuch better to be woken by the birds than by an alarm.\tC'est beaucoup mieux d'être réveillé par les oiseaux que par un réveil.\nMy doctor has advised me to stop taking this medicine.\tMon médecin m'a conseillé d'arrêter de prendre ce médicament.\nMy father will be back at the beginning of next month.\tMon père reviendra au début du mois prochain.\nMy grandpa is out of step with the younger generation.\tMon grand-père n'est plus en phase avec la jeune génération.\nMy husband reads the newspaper while eating breakfast.\tMon mari lit le journal en mangeant son petit-déjeuner.\nMy phone has a caller ID that lets me screen my calls.\tMon téléphone a une fonction d'identification de l'appelant qui me permet de filtrer mes appels.\nMy whole body was one big bruise after the rugby game.\tAprès le match de rugby, mon corps n'était que contusion.\nMy wife is throwing a baby shower for her best friend.\tMa femme organise une célébration de naissance pour sa meilleure amie.\nNo matter how hard he tried, my opinion didn't change.\tIl eut beau essayer, mon opinion ne changea pas.\nNo matter how hard he tried, my opinion didn't change.\tIl a eu beau essayer, mon opinion n'a pas changé.\nNo matter how hard she tried, she couldn't please him.\tElle avait beau essayer, elle ne pouvait le contenter.\nNo matter what I try, I can't seem to give up smoking.\tQuoi que je tente, il semble que je n'arrive pas à arrêter de fumer.\nNo matter what happens, my determination won't change.\tQuoi qu'il arrive, ma détermination ne changera pas.\nNo one can force you to do anything against your will.\tPersonne ne peut te forcer à faire quelque chose contre ta volonté.\nNo one has been able to reach the top of the mountain.\tPersonne n'a été capable d'atteindre le sommet de la montagne.\nNo one liked President Buchanan's message to Congress.\tPersonne n'a apprécié la déclaration du président Buchanan au congrès.\nNothing we have done today has gone according to plan.\tRien de ce que nous avons fait aujourd'hui ne s'est déroulé selon le plan.\nOur club will hold its monthly meeting next Wednesday.\tNotre cercle tiendra sa réunion mensuelle mercredi prochain.\nOur current house is too small, so we decided to move.\tNotre maison actuelle est trop petite, nous avons donc décidé de déménager.\nParents should spend quality time with their children.\tLes parents devraient passer du temps de qualité avec leurs enfants.\nPeople who talk about themselves all the time bore me.\tLes gens qui parlent tout le temps d'eux-mêmes m'ennuient.\nPerhaps you have misunderstood the aim of our project.\tPeut-être as-tu mal compris l'objectif de notre projet.\nPhilosophy is not a thing one can learn in six months.\tLa philosophie n'est pas de ces choses que l'on peut apprendre en six mois.\nPlastic surgery alone will not make you any less ugly.\tLa chirurgie plastique seule ne vous rendra pas moins laid.\nPlease be sure to turn off the light before you leave.\tAssurez-vous d'éteindre la lumière avant de partir, je vous prie.\nPlease be sure to turn off the light before you leave.\tAssure-toi d'éteindre la lumière avant de partir, je te prie.\nPlease come here between two and three this afternoon.\tVenez ici entre deux heures et trois heures cette après-midi.\nPlease don't lean out of the window when we're moving.\tVeuillez ne pas vous pencher par la fenêtre lorsque nous sommes en mouvement.\nPlease give me some kind of medicine to curb the pain.\tDonnez-moi, s'il vous plait, un médicament pour apaiser la douleur.\nPlease have a seat and wait until your name is called.\tS'il vous plait prenez place et attendez jusqu'à ce que l'on appelle votre nom.\nPlease stop talking. I need to concentrate on my game.\tJe te prie de cesser de parler. Il me faut me concentrer sur mon jeu.\nPlease stop talking. I need to concentrate on my game.\tVeuillez arrêter de parler. Il me faut me concentrer sur mon jeu.\nSalmon go up the river and lay their eggs in the sand.\tLe saumon remonte la rivière et ponds ses œufs dans le sable.\nSalt was a rare and costly commodity in ancient times.\tLe sel était une denrée rare et chère dans les temps anciens.\nSeen from the sky, the river looked like a huge snake.\tVue depuis le ciel, la rivière ressemblait à un énorme serpent.\nShe advised him to go abroad while he was still young.\tElle lui conseilla de se rendre à l'étranger tandis qu'il était encore jeune.\nShe advised him to go abroad while he was still young.\tElle lui a conseillé de se rendre à l'étranger tant qu'il était encore jeune.\nShe almost never does what she says she's going to do.\tElle ne fait pratiquement jamais ce qu'elle dit qu'elle va faire.\nShe asked him why he was crying, but he didn't answer.\tElle lui demanda pourquoi il pleurait, mais il ne répondit pas.\nShe asked him why he was crying, but he didn't answer.\tElle lui demanda pourquoi il était en train de pleurer, mais il ne répondit pas.\nShe asked him why he was crying, but he didn't answer.\tElle lui a demandé pourquoi il pleurait, mais il n'a pas répondu.\nShe asked him why he was crying, but he didn't answer.\tElle lui a demandé pourquoi il était en train de pleurer, mais il n'a pas répondu.\nShe began doing her homework immediately after dinner.\tElle commença à faire ses devoirs immédiatement après dîner.\nShe began doing her homework immediately after dinner.\tElle commença à faire ses devoirs immédiatement après le dîner.\nShe began doing her homework immediately after dinner.\tElle commença à faire ses devoirs immédiatement après déjeuner.\nShe began doing her homework immediately after dinner.\tElle commença à faire ses devoirs immédiatement après le déjeuner.\nShe began doing her homework immediately after dinner.\tElle commença à faire ses devoirs immédiatement après le souper.\nShe began doing her homework immediately after dinner.\tElle commença à faire ses devoirs immédiatement après souper.\nShe covered the mouthpiece of the phone with her hand.\tElle couvrit le micro du téléphone de sa main.\nShe denied having been asked to go on a business trip.\tElle a nié qu'on l'ait envoyé en mission.\nShe didn't show up at the party, but nobody knows why.\tOn ne l'a pas vue à la boum, mais personne ne sait pourquoi.\nShe gave birth to her first child at twenty years old.\tElle mit au monde son premier enfant à vingt ans.\nShe had changed so much that I couldn't recognize her.\tElle avait tellement changé, que je ne pouvais pas la reconnaitre.\nShe has had the same boyfriend since she was eighteen.\tElle a le même petit copain depuis qu'elle a dix-huit ans.\nShe is accustomed to doing her homework before dinner.\tElle a l'habitude de faire ses devoirs avant le dîner.\nShe lives in the same house her grandparents lived in.\tElle vit dans la maison où ses grands-parents vivaient.\nShe made some derogatory remarks about her colleagues.\tElle a fait quelques remarques désobligeantes sur ses collègues.\nShe put her hands over her ears to shut out the noise.\tElle a mis ses mains sur ses oreilles pour ne plus entendre le bruit.\nShe spent most of her life taking care of poor people.\tElle a passé la plus grande partie de sa vie à s'occuper des pauvres.\nShe stood there even after the train was out of sight.\tElle est restée là même lorsque le train ne fut plus en vue.\nShe told him a joke, but he didn't think it was funny.\tElle lui raconta une blague, mais il ne la trouva pas drôle.\nShe told him a joke, but he didn't think it was funny.\tElle lui a raconté une blague, mais il ne l'a pas trouvée drôle.\nShe took a flower from the vase and held it out to me.\tElle prit une fleur du vase et me la tendit.\nShe tried to persuade him to buy her a pearl necklace.\tElle essaya de le persuader de lui acheter un collier de perles.\nShe turned her face away so he wouldn't see her tears.\tElle détourna son visage afin qu'il ne voie pas ses larmes.\nShe visits him quite often, but never stays very long.\tElle lui rend visite assez souvent, mais ne reste jamais très longtemps.\nShe was cleaning the house in preparation for a party.\tElle nettoyait la maison en préparation de la fête.\nShe was further in debt than she was willing to admit.\tElle était davantage endettée qu'elle ne voulait bien l'admettre.\nShe watched him continue to fight as hard as he could.\tElle le regarda continuer à se battre aussi fort qu'il pouvait.\nShe watched him continue to fight as hard as he could.\tElle l'a regardé continuer à se battre aussi fort qu'il pouvait.\nShe's been severely traumatized by bullying at school.\tElle a été sévèrement traumatisée par le harcèlement à l'école.\nSince he was feeling sick, he stayed home from school.\tComme il se sentait malade, il resta chez lui plutôt que d'aller à l'école.\nSince he was feeling sick, he stayed home from school.\tComme il se sentait malade, il est resté chez lui plutôt que d'aller à l'école.\nSlavery has been abolished in most parts of the world.\tL'esclavage a été aboli dans la plupart des régions du monde.\nSome companies guarantee their workers a job for life.\tDans certaines sociétés, les employés peuvent avoir un travail garanti à vie.\nSome people see a conspiracy behind almost everything.\tCertaines personnes voient un complot derrière presque tout.\nSome students aren't going to come back next semester.\tCertains étudiants ne reviendront pas le prochain semestre.\nSometimes I say \"yes,\" even though I want to say \"no.\"\tJe dis parfois « oui » même si je veux dire « non ».\nSuch a proposal would only be turned down immediately.\tUne proposition pareille ne serait que rejetée aussitôt.\nTeam members are provided with equipment and uniforms.\tL'équipement et les uniformes sont fournis aux membres des équipes.\nTell us what you want and we'll try to get it for you.\tDis-nous ce que tu veux et nous tenterons de te l'obtenir.\nTell us what you want and we'll try to get it for you.\tDites-nous ce que vous voulez et nous tenterons de vous l'obtenir.\nThanks to you, I have problems with my blood pressure.\tPar ta faute, j'ai des problèmes de tension.\nThanks to you, I have problems with my blood pressure.\tPar votre faute, j'ai des problèmes de tension.\nThanks to you, I have problems with my blood pressure.\tÀ cause de toi, j'ai des problèmes de tension.\nThanks to you, I have problems with my blood pressure.\tÀ cause de vous, j'ai des problèmes de tension.\nThat restaurant prepares two thousand meals every day.\tCe restaurant sert deux mille repas par jour.\nThat was the first time that a man walked on the moon.\tC'était la première fois que l'homme marchait sur la Lune.\nThe Geneva University Library has a good reading room.\tLa bibliothèque de l'Université de Genève a une bonne salle de lecture.\nThe Holy Roman Empire came to an end in the year 1806.\tLe Saint-Empire romain germanique cessa d'exister en 1806.\nThe Industrial Revolution took place first in England.\tLa Révolution Industrielle eut d'abord lieu en Angleterre.\nThe President vetoed the law after Congress passed it.\tLe président a opposé son veto à la loi après que le Congrès l'ait adoptée.\nThe US is trying to extradite a drug lord from Mexico.\tLes USA essaient d'extrader du Mexique un parrain de la drogue.\nThe US is trying to extradite a drug lord from Mexico.\tLes USA cherchent à faire extrader un baron de la drogue du Mexique.\nThe best thing to do is to ask an expert to repair it.\tLa meilleure chose à faire est de solliciter un expert pour le réparer.\nThe bus is full. You'll have to wait for the next one.\tL'autobus est plein. Il faut que vous attendiez le prochain.\nThe bus is full. You'll have to wait for the next one.\tLe car est complet. Vous devez attendre le prochain.\nThe car stalled because you didn't step on the clutch.\tLa voiture s'est arrêtée parce que tu n'as pas appuyé sur l'embrayage.\nThe catapult hurled the boulder over the castle walls.\tLa catapulte propulsa le boulet par-dessus les murs du château.\nThe challenges are daunting, but we can overcome them.\tLes défis sont intimidants mais nous pouvons les surmonter.\nThe church's steeple is beginning to crumble with age.\tLe clocher de l'église commence à crouler sous les ans.\nThe coat I wanted was priced at three hundred dollars.\tLe manteau que je voulais coûtait trois cents dollars.\nThe cold weather slowed the growth of the rice plants.\tLe temps froid a ralenti la croissance des plants de riz.\nThe distance between stars is measured in light years.\tLa distance entre les étoiles se mesure en années-lumière.\nThe effect was quite different from what was intended.\tL'effet fut tout à fait différent de ce qui était prévu.\nThe floorboards creak a bit when you walk across them.\tLes lattes du plancher grincent un peu lorsqu'on marche dessus.\nThe floorboards creak a bit when you walk across them.\tLes lames du parquet grincent un peu lorsqu'on marche dessus.\nThe girl got distracted and lost sight of her parents.\tLa fille fut distraite et perdit ses parents de vue.\nThe high-profile kidnapping has captivated the nation.\tL'enlèvement sensationnel a maintenu la nation en haleine.\nThe last thing I want to do is cause you any problems.\tLa dernière chose que je veuille faire est de vous causer de quelconques problèmes.\nThe last thing I want to do is cause you any problems.\tLa dernière chose que je veuille faire est de te causer de quelconques problèmes.\nThe last thing I want to do now is clean the bathroom.\tLa dernière chose que je veux faire maintenant est de nettoyer la salle-de-bain.\nThe man standing over there is the owner of the store.\tLa personne là-bas est le propriétaire du magasin.\nThe number of fish in the ocean is steadily declining.\tLe nombre de poissons dans l'océan baisse régulièrement.\nThe number of students in this class is limited to 15.\tLe nombre d'élèves dans cette classe est limité à 15.\nThe only person who doesn't seem to understand is you.\tLa seule personne qui ne semble pas comprendre, c'est toi.\nThe parents will be invited to the school celebration.\tLes parents seront invités à la fête scolaire.\nThe pilot explained to us why the landing was delayed.\tLe pilote nous a expliqué pourquoi l’atterrissage était retardé.\nThe police arrested the man who had murdered the girl.\tLa police a arrêté l'homme qui avait tué l'enfant.\nThe policeman blamed the taxi driver for the accident.\tLe policier accusa le chauffeur de taxi d'avoir provoqué l'accident.\nThe prosperity of a country depends upon its citizens.\tLa prospérité d'un pays dépend de ses citoyens.\nThe public is clamoring for more jobs and lower taxes.\tLa population réclame plus d'emplois et moins d'impôts.\nThe section chief seems to like abusing his authority.\tOn dirait que le chef de service aime abuser de son autorité.\nThe senator denied repeated requests for an interview.\tLe sénateur rejeta des demandes répétées pour un entretien.\nThe sun is beating down and there's no shade in sight.\tLe soleil tape et il n'y a pas d'ombre en vue.\nThe teacher called the students in alphabetical order.\tLe professeur a appelé les élèves par ordre alphabétique.\nThe telephone is ringing. If you want, I'll answer it.\tLe téléphone sonne. Si tu veux, je réponds.\nThe temperature has been below zero for many days now.\tLa température a été en dessous de zéro depuis de nombreux jours maintenant.\nThe tower is three hundred and twenty-one meters high.\tLa tour fait trois cent vingt et un mètres de haut.\nThe translation is extremely faithful to the original.\tCette traduction est extrêmement fidèle à l'originale.\nThe treaty did not ban nuclear tests under the ground.\tLe traité n'interdisait pas les tests nucléaires souterrains.\nThe wall was covered with pictures of gunshot victims.\tLe mur était couvert de photos de victimes de fusillades.\nThe whole nation was sad to hear that their king died.\tLa nation entière fut attristée d'apprendre que son roi était mort.\nTheir contract is to run out at the end of this month.\tLeur contrat vient à expiration à la fin de ce mois.\nThere are no shortcuts to the top, only to the bottom.\tIl n'y a pas de raccourcis vers le haut, seulement vers le bas.\nThere are some things that are difficult to translate.\tIl y a certaines choses qui sont difficiles à traduire.\nThere are some things that you should never try doing.\tIl y a des choses qu'on ne devrait jamais essayer de faire.\nThere is no reason for you to feel inferior to anyone.\tIl n'y a aucune raison pour que tu te sentes en infériorité à l'égard de quiconque.\nThere is no reason for you to feel inferior to anyone.\tIl n'y a aucune raison pour que vous vous sentiez en infériorité à l'égard de quiconque.\nThere's a volcano emitting masses of smoke in Iceland.\tIl y a en Islande un volcan qui crache des masses de fumée.\nThere's no entertainment for young people around here.\tIl n'y a pas de loisirs pour les jeunes dans les environs.\nThere's no way to predict what you will dream tonight.\tIl n'y a aucun moyen de prévoir ce que tu rêveras cette nuit.\nThere's no way to predict what you will dream tonight.\tIl n'y a aucun moyen de prévoir ce que vous rêverez cette nuit.\nThere's something I need to tell you before you leave.\tIl y a quelque chose que je dois vous confier avant que vous ne partiez.\nThere's something I need to tell you before you leave.\tIl y a quelque chose que je dois te dire avant que tu ne partes.\nThey are considered the greatest rock band in history.\tIls sont considérés comme le plus grand groupe de rock de l'histoire.\nThey are going to give a party the day after tomorrow.\tIls vont faire une fête après-demain.\nThey are very proud of being students of that college.\tIls sont très fiers d'être étudiants de ce collège.\nThey did not want to spend much time talking about it.\tIls ne voulaient pas passer beaucoup de temps à en parler.\nThey did not want to spend much time talking about it.\tIls ne voulaient pas passer beaucoup de temps à en discuter.\nThey did not want to spend much time talking about it.\tElles ne voulaient pas passer beaucoup de temps à en parler.\nThey did not want to spend much time talking about it.\tElles ne voulaient pas passer beaucoup de temps à en discuter.\nThey explored every avenue in an attempt to avoid war.\tIls ont exploré toutes les pistes possibles afin d'éviter la guerre.\nThey hate each other from the bottoms of their hearts.\tIls se haïssent du fond du cœur.\nThey have had no rain in Africa for more than a month.\tIl n'a pas plu en Afrique pendant plus d'un mois.\nThey knew exactly how much of a risk they'd be taking.\tIls savaient exactement quel risque ils prendraient.\nThey knew exactly how much of a risk they'd be taking.\tElles savaient exactement quel risque ils prendraient.\nThey knew exactly how much of a risk they'd be taking.\tElles savaient exactement quel risque elles prendraient.\nThey knew exactly how much of a risk they'd be taking.\tIls savaient exactement quel risque elles prendraient.\nThey rented the room on the second floor to a student.\tIls louèrent la chambre du premier étage à un étudiant.\nThey rented the room on the second floor to a student.\tIls ont loué la chambre du premier étage à un étudiant.\nThey supplied the soldiers with enough food and water.\tIls ravitaillèrent les soldats avec suffisamment de nourriture et d'eau.\nThey survived, even though the building was destroyed.\tIls ont survécu, même si l'immeuble a été détruit.\nThey survived, even though the building was destroyed.\tElles ont survécu, même si l'immeuble a été détruit.\nThey survived, even though the building was destroyed.\tIls survécurent, même si l'immeuble fut détruit.\nThey survived, even though the building was destroyed.\tElles survécurent, même si l'immeuble fut détruit.\nThey survived, even though the building was destroyed.\tCe sont eux qui ont survécu, même si l'immeuble a été détruit.\nThey survived, even though the building was destroyed.\tCe sont elles qui ont survécu, même si l'immeuble a été détruit.\nThey survived, even though the building was destroyed.\tCe fut eux qui survécurent, même si l'immeuble fut détruit.\nThey survived, even though the building was destroyed.\tCe fut elles qui survécurent, même si l'immeuble fut détruit.\nThey went to Edinburgh to escape from the summer heat.\tIls sont allés à Édimbourg pour échapper à la chaleur estivale.\nThis big sofa is really not suitable for a small room.\tCe gros canapé ne convient vraiment pas à une pièce de petite taille.\nThis building is the architect's crowning achievement.\tCe bâtiment est le chef-d'œuvre de l'architecte.\nThis computer is powerful, efficient, and easy to use.\tCet ordinateur est puissant, efficace et simple à utiliser.\nThis house is large enough for your family to live in.\tCette maison est assez grande pour que votre famille puisse y vivre.\nThis is by far the most interesting of all his novels.\tC'est de loin la chose la plus intéressante de son roman.\nThis is considered to be a matter of great importance.\tCeci est considéré comme une affaire de grande importance.\nThis is the hottest summer we have had in fifty years.\tC'est l'été le plus chaud que nous ayons eu en cinquante ans.\nThis road will take you down to the edge of Lake Biwa.\tCette route vous amène au bord du lac Biwa.\nThis sentence is not a translation. It's the original.\tCette phrase n'est pas une traduction. C'est l'original.\nThis sentence needs to be checked by a native speaker.\tCette phrase doit être vérifiée par un locuteur natif.\nThousands of people were milling around in the square.\tLa place grouillait de milliers de personnes.\nTo make a long story short, he married his first love.\tPour faire court, il a épousé son premier amour.\nTom admitted he didn't do what we had asked him to do.\tTom a admis ne pas avoir fait ce que nous lui avions demandé de faire.\nTom became anorexic when he was a high school student.\tTom est devenu anorexique lorsqu'il était étudiant au lycée.\nTom bought an expensive Christmas present for himself.\tTom s'est acheté un cadeau de Noël cher.\nTom called me almost every day while he was in Boston.\tTom m'appelait presque tous les jours pendant qu'il était à Boston.\nTom continued to study French for another three years.\tTom a continué à étudier le français pour trois autres années.\nTom continued to study French for another three years.\tTom continua à étudier le français pendant trois années de plus.\nTom couldn't go to the concert because he had to work.\tTom n'a pas pu aller au concert parce qu'il avait du travail.\nTom couldn't stand Mary not knowing what had happened.\tTom ne pouvait pas supporter que Marie ne sache pas ce qu'il s'était passé.\nTom didn't even know how to say \"thank you\" in French.\tTom n'a même pas su comment dire \"merci\" en français.\nTom doesn't even know why he was expelled from school.\tTom ne sait même pas pourquoi il a été renvoyé de l'école.\nTom drank three bottles of wine by himself last night.\tTom a bu trois bouteilles de vin à lui tout seul, la nuit dernière.\nTom dreaded having to spend Christmas in the hospital.\tTom redoutait de devoir passer Noël à l'hôpital.\nTom found Mary a job not too far from where she lives.\tTom a trouvé un travail à Mary pas trop loin d'où elle vit.\nTom got up from the table and walked into the kitchen.\tTom s'est levé de la table et a marché vers la cuisine.\nTom had his wife Mary followed by a private detective.\tTom a fait suivre sa femme Marie par un détective privé.\nTom heard a noise and went outside to see what it was.\tTom a entendu un bruit et est sorti pour voir de quoi il s'agissait.\nTom is left-handed, but he writes with his right hand.\tTom est gaucher, mais il écrit de la main droite.\nTom is taller than any of the other kids in his class.\tTom est plus grand que les autres enfants de sa classe.\nTom said he was looking for someone who speaks French.\tTom a dit qu'il cherchait quelqu'un qui parle français.\nTom turned off the engine and shut off the headlights.\tTom a éteint le moteur et coupé les phares.\nTom turned off the engine and shut off the headlights.\tTom éteignit le moteur et coupa les phares.\nTom used to spend a lot of time with his grandparents.\tTom avait l'habitude de passer beaucoup de temps avec ses grands-parents.\nTom's garage is filled with things that he never uses.\tLe garage de Tom est rempli de choses qu'il n'utilise jamais.\nWarm and humid weather increases the number of crimes.\tUn temps chaud et humide augmente le nombre de crimes.\nWe are fully aware of the importance of the situation.\tNous sommes pleinement conscients de l'importance de la situation.\nWe ate lunch together and then we chatted for an hour.\tNous avons déjeuné ensemble et ensuite nous avons causé pendant une heure.\nWe cut away all the grass and weeds around the church.\tNous fauchâmes les herbes, bonnes et mauvaises, autour de l'église.\nWe don't want anything like that to ever happen again.\tNous ne voulons pas que quoi que ce soit de semblable se reproduise jamais.\nWe followed him single file till we reached the cabin.\tNous le suivîmes en file indienne jusqu'à ce que nous parvînmes à la cabane.\nWe must cover the furniture before painting the walls.\tIl faut protéger les meubles avant de peindre les murs.\nWe saw an interesting program on television yesterday.\tNous avons vu une émission intéressante à la télévision hier.\nWe should lay down a few ground rules before we begin.\tNous devrions établir quelques règles de base avant de commencer.\nWe've got to find Tom before he does something stupid.\tNous devons trouver Tom avant qu'il ne fasse quelque chose de stupide.\nWe've had all kinds of weather over the past few days.\tNous avons eu toutes les sortes de temps ces quelques derniers jours.\nWere you able to do everything you wanted to get done?\tAs-tu été en mesure de faire tout ce que tu voulais faire ?\nWere you able to do everything you wanted to get done?\tAvez-vous été en mesure de faire tout ce que vous vouliez faire ?\nWhat are some foods you usually eat with your fingers?\tQuels sont les aliments qu'on mange habituellement avec les doigts ?\nWhat are some foods you usually eat with your fingers?\tQuels sont les aliments que tu manges habituellement avec les doigts ?\nWhat are some foods you usually eat with your fingers?\tQuels sont les aliments que vous mangez habituellement avec les doigts ?\nWhat surprised me most was that she didn't like candy.\tCe qui m'a le plus surpris, c'était qu'elle n'aimait pas les sucreries.\nWhat would your mother think if she saw you like this?\tQue penserait ta mère si elle te voyait ainsi ?\nWhen I saw Tom yesterday, he was wearing a cowboy hat.\tQuand j'ai vu Tom hier, il portait un chapeau de cow-boy.\nWhen we borrow money, we must agree on the conditions.\tQuand on demande de l'argent, il faut accepter certaines conditions.\nWhen you surf the web, you may be tracked by websites.\tLorsque tu navigues sur la toile, tu peux être pisté par des sites.\nWhen you surf the web, you may be tracked by websites.\tLorsqu'on navigue sur la toile, on peut être pisté par des sites.\nWhen you surf the web, you may be tracked by websites.\tLorsque vous naviguez sur la toile, vous pouvez être pisté par des sites.\nWhen you surf the web, you may be tracked by websites.\tLorsque vous naviguez sur la toile, il se peut que vous soyez pisté par des sites.\nWhen you surf the web, you may be tracked by websites.\tLorsqu'on navigue sur la toile, il se peut qu'on soit pisté par des sites.\nWhen you surf the web, you may be tracked by websites.\tLorsque tu navigues sur la toile, il se peut que tu sois pisté par des sites.\nWhen you surf the web, you may be tracked by websites.\tLorsque tu navigues sur la toile, il se peut que tu sois pistée par des sites.\nWhen you surf the web, you may be tracked by websites.\tLorsque vous naviguez sur la toile, il se peut que vous soyez pistée par des sites.\nWhen you surf the web, you may be tracked by websites.\tLorsque vous naviguez sur la toile, il se peut que vous soyez pistés par des sites.\nWhen you surf the web, you may be tracked by websites.\tLorsque vous naviguez sur la toile, il se peut que vous soyez pistées par des sites.\nWhen you surf the web, you may be tracked by websites.\tLorsque tu navigues sur la toile, tu peux être pistée par des sites.\nWhen you surf the web, you may be tracked by websites.\tLorsque vous naviguez sur la toile, vous pouvez être pistée par des sites.\nWhen you surf the web, you may be tracked by websites.\tLorsque vous naviguez sur la toile, vous pouvez être pistés par des sites.\nWhen you surf the web, you may be tracked by websites.\tLorsque vous naviguez sur la toile, vous pouvez être pistées par des sites.\nWhich team is the most likely to win the championship?\tQuelle équipe a le plus de chance de gagner le championnat ?\nWhy does he become drowsy whenever he begins to study?\tPourquoi devient-il somnolent chaque fois qu'il se met à étudier ?\nWith more education, he would have found a better job.\tAvec davantage d'études, il aurait trouvé un meilleur emploi.\nWith your approval, I would like to offer him the job.\tAvec votre approbation, j'aimerais lui proposer le poste.\nWithout further ado, let me introduce tonight's guest.\tSans plus attendre, laissez-moi vous présenter l'invité de ce soir.\nWould it be possible for me to get something to drink?\tSerait-il possible que j'aie quelque chose à boire ?\nYou aren't permitted to bring dogs into this building.\tVous n'êtes pas autorisé à emmener des chiens dans ce bâtiment.\nYou can get a lot of bang for your buck at this store.\tOn peut largement en avoir pour son argent dans ce magasin.\nYou can get rid of the cold if you take this medicine.\tTu peux te débarrasser de ton rhume en prenant ce médicament.\nYou can see from his chin that takes after his father.\tÀ son menton, on peut voir qu'il ressemble à son père.\nYou can stay here as long as you don't make any noise.\tTant que tu ne fais pas de bruit, tu peux rester ici.\nYou can't just make everyone do what you want them to.\tTu ne peux simplement pas faire faire à tout le monde ce que tu veux qu'il fasse.\nYou can't just make everyone do what you want them to.\tVous ne pouvez simplement pas faire faire à tout le monde ce que vous voulez qu'il fasse.\nYou continue making the same mistakes time after time.\tTu continues à commettre les mêmes erreurs à chaque fois.\nYou don't have to do that if you don't really want to.\tTu ne dois pas le faire si tu ne le veux vraiment pas.\nYou don't have to do that if you don't really want to.\tTu n'es pas obligé de le faire si tu ne le veux vraiment pas.\nYou don't have to do that if you don't really want to.\tVous n'êtes pas obligé de le faire si vous ne le voulez vraiment pas.\nYou don't have to do that if you don't really want to.\tTu n'es pas obligée de le faire si tu ne le veux vraiment pas.\nYou don't have to do that if you don't really want to.\tVous n'êtes pas obligés de le faire si vous ne le voulez vraiment pas.\nYou don't have to do that if you don't really want to.\tVous n'êtes pas obligée de le faire si vous ne le voulez vraiment pas.\nYou don't have to do that if you don't really want to.\tVous n'êtes pas obligées de le faire si vous ne le voulez vraiment pas.\nYou might want to childproof those electrical sockets.\tVous voudrez peut-être vérifier que ces prises électriques sont sécurisées pour les enfants.\nYou need to attach your photo to the application form.\tVous devez adjoindre votre photo au formulaire de candidature.\nYou need to decide what kind of person you want to be.\tIl te faut décider quel genre de personne tu veux être.\nYou need to decide what kind of person you want to be.\tIl vous faut décider quel genre de personne vous voulez être.\nYou should know better than to talk back to your boss.\tTu devrais savoir qu'on ne répond pas à son patron.\nYou should know better than to talk back to your boss.\tVous devriez savoir qu'on ne répond pas à son employeur.\nYou should read a book like the one he is reading now.\tTu devrais lire un livre tel que celui qu'il lit actuellement.\nYou should read a book like the one he is reading now.\tTu devrais lire un livre comme celui qu'il lit actuellement.\nYou should read a book like the one he is reading now.\tVous devriez lire un livre tel que celui qu'il lit actuellement.\nYou should read a book like the one he is reading now.\tVous devriez lire un livre comme celui qu'il lit actuellement.\nYou're not suggesting Tom could have done it, are you?\tTu ne suggères pas que Tom aurait pu le faire, non ?\nYou're not suggesting Tom could have done it, are you?\tVous ne suggérez pas que Tom aurait pu le faire, non ?\nYou're not suggesting Tom could have done it, are you?\tTu n'es pas en train de suggérer que Tom aurait pu le faire, non ?\nYou're not suggesting Tom could have done it, are you?\tVous n'êtes pas en train de suggérer que Tom aurait pu le faire, non ?\nYou're the second person that's said that to me today.\tTu es la deuxième personne à me dire ça, aujourd'hui.\niTunes has turned out to be a real cash cow for Apple.\tiTunes s'est révélé être une véritable vache à lait pour Apple.\n\"Will you have another cup of coffee?\" \"No, thank you.\"\t\"Voulez-vous une autre tasse de café ?\" \"Non merci\"\nA few years ago, there was a huge scandal at my school.\tIl y a quelques années, il y a eu un énorme scandale à mon école.\nA good friend will stand by you through thick and thin.\tUn vrai ami sera à tes côtés dans les bons moments comme dans les mauvais.\nA liter of milk contains about thirty grams of protein.\tUn litre de lait contient à peu près trente grammes de protéines.\nA person's face tells a great deal about his character.\tLe visage d'une personne dit beaucoup de son caractère.\nA railway bridge is already being built over the river.\tUn pont de chemin de fer est déjà en construction au-dessus de la rivière.\nA relationship based on total honesty is bound to fail.\tUne relation basée sur l'honnêteté absolue est vouée à l'échec.\nA white car has been tailing me for the last two miles.\tUne voiture blanche m'a filé sur les deux derniers milles.\nA white car has been tailing me for the last two miles.\tUne voiture blanche m'a filée sur les deux derniers milles.\nAccording to TV news, there was a plane crash in India.\tD'après le journal télévisé, un avion s'est écrasé en Inde.\nAccording to the Bible, God made the world in six days.\tD'après la Bible, Dieu créa la Terre en six jours.\nAccording to the paper, there was a big fire in Boston.\tD'après le journal, il y a eu un grand incendie à Boston.\nAccording to the papers, the man has finally confessed.\tSelon les journaux, l'homme s'est finalement confessé.\nAfter I finished my homework, I watched baseball on TV.\tAprès avoir fini mes devoirs, j'ai regardé un match de base-ball à la télévision.\nAfter his death, his paintings were hung in the museum.\tAprès sa mort, ses peintures ont été exposées au musée.\nAfter reading his books I feel I can construct a house.\tAprès avoir lu ses livres, j'ai le sentiment de pouvoir construire une maison.\nAfter the concert, the crowd made for the nearest door.\tAprès le concert la foule se dirigea vers la porte la plus proche.\nAll horses are animals, but not all animals are horses.\tTous les chevaux sont des animaux, toutefois les animaux ne sont pas tous des chevaux.\nAll in all, the international conference was a success.\tGlobalement, la conférence internationale fut un succès.\nAll of the children had gone to bed before it got dark.\tTous les enfants étaient couchés avant qu'il fasse nuit.\nAmericans have to spend hours figuring out their taxes.\tLes Étasuniens doivent passer des heures à calculer leurs impôts.\nAn important function of policemen is to catch thieves.\tUne des fonctions importantes d'un policier est d'attraper les voleurs.\nAre there any liquids or sharp objects in your luggage?\tVos bagages contiennent-ils des liquides ou des objets pointus ?\nAre you sure you don't want to consider another option?\tÊtes-vous sûre de ne pas vouloir considérer une autre option ?\nAre you sure you don't want to consider another option?\tEs-tu sûr de ne pas vouloir considérer une autre option ?\nAs soon as I can get the chance, I'll come for a visit.\tDès que j'en ai l'occasion, je viendrai rendre visite.\nAs soon as I find it, I'll bring it over to your place.\tDès que je mets la main dessus, je te l'apporte à ton domicile.\nAs soon as the child saw his mother, he stopped crying.\tAussitôt que l'enfant vit sa mère, il cessa de pleurer.\nAs soon as the child saw his mother, he stopped crying.\tAussitôt que l'enfant vit sa mère, il arrêta de pleurer.\nAsk only questions that can be answered with yes or no.\tPosez seulement des questions auxquelles on peut répondre par oui ou non.\nBe sure to drop us a line as soon as you get to London.\tPense à nous laisser un mot dès que tu arrives à Londres.\nBecause of that virus, many elephants lost their lives.\tÀ cause de ce virus, de nombreux éléphants perdirent la vie.\nBetter to be the head of a dog than the tail of a lion.\tIl vaut mieux être la tête d'un chien que la queue d'un lion.\nBetter to extend an olive branch than launch a missile.\tMieux vaut tendre une branche d'olivier que de lancer un missile.\nBooks are for people who wish they were somewhere else.\tLes livres sont destinés aux gens qui voudraient être ailleurs.\nBritain is separated from the Continent by the Channel.\tLa Grande-Bretagne est séparée du Continent par la Manche.\nCan you remember the first word you learned in English?\tArrives-tu à te rappeler le premier mot que tu as appris en anglais ?\nCan you remember the first word you learned in English?\tArrivez-vous à vous rappeler le premier mot que vous avez appris en anglais ?\nCan you think of any reason why that might be the case?\tPouvez-vous imaginer la moindre raison pour laquelle ce pourrait être le cas ?\nCan you think of any reason why that might be the case?\tPouvez-vous imaginer une quelconque raison pour laquelle ce pourrait être le cas ?\nCars parked illegally on this street will be impounded.\tLes automobiles garées illicitement dans cette rue seront enlevées.\nChildren depend on their parents for food and clothing.\tLes enfants dépendent de leurs parents pour la nourriture et les vêtements.\nChildren depend on their parents for food and clothing.\tLes enfants dépendent de leurs parents pour la nourriture et leur habillement.\nDay in and day out, he does nothing but tend his sheep.\tJour après jour, il ne fait rien d'autre que s'occuper de ses moutons.\nDo we need to bring our dictionaries to class tomorrow?\tDevons-nous apporter nos dictionnaires en classe, demain ?\nDo we need to bring our dictionaries to class tomorrow?\tEst-il besoin que nous amenions nos dictionnaires en classe, demain ?\nDo you mind if I open the window and let the smoke out?\tEst-ce que ça te dérange si j'ouvre la fenêtre et laisse aller la fumée dehors ?\nDo you think that eating with your family is important?\tPensez-vous qu'il soit important de manger en famille ?\nDo you think the accused is really guilty of the crime?\tPenses-tu que l'accusé est réellement coupable ?\nDo you think you would ever consider going out with me?\tPenses-tu que tu voudrais jamais réfléchir à sortir avec moi ?\nDo you think you would ever consider going out with me?\tPensez-vous que vous voudriez jamais réfléchir à sortir avec moi ?\nDoes an electric wheelchair require a driver's license?\tUn fauteuil roulant électrique requiert-il un permis de conduire ?\nDon't be afraid to make mistakes when speaking English.\tNe craignez pas de faire des fautes en parlant anglais.\nDon't forget to mail this letter on your way to school.\tN'oublie pas de poster cette lettre sur le chemin de l'école.\nDon't forget to mail this letter on your way to school.\tN'oublie pas de poster cette lettre en allant à l'école.\nEating too much fat is supposed to cause heart disease.\tManger trop gras est censé causer des maladies cardiaques.\nEducation is one of the most essential aspects of life.\tIl n'y a rien de plus important dans la vie que l'éducation.\nEven if it costs 10,000 yen, I must buy the dictionary.\tJe dois acheter ce dictionnaire, même s'il coûte 10.000 yens.\nEven if she comes to see me, tell her I am not at home.\tMême si elle devait passer, dis-lui que je ne suis pas à la maison.\nEvery student was asked his or her name and birthplace.\tOn a demandé à chaque étudiant son nom et son lieu de naissance.\nEverybody in the park looked up at the hot air balloon.\tTout le monde dans le parc leva les yeux vers la montgolfière.\nExpedited delivery will cost an additional ten dollars.\tUne livraison accélérée coûtera dix dollars de plus.\nFinishing the report by tomorrow is next to impossible.\tFinir le rapport pour demain est à peu près impossible.\nFour people were in the car when the accident happened.\tQuatre personnes se trouvaient à bord de la voiture lorsque l'accident est survenu.\nFriends help each other. Just let me know what's wrong.\tLes amis doivent s'entraider. Dis-moi ce qui ne va pas.\nFrom a distance, that stone looks like a person's face.\tÀ distance, cette pierre ressemble à un visage humain.\nFrom the look of the sky, it may begin to snow tonight.\tD'après l'aspect du ciel, il se peut qu'il se mette à neiger ce soir.\nFruits and vegetables are essential to a balanced diet.\tLes fruits et les légumes sont essentiels à une alimentation équilibrée.\nHad she known the results, she would have been shocked.\tSi elle avait connu les résultats, elle en aurait été choquée.\nHave you ever eaten anything that made you hallucinate?\tAs-tu jamais mangé quoi que ce soit qui t'ait fait halluciner ?\nHave you ever eaten anything that made you hallucinate?\tAvez-vous jamais mangé quoi que ce soit qui vous ait fait halluciner ?\nHaving a few extra batteries handy is never a bad idea.\tDisposer de quelques piles supplémentaires n'est jamais une mauvaise idée.\nHe and I have been good friends since we were children.\tLui et moi avons été bons amis depuis que nous étions enfants.\nHe came to see me three days before he left for Africa.\tIl est venu me voir trois jours avant de partir en Afrique.\nHe could not perceive any difference between the twins.\tIl ne pouvait faire la différence entre les jumeaux.\nHe didn't like to ask for help even if he was starving.\tIl n'aimait pas demander de l'aide même s'il était affamé.\nHe dislikes unexpectedness and emergencies of any kind.\tIl n'aime pas l'imprévu et les urgences de toutes sortes.\nHe doesn't know the difference between right and wrong.\tIl ne connait pas la différence entre le bien et le mal.\nHe had been ill for a week when they sent for a doctor.\tIl était malade depuis une semaine quand ils ont appelé le médecin.\nHe has powerful connections in the publishing industry.\tIl a de puissantes relations dans le secteur de l'édition.\nHe hung an old, wooden oar on his wall as a decoration.\tIl accrocha une vieille rame en bois à son mur en guise de décoration.\nHe is sure to pass the exam if he studies at this rate.\tIl est certain de réussir l'examen s'il étudie à ce rythme.\nHe kept shifting his weight from one foot to the other.\tIl portait constamment son poids d'un pied sur l'autre.\nHe kissed her goodbye and left, never to be seen again.\tIl lui dit au revoir en l'embrassant puis sortit et on ne le revit plus jamais.\nHe listened to the news on the radio as he fed his dog.\tIl écouta les nouvelles à la radio en nourrissant son chien.\nHe listened to the news on the radio as he fed his dog.\tIl a écouté les nouvelles à la radio en nourrissant son chien.\nHe negotiated a lower price with the real estate agent.\tIl négocia un prix inférieur avec l'agent immobilier.\nHe pretends to be enthusiastic when his boss is around.\tIl fait semblant d'être enthousiaste lorsque son patron est dans le coin.\nHe pretends to be enthusiastic when his boss is around.\tIl feint l'enthousiasme quand son patron est dans les environs.\nHe read into my words a message that I hadn't intended.\tIl a lu dans mes paroles un message que je n'avais pas prévu.\nHe received a telegram saying that his mother had died.\tIl reçut un télégramme disant que sa mère était décédée.\nHe said he would not come in, but he came in after all.\tIl a dit qu'il n'entrerait pas, mais il est finalement entré.\nHe said that he would be eighteen on his next birthday.\tIl disait qu'il aurait dix-huit ans à son prochain anniversaire.\nHe settled down in his armchair to listen to the music.\tIl s'installa dans son fauteuil pour écouter la musique.\nHe spoke with a softness characteristic of southerners.\tIl parlait avec une douceur caractéristique des Sudistes.\nHe spoke with a softness characteristic of southerners.\tIl parlait avec une douceur caractéristique des gens du Sud.\nHe struck up friendships with the most unlikely people.\tIl a établi des amitiés avec les gens les plus improbables.\nHe was nearly hit by the car while crossing the street.\tIl a failli être heurté par la voiture en traversant la rue.\nHe went on reading the book as if nothing had happened.\tIl a poursuivi la lecture de son livre comme si rien ne s'était passé.\nHe will take over the business when his father retires.\tIl reprendra l'affaire une fois son père à la retraite.\nHere is a present for you in token of our appreciation.\tVoici un présent pour vous, comme marque de notre reconnaissance.\nHere is our answer to your fax message dated April 1st.\tVoici notre réponse à votre fax daté du 1er avril.\nHey, wait a minute, are you thinking what I'm thinking?\tEh, minute ! Es-tu en train de penser à ce que je suis en train de penser ?\nHis record is a new world record in the 100-meter dash.\tSon record est un nouveau record mondial du 100 mètres.\nHow is it that you know so much about Japanese history?\tComment se fait-il que tu en saches autant sur l'histoire du Japon ?\nHow thoughtful of you to have chilled some wine for us.\tComme c'est attentionné de votre part d'avoir mis au frais du vin pour nous.\nI always have a look at the newspaper before breakfast.\tJe jette toujours un œil au journal avant le petit-déjeuner.\nI am terribly busy because the report deadline is near.\tJe suis horriblement occupé parce que la date limite de remise du rapport approche.\nI am terribly busy because the report deadline is near.\tJe suis horriblement occupée parce que la date limite de remise du rapport approche.\nI can afford neither the time nor the money for a trip.\tJe n'ai pas le temps ni l'argent à consacrer à un voyage.\nI can't start up my computer. What am I supposed to do?\tJe ne peux pas démarrer mon ordinateur. Qu'est-ce que je suis censé faire ?\nI can't survive without air conditioning in the summer.\tJe ne peux pas survivre sans air conditionné durant l'été.\nI can't swallow these tablets without a drink of water.\tJe ne peux pas avaler ces cachets sans un verre d'eau.\nI can't turn the shower off. Could you check it for me?\tJe ne peux pas arrêter la douche. Pourriez-vous la vérifier pour moi ?\nI didn't tell Tom everything Mary asked me to tell him.\tJe n'ai pas dit à Tom tout ce que Mary m'a demandé de lui dire.\nI do not understand the exact meaning of this sentence.\tJe ne comprends pas le sens exact de cette phrase.\nI don't have to be here. I'm here because I want to be.\tIl ne me faut pas être ici. J'y suis parce que je le veux.\nI don't see why I have to go to your house at midnight.\tJe ne vois pas pourquoi je dois aller chez toi à minuit.\nI don't think anyone has lived in this house for years.\tJe ne pense pas que quiconque ait vécu dans cette maison depuis des années.\nI feel completely restored after a week in the country.\tJe me sens complètement rétabli après une semaine passée à la campagne.\nI feel completely restored after a week in the country.\tJe me sens complètement rétablie après une semaine passée à la campagne.\nI felt so sleepy that I could hardly keep my eyes open.\tJ'avais tellement envie de dormir que je pouvais à peine garder mes yeux ouverts.\nI forgot to tell you who would meet you at the station.\tJ'ai oublié de vous indiquer qui viendrait vous chercher à la gare.\nI forgot to tell you who would meet you at the station.\tJ'ai oublié de t'indiquer qui viendrait te chercher à la gare.\nI found a good place to buy fruit a couple of days ago.\tJ'ai trouvé un bon endroit pour acheter des fruits, l'autre jour.\nI gave in to temptation and began to smoke a cigarette.\tJe cédais à la tentation et me mis à fumer une cigarette.\nI gave you explicit instructions not to touch anything.\tJe vous avais explicitement recommandé de ne toucher à rien.\nI give you my permission to do whatever you want to do.\tJe vous donne la permission de faire tout ce qui vous chante.\nI give you my permission to do whatever you want to do.\tJe te donne la permission de faire tout ce qui te chante.\nI give you my permission to do whatever you want to do.\tJe vous octroie la permission de faire tout ce qui vous chante.\nI go up to the rooftop when I want to see the blue sky.\tJe monte sur le toit quand je veux voir le ciel bleu.\nI got sick of the constant noise of the street traffic.\tJ'en avais ras-le-bol du bruit incessant de la circulation.\nI had difficulty in making myself understood in French.\tJ'ai eu des difficultés à me faire comprendre en français.\nI had hardly checked in at the hotel when he called me.\tJe m'étais à peine inscrit dans le registre de l'hôtel qu'il m'a appelé au téléphone.\nI had stage fright at first, but I got over it quickly.\tAu début, j'avais le trac, mais je l'ai rapidement surmonté.\nI had stuff to do so I didn't have time to feel lonely.\tJ'avais des trucs à faire alors je n'ai pas eu le temps de sentir la solitude.\nI have always wanted to go to Australia with my family.\tJe veux aller en Australie avec ma famille.\nI have an early memory of my grandmother darning socks.\tJ'ai un souvenir d'enfance de ma grand-mère reprisant des chaussettes.\nI have fond memories of all the time we spent together.\tJ'ai de doux souvenirs de tout le temps que nous avons passé ensemble.\nI have looked everywhere, but I can not find my wallet.\tJ'ai regardé partout, mais je n'ai pas trouvé mon portefeuille.\nI have nothing in particular to say about this problem.\tJe n'ai rien de particulier à dire quant à ce problème.\nI haven't eaten any meat since I was fifteen years old.\tJe n'ai mangé aucune viande depuis que j'ai quinze ans.\nI haven't read his novel, and my brother hasn't either.\tJe n'ai pas lu son roman, et mon frère non plus.\nI just want to be able to support my family and myself.\tJe veux être en mesure de nous nourrir, ma famille et moi, un point c'est tout.\nI just want to be able to support my family and myself.\tJe veux tout simplement être en mesure de nous nourrir, ma famille et moi.\nI just want to be able to support my family and myself.\tJe veux tout simplement être à même de nous nourrir, ma famille et moi.\nI just want to be able to support my family and myself.\tJe veux être à même de nous nourrir, ma famille et moi, un point c'est tout.\nI just want to say how thankful I am for all your help.\tJe veux simplement exprimer combien je suis reconnaissant pour toute votre assistance.\nI just want to say how thankful I am for all your help.\tJe veux simplement exprimer combien je suis reconnaissante pour toute votre assistance.\nI know that it is highly unlikely that anyone knows me.\tJe sais qu'il est hautement improbable que quiconque me connaisse.\nI know you're probably mad about what I said yesterday.\tJe sais que tu es probablement furieux à propos de ce que j'ai dit hier.\nI know you're probably mad about what I said yesterday.\tJe sais que tu es probablement furieuse à propos de ce que j'ai dit hier.\nI know you're probably mad about what I said yesterday.\tJe sais que vous êtes probablement furieux à propos de ce que j'ai dit hier.\nI know you're probably mad about what I said yesterday.\tJe sais que vous êtes probablement furieuse à propos de ce que j'ai dit hier.\nI know you're probably mad about what I said yesterday.\tJe sais que vous êtes probablement furieuses à propos de ce que j'ai dit hier.\nI know you've got more important things to think about.\tJe sais que vous avez des choses plus importantes à penser.\nI know you've got more important things to think about.\tJe sais que tu as des choses plus importantes à penser.\nI listened but couldn't make out what they were saying.\tJ'ai écouté mais je n'ai pas pu distinguer ce qu'ils disaient.\nI made a list of people I wanted to invite to my party.\tJ'ai dressé une liste des gens que je voulais inviter à ma fête.\nI made a list of people I wanted to invite to my party.\tJe dressai une liste des gens que je voulais inviter à ma fête.\nI missed the last bus and had to walk home in the rain.\tJ'ai manqué le dernier car et ai dû marcher jusqu'à chez moi sous la pluie.\nI must admit that I don't like contemporary music much.\tJe dois admettre que je ne goûte guère la musique contemporaine.\nI never answer email messages from people I don't know.\tJe ne réponds jamais aux courriels émanant de gens que je ne connais pas.\nI never imagined so many people would come to my party.\tJe n'ai jamais imaginé que tant de gens viendraient à ma fête.\nI never see this picture without thinking of my father.\tJe ne vois jamais cette photo sans penser à mon père.\nI once knew a girl that snorted every time she laughed.\tJ'ai connu une fille qui grognait chaque fois qu'elle riait.\nI ordered way too much. I don't think I can eat it all.\tJ'ai commandé beaucoup trop. Je ne pense pas pouvoir tout manger.\nI received a telegram saying that my uncle had arrived.\tJ'ai reçu un télégramme disant que mon oncle était arrivé.\nI started a new blog. I'll do my best to keep it going.\tJ'ai commencé un nouveau bloc-notes. Je vais faire de mon mieux pour le faire vivre.\nI strongly advise you to take this medicine right away.\tJe vous conseille vivement de prendre ce médicament sans tarder.\nI studied English for four years with a native speaker.\tJ'ai étudié l'anglais pendant quatre ans avec un locuteur natif.\nI suppose everyone thinks I'm being a little too picky.\tJe suppose que tout le monde pense que je suis un peu trop difficile.\nI suppose you want to ask me who I was with last night.\tJe suppose que tu veux me demander avec qui j'étais hier soir.\nI tend to look at the pictures before reading the text.\tJ’ai tendance à regarder les images avant de lire le texte.\nI think it's safe to assume Tom won't be here tomorrow.\tJe pense qu'on peut dire avec certitude que Tom ne sera pas là demain.\nI think it's very likely that they'll arrive next week.\tJe pense qu'il est hautement probable qu'ils arrivent la semaine prochaine.\nI think she is withholding information from the police.\tJe pense qu'elle dissimule des informations à la police.\nI think you'd better take an umbrella in case it rains.\tJe pense que tu ferais mieux de prendre un parapluie, au cas où il pleuvrait.\nI thought we'd try that new restaurant down the street.\tJ'ai pensé que nous essayerions ce nouveau restaurant au bas de la rue.\nI thought you'd eventually realize Tom didn't like you.\tJe pensais que tu finirais par réaliser que Tom ne t'aimait pas.\nI thought you'd eventually realize Tom didn't like you.\tJe pensais que vous finiriez par réaliser que Tom ne vous aimait pas.\nI threw a ball to my dog and he caught it in his mouth.\tJ'ai jeté une balle à mon chien et il l'a rattrapé dans la gueule.\nI used to dream about being able to breathe underwater.\tAutrefois, je rêvais pouvoir respirer sous l'eau.\nI used to go fishing with my father when I was a child.\tJ'allais régulièrement pêcher avec mon père lorsque j'étais enfant.\nI used to keep a diary in English when I was a student.\tQuand j'étais étudiant, j'écrivais mon journal en anglais.\nI want to know more about the accident that killed Tom.\tJe veux en savoir plus à propos de l'accident dans lequel Tom est mort.\nI want you to return the book I lent you the other day.\tJe veux que tu me rendes le livre que je t'ai prêté l'autre jour.\nI was able to get my parents to consent to my marriage.\tJ'ai pu obtenir le consentement de mes parents pour mon mariage.\nI was disappointed when I heard that you couldn't come.\tJ'ai été déçu quand j'ai appris que vous ne pouviez pas venir.\nI was hoping I could go back to the beach next weekend.\tJ'espérais pouvoir retourner à la plage le week-end prochain.\nI will not be able to open the box without breaking it.\tJe n'arriverai pas à ouvrir la boîte sans qu'elle casse.\nI wish I could figure out how to embed a YouTube video.\tJ'aimerais trouver comment incorporer une vidéo YouTube.\nI would love to read a book on the history of laughter.\tJ'adorerais lire un livre sur l'histoire du rire.\nI'd like to know why my name was deleted from the list.\tJ'aimerais savoir pourquoi mon nom a été supprimé de la liste.\nI'll need at least three days to translate that thesis.\tJ'ai besoin d'au moins trois jours pour traduire cette thèse.\nI'm afraid I can't help you. You must ask someone else.\tJ'ai peur de ne pas pouvoir t'aider. Il faut que tu demandes à quelqu'un d'autre.\nI'm glad that I didn't eat the food that made you sick.\tJe suis content de ne pas avoir mangé la nourriture qui vous a rendu malade.\nI'm sorry for my terrible French. I'm still a beginner.\tJe m'excuse pour mon mauvais français. Je suis encore débutant.\nI'm sorry to bother you, but we've got a small problem.\tJe suis désolé de t'ennuyer mais nous avons un petit problème.\nI'm sorry to bother you, but we've got a small problem.\tJe suis désolée de t'ennuyer mais nous avons un petit problème.\nI'm sorry to bother you, but we've got a small problem.\tJe suis désolé de vous ennuyer mais nous avons un petit problème.\nI'm sorry to bother you, but we've got a small problem.\tJe suis désolée de vous ennuyer mais nous avons un petit problème.\nI'm too tired to concentrate on this problem right now.\tJe suis trop fatigué pour me concentrer sur ce problème à l'instant.\nI've already waited two hours. I can't wait any longer.\tJ'ai déjà attendu deux heures, je ne peux pas attendre plus.\nI've been asked to play my clarinet at a charity event.\tOn m'a demandé de jouer de ma clarinette à une fête de charité.\nI've made up my mind to come up with a better solution.\tJe me suis mis en tête de trouver une meilleure solution.\nI've never told anyone that before, not even my mother.\tJe n'ai jamais dit cela à personne auparavant, pas même à ma mère.\nI've never told anyone that before, not even my mother.\tJe n'ai jamais dit cela à quiconque auparavant, pas même à ma mère.\nIf I had bought the painting then, I would be rich now.\tSi j'avais acheté le tableau alors, je serais riche maintenant.\nIf I were in your situation, I would do the same thing.\tSi j'étais à votre place, je ferais la même chose.\nIf I were in your situation, I would do the same thing.\tSi j'étais à ta place, je ferais la même chose.\nIf I'd had a little more money, I would have bought it.\tSi j'avais eu un peu plus d'argent, je l'aurais acheté.\nIf Tom ate more vegetables, he'd probably be healthier.\tSi Tom mangeait plus de légumes, il serait probablement en meilleure santé.\nIf he had received her advice, he would have succeeded.\tS'il avait reçu ses conseils, il aurait réussi.\nIf he's late, it's OK to start the meeting without him.\tS'il est en retard, on peut commencer la réunion sans lui.\nIf it doesn't rain soon, our garden is going to dry up.\tS'il ne pleut pas bientôt, notre jardin va se dessécher.\nIf it were not for plants, we wouldn't be able to live.\tSans les plantes, nous ne pourrions pas vivre.\nIf the sun were to go out, all living things would die.\tSi le soleil devait s'éteindre, tous les êtres vivants mourraient.\nIf you are not going to the concert, then neither am I.\tSi vous n'allez pas au concert, je n'y vais pas non plus.\nIf you are to realize your dream, you must work harder.\tSi tu comptes réaliser ton rêve, tu dois travailler davantage.\nIf you cut the tail off of a lizard, it will grow back.\tSi on coupe la queue d'un lézard, elle repoussera.\nIf you listen closely enough you'll be able to hear it.\tSi tu écoutes d'assez près, tu pourras l'entendre.\nIf you think you're someone, you stop becoming someone.\tSi vous pensez que vous êtes quelqu'un, vous cessez de l'être.\nIf you want something done, ask a busy person to do it.\tSi tu veux que quelque chose soit fait, demande à quelqu'un d'occupé de le faire.\nIf you want something done, ask a busy person to do it.\tSi vous voulez que quelque chose soit fait, demandez à quelqu'un d'occupé de le faire.\nIn 1683, the Turks besieged Vienna for the second time.\tEn 1683, les Turcs assiégèrent Vienne pour la seconde fois.\nIn 1683, the Turks besieged Vienna for the second time.\tEn 1683, les Turcs ont assiégé Vienne pour la deuxième fois.\nIn 1939, as in 1914, the world was on the brink of war.\tEn 1939, comme en 1914, le monde était au bord de la guerre.\nIn Japan people come of age when they are 20 years old.\tAu Japon, les gens deviennent majeurs à l'âge de vingt ans.\nIn a court of fowls, the cockroach never wins his case.\tDans une basse-cour, le cafard ne remporte jamais son affaire.\nIn order to stay awake I may have to drink more coffee.\tPour rester éveillé je devrais peut-être boire un peu plus de café.\nIn the future, many workers will be replaced by robots.\tDans le futur, de nombreux travailleurs seront remplacés par des robots.\nIn the year 2012, there will be flying cars everywhere.\tEn l'an deux-mille-douze, il y aura des voitures volantes partout.\nIn what kind of situations would you use that sentence?\tDans quelle sorte de situation emploieriez-vous cette phrase ?\nInstead of going to Europe, I decided to go to America.\tAu lieu d'aller en Europe, j'ai décidé d'aller aux États-Unis.\nIntroverts often find it difficult to make new friends.\tLes introvertis ont souvent du mal à se faire de nouveaux amis.\nIs there anything else you can tell us that might help?\tY a-t-il quoi que ce soit d'autre que vous pouvez nous dire qui pourrait aider ?\nIs there something in particular that you want to hear?\tY a-t-il quelque chose de particulier que tu veuilles entendre ?\nIs there something in particular that you want to hear?\tY a-t-il quelque chose de particulier que vous vouliez entendre ?\nIs there something in particular that you want to know?\tY a-t-il quelque chose en particulier que tu veuilles savoir ?\nIs there something in particular that you want to know?\tY a-t-il quelque chose en particulier que vous veuillez savoir ?\nIt began to rain, so he did not have to water the lawn.\tIl se mit à pleuvoir, alors il n'eut pas à arroser la pelouse.\nIt could take years before this bridge is ready to use.\tÇa pourrait prendre des années avant que ce pont soit prêt à être utilisé.\nIt goes without saying that honesty is the best policy.\tIl va sans dire que l'honnêteté est la meilleure politique.\nIt goes without saying that nobody can come between us.\tIl va sans dire que personne ne peut nous séparer.\nIt is getting more and more difficult to make a living.\tGagner sa vie devient de plus en plus difficile.\nIt is perfectly natural for him to be proud of his son.\tIl est bien naturel qu'il soit fier de son fils.\nIt is true that I was head over heels in love with her.\tIl est vrai que j'étais fou amoureux d'elle.\nIt is your constant efforts that count most in the end.\tCe sont vos constants efforts qui importent en fin de compte.\nIt may not be a good idea to eat while you are running.\tCe n'est peut-être pas une bonne idée de manger tandis que vous courez.\nIt may not be a good idea to eat while you are running.\tCe n'est peut-être pas une bonne idée de manger tandis que tu coures.\nIt might sound far-fetched, but this is a real problem.\tCela pourrait sembler tiré par les cheveux, mais c’est un réel problème.\nIt sounds as if the government doesn't know what to do.\tD'après ce qu'on a dit, le gouvernement ne sait pas quoi faire.\nIt took him a long time to take in what she was saying.\tIl lui fallut beaucoup de temps pour comprendre ce qu'elle disait.\nIt was a great tragedy for them to lose their only son.\tC'était une grande tragédie pour eux d'avoir perdu leur fils unique.\nIt was below zero this morning, but I cycled to school.\tLa température était négative ce matin, mais je me suis rendu à l'école en vélo.\nIt was not until I reached home that I missed my purse.\tC'est après être arrivé à la maison que j'ai oublié mon porte-monnaie.\nIt was such a wonderful movie that I saw it five times.\tC'était un film tellement merveilleux que je l'ai vu cinq fois.\nIt'd be better to avoid her now, because she's violent.\tCe serait mieux de l'éviter maintenant, parce qu'elle est violente.\nIt's a great honor to have had the King visit our city.\tLe roi nous a fait un grand honneur en visitant notre ville.\nIt's a lot easier to fall in love than to stay in love.\tIl est bien plus aisé de tomber amoureux que de le rester.\nIt's been a week, but I'm still suffering from jet lag.\tCela fait une semaine mais je souffre toujours du décalage horaire.\nIt's best to make international calls person to person.\tIl est préférable d'utiliser les appels téléphoniques à l'international pour communiquer seulement d'individu à individu.\nIt's easier to learn a new language when you are young.\tC'est plus facile d'apprendre une nouvelle langue lorsqu'on est jeune.\nIt's impossible to anticipate every possible situation.\tIl est impossible d'anticiper toutes les situations possibles.\nIt's no use for him to try to find out the real reason.\tIl lui est inutile d'essayer de trouver la véritable raison.\nIt's not like you're going to get arrested or anything.\tTu ne vas pas te faire arrêter ou quelque chose comme ça !\nIt's not like you're going to get arrested or anything.\tVous n'allez pas vous faire arrêter ou quelque chose comme ça !\nIt's not that easy to learn a new language after fifty.\tCe n'est pas si facile d'apprendre une nouvelle langue après cinquante ans.\nIt's possible that they'll go to the supermarket today.\tIl est possible qu'ils aillent au supermarché aujourd'hui.\nIt's unlikely that a hacker could get into our website.\tIl est improbable qu'un pirate pénètre notre site web.\nIt's unlikely that that movie will make a lot of money.\tIl est peu probable que ce film fasse de grosses recettes.\nIt's up to you to decide whether we'll go there or not.\tC'est à toi de décider si nous irons là-bas ou non.\nIt's up to you to decide whether we'll go there or not.\tC'est à toi de décider si on ira là-bas ou pas.\nJudging from her appearance, she seems to be very rich.\tSi on en croit les apparences, elle doit être très riche.\nJudging from the look of the sky, it is likely to rain.\tÀ en croire l'état du ciel, il est probable qu'il pleuve.\nJust as he was going out, there was a great earthquake.\tAu moment où il sortait, il y eut un grand tremblement de terre.\nJust think about how you'd feel in a similar situation.\tPense simplement à ce que tu ressentirais en pareille situation !\nJust think about how you'd feel in a similar situation.\tPensez simplement à ce que vous ressentiriez en pareille situation !\nKissing a person who smokes is like licking an ashtray.\tEmbrasser une personne qui fume, c'est comme lécher un cendrier.\nLake Baikal in Russia is the deepest lake in the world.\tLe lac Baïkal en Russie est le lac le plus profond du monde.\nLast night my house was robbed while I was still awake.\tLa nuit dernière, ma maison a été cambriolée alors que j'étais encore éveillé.\nLast night my house was robbed while I was still awake.\tLa nuit dernière, ma maison a été cambriolée tandis que j'étais encore éveillée.\nLife imitates art more often than the other way around.\tLa vie imite l'art plus souvent que la réciproque.\nLife imitates art more often than the other way around.\tLa vie imite l'art plus souvent que l'inverse.\nLittle lights were blinking on and off in the distance.\tDe petites lumières clignotaient dans le lointain.\nMain Street was blocked off all morning for the parade.\tLa rue principale était bouclée toute la matinée pour la parade.\nMany people are suffering from hunger around the world.\tMaintes personnes souffrent de la faim dans le monde.\nMany revolutions have aimed to abolish the aristocracy.\tDe nombreuses révolutions ont eu pour but d'abolir l'aristocratie.\nMost shops near the school are closed on Saturdays now.\tLa plupart des magasins près de l'école ferment le samedi maintenant.\nMy English teacher recommended that I read these books.\tMon professeur d'anglais a recommandé que je lise ces livres.\nMy English teacher recommended that I read these books.\tMa professeur d'anglais a recommandé que je lise ces livres.\nMy English teacher recommended that I read these books.\tMon professeur d'anglais a recommandé que je lise ces ouvrages.\nMy brother is very important. At least he thinks he is.\tMon frère est très important. Du moins il pense qu'il l'est.\nMy father bought this house for us when we got married.\tMon père nous a acheté cette maison quand nous nous sommes mariés.\nMy father encouraged me to learn how to play the piano.\tMon père m'a encouragé à apprendre le piano.\nMy father often falls asleep while watching television.\tMon père s'endort souvent en regardant la télévision.\nMy friend copied my homework and the teacher found out.\tMon copain a copié mes devoirs et le prof s'en est aperçu.\nMy friend copied my homework and the teacher found out.\tMon copain a copié mes devoirs et la prof s'en est aperçue.\nMy friend copied my homework and the teacher found out.\tMon copain a copié mes devoirs et l'instituteur s'en est aperçu.\nMy friend copied my homework and the teacher found out.\tMon copain a copié mes devoirs et l'institutrice s'en est aperçue.\nMy mother disliked caterpillars, not to mention snakes.\tMa mère craignait les chenilles, sans parler des serpents.\nMy mother happened to be there when the fire broke out.\tMa mère se trouvait là par hasard lorsque le feu s'est déclaré.\nMy mother happened to be there when the fire broke out.\tMa mère se trouvait justement là lorsque le feu s'est déclaré.\nMy mother likes tulips very much and so does my sister.\tMa mère aime beaucoup les tulipes et il en va de même pour ma sœur.\nMy mother likes tulips very much and so does my sister.\tMa mère aime beaucoup les tulipes et ma sœur aussi.\nMy sister works at the United States Embassy in London.\tMa sœur travaille à l'ambassade des États-Unis à Londres.\nMy wife's part-time job brings in a little extra money.\tLe travail à temps partiel de ma femme ramène un peu d'argent supplémentaire.\nNext time you come, don't forget to give it back to me.\tLa prochaine fois que tu viens, n'oublie pas de me la rendre.\nNo matter what you say, I am convinced that I am right.\tQuoi que tu puisses dire, je suis convaincu d'avoir raison.\nNo other student in the class is as brilliant as he is.\tAucun autre élève de la classe n'est aussi génial que lui.\nNo practical joker should be without a whoopee cushion.\tAucun farceur ne devrait se passer de coussin péteur.\nNo sooner had I left the house than it started to rain.\tÀ peine ai-je quitté la maison qu’il se mit à pleuvoir.\nNowadays it is not unusual for a woman to travel alone.\tAujourd'hui il n'est pas inhabituel pour une femme de voyager seule.\nNowadays, almost every home has one or two televisions.\tDe nos jours, presque tous les foyers ont une ou deux télévisions.\nOf the three boys, the youngest is the most attractive.\tDes trois enfants, c'est le plus jeune le plus attirant.\nOne hundred and fifty people entered the marathon race.\tCent cinquante personnes ont rejoint la course du marathon.\nOne of her three cars is blue and the others are white.\tL'une de ses trois voitures est bleue et les autres sont blanches.\nOne of my dreams is to one day see the aurora borealis.\tUn de mes rêves est de voir un jour l'aurore boréale.\nOnly members of the club are entitled to use this room.\tSeuls les membres du club sont autorisés à utiliser cette pièce.\nOnly one third of the members turned up at the meeting.\tSeul un tiers des membres s'est pointé au rendez-vous.\nOur rent is four times as much as it was ten years ago.\tNotre loyer est quatre fois plus élevé qu'il y a dix ans.\nOur school prohibits us from going to the movies alone.\tNotre école nous défend d'aller au cinéma tout seul.\nOur teacher doesn't just speak English, but French too.\tNotre professeur ne parle pas juste anglais mais aussi français.\nOur teacher doesn't just speak English, but French too.\tNotre instituteur ne fait pas que parler anglais mais aussi français.\nParents are responsible for their children's education.\tLes parents portent la responsabilité de l'éducation de leurs enfants.\nPart of this conviction is rooted in my own experience.\tUne part de cette conviction est enracinée dans ma propre expérience.\nPeople can easily start loving, but not so easily stop.\tLes gens peuvent facilement se mettre à aimer mais pas si facilement arrêter d'aimer.\nPlease drop it in the mail if it's not out of your way.\tS'il te plaît, dépose le au courrier si ça ne te t'éloigne pas de ton chemin.\nPrince William is second in line to the English throne.\tLe prince Guillaume est le second en ligne de succession au trône d'Angleterre.\nRecently there have been a lot of protests in the city.\tRécemment, il y a eu beaucoup de manifestations dans la ville.\nSanitary conditions in the refugee camps were terrible.\tLes conditions sanitaires dans les camps de réfugiés étaient terribles.\nSeveral cottages have been isolated by the flood water.\tPlusieurs cottages ont été isolés par l'inondation.\nSeveral thousand people became victims of this disease.\tPlusieurs milliers de gens devinrent victimes de cette maladie.\nShe asked him some questions, but he refused to answer.\tElle lui posa des questions, mais il refusa de répondre.\nShe asked him some questions, but he refused to answer.\tElle lui posa quelques questions, mais il refusa de répondre.\nShe asked him some questions, but he refused to answer.\tElle lui a posé des questions, mais il a refusé de répondre.\nShe asked him some questions, but he refused to answer.\tElle lui a posé quelques questions, mais il a refusé de répondre.\nShe asked me what had become of him, but I didn't know.\tElle me demanda ce qu'il était advenu de lui, mais je l'ignorais.\nShe asked me what had become of him, but I didn't know.\tElle m'a demandé ce qu'il était advenu de lui, mais je l'ignorais.\nShe came to Japan for the purpose of studying Japanese.\tElle est venue au Japon dans le but d'étudier la langue japonaise.\nShe flatters herself by thinking that she is beautiful.\tElle se flatte elle-même en pensant qu'elle est belle.\nShe has always done her best to make their life easier.\tElle a toujours fait de son mieux pour leur rendre la vie plus facile.\nShe interrupted him while he was speaking to my father.\tElle l'interrompit tandis qu'il parlait à mon père.\nShe interrupted him while he was speaking to my father.\tElle l'interrompit tandis qu'il était en train de parler à mon père.\nShe interrupted him while he was speaking to my father.\tElle l'a interrompu tandis qu'il parlait à mon père.\nShe interrupted him while he was speaking to my father.\tElle l'a interrompu tandis qu'il était en train de parler à mon père.\nShe is two years old, but she can already count to 100.\tElle n'a que deux ans, mais elle sait déjà compter jusqu'à 100.\nShe looks young, but actually she's older than you are.\tElle a l'air jeune, mais en réalité elle est plus vieille que toi.\nShe makes it a point to always arrive fashionably late.\tElle fait un point d'honneur à toujours arriver parfaitement en retard.\nShe needed some money to buy something to feed her dog.\tElle avait besoin d'argent pour acheter quelque chose à manger à son chien.\nShe put on her sister's jeans and looked in the mirror.\tElle mit le jean de sa sœur et se regarda dans le miroir.\nShe showed her guests how to eat what she had prepared.\tElle montra à ses invités comment manger ce qu'elle avait préparé.\nShe spends more time thinking about work than doing it.\tElle passe davantage de temps à penser au travail qu'à le faire.\nShe spends more time thinking about work than doing it.\tElle passe plus de temps à penser au travail qu'à le faire.\nShe'll be having dinner with him at this time tomorrow.\tElle sera en train de dîner avec lui demain à cette heure-ci.\nShe's in total denial about her husband's philandering.\tElle est en totale dénégation quant aux infidélités de son mari.\nShe's in total denial about her husband's philandering.\tElle est en totale dénégation en ce qui concerne les infidélités de son mari.\nShe's so gullible she'll believe anything you tell her.\tElle est tellement crédule qu'elle croira quoi que vous lui dites.\nSince I didn't know what to do, I asked him for advice.\tComme je ne savais quoi faire, je lui ai demandé conseil.\nSince he was dressed in black, he looked like a priest.\tComme il était habillé de noir, il ressemblait à un prêtre.\nSince he was dressed in black, he looked like a priest.\tComme il était habillé de noir, on aurait dit un prêtre.\nSince my mother was sick, I couldn't go to the concert.\tComme ma mère était malade, je n'ai pas pu me rendre au concert.\nSmall businesses are often absorbed by a major company.\tLes petites entreprises sont souvent englouties par les grandes compagnies.\nSmall enterprises are feeling the squeeze of inflation.\tLes petites entreprises ressentent la pression de l'inflation.\nSo difficult was the question that no one could answer.\tTellement la question était difficile que nul ne sut répondre.\nSome parents don't punish their children when they lie.\tCertains parents ne punissent pas leurs enfants lorsqu'ils mentent.\nSome people are for the plan and others are against it.\tCertaines personnes sont pour le plan et d'autres contre.\nSooner or later, I'll probably get tired of doing this.\tJe vais sûrement finir par me fatiguer de faire ça.\nSorry for not answering your question. I didn't see it.\tDésolé de ne pas avoir répondu à votre question. Je ne l'ai pas vue.\nSorry for not answering your question. I didn't see it.\tDésolée de ne pas avoir répondu à votre question. Je ne l'ai pas vue.\nSorry for not answering your question. I didn't see it.\tDésolé de ne pas avoir répondu à ta question. Je ne l'ai pas vue.\nSorry for not answering your question. I didn't see it.\tDésolée de ne pas avoir répondu à ta question. Je ne l'ai pas vue.\nSorry, but can you show me the way to the next village?\tExcusez-moi, pouvez-vous me montrer le chemin jusqu'au prochain village ?\nSpending time with your family should be your priority.\tPasser du temps avec ta famille devrait être ta priorité.\nSpending time with your family should be your priority.\tPasser du temps avec votre famille devrait être votre priorité.\nStep away from the car and put your hands on your head.\tÉcartez-vous de la voiture et placez les mains sur la tête !\nStores are closed in the afternoon because of the heat.\tOn ferme les magasins l'après-midi à cause de la chaleur.\nStudents are impatient for the summer holidays to come.\tLes étudiants sont impatients que les vacances d'été arrivent.\nTake a few steps and tell me if it hurts when you walk.\tFais quelques pas et ensuite dis-moi si ça te fait mal quand tu marches.\nTaking a hot bath helps me take my mind off my worries.\tPrendre un bain m'aide à libérer mon esprit de mes soucis.\nThe Japan Sea separates Japan from the Asian Continent.\tLa mer du Japon sépare le Japon du continent asiatique.\nThe Japanese attacked Pearl Harbor on December 7, 1941.\tLes Japonais ont attaqué Pearl Harbor le 7 décembre 1941.\nThe Soviet troops started to withdraw from Afghanistan.\tLes troupes soviétiques ont commencé à se retirer d'Afghanistan.\nThe atomic bomb destroyed the entire city of Hiroshima.\tLa bombe atomique a entièrement détruit la ville d'Hiroshima.\nThe brave fireman rescued a boy from the burning house.\tLe pompier courageux a sauvé le garçon en le tirant de la maison en flammes.\nThe ceremony was held in honor of the guest from China.\tCette cérémonie a eu lieu en l'honneur de l'hôte venu de Chine.\nThe child had no overcoat on although it was very cold.\tL'enfant n'avait pas de manteau alors qu'il faisait très froid.\nThe climate of New Zealand is similar to that of Japan.\tLe climat de la Nouvelle-Zélande est similaire à celui du Japon.\nThe company produces soy sauce and other food products.\tL'entreprise produit de la sauce soja et d'autres produits alimentaires.\nThe crane, unlike the dog, has never dreamed of flying.\tLa grue, contrairement au chien, n'a jamais rêvé de voler.\nThe delivery of the goods was delayed due to the storm.\tLa livraison des marchandises a été retardée à cause de la tempête.\nThe doctor continued to observe the patient's behavior.\tLe docteur a continué à observer le comportement du patient.\nThe examples in this dictionary are easy to understand.\tLes exemples de ce dictionnaire sont faciles à comprendre.\nThe friend who I thought would pass the exam failed it.\tCet ami, lequel je pensais aurait réussi cet examen, l'a échoué.\nThe government lowered taxes for lower-income families.\tLe gouvernement a baissé les impôts pour les familles à revenus modestes.\nThe government should invest more money in agriculture.\tLe gouvernement devrait investir davantage d'argent dans l'agriculture.\nThe ingredients for this recipe are a little expensive.\tLes ingrédients nécessaires à cette recette sont un peu coûteux.\nThe kitten lapped up the milk I poured into the saucer.\tLe chaton lapa le lait que je versais dans la saucière.\nThe kitten lapped up the milk I poured into the saucer.\tLe chaton lapait le lait que je versais dans la saucière.\nThe last thing I want to do is cause you any more pain.\tLa dernière chose que je veuille faire est vous causer le moindre mal supplémentaire.\nThe last thing I want to do is cause you any more pain.\tLa dernière chose que je veuille faire est de te causer le moindre mal supplémentaire.\nThe locomotive was pulling a long line of freight cars.\tLa locomotive tractait une longue file de wagons de marchandises.\nThe man never told the police what his destination was.\tL'homme n'a jamais dit à la police quelle était sa destination.\nThe moment I held the baby in my arms, it began to cry.\tAu moment où j'ai pris le bébé dans mes bras, il a commencé à pleurer.\nThe moment I held the baby in my arms, it began to cry.\tAu moment où je tenais le bébé dans mes bras, il commença à pleurer.\nThe more we learn, the better we realize our ignorance.\tPlus on apprend, mieux on se rend compte de notre ignorance.\nThe natives have to defend their land against invaders.\tLes indigènes doivent défendre leur terre contre les envahisseurs.\nThe number is 932-8647, but I don't know the area code.\tLe numéro est 932-86-47, mais je ne connais pas l'indicatif régional.\nThe number of people who go abroad has been increasing.\tLe nombre de personnes qui partent à l'étranger a augmenté.\nThe official could not deal with the complaint himself.\tLe fonctionnaire ne pouvait traiter lui-même la plainte.\nThe plane should have arrived at Kansai Airport by now.\tL'avion devrait être arrivé à l'aéroport de Kansai maintenant.\nThe plane should have arrived at Kansai Airport by now.\tL'avion devrait être arrivé à l'aéroport de Kansai à présent.\nThe police used a battering ram to break down the door.\tLa police a utilisé un bélier pour défoncer la porte.\nThe population of Japan is larger than that of Britain.\tLa population du Japon est plus importante que celle de la Grande-Bretagne.\nThe population of Tokyo is greater than that of London.\tLa population de Tokyo est plus importante que celle de Londres.\nThe prime minister appoints the members of his cabinet.\tLe Premier Ministre désigne les membres de son cabinet.\nThe psychologist asked me a whole battery of questions.\tLe psychologue m'a posé toute une batterie de questions.\nThe radio is too loud. Can't you turn it down a little?\tLa radio est trop forte. Tu ne peux pas baisser un peu le volume ?\nThe rain made it impossible for us to go on the picnic.\tLa pluie nous a rendu incapables d'aller pique-niquer.\nThe recent coffee shortage brought about many problems.\tLa récente pénurie de café a donné lieu à un grand nombre de problèmes.\nThe results of the experiment were not as we had hoped.\tLes résultats de l'expérience ne furent pas tels que nous les avions espérés.\nThe room in which the exam was being held was very hot.\tLa pièce dans laquelle se tenait l'examen était très chaude.\nThe samurai decapitated his opponent in one fell swoop.\tLe samouraï décapita son adversaire d'un seul coup d'un seul.\nThe show was very interesting. You should have seen it.\tLe spectacle était vraiment intéressant. Tu aurais dû venir le voir.\nThe sooner you return, the happier your father will be.\tLe plus tôt tu reviendras, le plus heureux sera ton père.\nThe storm kept us from searching for the missing child.\tLa tempête nous a empêché de rechercher l'enfant disparu.\nThe top spun perilously close to the edge of the table.\tLa toupie tournait dangereusement près du bord de la table.\nThe tornado touched down two kilometers from my school.\tLa tornade a frappé à deux kilomètres de mon école.\nThe train is traveling at the rate of 50 miles an hour.\tLe train voyage à la vitesse de 50 miles par heure.\nThe train was derailed by a piece of iron on the track.\tLe train a déraillé à cause d'un morceau de fer qui était sur les rails.\nThe train was held up because of the railroad accident.\tLe train était retenu à cause d'un accident de voirie.\nThe view from the top of the mountain was breathtaking.\tLa vue du sommet de la montagne était à couper le souffle.\nThe withdrawal symptoms are more severe than I thought.\tLes symptômes de manque sont plus sévères que je ne pensais.\nThere are many jobs available in the computer industry.\tIl y a de nombreux emplois disponibles dans le secteur informatique.\nThere are many useful appliances in the hardware store.\tIl y a, à la quincaillerie, de nombreux trucs utiles.\nThere are people who think pineapples grow underground.\tIl y a des gens qui croient que l'ananas pousse sous terre.\nThere are turtles that are more than two centuries old.\tIl y a des tortues qui ont plus de deux cents ans.\nThere has been a rash of burglaries in my neighborhood.\tIl y a eu une épidémie de cambriolages dans mon voisinage.\nThere is a certain amount of truth in what he's saying.\tIl y a une part de vérité dans ce qu'il dit.\nThere is a little wine left in the bottom of the glass.\tIl reste un peu de vin au fond du verre.\nThere is an urgent need for improved living conditions.\tIl y a un besoin urgent d'améliorer les conditions de vie.\nThere must be a way to arrive at a diplomatic solution.\tIl doit y avoir un moyen d'arriver à une solution diplomatique.\nThere should be more national hospitals for old people.\tIl faudrait qu'il y ait plus d'hôpitaux nationaux pour les personnes âgées.\nThere was nothing but sand as far as the eye could see.\tIl n'y avait rien d'autre que du sable, aussi loin que l'œil pouvait voir.\nThere's nothing like close combat to test one's mettle.\tIl n'y a rien de tel que le combat rapproché pour éprouver son courage.\nThey answered their teacher's question with difficulty.\tIls répondirent difficilement à la question de leur professeur.\nThey are talking over a cup of coffee in the cafeteria.\tIls parlent autour d'une tasse de café, à la cafétéria.\nThey asked a lot of questions about my past experience.\tIls ont posé beaucoup de questions au sujet de mon expérience passée.\nThey decided on the date and location of their wedding.\tIls ont décidé de la date et du lieu de leur mariage.\nThey decided on the date and location of their wedding.\tElles ont décidé de la date et du lieu de leur mariage.\nThey don't let anyone enter without special permission.\tOn ne laisse entrer personne sans permission spéciale.\nThey kidnapped me, drugged me, and then brainwashed me.\tIls m'ont kidnappé, ils m'ont drogué et alors ils m'ont lavé le cerveau.\nThink of what you are reading while you are reading it.\tPense à ce que tu es en train de lire pendant que tu le lis.\nThis article is more interesting than the previous one.\tCet article est plus intéressant que le précédent.\nThis encyclopaedia is convenient for looking up things.\tCette encyclopédie est pratique pour vérifier des choses.\nThis is the first time I've written a letter in German.\tC'est la première fois que j'écris une lettre en Allemand.\nThis is the most beautiful sight that I have ever seen.\tC'est la plus belle vue que j'ai jamais contemplée.\nThis series will be remembered for a long time to come.\tOn se souviendra de cette série pendant longtemps.\nThis work is simple enough that even a child can do it.\tCe travail est simple au point que même un enfant peut l'accomplir.\nThis work is simple enough that even a child can do it.\tCe travail est simple au point que même une enfant peut l'accomplir.\nThose who know do not talk. Those who talk do not know.\tCeux qui savent ne parlent pas ; ceux qui parlent ne savent pas.\nThose who know do not talk. Those who talk do not know.\tCeux qui savent ne parlent pas. Ceux qui parlent ne savent pas.\nThose who live in glass houses should not throw stones.\tCeux qui habitent des maisons de verre ne devraient pas lancer de pierres.\nThose who live in glass houses should not throw stones.\tCeux qui vivent dans des maisons de verre ne devraient pas lancer de pierres.\nThousands of people were deceived by the advertisement.\tDes milliers de personnes furent déçues par la publicité.\nTom and Mary sat on the beach and talked to each other.\tTom et Mary se sont assis sur la plage et se sont parlés.\nTom and Mary sat on the beach and talked to each other.\tTom et Mary s'assirent sur la plage et discutèrent.\nTom asked Mary many questions that she couldn't answer.\tTom a posé beaucoup de questions à Mary auxquelles elle ne pouvait pas répondre.\nTom asked Mary many questions that she couldn't answer.\tTom a posé beaucoup de questions à Mary auxquelles elle n'a pas pu répondre.\nTom asked Mary to wait for him in front of the library.\tTom demanda à Mari de l’attendre devant la bibliothèque.\nTom can't speak French. Mary can't speak French either.\tTom ne sait pas parler français. Marie ne sait pas parler français non plus.\nTom certainly wasn't at home when we went to visit him.\tTom n'était certainement pas chez lui lorsque nous sommes allés lui rendre visite.\nTom cut the cake with the new knife Mary had given him.\tTom a coupé le gâteau avec le nouveau couteau que Mary lui avait offert.\nTom cut the cake with the new knife Mary had given him.\tTom coupa le gâteau avec le nouveau couteau que Mary lui avait offert.\nTom did his best to avoid making eye contact with Mary.\tTom fit de son mieux pour éviter tout contact visuel avec Mary.\nTom didn't get a chance to thank Mary for all her help.\tTom n'a pas eu d'occasion de remercier Mary pour toute son aide.\nTom didn't get paid as much as he thought he was worth.\tTom n'a pas été payé autant qu'il pensait valoir.\nTom didn't know when Mary was planning to go to Boston.\tTom ne savait pas quand Mary prévoyait d'aller à Boston.\nTom died three weeks ago after being bitten by a cobra.\tTom est mort il y a trois semaines d'une morsure de cobra.\nTom doesn't get along with the man who lives next door.\tTom ne s'entend pas avec l'homme qui vit à côté.\nTom doesn't have what it takes to be a race car driver.\tTom n’a pas l’étoffe d’un pilote de course.\nTom doesn't like it when Mary criticizes him in public.\tTom n'aime pas quand Mary lui fait des reproches en public.\nTom doesn't like the color of the walls in his bedroom.\tTom n'aime pas la couleur des murs de sa chambre.\nTom doesn't wash the dishes. He leaves that up to Mary.\tTom ne lave pas la vaisselle. Il laisse cela à Marie.\nTom found out Mary was stealing from the cash register.\tTom s'est aperçu que Mary volait de l'argent dans la caisse.\nTom found the hat Mary was looking for in the basement.\tTom a trouvé le chapeau que Marie cherchait au sous-sol.\nTom found the hat Mary was looking for in the basement.\tTom trouva le chapeau que Marie cherchait au sous-sol.\nTom got to the station too late so he missed the train.\tTom est arrivé à la gare trop tard donc il a raté le train.\nTom is better at science than anyone else in his class.\tTom est meilleur en science que n'importe qui dans sa classe.\nTom is one of the more than 3,000 inmates on death row.\tThomas est l'un des plus de trois mille détenus dans le couloir de la mort.\nTom kept on talking even though Mary had fallen asleep.\tTom continua de parler alors même que Mary s'était endormie.\nTom poured Mary a cup of coffee and topped off his own.\tTom a versé une tasse de café à Mary et a complété la sienne.\nTom realized that he wasn't as smart as the other kids.\tTom réalisa qu'il n'était pas aussi intelligent que les autres enfants.\nTom told Mary that she shouldn't walk alone after dark.\tTom a dit à Mary qu'elle ne devrait pas marcher seule après la tombée du jour.\nTom was afraid that no one would show up for the party.\tTom avait peur que personne ne se montre à la fête.\nTom's family showed a video of his life at his funeral.\tLa famille de Tom a montré une vidéo de sa vie à son enterrement.\nWe are looking for someone who is proficient in French.\tOn cherche quelqu'un qui peut parler français dans un contexte professionnel.\nWe are looking forward to your visit to our new office.\tNous nous réjouissons de votre visite dans nos nouveaux bureaux.\nWe depend on foreign nations for our natural resources.\tNous dépendons des nations étrangères pour nos ressources naturelles.\nWe exchanged phone numbers at the end of the gathering.\tNous avons échangé nos numéros de téléphone à la fin de l'assemblée.\nWe have to transmit our culture to the next generation.\tNous devons transmettre notre culture à la prochaine génération.\nWe have yet to discover an effective remedy for cancer.\tIl nous faut encore découvrir un remède efficace pour le cancer.\nWe haven't had a price increase in the last five years.\tNous n'avons pas connu d'augmentation de prix dans les cinq dernières années.\nWe need to figure out what works and what doesn't work.\tIl faut que nous figurions ce qui fonctionne et ce qui ne fonctionne pas.\nWe started with 20 students. Now we have more than 200.\tOn a commencé avec 20 étudiants. Maintenant nous en avons plus de 200.\nWe were all ears when he started to tell us his secret.\tNous étions tout ouïes lorsqu'il a commencé à nous conter son secret.\nWe were amazed at the excellence of the boy's drawings.\tNous étions stupéfiés de l'excellence des dessins du garçon.\nWe were mesmerized by the pulsating glow of the embers.\tNous étions hypnotisés par la pulsation de l'incandescence des braises.\nWhat are some foods you usually eat with your children?\tQuels sont les aliments qu'on mange habituellement avec ses enfants ?\nWhat are some foods you usually eat with your children?\tQuels sont les aliments que tu manges habituellement avec tes enfants ?\nWhat are some foods you usually eat with your children?\tQuels sont les aliments que vous mangez habituellement avec vos enfants ?\nWhat are some of the most popular foods eaten in Spain?\tQuels sont certains des aliments les plus populaires consommés en Espagne ?\nWhat kind of deodorant do you prefer, spray or roll-on?\tQuelle sorte de déodorant préférez-vous, en aérosol ou à bille ?\nWhat kind of deodorant do you prefer, spray or roll-on?\tQuelle sorte de déodorant préfères-tu, en aérosol ou à bille ?\nWhat would you do if you saw a man from another planet?\tQue ferais-tu si tu voyais un homme venant d'une autre planète ?\nWhat would you do if you saw a man from another planet?\tQue feriez-vous si vous voyiez un homme venant d'une autre planète ?\nWhat's the most convenient way to get to Tokyo Station?\tQuelle est la façon la plus simple d'aller à la gare de Tokyo ?\nWhat's wrong with parading around your own house naked?\tQuel est le problème de parader nu autour de sa maison ?\nWhen I heard that song, it reminded me of my childhood.\tLorsque j'ai entendu cette chanson, ça m'a rappelé mon enfance.\nWhen he got to the station, the train had already left.\tLorsqu'il atteignit la gare, le train était déjà parti.\nWhen she saw that they had no schools, she started one.\tQuand elle vit qu'ils n'avaient pas d'école, elle en créa une.\nWhen summer is over, the days grow shorter and shorter.\tLorsque l'été est fini, les jours raccourcissent de plus en plus.\nWhenever I see you, my heart tells me that I'm in love.\tQuand je te vois, mon cœur me dit que je suis amoureux.\nWhenever I see you, my heart tells me that I'm in love.\tÀ chaque fois que je te vois, mon cœur me dit que je suis amoureux.\nWhether he wrote it or not will always remain a secret.\tQu'il l'ait écrit ou non restera toujours un secret.\nWhether we win or lose, I won't have any hard feelings.\tQue nous gagnions ou perdions, je n'aurai aucune rancune.\nWhile he was lost in thought, he heard his name called.\tPerdu dans ses pensées, il entendit lorsque son nom fut appelé.\nWho was the first person to break the four-minute mile?\tQui fut la première personne à pulvériser le mille en quatre minutes ?\nWho's the person sitting at the other end of the table?\tQui est la personne assise à l'autre bout de la table ?\nWomen eat lighter meals when they're eating with a guy.\tLes femmes mangent des repas plus légers lorsqu'elles mangent avec un type.\nWords cannot express the extent to which you are wrong.\tLes mots ne peuvent plus décrire à quel point tu es dans l'erreur.\nYesterday, I ran into my teacher at the amusement park.\tHier j'ai rencontré par hasard mon professeur au parc d'attractions.\nYou are not permitted to bring dogs into this building.\tVous n'êtes pas autorisé à amener des chiens dans ce bâtiment.\nYou are not permitted to bring dogs into this building.\tVous n'êtes pas autorisée à amener des chiens dans ce bâtiment.\nYou are not permitted to bring dogs into this building.\tVous n'êtes pas autorisés à amener des chiens dans ce bâtiment.\nYou are not permitted to bring dogs into this building.\tVous n'êtes pas autorisées à amener des chiens dans ce bâtiment.\nYou are not permitted to bring dogs into this building.\tTu n'es pas autorisé à amener des chiens dans ce bâtiment.\nYou are not permitted to bring dogs into this building.\tTu n'es pas autorisée à amener des chiens dans ce bâtiment.\nYou can see how much difference a few degrees can make.\tVous pouvez voir quelle différence quelques degrés font.\nYou can't accuse him of stealing unless you have proof.\tÀ moins que vous n'ayez des preuves, vous ne pouvez pas l'accuser de vol.\nYou can't accuse him of stealing unless you have proof.\tÀ moins que vous n'aies des preuves, tu ne peux pas l'accuser de vol.\nYou can't just barge in here whenever you feel like it.\tTu ne peux pas simplement faire irruption ici chaque fois que ça te chante.\nYou can't just barge in here whenever you feel like it.\tVous ne pouvez pas simplement faire irruption ici chaque fois que ça vous chante.\nYou can't just walk in here and start dictating policy.\tTu ne peux pas entrer ici et commencer à dicter la politique.\nYou can't just walk in here and start dictating policy.\tVous ne pouvez pas entrer ici et commencer à dicter la politique.\nYou can't say anything till you know the circumstances.\tTu ne peux rien dire jusqu'à ce que tu connaisses les circonstances.\nYou don't have to go to the party if you don't want to.\tTu n'es pas obligé d'aller à la fête si tu ne veux pas.\nYou had better not tell your father about the accident.\tTu ferais mieux de ne pas parler de l'accident à ton père.\nYou had better not tell your father about the accident.\tVous feriez mieux de ne pas parler de l'accident à votre père.\nYou had better read a lot of books while you are young.\tTu aurais dû lire beaucoup de livres quand tu étais jeune.\nYou have bought more postage stamps than are necessary.\tTu as acheté plus de timbres-poste que nécessaire.\nYou have to take off your shoes before you can come in.\tTu dois ôter tes chaussures avant de pouvoir entrer.\nYou may as well leave such a decision to your daughter.\tVous pouvez tout aussi bien laisser une telle décision à votre fille.\nYou may eat anything as long as you don't eat too much.\tTu peux manger de tout pour autant que tu ne manges pas trop.\nYou must realize that prosperity does not last forever.\tTu dois comprendre que la prospérité ne dure pas éternellement.\nYou should not give your children everything they want.\tVous ne devriez pas donner à vos enfants tout ce qu'ils veulent.\nYou should not give your children everything they want.\tTu ne devrais pas donner à tes enfants tout ce qu'ils veulent.\nYou should really lay off that. It'll ruin your health.\tTu devrais vraiment laisser tomber ça. Ça va ruiner ta santé.\nYou shouldn't let children play with the kitchen knife.\tTu ne devrais pas laisser les enfants jouer avec le couteau de cuisine.\nYou will not be able to go through the book so quickly.\tTu ne pourras pas parcourir le livre si vite.\nYou will not be able to go through the book so quickly.\tVous ne pourrez pas passer en revue le livre aussi vite.\nYou'd be amazed how much time Tom spends playing games.\tTu serais impressionné de voir combien de temps passe Tom à jouer aux jeux vidéos.\nYou'll save yourself a lot of time if you take the car.\tVous gagnerez beaucoup de temps si vous prenez la voiture.\nYou're more beautiful now than the day I first met you.\tTu es plus belle, maintenant, que le jour où je t'ai rencontrée pour la première fois.\nYou've made no allowance for the fact that he is young.\tTu n'as pas tenu compte du fait qu'il était jeune.\nYou've made no allowance for the fact that he is young.\tVous n'avez pas tenu compte du fait qu'il était jeune.\nYou've somehow managed to misconstrue what I have said.\tTu t'es en quelque sorte débrouillé pour mal interpréter ce que j'ai dit.\n\"Tom and Mary have broken up.\" \"That's ancient history.\"\t« Tom et Mary se sont séparés. » « C'est une histoire ancienne. »\nA French translation of this book was published in 2013.\tUne traduction française de ce livre a été publiée en 2013.\nA capital letter is used at the beginning of a sentence.\tOn met des majuscules en début de phrase.\nA chance like this only comes along once in a blue moon.\tUne occasion comme ça n'arrive que tous les trente-six du mois.\nA dangerous criminal has escaped from the insane asylum.\tUn dangereux criminel s'est échappé de l'asile de fous.\nA female friend of mine loves to go to gay bars with me.\tUne amie à moi aime se rendre dans les bars homos avec moi.\nA good yoga session can limber you up like nothing else.\tUne bonne séance de yoga peut t'assouplir comme rien d'autre.\nA journey of a thousand miles begins with a single step.\tUn voyage de mille milles commence par un simple pas.\nA loophole in the law allowed him to escape prosecution.\tUn trou dans la législation lui a permis d'échapper à des poursuites.\nA lot of students around the world are studying English.\tDe nombreux étudiants dans le monde étudient l'anglais.\nA man's worth lies not in what he has but in what he is.\tLa valeur d'un homme ne réside pas dans ce qu'il a mais en ce qu'il est.\nA rush-hour traffic jam delayed my arrival by two hours.\tUn embouteillage durant les heures de pointe a retardé mon arrivée de deux heures.\nA slip of the tongue is sometimes fatal to a politician.\tUn lapsus est parfois fatal pour les politiciens.\nAccording to the newspaper, he participated in the plot.\tD'après le journal, il a participé au complot.\nAccording to the paper, there was an earthquake in Peru.\tSelon le journal, il y a eu un tremblement de terre au Pérou.\nAdopting a low calorie diet will increase your lifespan.\tAdopter un régime alimentaire basses-calories augmentera votre durée de vie.\nAfrican elephants have bigger ears than Asian elephants.\tLes éléphants d'Afrique ont de plus grandes oreilles que les éléphants d'Asie.\nAliens are often depicted with dark, almond-shaped eyes.\tLes extra-terrestres sont souvent dépeints avec des yeux noirs en amandes.\nAll the kids at school made fun of me because I was fat.\tTous les gamins à l'école se sont moqués de moi car j'étais gros.\nAll things considered, my father's life was a happy one.\tTout bien considéré, la vie de mon père fut heureuse.\nAmerica likes to claim that it is a \"classless\" society.\tLes États-Unis sont un pays qui aime à croire qu'il n'a pas de classes sociales.\nAny apartment will do as long as the rent is reasonable.\tN'importe quel appartement ira tant que le loyer est raisonnable.\nAny teacher that can be replaced by a machine should be.\tTout professeur qui peut être remplacé par une machine devrait l'être.\nApart from on rainy days, I always ride my bike to work.\tÀ part les jours de pluie, je me rends toujours au travail avec mon vélo.\nAs far as I know, he is a person who keeps his promises.\tPour autant que je sache, il est de ceux qui respectent leurs promesses.\nAs far as the eye could see, there was nothing but sand.\tAussi loin que l'œil pouvait porter, il n'y avait rien que du sable.\nAs far as the eye could see, there was nothing but sand.\tÀ perte de vue, il n'y avait rien d'autre que du sable.\nBefore going to France, my son is going to study French.\tAvant d'aller en France, mon fils va étudier le français.\nBoth boys and girls should take cooking class in school.\tGarçons et filles devraient suivre des cours de cuisine à l'école.\nChildren need many things, but above all they need love.\tLes enfants ont besoin de beaucoup de choses, mais par-dessus tout, ils ont besoin d'amour.\nClean out the shed and throw away things you don't need.\tNettoyez la cabane et jetez les déchets.\nCompare your translation with the one on the blackboard.\tCompare ta traduction avec celle du tableau.\nConfessions obtained by torture are generally worthless.\tLes confessions obtenues par la torture sont en général sans valeur.\nCosmetic surgery is not covered by most insurance plans.\tLa chirurgie esthétique n'est pas prise en charge par la plupart des contrats d'assurance.\nCould you give me the name and phone number of a doctor?\tPouvez-vous me donner le nom et numéro de téléphone d'un docteur ?\nCould you lower your voice please? I'm really hung over.\tTu pourrais parler moins fort s'il te plaît ? J'ai une de ces gueule de bois ...\nCould you please tell me what your cell phone number is?\tPourriez-vous, s'il vous plait, me dire quel est votre numéro de téléphone mobile ?\nCould you please tell me what your cell phone number is?\tPeux-tu, s'il te plait, me dire quel est ton numéro de GSM ?\nDid you see the sunset earlier? It was really beautiful.\tAs-tu vu le coucher de soleil tantôt ? C'était vraiment beau.\nDid you see the sunset earlier? It was really beautiful.\tAvez-vous vu le coucher de soleil tantôt ? C'était vraiment beau.\nDidn't you know that he passed away about two years ago?\tNe saviez-vous pas qu'il est mort il y a deux ans ?\nDo you have any idea how important your test grades are?\tAs-tu la moindre idée combien tes notes d'examen sont importantes ?\nDo you have any idea how important your test grades are?\tAvez-vous la moindre idée combien vos notes d'examen sont importantes ?\nDo you know how far it is from the station to city hall?\tSais-tu quelle est la distance entre la gare et l'hôtel de ville ?\nDo you know of an apartment I can rent that allows pets?\tConnaissez-vous un appartement que je pourrais louer où les animaux domestiques sont admis ?\nDon't be afraid to make mistakes when you speak English.\tN'ayez pas peur de faire des fautes quand vous parlez anglais.\nDon't hesitate to ask questions if you don't understand.\tN'hésitez pas à poser des questions si vous ne comprenez pas.\nDon't hesitate to ask questions if you don't understand.\tN'hésitez pas à demander si vous ne comprenez pas quelque chose.\nDue to the worsening weather, the departure was delayed.\tEn raison de la dégradation des conditions météorologiques, le départ fut retardé.\nEngland and France are separated by the English Channel.\tL'Angleterre et la France sont séparées par la Manche.\nEven though he was exhausted, he had to go back to work.\tBien qu'il fût épuisé, il devait reprendre le travail.\nEven though there was a no U-turn sign, I made a U-turn.\tMême s'il y avait un panneau indiquant qu'il ne fallait pas faire demi-tour, j'en ai fait un.\nEvery day they killed a llama to make the Sun God happy.\tIls tuaient un lama chaque jour pour satisfaire le dieu soleil.\nEvery morning she gets up early because she has to cook.\tTous les matins, elle se lève tôt parce qu'elle doit cuisiner.\nEvery time I look at this picture, I think of my father.\tChaque fois que je vois cette photo, je me souviens de mon père.\nEverybody took a hostile attitude toward illegal aliens.\tTout le monde a adopté une attitude hostile envers les immigrés clandestins.\nEverybody was disguised, so I couldn't tell who was who.\tTout le monde était déguisé, donc je ne pourrais pas dire qui était qui.\nFew people are on a first name basis with the president.\tPeu de gens nomment le président par son prénom.\nFingernails grow nearly four times faster than toenails.\tLes ongles des doigts croissent environ quatre fois plus vite que ceux des pieds.\nFirst of all, you should talk it over with your parents.\tTu devrais d'abord en discuter avec tes parents.\nFor the time being, he's staying at a neighboring hotel.\tPour l'instant il est descendu dans un hôtel du voisinage.\nGasoline costs more in France than in the United States.\tL'essence coûte plus en France qu'aux Etats-Unis.\nGenerally speaking, a woman will live longer than a man.\tDe manière générale, une femme vivra plus longtemps qu'un homme.\nHave you been crying all night? Your eyes are all puffy.\tTu as pleuré toute la nuit ? Tes yeux sont gonflés.\nHave you finished reading the book I lent you last week?\tAs-tu fini le livre que je t'ai prêté la semaine dernière ?\nHave you made up your mind where to go for the holidays?\tAs-tu pris une décision quant à l'endroit où tu iras en vacances ?\nHave you seen our museums? What do you think about them?\tAvez-vous vu nos musées ? Qu'en pensez-vous ?\nHe always plans a thing out carefully before he does it.\tIl planifie toujours une chose minutieusement avant de la faire.\nHe can play the piano, the flute, the guitar, and so on.\tIl peut jouer du piano, de la flûte, de la guitare et ainsi de suite.\nHe could swim across the river when he was in his teens.\tIl était capable de nager à travers la rivière quand il était adolescent.\nHe doesn't just speak French, he speaks Spanish as well.\tIl ne parle pas que français, mais aussi espagnol.\nHe doesn't want to admit that he has a drinking problem.\tIl refuse d'admettre qu'il a un problème de boisson.\nHe doesn't want to talk to me now, and I don't know why.\tIl ne veut pas me parler, maintenant, et je ne sais pas pourquoi.\nHe enjoys wandering around the forest in his spare time.\tIl apprécie de se balader dans la forêt durant son temps libre.\nHe had been there for ten years before he came to Kyoto.\tIl vécut là dix ans avant de déménager pour Kyoto.\nHe has dedicated his life to the preservation of nature.\tIl a dédié sa vie à la préservation de l'environnement.\nHe has dedicated his life to the preservation of nature.\tIl a consacré sa vie à la préservation de la nature.\nHe has just published an interesting series of articles.\tIl vient de publier une série intéressante d’articles.\nHe has not come yet. Something may have happened to him.\tIl n'est pas encore là. Il lui est peut-être arrivé quelque chose.\nHe has not come yet. Something may have happened to him.\tIl n'est pas encore là. Quelque chose lui est peut-être arrivé.\nHe has worked out a quicker way to get the job finished.\tIl a travaillé sur une façon plus rapide de terminer la tâche.\nHe is complaining about something or other all the time.\tIl se plaint tout le temps d'une chose ou l'autre.\nHe is good at solving complicated mathematical problems.\tIl est bon pour résoudre des problèmes mathématiques complexes.\nHe is not the sort of man who counts on others for help.\tIl n'est pas le genre d'homme qui compte sur les autres.\nHe never travels without taking an alarm clock with him.\tIl ne voyage jamais sans prendre un réveil avec lui.\nHe often accuses her of never listening to what he says.\tIl l'accuse souvent de ne jamais écouter ce qu'il dit.\nHe testified that no money changed hands at the meeting.\tIl a témoigné qu'aucun argent n'a changé de mains à la réunion.\nHe took a deep breath before entering his boss's office.\tIl prit une longue inspiration avant de pénétrer dans le bureau de son patron.\nHe tried to put the fragments of a broken vase together.\tIl essaya de rassembler les morceaux d'un vase brisé.\nHe visited his hometown for the first time in ten years.\tIl a visité sa ville natale pour la première fois en dix ans.\nHe was suspended from school for a week for bad conduct.\tIl a été renvoyé de l'école pendant une semaine pour mauvaise conduite.\nHe went out of the room without being noticed by anyone.\tIl est sorti de la pièce sans que personne ne s'en rende compte.\nHe who thinks he has learned enough has learned nothing.\tCelui qui pense qu'il a assez appris n'a rien appris.\nHe will be having dinner with her at this time tomorrow.\tIl dînera avec elle à cette même heure demain.\nHe's got what it takes to make it in the business world.\tIl a ce qu'il faut pour réussir dans le monde des affaires.\nHer slurred speech was an indication that she was drunk.\tSon langage inarticulé trahissait qu'elle était saoule.\nHere's a list of people I want to invite to our wedding.\tVoici une liste de personnes que je veux inviter à notre mariage.\nHow about having a drink after we finish our work today?\tQue dis-tu d'aller prendre un verre après que nous aurons fini le travail aujourd'hui ?\nHow long does it take from here to Tokyo Station by car?\tCombien de temps cela prend-il en voiture d'ici à la gare de Tokyo ?\nHow many kinds of vegetables do you grow in your garden?\tCombien de sortes de légumes fais-tu pousser dans ton jardin ?\nHow many kinds of vegetables do you grow in your garden?\tCombien de sortes de légumes faites-vous pousser dans votre jardin ?\nHow many people do you think die from cancer every year?\tCombien de gens, pensez-vous, meurent chaque année du cancer ?\nI agree with the opinion that real estate is overpriced.\tJe suis d'accord avec l'opinion que l'immobilier est trop cher.\nI always confuse which side is port and which starboard.\tJe confonds toujours quel côté est bâbord et quel côté tribord.\nI am looking forward to receiving your favorable answer.\tJ'espère une réponse favorable de votre part.\nI am sorry to cancel the appointment at the last minute.\tJe suis désolé d'annuler le rendez-vous à la dernière minute.\nI asked Tom to go to the supermarket and buy some bread.\tJ'ai demandé à Tom d'aller au supermarché et d'acheter du pain.\nI asked her to slowly read off the numbers on the meter.\tJe lui ai demandé de relever les chiffres du compteur.\nI asked the butcher to trim all the fat off of the meat.\tJ'ai demandé au boucher de dégraisser la viande.\nI can't figure out how to transfer MP3 files to my iPod.\tJe n'arrive pas à trouver comment transférer des fichiers MP3 sur mon iPod.\nI can't just leave. I have to tell the boss I'm leaving.\tJe ne peux pas simplement partir. Je dois dire au patron que je pars.\nI can't just leave. I have to tell the boss I'm leaving.\tJe ne peux pas simplement partir. Je dois dire à la patronne que je pars.\nI didn't realize my wallet was missing until I got home.\tJe ne me suis pas rendu compte que mon portefeuille avait disparu jusqu'à ce que je sois rentré.\nI don't know who they are, but they don't look friendly.\tJ'ignore qui ils sont mais ils ne semblent pas amicaux.\nI don't know who they are, but they don't look friendly.\tJ'ignore qui elles sont mais elles ne semblent pas amicales.\nI don't think Tom realized just how much Mary loved him.\tJe ne pense pas que Tom ait réalisé à quel point Mary l'aimait.\nI don't think it would work as well as you might expect.\tJe ne pense pas que ça marcherait aussi bien que tu pourrais t'y attendre.\nI don't think it would work as well as you might expect.\tJe ne pense pas que ça fonctionnerait aussi bien que tu pourrais t'y attendre.\nI feel like everyone is talking about me behind my back.\tJ'ai l'impression que tout le monde parle de moi dans mon dos.\nI feel like going out rather than staying at home today.\tJ'aimerais mieux sortir dehors que de rester à la maison aujourd'hui.\nI finally found time to sit down and read the newspaper.\tJ'ai fini par trouver le temps de m'asseoir et de lire le journal.\nI found a French-Hebrew dictionary at a small bookstore.\tJ'ai trouvé un dictionnaire français-hébreu dans une petite librairie.\nI had a call from her for the first time in a long time.\tElle m'a appelé pour la première fois depuis longtemps.\nI had my doubts about whether that was the right choice.\tJ'avais mes doutes quant à savoir si c'était le bon choix.\nI had to shoot my horse because he was in a lot of pain.\tJ'ai du abattre mon cheval parce qu'il souffrait beaucoup.\nI have no interest in putting my money into your dreams.\tJe n'ai aucun intérêt à placer mon argent dans vos rêves.\nI have no interest in putting my money into your dreams.\tJe n'ai aucun intérêt à placer mon argent dans tes rêves.\nI have not eaten any seafood since the recent oil spill.\tJe n'ai pas mangé de produits de la mer depuis la dernière marée noire.\nI have not eaten any seafood since the recent oil spill.\tJe n'ai pas mangé de fruits de mer depuis la dernière marée noire.\nI have something very special planned for your birthday.\tJ'ai prévu quelque chose de très particulier pour ton anniversaire.\nI haven't told the kids yet that we're getting divorced.\tJe n'ai pas encore dit aux enfants que nous sommes en plein divorce.\nI haven't told the kids yet that we're getting divorced.\tJe n'ai pas encore dit aux enfants que nous sommes en train de divorcer.\nI haven't yet made amends with all the people I've hurt.\tJe n'ai pas encore demandé pardon à tous les gens que j'ai blessés.\nI hear the grass is green even in the winter in England.\tJ'ai entendu dire qu'en Angleterre l'herbe était verte même en hiver.\nI heard about the accident for the first time yesterday.\tHier j'ai entendu parler de l'accident pour la première fois.\nI heard her speaking English as fluently as an American.\tJe l'ai entendue parler anglais aussi couramment qu'une Étasunienne.\nI heard that a paralyzed man was eaten alive by maggots.\tJ'ai entendu qu'un homme paralysé a été dévoré vivant par les asticots.\nI heard that a woman stabbed a man for eating her lunch.\tJ'ai entendu qu'une femme a poignardé un homme parce qu'il avait mangé son déjeuner.\nI keep saying that I'm innocent, but no one will listen.\tJe continue de dire que je suis innocent, mais personne ne m'écoute.\nI keep saying that I'm innocent, but no one will listen.\tJe continue de clamer mon innocence, mais personne ne m'écoute.\nI keep saying that I'm innocent, but no one will listen.\tJe continue à clamer mon innocence mais personne n'écoute.\nI left my keys on the table. Could you bring them to me?\tJ'ai laissé mes clés sur la table. Veux-tu bien me les apporter ?\nI like to take things apart to see what makes them tick.\tJ'aime démonter les choses pour voir comment elles fonctionnent.\nI made an appointment to see the doctor at four o'clock.\tJ'ai pris rendez-vous chez le médecin à quatre heures.\nI never imagined we'd be talking about this topic today.\tJe n'ai jamais imaginé que nous discuterions de ce sujet aujourd'hui.\nI never imagined we'd be talking about this topic today.\tJe n'ai jamais imaginé que nous serions en train de discuter de ce sujet aujourd'hui.\nI never thought it'd be this hard to create an iPad app.\tJe n'ai jamais pensé que ce serait si difficile de créer une application pour iPad.\nI read a couple of more chapters before I went to sleep.\tJ'ai lu quelques chapitres supplémentaires avant d'aller dormir.\nI really need to catch the first train tomorrow morning.\tIl me faut vraiment sauter dans le premier train, demain matin.\nI received an invitation from him, but didn't accept it.\tJ'ai reçu son invitation mais je ne l'ai pas acceptée.\nI sat at the front in order to hear the lecture clearly.\tJe me suis assis devant pour bien entendre le cours.\nI sat at the front in order to hear the lecture clearly.\tJe me suis assise devant pour bien entendre le cours.\nI saw some small animals running away in all directions.\tJ'ai vu de petits animaux courir dans tous les sens.\nI shouldn't have to go to the dentist again for a while.\tJe ne devrais pas avoir à retourner chez le dentiste pendant un moment.\nI still have just enough time to get this done, I think.\tJe dispose encore de juste assez de temps pour achever ça, je pense.\nI stopped at the store and got some milk on my way back.\tJe me suis arrêté à l'épicerie et j'ai acheté du lait sur le chemin du retour.\nI studied French in school, but I'm not very good at it.\tJ'ai étudié le français à l'école, mais je ne suis pas très bon dans cette matière.\nI suggest keeping your opinions to yourself from now on.\tJe suggère que vous gardiez vos opinions pour vous, dorénavant.\nI suggest that you don't say anything about this to Tom.\tJe vous suggère de ne rien dire concernant cela à Tom.\nI think I like eating white rice better than brown rice.\tJe pense que je préfère manger du riz blanc que du riz complet.\nI think I like eating white rice better than brown rice.\tJe pense que je préfère manger du riz blanc à du riz complet.\nI think it's time for me to discuss the matter with him.\tJe pense qu'il est temps que je discute l'affaire avec lui.\nI think it's time for me to discuss the matter with him.\tJe pense qu'il est temps que je discute de l'affaire avec lui.\nI thought we'd agreed that you wouldn't do that anymore.\tJe pensais que nous étions tombés d'accord sur le fait que vous ne le feriez plus.\nI thought we'd agreed that you wouldn't do that anymore.\tJe pensais que nous étions tombées d'accord sur le fait que vous ne le feriez plus.\nI thought we'd agreed that you wouldn't do that anymore.\tJe pensais que nous étions tombés d'accord sur le fait que tu ne le ferais plus.\nI thought we'd agreed that you wouldn't do that anymore.\tJe pensais que nous étions tombées d'accord sur le fait que tu ne le ferais plus.\nI told you not to talk about the matter in her presence.\tJe t'ai dit de ne pas parler de l'affaire en sa présence.\nI tried to talk a friend of mine out of getting married.\tJ'essayais de convaincre un ami à moi de ne pas se marier.\nI want to live in a world where people love one another.\tJe veux vivre dans un monde où les gens s'aiment les uns les autres.\nI was curious to know why people had been staring at me.\tJ'étais curieux de savoir pourquoi les gens m'avaient regardé fixement.\nI was curious to know why people had been staring at me.\tJ'étais curieuse de savoir pourquoi les gens m'avaient regardée fixement.\nI was just about to go out shopping when you telephoned.\tJ'allais juste sortir faire des courses quand vous avez téléphoné.\nI was just wondering what kind of pets you have at home.\tJe me demandais juste quel type de chien tu as à la maison.\nI will do that work on condition that I get paid for it.\tJe ferai ce travail à condition d'être payé.\nI will do that work on condition that I get paid for it.\tJe ferai ce travail à la condition d'être payé.\nI would rather throw the money away than give it to him.\tJe préférerais jeter l'argent que de le lui donner.\nI'd like to borrow about three hundred thousand dollars.\tJ'aimerais emprunter environ trois-cent-mille dollars.\nI'd like to give Tom something special for his birthday.\tJ'aimerais offrir quelque chose de spécial à Tom pour son anniversaire.\nI'd love to go with you to the show, but I'm flat broke.\tJ'adorerais aller avec toi à la revue, mais je suis complètement fauché.\nI'm going to go to the kitchen to grab something to eat.\tJe vais aller à la cuisine pour glaner quelque chose à manger.\nI'm going to prepare for the final exams this afternoon.\tJe vais me préparer pour les examens finaux cette après-midi.\nI'm not sure what it was, but it sounded like a gunshot.\tJe ne suis pas sûr de ce dont il s'agissait, mais ça a fait le bruit d'une détonation.\nI'm not sure what it was, but it sounded like a gunshot.\tJe ne suis pas sûre de ce dont il s'agissait, mais ça a fait le bruit d'une détonation.\nI'm not sure what it was, but it sounded like a gunshot.\tJe ne suis pas sûr de ce dont il s'agissait, mais cela fit le bruit d'une détonation.\nI'm not sure what it was, but it sounded like a gunshot.\tJe ne suis pas sûre de ce dont il s'agissait, mais cela fit le bruit d'une détonation.\nI'm not sure what it was, but it sounded like a gunshot.\tJe ne suis pas sûr de ce dont il s'agissait, mais cela fit le bruit d'un coup de feu.\nI'm not sure what it was, but it sounded like a gunshot.\tJe ne suis pas sûre de ce dont il s'agissait, mais cela fit le bruit d'un coup de feu.\nI'm not sure what it was, but it sounded like a gunshot.\tJe ne suis pas sûr de ce que c'était, mais cela a fait le bruit d'un coup de feu.\nI'm not sure what it was, but it sounded like a gunshot.\tJe ne suis pas sûre de ce que c'était, mais cela a fait le bruit d'un coup de feu.\nI'm surprised that Tom doesn't know how to speak French.\tJe suis surpris que Tom ne sache pas comment parler français.\nI've made up my mind to give back all the money I stole.\tJe me suis décidé à rendre tout l'argent que j'ai fauché.\nI've never used a hacksaw before. Could you show me how?\tJe n'ai jamais utilisé de scie à métaux avant. Tu pourrais me montrer ?\nI've never used a hacksaw before. Could you show me how?\tJe n'ai jamais utilisé de scie à métaux avant. Pourriez-vous me montrer ?\nIf I had eaten more for lunch, I wouldn't be hungry now.\tSi j'avais davantage déjeuné, je n'aurais pas faim maintenant.\nIf I had wanted your opinion, I would have asked for it.\tSi j'avais voulu ton opinion, je te l'aurais demandée.\nIf I had wanted your opinion, I would have asked for it.\tSi j'avais voulu votre opinion, je vous l'aurais demandée.\nIf anything should ever happen to me, you can look here.\tAu cas où il m'arriverait quelque chose, regardez ici.\nIf he had studied harder, he would have passed the exam.\tS’il avait plus étudié, il aurait réussi à l’examen.\nIf it had not been for your advice, I would have failed.\tSi ce n'était grâce à vos conseils, j'aurais échoué.\nIf it wasn't for modern medicine, I'd be dead right now.\tSi ce n'était pour la médecine moderne, je serais mort à l'heure qu'il est.\nIf you are to know a nation, you must learn its history.\tSi on veut connaitre un pays, il faut apprendre son histoire.\nIf you can't come, you should let me know ahead of time.\tSi vous ne pouvez pas venir, il faut me le faire savoir par avance.\nIf you can't come, you should let me know ahead of time.\tSi tu ne peux pas venir, il faut me le faire savoir par avance.\nIf you can't fix the pipe, we'll have to call a plumber.\tSi tu ne peux pas réparer la tuyauterie, nous devrons appeler un plombier.\nIf you didn't eat the cake I made, then your sister did.\tSi ce n'est pas toi qui as mangé le gâteau que j'ai préparé, c'est ta sœur qui l'a fait.\nIf you don't do your duty, people will look down on you.\tSi tu ne fais pas ton devoir, les gens te mépriseront.\nIf you don't want to miss the train, you'd better hurry.\tSi tu ne veux pas manquer le train, tu ferais mieux de te dépêcher !\nIf you don't want to miss the train, you'd better hurry.\tSi tu ne veux pas louper le train, tu ferais mieux de te grouiller !\nIf you don't want to miss the train, you'd better hurry.\tSi vous ne voulez pas louper le train, vous feriez mieux de vous grouiller !\nIf you don't want to miss the train, you'd better hurry.\tSi vous ne voulez pas manquer le train, vous feriez mieux de vous dépêcher !\nIf you don't want to stay alone, I can keep you company.\tSi tu ne veux pas rester seul, je peux te tenir compagnie.\nIf you follow me, I'll show you the way to the hospital.\tSi vous me suivez, je vous montrerai le chemin pour l'hôpital.\nIf you had asked me to marry you, I would have said yes.\tSi tu m'avais demandé de t'épouser, j'aurais dit oui.\nIf you know the answer to this question, please tell me.\tSi vous connaissez la réponse à cette question, dites-la-moi, s'il vous plait.\nIf you know what's good for you, you'll quit doing that.\tSi tu sais ce qui est bon pour toi, tu arrêteras ça.\nIf you tell a lie enough times, you begin to believe it.\tSi tu racontes un mensonge suffisamment de fois, tu commences à le croire.\nIf you tell a lie enough times, you begin to believe it.\tSi on raconte un mensonge suffisamment de fois, on commence à le croire.\nIf you tell a lie enough times, you begin to believe it.\tSi vous racontez un mensonge suffisamment de fois, vous commencez à le croire.\nIf you tell a lie enough times, you begin to believe it.\tSi tu racontes un mensonge suffisamment de fois, tu te mets à le croire.\nIf you tell a lie enough times, you begin to believe it.\tSi vous racontez un mensonge suffisamment de fois, vous vous mettez à le croire.\nIf you tell a lie enough times, you begin to believe it.\tSi on raconte un mensonge suffisamment de fois, on se met à le croire.\nIf you want this job, you must apply for it by tomorrow.\tSi vous voulez cet emploi, vous devez faire acte de candidature avant demain.\nIf you want this job, you must apply for it by tomorrow.\tSi vous voulez ce travail, vous devez poser votre candidature avant demain.\nIf you want this job, you must apply for it by tomorrow.\tSi vous voulez cet emploi, vous devez postuler avant demain.\nIn Christianity, Jesus is believed to be the son of God.\tDans le christianisme, on croit que Jésus est le fils de Dieu.\nIn two years, the company has more than doubled in size.\tEn deux ans, la taille de l'entreprise a plus que doublé.\nIndustry as we know it today didn't exist in those days.\tL'industrie telle que nous la connaissons aujourd'hui n'existait pas à cette époque.\nIs there someplace around here that can fix a flat tire?\tY a-t-il un endroit dans les environs qui répare un pneu à plat ?\nIs there something in particular that you want to drink?\tY a-t-il quelque chose de particulier que tu veuilles boire ?\nIs there something in particular that you want to drink?\tY a-t-il quelque chose de particulier que vous vouliez boire ?\nIs there something in particular that you want to learn?\tY a-t-il quelque chose en particulier que tu veuilles apprendre ?\nIs there something in particular that you want to learn?\tY a-t-il quelque chose en particulier que vous veuillez apprendre ?\nIs there something in particular that you want to study?\tY a-t-il quelque chose en particulier que vous veuillez étudier ?\nIs there something in particular that you want to study?\tY a-t-il quelque chose en particulier que tu veuilles étudier ?\nIs there something in particular that you want to watch?\tY a-t-il quelque chose de particulier que tu veuilles regarder ?\nIs there something in particular that you want to watch?\tY a-t-il quelque chose de particulier que vous vouliez regarder ?\nIt is good for your health to take a walk every morning.\tC'est bon pour votre santé de faire une balade à pied tous les matins.\nIt is the price they pay for their years of over-eating.\tC'est le prix qu'ils paient pour leurs années de bombance.\nIt makes no difference to me whether she is rich or not.\tPour moi ça ne fait aucune difference qu'elle soit riche ou pas.\nIt struck me that the girl was trying to hide something.\tJe fus tout à coup frappé de ce que la fille essayait de cacher quelque chose.\nIt took me a long time to get over my last relationship.\tÇa m'a pris beaucoup de temps de me remettre de ma dernière relation.\nIt was because of the storm that the trains were halted.\tLes trains ont été interrompus à cause de la tempête.\nIt was clear that she was not concerned with the matter.\tIl était clair que l'affaire ne la concernait pas.\nIt was impossible for the boy to swim across that river.\tIl était impossible pour le garçon de traverser cette rivière à la nage.\nIt was one of the most rewarding experiences of my life.\tCe furent les expériences les plus gratifiantes de ma vie.\nIt was the end of winter, and the weather was very cold.\tC'était la fin de l'hiver et le temps était très froid.\nIt was yesterday that I saw him walking down the street.\tC'était hier que je l'ai vu descendre la rue.\nIt wasn't possible for the boy to swim across the river.\tIl était impossible pour le garçon de traverser la rivière à la nage.\nIt wasn't until I heard him speak that I recognized him.\tJe ne le reconnus pas avant de l'entendre parler.\nIt will not be long before he recovers from his illness.\tIl devrait bientôt guérir de sa maladie.\nIt will not be long before he recovers from his illness.\tIl n'y aura pas long avant qu'il se remette de sa maladie.\nIt will take a little time to get used to wearing a wig.\tÇa prendra un peu de temps pour s'habituer à porter une perruque.\nIt would be a pity to let all our hard work go to waste.\tCe serait dommage de laisser se gâcher notre dur labeur.\nIt would be better for you to stay away from such a man.\tIl vaudrait mieux pour toi de te tenir à distance d'un tel homme.\nIt would be fun to see how things change over the years.\tÇa serait marrant de voir comment les choses changent au fil des ans.\nIt's a good thing to read good books when you are young.\tC'est une bonne chose que de lire de bons livres quand on est jeune.\nIt's a nice country to visit, but I wouldn't live there.\tC'est un beau pays à visiter mais je n'y vivrais pas.\nIt's cold. It was foolish of you not to bring your coat.\tIl fait froid. C'était idiot de ta part de ne pas apporter ton manteau.\nIt's difficult to help people that don't want your help.\tC'est difficile d'aider des gens qui ne veulent pas de votre aide.\nIt's difficult to help people that don't want your help.\tC'est difficile d'aider des gens qui ne veulent pas de ton aide.\nIt's not fair to attribute your failure to your parents.\tIl n'est pas juste de rejeter la faute de ses échecs sur ses parents.\nIt's quite plain that you haven't been paying attention.\tC'est très clair que tu as été inattentif.\nJapan has caught up with Europe and America in medicine.\tLe Japon a rattrapé l'Europe et l'Amérique en médecine.\nJapanese industry has made great advances since the war.\tL'industrie japonaise a accompli de grands progrès depuis la guerre.\nLet's hope Tom doesn't try to do that without some help.\tEspérons que Tom n'essaye pas de faire cela sans aide.\nLet's see how the negotiations pan out before we decide.\tVoyons voir comment les négociations tournent avant de décider.\nLincoln set out to abolish slavery in the United States.\tLincoln entreprit l'abolition de l'esclavage aux États-Unis.\nLooking at his face, you could tell that he was annoyed.\tÀ voir son visage, on pouvait dire qu'il était contrarié.\nMankind will succeed in using nuclear energy peacefully.\tL'humanité parviendra à utiliser pacifiquement l'énergie nucléaire.\nMany big projects will be completed in the 21st century.\tDe nombreux grands projets seront accomplis au vingt-et-unième siècle.\nMany international conferences have been held in Geneva.\tDe nombreuses conférences internationales se sont tenues à Genève.\nMary had some weird food cravings when she was pregnant.\tMarie avait quelques drôles de fringales lorsqu'elle était enceinte.\nMay I begin by thanking every one for your warm welcome?\tPuis-je commencer par remercier chacun de vous pour votre chaleureux accueil ?\nMore than half of the residents are opposed to the plan.\tPlus de la moitié des résidents sont opposés au projet.\nMost of the food we buy in supermarkets is overpackaged.\tLa plupart de la nourriture que nous achetons dans les supermarchés est suremballée.\nMost people think computers will never be able to think.\tLa plupart des gens pensent que les ordinateurs ne seront jamais capables de penser.\nMy brother would often stay up all night reading novels.\tMon frère restait souvent debout toute la nuit à lire des romans.\nMy daughter's getting all gussied up for her first date.\tMa fille se fait toute belle pour son premier rendez-vous galant.\nMy father is very much involved in the stock market now.\tMon père est vraiment très impliqué dans la bourse à présent.\nMy mother has a driver's license, but she doesn't drive.\tMa mère a son permis de conduire, mais elle ne conduit pas.\nMy mother has a driver's license, but she doesn't drive.\tMa mère a le permis mais ne conduit pas.\nMy parents have gone to the airport to see my uncle off.\tMes parents sont partis à l'aéroport pour dire au-revoir à mon oncle.\nMy son isn't the only one who enjoys eating her cooking.\tMon fils n'est pas le seul qui aime manger sa cuisine.\nMy students have been eagerly awaiting the test results.\tMes étudiants ont attendu avidement les résultats de l'épreuve.\nNo matter how fast you run, you won't catch up with him.\tAussi vite que tu coures, tu ne le rattraperas pas.\nNo matter how hard I try, I can't remember how to do it.\tJ'ai beau essayer, je n'arrive pas à me rappeler comment le faire.\nNo matter how hard you try, the result will be the same.\tTu auras beau essayer, le résultat sera le même.\nNo matter how hard you try, the result will be the same.\tAussi dur que tu essaies, le résultat sera le même.\nNo matter how hard you try, the result will be the same.\tAussi dur que vous essayerez, le résultat sera le même.\nNo matter how hard you try, the result will be the same.\tVous aurez beau essayer, le résultat sera le même.\nNo matter what you say, I don't think Tom is a nice guy.\tPeu importe ce que tu dis, je ne pense pas que Tom est un gars sympa.\nNo matter what you say, I don't think Tom is a nice guy.\tPeu importe ce que vous dites, je ne pense pas que Tom soit sympa.\nNo matter where you may go, don't forget to write to me.\tOù que vous puissiez aller, n'oubliez pas de m'écrire.\nNow that you know the truth, perhaps you'll feel better.\tMaintenant que tu connais la vérité, peut-être que tu te sentiras mieux.\nOnce a bad habit is formed, it is hard to get rid of it.\tUne fois qu'une mauvaise habitude s'est installée, il est dur de s'en débarrasser.\nOne's point of view depends on the point where one sits.\tLe point de vue dépend du point où on est assis.\nOur sphere of influence has expanded so much since then.\tNotre influence s'est beaucoup étendue depuis lors.\nPeople ask you for criticism, but they only want praise.\tLes gens vous demandent des critiques, mais ils ne désirent que des compliments.\nPeople tend to raise their voices when they get excited.\tLes gens ont tendance à élever la voix quand ils sont excités.\nPlease fasten your seat belt during takeoff and landing.\tMerci de boucler votre ceinture pendant le décollage et l'atterrissage.\nPlease fill out this form and wait for us to notify you.\tVeuillez remplir ce formulaire et attendez que nous vous notifiions.\nPlease forgive me for not having written to you earlier.\tVeuillez m'excuser de ne pas vous avoir écrit avant.\nPlease remember to wake me up at seven tomorrow morning.\tRappelle-toi de me réveiller à sept heures demain matin, s'il te plaît.\nPlease send me a reply as soon as you receive this mail.\tS'il vous plaît, envoyez-moi une réponse dès que vous recevrez ce courrier.\nPlease wait until we get the results of the examination.\tAttendez jusqu'à ce que nous ayons les résultats de l'examen, s'il vous plaît.\nPreserves must be stored in a jar with an airtight seal.\tLes conserves doivent être entreposées dans un bocal à fermeture hermétique.\nQuite a few shingles flew off the roof during the storm.\tUn certain nombre de bardeaux se sont envolés du toit lors de la tempête.\nReal men go to the gym to pump iron, not to do aerobics.\tLes vrais mecs vont à la gym pour soulever de la fonte, pas pour faire de l'aérobic.\nSeen from a distance, the stone looks like a human face.\tVue de loin, cette pierre ressemble à un visage humain.\nSeen from a distance, this mountain looks like Mt. Fuji.\tVue de loin, cette montagne ressemble au Mont Fuji.\nSeveral yachts were sailing side by side far out at sea.\tPlusieurs yachts cinglaient côte à côte au large.\nShe advised him to catch the first train in the morning.\tElle lui conseilla de prendre le premier train du matin.\nShe advised him to catch the first train in the morning.\tElle lui a conseillé de prendre le premier train du matin.\nShe caught me by the arm and stopped me from going home.\tElle m'attrapa par le bras et me retint d'aller chez moi.\nShe forgot that she had promised to call him last night.\tElle a oublié qu'elle avait promis de l'appeler la nuit dernière.\nShe forgot that she had promised to call him last night.\tElle a oublié qu'elle avait promis de l'appeler la nuit passée.\nShe found the ring that she had lost during the journey.\tElle a trouvé l'anneau qu'elle avait perdu pendant le voyage.\nShe had already gone to bed when I called her at 11 p.m.\tElle était déjà allée se coucher quand je lui ai téléphoné à 23 h.\nShe has a bad habit of talking a long time on the phone.\tElle a la mauvaise habitude de parler longtemps au téléphone.\nShe has no chances of coming in contact with foreigners.\tElle n'a aucune chance d'entrer en contact avec des étrangers.\nShe ran across her old friend while walking in the park.\tElle rencontra par hasard sa vieille amie au cours d'une promenade dans le parc.\nShe saved her baby's life at the risk of losing her own.\tElle sauva la vie de son bébé au risque de perdre la sienne.\nShe tells him to give her all of his salary and he does.\tElle lui dit de lui donner tout son salaire et il le fait.\nShe thought of a good way to make money on the Internet.\tElle élabora une bonne méthode pour faire de l'argent sur Internet.\nShe took advantage of her paid vacation and went skiing.\tElle profita de ses congés payés et partit skier.\nShe visited the school, despite a pain in her right arm.\tElle a visité l'école, malgré une douleur à la jambe droite.\nShe was about to call him up when he walked in the door.\tElle était sur le point de l'appeler lorsqu'il entra par la porte.\nSince there were no customers, we closed the shop early.\tComme il n'y avait pas de clients, nous avons fermé la boutique tôt.\nSince there were no customers, we closed the shop early.\tComme il n'y avait pas de clients, nous avons fermé le magasin tôt.\nSince when do you have a problem with the death penalty?\tDepuis quand avez-vous un problème avec la peine de mort ?\nSome people do not like to wake up early in the morning.\tCertaines personnes n'aiment pas se lever tôt le matin.\nSome people think the government has way too much power.\tCertaines personnes pensent que le gouvernement dispose de beaucoup trop de pouvoir.\nSome prominent tennis players behave like spoiled brats.\tCertains joueurs de tennis de premier plan se conduisent comme des enfants gâtés.\nSorry I couldn't come over yesterday. Something came up.\tDésolé de ne pas avoir pu venir hier. Quelque chose est arrivé.\nSorry I couldn't come over yesterday. Something came up.\tDésolée de ne pas avoir pu venir hier. Quelque chose est survenu.\nSupplies were trucked in from as far away as California.\tLe ravitaillement fut convoyé d'aussi loin que la Californie.\nTeachers often buy school supplies with their own money.\tLes enseignants paient souvent des fournitures scolaires de leurs propres deniers.\nThat bridge across this river is the oldest in the town.\tCe pont en travers de cette rivière est le plus ancien de la ville.\nThat car dealership has a reputation for selling lemons.\tCe concessionnaire automobile a la réputation de vendre des poubelles.\nThat car dealership has a reputation for selling lemons.\tCe concessionnaire automobile a la réputation de vendre des guitares.\nThat offer sounds too good to be true. What's the catch?\tCette offre semble trop bonne pour être vraie. Où est l'arnaque ?\nThat's a pretty strange-looking bracelet you're wearing.\tC'est un drôle de bracelet que vous portez là.\nThat's a pretty strange-looking bracelet you're wearing.\tC'est un bracelet assez curieux que tu portes là.\nThe American Civil War is the central theme of the book.\tLa guerre de Sécession est le thème central de ce livre.\nThe Japanese take off their shoes when entering a house.\tLes Japonais retirent leurs chaussures en entrant dans une maison.\nThe Milky Way consists of about a hundred billion stars.\tLa Voie Lactée se compose d'environ cent milliards d'étoiles.\nThe U.S. gun ownership rate is the highest in the world.\tLe taux de possession d'armes à feu aux USA est le plus élevé au monde.\nThe U.S. incarceration rate is the highest in the world.\tLe taux d'incarcération aux USA est le plus élevé du monde.\nThe audience could hardly wait for the concert to begin.\tLe public pouvait difficilement attendre que le concert commence.\nThe best thing would be for you to do the work yourself.\tLa meilleure chose serait pour vous de faire le travail par vous-même.\nThe best thing would be for you to do the work yourself.\tLa meilleure chose serait pour vous de réaliser le travail vous-même.\nThe burglar gained access to the house through a window.\tUn voleur a pénétré dans la maison par une fenêtre.\nThe cat fell asleep curled up in front of the fireplace.\tLe chat s'endormit, enroulé devant l'âtre.\nThe colors of the American flag are red, white and blue.\tLes couleurs du drapeau américain sont rouge, blanc et bleu.\nThe fact that I lost my temper made matters still worse.\tLe fait que je perde patience n'a fait qu'empirer les choses.\nThe girl said that she had never heard of such a person.\tLa fille dit qu'elle n'avait jamais entendu parler d'une telle personne.\nThe girl wanted to tell him the truth, but she couldn't.\tLa fille voulait lui dire la vérité mais elle ne le put pas.\nThe governor was surprised by the commission's response.\tLe gouverneur fut surpris de la réponse de la commission.\nThe hurricane has already caused havoc in the Caribbean.\tL'ouragan a déjà fait des ravages dans les Caraïbes.\nThe hypnotist was able to put his subject into a trance.\tL'hypnotiseur était capable de mettre son sujet en transe.\nThe industry is heavily dependent on government funding.\tLe secteur est fortement dépendant des subventions gouvernementales.\nThe last two lines of the document are mostly illegible.\tLes deux dernières lignes du document sont en majeure partie illisible.\nThe mafia boss was killed in a hail of machine gun fire.\tLe parrain de la maffia fut tué par une pluie de tirs d'arme automatique.\nThe manufacturer guaranteed the new machine for 5 years.\tLe fabricant garantit la nouvelle machine pour cinq ans.\nThe more stubborn you are, the more isolated you become.\tPlus tu seras têtu, plus tu seras isolé.\nThe more you explain it, the more I don't understand it.\tPlus vous l'expliquez, moins je le comprends.\nThe old lady lived in a three-room apartment by herself.\tLa vieille dame vivait seule dans un appartement de trois pièces.\nThe only thing that matters is that we are all together.\tLa seule chose qui importe est que nous soyons tous ensemble.\nThe only thing that matters is that you weren't injured.\tLa seule chose qui compte est que tu n'as pas été blessé.\nThe only thing that matters is that you weren't injured.\tLa seule chose qui compte est que vous n'avez pas été blessé.\nThe pain of having lost his family drove him to suicide.\tLa douleur d'avoir perdu sa famille le conduisit au suicide.\nThe pain of the compound fracture was almost unbearable.\tLa douleur de la fracture compliquée était presque insupportable.\nThe party is to be held next Sunday, weather permitting.\tLa fête aura lieu dimanche prochain si le temps la permet.\nThe police found no signs of foul play in the apartment.\tLa police n'a pas trouvé de signes délictueux dans l'appartement.\nThe police stepped up their efforts to catch the rapist.\tLa police a intensifié ses efforts pour mettre la main sur le violeur.\nThe poor people were at the mercy of the cruel dictator.\tLes pauvres gens étaient à la merci du cruel dictateur.\nThe population of Shanghai is as large as that of Tokyo.\tLa population de Shangaï est aussi nombreuse que celle de Tokyo.\nThe president ignored the protesters outside his office.\tLe Président ignora les protestataires à l'extérieur de son bureau.\nThe president ignored the protesters outside his office.\tLe Président a ignoré les protestataires à l'extérieur de son bureau.\nThe prisoner who escaped two days ago is still at large.\tLe prisonnier qui s'est échappé il y a deux jours est encore en fuite.\nThe public bought it hook, line and sinker, didn't they?\tLe public a tout gobé, non ?\nThe receptionist forced me to sign my name on the paper.\tLe réceptionniste m'a contraint à signer mon nom sur le papier.\nThe regulation was abolished, but then it was reenacted.\tLa réglementation fut abolie, mais fut ensuite remise en vigueur.\nThe shop on the corner sells fruit at a very good price.\tLe magasin au coin vend des fruits à très bon prix.\nThe sort of information we need is not always available.\tLe genre d'information dont nous avons besoin n'est pas toujours disponible.\nThe structural integrity of the building is compromised.\tL'intégrité structurelle du bâtiment est compromise.\nThe students were for the most part from the West Coast.\tLes étudiants étaient pour la plupart originaires de la côte Ouest.\nThe teacher is busy looking over the examination papers.\tLe professeur est occupé à passer en revue les copies d'examen.\nThe teacher omitted the exercise on page 21 of the book.\tLe professeur a sauté l'exercice page 21 du livre.\nThe thieves divvied up the stolen loot among themselves.\tLes voleurs se partagèrent le butin.\nThe thieves divvied up the stolen loot among themselves.\tLes voleurs se sont partagé le butin.\nThe two politicians met face to face for the first time.\tLes deux politiciens se sont rencontrés en face à face pour la première fois.\nThe weather report says it will rain tomorrow afternoon.\tLe bulletin météo indique qu'il pleuvra demain après-midi.\nThe weather service has issued a severe weather warning.\tLe service météorologique a émis un avis de tempête.\nThe whale is a very large mammal which lives in the sea.\tLa baleine est un très gros mammifère qui vit dans mer.\nThere are a lot of abandoned houses in the neighborhood.\tIl y a de nombreuses maisons abandonnées dans le voisinage.\nThere are too many people here. Let's go somewhere else.\tIl y a trop de gens ici, changeons d'endroit !\nThere is a rotating restaurant at the top of this tower.\tIl y a un restaurant tournant au sommet de cette tour.\nThere is an urgent need for them to update their system.\tIl faut absolument qu'ils mettent à jour leur système.\nThere must have been a tacit understanding between them.\tIl doit y avoir eu entre eux un accord tacite.\nThere was lavender in bloom as far as the eye could see.\tDe la lavande en fleur s'étendait à perte de vue.\nThese clothes are not appropriate for a cold winter day.\tCes vêtements sont inadaptés à un jour d'hiver froid.\nThese houses were burnt down to the ground by the enemy.\tCes maisons ont été entièrement brûlées par l'ennemi.\nThey are negotiating to reach a satisfactory compromise.\tIls sont en train de négocier pour arriver à un compromis satisfaisant.\nThey are saving their money for the purchase of a house.\tIls économisent leur argent pour l'acquisition d'une maison.\nThey celebrated his success by opening a bottle of wine.\tIls célébrèrent son succès en ouvrant une bouteille de vin.\nThey liked having more space for their children to play.\tIls apprécièrent de disposer de davantage d'espace pour que leurs enfants jouent.\nThey liked having more space for their children to play.\tElles apprécièrent de disposer de davantage d'espace pour que leurs enfants jouent.\nThey lost no time in getting the sick man to a hospital.\tIls ne perdirent pas de temps à emmener l'homme souffrant à un hôpital.\nThey say that eating more slowly is one way to eat less.\tOn dit que manger plus lentement est un moyen pour manger moins.\nThey were so frightened that they couldn't move an inch.\tIls étaient si intimidés qu'ils ne pouvaient bouger d'un pouce.\nThey were so frightened that they couldn't move an inch.\tElles étaient si intimidées qu'elles ne pouvaient bouger d'un pouce.\nThey will have a good laugh when they see you like this.\tIls vont bien rigoler, lorsqu'ils te verront ainsi.\nThey will have a good laugh when they see you like this.\tElles vont bien rigoler, lorsqu'elles te verront ainsi.\nThey'd find a way to do whatever they want to do anyway.\tIls trouveraient moyen de faire ce qu'ils veulent, de toutes manières.\nThey'd find a way to do whatever they want to do anyway.\tElles trouveraient moyen de faire ce qu'elles veulent, de toutes manières.\nThey're hoping the wheat harvest will be good this year.\tIls espèrent que la récolte de blé sera bonne cette année.\nThis cookbook has recipes for every imaginable occasion.\tCe livre de cuisine a des recettes pour n'importe quelle occasion.\nThis is by far the best seafood restaurant in this area.\tC'est de loin le meilleur restaurant de fruits de mer du coin.\nThis is the best seafood restaurant in the neighborhood.\tC'est le meilleur restaurant de fruits de mer du quartier.\nThis is the largest dictionary there is in this library.\tC'est le plus gros dictionnaire qu'il y a dans cette bibliothèque.\nThis is where I brought my girlfriend on our first date.\tC'est ici que j'ai emmené ma petite amie lors de notre premier rendez-vous.\nThis is where I brought my girlfriend on our first date.\tC'est ici que j'ai emmené ma petite amie lors de notre premier rencard.\nThis movie is not anything like as exciting as that one.\tCe film-ci n'a rien d'aussi excitant que celui-là.\nThis piece of music is way too difficult for me to play.\tCe morceau de musique est bien trop difficile à jouer pour moi.\nThis ticket entitles the bearer to one chocolate sundae.\tCe ticket donne droit à une coupe glacée au chocolat.\nThis year, the winter is mild, isn't it? It's very nice.\tCette année, l'hiver est doux, n'est-ce-pas ? C'est très agréable.\nThose present at the meeting were surprised at the news.\tCeux qui étaient présents à la réunion furent surpris par la nouvelle.\nToday is the fifth day of continual stock price decline.\tAujourd'hui est le cinquième jour de déclin continu des cours de bourse.\nTom always makes it a rule never to ask a woman her age.\tTom a pour principe de ne jamais demander son âge à une femme.\nTom and Mary got back together after a trial separation.\tTom et Marie se remirent ensemble après une séparation difficile.\nTom asked Mary if she was really happy with her new job.\tTom a demandé à Mary si elle était vraiment heureuse de son nouveau travail.\nTom asked Mary what she had bought at the jewelry store.\tTom a demandé à Mary ce qu'elle avait acheté à la bijouterie.\nTom attempted to persuade Mary to go to church with him.\tTom a tenté de persuader Mary d'aller à l'église avec lui.\nTom can't speak French without making a lot of mistakes.\tTom est incapable de parler le français sans faire plein d'erreurs.\nTom certainly couldn't have succeeded without your help.\tTom n'aurait certainement pas pu réussir sans votre aide.\nTom certainly gets a nice sound out of that old bassoon.\tTom obtient certainement un beau son de ce vieux basson.\nTom certainly gets a nice sound out of that old bassoon.\tTom tire sûrement de son vieux basson une belle sonorité.\nTom clearly doesn't understand what we're talking about.\tTom ne comprend manifestement pas ce dont nous sommes en train de parler.\nTom didn't expect to sell his old car for so much money.\tTom ne s'attendait pas à vendre sa vieille voiture pour autant d'argent.\nTom died trying to save a child from a burning building.\tTom est mort en essayant de sauver un enfant d'un bâtiment en feu.\nTom doesn't know who Mary is going to go to Boston with.\tTom ne sait pas avec qui Marie va aller à Boston.\nTom doesn't know why Mary doesn't want him at her party.\tTom ne sait pas pourquoi Marie ne veut pas de lui à sa soirée.\nTom doesn't think that Mary's performance was very good.\tTom considérait la performance de Marie comme très mauvaise.\nTom has willingly done everything we've asked him to do.\tTom a volontiers fait tout ce que nous lui avons demandé de faire.\nTom is in his room, writing a letter to his grandmother.\tTom est dans sa chambre, en train d'écrire une lettre à sa grand-mère.\nTom is the one who said he was too busy to help, not me.\tC'est Tom qui a dit qu'il était trop occupé pour aider, pas moi.\nTom is trying to earn enough money to buy a new trumpet.\tTom essaie de gagner suffisamment d'argent pour s'acheter une nouvelle trompette.\nTom likes Boston better than any other place he's lived.\tTom apprécie Boston plus que tout autre endroit où il a vécu.\nTom looked at the menu and decided to order a fish dish.\tTom consulta le menu puis décida de commander un plat de poisson.\nTom noticed Mary wasn't wearing the ring he'd given her.\tTom remarqua que Mary ne portait pas la bague qu'il lui avait donnée.\nTom only had a few visitors when he was in the hospital.\tTom n'a eu que quelques visiteurs lorsqu'il était à l'hôpital.\nTom only had a few visitors when he was in the hospital.\tTom a seulement eu quelques visiteurs quand il était à l'hôpital.\nTom picked up a book, opened it, and started reading it.\tTom prit un livre, l’ouvrit et commença à le lire.\nTom remembered that Mary and John had tried to kill him.\tTom se rappela que Mary et John avaient essayé de le tuer.\nTom remembered that Mary and John had tried to kill him.\tTom s\"est rappelé que Mary et John avaient essayé de le tuer.\nTom waited outside in the pouring rain for over an hour.\tTom attendit dehors sous la pluie battante pendant plus d'une heure.\nTom was pacing in his room, unable to calm himself down.\tTom faisait les cent pas dans sa chambre, incapable de se calmer.\nTom was the one who taught me how to sing country music.\tC'est Tom qui m'a appris à chanter de la musique country.\nTom won't admit it, but he's secretly in love with Mary.\tTom ne l'admettra pas, mais il est amoureux de Mary.\nTom's book about his life with Mary sold like hot cakes.\tLe livre de Tom, sur sa vie avec Mary, s'est vendu comme des petits pains.\nTom's dog left muddy paw prints all over his new carpet.\tLe chien de Tom a laissé des empreintes boueuses de pattes sur toute sa nouvelle moquette.\nTom's not much of a cook, but at least he gives it a go.\tTom ne cuisine pas très bien, mais au moins il essaye.\nTom's not the slightest bit interested in my suggestion.\tTom n'est pas du tout intéressé par ma suggestion.\nWe all chipped in to buy our teacher a birthday present.\tNous nous cotisâmes tous pour acheter un présent d'anniversaire à notre professeur.\nWe all know that eating a balanced diet is good for you.\tNous savons tous qu'avoir un régime équilibré est bon pour nous.\nWe all live within a five minutes' walk from each other.\tNous vivons tous à moins de cinq minutes de marche les uns des autres.\nWe are going to have an examination in English tomorrow.\tDemain nous allons avoir une interrogation en anglais.\nWe arrived at the airport three hours before our flight.\tNous sommes arrivés à l'aéroport trois heures avant notre vol.\nWe desperately need more money to help fund our project.\tNous avons désespérément besoin de davantage d'argent pour aider à financer notre projet.\nWe don't have enough information yet to make a decision.\tNous ne disposons pas encore de suffisamment d'information pour prendre une décision.\nWe had lived there for ten years when the war broke out.\tNous vivions ici depuis dix ans quand la guerre éclata.\nWe have not been notified about their change of address.\tNous n'avons pas été informés de leur changement d'adresse.\nWe must look at the problem from a global point of view.\tNous devons envisager le problème d'un point de vue global.\nWe played an entertaining game of charades after dinner.\tNous jouâmes à un amusant jeu de charades après dîner.\nWe received instructions on how to make a bamboo basket.\tNous reçûmes des directives sur comment réaliser un panier en bambou.\nWe were disappointed with the results of the experiment.\tNous fûmes déçus par les résultats de l'expérience.\nWe were held up for two hours on account of an accident.\tNous avons été retenus pendant deux heures en raison d'un accident.\nWe'll have a better chance of surviving if we stay calm.\tNous avons une meilleure chance de survie si nous restons calmes.\nWe've been out of touch with each other for a long time.\tNous n'avons plus été en contact depuis longtemps.\nWhat he said applies, to a certain extent, to this case.\tCe qu'il a dit, s'applique, dans une certaine mesure, à cette affaire.\nWhat makes you think I'm going to go to Boston with Tom?\tQu'est-ce qui te fait penser que je vais aller à Boston avec Tom ?\nWhen I'm hot, a glass of cool water really refreshes me.\tUn verre d'eau froide est très rafraîchissant lorsqu'il fait chaud.\nWhen I'm hot, a glass of cool water really refreshes me.\tLorsque j'ai chaud, un verre d'eau fraîche me rafraîchit vraiment.\nWhen he came to, he was tied to a chair in the basement.\tLorsqu'il reprit ses esprits, il était ligoté à une chaise dans la cave.\nWhen he came to, he was tied to a chair in the basement.\tLorsqu'il a repris ses esprits, il était ligoté à une chaise dans la cave.\nWhen your resources are limited, you have to prioritize.\tQuand vos ressources sont limitées, vous devez établir des priorités.\nWhere they burn books, they will eventually burn people.\tLà où l'on brûle les livres, on finit aussi par brûler des hommes.\nWhich writing system is the most difficult in the world?\tQuel est le système d'écriture le plus difficile au monde ?\nWhile she was staying in Japan, she often visited Kyoto.\tDurant son séjour au Japon, elle a souvent visité Kyoto.\nWhy don't you and I continue this discussion in private?\tPourquoi toi et moi ne continuons pas cette discussion en privé ?\nWhy don't you and I continue this discussion in private?\tPourquoi vous et moi ne continuons pas cette discussion en privé ?\nWithout a dictionary, it would be hard to study English.\tSans un dictionnaire, cela sera dur d'étudier l'anglais.\nWould you be willing to send me a sample free of charge?\tSeriez-vous disposé à m'envoyer un échantillon gratuitement ?\nWould you be willing to send me a sample free of charge?\tSeriez-vous disposée à m'envoyer un échantillon gratuitement ?\nWould you be willing to send me a sample free of charge?\tSeriez-vous disposés à m'envoyer un échantillon gratuitement ?\nWould you be willing to send me a sample free of charge?\tSeriez-vous disposées à m'envoyer un échantillon gratuitement ?\nWould you mail this letter for me on your way to school?\tPourrais-tu me poster cette lettre en allant à l'école ?\nYou are old enough to know better than to act like that.\tTu es assez âgé pour savoir qu'il ne faut pas agir ainsi.\nYou are old enough to know better than to act like that.\tTu es assez âgée pour savoir qu'il ne faut pas agir ainsi.\nYou are under no obligation to divulge that information.\tVous n'êtes aucunement dans l'obligation de divulguer cette information.\nYou can adjust the color on the TV by turning this knob.\tTu peux ajuster la couleur sur la télé en tournant ce bouton.\nYou can go out on condition that you come home by seven.\tTu peux sortir si tu reviens avant 7 heures.\nYou can take part in the meeting regardless of your age.\tVous pouvez participer à la réunion indépendamment de votre âge.\nYou can't change people. They have to change themselves.\tVous ne pouvez pas changer les gens. Ils doivent changer eux-mêmes.\nYou didn't need to hurry. You got here too early anyway.\tTu n’avais pas besoin de te dépêcher. Tu es arrivé ici trop tôt de toute façon.\nYou don't know what it's like to not have enough to eat.\tTu ne sais pas ce que c'est, de ne pas avoir assez à manger.\nYou don't know what it's like to not have enough to eat.\tVous ne savez pas ce que c'est, de ne pas avoir assez à manger.\nYou had better ask him in advance how much it will cost.\tVous feriez mieux de lui demander à l'avance combien cela va coûter.\nYou have no idea how tired I am of all this complaining.\tTu n'as pas idée de combien je suis fatigué par toutes ces récriminations.\nYou have no idea how tired I am of all this complaining.\tVous n'avez pas idée de combien je suis fatiguée par toutes ces récriminations.\nYou may take photos outside this museum, but not inside.\tVous pouvez prendre des photos à l'extérieur du musée, mais pas à l'intérieur.\nYou must hand in your homework by Thursday without fail.\tVous devez avoir rendu votre devoir d'ici jeudi sans faute.\nYou should apologize to her for having been rude to her.\tTu devrais t'excuser auprès d'elle d'avoir été grossier.\nYou should assume that anything you do online is public.\tOn doit supposer que tout ce qu'on fait en ligne est public.\nYou should spend more time outside and less time inside.\tTu devrais passer plus de temps dehors et moins de temps dedans.\nYou should spend more time outside and less time inside.\tTu devrais passer plus de temps à l'extérieur et moins de temps à l'intérieur.\nYou should spend more time outside and less time inside.\tTu devrais passer davantage de temps à l'extérieur et moins à l'intérieur.\nYou will be paid according to the amount of work you do.\tVous serez payé en fonction de la quantité de travail que vous fournirez.\nYou'd better not drink too much coffee so late at night.\tTu ferais mieux de ne pas boire autant de café si tard le soir.\nYour father's supporters are not limited to his friends.\tLes partisans de ton père ne se réduisent pas à ses amis.\nYour ideas about the government are different from mine.\tVos idées à propos du gouvernement sont différentes des miennes.\nYour mother must have been beautiful when she was young.\tTa mère a dû être belle lorsqu'elle était jeune.\nYour suggestion seems irrelevant to our discussion here.\tVotre proposition ne semble pas se rapporter à notre discussion du moment.\n\"Do you mind if I use your phone?\" \"No, please go ahead.\"\t«Cela vous dérange-t-il si j'utilise votre téléphone ?» «Non, je vous en prie.»\n\"When will you be back?\" \"It all depends on the weather.\"\t« Quand vas-tu revenir ? » « Tout dépend du temps qu'il fera. »\nA burglar broke into my house while I was away on a trip.\tUn cambrioleur s'est introduit chez moi pendant que j'étais en voyage.\nA bust of Aristotle stands on a pedestal in the entryway.\tUn buste d'Aristote se dresse sur un piédestal dans l'entrée.\nA flu shot contains antibodies that fight the H1N1 virus.\tUn vaccin contre la grippe contient des anticorps qui combattent le virus H1N1.\nA girl came running, with her hair streaming in the wind.\tUne fille arrivait en courant, avec ses cheveux flottant au vent.\nA good sense of humor will help you deal with hard times.\tUn bon sens de l'humour vous aidera à affronter les moments difficiles.\nA lot of wild animals died because there wasn't any food.\tDe nombreux animaux sauvages moururent parce qu'il n'y avait aucune nourriture.\nA man who never makes mistakes is a man who does nothing.\tIl n'y a que ceux qui ne font rien qui ne font pas d'erreurs.\nA man's worth lies in what he is rather than what he has.\tLa valeur d'un homme réside dans ce qu'il est plutôt que dans ce qu'il possède.\nA month has passed and the work has made little progress.\tUn mois est passé et le travail n'a pas avancé.\nA passport is usually necessary when you travel overseas.\tUn passeport est d'ordinaire nécessaire lorsque vous voyagez à l'étranger.\nA person with a BMI of 25 to 29 is considered overweight.\tUne personne dont l'indice de masse corporelle se situe entre vingt-cinq et vingt-neuf est considérée en surpoids.\nA pot belly is an occupational hazard for office workers.\tUn gros bide est un risque professionnel pour les employés de bureau.\nA solution acceptable to all parties was finally reached.\tOn parvint finalement à une solution acceptable pour toutes les parties.\nA voyage to the moon in a spaceship is no longer a dream.\tUn voyage sur la lune dans un vaisseau spatial n'est plus un rêve.\nAbout how much will I have to pay for all the treatments?\tÀ peu près combien devrai-je payer pour tous les traitements ?\nAccording to the weather forecast, it will snow tomorrow.\tSelon les prévisions météorologiques, il neigera demain.\nAfter his wife died, he lived for quite a few more years.\tAprès que sa femme mourut, il vécut encore quelques années supplémentaires.\nAfter three hours in the casino, he's $2,000 in the hole.\tAprès trois heures au casino il est à deux mille dollars dans le rouge.\nAll her carefully made plans began to unravel one by one.\tTous ses projets soigneusement conçus commencèrent à s'effondrer un à un.\nAll humans on Earth are descended from a common ancestor.\tTous les humains sur Terre sont issus d'un ancêtre commun.\nAll of us were excited with the result of the experiment.\tNous étions tous excités par le résultat de l'expérience.\nAll you have to do is push this button to take a picture.\tTout ce que tu as à faire est d'appuyer sur ce bouton pour prendre la photo.\nAnd now you wish perhaps to learn on less familiar traps?\tEt maintenant vous désirez peut-être en apprendre plus sur des pièges moins communs ?\nAnd now you wish perhaps to learn on less familiar traps?\tEt maintenant vous désirez peut-être en apprendre plus sur des pièges moins courants ?\nAnd now you wish perhaps to learn on less familiar traps?\tEt maintenant vous désirez peut-être en apprendre plus sur des pièges moins répandus ?\nAs far as I know, this is the only translation available.\tPour autant que je sache, c'est la seule traduction possible.\nAt the start of every weekend, I am both tired and happy.\tAu début de chaque weekend, je suis à la fois fatigué et joyeux.\nAt the station, I had the hardest time finding my ticket.\tÀ la gare, j'ai eu le plus grand mal à trouver mon billet.\nBanks charge higher interest on loans to risky customers.\tLes banques prélèvent des intérêts plus hauts sur les crédits aux clients à risque.\nCan you translate this manuscript from French to English?\tPeux-tu traduire ce manuscrit du français à l'anglais ?\nChildren imitate their friends rather than their parents.\tLes enfants imitent leurs amis plutôt que leurs parents.\nChildren often cry just because they want some attention.\tLes enfants pleurent souvent juste pour attirer l'attention.\nChildren want to hear the same story over and over again.\tLes enfants veulent entendre la même histoire encore et encore.\nConsidering everything, my father's life was a happy one.\tTout bien considéré, la vie de mon père fut heureuse.\nCould you change my room to one with a view of the ocean?\tPourriez-vous échanger ma chambre avec une disposant de la vue sur l'océan ?\nCould you please take care of my dog while I'm in Boston?\tPourriez-vous vous occuper de mon chien pendant que je suis à Boston, s'il vous plaît ?\nCountry people are traditionally suspicious of strangers.\tLes gens de la campagne sont traditionnellement soupçonneux envers les étrangers.\nDespite adversity, the architect achieved worldwide fame.\tMalgré l'adversité, l'architecte a atteint une renommée mondiale.\nDid you hear that what's-his-face crashed his motorcycle?\tAs-tu entendu que tu-sais-qui a cartonné sa moto ?\nDid you hear that what's-his-face crashed his motorcycle?\tAs-tu entendu que comment-s'appelle-t-il a planté sa moto ?\nDid you see the sunrise earlier? It was really beautiful.\tAs-tu vu le lever de soleil tout à l'heure ? C'était vraiment beau.\nDidn't it ever occur to them that they would be punished?\tN'ont-ils jamais pensé qu'ils seraient punis ?\nDo not forget to turn the light off before you go to bed.\tN'oublie pas d'éteindre la lumière avant d'aller te coucher.\nDo you believe our destinies are controlled by the stars?\tCroyez-vous que notre destin soit régi par les étoiles ?\nDo you believe our destinies are controlled by the stars?\tCrois-tu que notre destin soit régi par les étoiles ?\nDo you believe our destinies are controlled by the stars?\tCrois-tu que nos destins soient régis par les étoiles ?\nDo you believe our destinies are controlled by the stars?\tCroyez-vous que nos destins soient régis par les étoiles ?\nDo you have any idea where Tom might have put his camera?\tAs-tu une idée de l'endroit où Tom aurait-pu poser son appareil photo ?\nDo you know what to do if there's a fire in the building?\tSavez-vous quoi faire s'il y a un incendie dans le bâtiment ?\nDo you know what to do if there's a fire in the building?\tSais-tu quoi faire s'il y a un incendie dans le bâtiment ?\nDo you know where the nearest American Express office is?\tSavez-vous où se trouve le bureau American Express le plus proche ?\nDo you think Tom would consider dating my younger sister?\tPenses-tu que Tom envisagerait de sortir avec ma petite sœur ?\nDo you think students are given enough time to eat lunch?\tPenses-tu qu'on alloue assez de temps aux étudiants pour déjeuner ?\nDo you think students are given enough time to eat lunch?\tPenses-tu qu'on alloue suffisamment de temps aux étudiants pour déjeuner ?\nDo you think students are given enough time to eat lunch?\tPensez-vous qu'on alloue assez de temps aux étudiants pour déjeuner ?\nDo you think students are given enough time to eat lunch?\tPensez-vous qu'on alloue suffisamment de temps aux étudiants pour déjeuner ?\nDon't forget to tip the porter for carrying your luggage.\tN'oublie pas de donner un pourboire au porteur pour avoir porté tes bagages.\nDon't hesitate to ask a question if you don't understand.\tN'hésitez pas à poser une question si vous ne comprenez pas.\nDon't hesitate to ask a question if you don't understand.\tN'hésite pas à poser une question si tu ne comprends pas.\nDon't hesitate to take the opportunity to propose to her.\tN'hésite pas à saisir l'opportunité de la demander en mariage.\nDon't make me angry. You wouldn't like me when I'm angry.\tNe me mets pas en colère. Tu ne m'aimerais pas, si j'étais en colère.\nDon't waste your youth, otherwise you'll regret it later.\tNe gaspille pas ta jeunesse, autrement tu le regretteras plus tard.\nDon't you think you ought to write them a thank-you note?\tNe penses-tu pas que tu devrais leur rédiger un mot de remerciements ?\nEach taxpayer has the right to know where his money goes.\tChaque contribuable est en droit de savoir où va son argent.\nEthnic minorities struggle against prejudice and poverty.\tLes minorités ethniques se battent contre les préjugés et la pauvreté.\nEven Japanese can make mistakes when they speak Japanese.\tMême les Japonais peuvent faire des fautes quand ils parlent japonais.\nEvery school kid has played hooky at one time or another.\tTout écolier a fait l'école buissonnière à un moment ou un autre.\nEvery year, Hawaii moves ten centimeters closer to Japan.\tChaque année, Hawaï se rapproche de dix centimètres du Japon.\nEveryone is hoping nothing bad will ever happen in Japan.\tTout le monde espère que rien de mauvais n'arrivera jamais au Japon.\nEveryone who worked on that project became a millionaire.\tTous ceux qui ont travaillé sur ce projet sont devenus millionnaires.\nEveryone who worked on that project became a millionaire.\tToutes celles qui ont travaillé sur ce projet sont devenues millionnaires.\nEveryone would like to believe that dreams can come true.\tTout le monde aimerait croire que les rêves peuvent devenir réalité.\nExcuse me, but could you scoot over a little bit, please?\tPeux-tu te mettre un peu de côté, s'il te plait ?\nExcuse me, but could you scoot over a little bit, please?\tPouvez-vous vous déplacer un peu de côté, je vous prie ?\nFinally she gave in to temptation and ate the whole cake.\tFinalement elle s'adonna à la tentation et mangea le gâteau en entier.\nFinally, I made up my mind and bought the new video game.\tFinalement je me suis décidé et j'ai acheté ce nouveau jeu vidéo.\nFor a long time, I used to believe the same thing you do.\tPendant longtemps, je croyais la même chose que toi.\nFor a long time, I used to believe the same thing you do.\tPendant longtemps, je croyais la même chose que vous.\nFor every action there is an equal and opposite reaction.\tÀ chaque action correspond une réaction égale et opposée.\nFrom time to time, I want to relax and forget everything.\tDe temps en temps, je veux me détendre et tout oublier.\nHalf a million children still face malnutrition in Niger.\tUn demi-million d'enfants font encore face à la malnutrition au Niger.\nHas anyone ever told you you've got serious trust issues?\tQuelqu'un vous a-t-il déjà dit que vous avez de sérieux problèmes de confiance ?\nHe can't be smart if he can screw up something like that.\tS'il est capable de foirer un truc pareil, c'est qu'il n'est pas bien malin.\nHe clung to the hope that he would see her again someday.\tIl s'accrochait à l'espoir de la revoir un jour.\nHe countered their proposal with a surprising suggestion.\tIl contra leur proposition par une suggestion surprenante.\nHe did a rough drawing to show me the way to the station.\tIl fit un croquis sommaire pour m'indiquer le chemin vers la gare.\nHe is not more than two or three years younger than I am.\tIl est mon cadet de 2 ou 3 ans tout au plus.\nHe is studying hard so that he can pass the examinations.\tIl étudie dur pour passer les examens.\nHe is the only American to have swum the English Channel.\tIl est le seul américain ayant traversé la Manche à la nage.\nHe kept on gambling, trying in vain to recoup his losses.\tIl continua à jouer, essayant en vain de se refaire.\nHe likes to just sit around and play video games all day.\tIl aime être juste assis là à jouer à des jeux vidéo.\nHe never takes into account the fact that I am very busy.\tIl ne tient jamais compte du fait que je sois très occupé.\nHe reached out for the sugar that was on the other table.\tIl étendit la main pour attraper le sucre qui se trouvait sur l'autre table.\nHe said he would give us his decision for sure by Friday.\tIl a dit qu'il nous ferait connaître sa décision vendredi sans faute.\nHe says he's got to get to Vienna the day after tomorrow.\tIl dit qu'il doit se rendre à Vienne après-demain.\nHe scrunched down in his seat so that I wouldn't see him.\tIl s'est calé dans son siège de telle façon que je ne le voie pas.\nHe sings so well that it's impossible to hold back tears.\tIl chante tellement bien qu'il est impossible de retenir ses larmes.\nHe spoke in a broken English that was hard to understand.\tIl parlait en mauvais anglais qu'il était difficile de comprendre.\nHe stared at that detailed miniature model of a dinosaur.\tIl fixa cette maquette miniature détaillée d'un dinosaure.\nHe tried getting close to her using every means possible.\tIl tenta de s'approcher d'elle en utilisant tous les moyens possibles.\nHe used all his strength to crawl out of the wrecked car.\tIl a mis toutes ses forces pour ramper hors de la voiture écrasée.\nHe used to eat out every day, but now he can't afford it.\tIl avait l'habitude de manger au restaurant tous les jours, mais maintenant il ne peut plus se le permettre.\nHe usually looks through the newspapers before breakfast.\tIl jette généralement un œil au journal avant le petit-déjeuner.\nHe was exiled to an island for the crime of high treason.\tIl fut exilé sur une île pour le crime de haute trahison.\nHe was late to the appointment due to a traffic accident.\tIl fut en retard à la nomination en raison d'un accident de la circulation.\nHe was late to the appointment due to a traffic accident.\tIl était arrivé en retard au rendez-vous à cause d'un accident de la route.\nHe wouldn't let anyone interfere in his personal affairs.\tIl ne permettait à personne de s'immiscer dans ses affaires personnelles.\nHe's a widower with three small children to take care of.\tC'est un veuf avec trois jeunes enfants dont il doit s'occuper.\nHer book is famous not only in England but also in Japan.\tSon livre est célèbre non seulement en Angleterre mais aussi au Japon.\nHer diaries formed the basis of the book she later wrote.\tSes journaux intimes formèrent la base du livre qu'elle écrivit plus tard.\nHer job was to see the children safely across the street.\tSon travail consistait à s'assurer que les enfants traversaient la rue en sécurité.\nHer unhappiness turned to bliss when she heard his voice.\tSon malheur changea en félicité dès lors qu'elle entendit sa voix.\nHis book is famous not only in England but also in Japan.\tSon livre n'est pas seulement connu en Angleterre mais aussi au Japon.\nHis height is a great advantage when he plays volleyball.\tSa hauteur est un grand avantage quand il joue au volley-ball.\nHonesty is one of the most beautiful things in the world.\tL'honnêteté est l'une des plus belles choses du monde.\nHow long does it take to go to the office from your home?\tCombien de temps faut-il pour aller du bureau à votre maison ?\nHow long does it take to walk from here to the city hall?\tCombien de temps faut-il environ pour aller à pied d'ici à la mairie ?\nHuman greed is threatening the existence of many species.\tLa cupidité humaine menace l'existence de nombreuses espèces.\nI applied for a job as a lifeguard at the community pool.\tJ'ai postulé comme sauveteur à la piscine municipale.\nI can't believe you're going to give away all your money.\tJe n'arrive pas à croire que tu vas donner tout ton argent.\nI can't wait for Tom to come home so I can show him this.\tJ'ai hâte que Tom rentre à la maison pour pouvoir lui montrer ça.\nI can't wait for Tom to come home so I can show him this.\tVivement que Tom rentre à la maison, que je puisse lui montrer ça.\nI canceled my hotel reservations and stayed with friends.\tJ'ai annulé ma réservation d'hôtel et j'ai séjourné chez des amis.\nI didn't do well on the test so my parents chewed me out.\tJe n'ai pas bien réussi mon examen, alors mes parents m'ont grondé.\nI didn't do well on the test so my parents chewed me out.\tJe n'ai pas bien réussi mon examen, alors mes parents m'ont grondée.\nI didn't do well on the test so my parents chewed me out.\tJe n'ai pas bien réussi mon examen, alors mes parents m'ont réprimandé.\nI didn't do well on the test so my parents chewed me out.\tJe n'ai pas bien réussi mon examen, alors mes parents m'ont réprimandée.\nI didn't understand much of what they were talking about.\tJe n'ai pas compris grand-chose de ce qu'ils discutaient.\nI didn't understand much of what they were talking about.\tJe n'ai pas compris grand-chose de ce qu'elles discutaient.\nI didn't understand much of what they were talking about.\tJe n'ai pas compris grand-chose à ce qu'ils étaient en train de discuter.\nI didn't understand much of what they were talking about.\tJe n'ai pas compris grand-chose à ce qu'elles étaient en train de discuter.\nI didn't understand much of what they were talking about.\tJe n'ai pas compris grand-chose de ce dont ils parlaient.\nI didn't understand much of what they were talking about.\tJe n'ai pas compris grand-chose de ce dont elles parlaient.\nI don't blame you for the accident. It wasn't your fault.\tJe ne te blâme pas pour l'accident. Ce n'était pas ta faute.\nI don't feel like working today, so let's go play soccer.\tJe n'ai pas envie de travailler aujourd'hui, allons jouer au foot.\nI don't have time to say this twice, so listen carefully.\tJe n'ai pas le temps de le répéter alors écoutez avec attention !\nI don't have time to say this twice, so listen carefully.\tJe n'ai pas le temps de le répéter alors écoute avec attention !\nI don't know about the others, but as for me, I'm for it.\tJe ne sais pas pour les autres, mais pour ce qui me concerne, je suis pour.\nI don't know about the others, but as for me, I'm for it.\tJe ne sais pas pour les autres, mais quant à moi, je suis pour.\nI don't know about the others, but as for me, I'm for it.\tJe ne sais pas pour les autres, mais en ce qui me concerne, je suis pour.\nI don't know how many more times I'll be able to do this.\tJe ne sais pas combien de fois je serai encore capable de faire ça.\nI don't know how many more times I'll be able to do this.\tJ'ignore combien de fois je serai encore capable de faire ça.\nI don't like to go out without a coat on such a cold day.\tPar une journée aussi froide, je n'aime pas sortir sans une veste.\nI don't like to inhale someone's smoke while I'm working.\tJe n'aime pas inhaler la fumée de quelqu'un pendant que je travaille.\nI don't mean to pry, but are you having problems at home?\tExcusez mon indiscrétion, mais avez-vous des problèmes à la maison?\nI dozed off in the train and slept right past my station.\tJe me suis assoupi dans le train et je dormais lors de l'arrêt à ma gare.\nI felt relieved when all the troubles were taken care of.\tJe me suis senti soulagé lorsque tous les problèmes ont été pris en charge.\nI got up at 4:00, ate some food, then went back to sleep.\tJe me suis levé à quatre heures, ai mangé un peu de nourriture et puis suis retourné dormir.\nI got up at 4:00, ate some food, then went back to sleep.\tJe me suis levée à quatre heures, ai mangé un peu de nourriture et puis suis retournée dormir.\nI got up early the next morning to catch the first train.\tJe me levai tôt, le matin suivant, afin d'attraper le premier train.\nI got up early the next morning to catch the first train.\tJe me suis levé tôt, le matin suivant, afin d'attraper le premier train.\nI had trouble finding my way back to my hotel last night.\tJ'ai eu du mal à retrouver le chemin du retour jusqu'à mon hôtel hier soir.\nI have a classmate who says he can speak French fluently.\tJ'ai un camarade de classe qui prétend qu'il sait parler le français couramment.\nI have nothing in particular to say about this situation.\tJe n'ai rien de particulier à dire quant à cette situation.\nI have so much work to do that I have to put off my trip.\tJ'ai tellement de travail que je dois annuler mon voyage.\nI haven't been back here since that unfortunate incident.\tJe ne suis plus revenu ici depuis ce malheureux incident.\nI heard that you became the manager of the Sydney branch.\tJ'ai entendu dire que tu étais devenu le manager de la succursale de Sidney.\nI hope that my sister will pass the entrance examination.\tJ'espère que ma sœur va réussir l'examen d'entrée.\nI hope you won't tell anyone you saw me leave this house.\tJ'espère que vous ne direz à personne que vous m'avez vu sortir de cette maison.\nI hope you've got some proof to back up your allegations.\tJ'espère que tu détiens des preuves pour appuyer tes dires.\nI hope you've got some proof to back up your allegations.\tJ'espère que vous détenez des preuves pour appuyer vos dires.\nI knew we were going to get married the moment I met you.\tJe savais que nous allions nous marier au moment où je t'ai rencontré.\nI knew we were going to get married the moment I met you.\tJe savais que nous allions nous marier au moment où je t'ai rencontrée.\nI knew we were going to get married the moment I met you.\tJe savais que nous allions nous marier au moment où je vous ai rencontré.\nI knew we were going to get married the moment I met you.\tJe savais que nous allions nous marier au moment où je vous ai rencontrée.\nI knew we were going to get married the moment I met you.\tJe savais que nous allions nous marier au moment où je vous ai rencontrées.\nI know you're just trying to help, and I appreciate that.\tJe sais que tu ne fais qu'essayer de donner un coup de main et je t'en suis reconnaissant.\nI know you're just trying to help, and I appreciate that.\tJe sais que tu ne fais qu'essayer de donner un coup de main et je t'en suis reconnaissante.\nI know you're just trying to help, and I appreciate that.\tJe sais que vous ne faites qu'essayer de donner un coup de main et je vous en suis reconnaissant.\nI know you're just trying to help, and I appreciate that.\tJe sais que vous ne faites qu'essayer de donner un coup de main et je vous en suis reconnaissante.\nI need to find somebody who can babysit on Friday nights.\tIl faut que je trouve quelqu'un pour garder les enfants vendredi soir.\nI needed your help on something, but I couldn't find you.\tJ'ai eu besoin de votre aide mais je n'ai pas pu vous trouver.\nI needed your help on something, but I couldn't find you.\tJ'ai eu besoin de ton aide mais je n'ai pas pu te trouver.\nI opened the door and saw two boys standing side by side.\tJ'ai ouvert la porte et j'ai vu deux garçons debout l'un à côté de l'autre.\nI really do hope that you'll do that without complaining.\tJ'espère vraiment que tu le feras sans te plaindre.\nI really do hope that you'll do that without complaining.\tJ'espère vraiment que vous le ferez sans vous plaindre.\nI shouldn't have used the word \"password\" as my password.\tJe n'aurais pas dû utiliser le mot « motdepasse » comme mot de passe.\nI stayed in bed one more day just to be on the safe side.\tJe restai au lit un jour de plus, juste par précaution.\nI still believe the Internet is not a place for children.\tMême maintenant, je pense qu'internet n'est pas un endroit fait pour les enfants.\nI think I can reach the branch if you'll give me a boost.\tJe pense pouvoir atteindre la branche si vous me donnez une impulsion.\nI think it must've happened just the way Tom said it did.\tJe pense que ça a dû arriver comme Tom l'a dit.\nI think it's dangerous for children to swim in this lake.\tJe pense qu'il est dangereux pour les enfants de nager dans ce lac.\nI think it's time for me to discuss the problem with her.\tJe pense qu'il est temps que je discute du problème avec elle.\nI think it's time for me to give up on this relationship.\tJe pense qu'il est temps que je laisse tomber cette relation.\nI think that it's dangerous to go walking alone at night.\tJe pense qu'il est dangereux de se promener seul la nuit.\nI think we should use our time a bit more constructively.\tJe pense que nous devrions utiliser notre temps de manière un peu plus constructive.\nI think, without a doubt, that I'll win the tennis match.\tJe suis sûre de remporter le match de tennis.\nI thought you of all people would understand my decision.\tJe pensais que toi, entre tous, comprendrait ma décision.\nI used to ride my bike to school, but now I take the bus.\tJ'avais l'habitude de me rendre à l'école en vélo mais je prends désormais le bus.\nI wake up at six, but I don't get out of bed until seven.\tJe me réveille à six heures, mais je ne me lève pas avant sept heures.\nI wake up at six, but I don't get out of bed until seven.\tJe me réveille à six heures, mais je ne sors pas du lit avant sept heures.\nI want to apologize to all of you for what just happened.\tJe veux présenter mes excuses à vous tous pour ce qui vient de se passer.\nI want to apologize to all of you for what just happened.\tJe veux présenter mes excuses à vous tous pour ce qui vient d'arriver.\nI want to apologize to all of you for what just happened.\tJe veux présenter mes excuses à vous tous pour ce qui vient de se produire.\nI want to move out of this cramped room as soon as I can.\tJe veux sortir de cette pièce confinée dès que possible.\nI was afraid I wouldn't have the pleasure of meeting you.\tJe craignais de ne pas avoir le plaisir de vous rencontrer.\nI was afraid I wouldn't have the pleasure of meeting you.\tJe craignais de ne pas avoir le plaisir de te rencontrer.\nI was afraid I wouldn't have the pleasure of meeting you.\tJe craignis de ne pas avoir le plaisir de vous rencontrer.\nI was afraid I wouldn't have the pleasure of meeting you.\tJe craignis de ne pas avoir le plaisir de te rencontrer.\nI was very tired, but I was nevertheless unable to sleep.\tJ'étais très fatigué, mais j'étais quand même incapable de dormir.\nI wish there were a more modern translation of this book.\tJ'aimerais qu'il y ait une traduction plus moderne de ce livre.\nI won't go with you unless you tell me where we're going.\tJe n'irai pas avec toi à moins que tu me dises où nous allons.\nI won't go with you unless you tell me where we're going.\tJe n'irai pas avec vous à moins que vous me disiez où nous nous rendons.\nI would like to have a look at your collection of stamps.\tJ’aimerais voir votre collection de timbres.\nI would like to know how you will proceed in this matter.\tJ'aimerais savoir comment vous procèderez en cette affaire.\nI would never forgive myself if anything happened to you.\tJe ne me pardonnerais jamais si quoi que ce soit t'arrivait.\nI would never forgive myself if anything happened to you.\tJe ne me pardonnerais jamais si quoi que ce soit vous arrivait.\nI wouldn't want you to get the wrong impression about me.\tJe n'aimerais pas que vous ayez une mauvaise impression de moi.\nI wouldn't want you to get the wrong impression about me.\tJe n'aimerais pas que tu aies une mauvaise impression de moi.\nI'd like to be left alone for a while, if you don't mind.\tJ'aimerais que l'on me laisse seul un moment, si vous n'y voyez pas d'inconvénient.\nI'd like to know exactly how much money is in my account.\tJe voudrais savoir exactement combien d'argent se trouve sur mon compte.\nI'd like to make it clear that I will not change my mind.\tJe voudrais qu'il soit clair que je ne changerai pas d'avis.\nI'll never forget shaking the President's hand last year.\tJe n'oublierai jamais la poignée de main avec le Président l'année dernière.\nI'll see to it that you get a raise after the first year.\tJe veillerai à ce que vous obteniez une augmentation à l'issue de la première année.\nI'll take over your duties while you are away from Japan.\tJe prendrai en charge vos responsabilités pendant que vous êtes loin du Japon.\nI'll tell you only if you promise to keep it to yourself.\tJe te le dis seulement si tu le gardes pour toi.\nI'm having trouble with my roommate. He eats all my food.\tJ'ai un problème avec mon compagnon de chambre. Il mange toute ma nourriture.\nI'm looking forward to visiting your country this winter.\tJe me prépare à visiter votre pays cet hiver.\nI'm meeting Tom for lunch at a restaurant on Park Street.\tJe dois rencontrer Tom pour déjeuner dans un restaurant sur la rue Park.\nI'm not a university student, but I'm brighter than them.\tJe ne suis pas étudiant, mais je suis plus intelligent qu'eux.\nI've already written everything that needs to be written.\tJ'ai déjà écrit tout ce qui a besoin de l'être.\nI've spent way too much time thinking about this problem.\tJ'ai passé beaucoup trop de temps à penser à ce problème.\nIf I had had a little more money, I would have bought it.\tSi j'avais eu un peu plus d'argent, je l'aurais acheté.\nIf for some reason that should happen, what would you do?\tSi, pour une raison quelconque, cela devait arriver, que ferais-tu ?\nIf for some reason that should happen, what would you do?\tSi, pour une raison quelconque, cela devait survenir, que ferais-tu ?\nIf for some reason that should happen, what would you do?\tSi, pour une raison quelconque, cela devait arriver, que feriez-vous ?\nIf for some reason that should happen, what would you do?\tSi, pour une raison quelconque, cela devait survenir, que feriez-vous ?\nIf for some reason that should happen, what would you do?\tSi, pour une raison quelconque, cela devait advenir, que feriez-vous ?\nIf for some reason that should happen, what would you do?\tSi, pour une raison quelconque, cela devait advenir, que ferais-tu ?\nIf for some reason that should happen, what would you do?\tSi, pour une raison quelconque, cela devait avoir lieu, que ferais-tu ?\nIf for some reason that should happen, what would you do?\tSi, pour une raison quelconque, cela devait avoir lieu, que feriez-vous ?\nIf it should rain tomorrow, the game would be called off.\tS'il devait pleuvoir demain, le match serait annulé.\nIf it weren't for music, the world would be a dull place.\tSi ce n'était pour la musique, le monde serait un endroit morne.\nIf more people had voted, we would have won the election.\tSi plus de gens avaient voté, nous aurions gagné les élections.\nIf there's anything I can do for you, please let me know.\tS'il y a quoi que ce soit que je puisse faire pour vous, je vous prie de me le faire savoir.\nIf there's anything I can do for you, please let me know.\tS'il y a quoi que ce soit que je puisse faire pour toi, s'il te plaît, fais-le moi savoir.\nIf there's anything I can do to help, please let me know.\tS'il y a quoi que ce soit que je puisse faire pour aider, faites-le moi savoir.\nIf there's anything urgent, you can get in touch with me.\tEn cas d'urgence, vous pouvez me joindre.\nIf what you say is true, it follows that he has an alibi.\tSi ce que vous dites est vrai, il s'ensuit qu'il a un alibi.\nIf you do not have this program, you can download it now.\tSi vous ne disposez pas de ce programme vous pouvez le télécharger maintenant.\nIf you don't want to go to that party, you don't have to.\tSi tu ne veux pas te rendre à la fête, tu n'y es pas obligé.\nIf you flunk this exam, you'll have to repeat the course.\tSi vous êtes recalé à cet examen, vous devrez redoubler.\nIf you get your right ear pierced, that means you're gay.\tSi vous vous faites percer l'oreille droite, cela signifie que vous êtes homo.\nIf you get your right ear pierced, that means you're gay.\tSi on se fait percer l'oreille droite, cela signifie qu'on est homo.\nIf you get your right ear pierced, that means you're gay.\tSi tu te fais percer l'oreille droite, cela signifie que tu es homo.\nIf you had helped me, I could have accomplished the work.\tSi tu m'avais aidé, j'aurais pu faire le travail.\nIf you tell too many lies, people won't ever believe you.\tSi tu racontes trop de mensonges, les gens ne te croiront jamais.\nIf you tell too many lies, people won't ever believe you.\tSi vous racontez trop de mensonges, les gens ne vous croiront jamais.\nIf your answer is correct, it follows that mine is wrong.\tSi ta réponse est correcte, cela signifie que la mienne est incorrecte.\nIf your answer is correct, it follows that mine is wrong.\tSi ta réponse est correcte, il s'ensuit que la mienne est incorrecte.\nImagine if you started hiccoughing and you couldn't stop.\tImagine si tu commençais à hoqueter et que tu ne pouvais pas t'arrêter.\nIn 1994, there was a shortage of water and rice in Japan.\tEn 1994, il y a eu une pénurie d'eau et de riz au Japon.\nIn any decision one makes there is a weighing of options.\tDans toute décision que l'on prend il y a une considération d'options.\nIn case of fire, break the glass and push the red button.\tEn cas d'incendie, brisez la vitre et appuyez sur le bouton rouge.\nIn order to serve you better, your call may be monitored.\tAfin de mieux vous servir, votre appel peut être enregistré.\nIn order to swim, you have to learn to tread water first.\tPour nager, vous devez d'abord apprendre à piétiner dans l'eau.\nIn the end, we ended up eating at that shabby restaurant.\tNous avons finalement mangé dans ce restaurant minable.\nIndustrialization often goes hand in hand with pollution.\tIndustrialisation va souvent de pair avec pollution.\nIndustrialization often goes hand in hand with pollution.\tIndustrialisation rime souvent avec pollution.\nIs there something in particular that you're looking for?\tY a-t-il quelque chose de particulier que vous recherchiez ?\nIs there something in particular that you're looking for?\tY a-t-il quelque chose de particulier que tu recherches ?\nIs there something in particular that you're looking for?\tRecherchez-vous quelque chose de particulier ?\nIs there something in particular that you're looking for?\tRecherchez-vous quelque chose en particulier ?\nIs there something in particular that you're looking for?\tRecherches-tu quelque chose de particulier ?\nIs there something in particular that you're looking for?\tRecherches-tu quelque chose en particulier ?\nIt has happened before and it will probably happen again.\tC'est arrivé auparavant et ça arrivera probablement à nouveau.\nIt has happened before and it will probably happen again.\tCa s'est produit auparavant et ça se produira probablement à nouveau.\nIt is often said that nothing is more precious than time.\tOn dit souvent que rien n'est plus précieux que le temps.\nIt seems like an interesting job. What do you exactly do?\tÇa a l'air d'un travail intéressant. C'est quoi que tu fais exactement ?\nIt took courage to sail across the Pacific single-handed.\tIl fallait du courage pour traverser le Pacifique à la voile en solitaire.\nIt was the coldest inaugural day in the nation's history.\tCe fut le jour d'inauguration d'un président le plus froid de l'histoire de la nation.\nIt will take me 20 minutes to get to the station by taxi.\tCela me prendra 20 minutes pour aller jusqu'à la gare en taxi.\nIt would be better if you didn't eat before going to bed.\tÇa serait mieux si tu ne mangeais pas avant d'aller au lit.\nIt would be better if you didn't eat before going to bed.\tÇa serait mieux si vous ne mangiez pas avant d'aller au lit.\nIt'll take some time to shovel all the snow off the roof.\tÇa prendra un peu de temps pour pelleter toute la neige du toit.\nIt's a hassle trying to decide what to wear to the party.\tC'est un casse-tête de décider quoi mettre pour la fête.\nIt's annoying to hear people talking loudly in a library.\tIl est vraiment énervant d'entendre des gens parler à haute voix au sein d'une bibliothèque.\nIt's been a long time since I've done anything like that.\tÇa fait longtemps que je n'ai rien fait de tel.\nIt's been a long time since I've written anyone a letter.\tÇa fait longtemps que je n'ai pas écrit une lettre à quelqu'un.\nIt's been a while since I've eaten anything with mustard.\tCela fait un moment que je n'ai rien mangé avec de la moutarde.\nIt's not at all rare to live to be over ninety years old.\tCe n'est pas rare du tout de vivre plus de 90 ans.\nIt's not the sort of illness that puts your life at risk.\tCe n'est pas le genre de maladie qui met votre vie en péril.\nIt's too far to walk to the station, so let's take a bus.\tC'est trop loin pour aller à pied à la gare, aussi prenons l'autobus.\nJobs are hard to come by with so many people out of work.\tLes emplois sont difficiles à trouver avec tant de gens au chômage.\nJust looking at a picture of food makes me feel nauseous.\tRien que de regarder une photo de nourriture me donne la nausée.\nJustice will be served, whether here or in the hereafter.\tLa justice prévaudra, que ce soit ici ou dans l'au-delà.\nJustice will be served, whether here or in the hereafter.\tLa justice prévaudra, ici ou dans l'au-delà.\nLarge catches of squid are a sign of a coming earthquake.\tDes prises importantes de calmars sont un signe avant-coureur de séisme.\nLarge catches of squid are a sign of a coming earthquake.\tDes prises importantes de calamars sont un signe avant-coureur de séisme.\nLet's get together the next time you come back to Boston.\tRetrouvons-nous, la prochaine fois que tu viens à Boston.\nLet's get together the next time you come back to Boston.\tRetrouvons-nous, la prochaine fois que vous venez à Boston.\nMany people feel that gold is the most secure investment.\tBeaucoup de gens pensent que l'or est l'investissement le plus sûr.\nMastering a foreign language requires a lot of hard work.\tMaîtriser une langue étrangère exige un dur labeur.\nMay I ask why it is that you don't want to talk about it?\tPuis-je demander pourquoi tu ne veux pas en parler ?\nMay I ask why it is that you don't want to talk about it?\tPuis-je demander pourquoi vous ne voulez pas en parler ?\nMom wants to go there, but Dad wants to watch TV at home.\tMaman veut aller là-bas, mais papa veut regarder la télé à la maison.\nMy dress was ruined when it came back from the cleaner's.\tLorsqu'elle est revenue de chez le teinturier, ma robe était abîmée.\nMy dress was ruined when it came back from the cleaner's.\tLorsqu'il est revenu de chez le teinturier, mon costume était abîmé.\nMy father bought me a digital watch for birthday present.\tMon père m'a acheté une montre numérique, comme cadeau d'anniversaire.\nMy friends dropped by to see me the day before yesterday.\tAvant-hier mes amis sont passés me voir un moment.\nMy parents are opposed to my sister marrying a foreigner.\tMes parents s'opposent à ce que ma sœur épouse un étranger.\nMy savings are so small that they won't last much longer.\tMes économies sont si maigres qu'elles ne vont plus durer bien longtemps.\nMy school is getting ready for the campus music festival.\tMon école se prépare pour le festival de musique du campus.\nMy sister, wearing her favorite red coat, went out today.\tMa sœur, portant son manteau rouge favori, est sortie aujourd'hui.\nMy son loves to throw temper tantrums in the supermarket.\tMon fils adore piquer des crises de nerfs au supermarché.\nNever choose a vocation just because it looks profitable.\tN'élisez jamais une vocation juste parce qu'elle semble rentable.\nNever choose a vocation just because the hours are short.\tNe choisissez jamais une profession juste parce que les heures y sont courtes.\nNo other mountain in the world is so high as Mt. Everest.\tAucune montagne au monde n'atteint la hauteur du Mont Everest.\nNo sooner had he met his family than he burst into tears.\tÀ peine avait-il rencontré sa famille qu'il éclata en sanglots.\nNothing is more disappointing than to lose in the finals.\tRien n'est plus décevant que de perdre en finale.\nNow that he is old, it is your duty to go look after him.\tÀ présent qu'il est vieux, c'est ton devoir de veiller sur lui.\nNow that you've decided to quit your job, you look happy.\tMaintenant que vous avez décidé de quitter votre emploi, vous avez l'air heureux.\nNow that you've decided to quit your job, you look happy.\tMaintenant que tu as décidé de quitter ton emploi, tu as l'air heureux.\nNow that you've decided to quit your job, you look happy.\tMaintenant que vous avez décidé de quitter votre emploi, vous avez l'air heureuse.\nNow that you've decided to quit your job, you look happy.\tMaintenant que tu as décidé de quitter ton emploi, tu as l'air heureuse.\nPlease drop in when you happen to be in the neighborhood.\tVeuillez donc passer quand vous êtes dans le coin !\nPlease excuse me for calling you so early in the morning.\tVeuillez m'excuser de vous appeler si tôt le matin.\nPolish girls didn't want Justin Bieber to come to Poland.\tLes Polonaises ne voulaient pas que Justin Bieber vienne en Pologne.\nQuite a few people were present at the meeting yesterday.\tPas mal de gens étaient présents à la réunion d'hier.\nShe advised him to tell his girlfriend that he loved her.\tElle lui recommanda de dire à sa petite amie qu'il l'aimait.\nShe advised him to tell his girlfriend that he loved her.\tElle lui recommanda de dire à sa petite copine qu'il l'aimait.\nShe advised him to tell his girlfriend that he loved her.\tElle lui recommanda de dire à sa copine qu'il l'aimait.\nShe advised him to tell his girlfriend that he loved her.\tElle lui a recommandé de dire à sa petite amie qu'il l'aimait.\nShe advised him to tell his girlfriend that he loved her.\tElle lui a recommandé de dire à sa petite copine qu'il l'aimait.\nShe advised him to tell his girlfriend that he loved her.\tElle lui a recommandé de dire à sa copine qu'il l'aimait.\nShe became scared when she noticed the man following her.\tElle commença à avoir peur lorsqu'elle remarqua l'homme qui la suivait.\nShe calls him every night and talks for at least an hour.\tElle l'appelle chaque soir et parle pendant au moins une heure.\nShe calls him every night and talks for at least an hour.\tElle l'appelle chaque nuit et parle pendant au moins une heure.\nShe doesn't want him to buy an expensive engagement ring.\tElle ne veut pas qu'il achète une bague de fiançailles onéreuse.\nShe doesn't want to talk to me now, and I don't know why.\tElle ne veut pas me parler, maintenant, et je ne sais pas pourquoi.\nShe grabbed him by the hand and pulled him onto the boat.\tElle le saisit par la main et le tira sur le bateau.\nShe grabbed him by the hand and pulled him onto the boat.\tElle l'a saisi par la main et l'a tiré sur le bateau.\nShe has been looking after her sick sister for ten years.\tElle s'est occupée de sa sœur malade pendant dix ans.\nShe helped him tie his tie because he didn't know how to.\tElle l'aida à nouer sa cravate car il ignorait comment faire.\nShe helped him tie his tie because he didn't know how to.\tElle l'a aidé à nouer sa cravate car il ignorait comment faire.\nShe introduced her sister to him more than two years ago.\tElle lui a présenté sa sœur il y a plus de deux ans.\nShe put on dark glasses to protect her eyes from the sun.\tElle a mis des lunettes noires pour protéger ses yeux du soleil.\nShe talks to her sister on the phone for hours at a time.\tElle téléphone à sa sœur des heures durant.\nShe tried to lift the box, but found it impossible to do.\tElle essaya de soulever la caisse mais trouva impossible de le faire.\nShe was completely nonplussed by his unexpected behavior.\tElle était complètement déroutée par son attitude inattendue.\nShe was looking forward to playing table tennis with him.\tElle était impatiente de jouer au ping-pong avec lui.\nShouldn't you overlook his indiscretions and forgive him?\tNe devriez-vous pas ignorer ses indiscrétions et lui pardonner ?\nSince he had a bad cold, he was absent from school today.\tComme il avait un mauvais rhume, il était absent de l'école aujourd'hui.\nSince my nephew was still young, he was let off the hook.\tComme mon neveu était encore jeune, il a été épargné.\nSome people read the newspaper while watching television.\tIl y a des gens qui lisent le journal en regardant la télévision.\nSome students were sitting on the bench and having lunch.\tQuelques étudiants déjeunaient assis sur le banc.\nSomething very unusual seems to be happening in the park.\tQuelque chose de très inhabituel semble se produire dans le parc.\nSpace travel will be commonplace some time in the future.\tLes voyages spatiaux seront devenus banals quelque part dans le futur.\nTell me the reason you were absent from school yesterday.\tDis-moi la raison pour laquelle tu étais absent de l'école hier.\nTell me the reason you were absent from school yesterday.\tDites-moi la raison pour laquelle vous étiez absents de l'école hier.\nTell me the reason you were absent from school yesterday.\tDites-moi la raison pour laquelle vous étiez absentes de l'école hier.\nTell me the reason you were absent from school yesterday.\tDites-moi la raison pour laquelle vous étiez absent de l'école hier.\nTell me the reason you were absent from school yesterday.\tDites-moi la raison pour laquelle vous étiez absente de l'école hier.\nThanks very much for having me to dinner the other night.\tMerci beaucoup de m'avoir invité à diner l'autre soir.\nThat doctrine will no doubt lead to serious consequences.\tCette doctrine engendrera sans nul doute de graves conséquences.\nThat time table gives the hours of arrival and departure.\tCet emploi du temps donne les heures d'arrivée et de départ.\nThat was the most interesting film that we had ever seen.\tC'était le film le plus intéressant que nous ayons jamais vu.\nThe French team scored as many goals as the English team.\tL'équipe de France a marqué autant de buts que l'équipe d'Angleterre.\nThe Japanese art of flower arrangement is called Ikebana.\tL'art japonais de l'arrangement floral est appelé Ikebana.\nThe U.S. thinks it is getting the short end of the stick.\tLes États-Unis s'imaginent tenir la poignée du bâton.\nThe bath was not hot enough and I was unable to enjoy it.\tLe bain n'était pas assez chaud et je n'ai pas pu l'apprécier.\nThe cabinet minister ended up submitting his resignation.\tLe ministre a fini par remettre sa démission.\nThe chances are slim to none that you'll win the lottery.\tLes chances sont extrêmement minces que tu gagnes à la loterie.\nThe court condemned the man to death by lethal injection.\tLa cour a condamné l'homme à mort par injection létale.\nThe crowd got out of control and broke through the fence.\tLa foule devint incontrôlable et força la palissade.\nThe date of the festival coincides with that of the exam.\tLe jour du festival coïncide avec celui de l'examen.\nThe day will surely come when your dreams will come true.\tLe jour viendra sûrement où tes rêves se réaliseront.\nThe defendant was found not guilty by reason of insanity.\tLe mis en examen fut prononcé non coupable en raison de sa folie.\nThe defendant was found not guilty by reason of insanity.\tL'accusé fut prononcé non coupable en raison de sa folie.\nThe defendant was found not guilty by reason of insanity.\tL'accusée fut prononcée non coupable en raison de sa folie.\nThe following morning, the snowman was completely melted.\tLe lendemain matin, le bonhomme de neige avait complètement fondu.\nThe government made no move to solve the housing problem.\tLe gouvernement n'a rien fait pour résoudre le problème de logement.\nThe government made no move to solve the housing problem.\tLe gouvernement ne fit rien pour résoudre le problème du logement.\nThe hinges are really squeaky. Could you oil them please?\tLes gonds grincent vraiment. Peux-tu les huiler, s'il te plait ?\nThe last bus had already gone when I got to the bus stop.\tLe dernier bus était déjà parti quand je suis arrivé à l'arrêt de bus.\nThe last time I went to the beach, I got badly sunburned.\tLa dernière fois que je suis allé à la plage, j'ai été gravement brûlé par le soleil.\nThe last time I went to the beach, I got badly sunburned.\tLa dernière fois que je suis allée à la plage, j'ai été gravement brûlée par le soleil.\nThe lawyer seems to think it'll be an open and shut case.\tL'avocat semble penser que ce sera une affaire rapide.\nThe lawyer's job is to prove that her client is innocent.\tLa mission d'un avocat est de prouver que son client est innocent.\nThe military quashed the revolt within a matter of hours.\tLes militaires écrasèrent la révolte en l'affaire de quelques heures.\nThe more you study, the more you discover your ignorance.\tPlus on étudie, plus on découvre sa propre ignorance.\nThe more you study, the more you discover your ignorance.\tPlus tu étudies, plus tu découvres l'étendue de ton ignorance.\nThe most beloved people in the world are the spontaneous.\tLes gens les plus chéris au monde sont les gens spontanés.\nThe new road will benefit the people living in the hills.\tLa nouvelle route profitera aux gens qui vivent dans les collines.\nThe noise outside his window prevented him from sleeping.\tLe bruit à l'extérieur l'a empêché de dormir.\nThe old man wanders from town to town peddling his wares.\tLe vieil homme erre de ville en ville, colportant ses marchandises.\nThe parking lot in front of the bank was completely full.\tLe parking en face de la banque était complet.\nThe population of New York is smaller than that of Tokyo.\tLa population de New-York est moins importante que celle de Tokyo.\nThe previous tenant took excellent care of her apartment.\tLa locataire précédente a pris grand soin de son appartement.\nThe students must not enter the teachers' room this week.\tCette semaine, les élèves n'ont pas le droit d'entrer dans la salle des professeurs.\nThe students were all looking forward to summer vacation.\tTous les étudiants attendaient avec impatience les vacances d'été.\nThe teacher suggested that we go to the library to study.\tLe professeur suggéra que nous allions à la bibliothèque pour étudier.\nThe temperature has been below freezing for several days.\tLa température a été en dessous de zéro depuis plusieurs jours.\nThe traffic accident deprived the young man of his sight.\tL'accident de la circulation priva le jeune homme de sa vue.\nThe train was so crowded that I had to stand all the way.\tLe train a été si bondé que j'ai dû me tenir debout durant tout le chemin.\nThe train was so crowded that I had to stand all the way.\tLe train était tellement bondé que je dus rester debout durant tout le voyage.\nThe trouble is that my son does not want to go to school.\tLe problème est que mon fils ne veut pas aller à l'école.\nThe trouble is that my son does not want to go to school.\tL'ennui est que mon fils ne veut pas aller à l'école.\nThe two runners reached the finish line at the same time.\tLes deux coureurs ont fini la course en même temps.\nThere are beautiful flowers here and there in the garden.\tIl y a de superbes fleurs ci et là dans la jardin.\nThere are lots of presents underneath the Christmas tree.\tIl y a beaucoup de cadeaux sous le sapin.\nThere are many housewives who complain about high prices.\tIl y a de nombreuses ménagères qui se plaignent des prix élevés.\nThere are three hundred applicants for only one position.\tIl y a trois cents candidats pour un seul poste.\nThere is no need to take his advice if you don't want to.\tIl n'est pas nécessaire de prendre conseil auprès de lui si tu ne veux pas.\nThere is no need to worry about shortages for the moment.\tCe n'est pas la peine de s'inquiéter de pénuries pour le moment.\nThere's a convenience store diagonally across the street.\tIl y a une épicerie de l'autre coté de la rue, en diagonale.\nThere's a convenience store diagonally across the street.\tIl y a un commerce de proximité à l'opposé de la rue en diagonale.\nThere's a fine line between assertiveness and aggression.\tLa frontière est mince entre affirmation de soi et agression.\nThere's only one way to find out how to do that. Ask Tom.\tIl n'y a qu'une façon de savoir comment faire cela. Demander à Tom.\nThese flowers aren't only beautiful, but they smell nice.\tCes fleurs ne sont pas seulement belles mais sentent également très bon.\nThey kicked him out of the disco without any explanation.\tIls l'ont viré de la discothèque sans explication.\nThey slept in the car because they couldn't find a hotel.\tIls dormirent dans la voiture parce qu'ils ne purent trouver d'hôtel.\nThey slept in the car because they couldn't find a hotel.\tElles dormirent dans la voiture parce qu'elles ne purent trouver d'hôtel.\nThey slept in the car because they couldn't find a hotel.\tIls ont dormi dans la voiture parce qu'ils n'ont pu trouver d'hôtel.\nThey slept in the car because they couldn't find a hotel.\tElles ont dormi dans la voiture parce qu'elles n'ont pu trouver d'hôtel.\nThey'll stop at nothing to achieve their political goals.\tIls n'auront de cesse d'atteindre leurs objectifs politiques.\nThis book has a number of mistakes, but it's interesting.\tCe livre comporte nombre d'erreurs mais est intéressant.\nThis company is indifferent to the safety of its workers.\tCette entreprise est indifférente à la sécurité de ses employés.\nThis form looks kind of complicated. Help me fill it out.\tCe formulaire a l'air bien compliqué. Aide-moi à le remplir.\nThis is the last time I'll ask you to do anything for me.\tC'est la dernière fois que je te demande de faire quelque chose pour moi.\nThis problem is not so difficult that you can't solve it.\tCe problème n'est pas si difficile au point de ne pas pouvoir le résoudre.\nThousands of people went to the beach to see the dolphin.\tDes milliers de gens se rendirent à la plage pour voir le dauphin.\nTo be happy, you should spend time with someone you love.\tPour être heureux, tu devrais passer du temps avec quelqu'un que tu aimes.\nTo be happy, you should spend time with someone you love.\tPour être heureux, vous devriez passer du temps avec quelqu'un que vous aimez.\nTo my surprise, the anthropologist was accused of murder.\tÀ ma surprise, l'anthropologiste a été accusé de meurtre.\nToday it's very sunny, so everyone is wearing sunglasses.\tAujourd'hui est très ensoleillé, du coup tout le monde porte des lunettes de soleil.\nTom asked Mary to go to the supermarket to get some milk.\tTom demanda à Marie d'aller au supermarché pour prendre du lait.\nTom asked Mary to go to the supermarket to get some milk.\tTom demanda à Marie d'aller au supermarché chercher du lait.\nTom didn't even have enough money to buy a cup of coffee.\tTom n'a même pas eu assez d'argent pour un café.\nTom didn't know that Mary's house was so close to John's.\tTom ne savait pas que la maison de Marie était si proche de celle de John.\nTom didn't know why Mary needed to borrow thirty dollars.\tTom ne savait pas pourquoi Marie avait besoin d'emprunter trente dollars.\nTom doesn't have enough money to buy everything he needs.\tTom n'a pas assez d'argent pour acheter tout ce dont il a besoin.\nTom finished writing the report in less than three hours.\tTom a terminé la rédaction du rapport en moins de trois heures.\nTom had no choice but to do what the boss told him to do.\tTom n'avait d'autre choix que de faire ce que le patron lui a dit de faire.\nTom is convinced that his mother doesn't want to eat now.\tTom est convaincu que sa mère ne veut pas manger maintenant.\nTom is not available at the moment. May I take a message?\tTom n’est pas disponible pour le moment. Est-ce que je peux prendre un message ?\nTom made a list of things he wanted to do before he died.\tTom a fait une liste de choses qu'il voulait faire avant de mourir.\nTom says that Mary definitely doesn't want to be married.\tTom dit que Mary ne veut absolument pas se marier.\nTom spent the remainder of the night thinking about Mary.\tTom passa le reste de la nuit à penser à Marie.\nTom tiptoed into the bedroom to avoid waking up his wife.\tTom marcha sur la pointe des pieds jusqu'à la chambre pour éviter de réveiller sa femme.\nTom told me that he doesn't have any brothers or sisters.\tTom m'a dit qu'il n'avait ni frères ni soeurs.\nTom told me that he doesn't have any brothers or sisters.\tTom me dit qu'il n'avait ni frères ni soeurs.\nTom took off his wedding ring and threw it into the pond.\tTom retira son alliance et la jeta dans l'étang.\nTom was asked to be best man at Mary's brother's wedding.\tOn a demandé à Tom d'être témoin au mariage du frère de Marie.\nTom was determined to finish the job before he went home.\tTom était déterminé à ne rentrer qu'une fois son travail accompli.\nTom was surprised how well Mary could play the saxophone.\tTom était surpris à quel point Marie pouvait bien jouer du saxophone.\nTom woke Mary up at 6:30 and she wasn't happy about that.\tTom réveilla Mary à 6h30 et elle n'en était pas heureuse.\nTom, who had been working all day, wanted to have a rest.\tTom, qui avait travaillé toute la journée, voulait se reposer.\nTsunamis swept through rice fields and flooded the towns.\tLes tsunamis ont balayé les rizières et submergé les villes.\nWe could meet downtown. Would that be convenient for you?\tNous pourrions nous rencontrer au centre-ville. Cela vous conviendrait-il ?\nWe could meet downtown. Would that be convenient for you?\tNous pourrions nous rencontrer au centre-ville. Cela te conviendrait-il ?\nWe could meet downtown. Would that be convenient for you?\tOn peut se voir au centre-ville. Est-ce que ça t'arrange ?\nWe have something very important that we have to discuss.\tIl nous faut discuter de quelque chose de très important.\nWe have something very important that we need to discuss.\tIl nous faut discuter de quelque chose de très important.\nWe have to attend that meeting whether we like it or not.\tNous devons assister à cette rencontre, que nous le voulions ou non.\nWe hope that you will be able to join us at this seminar.\tNous espérons que vous pourrez vous joindre à nous à ce séminaire.\nWe hope to finish planting the field before the sun sets.\tNous espérons finir de planter le champ avant que le soleil ne se couche.\nWe listened carefully in order not to miss a single word.\tNous avons consciencieusement écouté, pour ne pas manquer un seul mot.\nWe must stop using ozone-depleting chemicals immediately.\tNous devons immédiatement mettre fin à l'emploi de produits chimiques qui détruisent l'ozone.\nWe often hear it said that the Japanese are good workers.\tOn entend souvent dire que les Japonais sont des bons travailleurs.\nWe were so tired that we turned in about 9:00 last night.\tOn était tellement crevés qu'on est parti vers 9h00 hier soir.\nWe were so tired that we turned in about 9:00 last night.\tOn était tellement fatigués qu'on est parti vers 9h00 hier soir.\nWe were taught that Newton discovered the law of gravity.\tOn nous a appris que Newton a découvert la loi de la gravité.\nWe wish him all the best of luck in his future endeavors.\tNous lui souhaitons la meilleure chance dans ses futures entreprises.\nWe're a bit busy at the moment. Can you hang on a minute?\tNous sommes un peu occupés en ce moment. Voulez-vous bien attendre une minute?\nWe're thinking of adding on another bedroom to the house.\tNous réfléchissons à ajouter une autre chambre à la maison.\nWhat a shame to just endure life rather than enjoying it.\tQuel dommage de ne faire que supporter la vie plutôt que d'en jouir !\nWhat changes the world is communication, not information.\tCe qui change le monde, c'est la communication, pas l'information.\nWhat difference does it make if people are looking at us?\tQuelle différence cela fait-il si les gens nous regardent ?\nWhat difference does it make if people are looking at us?\tQuelle différence cela fait-il si des gens nous regardent ?\nWhat with the heat and the humidity, I didn't sleep well.\tA cause de la chaleur et de l'humidité, je n'ai pas bien dormi.\nWhen I was in New York, I happened to meet my old friend.\tLorsque j'étais à New-York, j'ai rencontré un vieil ami.\nWhen she returned to her room, the diamond ring was gone.\tLorsqu'elle retourna à sa chambre, le bague de diamant avait disparu.\nWhen they got to the station, the train had already left.\tQuand ils parvinrent à la gare, le train était déjà parti.\nWhen you get to be my age, you'll understand what I mean.\tLorsque tu atteindras mon âge, tu comprendras ce que je veux dire.\nWhen you get to be my age, you'll understand what I mean.\tLorsque vous atteindrez mon âge, vous comprendrez ce que je veux dire.\nWhenever he comes to this place, he orders the same dish.\tChaque fois qu'il vient ici, il commande le même plat.\nWhether you like it or not, you have to do your homework.\tQue cela te plaise ou non, tu dois faire tes devoirs.\nWhich air conditioner do you think is the most efficient?\tQuel appareil à air conditionné, pensez-vous, est le plus efficace ?\nWhich air conditioner do you think is the most efficient?\tQuel appareil à air conditionné, penses-tu, est le plus efficace ?\nWhich language do you use when you speak to your parents?\tTu utilises quelle langue quand tu parles à tes parents ?\nWhile traveling in Europe, I was pickpocketed on a train.\tPendant que je voyageais en Europe, on m'a fait les poches dans un train.\nWhile we're waiting, why don't you tell me what happened?\tPendant que nous attendons, pourquoi ne me dis-tu pas ce qui s'est passé ?\nWill it be necessary for us to buy a book for this class?\tEst-ce qu'il nous faudra acheter un livre pour ce cours ?\nWould it be ethical to sacrifice one person to save many?\tSerait-il moral de sacrifier une personne pour en sauver plusieurs ?\nYou can save your breath. There is no use talking to him.\tVous pouvez économiser votre salive. Ça ne sert à rien de parler avec lui.\nYou catch more flies with honey than you do with vinegar.\tOn attrape davantage de mouches avec du miel qu'avec du vinaigre.\nYou don't have to make a different dish for every person.\tIl ne faut pas préparer un plat différent pour chaque personne.\nYou don't have to say anything if you don't feel like it.\tTu n’as pas à dire quoi que ce soit si tu ne préfères pas.\nYou don't have to say anything if you don't feel like it.\tT’as pas à dire quoi que ce soit si tu ne préfères pas.\nYou don't need to worry about that kind of thing anymore.\tTu n'as plus à te soucier de ce genre de choses.\nYou had better turn off the light before you go to sleep.\tTu devrais éteindre la lumière avant d'aller dormir.\nYou had better turn off the light before you go to sleep.\tVous devriez éteindre la lumière avant d'aller dormir.\nYou have changed so much that I can hardly recognize you.\tTu as tellement changé que j'ai du mal à te reconnaître.\nYou have no right to interfere in other people's affairs.\tVous n'avez aucun droit d'intervenir dans les affaires des autres.\nYou just made me miss the perfect shot when you hollered.\tTu viens de me faire manquer le coup parfait quand tu as crié.\nYou may stay here if you like, as long as you keep quiet.\tTu peux rester ici si tu veux, aussi longtemps que tu restes tranquille.\nYou may stay here if you like, as long as you keep quiet.\tVous pouvez rester ici si vous voulez, aussi longtemps que vous restez tranquille.\nYou may stay here if you like, as long as you keep quiet.\tVous pouvez rester ici si vous voulez, aussi longtemps que vous restez tranquilles.\nYou must be more careful to avoid making a gross mistake.\tTu dois être plus prudent pour éviter de commettre une grosse erreur.\nYou must be more careful to avoid making a gross mistake.\tTu dois être plus prudent pour éviter de commettre une erreur grossière.\nYou never get a second chance to make a first impression.\tTu n'as jamais une seconde occasion de faire une première impression.\nYou never get a second chance to make a first impression.\tUne seconde chance de faire une première impression ne t'es jamais donnée.\nYou're a good student, but you still have a lot to learn.\tVous êtes un bon élève, mais vous avez encore beaucoup à apprendre.\nYou're going to have to do better to convince me of that.\tIl vous faudra vous démener davantage pour m'en convaincre.\nYou're probably too young to understand what's happening.\tTu es probablement trop jeune pour comprendre ce qui se passe.\nYou're probably too young to understand what's happening.\tTu es probablement trop jeune pour comprendre ce qui arrive.\nYou're probably too young to understand what's happening.\tTu es probablement trop jeune pour comprendre ce qui se produit.\nYou're probably too young to understand what's happening.\tVous êtes probablement trop jeune pour comprendre ce qui se passe.\nYou're probably too young to understand what's happening.\tVous êtes probablement trop jeune pour comprendre ce qui arrive.\nYou're probably too young to understand what's happening.\tVous êtes probablement trop jeune pour comprendre ce qui se produit.\nYou've both been very impressive today. I'm proud of you.\tVous avez tous les deux été très impressionnants aujourd'hui. Je suis fière de vous.\nYou've done nothing but complain ever since you got here.\tTu n'as fait que te plaindre depuis ton arrivée.\nA big bomb fell, and a great many people lost their lives.\tUne grosse bombe tomba, et un grand nombre de personnes perdirent la vie.\nA bird can glide through the air without moving its wings.\tUn oiseau peut planer dans les airs sans bouger ses ailes.\nA dreary landscape spread out for miles in all directions.\tUn paysage ennuyeux s'étendait sur des kilomètres dans toutes les directions.\nA little walk will give you a good appetite for breakfast.\tUne petite marche va vous ouvrir l'appétit avant le petit déjeuner.\nA monument has been erected to the memory of the deceased.\tUn monument a été érigé en mémoire des défunts.\nA nuclear war will bring about the destruction of mankind.\tUne guerre nucléaire provoquerait la destruction de l'humanité.\nA nuclear war will bring about the destruction of mankind.\tUne guerre nucléaire causera l'anéantissement de l'humanité.\nA passenger fainted, but the stewardess brought him round.\tUn passager fit un malaise mais l'hôtesse de l'air le ranima.\nA passing car hit a puddle and splashed water all over me.\tUne voiture qui passait sur une flaque m'éclaboussa de l'eau des pieds à la tête.\nA pub is a popular gathering place in which to drink beer.\tUn pub est un endroit ou les gens se rassemblent pour boire de la bière.\nA very large number of tourists visit Kyoto in the spring.\tUne grande quantité de touristes visitent Kyoto au printemps.\nAfter running up the hill, I was completely out of breath.\tAprès avoir couru en haut de la colline, j'étais complètement hors d'haleine.\nAirplanes enable people to travel great distances rapidly.\tLes avions permettent aux gens de rapidement parcourir de grandes distances.\nAll communication with that airplane was suddenly cut off.\tToutes les communications de cet avion ont subitement été coupées.\nAll the members were not present at the meeting yesterday.\tTous les membres n’étaient pas présents à la réunion d'hier.\nAll you have to do is to write your name and address here.\tVous avez seulement à écrire votre nom et adresse ici.\nAm I the only one who didn't understand what was going on?\tSuis-je le seul qui n'aie pas compris ce qui était en train de se produire ?\nAm I the only one who didn't understand what was going on?\tSuis-je la seule qui n'aie pas compris ce qui était en train de se passer ?\nAmerican generals believed they could win an easy victory.\tLes généraux étasuniens croyaient qu'ils pouvaient remporter une victoire facile.\nAn arrest warrant was issued for the company's accountant.\tUn mandat d'arrêt fut délivré au nom du comptable de l'entreprise.\nAn arrest warrant was issued for the company's accountant.\tUn mandat d'arrêt a été délivré au nom du comptable de l'entreprise.\nAn hour has sixty minutes, and a minute has sixty seconds.\tDans une heure, il y a soixante minutes et dans une minute, il y a soixante secondes.\nApart from a few mistakes, your composition was excellent.\tMis à part quelques erreurs, votre rédaction était excellente.\nAre you still asking yourself what the meaning of life is?\tVous demandez-vous encore quel est le sens de la vie ?\nAre you still asking yourself what the meaning of life is?\tTe demandes-tu encore quel est le sens de la vie ?\nAs far as I am concerned, I have no objection to the plan.\tEn ce qui me concerne, je n'ai aucune objection au projet.\nAs soon as I can get the chance, I'll send you some money.\tDès que je peux avoir l'occasion, je t'enverrai de l'argent.\nAs soon as I can get the chance, I'll send you some money.\tDès que je peux avoir l'occasion, je vous enverrai de l'argent.\nAs soon as the results are made public, I'll let you know.\tDès que le résultat sera rendu public, je te le ferai savoir.\nBlondes earn 7% more than women with any other hair color.\tLes blondes gagnent sept pour cent de plus que les femmes ayant n'importe quelle autre couleur de cheveux.\nCaesar leaves Gaul, crosses the Rubicon, and enters Italy.\tCésar quitte la Gaule, traverse le Rubicon et entre en Italie.\nCaesar leaves Gaul, crosses the Rubicon, and enters Italy.\tCésar quitte la Gaule, traverse le Rubicon et pénètre en Italie.\nCan you help me to translate these sentences into Chinese?\tPeux-tu m'aider à traduire ces phrases en chinois ?\nChildren need love, especially when they don't deserve it.\tLes enfants ont besoin d'amour, particulièrement lorsqu'ils ne le méritent pas.\nChildren walk around from door to door on Halloween night.\tLes enfants vont de porte à porte la nuit d'Halloween.\nClerks with sticky fingers won't keep their jobs for long.\tLes employés aux doigts collants ne vont pas garder leurs emplois très longtemps.\nClerks with sticky fingers won't keep their jobs for long.\tLes employés qui fauchent ne vont pas garder leurs emplois très longtemps.\nCompared with the old model, this is far easier to handle.\tComparé à l'ancien modèle, ceci est bien plus facile à manipuler.\nCompiling a dictionary demands an enormous amount of time.\tCompiler un dictionnaire exige énormément de temps.\nComputers are capable of doing extremely complicated work.\tLes ordinateurs sont capables d'effectuer des tâches extrêmement compliquées.\nDemocracy is an idea that goes back to the ancient Greeks.\tLa démocratie est un concept qui remonte aux anciens grecs.\nDid you have a lot of happy experiences in your childhood?\tAvez-vous eu beaucoup d'expériences heureuses dans votre enfance ?\nDo not be shy. Your pronunciation is more or less correct.\tNe sois pas timide. Ta prononciation est plus ou moins correcte.\nDo not be shy. Your pronunciation is more or less correct.\tNe soyez pas intimidé. Votre prononciation est plus ou moins correcte.\nDo you really need to ask the question to know the answer?\tEst-ce que tu as vraiment besoin de poser la question pour connaître la réponse ?\nDo you really need to ask the question to know the answer?\tAvez-vous vraiment besoin de poser la question pour connaître la réponse ?\nDo you really need to ask the question to know the answer?\tAs-tu vraiment besoin de poser la question pour connaître la réponse ?\nDo you think that eating breakfast every day is important?\tPenses-tu que prendre un petit-déjeuner chaque jour soit important ?\nDo you think that eating breakfast every day is important?\tPensez-vous que prendre un petit-déjeuner chaque jour soit important ?\nDo you think the rainy season will set in early this year?\tPensez-vous que la saison des pluies sera en avance cette année ?\nDoes he still have that book he borrowed from the library?\tA-t-il encore le livre qu'il avait emprunté à la bibliothèque ?\nDon't be afraid of making mistakes when you speak English.\tN'ayez pas peur de faire des fautes quand vous parlez anglais.\nDon't forget the fact that smoking is bad for your health.\tN'oublie pas le fait que fumer est mauvais pour ta santé.\nDon't forget to attach your photo to the application form.\tN'omettez pas d'adjoindre votre photo au formulaire de candidature.\nDon't forget to turn off the light before you go to sleep.\tN'oublie pas d'éteindre la lumière avant d'aller dormir.\nDon't forget to turn off the light before you go to sleep.\tN'oubliez pas d'éteindre la lumière avant d'aller dormir.\nEbola spreads from person to person through bodily fluids.\tEbola se propage de personne à personne à travers les liquides corporels.\nEverything hits the mark with him and he lets you know it.\tTout lui convient et il vous le fait savoir.\nFarmers defaulting on loans had to auction off their land.\tLes fermiers en cessation de paiements devaient vendre leurs terres aux enchères.\nFirst of all, I'm very worried about my daughter's health.\tAvant tout, je suis très inquiet au sujet de la santé de ma fille.\nFirst of all, I'm very worried about my daughter's health.\tAvant tout, je suis très inquiète au sujet de la santé de ma fille.\nFortunately, the shark bite didn't hit any major arteries.\tHeureusement, la morsure de requin n'a pas touché d'artère majeure.\nFrance is running a welfare state it can no longer afford.\tLa France entretient un État providence dont elle n'a plus les moyens.\nFrom the hill, we could see all the buildings in the city.\tÀ partir de la colline, nous pouvions voir tous les immeubles de la ville.\nGulliver's Travels was written by a famous English writer.\tLes Voyages de Gulliver furent écrits par un célèbre écrivain anglais.\nHappiness isn't the destination, happiness is the journey.\tLe bonheur n'est pas la destination, le bonheur, c'est le voyage.\nHave you told everyone when and where the meeting will be?\tAs-tu dit à tout le monde quand et où la réunion se tiendra ?\nHave you told everyone when and where the meeting will be?\tAvez-vous dit à tout le monde quand et où la réunion se tiendra ?\nHe claimed that the enormous property was at his disposal.\tIl soutenait que cette immense propriété était à sa disposition.\nHe could always tell which direction the wind was blowing.\tIl pouvait toujours dire dans quelle direction soufflait le vent.\nHe disappeared into a dark corner at the back of the shop.\tIl disparut dans un coin sombre à l'arrière du magasin.\nHe failed in the attempt to sail across the Pacific Ocean.\tIl a échoué dans la tentative de traverser l'océan pacifique.\nHe fell into a deep depression and decided to off himself.\tIl tomba dans une profonde dépression et décida de se supprimer.\nHe had his license taken away because of reckless driving.\tIl a eu son permis retiré à cause d'une conduite imprudente.\nHe has two daughters, both of whom are married to doctors.\tIl a deux filles, toutes deux mariées à des docteurs.\nHe is French by birth, but he is now a citizen of the USA.\tIl est français de naissance mais est désormais citoyen des EUA.\nHe is a man of few words, but he always keeps his promise.\tC'est un homme qui parle peu, mais qui tient toujours ses promesses.\nHe knows other and easier ways of getting what he desires.\tIl connaît d'autres voies, et plus faciles, pour obtenir ce qu'il veut.\nHe makes it a point to remember each one of our birthdays.\tIl insiste pour se souvenir de chacun de nos anniversaires.\nHe may still be young, but he really is a reliable person.\tC'est vrai qu'il est jeune, mais c'est quelqu'un sur qui on peut vraiment compter.\nHe never forgot his ambition to become a great politician.\tIl n'oublia jamais son ambition de devenir un grand politicien.\nHe owes his success both to working hard and to good luck.\tIl doit son succès à la fois à un travail acharné et à la chance.\nHe picked up a butterfly between his thumb and forefinger.\tIl a pris un papillon entre le pouce et l'index.\nHe picked up a hat and put it on to see how it would look.\tIl prit un chapeau en main et le mit, pour voir de quoi il avait l'air avec.\nHe remembered that Room 418, a very small room, was empty.\tIl se souvint que la chambre 418, une très petite chambre, était vide.\nHe speaks English as fluently as any student in his class.\tIl parle anglais aussi couramment que n'importe quel étudiant de sa classe.\nHe stayed home from school because he wasn't feeling well.\tIl est resté chez lui plutôt que d'aller à l'école parce qu'il ne se sentait pas bien.\nHe stayed home from school because he wasn't feeling well.\tIl resta chez lui plutôt que d'aller à l'école parce qu'il ne se sentait pas bien.\nHe tried getting closer to her using every possible means.\tIl tenta de s'approcher d'elle en utilisant tous les moyens possibles.\nHe was driving at over 120 kph when the accident happened.\tIl conduisait à plus de 120 k/h lorsque l'accident survint.\nHe's racking his brains about how to deal with the matter.\tIl se creuse la tête pour trouver comment régler cette affaire.\nHis neighbor will care for the children while she is away.\tSon voisin s'occupera des enfants pendant son absence.\nHis unique perspective helped shed light on the situation.\tSon point de vue unique a contribué à éclairer la situation.\nHow long does it take to go from here to the Hilton Hotel?\tCombien de temps faut-il pour aller d'ici à l'Hôtel Hilton ?\nHow long has it been since you received a letter from him?\tCombien de temps s'est-il écoulé depuis que tu as reçu une lettre de lui ?\nHow long has it been since you received a letter from him?\tCombien de temps s'est-il écoulé depuis que vous avez reçu une lettre de lui ?\nHow many audiobooks do you have on your mobile MP3 player?\tCombien de livres enregistrés as-tu sur ton baladeur numérique ?\nHow many times a week do you go shopping at a supermarket?\tCombien de fois par semaine vas-tu faire les courses dans un supermarché ?\nHowever hard I try, I can't do it any better than she can.\tAussi dur que j'essaie, je ne peux pas le faire un tant soit peu mieux qu'elle.\nHowever hard you try, you can't finish it in a week or so.\tAussi dur que tu essaies, tu ne peux pas le finir en une semaine et quelque.\nHundreds of people were waiting outside the ticket office.\tDes centaines de personnes attendaient devant le point de vente de tickets.\nI am saving money in order to buy a new personal computer.\tJ'économise de l'argent afin de m'acheter un nouvel ordinateur personnel.\nI bought a scarf for my grandfather for his 88th birthday.\tJ'ai acheté une écharpe à mon grand père pour ses 88 ans.\nI brought a jacket because it was quite cool this morning.\tJe pris une veste parce qu'il faisait un peu frais ce matin.\nI couldn't understand the announcement that was just made.\tJe n'ai pas pu comprendre l'annonce qui vient d'être faite.\nI do not think he will ever get over the loss of his wife.\tJe ne pense pas qu'il se remettra jamais de la perte de sa femme.\nI don't care where we eat dinner. It's entirely up to you.\tOù nous mangeons m'est indifférent. Je m'en remets complètement à toi.\nI don't care where we eat dinner. It's entirely up to you.\tOù nous déjeunons m'est indifférent. Je m'en remets complètement à toi.\nI don't care where we eat dinner. It's entirely up to you.\tOù nous dînons m'est indifférent. Je m'en remets complètement à toi.\nI especially want to thank our record-breaking sales team.\tJe veux particulièrement remercier notre équipe de vente qui a battu des records.\nI feel like I should say something, but I don't know what.\tJ'ai l'impression que je devrais dire quelque chose mais j'ignore quoi.\nI feel like I should say something, but I don't know what.\tJ'ai l'impression que je devrais dire quelque chose mais je ne sais pas quoi.\nI fell down really hard and got a black bruise on my knee.\tJe suis méchamment tombé, et j'ai écopé d'un hématome noir au genou.\nI figure that there is no point in trying to persuade him.\tJ'imagine qu'il ne sert à rien d'essayer de le convaincre.\nI figured it wouldn't hurt to wait for a few more minutes.\tJe me suis dit que ça ne ferait pas de mal d'attendre quelques minutes de plus.\nI finally overcame my shyness and asked him out on a date.\tJe surmontai finalement ma timidité et lui demandai de sortir avec moi.\nI gathered together my things and put them in my suitcase.\tJ'ai rassemblé mes affaires et les ai placées dans ma valise.\nI give you enough money every month to pay all your bills.\tJe vous donne assez d'argent, chaque mois, pour payer toutes vos factures.\nI give you enough money every month to pay all your bills.\tJe te donne assez d'argent, chaque mois, pour payer toutes tes factures.\nI had difficulty convincing her of the dangers of smoking.\tJ'ai eu du mal à la convaincre des dangers de la cigarette.\nI had hoped that my mother would live until I got married.\tJ'avais espéré que ma mère vivrait jusqu'à ce que je sois marié.\nI had no idea there were so many people in the other room.\tJe n'avais pas idée qu'il y avait tant de monde dans l'autre pièce.\nI had no sooner left the house than it began to rain hard.\tDès que j'ai quitté la maison, il a commencé à pleuvoir des cordes.\nI had to abstain from smoking while I was in the hospital.\tJ'ai dû m'abstenir de fumer pendant que j'étais à l'hôpital.\nI had to get all the facts before I could make a decision.\tJ'ai dû disposer de tous les faits avant de pouvoir prendre une décision.\nI hate to bother you, but would you mind closing the door?\tIl me peine de vous déranger mais cela ne vous dérangerait-il pas de fermer la porte ?\nI have made up my mind to achieve my goals in three years.\tJe me suis décidé à atteindre mes objectifs dans trois ans.\nI have never let my schooling interfere with my education.\tJe n'ai jamais laissé ma scolarité interférer avec mes études.\nI have no choice but to take the red-eye back to New York.\tJe n'ai pas d'autre choix que de prendre le vol de nuit pour retourner à New-York.\nI have so many clothes I don't know what to wear tomorrow.\tJ'ai tellement de vêtements que je ne sais pas quoi mettre demain.\nI have to tell her that the phone rang while she was gone.\tJe dois lui dire que le téléphone a sonné tandis qu'elle était sortie.\nI have to tell her that the phone rang while she was gone.\tJe dois lui dire que le téléphone a sonné pendant qu'elle était sortie.\nI haven't eaten anything all day, but I don't feel hungry.\tJe n'ai rien mangé de toute la journée mais je n'ai pas faim.\nI knew things about Tom that even his parents didn't know.\tJe savais des choses à propos de Tom que même ses parents ne savaient pas.\nI know that I'm supposed to enjoy this class, but I don't.\tJe sais que je suis censé aimer ce cours, mais non.\nI know that I'm supposed to enjoy this class, but I don't.\tJe sais que je suis censée aimer ce cours, mais non.\nI know that I'm supposed to enjoy this class, but I don't.\tJe sais que je suis censé aimer ce cours, mais ce n'est pas le cas.\nI know that I'm supposed to enjoy this class, but I don't.\tJe sais que je suis censée aimer ce cours, mais ce n'est pas le cas.\nI know that it is highly unlikely that anyone can help me.\tJe sais qu'il est hautement improbable que quiconque puisse m'aider.\nI know you're not coming to my party, but I wish you were.\tJe sais que tu ne viens pas à ma fête mais j'aimerais que tu y viennes.\nI know you're not coming to my party, but I wish you were.\tJe sais que vous ne venez pas à ma fête mais j'aimerais que vous y veniez.\nI look forward to seeing you on my next trip to your city.\tJe suis impatient de vous voir lors de mon prochain voyage dans votre ville.\nI look forward to seeing you on my next trip to your city.\tJe suis impatiente de vous voir lors de mon prochain voyage dans votre ville.\nI looked up all the words I didn't know in the dictionary.\tJ'ai cherché, dans le dictionnaire, tous les mots que j'ignorais.\nI looked up his telephone number in a telephone directory.\tJ'ai cherché son numéro de téléphone dans un annuaire.\nI love you and I don't want anything bad to happen to you.\tJe t'aime et je ne veux pas que quoi que ce soit de mal t'arrive.\nI love you and I don't want anything bad to happen to you.\tJe vous aime et je ne veux pas que quoi que ce soit de mal vous arrive.\nI need to find a better job on the double to pay my bills.\tJ'ai besoin de trouver un boulot au pas de course pour payer mes factures.\nI needed to justify why I was earning such a large salary.\tIl a fallu que je justifie pourquoi je gagnais un salaire aussi élevé.\nI never thought it'd be this hard to build a picnic table.\tJe n'aurais jamais pensé que ce serait aussi difficile de construire une table de pique-nique.\nI often buy bread from the bakery next to the post office.\tJ'achète souvent du pain à la boulangerie à côté du bureau de poste.\nI often read the Bible at night just before I go to sleep.\tJe lis souvent la Bible le soir avant d'aller dormir.\nI remember being on a ship when I was only five years old.\tJe me souviens avoir été sur un bateau lorsque je n'avais que cinq ans.\nI searched for the meaning of this word in the dictionary.\tJ'ai cherché la signification de ce mot dans le dictionnaire.\nI suggest we eat just a little now, and then go out later.\tJe suggère que nous mangions juste un peu maintenant et puis que nous sortions plus tard.\nI think Beethoven is the greatest composer who ever lived.\tJe pense que Beethoven est le plus grand compositeur qui ait jamais vécu.\nI think I would have heard gunshots if there had been any.\tJe pense que j'aurais entendu des coups de feu s'il y en avait eu.\nI think I would have heard gunshots if there had been any.\tJe pense que j'aurais entendu des détonations s'il y en avait eu.\nI think he's making a big mistake by turning down the job.\tJe pense qu'il commet une grave erreur en refusant ce poste.\nI think it'd be better if Tom didn't tell Mary about this.\tJe pense que je me sentirais mieux si Tom n'avais rien dit à Mary.\nI think skateboards are usually cheaper than rollerblades.\tJe pense que les planches à roulettes sont habituellement moins chères que les patins en ligne.\nI think that girl cut her hair to give herself a new look.\tJe pense que cette fille a coupé ses cheveux pour se donner un nouveau look.\nI think the number of common-law marriages is on the rise.\tJe pense que le nombre de mariages civils est en augmentation.\nI think we need to find out who Tom plans to give that to.\tJe pense que nous devons découvrir à qui Tom compte donner cela.\nI think we need to find out why Tom wasn't here yesterday.\tJe pense que nous devons découvrir pourquoi Tom n'était pas là hier.\nI thought it best for him to say nothing about the matter.\tJ'ai pensé qu'il était mieux pour lui de ne rien dire à ce sujet.\nI trained my dog to bring me the newspaper in the morning.\tJ'ai dressé mon chien à m'apporter le journal le matin.\nI tried thinking about why it was that I didn't trust him.\tJ'ai essayé de réfléchir sur les raisons de mon manque de confiance envers lui.\nI used to drink a lot of cola, but now I drink only water.\tJ'avais l'habitude de boire beaucoup de coca, mais maintenant je ne bois que de l'eau.\nI used to think it didn't really matter what I fed my dog.\tJe pensais que ce que je donnais à manger à mon chien n'avait pas vraiment d'importance.\nI want to spend more time doing things that make me happy.\tJe veux passer davantage de temps à faire des choses qui me rendent vraiment heureux.\nI want to spend more time doing things that make me happy.\tJe veux passer davantage de temps à faire des choses qui me rendent vraiment heureuse.\nI wanted to make sure it wasn't us who caused the problem.\tJe voulais être certain que ce n'était pas nous qui avons causé le problème.\nI was able to finish the work earlier than I had expected.\tJe fus capable de finir le travail plus tôt que je l'avais prévu.\nI was doing an impersonation of my boss when he showed up.\tJ'étais en train d'imiter mon chef quand il est arrivé comme un cheveu sur la soupe.\nI wish Tom wouldn't keep telling everyone I'm his brother.\tJ'aimerais que Tom arrête de dire à tout le monde que je suis son frère.\nI wish you would make a list of the newly published books.\tJ'aimerais que vous fassiez une liste des nouveaux livres publiés.\nI would have written a longer letter if I'd had more time.\tJ'aurais écrit une lettre plus longue si j'avais eu plus de temps.\nI would very much appreciate receiving a copy of the book.\tJ'apprécierais beaucoup recevoir un exemplaire du livre.\nI'd be much obliged if you could give me a lift into town.\tJe vous serais fort obligé si vous pouviez me conduire en ville.\nI'd be much obliged if you could give me a lift into town.\tJe te serais fort obligée si tu pouvais me conduire en ville.\nI'd better do something before the problem gets any worse.\tJe ferais mieux de faire quelque chose avant que le problème n'empire.\nI'd gladly pay more for something if it's of high quality.\tJe paierais volontiers davantage pour quelque chose si c'est de qualité élevée.\nI'd like this meeting to last no more than twenty minutes.\tJ'aimerais que cette rencontre ne dure pas plus de vingt minutes.\nI'd like to apologize for the way I handled the situation.\tJ'aimerais présenter mes excuses pour la manière dont j'ai géré la situation.\nI'd like to spend less time at work and more time at home.\tJ'aimerais passer moins de temps au travail et davantage de temps à la maison.\nI'll do whatever I can to encourage Tom to stay in school.\tJe ferai tout ce que je peux pour encourager Tom à ne pas quitter l'école.\nI'm all thumbs when it comes to origami, or paper folding.\tJe suis très maladroit pour les origamis ou le pliage de papier.\nI'm getting kind of hungry. Let's go get something to eat.\tJe commence à avoir faim. Allons prendre quelque chose à manger !\nI'm glad Tom was able to see you while you were in Boston.\tJe suis content que Tom ait pu te voir pendant que tu étais à Boston.\nI'm glad Tom was able to see you while you were in Boston.\tJe suis contente que Tom ait pu te voir pendant que tu étais à Boston.\nI'm really impressed with the way Tom plays the saxophone.\tJe suis vraiment impressionné par la façon dont Tom joue du saxophone.\nI'm really impressed with the way Tom plays the saxophone.\tJe suis vraiment impressionnée par la façon dont Tom joue du saxophone.\nI'm really sorry, but I seem to have misplaced your scarf.\tJe suis réellement désolé, mais je pense avoir égaré votre écharpe.\nI'm sorry I wasn't able to see you when you came by today.\tJe suis désolé de n'avoir pu vous voir aujourd'hui quand vous êtes venus.\nI've already made amends to most of the people on my list.\tJ'ai déjà demandé pardon à la plupart des gens sur ma liste.\nI've never been to New York, and my sister hasn't, either.\tJe ne suis jamais allé à New York, et ma sœur non plus.\nI've never witnessed so much debauchery in my entire life.\tJe n'ai jamais assisté de toute ma vie à pareille débauche.\nIf I had the money, I would immediately buy this computer.\tSi j'avais de l'argent, j’aurais acheté immédiatement cet ordinateur.\nIf I'd only taken the time to read the instruction manual!\tSi seulement j'avais pris le temps de lire le manuel d'instructions !\nIf a porter carries your luggage, don't forget to tip him.\tSi un porteur porte tes bagages, n'oublie pas de lui donner un pourboire.\nIf a porter carries your luggage, don't forget to tip him.\tSi un porteur porte vos bagages, n'oubliez pas de lui donner un pourboire.\nIf he donates a kidney, he can survive with the other one.\tS'il donne un rein, il peut survivre avec l'autre.\nIf you get bit by a rabid dog, you'll need a tetanus shot.\tSi vous êtes mordu par un chien enragé, vous aurez besoin d'une injection anti-tétanique.\nIf you run into trouble, I'll help, and so will my father.\tSi tu fais face à des ennuis, je t'aiderai, et mon père le fera également.\nIf you run into trouble, I'll help, and so will my father.\tSi vous faites face à des ennuis, je vous aiderai, et mon père le fera également.\nIf you're going to apologize, you should do it right away.\tSi tu vas présenter tes excuses, tu devrais le faire immédiatement.\nIf you're going to apologize, you should do it right away.\tSi vous allez présenter vos excuses, vous devriez le faire sans délai.\nIn accepting the money, he lost the respect of the people.\tEn acceptant l'argent, il perdit le respect des gens.\nIn all likelihood, the president will serve a second term.\tEn toute probabilité, le président exercera un second mandat.\nIn case I can’t come, I’ll give you a call beforehand.\tAu cas où je ne peux pas venir, je vais te téléphoner en avance.\nIn the speech, he referred to the strength of the company.\tDans son discours il se refera à la force de l'entreprise.\nInstead of taking notes, I spent the whole class doodling.\tAu lieu de prendre des notes, j'ai passé tout le cours à griffonner.\nInstead of taking notes, I spent the whole class doodling.\tAu lieu de prendre des notes, j'ai passé tout le cours à gribouiller.\nIs there any place around here where I can rent a bicycle?\tY a-t-il un endroit près d'ici où je peux louer un vélo ?\nIt almost scared me not to see you online for a whole day.\tÇa m'a presque fait peur de ne pas te voir connectée pendant toute une journée.\nIt falls to you to put the finishing touches to this work.\tIl vous incombe de parachever ce travail.\nIt goes without saying that honesty is the key to success.\tIl va de soi que la clé du succès est l'honnêteté.\nIt goes without saying that smoking is bad for the health.\tIl va sans dire que fumer est mauvais pour la santé.\nIt goes without saying that smoking is bad for the health.\tIl va sans dire que fumer est mauvais pour votre santé.\nIt is an act of cruelty to lock a small child in his room.\tC'est un acte de cruauté que d'enfermer un petit enfant dans sa chambre.\nIt is difficult to translate a poem into another language.\tIl est difficile de traduire un poème dans une autre langue.\nIt is up to you to decide whether we will go there or not.\tC'est à toi de décider si nous allons là-bas ou non.\nIt took me a little more time than usually to fall asleep.\tJ'ai mis un peu plus de temps que d'habitude à m'endormir.\nIt was because he was sick that he decided to return home.\tC'est parce qu'il était malade qu'il a décidé de rentrer chez lui.\nIt was difficult for him to hide his pride in his success.\tIl lui était difficile de cacher la fierté qu'il avait de son succès.\nIt was in the 1920s that a big earthquake destroyed Tokyo.\tC'est dans les années 20 qu'un tremblement de terre détruisit Tokyo.\nIt was the increase in population that caused the poverty.\tC'était l'augmentation de la population qui causait la pauvreté.\nIt's easier to ask for forgiveness than to get permission.\tIl est plus facile de demander pardon que d'obtenir une permission.\nIt's no good making the same old products year after year.\tCe n'est pas bon de fabriquer les mêmes vieux produits, année après année.\nIt's not such a big problem. You're worrying way too much.\tCe n'est pas un si grave problème. Tu t'en fais beaucoup trop.\nIt's not such a big problem. You're worrying way too much.\tCe n'est pas un problème si grave. Vous vous en faites beaucoup trop.\nIt's taking us way too much time to get this job finished.\tÇa nous prend bien trop de temps de terminer ce boulot.\nIt's very kind of you to invite me to your birthday party.\tC'est très gentil à vous de m'inviter à votre fête d'anniversaire.\nItalo Calvino returned to Italy when he was still a child.\tItalo Calvino revint en Italie alors qu'il n'était encore qu'un enfant.\nJapan declared war on the United States in December, 1941.\tLe Japon déclara la guerre aux États-Unis en décembre 1941.\nJapan is one of the greatest economic powers in the world.\tLe Japon est l'une des plus grandes puissances économiques du monde.\nJust because you can do something doesn't mean you should.\tCe n'est pas parce que tu peux faire quelque chose que tu devrais le faire.\nLast night an explosion took place at a fireworks factory.\tIl y a eu la nuit dernière une explosion dans une usine de feux d'artifice.\nLast week's meeting was the longest we have had this year.\tLe rendez-vous de la semaine passée était le plus long de l'année.\nLeatherback turtles can weigh more than a thousand pounds.\tLes tortues luth peuvent peser plus de cinq cents kilos.\nLet me congratulate you on your victory in the tournament.\tLaissez-moi vous féliciter pour votre victoire dans ce tournoi.\nLet's face it, it's impossible. We're never gonna make it.\tSoyons réalistes, c'est impossible. On va jamais y arriver.\nLong, long ago, there lived an old king on a small island.\tIl y a très, très longtemps vivait un vieux roi sur une petite île.\nMany companies monitor their employees' internet activity.\tDe nombreuses entreprises supervisent l'activité Internet de leurs employés.\nMany criminals in the United States are addicted to drugs.\tDe nombreux criminels, aux États-Unis, sont dépendants de drogues.\nMany improvements have been made since this century began.\tBeaucoup de progrès a été fait depuis le début de ce siècle.\nMary has nobody to talk with, but she doesn't feel lonely.\tMary n'a personne à qui parler, mais elle ne se sent pas seule.\nMaybe we can find someplace to park further up the street.\tPeut-être pouvons-nous trouver quelque part où nous garer, plus haut dans la rue.\nMaybe we can find someplace to park further up the street.\tPeut-être pouvons-nous trouver un endroit où nous garer, plus haut dans la rue.\nMy German vocabulary list is up to two thousand words now.\tMa liste de vocabulaire allemand comporte désormais deux mille mots.\nMy driving instructor says that I need to be more patient.\tMon moniteur d’auto-école dit qu’il faut que je sois plus patient.\nMy father brags about never having had a traffic accident.\tMon père se vante de n'avoir jamais eu d'accident de la circulation.\nMy father has lived in Nagoya for more than fifteen years.\tMon père vit à Nagoya depuis plus de quinze ans.\nMy grandfather died in the same room in which he was born.\tMon grand-père mourut dans la même pièce que celle où il était né.\nMy grandmother on my father's side has turned one hundred.\tMa grand-mère paternelle a eu cent ans.\nMy little brother ran through the living room stark naked.\tMon petit frère courut complètement nu à travers le salon.\nMy neighbor's son made fun of my daughter today at school.\tLe fils de mon voisin s'est moqué de ma fille aujourd'hui à l'école.\nMy neighbor's son made fun of my daughter today at school.\tLe fils de ma voisine s'est moqué de ma fille aujourd'hui à l'école.\nNear the equator, the weather is hot and humid year-round.\tÀ proximité de l'équateur, le climat est chaud et humide tout au long de l'année.\nNever choose a new vocation just because you are restless.\tNe choisissez jamais une nouvelle vocation simplement parce que vous ne tenez pas en place.\nNew facts about ancient China have recently come to light.\tDe nouveaux éléments au sujet de la Chine ancienne ont récemment vu le jour.\nNinety-five percent of orphans are older than 5 years old.\tQuatre-vingt quinze pour cent des orphelins ont plus de cinq ans.\nNo one knows when such a custom first came into existence.\tPersonne ne sait quand une telle coutume est apparue.\nNobody will say it so bluntly, but that is the gist of it.\tPersonne ne le dira aussi brutalement mais c'en est l'essentiel.\nNothing has been heard from him since he left for America.\tNous n'avons plus eu de nouvelles de cette personne depuis qu'elle est partie en Amérique.\nNothing in the world is stronger than the will to survive.\tRien au monde n'est plus fort que la volonté de survivre.\nNovels aren't being read as much as they were in the past.\tLes romans ne sont plus aussi lus que par le passé.\nNow that you are eighteen, you can get a driver's license.\tMaintenant que vous êtes majeur, vous pouvez obtenir votre permis de conduire.\nNow that you are eighteen, you can get a driver's license.\tMaintenant que tu es majeur, tu peux obtenir ton permis de conduire.\nNow that you are eighteen, you can get a driver's license.\tComme tu as dix-huit ans, tu peux obtenir ton permis de conduire.\nOnce upon a time, there lived a poor man and a rich woman.\tIl était une fois un pauvre vieillard et une femme riche.\nOnly 16 percent of the teachers of this school are female.\tSeulement seize pour cent des professeurs de cette école sont des femmes.\nOur teacher tried to use a new method of teaching English.\tNotre professeur a essayé d'utiliser une nouvelle méthode d'enseignement de l'anglais.\nPatting me on the shoulder, he thanked me for helping him.\tEn me tapotant sur l'épaule, il me remercia de l'avoir aidé.\nPeople are sometimes tempted to eat more than they should.\tLes gens ont parfois la tentation de manger plus qu'ils ne devraient.\nPeople say that Japan is the richest country in the world.\tOn dit que le Japon est le pays le plus riche du monde.\nPlease put out your cigarettes before entering the museum.\tVeuillez éteindre vos cigarettes avant de pénétrer dans le musée.\nPlease remember to turn off the light before going to bed.\tJe te prie de te rappeler d'éteindre la lumière avant d'aller au lit.\nPlease remember to turn off the light before going to bed.\tJe vous prie de vous rappeler d'éteindre la lumière avant d'aller au lit.\nPlease replace the empty ink jet cartridge in the printer.\tVeuillez remplacer la cartouche d'encre vide de l'imprimante.\nPlease see to it that the child does not go near the pond.\tS'il vous plaît veillez à ce que cet enfant n'aille pas trop près de la mare.\nPrisons are euphemistically called rehabilitation centers.\tLes prisons sont, par euphémisme, dénommées centres de réhabilitation.\nSea turtles always return to the beach where they hatched.\tLes tortues de mer retournent toujours à la plage sur laquelle elles sont nées.\nSee to it that all the doors are locked before you go out.\tVérifiez bien que toutes les portes sont fermées à clef avant que vous ne partiez.\nSeen from an airplane, the island looks like a big spider.\tVue d'avion, l'île ressemble à une grosse araignée.\nSeveral students were absent from school because of colds.\tPlusieurs élèves se sont absentés de l'école pour cause de rhume.\nShe cooks for him every day, but he doesn't appreciate it.\tElle cuisine pour lui quotidiennement, mais il ne l'apprécie pas.\nShe cooks for him every day, but he doesn't appreciate it.\tElle cuisine pour lui chaque jour, mais il ne l'apprécie pas.\nShe showed up at the party looking like a million dollars.\tElle fit son apparition à la soirée en ayant l'air exquise.\nShe talks about Paris as if she had been there many times.\tElle parle de Paris comme si elle y était allée plusieurs fois.\nShe took over the business after the death of her husband.\tElle reprit l'affaire à la mort de son mari.\nShe was the last person I expected to see in such a place.\tC'était la dernière personne que je m'attendais à voir dans un tel endroit.\nShe's made up her mind and refuses to be talked out of it.\tElle a pris sa décision et refuse d'en être dissuadée.\nSix percent home loans represent the industry average now.\tDes taux d'emprunts immobiliers à six pour cent représentent actuellement la moyenne du secteur.\nSome of his students admired him, and others despised him.\tCertains de ses étudiants l'admiraient, et d'autres le méprisaient.\nSome people like red wine and some people like white wine.\tCertains aiment le vin rouge, d'autres aiment le vin blanc.\nSome teenagers smashed our pumpkins just before Halloween.\tDes adolescents ont écrasé nos citrouilles juste avant Halloween.\nSomeone has ripped out the first three pages of this book.\tQuelqu'un a arraché les trois premières pages de ce livre.\nStep out of the car and place your hands behind your back.\tDescendez du véhicule et mettez les mains dans le dos.\nThat species of bird is said to be in danger of dying out.\tOn dit que cette espèce d'oiseau est menacée d'extinction.\nThe Eiffel Tower is in the same city as the Louvre Museum.\tLa Tour Eiffel est dans la même ville que le Musée du Louvre.\nThe captain was the last person to leave the sinking ship.\tLe capitaine fut la dernière personne à quitter le navire qui sombrait.\nThe chairman suggested that we should discuss the problem.\tLe président suggéra que nous devrions discuter du problème.\nThe company's insolvency forced it to file for bankruptcy.\tL'insolvabilité de la société l'a forcée à déposer son bilan.\nThe contract is in the bag, so let's go out and celebrate.\tLe contrat est dans la poche, donc sortons fêter ça.\nThe couple spent a lot of money on furnishing their house.\tLe couple dépensa beaucoup d'argent pour meubler sa maison.\nThe doctor told me to inhale and exhale slowly and deeply.\tLe médecin m'invita à inhaler et à exhaler lentement et profondément.\nThe doctor wouldn't allow me to take part in the marathon.\tLe médecin ne me permettrait pas de prendre part au marathon.\nThe family assimilated quickly into their new environment.\tLa famille s'adapta rapidement à son nouvel environnement.\nThe faster we rub our hands together, the warmer they get.\tPlus on se frotte les mains rapidement, plus elles deviennent chaudes.\nThe frame of the house should be finished in a day or two.\tLa structure de la maison devrait être terminée d'ici un ou deux jours.\nThe geyser sends up a column of hot water every two hours.\tLe geyser propulse une colonne d'eau chaude toutes les deux heures.\nThe guards found a hacksaw blade in the prisoner's pocket.\tLes gardiens trouvèrent une lame de scie à métaux dans la poche du prisonnier.\nThe guards found a hacksaw blade in the prisoner's pocket.\tLes gardiennes trouvèrent une lame de scie à métaux dans la poche de la prisonnière.\nThe increase in juvenile delinquency is a serious problem.\tL'augmentation de la délinquance juvénile est un problème grave.\nThe intersection where the accident happened is near here.\tLe croisement où l'accident s'est produit se trouve près d'ici.\nThe intersection where the accident happened is near here.\tLe croisement où l'accident est survenu se trouve près d'ici.\nThe intersection where the accident happened is near here.\tLe croisement où l'accident a eu lieu se trouve près d'ici.\nThe judge handed down a sentence of five years hard labor.\tLe juge prononça une peine de cinq ans de travaux forcés.\nThe man injured in the accident was taken to the hospital.\tL'homme blessé dans l'accident a été emmené à l'hôpital.\nThe man injured in the accident was taken to the hospital.\tL'homme blessé dans l'accident fut emmené à l'hôpital.\nThe math homework proved to be easier than I had expected.\tLe devoir de maths se révéla plus facile que je ne m'y étais attendu.\nThe moral of the story is that you can't trust the system.\tLa morale de l'histoire est qu'on ne peut pas faire confiance au système.\nThe more we learn, the more we realize how little we know.\tPlus nous apprenons, plus nous prenons conscience du peu que nous savons.\nThe more we learn, the more we realize how little we know.\tPlus nous étudions, plus nous prenons conscience du peu que nous savons.\nThe new highway shaves almost an hour off my commute time.\tLa nouvelle autoroute réduit de presqu'une heure mon temps de trajet.\nThe number of students in the class is limited to fifteen.\tLe nombre d'élèves dans cette classe est limité à 15.\nThe oldest movie theater in town is being pulled down now.\tLe plus vieux cinéma de la ville est en train de se faire démolir en ce moment.\nThe parking lot in the back of the school is almost empty.\tLe parking à l'arrière de l'école est presque vide.\nThe police persuaded the criminal to surrender his weapon.\tLa police a persuadé le criminel de remettre son arme.\nThe results for the English exam this time were very good.\tLes résultats de l'examen d'anglais furent très bon cette fois.\nThe school rules require students to wear school uniforms.\tLe règlement de l'école prévoit le port d'un uniforme par les élèves.\nThe school rules require students to wear school uniforms.\tLes règles de l'école exigent que les élèves portent des uniformes scolaires.\nThe traffic accident prevented me from catching the train.\tL'accident de la circulation m'a empêché d'attraper le train.\nThe train will probably arrive at the station before noon.\tLe train arrivera en gare probablement avant midi.\nThe wind was so strong, we were nearly blown off the road.\tLe vent était tellement fort que nous avons presque été poussés en dehors de la route.\nThere are many countries in Europe that I'd like to visit.\tIl y a beaucoup de pays en Europe que j'aimerais visiter.\nThere is no way of reaching the island other than by boat.\tIl n'y a pas d'autre moyen d'atteindre l'île qu'en bateau.\nThere is no way of reaching the island other than by boat.\tIl n'y a aucun moyen d'atteindre l'île autre que le bateau.\nThere is no way of reaching the island other than by boat.\tIl n'y a pas de moyen d'atteindre l'île autrement qu'en bateau.\nThere is only space for thirty students in this classroom.\tCette classe ne peut contenir que trente élèves.\nThere's a man with a gun in his hand standing at the door.\tIl y a un homme avec une arme à la main qui se tient à la porte.\nThey cut a hole in the ice and swam in the freezing water.\tIls découpèrent un trou dans la glace et nagèrent dans l'eau gelée.\nThey renewed their vows on their 25th wedding anniversary.\tIls renouvelèrent leurs vœux à l'occasion de leur vingt-cinquième anniversaire de mariage.\nThey say that a family that eats together, stays together.\tOn dit qu'une famille qui mange ensemble, reste ensemble.\nThey seemed to be discussing a matter of great importance.\tIls semblaient discuter une affaire de grande importance.\nThis new Macintosh computer puts the competition to shame.\tCe nouvel ordinateur Macintosh fait honte à la concurrence.\nThis software package has a suggested retail price of $99.\tCet ensemble de logiciels a un prix au détail conseillé de quatre-vingt-dix-neuf dollars.\nThis vending machine was destroyed by hoodlums last night.\tCe distributeur automatique a été cassé par une bande de voyous la nuit dernière.\nTo the best of my knowledge, the lake is the deepest here.\tPour autant que je sache, le lac est le plus profond à cet endroit.\nToday's housewives do nothing but complain of high prices.\tLes femmes au foyer d'aujourd'hui ne font rien d'autre que se plaindre des prix élevés.\nTom and Mary realized that they weren't really compatible.\tTom et Marie se sont rendus compte qu'ils n'étaient pas vraiment compatibles.\nTom asked a few questions that Mary didn't want to answer.\tTom posa quelques questions auxquelles Mary ne voulait pas répondre.\nTom called to say that he couldn't attend today's meeting.\tTom a appelé pour dire qu'il ne pourrait pas assister à la réunion d'aujourd'hui.\nTom caught Mary stealing his money from the cash register.\tTom prit Mary en train de voler son argent dans la caisse.\nTom couldn't find the words to express how he was feeling.\tTom n'arrivait pas à trouver les mots pour exprimer ce qu'il ressentait.\nTom doesn't really like Mary, even though he says he does.\tTom n'aime pas vraiment Mary, même s'il dit le contraire.\nTom doesn't understand because he wasn't paying attention.\tTom ne comprend pas, parce qu'il ne faisait pas attention.\nTom is not a lazy boy. As a matter of fact, he works hard.\tTom n'est pas paresseux. En fait, il travaille dur.\nTom isn't the type of person who learns from his mistakes.\tTom n'est pas le genre de personne qui apprend de ses erreurs.\nTom lived in that small house for a little over ten years.\tTom a vécu dans cette petite maison pendant un peu plus de dix ans.\nTom managed a small bar near Boston for quite a long time.\tTom a géré un petit bar près de Boston pendant un certain temps.\nTom practices the piano at least thirty minutes every day.\tTom pratique le piano au moins trente minutes par jour.\nTom put new pedals on the bicycle that he rides to school.\tTom a mis de nouvelles pédales sur le vélo avec lequel il va à l'école.\nTom spent most of the morning straightening up his office.\tTom a passé une grosse partie de la matinée à ranger son bureau.\nTom thinks it would be better not to visit Mary right now.\tTom pense qu'il vaudrait mieux ne pas rendre visite à Mary pour le moment.\nTom wanted one, but he had no idea where he could get one.\tTom en voulait un, mais il n'avait aucune idée d'où en trouver.\nTom wanted one, but he had no idea where he could get one.\tTom en voulait une, mais il n'avait aucune idée d'où en trouver.\nTom was able to do what the rest of us weren't able to do.\tTom fut capable de faire ce que nous autres étions incapables de faire.\nTom was able to do what the rest of us weren't able to do.\tTom a pu faire ce que le reste d'entre nous n'avez pas pu faire.\nTom was stuck in a traffic jam for what seemed like hours.\tTom était coincé dans un embouteillage pendant ce qui semblait être des heures.\nTom wasn't able to find a babysitter on such short notice.\tTom ne pouvait trouver une babysitter à la dernière minute.\nTom's reaction was the opposite of what Mary had expected.\tLa réaction de Tom fut l'opposé de ce à quoi Marie s'attendait.\nUkrainian girls are the most beautiful girls in the world.\tLes filles ukrainiennes sont les plus belles filles du monde.\nWas this wall built to keep people out or to keep them in?\tCe mur a-t-il été construit pour laisser les gens dehors ou les garder à l'intérieur ?\nWe came to a place where the road branched into two lanes.\tNous arrivâmes en un lieu où la route bifurquait.\nWe discussed the matter from an educational point of view.\tNous avons discuté la question d'un point de vue éducatif.\nWe enjoyed watching the fireworks on a bridge last summer.\tNous avons apprécié regarder les feux d'artifice sur un pont l'été dernier.\nWe enjoyed watching the fireworks on a bridge last summer.\tNous avons apprécié regarder le feu d'artifice sur un pont l'été dernier.\nWe have to do something to stop this from happening again.\tNous devons faire quelque chose pour empêcher ceci de se reproduire.\nWe have to learn all the songs before the end of the week.\tNous devons apprendre toutes les chansons avant la fin de la semaine.\nWe learned about the importance of eating a healthy lunch.\tNous avons appris l'importance de déjeuner sainement.\nWe must hurry if we want to arrive at the station on time.\tNous devons nous dépêcher si nous voulons arriver à la station à temps.\nWe spend piles of money on the things we don't really use.\tOn a dépensé un paquet d'argent sur des choses dont on ne se sert pas vraiment.\nWe took refuge in a cave and waited for the storm to pass.\tNous nous réfugiâmes dans une grotte et attendîmes que la tempête passe.\nWe're going to invite Tom and Mary to our Halloween party.\tNous allons inviter Tom et Mary à notre fête de Halloween.\nWhat I told you about him also holds good for his brother.\tCe que je t'ai dit à son sujet est aussi valable pour son frère.\nWhat I told you about him also holds true for his brother.\tCe que je t'ai dit à son sujet est aussi vrai pour son frère.\nWhat a nice car you have! You must have paid a lot for it.\tTa voiture est magnifique ! Tu as dû payer cher pour elle.\nWhat are some foods you can eat to lower your cholesterol?\tQuels aliments pouvez-vous manger pour faire diminuer votre cholestérol ?\nWhat are some foods you usually eat with a knife and fork?\tQuels sont les aliments que tu manges habituellement avec un couteau et une fourchette ?\nWhat are some foods you usually eat with a knife and fork?\tQuels sont les aliments que vous mangez habituellement avec un couteau et une fourchette ?\nWhat are some foods you usually eat with a knife and fork?\tQuels sont les aliments qu'on mange habituellement avec un couteau et une fourchette ?\nWhat do you spend most of your time on the computer doing?\tÀ quoi passes-tu la plupart de ton temps sur ton ordinateur ?\nWhat do you spend most of your time on the computer doing?\tÀ quoi passez-vous la plupart de votre temps sur votre ordinateur ?\nWhen spring comes, they dig up the fields and plant seeds.\tÀ l'arrivée du printemps, ils labourent les champs et les sèment.\nWhen spring comes, they dig up the fields and plant seeds.\tÀ l'arrivée du printemps, ils labourent les champs et les ensemencent.\nWhen we saw what was happening there, we decided to leave.\tComme nous vîmes ce qui se passait là, nous décidâmes de nous en aller.\nWith the weather getting worse, the departure was put off.\tLe temps se dégradant, le départ fut reporté.\nWould you have asked me this question if I had been a man?\tM'auriez-vous posé cette question si j'avais été un homme ?\nYou are the last person I would have expected to see here.\tTu es la dernière personne que je m'attendais à voir ici.\nYou can expect to receive a little something from us soon.\tTu peux t'attendre à recevoir un petit quelque chose de nous bientôt.\nYou can tell a lot about someone by the company they keep.\tOn peut dire beaucoup d'une personne en fonction de la société qu'elle entretient.\nYou don't fall in love with somebody because he's perfect.\tOn ne tombe pas amoureux de quelqu'un parce qu'il est parfait.\nYou got the date wrong when you were filling in the check.\tTu t’es trompé sur la date quand tu as rempli le chèque.\nYou got the date wrong when you were filling in the check.\tTu t’es trompée sur la date quand tu as rempli le chèque.\nYou had better take an umbrella with you in case it rains.\tTu devrais prendre un parapluie au cas où il pleuvrait.\nYou may call him a fool, but you cannot call him a coward.\tTu peux le traiter d'imbécile mais pas de poule mouillée.\nYou must concentrate your attention on what you are doing.\tIl faut concentrer son attention sur ce que l'on fait.\nYou owe it to those who are dependent upon you to do this.\tTu dois à ceux qui dépendent de toi de le faire.\nYou should have locked, or at least closed, all the doors.\tTu aurais dû verrouiller toutes les portes, ou tout du moins les fermer.\nYou shouldn't depend too much on other people to help you.\tTu ne devrais pas trop dépendre d'autres gens pour t'aider.\nYou shouldn't depend too much on other people to help you.\tVous ne devriez pas trop dépendre d'autres gens pour vous aider.\nYou speak so softly that I cannot quite hear what you say.\tTu parles tellement doucement que je n'arrive pas très bien à entendre ce que tu dis.\nYou think you're awake, but you may, in fact, be dreaming.\tTu crois être éveillé mais tu pourrais en fait être en plein rêve.\nYou will exist but you will never know what it is to live.\tTu existeras mais tu ne sauras jamais ce que c'est que de vivre.\nYou'd be amazed how much beer Tom drinks when he goes out.\tTu serais impressionné de voir combien de bières Tom boit lorsqu'il sort.\nYou'll be able to take many pictures with your new camera.\tTu pourras prendre beaucoup de photos avec ton nouvel appareil.\nYou're the most beautiful woman I've ever held in my arms.\tTu es la plus belle femme que j'ai jamais tenue dans mes bras.\nYou're the most beautiful woman I've ever held in my arms.\tVous êtes la plus belle femme que j'ai jamais tenue dans mes bras.\n\"He's been sick.\" \"Oh really, I hope it's nothing serious.\"\t« Il a été malade. » « Ah vraiment ? Rien de grave, j'espère ! »\n\"I'm not interrupting anything, am I?\" \"No, of course not.\"\t« Je n'interromps pas quelque chose, si ? » « Non, bien sûr que non ! »\n\"What kind of beer do you want?\" \"What do you have on tap?\"\t« Quelle sorte de bière voulez-vous ? » « Qu'avez-vous au fût ? »\nA common way to finance a budget deficit is to issue bonds.\tUne manière répandue de financer un déficit est de proposer des obligations.\nA lot of people are waiting to see what is going to happen.\tBeaucoup de gens attendent de voir ce qui va arriver.\nA lot of people are waiting to see what is going to happen.\tBeaucoup de gens attendent de voir ce qui va se passer.\nA lot of people are waiting to see what is going to happen.\tBeaucoup de gens attendent de voir ce qui va survenir.\nA passenger fainted, but the stewardess brought him around.\tUn passager s'est évanoui, mais l'hôtesse l'a ranimé.\nA passenger fainted, but the stewardess brought him around.\tUne passagère s'est évanouie, mais l'hôtesse l'a ranimée.\nA priest was called in to give last rites to the dying man.\tUn prêtre fut convoqué pour donner les derniers sacrements au mourant.\nA slip of the tongue often brings about unexpected results.\tLes lapsus donnent souvent des résultats inattendus.\nA strong wind severed the electric wires in several places.\tUn vent fort a rompu les câbles électriques dans plusieurs endroits.\nA well-made cup of coffee should require no cream or sugar.\tUne tasse de café bien fait ne devrait pas nécessiter de lait ou de sucre.\nAccording to my calculation, she should be in India by now.\tD'après mes calculs, elle devrait être en Inde à l'heure qu'il est.\nAdobe and Apple both have top-notch video editing programs.\tAdobe et Apple ont tous deux des logiciels d'édition vidéo de toute première catégorie.\nAfter hearing the tragic news, he went outside to be alone.\tAprès qu'il eut entendu la tragique nouvelle, il sortit dehors pour être seul.\nAll of a sudden, the enemy bombs came down on us like rain.\tTout à coup les bombes ennemies se mirent à pleuvoir sur nous.\nAll these books will be worth their weight in gold someday.\tUn jour, tous ces livres vaudront leur pesant d'or.\nAlthough they are twins, they have few interests in common.\tBien qu'ils soient jumeaux, ils ont peu d'intérêts en commun.\nAs always, he got up early in the morning and went jogging.\tComme toujours, il se leva tôt le matin et alla courir.\nAs is usual with him, he arrived a quarter of an hour late.\tComme à son habitude, il arriva un quart d'heure en retard.\nAs is usual with him, he arrived a quarter of an hour late.\tComme à son habitude, il est arrivé un quart d'heure en retard.\nBecause of you, I'm having problems with my blood pressure.\tA cause de toi, j'ai des problèmes de pression sanguine.\nBritish English differs from American English in many ways.\tL'anglais britannique se différencie en plusieurs points de l'anglais américain.\nBritish English differs from American English in many ways.\tL'anglais britannique diffère de l'anglais américain sur beaucoup de points.\nBritish English differs from American English in many ways.\tL'anglais britannique se distingue sur bien des points de l'anglais américain.\nCan you imagine what life would be like without television?\tPeux-tu te figurer comment serait la vie sans télévision ?\nCan you imagine what life would be like without television?\tPeux-tu t'imaginer comment serait la vie sans télévision ?\nCan you imagine what life would be like without television?\tPouvez-vous vous imaginer comment serait la vie sans télévision ?\nCan you imagine what life would be like without television?\tPouvez-vous vous figurer comment serait la vie sans télévision ?\nCan you remember the first time you ate at this restaurant?\tArrives-tu à te rappeler la première fois que tu as mangé dans ce restaurant ?\nCan you remember the first time you ate at this restaurant?\tArrivez-vous à vous rappeler la première fois que vous avez mangé dans ce restaurant ?\nChildren are often very good at learning foreign languages.\tLes enfants sont souvent très doués pour apprendre des langues étrangères.\nCompare the two carefully, and you will see the difference.\tComparez les deux attentivement, et vous verrez la différence.\nCompare the two carefully, and you will see the difference.\tCompare soigneusement les deux et tu verras la différence.\nCould you please talk a bit louder? I can't hear very well.\tPeux-tu parler un peu plus fort, je te prie ? Je n'entends pas si bien.\nCountry life is very peaceful in comparison with city life.\tLa vie campagnarde est très paisible en comparaison de la vie citadine.\nDemand for imported cars is increasing due to lower prices.\tLa demande pour les voitures importées augmente du fait de prix plus faibles.\nDo any of you have anything to say in connection with this?\tY a-t-il quelqu'un parmi vous qui a quelque chose à dire à propos de cela ?\nDo you think our climate has an influence on our character?\tPensez-vous que notre climat a une influence sur notre caractère ?\nDon't eat the fruit in the bowl on the table. It's plastic.\tNe mange pas les fruits qui sont dans le bol sur la table, ils sont en plastique.\nDon't eat the fruit in the bowl on the table. It's plastic.\tNe mangez pas les fruits qui sont dans le bol sur la table, ils sont en plastique.\nEvery author suffers from writer's block from time to time.\tChaque auteur souffre du syndrome de la page blanche de temps en temps.\nExcuse me. Can you direct me to the nearest subway station?\tVeuillez m'excuser. Pourriez-vous m'indiquer la station de métro la plus proche ?\nExcuse me. Can you direct me to the nearest subway station?\tExcuse-moi. Pourrais-tu m'indiquer la station de métro la plus proche ?\nExcuse me. Can you direct me to the nearest subway station?\tExcusez-moi. Pourriez-vous m'indiquer la station de métro la plus proche ?\nHad I known your telephone number, I would have called you.\tSi j'avais su votre numéro de téléphone, je vous aurai appelé.\nHave you finished writing that song you've been working on?\tAvez-vous fini d'écrire cette chanson sur laquelle vous travailliez ?\nHave you finished writing that song you've been working on?\tAs-tu fini d'écrire cette chanson sur laquelle tu travaillais ?\nHaving a small flashlight in your pocket may come in handy.\tAvoir une petite lampe de poche dans la poche peut être utile.\nHaving a small flashlight in your pocket may come in handy.\tDisposer d'une petite lampe de poche peut être utile.\nHe amassed a fortune in stock trading during the last boom.\tIl a amassé une fortune en bourse lors du dernier boom financier.\nHe deliberately ignored me when I passed him in the street.\tIl m'a délibérément ignoré quand je l'ai croisé dans la rue.\nHe did well in all subjects and, above all, in mathematics.\tIl réussit dans toutes les matières et, par-dessus tout, en mathématiques.\nHe did well in all subjects and, above all, in mathematics.\tIl a réussi dans toutes les matières et, par-dessus tout, en mathématiques.\nHe had to call on all his experience to carry out the plan.\tIl a dû faire appel à toute son expérience pour exécuter le plan.\nHe has given up running in order to focus on the long jump.\tIl a arrêté la course à pied pour se concentrer sur le saut en longueur.\nHe left his hometown at the age of fifteen never to return.\tIl quitta sa ville natale à l'âge de quinze ans pour ne jamais revenir.\nHe looks to his uncle for advice whenever he is in trouble.\tIl cherche conseil auprès de son oncle quand il a des soucis.\nHe made it clear that he had nothing to do with the matter.\tIl expliqua qu'il n'avait rien à voir avec l'affaire.\nHe makes a point of doing ten push-ups before going to bed.\tIl met un point d'honneur à faire dix pompes avant d'aller se coucher.\nHe noticed a hole in his jacket, but he tried to ignore it.\tIl remarqua un trou dans sa veste, mais essaya de l'ignorer.\nHe peddled his \"miracle cure\" to desperate cancer patients.\tIl fourguait son \"traitement miracle\" aux malades du cancer désespérés.\nHe promised me that he would be more careful in the future.\tIl me promit d'être plus prudent à l'avenir.\nHe raised the glass to his lips and drained it at one gulp.\tIl porta le verre à ses lèvres et le vida d'un trait.\nHe said that if he knew her address, he would write to her.\tIl a dit que s'il connaissait son adresse, il lui écrirait.\nHe set out to do something that had never been done before.\tIl entreprit de faire quelque chose qui n'avait jamais été fait auparavant.\nHe takes the attitude that resistance is a waste of energy.\tIl adopte l'attitude que la résistance est une perte d'énergie.\nHe took advantage of the good weather to do some gardening.\tIl profita du beau temps pour faire un peu de jardinage.\nHe took advantage of the good weather to do some gardening.\tIl a profité du beau temps pour jardiner un peu.\nHe was about to fall asleep, when he heard his name called.\tIl était sur le point de s'endormir lorsqu'il entendit qu'on appela son nom.\nHe works for a big newspaper with a very large circulation.\tIl travaille pour un grand journal avec un tirage très important.\nHe's not lazy. On the contrary, I think he's a hard worker.\tIl n'est pas fainéant. Au contraire, je crois que c'est un grand bosseur.\nHer father became an invalid as a result of a heart attack.\tAprès une crise cardiaque, son père est devenu invalide.\nHer father became an invalid as a result of a heart attack.\tSon père devint impotent suite à une attaque cardiaque.\nHis chances for making a great deal of money are excellent.\tSes chances de faire beaucoup d'argent sont excellentes.\nHow about staying for dinner? I'm making a big pot of stew.\tQue dites-vous de rester pour le dîner ? Je suis en train de faire une grande marmite de ragoût.\nHow about staying for dinner? I'm making a big pot of stew.\tQue dis-tu de rester pour le dîner ? Je suis en train de faire une grande marmite de ragoût.\nHow can you make your way in life without a good education?\tComment peut-on réussir sans une bonne éducation ?\nHow many rooms are there on the second floor of your house?\tCombien de pièces le premier étage de votre maison comporte-t-il ?\nHow many times a day do you look at yourself in the mirror?\tCombien de fois par jour te regardes-tu dans le miroir ?\nHow much time does the average teenager watch TV every day?\tCombien de temps l'adolescent moyen passe-t-il à regarder la télé quotidiennement ?\nHow much time does the average teenager watch TV every day?\tCombien de temps l'adolescent moyen passe-t-il à regarder la télé chaque jour ?\nHumans are the only living creatures that make use of fire.\tLes êtres humains sont les seules créatures vivantes qui emploient le feu.\nHundreds of soldiers ate in silence around their campfires.\tDes centaines de soldats mangèrent en silence autour de leurs feux de camp.\nI asked Tom why he wasn't planning to go to Boston with us.\tJ'ai demandé à Tom pourquoi il n'avait pas prévu de venir à Boston avec nous.\nI borrowed money not only from Tom, but from his wife, too.\tJ'ai emprunté de l'argent non seulement à Tom, mais aussi à sa femme.\nI can get to work faster by walking than by taking the car.\tJe peux me rendre au travail plus rapidement en marchant qu'en prenant la voiture.\nI can't believe your parents let you come here by yourself.\tJe n'arrive pas à croire que vos parents vous laissent venir ici par vos propres moyens.\nI can't believe your parents let you come here by yourself.\tJe n'arrive pas à croire que vos parents vous laissent venir ici tous seuls.\nI can't believe your parents let you come here by yourself.\tJe n'arrive pas à croire que vos parents vous laissent venir ici toutes seules.\nI can't believe your parents let you come here by yourself.\tJe n'arrive pas à croire que vos parents vous laissent venir ici toute seule.\nI can't believe your parents let you come here by yourself.\tJe n'arrive pas à croire que vos parents vous laissent venir ici tout seul.\nI can't believe your parents let you come here by yourself.\tJe n'arrive pas à croire que tes parents te laissent venir ici toute seule.\nI can't believe your parents let you come here by yourself.\tJe n'arrive pas à croire que tes parents te laissent venir ici tout seul.\nI can't believe your parents let you come here by yourself.\tJe n'arrive pas à croire que tes parents te laissent venir ici par tes propres moyens.\nI cannot see this picture without remembering my childhood.\tJe ne peux voir cette image sans repenser à mon enfance.\nI caught my son making prank calls to random phone numbers.\tJ'ai surpris mon fils en train de faire des farces téléphoniques à des numéros au hasard.\nI didn't have time to think. I had to make a judgment call.\tJe n'avais pas le temps de penser. J'ai dû trancher.\nI don't care how much it costs. I'm going to buy it anyway.\tJe me moque de combien cela coûte, je vais l'acheter de toute manière.\nI don't think people should make a mountain of a mole hill.\tJe ne pense pas que les gens devraient faire une montagne à partir d'une taupinière.\nI don't want to have kids, and I don't want to get married.\tJe ne veux pas avoir d'enfants ni me marier.\nI felt quite relieved after I had said all I wanted to say.\tJe me suis senti très soulagé après avoir dit tout ce que j'avais à dire.\nI felt quite relieved after I had said all I wanted to say.\tJe me suis sentie très soulagée après avoir dit tout ce que j'avais à dire.\nI get the feeling that no one here is telling us the truth.\tJ'ai le sentiment que personne ici ne nous dit la vérité.\nI had great difficulty in finding my ticket at the station.\tÀ la gare, j'ai eu le plus grand mal à trouver mon billet.\nI hate the sound that cellophane makes when you crinkle it.\tJ'ai horreur du son que la cellophane produit lorsqu'on la froisse.\nI have been wearing this overcoat for more than five years.\tJ'ai porté ce pardessus pendant plus de cinq ans.\nI have often heard it said that honesty is the best policy.\tJ'ai souvent entendu que l'honnêteté est la meilleure ligne de conduite.\nI haven't eaten anything except one slice of bread all day.\tJe n'ai rien mangé d'autre qu'une tranche de pain de toute la journée.\nI know a few words of French, just enough to be understood.\tJe connais quelques mots de français, juste assez pour me faire comprendre.\nI know a few words of French, just enough to be understood.\tJe connais quelques mots de français, juste de quoi me faire comprendre.\nI like him not because he is kind but because he is honest.\tJe l'aime bien non pas parce qu'il est gentil mais parce qu'il est honnête.\nI liked walking alone on the deserted beach in the evening.\tJ'appréciais de marcher seul sur la plage désertée, dans la soirée.\nI never thought he was capable of doing something so cruel.\tJe n'aurais jamais cru qu'il puisse faire une chose aussi horrible.\nI promise you I'll stay with you until your father arrives.\tJe te promets de rester avec toi jusqu'à ce que ton père arrive.\nI promise you I'll stay with you until your father arrives.\tJe vous promets de rester avec vous jusqu'à ce que votre père arrive.\nI should be studying English, but I'd rather watch a movie.\tJe devrais être en train d'étudier l'anglais, mais je préfère regarder un film.\nI sincerely regret having caused you such an inconvenience.\tJe suis sincèrement désolé de vous avoir autant dérangé.\nI slept a little during lunch break because I was so tired.\tJ'ai un peu dormi pendant la pause déjeuner parce que j'étais trop fatigué.\nI suppose you have some ideas on how to handle this matter.\tJe suppose que tu as des idées quant à la manière de traiter cette affaire.\nI suppose you have some ideas on how to handle this matter.\tJe suppose que vous avez des idées quant à la manière de traiter cette affaire.\nI think Tom said he'd be staying in Boston for three weeks.\tJe crois que Tom a dit qu'il resterait à Boston pour trois semaines.\nI think it's time for me to write my mother another letter.\tJe pense qu'il est temps que j'écrive à ma mère une autre lettre.\nI think you already have enough money to buy what you need.\tJe pense que vous disposez déjà de suffisamment d'argent pour acquérir ce dont vous avez besoin.\nI think you already have enough money to buy what you need.\tJe pense que tu disposes déjà de suffisamment d'argent pour acquérir ce dont tu as besoin.\nI think you're the woman I've been waiting for all my life.\tJe crois que tu es la femme que j'ai attendue toute ma vie.\nI usually prefer to pay with credit card and not with cash.\tJe préfère habituellement payer par carte de crédit et non avec du liquide.\nI waited half an hour for my friend, but he didn't turn up.\tJ'attendis mon ami durant une demi-heure, mais il ne se montra pas.\nI want that more than I've ever wanted anything in my life.\tJe veux cela plus que jamais je n'ai voulu quoi que ce soit dans ma vie.\nI want to cut down on the time it takes to process records.\tJe veux réduire le temps que prend le traitement des enregistrements.\nI want to cut down on the time it takes to process records.\tJe veux réduire le temps que prend le traitement des dossiers.\nI was planning to call him, but changed my mind and didn't.\tJ'avais prévu de l'appeler mais j'ai changé d'avis et je ne l'ai pas fait.\nI wonder if there'll be more snow this year than last year.\tJe me demande s'il y aura davantage de neige cette année que l'année passée.\nI wonder if there'll be more snow this year than last year.\tJe me demande s'il y aura davantage de neige cette année que l'année dernière.\nI wonder if you have ever considered going to a specialist.\tJe me demande si tu n'as jamais considéré te rendre chez un spécialiste.\nI would like to have this car repaired as soon as possible.\tJ'aimerais que cette voiture soit réparée aussi vite que possible.\nI would rather stay at home than go out on such a cold day.\tJe préfèrerais rester à la maison plutôt que de sortir par un jour si froid.\nI'd rather clean my room than spend time doing my homework.\tJe ferais mieux de nettoyer ma chambre que de passer du temps à faire mes devoirs.\nI'd rather laugh with the sinners than cry with the saints.\tJe préfère rire avec les pécheurs que pleurer avec les saints.\nI'd rather not eat the meat from an animal that was cloned.\tJe n'aimerais autant pas manger la viande d'un animal qui a été cloné.\nI'll afraid this kind of meeting isn't getting us anywhere.\tJe crains que ce genre de réunion ne nous mène nulle part.\nI'm a deeply religious man and believe in life after death.\tJe suis un homme profondément croyant et je crois en une vie après la mort.\nI'm going to put them in a room and let them battle it out.\tJe vais les mettre dans une pièce et les laisser se le disputer.\nI'm going to put them in a room and let them battle it out.\tJe vais les mettre dans une pièce et les laisser se la disputer.\nI'm sorry to disturb you, but there's a phone call for you.\tJe suis désolé de vous déranger, mais il y a un appel téléphonique pour vous.\nI'm sorry to disturb you, but there's a phone call for you.\tJe suis désolée de vous déranger, mais il y a un appel téléphonique pour vous.\nI'm sorry to disturb you, but there's a phone call for you.\tJe suis désolé de te déranger, mais il y a un appel téléphonique pour toi.\nI'm sorry to disturb you, but there's a phone call for you.\tJe suis désolée de te déranger, mais il y a un appel téléphonique pour toi.\nI'm the type who likes to think things over very carefully.\tJe suis de ceux qui aiment réfléchir aux choses avec beaucoup d'attention.\nI'm the type who likes to think things over very carefully.\tJe suis du genre qui aime réfléchir très attentivement aux choses.\nI've been trying to make an effort to come here more often.\tJ'essaie de faire l'effort de venir plus souvent.\nI've got to take my library books back before January 25th.\tJe dois rapporter mes livres à la bibliothèque avant le 25 janvier.\nI've never seen two people so much in love as Tom and Mary.\tJe n'avais vu deux personnes s'aimer autant que Tom et Marie.\nIf I were you, I'd think twice before going down that path.\tSi j'étais toi, j'y penserais à deux fois avant d'emprunter cette voie.\nIf it hadn't been for the storm, I would've arrived sooner.\tSans la tempête, je serais arrivé plus tôt.\nIf it hadn't been for the storm, I would've arrived sooner.\tSi ce n'avait été à cause de la tempête, je serais arrivé plus tôt.\nIf it hadn't been for the storm, I would've arrived sooner.\tSi ce n'avait été à cause de la tempête, je serais arrivée plus tôt.\nIf it were not for his idleness, he would be a nice fellow.\tN'était-ce son oisiveté, il serait un chic type.\nIf it were not for his idleness, he would be a nice fellow.\tÀ part pour son oisiveté, il serait un chouette compagnon.\nIf it were not for his idleness, he would be a nice fellow.\tSi ce n'était pour son oisiveté, il ferait un chouette compagnon.\nIf it weren't for music, the world would be a boring place.\tSi ce n'était pour la musique, le monde serait un endroit ennuyeux.\nIf it's a good day tomorrow, let's go to the river to swim.\tS'il fait beau demain, allons nager à la rivière.\nIf only she were to help, the job would be finished sooner.\tSi seulement elle donnait un coup de main, le travail serait vite achevé.\nIf two people are in agreement, one of them is unnecessary.\tSi deux personnes sont toujours du même avis, alors l'une d'elle est inutile.\nIf you could choose the genes for your children, would you?\tSi vous pouviez choisir les gènes de votre enfant, le feriez-vous ?\nIf you have a problem with any of this, I need to know now.\tSi quoi que ce soit de ceci te pose problème, j'ai besoin de le savoir maintenant.\nIf you have a problem with any of this, I need to know now.\tSi quoi que ce soit de ceci vous pose problème, j'ai besoin de le savoir maintenant.\nIf you have any doubts, let me know without any hesitation.\tSi vous avez le moindre doute, faites-le-moi savoir sans hésiter.\nIf you keep breaking the club rules, you'll get thrown out.\tSi vous continuez à enfreindre les règles du club, vous en serez exclu.\nIf you keep harping on his flaws, he'll grow to resent you.\tSi tu continues à ressasser ses défauts, il va finir par t'en vouloir.\nIf you tell the truth, you don't have to remember anything.\tSi vous dites la vérité, vous n'avez pas besoin de vous rappeler de quoi que ce soit.\nIf you trespass on his property, he'll sic his dogs on you.\tSi vous faites intrusion dans sa propriété, il lâchera ses chiens sur vous.\nIn my opinion, it would be difficult to solve this problem.\tÀ mon avis, ce sera difficile de résoudre ce problème.\nIn spite of the fact that she was busy, she came to see me.\tEn dépit du fait qu'elle était occupée, elle vint me voir.\nIn spite of the fact that she was busy, she came to see me.\tEn dépit du fait qu'elle était occupée, elle est venue me voir.\nInstead of going himself, he sent his brother in his place.\tAu lieu d'y aller lui-même, il a envoyé son frère.\nIs it right for a doctor to decide when someone should die?\tEst-ce correct pour un médecin de décider quand quelqu'un doit mourir ?\nIt goes without saying that smoking is bad for your health.\tIl va sans dire que fumer est mauvais pour votre santé.\nIt is difficult for foreign students to speak English well.\tC'est difficile pour les étudiants étrangers de parler anglais correctement.\nIt is no use going to school if you are not going to study.\tÇa ne sert à rien d'aller à l'école si tu ne vas pas étudier.\nIt is sad that so few people give money to help the hungry.\tIl est triste que si peu de gens donnent de l'argent pour aider les affamés.\nIt is utterly impossible to finish the work within a month.\tIl est absolument impossible de terminer le travail endéans un mois.\nIt makes no difference to me whether you believe it or not.\tQue tu le croies ou non ne me fait ni chaud ni froid.\nIt makes no difference whether the train is delayed or not.\tCela ne fait aucune différence si le train est retardé ou non.\nIt took me more than a week to put the model ship together.\tCela m'a pris plus d'une semaine pour construire la maquette de bateau.\nIt was apparent that he did not understand what I had said.\tDe toute évidence, il ne comprenait pas ce que j'avais dit.\nIt was raining hard, but she insisted on going for a drive.\tIl pleuvait des cordes, mais elle insista pour aller faire un tour en voiture.\nIt was such a cold day that there was nobody on the street.\tIl faisait tellement froid ce jour-là que les rues étaient désertes.\nIt would be a pity if you let this opportunity pass you by.\tIl serait dommage que tu laisses cette opportunité t'échapper.\nIt would be a pity if you let this opportunity pass you by.\tIl serait très regrettable que tu laisses passer cette chance.\nIt's been a long time since I had such a pleasant surprise.\tCela fait longtemps que je n'ai eu une telle agréable surprise.\nIt's is so difficult that I have decided to give up trying.\tC'est tellement difficile que j'ai décidé d'arrêter d'essayer.\nIt's very difficult even for a Japanese to put on a kimono.\tMême pour un Japonais il est très difficile de mettre un kimono.\nJapan is a country that is completely surrounded by oceans.\tLe Japon est un pays qui est entièrement entouré par les mers.\nJapanese is often said to be a difficult language to learn.\tOn dit souvent que le japonais est une langue difficile à apprendre.\nJudging from the look of the sky, it will be fine tomorrow.\tÀ en juger d'après le ciel, il fera beau demain.\nLast night someone broke into the small shop near my house.\tLa nuit dernière, quelqu'un a cambriolé une boutique près de chez moi.\nLeaving something unfinished is the worst thing you can do.\tLaisser quelque chose en plan est la pire chose que l'on puisse faire.\nLeaving something unfinished is the worst thing you can do.\tLaisser quelque chose inachevé est la pire chose que tu puisses faire.\nLeaving something unfinished is the worst thing you can do.\tLaisser quelque chose d'inachevé est la pire chose que vous puissiez faire.\nLet us stop to think how much we depend upon atomic energy.\tArrêtons-nous pour réfléchir à combien nous dépendons de l'énergie atomique.\nLife is what happens to us while we are making other plans.\tLa vie, c'est ce qui nous arrive pendant qu'on forme d'autres projets.\nMan has a great capacity to adapt to environmental changes.\tL'homme a d'importantes dispositions pour s'adapter aux changements environnementaux.\nMany people in Africa were killed as a result of the storm.\tBeaucoup de personnes sont mortes en Afrique à cause de la tempête.\nMore students apply to the university than can be accepted.\tDavantage d'étudiants se portent candidats à l'université qu'il ne peut en être admis.\nMost souvenir shops are filled with worthless knick-knacks.\tLa plupart des magasins de souvenirs sont emplis de colifichets sans valeur.\nMy grandfather sometimes talks to himself when he is alone.\tMon grand-père se parle parfois à lui-même quand il est seul.\nMy grandfather sometimes talks to himself when he is alone.\tMon grand-père se parle parfois à lui-même lorsqu'il est seul.\nMy grandmother looks after the children during the daytime.\tMa grand-mère s'occupe des enfants durant la journée.\nMy sister has been studying in her room since this morning.\tMa sœur a étudié dans sa chambre depuis ce matin.\nMy sister was robbed of her bag on her way home last night.\tMa sœur s'est fait voler son sac en rentrant chez elle hier soir.\nMy small bladder has me constantly running to the bathroom.\tMa petite vessie me fait courir constamment aux toilettes.\nMy wife harbors a deep-seated resentment toward her father.\tMa femme nourrit un profond ressentiment à l'égard de son père.\nNearly a thousand people participated in the demonstration.\tPresque mille personnes ont participé à cette manifestation.\nNearly a thousand people participated in the demonstration.\tPresque un millier de personnes ont pris part à la manifestation.\nNo less than three hundred dollars was needed for the work.\tPas moins de trois cents dollars furent nécessaires pour ce travail.\nNo matter how bad it gets, she won't die from that disease.\tPeu importe si ça tourne mal, elle ne mourra pas de cette maladie.\nNo matter how bad it gets, she won't die from that disease.\tMais quoi qu'il arrive, elle ne mourra pas de cette maladie.\nNo matter how hard I try, I can't remember the exact words.\tJ'ai beau essayer, je n'arrive pas à me rappeler les mots exacts.\nNo matter how much I think about it, I can't understand it.\tJ'ai beau y réfléchir, je n'arrive pas à le comprendre.\nNobody having anything more to say, the meeting was closed.\tComme personne n'avait plus rien à dire, la réunion a été clôturée.\nOld people have difficulty understanding modern technology.\tLes personnes âgées ont des difficultés à comprendre la technologie moderne.\nOld people have difficulty understanding modern technology.\tLes personnes âgées éprouvent de la difficulté à comprendre la technologie moderne.\nOn second thought, I think I will have a slice of that pie.\tAprès réflexion, je pense que je vais prendre une part de cette tarte.\nOne hour of sleep before midnight is worth two hours after.\tUne heure de sommeil avant minuit en vaut deux par après.\nOur firm is on the verge of bankruptcy, I'm ashamed to say.\tNotre entreprise est au bord de la banqueroute. J'ai honte de l'avouer.\nOur kids are all tucked in. Now we can kick back and relax.\tNos enfants sont tous couchés. Maintenant nous pouvons nous détendre.\nOur mother had no choice but to make dinner with leftovers.\tNotre mère n'avait pas d'autre choix que de faire à dîner avec les restes.\nOur new method of doing that is quicker and more efficient.\tNotre nouvelle méthode pour faire cela est plus rapide et plus efficace.\nPeople have a tendency to underestimate their future needs.\tLes gens ont tendance à sous-estimer leurs besoins futurs.\nPlastic kills countless seabirds and sea turtles each year.\tLe plastique tue chaque année un nombre incalculable d'oiseaux marins et de tortues de mer.\nPlease help yourself to some apple pie. I baked it for you.\tTu peux te servir de la tarte aux pommes. Je l'ai confectionnée pour toi.\nPlease open your bag so that I can see what you have in it.\tOuvre ton sac s'il te plait, que je puisse voir ce qu'il y a dedans.\nReporters do not hesitate to intrude into people's privacy.\tLes journalistes n'hésitent pas à s'immiscer dans l'intimité des gens.\nScientists can easily compute the distance between planets.\tLes scientifiques peuvent facilement calculer la distance entre les planètes.\nShe advised him not to believe everything the teacher says.\tElle lui recommanda de ne pas croire tout ce que l'enseignant disait.\nShe advised him not to believe everything the teacher says.\tElle lui recommanda de ne pas croire tout ce que le professeur disait.\nShe braked hard when she saw a child run out into the road.\tElle freina brutalement quand elle vit un enfant se précipiter sur la route.\nShe could always call her parents when she was in a crunch.\tElle pouvait toujours appeler ses parents, quand elle se trouvait dans une situation critique.\nShe could hardly keep from laughing when she saw the dress.\tElle a eu du mal à s'empêcher de rire quand elle a vu la robe.\nShe folded up the towels and put them away in the cupboard.\tElle plia les serviettes et les rangea dans une armoire.\nShe gave considerable thought to what to do with the money.\tElle consacra beaucoup de réflexion à ce qu'il convenait de faire de cet argent.\nShe had already gone to bed when I phoned her at 11:00 p.m.\tElle était déjà allée se coucher quand je lui ai téléphoné à 23 h.\nShe is a better singer than any other student in her class.\tElle est meilleure chanteuse que n'importe quelle autre élève de sa classe.\nShe is rich, certainly, but I don't think she's very smart.\tElle est riche, certainement, mais je ne pense pas qu'elle soit très intelligente.\nShe lost her locker key while she was swimming in the pool.\tElle a perdu la clé de son casier pendant qu'elle nageait dans la piscine.\nShe practices the piano in the afternoon or in the evening.\tElle joue du piano l'après-midi ou en soirée.\nShe said that she would follow him no matter where he went.\tElle déclara qu'elle le suivrait où qu'il aille.\nShe said that she would follow him no matter where he went.\tElle a déclaré qu'elle le suivrait où qu'il aille.\nShe said that she would follow him no matter where he went.\tElle déclara qu'elle le suivrait, peu importe où il aille.\nShe said that she would follow him no matter where he went.\tElle a déclaré qu'elle le suivrait, peu importe où il aille.\nShe said that she would follow him no matter where he went.\tElle dit qu'elle le suivrait où qu'il aille.\nShe said that she would follow him no matter where he went.\tElle a dit qu'elle le suivrait, peu importe où il aille.\nShe said that she would follow him no matter where he went.\tElle a dit qu'elle le suivrait où qu'il aille.\nShe said that she would follow him no matter where he went.\tElle dit qu'elle le suivrait, qu'importe où il aille.\nShe said that she would follow him no matter where he went.\tElle a dit qu'elle le suivrait, qu'importe où il aille.\nShe seems timid, but she's actually a strong-willed person.\tElle semble timide mais elle a en vérité une forte volonté.\nShe stole a lot of money from him, so now she is in prison.\tElle lui a volé beaucoup d'argent, donc maintenant, elle est en prison.\nShe stole a lot of money from him, so now she is in prison.\tElle lui a dérobé beaucoup d'argent, alors maintenant, elle est en prison.\nShe turned off the lights so she could enjoy the moonlight.\tElle éteignit les lumières pour admirer le clair de lune.\nShe was the last woman that I expected to see at the party.\tC'était la dernière femme que je m'attendais à voir à la fête.\nShe's not here to defend herself against these accusations.\tElle n'est pas ici pour se défendre contre ces accusations.\nShe's only two years old, but she can already count to 100.\tElle n'a que deux ans, mais elle peut déjà compter jusqu'à 100.\nShe's only two years old, but she can already count to 100.\tElle a seulement deux ans mais elle est capable de compter jusqu'à cent.\nShould I wait for you tomorrow in front of the opera house?\tDois-je vous attendre en face de l'opéra demain ?\nSince I walked very fast, I was in time for the last train.\tComme j'ai marché très vite, j'étais à temps pour le dernier train.\nSince he was able to walk so far, he must have strong legs.\tÉtant donné qu'il a été en mesure de marcher si loin, il doit avoir de bonnes jambes.\nSo you are really offering me a Roflex watch for 5 dollars?\tDonc vous êtes vraiment en train de me proposer une montre Roflex pour 5 dollars ?\nSome indigenous tribes in Brazil are threatened by loggers.\tCertaines tribus indigènes du Brésil sont menacées par les bûcherons.\nSome of these young people have legs twice as long as mine.\tCertains de ces jeunes gens ont des jambes deux fois plus longues que les miennes.\nSometimes when it's very cold, I can't get my car to start.\tQuelquefois quand il fait très froid, je ne peux pas faire démarrer ma voiture.\nSpend your time wisely and you'll always have enough of it.\tEmploie ton temps judicieusement et tu en auras toujours assez.\nSpend your time wisely and you'll always have enough of it.\tEmployez votre temps judicieusement et vous en aurez toujours assez.\nStudying how to communicate effectively is time well spent.\tÉtudier comment communiquer de manière efficace est du temps bien dépensé.\nStudying how to communicate effectively is time well spent.\tÉtudier comment communiquer de manière efficace est du temps bien employé.\nSweating allows the human body to regulate its temperature.\tTranspirer permet au corps humain de réguler sa température.\nTell her you like her. Don't be afraid. She won't bite you.\tDis-lui que tu l'aimes. N'aie pas peur. Elle ne va pas te mordre.\nTell me the reason why you want to live in the countryside.\tDites-moi la raison pour laquelle vous voulez vivre à la campagne.\nThe Apollo program greatly advanced our knowledge of space.\tLe programme Apollo a avancé grandement nos connaissances sur l'espace.\nThe ambulances carried the injured to the nearest hospital.\tLes ambulances transportèrent les blessés à l'hôpital le plus proche.\nThe bad weather delayed the plane's departure by two hours.\tLe mauvais temps a retardé le départ de l'avion de deux heures.\nThe boy who had been missing was identified by his clothes.\tLe garçon qui avait disparu a été identifié d'après ses vêtements.\nThe boy who had been missing was identified by his clothes.\tLe garçon qui avait disparu fut identifié d'après ses vêtements.\nThe coach gave his team a pep talk before the game started.\tL'entraîneur exhorta son équipe avant que ne commence la partie.\nThe crew is busy preparing for the voyage into outer space.\tL'équipage est affairé à se préparer pour le voyage dans l'espace.\nThe demonstration at City Hall started getting out of hand.\tLa manifestation à l'hôtel de ville commença à déborder.\nThe doctor informed his patient of the name of his disease.\tLe docteur a informé son patient du nom de sa maladie.\nThe door opened and there she was, standing in the doorway.\tLa porte s'ouvrit et elle était là, se tenant dans l'encadrement de la porte.\nThe explosion was so powerful that the roof was blown away.\tL'explosion fut telle que le toit fut soufflé.\nThe instant he opened the door, he smelt something burning.\tAu moment où il ouvrait la porte, il sentit quelque chose brûler.\nThe latest issue of the magazine will come out next Monday.\tLe dernier numéro du magazine sortira lundi prochain.\nThe man held on to his job stubbornly and would not retire.\tL'homme s'accrochait obstinément à son travail et refusait de partir à la retraite.\nThe mouse was lured into the trap by a big piece of cheese.\tLa souris fut attirée dans le piège à l'aide d'un gros morceau de fromage.\nThe only useful answers are those that raise new questions.\tLes seules réponses utiles sont celles qui posent de nouvelles questions.\nThe painting looks great, but you hung it a little crooked.\tLa peinture a l'air géniale, mais tu l'as accrochée un peu de travers.\nThe plane had already taken off when I reached the airport.\tL'avion avait déjà décollé quand je suis arrivé à l'aéroport.\nThe police took some pictures of the scene of the accident.\tLa police a pris quelques clichés du théâtre de l'accident.\nThe population of Japan is larger than that of New Zealand.\tLa population du Japon est plus importante que celle de Nouvelle-Zélande.\nThe priest blessed the congregation at the end of the mass.\tLe prêtre bénit la congrégation à la fin de la messe.\nThe quality of their products has gone down over the years.\tLa qualité de leurs produits a diminué au fil des années.\nThe rain stopped us from being able to play tennis outside.\tÀ cause de la pluie, nous n'avons pas pu jouer au tennis à l'extérieur.\nThe style is nice, but do you have it in a different color?\tCe style est chouette, mais l'avez-vous dans une couleur différente ?\nThe sum of all the angles in a triangle equals 180 degrees.\tLa somme des angles d'un triangle vaut 180 degrés.\nThe summit nations put free trade at the top of the agenda.\tLes nations présentes au sommet ont mis le libre-échange en tête de l'ordre du jour.\nThe teacher caught the student cheating on the examination.\tL'enseignant a surpris l'étudiant en train de tricher pendant l'examen.\nThe thermometer is an instrument for measuring temperature.\tUn thermomètre est un instrument de mesure de la température.\nThe waiters bumped into each other and dropped their trays.\tLes serveurs se sont téléscopés et ont fait tomber leurs plateaux.\nThere are only 10 minutes left until the end of the lesson.\tIl ne reste que dix minutes avant la fin de la leçon.\nThere are so many stars in the sky, I can't count them all.\tIl y a tant d'étoiles dans le ciel, je ne peux toutes les compter.\nThere were hundreds of people milling about in the streets.\tDes centaines de personnes s'affairaient dans les rues.\nThey should go, regardless of whether they're men or women.\tIls devraient y aller, sans considération pour leur genre.\nThey wanted a wedding picture in front of the Eiffel Tower.\tIl voulait avoir une photo de mariage devant la tour Eiffel.\nThey were ready to run the risk of being shot by the enemy.\tIls étaient prêts à courir le risque de se faire tirer dessus par l'ennemi.\nThings might've turned out better if you hadn't gone there.\tLes choses auraient peut-être mieux tourné si vous n'y aviez pas été.\nThings might've turned out better if you hadn't gone there.\tLes choses auraient peut-être mieux tourné si tu n'y avais pas été.\nThis chair is very comfortable, but I don't like the color.\tC'est chaise est très confortable, mais je n'aime pas la couleur.\nThis has shaken my faith in the institutions of government.\tÇa a ébranlé ma foi dans les institutions du gouvernement.\nThis is going to be the hottest summer in thirty-six years.\tC'est parti pour être l'été le plus chaud depuis trente-six ans.\nThis is the house which was designed by a famous architect.\tC'est la maison conçue par un architecte renommé.\nThis looks longer than that, but it is an optical illusion.\tÇa semble plus long que ça, mais c'est une illusion d'optique.\nThis looks longer than that, but it is an optical illusion.\tCelui-ci semble plus long que celui-là mais ce n'est qu'une illusion d'optique.\nThose people are political allies and will help each other.\tCes gens sont des alliés politiques et s'entraideront.\nTom and Mary rearranged the furniture in their living room.\tThomas et Marie ont réarrangé les meubles de leur salon.\nTom can't carry all those suitcases so you should help him.\tTom ne peux pas porter toutes ces valises, tu devrais l'aider.\nTom certainly fits the description that the police gave us.\tTom correspond certainement à la description que la police nous a donné.\nTom didn't even have the courtesy to say that he was sorry.\tTom n'eut même pas la politesse de dire qu'il était désolé.\nTom doesn't want to get married until he's in his thirties.\tTom ne veut pas se marier avant d'avoir la trentaine.\nTom doesn't want you to share this information with anyone.\tTom ne veut pas que tu partages cette information avec qui que ce soit.\nTom doesn't want you to share this information with anyone.\tTom ne veut pas que vous partagiez cette information avec qui que ce soit.\nTom found it fairly easy to follow Mary without being seen.\tTom a trouvé relativement facile de suivre Mary sans être vu.\nTom had bags under his eyes after several sleepless nights.\tTom avait des cernes sous ses yeux après avoir passé plusieurs nuits blanches.\nTom had to swallow his pride and admit that he needed help.\tTom a dû ravaler sa fierté et admettre qu'il avait besoin d'aide.\nTom is the only one in our family who doesn't like singing.\tTom est le seul de notre famille qui n'aime pas chanter.\nTom likes to listen to music while he's doing his homework.\tTom aime écouter de la musique pendant qu'il fait ses devoirs.\nTom said he didn't have time to answer all of my questions.\tTom m'a dit qu'il n'a pas eu le temps de répondre à toutes mes questions.\nTom said he saw something suspicious the morning Mary died.\tThomas disait qu'il avait vu quelque chose de suspect, le matin où Marie est morte.\nTom told Mary that he had finished the work a few days ago.\tTom a dit à Marie qu'il avait terminé le travail quelques jours avant.\nTom was a school bus driver before he became a taxi driver.\tTom était chauffeur de bus avant de devenir chauffeur de taxi.\nTom was heartbroken when Mary told him she was leaving him.\tTom a eu le cœur brisé quand Mary lui a dit qu'elle le quittait.\nTwo men are trying to figure out what's wrong with the car.\tDeux types sont en train d'essayer de comprendre ce qui ne va pas avec la voiture.\nUsing a flashlight, the policeman signaled the car to stop.\tÀ l'aide d'une lampe-torche, le policier fit signe à la voiture de s'arrêter.\nWe bought our new neighbors a clock as a housewarming gift.\tNous avons acheté une pendule pour nos voisins, en guise de cadeau pour leur pendaison de crémaillère.\nWe cannot tell a good person from a bad one by looks alone.\tOn ne peut pas distinguer une bonne personne d'une mauvaise personne seulement par l'apparence.\nWe did not evolve from monkeys. We share a common ancestor.\tNous n'avons pas évolué à partir des singes. Nous partageons un ancêtre commun.\nWe learned at school that the square root of nine is three.\tÀ l'école nous avons appris que la racine carrée de neuf est trois.\nWe were present at the dedication ceremony of the building.\tOn était à la cérémonie d'inauguration de l'immeuble.\nWe'd better hurry. I don't want to be late for the concert.\tNous ferions mieux de nous hâter. Je ne veux pas être en retard au concert.\nWe'll do away with all these silly rules as soon as we can.\tNous nous débarrasserons de ces règles idiotes dès que nous le pourrons.\nWe'll do whatever it takes to complete the project on time.\tNous ferons tout ce qu'il faut pour achever le projet à temps.\nWhat does your spouse like to do that you don't like to do?\tQu'est-ce que votre épouse aime que vous fassiez que vous n'aimez pas faire ?\nWhat has happened to the book I put here a few moments ago?\tQu'est-il advenu du livre que j'ai mis là il y a quelques instants ?\nWhat kind of person would spend so much money on a bicycle?\tQuel genre de personnes voudraient dépenser autant d'argent dans un vélo ?\nWhat kinds of changes are needed to address these problems?\tQuels genres de changements sont nécessaires pour résoudre ces problèmes?\nWhat she lacks in charisma she makes up for with hard work.\tCe qu'elle manque en charisme elle le compense par sa force de travail.\nWhat we have is one thing and what we are is quite another.\tÊtre et avoir sont deux choses bien différentes.\nWhen I heard that song, it reminded me of when I was a kid.\tLorsque j'ai entendu cette chanson, ça m'a rappelé quand j'étais enfant.\nWhen I was a child, I was spanked if I did something wrong.\tQuand j'étais enfant on me donnait la fessée si je faisais une bêtise.\nWhen I was a child, I was spanked if I did something wrong.\tPetit, on me donnait la fessée lorsque je faisais quelque chose de mal.\nWhen I was a child, I was spanked if I did something wrong.\tEnfant, j'étais fessé si je faisais quelque chose de mal.\nWhen I was a child, I was spanked if I did something wrong.\tEnfant, j'étais fessée si je faisais quelque chose de mal.\nWhen I was a child, I was spanked if I did something wrong.\tQuand j'étais petit, je recevais une fessée si je faisais quelque chose de mal.\nWhen I was young, I tried to read as many books as I could.\tQuand j'étais jeune, j'essayais de lire autant de livres que je pouvais.\nWhenever my uncle comes, he brings some nice things for us.\tÀ chaque fois que mon oncle vient, il nous apporte de bonnes choses.\nWhere on earth can he have gone off to at this time of day?\tOù diable peut-il bien aller à cette heure-ci ?\nWho is the tall guy with long dark hair playing the guitar?\tQui est le grand gars aux longs cheveux noirs qui joue de la guitare ?\nWho is the tall guy with long dark hair playing the guitar?\tQui est le grand type aux longs cheveux noirs qui joue de la guitare ?\nWho would have thought that she could be so thin and small?\tQui aurait pensé qu'elle put être aussi fine et petite ?\nWhy don't we drive out to the country for a change of pace?\tPourquoi n'irions-nous pas faire un tour à la campagne histoire de changer de rythme ?\nWhy don't we drive out to the country for a change of pace?\tPourquoi n'irions-nous pas faire un tour à la campagne pour souffler un peu ?\nWhy would anyone hide something like that inside this cave?\tPourquoi quiconque cacherait une telle chose à l'intérieur de cette grotte ?\nWill you please explain the meaning of this sentence to me?\tPourriez-vous m'expliquer le sens de cette phrase ?\nWill you please explain the meaning of this sentence to me?\tPourriez-vous m'expliquer le sens de cette peine ?\nWith the approach of Christmas, business improved somewhat.\tÀ l'approche de Noël, le commerce a quelque peu repris.\nWould you please allow me to treat you to dinner next week?\tM'autorises-tu à t'inviter à dîner la semaine prochaine ?\nYou can never be happy if you feel envious of other people.\tOn ne peut jamais être heureux si l'on se sent envieux à l'égard d'autrui.\nYou can never be happy if you feel envious of other people.\tTu ne peux jamais être heureux si tu te sens envieux à l'égard d'autrui.\nYou can't eat chicken? How do you know if you never try it?\tTu ne peux pas manger de poulet ? Comment le sais-tu si tu ne l'as jamais goûté ?\nYou cannot take pictures in the theater without permission.\tOn ne peut pas prendre de photos dans le théâtre sans permission.\nYou disobeyed a direct order and must pay the consequences.\tTu as désobéi à un ordre direct et tu dois en payer les conséquences.\nYou don't have to use a dictionary when you read this book.\tTu n'as pas besoin d'utiliser un dictionnaire quand tu lis ce livre.\nYou have to have a lot of stamina to be an Olympic athlete.\tVous devez avoir beaucoup d'endurance pour être un athlète olympique.\nYou may be right, but we have a slightly different opinion.\tTu as peut-être raison, mais nous avons une opinion légèrement différente.\nYou must remove your shoes when you enter a Japanese house.\tOn doit retirer ses chaussures avant de rentrer dans une maison japonaise.\nYou should assume that Tom already knows about the problem.\tTu devrais supposer que Tom est déjà au courant du problème.\nYou should get yourself examined by the doctor immediately.\tTu devrais immédiatement aller te faire examiner par le médecin.\nYou sure ruffled her feathers with that anti-feminist joke.\tTu lui as certainement hérissé le poil avec cette blague anti-féministe.\nYou will be in charge of the women working in this factory.\tVous serez responsable des femmes travaillant dans cette usine.\nYou're under arrest for endangering the welfare of a minor.\tVous êtes en état d'arrestation pour mise en danger du bien-être d'un mineur.\nYour shipment should be delivered within twenty four hours.\tVotre cargaison devrait être livrée dans les vingt-quatre heures.\n\"This used to be such a friendly place.\" \"Tell me about it.\"\t« C'était un tel endroit amical. » « M'en parle pas ! »\nA bird is known by its song and a man by his way of talking.\tUn oiseau est reconnu à son chant, et un homme à ce qu'il dit.\nA dog that barks all the time doesn't make a good watch dog.\tUn chien qui n'arrête pas d'aboyer n'est pas un bon chien de garde.\nA group of young men are playing handball in the playground.\tUn groupe de jeunes hommes jouent au handball sur le terrain de jeu.\nA new model isn't necessarily any better than the older one.\tUn nouveau modèle n'est pas nécessairement mieux qu'un ancien.\nA time bomb went off in the airport killing thirteen people.\tUne bombe à retardement a explosé dans l’aéroport tuant treize personnes.\nA violent thought instantly brings violent bodily movements.\tUne pensée violente entraîne instantanément des mouvements du corps.\nAfter losing his job, he went through a very difficult time.\tAprès avoir perdu son emploi, il a traversé une période très difficile.\nAll great men are dead and I am not feeling too well myself.\tTous les grands hommes sont morts, et moi-même... je ne me sens pas très bien.\nAll taxpayers have the right to know where their money goes.\tChaque contribuable est en droit de savoir où va son argent.\nAll the doctor's efforts were in vain and the man soon died.\tTous les efforts du docteur furent vains et l'homme mourut rapidement.\nAre you seriously thinking about starting your own business?\tPenses-tu sérieusement à démarrer ta propre affaire ?\nAre you seriously thinking about starting your own business?\tPensez-vous sérieusement à démarrer votre propre affaire ?\nAs far as I know, the novel is not translated into Japanese.\tPour ce que j'en sais, le roman n'est pas traduit en japonais.\nAs soon as I finish writing the report, I'll send it to you.\tDès que j'aurai terminé de rédiger le rapport, je vous l'enverrai.\nAs soon as I finish writing the report, I'll send it to you.\tDès que j'aurai fini de rédiger le rapport, je te l'enverrai.\nAs soon as I finish writing the report, I'll send it to you.\tDès que j'aurai achevé de rédiger le rapport, je vous l'enverrai.\nBe sure to look over your paper again before you hand it in.\tAssurez-vous de revoir votre papier avant de le remettre.\nBe sure to look over your paper again before you hand it in.\tAssure-toi de revoir ta copie avant de la remettre.\nBecause of the rain, we weren't able to play tennis outside.\tÀ cause de la pluie, nous n'avons pas pu jouer au tennis à l'extérieur.\nBefore going to work in Paris, I must brush up on my French.\tAvant de me rendre à Paris pour travailler, je dois rafraîchir mon français.\nDid you have your photograph taken for the driver's license?\tAvez-vous fait prendre une photo de vous pour votre permis de conduire ?\nDid you hear that a burglar broke into the neighbor's house?\tAs-tu appris qu'un cambrioleur a forcé la maison du voisin ?\nDid you hear that a burglar broke into the neighbor's house?\tAvez-vous entendu dire qu'un cambrioleur a forcé la maison du voisin ?\nDisneyland was very interesting. You should've come with us.\tDisneyland était très intéressant. Vous auriez dû venir avec nous.\nDo you know how many people died in yesterday's plane crash?\tSavez-vous combien de personnes sont mortes dans l'accident d'avion d'hier ?\nDo you think it'll be easy to find the kind of job you want?\tPensez-vous qu'il sera facile de trouver le genre de travail que vous voulez?\nDo you think it's a good idea to feed your dog table scraps?\tPenses-tu que ce soit une bonne idée de nourrir ton chien avec les déchets de repas ?\nDo you think it's dangerous for me to swim across the river?\tPensez-vous qu'il soit dangereux, pour moi, de traverser la rivière à la nage ?\nDo you think it's dangerous for me to swim across the river?\tPenses-tu qu'il soit dangereux, pour moi, de traverser la rivière à la nage ?\nDo you want to go out or stay at home? Either is OK with me.\tVeux-tu sortir ou rester à la maison ? Les deux me vont.\nDon't come back until you've done what I've asked you to do.\tNe revenez pas avant d'avoir fait ce que je vous ai demandé de faire !\nDon't come back until you've done what I've asked you to do.\tNe reviens pas avant d'avoir fait ce que je t'ai demandé de faire !\nDon't forget to turn off the gas before you leave the house.\tN'oubliez pas d'éteindre le gaz avant de quitter la maison.\nDon't let me ever catch you doing something like that again.\tQue je ne vous attrape plus à nouveau à faire quoi que ce soit du genre !\nDr. Yukawa played an important part in the scientific study.\tLe professeur Yukawa a joué un rôle majeur dans la recherche scientifique.\nEach one of the world's great successes was a failure first.\tChacun des grands succès dans le monde fut d'abord un échec.\nEvery Monday, I have a face-to-face meeting with my manager.\tChaque lundi, j'ai une réunion en tête-à-tête avec mon manager.\nEveryone in the room checked their watches at the same time.\tTout le monde dans la pièce vérifia sa montre en même temps.\nEveryone in the room checked their watches at the same time.\tTout le monde dans la pièce a vérifié sa montre en même temps.\nFood really does taste better when eaten with close friends.\tLa nourriture a vraiment meilleur goût lorsqu'elle est mangée avec des amis proches.\nHave you thought about what we talked about the other night?\tAs-tu réfléchi à propos de ce dont on a discuté l'autre nuit ?\nHave you thought about what we talked about the other night?\tAvez-vous réfléchi à propos de ce dont nous avons discuté l'autre nuit ?\nHaving failed twice yesterday, he doesn't want to try again.\tAyant échoué deux fois hier, il ne veut plus réessayer.\nHe asked me questions similar to those asked by many others.\tIl m'a posé les mêmes questions que beaucoup d'autres gens.\nHe became so excited that what he said made no sense at all.\tIl s'est tellement excité que ce qu'il racontait ne voulait rien dire.\nHe crashed his car because someone tampered with the brakes.\tIl a embouti sa voiture parce que quelqu'un avait trafiqué les freins.\nHe finished his dinner because he didn't like to waste food.\tIl finit son dîner car il n'aimait pas gaspiller la nourriture.\nHe gave a series of lectures on Japanese literature at UCLA.\tIl donna une série de cours sur la littérature japonaise à l'UCLA.\nHe had just finished his homework when the clock struck ten.\tIl venait de finir son devoir lorsque dix heures sonnèrent.\nHe met many fascinating people in the course of his travels.\tIl a rencontré beaucoup de gens fascinants au cours de ses voyages.\nHe offered no specific explanation for his strange behavior.\tIl ne fournit aucune explication particulière à son comportement étrange.\nHe ordered the book from the publisher in the United States.\tIl commanda son livre à l'éditeur aux États-Unis.\nHe quickly scanned the page for the word he was looking for.\tIl parcourut rapidement la page pour trouver le mot qu'il cherchait.\nHe tied his dog up to the tree while he went into the store.\tIl attacha son chien à l'arbre pendant qu'il allait dans le magasin.\nHe took charge of the family business after his father died.\tIl prit en charge l'affaire familiale après que son père mourut.\nHe's bulked up quite a bit since he's been going to the gym.\tIl s'est pas mal musclé depuis qu'il va à la gym.\nHe's bulked up quite a bit since he's been going to the gym.\tIl s'est pas mal renforcé depuis qu'il va à la gym.\nHello! Fancy meeting you here! It's a small world, isn't it?\tHé ! Je ne m'attendais pas à te rencontrer ici ! Le monde est petit, n'est-ce pas ?\nHer son is a mama's boy. He has to be with her all the time.\tSon fils est un fils à maman. Il la suit partout.\nHis bag is right here, so he cannot have gone to school yet.\tSon sac est juste ici, donc il ne peut pas être déjà parti à l'école.\nHistory is replete with the stories of unappreciated genius.\tL'Histoire est pleine de récits de génies ignorés.\nHow could you just walk out the door without saying goodbye?\tComment as-tu pu sortir sans même dire au revoir ?\nHow do you console a woman who has just lost her only child?\tComment consoler une mère qui vient de perdre son seul enfant ?\nHow many times a month do you write a letter to your mother?\tCombien de fois par mois écris-tu une lettre à ta mère ?\nHow many times a month do you write a letter to your mother?\tCombien de fois par mois écrivez-vous une lettre à votre mère ?\nHow many times do I have to repeat that she isn't my friend?\tCombien de fois dois-je répéter qu'elle n'est pas mon amie ?\nI always end up looking up the same words in the dictionary.\tJe finis toujours par rechercher les mêmes mots dans le dictionnaire.\nI am not sure yet if I will go to a university or get a job.\tJe ne suis pas encore sûr si j'irai à l'université ou si je prendrai un emploi.\nI bought this book at the bookstore in front of the station.\tJ'ai acheté ce livre dans la librairie en face de la gare.\nI checked twice to make certain we hadn't made any mistakes.\tJ'ai vérifié deux fois pour m'assurer que nous n'avions fait aucune erreur.\nI copied in my notebook whatever he wrote on the blackboard.\tJ'ai copié tout ce qu'il a écrit au tableau sur mon cahier.\nI couldn't help but feel disappointed when I heard the news.\tJe ne pus m'empêcher de me sentir déçu lorsque j'entendis les nouvelles.\nI didn't have enough time to eat everything that was served.\tJe n'ai pas eu assez de temps pour manger tout ce qui était servi.\nI didn't have enough time to eat everything that was served.\tJe n'eus pas assez de temps pour manger tout ce qui fut servi.\nI do not have the courage to ask my boss to lend me his car.\tJe n'ai pas le courage de demander à mon patron qu'il me prête sa voiture.\nI don't feel like studying today. Let's go to a soccer game.\tJe n'ai pas envie de travailler aujourd'hui, allons jouer au foot.\nI don't think she'll be happy living with her mother-in-law.\tJe ne pense pas qu'elle sera heureuse de vivre avec sa belle-mère.\nI feel ashamed that I got such bad marks in the examination.\tJe suis honteux d'avoir reçu de si mauvaises notes a l'examen.\nI forgot to tell you what time the meeting's going to start.\tJ'ai oublié de te dire à quelle heure commençait la réunion.\nI had a hard time trying to persuade him to cancel the trip.\tJ'ai eu des difficultés à essayer de le persuader d'annuler le voyage.\nI had my car filled up at the service station at the corner.\tJ'ai fait le plein de ma voiture à la station service du coin.\nI had never seen a windmill until I visited the Netherlands.\tJe n'avais jamais vu de moulins à vent jusqu'à ce que je visite les Pays-Bas.\nI hadn't planned to tell you about what happened last night.\tJe n'avais pas prévu de vous dire ce qui s'est passé hier soir.\nI hadn't planned to tell you about what happened last night.\tJe n'avais pas prévu de te dire ce qui s'est passé hier soir.\nI have three dogs. One is male and the other two are female.\tJ'ai trois chiens ; un est un mâle et les deux autres sont des femelles.\nI haven't eaten at my grandmother's house since I was a kid.\tJe n'ai pas mangé chez ma grand-mère depuis que j'étais enfant.\nI haven't got the foggiest notion what you're talking about.\tJe n'ai pas la moindre idée de ce dont tu parles.\nI hear Tom was the one who taught you how to play the cello.\tJ'ai entendu que c'est Tom qui t'a appris à jouer du violoncelle.\nI hope to one day speak German as well as you speak English.\tJ'espère un jour parler l'allemand aussi bien que vous l'anglais.\nI hope to one day speak German as well as you speak English.\tJ'espère un jour parler l'allemand aussi bien que vous parlez l'anglais.\nI hope to soon know much more than a few sentences in Dutch.\tJ'espère que bientôt je connaîtrai beaucoup plus que quelques phrases en néerlandais.\nI know that this is the first time this has happened to you.\tJe sais que c'est la première fois que ça t'est arrivé.\nI know that this is the first time this has happened to you.\tJe sais que c'est la première fois que ça vous est arrivé.\nI must confess that my theory doesn't account for that fact.\tJe dois reconnaître que ma théorie ne rend pas compte de ce fait.\nI never thought I would have to support such a large family.\tJe n'aurais jamais pensé que j'aurais à entretenir une famille aussi grande.\nI never thought it'd be this easy to hack into your website.\tJe n'ai jamais pensé qu'il serait aussi facile de pénétrer ton site web.\nI ran into an old friend of mine at the party the other day.\tJe suis tombé sur un de mes vieux amis à la fête de l'autre jour.\nI ran into an old friend of mine at the party the other day.\tJe suis tombée sur un de mes vieux amis à la fête de l'autre jour.\nI ran into an old friend of mine at the party the other day.\tJe suis tombé sur une de mes vieilles amies à la fête de l'autre jour.\nI ran into an old friend of mine at the party the other day.\tJe suis tombée sur une de mes vieilles amies à la fête de l'autre jour.\nI spent two hours watching a baseball game on TV last night.\tHier soir, j'ai passé deux heures à regarder un match de baseball à la télévision.\nI spent two hours yesterday trying to fix that broken radio.\tJ'ai passé deux heures hier à essayer de réparer cette radio cassée.\nI spent two hours yesterday trying to fix that broken radio.\tJ'ai consacré deux heures hier à essayer de réparer cette radio en panne.\nI think it's time for me to reconsider how I've been living.\tJe pense qu'il est temps que je reconsidère la manière dont j'ai vécu.\nI think it's time for me to reconsider how I've been living.\tJe pense qu'il est temps que je remette en cause la manière dont j'ai vécu.\nI think this is the most impressive building on Park Street.\tJe pense qu'il s'agit du bâtiment le plus impressionnant sur la rue Park.\nI thought he loved you, but as it is, he loved another girl.\tJe pensais qu'il t'aimait, mais il s'avère qu'il en aimait une autre.\nI understand the sentence, but I'm not able to translate it.\tJe comprends la phrase mais me trouve dans l'incapacité de la traduire.\nI understand the sentence, but I'm not able to translate it.\tJe comprends la phrase mais je ne suis pas en mesure de la traduire.\nI want to apologize for all the things I said earlier today.\tJe veux présenter mes excuses pour toutes les choses que j'ai dites auparavant aujourd'hui.\nI was dialing his number just as he walked through the door.\tJe composai son numéro lorsqu'il franchit la porte.\nI was just about to leave the house when the telephone rang.\tJ'étais sur le point de quitter la maison quand le téléphone sonna.\nI was thinking about going to that new place on Park Street.\tJe pensais aller à ce nouveau lieu sur la rue Park.\nI was wondering when you were going to tell me you loved me.\tJe me demandais quand vous alliez me dire que vous m'aimiez.\nI was wondering when you were going to tell me you loved me.\tJe me demandais quand tu allais me dire que tu m'aimais.\nI wasn't supposed to help my son do his homework, but I did.\tJe n'étais pas censé aider mon fils avec ses devoirs, mais je l'ai quand même fait.\nI went with them so that I could guide them around Nagasaki.\tJe suis allé avec eux pour pouvoir les guider dans Nagasaki.\nI wish I could figure out how to delete my Facebook account.\tJ'aimerais trouver comment effacer mon compte Facebook.\nI wish I had eaten at that restaurant before it burned down.\tJ'aurais aimé manger à ce restaurant avant qu'il ne brûle.\nI would like my breakfast in my room at eight o'clock sharp.\tJe voudrais mon petit déjeuner dans ma chambre à huit heures précises.\nI would like to exchange this dress that I bought yesterday.\tJ'aimerais échanger cette robe que j'ai achetée hier.\nI would like to exchange this shirt that I bought yesterday.\tJ'aimerais changer cette chemise que j'ai achetée hier.\nI'd rather live in peaceful poverty than in wealth and fear.\tJe préfère vivre dans la pauvreté et en paix que dans la richesse et la peur.\nI'd say we are definitely going to have a good time tonight.\tJ'ai bien l'impression qu'on va s'amuser ce soir.\nI'll ask him where he is planning to go during the vacation.\tJe lui demanderai où il prévoit d'aller pendant les vacances.\nI'll treat you like an adult when you start acting like one.\tJe te traiterai en adulte lorsque tu te mettras à te comporter comme tel.\nI'm going to take my vacation in September rather than July.\tJe vais prendre mes vacances en septembre plutôt qu'en juillet.\nI'm sure you did what you thought was the right thing to do.\tJe suis sûr que tu as fait ce qui te semblait être la chose à faire.\nI'm sure you did what you thought was the right thing to do.\tJe suis sûr que vous avez fait ce que vous pensiez être la chose à faire.\nI've just arrived. I haven't even unpacked my suitcases yet.\tJe viens d'arriver. Je n'ai même pas encore déballé mes valises.\nIf I had it all to do over again, I wouldn't change a thing.\tSi je devais tout recommencer, je ne changerais rien.\nIf I had worked hard in my youth, I would be successful now.\tSi j'avais travaillé dur dans ma jeunesse, j'aurais du succès maintenant.\nIf he'd been there, he'd have told you to mind your manners.\tS'il avait été là, il t'aurait dit de te tenir.\nIf he'd been there, he'd have told you to mind your manners.\tS'il avait été là, il vous aurait dit de vous tenir.\nIf it had not been for civil war, they would be wealthy now.\tS'il n'y avait pas eu de guerre civile, ils auraient été riches maintenant.\nIf the weather clears up, we'll go for a walk in the forest.\tS'il y a une éclaircie, nous irons nous promener en forêt.\nIf you behave like a flunkey, you're treated like a flunkey.\tSi tu te comportes comme un larbin, on te traite comme un larbin.\nIf you can't explain it easily, you don't yet understand it.\tSi on ne sait pas facilement l'expliquer , c'est qu'on ne le comprend pas encore.\nIf you can't explain it easily, you don't yet understand it.\tSi tu ne sais pas facilement l'expliquer, c'est que tu ne le comprends pas encore.\nIf you can't explain it easily, you don't yet understand it.\tSi vous ne savez pas facilement l'expliquer, c'est que vous ne le comprenez pas encore.\nIf you get enough rest every night, you'll feel much better.\tLorsque vous prendrez suffisamment de repos toutes les nuits, vous vous sentirez beaucoup mieux.\nIf you had stayed here, you would have had a very good time.\tSi vous étiez restées ici, vous vous seriez beaucoup amusées.\nIf you had taken my advice, you wouldn't be in such trouble.\tSi tu avais pris conseil auprès de moi, tu ne te trouverais pas dans de tels ennuis.\nIf you want something done right, you should do it yourself.\tSi vous voulez que quelque chose soit bien fait, vous devriez le faire vous-même.\nIn 1860, Lincoln was elected President of the United States.\tEn 1860, Lincoln fut élu Président des États-Unis d'Amérique.\nIt is interesting to hear from someone in a different field.\tC'est intéressant d'entendre quelqu'un qui vient d'un autre horizon.\nIt is strange that you should know nothing about the matter.\tC'est étrange que tu ne saches rien à ce sujet.\nIt isn't what he says that annoys me but the way he says it.\tCe n'est pas ce qu'il dit qui me dérange mais la manière dont il le dit.\nIt seems that our sense of direction is not always reliable.\tIl semblerait que notre sens de l'orientation n'est pas toujours fiable.\nIt took me a while to understand what she was trying to say.\tCela m'a pris un moment pour comprendre ce qu'elle essayait de dire.\nIt was determined that the plane crashed due to pilot error.\tIl fut déterminé que l'avion s'était écrasé à cause d'une erreur de pilotage.\nIt was heartless of him to say such a thing to the sick man.\tC'était sans cœur de sa part de dire une telle chose à cet homme malade.\nIt was once thought that there was intelligent life on Mars.\tOn crut autrefois qu'il y avait une vie intelligente sur Mars.\nIt was only yesterday that I realized what she really meant.\tCe n'est que depuis hier que j'ai compris ce qu'elle voulait vraiment dire.\nIt was raining so hard that we had to put off our departure.\tIl pleuvait tellement fort que nous avons dû remettre notre départ.\nIt was raining so hard that we had to put off our departure.\tIl pleuvait tellement fort que nous avons dû renoncer à partir.\nIt was such a hard test that we did not have time to finish.\tC'était un test si difficile que nous n'avons pas eu le temps de finir.\nIt was such a hard test that we did not have time to finish.\tC'était un contrôle si difficile que nous n'avons pas eu le temps de finir.\nIt's been almost ten years, but you're as beautiful as ever.\tCela fait presque déjà dix ans, mais tu es toujours aussi belle.\nIt's been almost ten years, but you're as beautiful as ever.\tCela fait presque déjà dix ans, mais tu es toujours aussi beau.\nIt's better to be approximately right than completely wrong.\tIl est préférable d'avoir approximativement raison que complètement tort.\nIt's hard to predict what the weather will be like tomorrow.\tC'est dur de dire comment sera le temps demain.\nIt's not hard to stand out when you're surrounded by idiots.\tIl n'est guère difficile de briller quand on est entouré d'idiots.\nIt's not hard to stand out when you're surrounded by idiots.\tCe n'est pas difficile de se distinguer lorsqu'on est entouré d'idiots.\nIt's not how much you know, but what you can do that counts.\tCe qui compte n'est pas ce que tu sais mais ce que tu peux faire.\nIt's not how much you know, but what you can do that counts.\tCe n'est pas combien tu sais de choses, qui compte, mais ce que tu sais faire.\nIt's obvious that he's not used to living on a tight budget.\tIl est évident qu'il n'est pas habitué à vivre d'un budget serré.\nIt's so hot that you could cook an egg on the hood of a car.\tIl fait tellement chaud qu'on pourrait faire cuire des œufs sur le capot des voitures.\nIt's wrong to deceive people, but worse to deceive yourself.\tC'est mal de tromper les gens, mais c'est pire de se tromper soi-même.\nJust because he likes painting doesn't mean he's good at it.\tCe n'est pas parce qu'il aime la peinture qu'il peint bien.\nLast night there was a fire near here, and I couldn't sleep.\tLa nuit dernière, il y a eu un incendie et je n'ai pas pu dormir.\nLawyers and auto mechanics are the people I trust the least.\tLes avocats et les mécaniciens auto sont les gens en qui j'ai le moins confiance.\nLet's have one more drink, and then I'll take you back home.\tReprenons un verre, et puis je vous ramènerai chez vous.\nLet's have one more drink, and then I'll take you back home.\tBuvons encore un verre, et puis je te ramènerai à la maison.\nLooking at your Facebook friends' photos is a waste of time.\tRegarder les photos de tes amis Face-de-bouc est une perte de temps.\nLooking at your Facebook friends' photos is a waste of time.\tRegarder les photos de tes amis Fesse-bouc est une perte de temps.\nLooking at your Facebook friends' photos is a waste of time.\tRegarder les photos de vos amis de Facebook est une perte de temps.\nLos Angeles is the second largest city in the United States.\tLos Angeles est la deuxième plus grande ville des États-Unis.\nMany people in my grandfather's generation grew up on farms.\tBeaucoup de personnes de la génération de mon grand-père ont grandi dans des fermes.\nMary promised her mother that she would help her more often.\tMarie a promis à sa mère qu'elle l'aiderait plus souvent.\nMary's closets are full of clothes she hasn't worn in years.\tLes armoires de Marie sont pleines de vêtements qu'elle n'a pas porté depuis des années.\nMy sister can't start the day without reading her horoscope.\tMa sœur ne peut entamer la journée sans lire son horoscope.\nNo matter how hard you may try, you won't succeed so easily.\tTu auras beau essayer, tu ne réussiras pas aussi facilement.\nNo matter how hard you may try, you won't succeed so easily.\tVous aurez beau essayer, vous ne réussirez pas aussi facilement.\nNobody knows what it is that has been bothering him so much.\tPersonne ne sait ce qui le tracasse tant.\nNothing is more pleasant than taking a rest after hard work.\tRien n'est plus agréable que de prendre du repos après un dur labeur.\nNow that Tom is unemployed, he has quite a bit of free time.\tMaintenant que Tom est sans emploi, il a pas mal de temps libre.\nNow that you are grown up, you must not behave like a child.\tMaintenant que tu es grand, tu ne dois pas te comporter comme un enfant.\nOn weekends, I take my dogs out for a long walk in the park.\tLe week-end, j'emmène mes chiens dehors pour une longue promenade dans le parc.\nOne of the children is studying, but the others are playing.\tUn des enfants étudie, mais les autres jouent.\nPeople can choose to start loving, but can't choose to stop.\tLes gens peuvent choisir de se mettre à aimer mais ne peuvent choisir d'arrêter.\nPizza is the kind of food that fits into today's life style.\tLa pizza est le genre d'alimentation qui convient au style de vie d'aujourd'hui.\nPizza is the kind of food that fits into today's life style.\tUne pizza c'est le type de nourriture adapté au mode de vie contemporain.\nPlease remain seated until the aircraft arrives at the gate.\tVeuillez rester assis jusqu'à ce que l'appareil atteigne la porte.\nPlease remain seated until the bus comes to a complete stop.\tVeuillez rester assis jusqu'à l'arrêt complet du bus.\nPlease take this chart to the X-ray Room on the third floor.\tVeuillez porter ce dossier médical en salle de radiographie au troisième étage.\nPlease take this chart to the X-ray Room on the third floor.\tApporte ce dossier médical en salle de radiographie au troisième étage, je te prie.\nPlease write down your name, address, and phone number here.\tVeuillez inscrire ici vos nom, adresse, et numéro de téléphone.\nPopulation growth has given rise to serious social problems.\tL'accroissement de la population a donné lieu à de graves problèmes sociaux.\nSeeing the woman with the yellow hat reminded me of a story.\tVoir la femme au chapeau jaune m'a remémoré une histoire.\nSeen from a distance, the big rock looks like an old castle.\tVu de loin ce grand rocher ressemble à un vieux château.\nShe advised him to talk about his life in the United States.\tElle lui conseilla de parler de sa vie aux États-Unis d'Amérique.\nShe advised him to talk about his life in the United States.\tElle lui a conseillé de parler de sa vie aux États-Unis d'Amérique.\nShe can tell the most outrageous lie without batting an eye.\tElle peut dire le mensonge le plus éhonté sans ciller.\nShe couldn't fall asleep because she was thinking about him.\tElle ne put s'endormir car elle pensait à lui.\nShe couldn't fall asleep because she was thinking about him.\tElle n'a pas pu s'endormir car elle pensait à lui.\nShe doesn't have a babysitter, so she can't go to the party.\tElle n'a pas de nounou, c'est pourquoi elle ne peut pas se rendre à la fête.\nShe first came into contact with Japanese culture last year.\tElle est entrée en contact avec la culture japonaise l'an dernier pour la première fois.\nShe looked after her sister, who was in bed with a bad cold.\tElle s'est occupée de sa sœur, qui était alitée en proie à un mauvais rhume.\nShe made me so angry on the telephone that I hung up on her.\tElle m'a mise tellement en colère au téléphone que je lui ai raccroché au nez.\nShe made me so angry on the telephone that I hung up on her.\tElle m'a tellement énervé au téléphone, que je lui ai raccroché au nez.\nShe pooh-poohed the idea with a disdainful wave of her hand.\tElle rejeta l'idée d'un mouvement de main dédaigneux.\nShe still loves him even though he doesn't love her anymore.\tElle l'aime toujours, même s'il ne l'aime plus.\nShe was advised by him not to borrow money from his friends.\tIl lui recommanda de ne pas emprunter de l'argent à ses amis.\nShe was advised by him not to borrow money from his friends.\tIl lui a recommandé de ne pas emprunter de l'argent à ses amis.\nShe was livid when she found out all the lies he'd told her.\tElle était furibonde lorsqu'elle a découvert tous les mensonges qu'il lui avait racontés.\nShe was livid when she found out all the lies he'd told her.\tElle était livide lorsqu'elle découvrit tous les mensonges qu'il lui avait racontés.\nSome babies learn to swim even before they are one year old.\tCertains bébés apprennent à nager avant même d'avoir un an.\nSome countries in Europe are not part of the European Union.\tCertains pays en Europe ne font pas partie de l'Union Européenne.\nSomeone is standing behind the bushes taking pictures of us.\tQuelqu'un se tient derrière les buissons et prend des photos de nous.\nSomeone is standing behind the bushes taking pictures of us.\tQuelqu'un se tient derrière les fourrés et prend des photos de nous.\nSometimes I wonder whether or not I made the right decision.\tParfois, je me demande si j'ai pris ou pas la bonne décision.\nSometimes I wonder whether or not I made the right decision.\tParfois, je me demande si j'ai pris la bonne décision ou pas.\nSometimes I wonder whether or not I made the right decision.\tParfois, je me demande si j'ai pris la bonne décision ou non.\nSometimes I wonder whether or not I made the right decision.\tParfois, je me demande si j'ai pris, oui ou non, la bonne décision.\nStop making a fool of yourself. Everyone is laughing at you.\tArrête de te donner en spectacle. Tout le monde rit de toi.\nStrictly speaking, Chinese consists of hundreds of dialects.\tÀ strictement parler, le chinois est composé de centaines de dialectes.\nTake this folding umbrella with you. It might come in handy.\tPrends ce parapluie pliable avec toi. Cela pourrait être utile.\nTaking advantage of the holidays, I returned home to Nagoya.\tProfitant des vacances, je suis retournée chez moi à Nagoya.\nThat job wasn't very interesting. However, the pay was good.\tCe boulot n'était pas très intéressant. Toutefois, la paie était bonne.\nThat's a good story. The only problem is that it's not true.\tC'est une bonne histoire. Le seul problème est qu'elle n'est pas vraie.\nThe Titanic sank on her maiden voyage. She was a large ship.\tLe Titanic coula lors de son voyage inaugural. C'était un gros navire.\nThe United Nations sent troops to intervene in the conflict.\tLes Nations Unies dépêchèrent des troupes afin d'intervenir dans le conflit.\nThe best way to predict the future is to create it yourself.\tLa meilleure manière de prédire l'avenir est de le créer soi-même.\nThe cat burglar must have entered the mansion from the roof.\tLe monte-en-l'air a dû s'introduire dans la demeure par le toit.\nThe child sat on his mother's lap and listened to the story.\tL'enfant s'assit sur les genoux de sa mère et écouta l'histoire.\nThe crown prince is the one who is to succeed to the throne.\tLe Dauphin est celui qui succède au trône.\nThe delay forced us to stay overnight in an expensive hotel.\tLe retard nous a forcé à passer la nuit dans un hôtel cher.\nThe expedition has postponed its departure to the Antarctic.\tL'expédition a repoussé son départ pour l'Antarctique.\nThe first thing you have to take into consideration is time.\tLa première chose que tu dois prendre en considération est le temps.\nThe first word of an English sentence should be capitalized.\tLe premier mot d'une phrase anglaise devrait être en majuscule.\nThe heavy snowfall prevented our train from leaving on time.\tLes importantes chutes de neige ont empêché le train de partir à l'heure.\nThe local newspaper is endorsing the conservative candidate.\tLe journal local appuie le candidat conservateur.\nThe news of her sudden death came like a bolt from the blue.\tLa nouvelle de sa mort soudaine arriva comme un éclair dans un ciel bleu.\nThe origin of the universe will probably never be explained.\tL'origine de l'univers ne sera probablement jamais expliquée.\nThe pain she suffered while being tortured was unimaginable.\tLa douleur qu'elle endura en étant torturée fut inimaginable.\nThe pain she suffered while being tortured was unimaginable.\tLa douleur qu'elle a endurée en étant torturée a été inimaginable.\nThe people he is living with in London are coming to see me.\tLes personnes avec lesquelles il vit à Londres vont venir me voir.\nThe police fished a dead body out of the river this morning.\tCe matin, la police a repêché un cadavre dans le fleuve.\nThe power of his physique is evident to all who look at him.\tLa puissance de son physique saute aux yeux de tous ceux qui le regardent.\nThe prevention of forest fires is everyone's responsibility.\tLa prévention des feux de forêt est l'affaire de tous.\nThe prevention of forest fires is everyone's responsibility.\tLa prévention des feux de forêt relève de la responsabilité de chacun.\nThe schedule dictates that this work be done by the weekend.\tLe programme commande que ce travail soit terminé pour le week-end.\nThe store was so crowded that they lost sight of each other.\tLe magasin était si bondé qu'ils se sont perdus de vue.\nThe suspect was hiding out in the mountains for three weeks.\tLe suspect s'était caché dans les montagnes pendant trois semaines.\nThe tunnel caved in because of the earthquake the other day.\tLe tunnel s'est effondré à cause du tremblement de terre de l'autre jour.\nThe two countries will negotiate a settlement to the crisis.\tLes deux pays vont négocier un règlement à la crise.\nThe war between France and England lasted one hundred years.\tLa guerre entre la France et l'Angleterre a duré cent ans.\nThe water stopped running because the hose has a kink in it.\tL'eau s'est arrêtée de couler car le tuyau s'est entortillé.\nThe wedding ceremony will be held regardless of the weather.\tLa cérémonie de mariage se tiendra quel que soit le temps.\nThere is no doubt in my mind that Tom will win the election.\tIl n'y aucun doute dans mon esprit que Tom gagnera l'élection.\nThere were 215 votes for the motion and 15 votes against it.\tIl y eut deux-cent-quinze voix en faveur de la motion et quinze contre.\nThere were 215 votes for the motion and 15 votes against it.\tIl y eut deux-cent-quinze suffrages en faveur de la motion et quinze contre.\nThere were 215 votes for the motion and 15 votes against it.\tIl y a eu deux-cent-quinze voix en faveur de la motion et quinze contre.\nThere were 215 votes for the motion and 15 votes against it.\tIl y a eu deux-cent-quinze suffrages en faveur de la motion et quinze contre.\nThere's no danger of this lamp setting fire to the curtains.\tIl n'y a pas de danger que cette lampe mette le feu aux rideaux.\nThere's nothing more fun for me to do than to talk with him.\tIl n'y a rien de plus amusant à faire pour moi que de m'entretenir avec lui.\nThey asked his older brother to help them do their homework.\tIls demandèrent à son grand frère de les aider à faire leurs devoirs.\nThey established a Japanese language class for the refugees.\tIls créèrent une classe de langue japonaise pour les réfugiés.\nThey sleep in separate bedrooms even though they're married.\tIls dorment dans des chambres séparées, bien que mariés.\nThis is a sentence, that has the syllable count, of a haiku.\tOn trouve en la phrase qui suit, autant de syllabes qu'en a un haïku.\nThis is the first time I've ever written a letter in French.\tC'est la première fois de ma vie que j'écris une lettre en français.\nThis is the hottest summer that we have had in thirty years.\tC'est l'été le plus chaud que nous ayons eu en trente ans.\nThis is the house where that poet lived when he was a child.\tC'est la maison dans laquelle ce poète a vécu lorsqu'il était enfant.\nThis message turned out to be a little hard for me to write.\tCe message s'est avéré être un peu difficile à écrire pour moi.\nTo determine its origin, we must go back to the middle ages.\tPour déterminer son origine, nous devons remonter au Moyen-Âge.\nTom always asks for permission before he borrows my bicycle.\tTom demande toujours la permission avant d'emprunter mon vélo.\nTom can't be over thirty. He looks like he's about eighteen.\tTom ne peut pas avoir plus de trente ans. Il a l'air d'en avoir dix-huit.\nTom decided that it wasn't necessary to pay that bill today.\tTom a décidé qu'il n'était pas nécessaire de payer cette facture aujourd'hui.\nTom didn't get paid as much as they told him they'd pay him.\tTom n'a pas été payé autant qu'ils lui avaient promis.\nTom doesn't know the difference between a mule and a donkey.\tTom ne sait pas la différence entre une mule et un âne.\nTom eats pizza with a fork, but Mary eats it with her hands.\tTom mange la pizza avec une fourchette, mais Mary la mange avec ses mains.\nTom fell asleep while he was driving and caused an accident.\tTom s'est endormi alors qu'il conduisait et a causé un accident.\nTom kept talking and didn't let Mary get a word in edgewise.\tTom n'a pas arrêté de parler sans laisser Mary toucher un seul mot.\nTom played the piano for three hours without taking a break.\tTom a joué du piano pendant trois heures sans prendre de pause.\nTom said he felt rested and was ready to start hiking again.\tTom se disait reposé et qu'il se sentait prêt à reprendre la randonnée.\nTom says he can make a decent living as a sidewalk musician.\tTom dit qu'il peut vivre décemment en étant musicien de rue.\nTom told Mary that she was the fattest woman he'd ever seen.\tTom a dit à Mary qu'elle était la femme la plus grosse qu'il n'avait jamais vu.\nTom was looking for place to eat that had reasonable prices.\tTom cherchait un endroit avec des prix raisonnables pour manger.\nTom's lost a lot of blood, but he hasn't lost consciousness.\tTom a perdu beaucoup de sang mais il ne s'est pas évanouit.\nWe are going to make up for lost time by taking a short cut.\tOn va essayer de rattraper le retard en prenant un raccourci.\nWe did not expect him to finish the task in so short a time.\tNous ne nous attendions pas à ce qu'il termine le travail en si peu de temps.\nWe don't like our neighbors, and they don't like us, either.\tNous n'aimons pas nos voisins et ils ne nous aiment pas non plus.\nWe need to get this truck unloaded before it starts raining.\tNous devons décharger ce camion avant qu'il commence à pleuvoir.\nWe take it for granted that he will succeed in his business.\tNous considérons comme un fait accompli qu'il rencontrera le succès dans ses affaires.\nWe'll go to Hong Kong first, and then we'll go to Singapore.\tNous irons d'abord à Hong Kong, et ensuite à Singapour.\nWe're looking for some computer-savvy people to work for us.\tNous recherchons des gens férus d'ordinateurs pour travailler pour nous.\nWe're looking for some computer-savvy people to work for us.\tNous recherchons des gens qui s'y connaissent en ordinateurs pour travailler pour nous.\nWhat does it cost to build a new house in this neighborhood?\tQue coûte la construction d'une maison dans ce coin ?\nWhat makes you think that Tom prefers living in the country?\tQu'est-ce qui te fait penser que Tom préfère vivre à la campagne ?\nWhat would you attempt to do if you knew you could not fail?\tQue tenteriez-vous si vous saviez que vous ne pouviez pas échouer ?\nWhat would you attempt to do if you knew you could not fail?\tQue tenterais-tu si tu savais que tu ne pouvais pas échouer ?\nWhen he got into trouble, he turned to his parents for help.\tLorsqu'il se mit dans les ennuis, il se tourna vers ses parents pour qu'ils l'aident.\nWhen you make the bed, don't forget to fluff up the pillows.\tLorsque tu fais le lit, n'oublie pas de regonfler les oreillers.\nWhen you make the bed, don't forget to fluff up the pillows.\tLorsque vous faites le lit, n'oubliez pas de regonfler les oreillers.\nWhen you've finished reading that book, I'd like to read it.\tLorsque vous aurez fini de lire ce livre, j'aimerais le lire.\nWhen you've finished reading that book, I'd like to read it.\tLorsque vous aurez terminé de lire ce livre, j'aimerais le lire.\nWhen you've finished reading that book, I'd like to read it.\tLorsque tu auras fini de lire ce livre, j'aimerais le lire.\nWhen you've finished reading that book, I'd like to read it.\tLorsque tu auras terminé de lire ce livre, j'aimerais le lire.\nWhy would she go out of her way to help a deadbeat like you?\tPourquoi s'embêterait-elle à aider un bon à rien comme toi ?\nWhy would she go out of her way to help a deadbeat like you?\tPourquoi s'embêterait-elle à aider un naze comme toi ?\nWith the bridge destroyed, there was nothing to do but swim.\tLe pont détruit, il n'y avait rien d'autre à faire que de nager.\nWith your experience, any company would hire you right away.\tAvec ton expérience, n'importe quelle entreprise voudrait t'employer sur-le-champ.\nWithout your encouragement, I would have given up this plan.\tSans tes encouragements, j'aurais laissé tomber ce projet.\nWithout your encouragement, I would have given up this plan.\tSans vos encouragements, j'aurais laissé tomber ce projet.\nWould you consider taking care of my children next Saturday?\tPourrais-tu réfléchir à t'occuper de mes enfants samedi prochain ?\nWould you consider taking care of my children next Saturday?\tPourriez-vous réfléchir à vous occuper de mes enfants samedi prochain ?\nYears of running in marathons have taken a toll on my knees.\tDes années à courir les marathons ont eu des effets négatifs sur mes genoux.\nYou can lie to everyone else, but you can't lie to yourself.\tTu peux mentir à tous les autres, mais tu ne peux pas te mentir à toi-même.\nYou can take a horse to water, but you can't make him drink.\tTu auras beau amener le cheval à la rivière, mais tu ne le feras pas boire pour autant.\nYou can't fight a good fight with such a defeatist attitude.\tTu ne peux pas livrer une bonne bataille avec une attitude aussi défaitiste.\nYou get paid in proportion to the amount of the work you do.\tVous êtes payé proportionnellement à la quantité de travail fourni.\nYou must have women throwing themselves at you all the time.\tVous devez avoir des femmes qui se pendent à votre cou tout le temps.\nYou must have women throwing themselves at you all the time.\tTu dois avoir des femmes qui se pendent à ton cou tout le temps.\nYou must have women throwing themselves at you all the time.\tTu dois tout le temps avoir des femmes qui se pendent à ton cou.\nYou must turn in your old license in order to get a new one.\tIl faut rendre sa vieille licence pour en avoir une nouvelle.\nYou must turn in your old license in order to get a new one.\tIl faut rendre sa vieille licence pour en obtenir une nouvelle.\nYou promised me that you would make something for us to eat.\tTu m'as promis que tu nous ferais quelque chose à manger.\nYou should go to the dentist and have that tooth pulled out.\tTu devrais aller chez le dentiste te faire extraire cette dent.\nYou should go to the dentist and have that tooth pulled out.\tVous devriez aller chez le dentiste pour vous faire extraire cette dent.\nYou should not despise a man just because he is poorly paid.\tOn ne devrait pas mépriser un homme juste parce qu'il est mal payé.\nYou should try to form the habit of using your dictionaries.\tVous devriez prendre l'habitude d'utiliser votre dictionnaire.\nYou'd be amazed how many times I've told Tom not to do that.\tTu serais impressionné du nombre de fois où j'ai dit à Tom de ne pas faire cela.\nYou'll make the same mistake if things continue in this way.\tTu commettras la même erreur si les choses se poursuivent ainsi.\nYou'll make the same mistake if things continue in this way.\tVous commettrez la même erreur si les choses se poursuivent de cette manière.\nYou're the only person I know who is qualified for this job.\tVous êtes la seule personne que je connaisse qui soit qualifiée pour ce poste.\nYou're the only person I know who is qualified for this job.\tVous êtes la seule personne que je connaisse qui soit qualifiée pour cette mission.\nYour eccentricities can make you either charming or tedious.\tTes excentricités peuvent te rendre tantôt charmant ou ennuyeux.\n\"How did you get in here?\" \"I climbed in through the window.\"\t\"Comment es-tu entré ici ?\" \"Par la fenêtre.\"\n\"Shall I have him call you when he gets back?\" \"Yes, please.\"\t« Devrai-je le prier de vous appeler lorsqu'il revient ? » « Oui, s'il vous plaît. »\n\"What's going on in the cave? I'm curious.\" \"I have no idea.\"\t« Qu'est-ce qu'il se passe dans la grotte ? Je suis curieux. » « Je n'en ai aucune idée. »\nA fat man seldom dislikes anybody very hard or for very long.\tUn gros homme n'a jamais une très forte ou très longue aversion envers qui que ce soit.\nA new team was formed in order to take part in the boat race.\tUne nouvelle équipe fut formée afin de prendre part à la course de bateaux.\nA person with common sense would never do this kind of thing.\tUne personne de bon sens ne ferait jamais une telle chose.\nA young man asked us if he could succeed as a public speaker.\tUn jeune homme nous demanda s'il pouvait réussir comme orateur.\nAccording to the weather forecast, it will clear up tomorrow.\tSelon les prévisions météorologiques, cela s'éclaircira demain.\nAfter eight months, he eventually started dating girls again.\tIl a finalement recommencé à sortir avec des filles après huit mois.\nAfter much debate, we decided to spend our holidays in Spain.\tAprès pas mal de discussions, nous décidâmes de passer les vacances en Espagne.\nAfter the Christmas party was over, we all went out caroling.\tAprès la fête de Noël, nous sommes tous allés chanter.\nAn electric guitar doesn't sound the same as an acoustic one.\tUne guitare électrique sonne différemment d'une acoustique.\nApart from a few spelling mistakes, it is a good composition.\tMalgré quelques fautes d'orthographe, c'est une bonne copie.\nApparently my bare feet bothered him more than anything else.\tLe fait que je sois nu-pieds le dérangeait apparemment plus que toute autre chose.\nAre you aware that Okinawa is closer to China than to Honshu?\tSais-tu qu'Okinawa est plus près de la Chine que de Honshu ?\nAs I got the train this morning, I met an old friend of mine.\tEn prenant le train ce matin, j'ai rencontré un vieil ami.\nAs had been expected, the weather turned out to be very fine.\tComme nous l'espérions, le temps a changé pour devenir beau.\nAs the train pulled out, they waved goodbye to their parents.\tComme le train partait, ils firent au revoir à leurs parents.\nBefore going to study in Paris, I must brush up on my French.\tAvant de me rendre à Paris pour travailler, je dois rafraîchir mon français.\nBefore we say goodbye, there's something I'd like to ask you.\tAvant que nous nous disions au revoir, il y a quelque chose que j'aimerais vous demander.\nCan you please tell me where the nearest public telephone is?\tPouvez-vous me dire où se trouve la cabine téléphonique la plus proche ?\nCancer can be cured easily if it is found in its first phase.\tLe cancer peut être facilement guéri s'il est détecté dans sa phase initiale.\nCherry blossoms last only for a few days, a week at the most.\tLa floraison des cerisiers ne dure que quelques jours, une semaine tout au plus.\nChildren whose parents are rich do not know how to use money.\tLes enfants dont les parents sont riches ne savent pas gérer leur argent.\nDelegates from many countries participated in the conference.\tDes représentants de nombreux pays ont participé à la conférence.\nDid it ever occur to you that I might be busy this afternoon?\tT'est-il jamais venu à l'esprit que je pourrais être occupé, cet après-midi ?\nDid it ever occur to you that I might be busy this afternoon?\tVous est-il jamais venu à l'esprit que je pourrais être occupée, cette après-midi ?\nDidn't you tell me yesterday that you wouldn't be late today?\tNe m'as-tu pas dit hier que tu ne serais pas en retard aujourd'hui ?\nDidn't you tell me yesterday that you wouldn't be late today?\tNe m'avez-vous pas dit hier que vous ne seriez pas en retard aujourd'hui ?\nDo you believe global warming is the result of human actions?\tCroyez-vous que le réchauffement climatique est le résultat d'actions humaines ?\nDo you spend more time with your friends or with your family?\tPasses-tu davantage de temps avec tes amis ou avec ta famille ?\nDo you spend more time with your friends or with your family?\tPassez-vous davantage de temps avec vos amis ou avec votre famille ?\nDo you spend more time with your friends or with your family?\tPasses-tu davantage de temps avec tes amies ou avec ta famille ?\nDo you spend more time with your friends or with your family?\tPassez-vous davantage de temps avec vos amies ou avec votre famille ?\nDo you think it's dangerous to eat genetically modified food?\tPensez-vous qu'il soit dangereux de consommer de la nourriture génétiquement modifiée ?\nDo you want this done quickly or do you want this done right?\tVoulez-vous que ceci soit fait rapidement ou voulez-vous que ceci soit correctement ?\nDo you want this done quickly or do you want this done right?\tVeux-tu que ce soit fait rapidement ou correctement ?\nDon't ask me for forgiveness. What's been done has been done.\tNe me demande pas de pardon. Ce qui a été fait a été fait.\nDon't ask me for forgiveness. What's been done has been done.\tNe me demandez pas de pardon. Ce qui a été fait a été fait.\nDon't go near the bulldog. You wouldn't want him to bite you.\tNe t'approche pas du bulldog. Tu ne voudrais pas qu'il te morde.\nDon't listen to Tom. He doesn't know what he's talking about.\tN'écoute pas Tom. Il ne sait pas de quoi il parle.\nDuring droughts, farmers are barely able to eke out a living.\tLors des sécheresses, les fermiers sont à peine en mesure de survivre.\nEducation does not consist simply in learning a lot of facts.\tL'éducation ne consiste pas seulement dans l'apprentissage pur et dur.\nEveryone looks the same, except the one standing on his head.\tIls se ressemblent tous, à l'exception de celui qu'il a sur la tête.\nEveryone looks the same, except the one standing on his head.\tElles se ressemblent toutes, à l'exception de celle qu'il a sur la tête.\nFor your own safety, never ride in a car with a drunk driver.\tPour ta propre sécurité, ne monte jamais à bord d'une voiture avec un conducteur en état d'ébriété.\nFor your own safety, never ride in a car with a drunk driver.\tPour votre propre sécurité, ne montez jamais à bord d'une voiture avec un conducteur en état d'ébriété.\nHailing a cab in Manhattan at 5:00 p.m. is nearly impossible.\tHéler un taxi à Manhattan à cinq heures de l'après-midi est presque impossible.\nHave you had a thorough medical checkup within the last year?\tAvez-vous subi un contrôle médical exhaustif lors de l'année écoulée ?\nHave you heard that a burglar broke into my neighbor's house?\tAs-tu entendu dire qu'un cambrioleur a forcé la maison de mon voisin ?\nHave you heard that a burglar broke into my neighbor's house?\tAvez-vous appris qu'un cambrioleur a forcé la maison de mon voisin ?\nHe anonymously donated a large sum of money to the Red Cross.\tIl a anonymement donné une grosse somme d'argent à la Croix-Rouge.\nHe anonymously donated a large sum of money to the Red Cross.\tIl a anonymement fait don d'une importante somme d'argent à la Croix-Rouge.\nHe bought the land for the purpose of building a house on it.\tIl a acheté le terrain dans le but de s'y construire une maison.\nHe does not like to wait until the last moment to do a thing.\tIl n'aime pas attendre jusqu'au dernier moment pour faire quelque chose.\nHe introduced the problem of education into the conversation.\tIl a introduit le problème de l'éducation dans la conversation.\nHe is working hard in order to pass the entrance examination.\tIl travaille dur pour réussir l'examen d'entrée.\nHe must be a good walker to have walked such a long distance.\tIl doit être bon marcheur pour avoir parcouru une si grande distance.\nHe never opens his mouth without complaining about something.\tDès qu'il ouvre la bouche, c'est pour se plaindre.\nHe says what he thinks regardless of other people's feelings.\tIl dit ce qu'il pense sans se soucier de ce que les autres pensent.\nHe was so busy that he sent his son instead of going himself.\tIl était tellement occupé qu'il envoya son fils à sa place.\nHe's an accredited representative of the Canadian government.\tIl est représentant accrédité du gouvernement canadien.\nHe's an accredited representative of the Canadian government.\tC'est un représentant accrédité du gouvernement canadien.\nHis lack of technical knowledge kept him from being promoted.\tSon manque de connaissances techniques l'empêcha d'être promu.\nHow many days will it take if I send this as registered mail?\tCombien de jours seront-ils nécessaires si j'envoie ceci comme courrier recommandé ?\nHow many students have been admitted to the school this year?\tCombien d'étudiants ont été admis à l'école cette année ?\nHow many suicides do you think there are every year in Japan?\tCombien de suicides pensez-vous qu'il y ait chaque année au Japon ?\nHow many suicides do you think there are every year in Japan?\tCombien de suicides penses-tu qu'il y ait chaque année au Japon ?\nI am sorry that I haven't written to you in such a long time.\tJe suis désolé de ne pas t'avoir écrit pendant aussi longtemps.\nI am sorry that I haven't written to you in such a long time.\tJe suis désolé de ne pas vous avoir écrit pendant aussi longtemps.\nI am sorry that I haven't written to you in such a long time.\tJe suis désolée de ne pas t'avoir écrit pendant aussi longtemps.\nI am sorry that I haven't written to you in such a long time.\tJe suis désolée de ne pas vous avoir écrit pendant aussi longtemps.\nI assure you that an error like this will never happen again.\tJe vous assure qu'une telle erreur ne se reproduira plus.\nI can't believe that you were the smartest kid in your class.\tJe n'arrive pas à croire que tu étais l'enfant le plus intelligent de ta classe.\nI can't believe that you were the smartest kid in your class.\tJe n'arrive pas à croire que tu étais le gamin le plus intelligent de ta classe.\nI can't stand it here any longer. I need a change of scenery.\tJe ne peux plus supporter d'être ici. J'ai besoin de changer de décor.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas te dire combien je suis heureux que tu sois venu nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas te dire combien je suis heureuse que tu sois venu nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas te dire combien je suis heureux que tu sois venue nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas te dire combien je suis heureuse que tu sois venue nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas vous dire combien je suis heureux que vous soyez venu nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas vous dire combien je suis heureux que vous soyez venue nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas vous dire combien je suis heureux que vous soyez venues nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas vous dire combien je suis heureux que vous soyez venus nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas vous dire combien je suis heureuse que vous soyez venu nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas vous dire combien je suis heureuse que vous soyez venue nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas vous dire combien je suis heureuse que vous soyez venues nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas vous dire combien je suis heureuse que vous soyez venus nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas vous dire à quel point je suis heureuse que vous soyez venue nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas vous dire à quel point je suis heureuse que vous soyez venu nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas vous dire à quel point je suis heureuse que vous soyez venus nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas vous dire à quel point je suis heureuse que vous soyez venues nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas vous dire à quel point je suis heureux que vous soyez venue nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas vous dire à quel point je suis heureux que vous soyez venu nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas vous dire à quel point je suis heureux que vous soyez venus nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas vous dire à quel point je suis heureux que vous soyez venues nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas te dire à quel point je suis heureuse que vous soyez venue nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas te dire à quel point je suis heureux que vous soyez venue nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas te dire à quel point je suis heureuse que vous soyez venu nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas te dire à quel point je suis heureuse que vous soyez venues nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas te dire à quel point je suis heureuse que vous soyez venus nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas te dire à quel point je suis heureux que vous soyez venu nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas te dire à quel point je suis heureux que vous soyez venues nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas te dire à quel point je suis heureux que vous soyez venus nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas te dire combien je suis heureux que vous soyez venus nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas te dire combien je suis heureuse que vous soyez venus nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas te dire combien je suis heureux que vous soyez venues nous rendre visite.\nI can't tell you how happy I am that you've come to visit us.\tJe ne peux pas te dire combien je suis heureuse que vous soyez venues nous rendre visite.\nI can't tell you how much I've looked forward to this moment.\tSi vous saviez à quel point j'ai attendu ce moment!\nI didn't know that this was the first time you kissed a girl.\tJe ne savais pas que c'était la première fois que tu embrassais une fille.\nI didn't want to spend any more time working on that project.\tJe ne voulais pas passer davantage de temps à travailler à ce projet.\nI didn't want to spend any more time working on that project.\tJe ne voulais pas passer davantage de temps à travailler sur ce projet.\nI do not like tea, so I generally drink coffee for breakfast.\tJe n'aime pas le thé, aussi en général c'est du café que je bois au petit déjeuner.\nI do not like tea, so I generally drink coffee for breakfast.\tJe n'aime pas le thé, donc je bois généralement du café au petit-déjeuner.\nI don't know how I did it. What's important is that I did it.\tJ'ignore comment je l'ai fait. Ce qui importe est que je l'ai fait.\nI doubt that our new boss will be any worse than the old one.\tJe doute que notre nouveau patron soit pire que l'ancien.\nI doubt that our new boss will be any worse than the old one.\tJe doute que notre nouvelle patronne soit pire que l'ancienne.\nI enjoy cooking, but I don't like the cleaning up afterwards.\tJ'aime cuisiner, mais je n'aime pas tout nettoyer après.\nI feel sad when I think about all the people who die in wars.\tJe suis triste quand je pense à toutes les personnes qui meurent au cours des guerres.\nI finally found out what had been causing the pain in my leg.\tJ'ai enfin trouvé ce qui causait la douleur dans ma jambe.\nI gave you an extra hour and you still didn't finish the job.\tJe vous ai accordé une heure de plus et vous n'avez toujours pas fini le boulot.\nI gave you an extra hour and you still didn't finish the job.\tJe t'ai accordé une heure de plus et tu n'as toujours pas fini le boulot.\nI guess it's impossible for me to learn how to play the oboe.\tJe suppose qu'il m'est impossible d'apprendre à jouer du hautbois.\nI had a nagging sensation that I'd seen him somewhere before.\tJ'avais la sensation persistante de l'avoir vu quelque part auparavant.\nI hate it when I have to sit between two fat guys on a plane.\tJe déteste ça quand je dois m'asseoir entre deux grosses personnes dans un avion.\nI have no desire to understand what goes on inside your head.\tJe n'ai aucun désir de comprendre ce qui se passe à l'intérieur de ta tête.\nI have no desire to understand what goes on inside your head.\tJe n'ai aucun désir de comprendre ce qui se passe à l'intérieur de votre tête.\nI heard a cotton candy shop has just opened. Let's go, dudes.\tJ'ai entendu dire qu'un magasin de barbe à papa vient juste d'ouvrir. Allons-y, les mecs.\nI hope you know that the last thing I want to do is hurt you.\tJ'espère que tu sais que la dernière chose que je veuille faire est de te blesser.\nI hope you know that the last thing I want to do is hurt you.\tJ'espère que vous savez que la dernière chose que je veuille faire est de vous blesser.\nI love how you think of other people's needs before your own.\tJ'aime ta manière de penser aux besoins des autres avant les tiens.\nI might have to come home late. In that case, I'll phone you.\tIl se pourrait que je rentre tard chez moi. Dans ce cas, je te téléphonerai.\nI might have to come home late. In that case, I'll phone you.\tIl se pourrait que je rentre tard chez moi. Dans ce cas, je vous téléphonerai.\nI might have to come home late. In that case, I'll phone you.\tIl se pourrait que je rentre tard à la maison. Dans ce cas, je te téléphonerai.\nI might have to come home late. In that case, I'll phone you.\tIl se pourrait que je rentre tard à la maison. Dans ce cas, je vous téléphonerai.\nI must apologize for not having written for such a long time.\tJe dois présenter mes excuses pour ne pas avoir écrit pendant si longtemps.\nI put my fingers in my ears to block out the terrible sounds.\tJe mis mes doigts dans mes oreilles pour éviter ces bruits terribles.\nI really do want to devote some more time to studying French.\tJe veux vraiment consacrer davantage de temps à l'apprentissage du français.\nI remember the event as vividly as if it were just yesterday.\tJe me rappelle l'événement de manière aussi saisissante que si c'était hier.\nI think it's time for me to show you how to do that properly.\tJe pense qu'il est temps que je vous montre comment faire cela correctement.\nI think it's time for me to show you how to do that properly.\tJe pense qu'il est temps que je te montre comment faire cela correctement.\nI tried to open the door, but I couldn't since it was locked.\tJ'ai tenté d'ouvrir la porte mais je n'ai pas pu puisqu'elle était verrouillée.\nI walk across that bridge every morning on the way to school.\tJe traverse ce pont tous les matins en allant à l'école.\nI want this work completed by two o'clock tomorrow afternoon.\tJe veux que ce travail soit fini demain à 14 heures.\nI want to get into shape, so I've been working out every day.\tJe veux me mettre en forme alors je m'entraîne tous les jours.\nI want to try my best for as long as I am physically able to.\tJe veux faire de mon mieux aussi longtemps que j'en suis physiquement capable.\nI was able to find the street, but I couldn't find her house.\tJ'ai pu trouver sa rue, mais pas sa maison.\nI was wondering if you would like to go to the dance with me.\tJe me demandais si vous aimeriez aller au bal avec moi.\nI was wondering if you would like to go to the dance with me.\tJe me demandais si tu aimerais aller au bal avec moi.\nI won't be pressured into doing something I don't want to do.\tPas question d'être poussé à faire quelque chose que je ne veux pas faire.\nI'll lend you the money, but mind you, this is the last time.\tJe te prêterai l'argent, mais je te préviens, c'est la dernière fois.\nI'm extremely embarrassed that it has taken so long to reply.\tJe suis extrêmement embarrassé que ça ait pris autant de temps pour répondre.\nI'm extremely embarrassed that it has taken so long to reply.\tJe suis extrêmement embarrassée que ça ait pris autant de temps pour répondre.\nI'm glad to see that you're studying harder than you used to.\tJe me réjouis de voir que tu étudies avec davantage d'application que tu ne le faisais.\nI'm glad to see that you're studying harder than you used to.\tJe me réjouis de voir que vous étudiez avec davantage d'application que vous ne le faisiez.\nI'm willing to take care of your children, if you want me to.\tJe suis prêt à m'occuper de tes enfants, si tu veux que je le fasse.\nI'm willing to take care of your children, if you want me to.\tJe suis disposé à m'occuper de vos enfants, si vous voulez que je le fasse.\nI've been riding so long I'm starting to smell like my horse.\tJe monte depuis tellement de temps que je commence à sentir comme mon cheval.\nI've been trying to get a hold of you for the past two hours.\tÇa fait deux heures que j'essaie de mettre la main sur toi.\nI've been trying to get a hold of you for the past two hours.\tÇa fait deux heures que j'essaie de mettre la main sur vous.\nIf I had 25% more income, I'd be more satisfied with my life.\tSi j'avais 25% de plus de revenu, je serais plus satisfait de ma vie.\nIf I had had enough money, I would have bought that computer.\tSi j'avais eu assez d'argent, j'aurais acheté cet ordinateur.\nIf I had known that you were here, I would have come at once.\tSi j'avais su que tu étais là je serais venu tout de suite.\nIf I had not overslept, I would have been in time for school.\tSi je n'avais pas fait la grasse matinée, j'aurais été à l'heure pour l'école.\nIf I'm not mistaken, I think we took a wrong turn back there.\tSi je ne m'abuse, je pense que nous avons pris une mauvaise route là-bas.\nIf something sounds too good to be true, then it probably is.\tLorsque quelque chose semble trop beau pour être vrai, alors c'est probablement le cas.\nIf that is true, then he is not responsible for the accident.\tSi cela est vrai, il n'a pas causé l'accident.\nIf the medicine isn't working, maybe we should up the dosage.\tSi le médicament ne marche pas, peut-être devrions-nous augmenter la dose.\nIf the medicine isn't working, maybe we should up the dosage.\tSi le médicament ne fait pas effet, peut-être devrions-nous augmenter la dose.\nIf we leave now, we could be back in Tucson before nightfall.\tSi nous partons maintenant, nous pourrions être de retour à Tucson avant la tombée de la nuit.\nIf you allow me to speak, I'll be able to explain everything.\tSi vous m'autorisez à parler, je peux tout expliquer.\nIf you could manage to go camping with us, we'd be delighted.\tSi vous faisiez en sorte de venir camper avec nous, nous serions ravis.\nIf you could manage to go camping with us, we'd be delighted.\tSi tu faisais en sorte de venir camper avec nous, nous serions ravis.\nIf you could manage to go camping with us, we'd be delighted.\tSi vous faisiez en sorte de venir camper avec nous, nous serions ravies.\nIf you could manage to go camping with us, we'd be delighted.\tSi tu faisais en sorte de venir camper avec nous, nous serions ravies.\nIf you do this, you will regret it for the rest of your life.\tSi tu fais ça, tu le regretteras pour le restant de tes jours.\nIf you do this, you will regret it for the rest of your life.\tSi vous faites ça, vous le regretterez pour le restant de vos jours.\nIf you feed your dog properly, you can increase his lifespan.\tSi on nourrit son chien correctement, on peut accroître sa durée de vie.\nIf you feed your dog properly, you can increase his lifespan.\tSi tu nourris ton chien correctement, tu peux accroître sa durée de vie.\nIf you feed your dog properly, you can increase his lifespan.\tSi vous nourrissez votre chien correctement, vous pouvez accroître sa durée de vie.\nIf you had not eaten so much, you would not be so sleepy now.\tSi tu n'avais pas tant mangé, tu ne serais pas maintenant si endormi.\nIf you had not eaten so much, you would not be so sleepy now.\tSi tu n'avais pas tant mangé, tu ne serais pas maintenant si endormie.\nIf you keep on drinking like that, you'll be drunk very soon.\tSi tu continues à boire comme cela, tu seras bientôt saoul.\nIf you leave now, I'm sure you'll be caught in a traffic jam.\tSi tu pars maintenant, tu vas certainement te retrouver dans les embouteillages.\nIf you need a change of pace, why don't you come for a visit?\tSi tu as besoin de changer de rythme, pourquoi ne viens-tu pas pour une visite ?\nIf you want something done right, you have to do it yourself.\tSi vous voulez que quelque chose soit fait correctement, vous devez le faire vous-même.\nIf you want to do good work, you should use the proper tools.\tSi on veut faire du bon travail on devrait employer les outils adéquats.\nIf you want to do good work, you should use the proper tools.\tSi vous voulez faire du bon travail vous devriez employer les outils adéquats.\nIn 1978 a peace treaty was concluded between Japan and China.\tEn 1978 un traité de paix fut signé entre le Japon et la Chine.\nIn November, olives are harvested from the trees to make oil.\tEn novembre, on récolte les olives sur les arbres pour produire de l'huile.\nIn retrospect, I probably shouldn't have gone there with her.\tEn y repensant, je n'aurais probablement pas dû aller là avec elle.\nIs it true that Boston is a popular destination for tourists?\tEst-ce vrai que Boston est une destination touristique populaire ?\nIt costs more to mint a penny than the penny itself is worth.\tÇa coûte plus cher de frapper un penny que ce que vaut un penny lui-même.\nIt doesn't matter to us if you take a photo from the outside.\tÇa nous est égal, si vous prenez une photo depuis l'extérieur.\nIt doesn't matter to us if you take a photo from the outside.\tÇa nous est égal, si tu prends une photo depuis l'extérieur.\nIt doesn't matter to us if you take a photo from the outside.\tÇa nous est égal que vous preniez une photo depuis l'extérieur.\nIt doesn't matter to us if you take a photo from the outside.\tÇa nous est égal que tu prennes une photo depuis l'extérieur.\nIt is generally hard to adapt to living in a foreign culture.\tIl est d'ordinaire difficile de s'adapter à la vie dans une culture étrangère.\nIt never occurred to me that he might be an escaped prisoner.\tIl ne m'est jamais venu à l'esprit qu'il pourrait être un prisonnier évadé.\nIt never occurred to me that the whole thing might be a scam.\tIl ne m'est jamais venu à l'esprit que toute l'affaire pouvait être une escroquerie.\nIt sounds to me as if he has something to do with the matter.\tÇa me parait comme s'il a quelque chose à voir avec l'affaire.\nIt was a pleasant day, but there were few people in the park.\tC'était une journée agréable, mais il y avait peu de monde dans le parc.\nIt was a very slow train. It stopped at every little station.\tC'était un train fort lent. Il s'est arrêté dans chaque petite gare.\nIt was entirely by chance that I found out what he was doing.\tCe fut tout à fait par hasard que j'ai su ce qu'il faisait.\nIt was in 1912 that the Titanic sank during her first voyage.\tC'est en 1912 que le Titanic a coulé lors de son premier voyage.\nIt would never have occurred to me to say anything like that.\tIl ne me serait jamais venu à l'esprit de dire quelque chose de la sorte.\nIt'll be a long time before she gets over her father's death.\tIl faudra du temps avant qu'elle ne surmonte la mort de son père.\nIt's about time the government did something about pollution.\tIl est temps que le gouvernement fasse quelque chose à propos de la pollution.\nIt's difficult to help people who can't admit they need help.\tC'est difficile d'aider des gens qui ne peuvent pas admettre qu'ils ont besoin d'aide.\nIt's important for us to think about the future of the world.\tIl est important pour nous de penser à l'avenir du monde.\nIt's not a secret that Tom's opinion is different than yours.\tCe n'est pas un secret que l'opinion de Tom est différente de la tienne.\nIt's only a fifteen minute bus ride from here to the airport.\tCela ne prend que quinze minutes en bus d'ici à l'aéroport.\nJapanese houses are built of wood and they catch fire easily.\tLes maisons japonaises sont faites en bois et prennent feu rapidement.\nJudging from the look of the sky, it may rain this afternoon.\tÀ en juger par le ciel, il est possible qu'il pleuve cet après-midi.\nJust by looking at your face, I know that you have good news.\tIl me suffit de regarder ton visage pour savoir que tu apportes de bonnes nouvelles.\nJust by looking at your face, I know that you have good news.\tEn regardant simplement ton visage, je sais que tu apportes de bonnes nouvelles.\nJust by looking at your face, I know that you have good news.\tRien qu'en regardant ton visage, je sais que tu as de bonnes nouvelles.\nJust by looking at your face, I know that you have good news.\tRien qu'en regardant votre visage, je sais que vous avez de bonnes nouvelles.\nLast night was very hot and muggy, so I didn't sleep so well.\tLa nuit dernière était très chaude et humide, je n'ai donc pas si bien dormi.\nLast night, I was so tired that I fell asleep with the TV on.\tLa nuit dernière, j'étais tellement fatigué que je me suis endormi avec la télé allumée.\nMany Americans still had money they had saved during the war.\tDe nombreux Étatsuniens disposaient toujours d'argent qu'ils avaient épargné durant la guerre.\nMany cancer patients lose their hair because of chemotherapy.\tDe nombreux patients atteints du cancer perdent leurs cheveux à cause de la chimiothérapie.\nMany students go to Europe for the purpose of studying music.\tBeaucoup d'étudiants vont en Europe pour étudier la musique.\nMary felt happy when she learned the results of the election.\tMaria fut enchantée quand elle sut les résultats des élections.\nMary looks like her mother, but her personality is different.\tMarie ressemble à sa mère mais elle a une personnalité différente.\nMaybe it would be better not to talk too much about the past.\tPeut-être valait-il mieux ne pas trop remuer le passé.\nMental exercise is particularly important for young children.\tL'exercice mental est particulièrement important pour les jeunes enfants.\nMicrosoft has a completely new operating system in the works.\tMicrosoft a un tout nouveau système d'exploitation dans ses cartons.\nMicrosoft has a completely new operating system in the works.\tMicrosoft a un tout nouveau système d'exploitation en préparation.\nMore than a third of the world population lives near a coast.\tPlus du tiers de la population mondiale vit près d'une côte.\nMost of us are much more interesting than the world suspects.\tLa plupart d'entre nous sommes plus intéressants que le monde ne le suspecte.\nMost of us are much more interesting than the world suspects.\tLa plupart d'entre nous sommes plus intéressantes que le monde ne le suspecte.\nMy children had eaten all the cookies by the time I got home.\tMes enfants avaient mangé tous les biscuits à l'heure où je suis rentré chez moi.\nMy fingers are so numb with cold that I can't play the piano.\tMes doigts sont tellement engourdis par le froid que je n'arrive pas à jouer du piano.\nMy grandfather on my mother's side passed away ten years ago.\tMon grand-père maternel est décédé il y a 10 ans.\nNo matter how fast you drive, you will not get there on time.\tAussi vite que tu conduises, tu n'y seras pas à temps.\nNo matter how fast you may walk, you can't catch up with him.\tQu'importe à quelle vitesse tu marches, tu ne peux pas le rattraper.\nNone of us want to go, but either you or your wife has to go.\tPersonne d'entre nous ne voudrait partir, mais soit vous, soit votre femme doit partir.\nNot a day seems to pass without newspapers reporting the war.\tPas un jour ne semble passer sans que les journaux ne rapportent la guerre.\nNow that you have finished your job, you are free to go home.\tMaintenant que vous avez fini votre travail, vous êtes libre de repartir chez vous.\nOf all the films I rented, this is the only one worth seeing.\tDe tous les films que j'ai loués, c'est le seul qui vaille la peine d'être vu.\nOf all the films I rented, this is the only one worth seeing.\tDe tous les films que j'ai loués, c'est le seul qui vaille la peine d'être visualisé.\nOf all the possible reasons, he chose the least expected one.\tDe toutes les raisons possibles, il choisit la moins probable.\nOn a first date, it's best to steer clear of touchy subjects.\tLors d'un premier rendez-vous, il est préférable de ne pas aborder des sujets délicats.\nOne moment, they were arguing and the next they were kissing.\tÀ un moment, ils étaient en train de se disputer, et au moment suivant, ils étaient en train de s'embrasser.\nOur mountains aren't really very high. Yours are much bigger.\tNos montagnes ne sont pas vraiment très hautes. Les vôtres sont beaucoup plus grandes.\nParents must look after the well-being of the their children.\tLes parents doivent veiller au bien-être de leurs enfants.\nPeople who go to bed early and get up early live a long time.\tLes gens qui vont tôt au lit et se lèvent tôt vivent longtemps.\nPlastics have taken the place of many conventional materials.\tLes plastiques ont pris la place de nombreux matériaux conventionnels.\nPlease call me as soon as possible when you arrive in London.\tS'il te plaît, appelle-moi le plus tôt possible quand tu arrives à Londres.\nPlease mail this letter on your next trip to the post office.\tVeuille poster cette lettre lors de ton prochain passage au bureau de poste.\nPlease mail this letter on your next trip to the post office.\tVeuillez poster cette lettre lors de votre prochain passage au bureau de poste.\nPlease mail this letter on your next trip to the post office.\tPoste cette lettre lors de ton prochain passage au bureau de poste, s'il te plait.\nPortugal has decriminalized the personal possession of drugs.\tLe Portugal a dépénalisé la possession de drogues à usage personnel.\nProtesters were picketing outside the company's headquarters.\tLes protestataires faisaient le piquet à l'extérieur du siège de la société.\nRecently, they have not been giving her her paycheck on time.\tDernièrement, ils ne lui donnent pas sa paie à temps.\nRosa Parks refused to give up her seat for a white passenger.\tRosa Parks refusa de laisser son siège à un passager blanc.\nScientists are fighting to stem the spread of the AIDS virus.\tLes scientifiques se démènent pour arrêter la propagation du virus du sida.\nSeveral dozen young people participated in the demonstration.\tPlusieurs dizaines de jeunes gens participèrent à la manifestation.\nShe advised him not to spend all his money on his girlfriend.\tElle lui recommanda de ne pas dépenser tout son argent pour sa petite amie.\nShe advised him not to spend all his money on his girlfriend.\tElle lui a recommandé de ne pas claquer tout son argent pour sa petite copine.\nShe exuded nothing but confidence going into the final round.\tRien n'émanait d'elle autre que la confiance en allant en phase finale.\nShe got into hot water when her boyfriend called her at work.\tElle a eu des ennuis quand son petit-ami l'a appelée au travail.\nShe had a real talent for smoothing over troubled situations.\tElle avait un vrai talent pour aplanir les situations à problèmes.\nShe has a real knack for getting people to do what she wants.\tElle a un vrai talent pour faire faire aux gens ce qu'elle veut.\nShe looked for her children, but couldn't find them anywhere.\tElle chercha ses enfants mais ne put les trouver nulle part.\nShe perused a magazine while waiting for her date to show up.\tElle consulta un magazine en attendant que son rendez-vous se montre.\nShe promised to meet him last night, but she never showed up.\tElle avait promis de le rencontrer la nuit dernière, mais elle ne s'est jamais pointée.\nShe speaks Hebrew with her mother and Polish with her father.\tElle parle hébreu avec sa mère et polonais avec son père.\nShe tossed me grapes and I tried to catch them with my mouth.\tElle me lançait les raisins et j'essayais de les attraper avec la bouche.\nShe visited the old man in the hospital every day but Sunday.\tElle rendait visite au vieil homme à l’hôpital tous les jours sauf le dimanche.\nSince it was raining, we had to eat our picnic lunch indoors.\tComme il pleuvait, nous dûmes manger notre pique-nique à l'intérieur.\nSince it was raining, we had to eat our picnic lunch indoors.\tComme il pleuvait, nous avons dû manger notre pique-nique à l'intérieur.\nSmall businesses will have to tighten their belts to survive.\tLes petites entreprises devront se serrer la ceinture pour survivre.\nSome people look down on others because they have less money.\tCertaines personnes regardent de haut les autres pour la simple raison qu'elles n'ont pas autant d'argent qu'eux.\nSome people think that advertising is a form of brainwashing.\tCertains pensent que la pub est une forme de lavage de cerveaux.\nSomething must be done immediately to deal with this problem.\tIl faut faire quelque chose immédiatement pour régler ce problème.\nSteel production will increase 2% this month from last month.\tLa production d'acier augmentera de 2% ce mois-ci comparé au précédent.\nTeachers should never make fun of students who make mistakes.\tLes enseignants ne devraient jamais se moquer des élèves qui commettent des fautes.\nThat's strange. I could have sworn that I'd locked this door.\tC'est étrange. J'aurais pu jurer que j'avais verrouillé cette porte.\nThe African elephant has bigger ears than the Asian elephant.\tL'éléphant d'Afrique est doté d'oreilles plus grandes que l'éléphant d'Asie.\nThe British had military bases along New York's Hudson River.\tLes Britanniques disposaient de bases militaires le long de la rivière Hudson à New-York.\nThe British people turned to a new leader, Winston Churchill.\tLe peuple britannique se tourna vers un nouveau leader : Winston Churchill.\nThe angry mob overturned cars and smashed storefront windows.\tLa foule en colère retourna des voitures et brisa des vitrines.\nThe boy was absent from school yesterday because he was sick.\tLe garçon était absent de l'école, hier, parce qu'il était malade.\nThe child was told to apologize for being rude to the guests.\tL'enfant fut prié de présenter ses excuses pour avoir été grossier envers les invités.\nThe class was too big so we split up into two smaller groups.\tLa classe était trop grande alors nous nous sommes séparés en deux groupes plus petits.\nThe conference is to be held in Tokyo the day after tomorrow.\tLa conférence aura lieu à Tokyo après-demain.\nThe crocodile trapped the gnu as it tried to cross the river.\tLe crocodile captura le gnou alors qu'il tentait de traverser la rivière.\nThe development of the computer industry has been very rapid.\tLe développement de l'industrie informatique a été très rapide.\nThe doctor advised me to take up some sport to stay in shape.\tLe médecin m'a recommandé de me mettre à faire un peu de sport pour rester en forme.\nThe dog bared its fangs and growled as I approached the gate.\tLe chien montra les crocs et grogna tandis que j'approchai du portail.\nThe farmer caught the boy stealing the apples in his orchard.\tLe fermier a surpris le garçon en train de voler les pommes dans son verger.\nThe flimsy stalls in this restroom offer very little privacy.\tLes minces parois de ces pissotières offrent une intimité très limitée.\nThe foreman docked me an hour's pay for getting to work late.\tLe contremaître m'a retenu une heure de salaire pour être arrivé en retard au travail.\nThe foreman docked me an hour's pay for getting to work late.\tLe contremaître m'a retenu une heure de salaire pour être arrivée en retard au travail.\nThe gardener planted a rose tree in the middle of the garden.\tLe jardinier planta un rosier au milieu du jardin.\nThe higher he rose in social rank, the more modest he became.\tIl est devenu de plus en plus humble alors qu'il montait l'échelle sociale.\nThe higher he rose in social rank, the more modest he became.\tPlus il gravissait l'échelle sociale, plus modeste il devenait.\nThe lovers fell into each other's arms every chance they got.\tLes amoureux tombaient dans les bras l'un de l'autre à chaque occasion qui leur était donnée.\nThe man did not so much as apologize for stepping on my foot.\tCet homme n'a même pas pris la peine de s'excuser de m'avoir marché sur le pied.\nThe most incredible thing about miracles is that they happen.\tLa chose la plus incroyable avec les miracles, c'est qu'ils se produisent.\nThe mystery surrounding his death was played up by the media.\tLe mystère entourant sa mort fut exagéré par les médias.\nThe next day, at suppertime, I was introduced to her husband.\tLe jour suivant, à l'heure du souper, je fus présenté à son époux.\nThe old church on the hill dates back to the twelfth century.\tLa vieille église sur la colline date du douzième siècle.\nThe old houses were torn down to make room for a supermarket.\tLes vieilles maisons furent détruites pour faire place à un supermarché.\nThe old man spent most of his time looking back on his youth.\tLe vieil homme passait la plupart de son temps à se remémorer sa jeunesse.\nThe only one who enjoys a crowded subway car is a pickpocket.\tLe seul qui aime les rames de métro bondées, c'est le pickpocket.\nThe person reading a book on the bench under the tree is Tom.\tLa personne en train de lire un livre sur le banc sous l'arbre est Tom.\nThe police dog found trace amounts of cocaine in his luggage.\tLe chien policier trouva des traces de cocaïne dans ses bagages.\nThe president is expected to put forward a new energy policy.\tOn s'attend à ce que le président propose une nouvelle politique énergétique.\nThe readers cannot ascertain whether the news is true or not.\tLes lecteurs ne peuvent pas êtres sûrs que les nouvelles soient vraies ou non.\nThe results of a lie detector test are inadmissible in court.\tLes résultats d'un détecteur de mensonges ne sont pas admis au tribunal.\nThe rights of the individual are important in a free society.\tLes droits des individus sont importants dans une société libre.\nThe room was so dark that we had to feel our way to the door.\tLa pièce était si sombre que nous dûmes chercher la porte à tâtons.\nThe scarecrow in the backyard fell over during the hurricane.\tL'épouvantail dans la cour est tombé durant l'ouragan.\nThe severely injured man was dead on arrival at the hospital.\tL'homme grièvement blessé était mort à son arrivée à l'hôpital.\nThe sooner we get there, the more likely are we to get seats.\tPlus tôt nous arriverons, plus nous aurons de chances d'avoir des places assises.\nThe story of a great flood is very common in world mythology.\tL'histoire d'une grande inondation est très répandue dans la mythologie mondiale.\nThe tall guy smoking a cigar over there is a famous director.\tLe grand mec en train de fumer un cigare là-bas est un réalisateur célèbre.\nThe teacher has given Tom permission to do whatever he wants.\tLe professeur a donné à Tom la permission de faire tout ce qu'il désire.\nThe war has taken a terrible toll on the civilian population.\tLa population civile a versé un lourd tribut à la guerre.\nTheir communication may be much more complex than we thought.\tIl se peut que leur communication soit beaucoup plus complexe que nous le pensions.\nThere is no sense in your worrying about your health so much.\tAutant te préoccuper de ta santé n'a pas de sens.\nThere is no sense in your worrying about your health so much.\tAutant vous préoccuper de votre santé n'a pas de sens.\nThere was a traffic accident in front of the house yesterday.\tIl y a eu hier un accident devant la maison.\nThere were many things that we simply didn't have time to do.\tIl y avait de nombreuses choses que nous n'avions simplement pas le temps de faire.\nThey built their empire in Peru about five hundred years ago.\tIls ont bâti leur empire au Pérou il y a environ cinq cents ans.\nThey said there was not enough time for a full investigation.\tIls dirent qu'il n'y avait pas assez de temps pour une enquête approfondie.\nThey said there was not enough time for a full investigation.\tElles déclarèrent qu'il n'y avait pas assez de temps pour une enquête approfondie.\nThey wanted to oust the communist government of Fidel Castro.\tIls voulaient évincer le gouvernement communiste de Fidel Castro.\nThey wanted to win the war quickly and return to normal life.\tIls voulaient rapidement gagner la guerre et retourner à une vie normale.\nThey worked each day from the time the sun rose until it set.\tIls travaillaient tous les jours à partir du moment où le soleil se levait jusqu'à ce qu'il se couche.\nThey worked each day from the time the sun rose until it set.\tElles travaillèrent tous les jours à partir du moment où le soleil se levait jusqu'à ce qu'il se couche.\nThis airplane is capable of carrying 40 passengers at a time.\tCet avion est capable de transporter 40 personnes à la fois.\nThis child solved the complicated mathematics problem easily.\tCet enfant a résolu facilement ce problème mathématique compliqué.\nThis company uses cheap labor to increase its profit margins.\tCette entreprise emploie de la main d'œuvre à bas coût afin d'accroître ses marges bénéficiaires.\nThis ring is a magic item that gives great power to its user.\tCet anneau est un objet magique qui donne un grand pouvoir à celui qui l'utilise.\nThose who work hard find unexpected opportunities to succeed.\tCeux qui travaillent dur découvrent des occasions inattendues de réussir.\nTom can't play a high G on his trumpet, but he can play an F.\tTom ne sait pas jouer un sol aigu à la trompette, mais il peut faire un fa.\nTom didn't really feel like going out drinking with the guys.\tTom n'avait pas franchement envie de sortir boire un verre avec les autres.\nTom doesn't know whether Mary will come by car or by bicycle.\tTom ne sait pas si Marie va venir en voiture ou en vélo.\nTom doesn't think he'll be able to finish the job by himself.\tTom ne pense pas qu'il sera capable de finir le travail tout seul.\nTom expected to leave early in the morning, but he overslept.\tTom pensait partir de bonne heure le matin, mais il a trop dormi.\nTom is utterly obsessed with food. No wonder Mary dumped him!\tTom est complètement obsédé par la bouffe. Pas étonnant que Mary l'ait largué !\nTom lived in his car for a while after he broke up with Mary.\tTom a vécu dans sa voiture un moment après avoir rompu avec Mary.\nTom says he might dye his goatee red and green for Christmas.\tTom dit qu'il pourrait teindre son bouc en rouge et vert pour Noël.\nTom wants desperately to believe that what Mary said is true.\tTom veut désespérément croire que ce qu'a dit Mary est vrai.\nTom wasn't stupid enough to tell Mary what he really thought.\tTom n'était pas assez stupide pour dire à Mary ce qu'il pensait vraiment.\nUnless it's something fairly impressive, I won't remember it.\tÀ moins que ce soit quelque chose d'assez impressionnant, je ne m'en souviendrai pas.\nUnusually warm weather caused problems for the apple harvest.\tLe temps anormalement chaud engendre des problèmes pour la récolte de pommes.\nWe associate the name of Darwin with the theory of evolution.\tNous associons le nom de Darwin à la théorie de l'évolution.\nWe could have our tea in the garden, were it a little warmer.\tS’il avait fait un peu plus chaud, nous aurions pu prendre un thé au jardin.\nWe danced to the music for hours until we were all exhausted.\tNous avons dansé au son de la musique pendant des heures jusqu'à ce que nous soyons tous épuisés.\nWe hired a company to get rid of the insects under our house.\tNous avons eu recours à une entreprise pour nous débarrasser des insectes sous notre maison.\nWe miss you and are really looking forward to you being here.\tTu nous manques et nous avons hâte que tu sois ici.\nWe must try to preserve the remains of ancient civilizations.\tNous devons essayer de préserver les vestiges des anciennes civilisations.\nWe need someone to keep an eye on our baby while we are away.\tNous avons besoin de quelqu'un pour surveiller notre bébé pendant que nous sommes absents.\nWe think the reason for his success was because of hard work.\tNous pensons que c'est grâce à son travail acharné qu'il a réussi.\nWe'd like to give this to you as a token of our appreciation.\tNous aimerions vous remettre ceci en témoignage de notre reconnaissance.\nWe'll always have to be careful not to let this happen again.\tIl nous faudra toujours être attentifs à ne pas laisser ceci se reproduire.\nWe'll need to amend the contract so that we can pay you more.\tNous devrons réviser le contrat de manière à pouvoir vous payer davantage.\nWe've been talking about this for hours. Can we just drop it?\tÇa fait des heures que nous discutons de ça. Pouvons-nous simplement laisser tomber ?\nWhat's a beautiful woman like you doing in a place like this?\tQu'est-ce qu'une belle femme comme vous fait dans un endroit pareil ?\nWhen we arrived at the stadium, the game had already started.\tLorsque nous arrivâmes au stade, la partie avait déjà commencé.\nWith the T.V. on, how can you keep your mind on your studies?\tComment veux-tu te concentrer sur tes devoirs avec la télé allumée ?\nWithout a passport, leaving a country is out of the question.\tSans passeport, il est hors de question de quitter le pays.\nWithout your help, we wouldn't be able to carry out our plan.\tSans votre aide, nous ne serions pas en mesure de mener à bien notre plan.\nWithout your help, we wouldn't be able to carry out our plan.\tSans ton aide, nous ne serions pas en mesure de dérouler notre plan.\nWould you look after my children while I am away on vacation?\tPourriez-vous vous occuper de mes enfants quand je serai parti en vacances ?\nWritten in easy English, this book is suitable for beginners.\tÉcrit dans un anglais facile, ce livre est convenable aux débutants.\nYou can tell what a person is like by looking at his friends.\tTu peux dire comment est une personne en regardant ses amis.\nYou can't imagine what my life's been like since you've left.\tTu ne peux pas imaginer ce que ma vie a été depuis que tu es parti.\nYou can't imagine what my life's been like since you've left.\tTu ne peux pas imaginer ce que ma vie a été depuis que tu es partie.\nYou can't imagine what my life's been like since you've left.\tVous ne pouvez pas imaginer ce que ma vie a été depuis que vous êtes parti.\nYou can't imagine what my life's been like since you've left.\tVous ne pouvez pas imaginer ce que ma vie a été depuis que vous êtes partie.\nYou can't imagine what my life's been like since you've left.\tVous ne pouvez pas imaginer ce que ma vie a été depuis que vous êtes partis.\nYou can't imagine what my life's been like since you've left.\tVous ne pouvez pas imaginer ce que ma vie a été depuis que vous êtes parties.\nYou can't just come in here and start ordering people around.\tVous ne pouvez pas juste venir ici et commencer à donner des ordres aux gens à la ronde.\nYou can't just come in here and start ordering people around.\tTu ne peux pas juste venir ici et commencer à donner des ordres aux gens alentour.\nYou can't just not pay someone for work you hired them to do.\tVous ne pouvez tout simplement pas ne pas payer quelqu'un pour le travail pour lequel vous l'avez engagé.\nYou can't just not pay someone for work you hired them to do.\tTu ne peux tout simplement pas ne pas payer quelqu'un pour le travail pour lequel tu l'as engagé.\nYou can't learn a foreign language in just a couple of weeks.\tTu ne peux pas apprendre une langue étrangère en deux semaines seulement.\nYou don't have to read the whole thing from beginning to end.\tIl ne te faut pas lire tout le truc du début à la fin.\nYou don't have to read the whole thing from beginning to end.\tIl ne vous faut pas lire tout le truc du début à la fin.\nYou should make sure of the facts before you write something.\tTu devrais t'assurer des faits avant d'écrire quelque chose.\nYou should spend a little time each day reviewing vocabulary.\tVous devriez passer un peu de temps chaque jour à revoir du vocabulaire.\nYou should spend a little time each day reviewing vocabulary.\tTu devrais passer un peu de temps chaque jour à revoir du vocabulaire.\nYou should spend a little time each day reviewing vocabulary.\tOn devrait passer un peu de temps chaque jour à revoir du vocabulaire.\nYou shouldn't always do what everyone else seems to be doing.\tOn ne doit pas toujours faire ce que tous les autres semblent être en train de faire.\nYou're supposed to help your friends when they're in trouble.\tOn est supposé aider ses amis lorsqu'ils ont des ennuis.\nYou're supposed to help your friends when they're in trouble.\tTu es supposé aider tes amis lorsqu'ils ont des ennuis.\nYou're supposed to help your friends when they're in trouble.\tTu es supposée aider tes amis lorsqu'ils ont des ennuis.\nYou're supposed to help your friends when they're in trouble.\tTu es supposé aider tes amis lorsqu'ils sont dans le pétrin.\nYou're supposed to help your friends when they're in trouble.\tVous êtes supposés aider vos amis lorsqu'ils ont des ennuis.\nYou're supposed to help your friends when they're in trouble.\tVous êtes supposés aider vos amies lorsqu'elles ont des ennuis.\nYou're supposed to help your friends when they're in trouble.\tVous êtes supposées aider vos amies lorsqu'elles ont des ennuis.\nYou're supposed to help your friends when they're in trouble.\tTu es supposée aider tes amies lorsqu'elles ont des ennuis.\nYou're supposed to help your friends when they're in trouble.\tTu es supposé aider tes amies lorsqu'elles ont des ennuis.\nYou're supposed to help your friends when they're in trouble.\tOn est supposé aider ses amis lorsqu'ils sont dans le pétrin.\nYou're supposed to help your friends when they're in trouble.\tOn est supposé aider ses amis lorsqu'ils sont dans la mouise.\nYour mother will repeat it to you as many times as necessary.\tTa mère te le répétera autant de fois que nécessaire.\n\"Did you find any dirt on him?\" \"No, he's clean as a whistle.\"\t«Avez-vous trouvé un quelconque ragot à son propos ?» «Non, il est clair comme l'eau pure.»\n\"I can't bear to be doing nothing!\" you often hear people say.\t« Je ne supporte pas de ne rien faire ! » entend-on souvent les gens dire.\n\"What's happening in the cave? I'm curious.\" \"I have no idea.\"\t« Qu'est-ce qu'il se passe dans la grotte ? Je suis curieux. » « Je n'en ai aucune idée. »\nA GPS device can pinpoint your location anywhere in the world.\tUn appareil de géo-localisation peut déterminer votre position n'importe où dans le monde.\nA GPS device can pinpoint your location anywhere in the world.\tUn appareil de positionnement par satellite peut déterminer votre position n'importe où dans le monde.\nA bat hunts food and eats at night, but sleeps during the day.\tUne chauve-souris chasse et mange la nuit, mais dort la journée.\nA doctor tried to remove the bullet from the president's head.\tUn médecin tenta de retirer la balle de la tête du président.\nA mere glance is not enough for us to tell one from the other.\tOn n'arrive pas à les dissocier au premier coup d'œil.\nA trip to America was equivalent to a two-year salary for her.\tUn voyage en Amérique était l'équivalent d'un salaire de deux ans pour elle.\nAfter a little time off, I plan to go on another concert tour.\tAprès un peu de congés, je prévois de partir pour une nouvelle tournée de concerts.\nAfter the fire, the smell of smoke in the air lasted for days.\tAprès l'incendie, l'odeur de fumée dans l'air persista pendant des jours.\nAfter the fire, the smell of smoke in the air lasted for days.\tAprès l'incendie, l'odeur de fumée dans l'air persista des jours durant.\nAfter they argued, they didn't speak to each other for a week.\tAprès leur dispute, ils ne se parlèrent plus pendant une semaine.\nAll his hopes evaporated when he lost his only son in the war.\tTous ses espoirs sont partis en fumée quand il a perdu son fils pendant la guerre.\nAll you have to do is take advantage of this rare opportunity.\tTout ce que vous devez faire, c'est tirer profit de cette occasion rare.\nAlthough he thought he was helping us, he was only in the way.\tBien qu'il pensât nous aider, il ne faisait qu'être dans nos pattes.\nAmong the guests invited to the party were two foreign ladies.\tParmi les invités à la fête, il y avait deux étrangères.\nAre you sure you don't want to live at home with your parents?\tEtes-vous sûr que vous ne voulez pas vivre à la maison avec vos parents ?\nAs soon as I can afford it, I plan to travel around the world.\tDès que j'en ai les moyens, je prévois de voyager autour du monde.\nAs soon as I can afford it, I plan to travel around the world.\tDès que je peux me le permettre, je prévois de voyager autour du monde.\nAs we ate our meal, we talked about what we had done that day.\tEn mangeant notre repas, nous parlâmes de ce que nous avions fait ce jour-là.\nAs we ate our meal, we talked about what we had done that day.\tEn mangeant notre repas, nous discutâmes de ce que nous avions fait ce jour-là.\nAs we ate our meal, we talked about what we had done that day.\tEn mangeant notre repas, nous avons parlé de ce que nous avions fait ce jour-là.\nAs we ate our meal, we talked about what we had done that day.\tEn mangeant notre repas, nous avons discuté de ce que nous avions fait ce jour-là.\nBefore we begin, a number of preliminary remarks are in order.\tAvant que nous commencions, un certain nombre de remarques préliminaires sont nécessaires.\nBefore you go to visit him, you should make sure he's at home.\tAvant d'aller lui rendre visite, vous devriez vous assurer qu'il se trouve à son domicile.\nBefore you go to visit him, you should make sure he's at home.\tAvant d'aller lui rendre visite, tu devrais t'assurer qu'il est chez lui.\nBetween you and me, Tom's idea doesn't appeal to me very much.\tEntre toi et moi, l'idée de Tom ne m'attire pas beaucoup.\nBurj Khalifa is currently the tallest skyscraper in the world.\tLe Burj Khalifa est actuellement le plus grand gratte-ciel du monde.\nCan we really learn to speak a foreign language like a native?\tPeut-on vraiment apprendre à parler une langue comme un locuteur natif ?\nCould you please tell me again what school you graduated from?\tPourriez-vous me répéter de quelle école vous êtes diplômé ?\nCould you please tell me again what school you graduated from?\tPourriez-vous me répéter de quelle école vous êtes diplômée ?\nCould you please tell me again what school you graduated from?\tPourrais-tu me répéter de quelle école tu es diplômé ?\nCould you please tell me again what school you graduated from?\tPourrais-tu me répéter de quelle école tu es diplômée ?\nCould you please tell me again what school you graduated from?\tPourriez-vous me répéter de quelle école vous êtes diplômées ?\nCould you please tell me again what school you graduated from?\tPourriez-vous me répéter de quelle école vous êtes diplômés ?\nDid she ever confide in you about the problems she was having?\tS'est-elle jamais confiée à vous au sujet des problèmes qu'elle endurait ?\nDon't ask questions that you don't want to know the answer to.\tNe posez pas de questions dont vous ne voulez pas connaître la réponse.\nDon't ask questions that you don't want to know the answer to.\tNe pose pas de questions dont tu ne veux pas connaître la réponse.\nDon't you know how dangerous it is to go swimming by yourself?\tNe sais-tu pas combien il est dangereux d'aller nager seul ?\nDon't you know how dangerous it is to go swimming by yourself?\tNe sais-tu pas combien il est dangereux d'aller nager seule ?\nDon't you know how dangerous it is to go swimming by yourself?\tNe savez-vous pas combien il est dangereux d'aller nager seul ?\nDon't you think it might be a bit too expensive for us to buy?\tNe pensez-vous pas que ça pourrait être un peu trop cher pour que nous l'achetions ?\nDon't you think it might be a bit too expensive for us to buy?\tNe penses-tu pas que ça pourrait être un peu trop cher pour que nous l'achetions ?\nElephants in Thailand are as common as kangaroos in Australia.\tLes éléphants en Thaïlande sont aussi courants que les kangourous en Australie.\nEver since she fell in the kitchen, she hasn't been all there.\tDepuis sa chute dans la cuisine, elle n'a plus toute sa tête.\nGet off at the next stop and take a bus headed to the airport.\tDescends au prochain arrêt et prends un bus à destination de l'aéroport.\nGet off at the next stop and take a bus headed to the airport.\tDescendez au prochain arrêt et prenez un bus à destination de l'aéroport.\nGood afternoon. You are our new neighbor, if I'm not mistaken?\tBonjour. Vous êtes notre nouveau voisin, si je ne me trompe ?\nHe did it, and what was more surprising, he did it by himself.\tIl l'a fait, et, ce qui est plus surprenant, il l'a fait seul.\nHe doesn't like to wait until the last moment to do something.\tIl n'aime pas attendre jusqu'au dernier moment pour faire quelque chose.\nHe entered the university after failing the examination twice.\tIl entra à l'université après avoir échoué deux fois à l'examen.\nHe has a reputation for taking a long time to make a decision.\tIl a la réputation de prendre son temps pour prendre une décision.\nHe is in danger of losing his position unless he works harder.\tS'il ne travaille pas plus assidûment, il y a possibilité qu'il perde sa place.\nHe is not much better, and there is a little hope of recovery.\tIl ne va pas mieux et il y a peu de chance de guérison.\nHe promised to help me, but at the last minute he let me down.\tIl promit de m'aider, mais à la dernière minute me laissa tomber.\nHe stubbed out his cigar in the ashtray and stood up to leave.\tIl écrabouilla son cigare dans le cendrier et se leva pour partir.\nHe told me that whatever might happen, he was prepared for it.\tIl m'a dit que, quoi qu'il puisse arriver, il y était préparé.\nHe told me that whatever might happen, he was prepared for it.\tIl me dit que, quoi qu'il arrive, il était prêt.\nHe wanted to see his boss in Tokyo before leaving for America.\tIl voulait voir son chef à Tokyo avant de partir pour l'Amérique.\nHe whittled the stick to a sharp point with his hunting knife.\tIl tailla le bâton en une pointe acérée, à l'aide de son couteau de chasse.\nHe will leave for the station an hour before the train leaves.\tIl partira pour la gare une heure avant que le train ne parte.\nHow long are you going to be seeing that loser of a boyfriend?\tTu vas continuer à voir ton idiot de petit ami encore combien de temps ?\nHow long are you going to keep giving me the silent treatment?\tDurant combien de temps vas-tu garder le silence à mon égard ?\nHow long are you going to keep giving me the silent treatment?\tDurant combien de temps allez-vous garder le silence à mon égard ?\nHow much longer do you think it'll be until it starts raining?\tCombien de temps pensez-vous qu'il y ait jusqu'à ce qu'il se mette à pleuvoir ?\nHow much time do you actually spend thinking about the future?\tCombien de temps passez-vous réellement à réfléchir à l'avenir ?\nHow much time do you actually spend thinking about the future?\tCombien de temps passes-tu réellement à réfléchir à l'avenir ?\nI bought an English book, but the book was hard to understand.\tJ'ai acheté un livre en anglais, mais il est dur à comprendre.\nI considered changing my job, but in the end I decided not to.\tJ'ai envisagé de changer de travail, mais au final j'ai décidé de ne pas le faire.\nI could feel nothing but the knife as it plunged into my back.\tJe ne pouvais rien sentir d'autre que le couteau, tandis qu'il s'enfonçait dans mon dos.\nI didn't have much time so I just skimmed through the article.\tJe n'avais pas beaucoup de temps, j'ai donc juste parcouru l'article.\nI didn't have to open the letter. I knew exactly what it said.\tJe n'eus pas besoin d'ouvrir la lettre. Je savais exactement ce qu'elle disait.\nI don't care if the early bird gets the worm, I want to sleep.\tJe me fiche que l'avenir appartienne à ceux qui se lèvent, je veux dormir.\nI don't suppose you ever really get over the death of a child.\tJe ne pense pas qu'on puisse jamais surmonter la mort d'un enfant.\nI got up earlier than usual in order to catch the first train.\tJe me suis levé plus tôt que d'habitude afin d'attraper le premier train.\nI got up earlier than usual in order to catch the first train.\tJe me suis levée plus tôt que d'habitude afin d'attraper le premier train.\nI had a few hours free, so I sat under a tree and read a book.\tJe disposai de quelques heures de libres, aussi je m'assis sous un arbre et lus un livre.\nI had hardly gotten into bed when the telephone began to ring.\tJe venais de me mettre au lit quand le téléphone commença à sonner.\nI have not yet collected sufficient materials to write a book.\tJe n'ai pas encore réuni suffisamment de contenu pour écrire un livre.\nI haven't decided yet whether I'll go to college or get a job.\tJe n'ai pas encore décidé si j'irai à l'université ou si je prendrai un emploi.\nI heard that a South American camper was eaten by an anaconda.\tJ'ai entendu dire qu'un campeur sud-américain a été mangé par un anaconda.\nI know it's going to be unpleasant to talk about the accident.\tJe sais que ça va être désagréable de parler de l'accident.\nI really appreciate your offer to help me clean out my garage.\tJe vous suis vraiment reconnaissant pour votre proposition de m'aider à nettoyer mon garage.\nI really appreciate your offer to help me clean out my garage.\tJe vous suis vraiment reconnaissante pour votre proposition de m'aider à nettoyer mon garage.\nI really appreciate your offer to help me clean out my garage.\tJe te suis vraiment reconnaissant pour ta proposition de m'aider à nettoyer mon garage.\nI really appreciate your offer to help me clean out my garage.\tJe te suis vraiment reconnaissante pour ta proposition de m'aider à nettoyer mon garage.\nI regret to inform you that your application has been refused.\tJ'ai le regret de vous informer que votre candidature a été rejetée.\nI remember playing the original Pac-Man game when I was a kid.\tJe me rappelle en train de jouer au jeu Pac-Man d'origine, quand j'étais enfant.\nI should have tried out this electric shaver before buying it.\tJ'aurais dû essayer ce rasoir électrique avant de l'acheter.\nI sincerely hope that you will soon recover from your illness.\tJ'espère sincèrement que tu te remettras bientôt de ta maladie.\nI sincerely hope that you will soon recover from your illness.\tJ'espère sincèrement que vous vous remettrez bientôt de votre maladie.\nI started to learn English with the aim of becoming a teacher.\tJ'ai commencé à apprendre l'anglais dans le but de devenir enseignant.\nI think it's time for me to buy my daughter a decent computer.\tJe pense qu'il est temps que je fasse l'acquisition d'un ordinateur digne de ce nom pour ma fille.\nI think we need to be very careful not to hurt Tom's feelings.\tJe pense que nous devons faire très attention à ne pas heurter la sensibilité de Thomas.\nI think you need to spend a little more time on your homework.\tJe pense que vous avez besoin de passer un peu plus de temps à vos devoirs.\nI think you need to spend a little more time on your homework.\tJe pense que tu as besoin de passer un peu plus de temps à tes devoirs.\nI thought it might be better to tell you now instead of later.\tJ'ai pensé qu'il pourrait être préférable de vous le dire maintenant au lieu de plus tard.\nI thought it might be better to tell you now instead of later.\tJ'ai pensé qu'il pourrait être préférable de te le dire maintenant au lieu de plus tard.\nI thought it might be nice for us to spend some time together.\tJ'ai pensé que ça serait chouette que nous passions un peu de temps ensemble.\nI thought you might like to know who's coming over for dinner.\tJe pensais que vous pourriez apprécier de savoir qui vient dîner.\nI thought you might like to know who's coming over for dinner.\tJe pensais que vous pourriez apprécier de savoir qui vient souper.\nI thought you might like to know who's coming over for dinner.\tJe pensais que vous pourriez apprécier de savoir qui vient déjeuner.\nI thought you might like to know who's coming over for dinner.\tJe pensais que tu apprécierais peut-être de savoir qui vient dîner.\nI thought you might like to know who's coming over for dinner.\tJe pensais que tu apprécierais peut-être de savoir qui vient souper.\nI thought you might like to know who's coming over for dinner.\tJe pensais que tu apprécierais peut-être de savoir qui vient déjeuner.\nI was sitting next to a man who clearly had a lot on his mind.\tJ'étais assis à côté d'un homme qui avait à l'évidence de nombreuses choses en tête.\nI was sitting next to a man who clearly had a lot on his mind.\tJ'étais assise à côté d'un homme qui avait à l'évidence de nombreuses choses en tête.\nI would love to come with you all, but I don't have any money.\tJ'aimerais beaucoup venir avec vous mais je n'ai pas d'argent.\nI would rather go to the art museum than to the movie theater.\tJe préfère aller au musée des arts plutôt qu'au cinéma.\nI'd been on my own all week and was starving for conversation.\tJ'avais été seul toute la semaine et je languissais d'une conversation.\nI'd been on my own all week and was starving for conversation.\tJ'avais été seule toute la semaine et je languissais d'une conversation.\nI'd like to help, but I've got an important meeting to attend.\tJ'aimerais donner un coup de main mais je dois assister à une réunion importante.\nI'd like to study in China to improve the level of my Chinese.\tJe souhaite aller étudier en Chine afin d'améliorer mon niveau de chinois.\nI'd love to be able to spend less time doing household chores.\tJ'adorerais être capable de passer moins de temps à faire des tâches ménagères.\nI'd love to be able to spend less time doing household chores.\tJ'adorerais être capable de consacrer moins de temps à exécuter des tâches ménagères.\nI'm looking forward to meeting you all after such a long time.\tJ’ai hâte de vous revoir tous après tout ce temps.\nI've got a lot of friends at the Department of Motor Vehicles.\tJ'ai de nombreux amis à la Préfecture.\nIf I knew how to use a computer, maybe they would pay me more.\tSi je savais me servir d'un ordinateur, peut-être me paieraient-ils davantage.\nIf I knew how to use a computer, maybe they would pay me more.\tSi je savais me servir d'un ordinateur, peut-être me paieraient-elles davantage.\nIf anyone were to talk to me like that, I would call a police.\tSi quelqu'un me parlait de la sorte, j’appellerais la police.\nIf by some chance it rains, the garden party won't take place.\tSi jamais il pleut, la fête champêtre n'aura pas lieu.\nIf he keeps threatening you, then you should go to the police.\tS'il continue à vous menacer, vous devriez aller à la police.\nIf he keeps threatening you, then you should go to the police.\tS'il continue à vous menacer, portez plainte.\nIf it hadn't been for the seatbelt, I wouldn't be alive today.\tSans la ceinture de sécurité, je ne serais pas vivant aujourd'hui.\nIf it were not for water, there would be no life on the earth.\tSi ce n'est grâce à l'eau, il n'y aurait pas de vie sur Terre.\nIf two people have the same opinion, one of them is redundant.\tSi deux personnes ont la même opinion, l'une d'elles est inutile.\nIf you don't get a move on, you'll end up missing your flight.\tSi tu ne te bouges pas, tu vas finir par louper ton vol.\nIf you have a fever, you should go to the hospital right away.\tSi tu as de la fièvre, il vaut mieux aller à l'hôpital tout de suite.\nIf you hit a patch of fog, slow down and put your blinkers on.\tSi tu te retrouves dans le brouillard, ralentis et allume tes clignotants.\nIf you teach me how to dance, I will show you my hidden scars.\tSi tu m’apprends à danser, je te montrerai mes cicatrices cachées.\nIn a democracy, it is important that the press be independent.\tEn démocratie, il est important que la presse soit indépendante.\nIn our society, there are both honorable people and swindlers.\tNotre société se compose de gens honorables et d'escrocs.\nIn the digital age, handwriting is slowly becoming a lost art.\tÀ l'ère numérique, l'écriture manuelle est lentement en train de devenir un art disparu.\nIs it the right place to sign up for foreign language courses?\tC'est bien ici qu'il faut s'inscrire pour les cours de langues étrangères ?\nIslam first reached China about the middle of the 7th century.\tL'islam est parvenu en Chine vers le milieu du septième siècle.\nIt has been raining on and off since the day before yesterday.\tIl a plu par intermittences depuis avant-hier.\nIt is becoming important for us to know how to use a computer.\tÇa devient important pour nous de savoir utiliser un ordinateur.\nIt is up to you to see to it that such a thing doesn't happen.\tIl vous appartient de faire en sorte qu'une telle chose n'arrive pas.\nIt took more than a month to get over my cold, but I'm OK now.\tCela m'a pris plus d'un mois pour me débarrasser de mon rhume, mais je vais bien maintenant.\nIt used to be that a girl could only marry if she had a dowry.\tIl était d'usage qu'une fille ne pouvait se marier que si elle disposait d'une dote.\nIt was a real challenge for us to go down the cliff on a rope.\tC'était pour nous toute une aventure de descendre la falaise en rappel.\nIt was not until yesterday that we noticed the animal missing.\tCe n'est qu'hier que nous avons constaté que l'animal avait disparu.\nIt was rather difficult for me to make out what he was saying.\tIl m'était plutôt difficile de distinguer ce qu'il disait.\nIt was the court's finding that the witness committed perjury.\tLa cour mit en évidence que le témoin avait commis un parjure.\nIt's about time somebody did something about this broken door.\tIl est temps que quelqu'un fasse quelque chose à propos de cette porte cassée.\nIt's better to take your time than to hurry and make mistakes.\tIl est préférable de prendre ton temps que de te précipiter et commettre des erreurs.\nJapan is now very different from what it was twenty years ago.\tLe Japon est actuellement très différent de ce qu'il était il y a vingt ans.\nJust as the Americans like baseball, the British like cricket.\tDe même que les Étasuniens aiment le base-ball, les Britanniques apprécient le cricket.\nJust when I was about to phone her, a letter arrived from her.\tJuste tandis que j'étais sur le point de lui téléphoner, une lettre d'elle est arrivée.\nLanguage is the means by which people communicate with others.\tLe langage est l'outil par lequel les gens communiquent avec les autres.\nLanguage is the means by which people communicate with others.\tLe langage est le moyen par lequel les gens communiquent entre eux.\nLanguage is the means by which people communicate with others.\tLe langage est le moyen par lequel les gens communiquent avec les autres.\nLast night my daughter didn’t come home until half past one.\tLa nuit dernière, ma fille n'est pas rentrée à la maison avant une heure et demie.\nLet me stop you right there. We don't want to hear about that.\tPermets-moi de t'arrêter à ce point. Nous ne voulons pas en entendre parler.\nLet me stop you right there. We don't want to hear about that.\tPermettez-moi de vous arrêter à ce point. Nous ne voulons pas en entendre parler.\nMany ethnic groups traditionally give money as a wedding gift.\tBeaucoup de groupes ethniques donnent de l'argent comme cadeau de mariage.\nMany ethnic groups traditionally give money as a wedding gift.\tAu sein de nombreux groupes ethniques, on offre traditionnellement de l'argent en guise de cadeau de mariage.\nMany foreign customs were introduced into Japan after the war.\tBeaucoup de coutumes étrangères furent introduites au Japon après la guerre.\nMany people put too much personal information on social media.\tBeaucoup de gens mettent trop d'informations personnelles sur les réseaux sociaux.\nMary is still as beautiful as she was when she was a teenager.\tMary est toujours aussi belle que quand elle était adolescente.\nMoses came down from the mountain bearing divine commandments.\tMoïse descendit de la montagne en portant les commandements divins.\nMost car accidents occur due to the inattention of the driver.\tLa plupart des accidents de voiture sont dus à l'inattention du conducteur.\nMusic and art can greatly contribute to the enjoyment of life.\tLa musique et l'art peuvent grandement contribuer au plaisir de vivre.\nMusic and art can greatly contribute to the enjoyment of life.\tLa musique et l'art peuvent grandement contribuer à la joie de vivre.\nMy car, which broke down yesterday, has not been repaired yet.\tMa voiture, qui est en panne depuis hier, n'a pas encore été réparée.\nMy cousin isn't the kind of person who'd ever break a promise.\tMon cousin n'est pas le genre de personne qui romprait jamais une promesse.\nMy cousin isn't the kind of person who'd ever break a promise.\tMa cousine n'est pas le genre de personne qui romprait jamais une promesse.\nMy favorite subjects in high school were geometry and history.\tMes matières préférées, au Lycée, étaient la géométrie et l'histoire.\nMy heart skipped a beat when my wife told me she was pregnant.\tMon cœur a sursauté lorsque ma femme m'a dit qu'elle était enceinte.\nMy husband is an expert when it comes to cooking Chinese food.\tMon mari est un expert dès qu'il s'agit de cuisiner chinois.\nMy mother has a driver's license, but she doesn't drive a car.\tMa mère a son permis de conduire, mais elle ne conduit pas.\nMy sister has traced our family tree back to the 16th century.\tMa sœur fait remonter notre arbre généalogique jusqu'au seizième siècle.\nNara is an old city worth visiting at least once in your life.\tNara est une vieille ville qui mérite d'être visitée au moins une fois dans sa vie.\nNews of her death caused great concern throughout the country.\tLa nouvelle de sa mort a déclenché une profonde consternation dans tout le pays.\nNo matter how hard he tried, he could not get out of the maze.\tIl eut beau essayer, il ne put pas s'extirper du labyrinthe.\nNo matter how sneaky you are, you can never surprise yourself.\tTout sournois que vous soyez, vous ne pouvez jamais vous surprendre vous-mêmes.\nNo matter how sneaky you are, you can never surprise yourself.\tTout sournois que tu sois, tu ne peux jamais te surprendre toi-même.\nNo matter how sneaky you are, you can never surprise yourself.\tToute sournoise que tu sois, tu ne peux jamais te surprendre toi-même.\nNo matter how you look at it, the odds are stacked against us.\tQu'importe la manière dont vous considérez la chose, les probabilités s'accumulent contre nous.\nNo matter how you look at it, the odds are stacked against us.\tQu'importe la manière dont tu considères la chose, les probabilités s'accumulent contre nous.\nNo one in their right mind would walk in those woods at night.\tPersonne de sensé ne marcherait dans ces bois la nuit venue.\nNow that you have finished your work, you are free to go home.\tComme tu as fini ton travail, tu es libre de rentrer chez toi.\nOnce upon a time, there lived a stingy old man in the village.\tIl était une fois un vieil homme avare qui vivait au village.\nOne thing I've always wanted to do is write a children's book.\tUne chose que j'ai toujours voulue faire est d'écrire un livre pour enfants.\nOur city police have a new campaign targeting drunken driving.\tNotre police municipale conduit une nouvelle campagne ciblant la conduite en état d'ivresse.\nPower tends to corrupt and absolute power corrupts absolutely.\tLe pouvoir tend à corrompre et le pouvoir absolu corrompt absolument.\nRelationships built on money will end when the money runs out.\tLes relations bâties sur de l'argent finiront lorsque s'épuisera l'argent.\nRemote forest clearings turn out to be great places for raves.\tLes clairières éloignées se révèlent être des endroits idéaux pour des raves.\nScientists are slowly piecing together the mechanism of aging.\tLes scientifiques commencent lentement à assembler les mécanismes de la vieillesse.\nShe did not succeed, but after all that was her first attempt.\tElle n'a pas réussi, mais c'était sa première tentative après tout.\nShe doesn't have any friends or relatives to take care of her.\tElle n'a aucun ami ou parent pour prendre soin d'elle.\nShe finally mustered up the courage to ask him for more money.\tElle rassembla finalement le courage pour lui demander davantage d'argent.\nShe greets him every morning as he enters the school building.\tElle le salue tous les matins lorsqu'il pénètre dans le bâtiment de l'école.\nShe looked at a few dresses and picked the most expensive one.\tElle regarda quelques robes et choisit la plus chère.\nShe looked at a few dresses and picked the most expensive one.\tElle regarda quelques robes et choisit la plus onéreuse.\nShe looked puzzled at the abrupt question posed by a reporter.\tElle sembla perplexe face à la question abrupte posée par le journaliste.\nShe says she's not dating anyone now, but I don't believe her.\tElle dit qu'elle ne sort avec personne à l'heure actuelle, mais je ne la crois pas.\nShe says she's not dating anyone now, but I don't believe her.\tElle dit ne sortir avec personne à l'heure actuelle, mais je ne la crois pas.\nShe says she's not dating anyone now, but I don't believe her.\tElle dit ne pas sortir avec quiconque à l'heure actuelle, mais je ne la crois pas.\nShe seems reserved, but she's actually a strong-willed person.\tElle semble réservée mais elle a en vérité une forte volonté.\nShe skimmed through the register to see if her name was in it.\tElle feuilleta le registre pour voir si son nom s'y trouvait.\nShe spends a majority of her time taking care of her children.\tElle consacre l'essentiel de son temps à s'occuper de ses enfants.\nShe took me under her wing and taught me everything she knows.\tElle me prit sous son aile et m'enseigna tout ce qu'elle savait.\nShe was advised by him to go abroad while she was still young.\tIl lui conseilla de se rendre à l'étranger tant qu'elle était encore jeune.\nShe was advised by him to go abroad while she was still young.\tIl lui a conseillé de se rendre à l'étranger tant qu'elle était encore jeune.\nShe's only going to tell you what she thinks you want to hear.\tElle ne te dira que ce qu'elle pense que tu veux entendre.\nSince he doesn't feel well today, he can't come to the office.\tComme il ne sent pas bien aujourd'hui, il ne peut pas venir au bureau.\nSince he doesn't feel well today, he can't come to the office.\tComme il ne se sent pas bien aujourd'hui, il ne peut pas venir au bureau.\nSince we insulated the house we've saved a lot on heating oil.\tDepuis que nous avons isolé la maison, nous avons beaucoup économisé sur le mazout.\nSix of us are going on an excursion to the beach this weekend.\tSix d'entre nous vont à une excursion à la plage ce weekend.\nSo far as this matter is concerned, I am completely satisfied.\tEn ce qui concerne cette affaire, je suis très satisfait.\nSomeone broke into my house and ran away with all of my money.\tQuelqu'un a cambriolé ma maison et s'est enfui avec tout mon argent.\nSometimes it's hard to be tactful and honest at the same time.\tIl est parfois difficile d'être à la fois délicat et franc.\nSometimes we lie to keep from hurting someone else's feelings.\tOn ment parfois pour ne pas blesser l'autre.\nThat dog tries to eat just about anything he lays his eyes on.\tCe chien essaie de manger à peu près tout ce sur quoi il pose les yeux.\nThe Beatles set the world on fire with their incredible music.\tLes Beatles ont mis le feu au monde avec leur incroyable musique.\nThe CIA runs a thorough background check on all new employees.\tLa CIA procède à une analyse détaillée des antécédents de tous les nouveaux employés.\nThe baby sleeping in the baby carriage is as cute as an angel.\tLe bébé qui dort dans la poussette est mignon comme un ange.\nThe city is gaining popularity as a major tourist destination.\tLa ville gagne en popularité en tant que destination touristique majeure.\nThe cows were moving very slowly through the long green grass.\tLes vaches se mouvaient très lentement à travers les grandes herbes vertes.\nThe doors wouldn't open, so I had to get in through the trunk.\tLes portes refusaient de s'ouvrir et je dus donc monter par le coffre.\nThe doors wouldn't open, so I had to get in through the trunk.\tLes portes refusèrent de s'ouvrir et je dus donc monter par le coffre.\nThe entire sales staff has worked around the clock for a week.\tTout le personnel commercial a travaillé d'arrache-pied durant une semaine.\nThe falling of the Berlin Wall was truly a momentous occasion.\tLa chute du mur de Berlin fut vraiment un événement capital.\nThe marauders laid waste to the town and surrounding villages.\tLes pillards ont dévasté la ville et les villages environnants.\nThe most severe problem at present is that of over-population.\tLe problème le plus grave actuellement est celui de la surpopulation.\nThe noise was so loud that it was a nuisance to the neighbors.\tLe bruit était tellement fort que cela gênait les voisins.\nThe people protested against the low altitude flight training.\tLa population a protesté contré les vols d’entraînement à basse altitude.\nThe poor talker sometimes surprises us by being a good writer.\tL'orateur malheureux nous surprend parfois en étant un bon écrivain.\nThe power plant supplies the remote district with electricity.\tLa centrale électrique alimente le quartier éloigné en électricité.\nThe prime minister spoke about the financial crisis at length.\tLe Premier Ministre a parlé en détail de la crise financière.\nThe problem is that our car will not be available on that day.\tLe problème est que notre voiture ne sera pas disponible ce jour-là.\nThe secret of life is hanging around until you get used to it.\tLe secret de la vie, c'est de traîner là jusqu'à ce qu'on s'y habitue.\nThe secret of life is hanging around until you get used to it.\tLe secret de la vie, c'est de traîner là jusqu'à ce que tu t'y habitues.\nThe secret of life is hanging around until you get used to it.\tLe secret de la vie, c'est de traîner là jusqu'à ce que vous vous y habituiez.\nThe show's about a New Jersey mob boss who's in psychotherapy.\tLe spectacle raconte l'histoire d'un patron de la maffia du New Jersey qui est en psychothérapie.\nThe wizard waved his magic wand and disappeared into thin air.\tLe sorcier agita sa baguette magique et disparut dans le néant.\nThe world population grows by close to eight million per year.\tLa population mondiale croît annuellement de presque quatre-vingt-dix millions.\nThe young people are fed up with the politics of this country.\tLes jeunes en ont assez de la politique dans ce pays.\nTheir financial problems began in the second half of the year.\tLeurs problèmes financiers ont commencé au deuxième semestre.\nThere are a lot of things you don't know about my personality.\tIl y a beaucoup de choses que tu ne sais pas sur ma personnalité.\nThere are signs of growing tensions between the two countries.\tIl y a des signes de tension grandissante entre les deux pays.\nThere have been a lot of complaints about the way Tom behaves.\tIl y a eu beaucoup de plaintes à propos du comportement de Tom.\nThere is an urgent need for teachers with science backgrounds.\tIl y a un besoin urgent de professeurs disposant d'une formation scientifique.\nThere is no end in sight to the U.S. trade deficit with Japan.\tOn ne voit pas d'issue au déficit commercial des États-Unis avec le Japon.\nThere was an old clunker parked just behind my new sports car.\tIl y avait un vieux tacot garé juste derrière ma nouvelle voiture de sport.\nThere's a pyramid in Mexico bigger than any of those in Egypt.\tIl est au Mexique une pyramide, plus grande que toutes celles d'Égypte.\nThere's been a lot of activity around the office this morning.\tIl y a eu beaucoup d'activités dans le bureau ce matin.\nThese days, the motives for marriage are not necessarily pure.\tCes jours-ci, les motifs derrière le mariage ne sont pas nécessairement purs.\nThese events transpired while the senator was still in office.\tCes événements fuitèrent tandis que le sénateur était encore en poste.\nThey accused the president of not caring about the common man.\tIls accusèrent le président de ne pas se soucier de l'homme de la rue.\nThey began to import liquor illegally to sell for high prices.\tIls commencèrent à importer illégalement de l'alcool à vendre à prix élevé.\nThey helped one another to make the school festival a success.\tIls s'entraidèrent pour faire du festival de l'école un succès.\nThey knew they must fight together to defeat the common enemy.\tIls savaient qu'ils devaient combattre ensemble pour défaire l'ennemi commun.\nThey knocked on the door and said they had come to arrest him.\tIls frappèrent à la porte et dirent qu'ils étaient venus pour l'arrêter.\nThey said they would accept the committee's decision as final.\tIls déclarèrent qu'ils accepteraient la décision du comité pour définitive.\nThey said they would accept the committee's decision as final.\tIls déclarèrent qu'ils accepteraient la décision du comité comme définitive.\nThey say they cannot compete with low-priced foreign products.\tIls disent qu'ils ne peuvent faire concurrence à des produits étrangers à bas prix.\nThey were low enough in cost so many Americans could buy them.\tIls étaient suffisamment bon marché pour que de nombreux Étasuniens puissent les acheter.\nThis is the first time that I've eaten in an Italian pizzeria.\tC'est la première fois que je mange dans une pizzeria italienne.\nThis is the most comfortable chair I've sat on in a long time.\tC'est la chaise la plus confortable dans laquelle je me sois assis depuis longtemps.\nThis medicine must not be placed within the reach of children.\tCe médicament doit être conservé hors de portée des enfants.\nThis part of the museum is temporarily off-limits to visitors.\tCette partie du musée est temporairement inaccessible aux visiteurs.\nTom always yells at Mary every time she does something stupid.\tTom crie toujours sur Mary chaque fois qu'elle fait quelque chose de stupide.\nTom and Mary just wanted to dance with each other all evening.\tTom et Mary voulaient juste danser ensemble toute la soirée.\nTom and Mary wanted to spend the rest of their lives together.\tTom et Mary voulaient passer le reste de leur vie ensemble.\nTom asked Mary some questions, but she refused to answer them.\tTom a posé plusieurs questions à Marie, mais elle a refusé d'y répondre.\nTom asked Mary some questions, but she refused to answer them.\tTom posa plusieurs questions à Marie, mais elle refusa d'y répondre.\nTom didn't know who Mary wanted to give the bottle of wine to.\tTom ne savait pas à qui Marie voulait donner la bouteille de vin.\nTom didn't leave a suicide note, so the police suspect murder.\tTom n'a pas laisse de note de suicide, alors la police suspecte un meurtre.\nTom didn't want just any car. He wanted his grandfather's car.\tTom ne voulait pas n'importe quelle voiture. Il voulait la voiture de son grand-père.\nTom doesn't know who Mary wants to give the bottle of wine to.\tTom ne sait pas à qui Marie veut donner la bouteille de vin.\nTom had no other choice but to help Mary clean out the garage.\tTom n'eut pas d'autre choix que d'aider Mary à nettoyer le garage.\nTom has been living in Boston since he graduated from college.\tTom vit à Boston depuis qu'il est diplômé de l'université.\nTom never told me why he wasn't here the day before yesterday.\tTom ne m'a jamais dit pourquoi il n'était pas là avant-hier.\nTom promised me that tonight he'd sing that new song he wrote.\tTom m'a promis que ce soir il chanterait cette nouvelle chanson qu'il a écrite.\nTom put the plate of sandwiches on the table in front of Mary.\tTom posa l'assiette de sandwiches sur la table devant Mary.\nTom says he doesn't know where Mary bought her pearl necklace.\tThomas dit qu'il ne sait pas où Marie a acheté son collier.\nTom seems to be unable to interact normally with other people.\tTom semble être incapable d'interagir normalement avec d'autres personnes.\nTom was afraid that they'd lock him up and throw away the key.\tTom avait peur qu'ils l'enferment et jettent la clé.\nTom wondered whether it would be hard to find a job in Boston.\tTom se demandait s'il serait difficile de trouver un travail à Boston.\nWalking from the station to the house takes only five minutes.\tMarcher de la station à la maison ne prend que cinq minutes.\nWatch out for the sparks that are flying out of the fireplace!\tAttention aux braises qui sautent du foyer !\nWatch out for the sparks that are flying out of the fireplace!\tAttention aux braises qui s'échappent de l'âtre !\nWe are sorry to say that we can not give you that information.\tNous sommes désolés mais nous ne pouvons pas vous communiquer cette information.\nWe had to alter our plans because we didn't have enough money.\tNous dûmes changer nos projets car nous ne disposions pas de suffisamment d'argent.\nWe had to alter our plans because we didn't have enough money.\tNous avons dû changer nos projets car nous n'avions pas assez d'argent.\nWe have less than five minutes to evacuate the whole building.\tNous disposons de moins de cinq minutes pour évacuer le bâtiment.\nWe have to figure out when the best time to buy that stock is.\tIl nous faut comprendre quand est le meilleur moment pour acheter cette action.\nWe have to figure out when the best time to buy that stock is.\tIl faut que nous comprenions quand est le meilleur moment pour acquérir cette action.\nWe probably don't have enough time to finish doing that today.\tNous n'aurons dans doute pas assez de temps pour finir cela aujourd'hui.\nWe should keep every school open and every teacher in his job.\tNous devrions garder ouverte chaque école, et chaque enseignant à son poste.\nWe were living in Osaka for ten years before we came to Tokyo.\tNous avons vécu à Osaka pendant dix ans avant de venir à Tokyo.\nWe'll go to any length to send our child to a good university.\tNous sommes prêts à tout pour envoyer notre enfant dans une bonne université.\nWe'll use the house as collateral so we can borrow some money.\tNous allons mettre la maison en gage de manière à pouvoir emprunter un peu d'argent.\nWe'll use the house as collateral so we can borrow some money.\tNous allons gager la maison de manière à pouvoir emprunter quelque argent.\nWhat is at issue in this debate is the survival of our planet.\tCe qui est en question dans ce débat est la survie de notre planète.\nWhat is still better is that the house has a beautiful garden.\tCe qui est encore mieux est que la maison comporte un magnifique jardin.\nWhat kind of music did you listen to when you were a teenager?\tQuelle sorte de musique écoutais-tu lorsque tu étais adolescent ?\nWhat kind of music did you listen to when you were a teenager?\tQuelle sorte de musique écoutais-tu lorsque tu étais adolescente ?\nWhat kind of music did you listen to when you were a teenager?\tQuelle sorte de musique écoutiez-vous lorsque vous étiez adolescent ?\nWhat kind of music did you listen to when you were a teenager?\tQuelle sorte de musique écoutiez-vous lorsque vous étiez adolescente ?\nWhat makes you so sure Tom was the one who stole your bicycle?\tComment peux-tu être sûr que c'est Tom qui a volé le vélo ?\nWhat makes you so sure Tom was the one who stole your bicycle?\tComment peux-tu être sûre que c'est Tom qui a volé le vélo ?\nWhat you make is small potatoes compared to the boss's salary.\tCe que tu gagnes est de la roupie de sansonnet, comparé au salaire du patron.\nWhat you make is small potatoes compared to the boss's salary.\tCe que tu te fais est de la roupie de sansonnet, comparé au salaire du patron.\nWhat you make is small potatoes compared to the boss's salary.\tCe que tu te fais est de la roupie de sansonnet, comparé au salaire de la patronne.\nWhat you make is small potatoes compared to the boss's salary.\tCe que vous vous faites est de la roupie de sansonnet, comparé au salaire du patron.\nWhat you make is small potatoes compared to the boss's salary.\tCe que vous vous faites est de la roupie de sansonnet, comparé au salaire de la patronne.\nWhen I got out of the car, I felt like I had been here before.\tLorsque je suis sorti de la voiture, j'ai senti que j'avais été là auparavant.\nWhen I was a child, I used to go to the seashore every summer.\tEnfant, je me rendais au bord de mer tous les étés.\nWhen I was a child, I used to go to the seashore every summer.\tLorsque j'étais enfant, je me rendais au bord de mer tous les étés.\nWhen I was a child, I used to go to the seashore every summer.\tEnfant, je me rendais, chaque été, au bord de mer.\nWhen I was a child, I used to go to the seashore every summer.\tLorsque j'étais enfant, je me rendais, chaque été, au bord de mer.\nWhen Mary reached the bus stop, the last bus had already left.\tQuand Mary atteignit l'arrêt de bus, le dernier bus était déjà parti.\nWhy do you laugh so hard at his jokes? They're not even funny.\tPourquoi riez-vous si fort de ses blagues ? Elles ne sont même pas drôles.\nWhy do you laugh so hard at his jokes? They're not even funny.\tPourquoi ris-tu si fort de ses blagues ? Elles ne sont même pas drôles.\nWouldn't you rather spend your time doing something you enjoy?\tNe voudriez-vous pas plutôt consacrer votre temps à faire quelque chose qui vous plaît ?\nWouldn't you rather spend your time doing something you enjoy?\tNe voudrais-tu pas plutôt consacrer ton temps à faire quelque chose qui te plaît ?\nYou may injure yourself if you don't follow safety procedures.\tTu peux te blesser si tu ne suis pas les procédures de sécurité.\nYou should find a more constructive way of venting your anger.\tTu devrais trouver une manière plus constructive de décharger ta colère.\nYou should find a more constructive way of venting your anger.\tVous devriez trouver une manière plus constructive d'évacuer votre colère.\nYou shouldn't say that kind of thing when children are around.\tTu ne devrais pas dire une telle chose lorsque les enfants sont dans les parages.\nYou shouldn't say that kind of thing when children are around.\tVous ne devriez pas dire une telle chose lorsque les enfants sont dans les parages.\nYou shouldn't say that kind of thing when children are around.\tOn ne devrait pas dire une telle chose lorsque les enfants sont dans les parages.\nYou will be better off buying a new one than trying to fix it.\tTu ferais mieux d'en acheter un neuf plutôt que d'essayer de le réparer.\nYou will be better off buying a new one than trying to fix it.\tTu ferais mieux d'en acheter une neuve plutôt que d'essayer de la réparer.\nYou will be better off buying a new one than trying to fix it.\tVous feriez mieux d'en acheter un neuf plutôt que d'essayer de le réparer.\nYou'll get there in time, as long as you don't miss the train.\tVous y parviendrez à temps, pour autant que vous ne manquiez pas le train.\nYou'll get there in time, as long as you don't miss the train.\tTu y parviendras à temps, pour autant que tu ne loupes pas le train.\nYou'll get there in time, so long as you don't miss the train.\tVous y parviendrez à temps, pour autant que vous ne manquiez pas le train.\nYou're the only person I know besides me who likes to do that.\tVous êtes la seule personne que je connaisse à part moi qui aime faire ça.\nYou've got another four day's journey before you reach Moscow.\tVous avez encore quatre jours de voyage avant d'arriver à Moscou.\n\"Now and then I think of divorcing him.\" \"You must be kidding!\"\t\"De temps à autre, je pense à divorcer.\" \"Tu plaisantes ? !\"\nA company that stifles innovation can't hope to grow very much.\tUne entreprise qui étouffe l'innovation ne peut espérer beaucoup s'agrandir.\nA good book is the best of friends, the same today and forever.\tUn bon livre est le meilleur des amis, maintenant et pour toujours.\nA helicopter is able to take off and land straight up and down.\tUn hélicoptère peut décoller et atterrir à la verticale.\nA man's worth lies not so much in what he has as in what he is.\tLa valeur d'un homme réside moins dans ce qu'il possède que dans ce qu'il est.\nA man's worth lies not so much in what he has as in what he is.\tLa valeur d'un homme ne réside pas tant dans ce qu'il a que dans ce qu'il est.\nA quarterly growth of 1.2% means an annual growth rate of 4.8%.\tUne croissance trimestrielle de 1,2% représente un taux de croissance annuel de 4,8%.\nA recent survey shows that the number of smokers is decreasing.\tUn récent sondage montre que le nombre de fumeurs diminue.\nA successful business is built on careful financial management.\tUn commerce prospère est affaire de prudence dans la gestion financière.\nA woman's wardrobe isn't complete without a little black dress.\tLa garde-robe d'une femme n'est pas complète sans une petite robe noire.\nAll the words underlined in red should be checked for spelling.\tL'orthographe de tous les mots soulignés de rouge devrait être vérifiée.\nAlthough we don't have much money, I want to buy this painting.\tMalgré que nous ayons peu d'argent, j'aimerais acheter cette peinture.\nAnyone can produce salt from seawater with a simple experiment.\tN'importe qui peut produire du sel à partir de l'eau de mer par une simple expérimentation.\nAre you satisfied with the political situation in your country?\tÊtes-vous satisfait de la situation politique dans votre pays ?\nAre you satisfied with the political situation in your country?\tEs-tu satisfait de la situation politique dans ton pays ?\nAs far as the eye could reach, nothing was to be seen but sand.\tAussi loin qu'il puisse voir il n'y avait que du sable.\nAs far as the eye could reach, nothing was to be seen but sand.\tAussi loin que pouvait porter le regard, il n'y avait rien à voir que du sable.\nAs long as I know the money is safe, I will not worry about it.\tPour autant que je sache, l'argent est en sécurité ; je ne m'en préoccuperais pas.\nAs soon as she heard the bell ring, she answered the telephone.\tDès qu'elle l'entendit sonner, elle décrocha le téléphone.\nAt 10 o'clock yesterday, there were hundreds of people outside.\tÀ 10 heures hier, nous étions des centaines de gens dehors.\nAt this beer hall, you can order beers up to one liter in size.\tDans cette taverne, on peut commander des bières jusqu'à une contenance d'un litre.\nCan you tell the difference between an American and a Canadian?\tPeux-tu dire la différence entre un Étatsunien et un Canadien ?\nCarbon dating was performed on the sample to determine its age.\tUne datation au carbone fut réalisée sur l'échantillon afin de déterminer son âge.\nCompared to last summer, we haven't had so much rain this year.\tComparé à l'été dernier, nous n'avons pas eu autant de pluie cette année.\nCould you please tell me again how many times you've been here?\tPourrais-tu me redire combien de fois tu as déjà été ici ?\nCulture is like jam, the less you have, the more you spread it.\tLa culture c'est comme la confiture, moins on en a, plus on l'étale.\nDeclarations of variables are extremely important in C and C++.\tLa déclaration des variables est extrêmement importante en C et en C++.\nDo you have any idea when those pictures might have been taken?\tAvez-vous la moindre idée de quand ces photos ont pu être prises ?\nDo you have any idea when those pictures might have been taken?\tAs-tu une idée de quand ces photos ont pu être prises ?\nDon't buy your car from that dealership. They'll rob you blind.\tN'achète pas ta voiture chez ce concessionnaire. Ils vont te dépouiller.\nDon't even think of asking me what I think about you right now.\tNe songe même pas à me demander ce que je pense de toi à l'instant.\nDon't even think of asking me what I think about you right now.\tNe songez même pas à me demander ce que je pense de vous à l'instant.\nEnglish is a universal language and is used all over the world.\tL'anglais est une langue universelle et est utilisée dans le monde entier.\nEnglish is just one of over 2,700 languages in the world today.\tL'anglais est une des 2700 langues du monde aujourd'hui.\nEvery successful writer has a drawer full of rejection letters.\tChaque écrivain à succès a un tiroir rempli de lettres de rejet.\nEverybody expected that the experiment would result in failure.\tTout le monde s'attendait à ce que l'expérience échoue.\nEverybody in this world has to cope with a lot of difficulties.\tTous les gens au monde doivent surmonter un grand nombre de difficultés.\nEveryone should choose at least one poem and learn it by heart.\tChacun devrait choisir au moins un poème et l'apprendre par cœur.\nFor the time being, my sister is an assistant in a supermarket.\tPour le moment, ma sœur est vendeuse dans un supermarché.\nFree flow of information is the only safeguard against tyranny.\tLa libre circulation de l'information est le seul garde-fou contre la tyrannie.\nGetting up at 6 a.m. was hard at first, but now I'm used to it.\tMe lever à six heures du matin était difficile au début, mais j'y suis désormais accoutumé.\nGo straight down this street and turn right at the third light.\tAllez tout droit dans cette rue et au troisième feu, tournez à droite.\nGradually the true meaning of what he said began to dawn on me.\tPeu à peu je commençais à comprendre le sens profond de ses paroles.\nHackers are adept at getting around computer security measures.\tLes pirates sont experts dans l'art de contourner les mesures de sécurité informatiques.\nHave you seen the dog? He wandered off a couple of minutes ago.\tAs-tu vu le chien ? Il est parti en vadrouille il y a quelques minutes.\nHave you seen the dog? He wandered off a couple of minutes ago.\tAvez-vous vu le chien ? Il est parti en vadrouille il y a quelques minutes.\nHe decided to go to Paris for the purpose of studying painting.\tIl a décidé d'aller à Paris dans le but d'étudier la peinture.\nHe got up to see if he had turned off the light in the kitchen.\tIl se leva pour s'assurer qu'il avait éteint la lumière dans la cuisine.\nHe got up to see if he had turned off the light in the kitchen.\tIl s'est levé pour s'assurer qu'il avait éteint la lumière dans la cuisine.\nHe is considered one of the greatest scientists in our country.\tIl est considéré comme l'un des meilleurs scientifiques du pays.\nHe keeps on phoning me, and I really don't want to talk to him.\tIl continue à m'appeler et je ne veux vraiment pas lui parler.\nHe learned golf by watching others and following their example.\tIl a appris le golf en regardant les autres et en suivant leur exemple.\nHe still hasn't returned the book he borrowed from the library.\tIl n'a toujours pas ramené le livre qu'il avait emprunté à la bibliothèque.\nHe told me that I looked pale and asked me what the matter was.\tIl m'a dit que j'étais pâle et m'a demandé quel était le problème.\nHe was about to apologize when the man punched him in the face.\tIl allait s'excuser lorsque l'homme le frappa au visage.\nHe'll be groggy for another few hours until the drug wears off.\tIl sera chancelant pour quelques heures encore, jusqu'à ce que la drogue se dissipe.\nHe'll be groggy for another few hours until the drug wears off.\tIl sera chancelant pour quelques heures encore, jusqu'à ce que le médicament se dissipe.\nHis aunt's apple pie was delicious and he had a second helping.\tComme la tarte aux pommes de sa tante était délicieuse il s'est resservi.\nHow do you come up with such interesting plots for your novels?\tComment dégottes-tu des scénarios aussi intéressants pour tes romans ?\nHow do you think I can convince her to spend more time with me?\tComment penses-tu que je puisse la convaincre de passer davantage de temps avec moi ?\nHow long does it take you to get here from your house by train?\tCombien de temps ça te prend pour venir jusqu'ici de chez toi en train ?\nHow long has it been since you gave up teaching at that school?\tCombien de temps s'est-il passé depuis que vous avez cessé d'enseigner dans cette école ?\nHow many minutes does it take to get to the JR station on foot?\tCombien de minutes faut-il pour aller à la gare SNCF à pied ?\nI am sure I met him somewhere, but I do not remember who he is.\tJe suis sûr que je l'ai rencontré quelque part, mais je ne me rappelle plus qui il est.\nI am uncertain as to whether I am the right person for the job.\tJe ne suis pas certain d'être la bonne personne pour ce travail.\nI ate something earlier this evening that didn't agree with me.\tJ'ai mangé quelque chose, plus tôt ce soir, qui ne passe pas.\nI can read Chinese fairly well, but I can't write it very well.\tJe peux assez bien lire le chinois mais je ne parviens pas à très bien l'écrire.\nI didn't know how to do it, but I was willing to give it a try.\tJ'ignorais comment le faire, mais j'étais prêt à me lancer.\nI didn't know how to do it, but I was willing to give it a try.\tJ'ignorais comment le faire mais j'étais disposé à essayer.\nI didn't know why I wasn't supposed to go to that part of town.\tJ'ignorais pourquoi je n'étais pas censé me rendre dans cette partie de la ville.\nI didn't know why I wasn't supposed to go to that part of town.\tJ'ignorais pourquoi je n'étais pas censée me rendre dans cette partie de la ville.\nI didn't want to work late, but the boss told me that I had to.\tJe ne voulais pas travailler tard mais le patron m'a dit que je le devais.\nI didn't want to work late, but the boss told me that I had to.\tJe ne voulais pas travailler tard mais la patronne m'a dit que je le devais.\nI don't know Tom well enough to know whether I like him or not.\tJe ne connais pas assez bien Tom pour savoir si je l'aime bien ou non.\nI don't know whether I'll be able to attend tomorrow's meeting.\tJ'ignore si je serai en mesure d'assister à la réunion de demain.\nI don't know whether I'll be able to attend tomorrow's meeting.\tJe ne sais pas si je serai en mesure d'assister à la réunion de demain.\nI don't recommend eating in that restaurant. The food is awful.\tJe ne recommande pas de manger dans ce restaurant. La nourriture est horrible.\nI don't think this old car will make it to the top of the hill.\tJe ne pense pas que cette vieille voiture atteindra le haut de la colline.\nI drank some of the milk and kept the rest in the refrigerator.\tJ'ai bu une partie du lait et j'ai conservé le reste au réfrigérateur.\nI found it difficult to make myself heard because of the noise.\tJ'ai trouvé qu'il était difficile de me faire entendre à cause du bruit.\nI give up. No matter what I do, you never seem to be satisfied.\tJ'abandonne. Quoi que je fasse, tu sembles ne jamais être content.\nI give up. No matter what I do, you never seem to be satisfied.\tJe laisse tomber. Quoi que je fasse, tu sembles ne jamais être contente.\nI got to the station only to find that the train had just left.\tJ'arrivai à la gare pour constater que le train était juste parti.\nI had been studying music in Boston before I returned to Japan.\tJ'avais étudié la musique à Boston avant de retourner au Japon.\nI had broken my glasses, so that I couldn't see the blackboard.\tJ'avais cassé mes lunettes, du coup je ne pouvais pas voir le tableau noir.\nI had no other way of contacting you, so I came here in person.\tJe ne disposais pas d'autre moyen de vous contacter alors je suis venu ici en personne.\nI had no other way of contacting you, so I came here in person.\tJe ne disposais pas d'autre moyen de te contacter alors je suis venu ici en personne.\nI had no other way of contacting you, so I came here in person.\tJe ne disposais pas d'autre moyen de vous contacter alors je suis venue ici en personne.\nI had no other way of contacting you, so I came here in person.\tJe ne disposais pas d'autre moyen de te contacter alors je suis venue ici en personne.\nI have a lot of old books. A couple of them are quite valuable.\tJ'ai de nombreux vieux livres. Quelques-uns d'entre eux sont d'assez grande valeur.\nI hope they don't resort to violence to accomplish their goals.\tJ'espère qu'ils n'auront pas recours à la violence pour atteindre leurs buts.\nI just found out that my boyfriend has been stepping out on me.\tJe viens de découvrir que mon petit ami m'a trompée.\nI just found out that my boyfriend has been stepping out on me.\tJe viens de découvrir que mon petit ami m'a trompé.\nI just want to let you know that I'll be late tomorrow morning.\tJe veux juste que tu saches que je serai en retard demain matin.\nI know a woman whose first and last names are the same as mine.\tJe connais une femme qui a les mêmes nom et prénom que moi.\nI make it a rule to take a walk for half an hour every morning.\tJ'ai pour règle de faire une promenade d'une demi-heure chaque matin.\nI must warn you that if you do this again you will be punished.\tJe dois t'avertir que si tu refais ça, tu seras puni.\nI put some cookies on the table and the kids ate them right up.\tJ'ai mis quelques biscuits sur la table et les enfants les ont immédiatement mangés.\nI spent the whole evening reading the poetry of Kenji Miyazawa.\tJ'ai passé la soirée entière à lire la poésie de Kenji Miyazawa.\nI think it's time for me to admit that I never cared about you.\tJe pense qu'il est temps que j'admette que je ne me suis jamais soucié de toi.\nI think you and Tom have more in common than you want to admit.\tJe pense que toi et Tom avez plus en commun que vous ne voulez bien l'admettre.\nI thought about all the times we used to play together as kids.\tJ'ai pensé à toutes les fois où, enfants, nous jouions ensemble.\nI tried to open the door, but I couldn't because it was locked.\tJ'ai tenté d'ouvrir la porte mais je n'ai pas pu parce qu'elle était verrouillée.\nI went out of my way to visit my friend, but he wasn't at home.\tJ'ai fait un détour pour rendre visite à un ami, mais il n'était pas chez lui.\nI'm a professor, or rather an associate professor, to be exact.\tJe suis professeur, ou plutôt assistant professeur pour être exact.\nI'm getting sleepy. I should've gone to bed earlier last night.\tJe commence à m'endormir. J'aurais dû me rendre au lit plus tôt, hier soir.\nI'm going through my closet to find clothes to give to charity.\tJe fais l'inventaire de mes armoires pour trouver des vêtements à donner aux œuvres.\nI'm still waiting for my breakfast. Bring it to me now, please.\tJ'attends toujours mon petit déjeuner, veuillez me l'apporter maintenant.\nI'm trying to think of some ideas for this article I'm writing.\tJ'essaie de trouver des idées pour l'article que je suis en train d'écrire.\nI've been studying Chinese for a long time, but I'm not fluent.\tJ'étudie le mandarin depuis longtemps, mais je ne le parle pas couramment.\nI've been trying to put a little money in the bank every month.\tJ'ai essayé de mettre un peu d'argent à la banque, chaque mois.\nI've heard it said that you should never marry your first love.\tJ'ai entendu dire qu'il ne fallait jamais épouser son premier amour.\nIf a burglar came into my room, I would throw something at him.\tSi un cambrioleur entrait dans ma chambre, je lui jetterais quelque chose.\nIf he keeps drinking like that, he'll have to take a taxi home.\tS'il continue à boire ainsi, il devra prendre un taxi pour rentrer à la maison.\nIf it had not been for the storm, I would have arrived earlier.\tS'il n'y avait pas eu la tempête, je serais arrivé plus tôt.\nIf it had not been for your advice, I could not have succeeded.\tSans vos conseils, je n'aurais pas pu réussir.\nIf it had not been for your advice, I could not have succeeded.\tSans tes conseils, je n'aurais pas pu réussir.\nIf the sun were to rise in the west, I wouldn't change my mind.\tMême si le soleil se levait à l'Ouest, je ne changerais pas mon opinion.\nIf you add one hundred to one thousand, you get eleven hundred.\tEn additionnant cent et mille vous obtenez mille cent.\nIf you can see your breath when you exhale, you know it's cold.\tSi tu peux voir ton souffle pendant que tu expires, tu sais qu'il fait froid.\nIf you change your hairstyle, you could look ten years younger.\tSi tu changes ta coiffure, tu pourrais paraître dix ans plus jeune.\nIf you change your hairstyle, you could look ten years younger.\tSi vous changez votre coiffure, vous pourriez faire dix ans plus jeune.\nIf you get into difficulties, don't hesitate to ask for advice.\tSi tu rencontres des difficultés, n'hésite pas à demander conseil.\nIf you have pain in your chest, consult your doctor right away.\tSi tu as mal à la poitrine, consulte tout de suite ton médecin.\nIn legal documents, difficult words and phrases are often used.\tDes mots et expressions difficiles sont fréquemment utilisés dans les textes légaux.\nIn the beginning, man was almost the same as the other animals.\tAu commencement, l'homme était presque pareil aux autres animaux.\nIn the early days of American history, blacks lived in slavery.\tAu commencement de l'histoire américaine, les noirs vivaient en esclavage.\nIt cost me ten thousand yen to have my television set repaired.\tÇa m'a coûté dix-mille yens pour faire réparer mon poste de télévision.\nIt doesn't matter to me whether or not I make money doing this.\tÇa m'est égal si je gagne de l'argent à faire cela ou pas.\nIt doesn't matter what excuse he gives me, I can't forgive him.\tPeu importe quelle excuse il me donne, je ne peux pas lui pardonner.\nIt doesn't work so well because the batteries are running down.\tÇa ne marche pas si bien parce que les piles s'épuisent.\nIt is better to have old second-hand diamonds than none at all.\tMieux vaut un vieux diamant d'occasion que pas de diamant du tout.\nIt is better to take your time than to hurry and make mistakes.\tIl vaut mieux prendre ton temps plutôt que te dépêcher et te tromper.\nIt is impossible for a growing child to keep still for an hour.\tIl est impossible qu'un enfant qui grandit reste en place pendant une heure.\nIt makes sense to pay off your credit card balance every month.\tCela est censé équilibrer tous les mois la balance de ta carte de crédit.\nIt never occurred to me that what I was doing might be illegal.\tIl ne m'était jamais venu à l'esprit que ce que je faisais pouvait être illégal.\nIt rained so hard that we decided to visit him some other time.\tIl pleuvait si fort que nous avons décidé de lui rendre visite une autre fois.\nIt was determined that faulty wiring was the cause of the fire.\tIl fut déterminé que du câblage défectueux se trouvait à l'origine de l'incendie.\nIt's dangerous to talk on the phone and drive at the same time.\tIl est dangereux de téléphoner au volant.\nIt's difficult to help people who don't believe they need help.\tC'est difficile d'aider des gens qui ne croient pas qu'ils ont besoin d'aide.\nIt's just a matter of time before someone is injured or killed.\tQue quelqu'un soit blessé ou mort est juste une question de temps.\nJust because something is possible doesn't make it a good idea.\tÇa n'est pas parce que quelque chose est possible que cela en fait une bonne idée.\nLadies and gentlemen, I would like you to listen to my opinion.\tMesdames, Messieurs, j'aimerais que vous écoutiez mon point de vue !\nMaking jewelry is a lot easier than it sounds like it would be.\tFabriquer de la joaillerie est beaucoup plus facile que ça n'en aurait l'air.\nMany animals that lived thousands of years ago are now extinct.\tDe nombreux animaux qui vivaient il y a des milliers d'années ont désormais disparu.\nMaybe you should turn off the television and do something else.\tPeut-être devrais-tu éteindre la télévision et faire quelque chose d'autre.\nMen differ from other animals in that they can think and speak.\tLes hommes diffèrent des autres animaux en cela qu'ils peuvent penser et parler.\nMixing with people at a party can be terrifying for shy people.\tSe mêler avec les gens à une fête peut être terrifiant pour des personnes timides.\nMy friend ended up taking the rap for a crime he didn't commit.\tMon ami a fini par écoper d'une peine pour un crime qu'il n'a pas commis.\nMy grandfather goes for walks on days when the weather is good.\tMon grand-père fait des promenades quand il fait beau.\nMy tight wad husband took me to McDonald's for our anniversary.\tMon fauché de mari m'a emmenée au Macdo pour notre anniversaire.\nNever ask a question if you aren't prepared to hear the answer.\tNe posez jamais une question dont vous n'êtes pas prêt à entendre la réponse !\nNothing is more valuable than time, but nothing is less valued.\tRien n'est plus précieux que le temps mais rien n'est moins valorisé.\nOn my way home from school yesterday, I was caught in a shower.\tHier, sur le chemin de l'école, j'ai été prise sous une averse.\nOn my way home from school yesterday, I was caught in a shower.\tHier, sur le chemin de l'école, j'ai été pris sous une averse.\nOnce you've formed a bad habit, you can't get rid of it easily.\tUne fois que vous avez une mauvaise habitude, vous ne pouvez pas vous en débarrasser facilement.\nOnce you've formed a bad habit, you can't get rid of it easily.\tUne fois que tu as une mauvaise habitude, tu ne peux pas t'en débarrasser facilement.\nOne of his two daughters lives in Tokyo, and the other in Nara.\tUne de ses deux filles vit à Tokyo et l'autre à Nara.\nOne thing I've always wanted to do is learn to fly an airplane.\tUne chose dont j'ai toujours eu envie, c'est d'apprendre à piloter un avion.\nOnly those who risk going too far will know how far one can go.\tSeuls ceux qui se risqueront à aller trop loin saurons jusqu'où on peut aller.\nOur price is considerably higher than the current market price.\tNotre prix est bien plus élevé que le prix actuel du marché.\nPeople will laugh at you if you do something as stupid as that.\tLes gens riront de toi si tu fais une chose aussi stupide que ça.\nPeople will laugh at you if you do something as stupid as that.\tLes gens riront de vous si vous faites une chose aussi stupide que ça.\nPlease don't forget to turn off the light before you go to bed.\tN'oublie pas, je te prie, d'éteindre la lumière avant que tu ailles au lit.\nPlease don't forget to turn off the light before you go to bed.\tN'oubliez pas, je vous prie, d'éteindre la lumière avant que vous alliez au lit.\nShe altered her old clothes to make them look more fashionable.\tElle a raccommodé ses vieilles fringues pour qu'elles aient l'air plus à la mode.\nShe asked him where he lived, but he was too smart to tell her.\tElle lui demanda où il vivait mais il était trop malin pour lui dire.\nShe asked him where he lived, but he was too smart to tell her.\tElle lui a demandé où il vivait mais il était trop malin pour lui dire.\nShe became rich by virtue of hard work and good business sense.\tElle est devenue riche grâce à un travail acharné et à un bon sens des affaires.\nShe doesn't talk much, but once she does speak she is eloquent.\tElle ne parle pas beaucoup mais quand elle prend la parole, elle est éloquente.\nShe threw her hands up in horror when she saw what he had done.\tD'horreur, elle jeta les mains en l'air lorsqu'elle vit ce qu'il avait fait.\nSince this is important, I'd like you to attend to it yourself.\tComme ceci est important, j'aimerais que vous vous en occupiez vous-même.\nSince this is important, I'd like you to attend to it yourself.\tComme ceci est important, j'aimerais que vous vous en occupiez vous-mêmes.\nSix people applied for the job, but none of them were employed.\tSix personnes ont posé leurs candidatures pour le job, mais aucune d'entre elles n'a été employée.\nSome people think the president spends too much time traveling.\tCertaines personnes pensent que le président consacre trop de temps à voyager.\nSometimes the first symptom of cardiovascular disease is death.\tParfois, le premier symptôme d'une maladie cardio-vasculaire est la mort.\nStatistics show that the population of the world is increasing.\tLes statistiques montrent que la population mondiale augmente.\nStop beating around the bush and tell us what you really think.\tArrête de tourner autour du pot et dis-nous ce que tu penses réellement.\nTen minutes after they had passed Nara, the car ran out of gas.\tDix minutes après qu'ils aient passé Nara, l'auto s'est retrouvée sans essence.\nThat doctor specializes in helping those with eating disorders.\tCe médecin est spécialisé dans l'assistance aux personnes présentant des troubles alimentaires.\nThe American ships were stopped and searched in British waters.\tLes navires étasuniens furent arrêtés et fouillés dans les eaux britanniques.\nThe GDP of China still pales in comparison with that of the US.\tLe PIB de la Chine est encore dérisoire en comparaison de celui des États-Unis.\nThe aim of this game is to explode all the bombs on the screen.\tLe but de ce jeu est de faire exploser toutes les bombes sur l'écran.\nThe automobile industry is one of the main industries in Japan.\tL'industrie automobile est l'une des principales du Japon.\nThe bird picked up the twig with its beak and flew to its nest.\tL'oiseau ramassa la brindille avec son bec et vola vers son nid.\nThe box was crushed during transport and the contents flew out.\tLa boîte fut écrasée lors du transport et le contenu s'éparpilla.\nThe boy opened the window, although his mother told him not to.\tL'enfant ouvrit la fenêtre, bien que sa mère le lui eût défendu.\nThe celebrations culminated in a spectacular fireworks display.\tLes festivités culminèrent dans une représentation spectaculaire de feux d'artifice.\nThe children were sleeping when their grandparents called them.\tLes enfants dormaient lorsque leurs grands-parents les appelèrent.\nThe city center should be closed to all but pedestrian traffic.\tLe centre-ville devrait être fermé à toute circulation non piétonne.\nThe doctor ordered a full physical examination for the patient.\tLe médecin ordonna un examen complet du patient.\nThe drug must go through clinical trials before being approved.\tLe médicament doit subir des essais cliniques avant approbation.\nThe drug must go through clinical trials before being approved.\tLe médicament doit subir des essais cliniques avant autorisation.\nThe employees were intrigued by the odd behavior of their boss.\tLes employés étaient intrigués par l'étrange comportement de leur patron.\nThe government has taken measures to promote domestic industry.\tLe gouvernement a pris des mesures pour promouvoir l'activité nationale.\nThe heat is on the administration to come up with a new policy.\tLa pression est mise sur l'administration afin qu'elle trouve une nouvelle politique.\nThe jury found that Samsung had infringed upon Apple's patents.\tLe jury a estimé que Samsung a violé les brevets d'Apple.\nThe landlord told him to leave because he hadn't paid his rent.\tLe propriétaire lui a demandé de partir car il n'avait pas payé son loyer.\nThe more foolish a child is, the cuter he seems to his parents.\tPlus bête un enfant est, plus mignon il semble à ses parents.\nThe police executed a search warrant on my brother's apartment.\tLa police a exercé un mandat de perquisition dans l'appartement de mon frère.\nThe police found a dead body in an abandoned car near the park.\tLa police a trouvé un cadavre dans une voiture abandonnée près du parc.\nThe police have made hundreds of drug busts across the country.\tLa police a fait des centaines de saisies de drogue à travers le pays.\nThe police think the burglar entered through a basement window.\tLa police pense que le cambrioleur est entré par une fenêtre du sous-sol.\nThe roads were very muddy since it had rained during the night.\tLes routes étaient recouvertes de boue du fait qu'il avait plu durant la nuit.\nThe senator was censured by the congressional ethics committee.\tLe sénateur fut réprimandé par le comité d'éthique du congrès.\nThe size of a man's laundry bill is no criterion of his income.\tLa taille de la note de teinturier d'un homme n'est pas un indicateur de son revenu.\nThe talisman he's wearing is supposed to ward off evil spirits.\tLe talisman qu'il porte est supposé éloigner les mauvais esprits.\nThe third quarter GNP growth was 1% over the preceding quarter.\tLe taux de croissance du PNB au troisième trimestre a augmenté de 1% par rapport au trimestre précédent.\nThe tiles that fell from the roof broke into very small pieces.\tLes tuiles qui sont tombées du toit se sont brisées en menus morceaux.\nThe warrior is conscious of both his strength and his weakness.\tLe guerrier connaît à la fois ses forces et ses faiblesses.\nThere is very little probability of an agreement being reached.\tIl y a une infime probabilité qu'un accord soit trouvé.\nThere's something happening here that I don't quite understand.\tQuelque chose est en train de se passer ici que je ne comprends pas tout à fait.\nThey argue that the distribution of wealth should be equitable.\tIls soutiennent que la distribution de la richesse devrait être équitable.\nThey say that Firefox is downloaded over 8 million times a day.\tIls disent que chaque jour, Firefox est téléchargé plus de 8 millions de fois.\nThey thought it would be too expensive to build a factory here.\tIls pensèrent qu'il serait trop onéreux de bâtir une usine ici.\nThey're experiencing white water rafting on a class five river.\tIls font l'expérience du radeau en eau vive, sur une rivière de classe cinq.\nThis firm manufactures cars at the rate of two hundred per day.\tCette entreprise produit deux cents voitures par jour.\nThis road follows the shoreline for the next thirty kilometers.\tCette route suit la côte pour les trente prochains kilomètres.\nTo have doubts about oneself is the first sign of intelligence.\tDouter de soi est le premier signe d'intelligence.\nTom almost always falls asleep at night hugging his teddy bear.\tTom s'endort presque toujours la nuit en faisant un câlin à son ours en peluche.\nTom asked Mary to read him the letter she had gotten from John.\tTom demanda à Mary de lui lire la lettre qu'elle avait reçue de John.\nTom called Mary last night and encouraged her to join the team.\tTom a appelé Mary la nuit dernière et l'a encouragée à rejoindre l'équipe.\nTom didn't know where Mary wanted to spend her summer vacation.\tTom ne savait pas où Marie voulait passer ses vacances d'été.\nTom didn't know where Mary wanted to spend her summer vacation.\tTom ne savait pas où Marie avait envie de passer les vacances d'été.\nTom didn't know who Mary had decided to give her old guitar to.\tTom ne savait pas à qui Marie avait décidé de donner sa vieille guitare.\nTom doesn't know where Mary wants to spend her summer vacation.\tTom ne sait pas où Marie a envie de passer les vacances d'été.\nTom doesn't know where Mary wants to spend her summer vacation.\tTom ne sait pas où Marie a envie de passer ses vacances, cet été.\nTom doesn't want to give up his dream of becoming an astronaut.\tTom ne veut pas abandonner son rêve de devenir un cosmonaute.\nTom drank a lot last night and is a bit hung over this morning.\tTom a beaucoup bu la nuit dernière et il a un peu la gueule de bois ce matin.\nTom found out later that the woman he met in the park was Mary.\tTom a su plus tard que la femme qu'il avait rencontrée dans le parc était Mary.\nTom has been eating at that restaurant since he was a teenager.\tTom mange à ce restaurant depuis qu'il est adolescent.\nTom lay awake for a long time thinking about what he should do.\tTom resta éveillé pendant un long moment en pensant à ce qu'il devait faire.\nTom went to a nearby convenience store to buy something to eat.\tTom est allé à une épicerie proche pour acheter quelque chose à manger.\nTom woke the children up and told them to get ready for school.\tTom a réveillé les enfants et leur a dit de se préparer pour l'école.\nUnless there is a miracle, we won't be able to make it on time.\tÀ moins d'un miracle, nous ne serons pas en mesure de le faire à temps.\nWater is leaking into my goggles. I don't think they fit right.\tL'eau pénètre dans mes lunettes. Je ne pense pas qu'elles sont à la bonne taille.\nWe can't add days to our life, but we can add life to our days.\tNous ne pouvons ajouter de jours à nos vies, mais nous pouvons ajouter de la vie à nos jours.\nWe look forward to working more closely with you in the future.\tNous nous réjouissons de travailler plus étroitement avec vous à l'avenir.\nWe should keep this information under wraps for the time being.\tNous devrions garder cette information sous le coude pour l'instant.\nWe should weigh the options carefully before making a decision.\tNous devrions attentivement peser les options avant de prendre une décision.\nWe were unable to make contact with them until it was too late.\tNous avons été incapables de les joindre jusqu'à ce qu'il soit trop tard.\nWe were wakened by the whistle of the steam locomotive at dawn.\tNous avons été réveillés à l'aube par le sifflement d'un train.\nWe weren't able to buy tickets, so we didn't go to the concert.\tNous n'avons pas pu acheter de places, nous ne sommes donc pas allé au concert.\nWe wouldn't be in this mess if you'd just done what I told you.\tNous ne serions pas dans cette merde si tu avais fait précisément ce que je t'avais dit.\nWe're interested in observing the customs of different regions.\tNous sommes intéressés par l'observation des coutumes de différentes régions.\nWhen I hear that song, I think about the place where I grew up.\tLorsque j'entends cette chanson, je pense à l'endroit où j'ai grandi.\nWhen you think about it that doesn't make a whole lot of sense.\tLorsqu'on y pense, ça n'a pas beaucoup de sens.\nWhen you're done with the book, put it back where you found it.\tQuand tu auras terminé avec le livre, remets-le là où tu l'as trouvé.\nWhy did you ask Tom to do that when you knew he couldn't do it?\tPourquoi avez-vous demandé à Tom de faire cela, alors que vous saviez qu'il ne le pouvait pas ?\nWhy did you ask Tom to do that when you knew he couldn't do it?\tPourquoi as-tu demandé à Tom de faire cela, alors que tu savais qu'il ne pouvait pas ?\nWhy did you tear the cloth instead of cutting it with scissors?\tPourquoi as-tu déchiré le tissu, plutôt que de le découper avec des ciseaux ?\nWhy does it take them so long to set up my internet connection?\tPourquoi cela leur prend-il tant de temps pour établir ma connexion Internet ?\nYou don't have to speak so loudly. I can hear you very clearly.\tVous n'avez pas besoin de parler si fort. Je peux vous entendre très clairement.\nYou had better go to the dentist to have that tooth pulled out.\tTu ferais mieux d'aller chez le dentiste pour te faire arracher cette dent.\nYou shouldn't read people's private letters without permission.\tTu ne devrais pas lire les lettres privées des gens sans permission.\nYou're probably too young to understand why we have to do this.\tTu es probablement trop jeune pour comprendre pourquoi nous devons faire ceci.\nYou're probably too young to understand why we have to do this.\tVous êtes probablement trop jeune pour comprendre pourquoi nous devons faire ceci.\nYou're the only person I know who regularly gets my name wrong.\tTu es la seule personne que je connaisse qui écorche régulièrement mon nom.\n\"I would love to go to the dance with you.\" \"Really? You would?\"\t« J'adorerais aller au bal avec toi. » « Vraiment ? Tu le voudrais ? »\n\"I would love to go to the dance with you.\" \"Really? You would?\"\t« J'adorerais aller au bal avec vous. » « Vraiment ? Vous le voudriez ? »\n\"Why are you going to Japan?\" \"To attend a conference in Tokyo.\"\t\"Pourquoi vas-tu au Japon ?\"\"Pour participer à une conférence à Tokyo.\"\nA book not worth reading is not worth buying in the first place.\tUn livre qui ne vaut pas la peine d'être lu ne vaut pas la peine d'être acheté dès le départ.\nA couple of flights were delayed on account of a minor accident.\tQuelques vols furent retardés à cause d'un accident mineur.\nA dog jumped onto the chair and lay motionless for five minutes.\tUn chien sauta sur la chaise et resta immobile pendant cinq minutes.\nA fat white cat sat on a wall and watched them with sleepy eyes.\tUn gros chat blanc s'assit sur le mur et les regarda avec des yeux endormis.\nA picture of the fugitive was plastered all over the newspapers.\tUne photo du fugitif fut placardée dans tous les journaux.\nA slight cold prevented me from going to Ibusuki with my family.\tUn léger rhume m'a empêché d'aller à Ibusuki avec ma famille.\nA spell of fine weather enabled us to get the harvest in safely.\tUne période de beau temps nous permit de mettre la récolte à l'abri.\nA very unfortunate case came to our attention several years ago.\tUn cas vraiment malheureux fut soumis à notre attention il y a plusieurs années.\nA watered down compromise resolution is better than none at all.\tUne résolution sur un compromis restreint est préférable à rien du tout.\nAfter ten years as business partners, they decided to part ways.\tAprès dix ans comme partenaires en affaires, ils ont décidé de se séparer.\nAfter ten years as business partners, they decided to part ways.\tAprès dix ans comme partenaires en affaires, ils ont décidé de cheminer chacun de leur côté.\nAll the English teachers at my son's school are native speakers.\tTous les enseignants en anglais à l'école de mon fils sont des locuteurs natifs.\nBritish Prime Minister Neville Chamberlain was forced to resign.\tLe premier ministre britannique Neville Chamberlain a été forcé de démissionner.\nBy the year 2020, the population of this city will have doubled.\tEn 2020, la population de cette ville aura doublée.\nCan you just tell me now, so I don't have to come back tomorrow?\tPeux-tu me le dire maintenant, que je n'ai pas à revenir demain ?\nChildren depend on their parents for food, clothing and shelter.\tLes enfants dépendent de leurs parents pour la nourriture, les vêtements et le logement.\nDo you have any idea how many people died when the Titanic sunk?\tAvez-vous la moindre idée de combien de personnes sont mortes lorsque le Titanic a coulé ?\nDo you know the difference between a microscope and a telescope?\tConnaissez-vous la différence entre un microscope et un télescope ?\nDo you know the difference between a microscope and a telescope?\tConnais-tu la différence entre un microscope et un télescope ?\nDo you think parents should punish their children when they lie?\tPensez-vous que les parents devraient punir leurs enfants lorsqu'ils mentent ?\nDo you think parents should punish their children when they lie?\tPenses-tu que les parents devraient punir leurs enfants lorsqu'ils mentent ?\nDoes the applicant have suitable abilities to carry out the job?\tLe candidat a-t-il les capacités qui conviennent pour mener à bien le travail ?\nDon't forget that good jobs are very hard to come by these days.\tN'oubliez pas que les emplois sont difficiles à trouver de nos jours.\nEven a clock that is stopped shows the correct time twice a day.\tMême une pendule arrêtée affiche la bonne heure deux fois par jour.\nEven if it takes you three years, you must accomplish your goal.\tMême si cela vous prend trois ans, vous devez atteindre votre but.\nEverybody in the building headed for the exits at the same time.\tTout le monde dans le bâtiment s'est dirigé vers les sorties en même temps.\nEverybody in the building headed for the exits at the same time.\tTout le monde dans le bâtiment s'est dirigé vers les sorties au même moment.\nEverybody is supposed to know the law, but few people really do.\tTout le monde est censé connaître les lois, mais très peu de gens les connaissent vraiment.\nEverywhere you look you can see damage caused by the earthquake.\tOù que vous regardiez, vous pouvez voir des dégâts causés par le séisme.\nEverywhere you look you can see damage caused by the earthquake.\tOù que vous regardiez, vous pouvez constater des dégâts causés par le séisme.\nEverywhere you look you can see damage caused by the earthquake.\tOù que vous regardiez, vous pouvez voir des dégâts causés par le tremblement de terre.\nEverywhere you look you can see damage caused by the earthquake.\tOù que tu regardes, tu peux voir des dégâts causés par le tremblement de terre.\nFinding a solution that worked was a process of trial and error.\tTrouver une solution qui fonctionnait fut un processus expérimental.\nFor the moment there's nothing in particular I need to be doing.\tPour l'instant il n'y a rien que je dois faire.\nFrictions between Japan and the U.S. are easing up for a change.\tLes frictions entre le Japon et les États-Unis d'Amérique se détendent, pour changer.\nFrom an objective viewpoint, his argument was far from rational.\tD'un point de vue objectif, son argument était loin d'être rationnel.\nFrom the top of that tall building, you can easily see the city.\tDepuis le haut de ce grand bâtiment, vous pouvez facilement voir la ville.\nFunding for this program was provided by the following sponsors.\tLe financement de ce programme a été assuré par les sponsors suivants.\nGiven only thirty minutes, we couldn't answer all the questions.\tEn trente minutes seulement, nous n'avons pas pu répondre à toutes les questions.\nHad it not been for his aid, I could not have finished the work.\tSans son aide je n'aurais pas pu finir le travail.\nHe enjoys his sleep and doesn't like to have it interfered with.\tIl apprécie son sommeil et n'aime pas qu'on le lui dérange.\nHe kept badgering her until she told him what he wanted to know.\tIl a continué à la harceler jusqu'à ce qu'elle lui dise ce qu'il voulait savoir.\nHe left home early in the morning so he wouldn't miss the train.\tIl partit tôt le matin de chez lui de manière à ne pas manquer le train.\nHe left home early in the morning so he wouldn't miss the train.\tIl partit tôt le matin de chez moi de manière à ne pas manquer le train.\nHe left home early in the morning so he wouldn't miss the train.\tIl partit tôt le matin de chez nous de manière à ne pas manquer le train.\nHe received a large sum of money in compensation for his injury.\tIl reçut une importante somme d'argent en compensation de sa blessure.\nHe stood close to her and tried to protect her from the typhoon.\tIl se tint près d'elle et essaya de la protéger du typhon.\nHe submitted his resignation in protest of the company's policy.\tIl présenta sa démission pour protester contre la politique de la société.\nHe was paroled after having served eleven years of his sentence.\tIl a été libéré sur parole après avoir servi onze années de sa peine.\nHis lackadaisical attitude to studying explains his poor grades.\tSon attitude indolente vis-à-vis des études explique ses notes médiocres.\nHis lackadaisical attitude to studying explains his poor grades.\tSon attitude nonchalante vis-à-vis des études explique ses notes médiocres.\nI am working full-time at a bookshop until the end of September.\tJusqu'à fin septembre je travaille à plein temps dans une librairie.\nI can still remember the time when we went on a picnic together.\tJ'arrive encore à me rappeler le temps où nous sommes allés en pique-nique ensemble.\nI can still remember the time when we went on a picnic together.\tJ'arrive encore à me rappeler le temps où nous sommes allées en pique-nique ensemble.\nI can still remember the time when we went on a picnic together.\tJe peux encore me souvenir de la fois où nous sommes allés en pique-nique ensemble.\nI can't believe how much things have changed since we were kids.\tJe n'arrive pas à croire combien les choses ont changé depuis que nous étions enfants.\nI can't count the number of times Tom has complained about that.\tJe ne peux pas compter le nombre de fois où Tom s'est plaint à ce sujet.\nI don't know if I've ever told you, but you have beautiful eyes.\tJe ne sais pas si je vous l'ai jamais dit mais vous avez de beaux yeux.\nI don't know if I've ever told you, but you have beautiful eyes.\tJe ne sais pas si je te l'ai jamais dit mais tu as de beaux yeux.\nI don't think I can get you to understand how difficult that is.\tJe ne suis pas sûr de pouvoir te faire réaliser à quel point cela est difficile.\nI doubt it'll be very hard for you to get your driver's license.\tJe doute qu'il te sera très difficile d'obtenir ton permis de conduire.\nI feel depressed because there are a lot of things I have to do.\tJe me sens déprimé parce qu'il y a de nombreuses choses que je doive faire.\nI feel depressed because there are a lot of things I have to do.\tJe me sens déprimée parce qu'il y a de nombreuses choses que je doive faire.\nI find that I get the best flavor by grinding fresh peppercorns.\tJe trouve que j'obtiens la meilleure saveur en moulant des grains de poivre frais.\nI give you everything you ask for, but you never seem satisfied.\tJe vous donne tout ce que vous demandez mais vous ne semblez jamais satisfaite.\nI give you everything you ask for, but you never seem satisfied.\tJe vous donne tout ce que vous demandez mais vous ne semblez jamais satisfait.\nI give you everything you ask for, but you never seem satisfied.\tJe vous donne tout ce que vous demandez mais vous ne semblez jamais satisfaites.\nI give you everything you ask for, but you never seem satisfied.\tJe vous donne tout ce que vous demandez mais vous ne semblez jamais satisfaits.\nI give you everything you ask for, but you never seem satisfied.\tJe te donne tout ce que tu demandes mais tu ne sembles jamais satisfaite.\nI give you everything you ask for, but you never seem satisfied.\tJe te donne tout ce que tu demandes mais tu ne sembles jamais satisfait.\nI give you two permission to do whatever you think is necessary.\tJe vous donne à tous deux le droit de faire tout ce que vous pensez nécessaire.\nI got lost and had a hard time finding my way back to the hotel.\tJe me suis égaré et j'ai eu du mal à retrouver le chemin de l'hôtel.\nI had to catch the first train this morning to get here in time.\tJ'ai dû attraper le premier train, ce matin, pour arriver ici à temps.\nI hadn't planned to do that, but I can if you really want me to.\tJe n'avais pas prévu de faire cela mais je peux le faire, si vous le voulez vraiment.\nI hadn't planned to do that, but I can if you really want me to.\tJe n'avais pas prévu de faire cela mais je peux le faire, si tu le veux vraiment.\nI have done the best I could to help you. The rest is up to you.\tJ'ai fait de mon mieux pour t'aider. Le reste dépend de toi.\nI have every reason to believe that he is innocent of the crime.\tJ'ai toutes les raisons de croire qu'il est innocent de ce crime.\nI hope my new stepfather sticks around longer than the last one.\tJ'espère que mon nouveau beau-père va rester dans le coin plus longtemps que le dernier.\nI just want to make sure that his offer has no strings attached.\tJe veux juste m'assurer que sa proposition n'est pas un cadeau empoisonné.\nI just want to make sure you live up to your end of the bargain.\tJe veux juste m'assurer que vous respectez votre partie du contrat.\nI just wanted to tell you that I'm really sorry for what I said.\tJe voulais seulement te dire que je suis réellement désolé de ce que j'ai dit.\nI keep a good supply of stamps to save trips to the post office.\tJe garde une bonne réserve de timbres pour m'économiser les visites au bureau de poste.\nI know you're nervous, but rest assured, you won't feel a thing.\tJe sais que tu es nerveux, mais rassure-toi, tu ne sentiras rien.\nI never expected to find such a nice hotel in a place like this.\tJe n'aurais jamais pensé trouver un hôtel aussi sympa dans un lieu comme celui-ci.\nI really appreciate the fact that you like me just the way I am.\tJe suis vraiment reconnaissant du fait que tu m'aimes juste comme je suis.\nI suppose it makes sense to go ahead and pay the bill right now.\tJe suppose qu'il est sensé de procéder et de payer la facture maintenant.\nI think everyone looks back on their childhood with some regret.\tJe pense que chacun se retourne vers son enfance avec un certain regret.\nI think it wouldn't be too hard to come up with a better system.\tJe pense que ça ne devrait pas être trop difficile de concevoir un meilleur système.\nI think it's time for me to talk to the boss about this problem.\tJe pense qu'il est temps que je parle au patron de ce problème.\nI think it's unlikely that I'll be able to pass my driving test.\tJe pense qu'il est improbable que je sois en mesure de réussir mon examen de conduite.\nI think you're the most beautiful woman in the whole wide world.\tJe pense que tu es la plus belle femme au monde.\nI thought Tom would need help getting in and out of the bathtub.\tJe croyais que Tom aurait eu besoin d'aide pour entrer et sortir de la douche.\nI want each of you to tell me exactly what you did last weekend.\tJe veux que chacun de vous me dise exactement ce qu'il a fait le week-end dernier.\nI want to know how he manages to make such good use of his time.\tJe veux savoir comment il s'arrange pour faire un si bon usage de son temps.\nI would advise you strongly to do what the boss asked you to do.\tJe vous conseillerais fortement de faire ce que le patron vous a dit de faire.\nI would advise you strongly to do what the boss asked you to do.\tJe te conseillerais fortement de faire ce que le patron t'a dit de faire.\nI'd like to talk to you about what happened at school yesterday.\tJ'aimerais vous entretenir de ce qui s'est passé à l'école, hier.\nI'd like to talk to you about what happened at school yesterday.\tJ'aimerais discuter avec vous de ce qui s'est passé à l'école, hier.\nI'm hoping that I can write two or three songs over the weekend.\tJ'espère pouvoir écrire deux ou trois chansons au cours du week-end.\nI'm not sure what's wrong. We should have heard from him by now.\tJe ne suis pas sûr de ce qui ne va pas. Nous devrions déjà avoir entendu parler de lui.\nI'm not sure what's wrong. We should have heard from him by now.\tJe ne sais pas ce qui cloche, mais on aurait déjà dû avoir de ses nouvelles.\nI'm sorry for calling so late. I just wanted to hear your voice.\tJe suis désolé d'appeler si tard. Je voulais juste entendre votre voix.\nI'm sorry for calling so late. I just wanted to hear your voice.\tJe suis désolée d'appeler si tard. Je voulais juste entendre votre voix.\nI'm sorry for calling so late. I just wanted to hear your voice.\tJe suis désolé d'appeler si tard. Je voulais juste entendre ta voix.\nI'm sorry for calling so late. I just wanted to hear your voice.\tJe suis désolée d'appeler si tard. Je voulais juste entendre ta voix.\nI'm sorry to be so late. The meeting completely slipped my mind.\tJe suis désolé d'être tellement en retard. La réunion m'était complètement sortie de l'esprit.\nI'm sorry to be so late. The meeting completely slipped my mind.\tJe suis désolé d'être tellement en retard. J'avais complètement oublié le rendez-vous.\nI'm sorry to be so late. The meeting completely slipped my mind.\tJe suis désolée d'être tellement en retard. J'avais complètement oublié le rendez-vous.\nIf all goes to plan, I should be back home again tomorrow night.\tSi tout se passe selon le plan, je devrais être de retour à la maison demain soir.\nIf it were not for the sun, there would be no life on the earth.\tS'il n'y avait pas de soleil, il n'y aurait pas de vie sur terre.\nIf it's all right with you, I'd like to stay for a while longer.\tSi ça vous convient, j'aimerais rester encore un moment.\nIf it's all right with you, I'd like to stay for a while longer.\tSi ça te convient, j'aimerais rester encore un moment.\nIf they'd taken their doctors' advice, they might not have died.\tSi elles avaient suivi les conseils de leurs médecins, elles ne seraient peut-être pas mortes.\nIf they'd taken their doctors' advice, they might not have died.\tS'ils avaient suivi les conseils de leurs médecins, ils ne seraient peut-être pas morts.\nIf they'd taken their doctors' advice, they might not have died.\tS'ils avaient suivi les conseils de leurs médecins, ils ne seraient peut-être pas décédés.\nIf they'd taken their doctors' advice, they might not have died.\tSi elles avaient suivi les conseils de leurs médecins, elles ne seraient peut-être pas décédées.\nIf you can digest them, raw vegetables are good for your health.\tSi on peut les digérer, les légumes crus font du bien à la santé.\nIf you go hiking in the desert, be sure to take plenty of water.\tSi vous allez randonner dans le désert, assurez-vous de prendre beaucoup d'eau.\nIf you had been a little more patient, you could have succeeded.\tSi tu avais été un peu plus patient, tu aurais pu réussir.\nIf you look around, you'll see many people doing the same thing.\tSi vous regardez autour, vous verrez beaucoup de gens faire la même chose.\nIf you stand on this stool, you can reach the top of the closet.\tSi tu veux atteindre le placard du haut tu dois monter sur un tabouret.\nIf you testify against him, we can put him behind bars for good.\tSi vous témoignez contre lui, nous pouvons le mettre derrière les barreaux pour de bon.\nIf you've been drinking, perhaps your spouse can drive you home.\tSi vous avez bu, peut-être que votre épouse peut vous reconduire chez vous.\nIf you've been drinking, perhaps your spouse can drive you home.\tSi vous avez bu, peut-être que votre époux peut vous reconduire chez vous.\nIf you've been drinking, perhaps your spouse can drive you home.\tSi vous avez bu, peut-être que votre conjoint peut vous reconduire chez vous.\nIn spite of our encouragement, he decided to throw in the towel.\tIl décida de jeter l'éponge malgré nos encouragements.\nIs eating a clove of garlic every day beneficial to your health?\tEst-ce que manger une gousse d'ail par jour est bénéfique pour la santé ?\nIs it possible to determine the diameter from the circumference?\tEst-il possible d'inférer le diamètre à partir de la circonférence ?\nIt is imperative that we find another way out of this situation.\tIl est impératif que nous trouvions un autre moyen de sortir de cette situation.\nIt is sometimes difficult to make yourself understood in public.\tIl est parfois difficile de se faire comprendre en public.\nIt looks like the party in power will win the upcoming election.\tIl semble que le parti au pouvoir gagnera les élections à venir.\nIt will take me more than three hours to look over the document.\tIl va me falloir plus de trois heures pour lire le document.\nIt's an intriguing theory, but I don't see how it can be tested.\tC'est une théorie intéressante, mais je ne vois pas comment elle peut être testée.\nIt's difficult to teach people what they are unwilling to learn.\tIl est ardu d'enseigner aux gens ce qu'ils ne veulent pas apprendre.\nIt's not that I am unsympathetic, but I am not able to help you.\tCe n'est pas que je suis antipathique, mais je ne peux pas vous aider.\nJapanese children are group members even when they are sleeping.\tLes enfants japonais sont des membres du groupe, même quand ils dorment.\nJapanese should not forget that America is a multiracial nation.\tLes Japonais ne peuvent pas éluder le fait que les États-Unis d'Amérique sont une nation multiethnique.\nJust stick around a few days and you'll come to love this place.\tReste simplement dans les environs quelques jours et tu en viendras à adorer cet endroit.\nJust stick around a few days and you'll come to love this place.\tRestez simplement dans les environs quelques jours et vous en viendrez à adorer cet endroit.\nLet's grab a quick lunch at that small coffeeshop near the park.\tPrenons un déjeuner rapide au petit café près du parc !\nMany people think that children spend too much time watching TV.\tBeaucoup de gens pensent que les enfants passent trop de temps à regarder la télé.\nMary looks like her mother, but she has a different personality.\tMarie ressemble à sa mère mais elle a une personnalité différente.\nMy son's short attention span is causing him problems at school.\tLa faible durée de l'attention de mon fils lui cause des problèmes à l'école.\nNext time I visit San Francisco, I'd like to stay at that hotel.\tLa prochaine fois que je visite San Francisco, je voudrais séjourner dans cet hôtel.\nNo matter how hard I try, I can't do it any better than she can.\tJ'ai beau essayer, je n'arrive pas à le faire un tant soit peu mieux qu'elle.\nNobody understood why the elephant suddenly turned on its owner.\tPersonne n'a compris pourquoi l'éléphant s'est soudain attaqué à son propriétaire.\nOne store decided to pull the controversial CD from its shelves.\tUn magasin décida de retirer le CD controversé de ses étagères.\nOne thing I've always wanted to do is go camping with my family.\tUne chose dont j'ai toujours eu envie, c'est d'aller faire du camping en famille.\nOur company is planning to build a new chemical plant in Russia.\tNotre entreprise a le projet de construire une nouvelle usine chimique en Russie.\nOur train had already pulled out when we arrived at the station.\tNotre train était déjà parti lorsque nous arrivâmes à la gare.\nPeople can turn to the law if they want to correct an injustice.\tLes gens peuvent se tourner vers la loi s'ils veulent corriger une injustice.\nPhilosophers tend to have little contact with the outside world.\tLes philosophes ont tendance à avoir peu de contact avec le monde extérieur.\nShe advised him to take a rest, but he didn't follow her advice.\tElle lui a conseillé de prendre un congé, mais il n'a pas suivi son conseil.\nShe availed herself of every opportunity to improve her English.\tElle a saisi toutes les occasions pour améliorer son anglais.\nShe has the habit of clearing her throat whenever she's nervous.\tElle a l'habitude d'éclaircir sa gorge chaque fois qu'elle est nerveuse.\nShe sent me a postcard that said she hates the smell of animals.\tElle m'a envoyé une carte postale qui disait qu'elle détestait l'odeur des animaux.\nShe sorted the washing before putting it in the washing machine.\tElle a trié le linge avant de le mettre dans la machine à laver.\nShe was asked to convince him to get his son to paint the house.\tOn lui demanda de le convaincre de faire peindre la maison par son fils.\nShe was asked to convince him to get his son to paint the house.\tOn lui demanda de le convaincre d'obtenir de son fils qu'il peigne la maison.\nShe was asked to convince him to get his son to paint the house.\tOn lui demanda de le convaincre d'obtenir de son fils qu'il peignît la maison.\nShe wouldn't let up until I agreed to go to the movies with her.\tElle ne voulait pas me lâcher jusqu'à ce que j'accepte d'aller avec elle au cinéma.\nShe's been living for the last five years under an assumed name.\tElle a vécu sous un nom d'emprunt au long des cinq dernières années.\nShe's making money hand over fist with the business she started.\tElle gagne de l'argent à gogo avec l'affaire qu'elle a lancée.\nSome continue to work part time, while others do volunteer work.\tCertains continuent à travailler à temps partiel, tandis que d'autres font du bénévolat.\nSome people believe they can become rich without having to work.\tCertaines personnes croient qu'elles peuvent devenir riches sans avoir à travailler.\nSome young Japanese people prefer being single to being married.\tCertains jeunes Japonais préférent rester célibataires plutôt que de se marier.\nSomebody tipped off the gang members to the police surveillance.\tQuelqu'un a tuyauté les membres de la bande sur leur surveillance par la police.\nSometimes it's hard to resist the impulse to burst out laughing.\tIl est parfois difficile de résister à une furieuse envie d'éclater de rire.\nSwitzerland is a very beautiful country and well worth visiting.\tLa Suisse est un très beau pays qui mérite une visite.\nThe Japanese embassy has warned Japanese citizens to be careful.\tL'ambassade du Japon a averti les citoyens japonais d'être prudents.\nThe accident left a long, deep gash in the side of the airplane.\tL'accident laissa une longue et profonde déchirure sur le côté de l'avion.\nThe accident seemed to have something to do with the heavy snow.\tL'accident semblait avoir à faire avec la neige profonde.\nThe bomb was defused just minutes before it would have exploded.\tLa bombe fut désamorcée quelques minutes avant qu'elle explose.\nThe bridge between Denmark and Sweden is almost five miles long.\tLe pont entre le Danemark et la Suède fait presque 5 milles de longueur.\nThe car had two broad stripes painted on the hood and the trunk.\tLa voiture avait deux larges bandes peintes sur le capot et le coffre.\nThe classroom is full of teenagers. A couple of them are asleep.\tLa classe est pleine d'adolescents. Certains d'entre-eux sont endormis.\nThe company he used to work for went into bankruptcy last month.\tLa société dans laquelle il travaillait auparavant a fait faillite le mois dernier.\nThe conflict between blacks and whites in the city became worse.\tLe conflit entre les blancs et les noirs dans la ville s'empira.\nThe detective I hired called to tell me he has a promising lead.\tLe détective que j'ai employé m'a appelé pour me dire qu'il a une piste intéressante.\nThe divorce was finalized this morning at the attorney's office.\tLe divorce a finalement été prononcé ce matin au bureau du juge.\nThe doctor monitored the patient's heartbeat and blood pressure.\tLe docteur a contrôlé le rythme cardiaque du patient et sa pression artérielle.\nThe earthquake was the biggest one that we had ever experienced.\tCe séisme fut le plus important que l'on ait jamais vécu.\nThe food in my country is not very different from that of Spain.\tLa nourriture dans mon pays n'est pas très différente de celle de l'Espagne.\nThe government explicitly declared its intention to lower taxes.\tLe gouvernement a explicitement annoncé son intention de baisser les impôts.\nThe high court decided to try the fugitive warlord in abstentia.\tLa haute cour a décidé de juger le chef de guerre fugitif par contumace.\nThe job applicant did not meet the expectations of the employer.\tLe candidat au poste n'a pas satisfait aux attentes de l'employeur.\nThe kindergarten children were walking hand in hand in the park.\tLes enfants de la maternelle se promenaient main dans la main dans le parc.\nThe number of people suffering from heart disease has increased.\tLe nombre de personnes souffrant de problèmes cardiaques a augmenté.\nThe nurse tied a rubber tube around my arm before he drew blood.\tL'infirmier attacha un tube de caoutchouc autour de mon bras avant d'extraire du sang.\nThe police are certain to get him in the end wherever he may go.\tLa police est certaine de l'appréhender au bout du compte, où qu'il aille.\nThe police demanded that the criminal hand over the gun to them.\tLa police demanda que le criminel leur remette le pistolet.\nThe reason for your failure is that you did not try hard enough.\tLa raison de ton échec est que tu n'as pas assez essayé.\nThe second the mailman comes, he rushes out to pick up his mail.\tÀ la seconde où le facteur passe, il fonce dehors pour ramasser son courrier.\nThe short term contract employees were dismissed without notice.\tLes intérimaires ont été renvoyés sans préavis.\nThe value of the coins depended on the weight of the metal used.\tLa valeur des pièces de monnaie dépendaient du poids du métal utilisé.\nThere is a fundamental difference between your opinion and mine.\tIl y a une différence fondamentale entre ton opinion et la mienne.\nThere is a fundamental difference between your opinion and mine.\tIl y a une différence fondamentale entre votre opinion et la mienne.\nThere's a fire in the building. We have to evacuate immediately.\tIl y a un feu dans le bâtiment. Nous devons évacuer immédiatement.\nThere's a fire in the building. We have to evacuate immediately.\tIl y a un incendie dans l'immeuble. Nous devons évacuer immédiatement.\nThere's something about him that just doesn't sit right with me.\tIl y a quelque chose en lui qui cloche selon moi.\nThere's something about this translation that isn't quite right.\tIl y a quelque chose dans cette traduction qui n'est pas tout à fait correct.\nThey have us out-gunned, but we'll have the element of surprise.\tIls ont une plus grande puissance de feu que nous, mais nous bénéficierons de l'effet de surprise.\nThey will go to the woods to pick mushrooms, weather permitting.\tSi le temps le permet, ils iront à la cueillette aux champignons dans les bois.\nThis book is for students whose native language is not Japanese.\tCe livre est destiné aux étudiants dont le japonais n'est pas la langue maternelle.\nThis increase in unemployment is a consequence of the recession.\tCette hausse du chômage est la conséquence de la récession.\nThis is by far the best novel that has been published this year.\tC'est de loin la meilleure nouvelle qui a été publiée cette année.\nThis new application claims to be user friendly. Well, it isn't.\tCette nouvelle application prétend être ergonomique. Eh bien ce n'est pas le cas.\nThough the doctor did his best, the patient's recovery was slow.\tBien que le médecin ait fait de son mieux, la convalescence du patient a été longue.\nTom advised Mary not to believe everything she reads on the Web.\tTom a conseillé à Mary de ne pas croire tout ce qu'elle lit sur le web.\nTom advised Mary not to believe everything she reads on the Web.\tTom conseilla à Mary de ne pas croire tout ce qu'elle lit sur le web.\nTom always keeps a set of jumper cables in the trunk of his car.\tTom garde toujours des câbles de démarrage dans le coffre de sa voiture.\nTom always stays at school as late as the teachers allow him to.\tTom reste toujours à l'école aussi tard que les enseignants lui permettent.\nTom didn't get off the airplane with the rest of the passengers.\tTom n'est pas descendu de l'avion avec les autres passagers.\nTom didn't get off the airplane with the rest of the passengers.\tTom ne descendit pas de l'avion avec les autres passagers.\nTom didn't have the courage to admit that he had made a mistake.\tTom n'a pas eu le courage d'admettre qu'il avait fait une erreur.\nTom didn't have time to watch the TV program he wanted to watch.\tTom n'a pas eu le temps de regarder le programme TV qu'il voulait voir.\nTom didn't tell his parents that he had gotten an F on the test.\tTom n'a pas dit à ses parents qu'il avait eu un F à l'examen.\nTom didn't tell his parents that he had gotten an F on the test.\tTom ne dit pas à ses parents qu'il avait eu un F à l'examen.\nTom didn't tell his parents that he had gotten an F on the test.\tTom n'a pas dit à ses parents qu'il avait eu un F à l'évaluation.\nTom didn't tell his parents that he had gotten an F on the test.\tTom ne dit pas à ses parents qu'il avait eu un F à son évaluation.\nTom doesn't know who Mary has decided to give her old guitar to.\tTom ne sait pas à qui Marie a décidé de donner sa vieille guitare.\nTom doesn't like people to know that he can't speak French well.\tTom ne veux pas que les gens sachent qu'il ne parle pas bien français.\nTom has already finished the book he started reading last night.\tTom a déjà fini le livre qu'il avait commencé à lire la nuit dernière.\nTom has decided to have the surgery that his doctor recommended.\tTom a décidé de subir l'opération que le médecin lui a recommandée.\nTom has to learn Japanese because he's going to Japan next year.\tTom doit apprendre le japonais car il va au Japon l'année prochaine.\nTom hopes to inherit a lot of money when his mother passes away.\tTom espère hériter de beaucoup d'argent quand sa mère décédera.\nTom lay awake for a long time wondering about what he should do.\tTom resta longtemps allongé sans dormir, s'interrogeant ce qu'il devrait faire.\nTom thinks Mary is in Boston, but she's actually in Chicago now.\tTom pense que Mary est à Boston, mais en réalité elle est à Chicago actuellement.\nWe associate the name of Einstein with the theory of relativity.\tNous associons le nom d'Einstein à la relativité.\nWe couldn't open the door because it was locked from the inside.\tNous n'avons pu ouvrir la porte parce qu'elle était verrouillée de l'intérieur.\nWe couldn't open the door because it was locked from the inside.\tNous ne pûmes ouvrir la porte parce qu'elle était verrouillée de l'intérieur.\nWe criticized the photographer for not rescuing the child first.\tNous critiquâmes le photographe de ne pas avoir d'abord sauvé l'enfant.\nWe found a beautiful, blue lagoon on the far side of the island.\tNous sommes tombés sur une très jolie lagune bleue dans la zone la plus éloignée de l'île.\nWe have to nip this problem in the bud before it gets any worse.\tNous devons écraser ce problème dans l'œuf avant qu'il n'empire.\nWe often took a walk along the seashore together in the morning.\tNous nous promenions souvent ensemble le long de la côte le matin.\nWe should just enjoy this and not worry about how much it costs.\tNous devrions tout simplement profiter de cela et ne pas vous soucier de combien il en coûte.\nWe used emergency measures to revive the cardiac arrest patient.\tNous avons utilisé des mesures d'urgence pour réanimer le patient victime d'un arrêt cardiaque.\nWe will ship the product immediately after receiving your order.\tNous vous expédierons le produit immédiatement après avoir reçu votre commande.\nWe're going to eat a lot tonight so I hope you're not on a diet.\tOn va beaucoup manger ce soir alors j'espère que tu ne fais pas de régime.\nWhat happens when an unstoppable force hits an unmovable object?\tQue se passe-t-il lorsqu'une force effrénée frappe un objet immuable ?\nWhat if you were able to buy the house you've always dreamed of?\tEt si tu étais en mesure d'acquérir la maison dont tu as toujours rêvé ?\nWhat if you were able to buy the house you've always dreamed of?\tEt si vous étiez en mesure d'acquérir la maison dont vous avez toujours rêvé ?\nWhen Dad finds out what you've done, he's going to hit the roof.\tQuand Papa va s'apercevoir de ce que tu as fait, il va devenir dingue.\nWhen we entered the shack, we saw a half-eaten pie on the table.\tEn entrant dans la cabane, nous vîmes une tarte à moitié mangée sur la table.\nWhen would you have time to come over and help me move my piano?\tQuand disposerais-tu de temps pour venir chez moi et m'aider à bouger mon piano ?\nWhen you hear hoofbeats behind you, don't expect to see a zebra.\tQuand vous entendez des bruits de sabots derrière vous, n'espérez pas voir un zèbre.\nWhile I was waiting for the bus, I witnessed a traffic accident.\tTandis que j'attendais le bus, j'ai assisté à un accident.\nWhile I was waiting for the bus, I witnessed a traffic accident.\tTandis que j'attendais le car, j'ai assisté à un accident.\nWhile you are about it, please make a cup of coffee for me, too.\tTant que tu y es, merci de faire une tasse de café pour moi aussi.\nYesterday my bicycle was stolen while I was doing some shopping.\tHier, on m'a volé mon vélo pendant que je faisais les courses.\nYesterday my bicycle was stolen while I was doing some shopping.\tHier, on m'a volé mon vélo pendant que je faisais du shopping.\nYesterday, as I was walking along the street, I saw an accident.\tHier, alors que je marchais dans la rue, j'ai été témoin d'un accident.\nYesterday, as I was walking along the street, I saw an accident.\tHier, alors que je marchais dans la rue, j'ai vu un accident.\nYou can listen to audio files by native speakers on our website.\tSur notre site web, vous pouvez écouter des fichiers audio par des locuteurs natifs.\nYou can't blame her for not knowing what she hasn't been taught.\tTu ne peux pas la blâmer d'ignorer ce qu'on ne lui a pas enseigné.\nYou can't blame her for not knowing what she hasn't been taught.\tVous ne pouvez pas la blâmer d'ignorer ce qui ne lui a pas été enseigné.\nYou cannot achieve the impossible without attempting the absurd.\tOn ne peut pas accomplir l'impossible sans tenter l'absurde.\nYou have the right to free speech, but not the right to slander.\tVous avez le droit à la libre expression, mais pas le droit à la calomnie.\nYou have to acquire real skills, not just superficial knowledge.\tIl vous faut acquérir de véritables compétences, pas juste une connaissance superficielle.\nYou might as well throw your money away as spend it on gambling.\tTu ferais tout aussi bien de jeter ton argent par les fenêtres que de le dépenser au jeu.\nYou might as well throw your money away as spend it on gambling.\tVous feriez tout aussi bien de jeter votre argent par les fenêtres que de le dépenser au jeu.\nYou need to have exact change to pay the toll of the expressway.\tIl vous faut la monnaie exacte pour payer le péage de l'autoroute.\nYou should always wear a seat belt when you are riding in a car.\tOn devrait toujours mettre une ceinture lorsqu'on est en voiture.\nYou should bone up on your French before your trip to Marseille.\tTu devrais bûcher ton français avant ton voyage pour Marseille.\nYou should bone up on your French before your trip to Marseille.\tVous devriez bûcher votre français avant votre voyage pour Marseille.\nYou'll never know whether you can do it or not if you don't try.\tVous ne saurez jamais si vous pouvez réussir ou pas si vous n'essayez pas.\n\"Do you like sports?\" \"Yes, I like baseball, among other things.\"\t\"Vous aimez le sport ?\" \"Oui, j'aime le baseball, entre autres.\"\n\"Give me something to write with.\" \"Will this ball-point pen do?\"\t« Donnez-moi quelque chose pour écrire. » « Ce stylo-bille vous conviendrait-il  ? »\n\"Will you be at my party tomorrow night?\" \"I'll try to be there.\"\t« Seras-tu à ma soirée, demain ? » « J'essaierai d'y être. »\n\"Will you be at my party tomorrow night?\" \"I'll try to be there.\"\t« Serez-vous à ma soirée, demain ? » « J'essaierai d'y être. »\nA bystander videotaped the police beating using their cell phone.\tUn passant a filmé la brutalité policière à l'aide de son téléphone portable.\nA caravan of fifty camels slowly made its way through the desert.\tUne caravane de cinquante chameaux se dirigeait lentement à travers le désert.\nA leading specialist was brought in to authenticate the painting.\tUn expert de premier plan fut convoqué pour authentifier le tableau.\nA person who won't read has no advantage over one who can't read.\tUne personne qui ne veut pas lire n'a pas d'atout par rapport à une autre qui ne peut pas.\nA teacher should never make fun of a student who makes a mistake.\tUn enseignant ne devrait jamais se moquer d'un élève qui fait une faute.\nAlice will tell you that in Wonderland everything is topsy-turvy.\tAlice pourra te dire qu'au Pays des merveilles, tout est sens dessus dessous.\nAt the end of a working day, everybody is in a hurry to get home.\tÀ la fin d'une journée de travail, tout le monde est pressé de rentrer chez soi.\nBefore you can love others, you need to be able to love yourself.\tAvant de pouvoir aimer les autres, il faut être en mesure de s'aimer soi-même.\nBritish and Japanese cars have steering wheels on the right side.\tLes voitures britanniques et japonaises ont le volant à droite.\nBy signing a contract, you agree to certain terms and conditions.\tEn signant un contrat vous souscrivez à certaines dispositions et conditions.\nCan you imagine what our lives would be like without electricity?\tEst-ce que tu peux imaginer ce que notre vie serait sans électricité ?\nCan you imagine what our lives would be like without electricity?\tPouvez-vous imaginer ce que serait notre vie sans électricité ?\nCan you spare me a few minutes? I'd like to have a word with you.\tPouvez-vous me consacrer quelques minutes ? J'aimerais vous dire un mot.\nCan you spare me a few minutes? I'd like to have a word with you.\tPeux-tu me consacrer quelques minutes ? J'aimerais te dire un mot.\nCan you tell me anything about what's going to happen here today?\tPeux-tu me dire quelque chose à propos de ce qu'il va se passer ici aujourd'hui ?\nCar production in that year reached a record 10 million vehicles.\tLa production d'automobiles a cette année atteint le chiffre record de dix millions de véhicules.\nCommunicating more to the point and directly would help everyone.\tCommuniquer de manière plus pertinente et directement aiderait tout le monde.\nCould you just please answer the question? We don't have all day.\tPourriez-vous simplement répondre à la question, s'il vous plaît ? Nous n'avons pas toute la journée !\nCould you just please answer the question? We don't have all day.\tPourrais-tu simplement répondre à la question, s'il te plaît ? Nous n'avons pas toute la journée !\nCould you please tell me how tall you are and how much you weigh?\tPourrais-tu m'indiquer quelle taille tu fais et combien tu pèses, je te prie ?\nDaddy, I can't walk any more. Could you give me a piggyback ride?\tPapa, je ne peux plus marcher. Pourrais-tu me porter sur ton dos ?\nDoes she come from the agency that sent the last temporary I had?\tEst-ce qu'elle vient de la même agence qui m'a envoyé le dernier intermittent que j'ai eu ?\nDon't kid yourself. You couldn't afford to buy a house like this.\tArrête de te la raconter ! Tu n'aurais pas les moyens d'acheter une maison pareille.\nDon't kid yourself. You couldn't afford to buy a house like this.\tArrêtez de vous la raconter ! Vous n'auriez pas les moyens d'acheter une maison pareille.\nElectric power companies are seeking to reduce their use of coal.\tLes sociétés d'énergie électrique cherchent à réduire leur utilisation de charbon.\nEven though the accident was six months ago, my neck still hurts.\tBien que l'accident date déjà d'il y a six mois, mon cou me fait encore mal.\nExports in January were up 20% over the same period of last year.\tLes exportations de janvier ont été supérieures de 20% par rapport à l'an dernier.\nFather has lost his job, and what's worse, Mother has fallen ill.\tPère a perdu son emploi, et ce qui est pire, mère est tombée malade.\nFather has lost his job, and what's worse, Mother has fallen ill.\tPère a perdu son emploi, et pire, mère est tombée malade.\nFather went to a lot of trouble to prepare dinner for our guests.\tFather a rencontré de nombreux problèmes en préparant le dîner pour les invités.\nFurthermore, I still don't think this a huge cultural difference.\tQui plus est, je ne pense quand même que cela ne constitue pas une différence culturelle énorme.\nHe loves a banquet, provided he is not expected to make a speech.\tIl aime les banquets, à condition qu'on n'attende pas de lui un discours.\nHe wanted to see a bullfight, but his father wouldn't let him go.\tIl voulut voir une corrida, mais son père ne lui permit pas d'y aller.\nHe was curious about how it would taste, so he took a small bite.\tIl était curieux du goût que ça aurait, alors il en mordit un petit morceau.\nHe was groomed from a young age to take over the family business.\tIl a été formé pour reprendre les affaires de la famille depuis son plus jeune âge.\nHe was unable to completely give up on his hopes of marrying her.\tIl était incapable d'abandonner complètement ses espoirs de l'épouser.\nHe who is not satisfied with a little, is satisfied with nothing.\tQui ne se satisfait pas de peu ne se satisfait de rien.\nHe worked day and night so that his family could live in comfort.\tIl a travaillé jour et nuit pour que sa famille puisse vivre dans le confort.\nHer composition is very good except for a few errors in spelling.\tSa rédaction est très bonne bien qu'elle comporte quelques fautes d'orthographe.\nHow will we feed everyone if the world's population keeps rising?\tComment nourrirons-nous tout le monde si la population mondiale continue à augmenter ?\nHow would you reword this sentence to make it sound more natural?\tComment reformulerais-tu cette phrase pour la rendre plus naturelle ?\nHow would you reword this sentence to make it sound more natural?\tComment reformuleriez-vous cette phrase pour la rendre plus naturelle ?\nI am looking for a part-time job so I can buy a new video camera.\tJe suis à la recherche d'un travail à temps partiel afin de pouvoir m'acheter un nouveau caméscope.\nI ate some Greek food at a nearby restaurant just a few days ago.\tJ'ai mangé de la nourriture grecque dans un restaurant du coin il y a seulement quelques jours.\nI can pick out only two or three constellations in the night sky.\tJe n'arrive à trouver que deux ou trois constellations dans le ciel nocturne.\nI cannot look at this picture without thinking of my dead mother.\tJe ne peux regarder cette photo sans penser à ma défunte mère.\nI couldn't meet him at the station because my car ran out of gas.\tJe n'ai pas pu le rencontrer à la gare parce que je suis tombé en panne d'essence.\nI don't believe a word of what people have been saying about her.\tJe ne crois pas un mot de ce que les gens ont dit d'elle.\nI don't feel like going to the movies. Let's take a walk instead.\tJe n'ai pas envie d'aller au cinoche. Allons faire une promenade à la place.\nI don't get very many opportunities to talk with native speakers.\tJe n'ai pas souvent l'occasion de parler avec des locuteurs natifs.\nI don't know how you can tolerate doing this over and over again.\tJe ne sais pas comment vous supportez de faire ceci encore et encore.\nI don't know how you can tolerate doing this over and over again.\tJe ne sais pas comment tu supportes de faire ceci encore et encore.\nI don't want to do anything to jeopardize my friendship with you.\tJe ne veux pas faire quoi que ce soit qui compromette mon amitié pour toi.\nI don't want to do anything to jeopardize my friendship with you.\tJe ne veux pas faire quoi que ce soit qui compromette mon amitié pour vous.\nI explained to the host that I had been delayed by a traffic jam.\tJ'ai expliqué à l'hôte que j'ai été retardé par un embouteillage.\nI feel a lot better now, but I know Dad's going to be real upset.\tJe me sens beaucoup mieux maintenant, mais je sais que Papa va vraiment être contrarié.\nI have already completed 4 out of 6 tasks on my to-do list today.\tJ'ai déjà fait quatre des six choses de la liste des choses à faire aujourd'hui.\nI have better things to do than stand here and take your insults.\tJ'ai mieux à faire que de rester là à subir tes insultes.\nI just remembered something I have to do before tomorrow morning.\tJe viens juste de me rappeler quelque chose que je dois faire avant demain matin.\nI just remembered something I have to do before tomorrow morning.\tJe viens juste de me rappeler quelque chose qu'il me faut faire avant demain matin.\nI know you're not going to come to my party, but I wish you were.\tJe sais que tu ne vas pas venir à ma fête mais j'aimerais que tu y viennes.\nI know you're not going to come to my party, but I wish you were.\tJe sais que vous n'allez pas venir à ma fête mais j'aimerais que vous y veniez.\nI may have told you such a thing, but I don't remember it at all.\tJ'ai pu te dire une telle chose, mais je ne m'en rappelle plus du tout.\nI missed a step on the stairs and I'm afraid I sprained my ankle.\tJ'ai raté une marche dans l'escalier et j'ai bien peur de m'être foulé la cheville.\nI missed a step on the stairs and I'm afraid I sprained my ankle.\tJ'ai raté une marche dans l'escalier et je crains de m'être foulé la cheville.\nI need someone to hold me and tell me everything will be alright.\tJ'ai besoin que quelqu'un me serre dans ses bras et me dise que tout ira bien.\nI need someone to hold me and tell me everything will be alright.\tJ'ai besoin de quelqu'un qui me prenne dans ses bras et me dise que tout se passera bien.\nI need to make an urgent call. Is there a public phone near here?\tJe dois passer un appel urgent. Y a-t-il un téléphone public près d'ici ?\nI often told you to do your duty, but you would not listen to me.\tJe t'ai souvent dit de faire ton devoir, mais tu ne m'as pas écouté.\nI plan to throw all of this away. You may take whatever you like.\tJe prévois de jeter tout ça en l'air. Tu peux prendre ce qui te chante.\nI ran across his telephone number in an old address book of mine.\tJ'ai trouvé son numéro de téléphone par hasard dans un vieux carnet d'adresses.\nI read in the newspaper recently that the crops really need rain.\tJ'ai lu dans le journal dernièrement que les champs manquaient cruellement d'eau.\nI really wish I didn't have to go to that meeting this afternoon.\tJ'aimerais vraiment ne pas avoir à me rendre à cette réunion cet après-midi.\nI really wish I didn't have to go to that meeting this afternoon.\tJ'aimerais vraiment ne pas avoir à me rendre à cette réunion cette après-midi.\nI shouldn't have put my laptop so close to the edge of the table.\tJe n'aurais pas dû poser mon portable aussi près du bord de la table.\nI spent a great deal of time dealing with that problem last week.\tJ'ai consacré beaucoup de temps à traiter ce problème la semaine dernière.\nI still need to use these things, so please don't take them away.\tJ'ai encore besoin d'utiliser ces choses, alors je vous prie de ne pas les emmener.\nI still need to use these things, so please don't take them away.\tJ'ai encore besoin d'utiliser ces choses, alors s'il te plait ne les emmène pas.\nI think I've figured out where we need to install the fire alarm.\tJe pense que j'ai déterminé où il nous faut installer l'alarme incendie.\nI think it's time for me to spend a little time with my children.\tJe pense qu'il est temps que je passe un peu de temps avec mes enfants.\nI think that actress is one of the most beautiful women on earth.\tJe pense que cette actrice est une des plus belles femmes au monde.\nI think the police should enforce the laws that are on the books.\tJe pense que la police devrait appliquer le texte de la loi.\nI think we may have something that you'd be interested in buying.\tJe pense que nous avons peut-être quelque chose que vous seriez intéressé d'acquérir.\nI think we may have something that you'd be interested in buying.\tJe pense que nous avons peut-être quelque chose que vous seriez intéressée d'acquérir.\nI think we may have something that you'd be interested in buying.\tJe pense que nous avons peut-être quelque chose que vous seriez intéressés d'acquérir.\nI think we may have something that you'd be interested in buying.\tJe pense que nous avons peut-être quelque chose que vous seriez intéressées d'acquérir.\nI think we may have something that you'd be interested in buying.\tJe pense que nous avons peut-être quelque chose que tu serais intéressé d'acquérir.\nI think we may have something that you'd be interested in buying.\tJe pense que nous avons peut-être quelque chose que tu serais intéressée d'acquérir.\nI think we may have something that you'd be interested in buying.\tJe pense que nous avons peut-être quelque chose dont tu serais intéressé de faire l'acquisition.\nI think we may have something that you'd be interested in buying.\tJe pense que nous avons peut-être quelque chose dont tu serais intéressée de faire l'acquisition.\nI think we may have something that you'd be interested in buying.\tJe pense que nous avons peut-être quelque chose dont vous seriez intéressé de faire l'acquisition.\nI think we may have something that you'd be interested in buying.\tJe pense que nous avons peut-être quelque chose dont vous seriez intéressés de faire l'acquisition.\nI think we may have something that you'd be interested in buying.\tJe pense que nous avons peut-être quelque chose dont vous seriez intéressée de faire l'acquisition.\nI think we may have something that you'd be interested in buying.\tJe pense que nous avons peut-être quelque chose dont vous seriez intéressées de faire l'acquisition.\nI thought I was about to be captured so I ran as fast as I could.\tJe pensais que j'étais sur le point d'être capturé, alors j'ai couru aussi vite que je pouvais.\nI thought I was about to be captured so I ran as fast as I could.\tJe pensais que j'étais sur le point d'être capturé, alors je courus aussi vite que je le pus.\nI thought I was about to be captured so I ran as fast as I could.\tJe pensais que j'étais sur le point d'être capturée, alors j'ai couru aussi vite que je pouvais.\nI thought I was about to be captured so I ran as fast as I could.\tJe pensais que j'étais sur le point d'être capturée, alors je courus aussi vite que je le pus.\nI thought you wouldn't tell her that we hadn't done our homework.\tJe pensais que tu ne lui dirais pas que nous n'avions pas fait nos devoirs.\nI thought you wouldn't tell her that we hadn't done our homework.\tJe pensais que vous ne lui diriez pas que nous n'avions pas fait nos devoirs.\nI told her that if I could be of any use I would be glad to help.\tJe lui ai dit que, si je pouvais être d'une quelconque utilité, je serais ravi d'aider.\nI told her that if I could be of any use I would be glad to help.\tJe lui ai dit que, si je pouvais être d'une quelconque utilité, je serais ravie d'aider.\nI told her that if I could be of any use I would be glad to help.\tJe lui dit que, si je pouvais être d'une quelconque utilité, je serais ravi d'aider.\nI told her that if I could be of any use I would be glad to help.\tJe lui dit que, si je pouvais être d'une quelconque utilité, je serais ravie d'aider.\nI want a written report in my hands first thing tomorrow morning.\tJe veux avoir en mains un rapport écrit à la première heure, demain matin.\nI wanted to help Tom understand what Mary was trying to tell him.\tJe voulais aider Tom à comprendre ce que Marie essayait de lui dire.\nI was able to catch the last train because I walked very quickly.\tJ'ai été en mesure d'attraper le dernier train parce que j'ai marché très vite.\nI would like to become a top model and travel all over the world.\tJ'aimerais devenir mannequin et voyager tout autour du monde.\nI'd like to buy a present for my son. Do you have any good ideas?\tJ'aimerais acheter un cadeau pour mon fils. Avez-vous la moindre bonne idée ?\nI'd like to make a call to Tokyo, Japan. The number is 3202-5625.\tJe voudrais passer un appel à Tokyo, au Japon, le numéro est 3202-5625.\nI'd suggest that you clean up a bit before your mother gets here.\tJe vous suggère de nettoyer un tantinet, avant que votre mère n'arrive ici.\nI'd suggest that you clean up a bit before your mother gets here.\tJe te suggère de nettoyer un tantinet, avant que ta mère n'arrive ici.\nI'll lend you any book that I have, as long as you keep it clean.\tJe te prêterai tous les livres dont je dispose, pourvu que tu les gardes propres.\nI'll lend you any book that I have, as long as you keep it clean.\tJe vous prêterai tous les livres dont je dispose, pourvu que vous les gardiez propres.\nI'm going to sit on the bench over there next to the street lamp.\tJe vais m'asseoir sur le banc là-bas, près du lampadaire.\nI'm on a budget, so I don't eat out more than three times a week.\tComme j'ai un budget à respecter, je vais au restaurant pas plus de trois fois par semaine.\nI'm pretty hungry since I haven't eaten since early this morning.\tJ'ai assez faim parce que je n'ai pas mangé depuis tôt ce matin.\nI'm sorry for not being more supportive when you needed me to be.\tJe suis désolé de ne pas t'avoir davantage soutenu lorsque tu en avais besoin.\nI'm sorry for not being more supportive when you needed me to be.\tJe suis désolée de ne pas t'avoir davantage soutenu lorsque tu en avais besoin.\nI'm sorry for not being more supportive when you needed me to be.\tJe suis désolé de ne pas t'avoir davantage soutenue lorsque tu en avais besoin.\nI'm sorry for not being more supportive when you needed me to be.\tJe suis désolée de ne pas t'avoir davantage soutenue lorsque tu en avais besoin.\nI'm sorry for not being more supportive when you needed me to be.\tJe suis désolée de ne pas vous avoir davantage soutenue lorsque vous en aviez besoin.\nI'm sorry for not being more supportive when you needed me to be.\tJe suis désolée de ne pas vous avoir davantage soutenu lorsque vous en aviez besoin.\nI'm sorry for not being more supportive when you needed me to be.\tJe suis désolé de ne pas vous avoir davantage soutenu lorsque vous en aviez besoin.\nIf I'd known what you were going to do, I'd've tried to stop you.\tSi j'avais su ce que tu allais faire, j'aurais essayé de te stopper.\nIf John phones me, please tell him I'll be back by seven o'clock.\tSi John téléphone, veuillez lui dire que je serai de retour à six heures.\nIf a restaurant has valet parking it's probably pretty expensive.\tSi un restaurant dispose d'un voiturier, il est probablement assez onéreux.\nIf any harm comes to her, I will hold you personally responsible.\tS'il lui arrive le moindre mal, je vous tiendrai personnellement responsable.\nIf only you'd thought of that before shooting your big mouth off.\tSi seulement tu y avais réfléchi avant de te vanter.\nIf we don't get something to eat soon, we'll all starve to death.\tSi nous ne trouvons pas quelque chose à manger rapidement, nous allons tous mourir de faim.\nIf you don't keep the silverware polished, it'll lose its luster.\tSi vous ne maintenez pas l'argenterie astiquée, elle perdra son lustre.\nIf you had followed my advice, you wouldn't be in such a fix now.\tSi tu avais suivi mon conseil, tu ne serais pas dans un tel pétrin, maintenant.\nIf you had followed my advice, you wouldn't be in such a fix now.\tSi vous aviez suivi mon conseil, vous ne seriez pas dans un tel embarras, maintenant.\nIf you have an indoor swimming pool, you're probably pretty rich.\tSi vous avez une piscine intérieure, vous êtes probablement très riche.\nIf you leave right now, you'll be in time for the plane for sure.\tSi vous partez maintenant, vous serez assurément à l'heure pour l'avion.\nIf you visit New York, you've just got to come and see our house.\tSi vous venez visiter New-York, n'hésitez pas à passer à la maison.\nIf you would like to have further information, please contact me.\tSi vous souhaitez en savoir davantage, veuillez me contacter.\nIn Singapore, one way to punish a criminal is to whip him or her.\tÀ Singapour, la flagellation est une façon de punir un criminel.\nIn case the shipment is delayed, we have special delay insurance.\tEn cas de retard de la cargaison, nous avons une assurance retard spéciale.\nIn swimming pools, water is continuously pumped through a filter.\tDans les piscines, l'eau est continuellement pompée à travers un filtre.\nIn those days, I made it a point to take a walk before breakfast.\tÀ cette époque, je me faisais un point d'honneur d'effectuer une promenade avant le petit-déjeuner.\nIs it correct to say that the Qur'an is the bible of the Muslims?\tEst-il juste de dire que le Coran est la Bible des Musulmans ?\nIt is costly and politically difficult to continue this conflict.\tCela est coûteux et politiquement difficile de continuer ce conflit.\nIt is the job that is never started that takes longest to finish.\tC'est le boulot qu'on ne commence jamais qui est le plus long à terminer.\nIt is useless to try to remember all the words in the dictionary.\tIl est inutile d'essayer de se rappeler de tous les mots du dictionnaire.\nIt was an advantage having learned Chinese while I was in school.\tC'était un avantage d'avoir appris le chinois quand j'étais à l'école.\nIt was fortunate for her that her husband arrived at that moment.\tCe fut une chance pour elle que son mari arrive à ce moment-là.\nIt's amazing that he won the championship at the age of nineteen.\tC'est incroyable qu'il a gagné le championnat à l'âge de 19 ans.\nIt's more interesting to travel alone than to go on a group tour.\tIl est plus intéressant de voyager seul qu'en groupe.\nIt's too late to shut the stable door after the horse has bolted.\tUne fois que le cheval s'est enfui, c'est trop tard pour fermer la porte de l'écurie.\nLiving in the town is quite different from living in the country.\tVivre en ville est assez différent de vivre à la campagne.\nMany cancer patients lose their hair because of the chemotherapy.\tDe nombreux patients atteints du cancer perdent leurs cheveux à cause de la chimiothérapie.\nMany countries have signed a treaty to eliminate nuclear weapons.\tBeaucoup de pays ont signé un traité pour éliminer les armes nucléaires.\nMany firms are competing for the wealthier segment of the market.\tDe nombreuses entreprises se font concurrence pour la partie plus lucrative du marché.\nMany mistakes could have been avoided through simple experiments.\tDe nombreuses erreurs auraient pu être évitées par de simples expérimentations.\nMaybe my grandchild will be the first person to set foot on Mars.\tPeut-être mon petit-enfant sera-t-il la première personne à poser le pied sur Mars.\nMaybe my grandchild will be the first person to set foot on Mars.\tPeut-être que mon petit-enfant sera la première personne à poser le pied sur Mars.\nMaybe my grandchild will be the first person to set foot on Mars.\tPeut-être mon petit-fils sera-t-il le premier homme à fouler le sol de Mars.\nMaybe you don't know this, but nobody could ever take your place.\tPeut-être ne le sais-tu pas, mais personne ne pourrait te remplacer.\nMy father is oblivious to the emotional pain his abuse caused me.\tMon père ne se rend pas compte de la douleur émotionnelle que ses injures m'ont causée.\nMy heart is pounding so hard it feels like it's going to explode.\tMon cœur bat tellement fort qu'il semble vouloir éclater.\nMy office is on the fourth floor of that gray six-story building.\tMon bureau est au troisième étage de cet immeuble gris de cinq étages.\nMy older sister was grounded for coming home too late last night.\tMa sœur aînée est privée de sorties pour être rentrée trop tard la nuit dernière.\nNever choose a vocation just because it promises social standing.\tN'élisez jamais une profession juste parce qu'elle promet un statut social.\nNever in my wildest dreams did I ever think you'd go out with me.\tJamais, dans mes rêves les plus fous, je n'avais pensé que tu sortirais avec moi.\nOil has played an important part in the progress of civilization.\tLe pétrole a joué un rôle important dans le progrès de la civilisation.\nOne of the fan blades broke loose and shattered against the wall.\tL'une des pales du ventilateur s'est détachée et s'est brisée contre le mur.\nReducing the budget deficit is a major concern of the government.\tRéduire le déficit de l’État est l'une des préoccupations majeures du gouvernement.\nScience has discovered that there are five types of human beings.\tLa science a découvert qu'il y a cinq types d'êtres humains.\nShe can't even speak her native language without making mistakes.\tElle ne peut même pas parler sa langue maternelle sans faire de fautes.\nShe didn't attend the meeting for fear of meeting her ex-husband.\tElle n'est pas venue à la rencontre de peur de croiser son ex-mari.\nShe protested weakly, but ended up joining in with everyone else.\tElle protesta mollement mais finit par prendre part avec tous les autres.\nShe was superstitious, as the people of that period usually were.\tElle était superstitieuse, à l'instar des gens de cette époque.\nSince the note was written in French, it was easy for me to read.\tComme la note était rédigée en français, il me fut facile de la lire.\nSmartphones would have seemed like science fiction ten years ago.\tLes téléphones intelligents auraient paru être la science-fiction, il y a dix ans de ça.\nSome of the roses in my garden are white, and the others are red.\tUne partie des roses de mon jardin sont blanches, et les autres sont rouges.\nSome people say that it is human nature to root for the underdog.\tCertains disent qu'il est dans la nature humaine de soutenir l'outsider.\nSometimes I wonder whether or not there's a point to all of this.\tParfois, je me demande si, oui ou non, tout ceci a un sens.\nSorry to bother you, but I'm afraid something urgent has come up.\tDésolé de vous déranger mais je crains que quelque chose d'urgent soit survenu.\nSteel production reached an estimated 100 million tons last year.\tLa production d'acier a atteint environ 100 millions de tonnes l'année dernière.\nStudents generally like a teacher who understands their problems.\tLes étudiants apprécient généralement un professeur qui comprend leurs problèmes.\nSuch a person invariably expends his physical energy more slowly.\tCe genre de personne consomme son énergie physique plus lentement.\nThe CEO is trying to quash these unfounded rumors about a merger.\tLe DG essaie d'étouffer ces rumeurs infondées au sujet d'une fusion.\nThe amount of time you spend practicing the trumpet is up to you.\tLa quantité de temps que tu consacres à pratiquer la trompette est à ta discrétion.\nThe amount of time you spend practicing the trumpet is up to you.\tLa somme de temps que vous consacrez à pratiquer la trompette est à votre discrétion.\nThe average height of the girls in class is over 155 centimeters.\tLa moyenne de taille des filles de la classe est au-dessus de 1 mètre 55.\nThe blockade by Britain and the other allies was very successful.\tLe blocus par la Grande-Bretagne et les autres alliés fut couronné de succès.\nThe exchange rates are posted daily outside the cashier's office.\tLes taux de change sont affichés quotidiennement à l'extérieur de la caisse.\nThe film had a great beginning, but the ending wasn't believable.\tLe film commençait très bien, mais sa fin n'était pas crédible.\nThe government appointed a committee to investigate the accident.\tLe gouvernement désigna une commission pour enquêter sur l'accident.\nThe government was obliged to make changes in its foreign policy.\tLe gouvernement était dans l'obligation de modifier sa politique extérieure.\nThe investment advice we used to give just doesn't apply anymore.\tLe conseil d'investissement que nous avions l'habitude de donner ne s'applique simplement désormais plus.\nThe juggler wowed the crowd by keeping ten oranges up in the air.\tLe jongleur enthousiasma la foule en gardant dix oranges en l'air.\nThe meeting started with some general chit-chat to break the ice.\tLa réunion a commencé par quelques bavardages d'ordre général, histoire de rompre la glace.\nThe number of people suffering from heart disease is on the rise.\tLe nombre de personnes souffrant de maladies cardiovasculaires est en hausse.\nThe only golden rule is that he who has the gold makes the rules.\tLa seule règle d'or est que celui qui détient l'or écrit les règles.\nThe only thing that matters is whether or not you can do the job.\tLa seule chose qui importe est si oui ou non tu peux faire le boulot.\nThe only thing that matters is whether or not you can do the job.\tLa seule chose qui compte est si oui ou non vous pouvez accomplir le travail.\nThe police followed up all their leads, but came up empty handed.\tLa police suivit toutes ses pistes mais revint les mains vides.\nThe police kept looking for a stolen article for about one month.\tLa police continua à rechercher un article volé pendant un mois.\nThe public at large are dissatisfied with the present government.\tLa population est mécontente du gouvernement actuel.\nThe strange object in the sky could be seen with the unaided eye.\tL'étrange objet dans le ciel pouvait être vu à l'œil nu.\nThe thief cut the telephone lines before breaking into the house.\tLe voleur coupa les lignes de téléphone avant de pénétrer dans la maison.\nThe thief cut the telephone lines before breaking into the house.\tLe voleur coupa les lignes téléphoniques avant de s'introduire dans la maison.\nThe treasure is believed to lie hidden somewhere in the mountain.\tOn croyait que le trésor était resté caché quelque part dans la montagne.\nThere are more cars on the road in the summer than in the winter.\tIl y a plus de voitures sur la route en été qu'en hiver.\nThere are more cars on the road in the summer than in the winter.\tIl y a davantage de voitures sur la route en été qu'en hiver.\nThere are not enough doctors to give proper care to the children.\tIl n'y a pas suffisamment de médecins pour apporter des soins appropriés aux enfants.\nThere are some people who sleep in the daytime and work at night.\tIl y a des gens qui dorment le jour et travaillent la nuit.\nThey attributed his bad manners to lack of training in childhood.\tIls ont mis ses mauvaises manières sur le compte d'un manque d'éducation dans son enfance.\nThings change from time to time, and one should change with them.\tLes choses changent de temps en temps, et on devrait changer avec elles.\nThis book will give you a clear idea of the American way of life.\tCe livre te donnera une idée claire du mode de vie américain.\nThis book will give you a clear idea of the American way of life.\tCe livre vous donnera une idée clair du mode de vie américain.\nThis book will give you a clear idea of the American way of life.\tCe livre vous donnera une idée claire du mode de vie étasunien.\nThis book will give you a clear idea of the American way of life.\tCe livre te donnera une idée claire du mode de vie étasunien.\nThis is like fighting someone with one arm tied behind your back.\tC'est comme combattre quelqu'un avec un bras attaché dans le dos.\nThis letter is personal, and I don't want anyone else to read it.\tCette lettre est personnelle ; je ne veux pas que quelqu'un d'autre la lise.\nThis newspaper article is more interesting than the previous one.\tCet article est plus intéressant que le précédent.\nThis newspaper article is more interesting than the previous one.\tCet article de journal est plus intéressant que le précédent.\nThis will be a good souvenir of my trip around the United States.\tÇa sera un bon souvenir de mon voyage à travers les États-Unis.\nThis yearbook is illustrated with a lot of beautiful photographs.\tCet annuaire est illustré de nombreuses belles photos.\nThrough genetic engineering, corn can produce its own pesticides.\tGrâce au génie génétique, le maïs peut produire ses propres pesticides.\nTom accidentally shot himself in the foot while cleaning his gun.\tTom s'est tiré dans le pied pendant qu'il nettoyait son arme à feux.\nTom always checks to verify that no dyes are in any food he buys.\tTom vérifie toujours qu'il n'y a aucun colorant dans la nourriture qu'il achète.\nTom doesn't have a cat. However, Tom does have a dog, doesn't he?\tTom n'a pas de chat. Cependant, Tom a un chien, n'est-ce pas ?\nTom eats lunch at the school cafeteria two or three times a week.\tTom prend son déjeuner à la cafétéria de l'école deux ou trois fois par semaine.\nTom hopes he doesn't have to live in Boston for more than a year.\tTom espère qu'il ne devra pas vivre à Boston pendant plus d'un an.\nTom should have been eating more vegetables and not as much meat.\tTom aurait dû manger plus de légumes et pas autant de viande.\nTom showed me the poems that he'd written when he was a teenager.\tTom m'a montré les poèmes qu'il avait écrit quand il était adolescent.\nTom tried to look through the keyhole, but couldn't see anything.\tTom essaya de regarder par le trou de la serrure, mais ne put rien voir.\nTom was really glad to hear that Mary was going to help him move.\tTom était très content d'entendre que Marie allait l'aider à déménager.\nTom went to his room, changed into his pajamas, and got into bed.\tTom alla dans sa chambre,enfila son pyjama et se coucha.\nTom wouldn't mind eating meat and potatoes every day of the week.\tCela ne dérangerait pas Tom de manger de la viande et des patates tous les jours de la semaine.\nTom's impeccable manners made a big impression on Mary's parents.\tLes manières impeccables de Tom ont fait forte impression sur les parents de Marie.\nWe can continue playing, as long as we don't make too much noise.\tNous pouvons continuer à jouer pour autant que nous ne fassions pas trop de bruit.\nWe got stuck in a traffic jam, which made us twenty minutes late.\tNous sommes restés coincés dans un embouteillage, ce qui nous a mis vingt minutes en retard.\nWe got stuck in a traffic jam, which made us twenty minutes late.\tNous sommes restés coincés dans une file, ce qui nous a causé vingt minutes de retard.\nWe got stuck in a traffic jam, which made us twenty minutes late.\tNous avons été pris dans un bouchon, qui nous a mis vingt minutes en retard.\nWe shall continue our efforts to eradicate racial discrimination.\tNous poursuivrons nos efforts pour éliminer la discrimination raciale.\nWe think a disgruntled employee was the one who planted the bomb.\tNous pensons que c'était un employé mécontent qui a placé la bombe.\nWe try to explain things across cultures; in spite of boundaries.\tNous essayons d'expliquer les choses au travers des cultures ; en dépit des frontières.\nWhat we know of health we have learned from the study of disease.\tCe que nous savons de la santé, nous l'avons appris de l'étude des maladies.\nWhat'll you do if you can't find enough food to feed your family?\tQue ferez-vous si vous ne trouvez pas assez de nourriture pour nourrir votre famille ?\nWhat's the name of that fat girl you used to date in high school?\tQuel est le nom de cette grosse fille avec laquelle tu es sorti au lycée ?\nWhen I didn't know how to answer the question, he gave me a hint.\tAu moment où je ne savais pas répondre à la question, il m'a donné un indice.\nWhen I got out of jail, I wanted to patch up things with my wife.\tLorsque je suis sorti de prison, je voulais raccommoder les choses avec ma femme.\nWhen I have migraines, aspirin doesn't alleviate the pain for me.\tLorsque j'ai la migraine, l'aspirine ne soulage pas la douleur pour moi.\nWhen I was a child, I would spend hours reading alone in my room.\tQuand j'étais petit, je passais des heures à lire tout seul dans ma chambre.\nWhen I was a child, my mother would often read fairy tales to me.\tLorsque j'étais enfant, ma mère me lisait souvent des contes.\nWhen she was in Los Angeles, she had at least six different jobs.\tQuand elle était à Los Angeles, elle a eu au moins six travails différents.\nWhen we are told not to come, we become all the more eager to go.\tQuand on nous dit de ne pas venir, nous avons encore plus envie de partir.\nWhenever I get on the subway, I put my wallet in my front pocket.\tChaque fois que je prends le métro, je place mon portefeuille dans ma poche de devant.\nWhy are you worrying about something that doesn't matter so much?\tPourquoi te fais-tu du souci à propos de quelque chose qui n'a pas tant d'importance ?\nWhy are you worrying about something that doesn't matter so much?\tPourquoi vous faites-vous du souci à propos de quelque chose qui n'a pas tant d'importance ?\nWriting is easy. All you have to do is cross out the wrong words.\tL'écriture, c'est facile : Tout ce que vous avez à faire, c'est de barrer les mots qui ne vont pas.\nYou always said you wanted to become a scientist. Why didn't you?\tTu as toujours dit que tu voulais devenir scientifique. Pourquoi ne l'es-tu pas devenu ?\nYou always said you wanted to become a scientist. Why didn't you?\tTu as toujours dit que tu voulais devenir scientifique. Pourquoi ne l'es-tu pas devenue ?\nYou always said you wanted to become a scientist. Why didn't you?\tVous avez toujours dit que vous vouliez devenir scientifique. Pourquoi ne l'êtes-vous pas devenu ?\nYou always said you wanted to become a scientist. Why didn't you?\tVous avez toujours dit que vous vouliez devenir scientifique. Pourquoi ne l'êtes-vous pas devenue ?\nYou are under no obligation whatsoever to share this information.\tVous n'êtes aucunement dans l'obligation de divulguer cette information.\nYou can adjust the seat height by moving the adjustment lever up.\tTu peux ajuster la hauteur du siège en utilisant le levier de réglage.\nYou can do anything you want, depending on what floats your boat.\tTu peux faire tout ce que tu veux, selon ce qui te chante.\nYou can do anything you want, depending on what floats your boat.\tOn peut faire tout ce qu'on veut, selon ce qui nous chante.\nYou can do anything you want, depending on what floats your boat.\tVous pouvez faire tout ce que vous voulez, selon ce qui vous chante.\nYou can download audio files by native speakers from our website.\tTu peux télécharger, à partir de notre site web, des données audio par des locuteurs natifs.\nYou might as well read a novel instead of staring at the ceiling.\tTu ferais tout aussi bien de lire un roman plutôt que de contempler le plafond.\nYou might as well read a novel instead of staring at the ceiling.\tVous feriez tout aussi bien de lire un roman plutôt que de contempler le plafond.\nYou should take the appropriate measures at the appropriate time.\tTu devrais prendre les mesures appropriées au moment approprié.\nYou should take the appropriate measures at the appropriate time.\tVous devriez prendre les mesures appropriées au moment approprié.\nYou should take the appropriate measures at the appropriate time.\tOn devrait prendre les mesures appropriées au moment approprié.\nYou will find that book in the historical section of the library.\tTu trouveras ce livre dans le département Histoire de la bibliothèque.\nYou've got a lot of nerve bringing me here under false pretenses.\tVous ne manquez pas d'air de m'attirer ici sous de faux prétextes.\nYou've got a lot of nerve bringing me here under false pretenses.\tTu ne manques pas d'air de m'attirer ici sous de faux prétextes.\nYou've got a lot of nerve bringing me here under false pretenses.\tVous avez du toupet de m'attirer ici sous de faux prétextes.\nYou've got a lot of nerve bringing me here under false pretenses.\tTu as du toupet de m'attirer ici sous de faux prétextes.\n\"I don't have time to spend with my kids.\" \"You should make time.\"\t« Je ne dispose pas de temps à passer avec mes enfants. » « Vous devriez en ménager. »\n\"I don't have time to spend with my kids.\" \"You should make time.\"\t« Je ne dispose pas de temps à passer avec mes enfants. » « Tu devrais en ménager. »\nA flush is a poker hand where all five cards are of the same suit.\tUne couleur est une main de poker dans laquelle la totalité des cinq cartes sont de la même couleur.\nA fund was set up with a view to preserving our endangered planet.\tUn fond a été établi dans l'optique de préserver notre planète en danger.\nA vigilante bypasses the law and takes matters into his own hands.\tUn milicien contourne la loi et prend les choses entre ses propres mains.\nAfter a few minutes, I began to lose interest in the conversation.\tAprès quelques minutes, je commençai à perdre mon intérêt pour la conversation.\nAfter being in a coma for three weeks, Tom regained consciousness.\tAprès être resté dans le coma pendant trois semaines, Tom reprit connaissance.\nAfter the summer holidays, the children have to go back to school.\tAprès les congés d'été, les enfants doivent retourner à l'école.\nAfter the summer holidays, the children have to go back to school.\tÀ l'issue des vacances estivales, il faut que les enfants retournent à l'école.\nAfter using the knife, please be sure to put it back where it was.\tRemettez bien le couteau à sa place après usage.\nAll eyes were glued on the TV set as the election results came in.\tTous les yeux étaient collés au poste de télévision tandis que tombaient les résultats de l'élection.\nAn understanding of people is the greatest weapon you can possess.\tUne compréhension des gens est l'arme la plus puissante que vous puissiez détenir.\nAs a rule, he arrives at the office about eight-thirty in morning.\tIl a pour règle d'arriver au bureau le matin vers huit heures et demie.\nAs soon as I can figure out how to send money, I'll send you some.\tDès que j'arrive à comprendre comment envoyer de l'argent, je vous en enverrai.\nAs soon as I can figure out how to send money, I'll send you some.\tDès que j'arrive à comprendre comment envoyer de l'argent, je t'en enverrai.\nAs soon as he felt his house shake, he rushed out into the garden.\tAussitôt qu'il sentit sa maison trembler, il se précipita dans le jardin.\nAt the best hotels, there is always someone at your beck and call.\tDans les meilleurs hôtels, il y a toujours quelqu'un à votre entière disposition.\nCan you tell me how you found out that Tom wasn't at school today?\tPeux-tu me dire comment tu as su que Tom n'était pas allé à l'école aujourd'hui ?\nCan't you ever be punctual? I have been waiting here for one hour.\tNe pourrais-tu pas être ponctuel ? J'attends ici depuis une heure.\nChoose a password that is easy to remember but difficult to guess.\tChoisis un mot de passe facile à retenir, mais difficile à deviner.\nChoose a password that is easy to remember but difficult to guess.\tChoisissez un mot de passe facile à retenir, mais difficile à deviner.\nCotton mittens will prevent the baby from scratching his own face.\tDes mitaines en coton vont empêcher le bébé de se gratter le visage.\nDo you think my cat and your pet rat will get along well together?\tPenses-tu que mon chat et ton rat de compagnie s'entendront bien ?\nDo you think you can manage to keep things going until I get back?\tPenses-tu que tu puisses faire en sorte que les choses continuent à fonctionner jusqu'à ce que je revienne ?\nDo you think you can manage to keep things going until I get back?\tPensez-vous pouvoir vous débrouiller pour que les choses continuent à avancer jusqu'à ce que je revienne ?\nDoing something only half-heartedly is the worst thing you can do.\tFaire quelque chose sans enthousiasme est la pire chose que l'on puisse faire.\nDoing something only half-heartedly is the worst thing you can do.\tFaire quelque chose nonchalamment est la pire chose que tu puisses faire.\nDon't sound so surprised. You know I can do whatever I want to do.\tNe paraissez pas si surpris ! Vous savez que je peux faire tout ce que je veux.\nDon't sound so surprised. You know I can do whatever I want to do.\tNe paraissez pas si surprise ! Vous savez que je peux faire tout ce que je veux.\nDon't sound so surprised. You know I can do whatever I want to do.\tNe parais pas si surpris ! Tu sais que je peux faire tout ce que je veux.\nDon't sound so surprised. You know I can do whatever I want to do.\tNe parais pas si surprise ! Tu sais que je peux faire tout ce que je veux.\nElectronic components can be cleaned using pure isopropyl alcohol.\tLes composants électroniques peuvent être nettoyés en utilisant de l'isopropanol pur.\nEven nudists often use euphemisms when referring to naughty parts.\tMême les nudistes emploient des euphémismes lorsqu'ils se réfèrent à des parties intimes.\nEven though I had eaten a lot for breakfast, I was already hungry.\tBien qu'ayant beaucoup mangé au petit déjeuner, j'avais déjà faim.\nEven though there were many cookies on the dish, I only ate three.\tBien qu'il restât de nombreux biscuits sur le plateau, je n'en mangeai que trois.\nEventually the salesman persuaded me to buy the expensive machine.\tFinalement, le vendeur m'a convaincu d'acheter la machine la plus chère.\nFlags of the world fly proudly at the United Nations headquarters.\tLes drapeaux du monde flottent fièrement devant le siège des Nations Unies.\nFortunately, common sense prevailed and the strike was called off.\tHeureusement, le bon sens prévalut et la grève fut annulée.\nFrankly speaking, it's difficult to understand why you want to go.\tPour être franc, il est difficile de comprendre pourquoi vous souhaitez partir.\nFrom my point of view, it would be better to wait a little longer.\tD'après moi, ce serait mieux d'attendre un peu plus.\nGas cookers consume half the amount of energy as electric cookers.\tLes cuisinières à gaz consomment deux fois moins d'énergie que les cuisinières électriques.\nGovernments should not be in the business of legislating morality.\tLes gouvernements ne devraient pas se mêler de légiférer la moralité.\nHas it occurred to you that you might be the one with the problem?\tT'est-il venu à l'esprit que tu pourrais être celui qui a le problème ?\nHas it occurred to you that you might be the one with the problem?\tVous est-il venu à l'esprit que vous pourriez être celui qui a le problème ?\nHe blamed his teacher for his failure in the entrance examination.\tIl reprocha à son professeur son échec à l'examen d'entrée.\nHe can't swim at all, but when it comes to skiing, he is the best.\tIl ne sait pas du tout nager, mais quand il faut skier, c'est le meilleur.\nHe didn't divulge the information, not even under pain of torture.\tIl ne divulgua pas l'information, pas même sous la torture.\nHe frequently jumps from one topic to another while he is talking.\tIl saute souvent d'un sujet à l'autre quand il parle.\nHe goes to bed early but it takes him a long time to get to sleep.\tIl se couche tôt, mais il met longtemps à s'endormir.\nHe got down on his knees and prayed for the souls of the deceased.\tIl s'agenouilla et pria pour les âmes des défunts.\nHe hasn't been doing anything since he graduated from high school.\tIl n'a rien fait depuis qu'il est diplômé de l'école.\nHe hasn't been doing anything since he graduated from high school.\tIl n'a rien foutu depuis qu'il est diplômé de l'école.\nHe said he was hungry, and then he added that he was also thirsty.\tIl a dit qu'il avait faim, puis il a ajouté qu'il avait également soif.\nHe said, \"I will say nothing more, because I hate making excuses.\"\tIl dit, \"Je ne dirai plus rien, parce que je déteste faire des excuses.\"\nHe seems not to be aware of the conflict between my father and me.\tIl ne semble pas être au courant du conflit entre mon père et moi.\nHe was an excellent scientist, and what is more, was a great poet.\tC'était un excellent scientifique, et de surcroît, un poète remarquable.\nHe'll be back in two hours. In the meantime, let's prepare dinner.\tIl sera de retour dans deux heures. En attendant préparons le dîner.\nHot weather will continue, so please watch out for food poisoning.\tLe temps chaud va persister donc faites attention aux intoxications alimentaires.\nHot weather will continue, so please watch out for food poisoning.\tLe temps chaud va persister donc fais attention aux intoxications alimentaires.\nHuman beings differ from animals in that they can think and speak.\tLes êtres humains diffèrent des animaux en ce qu'ils peuvent penser et parler.\nI always watch the weather report before going out in the morning.\tJe regarde toujours le bulletin météo avant de sortir le matin.\nI am impressed by your recent advertisement in the New York Times.\tJe suis impressionné par votre récente publicité dans le New York Times.\nI can't believe you're eating what the doctor told you not to eat.\tJe n'arrive pas à croire que tu manges ce que le médecin t'a prescrit de ne pas manger.\nI can't believe you're eating what the doctor told you not to eat.\tJe n'arrive pas à croire que vous mangez ce que le médecin vous a prescrit de ne pas manger.\nI can't come up with a good excuse for being late for the dentist.\tJe n'arrive pas à trouver une bonne excuse pour mon retard chez le dentiste.\nI can't find my glasses. I may have left them behind in the train.\tJe ne parviens pas à trouver mes lunettes. Peut-être les ai-je laissées dans le train.\nI can't tell you how much I've been looking forward to your visit.\tJe ne peux pas te dire combien j'attendais ta visite avec impatience.\nI can't tell you how much I've been looking forward to your visit.\tJe ne peux pas vous dire combien j'attendais votre visite avec impatience.\nI consider spaghetti to be one of the greatest foods in the world.\tJe considère les spaghettis comme l'un des meilleurs aliments du monde.\nI drank a lot and can't remember much of what happened last night.\tJ'ai beaucoup bu et je ne peux plus me rappeler grand-chose de ce qui s'est passé la nuit dernière.\nI guess it doesn't make any difference which swimming club I join.\tJe suppose que peu importe le club de natation auquel je m'affilie.\nI had to resign because I just didn't get along with the new boss.\tJ'ai dû démissionner parce que je ne m'entendais simplement pas avec le nouveau patron.\nI have been on friendly terms with him for more than twenty years.\tIl fut un proche pendant plus de 20 années.\nI know that it is highly unlikely that we'll see any whales today.\tJe sais qu'il est hautement improbable que nous voyions la moindre baleine aujourd'hui.\nI lay in bed thinking about everything that had happened that day.\tJ'étais alité, pensant à tout ce qui s'était passé ce jour-là.\nI missed going out with her and eating at our favorite restaurant.\tSortir avec elle et manger à notre restaurant préféré me manquait.\nI missed going out with her and eating at our favorite restaurant.\tSortir avec elle et manger à notre restaurant préféré m'a manqué.\nI never look at this picture without thinking of those happy days.\tJe ne regarde jamais cette photo sans penser à ces jours heureux.\nI realize that you guys wouldn't be here if you didn't have to be.\tJe me rends compte que vous autres ne seraient pas ici si vous ne le deviez pas.\nI refuse to believe that we can't do anything about the situation.\tJe refuse de croire que nous ne pouvons faire quoi que ce soit à propos de la situation.\nI think it's highly unlikely that Tom will take Mary to the party.\tJe pense qu'il est peu probable que Tom emmène Marie à la fête.\nI thought about writing you a message, but never got around to it.\tJ'ai pensé à vous écrire un message mais je ne suis jamais parvenu à m'y mettre.\nI thought if I broke up with you, I'd never have to see you again.\tJe pensais que si je rompais avec toi, je n'aurais plus jamais à te revoir.\nI thought you might need some help getting ready for your wedding.\tJ'ai pensé que tu pourrais avoir besoin d'aide pour te préparer à ton mariage.\nI told you before that I'm not interested in hanging out with you.\tJe t'ai dit auparavant que je ne suis pas intéressée par sortir avec toi.\nI want to learn to speak Hawaiian, so I can impress my girlfriend.\tJe veux apprendre l'hawaïen, comme ça je pourrais impressionner ma petite amie.\nI was deceived by a person who I had thought was a friend of mine.\tJe fus déçu par une personne que je pensais être un de mes amis.\nI wonder when they'll come out with a cell phone in a wrist watch.\tJe me demande quand ils vont sortir un téléphone cellulaire dans une montre-bracelet.\nI wonder when they'll come out with a cell phone in a wrist watch.\tJe me demande quand ils vont sortir un téléphone cellulaire dans un bracelet-montre.\nI would have told you before, but I didn't think you'd understand.\tJe te l'aurais dit plus tôt, mais je ne pensais pas que tu comprendrais.\nI would have told you before, but I didn't think you'd understand.\tJe vous l'aurais dit plus tôt, mais je ne pensais pas que vous comprendriez.\nI would have told you before, but I didn't think you'd understand.\tJe te l'aurais dit avant, mais je ne pensais pas que tu comprendrais.\nI would have told you before, but I didn't think you'd understand.\tJe vous l'aurais dit avant, mais je ne pensais pas que vous comprendriez.\nI'd love to be able to find more time that I could spend relaxing.\tJ'adorerais être en mesure de trouver davantage de temps que je pourrais consacrer à me détendre.\nI'll be back in thirty minutes so I'll be in time for the concert.\tJe reviens dans trente minutes donc je serai à l'heure pour le concert.\nI'm beginning to think that I shouldn't have enlisted in the army.\tJe commence à penser que je n'aurais pas dû m'enrôler dans l'armée.\nI'm glad that they fixed the heating system, but now it's too hot.\tJe suis content qu'ils aient réparé le chauffage, mais maintenant il fait trop chaud.\nI'm not saying that we can't win. I'm just saying it's not likely.\tJe ne dis pas que nous ne pouvons pas l'emporter. Je dis simplement que ce n'est pas probable.\nI'm not saying that we can't win. I'm just saying it's not likely.\tJe ne dis pas que nous ne pouvons pas gagner. Je dis juste que ce n'est pas probable.\nI've been trying to find out who was responsible for the accident.\tJe tente de déterminer qui a été responsable de l'accident.\nI've just renewed my passport, so it's good for another ten years.\tJe viens juste de renouveler mon passeport, il est donc valable pour dix années encore.\nIf God had meant for us to be naked, we'd have been born that way.\tSi Dieu avait voulu que nous soyons nus, il nous aurait fait naître comme ça.\nIf I tell my mother, she'll worry, so I don't think I'll tell her.\tSi j'en parle à ma mère, elle va se faire du souci, donc je ne pense pas que je lui en parlerai.\nIf you don't have anything nice to say, don't say anything at all.\tSi tu n'as rien de gentil à dire, ne dis rien du tout.\nIf you had stuck around, you'd have met the girl I've been seeing.\tSi tu avais traîné par là, tu aurais rencontré la fille que je voyais.\nIf you look carefully, you'll see that the box has a false bottom.\tSi vous regardez avec attention, vous verrez que la boîte est munie d'un double fond.\nIf you want to become a good writer, you need to practice writing.\tSi vous voulez devenir un bon écrivain, il vous faut pratiquer l'écriture.\nIf you were able to go camping with us, I think we'd all have fun.\tSi vous étiez en mesure de venir camper avec nous, je pense que nous nous amuserions tous.\nIf you were able to go camping with us, I think we'd all have fun.\tSi tu étais en mesure de venir camper avec nous, je pense que nous nous amuserions tous.\nIf you would talk less and listen more, you might learn something.\tSi tu parlais moins et écoutais davantage, tu apprendrais sans doute quelque chose.\nIf you're going to start a new business, you need a business plan.\tSi tu vas lancer une nouvelle affaire, tu as besoin d'un plan d'affaire.\nIn the cemetery, there is a statue of a snake biting its own tail.\tAu cimetière, est dressée une statue d'un serpent qui se mord la queue.\nIn the cemetery, there is a statue of a snake biting its own tail.\tAu cimetière, se dresse une statue d'un serpent qui se mord la queue.\nIn these two or three years, he acquired a large amount of wealth.\tLors de ces deux ou trois années, il acquit une grande quantité de richesses.\nIt goes without saying that nothing is more important than health.\tIl va sans dire que rien n'est plus important que la santé.\nIt is just like her to think of others before thinking of herself.\tC'est bien tout elle de penser aux autres avant de penser à elle-même.\nIt looks like the data you lost on your computer is irretrievable.\tIl semble que les données que vous avez perdues sur votre ordinateur soient irrécupérables.\nIt seems that the only time he isn't eating is when he's sleeping.\tOn dirait que le seul moment où il n'est pas en train de manger, c'est quand il dort.\nIt will not make much difference whether you go today or tomorrow.\tÇa ne fera pas grande différence que tu y ailles aujourd'hui ou demain.\nIt will not make much difference whether you go today or tomorrow.\tÇa ne fera pas grande différence si vous y allez aujourd'hui ou demain.\nIt will take her at least two years to be qualified for that post.\tÇa lui prendra au moins deux ans avant d'être qualifiée à ce poste.\nIt's one thing to make plans, but quite another to carry them out.\tC'est une chose de faire des projets, c'en est une autre de les réaliser.\nIt's surprising that you haven't heard anything about her wedding.\tIl est surprenant que vous n'ayez rien entendu au sujet de son mariage.\nIt's surprising that you haven't heard anything about her wedding.\tIl est surprenant que vous n'ayez rien entendu au sujet de ses noces.\nIt's surprising that you haven't heard anything about her wedding.\tIl est surprenant que tu n'aies rien entendu au sujet de son mariage.\nIt's surprising that you haven't heard anything about her wedding.\tIl est surprenant que tu n'aies rien entendu au sujet de ses noces.\nJudging from the look on his face, it seems that he has succeeded.\tÀ en juger par son visage, il semble qu'il ait réussi.\nJust as I was getting the hang of things, they changed the system.\tJuste quand je commençais à m'habituer au truc, ils ont changé le système.\nJust as I was getting the hang of things, they changed the system.\tJuste quand je commençais à me débrouiller, ils ont changé le système.\nJust because he likes painting doesn't mean he's good at painting.\tCe n'est pas parce qu'il aime la peinture qu'il peint bien.\nKeep a box of baking soda in the fridge to keep it smelling clean.\tConservez une boîte de poudre à lever dans le réfrigérateur pour qu'il continue à sentir propre.\nLet's not forget we never could have done this without Tom's help.\tN'oublions pas que nous n'aurions jamais pu faire ceci sans l'aide de Tom.\nMany children learn to use a computer even before entering school.\tBeaucoup d'enfants apprennent à utiliser un ordinateur même avant d'entrer à l'école.\nMany health specialists say that you should eat three meals a day.\tDe nombreux spécialistes de la santé disent qu'on devrait manger trois repas par jour.\nModern science has turned many impossibilities into possibilities.\tLa science moderne a transformé beaucoup d'impossibilités en possibilités.\nMrs. Smith, I'd like to introduce a friend of mine, Pierre Dubois.\tMadame Smith, j'aimerais vous présenter un de mes amis, Pierre Dubois.\nMy TV set is almost 15 years old, but it still has a good picture.\tMon poste de télévision a presque 15 ans, mais l'image est encore bonne.\nMy car broke down this morning and won't be repaired until Friday.\tMa voiture est tombée en panne ce matin et ne sera pas réparée avant vendredi.\nMy job search is really going rough. I don't have any connections.\tMa recherche d'emploi s'avère plutôt rude. Je n'ai aucune relation.\nNo matter how hard I tried, I couldn't remember that song's title.\tJ'eus beau essayer, je ne pus me rappeler du titre de cette chanson.\nNo matter how often I tell her, she keeps making the same mistake.\tQu'importe combien je lui dis souvent, elle continue de faire la même erreur.\nNo one has come forward to claim responsibility for what happened.\tPersonne ne s'est présenté pour assumer la responsabilité de ce qui s'est produit.\nNot a day goes by without our hearing of an environmental problem.\tPas un jour ne passe sans qu'on n'entende parler de problème environnemental.\nOn the plate was a piece of chicken, a potato and some green peas.\tSur l'assiette, il y avait un morceau de poulet, une pomme de terre et quelques petits pois.\nOne more thing. If you try anything on Mayu I'll break your spine.\tUne chose encore. Si tu t'en prends de quelque manière que ce soit à Mayu, je te brise les reins.\nOne of my neighbors called and said I left one of my windows open.\tUn de mes voisins a appelé et dit que j'avais laissé une de mes fenêtres ouvertes.\nOur project didn't get off the ground until he joined the company.\tNotre projet n'a pas décollé jusqu'à ce qu'il rejoigne l'entreprise.\nPapa made sure all the lights were turned off before going to bed.\tPapa s'assure que toutes les lampes sont déjà éteintes avant d'aller dormir.\nParents must provide their children with proper food and clothing.\tLes parents doivent fournir à leurs enfants la nourriture et les vêtements appropriés.\nRecently, many people are finding it hard to make a decent living.\tDepuis peu, beaucoup de gens trouvent qu'il est difficile de vivre décemment.\nShe advised him to give up smoking, but he wouldn't listen to her.\tElle lui recommanda d'arrêter de fumer, mais il refusait de l'écouter.\nShe advised him to give up smoking, but he wouldn't listen to her.\tElle lui a recommandé d'arrêter de fumer, mais il a refusé de l'écouter.\nShe advised him to go to the police station, but he was afraid to.\tElle lui recommanda d'aller au poste de police mais il avait peur de le faire.\nShe advised him to go to the police station, but he was afraid to.\tElle lui a recommandé d'aller au poste de police mais il avait peur de le faire.\nShe advised him to go to the police station, but he was afraid to.\tElle lui recommanda d'aller au poste de police mais il eut peur de le faire.\nShe asked him to read it for her because she had lost her glasses.\tElle le pria de le lui lire car elle avait perdu ses lunettes.\nShe asked him to read it for her because she had lost her glasses.\tElle l'a prié de le lui lire car elle avait perdu ses lunettes.\nShe blames me for the fact that our married life isn't going well.\tElle me reproche le fait que notre vie maritale n'aille pas bien.\nShe came up with a good way of making money by using the Internet.\tElle conçut une bonne manière de faire de l'argent en utilisant Internet.\nSome of the company's executives are out of town for a conference.\tPlusieurs dirigeants de l'entreprise sont en mission pour suivre une conférence.\nSteel production is estimated to reach 100 million tons this year.\tOn estime que la production d'acier atteindra les 100 millions de tonnes cette année.\nThat country has a trade surplus. It exports more than it imports.\tCe pays a un excédent commercial. Il exporte davantage qu'il n'importe.\nThat country has a trade surplus. It exports more than it imports.\tC'est ce pays qui a un excédent commercial. Il exporte davantage qu'il n'importe.\nThe argument is rigorous and coherent but ultimately unconvincing.\tL'argument est rigoureux et cohérent mais au bout du compte peu convaincant.\nThe bottom 40% of the U.S. population has only 0.3% of the wealth.\tLes quarante pour cent de la population des USA les plus modestes ne détiennent que zéro virgule trois pour cent de la richesse.\nThe boy gathered a handful of peanuts and put them in a small box.\tLe garçon rassembla une poignée de cacahuètes et les mit dans une petite boite.\nThe campers were hard up for water because their well had run dry.\tLes campeurs étaient à court d'eau parce que leur puits s'était asséché.\nThe company presented him with a gold watch on the day he retired.\tLa société lui offrit une montre en or le jour de son départ.\nThe contestants are gearing up for the final round of competition.\tLes participants s'échauffent pour la phase finale de la compétition.\nThe dolphin and trainer communicated much better than we expected.\tLe dauphin et le dresseur communiquaient bien mieux que nous ne l'espérions.\nThe dolphin and trainer communicated much better than we expected.\tLe dauphin et le dresseur communiquaient beaucoup mieux que nous ne nous y attendions.\nThe exhibition offers profound insights into ancient civilization.\tL'exposition propose un aperçu complet de la civilisation antique.\nThe fate of the hostages depends on the result of the negotiation.\tLe destin des otages dépend du résultat de la négociation.\nThe government is not doing its best to solve the housing problem.\tLe gouvernement ne fait pas de son mieux pour résoudre le problème du logement.\nThe government is promoting the use of domestically made products.\tLe gouvernement promeut l'usage de produits fabriqués localement.\nThe international space station is an amazing feat of engineering.\tLa station spatiale internationale est une étonnante prouesse technologique.\nThe investment firm tricked customers into buying worthless stock.\tLa société d'investissements a dupé des clients en leur faisant acheter des actions sans valeur.\nThe mountains in the Himalayas are higher than those in the Andes.\tLes montagnes de l'Himalaya sont plus hautes que celles des Andes.\nThe new birth policy is aimed at achieving zero population growth.\tLa nouvelle politique de natalité a pour but d'atteindre un taux de croissance démographique nul.\nThe new model is expected to be put on the market early next year.\tLe nouveau modèle devrait être commercialisé au début de l'année prochaine.\nThe only time he feeds the dog is when his wife is away on a trip.\tLe seul moment où il nourrit le chien est lorsque sa femme est partie en voyage.\nThe plane was delayed for two hours on account of the bad weather.\tL'avion fut retardé de deux heures en raison du mauvais temps.\nThe poor old man became so thin that now he's just skin and bones.\tLe pauvre homme est devenu si maigre qu'il n'a plus maintenant que la peau et les os.\nThe recent shortage of coffee has given rise to a lot of problems.\tLa récente pénurie de café a donné lieu à un grand nombre de problèmes.\nThe recent shortage of coffee has given rise to a lot of problems.\tLa récente pénurie de café a occasionné un grand nombre de problèmes.\nThe returning soldiers were commended for their bravery in battle.\tLes soldats qui sont revenus ont été loués pour leur bravoure au combat.\nThe ship was searched thoroughly, but no illegal drugs were found.\tLe navire fut soigneusement fouillé mais aucune drogue ne fut trouvée.\nThe surgeon persuaded me to undergo an organ transplant operation.\tLe chirurgien m'a convaincu de subir une opération de transplantation.\nThe surgeon persuaded me to undergo an organ transplant operation.\tLe chirurgien m'a convaincue de subir une opération de transplantation.\nThe worst thing you can do is to only do something half seriously.\tLa pire chose que l'on puisse faire est de ne faire quelque chose qu'à moitié sérieusement.\nThere are wavelengths of light that the human eye cannot perceive.\tIl existe des longueurs d'onde de la lumière que l'œil humain ne peut percevoir.\nThere is always the risk of losing all the data on your hard disk.\tIl y a toujours le risque de perdre toutes les données de votre disque dur.\nThere is no knowing when a severe earthquake will happen in Tokyo.\tIl n'y a pas moyen de savoir quand un séisme sévère se produira à Tokyo.\nThere was a modern-looking coffee table in the center of the room.\tUne table à café, à l'apparence moderne, se trouvait au centre de la pièce.\nThere's a rumor in the air that the firm is going into bankruptcy.\tIl y a une rumeur dans l'air sur le fait que l'entreprise est en train de faire faillite.\nThere's a rumor in the air that the firm is going into bankruptcy.\tUne rumeur circule sur le fait que l'entreprise va droit vers la faillite.\nThey aren't the kind of people you should want to be friends with.\tIls ne sont pas le genre de personnes avec lesquels vous voudriez être ami.\nThey aren't the kind of people you should want to be friends with.\tElles ne sont pas le genre de personnes avec lesquelles vous voudriez être ami.\nThey asked me for my name, my address, and the purpose of my trip.\tIls me demandèrent mon nom, mon adresse et la raison du voyage.\nThey hung streamers from the ceiling in preparation for the party.\tIls suspendirent des serpentins du plafond, en préparation de la fête.\nThey looked at the photo taken of me when I was a boy and laughed.\tIls regardèrent la photo de moi prise lorsque j'étais petit garçon et rirent.\nThis necklace is so beautiful that I'd like to buy in for my wife.\tCe collier est si beau que j'aimerais l'acheter pour ma femme.\nThis policy is sure to go a long way towards stimulating business.\tCette politique va certainement contribuer à stimuler les affaires.\nTo be successful, you need to look like you're already successful.\tPour avoir du succès, il faut paraître en avoir déjà.\nTo tell the truth, I drove my father's car without his permission.\tÀ dire vrai, j'ai conduit la voiture de mon père sans lui en demander la permission.\nTo tell the truth, I drove my father's car without his permission.\tÀ vrai dire, j'ai conduit la voiture de mon père sans sa permission.\nTom anonymously donated a million dollars to his favorite charity.\tTom a donné, anonymement, un million de dollars à son organisation caritative préférée.\nTom couldn't help but notice all the beautiful women on the beach.\tTom ne pouvait pas s'empêcher de remarquer toutes les belles femmes sur la plage.\nTom entered the restaurant where he eats about three times a week.\tTom entra dans le restaurant où il mange environ trois fois par semaine.\nTom helped the teacher decorate the classroom for Valentine's Day.\tTom aida le professeur à décorer la classe pour la Saint-Valentin.\nTom helped the teacher decorate the classroom for Valentine's Day.\tTom a aidé le professeur à décorer la classe pour la Saint-Valentin.\nTom knew the truth, but he didn't let anyone know that he knew it.\tTom connaissait la vérité, mais il a fait en sorte que personne ne le sache.\nTom said that he wanted to go visit Santa Claus at the North Pole.\tTom a dit qu'il voulait rendre visite au Père Noël au Pôle Nord.\nTom was wearing a bulletproof vest, so the bullet didn't kill him.\tTom portait un gilet pare-balles donc la balle ne l'a pas tué.\nTom was wondering how he was supposed to get around without a car.\tTom se demandait comment il était supposé se déplacer sans voiture.\nUntil you admit that you were wrong, I'm not going to talk to you.\tJe ne vais pas te parler jusqu'à ce que tu admettes que tu avais tort.\nWe found it very hard going back to our base camp in the blizzard.\tIl nous a été très difficile de rentrer au camp de base avec le blizzard.\nWe will have to consider each application on a case-by-case basis.\tNous devrons étudier chaque application au cas par cas.\nWe'll all be hungry, so be sure to bring enough food for everyone.\tNous aurons tous faim alors assure-toi d'apporter suffisamment de nourriture pour tout le monde.\nWe'll all be hungry, so be sure to bring enough food for everyone.\tNous aurons toutes faim alors assurez-vous d'apporter suffisamment de nourriture pour tout le monde.\nWe're counting on you to wake us up in time, so don't fall asleep.\tOn compte sur toi pour nous réveiller à l'heure, alors ne t'endors pas.\nWe've had a lot of complaints about how you treat your classmates.\tNous avons eu de nombreuses plaintes au sujet de la manière dont vous traitez vos camarades de classe.\nWe've had a lot of complaints about how you treat your classmates.\tNous avons eu de nombreuses plaintes au sujet de la manière dont tu traites tes camarades de classe.\nWe've had a lot of complaints about how you treat your classmates.\tNous avons eu de nombreuses plaintes au sujet de la manière avec laquelle vous traitez vos camarades de classe.\nWe've had a lot of complaints about how you treat your classmates.\tNous avons eu de nombreuses plaintes au sujet de la manière avec laquelle tu traites tes camarades de classe.\nWhat does it feel like to always have people following you around?\tComment se sent-on d'être toujours suivi par un entourage ?\nWhat does it feel like to always have people following you around?\tQuelle impression cela fait-il d'être constamment suivi par des gens autour de vous ?\nWhat does it feel like to always have people following you around?\tQuelle impression cela fait-il d'être constamment entouré de gens qui vous suivent ?\nWhat kind of sports we play depends on the weather and the season.\tLe type de sport que nous pratiquons dépend du temps et de la saison.\nWhat we ended up learning was that the meat had been contaminated.\tCe que nous finîmes par apprendre, c'est que la viande avait été contaminée.\nWhen I last saw him, he was wearing a blue shirt and white slacks.\tLa dernière fois que je le vis, il portait une chemise bleue et un pantalon blanc.\nWhen I was in high school, I used to earn extra money babysitting.\tQuand j'étais au lycée, j'avais l'habitude de me faire de l'argent de poche en gardant des enfants.\nWhen you leave the room, please make sure you turn off the lights.\tLorsque vous quittez la pièce, veuillez vous assurer d'éteindre les lumières.\nWhenever you're in trouble or feeling down, I'll be there for you.\tQu'importe le moment où tu te trouves en difficulté ou abattu, je serai là pour toi.\nWhich is the capital of the United States, Washington or New York?\tLa capitale des États-Unis est Washington ou bien New-York ?\nYesterday I stumbled across a copy of my father's family register.\tHier je suis tombé sur une copie du livret de famille de mon père.\nYou can not appreciate the poem until you have read it many times.\tTu ne peux pas apprécier ce poème tant que tu ne l'as pas lu plusieurs fois.\nYou can't just leave your car parked in front of the fire hydrant.\tVous ne pouvez pas simplement laisser votre voiture devant la bouche d'incendie.\nYou can't just leave your car parked in front of the fire hydrant.\tTu ne peux pas simplement laisser ta voiture devant la bouche d'incendie.\nYou must have been surprised to find me alone with her last night.\tTu as dû être surpris de me trouver seul avec elle la nuit dernière.\nYou must have been surprised to find me alone with her last night.\tTu as dû être surprise de me trouver seul avec elle la nuit dernière.\nYou must have been surprised to meet your teacher in such a place.\tTu as dû être surpris de rencontrer ton instituteur dans un tel endroit.\nYou must have been surprised to meet your teacher in such a place.\tTu as dû être surprise de rencontrer ton professeur dans un tel endroit.\nYou should choose a job in relation to your talents and interests.\tVous devriez choisir un emploi en rapport avec vos talents et vos intérêts.\nYou should spend what little time you have left with your friends.\tTu devrais passer les moindres moments qu'il te reste avec tes amis.\nYou should spend what little time you have left with your friends.\tOn devrait passer les moindres moments qu'il nous reste avec nos amis.\nYou should spend what little time you have left with your friends.\tVous devriez passer les moindres moments qu'il vous reste avec vos amis.\nYou'd be amazed how long it takes Tom to get ready in the morning.\tTu serais impressionné de voir combien de temps Tom a pris pour se préparer ce matin.\nYou'll get plenty of chances to meet girls when you go to college.\tTu auras plein d'occasions de rencontrer des filles lorsque tu iras à la fac.\nYou're the only person I know besides me who likes medieval music.\tVous êtes la seule personne que je connaisse à part moi qui aime la musique médiévale.\nYou've worked hard for months and have certainly earned a holiday.\tTu as travaillé dur depuis des mois et tu as certainement mérité des vacances.\n\"But don't you think that it's a little big?\" asked the shopkeeper.\t« Mais vous ne pensez pas que ce soit un peu grand ? » demanda la boutiquière.\n\"The good die young\" is an old saying which may or may not be true.\t« Les bons meurent jeunes » est un vieil adage qui est peut-être vrai ou pas.\n\"What toppings do you want on the pizza?\" \"Anything but anchovies.\"\t«Que voulez-vous sur votre pizza ?» «Tout sauf des anchois.»\nA bookstore in that location wouldn't make enough money to survive.\tUne librairie à cet endroit ne ferait pas assez d'argent pour survivre.\nA conservative tie is preferable to a loud one for a job interview.\tUne cravate classique est préférable à une cravate criarde pour un entretien d'embauche.\nA fund was launched to set up a monument in memory of the dead man.\tUne souscription a été lancée afin d'ériger un monument à la mémoire du défunt.\nA fund was launched to set up a monument in memory of the dead man.\tUne souscription fut lancée afin d'ériger un monument à la mémoire du défunt.\nA good password should be difficult to guess, but easy to remember.\tUn bon mot de passe devrait être difficile à deviner mais facile à mémoriser.\nA man's happiness doesn't depend on what he has, but on what he is.\tLe bonheur d'un homme ne dépend pas de ce qu'il a mais de ce qu'il est.\nA party will be held next Saturday, that is to say, on August 25th.\tUne fête aura lieu samedi prochain, c'est-à-dire le 25 août.\nA pet theory of mine is that things should be seen from a distance.\tUne théorie que j'aime bien est que les choses doivent être vues avec du recul.\nAll the skill of the sailors gave way to the violence of the storm.\tToute la compétence des marins céda sous la violence de la tempête.\nAre you seriously thinking about buying a computer from that store?\tPensez-vous sérieusement à acheter un ordinateur dans ce magasin ?\nAre you seriously thinking about buying a computer from that store?\tPenses-tu sérieusement à acheter un ordinateur dans ce magasin ?\nAre you seriously thinking about buying a computer from that store?\tPensez-vous sérieusement à faire l'acquisition d'un ordinateur dans ce magasin ?\nAre you seriously thinking about getting married again at your age?\tPensez-vous sérieusement à vous remarier à votre âge ?\nAre you seriously thinking about getting married again at your age?\tPenses-tu sérieusement à te remarier à ton âge ?\nAs long as I'm going to be in London, I ought to see a play or two.\tDans la mesure où je vais être à Londres, je devrais voir une ou deux représentations.\nAs soon as the accident occurred, a police car rushed to the scene.\tDès que l'accident eut lieu, une voiture de police fonça sur les lieux.\nBecause of his wealth, he was able to become a member of that club.\tIl put devenir membre de ce club grâce à sa richesse.\nBeing written in great haste, this letter has quite a few mistakes.\tAyant été écrite en grande hâte, cette lettre comporte pas mal de fautes.\nConsidering what time it was, the supermarket was relatively empty.\tVu l'heure qu'il était, le supermarché était relativement vide.\nDespite all my efforts, I will not have the report ready by Friday.\tMalgré tous mes efforts, je ne pourrai pas rendre le rapport vendredi.\nDo we have any French homework that needs to be turned in tomorrow?\tAvons-nous des devoirs de français qui doivent être rendus demain ?\nDoes this sentence sound like something a native speaker would say?\tCette phrase a-t-elle l'air de quelque chose qu'un locuteur natif dirait ?\nEach time I see Mary, I learn something new and important from her.\tChaque fois que je vois Mary, j'apprends d'elle quelque chose de nouveau et d'important.\nEveryone is anxious to know what has become of the former champion.\tTout le monde est désireux de savoir ce qu'il est advenu de l'ex-champion.\nExcuse me, but would you please tell me the way to the post office?\tExcusez-moi, pourriez-vous m'indiquer la route pour la poste ?\nExisting legislation does not take diversity of races into account.\tLa législation actuelle ne tient pas compte de la diversité des races.\nFrom time to time, I think about my mother who is no longer living.\tDe temps à autre, je pense à ma mère qui n'est plus en vie.\nHe always left the problem of his children's education to his wife.\tIl a toujours laissé le problème de l'éducation de ses enfants à sa femme.\nHe devoted the last years of his life to writing his autobiography.\tIl a consacré les dernières années de sa vie à écrire sa biographie.\nHe has been living in the cabin by himself for more than ten years.\tIl a vécu seul dans la bicoque pendant plus de dix ans.\nHe has bought a lot in the suburbs with a view to building a house.\tIl a acheté une parcelle en banlieue dans l'intention d'y construire une maison.\nHe is apt to say atrocious things and to exaggerate his grievances.\tIl a tendance à dire des choses affreuses et à exagérer ses griefs.\nHe never believes in paying any more for a thing than is necessary.\tIl ne croit jamais devoir payer plus pour une chose qu'il n'est nécessaire.\nHe went to America for the purpose of studying American literature.\tIl est allé en Amérique pour étudier la littérature américaine.\nHe went to America for the purpose of studying American literature.\tIl est allé aux États-Unis pour étudier la littérature étatsunienne.\nHe's not in the least interested in what is happening in the world.\tIl ne s'intéresse pas du tout à ce qui se passe dans le monde.\nHer derogatory remarks towards her boss caused her to lose her job.\tSes remarques désobligeantes à l'égard de son patron lui ont causé la perte de son emploi.\nHis wife is in the hospital because she was injured in a car crash.\tSa femme est à l’hôpital car elle a été blessée dans un accident de voiture.\nI assume we're doing a pretty good job since no one has complained.\tJe suppose que nous faisons un assez bon boulot puisque personne ne s'est plaint.\nI can't imagine why anyone would want to steal something like that.\tJe n'arrive pas à imaginer pourquoi quiconque voudrait dérober quelque chose comme ça.\nI can't show up looking like I've been working on the farm all day.\tJe ne peux pas me montrer avec l'air de quelqu'un qui a travaillé toute la journée à la ferme.\nI couldn't get out of my garage because there was a car in the way.\tJe n'ai pas pu sortir de mon garage parce qu'il y avait une voiture en travers du chemin.\nI don't care how much you want it. I'm not going to give it to you.\tJe me fiche de combien tu le veux. Je ne vais pas te le donner.\nI don't care how much you want it. I'm not going to give it to you.\tJe me fiche de combien vous le voulez. Je ne vais pas vous le donner.\nI don't have time to deal with this letter. Could you deal with it?\tJe n'ai pas le temps de m'occuper de cette lettre. Pourriez-vous vous en occuper ?\nI don't have time to deal with this letter. Could you deal with it?\tJe n'ai pas le temps de m'occuper de cette lettre. Pourrais-tu t'en occuper ?\nI don't have to go to the doctor any more. I'm feeling much better.\tIl ne me faut plus aller chez le médecin. Je me sens beaucoup mieux.\nI don't know what's going on around here, but I intend to find out.\tJe ne sais pas ce qui se passe par ici mais j'ai l'intention de le découvrir.\nI hope that neither of them were involved in that traffic accident.\tJ'espère qu'aucun d'entre eux n'a été impliqué dans cet accident de la circulation.\nI know I should have said something, but I didn't know what to say.\tJe sais que j'aurais dû dire quelque chose mais je ne savais pas quoi dire.\nI looked around and noticed that mine was the only car on the road.\tJ'ai regardé aux alentours et ai constaté que j'étais la seule voiture sur la route.\nI love looking at everyone's colorful kimonos on Coming of Age Day.\tJ'adore regarder les kimonos colorés des gens lors de la cérémonie japonaise de la majorité civile.\nI met someone the other day that I think I could fall in love with.\tJ'ai rencontré quelqu'un l'autre jour dont je pense que je pourrais tomber amoureux.\nI never for a moment imagined that my blog would become so popular.\tJe n'ai jamais imaginé un moment que mon journal en ligne deviendrait si populaire.\nI think it is about time we changed our ways of disposing of waste.\tJe pense qu'il est temps de changer nos façons de gérer les déchets.\nI think it's time for me to accept responsibility for that problem.\tJe pense qu'il est temps pour moi d'accepter ma responsabilité dans ce problème.\nI think that you and I should probably be able to get along better.\tJe pense que vous et moi devrions probablement être capables de nous entendre mieux.\nI think that you and I should probably be able to get along better.\tJe pense que toi et moi devrions probablement être capables de nous entendre mieux.\nI thought a walk in the park might take our minds off our troubles.\tJ'ai pensé qu'une promenade dans le parc pourrait soulager nos esprits de nos ennuis.\nI thought he was an American but he turned out to be an Englishman.\tJe pensais qu'il était Américain mais il s'est avéré qu'il était Anglais.\nI thought you might like to know where we'll be going next weekend.\tJe pensais que tu aimerais peut-être savoir où nous irons le week-end prochain.\nI thought you might like to know where we'll be going next weekend.\tJe pensais que vous aimeriez peut-être savoir où nous irons le week-end prochain.\nI told the children to be quiet, but they just kept on being noisy.\tJ'ai enjoint aux enfants de se tenir tranquilles, mais ils ont continué à faire du bruit.\nI tried to reach you on the phone, but I was unable to get through.\tJ'ai essayé de te joindre au téléphone mais ça ne passait pas.\nI want to buy this material for a new dress. How much does it cost?\tJe veux faire l'acquisition de ce tissu pour une nouvelle robe. Combien coûte-t-il ?\nI want to give you some money to help you through these hard times.\tJe veux te donner de l'argent pour t'aider à traverser ces vicissitudes.\nI want to give you some money to help you through these hard times.\tJe veux te donner de l'argent pour t'aider à traverser ces temps difficiles.\nI want to give you some money to help you through these hard times.\tJe veux vous donner de l'argent pour vous aider à traverser ces vicissitudes.\nI want to give you some money to help you through these hard times.\tJe veux vous donner de l'argent pour vous aider à traverser ces temps difficiles.\nI want to go to sleep soon because I need to get up early tomorrow.\tJe veux aller dormir tôt parce qu'il me faut me lever tôt, demain.\nI was just wondering if you have been able to find a place to live.\tJe me demandais juste si tu as été capable de te trouver un endroit pour vivre.\nI was very disconcerted to find that everyone else already knew it.\tJe fus très déconcerté de découvrir que tous les autres le savaient déjà.\nI went to every modern art show that took place in Tokyo last year.\tJe suis allé à toutes les expositions d'art moderne qui se sont tenues à Tokyo l'année dernière.\nI would like to know how these substances are absorbed by the body.\tJ'aimerais savoir comment ces substances sont absorbées par le corps.\nI'm going to go buy a ticket, so please watch my bags for a minute.\tJe vais aller acheter un ticket, alors merci de surveiller mes sacs une minute.\nI'm going to go buy a ticket, so please watch my bags for a minute.\tJe vais aller acheter un ticket, alors surveille mes sacs une minute, s'il te plaît.\nI'm going to go buy a ticket, so please watch my bags for a minute.\tJe vais aller acheter un ticket, alors surveillez mes sacs une minute, s'il vous plaît.\nI'm going to go buy a ticket, so please watch my bags for a minute.\tJe vais aller acheter un ticket, alors s'il te plaît, surveille mes sacs une minute.\nI'm going to go buy a ticket, so please watch my bags for a minute.\tJe vais acheter un ticket, alors s'il vous plaît, surveillez mes sacs une minute.\nIf I were a foreigner, I probably wouldn't be able to eat raw fish.\tSi j'étais un étranger, je ne serais probablement pas capable de manger du poisson cru.\nIf he should arrive late, you may start the conference without him.\tS'il devait arriver tard, vous pouvez commencer la conférence sans lui.\nIf you dress like that at your age, you'll make a fool of yourself.\tSi tu t'habilles comme ça à ton âge, tu vas te ridiculiser.\nIf you go by bus, you can get there in about one-third of the time.\tSi tu t'y rends par le bus, tu peux y être dans environ le tiers du temps.\nIf you go by bus, you can get there in about one-third of the time.\tSi tu y vas par le bus, tu peux y être dans environ trois fois moins de temps.\nIf you have a good garden, it will enhance the value of your house.\tSi vous avez un bon jardin, cela augmentera la valeur de votre maison.\nIf you put more tea leaves into the pot, the tea will taste better.\tSi vous mettez plus de feuilles de thé dans la bouilloire, le thé aura meilleur goût.\nIn Japan, you never have to go too far to find a convenience store.\tAu Japon, on ne doit jamais aller bien loin pour trouver un commerce de proximité.\nIn order to see that picture better, I want to get a little closer.\tAfin que je puisse mieux voir ce tableau, je voudrais m'en rapprocher un peu.\nIn the first place, we must be careful about what we eat and drink.\tEn premier lieu, nous devons faire attention à ce que nous mangeons et buvons.\nIn the last typhoon, the wind blew at over 200 kilometers per hour!\tDans le dernier typhon, le vent soufflé à plus de 200 kilomètres à l'heure !\nIt is important that you attach your photo to the application form.\tIl est important que vous joigniez votre photo au formulaire de candidature.\nIt is not until we lose our health that we realize the value of it.\tCe n'est que lorsque nous perdons notre santé que nous en apprécions la valeur.\nIt took me more than two hours to translate a few pages of English.\tCela m'a pris plus de 2 heures pour traduire quelques pages d'anglais.\nIt was the great lung-power of Caruso that made him a great singer.\tC'était la grande capacité pulmonaire de Caruso qui en a fait un grand chanteur.\nIt was through his influence that she became interested in ecology.\tC'est sous son influence qu'elle a commencé à s'intéresser à l'écologie.\nIt's been a long time since I've seen any dragonflies in this area.\tÇa fait longtemps que je n'ai pas vu de libellules dans cette zone.\nIt's not enough to just say you're going to vote. You need to vote.\tIl ne suffit pas simplement de dire qu'on va aller voter. Il faut voter.\nIt's the sort of work that calls for a high level of concentration.\tC'est le genre de travail qui requiert un niveau élevé de concentration.\nIt's very hard to play Vivaldi's bassoon concerto on the saxophone.\tIl est très difficile de jouer le concert pour basson de Vivaldi au saxophone.\nJust as there are few fat \"old maids,\" there are few fat bachelors.\tDe la même manière qu'il y a peu de grosses vieilles filles, il y a peu de gros jeunes hommes célibataires.\nKyoto gets thousands of visitors from all over the world each year.\tKyoto reçoit des milliers de visiteurs provenant du monde entier chaque année.\nLouis Pasteur discovered that germs cause most infectious diseases.\tLouis Pasteur découvrit que les bactéries causent la plupart des maladies infectieuses.\nMake a decision and make it with the confidence that you are right.\tPrenez une décision et prenez-la avec la certitude que vous avez raison.\nMany foreigners come to Japan for the purpose of studying Japanese.\tBeaucoup d’étrangers viennent au Japon pour apprendre le japonais.\nMary wanted me to look the other way while she was getting dressed.\tMarie voulait que je regarde ailleurs pendant qu'elle se changeait.\nMen do not exist in this world to become rich, but to become happy.\tLes hommes ne sont pas en ce monde pour devenir riches, mais pour devenir heureux.\nMore and more people are falling behind in their mortgage payments.\tDe plus en plus de gens sont en rupture de paiement de leurs emprunts.\nMy brother just received tenure at the university where he teaches.\tMon frère vient d'être titularisé à l'université où il enseigne.\nMy doctor told me to put the eyedrops in my eyes three times a day.\tMon médecin m'a dit de me mettre les gouttes dans les yeux trois fois par jour.\nMy leg's gone to sleep, so I don't think I can stand up right away.\tMa jambe est ankylosée, alors je ne pense pas que je puisse me dresser tout de suite.\nMy physician advised me to refrain from alcohol for the time being.\tMon médecin m'a conseillé de m'abstenir de consommer de l'alcool pendant un certain temps.\nNo matter how capable you are, you're not going to get a promotion.\tPeu importe que vous soyez compétent ou non, vous n'aurez pas de promotion.\nNo matter how hard I practiced, I wasn't able to do the backstroke.\tJ'avais beau m'y entraîner, j'étais incapable de faire le dos crawlé.\nNo one knows exactly how many people considered themselves hippies.\tPersonne ne sait exactement combien de personnes se considéraient comme hippies.\nNo sinner is ever saved after the first twenty minutes of a sermon.\tAucun pécheur n'est jamais sauvé après les vingt premières minutes d'un sermon.\nNobody contributed to the understanding of dreams as much as Freud.\tPersonne autant que Freud n'a contribué à la compréhension des rêves.\nNothing gave her greater pleasure than to watch her son growing up.\tRien ne lui procurait un plus grand plaisir que de regarder son fils grandir.\nOn an island in the Seine, there is a big church called Notre Dame.\tSur une île de la Seine se trouve une grande église appelée Notre Dame.\nOne hot summer afternoon, John and Dan were cutting the long grass.\tPar une chaude après-midi d'été, Tony, John et Pip coupaient les hautes herbes.\nOne thing you should know about me is that I'm a little overweight.\tUne chose que tu devrais savoir à mon sujet, c'est que je suis un peu en surpoids.\nOur local TV station does a pretty good job of covering local news.\tNotre station de télé locale effectue un assez bon travail de couverture des nouvelles locales.\nPeople have eaten with their fingers from the beginning of history.\tL'homme a mangé avec ses doigts depuis la nuit des temps.\nPlease don't forget to put a stamp on the letter before mailing it.\tS'il te plait n'oublie pas de mettre un timbre sur la lettre avant de l'envoyer.\nPlease don't forget to put a stamp on the letter before mailing it.\tN'oubliez pas d'apposer un timbre sur la lettre avant de l'envoyer, je vous prie.\nPlease stick around after the concert. We'll be signing autographs.\tVeuillez rester dans le coin après le concert. Nous signerons des autographes.\nShe always says nice things about him, especially when he's around.\tElle dit toujours de chouettes trucs sur lui, particulièrement lorsqu'il est dans les parages.\nShe hated him so much that our family could never go and visit him.\tElle le détestait tant que notre famille ne pouvait jamais aller lui rendre visite.\nShe looks young, but as a matter of fact she is older than you are.\tElle semble jeune, mais en fait, elle est plus âgée que toi.\nShe told me once and for all that she did not want to see me again.\tElle m'a dit une bonne fois pour toute qu'elle ne voulait pas me revoir.\nShe was unable to completely give up her dream of traveling abroad.\tElle était dans l'incapacité de complètement laisser tomber son rêve de voyages à l'étranger.\nShe'd just begun to read the book when someone knocked on the door.\tElle venait de commencer à lire le livre quand quelqu'un frappa à la porte.\nSince I've never eaten here before, I don't know what to recommend.\tComme je n'ai jamais mangé ici auparavant, je ne sais pas quoi recommander.\nSince my mother was sick, I couldn't leave the house last Saturday.\tJ'étais incapable de quitter la maison samedi dernier, ma mère étant malade.\nSince my mother was sick, I couldn't leave the house last Saturday.\tComme ma mère était malade, je n'ai pas pu quitter la maison samedi passé.\nSix months ago I had an operation for the cataract in my right eye.\tIl y a six mois, j'ai eu une opération de la cataracte à l'œil droit.\nSome people think eating at home is better for you than eating out.\tCertains pensent que manger chez vous est meilleur pour vous que manger dehors.\nSometimes the hardest thing and the right thing are the same thing.\tParfois, la chose la plus difficile et la chose la meilleure sont une même chose.\nSwallowing and throat-clearing can be a sign that someone is lying.\tAvaler et s'éclaircir la gorge peut être un signe que quelqu'un ment.\nSwitzerland is situated between France, Italy, Austria and Germany.\tLa Suisse est située entre la France, l'Italie, l'Autriche et l'Allemagne.\nThe Amazon is the second longest river in the world after the Nile.\tL'Amazone est le deuxième plus long fleuve du monde après le Nil.\nThe astronaut had to conduct many experiments in the space shuttle.\tL'astronaute a dû faire plein d'expériences dans la navette spatiale.\nThe bullet penetrated his chest, leaving him in critical condition.\tLa balle pénétra sa poitrine, le laissant dans un état critique.\nThe day will soon come when we will be able to predict earthquakes.\tNous serons bientôt capables de prévoir les tremblements de terre.\nThe flowers are beginning to grow and everything is becoming green.\tLes fleurs commencent à pousser et tout devient vert.\nThe forensic technician found gunshot residue on the victim's hand.\tLe technicien légiste trouva des résidus de coup de feu sur la main de la victime.\nThe government compensated the farmers for the damage to the crops.\tLe gouvernement a indemnisé les agriculteurs pour les dommages causés aux récoltes.\nThe house is too big for us, and what is more, it is too expensive.\tLa maison est trop grande pour nous et, de plus, elle est trop chère.\nThe house is too big for us, and what is more, it is too expensive.\tLa maison est trop grande pour nous et qui plus est, elle est trop chère.\nThe house is too big for us, and what is more, it is too expensive.\tLa maison est trop grande pour nous et qui plus est, trop chère.\nThe more I thought about the problem, the more difficult it seemed.\tPlus je réfléchissais à ce problème, plus il paraissait difficile.\nThe only thing that really matters is whether or not you are happy.\tLa seule chose qui importe vraiment est si oui ou non tu es heureux.\nThe only thing that really matters is whether or not you are happy.\tLa seule chose qui compte vraiment est si oui ou non vous êtes heureux.\nThe potato is native to the highlands of Central and South America.\tLa pomme de terre est originaire des hauts plateaux d'Amérique latine.\nThe reporters demanded to know why the mayor wouldn't talk to them.\tLes journalistes exigèrent de savoir pourquoi le maire ne voulait pas leur parler.\nThe teacher pointed her finger at me and asked me to come with her.\tLe professeur m'a pointé du doigt, et m'a demandé de la suivre.\nThe value of a good education cannot be measured in terms of money.\tLa valeur d'une bonne éducation ne peut se mesurer en termes d'argent.\nThe way Tom drives, he's going to have an accident sooner or later.\tVu comment Tom conduit, il finira par avoir un accident.\nThe wicked witch cast a spell on the man and turned him into a bug.\tLa méchante sorcière lança un sort sur l'homme et le transforma en (un) insecte.\nThere are few legal constraints on the sale of firearms in the U.S.\tIl y a peu de contraintes légale concernant la vente d'armes aux États-Unis.\nThere had never been any ill-feeling between them until that night.\tIl n'y avait jamais eu de frictions entre eux jusqu'à cette nuit-là.\nThere is a possibility that we won't have to shut down the factory.\tIl y a une possibilité que nous n'ayons pas à fermer l'usine.\nThey lived in a very small house at the end of a long, gray street.\tIls vivaient dans une toute petite maison au bout d'une longue rue grise.\nThey want to increase food production by growing new kinds of rice.\tIls veulent augmenter la production de nourriture en faisant pousser de nouvelles espèces de riz.\nThis problem is too difficult for primary school children to solve.\tCe problème est trop difficile pour être résolu par des enfants de l'école primaire.\nTo prevent the disease from spreading quickly was not an easy task.\tEmpêcher la maladie de se répandre à toute vitesse n'a pas été une chose facile.\nTom and Mary don't seem to really talk to each other all that much.\tOn ne dirait pas que Tom et Mary se parlent tant que ça.\nTom finally mustered up the courage to ask Mary to go out with him.\tTom a finalement eu le courage de demander à Marie de sortir avec lui.\nTom has no intention of staying in Boston for the rest of his life.\tTom n'a pas l'intention de rester à Boston pour le reste de ses jours.\nTom plays the baritone saxophone and Mary plays the alto saxophone.\tTom joue du saxophone baryton et Marie joue du saxophone alto.\nTom usually has a glass of wine before dinner to whet his appetite.\tTom prend généralement un verre de vin avant le dîner pour se mettre en appétit.\nTom was pacing back and forth in the parking lot, waiting for Mary.\tTom faisait les cents pas, en attendant Marie.\nTom would've liked you. It's too bad that you never met each other.\tTom t'aurait apprécié. C'est dommage que vous ne vous soyez jamais rencontrés.\nWe asked him on the interphone if he could come downstairs quickly.\tNous lui avons demandé à l'interphone s'il pouvait descendre rapidement.\nWe have a very good team, so we have every reason to be optimistic.\tNous disposons d'une excellente équipe et avons par conséquent toutes les raisons d'être optimistes.\nWe will have to put off the soccer game because of the bad weather.\tNous allons devoir reporter le match de foot à cause du mauvais temps.\nWhen I was growing up, I never imagined that I would become famous.\tLorsque je grandissais, je n'ai jamais imaginé que je deviendrais célèbre.\nWhen he was in the military, he conformed to the strict army rules.\tLorsqu'il était dans l'armée, il se conformait à ses règles rigides.\nWhen the chips are down, the only one you can count on is yourself.\tAu moment critique, le seul sur qui vous pouvez compter, c'est vous.\nWhen you wake up tomorrow morning, you will find a wonderful thing.\tLorsque tu te réveilleras demain matin, tu trouveras quelque chose de merveilleux.\nWhether the problem is important or unimportant, you must solve it.\tQue le problème soit important ou sans importance, tu dois le résoudre.\nWhich reminds me, it's been more than 30 years since that incident.\tCe qui me fait penser que ça fait plus de trente ans depuis cet incident.\nWhich reminds me, it's been more than 30 years since that incident.\tCe qui me fait penser qu'il s'est écoulé plus de trente ans depuis cet incident.\nWhy isn't there any wine left in the bottle? Did you kids drink it?\tPourquoi ne reste-t-il plus de vin dans la bouteille ? L'avez-vous bu, les enfants ?\nWill you have a little time this weekend to help me with my French?\tAuras-tu un peu de temps ce week-end pour m'aider en français ?\nYou bought the food, so if I buy the wine that will even things up.\tTu as acheté la nourriture, donc si j'achète le vin on serra à égalité.\nYou can always tell what any individual wants most by what he does.\tOn peut toujours deviner ce qu'un individu veut, principalement à ce qu'il fait.\nYou can see that the architect paid scrupulous attention to detail.\tOn peut voir que l'architecte a porté une attention scrupuleuse aux détails.\nYou can see that the architect paid scrupulous attention to detail.\tVous pouvez vous rendre compte que l'architecte a porté une attention scrupuleuse aux détails.\nYou can see that the architect paid scrupulous attention to detail.\tTu peux te rendre compte que l'architecte a porté une attention scrupuleuse aux détails.\nYou can't just keep throwing your money away on this kind of thing.\tTu ne peux pas continuer à gaspiller ton argent à ce genre de choses.\nYou had better make sure that he is at home before you call on him.\tTu devrais être sûr qu'il est chez lui avant de lui rendre visite.\nYou had better make sure that he is at home before you call on him.\tTu devrais être sûre qu'il est chez lui avant de lui rendre visite.\nYou had better make sure that he is at home before you call on him.\tVous devriez être sûr qu'il est chez lui avant de lui rendre visite.\nYou had better make sure that he is at home before you call on him.\tVous devriez être sûre qu'il est chez lui avant de lui rendre visite.\nYou had better make sure that he is at home before you call on him.\tVous devriez vous assurer qu'il est chez lui avant de lui rendre visite.\nYou had better make sure that he is at home before you call on him.\tTu devrais t'assurer qu'il est chez lui avant de lui rendre visite.\nYou must not be afraid of making mistakes when learning a language.\tTu ne dois pas avoir peur de faire des erreurs lorsque tu apprends une langue.\nYou should wear your hair down more often. It looks great that way.\tTu devrais détacher tes cheveux plus souvent. Ils sont très bien ainsi.\nYou speak French very well. I wish I could speak it as well as you.\tTu parles très bien français. Je souhaiterais parler aussi bien que toi.\nYou speak French very well. I wish I could speak it as well as you.\tVous parlez très bien français. Je souhaiterais le parler aussi bien que vous.\nYou'll get a ticket if you park the car in front of a fire hydrant.\tTu vas avoir une amende si tu te gares devant une bouche d'incendie.\nYour drinking is starting to affect the performance of your duties.\tVotre consommation d'alcool commence à affecter la performance de vos services.\nA molecule of water is made up of one oxygen and two hydrogen atoms.\tUne molécule d'eau se compose de deux atomes d'hydrogène et d'un atome d'oxygène.\nA molecule of water is made up of one oxygen and two hydrogen atoms.\tUne molécule d'eau est composée d'un atome d'oxygène et de deux d'hydrogène.\nA poor school record will count against you when you look for a job.\tUn mauvais parcours scolaire jouera contre toi quand tu chercheras un travail.\nAfter what happened, I would've thought Tom would go back to Boston.\tAprès ce qui s'est passé, j'aurais pensé que Tom retournerait à Boston.\nAll of a sudden, I remembered that I couldn't pay for so many books.\tTout à coup je me souvins que je ne pouvais pas payer autant de livres.\nAll the villagers went out into the hills to look for a missing cat.\tTous les villageois partirent dans les montagnes à la recherche d'un chat disparu.\nAmericans like football in the same way that Japanese like baseball.\tLes Américains aiment le football américain de la même manière que les Japonais aiment le base-ball.\nBeing aware of what and how much we eat is essential to good health.\tÊtre conscient de ce que nous mangeons et en quelle quantité est essentiel à une bonne santé.\nCould you tell me which bus or train goes to the center of the town?\tPourriez-vous me dire quel bus ou quel train prendre pour aller au centre-ville ?\nDo you know how many people in the world starve to death every year?\tSavez-vous combien de gens dans le monde meurent de faim tous les ans ?\nDo you know how many people in the world starve to death every year?\tSais-tu combien de gens dans le monde meurent de faim tous les ans ?\nHaving worked on the farm all day long, he was completely tired out.\tIl était complètement épuisé d'avoir travaillé à la ferme toute la journée.\nHe failed in business, and to make matters worse, his wife fell ill.\tSon affaire a fait faillite, et pour couronner le tout, sa femme est tombée malade.\nHe had this stupid habit of slouching against any available surface.\tIl avait cette tendance idiote à se vautrer contre n'importe quelle surface disponible.\nHe is without doubt the most successful movie director in the world.\tIl est sans aucun doute le metteur en scène de films le plus apprécié dans le monde.\nHe prefers plain, simple people, for he is plain and simple himself.\tIl préfère les gens ordinaires et simples, car il est lui-même ordinaire et simple.\nHe was the kind of kid who was always showing off to his classmates.\tC'était le genre d'enfant qui frimait toujours auprès de ses camarades.\nHow to meet future energy demand is a big question we must consider.\tComment faire face à la demande future d'énergie est une vaste question à laquelle il nous faut réfléchir.\nHurry up. The train leaves in ten minutes. We don't want to miss it.\tDépêchez-vous. Le train part dans quelques minutes. Nous ne voulons pas le rater.\nI can think of some situations in which a knife would come in handy.\tJe peux imaginer des situations dans lesquelles un couteau serait bien utile.\nI contacted them the other day, but I was not able to get an answer.\tJe les ai contactés l'autre jour, mais je n'ai pas pu obtenir une réponse.\nI don't care who your father is. You still have to follow my orders.\tJe me fiche de savoir qui est votre père. Vous devez quand même obéir à mes ordres.\nI don't care who your father is. You still have to follow my orders.\tJe me fiche de savoir qui est ton père. Tu dois quand même obéir à mes ordres.\nI don't know what we're going to find, but we should find something.\tJ'ignore ce que nous allons trouver mais nous devrions trouver quelque chose.\nI don't know what we're going to find, but we should find something.\tJe ne sais pas ce que nous allons trouver mais nous devrions trouver quelque chose.\nI don't know where I put my keys, but I left them in here somewhere.\tJ'ignore où j'ai mis mes clés mais je les ai laissées quelque part là-dedans.\nI don't think I want to answer any more of your questions right now.\tJe ne pense pas que j'ai envie de répondre à plus de tes questions pour l'instant.\nI don't think I want to answer any more of your questions right now.\tJe ne pense pas avoir envie de répondre à plus de vos questions pour le moment.\nI doubt that Tom has the courage to do what really needs to be done.\tJe doute que Tom ait le courage de faire ce qui doit vraiment être fait.\nI dunno if it's a bug or what, but this software doesn't work right.\tJ'sais pas si c'est un bug ou quoi, mais ce logiciel ne marche pas correctement.\nI dunno if it's a bug or what, but this software doesn't work right.\tJ'sais pas si c'est un bug ou quoi, mais ce logiciel ne fonctionne pas correctement.\nI feel like going to the movies, but I still have to do my homework.\tJ'ai envie d'aller au cinéma mais je dois encore faire mes devoirs.\nI guess this desk will serve the purpose until we can get a new one.\tJe suppose que ce bureau fera l'affaire jusqu'à ce que l'on puisse en obtenir un nouveau.\nI had forgotten all about today's meeting. I'm glad you reminded me.\tJ'avais complètement oublié la réunion d'aujourd'hui. Je suis content que tu me l'aies rappelé.\nI haven't seen you for a long time. Come and see me once in a while.\tCela fait longtemps que je ne vous ai pas vu. Venez me rendre visite une fois de temps en temps.\nI heard that song so many times on the radio that I grew to hate it.\tJ'ai entendu cette chanson tellement de fois à la radio que je me suis mis à la détester.\nI just want you to know that I won't be able to come to your picnic.\tJe veux juste que vous sachiez que je ne serai pas en mesure de venir à votre pique-nique.\nI just want you to know that I won't be able to come to your picnic.\tJe veux juste que vous sachiez que je ne serai pas en mesure de venir à ton pique-nique.\nI just wanted some advice from someone who's already been to Boston.\tJe voulais seulement des conseils venant de quelqu'un qui a déjà été à Boston.\nI know your time is valuable, but could I ask you just one question?\tJe sais que votre temps est précieux mais pourrais-je vous poser juste une question ?\nI ordered the children to stay quiet, but they kept on making noise.\tJ'ai enjoint aux enfants de se tenir tranquilles, mais ils ont continué à faire du bruit.\nI parked on the left side of the street just in front of the school.\tJe me suis garé du côté gauche de la rue, juste devant l'école.\nI stumbled across this problem when I was working on something else.\tJ'ai buté sur le problème tandis que je travaillais à autre chose.\nI suddenly saw myself reflected in a window pane and it startled me.\tJe vis soudain mon reflet dans une vitrine et ça me fit sursauter.\nI think I've figured out which horse is most likely to win the race.\tJe pense avoir déterminé quel cheval a la meilleure probabilité d'emporter la course.\nI think I've figured out which horse is most likely to win the race.\tJe pense avoir déterminé quel cheval a la meilleure probabilité de gagner la course.\nI thought it was unnecessary for us to do anything about that today.\tJe pensais qu'il était pour nous inutile de faire quoi que ce fut à ce sujet, aujourd'hui.\nI thought it would be an opportunity for you to improve your French.\tJ'ai pensé que ce serait une occasion pour vous d'améliorer votre français.\nI thought it would be an opportunity for you to improve your French.\tJ'ai pensé que ce serait une occasion pour toi d'améliorer ton français.\nI thought you might be lonely, so I came over with a bottle of wine.\tJ'ai pensé que tu pourrais te sentir seul alors je suis venu avec une bouteille de vin.\nI thought you might be lonely, so I came over with a bottle of wine.\tJ'ai pensé que tu pourrais te sentir seule alors je suis venu avec une bouteille de vin.\nI thought you might be lonely, so I came over with a bottle of wine.\tJ'ai pensé que vous pourriez vous sentir seul alors je suis venu avec une bouteille de vin.\nI was going to buy a new table, but my husband fixed the broken leg.\tJ'étais sur le point d'acheter une nouvelle table mais mon mari a réparé le pied cassé.\nI was just wondering how it would feel to be punched in the stomach.\tJe me demandais justement comment ça ferait d'être frappé à l'estomac.\nI was just wondering how you guys ever got talking about this topic.\tJe me demandais juste comment vous avez pu en arriver à ce sujet.\nI wonder if you would mind lending me your car for a couple of days.\tJe me demande si ça vous ennuierait de me prêter votre voiture pour quelques jours.\nI'd like to ask you a few questions about what you did last weekend.\tJ'aimerais te poser quelques questions à propos de ce que tu as fait le week-end dernier.\nI'd like to ask you a few questions about what you did last weekend.\tJ'aimerais te poser quelques questions à propos de ce que tu as fait le week-end passé.\nI'd like to ask you a few questions about what you did last weekend.\tJ'aimerais te poser quelques questions au sujet de ce que tu as fait le week-end dernier.\nI'd like to ask you a few questions about what you did last weekend.\tJ'aimerais te poser quelques questions au sujet de ce que tu as fait le week-end passé.\nI'd like to ask you a few questions about what you did last weekend.\tJ'aimerais vous poser quelques questions au sujet de ce que vous avez fait le week-end dernier.\nI'd like to ask you a few questions about what you did last weekend.\tJ'aimerais vous poser quelques questions au sujet de ce que vous avez fait le week-end passé.\nI'd like to ask you a few questions about what you did last weekend.\tJ'aimerais vous poser quelques questions à propos de ce que vous avez fait le week-end dernier.\nI'd like to ask you a few questions about what you did last weekend.\tJ'aimerais vous poser quelques questions à propos de ce que vous avez fait le week-end passé.\nI'd like to think about it a little longer before I make a decision.\tJ'aimerais y réfléchir un peu plus longtemps avant de prendre une décision.\nI've been so busy this past week that I've hardly had time to relax.\tJ'ai été tellement occupé la semaine dernière que j'ai à peine eu le temps de me détendre.\nIf I remember correctly, that's the song Tom sang at Mary's wedding.\tSi je me souviens bien, c'est la chanson que Tom a chantée au mariage de Mary.\nIf he sends me any letters, I just tear them up and throw them away.\tQuelque lettre qu'il m'envoie, je la déchire et la jette, rien de plus.\nIf there's anything I can do for you, don't hesitate to let me know.\tSi je peux faire quelque chose pour toi, n'hésite pas à me le faire savoir.\nIf two men always have the same opinion, one of them is unnecessary.\tSi deux hommes ont toujours la même opinion, l'un d'eux est inutile.\nIf you tell people what they want to hear, they'll do what you want.\tSi tu dis aux gens ce qu'ils veulent entendre, ils feront ce que tu veux.\nIn the light of what you told us, I think we should revise our plan.\tÀ la lumière de ce que tu nous as dit, je pense que nous devrions revoir notre plan.\nIn the winter, I like to sled down the small hill close to our home.\tEn hiver, j'aime descendre en luge le monticule proche de notre maison.\nInstead of fixing the problem, the company fired the whistle-blower.\tAu lieu de régler le problème, l'entreprise a viré le lanceur d'alerte.\nIt is almost impossible to learn a foreign language in a short time.\tC'est presque impossible d'apprendre une langue étrangère en peu de temps.\nIt is difficult to get him to do anything on the spur of the moment.\tIl est difficile de lui faire faire quoi que ce soit sous l'impulsion du moment.\nIt is important to understand that each country has its own culture.\tIl est important de comprendre que chaque pays a sa propre culture.\nIt was getting dark, and, what made matters worse, it began to rain.\tIl commençait à faire sombre et, pour empirer les choses, il s'est mis à pleuvoir.\nIt would be better if you didn't drink so much coffee late at night.\tCe serait mieux si tu ne buvais pas autant de café tard dans la nuit.\nIt's a good idea, to be sure, but it's hard to put it into practice.\tC'est assurément une bonne idée, mais c'est difficile à mettre en pratique.\nJudging from the look of the sky, it will clear up in the afternoon.\tAu vu du ciel, le temps se dégagera dans l'après-midi.\nKeeping a diary also gives us a chance to reflect on our daily life.\tTenir un journal intime nous donne aussi une chance de réfléchir sur notre vie quotidienne.\nMary invested in the stock because the financial advisor fooled her.\tMarie a investi dans ces actions parce que le conseiller financier l'a bernée.\nMore than 70 percent of the inhabitants are in favor of the program.\tPlus de 70% des habitants adhèrent au programme.\nMy father works hard because he wants to give us everything we need.\tMon père travaille dur, parce qu'il veut nous donner tout ce dont nous avons besoin.\nNo matter how hard I try, I will never be able to catch up with him.\tJ'aurai beau essayer, je ne serai jamais capable de le rattraper.\nNot doing one's work properly may be worse than not doing it at all.\tNe pas faire correctement son travail peut être pire que de ne pas le faire du tout.\nOn behalf of my classmates, let me say a few words of thanks to you.\tDe la part de mes camarades de classe, laissez-moi vous dire quelques mots de remerciement.\nOur ancestors developed massive jaws as a result of constant combat.\tNos ancêtres ont développé des mâchoires imposantes à force de combats constants.\nOur task has been easy so far, but it will be difficult from now on.\tNotre tâche a été aisée jusqu'ici, mais à partir de maintenant cela va être difficile.\nPeople have lost the ability to disagree without being disagreeable.\tLes gens ont perdu la capacité à être en désaccord sans être désagréables.\nPrepositions generally cause problems for foreign language students.\tLes prépositions posent généralement des problèmes aux étudiants en langues étrangères.\nRefer to the instruction manual if you need to fix the refrigerator.\tReportez-vous au manuel d'instructions si vous avez besoin de réparer le réfrigérateur.\nShe bought him a camera that was too big to fit in his shirt pocket.\tElle lui a acheté un appareil photo qui est trop gros pour tenir dans sa poche de chemise.\nShe decided to marry him even though her parents didn't want her to.\tElle décida de l'épouser même si ses parents ne le voulaient pas.\nShe made it clear that she couldn't make it in time for the meeting.\tElle fit clairement savoir qu'elle ne pourrait pas être à temps à la réunion.\nShe made it clear that she couldn't make it in time for the meeting.\tElle a fait clairement savoir qu'elle ne pourrait pas être à temps à la réunion.\nSince I will see him tomorrow, I can give him a message if you want.\tComme je le vois demain, je peux lui transmettre un message, si vous voulez.\nSince he was tired, he was sitting on the sofa with his eyes closed.\tComme il était fatigué, il était assis les yeux fermés dans le canapé.\nSurround yourself only with people who are going to lift you higher.\tNe vous entourez que de gens qui vont vous élever plus haut.\nSurround yourself only with people who are going to lift you higher.\tNe t'entoure que de gens qui vont t'élever plus haut.\nThank you for the time you spent with me during my visit to Atlanta.\tMerci pour le temps que vous avez passé avec moi durant mon séjour à Atlanta.\nThe fire that broke out last night was judged to be caused by arson.\tLe feu qui s'est déclenché la nuit dernière a été jugé être un incendie volontaire.\nThe first time I held my girlfriend's hand was in the haunted house.\tLa première fois que j'ai pris la main de ma copine c'était dans la maison hantée.\nThe last time we ate dinner together, you would only eat vegetables.\tLa dernière fois que nous avons déjeuné ensemble, tu ne voulais manger que des légumes.\nThe last time we ate dinner together, you would only eat vegetables.\tLa dernière fois que nous avons dîné ensemble, tu ne voulais manger que des légumes.\nThe last time we ate dinner together, you would only eat vegetables.\tLa dernière fois que nous avons déjeuné ensemble, vous ne vouliez manger que des légumes.\nThe last time we ate dinner together, you would only eat vegetables.\tLa dernière fois que nous avons dîné ensemble, vous ne vouliez manger que des légumes.\nThe military engaged the enemy five kilometers south of the capital.\tLes militaires ont engagé le combat avec l'ennemi, cinq kilomètres au sud de la capitale.\nThe neighbors will call the police if you don't turn the music down.\tLes voisins appelleront la police si vous ne baissez pas la musique.\nThe only difference between a bad cook and a poisoner is the intent.\tLa seule différence entre une mauvaise cuisinière et une empoisonneuse, c'est l'intention.\nThe policy of the government was criticized by the opposition party.\tLa politique gouvernementale a été critiquée par le parti d'opposition.\nThe sky grew darker and darker, and the wind blew harder and harder.\tLe ciel devenait de plus en plus sombre et le vent de plus en plus violent.\nThe talk was peppered with scientific jargon that no one understood.\tLe discours était parsemé de jargon scientifique que personne n'a compris.\nThere is an urgent need for people to help clean up the environment.\tIl faut que les gens nettoient l'environnement de manière urgente.\nThere were many things that needed to be done before we could leave.\tDe nombreuses choses étaient à faire avant que nous puissions partir.\nThere were many things that we needed to do to prepare for our trip.\tIl y avait beaucoup de choses que nous devions faire pour préparer notre voyage.\nTo the best of my knowledge, this is the only translation available.\tPour autant que je sache, c'est l'unique traduction.\nTom can't tell the difference between expensive wine and cheap wine.\tTom est incapable de faire la différence entre un vin de qualité et de la piquette.\nTom didn't think Mary would enjoy his party so he didn't invite her.\tTom pensait que Marie n'apprécierait pas sa fête, donc il ne l'invita pas.\nTom doesn't understand Mary's reluctance to go out with his brother.\tTom ne comprenait pas la réticence de Mary à sortir avec son frère.\nTom wants Mary to know he's not planning on asking her to marry him.\tTom veut que Mary sache qu'il n'a pas l'intention de la demander en mariage.\nWe can't be the only two people who forgot to pay our bills on time.\tNous ne pouvons être les deux seules personnes à avoir oublié de payer leurs factures à temps.\nWe can't be the only two people who forgot to pay our bills on time.\tNous ne pouvons être les deux seules personnes qui aient oublié de payer leurs factures à temps.\nWe did our best to help him, but he didn't so much as say thank you.\tNous fîmes de notre mieux pour l'aider, mais il ne dit même pas merci.\nWe waited up for him until two o'clock and then finally went to bed.\tNous l'avons attendu jusqu'à deux heures du matin et sommes finalement allés nous coucher.\nWe're going to keep doing this until someone tells us that we can't.\tNous allons continuer à le faire jusqu'à ce que quelqu'un nous dise que nous ne le pouvons pas.\nWhen I don't have anything to say, I am not embarrassed to be quiet.\tLorsque je n'ai rien à dire, ça ne me gêne pas de rester silencieux.\nWhen I got out of jail, the first thing I bought was an economy car.\tQuand je suis sorti de prison, la première chose que j'ai achetée fut une voiture économique.\nWhen you love someone, you'll do anything to make that person happy.\tQuand tu aimes une personne, tu feras tout ton possible pour la rendre heureuse.\nWho's the gorgeous girl I saw wandering around in the mall with you?\tQui est la magnifique nana que j'ai vue déambuler avec toi dans la galerie commerciale ?\nYou don't have to make up an excuse if you don't want to go with us.\tTu ne dois pas trouver d'excuse si tu ne veux pas venir avec nous.\nYou have only to stand in front of the door. It will open by itself.\tTu n'as qu'à te mettre devant la porte. Elle s'ouvrira toute seule.\nYou should take your car to Tom's Garage. He does a pretty good job.\tTu devrais emmener ta voiture à Tom's Garage. Il fait un plutôt bon travail.\nYou should take your car to Tom's Garage. He does a pretty good job.\tVous devriez emmener votre voiture au garage de Tom. Il fait un plutôt bon travail.\nYou're the only person I know who can probably answer this question.\tVous êtes la seule personne qui sait probablement répondre à cette question.\n\"Do you know when they will arrive?\" \"At eleven-thirty this evening.\"\t\"Savez-vous quand ils vont arriver ?\" \"À onze heures et demie ce soir.\"\n\"Give me something to write with.\" \"Will this do?\" \"Yes, it will do.\"\t« Donne-moi quelque chose pour écrire. » « Avec ça, ça ira ? » « Oui, ça ira. »\nA lot of young people your age are already working and have a family.\tBeaucoup de jeunes de ton âge travaillent déjà et ont fondé une famille.\nAfter English, German is the most popular foreign language in Russia.\tAprès l'anglais, l'allemand est la langue la plus populaire en Russie.\nAfter I graduated from college, I got a job with my father's company.\tAprès que je fus diplômé de l'école, j'obtins un poste dans l'entreprise de mon père.\nAfter I graduated from college, I got a job with my father's company.\tAprès que j'ai été diplômé de l'école, j'ai obtenu un poste dans l'entreprise de mon père.\nAll of a sudden, large drops of rain began falling from the dark sky.\tTout à coup, de grosses gouttes de pluie commencèrent à tomber du ciel sombre.\nAs a writer, she does not fit into any of the traditional categories.\tComme écrivain, elle ne peut pas être classée dans les catégories habituelles.\nAs you requested, I have attached a recent passport-sized photograph.\tConformément à votre demande, j'ai joint une photo récente au format passeport.\nCould you please tell me again when the meeting is supposed to start?\tPourriez-vous me répéter quand la réunion est censée démarrer ?\nCould you please tell me again when the meeting is supposed to start?\tPourrais-tu me redire quand la réunion est censée démarrer ?\nElectronic components can be cleaned by using pure isopropyl alcohol.\tLes composants électroniques peuvent être nettoyés en utilisant de l'isopropanol pur.\nEven if it takes me ten years, I am determined to accomplish the job.\tMême si ça me prend dix ans, je suis déterminé à accomplir ce boulot.\nEven if it takes me ten years, I am determined to accomplish the job.\tMême si ça me prend dix ans, je suis déterminée à accomplir ce boulot.\nEven if the sun were to rise in the west, I would not change my mind.\tMême si le soleil se levait à l'ouest, je ne changerais pas d'avis.\nEven though Tom used to be my best friend, I'm beginning to hate him.\tQuand bien même Tom était mon meilleur ami, je commence à le haïr.\nEverybody talks about the weather, but nobody does anything about it.\tTout le monde parle du temps, mais personne ne fait rien pour ça.\nFinding it hard to make ends meet on his income, she started to work.\tTrouvant difficile de joindre les deux bouts avec son revenu, elle commença à travailler.\nForeign direct investments in China amounted to $3 billion last year.\tLes investissements directs en Chine s'élevaient à 3 milliards de dollars l'année dernière.\nHaving a full time job and raising two kids at the same time is hard.\tAvoir un emploi à plein temps et élever deux enfants en même temps est difficile.\nHe doesn't seem to be aware of the conflict between my father and me.\tIl n'a pas l'air d'être au courant du conflit entre mon père et moi.\nHe said his father was an architect and that he wanted to be one too.\tIl dit que son père était architecte et qu'il veut l'être aussi.\nHe told me about the accident as if he had seen it with his own eyes.\tIl me raconta l'accident comme s'il l'avait vu de ses propres yeux.\nHe walked back and forth on the platform while waiting for the train.\tIl faisait les cent pas sur le quai en attendant le train.\nHe's shy, and never speaks unless spoken to. You have to talk to him.\tIl est timide. Il ne parle jamais sauf si on lui parle. Tu dois lui parler.\nHis intelligence and experience enabled him to deal with the trouble.\tSon intelligence et son expérience lui permirent de régler le souci.\nHummer limousines are the ultimate symbol of conspicuous consumption.\tLes limousines Hummer sont l'archétype de la consommation voyante.\nI came to Tokyo three years ago and have been living here ever since.\tJe suis venu à Tokyo il y a trois ans et ai vécu ici depuis.\nI can't believe that you really sold that junk for such a high price.\tJe n'arrive pas à croire que tu as vraiment vendu cette daube à un tel prix.\nI can't believe that you really sold that junk for such a high price.\tJe n'arrive pas à croire que vous avez vraiment vendu ce bazar à un tel prix.\nI can't think of any other way of getting him to accept our proposal.\tJe ne vois pas d'autres moyens de lui faire accepter notre proposition.\nI can't wait for spring to come so we can sit under the cherry trees.\tJ'ai hâte que le printemps arrive afin que l'on puisse s'asseoir sous les cerisiers.\nI cannot go to the party, but thank you for inviting me all the same.\tJe ne peux pas assister à la fête, mais merci en tout cas de m'avoir invité.\nI cannot look at this photo without being reminded of my school days.\tJe ne peux pas regarder cette photo sans que cela me rappelle l'époque où j'allais à l'école.\nI chopped the onions and put them in a casserole with butter and oil.\tJ'ai haché les oignons et les ai mis dans une casserole avec du beurre et de l'huile.\nI don't know what this word means. I'll look it up in the dictionary.\tJe ne sais pas ce que ce mot signifie. Je le chercherai dans le dictionnaire.\nI had no sooner closed the door than somebody started knocking on it.\tJ'avais à peine fermé la porte que quelqu'un frappa.\nI hate myself for not having the will power to quit eating junk food.\tJe me déteste de ne pas avoir la volonté d'arrêter de manger des cochonneries.\nI have trouble falling asleep because I always have a lot on my mind.\tJ'ai des difficultés à trouver le sommeil parce que j'ai toujours beaucoup à l'esprit.\nI have trouble falling asleep because I always have a lot on my mind.\tJ'ai des difficultés à m'endormir parce que j'ai toujours beaucoup en tête.\nI know how to solve the problem, but I've been asked not to tell you.\tJe sais comment résoudre le problème mais on m'a demandé de ne pas vous le dire.\nI know how to solve the problem, but I've been asked not to tell you.\tJe sais comment résoudre le problème mais on m'a demandé de ne pas te le dire.\nI never dreamed of there being such a quiet place in this noisy city.\tJe n'aurais jamais pensé qu'il y ait là un tel endroit tranquille dans cette ville bruyante.\nI played an interesting game of chess against the computer last week.\tJ'ai joué une intéressante partie d'échecs contre l'ordinateur, la semaine dernière.\nI put an advertisement in the newspaper saying my house was for sale.\tJ'ai publié une annonce dans le journal pour dire que ma maison était en vente.\nI remember the event as clearly as if it had happened just yesterday.\tJe me rappelle l'événement aussi clairement que s'il avait eu lieu hier.\nI suggest that you go and see a doctor about this as soon as you can.\tJe suggère que vous alliez voir un médecin à ce sujet dès que vous le pouvez.\nI suggest that you go and see a doctor about this as soon as you can.\tJe suggère que tu ailles voir un médecin à ce sujet dès que tu le peux.\nI think it's dangerous to climb a mountain on a day when it's stormy.\tJe crois que c'est dangereux d'escalader une montagne un jour de tempête.\nI want to apologize for the way I talked to you the last time we met.\tJe veux présenter mes excuses pour la manière dont je vous ai parlé la dernière fois que nous nous sommes rencontrés.\nI want to apologize for the way I talked to you the last time we met.\tJe veux présenter mes excuses pour la manière dont je t'ai parlé la dernière fois que nous nous sommes rencontrés.\nI want to apologize for the way I talked to you the last time we met.\tJe veux présenter mes excuses pour la manière dont je vous ai parlé la dernière fois que nous nous sommes rencontrées.\nI want to apologize for the way I talked to you the last time we met.\tJe veux présenter mes excuses pour la manière dont je t'ai parlé la dernière fois que nous nous sommes rencontrées.\nI want to believe there's still a chance for us to be happy together.\tJe veux croire qu'il y a encore une chance, pour nous, d'être heureux ensemble.\nI want to take advantage of the opportunity to speak to the governor.\tJe veux mettre à profit l'occasion de parler au gouverneur.\nI wonder if you could tell me if there is a post office in this area.\tJe me demande si vous pourriez me dire s'il y a une poste dans ce quartier.\nI wonder whether a man could live with only two hours' sleep a night.\tJe me demande si un être humain peut s'en sortir avec seulement deux heures de sommeil par nuit.\nI'll lend you my textbook if you promise not to write anything in it.\tJe te prêterai mon manuel si tu promets de ne rien y écrire.\nI'll lend you my textbook if you promise not to write anything in it.\tJe te prêterai mon manuel si tu promets de ne rien écrire dessus.\nI've already drunk half a bottle of wine while I was waiting for you.\tJ'ai déjà bu une demi-bouteille de vin en vous attendant.\nI've already drunk half a bottle of wine while I was waiting for you.\tJ'ai déjà bu une demi-bouteille de vin en t'attendant.\nIf this airplane were to be hijacked, what in the world would you do?\tSi cet avion était détourné, bon Dieu, que feriez-vous ?\nIn all probability, no language is completely free of borrowed words.\tEn toute probabilité, aucun langage n'est complètement dépourvu de mots d'emprunt.\nIntroducing foreign plants, such as palm trees can damage ecosystems.\tIntroduire des plantes étrangères, telles que les palmiers, peut endommager les écosystèmes.\nIs there any chance that you have eaten any of the contaminated food?\tY a-t-il le moindre risque que vous ayez consommé la moindre quantité de la nourriture contaminée ?\nIt is not until you have lost your health that you realize its value.\tCe n'est pas avant d'avoir perdu la santé qu'on prend conscience de sa valeur.\nIt only takes about fifteen minutes to walk to the station from here.\tCela ne prend qu'environ quinze minutes d'aller d'ici à la gare à pied.\nIt was on the morning of February the ninth that I arrived in London.\tJe suis arrivé à Londres le matin du 9 février.\nIt'll take some time until we have enough money to buy a new tractor.\tÇa prendra un peu de temps jusqu'à ce que nous ayons assez d'argent pour acheter un nouveau tracteur.\nIt's just possible that he'll eventually recover the use of his legs.\tIl est bien possible qu'il recouvre en fin de compte l'usage de ses jambes.\nJust to be on the safe side, why don't you take an umbrella with you?\tTu devrais prendre un parapluie, au cas où.\nLet's have a contest. The side to come up with the worst insult wins.\tFaisons un concours. L'équipe qui trouve la pire insulte gagne.\nMany people who hear Tom speaking French think he's a native speaker.\tBeaucoup de gens qui entendent Tom parler français pensent qu'il est un locuteur natif.\nMorality is mostly a matter of how much temptation you can withstand.\tLa moralité est principalement une question de savoir combien on peut résister à la tentation.\nMost Americans do not object to my calling them by their first names.\tLa plupart des Américains ne semblent pas avoir d'objection à ce que je les appelle par leurs prénoms.\nMost public places are simply not geared to people with disabilities.\tLa plupart des endroits publiques ne sont tout simplement pas adaptés au personnes handicapées.\nMy waist size has recently increased. I guess it's middle-age spread.\tMon tour de taille a récemment augmenté. J'imagine que c'est l'âge.\nNobody's going to shed any tears if that old building gets torn down.\tPersonne ne va verser de larmes si ce vieux bâtiment est détruit.\nOf course you can trust me. Have I ever given you a bum steer before?\tBien sûr que vous pouvez vous fier à moi. Vous ai-je déjà fourni un mauvais tuyau ?\nOf course you can trust me. Have I ever given you a bum steer before?\tBien sûr que tu peux te fier à moi. T'ai-je déjà fourni un mauvais tuyau ?\nOf course you can trust me. Have I ever given you a bum steer before?\tBien sûr que vous pouvez vous fier à moi. Vous ai-je déjà refilé un mauvais tuyau ?\nOf course you can trust me. Have I ever given you a bum steer before?\tBien sûr que tu peux te fier à moi. T'ai-je déjà refilé un mauvais tuyau ?\nOne thing I've always wanted to do is get a decent job close to home.\tUne chose dont j'ai toujours eu envie, c'est d'obtenir un travail correct près de chez moi.\nPortugal has decriminalized the possession of drugs for personal use.\tLe Portugal a dépénalisé la possession de drogues à usage personnel.\nPossible side effects include blurred vision and shortness of breath.\tLes effets secondaires possibles incluent des troubles de la vision et un souffle court.\nRecently, there have been signs that the economy is picking up steam.\tIl y a eu récemment des signaux indiquant que l'économie prend de la vigueur.\nRecently, there have been signs that the economy is picking up steam.\tDes signaux récents indiquent que l'économie prend de la vigueur.\nShe advised him not to drive too fast, but he wouldn't listen to her.\tElle lui recommanda de ne pas conduire trop vite mais il refusa de l'écouter.\nShe advised him not to drive too fast, but he wouldn't listen to her.\tElle lui a recommandé de ne pas conduire trop vite mais il a refusé de l'écouter.\nShe claims that she knows nothing about him, but I don't believe her.\tElle prétend qu'elle ne sait rien de lui mais je ne la crois pas.\nShe intended to go shopping with her mother, but her mother was busy.\tElle avait l'intention d'aller faire des emplettes avec sa mère, mais sa mère était occupée.\nShe spent most of her senior year in high school strung out on drugs.\tElle a passé la majeure partie de sa dernière année au lycée accrochée à la drogue.\nSitting down all day and looking at a computer screen is bad for you.\tÊtre assis toute la journée en regardant un écran d'ordinateur est mauvais pour la santé.\nSome flowers bloom in the spring and other flowers bloom in the fall.\tCertaines fleurs fleurissent au printemps et d'autres en automne.\nSome were under the impression that the judges had not chosen wisely.\tCertains avaient l'impression que les juges n'avaient pas choisi judicieusement.\nSomething in his face really reminded me of an old boyfriend of mine.\tQuelque chose dans son visage me rappelle vraiment un de mes anciens amoureux.\nSorry, but I have to hurry. I have no time to explain this in detail.\tDésolé mais je dois me dépêcher, je n'ai pas le temps de rentrer dans les détails.\nThe President is usually accompanied by his wife when he goes abroad.\tLe président est habituellement accompagné de sa femme quand il va à l'étranger.\nThe President is usually accompanied by his wife when he goes abroad.\tLe président est d'ordinaire accompagné de son épouse lorsque il se rend à l'étranger.\nThe buildings are small in comparison to the skyscrapers in New York.\tLes immeubles sont petits en comparaison des gratte-ciel à New-York.\nThe burglar was traced by one of the things he had left on the scene.\tLe cambrioleur fut détecté par l'une des choses qu'il avait laissée sur place.\nThe company gave him a gold watch in acknowledgement of his services.\tL'entreprise lui donna une montre en or en reconnaissance de ses services.\nThe consequence of a wrong translation can sometimes be catastrophic.\tLa conséquence d'une mauvaise traduction peut parfois être catastrophique.\nThe constant border wars between England and Scotland came to an end.\tLes incessantes guerres de frontières entre l'Angleterre et l'Écosse prirent fin.\nThe drunken men made derogatory remarks toward the women in the club.\tL'ivrogne fit des remarques désobligeantes à l'égard des femmes du cercle.\nThe drunken men made derogatory remarks toward the women in the club.\tL'ivrogne a fait des remarques désobligeantes à l'égard des femmes du cercle.\nThe fire was so intense that the firemen couldn't get into the house.\tL'incendie était tel que les pompiers n'ont pas pu rentrer à l'intérieur de la maison.\nThe fog soon blurred out the figure of a man walking in front of him.\tLe brouillard estompa bientôt la silhouette d'un homme qui marchait devant lui.\nThe rescuers searched the surroundings in hopes of finding the child.\tLes sauveteurs ont cherché aux alentours dans l'espoir de trouver l'enfant.\nThe stock market crash forced many retirees back into the job market.\tLa chute du marché boursier a obligé de nombreux retraités à retourner sur le marché du travail.\nThere is nothing worse than doing something in a half-hearted manner.\tIl n'y a rien de pire que de faire quelque chose d'une manière nonchalante.\nThis is a difficult problem, and it is not easy for anyone to decide.\tC'est un problème difficile, et ce n'est facile pour personne de décider.\nThis nation's economy is growing by leaps and bounds in recent years.\tL'économie nationale croît à pas de géant, ces dernières années.\nTo do him justice, he did his best with his limited men and supplies.\tPour lui rendre justice, il a fait de son mieux avec des ressources et des effectifs limités.\nTom and his friends sat around the campfire and roasted marshmallows.\tTom et ses amis se sont assis autour du feu de camp et faisaient griller des guimauves.\nTom had his wisdom teeth taken out by a twenty-four year old dentist.\tTom s’est fait retirer ses dents de sagesse par un dentiste de vingt-quatre ans.\nTom is fishing for trout about a hundred meters downstream from here.\tTom pêche à la truite environ cent mètres en aval d'ici.\nTom is the only man in the world that is likely to break that record.\tTom est le seul homme au monde qui est susceptible de battre ce record.\nTyrannical governments frequently imprison their political opponents.\tLes gouvernements tyranniques incarcèrent fréquemment leurs opposants politiques.\nVery fat people waddle when they walk, though few of them realize it.\tLes gens très gros se dandinent quand ils marchent, bien que peu d'entre eux en prennent conscience.\nWe can't just cut people's salaries without giving them some warning.\tNous ne pouvons pas simplement tailler dans les salaires des gens sans les avertir.\nWe have to consider the problem in the light of cultural differences.\tNous devons considérer le problème à la lumière des différences culturelles.\nWhat do you think you're doing letting the loyalists into the castle?\tVous pensiez à quoi en laissant les loyalistes dans le château ?\nWhen you're eighteen years old, you're an adult in the United States.\tQuand on a dix-huit ans, on est majeur aux États-Unis d'Amérique.\nWould you mind giving me a little help with some problems I'm having?\tCela vous dérangerait-il de me donner un peu d'aide avec certains de mes problèmes?\nWould you mind giving me a little help with some problems I'm having?\tCela te dérangerait-il de me fournir un peu d'aide pour certains problèmes que je rencontre ?\nYou can be sure that the money you give them will be put to good use.\tVous pouvez être certain que l'argent que vous verserez sera utilisé à bon escient.\nYou must kneel at my feet, kiss my hand and swear that I am an angel.\tTu dois t'agenouiller à mes pieds, me baiser la main et jurer que je suis un ange.\nYou must kneel at my feet, kiss my hand and swear that I am an angel.\tVous devez vous agenouiller à mes pieds, me baiser la main et jurer que je suis un ange.\n\"Are scientists close to cloning a human being?\" \"Not by a long shot.\"\t«les scientifiques sont-ils sur le point de répliquer un être humain ?» «Loin de là.»\n\"Are scientists close to cloning a human being?\" \"Not by a long shot.\"\t«Les scientifiques sont-ils sur le point de répliquer un être humain ?» «Loin s'en faut.»\n\"I've only had two boyfriends.\" \"Oh, I have two boyfriends right now.\"\t« Je n'ai eu que deux petits copains. » « Oh, j'en ai deux en ce moment. »\nAccording to the weather forecast, the typhoon is approaching Okinawa.\tSelon la météo, le typhon s'approche d'Okinawa.\nAdditional imports of American beef are planned to meet rising demand.\tIl est prévu d'augmenter l'importation de bœuf américain pour satisfaire la demande croissante.\nAfter a bit of googling, I suspect that what you said may not be true.\tAprès quelques recherches sur Google, je suspecte que ce que vous dites n'est peut-être pas vrai.\nAfter her graduation from college, she went over to the United States.\tAprès avoir été diplômée de l'Université, elle est partie pour les États-Unis.\nAfter we finish digging the trench, planting the flowers will be easy.\tAprès que nous aurons fini de creuser la tranchée, planter les fleurs sera facile.\nAll things taken into consideration, my father's life was a happy one.\tTout bien considéré, mon père a eu une vie heureuse.\nAll you have to do is sit down here and answer the doctor's questions.\tTout ce que tu as à faire c'est t'asseoir là et répondre aux questions du médecin.\nAmong the five of us, she, without a doubt, speaks the most languages.\tDe nous cinq, c'est sans aucun doute elle qui parle le plus de langues.\nCompany attorneys are working around the clock to complete the merger.\tLes avocats de la société travaillent d'arrache-pied pour finaliser la fusion.\nCould you explain to me why you think these rules don't apply anymore?\tPeut-tu m'expliquer pourquoi pense-tu que ces lois ne sont désormais plus applicables ?\nCould you remind me to call my academic advisor at 9:00 p.m. tomorrow?\tPourriez-vous me rappeler de téléphoner à mon conseiller académique demain à 21 heures ?\nDo you think it's possible for me to ever sound like a native speaker?\tPensez-vous qu'il me soit jamais possible d'être pris pour un locuteur natif ?\nDuring warm weather, sweating helps man regulate his body temperature.\tPar temps chaud, la sueur permet à l'homme de réguler la température de son corps.\nEthnic minorities struggle against prejudice, poverty, and oppression.\tLes minorités ethniques luttent contre les préjugés, la pauvreté et l'oppression.\nEverything was exciting to me when I visited Spain for the first time.\tTout m'était passionnant lorsque j'ai visité l'Espagne pour la première fois.\nExcuse me for interrupting you, but would you mind opening the window?\tPardonnez-moi de vous interrompre, mais pourriez-vous ouvrir la fenêtre.\nFather took his place at the head of the table and began to say grace.\tPère pris place au bout de la table et entama le bénédicité.\nGo down this road until you get to a traffic light and then turn left.\tDescendez le long de cette route jusqu'au feu rouge, puis tournez à gauche.\nHad he known what was about to happen, he would have changed his plan.\tS'il avait su ce qui était sur le point de se passer, il aurait modifié son plan.\nHe had heard wonderful stories about cities of gold with silver trees.\tIl avait entendu des histoires merveilleuses de villes d'or et d'arbres d'argent.\nHe is too busy dreaming dreams to plan what he will do in his old age.\tIl est trop occupé à rêvasser pour projeter ce qu'il fera lorsqu'il sera vieux.\nHe makes most, if not all, of the important decisions for his company.\tIl prend la plupart des décisions importantes, sinon toutes, pour sa société.\nHe said that he was busy then, but that he would be free the next day.\tIl disait alors qu'il était occupé, mais qu'il serait libre le jour suivant.\nHe wondered how many times the sun would rise before his salary would.\tIl se demanda combien de fois le soleil se lèverait avant que son salaire ne s'élève.\nHow much time did you spend doing research before you started writing?\tCombien de temps avez-vous consacré à effectuer des recherches avant de commencer à écrire ?\nHow much time did you spend doing research before you started writing?\tCombien de temps as-tu consacré à effectuer des recherches avant de commencer à écrire ?\nI am going in the same direction. Come with me. I will take you there.\tJe vais dans la même direction. Viens avec moi. Je t'y emmenerai.\nI can't stop you from revealing my secrets. However, I beg you not to.\tJe ne peux pas t'empêcher de révéler mes secrets. Cependant, je te demande de ne pas les faire.\nI cannot help feeling that the attempt has turned out to be a failure.\tJe ne peux pas m'empêcher de penser que cette tentative s'est révélée être un échec.\nI don't want to spend any more time than necessary cleaning the house.\tJe ne veux pas passer davantage de temps que nécessaire à nettoyer la maison.\nI finally have enough money to buy the kind of car I've always wanted.\tJ'ai enfin les moyens nécessaires pour acheter le genre de voiture que j'ai toujours voulu.\nI had a part-time job as a hotel maid, but I didn't like it very much.\tJ'avais un emploi à temps partiel comme femme de chambre dans un hôtel, mais je n'aimais pas beaucoup ça.\nI have a new boyfriend, but my ex-boyfriend doesn't know about it yet.\tJ'ai un nouveau petit ami mais mon ex ne le sait pas encore.\nI have all these apples to carry, not to mention this bag of potatoes.\tJ'ai toutes ces pommes à porter, sans compter ce sac de pommes de terre.\nI have always fed my dog the dog food that comes in the big green bag.\tJ'ai toujours donné à manger à mon chien la nourriture canine qui se présente dans le grand sac vert.\nI hurried to the station only to find that the train had already left.\tJe me précipitai à la gare pour constater que le train était déjà parti.\nI like the Terminator films because the special effects are fantastic.\tJ'aime les films de Terminator parce que les effets spéciaux sont fantastiques.\nI suggest that we hold off on making a decision until all bids are in.\tJe propose de reporter la décision jusqu'à ce que soient reçues toutes les propositions.\nI want to do some bass fishing, but I don't know what to use for bait.\tJe veux aller pêcher la perche mais je ne sais quoi employer comme appât.\nI want to do some bass fishing, but I don't know what to use for bait.\tJe veux aller pêcher la perche mais je ne sais qu'employer comme appât.\nI want to go back to doing what I was doing before you interrupted me.\tJe veux me remettre à faire ce que je faisais avant que tu m'interrompes.\nI want to go back to doing what I was doing before you interrupted me.\tJe veux me remettre à faire ce que je faisais avant que vous m'interrompiez.\nI want to work as a volunteer to make amends for everything I've done.\tJe veux faire du volontariat pour expier tout ce que j'ai fait.\nI will have finished reading this novel by the time you come tomorrow.\tJ'aurai fini de lire ce roman au moment où tu viendras demain.\nI'd like to explain everything, but I don't think we have enough time.\tJ'aimerais tout expliquer mais je ne pense pas que nous ayons suffisamment de temps.\nI'd like to explain everything, but I don't think we have enough time.\tJ'aimerais tout expliquer mais je ne pense pas que nous disposions de suffisamment de temps.\nI'm usually pretty good with faces, but I didn't recognize him at all.\tJe suis pourtant physionomiste, d'ordinaire, mais je ne l'ai pas du tout reconnu.\nI've something interesting to tell you that you might find surprising.\tJ'ai quelque chose d'intéressant à te conter que tu pourrais trouver surprenant.\nI've something interesting to tell you that you might find surprising.\tJ'ai quelque chose d'intéressant à vous conter que vous pourriez trouver surprenant.\nIf the spaghetti sticks when you throw it against the wall, it's done.\tSi le spaghetti colle lorsque vous le jetez contre le mur, c'est cuit.\nIf you could live anywhere in the world, where would you want to live?\tSi tu pouvais vivre n'importe où dans le monde, où voudrais-tu vivre ?\nIf you travel by Shinkansen, it doesn't seem far from Nagoya to Tokyo.\tQuand on voyage en Shinkansen, Nagoya ne parait pas très éloignée de Tokyo.\nIn judging his work, we must take his lack of experience into account.\tEn jugeant son travail, nous devons prendre en compte son manque d'expérience.\nIn woodworking, we classify wood as hardwood, softwood or exotic wood.\tEn ébénisterie nous classons les bois en dur, tendre, et exotique.\nIndeed you know a lot of things, but you're not good at teaching them.\tVous connaissez en effet beaucoup de choses, mais vous n'êtes pas apte à les enseigner.\nIntroducing democratic ideas into that country will be a slow process.\tIntroduire des idées démocratiques dans ce pays sera un long processus.\nIt was during the ice age that the saber-toothed tiger became extinct.\tC'est au cours de la période glaciaire que le tigre à dents de sabre s'est éteint.\nJapan has undergone a drastic change as a result of industrialization.\tL'industrialisation a fait subir au Japon un changement radical.\nLaser printers are generally cheaper to maintain than inkjet printers.\tLes imprimantes laser sont généralement meilleur marché à entretenir que les imprimantes à jet d'encre.\nMy mother visits the dentist's every other day to get her teeth fixed.\tMa mère rend visite au dentiste tous les deux jours pour faire réparer ses dents.\nOn the same day, Apollo 11 succeeded in landing on the moon's surface.\tLe même jour, Apollo 11 se posait avec succès sur la surface de la Lune.\nOne king after another succeeded to the throne during those few years.\tIls se sont succédé un roi après l'autre sur le trône pendant ces quelques années.\nPeople were lined up around the block waiting for the theater to open.\tLes gens faisaient la file autour du pâté de maisons en attendant que le théâtre ouvre.\nPeople were lined up around the block waiting for the theater to open.\tLes gens faisaient la queue autour du pâté de maisons en attendant que le théâtre ouvre.\nPreventive measures are much more effective than the actual treatment.\tLes mesures préventives sont beaucoup plus efficaces que le traitement lui-même.\nSaying you can't do the job because you're too busy is just a cop out.\tDire que tu ne peux pas faire le travail parce que tu es trop occupé est une excuse bidon.\nSaying you can't do the job because you're too busy is just a cop out.\tDire que tu ne peux pas faire le travail parce que tu es trop occupée est une excuse bidon.\nSaying you can't do the job because you're too busy is just a cop out.\tDire que vous ne pouvez pas faire le travail parce que vous êtes trop occupée est une excuse bidon.\nSaying you can't do the job because you're too busy is just a cop out.\tDire que vous ne pouvez pas faire le travail parce que vous êtes trop occupées est une excuse bidon.\nSaying you can't do the job because you're too busy is just a cop out.\tDire que vous ne pouvez pas faire le travail parce que vous êtes trop occupés est une excuse bidon.\nSaying you can't do the job because you're too busy is just a cop out.\tDire que vous ne pouvez pas faire le travail parce que vous êtes trop occupé est une excuse bidon.\nSeeing that it is 8 o'clock, I think you should leave for school soon.\tConstatant qu'il est déjà 8 heures, je pense que tu devrais partir bientôt pour l'école.\nShe added, as an afterthought, that she was going to do some shopping.\tElle ajouta, après réflexion, qu'elle allait faire des courses.\nShe always speaks to him in a loud voice because he's hard of hearing.\tElle s'adresse toujours à lui d'une voix forte parce qu'il est dur d'oreille.\nShe cut the cake into six pieces and gave one to each of the children.\tElle partagea le gâteau en six morceaux et en donna un à chaque enfant.\nShe handed him his jacket then opened the door and asked him to leave.\tElle lui tendit sa veste puis ouvrit la porte et lui demanda de partir.\nShe handed him his jacket then opened the door and asked him to leave.\tElle lui a tendu sa veste puis a ouvert la porte et lui a demandé de partir.\nShe is saving her money with a view to taking a trip around the world.\tElle épargne son argent dans l'optique de faire un voyage autour du monde.\nShe persuaded him to do it even though she knew it wasn't a good idea.\tElle l'a convaincu de le faire même si elle savait que ce n'était pas une bonne idée.\nShe persuaded him to do it even though she knew it wasn't a good idea.\tElle le convainquit de le faire, bien qu'elle sût que ce n'était pas une bonne idée.\nSome people think that there are way too many lawyers in this country.\tCertaines personnes pensent qu'il y a bien trop d'avocats dans ce pays.\nSometimes I have the impression that we'll never come to an agreement.\tJ'ai parfois l'impression que nous ne parviendrons jamais à un accord.\nThe bull is stronger than the bullfighter, but he almost always loses.\tLe taureau est plus fort que le toréador, mais il perd quasiment à chaque fois.\nThe customers were made to wait outside in the rain for several hours.\tOn a fait attendre les clients dehors sous la pluie pendant de nombreuses heures.\nThe girl in the picture is wearing a crown not of gold but of flowers.\tLa fille sur cette image porte une couronne non pas d'or mais de fleurs.\nThe population of Germany is less than half that of the United States.\tLa population de l'Allemagne fait moins de la moitié de celle des États-Unis.\nThe programmer is fixing a technical problem with the computer server.\tLe programmeur est en train de réparer un problème technique avec le serveur.\nTheir marriage has been strained lately because of financial problems.\tLeur mariage a récemment souffert à cause de difficultés financières.\nThere are few sounds in this world more beautiful than a baby's laugh.\tIl y a quelques sons, en ce monde, plus mélodieux que le rire d'un bébé.\nThere are many talented people in our city, but Tom isn't one of them.\tIl y a beaucoup de gens talentueux dans notre ville, mais Tom n'en fait pas partie.\nThere is an urgent need for the local government to help the homeless.\tIl faut que le gouvernement local aide d'urgence les sans abri.\nThey say amniotic fluid has roughly the same composition as sea water.\tOn dit que le liquide amniotique est à peu près de la même composition que l'eau de mer.\nTom got time and a half when he worked beyond his usual quitting time.\tThomas obtenait une fois et demie son salaire lorsqu'il travaillait au-delà de son heure de départ habituelle.\nTom has a lot of things to do this morning before he leaves the house.\tTom a plein de choses à faire ce matin avant de quitter la maison.\nTom took the sheets off the bed and put them into the washing machine.\tTom retira les draps du lit et les mit à la machine à laver.\nWhat kind of question is that? Do you really expect me to answer that?\tQuel genre de question est-ce là ? Espérez-vous vraiment que je réponde à ça ?\nWhat's this song? I've heard it before, but I can't remember the name.\tQuel est ce morceau ? Je l'ai déjà entendu quelque part mais le titre ne me revient pas.\nWhen I take a deep breath, a pain runs down the right side of my back.\tLorsque j'inspire profondément, une douleur me lance le long du côté droit de mon dos.\nWhen I was feeding my dog, I noticed that the gate had been left open.\tEn nourrissant mon chien, je remarquai que le portail avait été laissé ouvert.\nWhen I was feeding my dog, I noticed that the gate had been left open.\tEn nourrissant mon chien, j'ai remarqué que le portail avait été laissé ouvert.\nWhile I was waiting for the streetcar, I witnessed a traffic accident.\tAlors que j'attendais le tram, j'ai assisté à un accident.\nWould you mind not talking about your surgery now - I'm trying to eat.\tEst-ce que ça te dérangerait de pas parler de ta chirurgie maintenant, j'essaie de manger.\nYou aren't likely to find that word in a dictionary that's this small.\tIl est improbable que tu trouves ce mot dans un dictionnaire aussi petit.\nYou aren't likely to find that word in a dictionary that's this small.\tIl est improbable que vous trouviez ce mot dans un dictionnaire aussi petit.\nYou should ask a physician for his advice before taking this medicine.\tTu devrais demander conseil à un pharmacien avant de prendre ce médicament.\nYou should ask a physician for his advice before taking this medicine.\tTu devrais demander conseil à un médecin avant de prendre ce médicament.\nYou shouldn't study all day long. You should go out and have some fun.\tTu ne devrais pas étudier toute la journée. Tu devrais sortir et t'amuser.\nYou're probably too young to understand what is likely to happen next.\tTu es probablement trop jeune pour comprendre ce qui va sans doute se produire ensuite.\nYou're probably too young to understand what is likely to happen next.\tVous êtes probablement trop jeune pour comprendre ce qui va sans doute se produire ensuite.\nA dachshund is a dog from Germany with a very long body and short legs.\tUn teckel est un chien originaire d'Allemagne avec un très long corps et de courtes pattes.\nA drunkard is somebody you don't like and who drinks as much as you do.\tUn alcoolique, c'est quelqu'un que vous n'aimez pas et qui boit autant que vous.\nA few months later they return to their breeding grounds in the Arctic.\tQuelques mois plus tard, ils retournent vers leurs sites de reproduction dans l'Arctique.\nA square is always a rectangle, but a rectangle is not always a square.\tUn carré est toujours un rectangle, mais généralement un rectangle n'est pas un carré.\nAfter spending three weeks looking for a job, he found a well-paid one.\tAprès avoir passé trois semaines à chercher un travail, il en trouva un bien payé.\nAlcohol consumption is higher in Eastern Europe than in Western Europe.\tLa consommation d'alcool est plus élevée en Europe de l'Est qu'en Europe de l'Ouest.\nApart from a couple of early setbacks, the project is progressing well.\tÀ part quelques déboires initiaux, le projet avance bien.\nAs soon as I can get the chance, I'll help your mother paint the fence.\tDès que je peux en avoir l'occasion, j'aiderai ta mère à peindre la clôture.\nAs soon as I can get the chance, I'll help your mother paint the fence.\tDès que je peux en avoir l'occasion, j'aiderai votre mère à peindre la clôture.\nAs soon as he graduated, he went to work in his father's general store.\tAussitôt qu'il eut obtenu son diplôme, il alla travailler dans le grand magasin de son père.\nAs you can see, I haven't done any cleaning in the house for some time.\tComme vous pouvez voir, je n'ai pas procédé au nettoyage de la maison depuis un certain temps.\nComputers are capable of doing very complicated work in a split second.\tLes ordinateurs peuvent faire un travail très compliqué en une fraction de seconde.\nDidn't you tell me yesterday that you and your boyfriend had broken up?\tNe m'as-tu pas dit hier que toi et ton petit ami aviez rompu ?\nDidn't you tell me yesterday that you and your boyfriend had broken up?\tNe m'avez-vous pas dit hier que vous et votre petit ami aviez rompu ?\nDo you feel like going out for a drive in the country over the weekend?\tAs-tu envie d'aller faire un tour dans la campagne pour le week-end ?\nDoes any other country fan the flames of patriotism as much as America?\tY a-t-il pays qui attise davantage le patriotisme que les États-Unis d'Amérique ?\nFreedom is so fundamental that its importance cannot be overemphasized.\tLa liberté est si fondamentale que nous ne saurions en exagérer l'importance.\nHaving been convicted of murder, he was sentenced to life imprisonment.\tAyant été convaincu de meurtre, il fut condamné à la prison à vie.\nHe spoke of the people and the things that he had seen during his trip.\tIl décrit les gens et les choses qu'il avait vues pendant son voyage.\nHe was egging an innocent young man on to join him in his crooked deal.\tIl incitait un jeune homme innocent à se joindre à lui dans son affaire douteuse.\nHe was making a speech, but he broke off when he heard a strange noise.\tIl faisait un discours mais il s'interrompit lorsqu'il entendit un bruit étrange.\nHe was the last person I had expected to see during my stay in America.\tIl était la dernière personne que je m'attendais à voir pendant mon séjour en Amérique.\nHouses built with wood burn more easily than houses built out of stone.\tLes maisons de bois brûlent plus facilement que les maisons de pierre.\nI always enjoy listening to classical music when I have some free time.\tJ'ai toujours aimé écouter de la musique classique quand j'ai un peu de temps libre.\nI don't think many people can say they are satisfied with their salary.\tJe ne pense pas que beaucoup de gens peuvent dire qu'ils sont contents de leur salaire.\nI finally broke down and bought the game my son had been asking me for.\tJ'ai finalement cédé et acheté le jeu que mon fils me demandait.\nI realized that even though I wanted to eat, I didn't have enough time.\tJe réalisai que même si je voulais manger, je n'en avais pas le temps.\nI realized that even though I wanted to eat, I didn't have enough time.\tJ'ai réalisé que même si je voulais manger, je n'en avais pas le temps.\nI realized that even though I wanted to eat, I didn't have enough time.\tJe réalisai que même si je voulais manger, je ne disposais pas de suffisamment de temps.\nI think it's time for me to start taking my responsibilities seriously.\tJe pense qu'il est temps que je commence à prendre mes responsabilités au sérieux.\nI was going to run over the notes one last time, but there wasn't time.\tJ'allais parcourir une dernière fois les notes mais il n'y eut pas le temps.\nI was nearly ten when my parents gave me a chemistry set for Christmas.\tJ'avais presque dix ans lorsque mes parents m'offrirent une boîte de chimiste pour Noël.\nI was nine years old when I asked my mom if Santa Claus really existed.\tJ'avais neuf ans lorsque je demandai à ma mère si le Père Noël existait vraiment.\nI wish that I could have spent more time with my father before he died.\tJ'aurais aimé pouvoir passer davantage de temps avec mon père avant qu'il ne meure.\nI wish that I could have spent more time with my father before he died.\tJ'aurais aimé pouvoir passer davantage de temps avec mon père avant qu'il ne décède.\nI won't be getting married this year. In fact, I may never get married.\tJe ne me marierai pas cette année. En fait, peut-être ne me marierai-je jamais.\nI'd be grateful if you could take a look when you've got time sometime.\tJe serais reconnaissant si tu pouvais jeter un œil lorsque tu as du temps un de ces quatre.\nI'd be grateful if you could take a look when you've got time sometime.\tJe serais reconnaissante si tu pouvais jeter un œil lorsque tu as du temps un de ces quatre.\nI'd be grateful if you could take a look when you've got time sometime.\tJe serais reconnaissant si vous pouviez jeter un œil lorsque vous avez du temps un de ces quatre.\nI'd be grateful if you could take a look when you've got time sometime.\tJe serais reconnaissante si vous pouviez jeter un œil lorsque vous avez du temps un de ces quatre.\nI'd like to know how much the meal was because I'd like to pay my half.\tJe voudrais savoir combien a coûté le repas car j'aimerais payer ma part.\nI'd like to know when you plan to give me back the scissors I lent you.\tJ'aimerais savoir quand tu as l'intention de me rendre les ciseaux que je t'ai prêtés.\nI'll do everything within my power to make sure your children are safe.\tJe ferai tout ce qui est en mon pouvoir pour faire en sorte que vos enfants soient en sécurité.\nI'm glad to hear that your sister is out of danger after her operation.\tJe me réjouis d'entendre que votre sœur est hors de danger après son opération.\nI'm glad to hear that your sister is out of danger after her operation.\tJe suis heureux d'entendre que ta sœur est hors de danger après son opération.\nI'm not sure I have enough time to clean my room before I go to school.\tJe ne suis pas sûr d'avoir le temps de ranger ma chambre avant de partir à l'école.\nI'm not sure I have enough time to clean my room before I go to school.\tJe ne suis pas sûre d'avoir le temps de ranger ma chambre avant de partir à l'école.\nI've got better things to do than to sit here listening to your gossip.\tJ'ai mieux à faire que d'être assis là à écouter tes ragots.\nIf he had stayed at home that day, he would not have met with disaster.\tFût-il resté chez lui ce jour-là, il n'aurait pas connu le désastre.\nIf there weren't so many taxis, there would be fewer traffic accidents.\tS'il n'y avait pas autant de taxis, il y aurait moins d'accidents.\nIf you agree to buy 3,000 of them, we'll give you a 3 percent discount.\tSi vous acceptez d'en commander 3000, nous vous faisons une remise de trois pour cent.\nIf you alter the plan, you must inform the team members of the changes.\tSi tu modifies le plan, tu dois informer les membres de l'équipe des changements.\nIn Massachusetts, a man is not allowed to marry his wife's grandmother.\tAu Massachusetts, les hommes n'ont pas le droit de se marier avec la grand-mère de leur épouse.\nIn Massachusetts, a man is not allowed to marry his wife's grandmother.\tDans le Massachusetts, un homme n'a pas le droit d'épouser la grand-mère de sa femme.\nInstead of cutting down on cigarettes, why don't you just give them up?\tPlutôt que de réduire la cigarette, pourquoi ne la laisses-tu pas simplement tomber ?\nInstead of cutting down on cigarettes, why don't you just give them up?\tPlutôt que de réduire la cigarette, pourquoi ne la laissez-vous pas simplement tomber ?\nIt was not until I had a baby myself that I knew what mother's love is.\tCe n'était que quand j'ai moi-même eu un bébé que j'ai su ce que l'amour maternel représente.\nIt was not until I left school that I realized the importance of study.\tCe n'est qu'après avoir quitté l'école que je me rendis compte de l'importance des études.\nIt was such a lovely day that everybody was feeling happy and cheerful.\tC'était un jour tellement délicieux que tout le monde se sentait heureux et joyeux.\nIt will make little difference whether you go there by taxi or on foot.\tÇa ne fait pas une grosse différence que tu y ailles en taxi ou à pied.\nIt's a bit cold, but it probably isn't worth putting the heater on yet.\tIl fait un peu frisquet mais ça ne vaut sans doute pas la peine de mettre déjà le chauffage en marche.\nIt's a small noisy apartment, but it's where I live and I call it home.\tC'est un petit appartement bruyant mais c'est où je vis et je l'appelle 'maison'.\nIt's my dream to have a son who'll take over my business when I retire.\tC'est mon rêve d'avoir un fils qui prendra ma suite lorsque je prendrai ma retraite.\nMany of the things Pizzaro had heard about the Inca treasure were true.\tBien des choses que Pizarre avait entendues au sujet du trésor des Incas étaient vraies.\nMany people will lose their jobs due to the slump in the auto industry.\tBeaucoup de gens perdront leur emploi à cause de la dépression dans l'industrie automobile.\nMary told Tom to go easy on the ice cream if he didn't want to get fat.\tMarie a dit à Tom d'y aller doucement sur la glace s'il ne voulait pas grossir.\nMovie theaters are losing more and more revenue due to internet piracy.\tLes cinémas perdent de plus en plus de revenu à cause du piratage Internet.\nMy father was no less affectionate and tender to me than my mother was.\tMon père n'était pas moins affectueux et tendre avec moi que ne l'était ma mère.\nMy mother tells me I have to go to bed by ten o'clock on school nights.\tMa mère me dit d'aller me coucher à dix heures quand j'ai école le lendemain.\nMy significant other works at a language school and loves it very much.\tMa moitié travaille dans une école de langues et adore vraiment ça.\nOn hearing the news of the birth of his first child, he jumped for joy.\tÀ l’annonce de la naissance de son premier enfant, il sauta de joie.\nOur parents took care of us and now it's our turn to take care of them.\tNos parents ont pris soin de nous et maintenant c'est à notre tour de prendre soin d'eux.\nShe advised him not to buy a used car, but he didn't follow her advice.\tElle lui recommanda de ne pas acheter de voiture d'occasion, mais il ne suivit pas ses conseils.\nShe advised him not to buy a used car, but he didn't follow her advice.\tElle lui a recommandé de ne pas acheter de voiture d'occasion, mais il n'a pas suivi ses conseils.\nShe advised him to go to the hospital, but he didn't follow her advice.\tElle lui a conseillé d'aller à l'hôpital, mais il n'a pas suivi son conseil.\nShe advised him to stop taking that medicine, but he felt he needed to.\tElle lui a recommandé d'arrêter de prendre ce médicament mais il avait le sentiment qu'il en avait besoin.\nShe advised him to stop taking that medicine, but he felt he needed to.\tElle lui recommanda d'arrêter de prendre ce médicament mais il avait le sentiment qu'il en avait besoin.\nShe dreamed that a prince would come on a white horse to take her away.\tElle rêva qu'un prince venait sur un cheval blanc pour l'emmener.\nShe may have argued with him, but I don't think she could have hit him.\tElle s'est peut-être disputée avec lui, mais je ne pense pas qu'elle aurait pu le frapper.\nShe spends a lot of time helping her children learn to deal with money.\tElle consacre beaucoup de temps à aider ses enfants à apprendre à gérer l'argent.\nShe's been practicing piano for a year and can play the piano somewhat.\tElle a pratiqué le piano pendant un an et peut y jouer un peu.\nSince he could not work out the problem that way, he tried another way.\tPuisqu'il n'arrivait pas à résoudre le problème de cette façon, il en essaya une autre.\nSince you have nothing to do with this matter, you don't have to worry.\tPuisque tu n'as rien à voir avec cette affaire, tu ne dois pas te faire de souci.\nSince you have nothing to do with this matter, you don't have to worry.\tÉtant donné que vous n'avez rien à voir avec cette affaire, vous ne devez pas vous faire de souci.\nThanks for all you've done to make my special day such a memorable one.\tMerci pour tout ce que vous avez fait pour rendre si mémorable cette journée spéciale pour moi.\nThe United States has almost a fourth of the world's prison population.\tLes États-unis ont déjà un quart de la population mondiale des prisons.\nThe back wheels on that tractor have ball bearings the size of my fist.\tLes roues arrière de ce tracteur ont des roulements à bille de la taille de mon poing.\nThe buildings are small in comparison with the skyscrapers in New York.\tLes immeubles sont petits comparés aux gratte-ciel de New York.\nThe fruit is similar to an orange in shape and to a pineapple in taste.\tCe fruit est similaire à une orange par sa forme et à un ananas par son goût.\nThe game would not have been called off if it hadn't rained so heavily.\tLa partie n'aurait pas été annulée s'il n'avait pas plu aussi fortement.\nThe heavy fog made it impossible for us to see anything in front of us.\tEn raison d'un épais brouillard il nous était impossible de voir devant nous.\nThe moment she heard the news of her son's death, she burst into tears.\tAu moment où elle entendit la nouvelle de la mort de son fils, elle éclata en sanglots.\nThe number of cases of whooping cough is on the rise in the last years.\tLe nombre de cas de coqueluche est en hausse ces dernières années.\nThe only thing that really matters is whether or not you did your best.\tLa seule chose qui compte vraiment est si oui ou non tu as fait de ton mieux.\nThe only thing that really matters is whether or not you did your best.\tLa seule chose qui compte vraiment est si oui ou non vous avez fait de votre mieux.\nThe police compared the fingerprints on the gun with those on the door.\tLa police compara les empreintes digitales sur l'arme avec celles sur la porte.\nThe police compared the fingerprints on the gun with those on the door.\tLa police a comparé les empreintes digitales sur l'arme avec celles sur la porte.\nThe police have been searching for the stolen goods for almost a month.\tLa police est à la recherche des biens volés depuis près d'un mois.\nThe population of China is about eight times as large as that of Japan.\tLa population de la Chine est environ huit fois plus importante que celle du Japon.\nThe rise in house prices enabled him to sell his house at a big profit.\tLa hausse des prix de l'immobilier lui a permis de vendre sa maison en faisant un gros profit.\nThe war between the two countries ended with a big loss for both sides.\tLa guerre entre les deux pays s'est terminé par de lourdes pertes dans les deux camps.\nThere is a rumor that the radicals are plotting against the government.\tIl y a une rumeur que les radicaux complotent contre le gouvernement.\nThere is an urgent need for more people to donate their time and money.\tIl faut de manière urgente que davantage de gens donnent leur temps et leur argent.\nThere was something about that house that made her stop and look again.\tQuelque chose dans cette maison l'a fait s'arrêter et l'examiner de nouveau.\nThis is what happens when you don't pay attention to what you're doing.\tC'est ce qui arrive lorsque vous ne prêtez pas attention à ce que vous faites.\nThis is what happens when you don't pay attention to what you're doing.\tC'est ce qui arrive lorsque tu ne prêtes pas attention à ce que tu fais.\nTom didn't have enough experience in dealing with that kind of problem.\tTom n'avait pas assez d'expérience dans ce genre de probleme.\nTom knew where Mary was, but he wouldn't tell the police where she was.\tTom savait où se trouvait Mary, mais il ne révéla pas à la police où elle était.\nTom knew where Mary was, but he wouldn't tell the police where she was.\tTom savait où se trouvait Mary, mais il ne le révéla pas à la police.\nTom seemed genuinely surprised when I told him that Mary had left town.\tTom semblait sincèrement surpris quand je lui ai dit que Mary avait quitté la ville.\nWe moved into this house last month, but we still haven't settled down.\tNous avons emménagé dans cette maison le mois dernier, mais nous ne sommes pas encore installés.\nWhat is important in writing a composition is to make your ideas clear.\tCe qui est important lorsqu'on rédige un essai est de mettre ses idées au clair.\nWhat makes you think Tom would ever consider going on a date with Mary?\tQu'est-ce qui te fait penser que Tom aurait pu envisager ne serait-ce qu'une seconde de sortir avec Marie ?\nWhen I got out of jail, I had no intention of committing another crime.\tEn sortant de prison, je n'avais aucune intention de commettre d'autres crimes.\nWhen I speak to a Westerner, I have to shift mental gears, so to speak.\tLorsque je parle à un occidental, je dois changer de vitesse mentale, pour ainsi dire.\nWhen I was strolling along the beach this morning, I found this bottle.\tAlors que je me promenais sur la plage ce matin, j'ai trouvé cette bouteille.\nWhen it comes to marital spats, there's usually two sides to the story.\tQuand il s'agit de prises de bec matrimoniales, il y a habituellement deux versions des faits.\nWhile they were away on vacation, their neighbors looked after the dog.\tPendant qu'ils étaient partis en vacances, leurs voisins se sont occupés du chien.\nWould you please reserve a room near the Toronto international Airport?\tS'il vous plaît, pourriez-vous me réserver une chambre près de l'aéroport international de Toronto ?\nYou can easily judge the ripeness of a banana by the color of its peel.\tOn peut facilement juger de la maturité d'une banane sur la couleur de sa peau.\nYou can easily judge the ripeness of a banana by the color of its peel.\tOn peut facilement juger de la maturité d'une banane d'après la couleur de sa peau.\nYou often need to spend more time doing something than you anticipated.\tOn a souvent besoin de plus de temps pour quelque chose qu'on ne l'avait pensé.\nYou're the only person I know that never complains about the food here.\tVous êtes la seule personne que je connaisse qui ne se plaigne jamais de la nourriture ici.\n\"Where have you been?\" \"I have been to the station to see a friend off.\"\t\"Où es-tu allé ?\" \"Je suis allé à la gare saluer le départ d'un ami.\"\nA car that you never took out of the garage would be of no value to you.\tUne voiture que vous ne sortiriez jamais du garage ne vous serait d'aucune valeur.\nA flight attendant was rescued from the wreckage of the passenger plane.\tUn membre du personnel de bord a été secouru des débris de l'avion de ligne.\nA lot of people are going to tell you that you shouldn't have done that.\tBeaucoup de gens vont vous dire que vous n'auriez pas dû faire ça.\nA lot of people are going to tell you that you shouldn't have done that.\tBeaucoup de gens vont te dire que tu n'aurais pas dû faire ça.\nA mortgage rate of six percent is becoming the current industry average.\tUn taux hypothécaire de six pour cent devient la moyenne actuelle de l'industrie.\nA pick is a long handled tool used for breaking up hard ground surfaces.\tUn pic est un outil à long manche utilisé pour entamer les surfaces de sol dur.\nAfter I got married, my Japanese got better and I could understand more.\tAprès mon mariage, mon japonais était meilleur et je le comprenais mieux.\nAre you seriously thinking about pursuing a career as a race car driver?\tPenses-tu sérieusement à poursuivre une carrière de pilote de course automobile ?\nAt Christmas he went out of his way to buy me a really nice model plane.\tÀ Noël il a fait des pieds et des mains pour m'acheter une maquette d'avion réellement jolie.\nCan you tell us about your experience in developing technical materials?\tPouvez-vous nous parler de votre expérience dans le développement de matériel technique ?\nCivilization is the limitless multiplication of unnecessary necessities.\tLa civilisation est la multiplication sans fin de besoins non nécessaires.\nData can be transmitted from the main computer to yours, and vice versa.\tLes données peuvent être transmises de l'ordinateur principal à votre propre ordinateur, et vice versa.\nEven though I ate three bowls of cereal for breakfast, I'm still hungry.\tMême après avoir mangé trois bols de céréales au petit-déjeuner, j'ai encore faim.\nEverybody in the car said they wanted to get out and stretch their legs.\tTout le monde dans la voiture déclara qu'il voulait sortir et étirer ses jambes.\nEverybody in the car said they wanted to get out and stretch their legs.\tTout le monde dans la voiture a dit qu'il voulait sortir et étirer ses jambes.\nEverything on top of the table started rattling when the earthquake hit.\tTout ce qui se trouvait sur la table commença à s'entrechoquer quand le tremblement de Terre arriva.\nFear of failure prevents many people from reaching their full potential.\tLa peur de l'échec empêche beaucoup de gens d'atteindre leur plein potentiel.\nFor someone who's supposed to be an expert, you don't seem to know much.\tPour quelqu'un qui est censé être expert, vous ne semblez pas en savoir long.\nFully booked for the night, the hotel had to turn away some late guests.\tComplet pour la nuit, l'hôtel dut refuser des arrivées tardives.\nGoing back to South Africa had stirred up some painful memories for him.\tMon retour en Afrique du Sud a fait remonter à la surface des souvenirs pénibles.\nHave you ever wanted something so much that you'd do anything to get it?\tAs-tu déjà tellement voulu quelque chose que tu étais prêt à faire n'importe quoi pour l'obtenir ?\nHave you ever wanted something so much that you'd do anything to get it?\tAvez-vous jamais tellement voulu quelque chose que vous auriez fait n'importe quoi pour l'avoir ?\nHe decided to feed his dog the rabbit that he had shot earlier that day.\tIl décida de donner à manger à son chien le lapin qu'il avait tiré plus tôt ce jour-là.\nHe had been living in Nagano for seven years when his daughter was born.\tIl vivait à Nagano depuis sept ans lorsque sa sœur est née.\nHe had been living in Nagano for seven years when his daughter was born.\tIl vivait à Nagano depuis sept ans quand sa sœur est née.\nHe ran off with his best friend's wife and hasn't been heard from since.\tIl s'est enfui avec la femme de son meilleur ami et on n'a plus entendu parler de lui depuis.\nHe was raised in the United States, but his native language is Japanese.\tIl a été élevé aux États-Unis mais le japonais est sa langue maternelle.\nHe was raised in the United States, but his native language is Japanese.\tIl a été élevé aux États-Unis d'Amérique mais le japonais est sa langue natale.\nHow much more does it cost to return the rental car to another location?\tCombien cela coûte-t-il en plus de laisser la voiture de location à un autre endroit ?\nHuman beings differ from other animals in that they can speak and laugh.\tLes êtres humains se distinguent des autres animaux en ce qu'ils peuvent parler et rire.\nI also gave him a little something as a Christmas present the other day.\tJe lui ai aussi donné un petit quelque chose comme cadeau de Noël l'autre jour.\nI arrived at the stadium at 4:00 p.m., but the game had already started.\tJe suis arrivé au stade à 16h00, mais le match avait déjà commencé.\nI can place the palms of my hands on the floor without bending my knees.\tJe peux placer la paume des mains sur le sol sans plier les genoux.\nI can put up with a house being untidy, but I don't like it to be dirty.\tJe peux supporter une maison en désordre, mais je ne l'aime pas si elle est sale.\nI can't remember the last time I've seen you so excited about something.\tJe ne parviens pas à me rappeler la dernière fois que je t'ai vu aussi excité à propos de quelque chose.\nI can't remember the last time I've seen you so excited about something.\tJe ne parviens pas à me rappeler la dernière fois que je t'ai vue aussi excitée à propos de quelque chose.\nI can't remember the last time I've seen you so excited about something.\tJe ne parviens pas à me rappeler la dernière fois que je vous ai vus aussi excités à propos de quelque chose.\nI can't remember the last time I've seen you so excited about something.\tJe ne parviens pas à me rappeler la dernière fois que je vous ai vues aussi excitées à propos de quelque chose.\nI didn't get much sleep last night so I was nodding off all day at work.\tJe n'ai pas beaucoup dormi cette nuit, du coup j'ai somnolé toute la journée.\nI don't have good luck, so I don't play pachinko or buy lottery tickets.\tJe n'ai pas de chance, je ne joue donc pas au pachinko et je n'achète pas de billets de loterie.\nI don't plan to get divorced from you unless you give me a valid reason.\tJe n'ai pas l'intention de divorcer d'avec toi à moins que tu ne me donnes une raison valable.\nI knew I shouldn't have put off doing my homework until the last minute.\tJe savais que je n'aurais pas dû remettre mes devoirs jusqu'à la dernière minute.\nI learned to drive a car and got a driver's license when I was eighteen.\tJ'ai appris à conduire quand j'avais 18 ans et j'ai eu mon permis.\nI never for a moment imagined we wouldn't get home before the storm hit.\tJe n'ai jamais imaginé que nous n'arriverions pas à la maison avant que la tempête ne frappe.\nI think it's highly unlikely that you'll be able to do that by yourself.\tJe pense qu'il est hautement improbable que tu sois en mesure de faire ça tout seul.\nI think it's highly unlikely that you'll be able to do that by yourself.\tJe pense qu'il est hautement improbable que vous soyez en mesure de faire ça tout seul.\nI think that it's completely understandable if she turns down his offer.\tJe pense qu'il est tout naturel qu'elle refuse son offre.\nI thought things would get better, but as it is, they are getting worse.\tJe pensais que les choses allaient s'améliorer mais en fait elles ne font qu'empirer.\nI was planning on going to the beach today, but then it started to rain.\tJ'avais prévu d'aller à la plage aujourd'hui, mais il a commencé à pleuvoir.\nI wish you would tell me what I ought to do in this difficult situation.\tJe souhaiterais que tu me dises ce que je me dois de faire dans cette situation difficile.\nI'd like to ask you a few questions about what happened at school today.\tJ'aimerais vous poser quelques questions au sujet de ce qui s'est produit, aujourd'hui, à l'école.\nI'd like to ask you a few questions about what happened at school today.\tJ'aimerais te poser quelques questions au sujet de ce qui s'est produit, aujourd'hui, à l'école.\nI'll keep my fingers crossed that everything will go well for you today.\tJe croise les doigts pour que tout aille bien pour toi aujourd'hui.\nI'm sure it wouldn't be too hard to find out who hacked into our system.\tJe suis sûr qu'il ne serait pas trop difficile de déterminer qui a pénétré notre système.\nIf I had gone to that restaurant last night, I would have eaten a steak.\tSi j'avais été à ce restaurant hier soir, j'aurais mangé un steak.\nIf we knew what we were doing, it wouldn't be called research, would it?\tSi l'on savait ce que l'on faisait, ça ne s'appellerait pas de la recherche, non ?\nInstead of eating vegetables, he puts them in a blender and drinks them.\tAu lieu de manger des légumes, il les passe au mixeur et les boit.\nManagement hid the true financial state of the company from the workers.\tLa direction a caché le véritable état financier de l'entreprise à ses salariés.\nMany people think that children don't spend enough time playing outside.\tBeaucoup de gens pensent que les enfants ne passent pas assez de temps à jouer à l'extérieur.\nMany people think that children don't spend enough time playing outside.\tBeaucoup de gens pensent que les enfants ne passent pas assez de temps à jouer dehors.\nMoney isn't everything, but if you have no money, you can't do anything.\tL'argent n'est pas tout, mais si tu n'as pas d'argent, tu ne peux rien faire.\nMoney isn't everything, but if you have no money, you can't do anything.\tL'argent n'est pas tout, mais si t'as pas d'argent, tu ne peux rien faire.\nMoney isn't everything, but if you have no money, you can't do anything.\tL'argent n'est pas tout, mais si vous n'avez pas d'argent, vous ne pouvez rien faire.\nNo matter how hard you try, you won't be able to finish that in one day.\tVous aurez beau essayer, vous ne serez pas capable de finir cela en un jour.\nNo matter how hard you try, you won't be able to finish that in one day.\tVous aurez beau essayer, vous ne serez pas capable de finir ça en un jour.\nNo matter how hard you try, you won't be able to finish that in one day.\tVous aurez beau essayer, vous ne serez pas capables de finir cela en un jour.\nNo matter how hard you try, you won't be able to finish that in one day.\tVous aurez beau essayer, vous ne serez pas capables de finir ça en un jour.\nNo matter how hard you try, you won't be able to finish that in one day.\tTu auras beau essayer, tu ne seras pas capable de finir cela en un jour.\nNo matter how hard you try, you won't be able to finish that in one day.\tTu auras beau essayer, tu ne seras pas capable de finir ça en un jour.\nPersonally, I don't think it makes any difference who wins the election.\tPersonnellement, je pense que cela ne fait aucune différence, quiconque gagne l'élection.\nPreparing a room for painting is the most important step in the process.\tPréparer une pièce pour la peinture est l'étape la plus importante du processus.\nRather than cutting down on cigarettes, why don't you just give them up?\tPlutôt que de réduire la cigarette, pourquoi ne la laisses-tu pas simplement tomber ?\nRather than cutting down on cigarettes, why don't you just give them up?\tPlutôt que de réduire la cigarette, pourquoi ne la laissez-vous pas simplement tomber ?\nRonald Reagan was born in 1911, in the little town of Tampico, Illinois.\tRonald Reagan est né en 1911 en Illinois, dans la petite ville de Tampico.\nShe advised him not to use too much salt, but he wouldn't listen to her.\tElle lui recommanda de ne pas employer trop de sel mais il refusa de l'écouter.\nShe advised him not to use too much salt, but he wouldn't listen to her.\tElle lui a recommandé de ne pas employer trop de sel mais il a refusé de l'écouter.\nShe denied having met him even though we saw them talking to each other.\tElle nia l'avoir rencontré bien que nous les eûmes vus se parler l'un à l'autre.\nShe denied having met him even though we saw them talking to each other.\tElle a nié l'avoir rencontré alors que nous les avons vus discuter l'un avec l'autre.\nShe was busy knitting. In the meantime, he was taking a nap by the fire.\tElle était occupée à tricoter. Pendant ce temps, il faisait une sieste à côté du feu.\nTeenagers are often embarrassed to be seen in public with their parents.\tLes adolescents sont souvent embarrassés d'être vus en public avec leurs parents.\nThanks to this book, I learned some interesting facts about this insect.\tGrâce à ce livre, j'ai appris des choses intéressantes sur cet insecte.\nThe United States has officially ended economic sanctions against Burma.\tLes États-Unis d'Amérique ont officiellement mis un terme aux sanctions économiques à l'encontre de la Birmanie.\nThe Wright brothers succeeded in flying an airplane driven by an engine.\tLes frères Wright réussirent à faire voler un avion mû par un moteur.\nThe chairperson has been associated with the organization for ten years.\tLe président est associé à l'organisation depuis dix ans.\nThe chairperson has been associated with the organization for ten years.\tLa présidente est associée à l'organisation depuis dix ans.\nThe company asked the bank to loan them some money to buy new machinery.\tLa société a demandé à la banque de lui prêter de l'argent pour acheter de nouvelles machines.\nThe company went public and became listed on the stock exchange in 1990.\tL'entreprise a émis des actions et est entrée en bourse en 1990.\nThe economy still hasn't completely recovered from the financial crisis.\tL'économie ne s'est pas encore complètement remise de la crise financière.\nThe freight train was held up about half an hour because of a dense fog.\tLe train de fret a été retenu près d'une demi-heure à cause de l'épais brouillard.\nThe lawyer asked the judge to make allowance for the age of the accused.\tLe défenseur pria le juge de prendre en considération l'âge de l'accusé.\nThe more worthless the plant, the more rapid and splendid is its growth.\tMoins une plante a de valeur, plus rapide et splendide est sa croissance.\nThe only way to handle him is to let him think he is having his own way.\tLa seule manière de le maîtriser est de le laisser penser qu'il obtient ce qu'il désire.\nThe ship's captain ordered the radio operator to send a distress signal.\tLe capitaine du navire ordonna à l'opérateur radio d'envoyer un signal de détresse.\nThe sight of the centipede on the wall was enough to make my skin crawl.\tJ'ai eu la chair de poule en voyant le mille-pattes sur le mur.\nThe surgeon who operated on Tom is very experienced and highly regarded.\tLe chirurgien qui a opéré Tom est très expérimenté et hautement réputé.\nThe team played hard because the championship of the state was at stake.\tL'équipe s'entraîna dur, car le championnat national était en danger.\nThere are some differences between British English and American English.\tIl y a des différences entre l'anglais britannique et l'anglais américain.\nThere are some differences between British English and American English.\tIl y a des différences entre l'anglais britannique et l'anglais étatsunien.\nThere are still many cultural differences between East and West Germany.\tDe nombreuses différences culturelles subsistent entre l'Allemagne de l'Ouest et l'Allemagne de l'Est.\nThere is an urgent need for a new approach to dealing with this problem.\tIl faut d'urgence une nouvelle approche pour traiter ce problème.\nTom and Mary have been trying to come up with a solution to the problem.\tTom et Marie ont essayé de trouver une solution au problème.\nTom and Mary sat next to each other at the table in the conference room.\tTom et Mary se sont assis à la table, l'un à côté de l'autre, dans la salle de conférence.\nTom and Mary sat next to each other at the table in the conference room.\tTom et Mary s’assirent l'un à côté de l'autre à la table dans la salle de conférence.\nTom certainly gives the impression that he doesn't know what he's doing.\tTom donne certainement l'impression qu'il ne sait pas ce qu'il est en train de faire.\nTom doesn't always get up early, but he always gets up before Mary does.\tTom ne se lève pas toujours tôt, mais il le fait toujours avant Marie.\nTom doesn't need any more soap. Mary gave him enough to last a lifetime.\tTom n'a plus besoin de savon. Mary lui en a donné assez pour toute une vie.\nTom has some food allergies, so he has to be careful about what he eats.\tTom fait des allergies alimentaires, alors il doit faire attention à ce qu'il mange.\nTom stepped into the elevator and pushed the button for the third floor.\tTom entra dans l'ascenseur et appuya sur le bouton du troisième étage.\nTom wondered when Mary had bought the milk that was in the refrigerator.\tTom se demanda quand Mary avait acheté le lait qui était dans le réfrigérateur.\nToo much of anything is bad, but too much good whiskey is barely enough.\tTrop de quelque chose, c'est mauvais, mais trop de whisky, c'est à peine suffisant.\nTry not to spend so much time complaining about things you can't change.\tEssaie de ne pas passer tant de temps à te plaindre de choses que tu ne peux pas changer.\nTry not to spend so much time complaining about things you can't change.\tEssaye de ne pas passer tant de temps à te plaindre de choses que tu ne peux pas changer.\nTry not to spend so much time complaining about things you can't change.\tEssayez de ne pas passer tant de temps à vous plaindre de choses que vous ne pouvez pas changer.\nWe drove through village after village, until we got to our destination.\tNous traversâmes village après village jusqu'à ce que nous atteignîmes notre destination.\nWe were talking about something at that time, but I don't remember what.\tNous étions, à ce moment-là, en train de parler de quelque chose, mais je ne me souviens pas de quoi.\nWhat hurts the most is that you didn't feel you could tell me the truth.\tCe qui fait le plus mal, c'est que tu n'as pas senti que tu pouvais me dire la vérité.\nWhat kind of person would forget to pick their children up after school?\tQuel genre de personnes oublierait de ramasser ses enfants après l'école ?\nWhat really surprised me most was that I was the only one who got fired.\tCe qui m'a le plus surpris c'est que j'étais le seul à me faire virer.\nWhen I was a college student, I always pulled all-nighters before tests.\tLorsque j'étudiais à l'université, j'ai toujours passé des nuits blanches avant les examens.\nWhen all you have is a hammer, every problem starts to look like a nail.\tCelui qui n'a qu'un marteau dans sa boîte à outils, voit tous les problèmes comme des clous.\nWhen we started this business, neither one of us had had any experience.\tQuand nous avons démarré cette affaire, aucun d'entre nous n'avait eu aucune expérience.\nWith the coming of spring, everything is gradually coming to life again.\tAvec la venue du printemps, tout revient progressivement à la vie.\nYou have the right to consult an attorney before speaking to the police.\tVous avez le droit de consulter un avocat avant de parler à la police.\nYou have the right to consult an attorney before speaking to the police.\tVous avez le droit de consulter un avocat avant de parler aux policiers.\nYou may think your comment was innocuous, but I found it very offensive.\tTu estimes peut-être que ton commentaire est anodin, je l'ai cependant trouvé très blessant.\nYou shouldn't share too much private information on the social networks.\tVous ne devriez pas partager trop d'informations privées sur les réseaux sociaux.\nYour dream of becoming a baseball player will come true if you try hard.\tVotre rêve de devenir un joueur de baseball se réalisera, si vous persévérez.\n\"How far is it from here to your school?\" \"It's about ten minute's walk.\"\t\"Combien de temps ça prend pour aller d'ici à ton école ?\" \"Environ 10 minutes à pied.\"\nA considerable amount of money was appropriated for the national defense.\tUne somme d'argent considérable a été affectée à la défense nationale.\nA great warrior radiates strength. He doesn't have to fight to the death.\tLa force irradie d'un grand guerrier. Il n'a pas besoin de combattre à mort.\nAll the students of the university have access to the university library.\tTous les étudiants de l'université ont accès à sa bibliothèque.\nAll you have to do is write a few sentences about what you did yesterday.\tTout ce que vous avez à faire est d'écrire quelques phrases à propos de ce que vous avez fait hier.\nAnd then, he chased the cattle, the sheep and everyone out of the temple.\tPuis il chassa du temple les vaches, les moutons et tout le monde.\nAt first, I had difficulty understanding people when they spoke too fast.\tAu début, j'avais des difficultés à comprendre les gens qui parlaient trop vite.\nDoctors should keep abreast with all the latest developments in medicine.\tLes médecins doivent être au fait des derniers progrès de la médecine.\nEvery time cigarettes go up in price, many people try to give up smoking.\tChaque fois que le prix des cigarettes augmente, beaucoup de gens essayent d'arrêter de fumer.\nFrankly speaking, it was difficult for me to make out what he was saying.\tPour parler franchement, j'ai eu du mal à comprendre ce qu'il disait.\nHe claims to be a socialist, and yet he has two houses and a Rolls Royce.\tIl prétend être socialiste, et pourtant il a deux maisons et une Rolls Royce.\nHe led his men and horses over snowy mountains and down into hot valleys.\tIl conduisit ses hommes et leurs chevaux sur des montagnes enneigées et au fond de chaudes vallées.\nHigh fructose corn syrup is found in about everything you eat these days.\tOn trouve du sirop de maïs à haute teneur en fructose dans à peu près tout ce qu'on mange, de nos jours.\nHis loss of memory is a psychological problem rather than a physical one.\tSa perte de mémoire est un problème plus psychologique que physique.\nHow many times do I have to tell you not to eat candy just before dinner?\tCombien de fois dois-je te dire de ne pas manger de sucreries juste avant le dîner ?\nHow many times do I have to tell you not to eat candy just before dinner?\tCombien de fois dois-je vous dire de ne pas manger de sucreries juste avant le dîner ?\nHuman beings, whether they realise it or not, continually seek happiness.\tLes êtres humains, qu'ils en prennent conscience ou pas, recherchent continuellement le bonheur.\nI can't tell you everything I've been told because I've been told not to.\tJe ne peux pas te dire tout ce qu'on m'a dit parce qu'on m'a dit de ne pas le faire.\nI don't have to study tonight. I think I'll watch television for a while.\tJe ne dois pas étudier ce soir. Je pense que je regarderai la télévision un moment.\nI don't know when I'll have time to finish reading the rest of this book.\tJ'ignore quand j'aurai le temps d'achever de lire le reste de ce livre.\nI don't think it'll rain, but I'll take an umbrella just in case it does.\tJe ne pense pas qu'il va pleuvoir, mais je vais prendre un parapluie juste au cas où cela se confirmait.\nI don't think we can really say that one is right and the other is wrong.\tJe ne pense pas que nous puissions réellement dire que l'un est vrai et l'autre faux.\nI don't think we can really say that one is right and the other is wrong.\tJe ne pense pas que nous puissions réellement dire que l'un est juste et l'autre mal.\nI had a very tight schedule last week, but this week I'm relatively free.\tJ'ai eu un programme très chargé la semaine dernière, mais cette semaine, je suis relativement libre.\nI had to catch the first train this morning in order to get here in time.\tJ'ai dû prendre le premier train, ce matin, afin d'arriver ici à temps.\nI held onto the rope for as long as I could, but I finally had to let go.\tJ'ai agrippé la corde aussi longtemps que j'ai pu, mais j'ai finalement dû la lâcher.\nI just want to let you know that I can't attend this afternoon's meeting.\tJe veux juste te faire savoir que je ne peux pas être présent à la réunion de cet après-midi.\nI just want to let you know that I can't attend this afternoon's meeting.\tJe veux juste vous faire savoir que je ne peux pas être présent à la réunion de cette après-midi.\nI knew I had to tell him the truth, but I couldn't bring myself to do it.\tJe savais que je devais lui dire la vérité, mais je n'arrivais pas à m'y résoudre.\nI never thought it'd be this hard to choose a color to paint the kitchen.\tJe n'aurais jamais pensé qu'il serait aussi difficile de sélectionner une couleur pour peindre la cuisine.\nI only eat meat from animals that I have personally killed and butchered.\tJe ne mange que la viande d'animaux que j'ai moi-même tués et découpés.\nI think it's time for me to stop allowing her to always have her own way.\tJe pense qu'il est temps que j'arrête de l'autoriser à toujours agir à sa guise.\nI think you'll have very little difficulty in getting a driver's license.\tJe pense que tu n'auras guère de difficulté à obtenir un permis de conduire.\nI think you'll have very little difficulty in getting a driver's license.\tJe pense que vous n'aurez guère de difficulté à obtenir un permis de conduire.\nI thought we had found the perfect hiding place, but the police found us.\tJe pensais que nous avions trouvé la cachette parfaite mais la police nous a trouvés.\nI thought we had found the perfect hiding place, but the police found us.\tJe pensais que nous avions trouvé la cachette parfaite mais la police nous a trouvées.\nI wanted to let you know about that, but Tom told me not to say anything.\tJe voulais t'en informer, mais Tom m'a dit de ne rien dire.\nI wanted to let you know about that, but Tom told me not to say anything.\tJe voulais vous en informer, mais Tom m'a dit de ne rien dire.\nI was going to write to you, but I started doing other things and forgot.\tJ'allais vous écrire, mais j'ai commencé à faire d'autres choses et j'ai oublié.\nI was surprised because my husband actually ate some of our wedding cake.\tJ'étais surprise parce que mon mari avait en fait mangé un peu de notre gâteau de mariage.\nIf it were not for the sun, no living creatures could exist on the earth.\tSi ce n'était pour le Soleil, aucun être vivant ne pourrait exister sur Terre.\nIf my mother had still been alive, she would have helped me at that time.\tSi elle avait été en vie, ma mère m'aurait aidé à ce moment-là.\nIf that accident had happened in a city, it would have caused a disaster.\tSi cet accident s'était produit en ville, il aurait causé un désastre.\nIf you were to hear him speak French, you would take him for a Frenchman.\tSi tu l'entendais parler français, tu le prendrais pour un Français.\nIf your feelings are still what they were last April, tell me so at once.\tSi vos sentiments sont toujours tels qu'ils étaient en avril, dites-le-moi tout de suite.\nIt is essential that every child have the same educational opportunities.\tIl est essentiel que chaque enfant ait les mêmes opportunités d'éducation.\nIt was very cold last night, so we didn't go outside, but stayed indoors.\tIl a fait très froid la nuit dernière, donc nous ne sommes pas sortis mais au contraire nous nous sommes cloitrés chez nous.\nIt's amazing that so many people cross this street when the light is red.\tC'est fou, tous ces gens qui traversent la rue alors que le feu est rouge.\nIt's in times like these that the character of a person becomes apparent.\tC'est lors de moments comme ceux-là que le caractère d'une personne transparaît.\nIt's in times like these that the character of a person becomes apparent.\tC'est dans des moments comme ceux-là que le caractère d'une personne devient apparent.\nJust throw your bicycle in the back of the truck and I'll drive you home.\tFlanque juste ton vélo à l'arrière du camion et je te conduirai à la maison.\nLast year, I couldn't spend as much time with my children as I wanted to.\tL'année dernière, je n'ai pas pu passer autant de temps que je le voulais avec mes enfants.\nLife's experiences make vivid records on the sensitive plate of his mind.\tLes expériences de la vie impriment des traces vivaces sur la plaque sensible de son esprit.\nMake certain where the emergency exit is before you go to bed at a hotel.\tÀ l'hôtel, vérifiez où est la sortie de secours avant d'aller au lit.\nMother Teresa was a Catholic nun who lived and worked in Calcutta, India.\tMère Thérésa était une sœur catholique qui vivait et travaillait à Calcutta en Inde.\nNever choose a vocation just because it is popular or sounds interesting.\tNe choisissez jamais une vocation simplement parce qu'elle est populaire ou semble intéressante.\nNo matter how busy you are, I think you should at least read a newspaper.\tPeu importe combien vous êtes occupé, je pense que vous devriez au moins lire le journal.\nNoise is the most serious problem for those who live around the airports.\tLe bruit est le plus sérieux problème pour ceux qui vivent autour des aéroports.\nOn the tenth of next month, they will have been married for twenty years.\tLe dix du mois prochain, il y a vingt ans qu'ils seront mariés.\nOnce upon a time, there was a pretty little house way out in the country.\tIl était une fois une jolie petite maison au fin fond du pays.\nOne thing you should know about me is that I'm obsessed with punctuality.\tUne chose que tu devrais connaître à mon sujet, c'est que je suis obsédé par la ponctualité.\nPeople no longer consider it strange for men to let their hair grow long.\tLes gens ne trouvent plus étrange que des hommes se laissent pousser les cheveux.\nPlease don't forget to put stamps on the letters that I gave you to mail.\tVeuillez ne pas oublier de timbrer les lettres que je vous ai données à poster.\nPlease don't forget to put stamps on the letters that I gave you to mail.\tVeuillez ne pas oublier d'apposer des timbres sur les lettres que je vous ai données à poster.\nPlease don't forget to put stamps on the letters that I gave you to mail.\tN'oublie pas, s'il te plait, de timbrer les lettres que je t'ai données à poster.\nPlease don't forget to put stamps on the letters that I gave you to mail.\tN'oublie pas, je te prie, d'apposer des timbres sur les lettres que je t'ai données à poster.\nPlease send any complaints or suggestions to the following email address.\tVeuillez adresser toute réclamation ou suggestion à l'adresse électronique suivante.\nShe borrowed the book from him many years ago and hasn't yet returned it.\tElle lui a emprunté le livre il y a de nombreuses années et ne l'a toujours pas rendu.\nShe had hardly begun to read the book before someone knocked at the door.\tÀ peine avait-elle commencé à lire le livre que quelqu'un frappa à la porte.\nShe has asked the person at the front desk to connect her to that number.\tElle a demandé à la personne à la réception de lui passer ce numéro.\nShe visits the dentist on a regular basis, so she seldom gets toothaches.\tComme elle se rend chez le dentiste régulièrement, elle a rarement mal aux dents.\nShe visits the dentist on a regular basis, so she seldom gets toothaches.\tElle se rend chez le dentiste régulièrement, donc elle a rarement des maux de dents.\nShe wrote to him to tell him that she couldn't come to visit next summer.\tElle lui écrivit pour lui annoncer qu'elle ne pourrait pas venir en visite l'été prochain.\nShe wrote to him to tell him that she couldn't come to visit next summer.\tElle lui a écrit pour lui annoncer qu'elle ne pourrait pas venir en visite l'été prochain.\nStrictly speaking, she didn't like it at all, but she didn't say a thing.\tElle ne l'a à proprement parler pas du tout trouvé bien, mais elle n'a rien dit.\nThe Mormons have outlawed polygamy, but some adherents still practice it.\tLes mormons ont proscrit la polygamie, mais certains partisans la pratiquent toujours.\nThe boy pretended he could read, but he was holding the book upside down.\tLe garçon prétendait savoir lire, mais il tenait son livre à l'envers.\nThe disagreement between the union and management could lead to a strike.\tLe désaccord entre le syndicat et la direction pourrait mener à la grève.\nThe family had been sleeping for about two hours when the fire broke out.\tÇa faisait deux heures que la famille dormait lorsque l'incendie se déclara.\nThe introduction of the new tax is expected to affect the entire economy.\tOn s'attend à ce que l'introduction de la nouvelle taxe affecte toute l'économie.\nThe mayor thought that he should investigate the decline in tax revenues.\tLa maire pensa qu'il devrait enquêter sur la chute des recettes fiscales.\nThe outcome of the upcoming election will be the hardest ever to predict.\tL'issue de l'élection à venir sera la plus difficile à prédire.\nThe plans aren't set in stone and can be changed if absolutely necessary.\tLes plans ne sont pas inscrits dans le marbre et peuvent être altérés, si c'est absolument nécessaire.\nThe reason Tom didn't go with us was because he didn't have enough money.\tLa raison pour laquelle Tom n'est pas venu avec nous, c'est qu'il n'avait pas assez d'argent.\nThe series of crimes were thought to have been committed by the same man.\tOn pensait que la série de crimes avait été commise par le même homme.\nThe tooth fairy teaches children that they can sell body parts for money.\tLa fée des dents enseigne aux enfants qu'ils peuvent monétiser des parties de leurs corps.\nThere's a general sense that something should be done about unemployment.\tIl y a un sentiment général selon lequel il faut faire quelque chose contre le chômage.\nThis kind of specialized knowledge has very little to do with daily life.\tCette sorte de savoir spécialisé a très peu à voir avec la vie courante.\nThis room is very small, so it is impossible to put more furniture in it.\tLa pièce est très petite, à tel point qu'il n'est pas possible d'ajouter des meubles.\nThough it was a muggy night, she went to bed with all the windows closed.\tBien que ce fût une nuit étouffante, elle est allée au lit avec toutes les fenêtres fermées.\nTo the best of my knowledge, the cathedral dates back to the Middle Ages.\tPour autant que je sache, la cathédrale date du Moyen-Âge.\nTom certainly hadn't done anything that deserved that kind of punishment.\tTom n'a certainement rien fait qui mérite ce genre de punitions.\nTom doesn't want an iPad. He wants a portable device that supports Flash.\tTom ne veut pas d'un iPad. Il veut un portable qui accepte le Flash.\nTom's grandfather and Mary's grandfather fought together in World War II.\tLe grand-père de Tom et celui de Mary ont combattu ensemble durant la seconde guerre mondiale.\nTom's jokes are hilarious and get even better after he's had a few beers.\tLes blagues de Tom sont hilarantes et deviennent encore meilleures après qu'il ait bu quelques bières.\nWe have to consider the possibility that Tom was involved in the robbery.\tNous devons envisager la possibilité que Tom était impliqué dans le vol.\nWhat he said yesterday is not consistent with what he had said last week.\tCe qu'il a dit hier n'est pas cohérent avec ce qu'il a dit la semaine dernière.\nYou can talk until you're blue in the face, but you'll never convince me.\tTu peux raconter ce que tu veux, mais tu n'arriveras jamais à me convaincre.\nYou may stay here for the night, but you'll have to leave in the morning.\tVous pouvez rester ici pour la nuit, mais vous devrez vous en aller au matin.\nYou're the only person I know that likes getting up early in the morning.\tVous êtes la seule personne que je connaisse qui aime se lever tôt le matin.\nYour argument is not any more convincing than that of my stubborn father.\tTon argument n'est pas plus convaincant que celui de mon entêté de père.\nA parallelogram is a quadrilateral formed from two sets of parallel lines.\tUn parallélogramme est un quadrilatère formé de deux paires de lignes parallèles.\nA poll shows that an overwhelming majority is in favor of the legislation.\tUn sondage indique qu'une majorité écrasante est en faveur de la législation.\nAccording to today's paper, there was a big earthquake in Chile yesterday.\tD'après le journal, il y a eu un grand tremblement de terre au Chili hier.\nAfter her husband's death, she brought up the two children all by herself.\tAprès la mort de son mari, elle éleva les deux enfants toute seule.\nAren't you the one who's always saying we should spend more time together?\tN'es-tu pas celui qui dit toujours que nous devrions passer plus de temps ensemble ?\nAren't you the one who's always saying we should spend more time together?\tN'es-tu pas celle qui dit toujours que nous devrions passer plus de temps ensemble ?\nAs soon as you have done that, I would like you to start preparing supper.\tAussitôt que tu as terminé cela, j'aimerais que tu commences à préparer le dîner.\nBecause some urgent business came up, he wasn't able to go to the concert.\tParce qu'une affaire urgente s'est présentée, il n'a pas été en mesure de se rendre au concert.\nDad needs to take a rest. He's been working in the garden for three hours.\tPapa a besoin de repos. Cela fait 3 heures qu'il travaille dans le jardin.\nDay after day, the dog sat waiting for his master in front of the station.\tJour après jour, le chien était assis en attendant son maître face à la station.\nDrastic measures must be taken to prevent the further spread of the virus.\tDes mesures drastiques doivent être prises afin de prévenir une plus grande propagation du virus.\nHad it not been for your raincoat, I would have been drenched to the skin.\tSans votre imperméable, j'aurais été trempé jusqu'aux os.\nHe tried to behave as bravely as possible while he was being held hostage.\tIl essaya de se conduire le plus bravement possible tandis qu'il était pris en otage.\nI didn't want to spend any more time than necessary cooking for my family.\tJe ne voulais pas passer davantage de temps que nécessaire à cuisiner pour ma famille.\nI don't know if we're going to be able to make it to Boston for Christmas.\tJe ne sais pas si on pourra aller à Boston pour Noël.\nI don't know my address yet, I'm going to stay with my friend for a while.\tJe ne connais pas encore mon adresse, je vais habiter un temps chez mon ami.\nI don't know my address yet, I'm going to stay with my friend for a while.\tJe ne connais pas encore mon adresse, je vais habiter un temps chez mon amie.\nI don't think I've ever eaten anything that you would consider disgusting.\tJe ne pense pas jamais avoir mangé quoi que ce fut que tu considérerais dégoûtant.\nI don't think I've ever eaten anything that you would consider disgusting.\tJe ne pense pas jamais avoir mangé quoi que ce fut que vous considéreriez dégoûtant.\nI have one thousand dollars in travelers' checks and five hundred in cash.\tJ'ai mille dollars en chèques de voyage et cinq cents dollars en liquide.\nI know that it is highly unlikely that anyone would be willing to help me.\tJe sais qu'il est hautement improbable que quiconque veuille bien m'aider.\nI know that it is highly unlikely that anyone would be willing to help me.\tJe sais qu'il est hautement improbable que quiconque soit disposé à m'aider.\nI noticed that I had grown up when I started following my parents' advice.\tJ'ai remarqué que j'avais grandi lorsque j'ai commencé à suivre les conseils de mes parents.\nI think it's unlikely that any store would sell this model for that price.\tJe pense qu'il est probable qu'aucun magasin ne vendrait ce modèle à ce prix.\nI understand how much you want to go to the party, but I can't let you go.\tJ'ai bien compris à quel point tu veux aller à la fête, mais je ne peux pas te laisser partir.\nI will have graduated from college by the time you come back from America.\tJe serai déjà diplômé de l'université quand vous rentrerez d'Amérique.\nI'd like to discuss the possibility of you coming to work for our company.\tJ'aimerais m'entretenir de la possibilité que vous veniez travailler pour notre société.\nI'd like to discuss the possibility of you coming to work for our company.\tJ'aimerais discuter de la possibilité que vous veniez travailler pour notre société.\nI'd like to discuss the possibility of you coming to work for our company.\tJ'aimerais m'entretenir de la possibilité que tu viennes travailler pour notre société.\nI'd like to discuss the possibility of you coming to work for our company.\tJ'aimerais discuter de la possibilité que tu viennes travailler pour notre société.\nIf all goes according to plan, I should be back home again tomorrow night.\tSi tout se passe comme prévu, je devrais être de retour à la maison demain soir.\nIf there was just 1,000 yen more, he would have taken 10,000 yen in total.\tS'il y avait eu 1 000 yens de plus, il aurait pris 10 000 yens en tout.\nIf you really cared about your girlfriend, you would respect her feelings.\tSi tu te souciais vraiment de ta copine, tu respecterais ses sentiments.\nIt was a victory for the whole country when he finished first in the race.\tCe fut une victoire pour le pays entier lorsqu'il eut fini premier de la course.\nIt would have been nice if Tom had listened to what I said more carefully.\tÇa aurait été sympa si Tom avait écouté ce que je disais plus attentivement.\nIt's unlikely that I'll have time to finish this project before next week.\tIl est improbable que j'aie le temps de finir ce projet avant la semaine prochaine.\nJudging from the look of the sky, we might have a shower before nightfall.\tÀ en juger par l'aspect du ciel, il se pourrait bien que nous ayons une averse avant la tombée de la nuit.\nMaybe I shouldn't tell you this, but I am truly mesmerized by your beauty.\tJe ne devrais peut-être pas te le dire, mais je suis vraiment fasciné par ta beauté.\nMy father is proud of the fact that he's never been in a traffic accident.\tMon père s'enorgueillit du fait qu'il n'a jamais été impliqué dans un accident de la circulation.\nMy friend broke up with his girlfriend and now he wants to go out with me.\tMon ami a quitté sa petite copine et maintenant il veut sortir avec moi.\nMy teacher told me that I should have spent more time preparing my speech.\tMon professeur m'a dit que j'aurais dû passer davantage de temps à préparer mon exposé.\nPlease ask the secretary to stock the office supplies in the storage room.\tS'il vous plait demandez à la secrétaire de stocker les fournitures de bureau à la réserve.\nRather than doing any good, the rain did a great deal of harm to the crop.\tLa pluie a causé de gros dégâts à la récolte, plutôt qu'elle lui a fait quoi que ce soit de bien.\nShe advised him to cut down on smoking, but he didn't think that he could.\tElle lui recommanda de réduire sa consommation de tabac mais il pensa qu'il ne pouvait pas.\nShe advised him to cut down on smoking, but he didn't think that he could.\tElle lui a recommandé de réduire sa consommation de tabac mais il pensait qu'il ne pouvait pas.\nShe decided to drink water instead of soft drinks in order to lose weight.\tElle a décidé de boire de l'eau au lieu des jus de fruits et soda afin de maigrir.\nShe found the evening boring and uninteresting, in short, a waste of time.\tElle a trouvé la matinée ennuyeuse et inintéressante, en résumé, une perte de temps.\nSince I was sick for a week, I'm making every possible effort to catch up.\tComme j'étais malade pendant une semaine, je fais tout mon possible pour me rattraper.\nThat woman standing over there is the most beautiful woman I've ever seen.\tLa femme qui se tient là-bas est la plus belle femme que j'ai jamais vue.\nThe bridge couldn't sustain the force of the strong current and collapsed.\tLe pont ne put résister à la force du puissant courant et s'effondra.\nThe contents of the four registers are preserved by the called subroutine.\tLe contenu des quatre registres est conservé par la subroutine appelée.\nThe house did not suffer much damage because the fire was quickly put out.\tLa maison n'a pas subi beaucoup de dégâts car le feu a été rapidement étouffé.\nThe most important thing in the Olympics is not to win but to participate.\tLa chose la plus importante aux Jeux Olympiques n'est pas de gagner mais de participer.\nThe mountain path was under a blanket of leaves, soft and easy to walk on.\tLe chemin de montagne était recouvert d'un tapis de feuilles, sur lequel il était doux et aisé de marcher.\nThe time women spend doing housework is now a lot less than it used to be.\tLe temps que les femmes passent à effectuer des tâches ménagères est désormais bien moindre qu'auparavant.\nThe urban population in most developing countries is increasing very fast.\tLa population urbaine de la plupart des pays en voie de développement croît très rapidement.\nThe victim is thought to have taken a large quantity of poison by mistake.\tOn suppose que la victime a absorbé par erreur une grande quantité de poison.\nThe weather report said that there will be thunderstorms tomorrow evening.\tLe bulletin météo a dit que demain soir il y aurait de l'orage.\nThere is milk all over the kitchen floor because my wife broke the bottle.\tIl y a du lait partout sur le sol de la cuisine parce que ma femme a cassé la bouteille.\nThere's been a significant development in the case of the missing toddler.\tIl y a eu une évolution significative dans l'affaire du bambin disparu.\nThere's danger that the levee will break. We have to evacuate immediately.\tIl y a un risque que la digue cède. Nous devons évacuer immédiatement.\nTom began to look for a job three months before he graduated from college.\tTom a commencé à chercher un travail trois mois avant d'avoir terminé ses études.\nTom put two slices of bread into the toaster and pushed down on the lever.\tTom plaça deux tranches de pain dans le grille-pain et appuya sur le levier.\nTyrannical governments frequently put their political opponents in prison.\tLes gouvernements tyranniques mettent fréquemment leurs opposants politiques en prison.\nWe cannot offer a further price reduction under the current circumstances.\tNous ne pouvons concéder de réduction de prix supplémentaire dans les conditions actuelles.\nWe're less than halfway to the top of the mountain. Are you already tired?\tNous sommes à moins de la moitié du chemin du sommet. Êtes-vous vraiment déjà fatiguées ?\nWe're less than halfway to the top of the mountain. Are you already tired?\tNous sommes à moins de la moitié du chemin du sommet. Êtes-vous vraiment déjà fatigués ?\nWe're less than halfway to the top of the mountain. Are you already tired?\tNous sommes à moins de la moitié du chemin du sommet. Êtes-vous vraiment déjà fatiguée ?\nWe're less than halfway to the top of the mountain. Are you already tired?\tNous sommes à moins de la moitié du chemin du sommet. Êtes-vous vraiment déjà fatigué ?\nWe're less than halfway to the top of the mountain. Are you already tired?\tNous sommes à moins de la moitié du chemin du sommet. Es-tu vraiment déjà fatiguée ?\nWe're less than halfway to the top of the mountain. Are you already tired?\tNous sommes à moins de la moitié du chemin du sommet. Es-tu vraiment déjà fatigué ?\nWhat does what happened last night have to do with what's happening today?\tQu'est-ce que ce qui s'est passé la nuit dernière a à voir avec ce qui se passe aujourd'hui ?\nWhat you spend time doing in your childhood affects the rest of your life.\tCe que vous passez votre temps à faire durant votre enfance, affecte le reste de votre vie.\nWhat you spend time doing in your childhood affects the rest of your life.\tCe que tu passes ton temps à faire durant ton enfance, affecte le reste de ta vie.\nWhat you spend time doing in your childhood affects the rest of your life.\tCe que l'on passe son temps à faire durant son enfance, affecte le reste de sa vie.\nWhen we started out in this business, many people said that we would fail.\tLorsque nous avons démarré dans ce commerce, beaucoup de gens disaient que nous échouerions.\nWhen you said you'd look after Spot, you knew there'd be responsibilities.\tQuand tu disais que tu t'occuperais de Spot, tu savais qu'il y aurait des responsabilités.\nWhether Shakespeare wrote this poem or not will probably remain a mystery.\tSi Shakespeare a écrit ce poème ou pas restera probablement une énigme.\nYou say you want to visit Tom? Why in the world would you want to do that?\tVous dites que vous voudriez aller voir Tom ? Pour quelle raison feriez-vous ça ?\nYou should consult a dictionary when you don't know the meaning of a word.\tVous devriez consulter un dictionnaire lorsque vous ignorez la signification d'un mot.\nYou will save your father a lot of worry if you simply write him a letter.\tTu éviteras à ton père de se faire beaucoup de soucis, simplement en lui écrivant une lettre\n\"Have you ever been to New York?\" \"Yes, I've been there a couple of times.\"\t\"Êtes-vous déjà allé à New York ?\" \"Oui, j'y suis allé deux ou trois fois.\"\nAfter asking for my key at the front desk, I took the elevator to my floor.\tAprès avoir demandé ma clé à la réception, j'ai pris l'ascenseur jusqu'à mon étage.\nAll of us have some interest in history. In a sense, we are all historians.\tNous avons tous de l'intérêt pour l'histoire. Dans un sens, nous sommes tous historiens.\nAmericans may regard shy people as less capable than those who are not shy.\tLes Américains peuvent considérer les personnes timides comme moins compétentes que celles qui ne le sont pas.\nAs a result of a traffic jam, he wasn't able to see her off at the station.\tDu fait des embouteillages, il n'a pas pu la voir partir depuis la gare.\nAs incredible as it may seem, she ordered a knuckle of ham with sauerkraut.\tAussi incroyable que ça paraisse, elle commanda en fait un jambonneau choucroute.\nAt the time, our country was confronted with serious economic difficulties.\tÀ cette époque, notre pays était confronté à de graves problèmes économiques.\nBecause of the bad weather, the plane's departure was delayed by two hours.\tÀ cause du mauvais temps, le départ de l'avion fut retardé de deux heures.\nDon't bother waking me up at 4:00 a.m. I don't plan to go fishing tomorrow.\tNe prends pas la peine de me réveiller à quatre heures du matin. Je ne prévois pas d'aller pêcher demain.\nDon't bother waking me up at 4:00 a.m. I don't plan to go fishing tomorrow.\tNe prenez pas la peine de me réveiller à quatre heures du matin. Je ne prévois pas d'aller pêcher demain.\nEncryption technology has advanced to the point where it's pretty reliable.\tLes technologies de chiffrement ont avancé au point d'être plutôt fiables.\nEnglish has now become the common language of several nations in the world.\tL'anglais est désormais devenu la langue commune à de nombreuses nations de la planète.\nFor the first time in more than 6 years, the unemployment rate is below 6%.\tPour la première fois en plus de six ans, le taux de chômage est inférieur à six pourcents.\nFrom my point of view, Australia is one of the best countries in the world.\tSelon moi, l'Australie est l'un des meilleurs pays du monde.\nHe and I are such close friends that we can almost read each other's minds.\tLui et moi sommes des amis si intimes que nous pouvons presque lire dans la tête de l'autre.\nHe seems like a respectable businessman, but he's really part of the Mafia.\tIl paraît être un homme d'affaires respectable mais il est en réalité membre de la mafia.\nHow many times a week do you spend time doing fun stuff with your children?\tCombien de fois par semaine passes-tu du temps à faire des choses amusantes avec tes enfants ?\nHow many times a week do you spend time doing fun stuff with your children?\tCombien de fois par semaine passez-vous du temps à faire des choses amusantes avec vos enfants ?\nI discovered too late that I left out the most important part of my speech.\tJe découvris trop tard que j'avais omis la partie la plus importante de mon discours.\nI don't mind lending you the money provided you pay it back within a month.\tCela m'est égal de vous prêter de l'argent pourvu que vous me le rendiez avant la fin du mois.\nI know he will only continue disappointing me, but I can't help loving him.\tJe sais qu'il continuera juste à me décevoir, mais je ne peux m'empêcher de l'aimer.\nI know someone needs to tell Tom about Mary's death. Does it have to be me?\tJe sais que quelqu'un doit le dire à Tom pour la mort de Mary. Mais est-ce que ça doit être moi ?\nI think I've figured out why Tom has never learned to speak French so well.\tJe pense que j'ai compris pourquoi Tom n'a jamais appris à parler vraiment bien français.\nI think it's highly unlikely that I'll ever see my stolen motorcycle again.\tJe pense qu'il est hautement improbable que je revoie jamais ma moto.\nI think it's highly unlikely that we'll be able to escape from this prison.\tJe pense qu'il est hautement improbable que nous serons en mesure de nous échapper de cette prison.\nI think it's highly unlikely that we'll be able to escape from this prison.\tJe pense qu'il est hautement improbable que nous puissions nous échapper de cette prison.\nI think it's unlikely that the next model will be any better than this one.\tJe pense qu'il est improbable que le prochain modèle soit meilleur que celui-là.\nI thought it might be a good idea for us to get together and talk about it.\tJ'ai pensé que ça pourrait être une bonne idée pour nous de nous rassembler et d'en parler.\nI thought it might be a good idea for us to get together and talk about it.\tJ'ai pensé que ça pourrait être une bonne idée pour nous de nous voir et d'en parler.\nI thought there was a possibility that Tom was going to break the contract.\tJ'ai pensé qu'il était possible que Tom soit sur le point de rompre le contrat.\nI was very surprised to see students cleaning their classroom after school.\tJ'étais très surpris de voir les étudiants nettoyer leur salle de classe après l'école.\nI would prefer to only hire people to translate into their native language.\tJe préférerais n'enrôler des gens que pour traduire dans leur langue maternelle.\nI'd like to hear exactly how Tom managed to get that old car running again.\tJ'aimerais vraiment savoir comment Tom s'est débrouillé pour faire rouler cette vieille voiture de nouveau.\nI'm afraid we can't rule out the possibility that she may have the disease.\tJe crains que nous ne puissions exclure la possibilité qu'elle puisse avoir la maladie.\nI'm not an expert, so my answer to your question is just an educated guess.\tJe ne suis pas un expert, alors ma réponse à votre question est juste une supposition éclairée.\nI'm not an expert, so my answer to your question is just an educated guess.\tJe ne suis pas un expert, alors ma réponse à ta question est juste une supposition éclairée.\nI'm pretty sure that I've left the keys to my office in my raincoat pocket.\tJe crois bien que j'ai oublié mes clés de bureau dans la poche de mon imperméable.\nIf he had been a little more careful, the accident would have been avoided.\tS'il avait été un petit peu plus prudent, l'accident aurait été évité.\nIf he had been a little more careful, the accident would have been avoided.\tS'il avait été un tant soit peu plus prudent, l'accident aurait été évité.\nIf you don't know anything about computers, you're really behind the times.\tSi tu n'y connais rien en ordinateurs, tu es vraiment en retard.\nIf you want to become thin, you should cut back on the between-meal snacks.\tSi tu veux maigrir, tu devrais arrêter de grignoter entre les repas.\nIf you'd prefer a room closer to the Convention Center, please let us know.\tSi vous préférez une chambre plus proche du Palais des Congrès, veuillez nous en informer.\nIf you're not out of the shower in five minutes, I'm cutting the hot water!\tSi tu n'es pas sorti de la douche d'ici cinq minutes, je coupe l'eau chaude !\nIn the summer, the temperature ranges from thirty to forty degrees Celsius.\tPendant l'été, la température oscille entre trente et quarante degrés Celsius.\nIsn't it about time you guys buried the hatchet and let bygones be bygones?\tN'est-il pas temps, les mecs, d'enterrer la hache de guerre et d'oublier le passé ?\nIt doesn't make much sense to me, but Tom has decided not to go to college.\tCela n'est pas très logique à mes yeux, mais Tom a décidé de ne pas aller à l'université.\nIt must be nice having someone who sticks around even when times get tough.\tÇa doit être chouette d'avoir quelqu'un qui reste même lorsque les temps sont durs.\nIt's about time somebody did something about the high cost of medical care.\tIl est temps que quelqu'un fasse quelque chose à propos du coût élevé des soins médicaux.\nIt's important to get the carbon-to-nitrogen ratio right in a compost heap.\tIl est important d'obtenir le bon ratio carbone/azote dans un tas de compost.\nIt's important to have an off-site backup of all the data on your computer.\tIl est important de disposer d'une sauvegarde hors-site de toutes les données de votre ordinateur.\nIt's possible that Tom was able to convince Mary to do his laundry for him.\tC'est possible que Tom ait pu convaincre Mary de faire sa lessive pour lui.\nJust give me some time. I'm sure I can figure out how to solve the problem.\tDonne-moi juste du temps. Je suis sûr que je peux comprendre comment résoudre le problème.\nJust give me some time. I'm sure I can figure out how to solve the problem.\tDonne-moi juste du temps. Je suis sûre que je peux comprendre comment résoudre le problème.\nJust give me some time. I'm sure I can figure out how to solve the problem.\tDonnez-moi juste du temps. Je suis sûr que je peux comprendre comment résoudre le problème.\nJust give me some time. I'm sure I can figure out how to solve the problem.\tDonnez-moi juste du temps. Je suis sûre que je peux comprendre comment résoudre le problème.\nMany great thinkers who were unknown while alive became famous after death.\tDe nombreux grands penseurs qui étaient inconnus de leur vivant, acquirent la renommée après leur mort.\nNow that my brother is a university student, he has to do a lot of reading.\tMaintenant que mon frère est étudiant à l'université, il doit beaucoup lire.\nOutside the school, she saw people with no homes living in cardboard boxes.\tÀ la sortie de l'école, elle a vu des sans-logis qui vivaient dans des cartons.\nOvertaxed heart, kidneys and liver are inevitable results of too much food.\tUn cœur, des reins et un foie surmenés sont les conséquences inévitables d'une nourriture trop abondante.\nPlease remember to mail this letter on your way to school tomorrow morning.\tS'il vous plaît, n'oubliez pas de poster cette lettre sur votre chemin vers l'école demain matin.\nQuite a few people have been invited to celebrate the couple's anniversary.\tTrès peu de gens ont été invités pour célébrer l'anniversaire du couple.\nShe hired him as an interpreter because she had heard that he was the best.\tElle l'enrôla comme interprète car elle avait entendu dire qu'il était le meilleur.\nShe owes him a lot of money, but she probably won't be able to pay it back.\tElle lui doit beaucoup d'argent mais elle ne sera probablement pas en mesure de le rembourser.\nShe says she has no intention of having a baby until she's in her thirties.\tElle dit qu'elle n'a pas l'intention d'avoir de bébés jusqu'à ce qu'elle soit dans sa trentaine.\nShe went into the kitchen to see who was there, but there was nobody there.\tElle alla à la cuisine pour voir qui s'y trouvait, mais là, il n'y avait personne.\nSince I was sick for a week, I am making every possible effort to catch up.\tÉtant donné que j'ai été malade pendant une semaine, je fais tous les efforts possibles pour rattraper.\nTaking everything into consideration, the result is better than I expected.\tToutes choses égales par ailleurs, le résultat est meilleur que je ne l'espérais.\nThat company hires people without regard to race, religion, or nationality.\tCette entreprise embauche des gens sans se préoccuper de race, de religion ou de nationalité.\nThe Prime Minister's speech was calculated to anger the opposition parties.\tLe discours du Premier ministre était pensé de façon à susciter la colère des partis de l'opposition.\nThe Prime Minister's speech was calculated to anger the opposition parties.\tLe discours du Premier ministre était conçu pour mettre en colère les partis de l'opposition.\nThe demon lord finally lost conciousness and fell to the floor with a thud.\tLe seigneur démon perdit enfin connaissance et tomba au sol avec un bruit sourd.\nThe district attorney is unwilling to proceed due to insufficient evidence.\tLe procureur du district est réticent à poursuivre à cause de l'insuffisance des preuves.\nThe doctors said he would never again be able to walk without some support.\tLes médecins ont dit qu'il ne serait plus jamais capable de marcher sans assistance.\nThe family moved from their native Germany to Chicago around the year 1830.\tLa famille a quitté son Allemagne natale pour s'installer à Chicago vers 1930.\nThe investigation concluded that the police officer had done nothing wrong.\tL'enquête conclut que l'agent de police n'avait rien fait de répréhensible.\nThe investigation concluded that the police officer had done nothing wrong.\tL'enquête a conclu que l'agent de police n'avait rien fait de répréhensible.\nThe local boys got into a fight with a rival group from a neighboring town.\tLes garçons du coin sont entrés en dispute avec un groupe rival d'une ville voisine.\nThe problem with many things is the pre-conceived ideas we have about them!\tLe problème avec beaucoup de choses sont les idées préconçues que nous avons à leur sujet !\nThey argue a lot, but for the most part they get along quite well together.\tIls se disputent beaucoup, mais pour l'essentiel, ils s'entendent assez bien.\nThis condo is getting old. Why don't we redecorate to give it a fresh feel?\tL'appartement se fait vieux. Pourquoi ne le redécorerions-nous pas pour en rafraîchir l'allure.\nThis is the unforgettable place where we met each other for the first time.\tC'est le lieu inoubliable où nous nous sommes rencontrés pour la première fois.\nTom can remember the chords to the song, but can't remember all the lyrics.\tTom arrive à se rappeler des accords de la chanson, mais n'arrive pas à se souvenir de toutes les paroles.\nTom checked to make sure all the doors were locked before he went to sleep.\tTom vérifia que toutes les portes étaient verrouillées avant d'aller dormir.\nTom thought Mary wouldn't be able to earn more than thirty dollars an hour.\tTom pensait que Marie n'aurait pas été capable de gagner plus de trente dollars en une heure.\nTom writes something in his diary every evening, no matter how tired he is.\tTome écrit chaque soir quelque chose dans son journal, quelle que soit sa fatigue.\nWe shouldn't confuse solitude with isolation. They are two separate things.\tOn ne devrait pas confondre la solitude et l'isolation. Ce sont deux choses différentes.\nWe spent all of that night, the next day, and the next night in the cellar.\tNous avons passé toute cette nuit ainsi que le lendemain et la nuit suivante dans la cave.\nWhen the desire for leisure is stronger than the other urges, leisure wins.\tLorsque le désir de loisirs est plus fort les autres besoins, les loisirs gagnent.\nYou speak a bit too fast for me. Could you speak a bit more slowly, please?\tVous parlez un peu trop vite pour moi. Pourriez-vous parler un peu plus lentement s'il vous plaît ?\nYou'll get half the money now, and the other half on completion of the job.\tVous recevrez la moitié de l'argent maintenant, et l'autre moitié une fois le boulot accompli.\n\"I'm not accustomed to working day and night.\" \"You'll soon get used to it.\"\t\"Je ne suis pas habitué à travailler le jour et la nuit.\" \"Vous vous y ferez bientôt\".\n\"Thank you, I'd love to have another piece of cake,\" said the shy young man.\t\"Merci, je reprendrais bien du gâteau\", dit le jeune homme timide.\nA cargo vessel, bound for Athens, sank in the Mediterranean without a trace.\tUn navire cargo, à destination d'Athènes, a sombré en Méditerranée sans laisser de trace.\nA more experienced lawyer would have dealt with the case in a different way.\tUn avocat plus expérimenté aurait traité l'affaire différemment.\nAfter a hectic few days at work, Tom is looking forward to a change of pace.\tAprès quelques jours mouvementés au travail, Tom attend avec impatience un changement de rythme.\nBlind people read by touching, using a system of raised dots called Braille.\tLes aveugles lisent en touchant grâce à un système de points en relief, le Braille.\nChildren under thirteen years of age are not admitted to this swimming pool.\tLes enfants de moins de treize ans ne sont pas admis dans cette piscine.\nCompanies with diversified holdings tend to weather economics shocks better.\tLes sociétés disposant d'actifs diversifiés tendent à mieux encaisser les chocs économiques.\nDo you think the Supersonics will go all the way to the world championships?\tPensez-vous que les \"Supersonics\" vont se frayer un chemin jusqu'au championnat du monde ?\nDon't forget to spend a little time looking over your notes before the exam.\tN'oublie pas de passer un peu de temps à parcourir tes notes avant l'examen.\nDue to the reason that I described above, I arrived at a different decision.\tEn raison de ce que j'ai décrit plus haut, je suis parvenu à une décision différente.\nEven if you go far away, let's keep in touch with each other over the phone.\tMême si tu pars loin, restons en contact par téléphone.\nEverywhere he went, he taught love, patience, and most of all, non-violence.\tPartout sur son chemin il enseignait l'amour, la patience, et par-dessus tout, la non-violence.\nFaith is taking the first step, even when you don't see the whole staircase.\tLa foi c'est entamer la première marche, même lorsqu'on ne voit pas la totalité de l'escalier.\nFrom the buyer's point of view, the prices of these CD players are too high.\tDu point de vue de l'acheteur, le prix de ces lecteurs de CD est trop élevé.\nGo straight down the road, and when you pass the traffic light you're there.\tDescendez la rue tout droit et lorsque vous passez le feu, vous y êtes.\nHe is good at voicing the concerns others are too nervous to speak up about.\tIl est bon pour exprimer les inquiétudes que les autres sont trop nerveux pour soulever.\nHe just naturally avoids everything that is intense, difficult or strenuous.\tIl évite bien naturellement tout ce qui est intense, difficile ou astreignant.\nHopefully, Tom won't be as crazy as the rest of his family when he grows up.\tHeureusement, Tom ne sera pas aussi fou que le reste de sa famille quand il grandira.\nI had my purse and commuter ticket stolen while I was sleeping in the train.\tOn m'a dérobé mon sac à main et mon billet tandis que je dormais dans le train.\nI know that it is highly unlikely that we'll be able to sell all this stuff.\tJe sais qu'il est hautement improbable que nous soyons en mesure de vendre tous ces trucs.\nI must have tried on everything in the shop, but nothing looked right on me.\tJ'ai dû essayer tous les articles du magasin, mais rien ne me va.\nI ought to wear this tie more often. I've gotten a lot of compliments today.\tJe devrais porter plus souvent cette cravate. J'ai eu un tas de compliments aujourd'hui.\nI think it's unlikely that a situation like this one would ever occur again.\tJe pense qu'il est improbable qu'une telle situation se reproduise jamais.\nI was asked by my uncle what I intended to be when I graduated from college.\tMon oncle me demanda ce que j'avais l'intention d'être quand je serai diplômé du collège.\nIf I had known about your illness, I could have visited you in the hospital.\tSi j'avais su à propos de ta maladie, je t'aurais rendu visite à l'hôpital.\nIf a man had 11 sheep and all but 9 died, how many sheep would he have left?\tSi un homme avait onze moutons et que tous sauf neuf mourraient, combien de moutons lui resterait-il ?\nIf only I'd been a couple of years older, they would've let me into the bar.\tSi seulement j'avais eu quelques années de plus, ils m'auraient laissé rentrer dans le bar.\nIf only I'd been a couple of years older, they would've let me into the bar.\tSi seulement j'avais eu quelques années de plus, ils m'auraient laissée rentrer dans le bar.\nIf you had made more effort, you would have passed the entrance examination.\tSi tu avais fait plus d'efforts, tu aurais eu ton examen d'entrée.\nIf you only had one more week to live, what would you spend your time doing?\tSi tu n'avais plus qu'une semaine à vivre, à quoi passerais-tu ton temps ?\nIf you only had one more week to live, what would you spend your time doing?\tSi vous n'aviez plus qu'une semaine à vivre, à quoi passeriez-vous votre temps ?\nIn addition, to about 30,000 yen, the wallet contained his driver's license.\tEn plus d'environ 30.000 yens, son portefeuille contenait son permis de conduire.\nIs it worth spending time trying to help people who don't want to be helped?\tCela vaut-il le coup de passer du temps à essayer d'aider des gens qui ne veulent pas être aidés ?\nIt was almost a decade ago, on May 8th, 1980, that Mount St. Helens erupted.\tIl y a seulement une décennie, le 8 mai 1980, que le Mont St Helens entra en éruption.\nIt was really considerate of you to lend me $500 when I was in difficulties.\tC'était réellement prévenant à vous de me prêter 500 dollars quand j'avais des difficultés.\nIt would take me too much time to explain to you why it's not going to work.\tÇa me prendrait trop de temps pour t'expliquer pourquoi ça ne va pas marcher.\nMy stomach started growling right there in the meeting. It was embarrassing.\tMon estomac a commencé à grogner pendant le rendez-vous. C'était embarrassant.\nNearly one billion people around the globe lack access to clean, safe water.\tPrès d'un milliard de personnes autour de la planète manque d'un accès à de l'eau propre et saine.\nNever choose a vocation just because it permits the wearing of good clothes.\tNe choisissez jamais un emploi juste parce qu'il permet de porter de bons vêtements.\nPrimitive calculating machines existed long before computers were developed.\tIl existait des machines à calculer primitives longtemps avant le développement des ordinateurs.\nScientists are debating his theory about the disappearance of the dinosaurs.\tLes scientifiques débattent de sa théorie sur la disparition des dinosaures.\nShe advised him to go there alone, but he didn't think that was good advice.\tElle lui recommanda d'y aller seul mais il ne pensa pas que c'était un bon conseil.\nShe advised him to go there alone, but he didn't think that was good advice.\tElle lui a recommandé d'y aller seul mais il ne pensait pas que c'était un bon conseil.\nShe called to tell me that her husband would be out of town for the weekend.\tElle m'appela pour me dire que son mari ne serait pas en ville pour le week-end.\nSince the Industrial Revolution, the world population has more than tripled.\tDepuis la Révolution Industrielle, la population mondiale a plus que triplé.\nSince the accident, Tom has given up hope of becoming a professional dancer.\tDepuis l'accident, Tom a abandonné l'espoir de devenir un danseur professionnel.\nSome children resort to suicide in order to escape from unbearable pressure.\tCertains enfants ont recours au suicide afin d'échapper à une pression insupportable.\nThe Normans' conquest of England had a great effect on the English language.\tLa conquête normande de l'Angleterre eut beaucoup d'influence sur la langue anglaise.\nThe fire brigade was on the scene within five minutes of receiving the call.\tLes pompiers étaient sur place moins de cinq minutes après avoir reçu l'appel.\nThe girl was carrying several books, not textbooks but thick hardback books.\tLa fille portait plusieurs livres, pas des manuels mais d'épais livres reliés.\nThe machine was too complicated for us to find out the cause of the trouble.\tLa machine était trop compliquée pour que nous trouvions la cause du dérèglement.\nThe most valuable skill one can acquire is the ability to think for oneself.\tLa compétence la plus précieuse que l'on puisse acquérir est celle d'être capable de penser par soi-même.\nThe only reason Tom went to the party was that he expected Mary to be there.\tLa seule raison pour laquelle Tom est venu à la fête était qu'il espérait que Marie soit présente.\nThe president called on the people to unite in fighting poverty and disease.\tLe président a appelé la population à s'unir pour combattre la pauvreté et la maladie.\nThe statue of Hachiko, the faithful dog, stands in front of Shibuya Station.\tLa statue d'Hachiko, le chien fidèle, se dresse devant la gare de Shibuya.\nThe two gunshot victims are in the intensive care unit at a nearby hospital.\tLes deux victimes de la fusillade se trouvent en unité de soins intensifs dans un hôpital des environs.\nThis paragraph is well written, but there is a mistake in the last sentence.\tCe paragraphe est bien écrit, mais il y a une faute dans la dernière phrase.\nTires wear down because of friction between the rubber and the road surface.\tLes pneus s'usent à cause de la friction entre le caoutchouc et la route.\nTo the best of my knowledge, this chemical will prevent germs from breeding.\tPour autant que je sache, ce composé chimique empêchera les germes de se multiplier.\nTom eats mostly fruits and vegetables, and only eats meat about once a week.\tTom mange principalement des fruits et des légumes, et mange de la viande environ une fois par semaines seulement.\nTom wouldn't let me call an ambulance so I drove him to the hospital myself.\tTom a refusé que j'appelle une ambulance alors je l'ai amené à l'hôpital par moi-même.\nWhatever happened to acid rain? You don't hear about it in the news anymore.\tQu'est-il advenu des pluies acides ? On en entend plus parler dans les nouvelles.\nWhen applying to American universities, your TOEFL score is only one factor.\tLors de votre inscription dans les universités américaines, votre note au TOEFL n'est qu'un des facteurs pris en compte.\nWhen we got home last night, the others were already in bed and fast asleep.\tLorsque nous arrivâmes chez nous hier au soir, les autres étaient déjà au lit et dormaient à poings fermés.\nWhen your stomach is busy, digesting a big meal your brain takes a vacation.\tLorsque votre estomac est occupé à digérer un lourd repas, votre cerveau est en vacances.\nWhy don't you hang around a while after everyone else leaves so we can talk?\tPourquoi ne restes-tu pas un moment après que tout le monde soit parti de manière à ce que nous puissions discuter ?\nWhy don't you hang around a while after everyone else leaves so we can talk?\tPourquoi ne restez-vous pas un moment après que tout le monde soit parti de sorte que nous puissions discuter ?\nWith all your money, you should be able to buy just about anything you want.\tAvec tout ton argent, tu devrais pouvoir te payer à peu près tout ce que tu veux.\nYou have to read between the lines to know the true intention of the author.\tIl vous faut lire entre les lignes pour connaitre la véritable pensée de l'auteur.\nYou have to read between the lines to know the true intention of the author.\tIl te faut lire entre les lignes pour connaitre la véritable pensée de l'auteur.\nYou should assume that we won't have enough money to buy everything we want.\tTu devrais supposer que nous n'aurons pas assez d'argent pour acheter tout ce que nous voulons.\nYou should have known better than to go out in the rain without an umbrella.\tTu aurais dû le savoir qu'il ne fallait pas aller sous la pluie sans parapluie.\n\"How about a cup of coffee?\" \"I'd like to, but I have a previous engagement.\"\t\"Un café ?\" \"J'aimerais bien, mais j'ai déjà un rendez-vous de prévu.\"\nA person views things differently according to whether they are rich or poor.\tUne personne voit les choses différemment selon qu'elle est riche ou pauvre.\nAccording to some scholars, a major earthquake could occur at any moment now.\tD'après certains savants, un séisme majeur pourrait maintenant survenir à tout moment.\nAfter I graduated from college, I spent two years traveling around the world.\tAprès avoir été diplômé de l'Université, j'ai passé deux ans à voyager autour du monde.\nAfter I graduated from college, I spent two years traveling around the world.\tAprès avoir été diplômé de l'école, je passai deux ans à voyager autour du monde.\nAre you aware you're being named in a lawsuit against the federal government?\tÊtes-vous au courant que votre nom a été prononcé lors d'un procès contre le gouvernement fédéral ?\nCould you please reschedule the meeting at a time that is convenient for you?\tPourriez-vous, je vous prie, re-programmer la réunion à une heure qui vous convienne ?\nCould you please reschedule the meeting at a time that is convenient for you?\tPourrais-tu, je te prie, re-programmer la réunion à une heure qui te convienne ?\nDo not sign a delivery receipt unless it accurately lists the goods received.\tNe signez pas un bon de réception à moins qu'il ne liste précisément les marchandises réceptionnées.\nDuring my early teens, I was not always on the best of terms with my parents.\tAu début de l'adolescence, je ne m'entendais pas toujours très bien avec mes parents.\nGreater demand for high-quality coffee has helped drive coffee prices higher.\tUne plus grande demande pour du café de haute qualité a contribué à tirer les prix vers le haut.\nHad they known what was about to happen, they would have changed their plans.\tS'ils avaient su ce qui allait arriver, ils auraient changé leurs plans.\nHe can compress the most words into the smallest ideas of any man I ever met.\tDe tous les hommes que j'ai rencontrés, il peut comprimer le plus de mots dans les plus petites idées.\nHikers need to carry a compass with them to find their way through the woods.\tLes randonneurs doivent emporter une boussole avec eux pour trouver leur chemin à travers les bois.\nHis family circumstances were such that he became a teacher out of necessity.\tLa situation financière de sa famille était telle qu'il devint professeur par nécessité.\nI don't think I'll ever sound like a native speaker no matter how much I try.\tJe ne pense pas que j'aurais jamais l'air d'un locuteur natif, aussi fort que j'essaie.\nI entered the museum through the wrong gate. I should have been more careful.\tJ'ai pénétré dans le musée par la mauvaise porte. J'aurais dû faire plus attention.\nI had to cancel that order because we didn't have enough money to pay for it.\tJ'ai dû annuler cette commande car nous ne disposions pas d'assez d'argent pour la payer.\nI have something that belongs to you. Why don't you come over and pick it up?\tJ'ai quelque chose qui t'appartient. Pourquoi ne viens-tu pas ici le récupérer ?\nI managed to catch the 8 o'clock train by running all the way to the station.\tJ'ai réussi à attraper le train de 8h en courant tout au long du chemin jusqu'à la gare.\nI never for a moment imagined that I'd be able to meet so many famous people.\tJe n'ai jamais imaginé un seul instant que je serais en mesure de rencontrer tant de personnalités.\nI never for a moment imagined that I'd be singled out for a full body search.\tJe n'ai jamais imaginé un seul instant que je serais désigné pour une fouille au corps complète.\nI saw you out here by yourself and thought you might like someone to talk to.\tJe vous ai vu seul ici et j'ai pensé que vous aimeriez peut-être quelqu'un à qui parler.\nI saw you out here by yourself and thought you might like someone to talk to.\tJe vous ai vu seule ici et j'ai pensé que vous aimeriez peut-être quelqu'un à qui parler.\nI saw you out here by yourself and thought you might like someone to talk to.\tJe t'ai vu seul ici et j'ai pensé que tu aimerais peut-être quelqu'un à qui parler.\nI saw you out here by yourself and thought you might like someone to talk to.\tJe t'ai vu seule ici et j'ai pensé que tu aimerais peut-être quelqu'un à qui parler.\nI used to use Twitter, but then found it a bit boring, so I stopped using it.\tJ'ai utilisé Twitter, mais j'ai ensuite trouvé ça ennuyeux alors j'ai arrêté de l'utiliser.\nI want each of you to take out a piece of paper and write down what happened.\tJe veux que chacun de vous prenne un morceau de papier et écrive ce qui s'est passé.\nI want each of you to take out a piece of paper and write down what happened.\tJe veux que chacun de vous prenne un morceau de papier et écrive ce qui s'est produit.\nI want each of you to take out a piece of paper and write down what happened.\tJe veux que chacun de vous prenne un morceau de papier et écrive ce qui est arrivé.\nI was unwilling to agree to the proposal, but it seemed that I had no choice.\tJe ne voulais pas accepter la proposition, mais il apparut que je n'avais pas d'autres choix.\nI've heard that you can kill werewolves by shooting them with silver bullets.\tJ'ai entendu que l'on peut tuer les loups-garous en leur tirant dessus avec des balles en argent.\nI've heard that you can kill werewolves by shooting them with silver bullets.\tOn m'a dit qu'on pouvait tuer les loups-garous avec des balles d'argent.\nIf for some reason a man stopped thinking, that man would no longer be a man.\tSi, pour une quelconque raison, un homme s'arrêtait de penser, il cesserait d'être un homme.\nIf it had not been for your raincoat, I would have been drenched to the skin.\tSi ce n'avait été pour votre imperméable, j'aurais été trempé jusqu'aux os.\nIf there's anything at all that you don't understand, you can ask me anytime.\tS'il y a quoi que ce soit que tu ne comprennes pas, tu peux me demander quand tu veux.\nIf you are not satisfied with your share, I'll make it a bit more attractive.\tSi tu n'es pas satisfait de ton lot, je le rendrai un peu plus attractif.\nIf you are not satisfied with your share, I'll make it a bit more attractive.\tSi tu n'es pas satisfait de ta part, je la rendrai un peu plus attractive.\nIf you eat three square meals a day, your body will have the energy it needs.\tSi tu manges trois repas complets par jour, ton corps aura l'énergie dont il a besoin.\nIf you eat three square meals a day, your body will have the energy it needs.\tSi vous mangez trois repas complets par jour, votre corps aura l'énergie dont il a besoin.\nIf you eat three square meals a day, your body will have the energy it needs.\tSi tu manges trois repas complets par jour, ton corps disposera de l'énergie dont il a besoin.\nIf you eat three square meals a day, your body will have the energy it needs.\tSi vous mangez trois repas complets par jour, votre corps disposera de l'énergie dont il a besoin.\nIf you want something done right, sometimes you've just gotta do it yourself.\tSi vous voulez que quelque chose soit fait correctement, il suffit parfois de le faire soi-même.\nIf you want to master a foreign language, you must study as much as possible.\tSi tu veux maîtriser une langue étrangère, il te faut étudier autant que possible.\nIn the U.S., it is common for people to write a check instead of paying cash.\tAux USA, les gens rédigent couramment des chèques au lieu de payer en liquide.\nIt would be nice if you had a wedge of lime I could squeeze into my icewater.\tÇa serait chouette si vous aviez un quartier de citron vert que je puisse presser dans mon eau glacée.\nIt's so hot outside that I want to spend all day in my air conditioned house.\tIl fait si chaud dehors que je veux passer toute la journée dans ma maison qui a l'air conditionné.\nIt's so hot outside that I want to spend all day in my air conditioned house.\tIl fait si chaud dehors que je veux passer toute la journée dans ma maison qui dispose de l'air conditionné.\nMillions of people across the world are mourning the death of Nelson Mandela.\tDes millions de gens du monde entier pleurent la disparition de Nelson Mandela.\nMy bonus doesn't come close to covering all the loan payments I have to make.\tMon bonus ne permet même pas de couvrir tous les paiements d'emprunts que je dois effectuer.\nMy friend has had three jobs in a year; he never sticks to anything for long.\tMon ami a eu trois emplois en un an ; il ne s'accroche jamais à quoi que ce soit très longtemps.\nNo matter how hard you may study, you cannot master English in a year or two.\tTu auras beau étudier de toutes tes forces, tu n'arriveras pas à maîtriser l'anglais en un an ou deux.\nNo matter how hard you may study, you cannot master English in a year or two.\tVous aurez beau étudier de toutes vos forces, vous n'arriverez pas à maîtriser l'anglais en un an ou deux.\nOf course, recognizing our common humanity is only the beginning of our task.\tBien sûr, reconnaître notre humanité commune est seulement le commencement de notre tâche.\nPeople look at things differently depending on whether they are rich or poor.\tLes gens voient les choses différemment selon qu'ils sont riches ou pauvres.\nSchools are expected to meet the needs of every child, regardless of ability.\tLes écoles sont censées répondre aux besoins de tout enfant, peu importent ses capacités.\nShould you require further information, please do not hesitate to contact me.\tAu cas où vous auriez besoin de plus d'information, veuillez ne pas hésiter à me contacter.\nSomebody told me that today's test was identical to the one we had last year.\tQuelqu'un m'a dit que le devoir surveillé d'aujourd'hui était identique à celui de l'année dernière.\nThat accident is a very good example of what happens when you're not careful.\tCet accident est un très bon exemple de ce qui arrive si on n'est pas prudent.\nThat accident is a very good example of what happens when you're not careful.\tCet accident est très bon exemple de ce qui arrive lorsque l'on n'est pas prudent.\nThe Royal Shakespeare Company is presenting The Merchant of Venice next week.\tLa Royal Shakespeare Company donne une représentation du Marchand de Venise la semaine prochaine.\nThe heat turns off automatically when the room reaches a certain temperature.\tLe chauffage s'éteint automatiquement quand la pièce atteint une certaine température.\nThe most important thing in the Olympic Games is not winning but taking part.\tLa chose la plus importante aux Jeux Olympiques n'est pas de gagner mais d'y prendre part.\nThe population of London is much greater than that of any other British city.\tLa population de Londres est beaucoup plus importante que celle de toute autre ville britannique.\nThere is an urgent need for a more effective method of treating this disease.\tOn a un besoin urgent d'une méthode plus efficace pour traiter cette maladie.\nThis is what is called a 'present' in some countries and 'bribery' in others.\tC'est ce qu'on appelle un \"cadeau\" dans certains pays et \"un pot-de-vin\" dans d'autres.\nThree out of four Americans believe in the existence of paranormal phenomena.\tTrois Étasuniens sur quatre croient en l'existence de phénomènes paranormaux.\nThrough his own efforts and a bit of luck, he won first prize in the contest.\tPar ses propres efforts et un peu de chance, il gagna le premier prix du concours.\nTickets are valid for just two days, including the day they are purchased on.\tLes tickets sont valables seulement deux jours, inclus le jour de l'achat.\nTickets are valid for just two days, including the day they are purchased on.\tLes tickets ne sont valables que deux jours, en comptant le jour où ils sont achetés.\nTom doesn't think it'll rain, but he plans to carry an umbrella just in case.\tTom ne pense pas qu'il va pleuvoir, mais il a l'intention de prendre un parapluie au cas où.\nTom said that he wanted to be alone and then he went upstairs to his bedroom.\tTom a dit qu'il voulait être seul, et il est monté dans sa chambre ensuite.\nWashing your hands regularly is a good way to prevent catching some diseases.\tSe laver les mains régulièrement est un bon moyen de se prémunir de contracter certaines maladies.\nWe keep having the same old problem of people not paying their bills on time.\tNous continuons à avoir le sempiternel problème des gens qui ne paient pas leurs factures à temps.\nWhat happened to that friend of yours that you introduced me to last weekend?\tQu'est-il arrivé à cet ami à toi auquel tu m'as présenté le week-end dernier ?\nWhat happened to that friend of yours that you introduced me to last weekend?\tQu'est-il advenu de cet ami à vous auquel vous m'avez présentée le week-end dernier ?\nWhat they said to you is exactly the opposite of what they told me yesterday.\tCe qu'ils t'ont dit est exactement le contraire de ce qu'ils m'ont dit hier.\nWhy is it so hard for people to understand that I just want to be left alone?\tPourquoi les autres ont-il autant de mal à comprendre mon besoin d'être tout seul?\nWould you please stop pacing around like that and just sit down for a second?\tVoudrais-tu, s'il te plaît, arrêter de faire ainsi les cent pas et juste t'asseoir une seconde ?\nWould you please stop pacing around like that and just sit down for a second?\tVoudrais-tu arrêter de faire ainsi les cent pas et juste t'asseoir une seconde, je te prie ?\nWould you please stop pacing around like that and just sit down for a second?\tVoudriez-vous arrêter de faire ainsi les cent pas et juste vous asseoir une seconde, je vous prie ?\nYou need to stop complaining all the time about things that can't be changed.\tTu devrais arrêter de te plaindre sans cesse sur les choses qui ne peuvent être changées.\nYou're the only person I know besides me who really understands this problem.\tVous êtes la seule personne que je connaisse à part moi qui comprenne réellement ce problème.\nAs F. Scott Fitzgerald famously noted, the rich are different from you and me.\tComme l'avait noté Scott Fitzgerald, les riches sont différents de vous et moi.\nAs a rule of thumb, you should plan on one pound of beef for every two guests.\tÀ grosse maille, vous devriez prévoir une livre de bœuf pour deux invités.\nBecause of the poor harvest, wheat prices have gone up in the last six months.\tDu fait de la mauvaise récolte, les prix du blé ont grimpé dans les derniers six mois.\nCucumbers, spinach, broccoli and onions are considered non-starchy vegetables.\tLes concombres, épinards, brocolis et oignons sont considérés comme des légumes sans amidon.\nHe had been working in the factory for three years when the accident occurred.\tCela faisait trois ans qu'il travaillait dans l'usine lorsque l'accident s'est produit.\nHis speech went on for such a long time that some people began to fall asleep.\tSon discours était si long que des gens ont commencé à s'endormir.\nI can't figure out how to transfer MP3 files from my iPod back to my computer.\tJe n'arrive pas à comprendre comment re-transférer mes fichiers MP3 depuis mon iPod vers mon ordinateur.\nI might have done well on yesterday's test, but I do not know the results yet.\tJ'ai peut-être bien réussi le devoir surveillé d'hier, mais je ne connais pas encore les résultats.\nI remember when we used to never eat vegetables that we didn't grow ourselves.\tJe me rappelle quand nous ne mangions jamais de légumes que nous n'avions pas cultivés nous-mêmes.\nI want to apologize to you for calling you a jerk in front of your girlfriend.\tJe veux vous présenter mes excuses pour vous avoir traité de pauvre type devant votre petite amie.\nI want to apologize to you for calling you a jerk in front of your girlfriend.\tJe veux te présenter mes excuses pour t'avoir traité de pauvre type devant ta petite amie.\nI was the last one to start in the race, but I soon caught up with the others.\tJ'étais le dernier à démarrer dans la course, mais j'ai bientôt rattrapé les autres.\nI'll let you off this time, but I don't ever want to catch you stealing again.\tJe te laisse filer pour cette fois, mais je ne veux plus jamais t'attraper en train de voler.\nI'm sorry that I haven't been able to be here for you like I should have been.\tJe suis désolé d'avoir été dans l'incapacité d'être là pour toi, comme j'aurais dû l'être.\nI'm sorry that I haven't been able to be here for you like I should have been.\tJe suis désolée d'avoir été dans l'incapacité d'être là pour toi, comme j'aurais dû l'être.\nI'm sorry that I haven't been able to be here for you like I should have been.\tJe suis désolé d'avoir été dans l'incapacité d'être là pour vous, comme j'aurais dû l'être.\nI'm sorry that I haven't been able to be here for you like I should have been.\tJe suis désolée d'avoir été dans l'incapacité d'être là pour vous, comme j'aurais dû l'être.\nI'm the type who gets nervous in front of people, so I'm bad at speech making.\tJe suis du genre à devenir nerveux devant un public, donc je ne suis pas bon pour faire des discours.\nI've had a scratchy throat since this morning. I wonder if I've caught a cold.\tJ'ai la gorge qui me gratte depuis ce matin. Je me demande si j'ai attrapé un coup de froid.\nIf you eat a light lunch, you're likely to avoid a mid-afternoon energy slump.\tSi tu manges un déjeuner léger, tu éviteras probablement une baisse d'énergie en milieu d'après-midi.\nIf you eat a light lunch, you're likely to avoid a mid-afternoon energy slump.\tSi vous mangez un déjeuner léger, vous éviterez probablement une baisse d'énergie en milieu d'après-midi.\nIf you want to get elected, you're going to have to improve your public image.\tSi tu veux être élu, tu vas devoir soigner ton image.\nIn my opinion, a well-designed website shouldn't require horizontal scrolling.\tSelon mon opinion, un site web bien conçu ne devrait pas requérir de défilement horizontal.\nIn the automotive industry of the 1970's, Japan beat the U.S. at its own game.\tDans l'industrie automobile des années soixante-dix, le Japon a battu les États-Unis d'Amérique à son propre jeu.\nIn this course, we'll spend time helping you sound more like a native speaker.\tDans ce cours, nous consacrerons du temps à vous aider à vous exprimer en ayant plus l'air d'un locuteur natif.\nNo sooner had she caught sight of me than she started running in my direction.\tÀ peine m'avait-elle aperçu qu'elle commença à courir dans ma direction.\nOther scientists are debating his theory about the disappearance of dinosaurs.\tD'autres scientifiques débattent de sa théorie à propos de la disparition des dinosaures.\nPlease boil the eggs just a little so that even the whites are not quite hard.\tVeuillez faire bouillir juste un peu les œufs, de manière à ce que même les blancs ne soient pas tout à fait durs.\nSome parents complained about the nude pictures in their children's textbooks.\tCertains parents se plaignirent à propos des photos de nus dans les livres de cours de leurs enfants.\nThe ambulance went out of control and came close to running over a pedestrian.\tL'ambulance a perdu le contrôle et a failli écraser un piéton.\nThey say that girls spend more time worrying about how they look than boys do.\tOn dit que les filles passent plus de temps à se préoccuper de leur apparence que les garçons.\nTom knew deep down that it was all his fault, but he wasn't about to admit it.\tAu fond, Tom savait que c'était de sa faute, mais il n'était pas prêt de le reconnaître.\nTom made a promise to himself that he would never make the same mistake again.\tTom s'est promis de ne plus jamais faire la même erreur.\nTom made a promise to himself that he would never make the same mistake again.\tTom s'est promis qu'il ne ferait plus jamais la même erreur.\nTom never admits that he's wrong, because he thinks that's a sign of weakness.\tTom n'admet jamais qu'il a tort, parce qu'il pense que c'est un signe de faiblesse.\nWould you please send me details of your products via e-mail as an attachment?\tS'il vous plaît, pourriez-vous m'envoyer les détails de vos produits en pièce jointe d'un courrier électronique ?\nYou could at least try to be a bit more polite, even though it's not like you.\tTu pourrais au moins essayer d'être un peu plus poli, même si ce n'est pas dans ta nature.\nYou could at least try to be a bit more polite, even though it's not like you.\tVous pourriez au moins tâcher d'être un peu plus poli, même si ça ne vous ressemble pas.\nYou may not agree with him, but at least he stands up for what he believes in.\tPeut-être n'êtes-vous pas d'accord avec lui mais, au moins, il défend ce à quoi il croit.\nYou may not agree with him, but at least he stands up for what he believes in.\tPeut-être n'es-tu pas d'accord avec lui mais, au moins, il défend ce à quoi il croit.\nYou say you want to go to Boston? Why in the world would you want to go there?\tTu dis que tu veux aller à Boston ? Pourquoi mon Dieu veux-tu y aller ?\n\"Who will be coming to the party?\" \"A few friends and four or five colleagues.\"\t\"Qui viendra à la fête?\" \"Quelques amis et trois ou quatre collègues\"\nA man with a watch knows what time it is, a man with two watches is never sure.\tUn homme avec une montre sait quelle heure il est, un homme avec deux montres n'en est jamais sûr.\nAccording to the weather forecast, the typhoon is likely to approach the coast.\tSelon les prévisions météorologiques, le typhon s'approche probablement de la côte.\nAs for me, I am not satisfied with the result of the examination the other day.\tEn ce qui me concerne, je ne suis guère satisfait du résultat du test de l'autre jour.\nBy the way, did you have any spare time to go sightseeing while you were there?\tAu fait, as-tu disposé du moindre temps restant pour aller visiter tandis que tu te trouvais là-bas ?\nBy the way, did you have any spare time to go sightseeing while you were there?\tAu fait, avez-vous disposé du moindre temps restant pour aller visiter tandis que vous vous trouviez là-bas ?\nCharles Lindbergh made the first solo flight across the Atlantic Ocean in 1927.\tCharles Lindbergh a effectué la première traversée en solitaire de l'océan Atlantique en 1927.\nDo you spend most of your time worrying about things that don't matter so much?\tPassez-vous la plupart de votre temps à vous soucier de choses qui n'ont pas tant d'importance ?\nDo you spend most of your time worrying about things that don't matter so much?\tPasses-tu la plupart de ton temps à te soucier de choses qui n'ont pas tant d'importance ?\nEven after twelve months, Tom can't accept that it's over between him and Mary.\tMême après douze mois, Tom ne peut pas admettre que c'est fini entre lui et Marie.\nGiven her interest in children, I am sure teaching is the right career for her.\tCompte tenu de son intérêt pour les enfants, je suis certain que l'enseignement est la carrière idéale pour elle.\nHe argues that the administration must look for alternative sources of revenue.\tIl soutient que l'administration doit proposer d'autres sources de revenus.\nI don't like sand. It's coarse and rough and irritating and it gets everywhere.\tJe n'aime pas le sable. C'est grossier, rugueux, irritant et ça se colle partout.\nI don't like sand. It's coarse and rough and irritating and it gets everywhere.\tJe n'aime pas le sable. C'est grossier, rugueux, irritant et ça se met partout.\nI don't like sand. It's coarse and rough and irritating and it gets everywhere.\tJe n'aime pas le sable. C'est grossier, rugueux, irritant et ça se fourre partout.\nI don't object to your going out to work, but who will look after the children?\tJe ne m'oppose pas à ce que tu ailles travailler à l'extérieur, mais qui s'occupera des enfants ?\nI got it through my head that my parent's strict rules were for my own benefit.\tJe me suis convaincu que les règles strictes de mes parents étaient pour mon propre bien.\nI have been taking ballet lessons since I was three and hope to be a ballerina.\tJe prends des leçons de ballet depuis l'âge de trois ans et j'espère devenir une ballerine.\nI intended to go straight back home, but I sort of wandered inside a bookstore.\tJ'avais l'intention de me rendre directement à la maison, mais j'ai plus ou moins erré dans une librairie.\nI just don't understand what goes through the minds of people who troll forums.\tJe n'arrive pas à comprendre les raisons qui poussent certaines personnes à parasiter les forums.\nI like pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals.\tJ'aime les cochons. Les chiens nous admirent d'en bas. Les chats nous regardent de haut. Les cochons nous traitent en égaux.\nI like this picture, not because it is a masterpiece, but because it has charm.\tJ'aime cette peinture, non pas parce que c'est un chef-d'œuvre mais parce qu'elle a du charme.\nI realize the effort you have put into this project and I really appreciate it.\tJe prends conscience des efforts que vous avez consentis pour ce projet et je l'apprécie vraiment.\nI realized that I didn't want to spend any more time dealing with that problem.\tJ'ai pris conscience que je ne voulais plus passer davantage de temps à traiter ce problème.\nI remember it as if it were yesterday, but in reality it was fifteen years ago.\tJe m'en souviens comme si c'était hier mais en réalité, c'était il y a quinze ans.\nI returned the books I borrowed from the library, and I borrowed some new ones.\tJ'ai ramené les livres que j'avais empruntés à la bibliothèque et j'en ai emprunté des nouveaux.\nI think someone stole all these things and planted them to make me look guilty.\tJe pense que quelqu'un a volé toutes ces choses et les a placées là pour me faire accuser.\nI think what impressed me most was the way Tom could talk to just about anyone.\tJe pense que ce qui m'a le plus impressionné, c'est la façon dont Tom pouvait parler à n'importe qui.\nI want to be able to walk down this street without worrying about getting shot.\tJe veux être en mesure de descendre à pied cette rue sans craindre de me faire tirer dessus.\nI wish I could take back all those terrible things I said about you last night.\tJ'aimerais pouvoir retirer toutes ces choses terribles que j'ai dites sur vous hier soir.\nIf you forget to take your pills for one day, take two pills the following day.\tSi vous oubliez un jour de prendre votre pilule, prenez-en deux le jour suivant.\nIf you forget to take your pills for one day, take two pills the following day.\tSi tu oublies un jour de prendre ta pilule, prends-en deux le jour suivant.\nImproved medical technology has been one of the spin-offs of the space program.\tL'amélioration de la technologie médicale a été une des conséquences du programme spatial.\nIt is always difficult for a son to live up to the expectations of his parents.\tIl est toujours difficile à un fils de satisfaire les espoirs de ses parents.\nIt seems like yesterday, but it's actually nearly ten years since we first met.\tJ'ai l'impression que c'était hier, mais en fait, nous nous sommes rencontrés il y a presque 10 ans.\nIt'll take some time, but I think I'll be able to learn how to play the guitar.\tÇa prendra un peu de temps, mais je pense que je serai capable d'apprendre à jouer de la guitare.\nMany people don't know that antibiotics are ineffective against viral diseases.\tBeaucoup de gens ne savent pas que les antibiotiques sont inefficaces contre les maladies virales.\nOh my gosh! You're the last person I expected to meet in a situation like this.\tMon Dieu ! Tu es la dernière personne que je m'attendais à voir dans une telle situation.\nOn behalf of the company, I would like to express our hearty thanks to you all.\tAu nom de la société, je vous remercie tous chaleureusement.\nPublication of the article was timed to coincide with the professor's birthday.\tLa publication de l'article a été programmée pour coïncider avec l'anniversaire du professeur.\nShe got the money from him even though he said that he wouldn't give it to her.\tElle a réussi à avoir l'argent par lui alors qu'il avait dit qu'il ne lui donnerait pas.\nShe got the money from him even though he said that he wouldn't give it to her.\tElle a réussi à obtenir l'argent de lui alors qu'il a dit qu'il ne lui donnerait pas.\nShe sold all of her furniture, so she could afford to feed herself and her dog.\tElle vendit tout son mobilier de manière à être en mesure de se nourrir elle et son chien.\nShe sold all of her furniture, so she could afford to feed herself and her dog.\tElle a vendu tout son mobilier de manière à être en mesure de se nourrir elle et son chien.\nShe was always trying to provoke me into saying something I would regret later.\tElle essayait constamment de m'inciter à dire quelque chose que je regretterais plus tard.\nSpending time with your significant other should be high on your priority list.\tPasser du temps avec votre bien-aimé devrait être en tête de votre liste de priorités.\nSpending time with your significant other should be high on your priority list.\tPasser du temps avec votre bien-aimée devrait être en tête de votre liste de priorités.\nSpending time with your significant other should be high on your priority list.\tPasser du temps avec ton bien-aimé devrait être en tête de ta liste de priorités.\nSpending time with your significant other should be high on your priority list.\tPasser du temps avec ta bien-aimée devrait être en tête de ta liste de priorités.\nSpending time with your significant other should be high on your priority list.\tPasser du temps avec votre bien-aimé devrait être en tête de la liste de vos priorités.\nSpending time with your significant other should be high on your priority list.\tPasser du temps avec ton bien-aimé devrait être en tête de la liste de tes priorités.\nSpending time with your significant other should be high on your priority list.\tPasser du temps avec ta bien-aimée devrait être en tête de la liste de tes priorités.\nSpending time with your significant other should be high on your priority list.\tPasser du temps avec votre bien-aimée devrait être en tête de la liste de vos priorités.\nSuppressing one's romantic feelings is not the same as having no such feelings.\tRéprimer ses sentiments romantiques n'est pas la même chose que de ne pas avoir de tels sentiments.\nThe little girl, deeply moved by the old man's pitiful story, burst into tears.\tLa petite fille, profondément émue par la triste histoire du vieil homme, fondit en larmes.\nThe removal of the load-bearing beam compromised the structure of the building.\tLe retrait de la poutre porteuse a fragilisé la structure du bâtiment.\nThe stock market crash of October 1987 in New York is still vividly remembered.\tLe crash du marché boursier de New-York d'octobre 1987 est toujours bien vivant dans les mémoires.\nThe whole company stood in silence for a few moments, as a tribute to the dead.\tToute l'entreprise a gardé le silence pendant un moment en hommage aux morts.\nThere are only five minutes left till the train leaves and she hasn't appeared.\tIl ne reste que cinq minutes avant que le train ne parte et elle ne s'est pas montrée.\nThose birds build their nests in the summer and fly to the south in the winter.\tCette race d'oiseau construit son nid en été, et migre vers le sud à l'approche de l'hiver.\nThose who use forks or chopsticks often think people who don't are uncivilized.\tCeux qui utilisent des fourchettes ou des baguettes pensent souvent que les gens qui ne le font pas ne sont pas civilisés.\nTom and Mary went to a fancy restaurant to celebrate their wedding anniversary.\tTom et Mary sont allés dans un restaurant chic pour célébrer leur anniversaire de mariage.\nTom converted about half of his yen into dollars and the other half into euros.\tTom a changé à peu près la moitié de ses yens en dollars et l'autre moitié en euros.\nTom thought that Mary wanted him to kiss her, but he wasn't sure, so he didn't.\tTom pensait que Mary voulait qu'il l'embrasse, mais il n'était pas sûr, donc il ne l'a pas fait.\nTom wanted to ask Mary how old she was, but he thought that maybe he shouldn't.\tTom voulait demander son âge à Mary, mais il a pensé qu'il devrait peut-être ne pas le faire.\nTom was horrified when he noticed that his daughter had had her tongue pierced.\tTom fut horrifié lorsqu'il se rendit compte que sa fille s'était fait faire un piercing dans la langue.\nWe found one large footprint and a couple of different size smaller footprints.\tNous trouvâmes une grande empreinte de pas et quelques unes plus petites, de différentes tailles.\nWe found one large footprint and a couple of different size smaller footprints.\tNous avons trouvé une grande empreinte de pas et quelques unes plus petites, de différentes tailles.\nWhen my wife's friend comes to visit, I find it hard to get a word in edgeways.\tLorsque l'amie de ma femme vient lui rendre visite, j'ai du mal à en placer une.\nWithout a moment's hesitation, they took drastic action against the conspiracy.\tSans un instant d'hésitation, ils prirent des mesures draconiennes contre la conspiration.\nYou had better read your teacher's comments on your compositions one more time.\tVous feriez mieux de relire les commentaires de votre professeur sur votre devoir.\nYou'll never get ahead in this place unless you go through the proper channels.\tVous ne progresserez jamais à ce poste à moins de passer par les canaux appropriés.\nYou're speaking a little too fast for me. Would you speak a little more slowly?\tVous parlez un peu trop vite pour moi. Voudriez-vous parler un peu plus lentement ?\n\"Just go in and tell the boss you want a raise.\" \"That's easier said than done.\"\t«Entre seulement et dis au patron que tu veux une augmentation.» «Plus facile à dire qu'à faire.»\nA good lawyer would leave no stone unturned in his efforts to defend his client.\tUn bon avocat remuerait ciel et terre pour défendre son client.\nAnything you could do in support of their effort would be very much appreciated.\tTout ce que vous pourriez faire à l'appui de leur effort serait très apprécié.\nAs soon as the new teacher entered the classroom, the students began to applaud.\tSitôt le nouveau professeur entré dans la classe, les étudiants commencèrent à s'agiter.\nCar accidents are the leading cause of death for teenagers in the United States.\tLes accidents de voiture sont la cause principale de décès pour les adolescents aux États-Unis d'Amérique.\nDo you think that any really smart person is inherently interested in languages?\tPensez-vous que n'importe quelle personne intelligente soit en soi intéressée par les langues ?\nDo you think that any really smart person is inherently interested in languages?\tPenses-tu que n'importe quelle personne intelligente soit en soi intéressée par les langues ?\nHaving finished all her housework, she sat down on the sofa to watch television.\tAprès avoir fini le ménage, elle s'assit sur le canapé et regarda la télévision.\nHe says that he saw nothing. However, I don't believe what he says is the truth.\tIl dit qu'il n'a rien vu. Cependant, je ne crois pas que ce qu'il dit est la vérité.\nHe soon grows tired of a thing regardless of how much he liked it to begin with.\tIl se fatigue vite d'une chose, indépendamment de l'intensité avec laquelle il l'aimait pour commencer.\nHow much time and energy do you spend on projects that don't make you any money?\tCombien de temps et d'énergie consacres-tu à des projets qui ne te rapportent aucun argent ?\nHow much time and energy do you spend on projects that don't make you any money?\tCombien de temps et d'énergie consacrez-vous à des projets qui ne vous rapportent aucun argent ?\nI admit he's smart, but does he have to talk over everyone's heads all the time?\tJe reconnais qu'il est intelligent, mais doit-il convaincre tout le monde en permanence ?\nI discouraged him from going swimming since it looked like it was going to rain.\tJe l'ai découragé d'aller nager car on aurait dit qu'il allait pleuvoir.\nI tried Buddhist meditation once, but I fell asleep halfway through the session.\tJ'ai essayé une fois la méditation bouddhiste, mais je me suis endormi au milieu de la séance.\nI've heard that it is best to always feed your dog at a specific time every day.\tJ'ai entendu dire qu'il serait mieux de nourrir son chien tous les jours à la même heure.\nIf he is in middle circumstances his clothes will be chosen chiefly for comfort.\tS'il se trouve en situation intermédiaire, il choisira ses vêtements principalement pour leur confort.\nIf my house were a mansion, I would invite everyone I know to my birthday party.\tSi ma maison était un grand appartement, j'inviterais tous ceux que je connais à mon anniversaire.\nIn the winter, I like to stay at home near the fire and listen to the wind blow.\tEn hiver, j'aime rester à la maison, près du feu, et écouter le souffle du vent.\nIt will be a great pleasure for me to translate the story and to read it to you.\tCe me sera un grand plaisir de traduire cette histoire et de vous la lire.\nIt will be a great pleasure for me to translate the story and to read it to you.\tCe me sera un grand plaisir de traduire cette histoire et de te la lire.\nLast night there was still snow on the ground, but this morning it's all melted.\tHier soir, il y avait encore de la neige sur le sol mais ce matin, elle est toute fondue.\nMy band will perform this week at Chuck's Bar and Grill. Please come and see us.\tMon groupe se produira cette semaine à la brasserie «Chez Ginette». Venez nous voir nombreux.\nMy teacher told me that I should have spent more time preparing my presentation.\tMon professeur m'a dit que j'aurais dû passer davantage de temps à préparer mon exposé.\nPeople with rheumatoid arthritis symptoms should be careful about what they eat.\tLes gens présentant des symptômes de polyarthrite rhumatoïde devraient faire attention à ce qu'ils mangent.\nShe is looking for a job where she can make use of her foreign language ability.\tElle cherche un travail où elle puisse utiliser son talent pour les langues étrangères.\nShe was asked to convince him to get his son or someone else to paint the house.\tOn lui demanda de le convaincre de faire peindre la maison par son fils ou quelqu'un d'autre.\nSomething you should know about me is that I'm very much a country boy at heart.\tUne chose que tu devrais savoir, à mon sujet, est que je suis vraiment un garçon de la campagne, au fond du cœur.\nSomething you should know about me is that I'm very much a country boy at heart.\tUne chose que vous devriez savoir, à mon sujet, est que je suis vraiment un garçon de la campagne, au fond du cœur.\nThe athletes trained hard every day to be at their best for the Summer Olympics.\tLes athlètes se sont entrainés dur, tous les jours, pour être au mieux de leur forme pour les jeux olympiques d'été.\nThe bacteria that are transferred during a kiss help improve your immune system.\tLes bactéries, transférées lors d'un baiser, aident à améliorer votre système immunitaire.\nThe bacteria that are transferred during a kiss help improve your immune system.\tLes bactéries transférées lors d'un baiser, aident à améliorer ton système immunitaire.\nThe boss spoke in a condescending tone when addressing the female staff members.\tLe directeur prit un ton condescendant quand il s'adressa aux membres féminins du personnel.\nThe buying and selling of peoples' personal information is becoming a big issue.\tL'achat et la vente de données personnelles devient un problème sérieux.\nThe citizens of this small community don't condone public displays of affection.\tLes citoyens de cette petite communauté désapprouvent les manifestations publiques d'affection.\nThe hour-long concert at the Kennedy Center was broadcast live on TV last night.\tLe concert d'une heure au Kennedy Center a été retransmis en direct à la télévision hier soir.\nThe lock on my drawer had been tampered with and some of my papers were missing.\tOn avait bricolé la serrure de mon tiroir et certains de mes papiers étaient manquants.\nThe more unique each person is, the more he contributes to the wisdom of others.\tPlus une personne est unique, plus elle contribue à la sagesse des autres.\nThe part of an iceberg under the water is much larger than that above the water.\tLa partie immergée d'un iceberg est bien plus grosse que celle au dessus de l'eau.\nThe part of an iceberg under the water is much larger than that above the water.\tLa partie immergée d'un iceberg est bien plus grosse que la partie émergée.\nThe press can't ignore us forever. Sooner or later, they'll do a story about us.\tLa presse ne peut pas nous ignorer éternellement. Tôt ou tard, ils feront un article à notre sujet.\nTom returned from the kitchen with two mugs of coffee and sat down next to Mary.\tTom revint de la cuisine avec deux tasses de café et s'assit à côté de Marie.\nTom usually plays a drum solo at least once every time his band gives a concert.\tTom joue en général au moins un solo de batterie chaque fois que son groupe donne un concert.\nWe got this chair for nothing because the lady next door didn't need it anymore.\tNous avons eu cette chaise pour rien car la dame d'à côté n'en avais plus besoin.\nWhile you are asleep, the bodily functions slow down and body temperature falls.\tQuand on est endormi, l'activité corporelle ralentit et la température du corps chute.\nYou should spend less time complaining and more time doing something productive.\tTu devrais passer moins de temps à te plaindre et davantage à faire quelque chose de productif.\nYou should spend less time complaining and more time doing something productive.\tVous devriez passer moins de temps à vous plaindre et davantage à faire quelque chose de productif.\nA good team is a group of individuals who work together to achieve a common goal.\tUne bonne équipe est un groupe d'individus qui travaillent ensemble à atteindre un objectif commun.\nAccording to my accountant, this isn't a good time to invest in the stock market.\tSelon mon comptable, ce n'est pas le bon moment d'investir son argent dans la bourse.\nAll people can become friends, even if their languages and customs are different.\tMême si leurs langues et leurs coutumes sont différentes, tous les gens peuvent devenir amis.\nAll the sheep were huddled together in the shade of the only tree in the paddock.\tTous les moutons étaient entassés à l'ombre du seul arbre de l'enclos.\nAnyone who can only think of one way to spell a word obviously lacks imagination.\tToute personne ne pouvant envisager qu'une seule manière d'orthographier un mot manque visiblement d'imagination.\nBy postponing what you have to do, you run the risk of never being able to do it.\tEn remettant à plus tard ce qu'on a à faire, on court le risque de ne jamais pouvoir le faire.\nDiplomatic relations have not yet been established between Japan and North Korea.\tLes relations diplomatiques entre le Japon et la Corée du Nord ne sont pas encore établies.\nDo you think your parents spent enough time with you when you were in your teens?\tPenses-tu que tes parents ont passé suffisamment de temps avec toi lorsque tu étais adolescent ?\nDo you think your parents spent enough time with you when you were in your teens?\tPenses-tu que tes parents ont passé suffisamment de temps avec toi lorsque tu étais adolescente ?\nDo you think your parents spent enough time with you when you were in your teens?\tPensez-vous que vos parents ont passé suffisamment de temps avec vous lorsque vous étiez adolescent ?\nDo you think your parents spent enough time with you when you were in your teens?\tPensez-vous que vos parents ont passé suffisamment de temps avec vous lorsque vous étiez adolescente ?\nDo you think your parents spent enough time with you when you were in your teens?\tPensez-vous que vos parents ont passé suffisamment de temps avec vous lorsque vous étiez adolescents ?\nDo you think your parents spent enough time with you when you were in your teens?\tPensez-vous que vos parents ont passé suffisamment de temps avec vous lorsque vous étiez adolescentes ?\nEventually, someone is going to have to tell Tom that he needs to behave himself.\tUn jour, quelqu'un devra dire à Tom qu'il doit se comporter correctement.\nExperts have failed to come up with an explanation of why the explosion happened.\tLes experts ne sont pas parvenus à expliquer l'origine de l'explosion.\nHe keeps his griefs, sorrows, ambitions and most of his real opinions to himself.\tIl garde ses douleurs, ses chagrins, ses ambitions et la plupart de ses véritables opinions pour lui-même.\nHis dress is that of gentleman, but his speech and behavior are those of a clown.\tIl s'habille comme un gentleman mais il parle et agit comme un clown.\nI didn't know the city, and what's more, I couldn't speak a word of the language.\tJe ne connaissais pas la ville, et qui plus est, je ne savais pas un mot de la langue.\nI don't know if it will be fine tomorrow, but if it is fine we'll go on a picnic.\tJe ne sais pas s'il fera beau demain, mais s'il fait beau nous irons pique-niquer.\nI have to be honest. I was a little bit nervous the first time I had an MRI scan.\tJe dois être honnête, j'étais un peu nerveux la première fois que j'ai passé une IRM.\nI was just wondering if you have any experiences you would like to share with us.\tJe me demandais si tu as de quelconques expériences dont tu aimerais nous faire part.\nI've had a slight sore throat since this morning. I wonder if I've caught a cold.\tJ'ai un léger mal de gorge depuis ce matin. Je me demande si j'ai attrapé un coup de froid.\nIf everything goes according to plan, I should be back home again tomorrow night.\tSi tout se passe selon le plan, je devrais être de retour à la maison demain soir.\nIt appears that the victim tried to write the murderer's name with his own blood.\tIl semble que la victime a tenté d'écrire le nom de l'assassin de son propre sang.\nIt appears that the victim tried to write the murderer's name with his own blood.\tIl semble que la victime ait tenté d'écrire le nom du meurtrier avec son propre sang.\nIt appears that the victim tried to write the murderer's name with his own blood.\tIl semble que la victime ait essayé d'écrire le nom du meurtrier de son propre sang.\nIt goes without saying that it was supremely difficult to carry out this mission.\tIl va sans dire qu'il fut extrêmement difficile d'exécuter cette mission.\nIt is better to be a coward for five minutes than dead for the rest of your life.\tIl vaut mieux être lâche durant cinq minutes que mort durant toute une vie.\nMy brother makes it a rule to look over the newspaper before going to his office.\tMon frère a pour habitude de consulter le journal avant d'aller au bureau.\nStudies say that true happiness comes from giving back, not from material things.\tDes études montrent que le bonheur véritable prend sa source dans le don en retour, pas dans les choses matérielles.\nTaking all things into consideration, I have made up my mind to give up the idea.\tEn prenant tous les facteurs en considération, j'ai décidé d'abandonner cette idée.\nThe ages of the two children put together was equivalent to that of their father.\tL'âge des deux enfants additionné ensemble était égale à celui de leur père.\nThe average American living space is twice as large as the living space in Japan.\tL'espace d'habitation moyen aux États-Unis est deux fois plus important que celui du Japon.\nThe changes resulting from the women's movement have affected both women and men.\tLes changements résultants du mouvement des femmes ont affecté et les femmes et les hommes.\nThe most essential thing in the world to any individual is to understand himself.\tLa chose la plus essentielle au monde, pour tout individu, est de se comprendre lui-même.\nThe radio warned us of the coming earthquake and we started gathering our things.\tLa radio nous a averti de la survenue d'un tremblement de terre et nous avons commencé à rassembler nos affaires.\nThere are big differences in broadband speed and quality from country to country.\tIl y a de grosses différences de vitesse et de qualité de haut débit d'un pays à l'autre.\nThis experience will be invaluable as a way of improving the way I study English.\tCette expérience sera inestimable pour améliorer la manière dont j'étudie l'anglais.\nThis monument is dedicated to the soldiers who gave their lives to their country.\tCe monument est dédié aux soldats qui donnèrent leurs vies à leur pays.\nTom was normally very reliable and his absence from the meeting was inexplicable.\tTom était habituellement très fiable et son absence à la réunion était inexplicable.\nWe cannot rule out the possibility that civil war will break out in that country.\tNous ne pouvons pas écarter la possibilité qu'une guerre civile éclate dans ce pays.\nWe went to the theater early, so we could be sure that everyone could get a seat.\tNous nous rendîmes tôt au théâtre, de sorte que nous puissions être assurés que chacun pourrait avoir un fauteuil.\nWe went to the theater early, so we could be sure that everyone could get a seat.\tNous allâmes tôt au théâtre, de sorte que nous puissions être assurés que chacun puisse disposer d'un fauteuil.\nWhat scared Tom the most was the thought that he might not be able to walk again.\tCe qui effrayait le plus Tom était l'idée qu'il ne pourrait peut-être plus re-marcher.\nWhen Tom opened the door, he saw Mary standing there with a six-pack and a pizza.\tLorsque Tom ouvrit la porte, il vit Marie se tenant là, avec un pack de six et une pizza.\nWhy would you want to share this type of information with people you hardly know?\tPourquoi voudriez-vous partager ce type d'information avec des gens que vous connaissez à peine ?\nWhy would you want to share this type of information with people you hardly know?\tPourquoi voudrais-tu partager ce type d'information avec des gens que tu connais à peine ?\n\"How much did you pay for this?\" \"About 20 euros.\" \"Wow! That's incredibly cheap.\"\t« Combien tu as payé pour ça ? » «Environ 20 euros. » « Whaouh ! Ce n'est pas cher du tout ! »\nA few years ago, in San Francisco, a young woman came to us for vocational advice.\tIl y a quelques années, à San Francisco, une jeune femme vint à nous pour une orientation professionnelle.\nA lie can travel halfway around the world while the truth is putting on its shoes.\tUn mensonge peut voyager jusqu'aux antipodes pendant que la vérité en est encore à lacer ses chaussures.\nAfter reflecting on my life up to now, I decided that I needed to change my goals.\tAprès avoir réfléchi sur ma vie jusqu'à présent, j'ai décidé que j'avais besoin de changer mes objectifs.\nAfter spending hours out in the cold winter wind, my skin got all chapped and dry.\tAprès avoir passé des heures au dehors dans le vent froid d'hiver, ma peau devint toute gercée et sèche.\nAs is often the case with young men, he does not pay much attention to his health.\tComme c'est souvent le cas pour les jeunes gens, il ne fait pas beaucoup attention à sa santé.\nAs is often the case with young men, he does not pay much attention to his health.\tComme c'est souvent le cas pour les jeunes gens, il ne fait pas beaucoup cas de sa santé.\nBetween 1820 and 1973, the United States admitted more than 46 million immigrants.\tEntre mille huit cent vingt et mille neuf cent soixante-treize les États-Unis ont accueillis plus de quarante six millions d'immigrants.\nCEO's of American corporations are paid several times their Japanese counterparts.\tLes directeurs généraux des sociétés étasuniennes sont payés plusieurs fois l'équivalent de leurs homologues japonais.\nEach chapter in the textbook is followed by about a dozen comprehension questions.\tChaque chapitre du livre de cours est suivi par une douzaine de questions de compréhension environ.\nHe got up quickly, splashed cold water on his face, brushed his teeth, and shaved.\tIl s'est vite levé, s'est aspergé le visage d'eau froide, s'est brossé les dents, et s'est rasé.\nI discouraged him from going swimming because it looked like it was going to rain.\tJe l'ai découragé d'aller nager parce qu'on aurait dit qu'il allait pleuvoir.\nI don't know when the meeting started, but it started at least thirty minutes ago.\tJ'ignore quand la réunion a commencé mais c'est il y a au moins trente minutes.\nI figured you wouldn't want the teacher to know you hadn't done your homework yet.\tJ'ai songé que tu n'aurais pas voulu que le professeur sache que tu n'avais pas encore fait tes devoirs.\nI know what time you said to be there, but I wasn't able to be there at that time.\tJe sais à quelle heure vous avez dit d'être là mais je n'étais pas en mesure d'y être à cette heure-là.\nI know what time you said to be there, but I wasn't able to be there at that time.\tJe sais à quelle heure tu as dit d'être là mais je n'étais pas en mesure d'y être à cette heure-là.\nI may not know a lot, but I do know that Tom doesn't know what he's talking about.\tJe ne m'y connais peut-être pas beaucoup, mais je sais que Tom ne sait pas de quoi il parle.\nI met an old man who says that he's never eaten at a restaurant in his whole life.\tJ'ai rencontré un vieil homme qui dit qu'il n'a jamais mangé dans un restaurant de toute sa vie.\nI never for a moment imagined I'd be able to afford to live in such a fancy house.\tÀ aucun moment n'ai-je imaginé que je serai en mesure de vivre dans une telle maison de rêve.\nIf Cleopatra's nose had been shorter, the history of the world would be different.\tLe nez de Cléopâtre eût-il été plus court, l'histoire du monde en eût été changée.\nIf it had not been for your foolishness, we would never have been in that trouble.\tSi ce n'avait été par ta stupidité, nous n'aurions jamais eu tous ces ennuis.\nIf it had not been for your foolishness, we would never have been in that trouble.\tSi ce n'avait été par votre stupidité, nous n'aurions jamais eu tous ces ennuis.\nIf you listen to English programs on the radio, you can learn English for nothing.\tEn écoutant les programmes en anglais à la radio, tu peux apprendre l'anglais gratuitement.\nIf your schedule permits, let’s tentatively plan on meeting tomorrow at 2:00 pm.\tSi votre emploi du temps le permet, fixons la réunion à demain, 14 heures.\nIt was obvious to everyone that the marriage would sooner or later end in divorce.\tIl était évident pour tout le monde que le mariage finirait tôt ou tard par un divorce.\nIt's no wonder Tom's sleeping poorly; he drinks up to twelve cups of coffee a day.\tCe n'est pas surprenant que Tom dorme mal, il boit jusqu'à douze tasses de café par jour.\nJapan's foreign aid is decreasing in part because of an economic slowdown at home.\tL'aide internationale du Japon diminue en partie à cause d'un ralentissement de l'économie intérieure.\nManholes are round because that way they won't accidentally fall through the hole.\tLes plaques d'égout sont rondes afin qu'elles ne puissent pas tomber accidentellement dans leur trou.\nNever in my wildest dreams did I ever think that something like this would happen.\tJamais, dans mes rêves les plus fous, n'ai-je pensé que quelque chose de tel surviendrait.\nOf all the things Tom did last weekend, he says that windsurfing was the most fun.\tDe toutes les choses que Tom a faites le week-end dernier, il dit que la planche à voile était la plus amusante.\nRoger Miller was born on January 2, 1936 in the western city of Fort Worth, Texas.\tRoger Miller est né le 2 janvier 1936 dans la ville occidentale de Forth Worth au Texas.\nThe first issue that we have to confront is violent extremism in all of its forms.\tLe premier problème que nous devons affronter est l'extrémisme violent sous toutes ses formes.\nThe more time I spend doing this, the less time I have to do things I enjoy doing.\tPlus je passe de temps à faire ça, moins j'en ai pour faire des choses que j'aime faire.\nThe policeman said that it looked like a self-inflicted gunshot wound to the head.\tL'agent de police indiqua que ça avait l'air d'une blessure par balle volontaire à la tête.\nThe policeman said that it looked like a self-inflicted gunshot wound to the head.\tL'agent de police a indiqué que ça avait l'air d'une blessure par balle volontaire à la tête.\nThe search for alien life is one of humankind's greatest technological challenges.\tLa recherche de vie extra-terrestre est l'un des défis technologiques majeurs de l'humanité.\nThe weather report said that it'll rain this afternoon, but I don't think it will.\tLe bulletin météo a annoncé qu'il pleuvrait cette après-midi, mais je ne le pense pas.\nThere is so much pollution in New York that joggers often wear masks when running.\tLa pollution est telle à New York que les joggeurs portent souvent un masque quand ils courent.\nTom certainly gave the impression that he wasn't planning on being there tomorrow.\tTom donnait certainement l'impression qu'il n'avait pas prévu d'être là demain.\nWhat with good fortune, and his own effort, he won the first prize in the contest.\tAvec la bonne fortune et son propre effort, il remporta le premier prix du concours.\nWhen I visited their apartment, the couple was right in the middle of an argument.\tComme je venais leur rendre visite à leur domicile, le couple était au milieu d'une dispute.\nYou may be able to pass unnoticed in a city, but in a village that's not possible.\tTu serais peut-être capable de passer inaperçu en ville, mais dans un village, ce n'est pas possible.\nAs soon as I can get a decent video camera, I'll start making videos to put online.\tDès que je peux avoir une caméra digne de ce nom, je commencerai à faire des vidéos à mettre en ligne.\nAt the time of the accident, almost all of the passengers on the bus were sleeping.\tAu moment de l'accident, presque tous les passagers du bus étaient endormis.\nExperts say coffee prices are rising mainly because people are willing to pay more.\tLes experts disent que les prix du café augmentent principalement parce que les gens sont disposés à payer davantage.\nI can't tell you. It's a secret and if I told you, it wouldn't be a secret anymore.\tJe ne peux pas te le dire. C'est un secret et si je te le disais, ce ne serait plus un secret.\nI don't believe in astrology, but that doesn't mean that I don't read my horoscope.\tJe ne crois pas en l'astrologie mais ça ne veut pas dire que je ne lis pas mon horoscope.\nI had a lot of gumption when I was young, but now it seems to have all petered out.\tJe jouissais de beaucoup de bon sens lorsque j'étais jeune mais cela semble s'être essoufflé.\nI have many friends who speak fluently, but still don't sound like native speakers.\tJ'ai de nombreux amis qui parlent couramment mais qui ne parlent toujours pas comme des locuteurs natifs.\nI spend as much time working in the garden in one day as my brother does in a week.\tJe passe autant de temps à travailler au jardin en un jour que ce que mon frère passe en une semaine.\nI wanted to discuss this with you yesterday, but you didn't seem to want to listen.\tJe voulais en discuter avec toi, hier, mais tu ne semblais pas vouloir écouter.\nI wanted to discuss this with you yesterday, but you didn't seem to want to listen.\tJe voulais en discuter avec toi, hier, mais tu ne semblais pas disposé à écouter.\nI wanted to discuss this with you yesterday, but you didn't seem to want to listen.\tJe voulais en discuter avec vous, hier, mais vous ne sembliez pas vouloir écouter.\nI wanted to discuss this with you yesterday, but you didn't seem to want to listen.\tJe voulais en discuter avec vous, hier, mais vous ne sembliez pas disposé à écouter.\nI wanted to discuss this with you yesterday, but you didn't seem to want to listen.\tJe voulais en discuter avec vous, hier, mais vous ne sembliez pas disposée à écouter.\nI wanted to discuss this with you yesterday, but you didn't seem to want to listen.\tJe voulais en discuter avec vous, hier, mais vous ne sembliez pas disposés à écouter.\nI wanted to discuss this with you yesterday, but you didn't seem to want to listen.\tJe voulais en discuter avec vous, hier, mais vous ne sembliez pas disposées à écouter.\nI wanted to discuss this with you yesterday, but you didn't seem to want to listen.\tJe voulais en discuter avec toi, hier, mais tu ne semblais pas disposée à écouter.\nI'm begging you, before freaking out on me listen to the end of what I have to say.\tJe t'en supplie, écoute ce que j'ai à te dire jusqu'au bout avant de piquer une crise sur moi.\nI'm thinking of going somewhere for a change of air, since my doctor advises me to.\tJe me demande si je n'irais pas quelque part pour changer d'air, puisque mon médecin me le conseille.\nI've just spoken to your French teacher and he says you're doing well in his class.\tJe viens juste de parler avec ton professeur de français et il dit que tu te débrouilles bien dans sa classe.\nI've just spoken to your French teacher and he says you're doing well in his class.\tJe viens juste de parler avec votre professeur de français et il dit que vous vous en sortez bien dans sa classe.\nIf you want to sell your old sofa, why not put an advertisement in the local paper?\tSi vous voulez vendre votre vieux canapé, pourquoi ne pas mettre une annonce dans le journal local ?\nIf you want to sell your old sofa, why not put an advertisement in the local paper?\tSi tu veux vendre ton vieux canapé, pourquoi ne pas mettre une annonce dans le journal local ?\nIn our next class, we will study the days of the week, the months, and the seasons.\tDans notre prochain cours, nous allons étudier les jours de la semaine, les mois et les saisons.\nIndustrialization had a great influence on the development of the economy in Japan.\tL'industrialisation a eu une grande influence sur le développement économique du Japon.\nIt took some 150 years of struggling for women to gain the freedom they have today.\tIl prit aux femmes quelque 150 ans de lutte pour gagner la liberté qu'elles ont aujourd'hui.\nIt used to be that people thought it was necessary to eat three square meals a day.\tIl était un temps où les gens pensaient qu'il était nécessaire de manger trois repas complets par jour.\nIt was only much later that I came to understand the importance of child education.\tCe n'est que bien plus tard que j'ai compris l'importance de l'éducation des enfants.\nIt's the dynamic interaction between the characters that makes this novel so great.\tC'est l'interaction dynamique entre les personnages qui rend ce roman si bon.\nKissing one's spouse in public is considered acceptable behavior in some countries.\tEmbrasser son conjoint en public est considéré comme un comportement acceptable dans certains pays.\nNow you've mentioned it, I remember coming here with my parents when I was a child.\tMaintenant que tu le mentionnes, je me souviens être venu ici avec mes parents lorsque j'étais enfant.\nNow you've mentioned it, I remember coming here with my parents when I was a child.\tMaintenant que vous en faites mention, je me souviens être venu ici avec mes parents lorsque j'étais enfant.\nShe got so carried away listening to the Beatles that she missed the date with him.\tElle écoutait les Beatles et s'est tellement laissée emporter qu'elle a manqué son rendez-vous amoureux avec lui.\nSixty percent of Japanese adult males drink alcoholic beverages on a regular basis.\tSoixante pourcents des hommes adultes japonais boivent régulièrement de l'alcool.\nSome non-native speakers think they speak the language better than native speakers.\tCertains locuteurs non-natifs pensent qu'ils parlent la langue mieux que les natifs.\nThat's a funny thing about people like you, you don't want to get your hands dirty.\tC'est marrant avec les gens comme vous : vous ne voulez pas vous salir les mains.\nThe cost of building the new hospital was considerably higher than first estimated.\tLe coût de la construction du nouvel hôpital était très supérieur à l'estimation initiale.\nThe grenade blew up before the terrorist could throw it, and his arm was blown off!\tLa grenade explosa avant que le terroriste ne puisse la jeter, et son bras fut déchiqueté !\nThe heart itself is nothing more nor less than a large, tough, leather-like muscle.\tLe cœur lui-même n'est ni plus ni moins qu'un muscle gros et dur, ressemblant à du cuir.\nThe more time you spend talking about what you do, the less time you have to do it.\tPlus tu passes de temps à parler de ce que tu fais, moins de temps tu as pour le faire.\nThe rescue workers are going to hand out supplies to the victims of the earthquake.\tLes sauveteurs vont distribuer des vivres aux victimes du tremblement de terre.\nThe restaurant owner allowed her to take table scraps home to feed all of her dogs.\tLe propriétaire du restaurant l'autorisa à emmener les restes du repas chez elle pour nourrir tous ses chiens.\nThe teacher wrote something on the blackboard, but it was too small for me to read.\tL'instituteur a écrit quelque chose au tableau mais c'était trop petit pour que je le lise.\nThere is an urgent need for understanding how climate change will affect our lives.\tIl faut d'urgence comprendre comment les changements climatiques affecteront nos vies.\nTom certainly had plenty of opportunities to go to concerts while he was in Boston.\tTom avait certainement de nombreuses opportunités pour aller aux concerts pendant qu'il était à Boston.\nWe found a glitch in the program that will have to be dealt with before we move on.\tNous avons trouvé un pépin dans le programme qui devra être traité avant que nous puissions procéder.\nWe'll need a head hunting agency to find the right man for this executive position.\tNous aurons besoin d'une agence de chasseurs de têtes pour trouver l'homme qui convient à ce poste de cadre.\nWhen I was in school, left-handed kids were forced to write with their right hands.\tLorsque j'étais à l'école, les enfants gauchers étaient forcés d'écrire de la main droite.\nWhen he reached the station, the train had already left almost half an hour before.\tQuand il atteignit la gare, le train était déjà parti depuis presque une demi-heure.\nA huge federal budget deficit has been plaguing the American economy for many years.\tUn énorme déficit dans le budget fédéral empoisonne l'économie américaine depuis de nombreuses années.\nAccording to legend, those woods used to be haunted, so people would avoid entering.\tSelon la légende, ces bois étaient hantés, aussi les gens évitaient d'y pénétrer.\nActivist groups for the environment and food safety question the product’s safety.\tLes groupes d'activistes pour l'environnement et la sécurité alimentaire mettent en doute la sécurité du produit.\nAfter she lost her job, she couldn't afford to feed her dogs, so she gave them away.\tAprès qu'elle eut perdu son travail, elle n'était plus en mesure de nourrir ses chiens, alors elle les donna.\nAll the houses in this neighborhood look so much alike that I can't tell them apart.\tToutes les maisons de ce voisinage se ressemblent tellement que je ne peux les différencier.\nHer car might be more pleasant to drive, but it also costs her more for maintenance.\tSa voiture est peut-être plus agréable à conduire, mais elle lui coûte aussi plus cher en frais d'entretien.\nI know you've been waiting a long time, but could you wait just a little bit longer?\tJe sais que vous avez attendu pendant longtemps, mais pourriez-vous attendre juste un peu plus longtemps ?\nI know you've been waiting a long time, but could you wait just a little bit longer?\tJe sais que tu as attendu pendant longtemps, mais pourrais-tu attendre juste un peu plus longtemps ?\nI suppose you want to ask me how I was able to make so much money in so little time.\tJe suppose que vous voulez me demander comment j'ai été en mesure de me faire tant d'argent en si peu de temps.\nI suppose you want to ask me how I was able to make so much money in so little time.\tJe suppose que vous voulez me demander comment j'ai été en mesure de me faire autant d'argent en si peu de temps.\nI suppose you want to ask me how I was able to make so much money in so little time.\tJe suppose que tu veux me demander comment j'ai été en mesure de me faire tant d'argent en si peu de temps.\nI suppose you want to ask me how I was able to make so much money in so little time.\tJe suppose que tu veux me demander comment j'ai été en mesure de me faire autant d'argent en si peu de temps.\nI thought we had eaten everything in the house, but I found another box of crackers.\tJe pensai que nous avions tout mangé dans la maison mais je trouvai une autre boîte de biscuits.\nI thought we had eaten everything in the house, but I found another box of crackers.\tJ'ai pensé que nous avions tout mangé dans la maison mais j'ai trouvé une autre boîte de biscuits.\nI'm really looking forward to next March, when they roll out the new Play Station 2.\tJ'attends vraiment mars prochain, quand ils sortiront la nouvelle « Play Station 2 ».\nIf my wife calls, just tell her I'm in an important meeting and cannot be disturbed.\tSi ma femme appelle, dites-lui simplement que je suis en réunion importante et que je ne peux pas être dérangé.\nIf my wife calls, just tell her I'm in an important meeting and cannot be disturbed.\tSi ma femme appelle, dis-lui que je suis en pleine réunion importante et que je ne peux pas sortir.\nIf you want something to be done right, sometimes you've just got to do it yourself.\tSi vous voulez que quelque chose soit fait correctement, il suffit parfois de le faire soi-même.\nNew Year's cards provide us with the opportunity to hear from friends and relatives.\tLes cartes de Bonne Année nous donnent l'occasion d'avoir des nouvelles des amis et de la famille.\nNew Year's cards provide us with the opportunity to hear from friends and relatives.\tLes cartes de Bonne Année nous fournissent l'occasion d'avoir des nouvelles des amis et des parents.\nResearchers say that it's easier to lose weight if you eat three square meals a day.\tLes chercheurs disent qu'il est plus facile de perdre du poids si vous mangez trois repas complets par jour.\nShe bought him a dog. However, he was allergic to dogs, so they had to give it away.\tElle lui acheta un chien. Cependant, il était allergique aux chiens, ils durent donc le donner.\nShe bought him a dog. However, he was allergic to dogs, so they had to give it away.\tElle lui a acheté un chien. Cependant, il était allergique aux chiens, ils ont donc dû le donner.\nThe coach urged his team not to be complacent following their four consecutive wins.\tL'entraîneur a demandé à son équipe de ne pas se reposer sur ses lauriers à la suite de leurs quatre victoires consécutives.\nThe more guests there are, the more difficult it is to keep a surprise party secret.\tPlus il y a d'invités, plus il est difficile de garder secrète une fête surprise.\nThe more you look, the more you will see, and the more interesting they will become.\tPlus tu regarderas et plus tu verras, et plus intéressant encore ils deviendront.\nThe rainforests are disappearing at the rate of tens of thousands of hectares a day.\tPlusieurs milliers d'hectares de forêt tropicale sont détruits chaque jour.\nTom and Mary were speaking in French, so I had no idea what they were talking about.\tTom et Marie parlaient en français. Je n'avais donc aucune idée de ce dont ils discutaient.\nTom claims he doesn't watch much TV, but he watches more than three hours every day.\tTom prétend qu'il ne regarde pas beaucoup la télévision, mais il la regarde plus de trois heures par jour.\nTom laughed at some of Mary's jokes, but he thought some of them weren't very funny.\tTom a ri à certaines blagues de Mary, mais il pensait que certaines d'entre elles n'étaient pas très drôles.\nVisitors are usually asked to remove their shoes before they enter a Japanese house.\tOn demande usuellement aux visiteurs de retirer leurs chaussures avant de rentrer dans une maison japonaise.\nWhether you believe it or not, I want to get this thing over with as much as you do.\tQue tu le croies ou non, je veux en finir autant que toi avec ça.\nWhether you believe it or not, I want to get this thing over with as much as you do.\tQue vous le croyiez ou non, je veux en finir autant que vous avec ça.\nYou should always spend time doing things that help your children get ahead in life.\tOn devrait toujours passer du temps à faire des choses qui aident nos enfants à avancer dans la vie.\n\"Let's go to the movies next time.\" \"What makes you think there will be a next time?\"\t\"On ira au cinéma, la prochaine fois.\" \"Qu'est-ce qui te fait penser qu'il y aura une prochaine fois ?\"\n\"Let's go to the movies next time.\" \"What makes you think there will be a next time?\"\t\"Nous irons au cinéma, la prochaine fois.\" \"Qu'est-ce qui vous fait penser qu'il y aura une prochaine fois ?\"\nA dance will be held in the school auditorium this Friday evening from 7:30 to 10:00.\tOn dansera dans l'auditorium de l'école ce vendredi soir de dix-neuf heures trente à vingt-deux heures.\nA growing child who doesn't seem to have much energy perhaps needs medical attention.\tUn enfant en pleine croissance qui n'a pas beaucoup d'énergie a peut-être besoin de soins médicaux.\nAll at once, the Buddhist priest burst into laughter, spoiling the solemn atmosphere.\tSoudain, le moine bouddhiste éclata de rire, gâchant ainsi l'atmosphère solennelle.\nAll things considered, I think you should go back home and take care of your parents.\tTout bien considéré, je pense que tu devrais retourner chez toi pour t'occuper de tes parents.\nAlthough our universe is still young, theorists are busy exploring its ultimate fate.\tBien que l'univers soit encore jeune, les théoriciens sont occupés à explorer son destin ultime.\nDaddy, let's make faces at each other and see who can keep from laughing the longest.\tPapa, faisons-nous des grimaces et on va voir qui peut se retenir de rire le plus longtemps.\nEverybody was obeying the speed limit, so I knew there was likely a speed trap ahead.\tTout le monde respectait la limite de vitesse, alors je savais qu'il y avait probablement un radar devant moi.\nHe turned the bottle upside down and shook it, but still the honey wouldn't come out.\tIl renversa la bouteille et la secoua, mais malgré tout le miel n'en sortait pas.\nHe was surprised to find the great artist's masterpiece hung on the wall upside down.\tIl était surpris de voir que le chef-d'œuvre du grand artiste était suspendu au mur à l'envers.\nHis health gradually changed for the better after he went to live in the countryside.\tSa santé s'est améliorée progressivement après que nous soyons partis vivre à la campagne.\nI am wondering if you would like to go and see Kabuki with me while staying in Japan.\tJe me demande si tu voudrais venir voir une pièce de Kabuki avec moi pendant que tu es au Japon.\nI finally have time to reply to the mail that I have received these past three weeks.\tJe dispose enfin du temps pour répondre à la correspondance que j'ai reçue ces trois dernières semaines.\nI hope you know that the last thing I want to do is go there without your permission.\tJ'espère que tu sais que la dernière chose que je veuille faire est de m'y rendre sans ta permission.\nI hope you know that the last thing I want to do is go there without your permission.\tJ'espère que vous savez que la dernière chose que je veuille faire est de m'y rendre sans votre permission.\nI know it's not true, but it definitely seems like the sun revolves around the Earth.\tJe sais que ce n'est pas vrai, mais il semble vraiment que le Soleil tourne autour de la Terre.\nI thought the little boy who was staring and pointing at the foreigner was very rude.\tJe songeais que le petit garçon qui fixait et pointait l'étranger du doigt était très grossier.\nI'd like to ask you some questions about some of the people you have working for you.\tJ'aimerais vous poser des questions à propos de certaines des personnes qui travaillent pour vous.\nI'm reading things like famous novels which have been rewritten in simplified French.\tJe lis par exemple des romans célèbres, réécrits en français simplifié.\nI've heard about it. Your parents disappeared, running out on their debt didn't they?\tJ'en ai entendu parler. Tes parents ont disparu en laissant tomber leur dette, c'est ça ?\nIf people who smoke are deprived of their cigarettes, they get nervous and irritable.\tSi les gens qui fument sont privés de leurs cigarettes, ils deviennent nerveux et irritables.\nIf you guys aren't doing anything later, why don't you come over for a cup of coffee?\tSi vous ne faites rien plus tard, pourquoi ne venez-vous pas prendre une tasse de café ?\nIn any case I just want to make clear that the fact that these are not normal people.\tQuoi qu'il en soit, je veux simplement souligner le fait que ces gens-là ne sont pas normaux.\nIt is important for a nation to have an adequate mix of monetary and fiscal policies.\tIl est important pour une nation d'avoir un assemblage approprié de politiques monétaires et fiscales.\nIt turned out that the cards were stacked against her from the beginning of the game.\tIl s'avéra que les cartes lui étaient contraires depuis le début de la partie.\nIt was after a meeting in America that he decided to write a book for non-scientists.\tC'était après une réunion en Amérique qu'il décida d'écrire un livre pour les non-initiés.\nMake your airplane reservations early since flights fill up quickly around Christmas.\tRéserve ton vol rapidement parce qu'il y a beaucoup de réservations à Noël.\nMany native speakers of Japanese have trouble hearing the difference between B and V.\tDe nombreux locuteurs natifs de la langue japonaise ont des difficultés à entendre la différence entre B et V.\nMy father always speaks to me in French and my mother always speaks to me in English.\tMon père me parle toujours en français et ma mère me parle toujours en anglais.\nNever make the mistake of arguing with people for whose opinions you have no respect.\tNe commettez jamais l'erreur de débattre avec des gens dont vous n'avez pas de respect pour les opinions.\nOne problem translators face is that sometimes the source document is poorly written.\tUn problème que les traducteurs rencontrent est que parfois le document original est mal écrit.\nOur fire alarm sometimes goes off when my mother is cooking something in the kitchen.\tNotre alarme incendie se déclenche parfois lorsque ma mère prépare quelque chose dans la cuisine.\nOur whole case hinges on whether the government's actions were constitutional or not.\tToute notre affaire dépend de si les actions du gouvernement étaient constitutionnelles ou pas.\nOur whole case hinges on whether the government's actions were constitutional or not.\tToutes nos affaires dépendent de la constitutionnalité ou non des actions du gouvernement.\nShe spends a pretty good chunk of time just sitting there and looking out the window.\tElle passe un bon bout de temps juste assise là à regarder par la fenêtre.\nShe was able to be ready early this morning, because she finished packing last night.\tElle a été en mesure d'être prête tôt, ce matin, parce qu'elle a terminé de faire ses bagages hier soir.\nSome healthcare workers spend more time doing paperwork than taking care of patients.\tCertains employés de santé passent davantage de temps à faire de la paperasse qu'à prendre soin de patients.\nThe antiques my father left when he died turned out to be nothing but worthless junk.\tLes choses anciennes que mon père a laissées quand il est mort se révélèrent n'être qu'un bric-à-brac sans valeur.\nThe boss outlined a three-pronged approach to turn the fortune of the company around.\tLe patron a exposé les grandes lignes d'une approche en trois parties pour inverser le sort de l'entreprise.\nThe company, although with some exceptions, usually utilizes its resources very well.\tL'entreprise, à quelques exceptions près, emploie habituellement ses moyens à bon escient.\nThe introduction of foreign plants and animals can cause severe damage to ecosystems.\tL'introduction de plantes et animaux étrangers peut causer des dommages sévères aux écosystèmes.\nThe less there is to justify a traditional custom, the harder it is to get rid of it.\tMoins une coutume traditionnelle est justifiée, plus il est difficile de s'en débarrasser.\nThe loneliness and drabness of working away from people are fatal to his best effort.\tLa solitude et la monotonie du travail à l'écart des gens sont fatals à son meilleur effort.\nThere are two kinds of work in the world--head work and hand work; mental and manual.\tIl y a deux sortes de travail dans le monde : celui de la tête et celui des mains ; intellectuel et manuel.\nThis movement from rural to urban areas has been going on for over two hundred years.\tCe mouvement des zones rurales vers les zones urbaines s'est poursuivi sur plus de deux-cents ans.\nUnless we find some way to drum up more business, bankruptcy will be our only option.\tÀ moins que nous trouvions un moyen de réveiller les affaires, la liquidation sera notre seule option.\nYou should make sure that you have enough money in your pocket to pay for the ticket.\tTu devrais t'assurer que tu as assez d'argent en poche pour payer le billet.\nAll happy families resemble each other, each unhappy family is unhappy in its own way.\tToutes les familles heureuses se ressemblent, mais les familles malheureuses le sont chacune à leur manière.\nAmerican politics are interesting to watch, especially during a presidential election.\tLa politique étasunienne est intéressante à regarder, particulièrement durant une élection présidentielle.\nDemocracy is the worst form of government, except all the others that have been tried.\tLa démocratie est la pire forme de gouvernement, mis à part toutes les autres que l'on a essayées.\nDon't you want to put in another disc? We've been listening to this one for two hours.\tTu ne veux pas mettre un autre disque ? On écoute celui-là depuis deux heures.\nEvery person has a psychological need to feel that what he does is of some importance.\tToute personne a un besoin psychologique de sentir que ce qu'elle fait a une quelconque importance.\nGlobal climatic changes may have been responsible for the extinction of the dinosaurs.\tUn changement climatique global pourrait avoir été responsable de l'extinction des dinosaures.\nHundreds of people marry each year who have known each other only a few days or weeks.\tDes centaines de gens se marient qui ne se sont connus l'un l'autre que quelques jours ou quelques semaines.\nI can go months without an alcoholic drink, but not even one hour without a cigarette.\tJe peux passer des mois sans boire d'alcool, mais pas même une heure sans cigarette.\nI don't need to sound like a native speaker, I just want to be able to speak fluently.\tJe n'ai pas besoin de parler comme un locuteur natif, je veux juste être en mesure de parler couramment.\nI don't think that there is any better way to learn English than by living in America.\tJe ne pense pas qu'il y ait de meilleure méthode pour apprendre l'anglais que de vivre aux États-Unis.\nI don't understand and I'm not used to not understanding. Please explain it once more.\tJe ne comprends pas et je ne suis pas habitué à ne pas comprendre. Veuillez l'expliquer à nouveau, je vous prie.\nI don't understand and I'm not used to not understanding. Please explain it once more.\tJe ne comprends pas et je ne suis pas habitué à ne pas comprendre. Merci de l'expliquer à nouveau, je te prie.\nI don't understand and I'm not used to not understanding. Please explain it once more.\tJe ne comprends pas et je ne suis pas habitué à ne pas comprendre. Explique-le à nouveau, s'il te plait.\nI guess what I've said isn't all that clear, but that's the only way I can explain it.\tJ'imagine que ce que j'ai dit n'est pas si clair que ça, mais c'est la seule façon dont je peux l'expliquer.\nI guess what I've said isn't all that clear, but that's the only way I can explain it.\tJe devine que ce que j'ai dit n'est pas très clair, mais c'est la seule façon que j'ai de l'expliquer.\nIt seems that the policeman in this TV series is a dirty cop who abuses his authority.\tIl semble que le flic de cette série télé soit un ripou qui abuse de son autorité.\nIt's not always possible to eat well when you are traveling in this part of the world.\tIl n'est pas toujours loisible de bien manger lorsqu'on voyage dans cette partie du monde.\nIt's not always possible to eat well when you are traveling in this part of the world.\tIl n'est pas toujours possible de bien manger lorsqu'on voyage dans cette partie du monde.\nIt's recommended that you don't write your passwords down where others might see them.\tIl est recommandé de ne pas écrire ses mots de passe là où d'autres pourraient les voir.\nMany, if not most, professional translators only translate into their native language.\tBeaucoup, sinon la plupart des traducteurs professionnels traduisent seulement vers leur langue natale.\nNow for my next number, I'd like to play a song for you that I learned from my father.\tAlors, pour ma suivante, j'aimerais vous interpréter une chanson que j'ai apprise de mon père.\nOpponents say genetically engineered crops can cross-pollinate and damage other crops.\tLes opposants déclarent que les cultures génétiquement modifiées peuvent polliniser de manière croisée et endommager les autres cultures.\nPlan for the future because that's where you are going to spend the rest of your life.\tAménagez votre avenir, car c'est là que vous allez passer le reste de votre vie.\nShe asked him to give her some money so she could go to a restaurant with her friends.\tElle lui demanda de lui donner de l'argent pour pouvoir aller au restaurant avec ses amis.\nShe asked him to give her some money so she could go to a restaurant with her friends.\tElle lui a demandé de lui donner de l'argent pour pouvoir aller au restaurant avec ses amis.\nSooner or later, someone is going to have to tell Tom that he needs to behave himself.\tTôt ou tard, quelqu'un devra dire à Tom qu'il doit se comporter correctement.\nThe girl had grown up without any money and when she married she became a spendthrift.\tCette fille a grandi sans argent, et une fois mariée, elle est devenue très dépensière.\nThe hardest thing in life is knowing which bridges to cross and which bridges to burn.\tLa chose la plus difficile dans la vie est de savoir quels ponts traverser et lesquels brûler.\nThe research director had the department do a thorough job in testing the new product.\tLe directeur de la recherche fit faire au département un travail complet de test du nouveau produit.\nThere's a chance that tap water may contain harmful substances like chlorine and lead.\tIl y a un risque que l'eau du robinet puisse contenir des substances nocives comme du chlore et du plomb.\nWhen a native speaker tries to help me sound more like a native speaker, I'm thankful.\tLorsqu'un locuteur natif essaie de m'aider à parler davantage comme un natif, je lui en suis reconnaissant.\nWhen it comes to my supervisor, he's very inconsistent, so we never get any work done.\tQuant à mon superviseur, il est très incohérent, du coup le travail n'est jamais fait.\nWhenever I go to a Japanese restaurant, I take the disposable chopsticks home with me.\tÀ chaque fois que je vais au restaurant Japonais, j'emporte les baguettes chez moi.\nWhy don't we just reformat the hard disk? You've been having a lot of trouble with it.\tPourquoi ne pas ré-initialiser le disque dur ? Tu as eu plein de problèmes avec.\nYou could search the world over and never find another woman more beautiful than Mary.\tTu pourrais chercher dans le monde entier, jamais tu ne trouveras une femme plus belle que Marie.\nAccording to a recent study, the average life span of the Japanese is still increasing.\tSelon une étude récente, la durée de vie moyenne des Japonais est en constante augmentation.\nAccording to this magazine, my favorite actress will marry a jazz musician next spring.\tSelon ce magazine, mon actrice favorite épousera un musicien de jazz au printemps prochain.\nCorporate borrowing from financial institutions is rising due to the low interest rate.\tLes emprunts aux institutions financières par les entreprises sont en augmentation du fait du faible taux d'intérêt.\nGovernments usually resort to price control when inflation has reached a certain level.\tLes gouvernements ont d'ordinaire recours au contrôle des prix lorsque l'inflation a atteint un certain niveau.\nHe can't tell a cherry tree from a plum tree, but he can name them in twelve languages.\tIl ne peut pas distinguer un cerisier d'un prunier mais il peut les nommer dans douze langues différentes.\nHe does not care for any sport involving team work or quick responses to other players.\tIl n'a pas d'intérêt pour quelque sport impliquant un travail d'équipe ou des réponses rapides à d'autres joueurs.\nHe was making a speech, but he abruptly stopped speaking when he heard a strange noise.\tIl prononçait un discours, mais il s'arrêta brusquement de parler lorsqu'il entendit un bruit étrange.\nI don't think I'll ever sound like a native speaker and I don't really think I need to.\tJe ne pense pas que je m'exprimerai jamais comme un locuteur natif et je ne pense pas vraiment que j'en ai besoin.\nI don't think I've ever done anything that would cause my parents to want to punish me.\tJe ne pense pas avoir jamais fait quoi que ce soit qui aurait fait que mes parents veuillent me punir.\nI never for a moment imagined that I would still be doing this kind of thing at my age.\tJe n'ai jamais imaginé un seul instant que je serais encore en train de faire ce genre de chose à mon âge.\nI never for a moment imagined that I would still be doing this kind of thing at my age.\tJe n'ai jamais imaginé un seul instant que je serais toujours en train de faire ce genre de chose à mon âge.\nI think it's highly unlikely that we'll ever get any help from the national government.\tJe pense qu'il est hautement improbable que nous obtenions jamais la moindre aide du gouvernement national.\nI would like to drastically decrease the amount of time it takes me to clean the house.\tJ'aimerais diminuer de manière drastique la somme de temps que ça me prend de nettoyer la maison.\nIf there is nothing near them that needs doing, they are sure to go and find something.\tS'il n'y a rien à leur proximité qui doive être fait, il est garanti qu'ils s'en vont trouver quelque chose.\nIf we don't have a solution, the least we can do is acknowledge that there's a problem.\tSi nous n'avons pas de solution, le moins que l'on puisse faire c'est de reconnaître qu'il y a un problème.\nIn Japan, we still sometimes see someone use an abacus, but not as often as we used to.\tAu Japon, on voit toujours parfois quelqu'un utiliser un boulier, mais pas aussi souvent que nous en avions l'habitude.\nLast night, we heard sounds of gunshots and screaming on the street outside our window.\tLa nuit dernière, nous avons entendu des bruits de coups de feu et des cris dans la rue par notre fenêtre.\nThe eating of delicious food is one of the most intense and poignant pleasures of life.\tLa consommation de nourriture délicieuse est l'un des plaisirs de la vie les plus intenses et poignants.\nThe first time you meet people, you should be careful about how near you stand to them.\tLa première fois que vous rencontrez une personne, vous devriez être attentif à la proximité avec laquelle vous vous tenez par rapport à elle.\nThe first time you meet people, you should be careful about how near you stand to them.\tLa première fois que tu rencontres une personne, tu devrais être attentif à la proximité avec laquelle tu te tiens par rapport à elle.\nThe first time you meet people, you should be careful about how near you stand to them.\tLa première fois que tu rencontres une personne, tu devrais être attentive à la proximité avec laquelle tu te tiens par rapport à elle.\nThe first time you meet people, you should be careful about how near you stand to them.\tLa première fois que vous rencontrez une personne, vous devriez être attentive à la proximité avec laquelle vous vous tenez par rapport à elle.\nThe first time you meet people, you should be careful about how near you stand to them.\tLa première fois que vous rencontrez une personne, vous devriez être attentifs à la proximité avec laquelle vous vous tenez par rapport à elle.\nThe first time you meet people, you should be careful about how near you stand to them.\tLa première fois que vous rencontrez une personne, vous devriez être attentives à la proximité avec laquelle vous vous tenez par rapport à elle.\nTo become a professional banjo player, you need to spend thousands of hours practicing.\tPour devenir un joueur professionnel de banjo, il faut passer des milliers d'heures à pratiquer.\nTom put his ear to the door in an effort to overhear what Mary was saying on the phone.\tTom mit son oreille contre la porte afin d'entendre ce que Marie disait au téléphone.\nTom was charged with drunken driving after he was involved in a car accident in Boston.\tTom a été accusé de conduite en état d'ébriété après avoir été impliqué dans un accident de voiture à Boston.\nTom's the kind of person who calls a spade a spade and a lot of people don't like that.\tTom est le genre de personne qui dit les choses comme elles sont et beaucoup de gens n'aiment pas ça.\nAmnesty International often organizes public protests in support of political prisoners.\tAmnistie internationale organise souvent des manifestations en soutien aux prisonniers politiques.\nEat a live frog every morning, and nothing worse will happen to you the rest of the day.\tMangez une grenouille vivante chaque matin, et rien de pire ne vous arrivera le reste de la journée.\nI had to change clothes because what I was wearing wasn't appropriate for the situation.\tJ'ai dû changer de vêtements parce que ce que je portais ne convenait pas à la situation.\nI haven't eaten anything unusual since I've returned home from my trip around the world.\tJe n'ai rien mangé d'inhabituel depuis que je suis revenu de mon voyage autour du monde.\nI hope all but one of your dreams come true, so you always have something to strive for.\tJe vous souhaite que tous vos rêves se réalisent sauf un, de sorte que vous ayez toujours un but à poursuivre.\nI said all along that he was not a person to be trusted, but you would not listen to me.\tJ'ai dit depuis le début qu'il n'était pas une personne digne de confiance, mais tu ne voulais rien entendre.\nI saw many people who had no clothes and I saw many clothes which had no people in them.\tJ'ai vu beaucoup de personnes qui ne portaient pas d'habits sur eux et j'ai vu beaucoup d'habits qui n'étaient portés par personne.\nI used to think that only bears hibernate, but the teacher said that turtles do as well.\tJe pensais que seuls les ours hibernaient, mais l'institutrice a dit que les tortues le font aussi.\nLaughter is like a windshield wiper. It can't stop the rain, but it lets you move ahead.\tLe rire, c'est comme un essuie-glace. Il n'arrête pas la pluie, mais il permet d'avancer.\nThe Catholic Bible contains everything in the Protestant Bible plus several other books.\tLa Bible catholique contient tout de la Bible protestante additionné de plusieurs autres livres.\nThe U.S. Secretary of State is trying to broker a ceasefire between the warring parties.\tLe Secrétaire d'État étasunien tente de négocier un cessez-le-feu entre les factions en guerre.\nThese three hours of driving have worn me out. Let's stop at the first rest area we see.\tCes trois heures au volant m'ont éreinté. Arrêtons-nous à la première aire de repos que nous verrons.\nTom got out of the bathtub and dried himself with the new towel that Mary had given him.\tTom sortit de la baignoire et se sécha avec la nouvelle serviette que Marie lui avait donnée.\nTom shaved off his beard and dyed his hair blonde, hoping people wouldn't recognize him.\tTom s'est rasé la barbe et teint les cheveux en blond en espérant que les gens ne le reconnaîtraient pas.\nWhat surprised me most about that accident is how fast the lawyers arrived on the scene.\tCe qui m'a le plus surpris dans cet accident, c'est la rapidité avec laquelle les avocats sont arrivés sur place.\nYou may not be in the mood to hear this now, but I need to tell you something important.\tPeut-être n'es-tu pas d'humeur à entendre ça maintenant, mais je dois de dire quelque chose d'important.\nYou only really need to sound exactly like a native speaker if you want to become a spy.\tOn a vraiment besoin de parler exactement comme un natif que lorsque l'on veut devenir un espion.\nAlmost the only time a fat man loses his temper is when he has been deprived of his food.\tPresque la seule fois où un gros homme perd son sang-froid est lorsqu'on le prive de sa nourriture.\nAn anonymous benefactor bequeathed several hundred thousand dollars to an animal shelter.\tUn bienfaiteur anonyme a fait don de plusieurs centaines de milliers de dollars à un refuge animalier.\nBecause of modern communication and transportation systems, the world is getting smaller.\tGrâce aux moyens de communication modernes et aux systèmes de transports, le monde a rétréci.\nHe has a reputation as being straight as an arrow. He'd never get involved in corruption.\tIl a la réputation d'être intègre. Il ne serait jamais impliqué dans de la corruption.\nI got together with her mainly because we seemed to share the same feelings about things.\tJe me suis mis avec elle principalement pour la raison qu'on semblait partager les mêmes sentiments sur la vie.\nI shoot the rabbits in my garden with a squirt gun to keep them away from the vegetables.\tJe tire sur les lapins dans mon jardin avec un pistolet à eau pour les tenir éloignés de mes légumes.\nI'm getting little pimples on my face. I wonder if I've been getting enough sleep lately.\tJ'attrape des petits boutons sur le visage. Je me demande si je dors suffisamment ces temps-ci.\nIf farmers don't make a decent living growing peanuts, they will try growing other crops.\tSi les paysans ne retirent pas un revenu décent de la culture des cacahuètes, ils essayeront d'autres cultures.\nIf the university doesn't have enough students, the administration will cancel the class.\tSi l'université ne dispose pas de suffisamment d'étudiants, l'administration annulera le cours.\nIt's very unlikely that a serious art collector would ever buy anything from that source.\tIl est très improbable qu'un collectionneur d'art achète jamais quoi que ce soit de cette origine.\nPeople say that I dream every night, but if I do, I can't ever remember any of my dreams.\tLes gens disent que je rêve toutes les nuits mais si je le fais, je n'arrive jamais à me rappeler aucun de mes rêves.\nPlease don't make me laugh. I did too many sit-ups yesterday and my stomach muscles hurt.\tS'il te plait ne me fais pas rire. J'ai fait trop d'abdominaux hier et mes muscles ventraux me font mal.\nShe advised him to see the dentist, but he said that he didn't have enough time to do so.\tElle lui recommanda de voir le dentiste mais il déclara qu'il ne disposait pas de suffisamment de temps pour le faire.\nShe advised him to see the dentist, but he said that he didn't have enough time to do so.\tElle lui a recommandé de voir le dentiste mais il a déclaré qu'il ne disposait pas de suffisamment de temps pour le faire.\nSince I have no children, I have more time to spend doing volunteer work than parents do.\tComme je n'ai pas d'enfants, je dispose de davantage de temps que les parents à consacrer à des travaux volontaires.\nThe government will provide interest-free loans to firms that participate in the program.\tLe gouvernement allouera des prêts sans intérêts aux sociétés qui participent au programme.\nThe poor acoustics in the hall severely affected the audience's enjoyment of the concert.\tLa médiocre acoustique de la salle a sérieusement affecté le plaisir que le public a retiré du concert.\nThey say that in America anyone can become president, but perhaps that's not really true.\tOn dit qu'aux États-Unis d'Amérique, n'importe qui peut devenir Président, mais ce n'est peut-être pas réellement vrai.\nTom certainly had a point when he said we should allow more time to complete the project.\tTom avait certainement un but quand il a dit que nous devrions permettre plus de temps pour compléter le projet.\nTom killed Mary because he found out she had started the fire that had killed his family.\tTom tua Mary parce qu'il a découvert qu'elle était à l'origine du feu qui ravagea sa famille.\nTom killed Mary because he found out she had started the fire that had killed his family.\tTom tua Mary parce qu'il a découvert qu'elle était à l'origine du feu qui tua sa famille.\nTom killed Mary because he found out she had started the fire that had killed his family.\tTom a tué Mary parce qu'il a découvert qu'elle était à l'origine de l'incendie qui a tué sa famille.\n\"Everything accomplished starts with the dream of it,\" is a saying we all know to be true.\t« Tout ce qui est accompli commence par sa projection » est un dicton dont nous connaissons tous la vérité.\n\"Why have you started learning to play the piano?\" \"Because I want to be a music teacher.\"\t\"Pourquoi avez-vous commencé à apprendre le piano ?\" \"Parce que je veux devenir professeur de musique.\"\nAlthough most islands in the ocean have been mapped, the ocean floor is generally unknown.\tBien que la plupart des îles de l'océan aient été cartographiées, les fonds océaniques sont généralement inconnus.\nBodybuilding is his hobby so he has a very firm tight body with lots of muscle definition.\tLa musculation est son passe-temps c'est pourquoi il a un corps très ferme avec des muscles bien découpés.\nI always thought that a stroke was one of nature's ways to tell you that it's time to die.\tJ'ai toujours pensé qu'un infarctus était la manière dont la nature t'indique qu'il est temps de mourir.\nI am staying with my uncle for the time being, but later I will move to a small apartment.\tJe réside avec mon oncle pour le moment, mais plus tard j'emménagerai dans un petit appartement.\nI began driving our tractor when I was 12 years old to help my father out at harvest time.\tJe conduisais notre tracteur dès l'âge de 12 ans pour aider mon père pendant la moisson.\nI know some of you want to go back to the way things were, but that's not going to happen.\tJe sais que certains d'entre vous veulent revenir aux choses telles qu'elles étaient mais ça ne va pas se produire.\nI know some of you want to go back to the way things were, but that's not going to happen.\tJe sais que certaines d'entre vous veulent revenir aux choses telles qu'elles étaient mais ça ne va pas se produire.\nI know some of you want to go back to the way things were, but that's not going to happen.\tJe sais que certains d'entre vous veulent revenir aux choses telles qu'elles étaient mais ça ne va pas arriver.\nI know some of you want to go back to the way things were, but that's not going to happen.\tJe sais que certaines d'entre vous veulent revenir aux choses telles qu'elles étaient mais ça ne va pas arriver.\nI'm a non-native speaker of English and realize there is a lot that I still need to learn.\tJe suis un locuteur non-natif de l'anglais et je prends conscience que j'ai encore beaucoup à apprendre.\nIf Cleopatra's nose had been shorter, the whole face of the world would have been changed.\tLe nez de Cléopâtre, s'il eût été plus court, toute la face de la terre aurait changé.\nMost of the time, he doesn't get to sleep before two or even three o'clock in the morning.\tLa plupart du temps, il ne s'endort pas avant deux voire trois heures du matin.\nOne out of 455 women doesn't realize she's pregnant until the twentieth week of pregnancy.\tUn femme sur quatre-cent-cinquante-cinq ne prend pas conscience qu'elle est enceinte avant la vingtième semaine de grossesse.\nShe took advantage of our hospitality and stayed a whole month without paying us anything.\tElle profita de notre hospitalité et resta un mois entier sans rien nous payer.\nSorry, but it all came about so suddenly that I haven't got a handle on the situation yet.\tDésolé, mais tout cela s'est produit si soudainement que je n'ai pas encore pu me charger de la situation.\nThe man who is constantly making decisions and being compelled to alter them gets nowhere.\tL'homme qui prend constamment des décisions et est forcé de les altérer ne va nulle part.\nThe police told the demonstrators that they'd be arrested if they didn't move immediately.\tLa police indiqua aux manifestants qu'ils seraient arrêtés s'ils ne bougeaient pas immédiatement.\nTo improve your fluency, you should try speaking with native speakers as often as you can.\tPour améliorer votre fluidité, vous devriez essayer de parler avec des locuteurs natifs le plus souvent possible.\nTo reduce misunderstandings we should learn the techniques for communicating successfully.\tAfin de diminuer les incompréhensions, nous devons apprendre les techniques pour communiquer avec succès.\nTom doesn't like Mary. However, she doesn't particularly care whether he likes her or not.\tTom n'aime pas Mary. Cependant, elle ne se soucie pas particulièrement de savoir si il l'aime ou non.\nTom has enough money to buy any computer in this store. He just needs to decide which one.\tTom a assez d'argent pour acheter n'importe quel ordinateur de ce magasin. Il a seulement besoin de décider lequel.\nWhen Tom was a kid, he became obsessed with the girl who lived across the street from him.\tLorsque Tom était gosse, il est devenu obsédé par la jeune fille qui habitait en face de chez lui.\nYou're the only person I know besides me who is actually interested in this kind of thing.\tVous êtes la seule personne que je connaisse à part moi qui soit réellement intéressée par ce genre de truc.\nYou're the only person I know who doesn't take some kind of medicine at least once a week.\tTu es la seule personne que je connaisse qui ne prend pas un médicament ou un autre au moins une fois par semaine.\nA study found that almost 10% of men were obese in 2008. That was up from about 5% in 1980.\tUne étude a montré que presque dix pour cent des hommes étaient obèses en deux-mille-huit. C'était en augmentation en partant d'environ cinq pour cent en mille-neuf-cent-quatre-vingt.\nAll of your accusations are without foundation. She's innocent and we're going to prove it.\tToutes vos accusations sont sans fondement, elle est innocente et nous le prouverons !\nAs a rule, I prefer people who deal with matters of this kind directly with those involved.\tEn règle générale, je préfère les gens qui traitent ce genre de choses directement avec les personnes concernées.\nAt the party, one of his political opponents humiliated him in the presence of many guests.\tÀ la fête, un de ses opposants politiques l'a humilié en présence de nombreux invités.\nDon't come to me now with that. You should have said something when it originally happened.\tNe viens pas me voir maintenant pour ça. Tu aurais dû en parler dès que c'est arrivé.\nHe is likely to have a book and a cracker at his meals--and then forget to eat the cracker!\tIl a des chances d'avoir un livre et un biscuit pour ses repas...et puis d'oublier de manger le biscuit !\nI like this picture, not just because it is famous, but because it really is a masterpiece.\tJ'aime ce tableau, pas seulement pour sa renommée, mais parce que c'est vraiment un chef-d'œuvre.\nI suggest you have a native speaker read over your report to make sure there are no errors.\tJe suggère que tu fasses relire ton rapport par un natif, pour t'assurer qu'il n'y a pas d'erreurs.\nI'd like to ask you a question, but if this is a bad time, I can come back at another time.\tJ'aimerais vous poser une question mais si le moment n'est pas propice, je peux revenir à un autre moment.\nI'd like to ask you a question, but if this is a bad time, I can come back at another time.\tJ'aimerais te poser une question mais si le moment n'est pas propice, je peux revenir à un autre moment.\nThe best parents of all are those who allow their children to follow their natural talents.\tLes meilleurs de tous les parents sont ceux qui permettent à leurs enfants de suivre leurs talents naturels.\nThe important point to note is that both parties offered similar solutions to this problem.\tLe point important à noter est que les deux groupes ont proposé des solutions similaires à ce problème.\nThe rabbit stood in the middle of the road, mesmerized by the lights of the oncoming truck.\tLe lapin se tenait au milieu de la route, hypnotisé par les phares du camion qui arrivait.\nThere were many things that needed my attention, so I didn't get home until after midnight.\tIl y avait de nombreuses choses qui requéraient mon attention, je ne suis donc rentré chez moi qu'après minuit.\nThere were many things that we wanted to do, but we never got around to doing many of them.\tIl y avait de nombreuses choses que nous voulions faire, mais nous ne sommes pas parvenus à faire beaucoup d'entre elles.\nThere were many things that we wanted to do, but we never got around to doing many of them.\tIl y avait de nombreuses choses que nous voulions faire, mais nous ne sommes pas parvenues à faire beaucoup d'entre elles.\nThis figure is supposed to represent Marilyn Monroe, but I don't think it does her justice.\tCette figurine est censée représenter Marilyn Monroe, mais je ne trouve pas qu'elle lui rende justice.\n67% of those who never smoked said they worried about the health effects of passive smoking.\t67% de ceux qui n'ont jamais fumé ont dit qu'ils s'inquiétaient des effets sur la santé de la fumée passive.\n\"When poverty comes in the door, love flies out the window\" is a saying as old as it is sad.\t« Lorsque la pauvreté passe la porte, l'amour s'envole par la fenêtre » est un adage aussi vieux que triste.\nA \"renovator's dream\" in real estate parlance generally means that the place is a real dump.\tDans le jargon de l'immobilier, un « rêve pour bricoleur » signifie généralement que l'endroit est une vraie décharge.\nA slightly lower interest rate could save thousands of dollars over the life of a home loan.\tUn taux d'intérêt un peu plus bas peut épargner des milliers de dollars au cours de la durée d'un prêt immobilier.\nAccording to legend, ghosts would appear in that forest, so people would not set foot there.\tSelon la légende, cette forêt serait hantée, aussi les gens n'y mettaient pas les pieds.\nAfter I graduated from college, I moved back home and lived with my parents for three years.\tAprès avoir été diplômé de l'école, j'ai de nouveau emménagé chez moi et vécu avec mes parents pendant trois ans.\nAfter I graduated from college, I moved back home and lived with my parents for three years.\tAprès avoir été diplômée de l'école, j'ai de nouveau emménagé chez moi et vécu avec mes parents durant trois ans.\nChildren often want to do things that are dangerous without knowing that they are dangerous.\tLes enfants veulent souvent faire des choses qui sont dangereuses, sans savoir qu'elles sont dangereuses.\nEven though my friend was a vegetarian, I didn't tell him that the soup had some meat in it.\tBien que mon ami fut végétarien, je ne lui dis pas que la soupe contenait de la viande.\nEven though my friend was a vegetarian, I didn't tell him that the soup had some meat in it.\tBien que mon ami soit végétarien, je ne lui ai pas dit que la soupe contenait de la viande.\nHe writes a daily journal, and that inspired me to try doing the same thing, but in English.\tIl tient un journal intime, et cela m'a encouragé à faire pareil, mais en anglais.\nIt should be stressed that we are often influenced by advertising without being aware of it.\tIl y a lieu de souligner que nous sommes souvent inconsciemment influencés par la publicité.\nMy sister will have been studying English for ten years when she graduates from her college.\tMa sœur aura étudié l'anglais durant dix ans quand elle obtiendra son diplôme de l'université.\nNumbers that can be expressed as fractions of two whole numbers are called rational numbers.\tOn dit « rationnel » un nombre qui s'exprime en tant que fraction de deux entiers relatifs.\nShe asked him to help her father clean the garage, but he said that he was too busy to help.\tElle lui demanda d'aider son père à nettoyer le garage mais il déclara qu'il était trop occupé pour le faire.\nShe asked him to help her father clean the garage, but he said that he was too busy to help.\tElle lui a demandé d'aider son père à nettoyer le garage mais il a déclaré qu'il était trop occupé pour le faire.\nThe bank rate cut is expected to relieve the severe financial squeeze that has hit industry.\tOn espère que la baisse des taux bancaires soulagera le sévère resserrement financier qui a frappé l'industrie.\nThe cat was lying stretched out at full length in the sunlight streaming through the window.\tLe chat était étendu de tout son long dans la lumière du soleil, rayonnant par la fenêtre.\nWhen we started out, we realized that if we didn't have a good product, we wouldn't succeed.\tLorsque nous avons commencé, nous avons réalisé que si nous ne disposions pas d'un bon produit, nous ne réussirions pas.\nYou probably eat genetically modified fruits and vegetables all the time without knowing it.\tVous mangez probablement tout le temps des fruits et des légumes génétiquement modifiés sans le savoir.\nA little knowledge of Spanish will go a long way toward making your trip to Mexico enjoyable.\tAvoir quelques notions d'espagnol contribuera largement à rendre ton séjour au Mexique plus agréable.\nAfter he came back from service in Afghanistan, Tom was plagued by flashbacks and nightmares.\tAprès son retour de services en Afghanistan, Tom était tourmenté par des flashbacks et des cauchemars.\nCertainly he is handsome and intelligent, but there is something about him that I can't like.\tIl est certainement beau et intelligent mais il y a quelque chose en lui que je n'arrive pas à aimer.\nI never thought this rubber band would come in handy when I put it in my pocket this morning.\tJe n'ai jamais pensé que cet élastique s'avérerait utile lorsque je l'ai mis dans ma poche ce matin.\nRight now, we have blueberries, blackberries, cherries, strawberries, peaches and nectarines.\tÀ l'heure actuelle, nous avons des myrtilles, des mûres, des cerises, des fraises, des pêches et des nectarines.\nRwandan rebels are pushing their offensive south as fighting continues in the capital Kigali.\tAlors que les combats continuent dans la capitale Kigali, les forces antigouvernementales rwandaises poussent leur offensive vers le sud.\nSince this is your neck of the woods, maybe you can tell us where to find a good pizza joint.\tComme c'est ton bled, peut-être peux-tu nous dire où trouver une bonne pizzeria.\nSince this is your neck of the woods, maybe you can tell us where to find a good pizza joint.\tComme c'est votre bled, peut-être pouvez-vous nous dire où trouver une bonne pizzeria.\nThe man in charge of the merry-go-round decided to make sure everything was working properly.\tL'homme en charge du manège décida de s'assurer que tout fonctionnait correctement.\nThe only thing that matters is whether or not your teacher thinks your report is good enough.\tLa seule chose qui compte vraiment est si oui ou non ton professeur pense que ton exposé est assez bon.\nThe only thing that matters is whether or not your teacher thinks your report is good enough.\tLa seule chose qui compte vraiment est si oui ou non votre professeur pense que votre exposé est assez bon.\nTo laugh at everything that is done or said is stupid, but not to laugh is even more foolish.\tRire de tout ce qui est dit ou fait est idiot mais ne pas rire est encore plus bête.\nTom insisted he hadn't been drinking, but his slurred speech and unsteady gait gave him away.\tTom a insisté qu'il n'avait pas bu, mais son élocution et sa démarche instable le trahissait.\nWe keep our most interesting thoughts and the most interesting side of ourselves hidden away.\tNous gardons secrètes nos pensées les plus intéressantes et la part la plus intéressante de nous-mêmes.\nWhen we started out, our band could only find small clubs in small cities that would hire us.\tQuand nous avons démarré, notre groupe ne pouvait trouver que des petites salles dans de petites villes pour nous engager.\nA business cycle is a recurring succession of periods of prosperity and periods of depression.\tLe cycle d'une entreprise est une succession de périodes de prospérité et de dépression.\nAbraham Lincoln, the 16th president of the United States, was born in a log cabin in Kentucky.\tAbraham Lincoln, le 16e Président des États-Unis, est né dans une fuste au Kentucky.\nAbraham Lincoln, the 16th president of the United States, was born in a log cabin in Kentucky.\tAbraham Lincoln, le 16e Président des États-Unis, est né dans une cabane au Kentucky.\nBear in mind that, under such circumstances, we have no alternative but to find another buyer.\tComprenez bien que dans de telles circonstances, nous n'avons pas d'autres alternatives que de trouver un autre acheteur.\nBy the end of the century, the earth will have experienced a dramatic increase in temperature.\tD'ici la fin du siècle, la terre aura fait l'expérience d'une alarmante augmentation de la température.\nI can't help but feel that if we had gotten to know each other better, we'd have been friends.\tJe ne peux pas m'empêcher de penser que si nous avions mieux fait connaissance, nous aurions été amis.\nI can't help but feel that if we had gotten to know each other better, we'd have been friends.\tJe ne peux pas m'empêcher de penser que si nous avions mieux fait connaissance, nous aurions été amies.\nI realize that this may sound crazy, but I think I've fallen in love with your younger sister.\tJe me rends compte que ça a l'air fou, mais je pense que je suis tombé amoureux de votre sœur cadette.\nI realize that this may sound crazy, but I think I've fallen in love with your younger sister.\tJe me rends compte que ça a l'air fou, mais je pense que je suis tombé amoureux de ta sœur cadette.\nI tried explaining the algebra homework to him, but it just went in one ear and out the other.\tJe tentai de lui expliquer le devoir d'algèbre, mais ça rentra juste par une oreille et ça ressortit pas l'autre.\nIf camping doesn't float your boat, then you probably don't want to spend the weekend with us.\tSi camper n'est pas ton truc, alors tu ne veux probablement pas passer le week-end avec nous.\nIf we were supposed to talk more than listen, we would have been given two mouths and one ear.\tSi on était censé parler plus qu'on écoute, on serait doté de deux bouches et d'une seule oreille.\nIf you want to lose weight, the best thing to do is to eat properly and get a lot of exercise.\tSi vous voulez perdre du poids, la meilleure chose à faire est de manger proprement et faire beaucoup d'exercice.\nIn conversation, one is likely to find out certain things about the other person quite easily.\tDans une conversation, il est probable que quelqu'un découvre assez facilement certaines choses à propos de l'autre personne.\nIn the United States, it takes a minimum of eight years of college to become a medical doctor.\tAux USA, devenir médecin prend un minimum de huit années d'études universitaires.\nIt looks like the question was too easy for you. Next time, I'll have to make it a bit harder.\tIl semble que la question était trop facile pour toi. La prochaine fois, je devrai en faire une un peu plus difficile.\nIt's my fault that the cake was burned. I was talking on the phone and didn't notice the time.\tLe gâteau a brûlé par ma faute. J'étais au téléphone et n'ai pas fait attention à l'heure.\nNo person achieves success or happiness when compelled to do what he naturally dislikes to do.\tPersonne n'atteint au succès ou au bonheur en étant forcé de faire ce qu'il répugne naturellement à faire.\nThe data cited in King's research is taken from UNESCO's 1970 white paper on world population.\tLes données citées dans l'enquête de King proviennent du livre blanc de l'UNESCO de 1970 sur la population mondiale.\nThe wizened, old sorcerer took me under his wing and taught me everything he knew about magic.\tLe vieux sorcier ratatiné me prit sous son aile et m'enseigna tout ce qu'il savait de la magie.\nThere's nothing more annoying than a group of young girls all trying to talk at the same time.\tIl n'y a rien de plus embêtant qu'un groupe de jeunes filles qui essayent toutes de parler en même temps.\nThere's nothing more annoying than a group of young girls all trying to talk at the same time.\tIl n'y a rien de plus embêtant qu'un groupe de jeunes filles qui, toutes, essaient de parler en même temps.\nWe very often only come to appreciate someone or our relationship with them when we lose them.\tNous finissons très souvent par apprécier quelqu'un ou notre relation avec lui seulement lorsque nous le perdons.\nWhen you meet someone for the first time, be careful about how close you stand to that person.\tLorsque vous rencontrez une personne pour la première fois, soyez attentif à la distance à laquelle vous vous en tenez.\nWhen you meet someone for the first time, be careful about how close you stand to that person.\tLorsque tu rencontres une personne pour la première fois, sois attentif à la distance à laquelle tu te tiens d'elle.\nWhen you meet someone for the first time, be careful about how close you stand to that person.\tLorsque tu rencontres une personne pour la première fois, sois attentive à la distance à laquelle tu te tiens d'elle.\nWhen you meet someone for the first time, be careful about how close you stand to that person.\tLorsque vous rencontrez une personne pour la première fois, soyez attentifs à la distance à laquelle vous vous en tenez.\nWhen you meet someone for the first time, be careful about how close you stand to that person.\tLorsque vous rencontrez une personne pour la première fois, soyez attentive à la distance à laquelle vous vous tenez d'elle.\nWhen you meet someone for the first time, be careful about how close you stand to that person.\tLorsque vous rencontrez une personne pour la première fois, soyez attentives à la distance à laquelle vous vous en tenez.\nYou don't know until you've had a child what pain you can feel when something happens to them.\tVous ne savez pas, jusqu'à ce que vous ayez un enfant, quelle douleur vous pouvez ressentir lorsque quelque chose leur arrive.\nA motel is like a hotel only much smaller and is used mostly by people traveling by automobile.\tUn motel ressemble à un hôtel, mais c'est plus petit et utilisé principalement par des gens qui voyagent en voiture.\nAs soon as I can get my son to scan our family photos, I'll upload some of them to our website.\tDès que je parviens à faire scanner nos photos de famille par mon fils, j'en téléchargerai sur notre site web.\nFor some reason, people have been avoiding me like the plague ever since I got back from India.\tPour une raison quelconque, les gens m'ont évité comme la peste depuis que je suis revenu d'Inde.\nFor some reason, people have been avoiding me like the plague ever since I got back from India.\tPour une raison quelconque, les gens m'ont évitée comme la peste depuis que je suis revenue d'Inde.\nI think that Tom and only Tom can do it. However, some people think that Mary could do it, too.\tJe crois que Tom seul peut le faire. Toutefois, il y a ceux qui croient que Marie en est également capable.\nIt's customary for waiters and waitresses to introduce themselves using only their first names.\tIl est usuel chez les serveurs et les serveuses de se présenter en n'employant que leur prénom.\nMary likes to wear clothes with vertical stripes, because she heard they make you look thinner.\tMarie aime porter des vêtements avec des rayures verticales, car elle a entendu dire que ça amincissait.\nProfessional translators quite often specialize in just one field, for example law or medicine.\tLes traducteurs professionnels se spécialisent souvent dans un seul domaine, par exemple le droit ou la médecine.\nThe U.S. Department of Health says people should exercise at least two and a half hours a week.\tLe Département de la Santé des USA déclare que les gens devraient faire de l'exercice au moins deux heures et demie par semaine.\nThe world was on the very brink of nuclear war during the Cuban Missile Crisis in October 1962.\tLe monde était tout au bord d'une guerre nucléaire, lors de la crise des missiles de Cuba, en octobre dix-neuf-cent-soixante-deux.\nTom did not want to throw anything away because he thought that he might need it in the future.\tTom ne voulait rien jeter parce qu'il pensait qu'il pourrait en avoir besoin à l'avenir.\nWe have considered your proposal, and we have decided that we are not able to reduce the price.\tNous avons pris votre proposition en considération et nous avons décidé que nous ne sommes pas en mesure de réduire le prix.\nWe humans have a great way of twisting facts to fit our conclusion as soon as we have made one.\tNous les humains avons une grande disposition à tordre les faits pour qu'ils s'ajustent à notre conclusion dès lors que nous en avons formé une.\nWhat is considered impolite in one language may not be considered impolite in another language.\tCe qui est considéré comme impoli dans une langue peut ne pas l'être dans une autre.\nWhen out at sea, to keep the fish that is caught from spoiling, it is immediately refrigerated.\tEn mer, pour empêcher le poisson qui est capturé de se gâter, il est immédiatement réfrigéré.\nAcidification of the ocean will, in time, threaten the very existence of the Great Barrier Reef.\tL'acidification de l'océan menacera, à un moment, l'existence même de la Grande Barrière de Corail.\nGoing to church doesn't make you a Christian any more than standing in a garage makes you a car.\tAller à l'église ne fait pas davantage de toi un Chrétien que te tenir dans un garage ne fait de toi une voiture.\nI thought a bunch of people would go water skiing with us, but absolutely no one else showed up.\tJe pensais qu'une poignée de gens serait venue faire du ski-nautique avec nous, mais absolument personne ne se manifesta.\nI thought doing this would be easy, but we've been working all day and we're still not finished.\tJe pensais que faire cela serait facile, mais nous avons travaillé toute la journée et nous n'avons pas encore terminé.\nIt's not uncommon for people to give fake personal information when registering to use websites.\tCe n'est pas inhabituel pour les gens de donner de fausses informations quand ils s'inscrivent à des sites web.\nMost of the plain, simple, everyday things he desires can be secured by people of average means.\tLa plupart des choses ordinaires, simples et quotidiennes qu'il désire peut être obtenue par des gens au revenu moyen.\nMozart wrote brilliant, complex musical compositions as easily as you or I would write a letter.\tMozart a écrit de brillantes et complexes compositions musicales aussi facilement que toi ou moi écririons une lettre.\nPeople can begin to love when they choose, but they have no choice when it comes to ending love.\tLes gens peuvent se mettre à aimer lorsqu'ils le veulent mais ils n'ont pas de choix lorsqu'il s'agit d'arrêter d'aimer.\nShe would often bring home table scraps from the restaurant where she worked to feed to her dog.\tElle ramenait souvent des restes du restaurant où elle travaillait pour donner à manger à son chien.\nSince I haven't received an answer, I was wondering if maybe my mail never got delivered to you.\tÉtant donné que je n'ai reçu aucune réponse, je me demandais s'il était possible que mon courrier ne vous ait jamais été livré.\nTo have more than one problem before him at one time makes him irritable, upset and exasperated.\tAvoir devant lui plus d'un problème à la fois le rend irritable, contrarié et exaspéré.\nYou will receive a confirmation email after your account has been activated by an administrator.\tVous allez recevoir une confirmation par courriel après l'activation de votre compte par un administrateur.\nBlood spatter analysis plays an important role in determining what has happened at a crime scene.\tL'analyse des éclaboussures de sang joue un rôle important dans la détermination de ce qui s'est produit sur un lieu de crime.\nCarbon monoxide is a poisonous substance formed by the incomplete combustion of carbon compounds.\tLe monoxyde de carbone est une substance mortelle qui résulte de la combustion incomplète de composés carbonés.\nCulture plays a dynamic role in shaping an individual's character, attitude, and outlook on life.\tLa culture joue un rôle actif dans la formation chez un individu du caractère, de l'attitude et du regard sur la vie.\nFewer and fewer people are working to support more and more people living on government benefits.\tDe moins en moins de gens travaillent à assister de plus en plus de gens vivant des subsides du gouvernement.\nHackers were able to break into the company's computer system and undermine its network security.\tDes pirates informatiques ont été en mesure de s'introduire dans le système informatique de l'entreprise et de saper la sécurité de son réseau.\nHe is usually straightforward and sincere and thereby gains the confidence of those who meet him.\tIl est d'ordinaire direct et sincère et gagne ainsi la confiance de ceux qui le rencontrent.\nI have a lot to do today, so if you don't mind, I'd like to have this discussion at another time.\tJ'ai fort à faire aujourd'hui alors, si ça ne vous dérange pas, j'aimerais avoir cette discussion une autre fois.\nI have a lot to do today, so if you don't mind, I'd like to have this discussion at another time.\tJ'ai beaucoup à faire aujourd'hui alors, si ça ne te dérange pas, j'aimerais avoir cette discussion une autre fois.\nI have no strong opinion about the matter, so whatever the majority thinks is good is OK with me.\tJe n'ai pas d'opinion tranchée sur la question, donc quoi que pense la majorité me convient.\nIf you calculate the electric field using this equation, the result comes out like the following.\tEn utilisant cette équation pour calculer le champ électrique, le résultat vient comme ci-après.\nIf you want to achieve the kind of success that I think you do, then you'll have to study harder.\tSi tu veux obtenir le genre de succès que je pense que tu veux, alors tu devras étudier davantage.\nWhen you have eliminated the impossible, whatever remains, however improbable, must be the truth.\tLorsque l'on a éliminé l'impossible, tout ce qui reste, quoiqu'improbable, doit être la vérité.\nApart from a filing tray full of papers on the desk, everything else in the room was on the floor.\tEn dehors d'une classeur plein de papiers sur le bureau, tout le reste dans la pièce était par terre.\nFrom personal experience, I know that any encounter with him will leave a bad taste in your mouth.\tSelon mon expérience personnelle, je sais que la moindre rencontre avec lui vous laisse un mauvais goût dans la bouche.\nFrom personal experience, I know that any encounter with him will leave a bad taste in your mouth.\tSelon mon expérience personnelle, je sais que la moindre rencontre avec lui te laisse un mauvais goût dans la bouche.\nFrom personal experience, I know that any encounter with him will leave a bad taste in your mouth.\tSelon mon expérience personnelle, je sais que la moindre rencontre avec lui laisse un mauvais goût dans la bouche.\nHe had gone there to help garbage workers strike peacefully for better pay and working conditions.\tIl est allé là-bas pour aider les éboueurs à se mettre en grève pacifiquement pour réclamer un salaire plus élevé et de meilleures conditions de travail.\nI heard that one way to stay healthy is to avoid eating any food with unpronounceable ingredients.\tJ'ai entendu dire qu'une manière de rester en bonne santé est d'éviter de manger de la nourriture contenant des ingrédients imprononçables.\nI think it's unlikely that the next version of Windows will come out before the end of this month.\tJe crois qu'il est improbable que la prochaine version de Windows sorte avant la fin de ce mois-ci.\nI wasn't really doing much of anything, so I decided it'd be a good idea to walk down to the cafe.\tJe foutais pas grand-chose, alors j'ai décidé que ce serait une bonne idée de marcher jusqu'au café.\nI've kept my weight down even though many of my friends have gained weight as they've grown older.\tJ'ai contenu mon poids alors même que beaucoup de mes amies en ont gagné tandis qu'elles prenaient de l'âge.\nSooner or later, every parent has to have a talk with their children about the birds and the bees.\tTôt ou tard, tous les parents doivent avoir une conversation avec leurs enfants au sujet des roses et des choux.\nTom told Mary that he thought a hippopotamus could run at a speed of about 30 kilometers per hour.\tTom a dit à Mary qu'il pensait qu'un hippopotame pouvait courir à une vitesse d'environ trente kilomètres par heure.\nWhen your friends begin to flatter you on how young you look, it's a sure sign you're getting old.\tQuand vos amis commencent à vous dire que vous ne faites pas votre âge, c'est le signe infaillible que vous vieillissez.\nYou know that your English is good when people stop complimenting you on how good your English is.\tVous savez que votre anglais est bon lorsque les gens arrêtent de vous en complimenter.\nChinese officials say economic growth has dropped to a three-year low because of the world economy.\tLes officiels chinois disent que la croissance économique est tombée à son plus bas niveau depuis trois ans en raison de l'économie mondiale.\nGirls begin puberty around the ages of ten to eleven, and boys around the ages of eleven to twelve.\tLes filles commencent leur puberté aux environs de dix ou onze ans et les garçons autour de onze ou douze.\nI can't believe that you aren't at least willing to consider the possibility of other alternatives.\tJe n'arrive pas à croire que vous ne soyez pas au moins disposé à envisager d'autres possibilités.\nI can't believe that you aren't at least willing to consider the possibility of other alternatives.\tJe n'arrive pas à croire que vous ne soyez pas au moins disposée à envisager d'autres possibilités.\nI can't believe that you aren't at least willing to consider the possibility of other alternatives.\tJe n'arrive pas à croire que vous ne soyez pas au moins disposés à envisager d'autres possibilités.\nI can't believe that you aren't at least willing to consider the possibility of other alternatives.\tJe n'arrive pas à croire que vous ne soyez pas au moins disposées à envisager d'autres possibilités.\nI can't believe that you aren't at least willing to consider the possibility of other alternatives.\tJe n'arrive pas à croire que tu ne sois pas au moins disposé à envisager d'autres possibilités.\nI can't believe that you aren't at least willing to consider the possibility of other alternatives.\tJe n'arrive pas à croire que tu ne sois pas au moins disposée à envisager d'autres possibilités.\nI can't believe that you aren't at least willing to consider the possibility of other alternatives.\tJe n'arrive pas à croire que tu ne sois pas tout au moins disposé à envisager d'autres possibilités.\nI can't believe that you aren't at least willing to consider the possibility of other alternatives.\tJe n'arrive pas à croire que tu ne sois pas tout au moins disposée à envisager d'autres possibilités.\nI can't believe that you aren't at least willing to consider the possibility of other alternatives.\tJe n'arrive pas à croire que vous ne soyez pas tout au moins disposées à envisager d'autres possibilités.\nI can't believe that you aren't at least willing to consider the possibility of other alternatives.\tJe n'arrive pas à croire que vous ne soyez pas tout au moins disposés à envisager d'autres possibilités.\nI can't believe that you aren't at least willing to consider the possibility of other alternatives.\tJe n'arrive pas à croire que vous ne soyez pas tout au moins disposée à envisager d'autres possibilités.\nI can't believe that you aren't at least willing to consider the possibility of other alternatives.\tJe n'arrive pas à croire que vous ne soyez pas tout au moins disposé à envisager d'autres possibilités.\nI told you not to play your cello late at night, but you did and now the neighbors have complained.\tJe t'avais dit de ne pas jouer de violoncelle tard la nuit, mais tu l'as fait et maintenant les voisins se sont plaints.\nI'm begging you. Don't make me laugh. I did too many sit-ups yesterday and my stomach muscles hurt.\tJe t'en supplie. Ne me fais pas rire. J'ai fait trop d'abdominaux hier et mes muscles ventraux me font mal.\nIf you were a spy trying to pass as a native speaker and said it that way, you'd likely get caught.\tSi tu étais un espion essayant de te faire passer pour un natif et que tu le disais de cette manière, il est probable que tu te ferais prendre.\nIt never occurred to me to take a picture of how the garden looked before we started pulling weeds.\tIl ne m'est jamais venu à l'esprit de prendre une photo de ce que le jardin avait l'air, avant que nous ne commencions à arracher les mauvaises herbes.\nNo matter how busy Tom gets, he never forgets to write an email to his mother at least once a week.\tMême si Tom est occupé, il n'oublie jamais d'écrire un courriel à sa mère au moins une fois par semaine.\nSince in this organization they're all chiefs and no Indians, it's a wonder any decisions get made.\tVu que dans cette organisation, il n'y a que des chefs et pas d'indiens, c'est un miracle que quelque décision soit effectuée.\nSome people clung to tree branches for several hours to avoid being washed away by the floodwaters.\tCertaines personnes étaient accrochées à des branches d'arbres durant plusieurs heures, afin d'éviter d'être emportées par les eaux.\nThe handyman was supposed to arrive at twelve noon, but got stuck in a traffic jam for a few hours.\tLe réparateur devait arriver à midi, mais il s'est retrouvé coincé dans des bouchons pendant plusieurs heures.\nThe press has been hounding the president nonstop about reneging on his promise not to raise taxes.\tLa presse n'a eu de cesse de pourchasser le Président au sujet de son renoncement à sa promesse de ne pas augmenter les impôts.\nTom did everything within his power to save the children that were trapped in the burning building.\tTom fit tout ce qu'il put pour sauver les enfants pris au piège dans le bâtiment en flammes.\nYou can accelerate as much as you want, but since the car's in neutral, we won't be going anywhere.\tTu peux toujours accélérer, vu qu'on est au point mort, on va aller nulle part.\nYou will never get far without the co-operation, confidence and comradeship of other men and women.\tVous n'irez jamais loin sans la coopération, la confiance et la camaraderie des autres hommes et femmes.\nA high proportion of crime in any country is perpetrated by young males in their teens and twenties.\tUne proportion élevée des crimes, dans quelque pays que ce soit, est perpétrée par de jeunes individus mâles, avant leurs trente ans.\nGiving up smoking is the easiest thing in the world. I know because I've done it thousands of times.\tS'arrêter de fumer, c'est ce qu'il y a de plus facile. Je le sais bien pour l'avoir fait moi-même des milliers de fois.\nHe insists on things being done in the most efficient way and he usually does them that way himself.\tIl insiste pour que les choses soient réalisées de la manière la plus efficace et les réalise lui-même de cette façon.\nI think it's unlikely that aliens similar to what we see in the movies have ever visited our planet.\tJe crois qu'il est improbable que des extraterrestres comme ceux que nous voyons dans les films aient jamais visité notre planète.\nIf you spend too much time in the sun without putting on sunscreen, you are likely to get a sunburn.\tSi tu passes trop de temps au soleil sans mettre de crème solaire, il est probable que tu attrapes un coup de soleil.\nIf you spend too much time in the sun without putting on sunscreen, you are likely to get a sunburn.\tSi vous passez trop de temps au soleil sans mettre de crème solaire, il est probable que vous attrapiez un coup de soleil.\nIf you spend too much time in the sun without putting on sunscreen, you are likely to get a sunburn.\tSi on passe trop de temps au soleil sans mettre de crème solaire, il est probable qu'on attrape un coup de soleil.\nThe bank had the gall to charge a late fee for a payment held up when their online services crashed.\tLa banque a eu le culot d'imputer des frais de retard pour un paiement retardé lorsque leur service en ligne s'est planté.\nThere have been a lot of complaints from consumers that our products don't last as long as we claim.\tIl y a eu de nombreuses réclamations de consommateurs sur le fait que nos produits ne durent pas aussi longtemps que nous le prétendons.\nUnless you started learning English as a child, you're unlikely to ever sound like a native speaker.\tÀ moins d'avoir commencé, enfant, à apprendre l'anglais, il est improbable de jamais passer pour un locuteur natif.\nYou get tired of a beautiful woman after three days. You get used to an ugly woman after three days.\tOn se fatigue d'une belle femme après trois jours. On s'habitue à une femme laide au bout de trois jours.\nAs an Englishman, he is particularly sensitive to the differences between English and American usage.\tEn tant qu'Anglais, il est particulièrement sensible aux différences entre les usages anglais et étasunien.\nBefore I get out of bed, I spend a little time thinking about what I'll be doing the rest of the day.\tAvant de sortir du lit, je passe un peu de temps à songer à ce que je vais faire le reste de la journée.\nFrom the position of the wounds on the body, the police could tell that the attacker was left-handed.\tÀ partir de la position des blessures sur le corps, la police a pu déclarer que l'attaquant était gaucher.\nI know it doesn't look like it, but I've actually gotten rid of a lot of stuff out of the spare room.\tJe sais que ça n'y ressemble pas, mais je me suis vraiment débarrassé de nombreuses choses provenant de la pièce annexe.\nI looked in my closet for something to wear, but couldn't find anything appropriate for the occasion.\tJ'ai cherché dans ma garde-robe quelque chose à porter, mais je n'ai rien pu trouver qui convienne à l'occasion.\nShe advised him to take a long holiday, so he immediately quit work and took a trip around the world.\tElle lui recommanda de prendre de longues vacances, il quitta donc immédiatement le travail et partit en voyage autour du monde.\nShe advised him to take a long holiday, so he immediately quit work and took a trip around the world.\tElle lui a recommandé de prendre de longues vacances, il a donc quitté immédiatement le travail et est parti en voyage autour du monde.\nThe natives of the North-West Pacific Coast of America were probably descendants of tribes from Asia.\tLes indigènes de la côte américaine nord-ouest du Pacifique étaient probablement les descendants de tribus originaires d'Asie.\n\"If you're tired, why don't you go to sleep?\" \"Because if I go to sleep now I will wake up too early.\"\t\"Si t'es fatigué, pourquoi ne vas-tu pas dormir ?\" \"Parce que si j'vais dormir tout de suite, je me réveillerai trop tôt.\"\nDespite the government’s protection, he was the victim of an assassination attempt which killed him.\tEn dépit de la protection du gouvernement, il fut la victime d'une tentative d'assassinat qui le tua.\nEvery student of biology, anatomy, anthropology, ethnology or psychology is familiar with these facts.\tTout étudiant en biologie, anatomie, anthropologie, ethnologie ou psychologie est familier de ces faits.\nVisible from space, the Great Barrier Reef is the largest structure on Earth made by living organisms.\tVisible depuis l'espace, la Grande Barrière de Corail est la plus grande structure sur Terre construite par des organismes vivants.\nWhen you watch television or listen to the radio, the music which you hear is often African in origin.\tLorsque vous regardez la télévision ou écoutez la radio, la musique que vous entendez est souvent d'origine africaine.\nYou say I should know him quite well, but as a matter of fact, I was introduced to him only last week.\tTu dis que je le connais bien, mais en réalité, on me l'a présenté la semaine dernière.\nYou should make sure that you get there on time. Tom won't wait more than ten minutes if you are late.\tTu devrais vérifier que tu seras à l'heure. Tom ne t'attendra pas plus de dix minutes.\nAfter the hatchet job my boss did on my proposal, I'm not sure how long I want to keep on working here.\tAprès le travail d'abattage que le patron a fait sur mes suggestions, je ne suis pas sûr de vouloir travailler encore longtemps ici.\nAnother interesting source of energy is the heat that can be recovered from radioactive waste material.\tUne autre source intéressante d'énergie est la chaleur qui peut être récupérée dans les matériaux à déperdition radioactive.\nDisconnect the power cable from the modem, wait for approximately one minute, then reconnect the cable.\tDéconnectez l'alimentation du modem, attendez environ une minute, puis connectez de nouveau le câble.\nDisconnect the power cable from the modem, wait for approximately one minute, then reconnect the cable.\tDéconnecte l'alimentation du modem, attends environ une minute, puis connecte de nouveau le câble.\nI never see a library without wishing I had time to go there and stay till I had read everything in it.\tJe ne vois jamais une bibliothèque sans souhaiter avoir le temps de m'y rendre et d'y rester jusqu'à ce que j'y aie tout lu.\nNext time I switch jobs, I need work that will let me make use of the experience I've gained up to now.\tLa prochaine fois que je change d'emploi, j'ai besoin d'un travail qui me permettra de mettre à profit l'expérience que j'ai acquise jusqu'à maintenant.\nThe body and the mind of man are so closely bound together that whatever affects one affects the other.\tLe corps et l'esprit de l'homme sont si étroitement liés l'un à l'autre que quoi qu'il arrive à l'un affecte l'autre.\nWhen I visited my hometown this summer, I found the city different from what it had been ten years ago.\tEn visitant ma ville natale cet été, je l'ai trouvée différente de ce qu'elle était dix ans auparavant.\nBetween meals, he usually manages to stow away a generous supply of candy, ice cream, popcorn and fruit.\tEntre les repas, il s'arrange d'ordinaire pour mettre de côté une abondante réserve de sucreries, de crème glacée, de pop-corn et de fruits.\nPoverty does more to bring out the worst in people and conceal the best than anything else in the world.\tLa pauvreté contribue, plus que toute autre chose au monde, à faire ressortir le pire des gens et à dissimuler le meilleur.\nSome people think that it is difficult for a native speaker of English to learn Chinese, but I disagree.\tCertains pensent qu'il est difficile pour un anglophone natif d'apprendre le chinois, mais je ne suis pas d'accord.\nThe world's greatest singers and most of its famous musicians have been fat or at least decidedly plump.\tLes plus grands chanteurs du monde et la plupart de ses musiciens renommés, ont été gros ou tout au moins vraiment enrobés.\nTom thinks he knows how much money Mary makes, but Mary makes quite a bit more than Tom thinks she does.\tTom pense savoir combien d'argent Mary gagne, mais Mary se fait bien plus que ce que Tom pense.\nWhen I got out of prison, I couldn't find a job anywhere near my home since no one would hire an ex-con.\tLorsque je suis sorti de prison, je ne pouvais trouver un emploi où que ce soit près de chez moi, car personne ne voulait employer un ex-détenu.\nA lot of people would like to become famous. However, a lot of famous people wish they weren't so famous.\tBeaucoup de gens voudraient être connus. Cependant, beaucoup de gens célèbres aimeraient ne pas être aussi connus.\nDuring hard times, people might not go on a trip, but they might be willing to pay extra for good coffee.\tQuand les temps sont durs, les gens peuvent ne pas partir en voyage mais ils peuvent être disposés à payer davantage pour du café de bonne qualité.\nHer sewing basket, dresser drawers and pantry shelves are all systematically arranged in apple-pie order.\tSon panier de couture, les tiroirs de son vaisselier et les étagères de son garde-manger sont tous systématiquement ordonnés de manière impeccable.\nI'd love to be a fly on the wall at the meeting of the senior executives about the future of the company.\tJ'aimerais être une petite souris lors de la réunion des dirigeants sur l'avenir de la société.\nMy friend likes to live in the city, but his wife prefers to live in their little cottage in the country.\tMon ami aime vivre en ville, mais sa femme préfère habiter dans leur petite maison de campagne.\nSince there are rice paddies near my house, I often hear frogs croaking all night long this time of year.\tComme il y a des rizières à côté de chez moi, j'entends souvent des grenouilles coasser toute la nuit, à cette époque de l'année.\nSome superstitious people in America believe that if a black cat crosses your path, you'll have bad luck.\tCertaines personnes superstitieuses en Amérique, croient que si un chat noir croise votre chemin, vous aurez de la malchance.\nThomas A. Edison so loves his work that he sleeps an average of less than four hours of each twenty-four.\tThomas Edison adore tellement son travail qu'il dort en moyenne moins de quatre heures toutes les vingt-quatre heures.\nWhat's important isn't which university you've graduated from, but what you learned while you were there.\tL'important, ce n'est pas l'université où tu as obtenu ton diplôme, mais ce que tu as appris lorsque tu y étais.\nLast year, I spent so much time by myself that I almost forgot how to communicate effectively with others.\tL'année passée, j'ai passé tant de temps tout seul que j'ai presque oublié comment communiquer de manière efficace avec les autres.\nNothing will determine our success as a nation in the 21st century more than how well we educate our kids.\tRien ne déterminera plus notre succès en tant que nation du 21ème siècle que la façon dont nous éduquons nos enfants.\nTom wondered if Mary would think that eight in the morning was too early for him to open a bottle of wine.\tTom se demanda si Mary penserait que huit heures du matin était trop tôt pour qu'il ouvre une bouteille de vin.\nWe still have more than halfway to go to get to the top of the mountain. Are you really already exhausted?\tNous avons encore plus de la moitié du chemin à parcourir pour atteindre le sommet. Es-tu vraiment déjà fatigué ?\nWe still have more than halfway to go to get to the top of the mountain. Are you really already exhausted?\tNous avons encore plus de la moitié du chemin à parcourir pour atteindre le sommet. Êtes-vous vraiment déjà fatiguée ?\nWe still have more than halfway to go to get to the top of the mountain. Are you really already exhausted?\tNous avons encore plus de la moitié du chemin à parcourir pour atteindre le sommet. Êtes-vous vraiment déjà fatiguées ?\nWe still have more than halfway to go to get to the top of the mountain. Are you really already exhausted?\tNous avons encore plus de la moitié du chemin à parcourir pour atteindre le sommet. Êtes-vous vraiment déjà fatigués ?\nWhen I woke up today, I yawned, stretched, rubbed the sleep out of my eyes, and put on a pair of slippers.\tLorsque je me suis réveillé ce matin, j'ai baillé, me suis étiré, j'ai frotté le sommeil de mes yeux et j'ai enfilé une paire de pantoufles.\nCats are like girls. If they talk to you it's great, but if you try to talk to them, it doesn't go so well.\tLes chats sont comme les filles. S'ils vous parlent, c'est super, mais si vous essayez de leur parler, ça ne se passe pas si bien.\nIncidentally, this room doesn't have anything like an air conditioner. All it has is a hand-held paper fan.\tDu reste, cette pièce n'est pourvue de rien de tel qu'un climatiseur. Tout ce dont elle dispose est un éventail.\nProviding energy to the poor without destroying the planet any further is this century's biggest challenge.\tFournir de l'énergie aux pauvres sans continuer à détruire la planète est le plus grand défi de ce siècle.\nGive a man a fish and you feed him for a day. Teach a man to fish and you feed him for the rest of his life.\tDonne un poisson à un homme, il mangera un jour. Apprends-lui à pêcher, il mangera toute sa vie.\nTom is respected in the business community because he is always fair and square in his dealings with others.\tTom est respecté dans la communauté des affaires parce qu'il est toujours juste et honnête dans ses rapports avec les autres.\nTom told me that Mary was good at playing the piano, but I didn't really believe him until I heard her play.\tTom m'a dit que Mary jouait bien du piano, mais je ne l'ai pas vraiment cru jusqu'à ce que je l'entende jouer.\nWe can't leave our tents on the beach where they are now. If we do, they'll be under water during high tide.\tNous ne pouvons laisser nos tentes sur la plage où elles sont actuellement. Si nous le faisons, elles se trouveront sous l'eau à la marée haute.\nI know it's kind of late, but would you mind if I came over now? I have something I need to discuss with you.\tJe sais qu'il est assez tard mais cela te dérangerait-il que je vienne chez toi maintenant ? J'ai quelque chose qu'il me faut discuter avec toi.\nI know it's kind of late, but would you mind if I came over now? I have something I need to discuss with you.\tJe sais qu'il est assez tard mais cela vous dérangerait-il que je vienne chez vous maintenant ? J'ai quelque chose qu'il me faut discuter avec vous.\nIf you are a parent, don't allow yourself to set your heart on any particular line of work for your children.\tSi vous êtes parent, ne vous laissez pas aller à pencher en direction d'une voie professionnelle particulière pour vos enfants.\nThe best thing about working in a team is that, when something goes wrong, you can always blame someone else.\tLe meilleur aspect du travail en équipe est que si quelque chose va de travers, on peut toujours le mettre sur le dos de quelqu'un d'autre.\nA person will have the face of an angel when borrowing something, but the face of the devil when returning it.\tUne personne aura le visage d'un ange lorsqu'elle emprunte quelque chose, mais le visage du Diable en le rendant.\nI can't believe that you aren't at least willing to consider the possibility that there's another explanation.\tJe n'arrive pas à croire que tu ne sois pas disposé à au moins envisager la possibilité qu'il y ait une autre explication.\nI can't believe that you aren't at least willing to consider the possibility that there's another explanation.\tJe n'arrive pas à croire que vous ne soyez pas disposé à au moins envisager la possibilité qu'il y ait une autre explication.\nI can't believe that you aren't at least willing to consider the possibility that there's another explanation.\tJe n'arrive pas à croire que tu ne sois pas disposée à au moins envisager la possibilité qu'il y ait une autre explication.\nI can't believe that you aren't at least willing to consider the possibility that there's another explanation.\tJe n'arrive pas à croire que vous ne soyez pas disposée à au moins envisager la possibilité qu'il y ait une autre explication.\nI can't believe that you aren't at least willing to consider the possibility that there's another explanation.\tJe n'arrive pas à croire que vous ne soyez pas disposés à au moins envisager la possibilité qu'il y ait une autre explication.\nI can't believe that you aren't at least willing to consider the possibility that there's another explanation.\tJe n'arrive pas à croire que vous ne soyez pas disposées à au moins envisager la possibilité qu'il y ait une autre explication.\nI honestly think it's better to be a failure at something you love than to be a success at something you hate.\tJe pense sincèrement qu'il est préférable d'échouer à quelque chose que l'on adore plutôt que d'avoir du succès à quelque chose que l'on déteste.\nPresident Barack Obama praised Poland as an example for aspiring democracies in the Middle East and elsewhere.\tLe Président Barack Obama a loué la Pologne comme exemple pour les démocraties en devenir au Moyen-Orient et ailleurs.\nWe're going to make sure that no one is taking advantage of the American people for their own short-term gain.\tNous allons nous assurer que personne ne tire avantage du peuple étasunien pour son propre profit à court terme.\nFrom the moment he arrived there, he kept on bothering his doctor to tell him when he would be able to go home.\tDès le moment où il est arrivé, il n'arrêtait pas de demander quand est-ce qu'il pourrait partir chez lui.\nI realize I may not be the most desirable man in the world, but I still hope you'll consider going out with me.\tJe me rends compte que je ne suis peut-être pas l'homme le plus séduisant du monde mais j'espère quand même que vous envisagerez de sortir avec moi.\nI realize I may not be the most desirable man in the world, but I still hope you'll consider going out with me.\tJe me rends compte que je ne suis peut-être pas l'homme le plus séduisant du monde mais j'espère quand même que tu envisageras de sortir avec moi.\nPeople often lie about what they did on the weekend, so their friends won't realize how boring they really are.\tLes gens mentent souvent à propos de ce qu'ils font de leur week-end pour que leurs amis ne réalisent pas combien leur vie est ennuyeuse.\nThe police suspected there was a connection between the abandoned car and the dead body found three miles away.\tLes policiers soupçonnaient qu'il existait un lien entre la voiture abandonnée et le cadavre trouvé trois kilomètres plus loin.\nThe questions came fast and furious from the large number of reporters who had gathered outside the courthouse.\tLes questions fusèrent de la part du grand nombre de journalistes qui s'étaient assemblés à l'extérieur du tribunal.\nA few people mentioned they would like to attend some sessions later in the day on the Technical Session Agenda.\tCertaines personnes ont mentionné qu'elles aimeraient assister à certaines sessions plus tard dans la journée sur l'Ordre du jour des Sessions Techniques.\nConsider the successes that have been achieved by tired, discouraged people who decided to give it one more try.\tRegarde les succès qu'ont eu des gens fatigués et découragés qui ont pris la décision d'essayer une dernière fois.\nConsider the successes that have been achieved by tired, discouraged people who decided to give it one more try.\tRegardez les succès qu'ont eu des gens fatigués et découragés qui ont pris la décision d'essayer une dernière fois.\nI know that it is highly unlikely that you'd ever want to go out with me, but I still need to ask at least once.\tJe sais qu'il est hautement improbable que tu veuilles jamais sortir avec moi, mais j'ai tout de même besoin de demander au moins une fois.\nThe man who makes but one mistake a year because he makes but two decisions is wrong fifty per cent of the time.\tL'homme qui commet une erreur par an parce qu'il ne prend que deux décisions, se trompe cinquante pour cent du temps.\nI know you're upset about your car being totaled, but you weren't injured and you should be thankful to be alive.\tJe sais que tu es contrarié que ta voiture soit bonne pour la casse, mais tu n'as pas été blessé et tu devrais être heureux d'être en vie.\nI sometimes wish I could live a quiet retired sort of life but I doubt I could stand it for more than a few days.\tParfois je souhaiterais vivre une sorte de vie calme et retraitée mais je doute que je puisse la supporter plus de quelques jours.\nDid you know that in Japan, if you have a tattoo, you won't be allowed to bathe in many of the hot spring resorts?\tSaviez-vous qu'au Japon, si vous portez un tatouage, vous ne serez pas autorisé à vous baigner dans beaucoup des stations thermales ?\nHe is inclined to look at everything from the standpoint of its practicality and is neither stingy nor extravagant.\tIl a tendance à considérer toute chose sous un angle pratique et n'est ni avare ni prodigue.\nSomeone told me that Albert Einstein said, \"Common sense is the collection of prejudices acquired by age eighteen.\"\tQuelqu'un m'a dit qu'Albert Einstein déclara : \"Le bon sens est la collection des préjugés acquis à l'âge de dix-huit ans.\"\nEvery time I make a mistake, I learn something. The challenge is not to keep making the same mistakes over and over.\tChaque fois que je commets une erreur, j'apprends quelque chose. Le défi est de ne pas continuer à toujours commettre les mêmes erreurs.\nGetting your message across is much more important than trying to say it exactly like a native speaker would say it.\tVéhiculer votre message est bien plus important que d'essayer de le dire exactement comme un locuteur natif le dirait.\nI felt bad, so I was admitted into the hospital. However, it turned out that there was nothing really wrong with me.\tJe me sentais mal, aussi je fus admis à l'hôpital. Cependant, il s'avéra qu'il n'y avait rien qui n'allait réellement pas chez moi.\nNot long ago we heard a father say in the presence of his large family, \"I don't want any of my boys to be lawyers.\"\tIl n'y a pas si longtemps, nous entendîmes un père, dire en présence de sa famille étendue : « Je veux qu'aucun de mes garçons ne soit avocat. »\nNotice the hands of the people you meet and you will be surprised to see how different and how interesting they are.\tRemarquez les mains des gens que vous rencontrez et vous serez surpris de constater combien elles diffèrent et comme elles sont intéressantes.\nThe police drew an outline of a body at the scene of the crime to indicate how the body was lying when it was found.\tLa police traça le contour d'un corps, sur le lieu du crime, pour indiquer comment le cadavre était étendu, lorsqu'il avait été trouvé.\nThis is a time of year when people get together with family and friends to observe Passover and to celebrate Easter.\tC'est le moment de l'année auquel les gens se réunissent avec leur famille et leurs amis pour célébrer Pessa'h et fêter la Pâques.\nA man touched down on the moon. A wall came down in Berlin. A world was connected by our own science and imagination.\tUn homme a atterri sur la lune. Un mur a été abattu à Berlin. Un monde a été connecté par notre propre science et notre imagination.\nCharles Moore created Forth in an attempt to increase programmer productivity without sacrificing machine efficiency.\tCharles Moore a créé le Forth dans une tentative pour accroître la productivité du programmeur sans sacrifier l'efficacité de la machine.\nEvery student who has graduated from our university has studied English with a native speaker for at least two years.\tTous les étudiants qui ont été diplômés de notre université ont étudié l'anglais avec un locuteur natif pendant au moins deux ans.\nIf you don't want to put on sunscreen, that's your problem. Just don't come complaining to me when you get a sunburn.\tSi tu ne veux pas mettre de crème solaire c'est ton problème, mais ne viens pas te plaindre quand t'auras des coups de soleil.\nNobody has asked you to agree, but can't you at least accept that there are people who hold different views from you?\tPersonne ne t'a demandé d'être d'accord, mais ne peux-tu pas, au moins, accepter qu'il y a des gens qui ont un point de vue différent du tien ?\nNobody has asked you to agree, but can't you at least accept that there are people who hold different views from you?\tPersonne ne vous a demandé d'être d'accord, mais ne pouvez-vous pas, au moins, accepter qu'il y a des gens qui ont un point de vue différent du vôtre ?\nThe people crowded round the injured man, but they made way for the doctor when he reached the scene of the accident.\tLes gens s'attroupèrent autour du blessé, mais firent place au médecin quand il atteignit le lieu de l'accident.\nA chance to do as we please, especially to do as little hard work as possible, is a secret desire of almost everybody.\tUne occasion de faire ce qui nous plait, en particulier de faire aussi peu de travail pénible que possible, est le désir secret de presque tout le monde.\nEven though computer programmers may use semicolons every day, nowadays most people only use semicolons for emoticons.\tBien que les programmeurs utilisent quotidiennement les points-virgules, la plupart des gens les utilisent de nos jours seulement pour les émoticônes.\nI had never eaten any kind of Thai food, so I was pretty excited about going to a Thai restaurant with my grandmother.\tJe n'avais jamais mangé aucune sorte de nourriture thaï alors j'étais assez excité d'aller dans un restaurant thaï avec ma grand-mère.\nSince I've been on this diet, my weight is down, my cholesterol is down and my sleep apnea has completely disappeared.\tDepuis que je suis ce régime, j'ai perdu du poids, mon cholestérol a baissé et mon apnée du sommeil a complètement disparu.\n\"When does your sister come back from work?\" \"I don't know, but I think she'll arrive at home a few minutes before me.\"\t\"-Quand ta sœur rentre-t-elle du travail ?\" \"-Je ne sais pas, mais je pense qu'elle arrivera à la maison quelques minutes avant moi.\"\nNever choose a vocation just because your friends are in it, nor refuse another just because your worst enemy is in it.\tNe choisissez jamais une vocation juste parce que vos amis s'y trouvent, pas plus que n'en refusez une autre juste parce que s'y trouve votre pire ennemi.\nWhen we hear of a divorce we assume that it was caused by the inability of those two people to agree upon fundamentals.\tLorsque nous entendons parler d'un divorce, nous supposons qu'il a été causé par l'incapacité de ces deux personnes à s'entendre sur les fondamentaux.\nEven 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.\tMême maintenant, je pense parfois que j'aimerais te voir. Pas la personne que tu es aujourd'hui, mais celle dont je me rappelle.\nPolice are urging people not to pick up hitchhikers as they search for two prisoners on the run after escaping from jail.\tLa police exhorte les gens à ne pas prendre d'autostoppeurs car ils recherchent deux prisonniers en cavale après leur évasion.\nWe should spend our time creating content for our website rather than wasting time worrying about minor cosmetic details.\tNous devrions consacrer notre temps à créer du contenu pour notre site web plutôt que de gâcher du temps à nous préoccuper de détails esthétiques mineurs.\nA lot of people who have up until now been spending money having a good time now need to be more careful with their money.\tBeaucoup de gens qui ont jusqu'à présent dépensé de l'argent à passer du bon temps doivent être plus prudents avec leur argent.\nFor the crime of first degree murder, this court hereby sentences you to life in prison without the possibility of parole.\tPour le crime de meurtre au premier degré, cette cour vous condamne à la prison à perpétuité, sans possibilité de remise de peine.\nIt's very easy to sound natural in your own native language, and very easy to sound unnatural in your non-native language.\tIl est très aisé d'avoir l'air naturel dans votre langue natale et très aisé d'avoir l'air de manquer de naturel dans une autre langue.\nThe difference between the right word and almost the right word is the difference between lightning and the lightning bug.\tLa différence entre un « mot juste » et un « mot presque juste » est comme la différence entre la foudre et le foudre.\nThe difference between the right word and almost the right word is the difference between lightning and the lightning bug.\tLa différence entre un « mot juste » et un « mot presque juste » est comme la différence entre un éclair et un éclair au chocolat.\nIf you don't eat breakfast, you'll probably be hungry during the morning and won't be as efficient at work as you could be.\tSi tu ne petit-déjeunes pas, tu auras probablement faim au cours de la matinée et tu ne seras pas aussi efficace au travail que tu pourrais l'être.\nIf you don't eat breakfast, you'll probably be hungry during the morning and won't be as efficient at work as you could be.\tSi vous ne petit-déjeunez pas, vous aurez probablement faim au cours de la matinée et vous ne serez pas aussi efficace au travail que vous pourriez l'être.\nI used to watch this anime a lot when I was a kid, but I can't quite remember what happened to the hero in the final episode.\tJ'avais l'habitude de beaucoup regarder ce dessin animé quand j'étais enfant, mais je ne peux plus trop me rappeler ce qui est arrivé au héros dans l'ultime épisode.\nThe English language is undoubtedly the easiest and at the same time the most efficient means of international communication.\tLa langue anglaise est indubitablement la plus facile et en même temps le moyen de communication internationale le plus efficace.\nAccording to the contract you may take three days of bereavement leave for your uncle's funeral, but only one for your nephew's.\tConformément au contrat, vous pouvez prendre trois jours de congé de deuil pour les funérailles de votre oncle, mais un seul pour celles de votre neveu.\nAccording to the contract you may take three days of bereavement leave for your uncle's funeral, but only one for your nephew's.\tConformément aux closes du contrat, vous pouvez prendre trois jours de congé de deuil pour les funérailles de votre oncle, mais un seul pour celles de votre neveu.\nAccording to the contract you may take three days of bereavement leave for your uncle's funeral, but only one for your nephew's.\tConformément au contrat, vous pouvez prendre trois jours de congé de décès pour les funérailles de votre oncle, mais un seul pour celles de votre neveu.\nFood prices are at their highest level since the United Nations Food and Agriculture Organization began keeping records in 1990.\tLes prix de l'alimentation sont à leur plus haut niveau depuis que l'Organisation des Nations Unies pour l’alimentation et l’agriculture a commencé à les enregistrer en mille-neuf-cent-quatre-vingt-dix.\nIf one has the right to live, then one should also have the right to die. If not, then living is not a right, but an obligation.\tSi quelqu'un détient le droit de vivre, alors il devrait également détenir celui de mourir. Sinon, vivre n'est alors pas un droit mais une obligation.\nIt was bad enough that he usually came to work late, but coming in drunk was the last straw, and I'm going to have to let him go.\tC'était suffisamment grave qu'il arrive habituellement au travail en retard, mais venir soûl est un comble, et je vais devoir m'en débarrasser.\nThe teacher supervising the playground became concerned when she saw a man talking to some of the children over the school fence.\tL'institutrice chargée de surveiller la courre s'inquiéta lorsqu'elle vit un homme parler à des enfants par-dessus la grille de l'école.\nCities and provinces along the Yangtze River in central China are grappling with the country's worst drought in more than 50 years.\tLes villes et les provinces le long du fleuve Yangtsé, au centre de la Chine, sont aux prises avec la pire sécheresse que le pays ait connu depuis plus de cinquante ans.\nThat proposal may be a way to kill two birds with one stone, but we also have to be careful not to get greedy and spoil everything.\tCette proposition pourrait faire d'une pierre deux coups, mais nous devons aussi faire attention à ne pas devenir gourmands et ainsi tout gâcher.\nA committee is a group of people who individually can do nothing, but who, as a group, can meet and decide that nothing can be done.\tUn comité est un groupe de gens qui ne peuvent rien faire individuellement mais qui peuvent tenir des réunions en tant que groupe et parvenir à la décision qu'on ne peut rien faire.\nOne of the best ways to help us is to translate from a foreign language you know into your own native language or strongest language.\tL'une des meilleures manières de nous aider est de traduire d'une langue étrangère que vous connaissez vers votre propre langue natale, ou la plus forte de vos langues.\nSince it will be cold soon, it might be nice to enjoy doing something outdoors the final few warm days we have before winter sets in.\tPuisqu'il fera bientôt froid, ça serait chouette de profiter des quelques derniers jours chauds dont nous disposons pour faire quelque chose à l'extérieur, avant que l'hiver ne s'installe.\nA man who has never gone to school may steal from a freight car, but if he has a university education, he may steal the whole railroad.\tUn homme qui n'a jamais été à l'école peut voler d'un wagon, mais s'il dispose d'un diplôme, il peut voler toute la ligne de chemin de fer.\nOne way to lower the number of errors in the Tatoeba Corpus would be to encourage people to only translate into their native languages.\tUn moyen de diminuer le nombre d’erreurs dans le corpus de Tatoeba serait d’encourager les gens à traduire uniquement vers leur langue maternelle.\nWhat is old age? First you forget names, then you forget faces, then you forget to pull your zipper up, then you forget to pull it down.\tQu'est l'âge ? D'abord on oublie les noms, et puis on oublie les visages, puis on oublie de remonter sa braguette, et puis on oublie de la descendre.\nWhat is old age? First you forget names, then you forget faces, then you forget to pull your zipper up, then you forget to pull it down.\tCe qu'est l'âge ? D'abord on oublie les noms, et puis on oublie les visages, puis on oublie de remonter sa braguette, et puis on oublie de la descendre.\nHe and I have a near-telepathic understanding of each other. No sooner does one of us say something than the other is already responding.\tLui et moi avons une compréhension quasi-télépathique de chacun. Aussitôt que l'un de nous dit quelque chose, l'autre est déjà en train de répondre.\nAlthough rainforests make up only two percent of the earth's surface, over half the world's wild plant, animal and insect species live there.\tBien que les forêts tropicales ne couvrent que 2% de la surface de la terre, plus de la moitié des espèces animales, végétales et des insectes y vivent.\nIf you translate from your second language into your own native language, rather than the other way around, you're less likely to make mistakes.\tSi vous traduisez de votre seconde langue dans votre propre langue maternelle, plutôt que dans l'autre sens, il y a moins de chances que vous commettiez des fautes.\nI love trying out new things, so I always buy products as soon as they hit the store shelves. Of course, half the time I end up wishing I hadn't.\tJ'adore essayer de nouvelles choses, alors j'achète toujours des produits dès qu'ils sont en rayons. Bien sûr, la moitié du temps, je finis par souhaiter ne pas l'avoir fait.\nA good theory is characterized by the fact that it makes a number of predictions that could in principle be disproved or falsified by observation.\tUne bonne théorie se caractérise par le fait de faire une série de prédictions qui, en principe, pourraient être réfutées ou mises en défaut par l'observation.\nThe more time you spend speaking a foreign language, the better you get at guessing what non-native speakers are trying to say in your own language.\tPlus l'on passe de temps à parler une langue étrangère, plus l'on s'améliore à devenir ce qu'un non-natif essaie de dire dans sa propre langue.\nThe enquiry concluded that, despite his denials, the chief executive would have had to have known about the illegal practices occurring in the company.\tL'enquête conclut qu'en dépit de ses dénégations, le directeur général aurait eu connaissance des pratiques illégales, en cours dans l'entreprise.\nThe Tatoeba Project, which can be found online at tatoeba.org, is working on creating a large database of example sentences translated into many languages.\tLe projet Tatoeba, que l'on peut trouver en ligne sur tatoeba.org, travaille à la création d'une vaste base de données de phrases d'exemple, traduites dans de nombreuses langues.\nYou may not learn to speak as well as a native speaker, but you should be able to speak well enough that native speakers will understand what you have to say.\tPeut-être n'apprendrez-vous pas à parler comme un locuteur natif, mais vous devriez être en mesure de parler suffisamment bien pour que les natifs comprennent ce que vous avez à dire.\nE-cigarettes are being promoted as a healthy alternative to tobacco cigarettes, but health authorities are concerned about the long-term health effects on users.\tLa cigarette électronique est mise en avant comme une saine alternative aux cigarettes, mais les autorités sanitaires s'inquiètent des effets à long terme sur la santé des consommateurs.\nIt's still too hard to find a job. And even if you have a job, chances are you're having a tougher time paying the rising costs of everything from groceries to gas.\tC'est encore trop difficile de trouver un emploi. Et même quand on en a un, il y a des chances qu'on ait davantage de difficultés à payer le coût de tout, de l'épicerie au gaz.\nAs you contribute more sentences to the Tatoeba Corpus in your native language, the percentage of sentences in your native language with errors will likely decrease.\tAu fur et à mesure que vous ajoutez davantage de phrases au corpus de Tatoeba dans votre langue natale, il est probable que le pourcentage de phrases dans celle-ci, comportant des erreurs, diminuera.\nEven at the end of the nineteenth century, sailors in the British Navy were not permitted to use knives and forks because using them was considered a sign of weakness.\tMême à la fin du dix-neuvième siècle, les marins de la marine britannique n'étaient pas autorisés à utiliser des couteaux et des fourchettes parce que c'était considéré comme un signe de faiblesse.\nFive tremors in excess of magnitude 5.0 on the Richter scale have shaken Japan just this week, but scientists are warning that the largest expected aftershock has yet to hit.\tCinq secousses dépassant la magnitude cinq sur l'échelle de Richter ont secoué le Japon précisément cette semaine, mais les scientifiques avertissent que la plus grande réplique est encore à venir.\nNo matter how much you try to convince people that chocolate is vanilla, it'll still be chocolate, even though you may manage to convince yourself and a few others that it's vanilla.\tPeu importe le temps que tu passeras à essayer de convaincre les gens que le chocolat est de la vanille, ça restera toujours du chocolat, même si tu réussis à convaincre toi et quelques autres que c'est de la vanille.\nA child who is a native speaker usually knows many things about his or her language that a non-native speaker who has been studying for years still does not know and perhaps will never know.\tUn enfant qui est un locuteur natif connaît habituellement de nombreuses choses sur son langage qu'un locuteur non-natif qui a étudié pendant des années ignore encore et peut-être ne saura jamais.\nThere are four main causes of alcohol-related death. Injury from car accidents or violence is one. Diseases like cirrhosis of the liver, cancer, heart and blood system diseases are the others.\tIl y a quatre causes principales de décès liés à l'alcool. Les blessures dans les accidents automobiles ou la violence en est une. Les maladies comme la cirrhose, le cancer, les maladies cardio-vasculaires en sont les autres.\n\"Top-down economics never works,\" said Obama. \"The country does not succeed when just those at the very top are doing well. We succeed when the middle class gets bigger, when it feels greater security.\"\t« L'économie en partant du haut vers le bas, ça ne marche jamais, » a dit Obama. « Le pays ne réussit pas lorsque seulement ceux qui sont au sommet s'en sortent bien. Nous réussissons lorsque la classe moyenne s'élargit, lorsqu'elle se sent davantage en sécurité. »\nA carbon footprint is the amount of carbon dioxide pollution that we produce as a result of our activities. Some people try to reduce their carbon footprint because they are concerned about climate change.\tUne empreinte carbone est la somme de pollution au dioxyde de carbone que nous produisons par nos activités. Certaines personnes essaient de réduire leur empreinte carbone parce qu'elles sont inquiètes du changement climatique.\nDeath is something that we're often discouraged to talk about or even think about, but I've realized that preparing for death is one of the most empowering things you can do. Thinking about death clarifies your life.\tLa mort est une chose qu'on nous décourage souvent de discuter ou même de penser mais j'ai pris conscience que se préparer à la mort est l'une des choses que nous puissions faire qui nous investit le plus de responsabilité. Réfléchir à la mort clarifie notre vie.\nSince there are usually multiple websites on any given topic, I usually just click the back button when I arrive on any webpage that has pop-up advertising. I just go to the next page found by Google and hope for something less irritating.\tPuisqu'il y a de multiples sites web sur chaque sujet, je clique d'habitude sur le bouton retour arrière lorsque j'atterris sur n'importe quelle page qui contient des publicités surgissantes. Je me rends juste sur la prochaine page proposée par Google et espère tomber sur quelque chose de moins irritant.\nIf someone who doesn't know your background says that you sound like a native speaker, it means they probably noticed something about your speaking that made them realize you weren't a native speaker. In other words, you don't really sound like a native speaker.\tSi quelqu'un qui ne connaît pas vos antécédents dit que vous parlez comme un locuteur natif, cela veut dire qu'il a probablement remarqué quelque chose à propos de votre élocution qui l'a fait prendre conscience que vous n'êtes pas un locuteur natif. En d'autres termes, vous ne parlez pas vraiment comme un locuteur natif.\nIt may be impossible to get a completely error-free corpus due to the nature of this kind of collaborative effort. However, if we encourage members to contribute sentences in their own languages rather than experiment in languages they are learning, we might be able to minimize errors.\tIl est peut-être impossible d'obtenir un Corpus complètement dénué de fautes, étant donnée la nature de ce type d'entreprise collaborative. Cependant, si nous encourageons les membres à produire des phrases dans leurs propres langues plutôt que d'expérimenter dans les langues qu'ils apprennent, nous pourrions être en mesure de réduire les erreurs.\n"
  },
  {
    "path": "NN/RNN/rnn.md",
    "content": "### Recurrent Neutral Network\n\n章节\n\n- [RNN概述](#summary)\n- [BPTT & RTRL](#bptt)\n- [LSTM](#lstm)\n- [GRU](#gru)\n- [梯度困区](#problems)\n- [Seq2Seq模型](#seq)\n- [何去何从](#where)\n- [模型之外](#out)\n\n### <div id='summary'>RNN概述</div>\n\n为什么它叫做循环神经网络呢？与其他网络有何不同？接下来用简单例子阐述：\n\n这是比较简单的示意图，比如说一个网络只有一层，那么，那一层代表的函数方法就是这个网络实际对输入所起的作用，即Y = Funtion(X)，我们实际上想找出那个function它究竟是什么。\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/network.png)\n\n可以从下图看出，RNN得到一个输出不仅仅靠输入的X，同时还依赖于h，h在RNN中被叫做cell state，那么h如何得出呢？由公式（1）可知，h_t是由h_(t-1)经过某种函数变换得到的，换句话说，我要得到目前这一个的，我还必须经过前一个才能做到。这里我们可以类比一下斐波那契数列，f(t) = f(t-1) + f(t-2)，某一项需要由前两项一起才能完成，RNN是某一个h需要前面一个h来完成，这也是为什么被叫做循环神经网络。顺带一提，这里的function有权重参数，即为W,而这个W是共享的，意思是无论是h_1到h2还是h_2到h_3，它们用的function其实是一样的。\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/rnn.png)\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/ht.png)\n\n所以，复杂一点的RNN长这样：\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/rnn_1.png)\n\n每次输出完一个y，它同时还会有一个h出来，作为下一层的参数一起使用。从这一点来看，RNN跟其他网络不同的一点是前一层的输出同时可以作为后一层的输入，经过一层就会更新一次h，那么，h究竟是如何更新的呢？tanh是一种常用的激活函数，可见[Activation](../activation.md)。\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/htt.png)\n\ny_t可以由此得出：\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/y_t.png)\n\n从上述公式中可以看出有不同的W，即不同的权重矩阵，但相同类型之间的W是共享的，比如说下次不同的![](http://latex.codecogs.com/svg.latex?h_t)，![](http://latex.codecogs.com/svg.latex?W_{hy})其实是一样的，这些矩阵是机器自己去从数据中去学出来，同时也可以是人为设置的。\n\n传统的DNN，CNN的输入和输出都是固定的向量，而RNN与这些网络的最大不同点是它的输入和输出都是不定长的，具体因不同任务而定。\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/many_lengths.png)\n\n***\n### <div id='bptt'>BPTT & RTRL</div>\n\n**BPTT(BackPropagation Through Time)**\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/bptt.png)\n\n假设![](http://latex.codecogs.com/svg.latex?l_t=(y_t-\\\\hat{y}_t)^2)是第t个时间步长的损失函数，BPTT做的是取两个时间步长，截取片段，然后反向更新参数，比如这里我们需要更新![](http://latex.codecogs.com/svg.latex?W_{hh})：\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/bptt2.png)\n\n\n***\n\n**RTRL(Real-Time Recurssive Learning)**\n\n顾名思义，Real-Time的意思是实时，就是每一个时间步长都更新一次\n\nBPTT和RTRL的区别就是前者是一个片段更新，而后者是每一个步长都更新一次，一般当序列为有限长时我们采用BPTT，这已经成为了RNN的主要架构，RTRL适合无限长的序列\n\n***\n\n\n### <div id='lstm'>LSTM</div>\n\nLSTM和GRU比较有创新的一点就是采用了门结构来控制整个模型，既然是门，那就可以打开和关闭，如何定义打开还是关闭呢？我们用sigmoid来完成这一点，如果经过sigmoid函数的值越接近0，受到重视的程度就越低，相当于门正在慢慢关闭，越接近于1呢，受到重视的程度就越高，相当于门正在慢慢打开，下面把LSTM切分为不同的门结构来讲。\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/final_.png)\n\n我相信你一开始看到这个图是一脸懵逼的，接下来我带你手撕LSTM\n\n- Forget Gate\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/f_t.png)\n\n其中两个W都是权重矩阵，两个b都是截距，是通过机器去不断学出来的，下文出现的W和b虽然具体内容不同，但是代表的意思是一样的。忘记门决定了哪些信息是重要的，如果是不重要的我们就直接选择遗忘，是LSTM中较为核心的一点。\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/f_t_.png)\n\n- Input Gate\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/i_t.png)\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/i_t_.png)\n\n- Cell Gate\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/g_t.png)\n\n需要注意的是，这里的激活函数换成了tanh。\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/g_t_.png)\n\n- Cell State\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/c_t.png)\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/c_t_.png)\n\n式子分为两部分，前一部分是说前面的cell state有哪些需要保留，哪些需要遗忘，cell gate用来暂存需要补充到新的c_t的内容。两者相加，便完成了cell state的更新了。其实为什么叫cell state——细胞状态，在我看来，不妨从细胞膜的选择透过性来说，这里c_t的更新不是上一部分直接拿上来就用，而是进行选择性录入，跟物质运送到细胞内有异曲同工之妙。\n\n同时你会发现整个LSTM很大一部分都是围绕着Cell State展开的，那些门间接在保护或者过滤输出，至于为什么LSTM能缓解梯度消失以及维持一个较为稳定的梯度流，可以在[梯度困区](#problems)中找到答案，下一节会具体比对RNN和LSTM。\n\n注意这里的是哈达玛积（Hadamard product），是对应位置元素相乘。\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/had_.png)\n\n\n- Output Gate\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/o_t__.png)\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/o_t.png)\n\n\n- Hidden State\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/h_t.png)\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/h_t_.png)\n\n最后我们完成LSTM一层的搭建\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/final.png)\n\n叠加三层就长成了一开始的样子：\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/final_.png)\n\n\n***\n\n### <div id='problems'>梯度困区</div>\n\nRNN通过Hidden State（h_t）路径完成梯度流动：\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/rnn_ht.png)\n\n由上式易得，权重矩阵和激活函数很容易对RNN的梯度造成不可逆的影响，关于sigmoid函数为什么会导致梯度下降问题，建议去[BackPropagation](../bp.md)中的梯度消失部分一看究竟，这里不再细说。其实最重要的不是激活函数，对梯度传播真正起决定作用的是权重矩阵，因为随着梯度的传播过程，乘以权重矩阵的指数倍，换句话说，若权重矩阵里都是比较小的数，那么，梯度就会指数性下降；同样地，如果权重矩阵里都是比较大的数，那么，梯度就会指数性上升。\n\n所以，对RNN梯度下降以及梯度爆炸问题，可以从这两个角度进行切入。\n\n- 梯度初始化\n\n我们可以初始化权重矩阵使之变为正交矩阵，最简单的初始方法就是使权重矩阵变为单位阵（Identity Matrix），这样随着梯度不断的流动，可以缓解指数性上升或者下降的问题。\n\n- 切换激活函数\n\n因为sigmoid会导致梯度下降，所以我们可以切换激活函数如RELU或者RELU的变种，如Leaky RELU。\n\n另外针对梯度爆炸问题，可以采用梯度削减（Gradient Clipping）：\n\n首先设置一个clip_gradient作为梯度阈值，然后按照往常一样求出各个梯度，不一样的是，我们没有立马进行更新，而是求出这些梯度的L2范数，注意这里的L2范数与岭回归中的L2惩罚项不一样，前者求平方和之后开根号而后者不需要开根号。如果L2范数大于设置好的clip_gradient，则求clip_gradient除以L2范数，然后把除好的结果乘上原来的梯度完成更新。当梯度很大的时候，作为分母的结果就会很小，那么乘上原来的梯度，整个值就会变小，从而可以有效地控制梯度的范围。有一点疑惑的就是，梯度削减会使得原来的梯度过大的部分发生变化，方向既然发生了变化，为什么最后还能使得loss收敛呢？Deep Learning大概结果反推出解释吧。\n\n当然了，上面这些措施只能是稍作改变，不痛不痒。\n\n为了更好地缓解这些问题，LSTM被提了出来，结构已经介绍过了，其实LSTM绝对不能解决上述梯度问题，最多进行缓解，它可以在一条路径上保持较为稳定的梯度流——Cell State（c_t），其他的路径上同样会有梯度消失的问题，与RNN的原因一样，换句话说，LSTM通过维持一条高速公路来拯救其他路径（公式里的V_t+k代表着f_t里面的输入）。另外，虽然LSTM有高速公路，但仍然不能处理很长距离的句子，说起LSTM的名字也很有趣，Long Short-Term Network，其实只是比较长的短期网络啦，并不是真正能处理很长距离的句子。\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/c_t_gd.png)\n\nLSTM可以学习到权重矩阵使得sigmoid出来的值接近于1，因而更好地缓解了梯度下降以及梯度爆炸的问题。\n\n***\n### <div id='gru'>GRU</div>\n\n其实LSTM是对RNN的改良升级，相对于LSTM来说，门结构变少，即参数量变少，训练起来速度更快，在实际任务中与LSTM相差无几，所以2014年提出之后就逐渐变得流行起来，当然啦，实际任务中肯定两个都训练，择优录取（下图选自于斯坦福大学CS224N系列课程，这里用n_t代替h_t加波浪符，为了书写方便）。\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/gru.png)\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/gru_.png)\n\nr_t被叫做重置门（Reset Gate），z_t被叫做更新门（Update Gate）。整个模型的思路是拿到h_t-1和x_t之后，先把重置门和更新门进行更新一下，然后用r_t重置掉h_t-1里的一些内容，再加上x_t，暂存到n_t里面。最后用z_t决定要以多大的比例将暂存的和旧的放到新的h_t里面进行更新。\n\n***\n### <div id='seq'>Seq2Seq模型</div>\n\n由于无法同时多项任务，人们通常在实际任务中采用多个RNN，比如最有名的seq2seq模型，用多个RNN充当编码器（Encoder），再用多个RNN充当解码器（Decoder）。Seq2Seq模型其实是序列入，序列出模型，比较常见的是机器翻译，比如我们今天要把中文翻译成英语，那么编码器进入的是中文的序列，解码器出来的是英文的序列。\n\n如何训练呢？首先是Encoder端，用以将序列转换为向量并且提取有效特征，具体来说，每一个时间步长输入多少长度的序列其实是未知的，经过LSTM会转换为(h,c)，直到Encoder端结束输入，最后的状态(h_,c_)作为Decoder的起始状态，记为s_0，Decoder端的第一个输入是[CLS]表示开始，接下来凭借Encoder端的输入开始输出翻译后的结果，翻译完一个之后，它会预测下一个可能是什么，把它转换为向量，向量里面是每一个词的可能性，因为这是监督学习，我们把德语的标签同样转换为向量，然后计算两者之间的交叉熵损失（Cross-Entropy），进而优化我们的损失函数（以下图仍选自CS224N）。\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/att.png)\n\n由于RNN缺乏处理长距离信息的能力，人们提出了注意力机制用以提高它的表现。加了注意力机制的seq2seq模型，这里讲一下与transformer一致的注意力机制。首先有两个矩阵W_k和W_q，一个表示为要被查的（Key），一个表示去查的（Query），具体可以看[Transformer](https://github.com/sherlcok314159/ML/blob/main/nlp/models/transformer.md)。用s_0和h_i去乘以矩阵q以及k，得到结果后两者做内积，最后用softmax归一化得到关系向量，这样一开始的s_0大概就知道跟哪个最接近，大大增加了翻译的准确度。\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/atte.png)\n\n***\n### <div id='where'>何去何从</div>\n\n\n尽管RNN以及它的变种十分强大，但是由于无法并行运算，计算成本高等原因，最终还是避免不了逐渐退出主流的命运，当然，如果想要取代它，至少在我看来目前是不可能的，CNN就是一个例子。而且在小数据集上的任务时，LSTM的效果会比Transformer好，收敛更快。可能我们看到具体模型名字如RNN，LSTM的机会少了，但是这些模型的内涵逐渐被人们挖掘并加以提升，如LSTM的“高速公路”设置与ResNet以及Transformer中残差相连的方式有异曲同工之妙。seq2seq模型中的注意力机制被Google沿袭，这才有了Attention is all your need这篇论文。\n\n学习老的旧的模型你可以花的精力不多，但是它的灵魂之处你一定要明白，旧模型不是让你去抛弃的，而是用来培养你的某种直觉。你学习模型的时候应当把自己代入当时的历史角色，你面对什么问题，踩了什么坑，为什么会想到这个模型，如果你不求甚解，可能觉得模型凭空产生，可是你越了解某个模型，就越觉得它处理某类问题其实是很自然而然的。\n\nTransformer那篇论文有很多厉害的点，但其实那些厉害的小点在那些所谓的老模型中或多或少都会有映射，旧模型是用以培养某种直觉，或许能够在新问题上大放异彩。\n\n***\n\n### <div id='out'>模型之外</div>\n\n> The purpose of computing is insight, not numbers. —— Richard Hamming.\n\n很多时候，直觉（Intuition）和洞察力（Insight）是最重要的，做算法，不是只会调参，看看结果然后瞎编，而是遇到某类新问题，你有一种感觉，感觉往那个方向做是正确的。就像RNN，说不定有些Transformer至上者觉得RNN这些一无是处，殊不知前者是站在后者的肩膀上才有了今天的高度。学会以学模型的方式来训练自己的直觉和洞察力是很重要的。著名数学家拉马努金的故事甚至超越小说，他没有受过数学的教育，只通过一本数学教科书，还是比较老的那种，通过他自己的一步一步推导，他能够从公式推导的过程中汲取灵感，培养直觉，才最终建立起自己的数学宇宙。\n\n其实爱因斯坦的伟大之处就在于他能够设置某种场景的假设，虽然听起来有点站不住脚，也没有严密的数学论证，但那恰恰是很多伟大理论的开端。\n\n***\n\n> Less sure about everything. —— Steve Jobs\n\n学习模型，很多时候看教程或者视频老师并不会每一个点都会给你讲透，在他看来都是理所当然的，或许他自己也不求甚解，但如果想真正成为了解模型的少数人，不要觉得一切都是理所当然的，学会寻找好的问题，而且越是简单的就越值得思考，比如说很少有人会问为什么掰手指会响，1971年数学家提出猜想，到如今斯坦福大学博士生用数学方式模拟出结果，一定程度上还只是验证了“气泡溃灭说”，并发表在环球科学杂志上，还没有确切说解决，你觉得这个问题简单吗？\n\n用心去观察，提问这件事，多多益善，越是简单，越是理所当然的，就越要弄明白。\n\n有了问题，就去做出假设，然后去验证，得出结论。学会像科学家一样思考。\n\n在我学RNN的过程中，很多我以前都是不求甚解，糊里糊涂，但通过问问题，寻找答案，独立思考最终找到了较为合理的答案，这个过程是很美妙，很令人激动的。了解某类模型就像是主线任务，一个一个小问题就像是支线，引领你前往魔法森林，The Question Is A Gift!\n***\n\n万物互联。\n\n其实看到LSTM的cell state我想到了细胞膜的选择透过性，看到Gate其实我想到了以前看过的一篇英语文章，大概作者的亲人逝去了，作者很难过，然后最后想开了：我们要打开一扇门，把坏情绪留在门后，进入一扇门就蜕变成新的自己，迎接新的世界，这其实跟LSTM通过门来选择性记忆也有神似之处。\n\n当我们一开始学的时候，知识是某一个点，学的多了，发现有些知识有重合之处，几个点就可以连成线，再往后学，发现自己把某个领域学过了，就成了一个面，再往后学，就发现那些不同的面构成了一个立体的世界。学的知识越多，你拥有的维度越多，思考问题的角度也就越多，启发式算法就是从不同角度思考算法问题，从而提出较为优美的解决方案。一切都是联系着的。\n\n***\n公式是钥匙。\n\n不要看到公式就感觉像是结束键，公式只是答案之门的钥匙，你转动的方式会决定你看到的内容，学会演绎公式，解释公式，联系现实将公式代入，你会获得完全不一样的体验。"
  },
  {
    "path": "NN/RNN/rnn.py",
    "content": "from __future__ import unicode_literals, print_function, division\nfrom io import open\nimport unicodedata\nimport re\nimport random\nimport os\nimport torch\nimport torch.nn as nn\nfrom torch import optim\nimport torch.nn.functional as F\n\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\nSOS_token = 0\nEOS_token = 1\n\n\nclass Lang:\n    def __init__(self,name):\n        self.name = name\n        # 形如 {\"hello\" : 3}\n        self.word2index = {}\n        # 统计每一个单词出现的次数\n        self.word2count = {}\n        self.index2word = {0:\"SOS\",1:\"EOS\"}\n        # 统计训练集出现的单词数\n        self.n_words = 2 # SOS 和 EOS已经存在了\n\n    def addSentence(self,sentence):\n        # 第一行为 Go.  Va !\n        # 前面是英语，后面是法语，中间用tab分隔\n        for word in sentence.split(\" \"):\n            self.addWord(word)\n    \n    def addWord(self,word):\n        if word not in self.word2index:\n            self.word2index[word] = self.n_words\n            self.word2count[word] = 1\n            # 用现有的总词数作为新的单词的索引\n            self.index2word[self.n_words] = word\n            self.n_words += 1\n        else:\n            self.word2count[word] += 1\n\n# 将Unicode字符串转换为纯ASCII, 感谢https://stackoverflow.com/a/518232/2809427\ndef unicodeToAscii(s):\n    return ''.join(\n        c for c in unicodedata.normalize('NFD', s)\n        if unicodedata.category(c) != 'Mn'\n    )\n\n# 小写，修剪和删除非字母字符\n\n\ndef normalizeString(s):\n    # 转码之后变小写切除两边空白\n    s = unicodeToAscii(s.lower().strip())\n    # 匹配.!?，并在前面加空格\n    s = re.sub(r\"([.!?])\",r\" \\1\",s)\n    # 将非字母和.!?的全部变为空白\n    s = re.sub(r\"[^a-zA-Z.!?]+\",r\" \",s)\n    return s\n\ndef readLangs(lang1,lang2,reverse=False):\n    print(\"Reading lines...\")\n\n    # 读取文件并分为几行\n    # 每一对句子最后会有个换行符\\n\n    # lines ==> ['Go.\\tVa !', 'Run!\\tCours\\u202f!'...]\n    lines = open(\"填自己的数据路径\",encoding = \"utf-8\").read().strip().split(\"\\n\")\n\n    # 将每一行拆分成对并进行标准化\n    # pairs ==> [[\"go .\",\"va !\"],...]\n    pairs = [[normalizeString(s) for s in l.split(\"\\t\")] for l in lines]\n\n    # 反向对，实例Lang\n    # 源文件是先英语后法语\n    # 换完之后就是先法后英\n    if reverse:\n        pairs = [list(reversed(p)) for p in pairs]\n        input_lang = Lang(lang2)\n        output_lang = Lang(lang1)\n    else:\n        input_lang = Lang(lang1)\n        output_lang = Lang(lang2)\n    \n    return input_lang,output_lang,pairs\n\nMAX_LENGTH = 10\neng_prefixes = (\n    \"i am \", \"i m \",\n    \"he is\", \"he s \",\n    \"she is\", \"she s \",\n    \"you are\", \"you re \",\n    \"we are\", \"we re \",\n    \"they are\", \"they re \"\n)\n\n\ndef filterPair(p):\n    return len(p[0].split(' ')) < MAX_LENGTH and \\\n        len(p[1].split(' ')) < MAX_LENGTH and \\\n        p[1].startswith(eng_prefixes)\n\n\n# 留下符合条件的\ndef filterPairs(pairs):\n    return [pair for pair in pairs if filterPair(pair)]\n\ndef prepareData(lang1, lang2, reverse=False):\n    input_lang, output_lang, pairs = readLangs(lang1, lang2, reverse)\n    print(\"Read %s sentence pairs\" % len(pairs))\n    pairs = filterPairs(pairs)\n    print(\"Trimmed to %s sentence pairs\" % len(pairs))\n    print(\"Counting words...\")\n    for pair in pairs:\n        input_lang.addSentence(pair[0])\n        output_lang.addSentence(pair[1])\n    print(\"Counted words:\")\n    print(input_lang.name, input_lang.n_words)\n    print(output_lang.name, output_lang.n_words)\n    return input_lang, output_lang, pairs\n\ninput_lang, output_lang, pairs = prepareData('eng', 'fra', True)\n# 随机输出pair对\nprint(random.choice(pairs))\n\nclass EncoderRNN(nn.Module):\n    def __init__(self, input_size, hidden_size):\n        # 调用父类初始化方法\n        super(EncoderRNN, self).__init__()\n        # 初始化必须的变量\n        self.hidden_size = hidden_size\n\n        self.embedding = nn.Embedding(input_size, hidden_size)        \n        # gru的输入为三维，两个参数均指的是最后一维的大小\n        # tensor([1,1,hidden_size])\n        self.gru = nn.GRU(hidden_size, hidden_size)\n\n    def forward(self, input, hidden):\n        # embedded.size() ==> tensor([1,1,hidden_size])\n        # -1的好处是机器会自动计算\n        # 这里用view扩维的原因是gru必须接受三维的输入\n        embedded = self.embedding(input).view(1, 1, -1)\n        output = embedded        \n        output, hidden = self.gru(output, hidden)\n        return output, hidden\n    \n    def initHidden(self):\n        # 初始化隐层状态全为0\n        # hidden ==> tensor([1,1,hidden_size])\n        return torch.zeros(1, 1, self.hidden_size, device=device)\n\nclass DecoderRNN(nn.Module):\n    def __init__(self, hidden_size, output_size):\n        super(DecoderRNN, self).__init__()\n        self.hidden_size = hidden_size\n\n        self.embedding = nn.Embedding(output_size, hidden_size)\n        self.gru = nn.GRU(hidden_size, hidden_size)\n        # input_features ==> hidden_size\n        # output_features ==> output_size\n        self.out = nn.Linear(hidden_size, output_size)        \n        # Log(Softmax(X))\n        self.softmax = nn.LogSoftmax(dim=1)\n\n    def forward(self, input, hidden):\n        output = self.embedding(input).view(1, 1, -1)\n        output = F.relu(output)\n        output, hidden = self.gru(output, hidden)\n        # output.size() ==> [1,1,hidden_size]\n        # output的第一个1是我们用以适合gru输入扩充的\n        # 所以用output[0]选取前面的\n        output = self.softmax(self.out(output[0]))\n        return output, hidden\n\n    def initHidden(self):\n        return torch.zeros(1, 1, self.hidden_size, device=device)\n\nclass AttnDecoderRNN(nn.Module):\n    def __init__(self, hidden_size, output_size, dropout_p=0.1, max_length=MAX_LENGTH):\n        super(AttnDecoderRNN, self).__init__()\n        self.hidden_size = hidden_size\n        self.output_size = output_size\n        self.dropout_p = dropout_p\n        self.max_length = max_length\n\n        self.embedding = nn.Embedding(self.output_size, self.hidden_size)\n        # 因为会将prev_hidden和embedded在最后一个维度\n        # 即hidden_size，进行拼接，所以要*2\n        # max_length用以统一不同长度的句子分配的注意力\n        # 最大长度句子使用所有注意力权重，较短只用前几个\n        self.attn = nn.Linear(self.hidden_size*2,self.max_length)\n        self.attn = nn.Linear(self.hidden_size * 2, self.max_length)\n        self.attn_combine = nn.Linear(self.hidden_size * 2, self.hidden_size)\n        self.dropout = nn.Dropout(self.dropout_p)\n        self.gru = nn.GRU(self.hidden_size, self.hidden_size)\n        self.out = nn.Linear(self.hidden_size, self.output_size)\n\n    def forward(self, input, hidden, encoder_outputs):\n        embedded = self.embedding(input).view(1, 1, -1)\n        embedded = self.dropout(embedded)\n\n        # 因为第一维只是适应模型输入扩充的\n        # 所以拼接时，只需要取后面两个维度\n        attn_weights = F.softmax(\n            self.attn(torch.cat((embedded[0], hidden[0]), 1)), dim=1)        \n        # bmm ==> batch matrix multiplication\n        # e.g. a.size() ==> tensor([1,2,3])\n        # b.size() ==> tensor([1,3,4])\n        # torch.bmm(a,b).size() ==> tensor([1,2,4])  \n        # 第一维度不变，其他两维就当作矩阵做乘法\n        # unsqueeze(0)用以在在第一维扩充维度\n        # attn_applied赋予encoder_outputs不同部分不同权重\n        attn_applied = torch.bmm(attn_weights.unsqueeze(0),\n                                 encoder_outputs.unsqueeze(0))\n\n        output = torch.cat((embedded[0], attn_applied[0]), 1)\n        output = self.attn_combine(output).unsqueeze(0)\n\n        output = F.relu(output)\n        output, hidden = self.gru(output, hidden)\n\n        output = F.log_softmax(self.out(output[0]), dim=1)\n        return output, hidden, attn_weights\n\n    def initHidden(self):\n        return torch.zeros(1, 1, self.hidden_size, device=device)\n\ndef indexesFromSentence(lang, sentence):\n    return [lang.word2index[word] for word in sentence.split(' ')]\n\ndef tensorFromSentence(lang, sentence):\n    indexes = indexesFromSentence(lang, sentence)\n    indexes.append(EOS_token)\n    return torch.tensor(indexes, dtype=torch.long, device=device).view(-1, 1)\n\ndef tensorsFromPair(pair):\n    input_tensor = tensorFromSentence(input_lang, pair[0])\n    target_tensor = tensorFromSentence(output_lang, pair[1])\n    return (input_tensor, target_tensor)\n\nteacher_forcing_ratio = 0.5\n\n\ndef train(input_tensor,target_tensor,encoder,decoder,encoder_optimizer,decoder_optimizer,criterion,max_length=MAX_LENGTH):\n    # 初始化隐藏状态\n    encoder_hidden = encoder.initHidden()\n\n    # 梯度清零\n    encoder_optimizer.zero_grad()\n    decoder_optimizer.zero_grad()\n\n    input_length = input_tensor.size(0)\n    target_length = target_tensor.size(0)\n\n    # 初始化，等会替换\n    encoder_outputs = torch.zeros(max_length,encoder.hidden_size,device=device)\n\n    loss = 0\n     \n    for ei in range(input_length):\n        encoder_output,encoder_hidden = encoder(\n            input_tensor[ei],encoder_hidden)\n        # encoder_output.size() ==> tensor([1,1,hidden_size])\n        encoder_outputs[ei] = encoder_output[0,0]\n    \n    # 输入为<sos>，decoder初始隐藏状态为encoder的\n    decoder_input = torch.tensor([[SOS_token]],device=device)\n\n    decoder_hidden = encoder_hidden\n\n    # 随机决定是否采用teacher_forcing\n    use_teacher_forcing = True if random.random() < teacher_forcing_ratio else False\n\n    if use_teacher_forcing:\n        # 若采用，label作为下一个时间步输入\n        for di in range(target_length):\n            decoder_output,decoder_hidden,decoder_attention = decoder(\n                decoder_input,decoder_hidden,encoder_outputs)\n            loss += criterion(decoder_output,target_tensor[di])\n    else:\n        # 若不用，则用预测出的作为Decoder下一个输入\n        for di in range(target_length):\n            decoder_output,decoder_hidden,decoder_attention = decoder(\n                decoder_input,decoder_hidden,encoder_outputs)\n            # topk代表在所给维度上输出最大值\n            # 参数代表输出前多少个最大值\n            # 若为1，就是最大值\n            # topv,topi 分别为前n个最大值和其对应的索引\n            topv,topi = decoder_output.topk(1)\n            # squeeze()进行降维\n            # detach将与这个变量相关的从计算图中剥离\n            # 从而减少内存的开销\n            decoder_input = topi.squeeze().detach()\n\n            loss += criterion(decoder_output,target_tensor[di])\n            # 若某个时间步输入为<eos>，则停止\n            if decoder_input.item() == EOS_token:\n                break\n    \n    loss.backward()     \n\n    # 参数更新\n    encoder_optimizer.step()\n    decoder_optimizer.step()   \n\n    # 返回平均loss\n    return loss.item() / target_length\n\nimport time\nimport math\n\n\ndef asMinutes(s):\n    m = math.floor(s / 60)\n    s -= m * 60\n    return '%dm %ds' % (m, s)\n\n\ndef timeSince(since, percent):\n    now = time.time()\n    s = now - since\n    es = s / (percent)\n    rs = es - s\n    return '%s (- %s)' % (asMinutes(s), asMinutes(rs))\n\ndef trainIters(encoder,decoder,n_iters,print_every=1000,plot_every=100,learning_rate=0.01):\n    start = time.time()\n    plot_losses = []\n    # 每一次重置\n    print_loss_total = 0\n    plot_loss_total = 0\n\n    # 定义优化器\n    encoder_optimizer = optim.SGD(encoder.parameters(),lr=learning_rate)\n    decoder_optimizer = optim.SGD(decoder.parameters(),lr=learning_rate)\n    # random.choice(pairs)随机选择\n    training_pairs = [tensorsFromPair(random.choice(pairs)) for i in range(n_iters)]\n    criterion = nn.NLLLoss()\n\n    for iter in range(1,n_iters + 1):\n        training_pair = training_pairs[iter-1]\n        input_tensor = training_pair[0]\n        target_tensor = training_pair[1]\n        \n        loss = train(input_tensor, target_tensor, encoder, \n                     decoder, encoder_optimizer, decoder_optimizer, criterion)\n\n        print_loss_total += loss\n        plot_loss_total += loss\n\n        # 若能整除，就打印此时训练进度\n        if iter % print_every == 0:\n            print_loss_avg = print_loss_total / print_every\n            print_loss_total = 0\n            print('%s (%d %d%%) %.4f' % (timeSince(start, iter / n_iters),\n                iter, iter / n_iters * 100, print_loss_avg))\n        \n        # 若能整除，则把平均损失加入plot_loss\n        # 为后期画图做准备\n        if iter % plot_every == 0:\n            plot_loss_avg = plot_loss_total / plot_every\n            plot_losses.append(plot_loss_avg)\n            plot_loss_total = 0\n\n    showPlot(plot_losses)\n\nimport matplotlib.pyplot as plt\nimport matplotlib.ticker as ticker\nimport numpy as np\n\n\ndef showPlot(points):\n    plt.figure()\n    fig, ax = plt.subplots()\n    # this locator puts ticks at regular intervals\n    loc = ticker.MultipleLocator(base=0.2)\n    ax.yaxis.set_major_locator(loc)\n    plt.plot(points)\n\ndef evaluate(encoder, decoder, sentence, max_length=MAX_LENGTH):\n    # 评估时停止梯度跟踪，减少内存\n    with torch.no_grad():\n        input_tensor = tensorFromSentence(input_lang, sentence)\n        input_length = input_tensor.size()[0]\n        encoder_hidden = encoder.initHidden()\n\n        encoder_outputs = torch.zeros(max_length, encoder.hidden_size, device=device)\n\n        for ei in range(input_length):\n            encoder_output, encoder_hidden = encoder(input_tensor[ei],encoder_hidden)\n            encoder_outputs[ei] += encoder_output[0, 0]\n\n        decoder_input = torch.tensor([[SOS_token]], device=device)  # SOS\n\n        decoder_hidden = encoder_hidden\n        \n        decoded_words = []\n        decoder_attentions = torch.zeros(max_length, max_length)\n\n        for di in range(max_length):\n            decoder_output, decoder_hidden, decoder_attention = decoder(\n                decoder_input, decoder_hidden, encoder_outputs)\n            decoder_attentions[di] = decoder_attention.data\n            topv, topi = decoder_output.data.topk(1)\n            if topi.item() == EOS_token:\n                decoded_words.append('<EOS>')\n                break\n            else:\n                decoded_words.append(output_lang.index2word[topi.item()])\n\n            decoder_input = topi.squeeze().detach()\n\n        return decoded_words, decoder_attentions[:di + 1]\n\ndef evaluateRandomly(encoder, decoder, n=10):\n    for i in range(n):\n        pair = random.choice(pairs)\n        print('>', pair[0])\n        print('=', pair[1])\n        output_words, attentions = evaluate(encoder, decoder, pair[0])\n        output_sentence = ' '.join(output_words)\n        print('<', output_sentence)\n        print('')\n\nhidden_size = 256\nencoder1 = EncoderRNN(input_lang.n_words, hidden_size).to(device)\nattn_decoder1 = AttnDecoderRNN(hidden_size, output_lang.n_words, dropout_p=0.1).to(device)\n\ntrainIters(encoder1, attn_decoder1, 75000, print_every=5000)\n\n#保留网络参数，注意是实例化之后的\ntorch.save(encoder1.state_dict(),\"encoder_parameters\") \ntorch.save(attn_decoder1.state_dict(),\"decoder_parameters\") \n\n# 注意力可视化\ndef showAttention(input_sentence, output_words, attentions):\n    # 用colorbar设置图\n    fig = plt.figure()\n    ax = fig.add_subplot(111)\n    # attentions出来之后是tensor形式，需要转换为numpy\n    cax = ax.matshow(attentions.numpy(), cmap='bone')\n    fig.colorbar(cax)\n\n    # 设置坐标\n    ax.set_xticklabels([''] + input_sentence.split(' ') +\n                       ['<EOS>'], rotation=90)\n    ax.set_yticklabels([''] + output_words)\n\n    # 在每个刻度处显示标签，刻度为1的倍数\n    ax.xaxis.set_major_locator(ticker.MultipleLocator(1))\n    ax.yaxis.set_major_locator(ticker.MultipleLocator(1))\n\n    plt.show()\n\n\ndef evaluateAndShowAttention(input_sentence):\n    output_words, attentions = evaluate(\n        encoder1, attn_decoder1, input_sentence)\n    print('input =', input_sentence)\n    print('output =', ' '.join(output_words))\n    showAttention(input_sentence, output_words, attentions)\n\n\nevaluateAndShowAttention(\"elle a cinq ans de moins que moi .\")\n\nevaluateAndShowAttention(\"elle est trop petit .\")\n\nevaluateAndShowAttention(\"je ne crains pas de mourir .\")\n\nevaluateAndShowAttention(\"c est un jeune directeur plein de talent .\")\n"
  },
  {
    "path": "NN/RNN/seq2seq.md",
    "content": "### 基于Seq2Seq模型实现法语向英语的翻译\n\n\n\n**章节**\n\n- [简介](#abstract)\n- [Seq2Seq模型](#seq2seq)\n- [文本预处理](#preprocess)\n- [辅助函数](#fuzhu)\n- [模型训练](#train)\n- [评估函数](#evaluate)\n- [硬train一发](#try)\n- [结果](#results)\n- [模型保存与加载](#transfer)\n- [参考文献](#references)\n\n***\n**<div id='abstract'>简介</div>**\n\n本文基于PyTorch实现seq2seq模型来实现法语向英语的翻译，会带你了解从seq2seq模型的主要原理，在实战中需要对文本的预处理，到训练和可视化一个完整的过程。读完本文，不仅可以通过这个项目来了解PyTorch的语法以及RNN（GRU）的操作，而且可以真正明白seq2seq模型的内涵。同时，你也可以实现自己的一个翻译器，效果如下：\n\n```bash\ninput = elle a cinq ans de moins que moi .\noutput = she is two years younger than me . <EOS>\ninput = elle est trop petit .\noutput = she s too trusting . <EOS>\ninput = je ne crains pas de mourir .\noutput = i m not afraid of dying . <EOS>\ninput = c est un jeune directeur plein de talent .\noutput = he s a fast person . <EOS>\n```\n\n[数据集](../RNN/eng-fra.txt)，如果你想要自己跑一波demo，[完整代码](../RNN/rnn.py)，别忘了把数据集下载到本地更改路径\n***\n\n**<div id='seq2seq'>Seq2Seq模型</div>**\n\nseq2seq模型顾名思义就是序列到序列模型（sequence to sequence）。我们可以把这个模型当做一顶魔法帽，帽子的输入和输出均为序列，举个例子，翻译就是一个序列到序列的任务，输入法文句子，输出则是英文句子（见下图）。\n\n![](https://github.com/sherlcok314159/ML/blob/main/NN/Images/seq2seq.png)\n\nseq2seq模型主要由Encoder以及Decoder这两大部分组成，这两者分别执行将序列编码以及解码的工作，而在这个项目里面我们以GRU作为主要组成部分。GRU可以近似为LSTM的变种，比LSTM结构更简单，计算更加方便，而实际效果和LSTM相差无几。另外，关于LSTM 以及 GRU的详细解释可以看我的另一篇[RNN综述](NN/RNN/rnn.md)，本文偏重代码实现而非原理解释。\n\n首先来看一下Encoder，首先会对输入进行一个词嵌入，词嵌入的好处是可以对长短不一的输入进行统一长度，方便计算。GRU每一个时间步上的输入有两个，一个是上一个时间步的隐藏状态（hidden_state），另一个是当前时间步的文本输入。\n\n![](https://github.com/sherlcok314159/ML/blob/main/NN/Images/encoder.png)\n\nseq2seq模型中一个一个的单词其实是每一个时间步的输入和输出，而在训练模型时，单词是转换为索引（注意这个索引其实是在预处理部分决定的，常见的索引有单词在整个单词集中出现的顺序），在torch中还要转成tensor格式，比如说第一个单词，它的索引是2，那么它其实是tensor([2])。Embedding层正是我们对于输入的每一个词进行词嵌入处理，虽然我们每一次只输入一个单词，但我们在初始化的时候会将训练集中所有的单词一起预先处理好，然后当每一个单词索引进来之后，就好比查字典一样，找到自己对应词嵌入之后的tensor。注意，这里不是把所有的单词直接送进去，每一个单词索引有一个Embedding，这里的意思是告诉Embedding层一共有多少个embedding。这样的好处是直接固定了，不会随着不断输入而改变Embedding层参数。\n\n所以，Embedding层第一个参数其实是训练集中单词的数量，第二个参数指的是每一个单词拥有多少维的编码。单词索引送进去了，tensor([2])，假设Embedding层参数是(2,4)，则经过词嵌入后的结果是tensor([[0.1,2.1,3.1,0.9]])，会发现第二个size其实是需要嵌入的维度。\n\n包的引入\n\n```python\nfrom __future__ import unicode_literals, print_function, division\nfrom io import open\nimport unicodedata\nimport re\nimport random\nimport time\nimport math\nimport torch\nimport torch.nn as nn\nfrom torch import optim\nimport torch.nn.functional as F\nimport matplotlib.pyplot as plt\nimport matplotlib.ticker as ticker\n```\n\n```python\n# 若无GPU，则CPU\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\nclass EncoderRNN(nn.Module):\n    def __init__(self, input_size, hidden_size):\n        # 调用父类初始化方法\n        super(EncoderRNN, self).__init__()\n        # 初始化必须的变量\n        self.hidden_size = hidden_size\n\n        self.embedding = nn.Embedding(input_size, hidden_size)        # gru的输入为三维，两个参数均指的是最后一维的大小\n        # tensor([1,1,hidden_size])\n        self.gru = nn.GRU(hidden_size, hidden_size)\n\n    def forward(self, input, hidden):\n        # embedded.size() ==> tensor([1,1,hidden_size])\n        # -1的好处是机器会自动计算\n        # 这里用view扩维的原因是gru必须接受三维的输入\n        embedded = self.embedding(input).view(1, 1, -1)\n        output = embedded        \n        output, hidden = self.gru(output, hidden)\n        return output, hidden\n    \n    def initHidden(self):\n        # 初始化隐层状态全为0\n        # hidden ==> tensor([1,1,hidden_size])\n        return torch.zeros(1, 1, self.hidden_size, device=device)\n\n```\n\n![](https://github.com/sherlcok314159/ML/blob/main/NN/Images/decoder.png)\n\n接下来介绍Decoder，在本文中仅使用Encoder中最后一个输出的hidden来作为Decoder的初始的hidden，因为编码器最后一个hidden常常含有整个序列的上下文信息，有时会被称为上下文变量。\n\n这里的第一个文本输入其实是\\<sos>（start of sentence），与Encoder不同的是，这里经过词嵌入之后还做了relu处理，增强模型非线性的表达能力。\n\n输入会经过一个softmax来获得一个概率分布，最后取最大概率的那个作为当前预测的结果\n\n上一个时间步的hidden总会作为当前时间步的hidden输入，而当前时间步的文本输入是上一个时间步的预测结果。\n\n\n\n```python\nclass DecoderRNN(nn.Module):\n    def __init__(self, hidden_size, output_size):\n        super(DecoderRNN, self).__init__()\n        self.hidden_size = hidden_size\n\n        self.embedding = nn.Embedding(output_size, hidden_size)\n        self.gru = nn.GRU(hidden_size, hidden_size)\n        # input_features ==> hidden_size\n        # output_features ==> output_size\n        self.out = nn.Linear(hidden_size, output_size)        # Log(Softmax(X))\n        self.softmax = nn.LogSoftmax(dim=1)\n\n    def forward(self, input, hidden):\n        output = self.embedding(input).view(1, 1, -1)\n        output = F.relu(output)\n        output, hidden = self.gru(output, hidden)\n        # output.size() ==> [1,1,hidden_size]\n        # output的第一个1是我们用以适合gru输入扩充的\n        # 所以用output[0]选取前面的\n        output = self.softmax(self.out(output[0]))\n        return output, hidden\n\n    def initHidden(self):\n        return torch.zeros(1, 1, self.hidden_size, device=device)\n```\n\n\n在刚刚的基础上进行升级，在Decoder上引入注意力机制，对比一下，没加注意力之前，Decoder是直接接受全部的Encoder输出，而attention加入之后可以更准确地聚焦到Encoder输出的不同部分，具体是用注意力权重矩阵去乘以Encoder的输出向量用以创建加权组合，从而帮助Decoder选择正确的输出。\n\n实现时将Decoder的文本输入和隐藏状态作为输入，分别对应图中的input,prev_hidden（上一个时间步的隐藏状态）。文本输入进来经过词嵌入之后应用了dropout，可以一定程度减少模型过拟合，增强模型的泛化能力。通过前馈层attn之后进行softmax处理再和Encoder的输出矩阵做点乘处理，再拼接起来加一个relu。注意，上一个时间步的隐藏状态会继续作为gru的状态输入。\n\n![](https://github.com/sherlcok314159/ML/blob/main/NN/Images/attDecoder.png)\n\n```python\nclass AttnDecoderRNN(nn.Module):\n    def __init__(self, hidden_size, output_size, dropout_p=0.1, max_length=MAX_LENGTH):\n        super(AttnDecoderRNN, self).__init__()\n        self.hidden_size = hidden_size\n        self.output_size = output_size\n        self.dropout_p = dropout_p\n        self.max_length = max_length\n\n        self.embedding = nn.Embedding(self.output_size, self.hidden_size)\n        # 因为会将prev_hidden和embedded在最后一个维度\n        # 即hidden_size，进行拼接，所以要*2\n        # max_length用以统一不同长度的句子分配的注意力\n        # 最大长度句子使用所有注意力权重，较短只用前几个\n        self.attn = nn.Linear(self.hidden_size*2,self.max_length)\n        self.attn = nn.Linear(self.hidden_size * 2, self.max_length)\n        self.attn_combine = nn.Linear(self.hidden_size * 2, self.hidden_size)\n        self.dropout = nn.Dropout(self.dropout_p)\n        self.gru = nn.GRU(self.hidden_size, self.hidden_size)\n        self.out = nn.Linear(self.hidden_size, self.output_size)\n\n    def forward(self, input, hidden, encoder_outputs):\n        embedded = self.embedding(input).view(1, 1, -1)\n        embedded = self.dropout(embedded)\n\n        # 因为第一维只是适应模型输入扩充的\n        # 所以拼接时，只需要取后面两个维度\n        attn_weights = F.softmax(\n            self.attn(torch.cat((embedded[0], hidden[0]), 1)), dim=1)        # bmm ==> batch matrix multiplication\n        # e.g. a.size() ==> tensor([1,2,3])\n        # b.size() ==> tensor([1,3,4])\n        # torch.bmm(a,b).size() ==> tensor([1,2,4])  \n        # 第一维度不变，其他两维就当作矩阵做乘法\n        # unsqueeze(0)用以在在第一维扩充维度\n        # attn_applied赋予encoder_outputs不同部分不同权重\n        attn_applied = torch.bmm(attn_weights.unsqueeze(0),\n                                 encoder_outputs.unsqueeze(0))\n\n        output = torch.cat((embedded[0], attn_applied[0]), 1)\n        output = self.attn_combine(output).unsqueeze(0)\n\n        output = F.relu(output)\n        output, hidden = self.gru(output, hidden)\n\n        output = F.log_softmax(self.out(output[0]), dim=1)\n        return output, hidden, attn_weights\n\n    def initHidden(self):\n        return torch.zeros(1, 1, self.hidden_size, device=device)\n\n```\n***\n\n了解完模型的主要架构，接下来了解一下模型输入数据的处理\n\n**<div id='preprocess'>文本预处理</div>**\n\n> 你训练的模型不过是无限逼近你data所能提供的上界而已\n\n在NLP中，对数据的前期处理也是十分重要的，大的思路就是统一长度，变为数值。\n\n以下两个分别代表一个序列的开始和结束\n\n```python\nSOS_token = 0\nEOS_token = 1\n```\n\n对语言进行初步处理并返回Lang对象\n\n```python\nclass Lang:\n    def __init__(self,name):\n        self.name = name\n        # 形如 {\"hello\" : 3}\n        self.word2index = {}\n        # 统计每一个单词出现的次数\n        self.word2count = {}\n        self.index2word = {0:\"SOS\",1:\"EOS\"}\n        # 统计训练集出现的单词数\n        self.n_words = 2 # SOS 和 EOS已经存在了\n\n    def addSentence(self,sentence):\n        # 第一行为 Go.  Va !\n        # 前面是英语，后面是法语，中间用tab分隔\n        for word in sentence.split(\" \"):\n            self.addWord(word)\n    \n    def addWord(self,word):\n        if word not in self.word2index:\n            self.word2index[word] = self.n_words\n            self.word2count[word] = 1\n            # 用现有的总词数作为新的单词的索引\n            self.index2word[self.n_words] = word\n            self.n_words += 1\n        else:\n            self.word2count[word] += 1\n```\n将unicode字符转换为纯Ascii\n\n```python\ndef unicodeToAscii(s):\n    return ''.join(\n        c for c in unicodedata.normalize('NFD', s)\n        if unicodedata.category(c) != 'Mn'\n    )\n```\n\n```python\ndef normalizeString(s):\n    # 转码之后变小写切除两边空白\n    s = unicodeToAscii(s.lower().strip())\n    # 匹配.!?，并在前面加空格\n    s = re.sub(r\"([.!?])\",r\" \\1\",s)\n    # 将非字母和.!?的全部变为空白\n    s = re.sub(r\"[^a-zA-Z.!?]+\",r\" \",s)\n    return s\n```\n```python\ndef readLangs(lang1,lang2,reverse=False):\n    print(\"Reading lines...\")\n\n    # 读取文件并分为几行\n    # 每一对句子最后会有个换行符\\n\n    # lines ==> ['Go.\\tVa !', 'Run!\\tCours\\u202f!'...]\n    lines = open(\"填你的数据路径\",encoding = \"utf-8\").read().strip().split(\"\\n\")\n\n    # 将每一行拆分成对并进行标准化\n    # pairs ==> [[\"go .\",\"va !\"],...]\n    pairs = [[normalizeString(s) for s in l.split(\"\\t\")] for l in lines]\n\n    # 反向对，实例Lang\n    # 源文件是先英语后法语\n    # 换完之后就是先法后英\n    if reverse:\n        pairs = [list(reversed(p)) for p in pairs]\n        input_lang = Lang(lang2)\n        output_lang = Lang(lang1)\n    else:\n        input_lang = Lang(lang1)\n        output_lang = Lang(lang2)\n    \n    return input_lang,output_lang,pairs\n```\n\n对上面处理完的pair对进行两个判断，是否每一个pair长度都小于MAX_LENGTH，第二个pair是否以eng_prefixes开头（本文会进行反转），这样可以减少训练量，加快收敛。\n\n```python\nMAX_LENGTH = 10\neng_prefixes = (\n    \"i am \", \"i m \",\n    \"he is\", \"he s \",\n    \"she is\", \"she s \",\n    \"you are\", \"you re \",\n    \"we are\", \"we re \",\n    \"they are\", \"they re \"\n)\n\ndef filterPair(p):\n    return len(p[0].split(' ')) < MAX_LENGTH and \\\n        len(p[1].split(' ')) < MAX_LENGTH and \\\n        p[1].startswith(eng_prefixes)\n\n# 留下符合条件的\ndef filterPairs(pairs):\n    return [pair for pair in pairs if filterPair(pair)]\n```\n\n接着进行整合\n\n```python\ndef prepareData(lang1, lang2, reverse=False):\n    input_lang, output_lang, pairs = readLangs(lang1, lang2, reverse)\n    print(\"Read %s sentence pairs\" % len(pairs))\n    pairs = filterPairs(pairs)\n    print(\"Trimmed to %s sentence pairs\" % len(pairs))\n    print(\"Counting words...\")\n    for pair in pairs:\n        input_lang.addSentence(pair[0])\n        output_lang.addSentence(pair[1])\n    print(\"Counted words:\")\n    print(input_lang.name, input_lang.n_words)\n    print(output_lang.name, output_lang.n_words)\n    return input_lang, output_lang, pairs\n\ninput_lang, output_lang, pairs = prepareData('eng', 'fra', True)\n# 随机输出pair对\nprint(random.choice(pairs))\n```\n\n接下来创建对句子里的单词的索引，并转为tensor形式\n\n```python\ndef indexesFromSentence(lang, sentence):\n    return [lang.word2index[word] for word in sentence.split(' ')]\n\ndef tensorFromSentence(lang, sentence):\n    indexes = indexesFromSentence(lang, sentence)\n    indexes.append(EOS_token)\n    return torch.tensor(indexes, dtype=torch.long, device=device).view(-1, 1)\n\ndef tensorsFromPair(pair):\n    input_tensor = tensorFromSentence(input_lang, pair[0])\n    target_tensor = tensorFromSentence(output_lang, pair[1])\n    return (input_tensor, target_tensor)\n```\n\n***\n\n**<div id='fuzhu'>辅助函数</div>**\n记录训练时间：\n```python\ndef asMinutes(s):\n    m = math.floor(s / 60)\n    s -= m * 60\n    return \"%dm %ds\" % (m,s)\n\ndef timeSince(since,percent):\n    now = time.time()\n    s = now - since\n    es = s / (percent)\n    rs = es - s\n    return \"%s (- %s)\" % (asMinutes(s),asMinutes(rs))\n```\n\n用来可视化训练\n```python\ndef showPlot(points):\n    plt.figure()\n    fig,ax = plt.subplots()\n    loc = ticker.MultipleLocator(base=0.2)\n    ax.yaxis.set_major_locator(loc)\n    plt.plot(points)\n```\n\n***\n\n**<div id='train'>模型训练</div>**\n\n先介绍teacher_forcing，指的是在Decoder的每一个时间步的文本输入不采取上一个时间步预测出的结果，而是直接用label。可以类比为现实生活中学生这一道题做错了，老师就立马纠正他。这种操作可以加快模型收敛，但是毕竟是老师给的，模型自己学到了什么还得另说。\n\n```python\nteacher_forcing_ratio = 0.5\n```\n\n```python\ndef train(input_tensor,target_tensor,encoder,decoder,encoder_optimizer,decoder_optimizer,criterion,max_length=MAX_LENGTH):\n    # 初始化隐藏状态\n    encoder_hidden = encoder.initHidden()\n\n    # 梯度清零\n    encoder_optimizer.zero_grad()\n    decoder_optimizer.zero_grad()\n\n    input_length = input_tensor.size(0)\n    target_length = target_tensor.size(0)\n\n    # 初始化，等会替换\n    encoder_outputs = torch.zeros(max_length,encoder.hidden_size,device=device)\n\n    loss = 0\n     \n    for ei in range(input_length):\n        encoder_output,encoder_hidden = encoder(\n            input_tensor[ei],encoder_hidden)\n        # encoder_output.size() ==> tensor([1,1,hidden_size])\n        encoder_outputs[ei] = encoder_output[0,0]\n    \n    # 输入为<sos>，decoder初始隐藏状态为encoder的\n    decoder_input = torch.tensor([[SOS_token]],device=device)\n\n    decoder_hidden = encoder_hidden\n\n    # 随机决定是否采用teacher_forcing\n    use_teacher_forcing = True if random.random() < teacher_forcing_ratio else False\n\n    if use_teacher_forcing:\n        # 若采用，label作为下一个时间步输入\n        for di in range(target_length):\n            decoder_output,decoder_hidden,decoder_attention = decoder(\n                decoder_input,decoder_hidden,encoder_outputs)\n            loss += criterion(decoder_output,target_tensor[di])\n    else:\n        # 若不用，则用预测出的作为Decoder下一个输入\n        for di in range(target_length):\n            decoder_output,decoder_hidden,decoder_attention = decoder(\n                decoder_input,decoder_hidden,encoder_outputs)\n            # topk代表在所给维度上输出最大值\n            # 参数代表输出前多少个最大值\n            # 若为1，就是最大值\n            # topv,topi 分别为前n个最大值和其对应的索引\n            topv,topi = decoder_output.topk(1)\n            # squeeze()进行降维\n            # detach将与这个变量相关的从计算图中剥离\n            # 从而减少内存的开销\n            decoder_input = topi.squeeze().detach()\n\n            loss += criterion(decoder_output,target_tensor[di])\n            # 若某个时间步输入为<eos>，则停止\n            if decoder_input.item() == EOS_token:\n                break\n    \n    loss.backward()     \n\n    # 参数更新\n    encoder_optimizer.step()\n    decoder_optimizer.step()   \n\n    # 返回平均loss\n    return loss.item() / target_length\n```\n\n定义完单个的训练函数，接下来定义迭代训练的函数\n\n```python\ndef trainIters(encoder,decoder,n_iters,print_every=1000,plot_every=100,learning_rate=0.01):\n    start = time.time()\n    plot_losses = []\n    # 每一次重置\n    print_loss_total = 0\n    plot_loss_total = 0\n\n    # 定义优化器\n    encoder_optimizer = optim.SGD(encoder.parameters(),lr=learning_rate)\n    decoder_optimizer = optim.SGD(decoder.parameters(),lr=learning_rate)\n    # random.choice(pairs)随机选择\n    training_pairs = [tensorsFromPair(random.choice(pairs)) for i in range(n_iters)]\n    criterion = nn.NLLLoss()\n\n    for iter in range(1,n_iters + 1):\n        training_pair = training_pairs[iter-1]\n        input_tensor = training_pair[0]\n        target_tensor = training_pair[1]\n        \n        loss = train(input_tensor, target_tensor, encoder, \n                     decoder, encoder_optimizer, decoder_optimizer, criterion)\n\n        print_loss_total += loss\n        plot_loss_total += loss\n\n        # 若能整除，就打印此时训练进度\n        if iter % print_every == 0:\n            print_loss_avg = print_loss_total / print_every\n            print_loss_total = 0\n            print('%s (%d %d%%) %.4f' % (timeSince(start, iter / n_iters),\n                iter, iter / n_iters * 100, print_loss_avg))\n        \n        # 若能整除，则把平均损失加入plot_loss\n        # 为后期画图做准备\n        if iter % plot_every == 0:\n            plot_loss_avg = plot_loss_total / plot_every\n            plot_losses.append(plot_loss_avg)\n            plot_loss_total = 0\n\n    showPlot(plot_losses)\n```\n\n**<div id='evaluate'>评估</div>**\n```python\ndef evaluate(encoder, decoder, sentence, max_length=MAX_LENGTH):\n    # 评估时停止梯度跟踪，减少内存\n    with torch.no_grad():\n        input_tensor = tensorFromSentence(input_lang, sentence)\n        input_length = input_tensor.size()[0]\n        encoder_hidden = encoder.initHidden()\n\n        encoder_outputs = torch.zeros(max_length, encoder.hidden_size, device=device)\n\n        for ei in range(input_length):\n            encoder_output, encoder_hidden = encoder(input_tensor[ei],encoder_hidden)\n            encoder_outputs[ei] += encoder_output[0, 0]\n\n        decoder_input = torch.tensor([[SOS_token]], device=device)  # SOS\n\n        decoder_hidden = encoder_hidden\n        \n        decoded_words = []\n        decoder_attentions = torch.zeros(max_length, max_length)\n\n        for di in range(max_length):\n            decoder_output, decoder_hidden, decoder_attention = decoder(\n                decoder_input, decoder_hidden, encoder_outputs)\n            decoder_attentions[di] = decoder_attention.data\n            topv, topi = decoder_output.data.topk(1)\n            if topi.item() == EOS_token:\n                decoded_words.append('<EOS>')\n                break\n            else:\n                decoded_words.append(output_lang.index2word[topi.item()])\n\n            decoder_input = topi.squeeze().detach()\n\n        return decoded_words, decoder_attentions[:di + 1]\n\n```\n```python\ndef evaluateRandomly(encoder, decoder, n=10):\n    for i in range(n):\n        pair = random.choice(pairs)\n        print('>', pair[0])\n        print('=', pair[1])\n        output_words, attentions = evaluate(encoder, decoder, pair[0])\n        output_sentence = ' '.join(output_words)\n        print('<', output_sentence)\n        print('')\n\n```\n***\n**<div id='try'>硬train一发</div>**\n```python\nhidden_size = 256\nencoder1 = EncoderRNN(input_lang.n_words, hidden_size).to(device)\nattn_decoder1 = AttnDecoderRNN(hidden_size, output_lang.n_words, dropout_p=0.1).to(device)\n\ntrainIters(encoder1, attn_decoder1, 75000, print_every=5000)\n\n```\n***\n**<div id='results'>结果</div>**\n\n接下来可视化注意力，并且试着翻译几个句子，如果你想自己尝试，可以添加，只是别忘了需要小写，空格分割\n```python\n\n# 注意力可视化\ndef showAttention(input_sentence, output_words, attentions):\n    # 用colorbar设置图\n    fig = plt.figure()\n    ax = fig.add_subplot(111)\n    # attentions出来之后是tensor形式，需要转换为numpy\n    cax = ax.matshow(attentions.numpy(), cmap='bone')\n    fig.colorbar(cax)\n\n    # 设置坐标\n    ax.set_xticklabels([''] + input_sentence.split(' ') +\n                       ['<EOS>'], rotation=90)\n    ax.set_yticklabels([''] + output_words)\n\n    # 在每个刻度处显示标签，刻度为1的倍数\n    ax.xaxis.set_major_locator(ticker.MultipleLocator(1))\n    ax.yaxis.set_major_locator(ticker.MultipleLocator(1))\n\n    plt.show()\n\n\ndef evaluateAndShowAttention(input_sentence):\n    output_words, attentions = evaluate(\n        encoder1, attn_decoder1, input_sentence)\n    print('input =', input_sentence)\n    print('output =', ' '.join(output_words))\n    showAttention(input_sentence, output_words, attentions)\n\n\nevaluateAndShowAttention(\"elle a cinq ans de moins que moi .\")\n\nevaluateAndShowAttention(\"elle est trop petit .\")\n\nevaluateAndShowAttention(\"je ne crains pas de mourir .\")\n\nevaluateAndShowAttention(\"c est un jeune directeur plein de talent .\")\n```\n![](https://github.com/sherlcok314159/ML/blob/main/NN/Images/attention.png)\n\n***\n**<div id='transfer'>模型保存与加载</div>**\n\n如果要保留模型，下一次直接加载，可以在硬train一发章节最后添加如下代码\n```python\n#保留网络参数，注意是实例化之后的\ntorch.save(encoder1.state_dict(),\"encoder_parameters\") \ntorch.save(attn_decoder1.state_dict(),\"decoder_parameters\") \n# 然后下一次加载时，将那里除了hidden_size之外的代码全部注释\n# hidden_size基础实例化会用到\n# 加载参数字典的时候路径具体看\nencoder1_pretrained = EncoderRNN(input_lang.n_words, hidden_size).to(device)\nencoder1_pretrained.load_state_dict(torch.load(\"../encoder_parameters\"))\n\nattn_decoder1_pretrained = AttnDecoderRNN(hidden_size, output_lang.n_words, dropout_p=0.1).to(device)\nattn_decoder1_pretrained.load_state_dict(torch.load(\"../decoder_parameters\"))\n\n# 最后在evaluateAndShowAttention函数里面\n# 将encoder1,attn_decoder1分别改为encoder1_pretrained,attn_decoder1_pretrained\n```\n***\n**<div id='references'>参考文献</div>**\n\nhttps://pytorch123.com/FifthSection/Translation_S2S_Network/\n***\n\n相信你看完这个已经对于seq2seq模型以及用代码实现已经有了进一步的了解，本人自认才疏学浅，难免出现谬误，欢迎批评指正。\n"
  },
  {
    "path": "NN/RNN/单向rnn、双向rnn_embedding.py",
    "content": "# -*- coding: utf-8 -*-\n\"\"\"单向RNN、双向RNN-embedding.ipynb\n\nAutomatically generated by Colaboratory.\n\nOriginal file is located at\n    https://colab.research.google.com/drive/18T6WUWX_fdG23ufTD6CkelZnQVYnaU3w\n\"\"\"\n\nimport matplotlib as mpl\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport pandas as pd\nimport tensorflow as tf\nfrom tensorflow import keras\nimport sklearn \nimport os\nimport sys\nimport time\n\nprint(tf.__version__)\nprint(sys.version_info)\nfor module in mpl,np,pd,sklearn,tf,keras:\n  print(module.__name__,module.__version__)\n\nimdb=keras.datasets.imdb\nvocab_size=10000\nindex_from=3\n(train_data,train_labels),(test_data,test_labels)=imdb.load_data(num_words=vocab_size,index_from=index_from)\n\nword_index=imdb.get_word_index()\nprint(len(word_index))\n\nword_index={k:(v+3) for k,v in word_index.items()}\n\nword_index['<PAD>']=0\nword_index['<START>']=1\nword_index['<UNK>']=2\nword_index['<END>']=3\n\nreverse_word_index=dict([\n    (value,key) for key,value in word_index.items()\n])\n\ndef decode_review(text_ids):\n    return ' '.join([reverse_word_index.get(word_id,'<UNK>') for word_id in text_ids])\n\ndecode_review(train_data[0])\n\nmax_length=500\n\ntrain_data=keras.preprocessing.sequence.pad_sequences(\n    train_data,value=word_index['<PAD>'],\n    padding='post',maxlen=max_length\n)\n\ntest_data=keras.preprocessing.sequence.pad_sequences(\n    test_data,value=word_index['<PAD>'],\n    padding='post',maxlen=max_length\n)\n\nprint(train_data[0])\n\nembedding_dim=16\nbatch_size=512\n# 把DNN的全局平均换成单向RNN，时间变长，不断修改效果变好\n# return_sequences:Boolean. Whether to return the last output in the output sequence, or the full sequence 文本生成、机器翻译是要返回所有序列的True,只要最后一个序列False\nsingle_rnn_model=keras.models.Sequential([\n          keras.layers.Embedding(vocab_size,embedding_dim,input_length=max_length),\n          keras.layers.SimpleRNN(units=64,return_sequences=False),\n          # w=64,b=64\n          keras.layers.Dense(64,activation='relu'),\n          keras.layers.Dense(1,activation='sigmoid'),\n])\n\nsingle_rnn_model.summary()\nsingle_rnn_model.compile(optimizer='adam',loss='binary_crossentropy',metrics=['accuracy'])\n\n# 全连接层参数是4160 wx+b:x是一维的64\n\nsingle_rnn_model.variables\n\nhistory_single_rnn=single_rnn_model.fit(\n    train_data,train_labels,\n    epochs=30,\n    batch_size=batch_size,\n    validation_split=0.2\n)\n\ndef plot_learning_curves(history,label,epochs,min_value,max_value):\n  data={}\n  data[label]=history.history[label]\n  data['val_'+label]=history.history['val_'+label]\n  pd.DataFrame(data).plot(figsize=(8,5))\n  plt.grid(True)\n  plt.axis([0,epochs,min_value,max_value])\n  plt.show()\n\n\n# 训练集、验证集上的准确率\nplot_learning_curves(history_single_rnn,'accuracy',30,0,1)\n# 训练集、验证集上的损失\nplot_learning_curves(history_single_rnn,'loss',30,0,1)\n\nsingle_rnn_model.evaluate(\n    test_data,test_labels,\n    batch_size=batch_size,\n    verbose=0\n)\n\n\"\"\"损失接近70%，准确率是50%—单向RNN没啥用\"\"\"\n\n# !nvidia-smi\n\n# 改成双向RNN\n\nembedding_dim=16\nbatch_size=512\n\nmodel=keras.models.Sequential([\n             keras.layers.Embedding(vocab_size,embedding_dim,input_length=max_length),\n            #  增加数据，2层双向RNN\n             keras.layers.Bidirectional(keras.layers.SimpleRNN(units=64,return_sequences=True)),\n             keras.layers.Bidirectional(keras.layers.SimpleRNN(units=64,return_sequences=False)),\n             keras.layers.Dense(64,activation='relu'),\n             keras.layers.Dense(1,activation='sigmoid'),\n             ])\n\nmodel.summary()\nmodel.compile(optimizer='adam',\n              loss='binary_crossentropy',\n              metrics=['accuracy'])\n\nhistory=model.fit(train_data,train_labels,epochs=30,batch_size=batch_size,validation_split=0.2)\n\n\"\"\"在训练集上准确率能达到100%，就足够说明模型强大了\"\"\"\n\nplot_learning_curves(history,'accuracy',30,0,1)\nplot_learning_curves(history,'loss',30,0,4)\n\n\"\"\"过拟合了，可能是模型太复杂，改为单层的RNN\"\"\"\n\n# 改成双向RNN\n\nembedding_dim=16\nbatch_size=512\n\nmodel=keras.models.Sequential([\n             keras.layers.Embedding(vocab_size,embedding_dim,input_length=max_length),\n            #  增加数据，2层双向RNN\n             keras.layers.Bidirectional(keras.layers.SimpleRNN(units=64,return_sequences=True)),\n            #  keras.layers.Bidirectional(keras.layers.SimpleRNN(units=64,return_sequences=False)),\n             keras.layers.Dense(64,activation='relu'),\n             keras.layers.Dense(1,activation='sigmoid'),\n             ])\n\nmodel.summary()\nmodel.compile(optimizer='adam',\n              loss='binary_crossentropy',\n              metrics=['accuracy'])\n\nhistory=model.fit(train_data,train_labels,epochs=30,batch_size=batch_size,validation_split=0.2)\n\nplot_learning_curves(history,'accuracy',30,0,1)\nplot_learning_curves(history,'loss',30,0,4)\n\nmodel.evaluate(test_data,test_labels,batch_size=batch_size,verbose=0)\n\n\"\"\"与单向RNN相比loss减少，accuracy上升，效果变好；但是仍然是过拟合的，可以看作模型强大\"\"\""
  },
  {
    "path": "NN/activation.md",
    "content": "### 激活函数\r\n\r\n**1.Sigmoid**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/sigmoid.png)\r\n\r\n图像大致长这样\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/sigmoid_2.png)\r\n\r\n可以看出，会将所有数据映射到 **(0,1)** 区间上，若是**正数**，映射后的值大于**0.5**；若为**负数**，映射后的值小于**0.5**；若为**0**，则为**0.5**\r\n\r\n可是，**Sigmoid**在**DeepLearning**的时候会随着层数的增加**loss**反而飙升\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/vanish.png)\r\n\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/vanish_2.png)\r\n\r\n\r\n其实在**input**这边，gradient很小，参数几乎还是随机更新；而**output**这边，gradient很大，参数更新很快，几乎就收敛了（converge）。导致**input**这边参数还在随机更新的时候，**output**这边就已经根据**random**出来的参数找到了**local minimum**，然后你就会观察说糟糕了，**loss**下降的速度很慢\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/vanish_3.png)\r\n\r\n\r\n因为**Sigmoid**将负无穷到正无穷的数据**硬压**到（0，1），当**input**很大的时候，其实**output**的结果**变化很小**。本来影响就很小，你又叠了很多层，影响被迫**衰减**，就造成了**input**几乎对loss产生不了什么影响。\r\n\r\n**2.ReLu**\r\n\r\n为了解决上面的问题，应该将激活函数换成**ReLu**\r\n\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/relu.png)\r\n\r\n图像大致长这样\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/relu_2.png)\r\n\r\n当**input**小于等于0的时候，直接变成0。这就意味着有些神经元（neuron）会对整个神经网络没有任何的影响，所以这些神经元是可以被拿掉的\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/relu_3.png)\r\n\r\n\r\n那些没用的神经元直接去掉\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/relu_4.png)\r\n\r\n\r\n\r\n这些就**不会存在很小**的gradient，就有效地减免一开始**Sigmoid**中产生的问题\r\n\r\n其实ReLu还有其他的形式\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/relu_others.png)\r\n\r\n\r\n**3.Maxout**\r\n\r\n其实**ReLu**是**Maxout**中的一种。\r\n\r\n拿下图举个例子\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/maxout.png)\r\n\r\n你想如果在ReLu中，负的没有，输入是不是跟这个一样呢？\r\n\r\n那我们再从理论解释一下这个，如果将输送给**w2**的权重和偏差全部设为0，得出的图像是不是就是x轴，将**w1**的权重设为1，偏差设为0，是不是就是ReLu了呢？\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/maxout_2.png)\r\n\r\n\r\n但是**Maxout**的权重和偏差不是固定的，它是可以**通过不同的数据学出不同的曲线**\r\n\r\n综上所述，**ReLu** 和 **Maxout** 都是根据不同的自身的判别条件而自动**剔除**一些数据，从而产生瘦的神经网络，**不同的数据会产生不同的神经网络架构**\r\n\r\n**4.Tanh**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/tanh.png)\r\n\r\n图像大致长这样\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/tanh_2.png)\r\n\r\ntanh的特点：\r\n\r\n**1.梯度更新更快** 由上图可以发现，当输入变化很大，原本的sigmoid输出变化很少，这不利于梯度更新。而tanh可以有效的解决这个问题\r\n\r\n**2.不变号** 正就被映射成正的，负的被映射成负的，零就被映射成零。另外，它过原点。\r\n\r\n**5.Softplus**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/softplus_2.png)\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/softplus.png)\r\n\r\n它相对于ReLu相对来说更加平滑，不过同样是单侧抑制\r\n\r\n\r\n**6.Swish**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/swish_2.png)\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/swish.png)\r\n\r\n主要优点\r\n\r\n**1.** 无界性有助于慢速训练期间，梯度逐渐接近0并导致饱和；\r\n\r\n**2.** 导数恒大于0\r\n\r\n**3.** 平滑度在优化和泛化有很大作用\r\n\r\n**7.Elu**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/elu_2.jpeg)\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/elu.png)\r\n\r\n\r\nElu具有Relu的全部优点，**没有Dead Relu问题**，输出值的**平均值接近于0，以0为中心**\r\n\r\nElu通过减少偏置偏移的影响，使正常梯度更接近于单位自然梯度，从而使均值向零**加速学习**\r\n\r\nElu在较小的输入时会饱和至**负值**，从而减少前向传播的变异和信息\r\n\r\n但它相对来说计算会麻烦一点，而且理论上ELU应该比RELU，实操上不一定都比RELU好\r\n\r\n**8.Softsign**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/softsign.png)\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/softsign_2.jpg)\r\n\r\n\r\n**9.Selu**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/selu.png)\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/selu_2.png)\r\n\r\n\r\n**10.Exponential**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/exponential.png)\r\n\r\n\r\n**11.Softmax**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/softmax.png)\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/softmax_2.png)\r\n\r\n\r\nsoftmax将输入映射成[-1,1]输出，可以视作为概率，但是当输入值很大的时候，softmax几乎是无动于衷的，即为梯度下降或者消失了。\r\n\r\n**参考文献：**\r\n\r\nhttps://www.youtube.com/watch?v=xki61j7z-30&list=PLJV_el3uVTsPy9oCRY30oBPNLCo89yu49&index=16"
  },
  {
    "path": "NN/bp.md",
    "content": "### 反向传播算法（BackPropagation）\n\n首先介绍一下链式法则\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/functions.png)\n\n假如我们要求z对x1的偏导数，那么势必得先求z对t1的偏导数，这就是链式法则，一环扣一环\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/chain_rule.png)\n\nBackPropagation（BP）正是基于链式法则的，接下来用简单的前向传播网络为例来解释。里面有线的神经元代表的sigmoid函数，y_1代表的是经过模型预测出来的，y_1 = w1 * x1 + w2 * x2，而y^1代表的是实际值，最后是预测值与实际值之间的误差，l_1 = 1/2 * (y_1 - y^1)^2，l_2同理。总的错误是E = l_1 + l_2。\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/bp_.png)\n\n在神经网络中我们采用梯度下降（Gradient Descent）来进行参数更新，最终找到最优参数。可是离E最近的不是w1，首先我们需要求出E对l_1的偏导，接着求l_1对于最近神经元sigmoid中变量的导数，最后再求y_0对于w1的偏导，进行梯度更新。\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/bp_math.png)\n\n这便是神经网络中的BP算法，与以往的正向传播不同，它应该是从反向的角度不断优化\n\n这里只是用了一层隐含层，可以看的出来一个参数的梯度往往与几个量产生关系：\n\n- 最终y被预测的值。这往往取决于你的激活函数，如这里采用sigmoid\n- 中间对激活函数进行求导的值\n- 输入的向量，即为x\n\n推广到N层隐含层，只是乘的东西变多了，但是每个式子所真正代表的含义是一样的。\n\n换个角度说，在深度学习梯度下降的时候会出现比较常见的两类问题，梯度消失以及梯度爆炸很可能就是这些量之间出了问题，对模型造成了影响。\n\n1、梯度消失（Gradient Vanishing）。意思是梯度越来越小，一个很小的数再乘上几个较小的数，那么整体的结果就会变得非常的小。那么导致的可能原因有哪些呢？我们由靠近E的方向向后分析。\n\n- 激活函数。y_1是最后经过激活函数的结果，如果激活函数不能很好地反映一开始输入时的情况，那么就很有可能出问题。sigmoid函数的性质是正数输出为大于0.5，负数输出为小于0.5，因为函数的值域为(0,1)，所以也常常被用作二分类的激活函数，用以表示概率。但是，当x比较靠近原点的时候，x变化时，函数的输出也会发生明显的变化，可是，当x相当大的时候，sigmoid几乎已经是无动于衷了，x相当小的时候同理。这里不妨具体举个二分类的例子，比如说用0,1代表标签，叠了一层神经网络，sigmoid函数作为激活函数。E对l_1的偏导极大程度将取决于y_1，因为标签就是0,1嘛。就算输入端的x,w都比较大，那么经过sigmoid压缩之后就会变得很小，只有一层的时候其实还好，但是当层数变多之后呢，sigmoid函数假如说每一层都当做是激活函数，那么最后E对l_1的偏导将是十分地小，尽管x,w代表着一些信息，可经过sigmoid压缩之后信息发生了丢失，梯度无法完成真正意义上的传播，乘上一个很小的数，那么整个梯度会越来越小，梯度越小，说明几乎快收敛了。换句话说，几乎没多久就已经收敛了。\n\n另一种思路是从公式（4）出发，无论y_0取何值，公式（4）的输出值总是介于(0,1/4]（当然具体边界处是否能取到取决于具体变量的取值），证明：\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/sig.png)\n\n因为不断乘上一个比较小的数字，所以层数一多，那么整个梯度的值就会变得十分小，而且这个是由sigmoid本身导致，应该是梯度消失的主因。\n\n解决方法可以是换个激活函数，比如RELU就不错，或者RELU的变种。\n\n\n2、梯度爆炸（Gradient Exploding）。意思是梯度越来越大，更新的时候完全起不到优化的作用。其实梯度爆炸发生的频率远小于梯度消失的频率。如果发生了，可以用梯度削减（Gradient Clipping）。\n\n- 梯度削减。首先设置一个clip_gradient作为梯度阈值，然后按照往常一样求出各个梯度，不一样的是，我们没有立马进行更新，而是求出这些梯度的L2范数，注意这里的L2范数与岭回归中的L2惩罚项不一样，前者求平方和之后开根号而后者不需要开根号。如果L2范数大于设置好的clip_gradient，则求clip_gradient除以L2范数，然后把除好的结果乘上原来的梯度完成更新。当梯度很大的时候，作为分母的结果就会很小，那么乘上原来的梯度，整个值就会变小，从而可以有效地控制梯度的范围。\n\n另外，观察公式可知，其实到底对谁求偏导是看最近的一次是谁作为自变量，就会对谁求，不一定都是对权重参数求，也有对y求的时候。\n\n\n接着我们用PyTorch来实操一下反向传播算法，PyTorch可以实现自动微分，requires_grad 表示这个参数是可学习的，这样我们进行BP的时候，直接用就好。不过默认情况下是False，需要我们手动设置。\n\n```python\nimport torch\n\nx = torch.ones(3,3,requires_grad = True)\nt = x * x + 2 \nz = 2 * t + 1\ny = z.mean()\n```\n\n接下来我们想求y对x的微分，需要注意这种用法只能适用于y是标量而非向量\n\n```python\ny.backward()\nprint(x.grad)\n```\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/jacobi.png)\n\n所以当y是向量形式的时候我们可以自己来算，如\n\n```python\nx = torch.ones(3,3,requires_grad = True)\nt = x * x + 2\ny = t - 9\n```\n\n如果计算y.backward()会报错，因为是向量，所以我们需要手动算v，这里就是y对t嘛，全为1，注意v的维度就行。\n\n```python\nv = torch.ones(3,3)\ny.backward(v)\nprint(x.grad)\n``` "
  },
  {
    "path": "NN/problems.md",
    "content": "![](https://github.com/sherlcok314159/ML/blob/main/Images/Recipe_for_DNN.jpg)\n\n\n章节\n- [Train Problems](#train)\n    - [Change Activation](#activation)\n    - [Update Learning Rate](#lr)\n- [Test Problems](#test)\n    - [Dropout](#drop)\n    - [EarlyStopping](#stop)\n    - [Regularization](#regular)\n- [参考文献](#references)\n\n**<div id='train'>训练出问题</div>**\n\n首先从**train**开始，有些时候train的时候结果就不怎么样，然后没看就**直接test**，然后结果烂掉了。就说是**过拟合（overfitting）**。这个说法显然是错误的，因为首先你必须在训练集上performances很好，test烂掉才能说是过拟合。train的时候就失败了，只能说是**欠拟合（underfitting）**\n\n欠拟合的原因最基本的是**模型过于简单（参数少，偏差大）**，这种情况可以**适当复杂化**，比如说回归问题，一开始函数是一次函数，可以往三次，四次上调。\n\n可以比喻成打靶，**bias很大**意思就是根本**没有瞄准靶打**，但是Varriance小，受到外界影响小。\n\n**<div id='activation'>Change Activation</div>**\n有些时候不同情形需要用不同的激活函数，另外，有些函数存在本身超越不了的问题，比如sigmoid(Vanish Gradient Descent)，在[Activation](../NN/activation.md)。所以需要根据具体情况来**调整激活函数**\n\n\n**<div id='lr'>Update Learning Rate</div>**\n\n在[Gradient Descent](../optimization/GD.md)中已经具体探讨过了，BGD大概率会卡在**Local minimum**的地方，这个时候可以选择**adagrad 或者 adam** 不断更新learning rate\n\n**<div id='test'>测试出问题</div>**\n\ntrain的结果好，测试的结果烂掉了，那就是过拟合了。同样取打靶，复杂的模型bias是小的，也就是**瞄准靶心打的**，但是模型过于复杂，可以想成受到各个方面的影响就越大，如风速，最后还是打不中，这种情况是varriance（方差大）\n\n**<div id='drop'>Dropout</div>**\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/dropout.png)\n\n\n由图可知，**不一定所有神经元**都会被训练到，每一个神经元都有p%被去掉，所以训练的时候很有可能就**不是同一个**模型，这或许可以从直觉上解释为什么Dropout**对train反而不友好**，而通过这种去除的方式可以一定程度**防止过拟合**，会让**Test结果好看**一点\n\n需要注意的是一般使用Dropout的时候**batch_size = 1**，同时有些**参数**在神经网络中是**共用**的\n\n另外，如果不加Dropout的要想实现Dropout的结果，必须把**权重（weights）都乘上（1-p%）**。其实这里有点奇怪，那我这里举两个weights为例\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/Dropout.jpg)\n\n\n会发现结果竟然惊人的相同\n\n在train的时候可以选择去掉，而在**test**的时候是**没有Dropout**的，这个时候进行如上操作\n\nIf a weight = 1 by training,set w = 0.5 for testing.(Dropout rate is 50%.)\n\n其实，Dropout是一种**Ensemble**\n\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/dropout_ensemble.png)\n\n\n在模型比较复杂的时候，我们常常会从数据集中**Sample**出小部分的data来训练，每次sample出的data训练的结果都不一样，也许单个varriance都比较大，这个时候我们**取个平均**，结果就会好很多，那么，为什么说Dropout与Ensemble有关呢？\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/dropout_2.jpg)\n\n\n虽然batch_size 都为1，但是，每次被训练的神经网络是不一样的，这可以类似地认为从一个大模型里面sample出一个小模型，这里不要与randomly initialize parameters搞混，记得我们在[CNN](CNN/cnn.md)中说过epoch和batch_size。那里只是随机初始化参数。\n\n其实很多时候一个batch让人比较不安，**data会不会太少**，其实不用担心的，因为参数大部分是共用的，如果有一个weight在几个模型里都没有dropout，那么，**它会被几个模型train**。\n\n\n**<div id='stop'>EarlyStopping</div>**\n\n其实很多时候看图发现当train_accuracy越来越大的时候，validation_loss其实已经**不太会往下降**了，这个时候可以**提前停下来**\n\n示例如下\n\n```python\nfrom tensorflow.keras.callbacks import EarlyStopping\n\n# patience越大对不下降越不敏感，就越有耐心\nearly_stopping = EarlyStopping(monitor='val_loss', patience=2)\n\nmodel.fit(x, y, validation_split=0.2, callbacks=[early_stopping])\n```\n>**Patience**: **number** of **epochs** with **no improvement** after which training will be stopped.\n\n简单来说就是没有进步的epoch个数\n\n**<div id='regular'>Regularization</div>**\n\n其实关于regularization，惩罚模型过拟合，**在模型的简单程度和逼近数据的程度之间做权衡（trade-off）**\n\n**L1 regularization**\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/l1.jpg)\n\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/l2.png)\n\n可以看到regularization只跟weights有关，因为**bias**只会涉及到图像**上下移**，不用考虑\n\n最终找到不仅使loss function 变小，而且还要靠近0\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/trade_off.jpg)\n\n通过regularization来trade-off掉原来参数的影响，如果很受原来参数影响，模型又过于复杂，很容易受到其他因素影响，那就很容易过拟合了。lambda越大，右边越重，参数的影响就越小，而当lambda太大时，类比f(x) = c，无论你feature怎么变，我都不会care，导致欠拟合。使用regularization使得函数变得平滑，不容易过拟合\n\n通常来讲，**L1**无论如何都会减去一个**固定**的值，而**L2**会根据不同情况来减小。所以当**W很大**的时候，**L1**减去的值还是固定的，会**下降的很慢**，而**L2**发现weight很大，也会**下降的比较快**，这个时候选择**L2**。而当**W很小**的时候，**L1依旧减去固定值**，**L2**发现很小，就**几乎卡住**了，这个时候选择L1\n\n其实在DeepLearning里面，regularization跟EarlyStopping其实功能差不多，没有在SVM中来的那么重要\n\n那么，如何用代码实操呢？\n\n```python\nfrom tensorflow.keras import layers\nfrom tensorflow.keras import regularizers\n\nlayer = layers.Dense(\n    units=64,\n    kernel_regularizer=regularizers.l1_l2(l1=1e-5, l2=1e-4),\n    bias_regularizer=regularizers.l2(1e-4),\n    activity_regularizer=regularizers.l2(1e-5)\n)\n```\n\n或者\n\n```python\nlayer = tf.keras.layers.Dense(5, kernel_initializer='ones', # 这只是示例\n                              kernel_regularizer=tf.keras.regularizers.l1(0.01),\n                              activity_regularizer=tf.keras.regularizers.l2(0.01))\ntensor = tf.ones(shape=(5, 5)) * 2.0\nout = layer(tensor)\n# The kernel regularization term is 0.25\n# The activity regularization term (after dividing by the batch size) is 5\nprint(tf.math.reduce_sum(layer.losses))  # 5.25 (= 5 + 0.25)\n```\n\n或者自定义一个\n```python\ndef my_regularizer(x):\n    return 1e-3 * tf.reduce_sum(tf.square(x))\n\n```\n\n若要了解更多，可以去keras官网看一下[具体接口](https://keras.io/api/layers/regularizers/)\n\n***\n**<div id='references'>参考文献</div>**\n\nhttps://www.youtube.com/watch?v=xki61j7z-30&list=PLJV_el3uVTsPy9oCRY30oBPNLCo89yu49&index=17&ab_channel=Hung-yiLee"
  },
  {
    "path": "README.md",
    "content": "# DL\r\n此仓库将介绍Deep Learning 所需要的基础知识以及NLP方面的模型原理到项目实操，若你有认为好的教程也可以pull上去，一起将简单易懂的知识传播出去 : )\r\n\r\n\r\n### 章节\r\n- [线上课程](#courses)\r\n- [深度学习](#deep)\r\n- [Transformer时代](#transformer)\r\n- [进阶篇](#further)\r\n- [必备技能](#skills)\r\n- [问题库](#problems)\r\n****\r\n### <div id='courses'>线上课程</div>\r\n\r\n- [李宏毅](https://www.bilibili.com/video/BV1JE411g7XF?from=search&seid=5913060628821893017)（入门极荐，简单易懂，且为中文授课）\r\n- [陈蕴侬](https://www.bilibili.com/video/BV19g4y1b7vx?p=28&spm_id_from=pageDriver)（与李宏毅同为台大老师，偏重应用，范围更广）\r\n- [吴恩达](https://www.bilibili.com/video/BV164411b7dx?from=search&seid=3957162850020779432)（斯坦福华人教授，业界公认厉害）\r\n- [Hinton](https://www.bilibili.com/video/BV1Xf4y117nc?from=search&seid=2370955475461598590)（深度学习开山鼻祖）\r\n\r\n****\r\n\r\n### <div id='deep'>Neural Network</div>\r\n- [Gradient Descent](optimization/GD.md)\r\n- [BackPropagation](NN/bp.md)\r\n- [Normalization](https://github.com/sherlcok314159/ML/blob/main/Book/NLP_Notes.pdf)\r\n- [Activation](NN/activation.md)\r\n- [DNN](NN/DNN/dnn.md)\r\n    - [IMDB影评情感分类](NN/DNN/IMDB.md)\r\n- [CNN](NN/CNN/cnn.md)\r\n- [RNN概述](NN/RNN/rnn.md)\r\n    - [单双向RNN](NN/RNN/单向rnn、双向rnn_embedding.py)\r\n    - [LSTM之词嵌入](NN/RNN/LSTM/lstm_embedding.py)\r\n    - [LSTM之文本分类](NN/RNN/LSTM/文本分类_lstm_subword.py)\r\n    - [LSTM之文本生成](NN/RNN/LSTM/文本生成.py)\r\n    - [Seq2Seq翻译模型搭建](NN/RNN/seq2seq.md)\r\n- [常见优化技巧](NN/problems.md)\r\n- [Numpy](data_process/numpy.md)\r\n\r\n***\r\n### <div id='transformer'>Transformer时代</div>\r\n\r\n- [词嵌入综述](nlp/embedded.md)\r\n\r\n- NLP模型讲解\r\n    - [Transformer原理篇](nlp/models/transformer.md)\r\n    - [Transformer代码（PyTorch）](nlp/models/transformer_.md)\r\n    - [Transformer翻译模型（PyTorch）](nlp/models/transformer_translate.md)\r\n    - [Bert](nlp/models/bert.md)\r\n\r\n- Bert文本任务源码解读系列\r\n     - [Bert之文本分类](nlp/tasks/text.md)\r\n     - [Bert之阅读理解](nlp/tasks/understand.md)\r\n\r\n- Bert实战项目\r\n     - [中文情感分类](nlp/practice/sentiment.md)\r\n\r\n***\r\n### <div id='further'>进阶篇</div>\r\n\r\n- [数据预处理](nlp/preprocess.md)\r\n\r\n\r\n***\r\n### <div id='skills'>必备技能</div>\r\n\r\n\r\n- [上手项目&源码阅读](nlp/fast.md)\r\n\r\n\r\n### <div id='problems'>问题库</div>\r\n\r\n此部分用来记载各种各样小bug的解决方案\r\n\r\n- [问题库](problems.md)\r\n\r\n"
  },
  {
    "path": "data_process/normalization.md",
    "content": "## 数据归一化\r\n\r\n有时候data的数据分布十分不均匀，会导致训练得不到想要的结果。这也是需要对数据进行归一化的原因\r\n\r\n常见的数据归一化：**Constant Factor Normalization,Min-Max,Z-score,Softmax**\r\n\r\n\r\n### Constant Factor Normalization\r\n\r\n最简单的归一化方法，将所有数据除以一个常数即可\r\n\r\n假如我们的data有x1,x2,x3,x4，每个x有两个feature\r\n```python\r\nimport numpy as np\r\n\r\ndata = np.array([[23, 140, 11, 340, 12], [12, 222, 353, 132, 23]], dtype=float)\r\ndata *= 0.01\r\nprint(data)\r\n\r\n[[0.23 1.4  0.11 3.4  0.12]\r\n [0.12 2.22 3.53 1.32 0.23]]\r\n```\r\n\r\n### Min-Max \r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/min_max.png)\r\n\r\n```python\r\nimport pandas as pd\r\nimport numpy as np\r\nimport matplotlib.pyplot as plt\r\nimport seaborn as sns\r\nfrom scipy import stats\r\nimport warnings\r\n\r\nwarnings.filterwarnings(\"ignore\")\r\n\r\ndata = np.array([[23, 140, 11, 340, 12], [12, 222, 353, 132, 23]], dtype=float)\r\n\r\nmax_ = np.max(data, axis=1, keepdims=True)\r\nmin_ = np.min(data, axis=1, keepdims=True)\r\ndata = (data - min_) / (max_ - min_)\r\nsns.distplot(data, fit=stats.norm)\r\n# plt.xlabel(\"Unchanged data\")\r\nplt.xlabel(\"Changed data\")\r\nplt.show()\r\n```\r\n\r\n这样处理之后会使整个数据分布在[0,1]，最大值会变为1，最小值会变为0，越大就会越接近1，越小就越接近0\r\n\r\n整个数据不会因此变得符合正态分布\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/min_max_unchanged.png)\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/min_max_changed.png)\r\n\r\n### Z-score\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/mean_sigmoid.png)\r\n\r\n```python\r\nimport pandas as pd\r\nimport numpy as np\r\nimport matplotlib.pyplot as plt\r\nimport seaborn as sns\r\nfrom scipy import stats\r\nimport warnings\r\n\r\nwarnings.filterwarnings(\"ignore\")\r\n\r\ndata = np.array([[23, 140, 11, 340, 12], [12, 222, 353, 132, 23]], dtype=float)\r\nmean_ = np.mean(data, axis=1, keepdims=True)\r\nstd_ = np.std(data, axis=1, keepdims=True)\r\ndata = (data - mean_) / std_\r\nprint(data)\r\n[[-0.64718872  0.27399231 -0.74166883  1.84866073 -0.73379549]\r\n [-1.06590348  0.57515027  1.59885522 -0.12815848 -0.97994352]]\r\n```\r\n处理后的数据，如果大于平均值就是正的，如果小于平均值则为负的\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/min_max_unchanged.png)\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/mean_sigmoid_changed.png)\r\n\r\n\r\n### Softmax\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/softmax.png)\r\n```python\r\nimport pandas as pd\r\nimport numpy as np\r\nimport matplotlib.pyplot as plt\r\nimport seaborn as sns\r\nfrom scipy import stats\r\nimport warnings\r\nfrom math import exp\r\n\r\nwarnings.filterwarnings(\"ignore\")\r\n\r\n\r\ndata = np.array([[23, 140, 11, 340, 12], [12, 222, 353, 132, 23]], dtype=float)\r\nd = data.shape[0]\r\nfor i in range(d):\r\n    data[i] = list(map(exp, data[i]))\r\n    data[i] = data[i] / (sum(data[i]))\r\nprint(data)\r\n\r\n[[2.13132283e-138 1.38389653e-087 1.30953001e-143 1.00000000e+000\r\n  3.55967162e-143]\r\n [8.04603043e-149 1.28062764e-057 1.00000000e+000 1.04934790e-096\r\n  4.81749166e-144]]\r\n```\r\n\r\n在深度学习最后输出时或者在Logistic Regression时候都会经过**softmax**，这样处理的目的是最后输出为一个**机率**，所有输出相加和为1，输出的值全部介于[0,1]之间。\r\n"
  },
  {
    "path": "data_process/numpy.md",
    "content": "### Introduction to numpy \r\n```python\r\nimport numpy as np\r\n```\r\n***\r\n*1.创建数组*\r\n```python\r\n#维数与中括号对数有关\r\nprint(np.array([1,2,3]))\r\n#1 dimension [1,2,3]\r\nprint(np.array([[1,2,3]]))\r\n#2 dimensions [[1,2,3]]\r\n```\r\n\r\n\r\n*2.转置矩阵*\r\n```python\r\n#不改变维度，一维不变\r\na = np.array([1,2,3])\r\nprint(np.transpose(a))\r\n#[1,2,3]\r\nb = np.array([[1,2,3]])\r\nprint(b.T)\r\n#[[1]\r\n# [2]\r\n# [3]]\r\n```\r\n\r\n*3.矩阵属性*\r\n```python\r\n#1 dimension\r\na = np.array([1,2,3])\r\nprint(np.shape(a))\r\nprint(a.shape)\r\n#需要注意有两种方式表达\r\n#(3,) \r\n#(3,) \r\nprint(a.shape[0])\r\n#3\r\nprint(type(a.shape))\r\n#<class 'tuple'>,元组是支持索引的\r\n\r\n#2 dimensions\r\nb = np.array([[1,2,3],[4,5,6]])\r\nprint(np.shape(b))\r\n#(2,3)\r\n#改变属性\r\nc = b.reshape(3,2)\r\nprint(c)\r\n#[[1 2]\r\n# [3 4]\r\n# [5 6]]\r\n#需要注意的是，原先的矩阵不会发生改变，需要重新赋一个\r\n```\r\n\r\n*4.矩阵相乘*\r\n```python\r\na = np.array([[1,2,3]])\r\nb = np.array([[4,5,6]])\r\nprint(np.dot(a.T,b))\r\nprint(a.T @ b)\r\n#两者结果一样\r\n#[[ 4  5  6]\r\n# [ 8 10 12]\r\n# [12 15 18]]\r\n#注意满足列数等于行数\r\ndata = np.transpose(np.array([[1, 2], [1, 3], [2, 1], [1, -1], [2, -1]]))\r\nth = np.array([[1], [1]])\r\nth0 = -2\r\ndef signed_dist(x, th, th0):\r\n    return (np.dot(th.T, x) + th0) / length(th)\r\n#注意，这里是矩阵整体运算，而不是单指某个元素\r\n```\r\n\r\n*5.返回判断正负性*\r\n```python\r\n#正数返回1，零返回0，负数返回-1\r\nprint(np.sign(1))\r\n# 1\r\nprint(np.sign(0))\r\n# 0\r\nprint(np.sign(-1))\r\n# -1\r\n```\r\n\r\n*6.求和*\r\n```python\r\na = np.array([[1,2,3],[4,5,6]])\r\nprint(np.sum(a))\r\n#21 不加参数为全部求和\r\nprint(np.sum(a,axis = 0))\r\n#[5,7,9]\r\n#看最外面的中括号，里面的元素为[1,2,3],[4,5,6],两个列表之间进行操作\r\nprint(np.sum(a,axis = 1))\r\n#[6,15] \r\n#看最里面的中括号，里面的元素是不是一个为1，2，3.另一个是4，5，6，那元素之间进行求和，两者互不干扰\r\n#同样的axis原则适用于np其他函数\r\ntest = [[ True  True False False  True]]\r\nprint(np.sum(test,axis = 1))\r\n#[3]\r\nprint(np.sum(test,axis = 1,keepdims = True))\r\n#[[3]]\r\n#记住sum之后会清除axis确定的维度，如果需要保留，需要将keepdims = True\r\n```\r\n\r\n*7.索引与切片*\r\n```python\r\na = np.array([[1,2,3],[4,5,6]])\r\nprint(a[0])\r\n#[1,2,3] \r\nb = np.array([[1,2,3,1,4]])\r\nprint(b[2])\r\n#IndexError: index 2 is out of bounds for axis 0 with size 1\r\n\r\n#整数索引时以里面的小列表为元素，另外注意行向量于列向量的区别\r\nprint(a[0:1])\r\nprint(a[0:1,])\r\n#[[1,2,3]]\r\n#[[1,2,3]]\r\nprint(a[:,2:])\r\n#[[3]\r\n# [6]]\r\n#注意，如果中间加逗号，则意味着前面对行进行操作，后面对列进行操作\r\nprint(a[:,0])\r\n#[1,4]\r\n#注意，如果单独用整数索引或者切片，数组会保持原来的维度，但如果两者混用，则会导致降维\r\n\r\ndata = np.array([[1,2,3],[4,5,6]])\r\nprint(data[:,[0,2,1]])\r\n#[[1 3 2]\r\n# [4 6 5]]\r\n#需要注意索引可以是列表，这样就等同于更改原数据进行一个洗牌，评估算法的时候更精确，同样是保持原型的\r\n\r\nx = np.array([[1,3], [4,5], [5,6]])\r\nprint(x[0])\r\n# array([1,3])\r\n# 当多个索引时：\r\nprint(x[[0, 1]]\r\n# array([[1, 3],\r\n#       [4, 5]])\r\n```\r\n\r\n*8.行向量与列向量*\r\n\r\n```python\r\n#row vector\r\na = np.array([[1,2,3,4]])\r\n#column vector\r\nb = np.array([[1],[2],[3]])\r\n#接收一个列表变为行向量\r\nt = np.array([value_list])\r\n#接收一个列表变为列向量\r\nq = t.T or np.transpose(t)\r\n```\r\n\r\n*9.数组的长度*\r\n```python\r\na = np.array([[1,2,3]])\r\nprint(np.sum(a * a)**0.5)\r\n#3.7416573867739413 \r\n#与求向量的模类似\r\n```\r\n\r\n*10.布尔值判断*\r\n```python\r\ng = np.array([[1.,-1.,1.,1.,-1.]])\r\nlabels = np.array([[1.,-1.,-1.,-1.,-1.]])\r\nprint(g == labels)\r\n#[[ True  True False False  True]]\r\n#需要注意的是，numpy对布尔值也可以求和，\r\nprint(np.sum(g == labels))\r\n#3\r\nTrue = 1,False = 0\r\n#还可以一对多布尔值判断\r\nprint(np.array([[1,2,3,4]]) == 1)\r\n#[[ True False False False]]\r\n\r\nif np.array([[1]]) == 1:\r\n    print(\"yep!\")\r\n#yep!\r\n#需要注意的是虽然是一个列表，在条件判断上可以等价为单独的True or False    \r\n\r\n#如果判断的两个列表长度不一样，会单独False，而且会警告\r\nt1 = np.array([[1, 2, 3]])\r\nt2 = np.array([[1, 2, 3, 4]])\r\nprint(t1 == t2)\r\n# DeprecationWarning: elementwise comparison failed; this will raise an error in the future.\r\n#  print(t1 == t2)\r\n#  False\r\n\r\nt3 = np.array([[1, 2, 3, 4]])\r\nprint(np.equal(t2,t3))\r\n#[[ True  True  True  True]]\r\n#同型矩阵用equal\r\n\r\n#注意如果是矩阵与单元素判断，矩阵元素个数必须等于1\r\n\r\nif np.array([[1]]) > 0:\r\n   print(1)\r\n#1\r\nif np.array([[1,2]]) > 0:\r\n   print(2)\r\n#ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()  \r\n```\r\n\r\n*11.返回最大值索引*\r\n```python\r\na = np.argmax(np.array([[1,2,3,4,5,6]]))\r\nprint(a)\r\n#5\r\n```\r\n\r\n*12.分割处理*\r\n```python\r\na = np.array([[1,2,3,4,5],[6,7,8,9,0]])\r\nprint(np.array_split(a,5,axis = 1))\r\n\r\n#[array([[1],\r\n#        [6]]), array([[2],\r\n#        [7]]), array([[3],\r\n#        [8]]), array([[4],\r\n#        [9]]), array([[5],\r\n#        [0]])]\r\n#axis不再赘言，split之后会产生列表，跟Python语法一样的\r\n```\r\n\r\n*13.拼接*\r\n\r\n```python\r\na = np.array([[1]])\r\nb = np.array([[2]])\r\nprint(np.concatenate((a,b),axis = 1))\r\n#[[1 2]]\r\nb = np.array([[1,2,3,4,5],[6,7,8,9,0]])\r\nb_div = np.array_split(b,5,axis = 1)\r\n\r\nprint(np.concatenate(b_div[0:3]+b_div[4:],axis = 1))\r\n#[[1 2 3 5]\r\n# [6 7 8 0]]\r\n\r\nc = np.array([[1,2,3],[4,5,6]])\r\nd = np.array([[0,9,8],[7,6,5]])\r\n# 按行拼接，行数需相等，左右\r\nprint(np.c_[c,d]) # 注意必须是方括号，不要误做()\r\n#[[1 2 3 0 9 8]\r\n# [4 5 6 7 6 5]]\r\n\r\n# 按列拼接，列数需相等，上下\r\nprint(np.r_[c,d]) \r\n# [[1 2 3]\r\n# [4 5 6]\r\n# [0 9 8]\r\n# [7 6 5]]\r\n\r\n# 注意，当dim >= 2时满足如上，当dim = 1时，相反\r\np = np.zeros((4,))\r\nq = np.zeros((4,))\r\nnp.c_[p,q]\r\n\r\n#array([[0., 0.],\r\n#       [0., 0.],\r\n#       [0., 0.],\r\n#       [0., 0.]])\r\n\r\nnp.r_[p,q]\r\n# array([0., 0., 0., 0., 0., 0., 0., 0.])\r\n```\r\n\r\n*14.生成特定向量*\r\n```python\r\n# 没有加维度，默认一维\r\nprint(np.zeros(5))\r\n# [0. 0. 0. 0. 0.]\r\n# 可以设置维度\r\nprint(np.zeros((2, 1)))\r\n#[[0.]\r\n# [0.]]\r\n# 改变元素类型\r\nprint(np.zeros((2, 1), dtype=int))\r\n#[[0]\r\n# [0]]\r\n#需要十分小心和注意的是，如果要几X几的矩阵，必须套一个括号！！！(2,1)\r\n```\r\n\r\n*15.一对多属性*\r\n```python\r\n#矩阵所有元素相加一个数\r\ntest = np.array([[1,2,3]])\r\nprint(test + 1)\r\n#[[2 3 4]]\r\n\r\na = np.array([[1]])\r\nb = np.array([[1, 2, 3]])\r\nprint(a + b)\r\n#[[2 3 4]]\r\n\r\n#矩阵所有元素与一个值做判断\r\nprint(test == 2)\r\n#[[False True False]]\r\n```\r\n\r\n*16.注意点*\r\n```python\r\ndata = [[1,2,3],[4,5,6]]\r\nprint(data[:,0:1])\r\n#TypeError: list indices must be integers or slices, not tuple\r\n\r\n#因为你没有用np.array\r\ndata = np.array([[1,2,3],[4,5,6]])\r\n```\r\n\r\n```python\r\n#注意计算机中的运算逻辑，如果拿不准，一定要套括号   \r\ndef sd(th, th0, x):\r\n    return np.dot(th, x) + th0 / (np.sum(th * th) ** 0.5)\r\n#[[2.17157288]]\r\n#[[-0.82842712]]\r\n#[[3.17157288]]\r\n\r\ndef sd(th, th0, x):\r\n    return (np.dot(th, x) + th0) / (np.sum(th * th) ** 0.5)\r\n#[[0.70710678]]\r\n#[[-1.41421356]]\r\n#[[1.41421356]]\r\n```\r\n```python\r\n#需要注意不同列表推导式生成的是列表不错，但两者具有不同的维度\r\nx = [range(100)]\r\ny = [i for i in range(100)]\r\nprint(type(x))\r\nprint(type(y))\r\nprint(np.shape(x))\r\nprint(np.shape(y))\r\n#<class 'list'>\r\n#<class 'list'>\r\n#(1, 100)\r\n#(100,)\r\n```\r\n*17.随机数字生成*\r\n```python\r\n\r\n# 随机生成数字\r\nprint(np.linspace(2,6,num = 4))\r\n# [2.         3.33333333 4.66666667 6.        ] # 始末点是你输入的\r\n\r\na = np.linspace(2,8,num = 4,endpoint = False)\r\nprint(a)\r\n# [2.  3.5 5.  6.5]\r\n\r\nprint(type(a))\r\n# numpy.ndarray\r\n\r\n# 类似的，还有一个指数空间，10的指数次\r\n\r\nprint(np.logspace(3,7,num = 4))\r\n# [1.00000000e+03 2.15443469e+04 4.64158883e+05 1.00000000e+07]\r\n\r\n# 随机生成一个小数\r\nprint(np.random.uniform(0.,1.))\r\n# 0.01437751259085529\r\n\r\n# 随机生成0，1小数\r\nx = np.random.uniform(size = 1000)\r\nprint(x)\r\nprint(type(x))\r\n# class 'numpy.ndarray'>\r\n\r\nprint(np.random.rand(3,2))\r\n#[[0.5488135  0.71518937]\r\n# [0.60276338 0.54488318]\r\n# [0.4236548  0.64589411]]\r\n\r\n# rand的用法与zeros是一样的，生成几叉几的，但不同的是zeros需要套括号，而rand不用\r\n\r\nprint(np.random.rand(4, 1))\r\nprint(np.zeros((4, 1)))\r\n\r\n# 如果一个数，就是一维的列表\r\nprint(np.random.rand(3))\r\n#[0.12277558 0.57764143 0.59843161]\r\n\r\n# 如果要求生成的随机数可以被预测，可以用np.random.seed(k)当然k可以任取\r\nnp.random.seed(0)\r\nprint(np.random.rand(3,1))\r\n#[[0.52372051]\r\n# [0.6603495 ]\r\n# [0.64741481]]\r\n\r\nnp.random.seed(0)\r\nprint(np.random.rand(3,1))\r\n#[[0.52372051]\r\n# [0.6603495 ]\r\n# [0.64741481]]\r\n\r\n# 你会发现生成的随机数是一样的\r\n```\r\n\r\n*18.洗牌*\r\n```python\r\nlis = [1,2,3,4,5]\r\nnp.random.shuffle(lis)\r\nprint(lis)\r\n#[4, 5, 3, 1, 2]\r\n\r\n# 需要注意的是shuffle是作用于列表，所以，列表是动态修改的，如果直接打印更改的，会是\"None\"，需要直接打印列表本身\r\n```\r\n\r\n*19.求平均值*\r\n```python\r\na = np.array([[1,2,3],[4,5,6]])\r\nprint(np.mean(a))\r\n#3.5\r\nprint(np.mean(a,axis = 0))\r\n#[2.5 3.5 4.5]\r\nprint(np.mean(a,axis = 1))\r\n#[2. 5.]\r\nprint(np.mean(a, axis=0, keepdims=True))\r\n#[[2.5 3.5 4.5]]\r\nprint(np.mean(a, axis=0, keepdims=True,dtype = int))\r\n#[[2 3 4]]\r\n\r\n# 所有参数用法均与np.sum一样,不多赘述\r\n\r\n```\r\n*20.拓展维度*\r\n\r\n```python\r\na = np.array([1,2,3])\r\nb = np.expand_dims(a,axis = 0)\r\nc = np.expand_dims(b,axis = 1)\r\nd = np.expand_dims(b,-1)\r\nprint(a.shape)\r\nprint(b.shape)\r\nprint(c.shape)\r\nprint(d.shape)\r\n\r\n------\r\n(3,)\r\n(1,3)\r\n(1,1,3)\r\n(1,3,1)\r\n------\r\n# axis = 0 最左边加一个维度\r\n# axis = 1 中间加一个维度\r\n# axis = -1 最右边加一个维度\r\n```\r\n\r\n*21.生成序列数据*\r\n\r\n```python\r\n# grammar\r\na = np.arange(start = ,end = ,step = ,dtype = )\r\n# case \r\na = np.arange(1,9,1,dtype = \"int\")\r\nprint(a)\r\n# [1 2 3 4 5 6 7 8] 不包括最后一个\r\nprint(type(a))\r\n# <class 'numpy.ndarray'>\r\n# 结果是以array形式呈现\r\n```\r\n\r\n*22.将单个数据变成向量*\r\n\r\n```python\r\na,b = 0,1\r\na,b = np.meshgrid(a,b)\r\nprint(a,b)\r\n# [[0]][[1]]\r\nprint(a.shape)\r\n# (1,1)\r\nz = np.meshgrid(a,b)\r\nprint(z)\r\n# [array([[0]]), array([[1]])]\r\n\r\nimport matplotlib.pyplot as plt\r\ny = np.arange(1,3,1)\r\n# [1,2]\r\nplt.scatter(z,y)\r\nplt.show()\r\n\r\n# 在matplotlib里面，当数据以列表或者array出现时，都可以接受\r\n```\r\n\r\n*23.降维拉平*\r\n\r\n```python\r\na = np.zeros((3,4))\r\n# 将数据变为一维\r\nb = a.ravel()\r\nprint(b)\r\n# [0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]\r\n```\r\n*24.生成下三角矩阵*\r\n```python\r\na = np.array([[1,2,3],[4,5,6],[7,8,9],[1,2,4]])\r\n# 0表示第二行开始\r\nprint(np.triu(a,0))\r\n# array([[1, 2, 3],\r\n#       [0, 5, 6],\r\n#       [0, 0, 9],\r\n#       [0, 0, 0]])\r\n# -1表示第三行开始\r\nprint(np.triu(a,-1))\r\n# array([[1, 2, 3],\r\n#       [4, 5, 6],\r\n#      [0, 8, 9],\r\n#       [0, 0, 4]])\r\n# 1表示从第一行开始\r\nprint(np.triu(a,1)\r\n# array([[0, 2, 3],\r\n#       [0, 0, 6],\r\n#       [0, 0, 0],\r\n#       [0, 0, 0]])\r\n```\r\n*25.生成上三角矩阵*\r\n```python\r\na = np.array([[1,2,3],[4,5,6],[7,8,9],[1,2,4]])\r\nprint(np.tril(a,0))\r\n# [[1 0 0]\r\n# [4 5 0]\r\n# [7 8 9]\r\n# [1 2 4]]\r\n\r\nprint(np.tril(a,-1))\r\n#array([[0, 0, 0],\r\n#       [4, 0, 0],\r\n#       [7, 8, 0],\r\n#       [1, 2, 4]])\r\n\r\n```\r\n\r\n"
  },
  {
    "path": "loss/loss_.md",
    "content": "### Loss Function\r\n\r\n机器学习中，我们通过最小化**Loss Function**从而找到最优的一组参数\r\n\r\n**Loss Function**可以近似看成是预测值与真实值的**距离**\r\n\r\n**0-1 Loss**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/loss_0_1.png)\r\n\r\n\r\n**Square Error**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/square_error.png)\r\n\r\n\r\n**Mean Square Error**\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/mean_square_error.png)\r\n\r\n\r\n**Root Mean Square Error**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/root_mean_square_error.png)\r\n\r\n\r\n**Cross Entropy**\r\n\r\n举**二元分类**的问题，则为伯努利分布，假设两个分布分别为**p,q**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/c1_distribution.png)\r\n\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/bonuli_p.png)\r\n\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/bonuli_q.png)\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/cross_entropy.png)\r\n"
  },
  {
    "path": "models/Regression/04_training_linear_models.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"**Chapter 4 – Training Linear Models Copied from OReilly.Hands-On.Machine.Learning.with.Scikit-Learn.and.TensorFlow.2017.3**\\n\",\n    \"And only for study use!\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"_This notebook contains all the sample code and solutions to the exercises in chapter 4._\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Setup\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"First, let's make sure this notebook works well in both python 2 and 3, import a few common modules, ensure MatplotLib plots figures inline and prepare a function to save the figures:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# To support both python 2 and python 3\\n\",\n    \"from __future__ import division, print_function, unicode_literals\\n\",\n    \"\\n\",\n    \"# Common imports\\n\",\n    \"import numpy as np\\n\",\n    \"import os\\n\",\n    \"\\n\",\n    \"# to make this notebook's output stable across runs\\n\",\n    \"np.random.seed(42)\\n\",\n    \"\\n\",\n    \"# To plot pretty figures\\n\",\n    \"%matplotlib inline\\n\",\n    \"import matplotlib\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"plt.rcParams['axes.labelsize'] = 14\\n\",\n    \"plt.rcParams['xtick.labelsize'] = 12\\n\",\n    \"plt.rcParams['ytick.labelsize'] = 12\\n\",\n    \"\\n\",\n    \"# Where to save the figures\\n\",\n    \"PROJECT_ROOT_DIR = \\\".\\\"\\n\",\n    \"CHAPTER_ID = \\\"training_linear_models\\\"\\n\",\n    \"\\n\",\n    \"def save_fig(fig_id, tight_layout=True):\\n\",\n    \"    path = os.path.join(PROJECT_ROOT_DIR, \\\"images\\\", CHAPTER_ID, fig_id + \\\".png\\\")\\n\",\n    \"    print(\\\"Saving figure\\\", fig_id)\\n\",\n    \"    if tight_layout:\\n\",\n    \"        plt.tight_layout()\\n\",\n    \"    plt.savefig(path, format='png', dpi=300)\\n\",\n    \"\\n\",\n    \"# Ignore useless warnings (see SciPy issue #5998)\\n\",\n    \"import warnings\\n\",\n    \"warnings.filterwarnings(action=\\\"ignore\\\", module=\\\"scipy\\\", message=\\\"^internal gelsd\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Linear regression using the Normal Equation\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import numpy as np\\n\",\n    \"\\n\",\n    \"X = 2 * np.random.rand(100, 1)\\n\",\n    \"y = 4 + 3 * X + np.random.randn(100, 1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure generated_data_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x108e55d68>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plt.plot(X, y, \\\"b.\\\")\\n\",\n    \"plt.xlabel(\\\"$x_1$\\\", fontsize=18)\\n\",\n    \"plt.ylabel(\\\"$y$\\\", rotation=0, fontsize=18)\\n\",\n    \"plt.axis([0, 2, 0, 15])\\n\",\n    \"save_fig(\\\"generated_data_plot\\\")\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"X_b = np.c_[np.ones((100, 1)), X]  # add x0 = 1 to each instance\\n\",\n    \"theta_best = np.linalg.inv(X_b.T.dot(X_b)).dot(X_b.T).dot(y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[4.21509616],\\n\",\n       \"       [2.77011339]])\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"theta_best\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[4.21509616],\\n\",\n       \"       [9.75532293]])\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"X_new = np.array([[0], [2]])\\n\",\n    \"X_new_b = np.c_[np.ones((2, 1)), X_new]  # add x0 = 1 to each instance\\n\",\n    \"y_predict = X_new_b.dot(theta_best)\\n\",\n    \"y_predict\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10acc06d8>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plt.plot(X_new, y_predict, \\\"r-\\\")\\n\",\n    \"plt.plot(X, y, \\\"b.\\\")\\n\",\n    \"plt.axis([0, 2, 0, 15])\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The figure in the book actually corresponds to the following code, with a legend and axis labels:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure linear_model_predictions\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10acca6a0>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plt.plot(X_new, y_predict, \\\"r-\\\", linewidth=2, label=\\\"Predictions\\\")\\n\",\n    \"plt.plot(X, y, \\\"b.\\\")\\n\",\n    \"plt.xlabel(\\\"$x_1$\\\", fontsize=18)\\n\",\n    \"plt.ylabel(\\\"$y$\\\", rotation=0, fontsize=18)\\n\",\n    \"plt.legend(loc=\\\"upper left\\\", fontsize=14)\\n\",\n    \"plt.axis([0, 2, 0, 15])\\n\",\n    \"save_fig(\\\"linear_model_predictions\\\")\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(array([4.21509616]), array([[2.77011339]]))\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"from sklearn.linear_model import LinearRegression\\n\",\n    \"lin_reg = LinearRegression()\\n\",\n    \"lin_reg.fit(X, y)\\n\",\n    \"lin_reg.intercept_, lin_reg.coef_\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[4.21509616],\\n\",\n       \"       [9.75532293]])\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"lin_reg.predict(X_new)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `LinearRegression` class is based on the `scipy.linalg.lstsq()` function (the name stands for \\\"least squares\\\"), which you could call directly:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[4.21509616],\\n\",\n       \"       [2.77011339]])\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"theta_best_svd, residuals, rank, s = np.linalg.lstsq(X_b, y, rcond=1e-6)\\n\",\n    \"theta_best_svd\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"This function computes $\\\\mathbf{X}^+\\\\mathbf{y}$, where $\\\\mathbf{X}^{+}$ is the _pseudoinverse_ of $\\\\mathbf{X}$ (specifically the Moore-Penrose inverse). You can use `np.linalg.pinv()` to compute the pseudoinverse directly:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[4.21509616],\\n\",\n       \"       [2.77011339]])\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"np.linalg.pinv(X_b).dot(y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"**Note**: the first releases of the book implied that the `LinearRegression` class was based on the Normal Equation. This was an error, my apologies: as explained above, it is based on the pseudoinverse, which ultimately relies on the SVD matrix decomposition of $\\\\mathbf{X}$ (see chapter 8 for details about the SVD decomposition). Its time complexity is $O(n^2)$ and it works even when $m < n$ or when some features are linear combinations of other features (in these cases, $\\\\mathbf{X}^T \\\\mathbf{X}$ is not invertible so the Normal Equation fails), see [issue #184](https://github.com/ageron/handson-ml/issues/184) for more details. However, this does not change the rest of the description of the `LinearRegression` class, in particular, it is based on an analytical solution, it does not scale well with the number of features, it scales linearly with the number of instances, all the data must fit in memory, it does not require feature scaling and the order of the instances in the training set does not matter.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Linear regression using batch gradient descent\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"eta = 0.1\\n\",\n    \"n_iterations = 1000\\n\",\n    \"m = 100\\n\",\n    \"theta = np.random.randn(2,1)\\n\",\n    \"\\n\",\n    \"for iteration in range(n_iterations):\\n\",\n    \"    gradients = 2/m * X_b.T.dot(X_b.dot(theta) - y)\\n\",\n    \"    theta = theta - eta * gradients\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[4.21509616],\\n\",\n       \"       [2.77011339]])\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"theta\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[4.21509616],\\n\",\n       \"       [9.75532293]])\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"X_new_b.dot(theta)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"theta_path_bgd = []\\n\",\n    \"\\n\",\n    \"def plot_gradient_descent(theta, eta, theta_path=None):\\n\",\n    \"    m = len(X_b)\\n\",\n    \"    plt.plot(X, y, \\\"b.\\\")\\n\",\n    \"    n_iterations = 1000\\n\",\n    \"    for iteration in range(n_iterations):\\n\",\n    \"        if iteration < 10:\\n\",\n    \"            y_predict = X_new_b.dot(theta)\\n\",\n    \"            style = \\\"b-\\\" if iteration > 0 else \\\"r--\\\"\\n\",\n    \"            plt.plot(X_new, y_predict, style)\\n\",\n    \"        gradients = 2/m * X_b.T.dot(X_b.dot(theta) - y)\\n\",\n    \"        theta = theta - eta * gradients\\n\",\n    \"        if theta_path is not None:\\n\",\n    \"            theta_path.append(theta)\\n\",\n    \"    plt.xlabel(\\\"$x_1$\\\", fontsize=18)\\n\",\n    \"    plt.axis([0, 2, 0, 15])\\n\",\n    \"    plt.title(r\\\"$\\\\eta = {}$\\\".format(eta), fontsize=16)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure gradient_descent_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10c208358>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"np.random.seed(42)\\n\",\n    \"theta = np.random.randn(2,1)  # random initialization\\n\",\n    \"\\n\",\n    \"plt.figure(figsize=(10,4))\\n\",\n    \"plt.subplot(131); plot_gradient_descent(theta, eta=0.02)\\n\",\n    \"plt.ylabel(\\\"$y$\\\", rotation=0, fontsize=18)\\n\",\n    \"plt.subplot(132); plot_gradient_descent(theta, eta=0.1, theta_path=theta_path_bgd)\\n\",\n    \"plt.subplot(133); plot_gradient_descent(theta, eta=0.5)\\n\",\n    \"\\n\",\n    \"save_fig(\\\"gradient_descent_plot\\\")\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Stochastic Gradient Descent\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"theta_path_sgd = []\\n\",\n    \"m = len(X_b)\\n\",\n    \"np.random.seed(42)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure sgd_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10e7a9eb8>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"n_epochs = 50\\n\",\n    \"t0, t1 = 5, 50  # learning schedule hyperparameters\\n\",\n    \"\\n\",\n    \"def learning_schedule(t):\\n\",\n    \"    return t0 / (t + t1)\\n\",\n    \"\\n\",\n    \"theta = np.random.randn(2,1)  # random initialization\\n\",\n    \"\\n\",\n    \"for epoch in range(n_epochs):\\n\",\n    \"    for i in range(m):\\n\",\n    \"        if epoch == 0 and i < 20:                    # not shown in the book\\n\",\n    \"            y_predict = X_new_b.dot(theta)           # not shown\\n\",\n    \"            style = \\\"b-\\\" if i > 0 else \\\"r--\\\"         # not shown\\n\",\n    \"            plt.plot(X_new, y_predict, style)        # not shown\\n\",\n    \"        random_index = np.random.randint(m)\\n\",\n    \"        xi = X_b[random_index:random_index+1]\\n\",\n    \"        yi = y[random_index:random_index+1]\\n\",\n    \"        gradients = 2 * xi.T.dot(xi.dot(theta) - yi)\\n\",\n    \"        eta = learning_schedule(epoch * m + i)\\n\",\n    \"        theta = theta - eta * gradients\\n\",\n    \"        theta_path_sgd.append(theta)                 # not shown\\n\",\n    \"\\n\",\n    \"plt.plot(X, y, \\\"b.\\\")                                 # not shown\\n\",\n    \"plt.xlabel(\\\"$x_1$\\\", fontsize=18)                     # not shown\\n\",\n    \"plt.ylabel(\\\"$y$\\\", rotation=0, fontsize=18)           # not shown\\n\",\n    \"plt.axis([0, 2, 0, 15])                              # not shown\\n\",\n    \"save_fig(\\\"sgd_plot\\\")                                 # not shown\\n\",\n    \"plt.show()                                           # not shown\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[4.21076011],\\n\",\n       \"       [2.74856079]])\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"theta\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"SGDRegressor(alpha=0.0001, average=False, epsilon=0.1, eta0=0.1,\\n\",\n       \"       fit_intercept=True, l1_ratio=0.15, learning_rate='invscaling',\\n\",\n       \"       loss='squared_loss', max_iter=50, n_iter=None, penalty=None,\\n\",\n       \"       power_t=0.25, random_state=42, shuffle=True, tol=None, verbose=0,\\n\",\n       \"       warm_start=False)\"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"from sklearn.linear_model import SGDRegressor\\n\",\n    \"sgd_reg = SGDRegressor(max_iter=50, penalty=None, eta0=0.1, random_state=42)\\n\",\n    \"sgd_reg.fit(X, y.ravel())\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(array([4.16782089]), array([2.72603052]))\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"sgd_reg.intercept_, sgd_reg.coef_\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Mini-batch gradient descent\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"theta_path_mgd = []\\n\",\n    \"\\n\",\n    \"n_iterations = 50\\n\",\n    \"minibatch_size = 20\\n\",\n    \"\\n\",\n    \"np.random.seed(42)\\n\",\n    \"theta = np.random.randn(2,1)  # random initialization\\n\",\n    \"\\n\",\n    \"t0, t1 = 200, 1000\\n\",\n    \"def learning_schedule(t):\\n\",\n    \"    return t0 / (t + t1)\\n\",\n    \"\\n\",\n    \"t = 0\\n\",\n    \"for epoch in range(n_iterations):\\n\",\n    \"    shuffled_indices = np.random.permutation(m)\\n\",\n    \"    X_b_shuffled = X_b[shuffled_indices]\\n\",\n    \"    y_shuffled = y[shuffled_indices]\\n\",\n    \"    for i in range(0, m, minibatch_size):\\n\",\n    \"        t += 1\\n\",\n    \"        xi = X_b_shuffled[i:i+minibatch_size]\\n\",\n    \"        yi = y_shuffled[i:i+minibatch_size]\\n\",\n    \"        gradients = 2/minibatch_size * xi.T.dot(xi.dot(theta) - yi)\\n\",\n    \"        eta = learning_schedule(t)\\n\",\n    \"        theta = theta - eta * gradients\\n\",\n    \"        theta_path_mgd.append(theta)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[4.25214635],\\n\",\n       \"       [2.7896408 ]])\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"theta\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"theta_path_bgd = np.array(theta_path_bgd)\\n\",\n    \"theta_path_sgd = np.array(theta_path_sgd)\\n\",\n    \"theta_path_mgd = np.array(theta_path_mgd)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure gradient_descent_paths_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10bd3b0f0>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plt.figure(figsize=(7,4))\\n\",\n    \"plt.plot(theta_path_sgd[:, 0], theta_path_sgd[:, 1], \\\"r-s\\\", linewidth=1, label=\\\"Stochastic\\\")\\n\",\n    \"plt.plot(theta_path_mgd[:, 0], theta_path_mgd[:, 1], \\\"g-+\\\", linewidth=2, label=\\\"Mini-batch\\\")\\n\",\n    \"plt.plot(theta_path_bgd[:, 0], theta_path_bgd[:, 1], \\\"b-o\\\", linewidth=3, label=\\\"Batch\\\")\\n\",\n    \"plt.legend(loc=\\\"upper left\\\", fontsize=16)\\n\",\n    \"plt.xlabel(r\\\"$\\\\theta_0$\\\", fontsize=20)\\n\",\n    \"plt.ylabel(r\\\"$\\\\theta_1$   \\\", fontsize=20, rotation=0)\\n\",\n    \"plt.axis([2.5, 4.5, 2.3, 3.9])\\n\",\n    \"save_fig(\\\"gradient_descent_paths_plot\\\")\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Polynomial regression\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import numpy as np\\n\",\n    \"import numpy.random as rnd\\n\",\n    \"\\n\",\n    \"np.random.seed(42)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"m = 100\\n\",\n    \"X = 6 * np.random.rand(m, 1) - 3\\n\",\n    \"y = 0.5 * X**2 + X + 2 + np.random.randn(m, 1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure quadratic_data_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10fbf50b8>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plt.plot(X, y, \\\"b.\\\")\\n\",\n    \"plt.xlabel(\\\"$x_1$\\\", fontsize=18)\\n\",\n    \"plt.ylabel(\\\"$y$\\\", rotation=0, fontsize=18)\\n\",\n    \"plt.axis([-3, 3, 0, 10])\\n\",\n    \"save_fig(\\\"quadratic_data_plot\\\")\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([-0.75275929])\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"from sklearn.preprocessing import PolynomialFeatures\\n\",\n    \"poly_features = PolynomialFeatures(degree=2, include_bias=False)\\n\",\n    \"X_poly = poly_features.fit_transform(X)\\n\",\n    \"X[0]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([-0.75275929,  0.56664654])\"\n      ]\n     },\n     \"execution_count\": 31,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"X_poly[0]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(array([1.78134581]), array([[0.93366893, 0.56456263]]))\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"lin_reg = LinearRegression()\\n\",\n    \"lin_reg.fit(X_poly, y)\\n\",\n    \"lin_reg.intercept_, lin_reg.coef_\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure quadratic_predictions_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4yLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvNQv5yAAAIABJREFUeJzt3Xd8VFX+//HXSQgklCAoTaQpSFlYC4gbXAEVFQviihVZKSoqFlaXn4qCICqsgqvuKrrsV9DVxY4gKCCwoKhRmggoTQULRUDpBAjJ+f1xCCGQMpPM3Htn5v18POYxmXbvuTOZ+dzTPsdYaxEREQmaJL8LICIiUhgFKBERCSQFKBERCSQFKBERCSQFKBERCSQFKBERCSQFKBERCaSIBihjzB3GmAXGmH3GmJeOeOw8Y8wKY8weY8xsY0yDSO5bRETiS6RrUOuBR4Gxh99pjDkOmAAMBqoDC4A3IrxvERGJI+UiuTFr7QQAY0wb4ITDHroC+Npa+9bBx4cCW4wxzay1KyJZBhERiQ8RDVDF+B3wVd4Na+1uY8x3B+8/KkAZY/oCfQEqVarUulmzZh4VU0REImH3bli5EqwFY6BpU6hUyT22cOHCLdbaGiVtw6sAVRnYfMR924EqhT3ZWjsGGAPQpk0bu2DBguiWTkREImrECBg8GHJyICkJbrgBBg50jxljfghlG16N4tsFpB9xXzqw06P9i4iIhzp2hPLlITnZXXfsGP42vKpBfQ30zLthjKkEnHTwfhERiTMZGTBrFsyZ44JTRkb424hogDLGlDu4zWQg2RiTChwA3gVGGmO6Ae8DDwFLNEBCRCR+ZWSULjDliXQT3yAgC7gf6HHw70HW2s1AN+AxYCtwJnBthPctIiJxJNLDzIcCQ4t4bCag4XgiIonsjdCnwHrVBxU1O3bsYNOmTWRnZ/tdFPFISkoKNWvWJD39yHE3IhJon3wC110X8tNjOkDt2LGDX375hbp165KWloYxxu8iSZRZa8nKymLdunUAClIisWLPHujTx02MClFMJ4vdtGkTdevWpWLFigpOCcIYQ8WKFalbty6bNm3yuzgiEqrBg2H1amjZMuSXxHSAys7OJi0tze9iiA/S0tLUrCsSKz77DJ56yk2KGjcu5JfFdIACVHNKUPrcRWJEVlZ+096990KbNiG/NOYDlIiIBNiQIS4pX/Pm8NBDYb1UAUpERKIjMxOefNIl4xs3DlJTw3q5AlSca9myJUOHDj10u2HDhowaNapM2+zYsSN33HFHGUsmInEtKwt69YLcXBgwAM48M+xNKED5oFevXhhjMMaQkpLCiSeeyIABA9i9e3fU9z1//nz69esX0nNfeuklKleufNT9EyZMYMSIEZEumojEk0GDYNUqaNECHn64VJuI6XlQsaxTp0688sorZGdnM3fuXG666SZ2797N888/f9Rzs7OzSUlJich+a9QocQmWElWvXj0CJRGRuDV3bv6ovZdfDrtpL49qUD6pUKECtWvXpl69enTv3p3rr7+eiRMnMmfOHIwxfPDBB7Rt25by5cszffp0ACZPnkzr1q1JTU2lUaNGPPjgg+zfv//QNjdt2kTXrl1JS0ujQYMGjB079qj9HtnEt337dm677Tbq1KlDamoqzZs354033mDOnDn07t2b3bt3H6rt5TUVHtnEt3XrVnr27Em1atVIS0ujU6dOfP11fqL6vJrYrFmzaNmyJZUqVeKcc85hzZo1h57z008/0bVrV6pXr07FihVp1qwZr7/+esTebxHxyO7d0Lu3G7U3cGBYo/aOFH81KL+GH4cxO7owR87rue+++3jyySdp3LgxVapUYfr06Vx//fU888wztG/fnh9//JFbb72Vffv2HQo4vXr14ocffmDmzJlUrFiRu+++m7Vr1xZTZMvFF1/M1q1bGTduHCeffDIrV65k7969tGvXjqeffpoHHniA7777DqDQ5r68/a5cuZJJkyZRrVo1HnzwQTp37syqVasOzVPbt28fI0aMYOzYsaSmptKzZ09uvfXWQ8G3X79+7N27l9mzZ5Oens7KlSvL9H6KiHcyMw9bVmP8/fDdd/D737vJuWVhrQ30pXXr1rYo33zzzdF3ulDh/SUMPXv2tJdccsmh21988YU99thj7dVXX21nz55tAfv2228XeM3ZZ59thw0bVuC+d99911aqVMnm5ubalStXWsB+8sknhx5fu3atTUpKskOGDDl0X4MGDezIkSOttdZ++OGH1hhT+PtorR03bpytVKnSUfd36NDB3n777dZaa1etWmUB+9FHHx16fNu2bTY9Pd3++9//PrQdwK5YseLQc1599VVbvnx5m5uba621tlWrVnbo0KFFv2mFKKrcIuKdzz6zNi3N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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10fe26dd8>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"X_new=np.linspace(-3, 3, 100).reshape(100, 1)\\n\",\n    \"X_new_poly = poly_features.transform(X_new)\\n\",\n    \"y_new = lin_reg.predict(X_new_poly)\\n\",\n    \"plt.plot(X, y, \\\"b.\\\")\\n\",\n    \"plt.plot(X_new, y_new, \\\"r-\\\", linewidth=2, label=\\\"Predictions\\\")\\n\",\n    \"plt.xlabel(\\\"$x_1$\\\", fontsize=18)\\n\",\n    \"plt.ylabel(\\\"$y$\\\", rotation=0, fontsize=18)\\n\",\n    \"plt.legend(loc=\\\"upper left\\\", fontsize=14)\\n\",\n    \"plt.axis([-3, 3, 0, 10])\\n\",\n    \"save_fig(\\\"quadratic_predictions_plot\\\")\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure high_degree_polynomials_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10ff06208>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"from sklearn.preprocessing import StandardScaler\\n\",\n    \"from sklearn.pipeline import Pipeline\\n\",\n    \"\\n\",\n    \"for style, width, degree in ((\\\"g-\\\", 1, 300), (\\\"b--\\\", 2, 2), (\\\"r-+\\\", 2, 1)):\\n\",\n    \"    polybig_features = PolynomialFeatures(degree=degree, include_bias=False)\\n\",\n    \"    std_scaler = StandardScaler()\\n\",\n    \"    lin_reg = LinearRegression()\\n\",\n    \"    polynomial_regression = Pipeline([\\n\",\n    \"            (\\\"poly_features\\\", polybig_features),\\n\",\n    \"            (\\\"std_scaler\\\", std_scaler),\\n\",\n    \"            (\\\"lin_reg\\\", lin_reg),\\n\",\n    \"        ])\\n\",\n    \"    polynomial_regression.fit(X, y)\\n\",\n    \"    y_newbig = polynomial_regression.predict(X_new)\\n\",\n    \"    plt.plot(X_new, y_newbig, style, label=str(degree), linewidth=width)\\n\",\n    \"\\n\",\n    \"plt.plot(X, y, \\\"b.\\\", linewidth=3)\\n\",\n    \"plt.legend(loc=\\\"upper left\\\")\\n\",\n    \"plt.xlabel(\\\"$x_1$\\\", fontsize=18)\\n\",\n    \"plt.ylabel(\\\"$y$\\\", rotation=0, fontsize=18)\\n\",\n    \"plt.axis([-3, 3, 0, 10])\\n\",\n    \"save_fig(\\\"high_degree_polynomials_plot\\\")\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from sklearn.metrics import mean_squared_error\\n\",\n    \"from sklearn.model_selection import train_test_split\\n\",\n    \"\\n\",\n    \"def plot_learning_curves(model, X, y):\\n\",\n    \"    X_train, X_val, y_train, y_val = train_test_split(X, y, test_size=0.2, random_state=10)\\n\",\n    \"    train_errors, val_errors = [], []\\n\",\n    \"    for m in range(1, len(X_train)):\\n\",\n    \"        model.fit(X_train[:m], y_train[:m])\\n\",\n    \"        y_train_predict = model.predict(X_train[:m])\\n\",\n    \"        y_val_predict = model.predict(X_val)\\n\",\n    \"        train_errors.append(mean_squared_error(y_train[:m], y_train_predict))\\n\",\n    \"        val_errors.append(mean_squared_error(y_val, y_val_predict))\\n\",\n    \"\\n\",\n    \"    plt.plot(np.sqrt(train_errors), \\\"r-+\\\", linewidth=2, label=\\\"train\\\")\\n\",\n    \"    plt.plot(np.sqrt(val_errors), \\\"b-\\\", linewidth=3, label=\\\"val\\\")\\n\",\n    \"    plt.legend(loc=\\\"upper right\\\", fontsize=14)   # not shown in the book\\n\",\n    \"    plt.xlabel(\\\"Training set size\\\", fontsize=14) # not shown\\n\",\n    \"    plt.ylabel(\\\"RMSE\\\", fontsize=14)              # not shown\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure underfitting_learning_curves_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10fbc9b70>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"lin_reg = LinearRegression()\\n\",\n    \"plot_learning_curves(lin_reg, X, y)\\n\",\n    \"plt.axis([0, 80, 0, 3])                         # not shown in the book\\n\",\n    \"save_fig(\\\"underfitting_learning_curves_plot\\\")   # not shown\\n\",\n    \"plt.show()                                      # not shown\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure learning_curves_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10fbb86a0>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"from sklearn.pipeline import Pipeline\\n\",\n    \"\\n\",\n    \"polynomial_regression = Pipeline([\\n\",\n    \"        (\\\"poly_features\\\", PolynomialFeatures(degree=10, include_bias=False)),\\n\",\n    \"        (\\\"lin_reg\\\", LinearRegression()),\\n\",\n    \"    ])\\n\",\n    \"\\n\",\n    \"plot_learning_curves(polynomial_regression, X, y)\\n\",\n    \"plt.axis([0, 80, 0, 3])           # not shown\\n\",\n    \"save_fig(\\\"learning_curves_plot\\\")  # not shown\\n\",\n    \"plt.show()                        # not shown\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Regularized models\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure ridge_regression_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x108e55cf8>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"from sklearn.linear_model import Ridge\\n\",\n    \"\\n\",\n    \"np.random.seed(42)\\n\",\n    \"m = 20\\n\",\n    \"X = 3 * np.random.rand(m, 1)\\n\",\n    \"y = 1 + 0.5 * X + np.random.randn(m, 1) / 1.5\\n\",\n    \"X_new = np.linspace(0, 3, 100).reshape(100, 1)\\n\",\n    \"\\n\",\n    \"def plot_model(model_class, polynomial, alphas, **model_kargs):\\n\",\n    \"    for alpha, style in zip(alphas, (\\\"b-\\\", \\\"g--\\\", \\\"r:\\\")):\\n\",\n    \"        model = model_class(alpha, **model_kargs) if alpha > 0 else LinearRegression()\\n\",\n    \"        if polynomial:\\n\",\n    \"            model = Pipeline([\\n\",\n    \"                    (\\\"poly_features\\\", PolynomialFeatures(degree=10, include_bias=False)),\\n\",\n    \"                    (\\\"std_scaler\\\", StandardScaler()),\\n\",\n    \"                    (\\\"regul_reg\\\", model),\\n\",\n    \"                ])\\n\",\n    \"        model.fit(X, y)\\n\",\n    \"        y_new_regul = model.predict(X_new)\\n\",\n    \"        lw = 2 if alpha > 0 else 1\\n\",\n    \"        plt.plot(X_new, y_new_regul, style, linewidth=lw, label=r\\\"$\\\\alpha = {}$\\\".format(alpha))\\n\",\n    \"    plt.plot(X, y, \\\"b.\\\", linewidth=3)\\n\",\n    \"    plt.legend(loc=\\\"upper left\\\", fontsize=15)\\n\",\n    \"    plt.xlabel(\\\"$x_1$\\\", fontsize=18)\\n\",\n    \"    plt.axis([0, 3, 0, 4])\\n\",\n    \"\\n\",\n    \"plt.figure(figsize=(8,4))\\n\",\n    \"plt.subplot(121)\\n\",\n    \"plot_model(Ridge, polynomial=False, alphas=(0, 10, 100), random_state=42)\\n\",\n    \"plt.ylabel(\\\"$y$\\\", rotation=0, fontsize=18)\\n\",\n    \"plt.subplot(122)\\n\",\n    \"plot_model(Ridge, polynomial=True, alphas=(0, 10**-5, 1), random_state=42)\\n\",\n    \"\\n\",\n    \"save_fig(\\\"ridge_regression_plot\\\")\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[1.55071465]])\"\n      ]\n     },\n     \"execution_count\": 39,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"from sklearn.linear_model import Ridge\\n\",\n    \"ridge_reg = Ridge(alpha=1, solver=\\\"cholesky\\\", random_state=42)\\n\",\n    \"ridge_reg.fit(X, y)\\n\",\n    \"ridge_reg.predict([[1.5]])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([1.13500145])\"\n      ]\n     },\n     \"execution_count\": 40,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"sgd_reg = SGDRegressor(max_iter=5, penalty=\\\"l2\\\", random_state=42)\\n\",\n    \"sgd_reg.fit(X, y.ravel())\\n\",\n    \"sgd_reg.predict([[1.5]])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 41,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[1.5507201]])\"\n      ]\n     },\n     \"execution_count\": 41,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"ridge_reg = Ridge(alpha=1, solver=\\\"sag\\\", random_state=42)\\n\",\n    \"ridge_reg.fit(X, y)\\n\",\n    \"ridge_reg.predict([[1.5]])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 42,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure lasso_regression_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10ff0eb38>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"from sklearn.linear_model import Lasso\\n\",\n    \"\\n\",\n    \"plt.figure(figsize=(8,4))\\n\",\n    \"plt.subplot(121)\\n\",\n    \"plot_model(Lasso, polynomial=False, alphas=(0, 0.1, 1), random_state=42)\\n\",\n    \"plt.ylabel(\\\"$y$\\\", rotation=0, fontsize=18)\\n\",\n    \"plt.subplot(122)\\n\",\n    \"plot_model(Lasso, polynomial=True, alphas=(0, 10**-7, 1), tol=1, random_state=42)\\n\",\n    \"\\n\",\n    \"save_fig(\\\"lasso_regression_plot\\\")\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 43,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([1.53788174])\"\n      ]\n     },\n     \"execution_count\": 43,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"from sklearn.linear_model import Lasso\\n\",\n    \"lasso_reg = Lasso(alpha=0.1)\\n\",\n    \"lasso_reg.fit(X, y)\\n\",\n    \"lasso_reg.predict([[1.5]])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 44,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([1.54333232])\"\n      ]\n     },\n     \"execution_count\": 44,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"from sklearn.linear_model import ElasticNet\\n\",\n    \"elastic_net = ElasticNet(alpha=0.1, l1_ratio=0.5, random_state=42)\\n\",\n    \"elastic_net.fit(X, y)\\n\",\n    \"elastic_net.predict([[1.5]])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 45,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure early_stopping_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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lbV90003aZ8+fbK2L7zwQr388suzfeeSSy7J9p0LL7xQH3jggaztWrVq6eDBg7N9p379+vqXv/xFVVU/+eQTLVu2rO7YsSPr+JdffqmATps2Ldd8ZmZmavny5fX999/P9fhDDz2kPXr0yLZv27ZtCuiqVatyvbdgyvNvSVWBFA3gN91KUP6SPdOTpKQQHQ3nnec7ZKUoY4q/5OTsUxBlZGQwduxYzj33XKpVq0ZsbCwzZ85k82ma7p7n/+MA1K1bl507d57xd9auXUtiYiI1a9bMOn7hhRfmez4RYcSIEQwcOJCuXbvy9NNP89NPP2UdX758OXPnziU2NjZradq0KQDr16/P99yRwgKUP78AhSr+pd2lS8OTJWMiQn7louHDfemGD88/rb/lywNLF0SVKlXKtv3kk0/y+uuv88gjjzBv3jxWrlxJjx49OHHiRL7nydm4QkROWx13Jt85naeffprVq1fTo0cPvvrqK5KSkrLeoWVmZnLdddexcuXKbMtPP/1E165dC3XdUAllK77Il5gIU6Zk9dTt0AHeeMMdirB3h8aYIFi4cCHXX389/fv3B9yP+rp162jUqFFI89GiRQs2bdrErl278I6IszTAfxWfffbZnH322YwYMYJbb72VCRMmMGDAANq1a8fs2bNp3LgxUd4pGnIoV64cx4/nNphPZLASlD8RGDgQkpJAhA4dfIe+/dZGlDCmpGnevDlz5sxh8eLFpKamcvvtt7N169aQ5+Oaa66hYcOGDBo0iO+++45FixYxcuTIrNZ1udm/fz/33nsvCxYsYNOmTXzzzTcsXryYli1bAnDfffexbds2+vfvz7Jly9iwYQNffPEFQ4YMySohJiYmsmrVKn766SfS0tLIyMgI2T0HwgJUPpo1A293ht274eefw5sfY0xwjR07lvPOO4+uXbty+eWXU7NmzbB0XI2OjubTTz9l3759nH/++QwdOpTHHnsMgJiYmFy/U7ZsWXbu3Mnvf/97mjdvzu9+9zuuuOIKnn32WQAaNmzIN998w/Hjx+natSutWrXi3nvvJTY2NqtEdccdd9C4cWPatm1LQkICKZ5+oJFCtAQVC5KTk7XQD/jXX+Evf3GzFr74ItdcA7M8461Pngy//33h82lMpEpNTeUc//lmTNgsWbKEDh06sHr1apKSksKdnQLL729JRJaranKuB/1YCSo3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BqhdQD0AEYnCjUC+xO94OSDy/88MJe8PwHvvuXnfcxg92rc+bZobDN0E1/Tp01m8eDFfffUVTz/9NCtWrKBz587s378/6NeaP38+Y8eOLRYBypjiItAANR8YLSJnAQ949s3zO94S1wnXeLVpA+3awd698M9/nnK4Qwc3ALrXn/8cwryVEm3atKFDhw507NiRW265hTfeeIMtW7bwzTffhDtrxpgABBqgHgWaAT/jRpH4o6oe9jv+e+DL3L5YqnlnLMxjOt0nn3QjJAHMnOkm5jVFJz4+HoD09OwDkqxatYpevXpRtWpVKlSoQMeOHfn666+zpVm2bBldu3alevXqVKhQgbPOOos777wTcFVfY8eOBaBs2bJZVYv5ERFGjRrFCy+8QKNGjahYsSLXXHMNO3fuZOfOndx4441UrlyZBg0a8Oyzz57y/aVLl9KlSxdiY2OpVKkSnTt3ZunSpaeke/nll0lMTCQmJobk5ORT7svrl19+YcCAASQkJFC+fHnatGnDxx9/nO89GFPkVDWgBTcjbmugbi7HWgPVAz1XUS3t27fXiHLokGrHjqqvv66amZlrkoEDVV1TP9VLLskzmSmAt99+WwFdu3atpqen67Fjx3TNmjXauXNnrVmzpu7fvz8r7fLly7VixYrasWNHnT59us6cOVOvvfZaLVeunKakpKiq6sGDB7Vq1ararVs3nTFjhs6bN0/ffvttHTZsmKqq/vrrrzpkyBAFdOHChbp48WJdvHhxvnkEtGHDhtqjRw/9/PPPdcKECRoXF6fdunXTiy++WMeNG6dz587V4cOHK6AzZ87M+u6qVas0JiZG27Vrp9OnT9d//vOfmpycrDExMbpy5cqsdG+99ZYCOnjwYP33v/+tr776qtarV0/j4+N10KBBWek2b96sCQkJmpSUpFOmTNHZs2frrbfeqiKin376aVa60aNHq/vJMKZwgBQNJO4Ekqi4LBEXoAKwfr1qdLQvSPn9Dpkz5A1QOZe6devq0qVLs6W98sortUWLFnr8+PGsfRkZGdqiRQvt3bu3qqouW7ZMAV21alWe1/T+eKenpweUR0CbNWuWLf2IESMU0HHjxmXtS09P14SEBB08eHDWvj59+mjlypV17969Wfv279+vVatW1euvv15VVU+ePKn169fXbt26Zbvu+++/r0C2AHXbbbdpjRo1NC0tLVva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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10ff16e10>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"np.random.seed(42)\\n\",\n    \"m = 100\\n\",\n    \"X = 6 * np.random.rand(m, 1) - 3\\n\",\n    \"y = 2 + X + 0.5 * X**2 + np.random.randn(m, 1)\\n\",\n    \"\\n\",\n    \"X_train, X_val, y_train, y_val = train_test_split(X[:50], y[:50].ravel(), test_size=0.5, random_state=10)\\n\",\n    \"\\n\",\n    \"poly_scaler = Pipeline([\\n\",\n    \"        (\\\"poly_features\\\", PolynomialFeatures(degree=90, include_bias=False)),\\n\",\n    \"        (\\\"std_scaler\\\", StandardScaler()),\\n\",\n    \"    ])\\n\",\n    \"\\n\",\n    \"X_train_poly_scaled = poly_scaler.fit_transform(X_train)\\n\",\n    \"X_val_poly_scaled = poly_scaler.transform(X_val)\\n\",\n    \"\\n\",\n    \"sgd_reg = SGDRegressor(max_iter=1,\\n\",\n    \"                       penalty=None,\\n\",\n    \"                       eta0=0.0005,\\n\",\n    \"                       warm_start=True,\\n\",\n    \"                       learning_rate=\\\"constant\\\",\\n\",\n    \"                       random_state=42)\\n\",\n    \"\\n\",\n    \"n_epochs = 500\\n\",\n    \"train_errors, val_errors = [], []\\n\",\n    \"for epoch in range(n_epochs):\\n\",\n    \"    sgd_reg.fit(X_train_poly_scaled, y_train)\\n\",\n    \"    y_train_predict = sgd_reg.predict(X_train_poly_scaled)\\n\",\n    \"    y_val_predict = sgd_reg.predict(X_val_poly_scaled)\\n\",\n    \"    train_errors.append(mean_squared_error(y_train, y_train_predict))\\n\",\n    \"    val_errors.append(mean_squared_error(y_val, y_val_predict))\\n\",\n    \"\\n\",\n    \"best_epoch = np.argmin(val_errors)\\n\",\n    \"best_val_rmse = np.sqrt(val_errors[best_epoch])\\n\",\n    \"\\n\",\n    \"plt.annotate('Best model',\\n\",\n    \"             xy=(best_epoch, best_val_rmse),\\n\",\n    \"             xytext=(best_epoch, best_val_rmse + 1),\\n\",\n    \"             ha=\\\"center\\\",\\n\",\n    \"             arrowprops=dict(facecolor='black', shrink=0.05),\\n\",\n    \"             fontsize=16,\\n\",\n    \"            )\\n\",\n    \"\\n\",\n    \"best_val_rmse -= 0.03  # just to make the graph look better\\n\",\n    \"plt.plot([0, n_epochs], [best_val_rmse, best_val_rmse], \\\"k:\\\", linewidth=2)\\n\",\n    \"plt.plot(np.sqrt(val_errors), \\\"b-\\\", linewidth=3, label=\\\"Validation set\\\")\\n\",\n    \"plt.plot(np.sqrt(train_errors), \\\"r--\\\", linewidth=2, label=\\\"Training set\\\")\\n\",\n    \"plt.legend(loc=\\\"upper right\\\", fontsize=14)\\n\",\n    \"plt.xlabel(\\\"Epoch\\\", fontsize=14)\\n\",\n    \"plt.ylabel(\\\"RMSE\\\", fontsize=14)\\n\",\n    \"save_fig(\\\"early_stopping_plot\\\")\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 46,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from sklearn.base import clone\\n\",\n    \"sgd_reg = SGDRegressor(max_iter=1, warm_start=True, penalty=None,\\n\",\n    \"                       learning_rate=\\\"constant\\\", eta0=0.0005, random_state=42)\\n\",\n    \"\\n\",\n    \"minimum_val_error = float(\\\"inf\\\")\\n\",\n    \"best_epoch = None\\n\",\n    \"best_model = None\\n\",\n    \"for epoch in range(1000):\\n\",\n    \"    sgd_reg.fit(X_train_poly_scaled, y_train)  # continues where it left off\\n\",\n    \"    y_val_predict = sgd_reg.predict(X_val_poly_scaled)\\n\",\n    \"    val_error = mean_squared_error(y_val, y_val_predict)\\n\",\n    \"    if val_error < minimum_val_error:\\n\",\n    \"        minimum_val_error = val_error\\n\",\n    \"        best_epoch = epoch\\n\",\n    \"        best_model = clone(sgd_reg)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 47,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(239, SGDRegressor(alpha=0.0001, average=False, epsilon=0.1, eta0=0.0005,\\n\",\n       \"        fit_intercept=True, l1_ratio=0.15, learning_rate='constant',\\n\",\n       \"        loss='squared_loss', max_iter=1, n_iter=None, penalty=None,\\n\",\n       \"        power_t=0.25, random_state=42, shuffle=True, tol=None, verbose=0,\\n\",\n       \"        warm_start=True))\"\n      ]\n     },\n     \"execution_count\": 47,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"best_epoch, best_model\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 48,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"%matplotlib inline\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"import numpy as np\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 49,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"t1a, t1b, t2a, t2b = -1, 3, -1.5, 1.5\\n\",\n    \"\\n\",\n    \"# ignoring bias term\\n\",\n    \"t1s = np.linspace(t1a, t1b, 500)\\n\",\n    \"t2s = np.linspace(t2a, t2b, 500)\\n\",\n    \"t1, t2 = np.meshgrid(t1s, t2s)\\n\",\n    \"T = np.c_[t1.ravel(), t2.ravel()]\\n\",\n    \"Xr = np.array([[-1, 1], [-0.3, -1], [1, 0.1]])\\n\",\n    \"yr = 2 * Xr[:, :1] + 0.5 * Xr[:, 1:]\\n\",\n    \"\\n\",\n    \"J = (1/len(Xr) * np.sum((T.dot(Xr.T) - yr.T)**2, axis=1)).reshape(t1.shape)\\n\",\n    \"\\n\",\n    \"N1 = np.linalg.norm(T, ord=1, axis=1).reshape(t1.shape)\\n\",\n    \"N2 = np.linalg.norm(T, ord=2, axis=1).reshape(t1.shape)\\n\",\n    \"\\n\",\n    \"t_min_idx = np.unravel_index(np.argmin(J), J.shape)\\n\",\n    \"t1_min, t2_min = t1[t_min_idx], t2[t_min_idx]\\n\",\n    \"\\n\",\n    \"t_init = np.array([[0.25], [-1]])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 50,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure lasso_vs_ridge_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10c1fb630>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"def bgd_path(theta, X, y, l1, l2, core = 1, eta = 0.1, n_iterations = 50):\\n\",\n    \"    path = [theta]\\n\",\n    \"    for iteration in range(n_iterations):\\n\",\n    \"        gradients = core * 2/len(X) * X.T.dot(X.dot(theta) - y) + l1 * np.sign(theta) + 2 * l2 * theta\\n\",\n    \"\\n\",\n    \"        theta = theta - eta * gradients\\n\",\n    \"        path.append(theta)\\n\",\n    \"    return np.array(path)\\n\",\n    \"\\n\",\n    \"plt.figure(figsize=(12, 8))\\n\",\n    \"for i, N, l1, l2, title in ((0, N1, 0.5, 0, \\\"Lasso\\\"), (1, N2, 0,  0.1, \\\"Ridge\\\")):\\n\",\n    \"    JR = J + l1 * N1 + l2 * N2**2\\n\",\n    \"    \\n\",\n    \"    tr_min_idx = np.unravel_index(np.argmin(JR), JR.shape)\\n\",\n    \"    t1r_min, t2r_min = t1[tr_min_idx], t2[tr_min_idx]\\n\",\n    \"\\n\",\n    \"    levelsJ=(np.exp(np.linspace(0, 1, 20)) - 1) * (np.max(J) - np.min(J)) + np.min(J)\\n\",\n    \"    levelsJR=(np.exp(np.linspace(0, 1, 20)) - 1) * (np.max(JR) - np.min(JR)) + np.min(JR)\\n\",\n    \"    levelsN=np.linspace(0, np.max(N), 10)\\n\",\n    \"    \\n\",\n    \"    path_J = bgd_path(t_init, Xr, yr, l1=0, l2=0)\\n\",\n    \"    path_JR = bgd_path(t_init, Xr, yr, l1, l2)\\n\",\n    \"    path_N = bgd_path(t_init, Xr, yr, np.sign(l1)/3, np.sign(l2), core=0)\\n\",\n    \"\\n\",\n    \"    plt.subplot(221 + i * 2)\\n\",\n    \"    plt.grid(True)\\n\",\n    \"    plt.axhline(y=0, color='k')\\n\",\n    \"    plt.axvline(x=0, color='k')\\n\",\n    \"    plt.contourf(t1, t2, J, levels=levelsJ, alpha=0.9)\\n\",\n    \"    plt.contour(t1, t2, N, levels=levelsN)\\n\",\n    \"    plt.plot(path_J[:, 0], path_J[:, 1], \\\"w-o\\\")\\n\",\n    \"    plt.plot(path_N[:, 0], path_N[:, 1], \\\"y-^\\\")\\n\",\n    \"    plt.plot(t1_min, t2_min, \\\"rs\\\")\\n\",\n    \"    plt.title(r\\\"$\\\\ell_{}$ penalty\\\".format(i + 1), fontsize=16)\\n\",\n    \"    plt.axis([t1a, t1b, t2a, t2b])\\n\",\n    \"    if i == 1:\\n\",\n    \"        plt.xlabel(r\\\"$\\\\theta_1$\\\", fontsize=20)\\n\",\n    \"    plt.ylabel(r\\\"$\\\\theta_2$\\\", fontsize=20, rotation=0)\\n\",\n    \"\\n\",\n    \"    plt.subplot(222 + i * 2)\\n\",\n    \"    plt.grid(True)\\n\",\n    \"    plt.axhline(y=0, color='k')\\n\",\n    \"    plt.axvline(x=0, color='k')\\n\",\n    \"    plt.contourf(t1, t2, JR, levels=levelsJR, alpha=0.9)\\n\",\n    \"    plt.plot(path_JR[:, 0], path_JR[:, 1], \\\"w-o\\\")\\n\",\n    \"    plt.plot(t1r_min, t2r_min, \\\"rs\\\")\\n\",\n    \"    plt.title(title, fontsize=16)\\n\",\n    \"    plt.axis([t1a, t1b, t2a, t2b])\\n\",\n    \"    if i == 1:\\n\",\n    \"        plt.xlabel(r\\\"$\\\\theta_1$\\\", fontsize=20)\\n\",\n    \"\\n\",\n    \"save_fig(\\\"lasso_vs_ridge_plot\\\")\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Logistic regression\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 51,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure logistic_function_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10e7aadd8>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"t = np.linspace(-10, 10, 100)\\n\",\n    \"sig = 1 / (1 + np.exp(-t))\\n\",\n    \"plt.figure(figsize=(9, 3))\\n\",\n    \"plt.plot([-10, 10], [0, 0], \\\"k-\\\")\\n\",\n    \"plt.plot([-10, 10], [0.5, 0.5], \\\"k:\\\")\\n\",\n    \"plt.plot([-10, 10], [1, 1], \\\"k:\\\")\\n\",\n    \"plt.plot([0, 0], [-1.1, 1.1], \\\"k-\\\")\\n\",\n    \"plt.plot(t, sig, \\\"b-\\\", linewidth=2, label=r\\\"$\\\\sigma(t) = \\\\frac{1}{1 + e^{-t}}$\\\")\\n\",\n    \"plt.xlabel(\\\"t\\\")\\n\",\n    \"plt.legend(loc=\\\"upper left\\\", fontsize=20)\\n\",\n    \"plt.axis([-10, 10, -0.1, 1.1])\\n\",\n    \"save_fig(\\\"logistic_function_plot\\\")\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 52,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"['data', 'target', 'target_names', 'DESCR', 'feature_names']\"\n      ]\n     },\n     \"execution_count\": 52,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"from sklearn import datasets\\n\",\n    \"iris = datasets.load_iris()\\n\",\n    \"list(iris.keys())\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 53,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Iris Plants Database\\n\",\n      \"====================\\n\",\n      \"\\n\",\n      \"Notes\\n\",\n      \"-----\\n\",\n      \"Data Set Characteristics:\\n\",\n      \"    :Number of Instances: 150 (50 in each of three classes)\\n\",\n      \"    :Number of Attributes: 4 numeric, predictive attributes and the class\\n\",\n      \"    :Attribute Information:\\n\",\n      \"        - sepal length in cm\\n\",\n      \"        - sepal width in cm\\n\",\n      \"        - petal length in cm\\n\",\n      \"        - petal width in cm\\n\",\n      \"        - class:\\n\",\n      \"                - Iris-Setosa\\n\",\n      \"                - Iris-Versicolour\\n\",\n      \"                - Iris-Virginica\\n\",\n      \"    :Summary Statistics:\\n\",\n      \"\\n\",\n      \"    ============== ==== ==== ======= ===== ====================\\n\",\n      \"                    Min  Max   Mean    SD   Class Correlation\\n\",\n      \"    ============== ==== ==== ======= ===== ====================\\n\",\n      \"    sepal length:   4.3  7.9   5.84   0.83    0.7826\\n\",\n      \"    sepal width:    2.0  4.4   3.05   0.43   -0.4194\\n\",\n      \"    petal length:   1.0  6.9   3.76   1.76    0.9490  (high!)\\n\",\n      \"    petal width:    0.1  2.5   1.20  0.76     0.9565  (high!)\\n\",\n      \"    ============== ==== ==== ======= ===== ====================\\n\",\n      \"\\n\",\n      \"    :Missing Attribute Values: None\\n\",\n      \"    :Class Distribution: 33.3% for each of 3 classes.\\n\",\n      \"    :Creator: R.A. Fisher\\n\",\n      \"    :Donor: Michael Marshall (MARSHALL%PLU@io.arc.nasa.gov)\\n\",\n      \"    :Date: July, 1988\\n\",\n      \"\\n\",\n      \"This is a copy of UCI ML iris datasets.\\n\",\n      \"http://archive.ics.uci.edu/ml/datasets/Iris\\n\",\n      \"\\n\",\n      \"The famous Iris database, first used by Sir R.A Fisher\\n\",\n      \"\\n\",\n      \"This is perhaps the best known database to be found in the\\n\",\n      \"pattern recognition literature.  Fisher's paper is a classic in the field and\\n\",\n      \"is referenced frequently to this day.  (See Duda & Hart, for example.)  The\\n\",\n      \"data set contains 3 classes of 50 instances each, where each class refers to a\\n\",\n      \"type of iris plant.  One class is linearly separable from the other 2; the\\n\",\n      \"latter are NOT linearly separable from each other.\\n\",\n      \"\\n\",\n      \"References\\n\",\n      \"----------\\n\",\n      \"   - Fisher,R.A. \\\"The use of multiple measurements in taxonomic problems\\\"\\n\",\n      \"     Annual Eugenics, 7, Part II, 179-188 (1936); also in \\\"Contributions to\\n\",\n      \"     Mathematical Statistics\\\" (John Wiley, NY, 1950).\\n\",\n      \"   - Duda,R.O., & Hart,P.E. (1973) Pattern Classification and Scene Analysis.\\n\",\n      \"     (Q327.D83) John Wiley & Sons.  ISBN 0-471-22361-1.  See page 218.\\n\",\n      \"   - Dasarathy, B.V. (1980) \\\"Nosing Around the Neighborhood: A New System\\n\",\n      \"     Structure and Classification Rule for Recognition in Partially Exposed\\n\",\n      \"     Environments\\\".  IEEE Transactions on Pattern Analysis and Machine\\n\",\n      \"     Intelligence, Vol. PAMI-2, No. 1, 67-71.\\n\",\n      \"   - Gates, G.W. (1972) \\\"The Reduced Nearest Neighbor Rule\\\".  IEEE Transactions\\n\",\n      \"     on Information Theory, May 1972, 431-433.\\n\",\n      \"   - See also: 1988 MLC Proceedings, 54-64.  Cheeseman et al\\\"s AUTOCLASS II\\n\",\n      \"     conceptual clustering system finds 3 classes in the data.\\n\",\n      \"   - Many, many more ...\\n\",\n      \"\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(iris.DESCR)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 54,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"X = iris[\\\"data\\\"][:, 3:]  # petal width\\n\",\n    \"y = (iris[\\\"target\\\"] == 2).astype(np.int)  # 1 if Iris-Virginica, else 0\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 55,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"LogisticRegression(C=1.0, class_weight=None, dual=False, fit_intercept=True,\\n\",\n       \"          intercept_scaling=1, max_iter=100, multi_class='ovr', n_jobs=1,\\n\",\n       \"          penalty='l2', random_state=42, solver='liblinear', tol=0.0001,\\n\",\n       \"          verbose=0, warm_start=False)\"\n      ]\n     },\n     \"execution_count\": 55,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"from sklearn.linear_model import LogisticRegression\\n\",\n    \"log_reg = LogisticRegression(random_state=42)\\n\",\n    \"log_reg.fit(X, y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 56,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[<matplotlib.lines.Line2D at 0x10fc0a5c0>]\"\n      ]\n     },\n     \"execution_count\": 56,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10fc0a080>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"X_new = np.linspace(0, 3, 1000).reshape(-1, 1)\\n\",\n    \"y_proba = log_reg.predict_proba(X_new)\\n\",\n    \"\\n\",\n    \"plt.plot(X_new, y_proba[:, 1], \\\"g-\\\", linewidth=2, label=\\\"Iris-Virginica\\\")\\n\",\n    \"plt.plot(X_new, y_proba[:, 0], \\\"b--\\\", linewidth=2, label=\\\"Not Iris-Virginica\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The figure in the book actually is actually a bit fancier:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 57,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure logistic_regression_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x1085d1908>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"X_new = np.linspace(0, 3, 1000).reshape(-1, 1)\\n\",\n    \"y_proba = log_reg.predict_proba(X_new)\\n\",\n    \"decision_boundary = X_new[y_proba[:, 1] >= 0.5][0]\\n\",\n    \"\\n\",\n    \"plt.figure(figsize=(8, 3))\\n\",\n    \"plt.plot(X[y==0], y[y==0], \\\"bs\\\")\\n\",\n    \"plt.plot(X[y==1], y[y==1], \\\"g^\\\")\\n\",\n    \"plt.plot([decision_boundary, decision_boundary], [-1, 2], \\\"k:\\\", linewidth=2)\\n\",\n    \"plt.plot(X_new, y_proba[:, 1], \\\"g-\\\", linewidth=2, label=\\\"Iris-Virginica\\\")\\n\",\n    \"plt.plot(X_new, y_proba[:, 0], \\\"b--\\\", linewidth=2, label=\\\"Not Iris-Virginica\\\")\\n\",\n    \"plt.text(decision_boundary+0.02, 0.15, \\\"Decision  boundary\\\", fontsize=14, color=\\\"k\\\", ha=\\\"center\\\")\\n\",\n    \"plt.arrow(decision_boundary, 0.08, -0.3, 0, head_width=0.05, head_length=0.1, fc='b', ec='b')\\n\",\n    \"plt.arrow(decision_boundary, 0.92, 0.3, 0, head_width=0.05, head_length=0.1, fc='g', ec='g')\\n\",\n    \"plt.xlabel(\\\"Petal width (cm)\\\", fontsize=14)\\n\",\n    \"plt.ylabel(\\\"Probability\\\", fontsize=14)\\n\",\n    \"plt.legend(loc=\\\"center left\\\", fontsize=14)\\n\",\n    \"plt.axis([0, 3, -0.02, 1.02])\\n\",\n    \"save_fig(\\\"logistic_regression_plot\\\")\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 58,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([1.61561562])\"\n      ]\n     },\n     \"execution_count\": 58,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"decision_boundary\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 59,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([1, 0])\"\n      ]\n     },\n     \"execution_count\": 59,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"log_reg.predict([[1.7], [1.5]])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 60,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure logistic_regression_contour_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10fc318d0>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"from sklearn.linear_model import LogisticRegression\\n\",\n    \"\\n\",\n    \"X = iris[\\\"data\\\"][:, (2, 3)]  # petal length, petal width\\n\",\n    \"y = (iris[\\\"target\\\"] == 2).astype(np.int)\\n\",\n    \"\\n\",\n    \"log_reg = LogisticRegression(C=10**10, random_state=42)\\n\",\n    \"log_reg.fit(X, y)\\n\",\n    \"\\n\",\n    \"x0, x1 = np.meshgrid(\\n\",\n    \"        np.linspace(2.9, 7, 500).reshape(-1, 1),\\n\",\n    \"        np.linspace(0.8, 2.7, 200).reshape(-1, 1),\\n\",\n    \"    )\\n\",\n    \"X_new = np.c_[x0.ravel(), x1.ravel()]\\n\",\n    \"\\n\",\n    \"y_proba = log_reg.predict_proba(X_new)\\n\",\n    \"\\n\",\n    \"plt.figure(figsize=(10, 4))\\n\",\n    \"plt.plot(X[y==0, 0], X[y==0, 1], \\\"bs\\\")\\n\",\n    \"plt.plot(X[y==1, 0], X[y==1, 1], \\\"g^\\\")\\n\",\n    \"\\n\",\n    \"zz = y_proba[:, 1].reshape(x0.shape)\\n\",\n    \"contour = plt.contour(x0, x1, zz, cmap=plt.cm.brg)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"left_right = np.array([2.9, 7])\\n\",\n    \"boundary = -(log_reg.coef_[0][0] * left_right + log_reg.intercept_[0]) / log_reg.coef_[0][1]\\n\",\n    \"\\n\",\n    \"plt.clabel(contour, inline=1, fontsize=12)\\n\",\n    \"plt.plot(left_right, boundary, \\\"k--\\\", linewidth=3)\\n\",\n    \"plt.text(3.5, 1.5, \\\"Not Iris-Virginica\\\", fontsize=14, color=\\\"b\\\", ha=\\\"center\\\")\\n\",\n    \"plt.text(6.5, 2.3, \\\"Iris-Virginica\\\", fontsize=14, color=\\\"g\\\", ha=\\\"center\\\")\\n\",\n    \"plt.xlabel(\\\"Petal length\\\", fontsize=14)\\n\",\n    \"plt.ylabel(\\\"Petal width\\\", fontsize=14)\\n\",\n    \"plt.axis([2.9, 7, 0.8, 2.7])\\n\",\n    \"save_fig(\\\"logistic_regression_contour_plot\\\")\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 61,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"LogisticRegression(C=10, class_weight=None, dual=False, fit_intercept=True,\\n\",\n       \"          intercept_scaling=1, max_iter=100, multi_class='multinomial',\\n\",\n       \"          n_jobs=1, penalty='l2', random_state=42, solver='lbfgs',\\n\",\n       \"          tol=0.0001, verbose=0, warm_start=False)\"\n      ]\n     },\n     \"execution_count\": 61,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"X = iris[\\\"data\\\"][:, (2, 3)]  # petal length, petal width\\n\",\n    \"y = iris[\\\"target\\\"]\\n\",\n    \"\\n\",\n    \"softmax_reg = LogisticRegression(multi_class=\\\"multinomial\\\",solver=\\\"lbfgs\\\", C=10, random_state=42)\\n\",\n    \"softmax_reg.fit(X, y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 62,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Saving figure softmax_regression_contour_plot\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x10fe43b00>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"x0, x1 = np.meshgrid(\\n\",\n    \"        np.linspace(0, 8, 500).reshape(-1, 1),\\n\",\n    \"        np.linspace(0, 3.5, 200).reshape(-1, 1),\\n\",\n    \"    )\\n\",\n    \"X_new = np.c_[x0.ravel(), x1.ravel()]\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"y_proba = softmax_reg.predict_proba(X_new)\\n\",\n    \"y_predict = softmax_reg.predict(X_new)\\n\",\n    \"\\n\",\n    \"zz1 = y_proba[:, 1].reshape(x0.shape)\\n\",\n    \"zz = y_predict.reshape(x0.shape)\\n\",\n    \"\\n\",\n    \"plt.figure(figsize=(10, 4))\\n\",\n    \"plt.plot(X[y==2, 0], X[y==2, 1], \\\"g^\\\", label=\\\"Iris-Virginica\\\")\\n\",\n    \"plt.plot(X[y==1, 0], X[y==1, 1], \\\"bs\\\", label=\\\"Iris-Versicolor\\\")\\n\",\n    \"plt.plot(X[y==0, 0], X[y==0, 1], \\\"yo\\\", label=\\\"Iris-Setosa\\\")\\n\",\n    \"\\n\",\n    \"from matplotlib.colors import ListedColormap\\n\",\n    \"custom_cmap = ListedColormap(['#fafab0','#9898ff','#a0faa0'])\\n\",\n    \"\\n\",\n    \"plt.contourf(x0, x1, zz, cmap=custom_cmap)\\n\",\n    \"contour = plt.contour(x0, x1, zz1, cmap=plt.cm.brg)\\n\",\n    \"plt.clabel(contour, inline=1, fontsize=12)\\n\",\n    \"plt.xlabel(\\\"Petal length\\\", fontsize=14)\\n\",\n    \"plt.ylabel(\\\"Petal width\\\", fontsize=14)\\n\",\n    \"plt.legend(loc=\\\"center left\\\", fontsize=14)\\n\",\n    \"plt.axis([0, 7, 0, 3.5])\\n\",\n    \"save_fig(\\\"softmax_regression_contour_plot\\\")\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 63,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([2])\"\n      ]\n     },\n     \"execution_count\": 63,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"softmax_reg.predict([[5, 2]])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 64,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[6.33134077e-07, 5.75276067e-02, 9.42471760e-01]])\"\n      ]\n     },\n     \"execution_count\": 64,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"softmax_reg.predict_proba([[5, 2]])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Exercise solutions\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 1. to 11.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"See appendix A.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 12. Batch Gradient Descent with early stopping for Softmax Regression\\n\",\n    \"(without using Scikit-Learn)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's start by loading the data. We will just reuse the Iris dataset we loaded earlier.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 65,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"X = iris[\\\"data\\\"][:, (2, 3)]  # petal length, petal width\\n\",\n    \"y = iris[\\\"target\\\"]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We need to add the bias term for every instance ($x_0 = 1$):\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 66,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"X_with_bias = np.c_[np.ones([len(X), 1]), X]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"And let's set the random seed so the output of this exercise solution is reproducible:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 67,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"np.random.seed(2042)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The easiest option to split the dataset into a training set, a validation set and a test set would be to use Scikit-Learn's `train_test_split()` function, but the point of this exercise is to try understand the algorithms by implementing them manually. So here is one possible implementation:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 68,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"test_ratio = 0.2\\n\",\n    \"validation_ratio = 0.2\\n\",\n    \"total_size = len(X_with_bias)\\n\",\n    \"\\n\",\n    \"test_size = int(total_size * test_ratio)\\n\",\n    \"validation_size = int(total_size * validation_ratio)\\n\",\n    \"train_size = total_size - test_size - validation_size\\n\",\n    \"\\n\",\n    \"rnd_indices = np.random.permutation(total_size)\\n\",\n    \"\\n\",\n    \"X_train = X_with_bias[rnd_indices[:train_size]]\\n\",\n    \"y_train = y[rnd_indices[:train_size]]\\n\",\n    \"X_valid = X_with_bias[rnd_indices[train_size:-test_size]]\\n\",\n    \"y_valid = y[rnd_indices[train_size:-test_size]]\\n\",\n    \"X_test = X_with_bias[rnd_indices[-test_size:]]\\n\",\n    \"y_test = y[rnd_indices[-test_size:]]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"The targets are currently class indices (0, 1 or 2), but we need target class probabilities to train the Softmax Regression model. Each instance will have target class probabilities equal to 0.0 for all classes except for the target class which will have a probability of 1.0 (in other words, the vector of class probabilities for ay given instance is a one-hot vector). Let's write a small function to convert the vector of class indices into a matrix containing a one-hot vector for each instance:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 69,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def to_one_hot(y):\\n\",\n    \"    n_classes = y.max() + 1\\n\",\n    \"    m = len(y)\\n\",\n    \"    Y_one_hot = np.zeros((m, n_classes))\\n\",\n    \"    Y_one_hot[np.arange(m), y] = 1\\n\",\n    \"    return Y_one_hot\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's test this function on the first 10 instances:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 70,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([0, 1, 2, 1, 1, 0, 1, 1, 1, 0])\"\n      ]\n     },\n     \"execution_count\": 70,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"y_train[:10]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 71,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[1., 0., 0.],\\n\",\n       \"       [0., 1., 0.],\\n\",\n       \"       [0., 0., 1.],\\n\",\n       \"       [0., 1., 0.],\\n\",\n       \"       [0., 1., 0.],\\n\",\n       \"       [1., 0., 0.],\\n\",\n       \"       [0., 1., 0.],\\n\",\n       \"       [0., 1., 0.],\\n\",\n       \"       [0., 1., 0.],\\n\",\n       \"       [1., 0., 0.]])\"\n      ]\n     },\n     \"execution_count\": 71,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"to_one_hot(y_train[:10])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Looks good, so let's create the target class probabilities matrix for the training set and the test set:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 72,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"Y_train_one_hot = to_one_hot(y_train)\\n\",\n    \"Y_valid_one_hot = to_one_hot(y_valid)\\n\",\n    \"Y_test_one_hot = to_one_hot(y_test)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now let's implement the Softmax function. Recall that it is defined by the following equation:\\n\",\n    \"\\n\",\n    \"$\\\\sigma\\\\left(\\\\mathbf{s}(\\\\mathbf{x})\\\\right)_k = \\\\dfrac{\\\\exp\\\\left(s_k(\\\\mathbf{x})\\\\right)}{\\\\sum\\\\limits_{j=1}^{K}{\\\\exp\\\\left(s_j(\\\\mathbf{x})\\\\right)}}$\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 73,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def softmax(logits):\\n\",\n    \"    exps = np.exp(logits)\\n\",\n    \"    exp_sums = np.sum(exps, axis=1, keepdims=True)\\n\",\n    \"    return exps / exp_sums\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"We are almost ready to start training. Let's define the number of inputs and outputs:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 74,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"n_inputs = X_train.shape[1] # == 3 (2 features plus the bias term)\\n\",\n    \"n_outputs = len(np.unique(y_train))   # == 3 (3 iris classes)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now here comes the hardest part: training! Theoretically, it's simple: it's just a matter of translating the math equations into Python code. But in practice, it can be quite tricky: in particular, it's easy to mix up the order of the terms, or the indices. You can even end up with code that looks like it's working but is actually not computing exactly the right thing. When unsure, you should write down the shape of each term in the equation and make sure the corresponding terms in your code match closely. It can also help to evaluate each term independently and print them out. The good news it that you won't have to do this everyday, since all this is well implemented by Scikit-Learn, but it will help you understand what's going on under the hood.\\n\",\n    \"\\n\",\n    \"So the equations we will need are the cost function:\\n\",\n    \"\\n\",\n    \"$J(\\\\mathbf{\\\\Theta}) =\\n\",\n    \"- \\\\dfrac{1}{m}\\\\sum\\\\limits_{i=1}^{m}\\\\sum\\\\limits_{k=1}^{K}{y_k^{(i)}\\\\log\\\\left(\\\\hat{p}_k^{(i)}\\\\right)}$\\n\",\n    \"\\n\",\n    \"And the equation for the gradients:\\n\",\n    \"\\n\",\n    \"$\\\\nabla_{\\\\mathbf{\\\\theta}^{(k)}} \\\\, J(\\\\mathbf{\\\\Theta}) = \\\\dfrac{1}{m} \\\\sum\\\\limits_{i=1}^{m}{ \\\\left ( \\\\hat{p}^{(i)}_k - y_k^{(i)} \\\\right ) \\\\mathbf{x}^{(i)}}$\\n\",\n    \"\\n\",\n    \"Note that $\\\\log\\\\left(\\\\hat{p}_k^{(i)}\\\\right)$ may not be computable if $\\\\hat{p}_k^{(i)} = 0$. So we will add a tiny value $\\\\epsilon$ to $\\\\log\\\\left(\\\\hat{p}_k^{(i)}\\\\right)$ to avoid getting `nan` values.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 75,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"0 5.446183864821945\\n\",\n      \"500 0.8351003035768683\\n\",\n      \"1000 0.6876961554414912\\n\",\n      \"1500 0.6010299835452122\\n\",\n      \"2000 0.5442782811959167\\n\",\n      \"2500 0.5037262742244605\\n\",\n      \"3000 0.4728357293908468\\n\",\n      \"3500 0.4481872508179334\\n\",\n      \"4000 0.4278347262806174\\n\",\n      \"4500 0.4105891022823527\\n\",\n      \"5000 0.39568032574889406\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"eta = 0.01\\n\",\n    \"n_iterations = 5001\\n\",\n    \"m = len(X_train)\\n\",\n    \"epsilon = 1e-7\\n\",\n    \"\\n\",\n    \"Theta = np.random.randn(n_inputs, n_outputs)\\n\",\n    \"\\n\",\n    \"for iteration in range(n_iterations):\\n\",\n    \"    logits = X_train.dot(Theta)\\n\",\n    \"    Y_proba = softmax(logits)\\n\",\n    \"    loss = -np.mean(np.sum(Y_train_one_hot * np.log(Y_proba + epsilon), axis=1))\\n\",\n    \"    error = Y_proba - Y_train_one_hot\\n\",\n    \"    if iteration % 500 == 0:\\n\",\n    \"        print(iteration, loss)\\n\",\n    \"    gradients = 1/m * X_train.T.dot(error)\\n\",\n    \"    Theta = Theta - eta * gradients\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"And that's it! The Softmax model is trained. Let's look at the model parameters:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 76,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[ 3.3172417 , -0.6476445 , -2.99855999],\\n\",\n       \"       [-1.16505434,  0.11283387,  0.10251113],\\n\",\n       \"       [-0.72087779, -0.083875  ,  1.48587045]])\"\n      ]\n     },\n     \"execution_count\": 76,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"Theta\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Let's make predictions for the validation set and check the accuracy score:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 77,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.9666666666666667\"\n      ]\n     },\n     \"execution_count\": 77,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"logits = X_valid.dot(Theta)\\n\",\n    \"Y_proba = softmax(logits)\\n\",\n    \"y_predict = np.argmax(Y_proba, axis=1)\\n\",\n    \"\\n\",\n    \"accuracy_score = np.mean(y_predict == y_valid)\\n\",\n    \"accuracy_score\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Well, this model looks pretty good. For the sake of the exercise, let's add a bit of $\\\\ell_2$ regularization. The following training code is similar to the one above, but the loss now has an additional $\\\\ell_2$ penalty, and the gradients have the proper additional term (note that we don't regularize the first element of `Theta` since this corresponds to the bias term). Also, let's try increasing the learning rate `eta`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 78,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"0 6.629574947908294\\n\",\n      \"500 0.5341631554372782\\n\",\n      \"1000 0.5037712748637474\\n\",\n      \"1500 0.4948056455575166\\n\",\n      \"2000 0.49140819484111964\\n\",\n      \"2500 0.4900085074445459\\n\",\n      \"3000 0.48940742896132616\\n\",\n      \"3500 0.4891431024691195\\n\",\n      \"4000 0.48902516549065855\\n\",\n      \"4500 0.48897205809605315\\n\",\n      \"5000 0.4889480004791563\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"eta = 0.1\\n\",\n    \"n_iterations = 5001\\n\",\n    \"m = len(X_train)\\n\",\n    \"epsilon = 1e-7\\n\",\n    \"alpha = 0.1  # regularization hyperparameter\\n\",\n    \"\\n\",\n    \"Theta = np.random.randn(n_inputs, n_outputs)\\n\",\n    \"\\n\",\n    \"for iteration in range(n_iterations):\\n\",\n    \"    logits = X_train.dot(Theta)\\n\",\n    \"    Y_proba = softmax(logits)\\n\",\n    \"    xentropy_loss = -np.mean(np.sum(Y_train_one_hot * np.log(Y_proba + epsilon), axis=1))\\n\",\n    \"    l2_loss = 1/2 * np.sum(np.square(Theta[1:]))\\n\",\n    \"    loss = xentropy_loss + alpha * l2_loss\\n\",\n    \"    error = Y_proba - Y_train_one_hot\\n\",\n    \"    if iteration % 500 == 0:\\n\",\n    \"        print(iteration, loss)\\n\",\n    \"    gradients = 1/m * X_train.T.dot(error) + np.r_[np.zeros([1, n_outputs]), alpha * Theta[1:]]\\n\",\n    \"    Theta = Theta - eta * gradients\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Because of the additional $\\\\ell_2$ penalty, the loss seems greater than earlier, but perhaps this model will perform better? Let's find out:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 79,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1.0\"\n      ]\n     },\n     \"execution_count\": 79,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"logits = X_valid.dot(Theta)\\n\",\n    \"Y_proba = softmax(logits)\\n\",\n    \"y_predict = np.argmax(Y_proba, axis=1)\\n\",\n    \"\\n\",\n    \"accuracy_score = np.mean(y_predict == y_valid)\\n\",\n    \"accuracy_score\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Cool, perfect accuracy! We probably just got lucky with this validation set, but still, it's pleasant.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now let's add early stopping. For this we just need to measure the loss on the validation set at every iteration and stop when the error starts growing.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 80,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"0 4.70940845273367\\n\",\n      \"500 0.5740996073458012\\n\",\n      \"1000 0.5436382813658034\\n\",\n      \"1500 0.535638768431427\\n\",\n      \"2000 0.5332563789170385\\n\",\n      \"2500 0.5326544271776569\\n\",\n      \"2765 0.5326058224570446\\n\",\n      \"2766 0.5326058230506047 early stopping!\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"eta = 0.1 \\n\",\n    \"n_iterations = 5001\\n\",\n    \"m = len(X_train)\\n\",\n    \"epsilon = 1e-7\\n\",\n    \"alpha = 0.1  # regularization hyperparameter\\n\",\n    \"best_loss = np.infty\\n\",\n    \"\\n\",\n    \"Theta = np.random.randn(n_inputs, n_outputs)\\n\",\n    \"\\n\",\n    \"for iteration in range(n_iterations):\\n\",\n    \"    logits = X_train.dot(Theta)\\n\",\n    \"    Y_proba = softmax(logits)\\n\",\n    \"    xentropy_loss = -np.mean(np.sum(Y_train_one_hot * np.log(Y_proba + epsilon), axis=1))\\n\",\n    \"    l2_loss = 1/2 * np.sum(np.square(Theta[1:]))\\n\",\n    \"    loss = xentropy_loss + alpha * l2_loss\\n\",\n    \"    error = Y_proba - Y_train_one_hot\\n\",\n    \"    gradients = 1/m * X_train.T.dot(error) + np.r_[np.zeros([1, n_outputs]), alpha * Theta[1:]]\\n\",\n    \"    Theta = Theta - eta * gradients\\n\",\n    \"\\n\",\n    \"    logits = X_valid.dot(Theta)\\n\",\n    \"    Y_proba = softmax(logits)\\n\",\n    \"    xentropy_loss = -np.mean(np.sum(Y_valid_one_hot * np.log(Y_proba + epsilon), axis=1))\\n\",\n    \"    l2_loss = 1/2 * np.sum(np.square(Theta[1:]))\\n\",\n    \"    loss = xentropy_loss + alpha * l2_loss\\n\",\n    \"    if iteration % 500 == 0:\\n\",\n    \"        print(iteration, loss)\\n\",\n    \"    if loss < best_loss:\\n\",\n    \"        best_loss = loss\\n\",\n    \"    else:\\n\",\n    \"        print(iteration - 1, best_loss)\\n\",\n    \"        print(iteration, loss, \\\"early stopping!\\\")\\n\",\n    \"        break\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 81,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1.0\"\n      ]\n     },\n     \"execution_count\": 81,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"logits = X_valid.dot(Theta)\\n\",\n    \"Y_proba = softmax(logits)\\n\",\n    \"y_predict = np.argmax(Y_proba, axis=1)\\n\",\n    \"\\n\",\n    \"accuracy_score = np.mean(y_predict == y_valid)\\n\",\n    \"accuracy_score\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Still perfect, but faster.\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Now let's plot the model's predictions on the whole dataset:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 82,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"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\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x105f47278>\"\n      ]\n     },\n     \"metadata\": {},\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"x0, x1 = np.meshgrid(\\n\",\n    \"        np.linspace(0, 8, 500).reshape(-1, 1),\\n\",\n    \"        np.linspace(0, 3.5, 200).reshape(-1, 1),\\n\",\n    \"    )\\n\",\n    \"X_new = np.c_[x0.ravel(), x1.ravel()]\\n\",\n    \"X_new_with_bias = np.c_[np.ones([len(X_new), 1]), X_new]\\n\",\n    \"\\n\",\n    \"logits = X_new_with_bias.dot(Theta)\\n\",\n    \"Y_proba = softmax(logits)\\n\",\n    \"y_predict = np.argmax(Y_proba, axis=1)\\n\",\n    \"\\n\",\n    \"zz1 = Y_proba[:, 1].reshape(x0.shape)\\n\",\n    \"zz = y_predict.reshape(x0.shape)\\n\",\n    \"\\n\",\n    \"plt.figure(figsize=(10, 4))\\n\",\n    \"plt.plot(X[y==2, 0], X[y==2, 1], \\\"g^\\\", label=\\\"Iris-Virginica\\\")\\n\",\n    \"plt.plot(X[y==1, 0], X[y==1, 1], \\\"bs\\\", label=\\\"Iris-Versicolor\\\")\\n\",\n    \"plt.plot(X[y==0, 0], X[y==0, 1], \\\"yo\\\", label=\\\"Iris-Setosa\\\")\\n\",\n    \"\\n\",\n    \"from matplotlib.colors import ListedColormap\\n\",\n    \"custom_cmap = ListedColormap(['#fafab0','#9898ff','#a0faa0'])\\n\",\n    \"\\n\",\n    \"plt.contourf(x0, x1, zz, cmap=custom_cmap)\\n\",\n    \"contour = plt.contour(x0, x1, zz1, cmap=plt.cm.brg)\\n\",\n    \"plt.clabel(contour, inline=1, fontsize=12)\\n\",\n    \"plt.xlabel(\\\"Petal length\\\", fontsize=14)\\n\",\n    \"plt.ylabel(\\\"Petal width\\\", fontsize=14)\\n\",\n    \"plt.legend(loc=\\\"upper left\\\", fontsize=14)\\n\",\n    \"plt.axis([0, 7, 0, 3.5])\\n\",\n    \"plt.show()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"And now let's measure the final model's accuracy on the test set:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 83,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.9333333333333333\"\n      ]\n     },\n     \"execution_count\": 83,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"logits = X_test.dot(Theta)\\n\",\n    \"Y_proba = softmax(logits)\\n\",\n    \"y_predict = np.argmax(Y_proba, axis=1)\\n\",\n    \"\\n\",\n    \"accuracy_score = np.mean(y_predict == y_test)\\n\",\n    \"accuracy_score\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Our perfect model turns out to have slight imperfections. This variability is likely due to the very small size of the dataset: depending on how you sample the training set, validation set and the test set, you can get quite different results. Try changing the random seed and running the code again a few times, you will see that the results will vary.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.4\"\n  },\n  \"nav_menu\": {},\n  \"toc\": {\n   \"navigate_menu\": true,\n   \"number_sections\": true,\n   \"sideBar\": true,\n   \"threshold\": 6,\n   \"toc_cell\": false,\n   \"toc_section_display\": \"block\",\n   \"toc_window_display\": false\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 1\n}"
  },
  {
    "path": "models/Regression/LinearRegression.ipynb",
    "content": "{\n  \"nbformat\": 4,\n  \"nbformat_minor\": 0,\n  \"metadata\": {\n    \"colab\": {\n      \"name\": \"LinearRegression.ipynb\",\n      \"provenance\": [],\n      \"collapsed_sections\": []\n    },\n    \"kernelspec\": {\n      \"name\": \"python3\",\n      \"display_name\": \"Python 3\"\n    }\n  },\n  \"cells\": [\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"Hk9dNKUdf7_o\"\n      },\n      \"source\": [\n        \"import numpy as np\\n\",\n        \"import pandas as pd \\n\",\n        \"import matplotlib.pyplot as plt\\n\",\n        \"from sklearn.linear_model import LinearRegression,Ridge,Lasso,ElasticNet,LogisticRegression,Lasso\\n\",\n        \"from sklearn.datasets import make_regression\\n\",\n        \"from sklearn.datasets import make_blobs\"\n      ],\n      \"execution_count\": 2,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 279\n        },\n        \"id\": \"_EPXSRt3gPVO\",\n        \"outputId\": \"95441df3-10cb-4951-ba62-44c6f8854290\"\n      },\n      \"source\": [\n        \"# load and visualize data from sklearn\\n\",\n        \"# n_features means the dimensions of data instead of number\\n\",\n        \"# X-2D array Y-list\\n\",\n        \"X,Y = make_regression(n_features=1,noise = 10,n_samples=1000)\\n\",\n        \"plt.xlabel(\\\"Feature-X\\\")\\n\",\n        \"plt.ylabel(\\\"Target\\\")\\n\",\n        \"plt.scatter(X,Y,s=2) # s equals the size of marker(here is blue dots)\\n\",\n        \"plt.show()\"\n      ],\n      \"execution_count\": 3,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"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\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"sT-x2GrLhN-I\",\n        \"outputId\": \"d6168e30-42eb-49bd-c274-92fdc6550a68\"\n      },\n      \"source\": [\n        \"# model\\n\",\n        \"learner = LinearRegression()\\n\",\n        \"learner.fit(X,Y)\"\n      ],\n      \"execution_count\": 4,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"LinearRegression(copy_X=True, fit_intercept=True, n_jobs=None, normalize=False)\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 4\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"0cDY6V6wXciw\"\n      },\n      \"source\": [\n        \"The weight and the number of it is equal to the number of the dimension of data\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"sppfCYrziNOK\",\n        \"outputId\": \"e7f72d49-c3d5-4ec0-ead1-195cf00ef280\"\n      },\n      \"source\": [\n        \"learner.coef_ \"\n      ],\n      \"execution_count\": 5,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([69.59604974])\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 5\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"DSn1VmLaEhcZ\",\n        \"outputId\": \"09e8e334-180a-4e6b-943d-fcd336084c25\"\n      },\n      \"source\": [\n        \"learner.intercept_ # bias always one\"\n      ],\n      \"execution_count\": 6,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"-0.2743309880881992\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 6\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"vTlIqXgGElIH\"\n      },\n      \"source\": [\n        \"pred = learner.predict(X) \"\n      ],\n      \"execution_count\": 7,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"gS-fciaYErbf\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 279\n        },\n        \"outputId\": \"5170c727-b369-4a71-f4fb-009a4bd5d79d\"\n      },\n      \"source\": [\n        \"# visualize the result\\n\",\n        \"plt.scatter(X,Y,s=5,label = \\\"original\\\")\\n\",\n        \"plt.scatter(X,pred,s = 5,label = \\\"prediction\\\")\\n\",\n        \"plt.xlabel(\\\"Feature-X\\\")\\n\",\n        \"plt.ylabel(\\\"Target-Y\\\")\\n\",\n        \"plt.legend() # make labels show inside\\n\",\n        \"plt.show()\"\n      ],\n      \"execution_count\": 8,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAY0AAAEGCAYAAACZ0MnKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nO3deXzU1dX48c+ZSTIhC9lBhCyICCgghLCrT9X6uKFUHzfQVq2KG9LVpXZ3ebStte5W3MBfEdxbtfq0bm1d2JKwKKuoCQlrVkgyZJLM9/7++M4MM8kkBEiYSXLer1deyXxnJnPhBXPm3nPuuWKMQSmllOoMR6QHoJRSqufQoKGUUqrTNGgopZTqNA0aSimlOk2DhlJKqU6LifQAulNmZqbJy8uL9DCUUqpHKSoqqjTGZIW7r1cHjby8PAoLCyM9DKWU6lFEpLS9+3R5SimlVKdp0FBKKdVpGjSUUkp1Wq/OaYTT3NxMeXk5jY2NkR5KrxIfH8+QIUOIjY2N9FCUUt2ozwWN8vJykpOTycvLQ0QiPZxewRhDVVUV5eXlDB06NNLDUUp1oz63PNXY2EhGRoYGjC4kImRkZOjsTak+oM8FDUADRjfQv1OloohlQf1u6IYu5n0yaCilVK9lWbBwBjw4Chaca9/uQho0otg555xDbW1th4/51a9+xfvvv39Iv/9f//oXM2bMOKTnKqWilLsSU7YcrBb7u7uyS399n0uE9wTGGIwxvPPOOwd87F133XUERqSU6imsfplsjBnFcZ51bI4Zxch+mV06O9CZRoQ8+OCDjB49mtGjR/PQQw9RUlLCiBEj+N73vsfo0aMpKysjLy+Pykr7U8Ldd9/NiBEjOOmkk5g1axYPPPAAAFdddRWvvvoqYLdN+fWvf01+fj5jxoxh48aNAKxYsYKpU6cyfvx4pk2bxqZNmyLzh1ZKdbsqdzMz6+9giudxzq//GVXu5i79/Ro0OsGyDBV1HrrqaNyioiKef/55li9fzrJly3j66aepqanhyy+/5KabbmLdunXk5uYGHr9y5Upee+011qxZw7vvvtthP63MzEyKi4u58cYbA4Fl5MiRfPzxx6xatYq77rqLO++8s0v+HEqp6JOZFEd+bga1jlQm5KaTmRTXpb9fl6cOwLIMs55eRlFpDRNy01h83RQcjsOrFPrkk0+44IILSExMBODCCy/k448/Jjc3lylTprR5/KeffsrMmTOJj48nPj6e8847r93ffeGFFwIwYcIEXn/9dQD27NnDlVdeyZdffomI0NzctZ88lFLRQ0RYfN0UqhqayEyK6/LKRp1pHEBVQxNFpTW0WIai0hqqGpq67bX8QeRwuFwuAJxOJy0tLQD88pe/5NRTT+WLL77grbfe0v0USvVyDoeQlezqllJ4DRoHkJkUx4TcNGIcwoTctC6Z6p188sn89a9/xe1209DQwBtvvMHJJ5/c7uOnT58eeLOvr6/n7bffPqjX27NnD4MHDwZgwYIFhzN0pVQfp8tTB9AdU738/HyuuuoqJk2aBMC1115LWlpau4+fOHEi559/PmPHjmXgwIGMGTOGlJSUTr/ebbfdxpVXXsk999zDueeee9jjV0r1XdJVyd1oVFBQYFonjTds2MCoUaMiNKJDV19fT1JSEm63m1NOOYX58+eTn58f6WGF6Kl/t0qpUCJSZIwpCHefzjR6iDlz5rB+/XoaGxu58soroy5gKKX6Bg0aPcSLL74Y6SEopZQmwpVSSnWeBg2llFKdpkFDKaVUp2nQUEop1WkaNHq44Pbmb775Jvfff3+7j62treWJJ54I3N6+fTsXXXRRt49RKdV7aNCIUl6v96Cfc/7553PHHXe0e3/roHH00UcHOuQqpVRnaNCIgJKSEkaOHMnll1/OqFGjuOiii3C73eTl5XH77beTn5/PK6+8wj//+U+mTp1Kfn4+F198MfX19QD83//9HyNHjiQ/Pz/QlBDsFiFz584FYNeuXVxwwQWceOKJnHjiiXz22WfccccdfPXVV4wbN45bb72VkpISRo8eDdhnp1999dWMGTOG8ePH89FHHwV+54UXXshZZ53F8OHDue22247w35ZS0aerO1/3JBo0OqMbztvdtGkTN910Exs2bKB///6BGUBGRgbFxcV8+9vf5p577uH999+nuLiYgoICHnzwQRobG7nuuut46623KCoqYufOnWF//7x58/iv//ov1qxZQ3FxMSeccAL3338/w4YNY/Xq1fzhD38Iefzjjz+OiPD555+zePFirrzyykBjw9WrV/PSSy/x+eef89JLL1FWVtZlfw9K9TT+ztdT7/uAy+Yvw7JMnwoiEQsaIpItIh+JyHoRWSciP/BdTxeR90TkS9/3NN91EZFH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\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"IoL81uFxVXDc\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"bc758fb5-2ce1-4222-99d4-e6728f3f69b0\"\n      },\n      \"source\": [\n        \"ridge = Ridge(alpha = .1) # RidgeRegression\\n\",\n        \"ridge.fit([[0, 0], [0, 0], [1, 1]],  [0, .1, 1])\\n\",\n        \"learner.fit([[0, 0], [0, 0], [1, 1]],  [0, .1, 1])\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"LinearRegression(copy_X=True, fit_intercept=True, n_jobs=None, normalize=False)\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 12\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"W1x7hWJTuR7p\",\n        \"outputId\": \"74cc85b2-022a-4153-c726-19b586f2a385\"\n      },\n      \"source\": [\n        \"ridge.coef_\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([0.44186047, 0.44186047])\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 13\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"iL5T7fNruVvI\",\n        \"outputId\": \"b4f87643-e7fa-41b8-ec9c-5a158f6541c2\"\n      },\n      \"source\": [\n        \"learner.coef_\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([0.475, 0.475])\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 14\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 265\n        },\n        \"id\": \"4wK-5Q1XuagG\",\n        \"outputId\": \"b23d1da7-1475-4de9-de4a-38d4d78819b1\"\n      },\n      \"source\": [\n        \"# effect caused by outliers\\n\",\n        \"outliers = Y[950:] - 600\\n\",\n        \"Y_out = np.append(Y[:950],outliers)\\n\",\n        \"plt.scatter(X,Y_out,s=5)\\n\",\n        \"plt.show()\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"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\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"ejmJDxw5u0je\",\n        \"outputId\": \"b88fcb92-8e94-4125-9dbc-79feb26416d9\"\n      },\n      \"source\": [\n        \"learner.fit(X,Y_out)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"LinearRegression(copy_X=True, fit_intercept=True, n_jobs=None, normalize=False)\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 16\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"872vVREgu6fJ\"\n      },\n      \"source\": [\n        \"pred_out = learner.predict(X)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 281\n        },\n        \"id\": \"W3O2acyou-A3\",\n        \"outputId\": \"13f6a02f-3d3c-4657-f36a-841b25d0117a\"\n      },\n      \"source\": [\n        \"plt.scatter(X,Y_out,s=5,label = \\\"actual\\\")\\n\",\n        \"plt.scatter(X,pred_out,s=5,label = \\\"prediction with outliers\\\")\\n\",\n        \"plt.scatter(X,pred,s=5,c=\\\"k\\\",label = \\\"prediction without outlier\\\") # c-colors\\n\",\n        \"plt.legend()\\n\",\n        \"plt.title(\\\"Linear Regression\\\")\\n\",\n        \"plt.show()\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"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\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"y8m87qq-vdyn\",\n        \"outputId\": \"f05643a1-2f88-4242-afa0-32d91f742594\"\n      },\n      \"source\": [\n        \"learner.coef_\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([45.30691889])\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 19\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"4dNDKkPPvilL\",\n        \"outputId\": \"2945c83e-9838-4578-de39-1ed2a2cf6696\"\n      },\n      \"source\": [\n        \"ridge = Ridge(alpha=1000)\\n\",\n        \"ridge.fit(X,Y_out)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"Ridge(alpha=1000, copy_X=True, fit_intercept=True, max_iter=None,\\n\",\n              \"      normalize=False, random_state=None, solver='auto', tol=0.001)\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 20\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"Afa0IRzOvyYA\"\n      },\n      \"source\": [\n        \"pred_ridge = ridge.predict(X)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 281\n        },\n        \"id\": \"QwMU0KO2v3TD\",\n        \"outputId\": \"be469a27-4fc3-4067-e495-6f745e4c0a00\"\n      },\n      \"source\": [\n        \"plt.scatter(X,Y_out,label = \\\"actual\\\")\\n\",\n        \"plt.scatter(X,pred_out,s=5,c = \\\"r\\\",label = \\\"Linear Regression with outliers\\\")\\n\",\n        \"plt.scatter(X,pred_ridge,s=5,c=\\\"k\\\",label = \\\"RidgeRegression with outliers\\\")\\n\",\n        \"plt.legend()\\n\",\n        \"plt.title(\\\"Linear Regression\\\")\\n\",\n        \"plt.show()\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"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V2XhwoXMmjXrjBzrqquuIi8vj7y8PP7whz8E2pcuXco111xT58dbu3YtixYtCryeO3cu99xzD3B2/h2EYsHfmDPkzjvv5NZbb623/atqoCxEsHnz5rFu3Truuusupk2bVifHKisrO/VKp3DdddcxffqZeZjfokWLiIuLqxT860vF4B+spv8OPB7PqVc6DRb8jQHweuHAAajHmx5nzpzJU089BTgj8gcffJChQ4fSo0cPli9fDjhBddq0aQwZMoTU1FReeOEFIHw55127dtGzZ09uvfVWUlJS2Lt3b+iDAxdffDHZ2U4R3ePHj/O9732PoUOHMmDAgMD+CgsLueGGG0hOTmbSpEkMGzYM/w2WLVu25P777w/cefz6668zdOhQ+vfvz49+9CPKysooKytj6tSppKSk0LdvX55++mnAKXKXnJxMamoqN910E1B+NLxr1y7GjBlDamoqY8eOZc+ePQBMnTqV++67j7S0NC644IJypa79Zs+ezbPPPgvAz372M8aMGQPARx99xJQpUwCnZEZubi7Tp0/n66+/pn///oETYUFBAddffz29evViypQphLrxde3atQwfPpzU1FQmTZrEkSNHAr9H/+eTm5tL165dKSkp4dFHH2X+/Pn079+f+fPnl9tX8L+Dr7/+miuuuIJBgwaRnp4eqP00depU7rzzToYNG8YvfvELPv74Y/r370///v0ZMGBAuXIgp01VG/zXoEGD1Jjq2rx5c802KCtTHTlSNTLS+V5WVus+tGjRolLbY489prNnz1ZV1VGjRunPf/5zVVV9//33dezYsaqq+sILL+ivf/1rVVU9ceKEDho0SHfs2KGlpaWan5+vqqo5OTnavXt39Xq9unPnThURXbFiRch+jBo1Sj///HNVVX366ad1xowZqqo6Y8YMfe2111RV9ciRI3rRRRdpQUGBzp49W++44w5VVd2wYYO6XK7A9oDOnz9fVZ3P+JprrtGSkhJVVf3xj3+sf/nLX3TVqlV62WWXBY5/5MgRVVXt2LGjnjhxolzbK6+8onfffbeqql5zzTU6d+5cVVV96aWXdMKECaqqetttt+n111+vZWVlumnTJu3evXul97hixQq9/vrrVVX1kksu0SFDhmhJSYnOnDlTn3/+eVVVPf/88zUnJ0d37typffr0CWybkZGhrVu31r1792pZWZkOHz5cly9f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\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"1Mxt6el4wUV3\",\n        \"outputId\": \"3269bef1-31a4-4371-c057-975eb8ed5b8e\"\n      },\n      \"source\": [\n        \"ridge.coef_\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([22.32499265])\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 23\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"FjT4b5UcwyS1\"\n      },\n      \"source\": [\n        \" **Effects of alpha using Ridge on \\n\",\n        \"Coeficients**\\n\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"rYz97e87we8X\"\n      },\n      \"source\": [\n        \"# generate data\\n\",\n        \"X,y,w = make_regression(n_samples=10,n_features=10,coef = True,random_state=1,bias = 3.5)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"kkcFRtnG0o_m\",\n        \"outputId\": \"9bb4fa3f-adf3-40ac-9276-8add8ab246fa\"\n      },\n      \"source\": [\n        \"w # weights\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([80.71051956, 10.74941291, 38.78606441, 13.64552257,  5.99176895,\\n\",\n              \"       86.35418546, 12.13434557,  4.45518785, 74.71216427, 55.6240234 ])\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 25\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"v_BmfvNR0peK\",\n        \"outputId\": \"3ca7b061-7cb2-42db-9a3c-5d7ec2ebd238\"\n      },\n      \"source\": [\n        \"# generate 20 alphas\\n\",\n        \"alphas = np.logspace(-6,6,200)\\n\",\n        \"alphas[:20]\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([1.00000000e-06, 1.14895100e-06, 1.32008840e-06, 1.51671689e-06,\\n\",\n              \"       1.74263339e-06, 2.00220037e-06, 2.30043012e-06, 2.64308149e-06,\\n\",\n              \"       3.03677112e-06, 3.48910121e-06, 4.00880633e-06, 4.60592204e-06,\\n\",\n              \"       5.29197874e-06, 6.08022426e-06, 6.98587975e-06, 8.02643352e-06,\\n\",\n              \"       9.22197882e-06, 1.05956018e-05, 1.21738273e-05, 1.39871310e-05])\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 26\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"1VeroXNp08r2\"\n      },\n      \"source\": [\n        \"coefs = []\\n\",\n        \"for a in alphas:\\n\",\n        \"  ridge = Ridge(alpha = a,fit_intercept=False)\\n\",\n        \"  ridge.fit(X,y)\\n\",\n        \"  coefs.append(ridge.coef_)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"wvQ26YDLOJKd\"\n      },\n      \"source\": [\n        \"Plot alphas and coefs\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"Wkfq9Ijw1nfi\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 299\n        },\n        \"outputId\": \"8ceee264-9831-4e0b-933f-431e05d31cc8\"\n      },\n      \"source\": [\n        \"ax = plt.gca()\\n\",\n        \"ax.plot(alphas,coefs)\\n\",\n        \"ax.set_xscale(\\\"log\\\") # e.g original data is 1.0e6 then it is transformed into 10^6 at axis\\n\",\n        \"plt.xlabel(\\\"alpha\\\")\\n\",\n        \"plt.ylabel(\\\"weights\\\")\\n\",\n        \"plt.title(\\\"Ridge coefficients as a function of the regularization\\\")\\n\",\n        \"plt.show()\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"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\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"2W5XA4qmOljH\"\n      },\n      \"source\": [\n        \"Conlusion\\n\",\n        \"\\n\",\n        \"1.   When alpha is quite small,which means regularization is not too strong,weights are big.In other words,they're almost the same as they're randomly sampled.\\n\",\n        \"2.   However,when it comes to big alphas,weights are more likely to head towards zero.\\n\",\n        \"\\n\"\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"ClRptvzkQES5\"\n      },\n      \"source\": [\n        \"Lasso\\n\",\n        \"\\n\",\n        \"\\n\",\n        \"\\n\",\n        \"* Linear model that predict's sparse coefs\\n\",\n        \"* Reduces the regressors predicting target\\n\",\n        \"\\n\",\n        \"\\n\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"zUtnPSXaOgtg\",\n        \"outputId\": \"fa31431a-1377-4274-f450-8c57a97ac863\"\n      },\n      \"source\": [\n        \"lasso = Lasso(alpha=.1)\\n\",\n        \"lasso.fit([[0, 0], [0, 0], [1, 1]],  [0, .1, 1])\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"Lasso(alpha=0.1, copy_X=True, fit_intercept=True, max_iter=1000,\\n\",\n              \"      normalize=False, positive=False, precompute=False, random_state=None,\\n\",\n              \"      selection='cyclic', tol=0.0001, warm_start=False)\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 29\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"PyDCIeBMQfTp\",\n        \"outputId\": \"5a48805a-57d4-414f-8b38-10b15db9da5b\"\n      },\n      \"source\": [\n        \"lasso.coef_\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([0.5, 0. ])\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 30\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"zaEoLBrzVqza\"\n      },\n      \"source\": [\n        \"Elastic Net\\n\",\n        \"\\n\",\n        \"\\n\",\n        \"*   Elastic Net can circumvent the problem that features aren't independent.While Lasso choose 1,ignoring the relationship between them,Elastic Net takes both.\\n\",\n        \"\\n\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"TANhtCA6QijU\"\n      },\n      \"source\": [\n        \"en = ElasticNet(alpha = .1)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"NzYPsBgpW1QM\",\n        \"outputId\": \"80911129-96f0-4f66-f9dc-4dca2a5225f8\"\n      },\n      \"source\": [\n        \"en.fit([[0, 0], [0, 0], [1, 1]],  [0, .1, 1])\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"ElasticNet(alpha=0.1, copy_X=True, fit_intercept=True, l1_ratio=0.5,\\n\",\n              \"           max_iter=1000, normalize=False, positive=False, precompute=False,\\n\",\n              \"           random_state=None, selection='cyclic', tol=0.0001, warm_start=False)\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 32\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"fPhRUtBJW7uI\",\n        \"outputId\": \"6a8997cb-c0e4-48ae-d6c4-ff1b5929f4a1\"\n      },\n      \"source\": [\n        \"en.coef_\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([0.32589556, 0.32579954])\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 33\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"Z0_Y9aSGX8Az\"\n      },\n      \"source\": [\n        \"Logistic Regression\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"lrYIKP5nXBK8\"\n      },\n      \"source\": [\n        \"# centers-number of piles of data(i.e. categories)\\n\",\n        \"# cluster_std- every data's variance \\n\",\n        \"# e.g cluter_std = [1.0,3.0](We want second data to have bigger variance)\\n\",\n        \"X,y = make_blobs(n_features=2, n_samples=1000, cluster_std=3,centers=2)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 265\n        },\n        \"id\": \"KJFer8eDYGn_\",\n        \"outputId\": \"52939f6a-2a2e-4780-a18a-a6ebd7ba07c0\"\n      },\n      \"source\": [\n        \"plt.scatter(X[:,0],X[:,1],c=y,s=10)\\n\",\n        \"plt.show()\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"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\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"r4b8gGV0YOxk\",\n        \"outputId\": \"36636253-1cc8-4392-8fa1-753b595cfd5e\"\n      },\n      \"source\": [\n        \"Logistic_lr = LogisticRegression()\\n\",\n        \"Logistic_lr.fit(X,y)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"LogisticRegression(C=1.0, class_weight=None, dual=False, fit_intercept=True,\\n\",\n              \"                   intercept_scaling=1, l1_ratio=None, max_iter=100,\\n\",\n              \"                   multi_class='auto', n_jobs=None, penalty='l2',\\n\",\n              \"                   random_state=None, solver='lbfgs', tol=0.0001, verbose=0,\\n\",\n              \"                   warm_start=False)\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 36\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"FTY_wUTkaD_H\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"37d9e937-8943-4c39-da9f-6ea3545634a4\"\n      },\n      \"source\": [\n        \"h = .02\\n\",\n        \"x_min,x_max = X[:,0].min() - .5,X[:,0].max() + .5\\n\",\n        \"y_min,y_max = X[:,1].min() - .5,X[:,1].max() + .5\\n\",\n        \"# e.g. arange(1,8,1) -->[1,2,3,4,5,6,7]\\n\",\n        \"# meshgrid e.g. meshgrid([1],[0]) --> array([[1]]),array([[0]]) \\n\",\n        \"xx,yy = np.meshgrid(np.arange(x_min,x_max,h),np.arange(y_min,y_max,h))\\n\",\n        \"print(xx.shape)\\n\",\n        \"print(yy.shape)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"(1337, 1263)\\n\",\n            \"(1337, 1263)\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"MjB78IA3c9wn\",\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"outputId\": \"b760974b-43bc-4f5b-f5ff-d39116d40712\"\n      },\n      \"source\": [\n        \"# ravel() the result of it is turn every vector into 1-dim\\n\",\n        \"# e.g. [[1,2,3],[4,5,6]]-->[1,2,3,4,5,6]\\n\",\n        \"# np.c_[c,d] concatenate c & d by rows\\n\",\n        \"temp = np.c_[xx.ravel(),yy.ravel()]\\n\",\n        \"Z = Logistic_lr.predict(temp)\\n\",\n        \"Z.shape\\n\",\n        \"temp.shape\\n\",\n        \"# xx.ravel() --> 1040 * 1597 = 1660880\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"(1688631, 2)\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 38\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 265\n        },\n        \"id\": \"bzCD7tEadP9J\",\n        \"outputId\": \"5cf4dcc0-a743-4e5e-bd50-d097cc1d2ab8\"\n      },\n      \"source\": [\n        \"Z = Z.reshape(xx.shape)\\n\",\n        \"# category graphs three kinds-xx,yy,Z(line)\\n\",\n        \"# cmap-automatically choose colors\\n\",\n        \"plt.pcolormesh(xx,yy,Z,cmap = plt.cm.Paired)\\n\",\n        \"plt.scatter(X[:,0],X[:,1],c=y,s=10)\\n\",\n        \"plt.show()\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"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\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"JMJjZuAtV1WX\"\n      },\n      \"source\": [\n        \"\\n\",\n        \"**Online Learning Models** \\n\",\n        \"* Stochastic Gradient Descent & Passive Aggrasive Algorithms\\n\",\n        \"* Simple & Efficient to fit linear models\\n\",\n        \"Useful where number of samples is very large ( Scale of 10^5 )\\n\",\n        \"* Supports partial_fit for out-of-core learning\\n\",\n        \"* Both the algorithms support regression & classification\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"y0sPgGdQdlWn\"\n      },\n      \"source\": [\n        \"from sklearn.datasets import make_classification,make_regression\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"0U3jBcsRWZ76\"\n      },\n      \"source\": [\n        \"X,y = make_classification(n_classes=2,n_features=10,n_samples=10000)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"9iRBLwgWWhSu\"\n      },\n      \"source\": [\n        \"from sklearn.model_selection import train_test_split\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"1GUz4CodWlNF\"\n      },\n      \"source\": [\n        \"trainX,testX,trainY,testY = train_test_split(X,y)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"TicYdDyrWtZj\"\n      },\n      \"source\": [\n        \"from sklearn.linear_model import SGDClassifier\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"CFQSpW1ZWygR\"\n      },\n      \"source\": [\n        \"sgd = SGDClassifier(n_iter_no_change=10)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"NYPg8n7wW7uI\",\n        \"outputId\": \"0e3e649f-3b8a-4485-b415-f2bccb7625b8\"\n      },\n      \"source\": [\n        \"sgd.partial_fit(trainX[:1500],trainY[:1500],classes = [0,1])\\n\",\n        \"sgd.score(testX,testY)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"0.894\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 46\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"oGgkcC-UXzUJ\",\n        \"outputId\": \"75aa4002-cb84-4962-9342-2cb572222234\"\n      },\n      \"source\": [\n        \"sgd.partial_fit(trainX[1500:5000],trainY[1500:5000])\\n\",\n        \"sgd.score(testX,testY)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"0.8104\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 47\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"lCZvw29PYgAa\"\n      },\n      \"source\": [\n        \"\\n\",\n        \"**Robust Regression**\\n\",\n        \"* Robust regression is interested in fitting a regression model in the presence of corrupt data: either outliers, or error in the model.\\n\",\n        \"* Three techniques supported by scikit - RANSAC, Theil Sen and HuberRegressor\\n\"\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"kYoi6ZzdYrPU\"\n      },\n      \"source\": [\n        \"**Comparisions RANSAC, Theil Sen HuberRegressor**\\n\",\n        \"\\n\",\n        \"* HuberRegressor should be faster than RANSAC\\n\",\n        \"* Theil Sen and RANSAC are unlikely to be as robust as HuberRegressor for the default parameters.\\n\",\n        \"* RANSAC will deal better with large outliers in the y direction\\n\",\n        \"* RANSAC is faster than Theil Sen and scales much better with the number of samples\\n\",\n        \"* RANSAC is a good default option\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"9eIPCAJ1YJj1\"\n      },\n      \"source\": [\n        \"n_samples = 1000\\n\",\n        \"n_outliers = 50\\n\",\n        \"X,y,coef = make_regression(n_samples=n_samples,n_features=1,n_informative=1,noise = 10,coef = True,random_state=0)\\n\",\n        \"\\n\",\n        \"# Add outlier data\\n\",\n        \"np.random.seed(0)\\n\",\n        \"X[:n_outliers] = 3 + 0.5 * np.random.normal(size = (n_outliers,1))\\n\",\n        \"y[:n_outliers] = -3 + 10 * np.random.normal(size = n_outliers)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"ZZFdqpchZnO8\"\n      },\n      \"source\": [\n        \"from sklearn.linear_model import LinearRegression,RANSACRegressor\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"CHZrZV_Bjm9c\",\n        \"outputId\": \"9013776a-16ae-4d7f-8b7f-bb9925b1c6b3\"\n      },\n      \"source\": [\n        \"lr = LinearRegression()\\n\",\n        \"lr.fit(X,y)\\n\",\n        \"ransac = RANSACRegressor()\\n\",\n        \"ransac.fit(X,y)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"RANSACRegressor(base_estimator=None, is_data_valid=None, is_model_valid=None,\\n\",\n              \"                loss='absolute_loss', max_skips=inf, max_trials=100,\\n\",\n              \"                min_samples=None, random_state=None, residual_threshold=None,\\n\",\n              \"                stop_n_inliers=inf, stop_probability=0.99, stop_score=inf)\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 50\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 283\n        },\n        \"id\": \"9b190pmXpPti\",\n        \"outputId\": \"e533703a-6691-4f11-fa4d-9b8d6281252c\"\n      },\n      \"source\": [\n        \"plt.scatter(X,y,s=5)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"<matplotlib.collections.PathCollection at 0x7f341a390790>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 51\n        },\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"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\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"rsHIyjcHpTjs\"\n      },\n      \"source\": [\n        \"ransac_pred = ransac.predict(X)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"j7XUeXQ4paBr\"\n      },\n      \"source\": [\n        \"lr_pred = lr.predict(X)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 265\n        },\n        \"id\": \"HZ_jdupZpcvp\",\n        \"outputId\": \"63f12b0e-1792-4c71-c93a-0a6a5090d0d1\"\n      },\n      \"source\": [\n        \"plt.scatter(X,y,s=5,label = \\\"data\\\")\\n\",\n        \"plt.scatter(X,ransac_pred,s=5,label = \\\"ransac\\\")\\n\",\n        \"plt.scatter(X,lr_pred,s=5,label = \\\"Linear regression\\\")\\n\",\n        \"plt.legend()\\n\",\n        \"plt.show()\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"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\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"aQicLP1dp4Pb\"\n      },\n      \"source\": [\n        \"**Polynomial Regression**\\n\",\n        \"\\n\",\n        \"* Sometimes relationship between variables & target is of higher polynomial degree\\n\",\n        \"* Transformer can be used to convert data to higher degree\\n\",\n        \"* Linear models can predict coef of these higher degree polynomials\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"-cy8L7g9pvW2\"\n      },\n      \"source\": [\n        \"from sklearn.datasets import make_circles\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"RwepgjFIqDde\"\n      },\n      \"source\": [\n        \"X,y = make_circles(n_samples=1000,noise = .04)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"Wd0V5SGWQs6N\"\n      },\n      \"source\": [\n        \"**Polynomial Basis intro**\\n\",\n        \"\\n\",\n        \"\\n\",\n        \"Every row represents a dependent data point.\\n\",\n        \"\\n\",\n        \"If feature-dimension is 2\\n\",\n        \"- order = 1 -----> $[1,X_1,X_2]$\\n\",\n        \"- order = 2 -----> $[1,X_1,X_2,X_1^2,X_1X_2,X_2^2]$\\n\",\n        \"- order = 3 -----> $[1,X_1,X_2,X_1 ^2,X_1X_2,X_2^2,X_1^3,X_1^2X_2,X_1X_2^2,X_2^3]$\\n\",\n        \"\\n\",\n        \"If feature-dimension is 3\\n\",\n        \"- order = 1 -----> $[1,X_1,X_2,X_3]$\\n\",\n        \"- order = 2 -----> $[1,X_1,X_2,X_3,X_1^2,X_1X_2,X_1X_3,X_2^2,X_2X_3,X_3^2]$\\n\",\n        \"- order = 3 -----> \\n\",\n        \"$[1,X_1,X_2,X_3,X_1^2,X_1X_2,X_1X_3,X_2^2,X_2X_3,X_3^2,X_1^3,X_1^2X_2,X_1^2X_3,X_1X_2^2,X_1X_2X_3,X_1X_3^2,X_2^3,X_2^2X_3,X_2X_3^2,X_3^3]$\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"INfpVoSCV7sL\",\n        \"outputId\": \"c226debc-991e-4b92-d401-1ed2999c4ab4\"\n      },\n      \"source\": [\n        \"from sklearn.preprocessing import PolynomialFeatures\\n\",\n        \"q = np.arange(6).reshape(3,2)\\n\",\n        \"print(q)\\n\",\n        \"poly_1 = PolynomialFeatures(degree=1)\\n\",\n        \"poly_2 = PolynomialFeatures(degree=2)\\n\",\n        \"poly_3 = PolynomialFeatures(degree=3)\\n\",\n        \"res_1 = poly_1.fit_transform(q)\\n\",\n        \"res_2 = poly_2.fit_transform(q)\\n\",\n        \"res_3 = poly_3.fit_transform(q)\\n\",\n        \"print(res_1)\\n\",\n        \"print(res_2)\\n\",\n        \"print(res_3)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"[[0 1]\\n\",\n            \" [2 3]\\n\",\n            \" [4 5]]\\n\",\n            \"[[1. 0. 1.]\\n\",\n            \" [1. 2. 3.]\\n\",\n            \" [1. 4. 5.]]\\n\",\n            \"[[ 1.  0.  1.  0.  0.  1.]\\n\",\n            \" [ 1.  2.  3.  4.  6.  9.]\\n\",\n            \" [ 1.  4.  5. 16. 20. 25.]]\\n\",\n            \"[[  1.   0.   1.   0.   0.   1.   0.   0.   0.   1.]\\n\",\n            \" [  1.   2.   3.   4.   6.   9.   8.  12.  18.  27.]\\n\",\n            \" [  1.   4.   5.  16.  20.  25.  64.  80. 100. 125.]]\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 265\n        },\n        \"id\": \"NAHM7R78qIda\",\n        \"outputId\": \"460d38b0-135b-4558-8323-0d6d23581951\"\n      },\n      \"source\": [\n        \"plt.scatter(X[:,0],X[:,1],c=y,s=10)\\n\",\n        \"plt.show()\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAXwAAAD4CAYAAADvsV2wAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nOydZ5QURReGn+qetDmw5IwkQUCyIAiIiFkwgmJCBTOKCRFBRUSiYiIoKAqICphFUZCgZAFBMkiGZXOcPF3fjxpmdtgluqB89nOOR2a6urp6duZ21a173yuklJiYmJiY/P+j/dMDMDExMTE5O5gG38TExOQ/gmnwTUxMTP4jmAbfxMTE5D+CafBNTExM/iNY/ukBHIuUlBRZo0aNf3oYJiYmJucUv//+e4aUsmxJx/61Br9GjRqsXr36nx6GiYmJyTmFEGLPsY6ZLh0TExOT/wimwTcxMTH5j2AafBMTE5P/CKbBNzExMfmPYBp8ExMTk/8IpsE3MTEx+Y9gGnwTkxJI35/Jl2/NZdk3qyltRdmCnEKGdB/JnbUf4ZPXvijVvk1Mjse/Ng7fxOSfIjstl75NnsTj8qLpGj0GdOf2528EIOAPsH/7IZIrJBKXFBtx3v5tBxnffyqGYdB31J3UaFgVKSXzpi5k3cKNtO/emrbXt2T8Ex+ycu5a/F4/M4bNpl6L82h2WeN/4lZN/mOYBt/kX4mUkgPbD2FzWClXrcSkwTPGxt+2EPAbeN0+AH7+eBG3P38jHpeHx9o+z8EdqQAM+24gjS9pEBrvkx2HkH04F5A8uWonnx16j3lTF/Lu4x/gLvSwZNYyXpzzDAd3puL3+oM3Cml7M87q/Zn8dzFdOib/Skbf+y4PNH2ae+r347PRX53Va1dvUIVAIACA1W6lXsvaACz/dg0Hdx7GXejBXejh/QHTQuf4PD5y0nKRUiIlOPOcFOY5WTt/A+5CDwAel5dNy7Zy6zPdsEfbiI6PwhHr4KJrm5/V+zP572IafJN/HRkHMvnlk9/wuLx43T4+GDSzWBuf18eiz5ex9KtVIeNcWlStV5khs5/m/IvqUOOCqrToeiFSSqLjoyDozxeaIDYxJnSOzWGjWZfGOGLsOGLsnH9RXeKSYml7fUvs0TYA7A4bzTo34qJrmjNhzSgGTu/HlM1vkFg24bTG6XZ6MAzj79+wyX8G06Vj8q/DFmWLeK1bIuclUkqeuexldqzbDUDLrk0Y/PlTJ+xXSsmK79aQuiuNtt1aUq5qyjHbJldI5K/1e/A4vYx7cBLOPCfXPtiVy+7owLypC6lQoyyPvXt/xDlDvx7AktkrkIZBuxsvQghBx1svxhHjYNPyrbS4/EIuaHc+AFXqVqJK3Uon83EUI+AP8OINo1g5dy1xSTGMWvAiNS+odlp9mfy3EKURgSCEmAJcA6RJKS8o4bgAxgFXAU7gbinlmuP12aJFC2mKp/13GdJ9JEu/WgWAzWFl0Kf9aXNtCwDmjPuO8U98GGorhGCu9xN0XT9unzNHfMH0V2YT8BtY7RZueeo6Lmh3Pk06NgTA7/Mza+y37N2yn9jEWL6dMA+fR/nxm13WiBHzBpfKvQUCgRLHWpBTyObl26hcpyKVzqtwzPOXfrWK1+54E1eBG4DGHRow5peXSmVsJuc+QojfpZQtSjpWWjP8D4G3gY+OcfxKoE7wv9bA+OD/Tf6PyD6cw7iH3iPrUA53vXQLzbs0OeU+fF4fmQezI1wVAb/B3s0HaHNtC/ZvP8TkgTMizkmulISu62xavo11C/6kYdt6ISO+Y90uJj71ERarzoHtqSF/us/j4+OXZ2GxWbim7+X89NFCXPkuAkYAwy8RusBiVT8Pe7Sdpp0bs+33nXz04mfEJcfSZ+QdJJVPPKV783p8vHDtcNbO/5NKtcszesGLpFQuA0BOei59Gj+Fx+Uh4AsweNZTtLqyaYn9SCmRR702MTkZSsXgSykXCyFqHKfJ9cBHUn0zlwshEoUQFaWUh0rj+ib/Dl66cTRbVu4g4A8wpPtIPtz6ZsignQxp+zJ4tPVzFOY5sVgtWGw6ukVH0zTaXq8mLNmpOREuHqvdwuj5Q9iwZDPPXfkKPo8fq93CC5/2p1mXxjx96UsU5BQihMDqsGK1W0Oz9oA/QMAfYPbr3xQbiwxIUqonc0H7+tRvWZtOPS/m9hoP4cp3o1t09m7ezzsrR4Ta52Xl8+evW6hcpyLVz69S4v3Nn7aYjUu3IqXk0F9pTB44g2enPgrA0q9WU5hbGIoMeu+Zj5k6eCaaLrh7aM+Ih+dF1zTngrb1WPvLn0THOnh4XO+T/ozPNLkZeWQdyqba+VXQLcdfcZmcfc6WD78ysK/I6/3B90yD/3/Evq0HCfjVBqqu66TtzTglgz9r7DfkpOdhBAw8eNEtOvZoO2MWvEjVepUBqNeqNhVrlefQX4cx/AZ9Rt1BlbqV+PGDX/A4vQB4nF6WzF5O3Rbn4XGpGb2UEq/LS6P25/Pnr5uP7L2i6RpGoOSNz0N/HSYmMZp7X72djP1ZHJlWB/wB9mzaH2qXnZZLn0b98bp9BAIBBs54nLbXtYzoa9eGPRzcmRq6rjRk6MEDsGDGryFjLzTBnk37Qm0HXvUq4357hfqt6qjP1qIz/IdBFOYW4oh1oOs6fyzcyLpf/qThxfVpcfmpr6xKg99/+oMh3UcihKBynYq8uXQYNoftxCeanDX+VVE6Qog+QojVQojV6enp//RwTE6Rq+7rHIpSSSgbz3kX1jil8x0xDjQ9/JUM+AP4PH4WzVrOV+/+QH5OATa7lbeWD+elL57h7ZWvcd1DVwBQv3Ud7NF2QLlgGrarT2K5BOq1rI0j1oEjxk7bbi1pe31LLDZr6Bo1LqhKtQYlz8gBdq3fw/jHP6BKvUoklkvAFmXDYrNQuXZF8rLyAVj+zWpchR6c+S48Ti+fj/o6oo+JT03l0TYD+eLN77HaLdgcVuLKxHLXS7cCyp2z8bfNofbSiHTRGIbBhiVbio0tJiEGXddZu2ADz1/zKtOGzuLFG0ay9OtVxdou+nwZI+95m/nTlxzzXv8u7w+YjsfpxV3o4eCOVFbOXXvGrmVyepytGf4BoGqR11WC70UgpZwETAK1aXt2hmZSWvR+9TYuvPQCctLyaHnlhfyxcBMWq07Tzo1Q+/bKR/9G30n8/tN6ml3WiP7vPRDyld/y1HWs/Xk9W1buCPXpLnQz7eXPARjf/0Ombn2L8tXL0vTSRhHXvrhbK/qNv5/fvlxJ8y6NueKeSxFCMOKnwSz9ciW61ULb61vgLnAzb+pC9m05SGL5eIZ+PYAylZL45NU5weidVsybupAV363B7/UT8BvkZeZjtVl5Z9Vr3H9BfzIPZfPX+j3cWul+pm57i/I1yhG8Paw2C5XrVgyNK+APMGfc96FVhN8X4Irel5JQNp7Ecioc0x5tR7Po4FOro6hYBz6vP5ScpVs0GrWvf8zPffWP6yJWN799tTJihbH061WMuucdPE4PCz9dyt4tB+gxoBupu9JwRNupWKv8Kf6lSya+TCyaJjAMiZQyImzV5N9BqUTpAAR9+N8eI0rnauARVJROa+BNKWWr4/VnRumce+zbeoD92w7RoG1dht82jk3LtiGBclXLoOs6DdrWQ9MFP364EK/Li8VmQdME9igbT33wcMhIZaVm83qfiRzadZg9G/dHXOPyuzvy9JSH/9Y4pZTkZxcQmxiDphVf5DrzXTzc8lkyD2Yjgdd+GETDtvXISs2mR5W+ETPw2wfdyN0v9+DTUV8x9/351GpcnScnP0hMfHToWt2S7sKZ5wJACBC6hqYJqtarzKQ/xgCw4vs1jHtgEhabhWemPkJcUgzThs7CVejm5v7XhTahS+KXT3/j1Z5vhF6Xq5bCY+/eT+urmgEw4amPmD02vE+hW3VsdiuB4EPojsE30ePZ7qf5aYZJ3Z3GC9e+RuqedK7ucxl9R90ZetCbnD2OF6VTWmGZnwAdgRTgMDAEsAJIKScEwzLfBq5AhWXeI6U8rjU3Df65xfJvf+eVHmPRdR2LXceZ5w7LBxRB6AIZKP6dszmsfJ3/cUS4os/r45qYXhE+9sq1K/DhtrfOzE0Uwef1sW/LQVKqJBOfHBd6r1viXSFfOwIefqM33R69stj5hmGw7peNAFisOqPueQefx0f24dzQ/Wia4Ov8j7FH2f/WWCc9+zGzxnwT8SCyOaz0m9CHy+/syJqf1zO424jQKuBorHYr37tmlHhs1thvmDniS+KSYnhy8kM0bFsvwojnZeaz84/dVG9QheQKSX/rPkxKhzMeliml7HmC4xL4e9Myk381n478MmRQbH7bMWd2R4y9PcqGxxU2QD6fn+/fn09MXBQdbmmLbtGx2qz0GnwTHw35LNSu4nml4344EVablVqNqxd7b+yil3n+muEUZBfS7LJGXN33shLPH9bzjZAPu2XXJny88x0Mw+Duuo+RtjcdhKBy7Qonbey/eOt7pg2dRXxyLO1vbEONhlXo2ONiln/zO1+/80Mxv7/X7WP+tMVcfmdHml3WmJe/GsDrfSZweE96sbbR8VEYhkFWag6JZeNDLrYda3fxwaBP8Lp95Kbn8UT7F4iOi2LUgiHUbX4eh/46zEMtnkVKiREweH3JUM5rUuOk7sfkn8HMtDUpFSrXqcjWlTvwef1omqD38Nv56eNF+L1+Dmw/hN/nxwgae1uUjftH3cHuP/fxw+T5GFISmxDDxCenIoRg8ezlvDj7aQBuG3gDezbuZ/GsZZSrlsKjb9/3T94m9VrWZtbhycdt4yp08+ucFaGZ/NKvVuPMdxEdF8W4315h1phvELrGzU9eG3GelJL0fRlExUVFKHHu3XKAyQOm43F5ycvI55PX5uCItrPulz8pV61seMVxFFWLhIc269yI15cM5dWeb5C6K41GHRqw+od12KNtPDHpAe67oD+Hd6cRkxDNuKXDqFizPNlpuRhHeQCc+S6G93qTt5a9yo9Tf8GZ58QIPkC+fHsuT773YKjt2gUb2LpyB826NKZu8/NO4tM1OdOYBt8kxLbfd7Jrw16adm50XNmBkihfPQW/zw8C2t3Ymu6PXUX3x64iEAiQuiuN1T/+wQ8fLCDrUA439b+G6x+6gtf7TEC36oiA2hg9wtKvViGlRAiBrusMmvkEUj5+zviDbQ4rUbEOCnOdANijbdiDchFJ5RO5f+Qdxc6RUvJKj9dZ/o1yYz4z9VE63NwGgPysgojoJSS4Cz0snr2c0Qte5NMRX+J2eiLHEGWl97DIhXdKpWTGLnq52LU/H/MNqbsO4/P48XnzmP7KbJ6a/BBNOjQgqVwC6fsyI9of2HaInlX7cs0Dl2O1W/G4vNgcVsoW+c4smbOCEXe+id/rZ9rQWYz+5cVQWKnJP8e/KizT5J9jyZwV9O8wmLcfncz9jfpzaNfhkz5314Y9fPzyLBU3LuHnjxbz+8/r6VXrIa609eTdxz/k6j6XMX71SD49MImbn7wOgIWfLcXj9OLzRPr6hRAR7p4j751ppJGPdP+I9K3/W/3ous6IeS9Qp1ktajetyYh5L5wwCWnnH7tZ+f0avG4fXrePdx4LryLqt6rNeRfWwBETdv9YrDrnNalB7QtrMnbJUGKTYiKOjfv1FaJjo05qvHu37A9t4GqawGpX80Cbw8YHW8dxcfdWWGzhuaGUEnehh41Lt3Lpbe1IrphEm+ta0OOZ60NtFgX/tgG/gdfjY/WPf5zUWEzOLOYM3wSA7ybOC/ngrXYrK75dU+JmZEkU5DiL+YXf7fcBaXszkFKyftFGFn22jM63t49oU71hVbat3knAF6l2aXNYOfTX4TMuCCYDmcjCd0EaEN0Lsu8BmQ/SQMYNQIs57tbUcanXsjbvrh5x4oZB7FG2iM/wSE4BqESr0b+8yM51u8k8kMUPH/xCUvkEer96GwC7N+wNb5ALaHhxfWo3rYUz38X7A6Zz6K9Ubn7yuhKLrPw8bRELZizB8CuDn1K5DHcOuSV0PH1fFht/24IQUL5GWXLScvE4vSG10P5FXDhFuaBdfZZ/+zsepwebw0bdFqZL59+AafBNAKjZuDobft2C1+VFt2hUrX/ySo4N2tRFaCLSYEXZCKeVgq+EiJ2Xv3yGiU9/TG5aLnmZ+fy1fi8Bf6BUY8OPh8y6DQL71ADd34P0oILIAOeH8DcM/qlStV5lbh3QjRnD5hCTEM1z0/tFHNd1XfnBm59Hm6OyeIUWXv0IIYhJUCGho3u/y/JvV+Pz+NmwZDOT/hgTEmXbuHQrr9w6luy03NADVwi48t7OJJZLYM3P63EXevj540XkZuQjDUn24VzqtqjFtlU7qVCzHI+9U3w/RUpJ6u40OvW4GCNg8MeijVxyU5uQLtCBHYd48YZRpO3N4IZ+V3HXSz1K70M0OSGlFodf2phhmWcXr9vLxKc/4vd5f2CPttOue2t6Ptc9FLFxIhbPXsawHm9gGAbtb7iIO1+8hf4dBuMu9FDjgqq8vvjl40akuJ0e5oz7jsKcQq5/+IozXuVKSi/ycCNCeglYAB3wqH/b2qMlTzyjYygtfF4fA696lfWLNpFYLoExC1+iSp2K3FHrYVJ3pwEqEmfgjMdDsfm3VLyf7MM5Ef3Yo2288s1zLPpsKT9PX4JArfbyswuQhsQebefhcfdw5b2dSxyHYRi8fPMYVgWjk4ruQxzhkdYD2LpqZ+h1hZrlaHllUx4Yfacpw1BKnPE4/DOBafDPHltWbmf773+RVCGR4bePC0V9lK1ahg+3vhn6IW5dvZO57/+MxWohISWe89vUjdBt8fv8BPyBkGH3eX3kZxWQVD7xH91wldIPaAgRuWVlZNwA/m2ABL0qRPcB52SwVEckvILQks/uON2/IN1fg7UpIrpXsfGeCLfTgz0qHBI79cVPmTXmG4yAgSPWwQebxxFfRuUUXBvXK6QcarHqtO3Wksvv7Ejrq5tzpb2n2oCHoAxEHFkHs2ncoQGvzn0em91a4vW3/b6TJzsOCfWbXDGJTw9MimhzXcIduPLdEe/ZHFauvK8zj7x57yndr0nJnA15ZJNziB1rd7HiuzVUqFmWZd+s5tc5K9AtOoYhI5Kl0vdl8v6A6Tz0xj0c3pPOU53CP2ZQfuanpzxEh1vaAiiFyyIrAqvN+o8n4xgF70LBW4AVkt5E2DuGD8a/CLlDQIuBhNFolgoQc8MpX0MGDiKz+0BgP0TdjIgbeOw8BOlRbiStIkILb7RK72pkTj/ADZ4FSOlFxIZdJtK9APybwN4RYQ0ns8vAAfAsA2s9HNGRchN3DrmFOs1qkbY3g3Y3tA4Ze4B7XunJ5OemIzTBRde04PlPwlFQZasmk7orHSklmq7x/p9jsUfZsNpKNvRHcMQ4Itx6jujiKzqrzYqLSIPvdfvYGSxmY3JmMQ3+f4y/1u/h8fYv4HV7lY56SAHSQNOKG6k9m5W0wY61uyJDAwGPU4UGHjH4/xTStxWZ/QDILIjpgxarcvxkIBUKxgMBIIDMeRpRXgmLGYEcyOoJ+NThnIchZfbpXT93MPh3AAY4Pwd7R7BfXLxdIBOZ2R1kHmCFMp8iLLXUQd/64DgB6QLvckAZfMM5C/KGAm4omARlZiKsDZD+vcjM69V1JciEUWhRl4euJ4Qoptp5hBv6XU27G1rjLvRQtV6liAfUq3MH8UbfiTjzXfQdfSexCSeniVOtfmV6PNedGcPmEJsUw8AZ/Yq1adKpIb/OWRF6MFjtFjRd5+q+XUJtvB4fezftp2zVMiSkxJ/UtU1ODtPgn8MU5hZyeE8GVepWPGn/55qf1xPwB4pF1QBYHVbqt6rDHwuVJIDQBD0HKI2Vei3PK3aOI9pO40vO/5t3cfrIQCoIBzL3KTCCWnwFb2PY2qPZGhMyoCGKbBx7lgBFEpb8f0b2LX0Q2ANaBYQWy3GROUBQ/kGA9K0D6/kILRkpPcjsR5QB18qCkREch0AWTkIkvKa6sDYrMj4B9g7h/t0/AK7gi4Dqy9oAPAtB+oBgCKtrJhQx+FK6IXAY9EoIUXx2fqxciyp1KjJ6wYvHv+dj0GvQTfQadNMxj/ef9ABWm4V9Ww/S+fb2zJ++hH1bDrBgxq9c3K0VRsCg9/mPk5ueC0JQvlpZXAVubh90A9c/fHJRYybHxjT45yg71u3iyY5DkIYkrkws41ePjFiyH4t6LWujWzT8R8mqOGLs9B19J5fe1p7R977LgW2HuOulW0iqkMjYPhNIKpfAqAVDWDJ7BfnZBeRnFdCkQ4OQPPHZQvp3In07wTMvaAgBiroOAlDwBiRPQeiVkVHdlSEEkF6kZxnC3gYs1Y/qOdyHNAqQmTeBcQjQIOlDhC1SY95w/wqF74FeFqLvg7xn1WpJeqDgfWTh+5A8DelZGZyte8A4CByZSVtAhGevwrceiRVlvDXlHjqCrTV4V6GMvg7WYHil5Tz1GgAHWMKKmtL/FzLzVpBe0FOgzCyEFnavqVVRHzCyIOZutLgnj/u5ny4LZv7Khy/MJKlcAgM+foyKtcrz3DQ18//ize/ZvXEfPrePtfPX8+nIr5CGJOtQduj8gztTAXjvmWlceGmjYxaXMTk5TIN/jjJj2OyQAmPAH2D+9CV0f+wqQKX2uws9JAXld4vSqP35PDXlYYb1eD3i/WZdmnBN38sZeOUw1i38E7/Xz2t3vo0AXAUuLDYL29fs4tXvB57xezsW0rMImf0oKl/QWeTIUdICvvVI/x6EpbpyfbjsqOgbH7JwAsLeBs3WGMPRA9wzARskjkca+eDbiPRtgsAhjsyqZcE4RPKUUPdG/ptQ+HbwWgL8uxFlf0HmjwfXNKBQuVgKJ4Neg/DM3QCtEhiZYG2AiA3LS0npJLRKwABZoN73rgQRBdH3gLEH4bgWYVP7ccJ+MTLuWXB9AbYmiLjHw/0VjA+6jqSa5bu+gJhwZSyZ+0zwgQYUfoR0dI3YGzgVvB4fezfvp1y1lJDQHMDhPemMuXc8XpeX1F1pvHTTaCasGRU6vnuTMvYAfm+AhTN/DX2nj0azaOSk5ZoG/29iGvxzlLjkWHSLFspk/GbCPJp0bEjGgSxeumk0RsCgXfdWDJxRXJKg/Q2tsTqsoR8bwJYV2/jz181sXrE9lPkqDQMDFU7v8/jZtGzr2bzFYsjCD+GoDT+FhQijL/OQGdcgo28BrTzh0Esr6OH8Ai3xZaR8QZ1vpCHTuwBeNSsOoYNQRkxKqdxIheOLjgr821VEj7U+0mUh5Ery70fEPYt0fQrSCVgRyVMRxVYXIKJuRjo/AZkL2BAxfTCcX0Dei+oaQkeU+RphqRpxnhZzG8TcVvwjEdFq7KgIJcRRWbeysEhbERzfqVOYW8hDLQaQfTgHCYz4cRAN2tQDICs1Bz247yMNScb+LNxOD5kHs6hQoxz5ReQ0AA79lRZZfUyArmvYHDaq1qtMgzZ1T2uMJmFMg3+O0nvYbaye9wdpezJAwr4tB+h38fPEJcXiDcoSLP16FdtW76Rey9oR5+oWnedn9OOlm8aE/PK5GfkMuOIVzruwJjvX7sLv86vsTwk+tw+LzUKLrmendJ6UEjy/QGAX2C8LG0i9JrCaUKz8kZmzrR14V6Nm5Edm0x5wTkepdBuABtaWiLgBEdc64ts2nNNBZhN6OGgVlbvDUgMRPxApXcjMXuDfTLG9AUdX9f+obpBXRKvGvw7p/glRdj749yKxgSxEygBC6EjpBawIIRB6GSj7EwQOgF4RIRzI3OcI+e6lA+n6GoSO1CuDrQOaXvKGpvTvBUPtbyBdYGsFUTdG3nfc88GoIMDaBKzNjvXnOC6LZy0n81A2nqCWz9QhnzFi3gsA1GlWkyp1K7J/+yGMgEGXuy6hZ5W++Lx+Uion06LrhVhtFpWUJwgZe3u0jYuubk7nXpdQvUEVctJyqdvivJPOCTE5NuYneI6SkBJPpVoVlMEPEvBFbsZ6XT7+/G0LZSonM/a+8aTvz+SOwTdzyU1tuLhbaz49MIkJT37E4lnLVHUnn8pyffD1u8nNyKPLnR2RUvLDlAUkpMRz1f0lJ9yUNtL5AeSPA/xQ8DakfIfQKyHinkLKXPD9CUZO0EAD3mWQ/LGaxWbeTHiD00A9HAARg4i9H6GF3VzSyELmv6Vmu+6fCK8EAHsXtIRBRcb0eTAS5+iM4aTQxqvyv0eKmFE4FRHTC8O3DfIGINHBUg+pl1EPNaxI+2WI+IEIvSxYaobPtTYC34Zwn4WTkHiC9yUw7J0Qie8gRFinR0qJzOoFRpq6H5GESJqAEJE/deHoBOUWg5ELerXTzpOITYoNVfvSLTrxKWGXjsVq4Y3fhrFh8SYSysYzY9gcCnMLkRLS92VQvnoKTTo2ZMuqHVSuXYHdG/cDEt2qs2PtLpbMWUHrq5sx+PMnTWNfSpjiaecwra5uGhEqGZscS+c7IvVqFn++jGG3vs7vP61n95/7GHn326GNsKTyiVzRu1NI2MseZaN+69pc3acLtw28kbJVylCuagp3DrmF6x++4oRx2KWG62uU0fYBErwrARBaNFriGLSyPx7lohAQOICw1EYkvQ1aMogE0OsQ2tSUAdAj/b8y6y5wfQruL4HCiGPEPhD5Wujh/dbIwXLkQSELxlOskaWWmnHnPYV6ILhUPL3nV0IPJM93yKzbKJoEKf07wD0P8IOoCFE3qzGE/PxSbQZ7f4u8JyMDjMPBdjKoDZSP9G3HyLgRI/0qpGd58PNMVPscfyMp7uLratPlzjZExTqo3awmD71+d8Rxm91K8y5NqH1hTaLjHGjBAjdC04gvE8erc5+nyx0dSN2dTvXzK9N72G1c2OkCDu1S7p218zfwy8zfSriyyelgPjbPYW564lrik+KYP2MJ1c+vwnUPd2XS0x+F6opabBYqnVeBtQs2hJbLuq6Tvj8zpKnS9NJGPPr2vcybupAGbepyx+Cbz/p9SBlAFr6nZtmBgyqePnTQAEu94ifFDYLcx1HuFTfkPovMHwl6bYgbhBZ1DYbrZ8h9VLW3tgA9LMYmpQxn2QLKUNvU/60N0PSjQhYd16gHkXfp0aNX4ZuWWmrsRd09WlVE4nBk3jDChhrUKuGoh2dgH+qBoKKFZM4z4VBTcj7jRh0AACAASURBVMDWAlyzin8OwTmblFKFp7rnBu8lKBVhrQciEZl5OZCr2mbfA+VWI7QYjMIPwTkDLHUQCcOVy8k5DUQcIvpOhBYdebdGFhj5SK0K5PYDzy88MtjCo2MnIeytSxhfmHuH3872NbvYs3k/TTo2oHGHBiyZvZy5k+fjLvRQmOuk9sZ96jllGMHryZCLEmDPpn3MGvMN8Snx3D7oRqLjTk4R1ERhGvxzGCEEXe/pRNd7OgHQp8mT7NqwN3TcMAxqNq5GjUbV+Pilz9F0QVKFROq3ivTpd727E13v7nRWxiz9+wCBsIRn27JwChS8S/ENWQ2ieyCsxWP9heMSZEE1COxEGe1g2KNxEHKXYeCAguGEDLDvd+V/tzZQ5wuBtLUB7xrVRisPMb2V6yOqW/HrCRsi+UOk9CEzrlZGHglCQ2JBpl8VHIsAokFYEGU+UrH4aOpejhh9W0flW/ctC/ZuBUt9hCgSXlp0UxWhXFHJ76lVhHc14AXbJWALJr351oP7ZyIigoQDEscFX+cW6S+A9K5HepeAc4pqG9iPTO8azCkIADak5zdInowQKsfDcM2F3GfUPVrqgX874APpQ+YNQZT9geORVD6RietGs2HJZgZeNYz7Gj5BuWplCQSVOv1eP+kHsrh/RC/WL9qEz+OjQs1ydOrZDoCCnEL6XTwIZ54Ti9XC9jV/MfKnwRHXCPgDfPTSZ6z+8Q/s0TZaXdGUG/tfc/ZWp/9yTIP/f4KUkt1/7ot4z/AbfDTkM95ZPYJG7c8n61A2zS9vcko1VKU0lI+cANgujvAXnypG3khwfqz6jb4LLf4pdcC3lpKjb+wIyzGKZvjWB8MKS9KC8ikXSpE4d+VpMSJaiaSJKjMWD0TdiNASI8fr+h7yX1Oz3cQxCGt9tcmbNBmZNwRkPiLuGaRrFgR2B8diVTH+RgYydyAkvo6IewLpXaU2Uq1NEElvAHZkYD+45yKEFWnvgjQKQkleIv45ZPZjaiCWC8DWCiEsiORW6m+CFyEcRW4m6HIq+nFIH8KzGBHdA4mjyGesgW8jOKcW+Uz8IIsWOvGCbwXycDNk9O0IvTIUTiS0n+DfEvmRi5M3Je8+PiUk0ZFxIBN7tB2r3YIRMLjtue7UvKAaMw9MJCs1h3LVUkJ1jg/uTEUaUgUSeP1sXbWDjINZxJeJC+n7THtlNrPGfBPSg9q0bBtbVm7nnld6Ur1B1ZIH9B/CNPj/JwghqNO8FttW74x4X9M18jLyadT+9DJiZe5T4FmgXthaIpLeK94mcBj8u4PZpceIHDGcSnL4yAzUOQnD/YVytdivCPq0PYQtlgaW2hB1bYn9oZVTfvkQR1k76VdZp87PAR84rgJLw4guhLBDTK+SxxvIgNxng2NKRWY/iCj3izrPUjUiLl96FhY50wD/VlRGbBYydwha0ltQ9hfAE2GkhaUqMuZ+ZN5gyO+KRCATRqJFXaU0f8otBiMb9OoRQmrq3+F+ZCAdWfC+2reQRePY3ciCN8FyPtgvB8/X6m3HDWDso1j+Qol4wflBiY9V7J1UApyIQyS8ehJ9KSKywoXg2amPEJsYTcXzKlCmokoOs0fZqVhTSWRLKdm7eT/2aDu6NbgHIASGYXBX7UewR9kYs+hlal5QjS0rtkeUfAz4Aiz9ajWrf/yDWwd0444Xzr7L8t+EuWn7L8dV4GLVD2tDmjbHY+yil7i0ZzscsQ6EJnDE2KnWoArnX3R6peWk9AZ14p3qP89SpJEd0cZwL0amd0Zm90GmdcHw/Kb8vEcjjsgPFz05XT1MArsQyZMh9imwdQZLE4gdiigzK3IWG9FdNYgfqlQurc0RZReArQOhr7TQEba2iPKrEeVWoiUMP7XNSZlDxM9DZh+zqYjuDXoFwApaEmovAMAf9OsrA1XivQT2gOsrlPH1Qt6QcL9aIsJS84SqmTK7D3h+VCsIokAvEmJpZCCz7wPPT0WuuQvh6IJ6aGhq3PYr1LlEBVdGx7pmjDov9kG0pDcR5Tcgyq1EWIsXVzkWT0x6gDKVktF0jU63tqX11c24oN35IWMfcW9SMvSWsTzc6jkeav5MyJ8vpcRd4MHr9lGQU8jk56YDcMU9nbBF2Yr14XF5mTn8i5Me4/8r5gz/X8SOtbv4Y+FG6reuQ8O29SjMc9KnyZMUZBUS8Afo//6DXBr0Z5aEPcoeKpxxcGdqKcQvW9WPXwZ104UdRBGFx0Am5DxIeKboguw+SGGBxPEIe1hUTQgbMmEs5D0fnIX6CEWpGAcRtpYqq9T7G0okbCvYqqsY8mOgRV8P0eGyeiSOReY8pdwNUd3A3kkZ+RJ0ZE6IXgtsTcG3Tm0cxzxwzKZCLwMpP4PMRUoBmd1AaiADiNiHTnAhCxErk9MZq/8vQnsVQkDcg5DzQPg9WQjCFr6MkY2wt4PkyWo/wNYKYWuuSjsGMsHeBlkwKZhgdlTOQez9aEXuqSSNnhNRo2FVZu6fGKpbfDwO7Ehl5fdripW8LIoQIrRq6HBLW5IrJvHu41PY8cfuCC9eXPIJNJH+A5gG/x9kz+b9jLr7bQpznVzTtwsfvDATw2+g6RqPvXsfnwz/gvS9GaHCUTNf+4JLe7YjEAjw6Ygv+fPXLXTudQmdb2tfrO9K51UIReKcLkIISJ6qXA7Sj4h/MbSBB4B3EUf7xUObeAVjIww+gBbVBaK6IP37lGokEgggou8M9vc7YT9zAHybwNZKRdT4VoN0g61NsZjy0Hi1OEQpFS0RQoOkyWqvQMQirMdfJQmhqZh3QKZ8B74/QK+iViLHO89SBRn7ABS8A8KOSBgdcdzIHwOFU0BLRCS9hwhuOkcQdZWKzpGGcnX5NhDxENHrqgdBYJd6CAV1c4StJdjCaprC2hisIKUHEXMfxPZBetZBzr2oje1y4b9VKXAyK67oOEdEuKo9Oqj3LwT2KBu56XmUrZZC39HhcTVqfz656flhPTsBZSol89KXzwCQvj+T956dhsfp4Z5XelKj4X/Ht28WQPkHueO8h0ndlVbisYSUeHIz8kKvNV2j1ZVNGfr1AD4ZPofpw+bgcXqwR9t5+atnada5UYn9/F2kUYjMeRC8a8HWApH0LnjXId0/quQnz3yKJRsBiLKIxLERoXpGwQQVjaMlQsJIBAZYaiP0cup47mvgCvvGSZyI5uiEkfsiuL8AKcDaWMkT/IMFVc4EaiNWRNyX9G1CZvYg9BDU66CV/a7kcz0/gZEHjiuR2Q+Bb3mRFlZIGK0ylrUyCP3Y5SMN51dqFYYBMQ8hYh9Wm8kyLZigdfajXeZOmc+kpz8mKtbBoJlPEPAb+Lx+Gl1Sn7H3TmD+jCWkVErmtXkvUK1+ZQBeu+NNlsxejjeYJf7YO/dxRe9LEUJwT/1+wQ1gg9jEGGYemPR/VW3LLIDyLyU7NafE9+3RdnzeyA21KnUr0v99VTB649KtoVT2gM/PzrW7/pbBV8U3HlN++tin0WJuDx8rnBIMXfSCdxUydyi4vyYkyYugeHgIINOV7zj5A4StBdK/Mxx6aaRC3hBE2R8jzzH2FnmhI/w7gE4qOSoUXrlWhV7qlcOX8ixRM3Fbu2KqlucKJfrppQuEVuSjLVlYTAgtLO8ASEdX8K2kqBibMA4irMeXF5ZSQt4LhP62he8gC1XFKhn/Mlp0yYXIpQwEpaTLIrQTK7aeKlf27syVvYtnea/6cR2/frlS6fQcyGTsfeO5/O5OJFdI5In3lAtu/owl+H1+3n5sCqm70+j1wk3s334w9Jl63T5y0nLPeEnNfwvmpu0ZwO30FDPYJdHh1uKFQ5IrJnLrs9fj90X6TuOSY0Pql5f1ukRFLFh0/P4AkwdOZ+LTH532eGVOP6XTLp2Q/xoycFjJEBeMDxbmOBLb7Q9GoBT1p0pKDo1EtfMGZ5qyUBmv0GmFxZtb6hOOPrGpZCYArWgSlKaiUYIYru+R2Q8jC95EZt2B9P5xcjd9LmBtGtzDsAN2RNygE50BgIi+DWIeRG2SO1RWsr3LiU4rgWBSG27IG6SqdQFS+pGBVJWTIN3IzBuRGd2R6e1U+GkRVJtj+9//Dj63L5TXLCVsXbWDdx//gGE9X+eDQTNZPHt56OvpdXmZP30Jbz0yOWIVVa5aCmUqn91Slv8kpsEvZUb1fofr4u7gmpheLPjk12O227xiO4s+PTprE3oO6E7TTsVlajUt/KfqeOvFDPv2ORLLxqtET7/BtxPmsXXVjlMaq5QS6f5FuQJCCGRgDzLzJmTBuKDBDm7WakkQ3ZNiWaLHxB4W5QrGkiuDboe454q1FrEPqv4tjSHuCYRDzepE0hQl8GWpo3RhihYkcf+AMkoS9YD5/0nDF0JDJE5EpMxFlPsN4bj0JM8TaHH9ECnfIhJHqPNPsJdw5DwSXkNFGelEykQEkIZX6Q9lXI5MvxyZ3gnpmhPMQXCBdCHzRyP9OzByX8HIfhp5uCnycBOM/LdO/QM4AS2vvJDaTWtic1ixRdnQrToepwd3oYf50xZHKm8CtZvWZO3PG0J6UzaHlbuH9kAIwY61uzi063Cpj/HfhunSKUW2rNrBvA8XAiADkpF3v33MqJqSIg/KVUvh2oe6kpeRT+CoGX6rq5pGvG7SsSH2mHAClRACt7MEX/pRSN9GlRAkvSpb0ruQcCSGHRyXgT9VTZmORNHodRCJb4ClCvg2IC31gnrxdtCigsU6jr62UFEywY1bITRInBhc+seXWCBcCCsivoQHgbUOosznJd+QrRV4FqHcHbZwcZD/E4QQ6nM/nXMt5wWLpJzCOY7OyMLzgxXAjiRrSUBA/gtIvTYEUgE/GD7wLFabxepswI7MvLn4Cq5wIjL6luPuH5wqVpuVMQtfIn1/Jh6XlwebPQ2AbtWp1bg6jlg7q39Yh9/np3LdSjw79REmPTONn6YuxOPyolt16l9Uh4FXDmPj0q0YAUnfMXdy3YNdT3DlcxfT4Jci+7cejHht+I+OYAlTp1ktLDZLRNHw8y6sga7rJJVPpEHbumxYvBlQX+CSNpUeebM3L904GiklDS+uzwXt6hdrUxSlpNg7HFMeKJqkFQ0Jw8DaPCgbcGTsDrBfhLDWUTVUs+5HGVc7ONqqqJLATmTBB0Hf/hHDLyNjvzlivGocd4ynioi+XTmUfKvB3lWFG5qcPq7vghpDASL3DPzg/hFiahN2DBxJACvivrQ0BP/GY3ReRBzOcEJgh9oIPirD+VQQQoRKNQ79egDTh82mbNUUHhx7F7GJMaxftAndonNBu/oIIXjkzd7UuKAqqbvS6Hp3J/IzC9i4dGso8/eD5z8hLimWlMrJp52s+G/GNPilSMsrLowoLNLiiguP2bbt9S15+K3eTHluBgXZhcSnxNFn5B2h4/ePuINnLnsZTRc4YhwhPZHI6zXl00PvUZBdSLlqKScRuWKgCmwcQaB+tAF1zLc+mF0KOK4EfMqNEnO/es+/Q6XwSwAP+NYFjXhtSBiKtNaD/FcJPSyKSBGfKYQQiJheQMkZsyaniBBF9uAF4SIqKG0eIy+Ym5Gh1Ec98wivECX41xNaESAIfRfsHRC6ChOWgXRkZjcw8gEv0toKEXOPkmw+DgF/gIM7UylTKblE0bSmlzai6aWRwQubV2zn24nzqNGgKs9+/CjxyXFcX6Qs5+E96RGuH1eBi9f7TEBKyW3P3xiq6fz/ghmWWcpsXLqV9579mMRyCTzz4cNEx0Uft72UEme+i6hYR4SfHiA7LZdDfx2m5gVViYotHVVAI/cFcH+jXlibqQ1QIx1i7o9M1kGHlO/Riuizy0AmMqNrMHHKAjF3ocX1j7wf93xk3lAVU544GmE9M+GiJmcGKb3IrPtUlI9WFuKeD5dzlDLorw+ASITo26DwHSLkMBw3qAQ97+8Q2EZ4pahB3BC0mJ7IwsnI/NFEJnXZIGEUWlTJkUTOfBePtH6O9H0ZaJrGqAVDqNv8+O6qtQs2MPj6EbgLPehWnQ43twnV0y3K9+//zOSBM7DaLRTmOEOz/ZTKyXyyr3TyOs4mZljmWcLj8vDiDaPIy8xHt2gM6T6KUT+HU+X3bz+E1+WlZqNwwQkhBFGxDjYt24Zu0anfqnboWFK5hBLr0v4dRPzLKgtV+oKCXEfkdX2qOEfoRxiAjGsxYh5Ai3tEnauXgZSv1EapXimYjn9U/47Ooc1Wk3MPIWyIMh8hpRuwq+9ilPo7G6kNCEdsuVXdAezq3wiV4OX9PajTc3T0lqFyKWJ6qodFMbxKZiNo8KWRrySjLbUQwsHiz5eRtjcdj1Pte30waCbD5z5/3HvJ2B+W+Aj4Ahz6q/imbGFuIR6nl3uG9qRR+/o83EpVRNMtGlXrVy7W/lzHNPilSOrudDxOD0bAwAgYbPwtXAN22iuz+GT4FwghaHNt84has6/0eJ1Vc9cCKuSy3/g+Z2yMQgiwNVehcsZhpFZeRYMIKzJhTNClc6S+qVfFYsf2DSXcCL0yxNx7xsZn8u+gRN0fW4uwnLSIU0VZCCi9JVtriO4N6W0oJscAgAWsQRdn1PWqqLpvZdErguFESj/4dyGzeqAknmOgzJdExTpCvxdN14hJOPGKt/U1zYgZGI2mawT8AXo+d0PE8ey0XO6u+xiufBcWm06j9uczcPrjTHtlFuWqpfD4hDP3O/ynMF06pYjH5aFXzYfIyyxAt2iUrVqG3PR8YpNiyNifRcCvfgg2h5UPtr5Juaop5GXmc2ulPvh9auakaRrfuaafkv6N9O9VPzq9CtJ+JZp2fAljw/k55L0EGKDXQpT5FKEpjRwpXcjDLQnH2jsQ5dedUMDL5P8faTiRzukgnYjonqEM6dBxKZXLL6BKFaJVVCqd/jVgbY2IezRCmkO6f1GJXb41qj02iL5HJea5v+aI3LSIfRwjqjcj73qbJbOXU6VuJV6d+zwplU4cP1+Y52TTsm1UrFWeKnUqRhx7tO1AtizfHn5DwI++T4u5Vs81TJfOWcIeZeftFa/x5VvfIw3JNxPm4XX7KMx1omlFUuaBqFg1g3LE2LHY9JDBj453hEoOngwykKY2wKQL5S/tj2HvjEh8CxBI52cQ+AsR1Q1hbYjhXgB5gwgttwM7kK4vghufIEQUMmFkMONSRySOjDD20r8TPEvAUg9hb3P6H5bJOYfQohGx9x/7uBDI5GmQcRPIdFVX19YULWFAye0dnZC+dao4DaDyKJYE9X0sqOgfHbR4dF3nuWn9SvTBH4+Y+Ghadg0HTxzek86ga4eTujudgC+yPnH5amXPeWN/Iv6/7+4foHz1svQdfReX3dkhot5sVHwU5WuUDW3mxiWp5CGbw8bLXz1L5ToVqd6gCq/OHXRqOjG+I5mlAUJG3PMb0vkJMn8s5A8H51Rk1m0Yvq2Q+xTFfKuu2RFdalFXoZX/Ha38SrA0Uptszs8wfNtVVmX+aGT2AxjOL0/58zH5/0YEdgN5qO+jF/JHYBS8perp5o8LagYVwb/3qB6s4F5AaMZv7whRN1BavN53Ins27cdd4A6VAdV0gS3KRsceF/PtxJ9OKkv+XMWc4ZcCUkrW/Lye3PQ8Wl/TnJj4aCrVrkDNRtXZ+cdukJK+o+8sUQ8EVDjZh1vfPL2LW+odVQgEwK0MvYglJLwlvZD/5lEFMoIEdh3jvtzB8LksQAdLTVVY5Ii7x/0FRBcvB2jyH0bEFknEAghAwfuo4u071J5RTA8lrW1kqJq7np9Q3ymbygE5IseNHRH/fKkKtuVnFYQybWXAoGPPdjRoW59PXp3N7Ne/Rdc1Vn6/hpe/eva4/RiGwe8/rcfv9dPyigv/hgT52aVURimEuAIYhwrafV9K+dpRx+8GRgFHqjK/LaV8vzSufbY5vCed1N1p1G1xHlExyi0z5fkZfPnWXBCChJQ4ylcvqzZsNUBKuj929RmrGSss1ZAxD0Lh60TO3P3BmPsjtVQD4P2phB6sEdmp0rdJ+Wn1ymBrB7IAtbT2BXXXj7ibHOFNOBOTIMLaABnbBwonKw0k64Xg/ip41AX+rcp3n9NPxfxrtcBxNXhXgL1DOGQYAE3F/Zdidu69w2/n2ctfBgmGIfnty5V073cVBblO/F4/fmD1PLVqzs8uYMx949m7+QDdHr0yIgN35F1v89tXqxBAvVa1GfnT4HNCwfVvG3yhipy+A3QB9gOrhBBfSyk3HdX0UynlI3/3ev8kK+eu5eWbR6PrOnHJsUxcN4qYhBi+f29+KHbX6/KSticjQsN79uvfkp9VwFOTT1QM4zRxfUzJAmYWFeUgS1blxH41WCohYpQKpwykIrNuUyJq2MGxHfXAEKov6wUQ3Qtcc5RM8QmLe5j8F9FiH4FY9VOX3j+Q7nnKuEsDEXU9Mvc5wK2+ssZuRNQTiMQRABiW6pD/hhLaszY/ZWmIE9GscyMs1nCGu9ft46WbxmD4Awgh0C0a511YA4BxD73Hiu/W4Pf6ee/pj6ndtCYNLqpLIBBgwSe/hlYKG3/bQvbhHDxOLy/fPIaMg1n0HNCNG/pdU6pjLw1Kw4ffCtghpfxLKlm8mcD1JzjnnOTjlz7D4/TizHeRm5nHiu/WAFClXkX0oL9eFVmONL7SkCyYcWwhtWMhpQfpnIV0zlSp6MfEetS/49TSOn54UOwsKvi+hoqbdoC1JVrS62hxT4fFyPzbCH8lPOBdg0j+RM3AonsgkiagRV2NljxZiXP9A9roJucWwtYEkTIHETdY/d92YTAD+8hs2KBosXktpjeUmQMxD0PUjSo/xDkLI28E0hcp2SCNwtNS4ux8e3scsQ50q45hGKTvzQABjS45n6v7dmHYd0rP6cC2Q6EHg0SGalfouk5ikfwYi81KbGIMw3u9yc4/dpNzOJcpz3/CX+v3nPLYzjSl4dKpDOwr8no/0LqEdjcKIS4BtgFPSCn3Hd1ACNEH6ANQrdqJ1f3ONmWrprB19U6koeppTh82m11/7mXg9H6M7z+VzIPZNGxbl28mzMPvC4S0dIQmqFir3Al6L47KeAxuyjo/hTJzSlw2isRRyOwH1Mw8+h60+KfCfUgJ1gYQOIi0dUD4VgCaSr4qei3pRfp2qISsoAgW9o4Ia11E4thTHruJyRGOFnETCSPU99VIheg71UOgKPmvqdKLGCDikDIfcCOdMyDlK4SlBkbeSHB+COjIhLGqmtpJ0v+9B2h/Q2s+HDyTHWt3A2pSdvH1rbjh8atD7a5/5ArG3DseIDTRO8LInwYz7sFJ+Dx+Hhp3DzaHjezDOaFZv9A0Fn2+FCNgULtpOFv9n+Zvx+ELIW4CrpBS3hd8fQfQuqj7RghRBiiQUnqEEH2BW6WUx9V6/TfG4W9f+xcPtxhQbAZvj7Lx3PR+XNxN1V/dtWEPaXszsDmsTBs6i5iEGB55q/cpFVmQ0os83JhwaroVUW5JiSqTAIZ3Pbh/QFjrg+PaU/YnGtl9wbMMFV0RBXH9EdG3ojx2JiZnB2k4kWnNOWbyVvwrCFsrZMaVhIT6RAJa+VUltD8+a35ez+BuI9EtGpqmMXHdqIjf6Ku3v8Evn4TltqvWq8SUzeOO2d/8GUsYe/8ENE3gdfuwRVmRhuTpKQ/T4ZbitS/OFGc6Dv8AULQoZBXCm7MASCkzi7x8HxhZCtc960THRWF1WPEeJWvscXl59bY3mJ3xAY5oO1tW7uCz0V9TuU5FXvj8SRLLnpo8ggykIQs/AmKAAkCozMYiS9+I9v4dkHUH4EISBYFUROwpZgl6lhBOm7cg7Bebxt7k7CMcSt9JZpVw0A/+7WA/2oFwepulzS5rzIQ1I9m9cR8N29YjqXxY8sHv87Pos2UR7W3RNvZuORAqo3g0nW9rT4M2dZn7/nzmvPEd7gL1QJoz7ruzavCPR2n48FcBdYQQNYVKo+sBfF20gRCiaIrbdcDmUrjuGacgp5BnLx/KjWV7M+7BSVSoWY7Lbm+P0It/wQxD4nV52bF2F+/0m8L+rQdZ/eO60JLwZJHSh8y8CZyTAbf68tsvR5SZWax4t5QGhmc1MvcVwrLErmCd2VPEUgf1/BcgbKCfugvKxOTvIoSGKDONYxbZcX4GIimo5hoMJogfdtrXq1K3Eu26t44w9qDkG6y2yN/bznW7ebD5M3wyfM4x+6tYszwtul6ICCZaWu1Wqv+LiqT/bYMvpfQDjwA/ogz5Z1LKjUKIl4UQ1wWbPSaE2CiE+AN4DLj77173bDB54AzWL95EXmY+P09brJ74QoT8dEewWHUu63UJ8WXiOLwnPZRwFfAFWPXDOm6tdD9L5qw4uYsGDoORi1rS+kDmIRLHIUrQkZc5j0H2XeBbSlHXD6ehCS+SpqgEF8dViDKfIETpqHOamJwqwlIbUWa20tbXKhM5gy9AFk4OVjqTgB9yH8M43BLD9WPJHZ4kgUCA3Iw8pJRomsYLn/UPGW4gVCpxxqvHNvgAjS9pwP0jelGzUTU63NKGB8fe9bfGVZqYWjrHYXC3ESz7Wo3BardyRe9O/PTRYtyF7lAbq8NK/0kP0Pn29gghKMxzcn+j/uRnF+IuCLezOax8fnhyiTreRZHSi0y/FIxMQAPL+YjEUaAlRPjvZSATmX4JEcUnAKwXIZI/NLVvTM45pJTg+QH8e8DRFRGU5jbSrgKjaPnOWJSr82hsiPKrTmuykro7jcfbDSI3I59q9Svz+pKhRMdF8chFz7F1ZWTp0LJVyzBjz4RTvsbZ4ng+fNMqHIeez92AI8ZOdHwUcUkx1GtVh6Lx7habzrMfPcplvS4JbZLGxEfz3oaxDPjo0QhpBSklriIPgGOh5GlnQfRdEH0vCCsy4xpk2sUYOUNDG8aSEtQM+R97Zx1nRfX+8feZubXddEmXdCOIAnaCjdhiY31BEFAwCRUxESUUE8FCUUBCTEK6u2PZ3r19Z87vj7l7d+8WCyzID+b9eu0LZubMnLn1zDnPeZ7P4wgKVIV/rEaN0aHoueOQekk/FBOT/x7pZeLArQAAIABJREFUfB+ZPQSZNwGZ3gepHTIOWIomXpX2HZYgj13msyQ+feFrMg9nEfAF2Lf1IL9MWQjAkE8eo2bjalgdViJiHNRoWJVR3w4udr6u6xzdn47P42P5L6uY/sLXbFq6rVi7/5r/H/nA/xFNOjbgk+3vcHDHEeq2qIVqtTDl2c9CSVZCKLhziksVRMVG0vW6Dtw2rA8zxv2Aogi6XNuBpKoJ5epXqFUQsUPQnR+D69+CA57pSEttpOeHYGWh/OmmgIgbEZE3IawtkFoqBHaAtQmgItNvDmbMWpD+9YjEj0/qfTExOSV45hRIf0iQ3r+QenoRqQZAbQLaTsLrKAsQCYbWU9QDKJE3HVfXQlWM5DCkUQQ+OFir0bAaUzaWHpkDhkruk92fY8+GfQhFQdd1At4AX439jnELRtKkY4PjupdTiWnwj0FC5fiwBZ1WFzdn4WdGEpWuaWQeyS7tVO4ceTMX33oBfm+A884/gbwC1xfF97k/NQpDAAWzjUiE4zLD2PvXITP6Y0zeVIgbR0ExCr9RxtDE5EzE2i4opuYBNHB9VlBfV0QCCWBvbyQUemZC3jvGepeIA8VhyDJrGuS8hLS2QlgblrvrO0fexJpFGzi8O5V6Letw2T1lRo2HsWTmP+zZsA+fJ9y96vcGWPnrWtPg/3/mxqeu4fev/8HvC6DrknqtapfZvmajk6iaoyQGRzL5WILGvgSxNEt9AKRzalAaAUAF/zqj5Jz0GOfbzCLfJmcmIvZZpJJkhF5G3AJZdxMa1EiJSP4YYTEGTtLSCKlnAV7ju134JyFU0I8A5Tf4ydWT+Hjb2/i9fmwO27FPKITf6y9m7MFY9zuTjD2YBv+4cUTZIbhyL3XJe49PpcPlbU5JXyLuZWTmfaAdMsIm1Wbg/YFiBl84QgWiUSpTUIVaA5mHSPoO6ZqFUOOCVYpMTM48hLAhYh4DQM+4nzB9KKFA/nccjIcCRVw9CGMmoFQyqnMdd//iuI09QN0WtVFUJVQM3WKz0PW6Dlx4Y2fa9GpxjLNPL+ai7XHiynWHdHPyt08GKX2Gr7KQToju34ye9z5S96CkLECpshEl+XtERG8K1CrzUUEtJDBl60jYx+pdhFAro8Q8jIjsF1ZxyMTkjMVXJIzZ0jL8u2vvSvhvwQoRNyPi30Ikf3dKwoqnv/g1lztu5YbK97Lxn62h/XVb1qHqeZWwR9pwRNm5ckAvhn/5JN36dqrwezhZzukRvq4btWfLo2Xt9/nJTsulbsvatOzRjNWL1iN1yYDX7ghrt2fjPlL3ptH8gsZERB8rBDOAzOgHge0gNWT0g6DWheyBwRbj0ePeQ4noZWzae0D0w4ZapVIJpBPUSojYUaFrCiUBKWwFi18iqrxvh4nJmYOlHgQKiaVF3hB+XMQZapr+oPSBkgQxz4RKdVY0+7Yc4MvR3xHwBcg+msOr/SYwfce7RteK4J5Xb2P7yl006dSQTle1BYzIvDNNMvmcNfgrF6xj5PVj8bp93DToGu59pV/omJSSD5+ZzsLP/6RR+3rcNrwvz17+Mp48DzUaVmP87y+SfjCD6PiosAXdXz9bwpsDPkC1GvLJk9a8XnbcfWAr+LcQKlLi/Mgw5IVxvgVBgy+EQEQ/ANEPlH5NawuIuA1cn4CShIgbc7xvjYnJf45InIrMfgYCuyHyLpSIcKlhmfNCMOEwiJ6J8M4vJgpYUXjdvrAypfnyKrqu8/RFI9kaFFXscXMXOl/djinDPmfGuO+JiovixdlDaNqp/OsJp5Jz1qUz5o63ced50DWdbybMYf/Wg6Fjv8/6h9nvzyP9YAZ//7CCJ7oMIzc9F5/Hz4Fth1jw2e/UbFS9WDr2F69+i9ftw5XjJic9l1UL1pV5D5JYQsYejMUnpUp4I6XGcb0uIQRK7DMoVTagVFpyXJEKJiZnCkKJR0n4ACVlLkrUrcUbBLYSXgNCGsJrnkXIwP4Kv596LevQ/vLW2BxWbA4rD0+4B4BDO4+week2Ar4AWkBjwWe/8+1bc/j6jdloAZ2c9FzG9H+7wu/nRDnnRvhSSoZfPZqMQ5mhfQLQtIIFoLQDGWgBLdQ+4C+0SCoEVnvJOh9V6lTiwNZDaAENXZOk1Ewq/T60NEMWIYwAxL0GGTeBfhDUOhD/+vG+RBOTs5/I2yFnJEZpRGlEtOW+iMQKCEicjDiBhdvSEEIw4qunOLo/HVeOm+iEKKSUpO5NCy3W5vPeE1PDtn2e49fsP1Wccwb/txl/sWzOyrB9ve+4MEwB78KbuvD5y7PI9uYWNArO5ppf0Jie/UoObfzflIcZ3f8tDm4/zA1PXUXDtqVX65F57xtGPYQFrC1RLMlQaWHJ53h+ReZNBEtNROzzCCW+xHYmJmc7SmRfpKU+MrALfCuNuHw08iPYZO67kDipQov0CCGY/f5cZo3/CYC6LWuxZ8N+hFI8Nywfi83CY+/eV2H3cLKccwb/wPZDYdsWq8rj7xdICeu6zj8//ouuS4RiCKXZHFbqtz6P1xaPwlrGAm9CpTjGzB1RzjspHFqpgP1CRPz4sBbSvw58y8DaEpQkZNZTgAcCG5G6E5E4qZx9mZicfQhbS4StJbrrUwqkvYP4lyLTroakmQUV3U4Sd56br1+fjRac8W9ZtuOY5zwxcQBdrmmPz+Nj1A2vsXrhBhq1r8eLs4cQFRtZIfd1PJxzPvxL7rwI1VoQztX7zh7BqdlR8rKcfDTkM94dODmsun1ETAQPvXlXmcb+eBHRD4KSAlhBrYuIG4MQBfo40rcKmd4Pmfs6MuMepGcOhOSRg7rgJiYmYD2/hJ0B0PYg3bMqrBvVoqIo5TeZVruFmATjYfPjB/NZvXA9Po+PzUu38UUpipuHdh5hZJ+xDL/6VfZsLFYU8KQ550b4KTWSmLp5Aou++JNaTarR+Zr2jOw7jhW/rAYgOj4Kvzd8tJCTnsv/eoxk7ILnK2y1XahVIGUxyGwQ8cXCt6R3IQULugHw/GEUh5A6ICGyHyYmJoC/sJplftIhgAbOaRBVMfLENoeNwR8/wvgBHyCE4Nah1/PjB/NxZruw2Cy48zxo/gBII8s2oXIcrXsZDyNntiu0Lhjwa+RlOYtdX0rJ0z2eJ+1gBkjJpn+2MePQh6iWiitEdM4ZfDCKFNz2bB8Atizfzsr5a0Op0c4cF7YIKz53Qaq01CVet4+/vltWoeFVQihILQeZNwqJFRHzFELNrxVjxygCEbyPwDpAhegHENa2iGJVf0xMzlEslSBgwXDr2AgTVdMPIn1rELaWFdJVj5u60uOmrgDsXLuH6S/MRPMHUCwq/Z+/gcvv6UluppOj+9Jo2rkh9gg7AFfc34sfP5iPO9eNxWbhhqevKXbtgD9A2oGMkCKuK9dNbmbecVfMK4uz3uAf3Z/OhIcmkX00h7tfvo02PcOnf1aHFV0vWHFJqppIrzu6c2DrIRKrJfDDu3Pxurw4Iu00aFO3Qu9NygAy/RaQRsSQ9P8LCZOQOePB9xvGSCV/xBJc6dezTGNvYlIIETsMqR0E/zawdQgWQM8KHpXIjP7IxGngnGwkIkYNQLHWP+l+V8xdTcAfMHz6fo0Nf2zhlsHXE5ccS40GVcPaJlVN4JPtb3NoZyqV66QQEVVc3tyd56Fpl4bsWL0bgDrNaxGXXHJZ0xPlrDf4z183lh1rdqNrOs9dO4bpO94Jxc8vn7uaF254Db83gFAEccmxPPv54zRqHxQik5K45FhWzl9D52va0eri5vh9fqy2Clr5lznGX74miHYAmdYXKCzXkN+XH3CAWrZYm4nJuYZQEiHhA2TaNeBbRInighl3EXKRer5Ht19qVJI7iUzY+m3qYrFa0Pwa9kg7zbo2LrO9PcJOnVLKHa75bQPDr3o1ZHP6DetDz0J1NiqKs37R9sD2w6E4WUURpB0oKI489o638Ti9SF1itVl4+59XQsYejDCsmwddyytzhrFszipuqT6AGyrdy+ZlFbNgKv17MD4CAdhBrUnxL6sKjksNyQXHpaBWNouYmJgUxfMr6JkU//3kU3hdToJvCfjXnFSXbXqez1MfPUinq9py+4gbuPF/V5fYbumclUwaPJ0V80rv76MhRp0Nr8tHbkYe0QnRIXdQRXLWG/wr7u+JI8qBI9pBco0k6jQveMIWTrZCCHRNx5Xr5qWb3+DOBo/x2cuzkFKyYt4a1v+xmYBfw5Xj5u1HJ5/0fUkZgKx7MfyNwdqc2mFCrhsAkQxxY1Di34CoB8AzD7IHIdOuROq5JV/YxORcRE0KL30bhgIinrAGUkIFxOhffMsFvPjDEG555jpUtfji6l/fL2dU33F8/doPPHvFy/z00a8lXic6PjIk3SClJPIUhWye9QZ/wNj+jPzmfzz94YO8u+zVMHfMExMHYHVYsVhVevbrxk+T5vN412H8+f0yDu44zJejv2X5L6tRLWpYEneFrJpLb4HAGWCMTIpk5Mm0goIlzg8BtyGYJnPA9xcmJiZBbN0hoh+IBEMiXFSlwLxZIXYoRN4NRAACIm9GWJud8tv6e/byUNSf1CUTnyq52tzj7w+gRqNq2CNs9L6zB217nxpZ5bPehy+EoG3v4iv06YcyWfj579RrUZubh1zPp6O+Zs/GfWEyCrouObI7lSsf6E3nq9qyeMZfxCZG88TEAcWuVxQp3eD6Aql7EFG3hAqQSz0Tmfkg+DeBSAR5tOwLuT5FRt4Kllqg7QYCRmimehKFVUxMzjKEEIjYwRBr1JvV0+8Af36SpRecUyF2JNi6gK0tyilS1SzKgW2Hw7a9Ti+6rheL569SpxKTN7x5yu9H5IcAnWm0a9dOrlix4pRd/9FOQ9m+cidaQMcWYQup3+XjiHZgc1iZtOb1UC1av8+PxWop10KKnt4v6CPUQa2MSJ6PEBb07OfAPRPDp2jHmGZ6MUYjwRj7MOyI5DmgRCGzhoC2B6LuQYm8+WTfAhOTsxbpXYrMvIdQWDOK8SfsoFZDJH17ymtDbFq6lYFdhoX9pHv268aQ6QNLP6kCEEL8K6UsUUjorB/hl8aBbYfQAsHFXFUghAjFvwohGPzxo7Ts3pTYpJjQOeWNzpFSgn8FoU9aSzf885YaoGdRsIAkIeq+YPlBYfjo9b3hF7M0RFiMdQdTSsHEpHwIe0ekow94vgru0Y0/GQDtIPhXGyGcpSClBp65IPPAcTlCiSm1bT7ObCcTn/6EgzsOc/Pg6wgEk7AK8+i79574i6oAznoffmlcfu/FOKLsOKLsJFSKR7EUvBVCQKcr24QZ++NBCAGWphghlQooUaAaOvci+mEQ0UY8sJKEiOqPEvuMkXGrHyh+Mf0YLh8TE5MSEdH3gogxfm/5I3wwig2JJKSWjixF9UxmD0XmDEXmvIRM74uUx1a8HHfPeyz4dAlrf9vICze+RvUGVbFFFJpFCPgmKLwW1peU/PPjv8z58Fdy0k9tMMY5McLXAhpLZv6D3+un+42dcUTauX9Mf9r0aklOWg6drm7Hmw98wN+zDRdSr9u7n3SsvUicaihbSjci6v7Q9FFYG0PKEtAOgKUOQgRDr6Sb4jU6bUZBExMTk+NGWOpAygIIbEOKWMgZBYGdRi5Lxg1I6QW1BiTNKK486/mFUNy+ngqBPWAtuyD5jtW78fuM2btqUTm8K5U7R93E5KGfG6HhEtb+thEwNHN+mbKQxKoJHNlzlNnvz0XXJVOGf8GUTW8Sm3hig81jcdb58N1OD9v+3UmVOilUqpUCwDOXvMC6JZsQiqB2s5q8s/TVYosmUko2/bMV1aLSsF09hBBkHM5kz8b91GtZ54RH+8dC9ywxfPpqDeNf6QElASyNjQdC9OMI5fSr6pmY/H9ASt34zfjXIb0LEbbWCMdlJbbV896DvImEFR1CgeiBKNEPF1xTS0dm3B4MktBARCFSlhzTrfPZy7P4cvS3SCmJiHYwZdMEMg5n8WDrQQR8ARRV4b7R/WjbuyWPdX4Wv8eH1WEDKUPSLgDV61dh0ro3sJVSd+NYnDM+/NzMPB5sPYi8LCdaQGPkN4OpVDuZlb8WVJ7atXYPGYcySa6ehN/n55VbJ7Ds51XUa12Hl2YPCT1Zt6/exVPdn0NRFYQQvLdiDFXrVq7Q+9U9CyDroeCWgIh7EdH9QKmCEBUnmGRicjYiAzsMw6xnYjjLJdL1JTLWiRLZt/gJ3kWEG3sAHbQ8ZGCnMejy/onMetw4JGLA2hwR80S5fPi3PduHhu3qcXRvGp2vbU9MQjRH9hxFFBpbrvx1LdNfmBkKEvG5fWHqvQBphzJZs3gD7S9tVe73orycVT78v39YQU56Lq4cN16Xj89enBlSwcxHSogN6lPMm7aY5XNX4fP42LZiBx8/PyPU7vt3fsad58GZ7cKV42Lex4sr/obz3i18Z+CZgTx6CfLoBcj8+HsTE5MSkTmvgp5BeHSbO2jYS8DeHSiuYYP7I2T69ci0y5E5r2A8FDyAHxF1N6KcblUhBO0vbcUV9/cioZIheJa6Jw1LUFZd13T2bNxvGKFCtLu0FXEphTRzJKfMo3BWGfyEKgV+ONWiklwziTrNamJzGP5zRRH0vvPC0FTJleMORepoAY28zALJ0pSaydgcRjurw0pStcQKuUfpWYSe+7Zh0Iv6DWUe4Ac9HZk1qEL6MzE5eynJHR0B9m4lthZRj0DkvUAJs2fpBi0VI4IuP+xaB1GyeJmUkqnDv6BP0l083P4Zju5PL7Fdyx5NiYqLIiLGgT3SxvUDryiIBlQFtZrWYMRXT/L2369Qt0VtYhKiuXXo9TRqV3q1vJPhrPLh538Iv0xZSO2mNRj+1VPEJcfy8+QFzPt4MfVa1uH8bk2o1bQG5zWvRdbRbB5u9wx5WU5UVWX87y+GxI28bi/j7n6Xdb9vpuOVbXj8vftPOsNWd31jLBzhAewQ/wZkPxvUxE8Bcguyb5XKKJV+P6n+TEzOZmRgOzK9H8hcUKoBClibQ9xYFKVkb7We2h30wyUegwiIfgjc3xgLtZF3osQ8WWLLfLEzj9OLoiq07d2CV+YMK7GtM9vJqoXrqVKnEvVbn8eW5duZ9eZPVKqVzO0jbsARWbGaOWX58M8qg18WmanZDDj/KbweP7qm8cwnA+nWpyM+r5+D2w9TqVYykTERFdZfSegZA8C3OLilImL+h7R2hMy7DMkEJQH0HEBA3BsoEb1P6f2YmPx/R0oN6VsLmXdiDKRsYLsIEf9iiTWf9cNNKFVgzdrZeFhYjr1W9/s3Sxl31zu484w1gfqtz+P9f8eWec7yuav5e/YKWnZvyoU3dTlmHyfKObNoWxbL5qzE4/LicRrFEWa+/gPd+nTEZreWKll6MuhaBngXISy1ELb2xk5L7UJyOZohoJb7UlAiGZAuiB2JcPRGKBVX9MDE5GxFCBW0XUihBD08PvDNRaYuQSbPRrHUCj8h4hbwfBucSRce7CpGsmTaxehRD6HEPFpmv+0ubUlKzWSO7k9D13TufulWAH77+m+mDv+c+JQ4nvnksVCgx+pF6xnVdxxel4950xaTm5nHpqXb2LVuL9c9djmX3NGjot6SMjlnDH6VOpXC1krSDmTgdnpKLESQj9/nJ/NwFtEJ0axeuJ7Y5BiaH0PzGkD3/gmZ9wASiYJUm4EIGOqXhQlsLnauUJJMY29icjzY2lDcn++GzAchZU7YXhH7HNJxGWT2L+FCwdBI53vIqHvKDIeOiHIwcdVYdq7ZQ1L1RJKrJZK6L42xd72Dz+3j4I4jjOr7GhNXjQNg7ZKNeIOROV6Xly/HfEfGoSz8Xj9vPfwhtRpXp3GHsuP8K4KzatG2LFr2aEbX69qHdHAyDmcyfdTXJbb1ur2MuGY0V0b24/a6j9A3+W5G93+LoZe9xMcjZ5R4Thg5wyn4AuqgrYPAJvAvpaCgiTBSvGOGgYgDVLB1CkYSmJiYlBdhqYNI/AKUIsWBtP3F2wqBYu8I1rYY5RCtoNQkfOyrgDj2WNhqs9KofX2SgwEdmYezQsu9UpdhC7ktL2yGPZh1aw/67P1e4wGjKAr7tx7idHDOGHyAui3qoKjGSw74NFL3ppXY7rOXZ7Hs51VIXSJ1ScCv4c7z4HF6+f6dn8vRU2miTBLUBhhvuzQUM/2rg5EDMcYDQDt4Aq/MxOTcRlibQuJ0CgZUapmDJ5EwGRHzFEQ/hkieCXFjMaSTHRD7ygkJq21evh1f0Igj4NpHLw0dq9O8Jg++fifXPHIZg6c9wu0jbsAeaccR5cBqt5wyOeSinDMuHYCLbu3KjHHfEfBr6JrODU9dVWK7I7uPhqpkFUZRBJXrpByzHxE3FplxB+A2Ci/I/PqaflCqgrYxuO0B/yqjWg8eCOQgswcjkr44oddnYnIuo1iqIFN+RbpmIJQEiLyl1LZCiURa6oLrS6TTDfaekPAhWNuUGuFzLL57aw5SN2b29gg79VsbNbBXL1rPiKtHIxRBpdop3D/mdhyRdmo3rcmBbYdo27tFqOzqqeacMviVaiYzbevbbF+1C8WismvdXuyRds5rHr6wc/3AK1j4+R9h+2o0qkalmkk8/dFDHAthawmVVwN+cM9G5ozEkEAWIFMxZJEtRrivtYORKCIBdNBLnnWYmJgcG6FWRcQ8HrZP+lYYCVr2bghhROJJ/0Zk5kDAA97fwDkJwxwq6JYGiPjRCMvxFTqv0bAah3elBmtqSKrUMQQTpwz7HI/LCBZJ3XOUf2avoMfNXWnSsQFNOp56v31hKsTgCyEuAyZgZDR8JKUcXeS4HfgEaAukAzdLKXdXRN/HS0xCNJGxkTzd43mEMJLeXv15GOd3a8LR/ekc2HaIBm3r4oh24AmGXFntFsYveYH4lPIvphprBTakCCpmAiAhsAGwgYiEiOvAcSG4vzR0O6QO0U9V8Cs2MTk30Z0zIfc5QrUn1JqQ/J3hrglshlBkT36YZvDfwFpkxv2ISqVk7JbCoKmP8MaAiRzYdoibB19L3RbGmkJMYgyKItB1iZSS6IToCnqFx89JG3xhiL68C/QG9gPLhRA/SCk3Fmp2L5AppawvhLgFGAP8ZxU8fpvxF97gExdgwWdLAHj2ipdRVAV7hI0nJw7gzQcn4fcFGDCu/3EZ+zAcl0PeZNA2BXfogMcQfHJ9BJ7vIHkuIrAD1BSEWu3kXpyJiQlSz4TcYRQET3iDOvibwNbSmFkjMEygRrEonxOQJY9NimHkrOIZ8o+/fz8jrh7NwZ1HaNWjGZuXbSOhchz1WtY57j5OlopYtO0AbJdS7pSGaPSXwLVF2lwL5BdznAn0FOUpG3WKOK95rVB2mz3SznktavPlmO/wOL24ctw4s13kpOdxw9NXY3PYmP3+PPZvO8FV9MA20HYFN4q+ZAl6GkI/jLC1NI29iUkFIUOCaoXRQDXi4oWlhlH1KuZpiBlhqNNiC/5FQGS/cve1fdUuHmwziHubPcHqReuLHa9UM5kPVr/Gw+PvYtXC9UwfOYPHuw5n1/q9JVzt1FIRLp3qwL5C2/uBjqW1kVIGhBDZQBIQ5rAWQgwABgDUqlUkYaIC6dW/O2kH0vl79gra9m7J1Q9ewu71+7DYLCEZU4/Tw4xxP+B1edmX62bcXe8w4c+Xy92H9G8FPQ2ppRLm0sFGeLFyiRTJxR4FJiYmJ4FSB0MoLV8dU0DcePAtRfdvRjguM9baLPcav72o25HSD76lhrvV2rpc3UgpGXLZS2QfNZInR1wzmpmpk7FHFJdLWPzVnyHPgq7prF64vtj64anmjFq0lVJOAiaBIa1wotfZtX4vw696lYzDWVw/8HIGjL0j7LgQgluH9uHWoX1C++579TZS9x5l+8pdXHRrV+q1Pg9FFfn3ReaRLD598WvskXauevCSMhO2dOdnkDsGhGpE5WDBCBfTwd4LfBtA7gUEqPVR1NOzQm9icq6gKAp60o9BH34w4cqzCJn3FuBGuj6DpJkIa8PQOUJYwX5B2HWkdtgodahWBXvvYvWsdV0Pq1KlBTSc2a4SDX6L7k3Z8NdWvC4viipoeIoE0sqiIgz+AaCwNkGN4L6S2uwXQliAOIzF21PCuLvfDcXYz35/Ht36dj7marhiUbHarOi6xJ3n5fzuTajVpAZ7NuxD03RcuR4+fWkWiqLw9w8reOO3F0q/mDNYZEEC+iGIuhucHwCaEZET9Qj4fjMWam3dkFJHiHMqJcLE5JSjWGtB4jQApJ4HzveBoDghHmTmAEj6CumZD66poNZGxI1DqEnBczKQadcYkidChci7ETFPhPWhqipX3t+LXz9dghCCJp0a8O/8tUTFR/Hv3NVsX72byrWTiU6IpsdNXbBF2Ni0dBu9+19Isy6NTt+bEaQiDP5yoIEQ4jwMw34LcFuRNj8AdwJ/AzcAC+UpVG3LFzQCYzRfeLs0PnvJSLbye/3M/3gxleukMOGPl9i1fi8Bv8b/Lnoeza+hobH+z81IKYs97UOolYOLPjpIzRBGC0UCuMHzfbCajh/ck5G+xcHogYpVzTMxMTGQzveD8uOF0A8js54E/wbADdohZPZQROIk47hvDUaEj88YvLl/gCIGH2Dge/fT8/buZB3J5o0BE1m1cH0oHh9g419bAPj5o1/p2a87Xa5pz8Hth5k1/kcuu/diomJPX0W7kzb4QZ/8o8BcjLDMKVLKDUKIF4AVUsofgMnAdCHEdiAD46Fwynh4/F2M6vsaAI3a16flhU1Lum/eeuQjfp3+G9XqV6Fq3cqhVGe/L8AnI2fQqkczmnZuhN/nJzImEr/Hj2JROa95zdKNPSDi3kRmP23oa0c/irDUR7q+wPAnOgqMfT7aHnB/W2aiiImJSdlILQ3QEWql4gf1dIrXjNaNgVkoPDMQLsdgqQcyENywgfX8EvsVQtC8a2MWfPY7Hqc3zNgXJuDTmDt1EfM+XoxQBKqqMn/6b7z/79gy7UlFUiE+fCnlHGBOkX3PFfq/B7ixIvoqD+0va83X5PuMAAAgAElEQVSXByaRm5FH5Top/Dbjb7at3MEF13ekaWdjGrVszkp+/XQJHqeX3ev3ER0fhcWqBpMmQPNr/PzRApp2boTVZuXtf17hq7Hf4Yiyh/n+S8KIAPgqfGfiNKR3iSF/7P6yyBkKSOMBIL1LjS+n/UKEElUh74eJydmOnjcR8t4BQEbdW0zHXkTeg/TMM2bcIbeOgKjHwDk+WDRLg6gHCs6x1IKESUjnFLDUQhwjR6Z6gyqUx3GRL9miB3R2b9iHK8dFVNzp+a2ftY7j6PgoqtatzOz35/LGfe/z9WuzGdz7BbavMkIkndmuUFtd09E1nQHj7sAarIZlsapsXbmTP79bBkDl2ikMfPd+Boy9g5gTSJwQtjaI6EfAOw9jmhg6AiICKd3oOeORWQOQOc8aJdekt7TLmZiYBJHSB3kTMKLffOD8EKk7wxtZ6kHi12BtQUF4tA0hcxBJP0LcOEicioi4Juw0Ye+EkjgJJXZ4meqZAI07NOCxd+4NiaMBNGhXl8q1S5BjEaCoCklVE4j8/+TSOdP5+4cVobRmXZOs/W0j9VufR+dr2/PZy9+Qui8NpOSel2+jWddGZB7J4pepi8hJy2Hnmj28evsEXpo9lFYXNT/5m9EOBwucFMZmVLzKewPjixj09etHDd+irc3J92ticlajUJBAFdwupHYp9Qxk+k2gHQm2VYy2QjEGW/4NkPU4EECqtZFJP6Eo1qKdlIsr7uvFFff1wu30YLVbsFgs7Nm0nyGXvEjawQyq1avClff35MD2w4Dg9hE3nDZ3DpwDBr/tpS3Z8OcWPC4viiJo2sUIw4qIcvDB6nHs23yAmMRo0g5kkJ2Wyz0v38aeTfv567vlAAR8ATYv3YbNYeW9J6YhFHj07ftOqOakFA7C/YhJQP4DIH+/AKQxvTQTsUxMjokQFmTc65DzDKBD7IthARDS+UVQhTaA8TCIMcoi2jpCxDVwtBehNTVtN+S+DHEjT+qe8sO2//p+OV+N/Y5WFzXn4Ql3n5B3oCI56w3+DU9eTVRsJJuXbafHzV1p3KEBG//ewr/z19K4Q30ad2zAg20GkZfhRNd1Rs8dQbe+nfh33lojSUIIohOieObSl0LaOo92GMJLPw6l4xXHOfrOvJ/wpKsMimUDKtVBiUfEDESoVU7mpZuYnDMoEZdAxCXF9ks9Ezy/EDb6j7gBop9GeH5A5n0IepEoPm3PCd3Dhr+28PYjHyIUhSc+eIDIGAev9HsTr8vH1n934sp1M+rbwSd07YrinKlpm8+mpdsYdPFIfB4/tggrPft1Z8GnS0LVaNpe0pLRvwzn4+e/5IvR36FrOla7xQjJDBSMzlNqJvH5nonl7ldKDXmkyTFa2SHuJYSIAlsbhJJ4Ii/RxMQkiJ5xF/iWEVo3U+sgkr5E5r0DrlkYAzArBRm5CkQPR4m+/ZjXduW6ObTzCNUbVMViVembfA+uXGNBODohisHTHuXV2yfgzjWuHZMYzayjU065C6esmrZn7aJtafw7bw0+jx8pJV6Xj90b9iEU4wNQLSoJVYys18N70tD8GlKX+Nx+4lJiw65jsR7f5EgIFSzNCNfTyf+/CpYWEDMEskcgswcjj16G1I6c4Ks0MTEBILCdkLEXUYjYF4yIOPfPGNE6muHvjx4FakPABnnj0HPGlXnZfVsO0K/OQzzZfQR31n+U/dsO4fMUzN5d2S4ad6gfNoF357pZ9OWfYdfRAhrphzLRtFIKq1cw55zBb9KpAbYIY0HGEWnn4lsvoPcdFxIdH0WTTg148DVDhqFFtyah1XZ7pJ3H3rmPLte1RyiCqLhIBk975Pg7T/gIRAqhRSZLW8BuCDfFjQPPTxgZunlGkWXP/Ap5zSYm5ywRN4KIACJAxBgLuEd7B4sS5Q+4NLA1C+bHeAA3uKaUGWL59euzcWa5cOd6yE7L4Y9Z/9DhyjY4oh04oh1cdOsFJFSOp/M1BQPtgF9j19oCd1Hq3qPcVvsh7qj3CPc2fZKcjNySuqpQznofflHa9m7JoKmP8sc3/5BQOZ7FX/1JUrUEpmyeQEKlAgnky+65mIA/wKoF6+lyXXsuuL4jF1zfES2goajKCU3LhH8tEifGAq0O5KBUWYee/QKkX1qktQJq9ZN5qSYm5zwieiDY2oKeCvaeyPRbKXDfWMHaBhE7CNS6RVbTdCMJy1Kz2DXBqKthsan4vQFUq4XohGien/k/Vi/agKIIWvZoBsDl9/bkz2+XBW9GcEGfAl3JL0Z/S1ZqNrqmc2TPUeZ8+Cu3PHN9Rb8FYZxzBh/gwhs706xLQ+5q9DhelxchYMXcNdzzym1c/eAlCCEQQnD1g5dy9YPhhli1qCfesRIdTPwIIqKQ2kFwFy1pGA3R94G9x4n3ZWJiYgzMCgmiSSUBNAXQQVgQMU8jrEY9WWm/CLxzC9q6piNiny3xurcN68OW5dvZsnw7bXq14Ir7e6EoCm16Gtm4AX+AV29/i6U//Uu1+pXpfUcP2l/WmjrNCh4gVpslNHAUQhy3m/hEOCcNPsCRPWmowYLmUhqJWB8Onk5C5Xi69enI0f3pzH5/LlFxkVz76OUh/fyTQaqNCQ/LzI8JLjJ1tHdFiX74pPszMTEpQsTN4F8JCLB1R9haFRyzNjfEDfMXckVssdN1XefPb5eRnZbLczOfJjYxpsRufp2+hKU/rcTr8rF380EO7TgSZuwBbhvWl5W/rmPvpv00aHMeVz7Qu+JeZymcswa/Xqs6xCRF43F5QwXLPU4vO9fupsPlrXik/TNkp+WiWlVWL1zPq78MP+k+hb4PWXjR1r8eoVZBihpBueQgltMvm2picrYjpYTckYRCNL2LkHoeQolGSh0ibzb08H0rwNYaEXVPsWu8M3AK8z9ejJSSz1+ZxZRNE0ocDDqzXejBhVg9oJGTmVesTXxKHB+tH4+maajqSXgOjoNzbtE2H0eknYkrx9Hn8Suw2i3YHFbskXY6XdWOw7tS8TiNB4Hf42ftko3HvmA5kERgFDPPx4r0/gFK/kgfwIGwda6Q/kxMzkWkdgDpXRKsehV2xCgtGsKHzPofumcRMrUdpHYCtRKi8hqUxI9LlFJY9MUfeJxevC4fzmwXu0upWtWrf3cSKscTEe0gMjaSfs+Wrr91uow9nGMjfF3X+W3G36QfzKDHzV1Irp7EA6/dSfcbu7Bl2XZa9mhKnea1SD+UiWJVjfokFpUmnRoe++LlQJCLFBFGBA5gaHLfjzHiUEGpBDHDEfaiBcNMTEzKg/QtR2bcZ+jXY4HkH0IJjEIoyOhHIO99QgmQvoXgW0TIrer5BSJuKlXSpE7zWmz+ZysBv4au6VSuU4IyJxCXHMvUzRM4sO0QlWqnnFYJ5LI4pwz+pP99wk8f/orm1/hi9LdM2/IWMQnRNOnYgCYdG6AFNJ694hVWLliLrukhH3/3m7pUzA1YGoNaGwJ7ARfhImoaCDtKxGVhp0gpka4p4PkNHD0QkXefVu0NE5P/T0jnFMAdtN9W8PxsFCAKokQ/gq7UgpxBFKynFQ2/LCqjXMCobwYx8X8fk3k4m37D+4ZF9hXm8O5U9m89ROMO9c8YYw/niMH3ur38PHkhcyYvwOM0XCoWr59t/+6kTa8WoXZLf1rJ+j83owczavMza+dMms81DxZP2z4epJRI5yTQc0GtAdpeCsLDACIg4rri57m/gVyjLBv+NaAkltjOxMQE47cVqhttQSqVkc5p4P3NkByPvBPhuBCZY6FA5iQ4G0AD+0VgbQuA1I4ic54DLRUR/SjCcRGxSTEMnvposW6llPh9ARZ98Qe71u1l9sR5WKwqNoeNSWteI6HymVHG9Jww+COuGc36P7fg9xQUHfG5fdRsHB7nLhRRrJi41WYptrp+QngXQ96HGNl9VowvmQ1QwFIfrM1AOa94uUP/Ogr0u91I/waEafBNTIoh/euMmTAKiESI6AvSC7njATf4VoISh4i4Hpk0C7IeMWpPOPpCzGAEXoRSEHUjswaCfzWgIbMeh5RfEEUEDfdvO8Qzl7xI2v504lJiceW48Xt86LrE5zaSrf74ZilXP1Q0z+a/4aw3+FJKVi/aUKwKjS3CTkqNpLB9Ha5oTauLm7P0p5XYIqyk1EiiYdt6PPbufSd/I/phCqaKfrC2RDh6I0UU5LwBgQ3gnoF0foS0NgBLQ0TU3YiIK5HumRh+fgvCcWZ8cUxMTgdSaiC9x9SiB4watXp6/omGKyfzEcIGTL61iIjrUayNIOXXIlewhW9quwlF9AjVUNxUq6FpGh6nl6jYSN5+9COO7k1DSknm4axi96QoguQidua/5Kw3+EII6p5fm90b9oZcNKpVpV7L2sXaqqrKyG8G4c7zEBkTUbG+cnsvEBMAK0gNEf0wwn4B+FYiySbkR9Q2Gn/YkPpRw+cfmncIUEwFTZNzA+lfh8y4G6QTae+FiJ8QPvst3FZKKBqVkz0IAuvC99m7lv8GIm8D50cYv7sksDZnx5rdDLp4JK5cN216tcCT5ymQYBAgEEgpUVSFmKRorry/F52ualv+Pk8xZ73BBxgzfwTTX/iawzuPkJftomrdyjwQ1MwpzPJfVjHqhtcJ+PzcOrQPtw3rw/ZVu0mqGk+lWgVVazJTs1mzaD01G1enXss65boHoaZAyi/GFFE9D2EJPnDUWpS8SOQD18egNCUUyins4PsHLDcc1+s3Mfn/iMweCTJYL8L3O/j+LtVgy9zXMUKbg78ltQ74/izSSkEch/SxEv0Y0toB9DTD/y8cvPv4VHIzjWpa6/7YTL9hfdm1fi+aX6NWk+pYbFa2rtgBgCfXQ+er2+H3BcKyav9LzgmDH5ccy6Nv3XvMdmPvfMfQwAe+Gvsdv834i7QDGeiazjPTB9KtT0d+nDSfdx+bjBACRVV45pPH6Na3U7nuQyjxxeQShJqMjLwbXNMIq3gFgAShAw4MUTUdrI3K1ZeJydlHGVLuntkURL3ZQd9fQiMVqTuLrdOVRdEQ6cI2WwC1GldnxqGPyEnLYd0fmxl//8RQIqfX7WP07W9xcOcREirH8/riUdRoUPU4eq94ztnEq5LQtIKRttQlR/en487z4HX7mDbiC1YtXMe7AycT8Gv4fQG8bh/fTPjppPtVYocgkmYi4t8BiqRqOy6AiP5gbWdU8rGef9L9mZj8f0DEPW9Up0IFW1ewlREebW2OEQwB4AXpKqGRBs4P0XNGn/A9PfrWPcQmxaCoCi0ubErHK9vgiLSjWi28cd/7oboaABabhaP705G64d+f+NS0E+63ojANfiGe/OABbA4rFqtK1+s6EHLNKYKEKvFsXbETPVAwyhCKoHbTGhXSt7A2Rzh6QsJEQhMvkQKR90BgmVHfNmcE0lt0mmpicnYirC0QlZYhKi1HSXi3mP9eyoIBmogbAxSWOJDBbTtEPYrxMNABL7imGYvBx8G63zfxzZs/IRSFr498xHdZH/PS7KEhMcWc9FyEUnB/qkXhsnsuRlHz90m0QPE+pZQs+vJPPnt5Fvu3HjyuezoRzgmXTnnp1rcTHa5ojd8bIOtoDhv/3kq6x0flOpUYNOURcjPzmP7C1/jcXkDQtHOjEtcCyosR5/sC6BmI6IEIe0cUe3tk5dWgZ4CSAt4lyMB28iMNZO4YhP2HinnBJiZnOEKoIMLrwMrAXmTGHaAfQtovQcS/ifQsAYro1UTciBL3HFJ3IZ0fEapbK6I4nrHu77P+YcydbxvJmMNVJvz1MnVbhAd91G5ag8Yd67N1+Q50Taf/8zdy/eNXsmvdHrYs30FEtIOLbrmALSt2hNXD/mTUDGa+Phufx8+Msd/z0YbxxaIHKxLT4BfBHmHHHmFnYJdnSTuQjpSQcSgTq91CcvVEOl/dlgPbDhGbHMPWFTsZevnLPD9rUKkZd2Uhsx4G/3qMON8BkLwQoSYhhA2C6eC6zCskqSyCU9zg+doh8P4BlroI25kTCWBiciqROS8Gw5wl+H43wpZzXire0PM9un81WM6H2Ocg720QVkTcmDIXUP/56V9eufVNAn6NAa/1Z9X8dXhdhqtGt0iW/byqmMFXFIUx80aweel2ouIiQ7k745e8SE56LmPvfId3HpuMrkuueqA3D75+JwBLZv4TSgaVwMa/t3LhjadOS8s0+EG0gIY7z0N0fBQA6Qcyw1w6Wak5jO7/Fns3HTDKkQWPbV66nfeemMqwz584/k4DOwkrrqwfBDUJqeeBb5nhvnF/WdBGxIK1FXrOy2DrAdkDjXJtCGTMMITQkdphREQfhKXWib8ZJiZnNF7CItv0LCNOPuRtFYACMhcC640cF+9cRKXfEKJsmXOv28tz144J5e28/+Q0et/RA0VV0DUdi1WlXqs6JZ6rqirNuoQHVQgh8Lp9rFywjoDPWFT+7u05PPDaHQghaNGtCYd3peJz+9A1vcRw8YrENPjAluXbeeaSF/G4vLS7pCWjvhtMnyev5OvXZqOogjrNalKzSXV2r99XrOyZFtBKTLgoFxF9wD3D+KIqyWBpiNTzkGlXGS6dMOkFjC+wawqggesLjGlpsE3eG0jpAnxI18fI5F9R1DMn4cPEpKIQMUOQGf1B+sDSACJvB+8CCGwzZsNKJdALq1hKQ7BQOwyWsg3qluU7wpI09YDO4i//MCJvBCTXTKL9pa3KuEJx5kyaHzL2ALFJMaEZxsMT7iaxagJ7Nx3g6ocuoUbDaqVdpkIwDT7wzmOTcWYbq/prf9vIv/PWcufIm+l0ZVvyspw0u6AxSMn53Zqwedk2I5pHgi3CitQl/Z+78YT6FTHPGnHFeibYeyOEHen9HWQ2xYw9EB6vr1IwO7AHFTiD50gnZN6LHjcesgYYGYIR1yJiXz4jYoFNTE4GYW0Klf4yfjdKZYQQyMTPwPcvUsSAdz44P8T4feiAAkocUkkC/yZQqyGUkl2wlWolo1rU0AJrTGJ0gbGWkHno+Ad3P09eWHDviuCuF28JbVtt1hO2HyeCafAhbHUdwOfxMe/jxUQnRLFl+XaGXvYSUoI9ys7VD11KQuV4Lu53AWn7M6hcO5nEKgkn1q8QxcsYqtXCyyCWfjJEDQbvT2BpaiSHFCrPRmAXZD8F2j5AB88ccFxilk00+X9NfnSNEPbQOpexbQV7J2TOGHB9ToGxD5q4iFsg/ZoCjfzET0oMca5SpxLPzXyaaSO+JKFSHE9MeoCnLnyOgD+AoqphRcmPxa51exjZ9zWyjuYgFIHUJTaHNUyw8XQjyqrM/l/Srl07uWLFitPS1/bVuxjc6wWcWU46X9eePev3kXYgAyklPo8/bIpXp3lNPlz7xim9H901A/LeMow4Ktg6gu8vCkb4AuInoTguDJ0jpReZejHIo8E9EaDWBG1rcDsSEf8qwnH5Kb13E5OTQepO0A+BWssIXiiE7voackYaGzEjUKJuKXa+nnpxyUlXSiLoTkJZ6/aLUBI+KNc9ZR3N5qdJv7Ji7mpsETb6DetLi+5NyzzH5/XzUJtB7N10AAiGcDepwb2v9jvlUgtCiH+llCU+mcwRPlC/1XnMOjoFv9fP3s0HGNh5GH6vv8S2ml9j5YJ17Fq7h/aXt6ZWUHHzj2+XsvTHf2nd83wuvq1bmf35fX7W/b6ZmIQoGrSpW+y4EnkTRN5kfPmlC6GmoKd2BT3fmEtwz0Lauxdy0Vgh4npwTQd8EHkT2C+FrPuMDF1LXbBffILvkInJqUcGdiDTbwYCIOIg+VuEkmgck96gsQ/+LnOfQ1croTguLjiu54C1NXiPEl5ZTjVyWkIiahZQyj8rj0+JY+1vG9m8dBsBv8bGv7YwdctbJFdLLLH9u49P4Yf35qLrBS5Ye6Sdpyc/ROMODcrd76nANPhBhBDYHDaO7D4aZuxtDit+XwCpSyw2C12u78Bz145BC2hMe+5L3lsxhoPbDzO6/1t4XT4WffUXQKlGXwtoPHXh8+zZsA9d17l1aB/6DesbOi6lhnRNN+rdRlyHsF9gRO0oCYUMPobcsrYDqdZDOj80dHf0DIyprAMR0RdhbYxM+cPYr9YoVXjKxORMQOZNLNDOkT5wfwtR+ZIokmKaU9mjwHEx0rcGmXmXcY61NUTeAdp+Y4brnWf8G/sK5L1huD0tDRExg8nJyGXdkk3UaFiV2k3LlkDfuXY3Ab/hTlJUhUM7jpRo8Heu3cPPkxeE5BUQRjnVxh3q06Bt8cHd6cY0+EXIOJSJxWYJLdSk1EjipZ+GYrFaSKwSz/CrR4f0dhRF8O+8taQdSA/F6XpdXlYtWFeqwd+1fi+71+8Nxd7OfH12uMF3ToS8SYAb6ZkHSZ8hPYsMn3wYwUxC71xwvluobCKAhsx+Hhl5OyLiKoQlGhOTMx49p9BGACn9BTqxwoGM7B/UnAqiGOZL5r5oBCoABNYjou5BOAYFG/2voH38GGAMYAggDjj/CXweP5qmMfTTx+l6XYdSb61nv278+MF8tICGoigk1yh5dG+M6gsCI+JT4njkrXvoen3701q7tjTMIV8ROlzRBpvDimo1Ppyj+9MZ1HMUMYnR2Bw2mnZuiD3S8C1qms7v3/yDx+3DFmHoeNgjbXQsw0cXXykOPbgmIIQgsWqRqaX3bwqmnhL8a4PGvPDoRoHoRxGWmkYsv/SGXwM/BFZBztPI1HbIwI4TezNMTE4nYfo3AqQP6d8UWqhVYp+FiNuMY0RB9CCk9GPo2BdWNbNyLJb+tBKP04sr143X5WPGa2Vnr194UxcCfo2ATyMvy8mDrQdzZM9RfF4/bwyYyL3NnmD6C19Tt0VtLr61K6pVRbWq5GU5ef3e9xh08SgC/kCZfZwOTINfhMq1U/hw3RuhOpQ+jx9XjpuNf20BoP9zN3LToGtp0LYuihCs/W0jv0xeyJX39eLmwdcy4qunuOD60ouQJ1dLZMgnj1GtfhUadajPqO8GhzdwXAJEEEoesXZARN1pLDoRAUolRMpvKNEPFLQXDkr9KGUuMueVk3lLTExOD9YmFOjhWMD5ATL9FmTGrUHDDkrcSEheCEoUZA9GHu0F0Y8bevUIsPc0hNaOQZU6KaFnhNVmoWajsuPfZ73xI5q/IHrO4/SwZOY/fPbiTBZ89jt7Nx1gxrjv+eObpTz14UPMSp1MUrUEAr4AHqeXnWv2sCFoQ/5LTJdOCVSqmUyj9vVZtWAtAb+G5teoWrcyAKpF5Y7nbwJg28qdgOHGyTqaw7PlzLbt1rdTqZLKIrI/qJWR/i0IR0+ENbjIk7LISBxRqyCEzfgBSDfCUh8ZMxxyni2jx+MTijIx+U+Ifsxw6wTWg5YKMgtjtroNfCvAHpQccE0PVrbSQE8F3x8olf5CSs3Q3ikHrS5qzp0v3MxPH8ynbovaPDT+rjLbJ9dMCoVWgjE71wIaezcfwBdUyPT7AhzamQpAVFwUsUkxwWpYhqsnJuG/d62aI/xSGDL9Mbpe14GG7eoy5NOBxTLg2l3aCnuEDUUR2CPt5dbEByM+9+vXfmDlgnXFjgkhEI5LUWIGIqzNCu23ISxGqJr0rUGmdkSmdkLPfAjyJhe5ig2oglHbM95I8DIxOUOR0o+ecR+ktjOCEeLGGwut+UNwqUHhRClhp8B0qRj1Iii3sc/nhievZurmtxgx4+nQjL407hx5E+0ubYXFlq9kC9Nf+Joajaphj7QTGROBPcJGt74Fs/uhnz5OjUbViI6Pov9zNxbT3/kvOKk4fCFEIvAVUAfYDdwkpcwsoZ0G5Fu3vVLKa4517dMZh18epJS8/+Q05n2ymJqNqjPq20Ec2ZPGyl/X0qRjg7BkiszUbMbfP5HDe1K58amrqd6wGtXrVyEuOZZd6/YwsPMwAv4AqtXCk5MeoOcxwjiLoqddb+iDAIhIUKqBtr1QCxVS/jGKNYgohDAnciZnLtL9EzJ7KAXZ5XZI/BSyhxgjeGtH0A6AtRUibriRPJVxB2i7jNrQCVMQyomNno2a1+vJSs2h45VtiIyJKLGdrusMv+pVVi1cHyaT0LhjAwZPe4Rd6/bStEujUkM1TyenMg5/CLBASjlaCDEkuP1MCe3cUsrjE6A4w1g2ZyU/T16Ax+ll24odvDtwCiNmPE2TjsXjakffPoE1izeiBTTG3vUujmgHAnh98ShWL9pAwB8wFoD8Ggs//6PcBl93TgHnVENTpzCR90HukEI7VAR+hJJ84i/YxOQ0Ib2LCZcS8SH8qyB5DjJvKjiDBUu0TUjtIOi7gi4dG0Ted8LGHmDac1/yzZs/gRAkVYln0trXsTnCE778Pj9fvPqt8dstZOytdivnNa9JzUbVqdmo+gnfw+nkZF061wIfB///MXDdSV7vjCUnvUBrW9N0Mo9kl9gu43Ama5dsCit24Mnz4M7z8NXY72nQ5jxUq/GctUfaad61fCULpX8t5E4A/QhID8azWgH7RYjI6yBmKIYrxw4RNyLUso29lDoysM9I7jIx+Y+Q2gHw/Fx0LzJ3DPJIkwJjn4//byMDXQazZp1vn1T/P30wH4/TiyfPQ8aRLLatDA9/llIy9LKX+Wrs9//X3nmHR1G8D/wzezW90hEEARFRVFSKBSwUsSFYQQFFURS/6k9EFFEBRaVYsNFUBJUqKoKCggiiIL33IjVAQnpyubI7vz/mcslxlwAioWQ/z4Pmbmdn5+b23p15a1B8js1p44b7rzmm7v9M42RX+JWklCn+vw8ClUpo5xRCLEcVnXxbSvn9SV63zGne/iq+fmMa6YcykYak68D7wrb75LlxQdb8QjSLxqp5a1n68yoatWyA0DQublaPe/vceXwD0FNBaP4UsAZotRAVvg+kexVRDyOdtwFehCXU48BwzQbXt2BvBJEPQ3pX8G0BfEgEWBsgEseqursmJmWFkU/4dWcJjgZaVZCH/C8soJ1cjdhq9aqQm5mH7jMwdIOKNYIXSvk5LtYv2oTuK3KLTqqawBszX6LOZbVO6tqng2MKfCHEXJQF8F8AIboAACAASURBVGj6FX8hpZRCiJIMAjWllPuFELWB34QQ66SUIc7hQogeQA+AGjXOrHzuUbGRjF47nF3r91KxRnKJBU9yjuSGpFAGMHSDnPRcpFQZOQd8/yJX3HQC9WntzVQFLANlxIrpFZLbW1gqhD1VepZBVh+gADx/q4yBvm0EhZ/71iPTH4boJxHOVsc/LhOTk8FaBxzXg3sBwekQwqAlQ9IMcI2H/PFgqYmIC1P45AR4dWpvRjw5hiMHMug64N6QalMR0U6iE6LJTlNq1LgKsUzcO+qszTp7skbbLUBLKWWKEKIK8LuUslQdhRBiHDBTSjmttHZnmtF2+S9rmDpsBlXrVOaxdx4s0bizcfEWXmzzBkgZiKY9mohoJ70/f5Lr726Gz+tjzhfzycvKp1XXlqVWzpKyADyrwVIFcYy83oFzjCxkVl/l/XBc7pkREDsQLfI4dx4mJqVg5E2CvA9AJCASRiCsdULaSCmR7nmQ1TtM8XEBUc8ioh9GCOcpH+/Bfw7z89h5xFWI5faerbHZbezetI9RvccjhOCJ4V3OeH19aUbbkxX4Q4EjxYy2iVLKPke1SQDypZRuIUQysBi4U0q5sbS+zySBv397Co836o3b5cHmsNLs9ivpP+X5Ettnp+eQti+d3yf/ybR3fwSgVZeWzPv6DzRNULlWRUYsHowz0sGAu4exbPYqdJ9BfMU4vtw6IsRo9G+RUkemtfOnSD6BKD9Ha7SEj47qSwLSzMdjctxI3x5VzKfQIGupA0mTILMvyCMQ/RyaQ7kzSyMXmXqDvxZEIQ6Iewst4rZ/dX3DMJSb83GuxtP2p/NgrSfRfTpCEzS/8ype//aFoDap+47w8TOfk5eVz8NvPECDpvX+1dhOJaUJ/JP99b4NtBJCbANu9r9GCHGlEGKsv81FwHIhxBpgPkqHX6qwP9PYu/lAINWC1+0LMewcTWxiDLUvrckjb3bi690jmbh3FM+Nepyvdn1M78+fJDczj44VHuGLVyaybPYq3PkefB4feVl57N+WUmrfJ4SRpoqflCjsLYANpdkr9C+OCIlUNArmIw9fhjzUECNv3H83PpNzG5mp7E6FGOmQ2go8c8G7CjK6IX2qMpXQolXdWSIAK1hqQcxL/1rYj3t1Eu2cD3BXUjfWLjw+cTPu1UkBZwtpSJbNXh3S5uV2b7J4xnJW/7aevq0HkZd1djk9nJTRVkp5BLgpzPvLgUf9f/8FnICy+syjQbN6WO1W7P5Aq1ZdWhzznNzMPNIPZlKtTmUsVvWwiK8QxzeDp5O69wgA374/i2p1qrBn8358Xh9CCCrWDK+HPxbSyADX9yCiIaK9KgihJYIWA4aXkEyDAI7bIOZp9WPzrEG654DtSkSESuYmpYHMeQ/yxxSdnzMMw3ELgjxVbUiL+lfjNSkHWC9WxXl8G5XdKbI75A0r1sBAejcgrDXUDjLrVQJ5pPT9iIhjhuuEZd/WA0wdNgPdZ5CXmU+/WwfzQ9Z4NK309e2O1cELueRqoT71B7YfDGTClFKSdiCDqLiz5zdgRuQcB7FJMYxeM5w/v1tKxRrJNLn1ilLbr124kX63qvw11etV5f1Fg3BEKANrfnaRjlIaBt3euJ+Jg6ezeel2PC4PU4fNoNvA0MIOpSGlB5l2l79gigbuhYiED5XQT5yiglq8fxc7IwYqzkfTYovect6AcN4Q3LFrqkq7HPSwkJD+AOpZb4HEbxC2+ic0XpPygRAWZMJ48K1BaBXAUhmZN4Ig46z/HpQyDyi+Wvb63Y9P3Mfe6/EFUhkDFOS7WTJzBc3vuCqo3fZVu+h/x9tkp+fS7rGb2e0vVlLI4J+KItSllIwfMBV7hB1dN7DZrVSqWYHqdU/OS6isMRWyx0lSlQTueLINTW9rfEyd4Ni+Xynf3jw3uzfu5ZXb32bB1MUAVCuWosHr8VGhWiJbl+9EGhKfV2fSO9/jynWV1HV49D3+vCMeoMBvoFUIa3WwVg9ur0UEC/tiSCNXGYcB6dtJcECMANtlKi+/dIHMReaOOLGxmpy1SP0IRuYLGOk9kN7QtCBS6hi5n2KkP4aRNQwjexAcvgrSOyPzPgVskPQtWOujkqQ5IKMnRu5ohL5XHQ+gHTOWpDhul5s+rQbQxnYfQ7t9RExi0arbarMGalYXZ3DnD0jbn47H5WHW6F/x+zwDEF8xlmp1ioT53K8WMnXYDHIz8hBC0PT2K/lwyeDA7v1swRT4p4CouEg0TT0UvG4fq39bz9CHP2LRd3+T5lfnADijHOzZtB/NWvQ1aJoWuInWLNhAp5pPcE+VR/nj2yUlX1CrjNLHC8AK1qMcpbRqBH3VjvBlDo2c4cjDVyMPXYnhmqG21CJC/VMngncdRalorUplZFIukBmPQcEs8PyOTO+CDMpfX1jL4VPwLADXaH/1tTzAANdMpHs+mq0eIu4d1P3qBgogb5TKnSMiUfeWTaVTOAFmjZ7Lhj+3YOgGu9bt4bIbGuKIdOCItFP1gkpce1dorvuC3KLFjMWi0fjmRkp167TxzKc9gtru23ogUAfD5/HhcNqIiA7vqXcmYwr8U8Azn/agWr2qaJainYA738Pq39bT4t5mOKMcWCxq6n0+ne6DOxER7cQZ5aD35z2xO+1IKXmt/RBS9x4h81AWgzu9T25meAOR0KIRiRPBeYuKsk0cHXw8qptamWMB2xWImGdC+pD6IcgbizLweiDrZYTtYkTSj2C/FnWrFKh/WjJgA2tdRPQLIX2ZnDtIqSNdM5F5E8C3nSIHAAn6UQ4GnpUE7wiL44bMZ5Herf7ygoUqF6HuJ/0fkP6+tSoQ/8EJjdPt8gR067puEBkbycS9IxmxeDCturTg2Wv780HP0XgKPIFzer7XDbvThiPCzqUtGjDg+z5M2jeKaamfh6Q4b3lvc5xRDiJinDgiHbTtHmK6PCswi5ifQv6etYJB972LO9+DI9JO/ynPc/Utl7Nw2hL+Wb+Hn8bOoyC3QJU9HPsENz5QlFPHMAxucTxQVCoNuPymSxjy66snNSbpXoAs+BlsjRERdwfUU4ZvL6QF38Si0kaEsCLzJiBzhqBWZFaI7IEWG5oKWnpWqMpcjmsRlnCxeiZnG0bWy2pVLwsrOQlAgqUCIvlnpU707UXaroCC+ZDzKiULfQER96DFvYHhmgU5Q0GLR8QP99uZ/F4xIhIR916oTakUstKyeerqvmQezsYZ5eDDxYOpUrsSi39czuBO71OQ58YeYeeu/7Xj0bc6U5DvZubIX8g6kkPT2xsz57Pf+OPbJdS5ojavTetNdHyoITZl1yE2Ld5K3ca1z2hffLOI+Wmiya2NeW1ab1bPX89lNzTkqraXA9DinmZomsCV48Ll31ZOfOu7IIGfcSgLq82Cp5jAX7tgA0dS0omvGPevyqVJzzJkxtNAAbh+RsoCRNRDAAgtCYlGkYFWo1CnKSPuhNxhRWkdjk7eBhj530L2QPVC2CB5pin0zwUK5hQrnxkJ0T1UYXFnO1V6M+sF1D3jAWwQcb/Kc+P+TRldtYpgHCw6rqnsK1rErRBxa+Ay8mhlwwlGssYlxzJuywhS9x0hqWoidoeyB+zflhIw4HpcHv5Zr9xA+7UbzKal2zB0g59G/0puZj6GbvjVr58w4LvQnWuVWpWoUquk7DFnB6ZK5xRzVdvLeeydhwLCvpAK5yUFSh1abJZAgZVC/vxuaWiKBiHoXLMnd1fszvZVpccChMWziqItuQs8fxV1rUWqAtCFaNUpXA8I3y6KbhUDCmYgPSsw0jpgHLkf6d0GeRNVn7hUyUV3Ud8mZzHW+gSMqQJE5P3qnxYLeaNRq/lCNYkXXJMQsS+jVVqKVnktosLPStUoEsDRAhH9WNjLiNjXQcQDmlIh2k8sZTgo42yVWpUCwh7gmvZXY3fa/KoYO3c82Za87HzW/rERb4EX3auTl5UftJNeOXfNCV/7bMFc4Z8m6l9dl0ff7sz092dRrW4V/m/ME0HHK9ZIxmK14HX7EAKi4qPxuj248z3kZuTxwZNj+HDxCZYutDdBfeU+ZYh13Bx83FvsRjcOqQhdaw2wVPVv6aEwKEZmdPeHwQtkxsP+H2shbqSIQOZ9DflfKV1/3BtKSJicVYiEj5E5w1WiPSND7RDjBqvUHtaa4NtEaGBf0WshbIj4oce+jq0+VPwb8ITkiCoNr8fLez1Gsfq39TRu3YheHz5CbmY+CZXi0DSNKrUrMXb9e6z7YxO1Gp7H+Q1r0LNxn0LFFADOqIigAKqouNKLoZzNmDr8MxQpJRMGTmXuhIXUvaIWLe67hqHdPgrk57FYLYxZN/yEdYnSswLpno+wXYpwtg46ZhxuCUYK6qcQgaj4J+j7kNkDwchSqhrr+RD5BKTfTdHKTlXWQqb7Xzsg6nHIG4Na9dvA2RYtfvi/nQ6TMkJ61iAz/wcyF6KfR4vqhDQykYevR63mBVhqolX4xZ+n6UVwLyYQMIUdIu+D6BcR7l9UP852p+xhP2XYDL58bTIelwebw4Zh6EgDqtSuxMdL3woJispOz+G+Kj2KCooLGLv+Xb55czq/T/4Lm93KwBl9Tyyx4RnGKculcyopDwLf5/Wxa90eEqskkFQlIeS4YRiB6EBd13my8YvsXLs7cPy6jk15dmQP1izYSPV6VajV8OQyjErfdmTWyyDzVVlEe1Pk4aZ+H39AxCIq/g1oyPSu4Fur3rfUVXVIA54XdojuDbnDCQTZWOoiYnojcwYCDkT8EITtUkxOLyqa+h2lc7c3gYLfQR72HxWQ9CtCeJBpHSkS6k60yuq7N/QjkNrsqF6dShWkbwFZZOAV4t/liPJ5fYwfMIWty3bQ9pEbaXlfUeqPD54czcyRv4aeJKDn8G50ePbWoLd1XadzzZ5kHMwEIahwXhITdnyMEIK8rDzsEXZsdltof2cRptH2DMRT4OF/zfsFQrVfmfx/NL2tMaBW9yOeGstPY+YSmxjNW3Neoc5ltbjrmVv5sNdYPC4PmkXDMAy6N3gWT4EXXdd54YtetLjn6B/f8SOsdRBJUwKvpXQFG2hlvnoYaDGQ+Bm4F4GwI3O/IigTp/N21C6hWESlnqZWjv73ZPpjiErFo3+LXUa6wMg7ocAbk3+JazrkTwJc4DpEsIeNhIxHkAljwVYXfDsAQxlmC8n9NEynbvCtI3BPGEeU95bt+Ir9HM2Xr07muxE/4XZ5WP/nFpKrJdLw2ovweX2sXVBCnhwZ+E8QFouF9xe9wfjXp6BZNLoOuC/gqXY2pUj4t5hG29PEil/XcmD7QVy5BbhdHj57+evAsY2LtzJ3wgIM3SAzNZvh3T8B4MZO13Jx8wsR/pVJw2vqU5DvJj/HhTvfw7fv/Rj2WnnZ+axZsIEjKSHlhktFiAhw3ABEqqAY+zVK2AOyYB4y501kzrtgHAg+0cjyr+6Lk0PQD1Bmh60bIN1/Ig81Qaa2xMh4CinD5AA6R5FGjvr8vr3/fd+uWRhZryPdC4Pf1/dSJOQLKCwIHsDYA0fugMgeiLh3EQljETHFy2nmUBSIVwxLLYrWkwIs/z4FwcYlW3G7lPpQGgY71ypPmx1rdgfyUgEILXgch3anhu2v8vkV6TOuF70/ezIk//25jrnCP03EJEYHBJ6mCeIqFOk4vW5vUPoGT4EqrWZ32Bjy66v4vD5Sdh7iuev7B3T6NruV1H3p3BbVmQuvqsPAH/oQFRdF+sEMnri8D26XG0M3eHtOfy5ufvwrLRH/IbgXAlIVqsAfpJX1Amq1LlBh8sXwrkTdWoU6fgHOjiolrucvtc2P7Bw2RYXMHkBAAHn+VH3Zw+5OzymkkY5Mu92fssKHdLYDzx9gOQ8R/wHC8u/dAY387yH7NcCFdE2HhFEIh9oJiog7kPnjUd+jDlG9IPdoI2sB5I1GJIeWsBBRPZAF85SuPuDSK1XGVXkxGFmImKdPSoffumtLtizbgaEbWKwWLr62Ps9d35/1f25G+B82QhPUqF+NIykZ5GYoA+ysMXNp2/2mk1Z1nkuYAv800fCa+nR47jZ++OhnKtWoQO/Pngwcu+T6i7jk+gasmrcOi0Xj6Y8eDTrXarPybo9RZKUWqVui4qPISs3C6/axaclWJr71HY++/SALpiwmNzMvUI9z8pDvGfh9uDrz4RHCAkcHwBhHKNocSooEux9LReWLrQP4IKKjcrtDgnctCDvC1qCEKxbbdEpJcH6Vc5iCuWDkEtCTF3wPGGCkI7P6IRLHlnZ26Xj+KOqXAmTmc0ro2xshrBdA8s/gXQ/W+ghrdQxbQ8gZprJcoqM8s0LLZgLq/AoLkGkdVHHxQrxL0JLD7zhPlDbdbqBijWT+Wb+X5OqJjPy/cWxasg2kEvTRCVHUbFCdPuN68XzL1wICXwgRttxoecYU+KeRhwfez8NhMmNaLBbe+LEvR1IyiI6PwhkZ6qaWdTi4iLor1xXwJfZ5dbLTVdH1hEpxWKwaXjdY7VaSq/0HW1jrhSAcxQJyBFgbg2+VUv3EvIqwXQSexWCpWMw4K8B+WYndSunxrxT9aBWgmGFXSonMGwOu79T7sX0R+mGwVFMpnv8jpJGr7A3eNapIfNzbCHGKfyqWisVeFHca1JWL7Mlgv95fKNzvmSLTlVttxWWg71Nz7rgxUNxGczQDx7cYuR9D3jdgSQRbfaS+H2EJ9QoTWhQy6gHIKeYmbL345MZ8FJffeAkJleLp1eSlQE4bdXGl6uw1ojsAz4zswcB7hmPoBte0v5oLLjv/Px3H2Y6pwz9DEUKQXDUxrLAHuP+lu4JeV6tTmbgKcUTEOImOj+Te3iqX+PX3NOO6u5sSnRBFoxYX033wA//B2CxgLe5hYwPHdUC08tfP7AUyG+G8OcgTR+qpGEc6Yxy+DiN3dEi/+HYHC3xjD9I1o+i1+3fI/Rj0HSrc/3BLZPr9yNSW/syewUjpRfr2qgfJCSBzP1S1f2UOFPyiHjCnGnsLiHoERGE9hGL2jYjORWPzLMM4ch9G+mNI/SjbSRiM3AmQ/QohvvIyF5k3DpnWTs1hemeMtAcwUm9VUdOAFv0URHUB3x7I/QSZdgdSD68XF5FdlDFXxIKtCSK2b9h2J8PaBRuDbDpCE8RXiA3c61JKls9ZjdftxRFhp/3Tt5y1tWdPFeYK/wwjLzufgXcPZ8vy7TS9tTEvfPFU2BSsrbu0JD0lgylDZ1ChehKvTnue5GqJHNhxiMrnV8BT4OWdriNY9dt60g9m4nQ62LNpLwPuVqufHkMfol7jC/71OEXs/yHTV6rCFpbKoO8nYJiVbmT+ZERMcL4dmfWKX7+vQ97HSHtjhL1xUQNLFZDe4Atl90daz0fYG/lLNRZu0f1CXAIIZN5niLg3i66lpyGPdAQjE7QoSJoadnUaFuMIUDgOHxjBxm4jf6pKNGepiYh/W6UaOAqpp6nMota6KkV1GKT0BFwVhRCImGcwsEBe8ZTTAvQdyII5SFtjyHjUv7PSlKdThVnh+/btUMbf3EFhjgqIuBvyPgLcag69K4oOZ7+CtNZA2K9SRXUC6iCbamdpG9qj0BBxAyFuYNjxlIau6/wy7ndSdh7i5odaUKN+8Pc0ZdgMZo36heTzkgPPQUekg9ueaEX3wZ0CbpRbV+xk9ue/IQ1JXlY+Qx/+mM82vH/C4zmXMQX+GcaEgVNZt3AjXo+PRd8tpVHLi7klTGY+n9fHBZfV4o0f+9KgWZERttBA1fvG19m6vGjV68orwJVXQOr+dJDQ5+aBTEkZ86/r5wpbA6jwBxiHwVIdmfsxSt/uAawgioqxSymR+d+AdxlBWRKN4NWi0KKRWCgStgBSpW6w1QNnK8gd4c+qWNx7xwJacPF3mf+Nv38fGG5k7meIOJV4Tnq3Ir1rwNYIzRZak1REPaqKaiOU6iqiqKC79G6C7EFAAeh7kZl9Q7KTSt8e5JG7UA8/HRK/QNiLiuZII9cfx7AeaamNSPpatSuYobJGBuU0kpA/Aema6k9zUIjhfwCGYuR+4neXDBdjY4fIBxExLyLdf4bNiwQ60rtdCXx7I3DtQz0YdAhThPxkGfPCBGaOnovH5eGHj2bz2cb3SK6WhK7rfPrcOGaO/BXdp3N47xEubdGAxCoJ1GtcmzufahtUxcrnCd7FZKXlsHPtbmpfWvM/H/PZiinwzzAyDmbh9d+4Pq+PrLTQH6Su6zx/w+vsWrsbKSV39rqFR9/qHNRm17o94S/glwGeAi/Z6bkkVw1dnR4vQosCrZZ6EfWYEqLelWBvhojqVHRJ1/eQM4SilaIDtCR/2uWjsFQGfXfRQNEgdxAypz9EdICESZB+B8ECPwI8q5GeZUpIgT+Hf6EwsIAWqVL9ZvQEz++BMw0Rh0gYGbTTELb6UGG+UjFZ6wSXcdQPgLD4h+fzj9X/OfWDYKQi3X/4007466PmTwgIfCl9yPyJKlUBEvTdyJwR4J7r30lYgHggveiaGKo/7yrQagP+tMTO9qHzB35h7w59X1RAJHyidksACR8hM59ROxp5VOpte3N1SuzrSBEPvh2IqC6IUyDwF89cUaSXF7B1+U6SqyXx+cvfMGv0r4E6sz6Pj4I8Ny+O6xW2n4ua1uWqtpfz14xl6F6d/GwX/2v+Mm/OfJlGLf9bm8LZiqnDP8O494U7iIyJIDI2gpiE6LD1c/dtTWHH6n9w5RZQkOfm+w9/DmnT5NYrStRf2p026jauHTa692jWL9rEt+/NZMeaf0ptJ7QotMQv0CqtQUsYGZwPxbuSImGPMhAmzwwxtErven82xcJzNcDuV2Ho4JoB6XcSrI+2AfngXY7MeFS5N0oPRHQCWyPVh7U+IqoHuKaBJ9gPHZmFTH8kUOWr6PPEKy+Wo2v22puo3YuIApwQpTyoDNcvyNTWyPSHIH+qGnfhZ3D/iZE1CCP9EeShiyFvZLHP4FPqMJmP2tkUgPAoXXiIf7sE500Q+YjS+VvrIvM+Q7oX+Odvs8pgKYoXpbGDoy1EdkVUnBsQ9lK6wchAxH+EVmmVX8ALNd7IR9BsalUshBMtti9a4hiE48QTmh3N9x/9TPuErjx0wVOBe+qyGxpij1Dzpft0ajdS114+Zw0+T5GXjdVu5b4X7gzpsxBN03h16vO076VUTl63F3e+h9nj5p/0uM8VzBX+GcYFjc5nwq6PObD9IDUbVA9bVSe+QmzAh18ISKoaKrj7TXyOH0f+ytJZK9i5bg/p/qArq93KQ6/dQ4dnbzumQeuvGcsY3Ol9DJ+BZrXw3sKB1L2i9gl/JuFso1b5eAGL3wc/+HNJI1sJy6CVpgEU90YqoRh7oZpICmTmi8oNUcQiEschbA1UWuj0B8FIL+F8NzLvS2TkA5A3DnybVUZIf9xB0GfRoiF5pjLqWqoUuZfmvgsUqJW/RMUsuOcDHpWawjWBgPfN0WqUoB2NDWwNEbFvIF3fgvtv8K0sauvbCZ5F6lrun/1phR1IRytw/6J2HyIKxHmqTUw/tIh2wXMt3f4ayCkgdWRMH7TEcX4jsHZK0lpLKZn+3kxG9h4PQF5WPv3veJtvdo+k14ePkFApjh8+nk1eZj6vdxjKsN9e56pbLmPfthR/nhwrA394kStbl+zlVUi9K+vgjHJQkOfGEemgTiNTpVOIKfDPQGITY4i9uuTSgXHJsbw69XlGvzCeqLhIXvjiqZA2VpuVu56+hXaP3shTV79ExsFMpJQ0atEAt8vDzjX/sOq3DSANOv7fbdgdobr8375ZhDtfGUeFT+fvWSv/lcDH3liVQjQyUSveeeA4quScXpi0LeRkdQ5epQYyUou1iwBna3D/qnz2tSi/ncAAmYnM6o+MehCyXiHYLmAhKBUEEnI/gtxPUKoQA+leBEmTlXspSncvXTMQ1ppIrQq4ZisXU+uFymtJS/Tr3w1AIqIfQ3r+hCAPoRLyVhmpiMSvkXmjQUtCRD+L0GIQMc8hI/cr4Vy4I7BWAU/xPg3ABe45BAywgIgbiHDeGP56ntV+Ye9/uOaNhqgHESX42p8ImalZvNp+CLs37KXlvc15ZmQPNE1j+gezGNP366C2GYfUw/zHT+cwecgPAR387o37eOX2t9i0eCsSSKyaQO+xPY9L2APccP81pO5NY9F3S7n8xoa0/1+7Y59UTjCTp53j/PbNH7z3+KhARK6mCYzC79z/v8SqCUzeF2x49Hq89Lr6pUCyNnuEnf7F8v2cCNKz0p9O2S9gRALaUXl0pPQg024B/TBKGOuAA2IHQe6HRQZeLQaMNKVaiXsPoSWAe74y7HrmqcCuwlW8SPa7eRZX12gQPwYstdUKPPcNwq/6bYi4QYiIDkh9PzLtVr/apfjDQkDEA2hxryv3z8yn1IMrsgvIbOXhIrOO6re4QRbVX+SDaLH9Sp4/I1eVF7TWAu9GZMbjR30mp/9heNA/NiciaVKJwW3StwuZdqe/D00Zr5Mml3j9E+Gdbh8xf+IidK+OM8pBp5c7snXFdtb9sZms1OAauJe2aEDvz5/k0YufC0STA6rGsyQoR/159avy+cYTK3tYXikteZqpwz8HmPTOd9xX9TH+17wfafuPBB0r1I0WYhiySO3gJ/1ABqn70oLazf7sN/ZtU8ZBIQSXtrioRGGfsusQ73T9kOHdPyHtQHpoA0t1gvLphzH8CWFHJH2HiH0ZETcEKq5HVFqDwKU8gQqLq1gvRlTahJb4JZolUamlHC3A9WWwsCdSpXMOEox2iOiA5rwOXF9B7tuEF/YAXqTuzxrpXUfRT+WonYF7rhq/9Ty05BlolZaBZxnkfxlG2Fsh+jmgUJ1lUwFKIkGlqygBoUUj7JchtDiEoxki/n1lwI54EOwtlR0h8Rulh7fUhNh+pUQyg7DWgtgBqnC4rbHqrxTW/bGJXk368vwNr7Fva+m+/1mHswLRrYZuMGHgVBZNX0r2kZygXDe1LqnBgO/64MopQGjBYiipcnyQsAfYv+1gqdc1OT5MfIhViAAAGwRJREFUlc5Zzqa/t/HVoG9x57vJTM1m6COf8M6c/oHjze+8iuZ3XsWCKX8REROBp8CLxxUaiBSaNzwXvTBnOJKkKuG9eXSfzjPNXyEzNQtNE6xduJEvt30U1EZYKkLCaGTuRypVbuwrYfsSWixEqsCwQtEgRXSxV1bQYkNtDzLPry4qVp6x4u/KM8j1I0pNY4fYN1XuGCML8scTrOYJg3sRRD/hjxottqov/rS0NgoeinerX61UHI1CY6iI6qEMxAU/gZEHvs3g24h0fQXJc1XlsWMgnDeGV9ckfnbMcwMjirwLIu86Zrv8HBcvt3uTgjw3QgheavsmE3Z+HNRm4tvfMent74ivGEfXAfeybtFmhBBERDtw5RbgdXuRhsTutHFlm8u4tUcrrr5FVVeLioukcatLWfHrGqQhefSdB7m9Z2tusQcHCCZX//feZCZFmAL/LCfjUCaaxV+IXDc4ciA4SEjTNF766hle+uoZdF1n6rAZTH9/VkB/CtC5f0ciYyLYvWkfw7t/giu3gE79OhKbFIvbpX7o9zx/e9jrZ6fnkpuZizQkuiFJ2XkYn9eH1RZ8awlHE4SjyYl/QOctKld7wVywXoCICZMHSMSArSF4t6jXtovRtHhk7OtIrSL4diGiOiPsym4gpZWwGR6DLxxI2ias50Hi18j8aeo8V6EuWhDy0JAu1M+q2AMiaRrCcn6RV1LEXcj8CUrtEzivAPRdoJ1e98GNS7aSeTiLBk3rkn4wC82qBUpxSik5vDeNd7p+SFKVBDq/0pGDuw7z9RvTcOd7yM92MWXoDL7e9QmHdqdSqWYyPRr1xufRsVg1Wt53Dc+P7Rl0PSEEXQfcS8quw+g+H3Uuq4XVaqXRDQ1ZM399oM2bs14u87k4FzEF/lnO5TddQnLVRNIOpGP4DLq8dk+JbS0WC1FxUeRm5ge9P3Pkr6xftJl/1u8lOy0bKWHYI58waEZfouMiqVa3com5wvds3Itm0RCawGazUu+qC0KE/ckghAUR/+4x2ghIHA+umSi9+m3+9+0h0b7gz/0S+ybkvAZoft184e7Aolwe7ZcqV87Cc2wNEXENke4lyIIf/LYBCb4NwZ3bLgFHM39NXwOi+6PZGgY1ka5pwSkk1BWUiqUM0XWdWaPmsmfzflp3bcGKX9bw9ZvTEUIV/LZH2nFEOKjZoDr7thxAGhKvx8fcCQuxOWz8s2Ev9/VpHxT8lJOeS2xSDLFJyung05VDmT9xEYf3pFG9XhWyj+QEjhXSt80bgQXIy+0GM/XQWAb/9DKzP/+NjJRM7niqDQmV4jE5eUyj7TmAp8DDlmU7SK6eSJVapafRnf7BLMa8+FVwVOJRWorA25rAarPw7KjHad2lZcjxnIxcOtV4QhmEBSRWTmD89g9xRATn/9m+ehdv3v8eeVn59Bj6EDc/GBpbcDox8sZDztuAgNhBaJEdSmwrjRxkaiu/wLZA5D1oR6mopJQqClaLRWihgkrmjUfmDEPZFyxgrYeIG4aw1f1PP9exGN1nPDM+mYM734MzyoHNYSMnPfhBJDTB5TddwnUdmuJ2ufnytcm4cpRdJDYphikpY3jh5oFsW7EDw5C07tKC3Zv2cXHzC+k64D6sNitj+n7FjI9nIyVEx0fy+aYPiIxRdgzDMGhrvx/p30XYHDbG7/jopAICyzum0fYcx+60c8l1Fx1T2AO06daSyudXDC4W4Rf2VpsFm8NKoYpcGhKv28d7PUaRsjPUqJhevKCKhLzMvBBhD/D6XUPZtzWFjENZvNdj1AkXYjnVaFFdEJVWIyqtLlXYA8pdMnkGIqY3Im6wKgV5dBshENYaYYU9oOwUztYgEsFxMyJp8nELe92ns+6PTUGlLv8ty35eXeR2608zrB1VREQakjW/b2D0C+O57MaG2Bw2LFYNR6SdJrdegcVqYei8Vxnx15s8/1lP5n61kHULN/HdiJ/4+g2VhO3XLxdQkOfGne/GlVvAtpVFKT80TaNNtxtwRjmIiHZy6fUXHVdAoMm/w1TplDOi4qIYu+FdUvemkZWWw+IZy/n2vZkYhsQRYaf3Z08yqveXHNhRJOAtFo2MQ5lUqR38QKlerypV61RWbaXk5gdDA5WAoFWj0DRyM3LPuB/1idRbFZaKENXtJK5lQ8QPO+HzDMPgxdaD2LpcFQN54KW76PzK3f96HFe3u5yUXYdx57uRhqTPF72YMHAKqfvSsdgs7N6wV9lmvDq61cLGv7by6YohzJ2wgPiK8bTp1hJQqsJal9Rkxa9rAx467nwPW1fsAJRHTnZ6jurHp4fcR/835glufvB6PG4vV9x0iZnh8hRiqnTKGYahdNXF9a4rfl3DgR2HaHZ7Y5KrJbF70z6eb/kaWanZWO0Wzm9Ygw8XDw6rmy/Id7Pkx+VExkZyVdvLwv5Ypw6fwbhXJ6Npgkuuu4g3Zr4UdP1wZBzOYtaoX/xZEVuTcTCTtx4cwY41u7A7HTwxvAttHy4hsOgcZffGvfRq8lIgpiIi2smM7AmlnrNszmqmfzCL6nWr0P2tzkHptnVd56cx85QOv0uLkKC6US+M58dP5uB2eXBEOnh7dj8aXntRidfau2U/T175IoYhEQJe/PJpruvYlOz0HEb+35ek7jtCp5c7cPmNl5zELJgci9JUOqbAL0fM/vw3PnhyDEITalXVOfyKvJBd63aTcTibhtfWZ8+mfbx+11BcuQU8/OYD3NajVaCdlJK5ExayffVOWtx7DQ2ahmag3LcthbysfOpeUeuYwt7n9dGt3v9IO5COpmlc1KQuGYez2Lt5f1EjAZ9teD8kle6JsG9bCmn7jlCjQTVS9xzh759UJHGz28+MkopSSnIycomKjcRitZBxKJMHaz2Fp0CpYarUrsT47R+FnOPz+rDZbezZvJ8nr+yDO9+DzWnj+rub0nf8/4Lar1mwgSlDZ1D5/Ap0f6tzQLcOKvhuXP9JbF2+k7bdb+SmTtcFXeef9XtwRjmDVuz7tqWwat46LmhUMyiLq0nZYQp8E9wuN+0TugWMtVa7lR9zJhyXR42UktuiOgdFQ45Z9y7nX6y8SiYN+Z5xr0xE9xkg4LWpz3Nth6Yl9pe2/wgDOg7jwI6D3PZ4a7oNuj9oZ3Dwn8M82vC5IP2yI8IeWNkW8uyox7n1sZuPfxKKMXnoD3zxysSACsJitaDrOo4IB09/1J023W44Rg8KV14Bezbuo8oFlYhNLDkdxonicXvp23oQm5ZsIzI2guG/D+D8i89j4bTFjH5hAlHxkbz01TOB7wBUANzzLV8jbV86V7S6lLaP3MC7j43ClaMS11WrW4X+U57D7rTjiHLwZf/JzPv6D3Sfjs1h5aq2lzPguz7HHJuUkoH3DGfZ7NVIKek28D7uef6O/+yzm5wcptHWBMOQFH+4y6Nel4bX7Q0S9kBAPwsw/5tFStgDSAIJskri/SdGs3XFTrKP5DL9g1ms+T3YtTGpagKRMRFomsBqt1KpRnJIH0IIGrUoOZr0WEwYMDWo3qnu01XgbL6bP6YtOa4+0g9m0K3u0/RpNZCHaj3F9tW7jnmO7tNZMnMFf/+0El3XQ44VsujbJWxbuROf10dOeg6jXlBzev3dzfhq1yeMWjUsSNgDjH5hAkf2pyOlZMOfm8k8nI3FqmF32nBE2Dm8J5UnLu/DIxc9S5favZg7YUHgml63j63Ld3A8pOw8xNKfV+HOd+NxefjytSnHdZ7J6cc02pYTIqKcdHntHiYMnAZA98EPBCoFHQu70061OpXZv12Ft1usGle2LoowrXtFrSCvEc2i4fV4S+z/SEpGIHReGjIox8qy2av45s3pNGh2IdEJUdgdVmZ/MR+v2xfoOy45hu5vd6Z6vfDJvgzDYMuy7ezetJ8LLq0ZNuGbM9oRXBu18P1IB41uLD34yevxMujed1n600p03Qh4OU0e8gP9vgn1+y9ESkn/O95m/aLNAFzZphH3vnAnE9/+jrULNpKbkUfDa+vz1uxXjko3II6pBgPlO18YJOVxeTn4TyqjVg/jr++X8dePy1g1d12gbfGHC6gKUjd2UvUJstNzmDBgKvnZLu7v257zLgxWm0XERKhkdX6iYkMzupqcmZgCvxzR6eWO3N6zDUIIouPDB1KVxJj17zLulUmkH8riwf4dSaxc5GXT5pEb+GXCAqQuEUJwaFcqd8Z15aWvn+G6DqHRtXWvqMX2lWo17CnwUrmWquOasusQr3cYGthNRMZGcF3HpkHCzxFhZ0rK2BLHaRgGfVsPYvX89UipVFdPDO/CnU/dEmiz/s/N5Ge7gs6r1fA8al1ak4ua1uOOJ9uU2P+UYTOY9PZ35GbmBXzHQV0noWJciecB5GbmsWreOnz+ncWi6X+zbPbqIFXVlmXb6XHp8xi6QaXzK7B3037iK8bR892upfb95/dLWTWvSKAbhsHMT+fQ7tGbaP/0LezeuDdI4IN6eBY+eIUmaNW1JQD9bn2L7St3ovsMFs9Yxtd7RhIR5Qycl1AxjmdHPc6o57/EGe3klUnPlTo2kzMHU+CXM2ISoo/dKAw2u43HhjwU9tjw7iORelH4vZQSw23w7qOfhhX4ezcXJeCyO21sW/kPF15Vl5QdhwLCECA/28WvXy7A6rDiiHSAlHTuX7ob4vZVu1j/55bAAtTn8TF12I9BAv+3iYvwHqWi2rcthbd/6R/0ICtE13WGPfwJC6b8hc+nBwl6UPELDa+tT9cB95Y6tohoJ44oBz5/pLPFZg36vGq8Oim7DoFUc/PcmCe4/u6mRMaUnmPn/SdGByqlFWKxKtfKGvWrcfmNDZk1Zm5g7FaHlavaXsbSWSvRfQbuPDfj+k/i9W9fYMfqXYFxeb06qXuPhBjHWz3UglYPnVkBdCbH5qR0+EKIe4QQG4QQhhCiRNcGIURbIcQWIcR2IcR/X87e5LQSLhnb0Wz4awtd6z1N5/N7UqlmBSXA/dRvorJnXnh1nRC3TsMwMHw6A7/vwycrhpRa8QgIu3OpUrti0Os6jc4Pur5ChNT3NQyDyUO+5+kmL7Ng6mK8Hl+QsBea2imNXD2MoXNfKzH9RCFWm5Uhv77KRU3rERkbgTSMoIhnoYlAamBQu58RT42lywW9OLDjIFlp2SXaXSyW4J+yxWZBaIIGzZWnTL2r6gQ+n81ho/ntV3LNnVdjc9gC17b7/27cqhGOCDtWu5WYhCgq1wqeP5Ozl5Py0hFCXIRKQjIK6C2lDHGrEUJYgK1AK2AfsAx4QEq5sbS+TS+ds4c/v1/K4M4fgJRUrFmBlB0HsVgtvPT1M1x7VxOklNyV1I08/8rW7rTx8Jud2L1+Dzc/1CKo3ugf05cwuNP7gdJ2mlWjSq1KfLH5g+MOyPlq0DS+fE3ld7dYLXzw1xtceGVRSmbDMJg4eDrzJ/3JwX8Oo1k0en3YPSR9xKR3vuerQdNCdP2aVcNms/Lwmw/Q8t7mDLrvXTb/vZ0GzS/kzZl9A1XKcjPzWD1/PVVqV6JijWR8Xh8JFVX07S3OB4I8ph567R5ad23BT2PnMeH1qWE/l9VmoUaD6ry3cFCQ+yTAynnreP2uIbhdHprfeRUXN7+Qazs0ofL5RcJ67cKNTHv3RyrXqsjDg+7HarfyWvshLJ+zhioXVGLovNeoeF4yXo+X2Z/9Rn5OAW0ebkl8hdJVVSZnFqV56ZyUSkdKucl/gdKaXQ1sl1Lu9LedBNwJlCrwTc4erml/NVNSxpCf7SK5WiJetxeL1YLFagGUgC3Mv6JeS25+8LqwguS6Dk2ZvH8Mqxds4Js3vkWzaPQd//QJRV+6cl0B/bSUkgVT/goS+Jqm0fmVu48Zpbp+0aYgYW+1W7HZrXTufzcbFm1i/qQ/2fjXFrYu24Hu09n891amj/iJzi93JCcjl8cu+T/ysvNx53sCO4Mm7a5g0I99adCsHpuWbEX3GUTHR3H3c7dhd9qpcWE1HJH2gEtqcXxenX1bDvDLuN9p//QtQceuuOkSPl05hL5t3mDxjGVExDjp8OytQW0uvb4Bl14f7Nk0+Kd+6LrO8jlrePXOd0ioFM//jXmC23sqO0ZuZh7/bNhL9XpV/tOkeCanh7Jwy6wG7C32ep//vRCEED2EEMuFEMtTU1PLYGgm/xVRsZFUqJ6EEEo1UijsQYXed3imHY5IO84oB9d1aFLqqjEyNoL3Hh3JjjX/sGP1Ll7veGJpCCLjIgMpozWLdkz9d25mHq+2f4eHaj/FxLemB96/sdO1OCIdWKwW7BF2+n3zLBP3jmTT4i0sm7OGLUu3s+i7pfj8Hi+Gr+jBtnLuOvJzXBTkuoPUQMvmrGbrip288WNfOr3ckY7P3crHS98KqFsaNL8Qi8USGP/RCCHQLOF/th89/RmHdqei+wz++PZvlv286rjmK+NgJoPuHc6O1f+wcu5aXu8wFICNi7fwQI0neLrZSzx+WW9cua5j9GRypnPMR7YQYi4QrqpxPynlD//lYKSUo4HRoFQ6/2XfJqeXx4d15eaHWuDz+Kh35QWltp34lvKCATB0yd7N+9F1HYvFUup5hdzU+Tq+8rufSim5pv1Vpbb/+NkvWDZ7NT6Pj28GTyexaiKH/jlMxfOSeX36C+xY/Q9XtmnEBY3OB+CfDfsC6hib04bNZsHn1YmMjaR9r7YAVKqZjKGH3sJSSqw2CxHRETzoN0Avm72KF1sPwhntpM8XT/HR0rdYOG0JFWskM++rhaxZsBGhCXweHxdcfj5tHm4Z9nO4cguCHi4FYXYJ4Ujbnx54iBi6EUiU98UrkyjIVQ+ww3vSWDR9Ka26mIbas5ljCnwp5b8LZSxiP1A8QqS6/z2TckahwDwWf/6wNOh1tXpVjkvY52XlMbjTByz/ZU3A3VD36nz73kx6fx5a6L2QgzsOBQS4NCQjeo7G5/Fhc9pp9+hNPPn+w0Htb+/ZmnH9JwEQER3ByFVDcOUWUOG85IDhs/7VdXni3a58++5M0g9mBNxAb+p8XdA85GbmMaDjMNx+w3e/297im90j6dyvI0DAE0ZKlYu+sP9w9BjyEH3bvoHhM6h5UTWa3X589YdrNzqfCtWTSd2bhpSS2/1uqdEJUUGum5Gmv/1ZT1ko5ZYBdYUQtVCC/n6gUxlc1+Qs5aIm9di7aT+eAi9Wm4U+43od13lj+n7FirlrQ+qhWuyl3+b3923PoPvexWK1oGkauk/HU+DFne9m8YzlIQK/47O3UfeK2hzancrVt1xOXHJs2H5v69GK23q0QkpJ9pEcImKc2B3BnkA56blBpQiKVyIrjhCiVGEP0KDZhUzeP5rM1Gwq1axwXMFaAHaHjY+WvsXyOWuIS44J6Pmf+uBhDuw4yP6tKbS87xqa3XFm5Bgy+feclMAXQtwFfAhUAGYJIVZLKdsIIaoCY6WU7aSUPiFEL2AOYAE+l1JuKKVbk3JOz3e7EhnjZOe6PdzRs03YZGzhOLznSFC6BABNE3QbeH+p5zW5tTEjVw3jwPaDVKieyP+a9wP8dQauD58d8mjjZ2kIIUp8KFSuVZGLm1/I5r+3qdV1z9bH3W84IqIjAl5CJ3RelDMkZiK5WhKjVp14GmeTMxczeZrJOcPahRvpd+tglTHS46NGg+r0+aIXdS6vddx9SClZMnMF877+g5oXV+e+Pu2PubI+WXSfztqFG3FGObmoSdlWvTI59zhlbpkmJmcSl17fgM83fcD+bSnUbVybqNjSvXOORkrJ2w+NYNH0v5ESmt1x5SkX9qBiBcwc8SZlgZkt0+ScokL1JC67oeEJC3uAPZv38+f3S/EUePG6vXzyzOenYIQmJqcPU+CbmPixO21Bbo3h6vOamJzNmALfxMRPlVqV6PL6vdgcVuKSY3h5Ysmpjk1MzkZMo62JiYnJOYRZ8crExMTExBT4JiYmJuUFU+CbmJiYlBNMgW9iYmJSTjAFvomJiUk5wRT4JiYmJuUEU+CbmJiYlBPOWD98IUQqsLuML5sMpJXxNc8GzHkJjzkv4THnJTxlNS81pZQVwh04YwX+6UAIsbykgIXyjDkv4THnJTzmvITnTJgXU6VjYmJiUk4wBb6JiYlJOcEU+MGMPt0DOEMx5yU85ryEx5yX8Jz2eTF1+CYmJiblBHOFb2JiYlJOMAW+iYmJSTmhXAt8IcQ9QogNQghDCFGiu5QQoq0QYosQYrsQom9ZjvF0IIRIFEL8KoTY5v9/QgntdCHEav+/GWU9zrLiWN+/EMIhhJjsP/63EOL8sh9l2XMc89JNCJFa7B559HSMsywRQnwuhDgshFhfwnEhhBjhn7O1QogrynJ85VrgA+uBDsDCkhoIISzAx8AtQAPgASFEg7IZ3mmjLzBPSlkXmOd/HQ6XlPIy/787ym54Zcdxfv/dgQwpZR3gPeCdsh1l2XMCv4vJxe6RsWU6yNPDOKBtKcdvAer6//UAPi2DMQUo1wJfSrlJSrnlGM2uBrZLKXdKKT3AJODOUz+608qdwJf+v78E2p/GsZxujuf7Lz5f04CbhBCiDMd4OiiPv4tjIqVcCKSX0uROYLxULAHihRBVymZ05VzgHyfVgL3FXu/zv3cuU0lKmeL/+yBQqYR2TiHEciHEEiHEufpQOJ7vP9BGSukDsoCkMhnd6eN4fxcd/aqLaUKI88pmaGc0p1WeWMvqQqcLIcRcoHKYQ/2klD+U9XjOFEqbl+IvpJRSCFGS725NKeV+IURt4DchxDop5Y7/eqwmZy0/AhOllG4hxOOoXdCNp3lM5ZpzXuBLKW8+yS72A8VXJtX9753VlDYvQohDQogqUsoU/3bzcAl97Pf/f6cQ4nfgcuBcE/jH8/0XttknhLACccCRshneaeOY8yKlLD4HY4EhZTCuM53TKk9Mlc6xWQbUFULUEkLYgfuBc9Yjxc8MoKv/765AyE5ICJEghHD4/04GrgE2ltkIy47j+f6Lz9fdwG/y3I9oPOa8HKWbvgPYVIbjO1OZAXTxe+s0BbKKqU9PPVLKcvsPuAulQ3MDh4A5/verAj8Va9cO2IpavfY73eMug3lJQnnnbAPmAon+968Exvr/bg6sA9b4/9/9dI/7FM5HyPcPDATu8P/tBKYC24GlQO3TPeYzZF7eAjb475H5QP3TPeYymJOJQArg9cuW7sATwBP+4wLl3bTD/7u5sizHZ6ZWMDExMSknmCodExMTk3KCKfBNTExMygmmwDcxMTEpJ5gC38TExKScYAp8ExMTk3KCKfBNTExMygmmwDcxMTEpJ/w/3Z1jvCPdupMAAAAASUVORK5CYII=\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"iXzqeUoXqOxQ\"\n      },\n      \"source\": [\n        \"from sklearn.preprocessing import PolynomialFeatures\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"26WjxZEOqS2z\"\n      },\n      \"source\": [\n        \"pol = PolynomialFeatures(degree = 2)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"c4UfQW-QqV3K\"\n      },\n      \"source\": [\n        \"X_tf = pol.fit_transform(X)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"86sEs1iXqehH\"\n      },\n      \"source\": [\n        \"lr = LogisticRegression()\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"b6BphpxAqgS4\"\n      },\n      \"source\": [\n        \"trainX,testX,trainY,testY = train_test_split(X_tf,y)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"cTLj_bnaqqmB\",\n        \"outputId\": \"d388fcd4-92cb-4700-980f-35ecf59fe2ab\"\n      },\n      \"source\": [\n        \"lr.fit(trainX,trainY)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"LogisticRegression(C=1.0, class_weight=None, dual=False, fit_intercept=True,\\n\",\n              \"                   intercept_scaling=1, l1_ratio=None, max_iter=100,\\n\",\n              \"                   multi_class='auto', n_jobs=None, penalty='l2',\\n\",\n              \"                   random_state=None, solver='lbfgs', tol=0.0001, verbose=0,\\n\",\n              \"                   warm_start=False)\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 66\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"Yr3SsH7LqtNf\",\n        \"outputId\": \"dbd2b0d3-c328-4856-8238-c9f82679a640\"\n      },\n      \"source\": [\n        \"lr.score(testX,testY)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"0.996\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 67\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"XhDq78QMqwoH\",\n        \"outputId\": \"ab37fab5-4fa0-4600-f230-9849147debe2\"\n      },\n      \"source\": [\n        \"lr.coef_\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([[-1.13886114e-04, -4.92207798e-02,  4.62984031e-02,\\n\",\n              \"        -9.48481162e+00, -1.29156437e-01, -9.35699000e+00]])\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 68\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"ccItz44irXxP\"\n      },\n      \"source\": [\n        \" ***Bias Variance***\\n\",\n        \"\\n\",\n        \"**Bias**\\n\",\n        \"* Fitting training data poorly, but produce similar result outside training data\\n\",\n        \"* we are building simple models that predicts terribly far from the reality but they don't change much from dataset to dataset.\\n\",\n        \"* Situation of underfitting.\\n\",\n        \"* a linear regression model would have high bias when trying to model a non-linear relationship.\\n\"\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"WE9Q8kAkrq2L\"\n      },\n      \"source\": [\n        \"**Variance**\\n\",\n        \"* Building complex model that fits the training data well but many not work similar way of other dataset.\\n\",\n        \"* Model is not generalized & is overfitting.\\n\"\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"YNrGF7Ourx15\"\n      },\n      \"source\": [\n        \"**Bias Variance TradeOff**\\n\",\n        \"* Increasing the accuracy of the model will lead to less generalization of pattern outside training data.\\n\",\n        \"* Increasing the bias will decrease the variance.\\n\",\n        \"* Increasing the variance will decrease the bias.\\n\",\n        \"* We have to get perfect balance of bias & variance\\n\",\n        \"\\n\",\n        \"\\n\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"jjphDxE9Ikor\"\n      },\n      \"source\": [\n        \"import numpy as np\\n\",\n        \"from sklearn.model_selection import train_test_split\\n\",\n        \"from sklearn.linear_model import LinearRegression\\n\",\n        \"import matplotlib.pyplot as plt\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"t7Cdbkfjqyz9\"\n      },\n      \"source\": [\n        \"# generate 10000 points following y = 2x(-1,1) + 3 + 0.1 * n(0,1) \\n\",\n        \"def func(x,n):\\n\",\n        \"    return 2 * x + 3 + 0.1 * n\\n\",\n        \"n = np.random.rand(10000,1) # -->[0.,1)\\n\",\n        \"X = -1 + 2 * np.random.rand(10000,1) # -->[0.,1)\\n\",\n        \"y = func(X,n)\\n\",\n        \"\\n\",\n        \"# if needed,try them\\n\",\n        \"\\n\",\n        \"# print(X[:10])\\n\",\n        \"# print(n[:10])\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"wPq9InIKIQFz\"\n      },\n      \"source\": [\n        \"X_train,X_test,y_train,y_test = train_test_split(X,y,test_size=0.2)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"YeYuMoxVPMAe\"\n      },\n      \"source\": [\n        \"lr = LinearRegression()\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"xO7QXL78PZA6\"\n      },\n      \"source\": [\n        \"lr_1 = lr.fit(X_train,y_train)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"Zm0XL-hUQilw\"\n      },\n      \"source\": [\n        \"y_pred = lr_1.predict(X_test)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 265\n        },\n        \"id\": \"ceMgub2QQvqG\",\n        \"outputId\": \"db46c06c-e62c-4cd4-c489-5a8d96ac6bd1\"\n      },\n      \"source\": [\n        \"plt.scatter(X_test,y_test,s=5,label = \\\"original data\\\")\\n\",\n        \"plt.scatter(X_test,y_pred,s=5,label =\\\"linear\\\")\\n\",\n        \"plt.legend()\\n\",\n        \"plt.show()\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"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\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"m46tRIgdRDP3\",\n        \"outputId\": \"3c42bb39-3c8a-49c8-e1c2-e8cf376b365e\"\n      },\n      \"source\": [\n        \"lr_1.score(X_test,y_test)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"0.9993927418441865\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 190\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"dWllA-NpPdl_\",\n        \"outputId\": \"a5a61c5e-c359-428f-e9a1-f44c0667b57a\"\n      },\n      \"source\": [\n        \"# weight\\n\",\n        \"lr_1.coef_\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([[1.9991295]])\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 191\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"QnALJZjvSz6p\",\n        \"outputId\": \"687f8087-cd69-4b53-b7c6-f0386f475cfe\"\n      },\n      \"source\": [\n        \"# bias\\n\",\n        \"lr_1.intercept_\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([3.05021312])\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 192\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"Phno69PTLPHl\"\n      },\n      \"source\": [\n        \"Generate 1000 points $y = 2x^2(-2,2) + 5 + N(0,1)$ \"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"MsSzxkeSUo4D\"\n      },\n      \"source\": [\n        \"def func_square(x,n):\\n\",\n        \"    return 2 * (x ** 2) + 5 + n\\n\",\n        \"\\n\",\n        \"N = np.random.rand(10000,1)\\n\",\n        \"X_ = np.random.rand(10000,1)\\n\",\n        \"X_ = -2 + 4 * X_\\n\",\n        \"y_ = func_square(X_,N)\\n\",\n        \"# if needed,try them\\n\",\n        \"\\n\",\n        \"# print(X_[:10])\\n\",\n        \"# print(N[:10])\\n\",\n        \"# print(y_[:10])\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"9xTyHQCMOEli\"\n      },\n      \"source\": [\n        \"X_train_,X_test_,y_train_,y_test_ = train_test_split(X_,y_,test_size = 0.2)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"WOLDLdg6MpBg\"\n      },\n      \"source\": [\n        \"lr2 = lr.fit(X_train_,y_train_)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"KkaOAm9INYVW\",\n        \"outputId\": \"b7d3df70-74e6-4f9a-b95e-2fa661a1202d\"\n      },\n      \"source\": [\n        \"# Linear sucks\\n\",\n        \"print(lr2.score(X_test_,y_test_))\\n\",\n        \"y_pred_linear = lr.predict(X_test_)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"-0.0009945453949153915\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"tLJpl-SYOSvV\"\n      },\n      \"source\": [\n        \"# polynomial basis\\n\",\n        \"# note we only transform x \\n\",\n        \"pol = PolynomialFeatures(degree=2)\\n\",\n        \"X_train_3 = pol.fit_transform(X_train_)\\n\",\n        \"X_test_3 = pol.fit_transform(X_test_)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"ZEhb3fbuPXQC\",\n        \"outputId\": \"950df1a2-acab-4d87-c8b9-d259dc90e43b\"\n      },\n      \"source\": [\n        \"# 第一列为1，对结果无任何影响，故第一个coefficent为0\\n\",\n        \"lr3 = lr.fit(X_train_3,y_train_)\\n\",\n        \"lr3.coef_\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([[0.        , 0.00363362, 2.00456387]])\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 404\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"CBWZduoAPiZd\",\n        \"outputId\": \"0b3e3b2d-67d6-4b6c-b009-c104648f1c8d\"\n      },\n      \"source\": [\n        \"print(lr3.score(X_test_3,y_test_))\\n\",\n        \"y_pred = lr.predict(X_test_3)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"0.9854533731382091\\n\"\n          ],\n          \"name\": \"stdout\"\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"yU301BRSi8iv\"\n      },\n      \"source\": [\n        \"Lasso Regression\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"inZIrWb9UXSa\",\n        \"outputId\": \"447cdf3d-4615-484c-da1f-748a4ca59f74\"\n      },\n      \"source\": [\n        \"# lasso do out-or-not job,arbitarily choose variable\\n\",\n        \"la = Lasso().fit(X_train_3,y_train_)\\n\",\n        \"la.coef_\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([ 0.        , -0.        ,  1.31312786])\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 406\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"kGEZAqCehUe_\",\n        \"outputId\": \"ae60aa97-ad6f-4e2f-fd2c-f78f53f7ceae\"\n      },\n      \"source\": [\n        \"y_pred_lasso = la.predict(X_test_3)\\n\",\n        \"la.score(X_test_3,y_test_)\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"0.8718388514745457\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 407\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"markdown\",\n      \"metadata\": {\n        \"id\": \"X-FYTbUhjCrS\"\n      },\n      \"source\": [\n        \"Ridge Regression\"\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\"\n        },\n        \"id\": \"QENNFSmZjFlt\",\n        \"outputId\": \"8385ff5b-ae34-4dac-d7fc-604e1826c2e9\"\n      },\n      \"source\": [\n        \"ridge = Ridge(alpha = 0.8).fit(X_train_3,y_train_)\\n\",\n        \"y_pred_ridge = ridge.predict(X_test_3)\\n\",\n        \"print(ridge.score(X_test_3,y_test_))\\n\",\n        \"ridge.coef_\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"stream\",\n          \"text\": [\n            \"0.9854544976588081\\n\"\n          ],\n          \"name\": \"stdout\"\n        },\n        {\n          \"output_type\": \"execute_result\",\n          \"data\": {\n            \"text/plain\": [\n              \"array([[0.        , 0.00363192, 2.00442527]])\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": []\n          },\n          \"execution_count\": 408\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"colab\": {\n          \"base_uri\": \"https://localhost:8080/\",\n          \"height\": 265\n        },\n        \"id\": \"KsM1BdeyiTmB\",\n        \"outputId\": \"8a0f5955-d94d-40d8-9f84-f6dc3d083d5c\"\n      },\n      \"source\": [\n        \"plt.scatter(X_test_,y_test_,s=5,label = \\\"original\\\")\\n\",\n        \"plt.scatter(X_test_,y_pred,s=5,c = \\\"r\\\",label = \\\"Polynomial Regression\\\")\\n\",\n        \"plt.scatter(X_test_,y_pred_linear,s=5,label = \\\"naive Regression\\\")\\n\",\n        \"plt.scatter(X_test_,y_pred_lasso,s=5,label=\\\"lasso\\\")\\n\",\n        \"plt.scatter(X_test_,y_pred_ridge,s=5,label = \\\"ridge\\\")\\n\",\n        \"plt.legend()\\n\",\n        \"plt.show()\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": [\n        {\n          \"output_type\": \"display_data\",\n          \"data\": {\n            \"image/png\": \"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ITExkWeeeQaj0cj27duJj4/nq6++8pjrww8/TGJiIrt376a4uPiS9Fh+/fVXRoxQ83znz59PcHAwiYmJJCYmMm/ePA4fPsySJUvIyMhg7969fP3112zZssVtjAYNGpCSkkL//v156aWX+O2330hJSSE2Npa3336b7OxsfvrpJ/bs2cPOnTuZOXMmoP7wrF69mh07dvDzzz97zO1873taWhqrV68mISGBF198Uag4XgJ2O2WTFXIVp3aTffHyr1adKyVjrsYb8NAAPTEtVN2MP1t3UY2LSxhl5I61jr47j+dxxlRSLfOsM8gy9O0LzZpBnz7q839JcXExUVFRxMbG0qJFCyZNmsTGjRu56667ALjhhhvIzs4mPz/f7bx7772Xzz//HIDPP/+cCRMmOI65yshmZGQAqmztnXfeCaia4C1btiQ9PR2Avn37EhgYSFhYGMHBwQ6J2oiICMf5rqxfv56uXbsSERHB77//zp49ezz6lGf69Om0bduWsWPH8uSTTwKwZs0avvrqK6KioujatSvZ2dns37+fjRs3MmrUKDQaDY0bN6Zv375uY40ePRqArVu3snfvXnr06EFUVBRffvklR44cITg4GIPBwKRJk1iyZAlGoxFQhcDuuece5s2bV2H45Xzv++DBg/H19SU0NJSGDRty+vTpC75mgep9K4pCdPNgfC0mXt/pvgltWePOfHNffKVkzNV4Ay5JEnPGRqOVAJ2Onxu6b6kef/Qv9DbVy7LJClO+ShKhlH9DVhZs3gxWq/rXC3VM7THw1NRU5syZg/4itSB69OhBRkYGf/zxBzabjfDwcMeximRkz4e9P4BGo3E812g0HuebzWYefPBBFi1axK5du5g8efJFSdK+8cYbpKen8/rrrzNx4kRA1fKZM2eO4/UfPnyYG2+88YJj2aV2FUVhwIABjvP37t3L/Pnz0el0JCQkcNttt/HLL79w0003AfDxxx/z0ksvcezYMTp37kx2dvYFr2XH9T262Pf1SkdVHtxCt1fWse+UidtSV6kHXAz1mqu7cef8RMbM23blxcABGgb6EtuqPhoJPoobpTa6pBTGH0519E09nsdtH28WoZTLpWFD6N4ddDr1b8OGlXKZnj178u233wJqjDY0NJSgoCCPfnfffTdjx451874vZsz09HSOHj1Ku3btLnludmMdGhqKyWSqMOvkfDz8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\\n\",\n            \"text/plain\": [\n              \"<Figure size 432x288 with 1 Axes>\"\n            ]\n          },\n          \"metadata\": {\n            \"tags\": [],\n            \"needs_background\": \"light\"\n          }\n        }\n      ]\n    },\n    {\n      \"cell_type\": \"code\",\n      \"metadata\": {\n        \"id\": \"-dwPrVpfij7d\"\n      },\n      \"source\": [\n        \"\"\n      ],\n      \"execution_count\": null,\n      \"outputs\": []\n    }\n  ]\n}"
  },
  {
    "path": "nlp/code/modeling.py",
    "content": "# coding=utf-8\n# Copyright 2018 The Google AI Language Team Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\"\"\"The main BERT model and related functions.\"\"\"\n\nfrom __future__ import absolute_import\nfrom __future__ import division\nfrom __future__ import print_function\n\nimport collections\nimport copy\nimport json\nimport math\nimport re\nimport numpy as np\nimport six\nimport tensorflow as tf\n\n\nclass BertConfig(object):\n  \"\"\"Configuration for `BertModel`.\"\"\"\n\n  def __init__(self,\n               vocab_size,\n               hidden_size=768,\n               num_hidden_layers=12,\n               num_attention_heads=12,\n               intermediate_size=3072,\n               hidden_act=\"gelu\",\n               hidden_dropout_prob=0.1,\n               attention_probs_dropout_prob=0.1,\n               max_position_embeddings=512,\n               type_vocab_size=16,\n               initializer_range=0.02):\n    \"\"\"Constructs BertConfig.\n\n    Args:\n      vocab_size: Vocabulary size of `inputs_ids` in `BertModel`.\n      hidden_size: Size of the encoder layers and the pooler layer.\n      num_hidden_layers: Number of hidden layers in the Transformer encoder.\n      num_attention_heads: Number of attention heads for each attention layer in\n        the Transformer encoder.\n      intermediate_size: The size of the \"intermediate\" (i.e., feed-forward)\n        layer in the Transformer encoder.\n      hidden_act: The non-linear activation function (function or string) in the\n        encoder and pooler.\n      hidden_dropout_prob: The dropout probability for all fully connected\n        layers in the embeddings, encoder, and pooler.\n      attention_probs_dropout_prob: The dropout ratio for the attention\n        probabilities.\n      max_position_embeddings: The maximum sequence length that this model might\n        ever be used with. Typically set this to something large just in case\n        (e.g., 512 or 1024 or 2048).\n      type_vocab_size: The vocabulary size of the `token_type_ids` passed into\n        `BertModel`.\n      initializer_range: The stdev of the truncated_normal_initializer for\n        initializing all weight matrices.\n    \"\"\"\n    self.vocab_size = vocab_size\n    self.hidden_size = hidden_size\n    self.num_hidden_layers = num_hidden_layers\n    self.num_attention_heads = num_attention_heads\n    self.hidden_act = hidden_act\n    self.intermediate_size = intermediate_size\n    self.hidden_dropout_prob = hidden_dropout_prob\n    self.attention_probs_dropout_prob = attention_probs_dropout_prob\n    self.max_position_embeddings = max_position_embeddings\n    self.type_vocab_size = type_vocab_size\n    self.initializer_range = initializer_range\n\n  @classmethod\n  def from_dict(cls, json_object):\n    \"\"\"Constructs a `BertConfig` from a Python dictionary of parameters.\"\"\"\n    config = BertConfig(vocab_size=None)\n    for (key, value) in six.iteritems(json_object):\n      config.__dict__[key] = value\n    return config\n\n  @classmethod\n  def from_json_file(cls, json_file):\n    \"\"\"Constructs a `BertConfig` from a json file of parameters.\"\"\"\n    with tf.gfile.GFile(json_file, \"r\") as reader:\n      text = reader.read()\n    return cls.from_dict(json.loads(text))\n\n  def to_dict(self):\n    \"\"\"Serializes this instance to a Python dictionary.\"\"\"\n    output = copy.deepcopy(self.__dict__)\n    return output\n\n  def to_json_string(self):\n    \"\"\"Serializes this instance to a JSON string.\"\"\"\n    return json.dumps(self.to_dict(), indent=2, sort_keys=True) + \"\\n\"\n\n\nclass BertModel(object):\n  \"\"\"BERT model (\"Bidirectional Encoder Representations from Transformers\").\n\n  Example usage:\n\n  ```python\n  # Already been converted into WordPiece token ids\n  input_ids = tf.constant([[31, 51, 99], [15, 5, 0]])\n  input_mask = tf.constant([[1, 1, 1], [1, 1, 0]])\n  token_type_ids = tf.constant([[0, 0, 1], [0, 2, 0]])\n\n  config = modeling.BertConfig(vocab_size=32000, hidden_size=512,\n    num_hidden_layers=8, num_attention_heads=6, intermediate_size=1024)\n\n  model = modeling.BertModel(config=config, is_training=True,\n    input_ids=input_ids, input_mask=input_mask, token_type_ids=token_type_ids)\n\n  label_embeddings = tf.get_variable(...)\n  pooled_output = model.get_pooled_output()\n  logits = tf.matmul(pooled_output, label_embeddings)\n  ...\n  ```\n  \"\"\"\n\n  def __init__(self,\n               config,\n               is_training,\n               input_ids,\n               input_mask=None,\n               token_type_ids=None,\n               use_one_hot_embeddings=False,\n               scope=None):\n    \"\"\"Constructor for BertModel.\n\n    Args:\n      config: `BertConfig` instance.\n      is_training: bool. true for training model, false for eval model. Controls\n        whether dropout will be applied.\n      input_ids: int32 Tensor of shape [batch_size, seq_length].\n      input_mask: (optional) int32 Tensor of shape [batch_size, seq_length].\n      token_type_ids: (optional) int32 Tensor of shape [batch_size, seq_length].\n      use_one_hot_embeddings: (optional) bool. Whether to use one-hot word\n        embeddings or tf.embedding_lookup() for the word embeddings.\n      scope: (optional) variable scope. Defaults to \"bert\".\n\n    Raises:\n      ValueError: The config is invalid or one of the input tensor shapes\n        is invalid.\n    \"\"\"\n    config = copy.deepcopy(config)\n    if not is_training:\n      config.hidden_dropout_prob = 0.0\n      config.attention_probs_dropout_prob = 0.0\n\n    input_shape = get_shape_list(input_ids, expected_rank=2)\n    batch_size = input_shape[0]\n    seq_length = input_shape[1]\n\n     \n    # 为了保持一致，如果没有MASK，自动添加全为1的\n    # token_type_ids 全为0\n    if input_mask is None:\n      input_mask = tf.ones(shape=[batch_size, seq_length], dtype=tf.int32)\n\n    if token_type_ids is None:\n      token_type_ids = tf.zeros(shape=[batch_size, seq_length], dtype=tf.int32)\n\n    # 进行词嵌入\n\n    with tf.variable_scope(scope, default_name=\"bert\"):\n      with tf.variable_scope(\"embeddings\"):\n        # Perform embedding lookup on the word ids.\n        (self.embedding_output, self.embedding_table) = embedding_lookup(\n            input_ids=input_ids,\n            vocab_size=config.vocab_size,\n            # 将input_ids,MASK,positional全都映射成728维，与预训练模型一致，不能改\n            embedding_size=config.hidden_size, \n            initializer_range=config.initializer_range,\n            word_embedding_name=\"word_embeddings\",\n            use_one_hot_embeddings=use_one_hot_embeddings)\n\n        # Add positional embeddings and token type embeddings, then layer\n        # normalize and perform dropout.\n        # 在输入层和位置编码拼接之前启用Dropout\n\n        self.embedding_output = embedding_postprocessor(\n            input_tensor=self.embedding_output,\n            use_token_type=True,\n            token_type_ids=token_type_ids,\n            token_type_vocab_size=config.type_vocab_size,\n            token_type_embedding_name=\"token_type_embeddings\",\n            use_position_embeddings=True,\n            position_embedding_name=\"position_embeddings\",\n            initializer_range=config.initializer_range,\n            max_position_embeddings=config.max_position_embeddings,\n            dropout_prob=config.hidden_dropout_prob)\n\n# 本来的MASK只是告诉我们哪边是真正有内容，哪边是没有的，如[1,1,1,1,1,0,0,0,0]\n# 但是0在self-attention的时候也会做内积，所以这个时候需要再把MASK加强一下\n# 比如第一个1真正的内容是21，这个时候可能多加一维代表[1,1,1,1,1,0,0,0,0]\n# 这个意思是当你做self-attention，只需要跟前面的5个做就好\n\n      with tf.variable_scope(\"encoder\"):\n        # This converts a 2D mask of shape [batch_size, seq_length] to a 3D\n        # mask of shape [batch_size, seq_length, seq_length] which is used\n        # for the attention scores.\n        attention_mask = create_attention_mask_from_input_mask(\n            input_ids, input_mask)\n\n        # Run the stacked transformer.\n        # `sequence_output` shape = [batch_size, seq_length, hidden_size].\n        self.all_encoder_layers = transformer_model(\n            input_tensor=self.embedding_output,\n            attention_mask=attention_mask,\n            hidden_size=config.hidden_size,\n            num_hidden_layers=config.num_hidden_layers,\n            num_attention_heads=config.num_attention_heads,\n            intermediate_size=config.intermediate_size,\n            intermediate_act_fn=get_activation(config.hidden_act),\n            hidden_dropout_prob=config.hidden_dropout_prob,\n            attention_probs_dropout_prob=config.attention_probs_dropout_prob,\n            initializer_range=config.initializer_range,\n            do_return_all_layers=True)\n      \n      # 只需要最后一层\n      self.sequence_output = self.all_encoder_layers[-1]\n      # The \"pooler\" converts the encoded sequence tensor of shape\n      # [batch_size, seq_length, hidden_size] to a tensor of shape\n      # [batch_size, hidden_size]. This is necessary for segment-level\n      # (or segment-pair-level) classification tasks where we need a fixed\n      # dimensional representation of the segment.\n      with tf.variable_scope(\"pooler\"):\n        # We \"pool\" the model by simply taking the hidden state corresponding\n        # to the first token. We assume that this has been pre-trained\n        first_token_tensor = tf.squeeze(self.sequence_output[:, 0:1, :], axis=1)\n        self.pooled_output = tf.layers.dense(\n            first_token_tensor,\n            config.hidden_size,\n            activation=tf.tanh,\n            kernel_initializer=create_initializer(config.initializer_range))\n\n  def get_pooled_output(self):\n    return self.pooled_output\n\n  def get_sequence_output(self):\n    \"\"\"Gets final hidden layer of encoder.\n\n    Returns:\n      float Tensor of shape [batch_size, seq_length, hidden_size] corresponding\n      to the final hidden of the transformer encoder.\n    \"\"\"\n    return self.sequence_output\n\n  def get_all_encoder_layers(self):\n    return self.all_encoder_layers\n\n  def get_embedding_output(self):\n    \"\"\"Gets output of the embedding lookup (i.e., input to the transformer).\n\n    Returns:\n      float Tensor of shape [batch_size, seq_length, hidden_size] corresponding\n      to the output of the embedding layer, after summing the word\n      embeddings with the positional embeddings and the token type embeddings,\n      then performing layer normalization. This is the input to the transformer.\n    \"\"\"\n    return self.embedding_output\n\n  def get_embedding_table(self):\n    return self.embedding_table\n\n\ndef gelu(x):\n  \"\"\"Gaussian Error Linear Unit.\n\n  This is a smoother version of the RELU.\n  Original paper: https://arxiv.org/abs/1606.08415\n  Args:\n    x: float Tensor to perform activation.\n\n  Returns:\n    `x` with the GELU activation applied.\n  \"\"\"\n  cdf = 0.5 * (1.0 + tf.tanh(\n      (np.sqrt(2 / np.pi) * (x + 0.044715 * tf.pow(x, 3)))))\n  return x * cdf\n\n\ndef get_activation(activation_string):\n  \"\"\"Maps a string to a Python function, e.g., \"relu\" => `tf.nn.relu`.\n\n  Args:\n    activation_string: String name of the activation function.\n\n  Returns:\n    A Python function corresponding to the activation function. If\n    `activation_string` is None, empty, or \"linear\", this will return None.\n    If `activation_string` is not a string, it will return `activation_string`.\n\n  Raises:\n    ValueError: The `activation_string` does not correspond to a known\n      activation.\n  \"\"\"\n\n  # We assume that anything that\"s not a string is already an activation\n  # function, so we just return it.\n  if not isinstance(activation_string, six.string_types):\n    return activation_string\n\n  if not activation_string:\n    return None\n\n  act = activation_string.lower()\n  if act == \"linear\":\n    return None\n  elif act == \"relu\":\n    return tf.nn.relu\n  elif act == \"gelu\":\n    return gelu\n  elif act == \"tanh\":\n    return tf.tanh\n  else:\n    raise ValueError(\"Unsupported activation: %s\" % act)\n\n\ndef get_assignment_map_from_checkpoint(tvars, init_checkpoint):\n  \"\"\"Compute the union of the current variables and checkpoint variables.\"\"\"\n  assignment_map = {}\n  initialized_variable_names = {}\n\n  name_to_variable = collections.OrderedDict()\n  for var in tvars:\n    name = var.name\n    m = re.match(\"^(.*):\\\\d+$\", name)\n    if m is not None:\n      name = m.group(1)\n    name_to_variable[name] = var\n\n  init_vars = tf.train.list_variables(init_checkpoint)\n\n  assignment_map = collections.OrderedDict()\n  for x in init_vars:\n    (name, var) = (x[0], x[1])\n    if name not in name_to_variable:\n      continue\n    assignment_map[name] = name\n    initialized_variable_names[name] = 1\n    initialized_variable_names[name + \":0\"] = 1\n\n  return (assignment_map, initialized_variable_names)\n\n\ndef dropout(input_tensor, dropout_prob):\n  \"\"\"Perform dropout.\n\n  Args:\n    input_tensor: float Tensor.\n    dropout_prob: Python float. The probability of dropping out a value (NOT of\n      *keeping* a dimension as in `tf.nn.dropout`).\n\n  Returns:\n    A version of `input_tensor` with dropout applied.\n  \"\"\"\n  if dropout_prob is None or dropout_prob == 0.0:\n    return input_tensor\n\n  output = tf.nn.dropout(input_tensor, 1.0 - dropout_prob)\n  return output\n\n\ndef layer_norm(input_tensor, name=None):\n  \"\"\"Run layer normalization on the last dimension of the tensor.\"\"\"\n  return tf.contrib.layers.layer_norm(\n      inputs=input_tensor, begin_norm_axis=-1, begin_params_axis=-1, scope=name)\n\n\ndef layer_norm_and_dropout(input_tensor, dropout_prob, name=None):\n  \"\"\"Runs layer normalization followed by dropout.\"\"\"\n  output_tensor = layer_norm(input_tensor, name)\n  output_tensor = dropout(output_tensor, dropout_prob)\n  return output_tensor\n\n\ndef create_initializer(initializer_range=0.02):\n  \"\"\"Creates a `truncated_normal_initializer` with the given range.\"\"\"\n  return tf.truncated_normal_initializer(stddev=initializer_range)\n\n\ndef embedding_lookup(input_ids,\n                     vocab_size,\n                     embedding_size=128,\n                     initializer_range=0.02,\n                     word_embedding_name=\"word_embeddings\",\n                     use_one_hot_embeddings=False):\n  \"\"\"Looks up words embeddings for id tensor.\n\n  Args:\n    input_ids: int32 Tensor of shape [batch_size, seq_length] containing word\n      ids.\n    vocab_size: int. Size of the embedding vocabulary.\n    embedding_size: int. Width of the word embeddings.\n    initializer_range: float. Embedding initialization range.\n    word_embedding_name: string. Name of the embedding table.\n    use_one_hot_embeddings: bool. If True, use one-hot method for word\n      embeddings. If False, use `tf.gather()`.\n\n  Returns:\n    float Tensor of shape [batch_size, seq_length, embedding_size].\n  \"\"\"\n  # This function assumes that the input is of shape [batch_size, seq_length,\n  # num_inputs].\n  #\n  # If the input is a 2D tensor of shape [batch_size, seq_length], we\n  # reshape to [batch_size, seq_length, 1].\n  if input_ids.shape.ndims == 2:\n    input_ids = tf.expand_dims(input_ids, axis=[-1])\n\n  embedding_table = tf.get_variable(\n      name=word_embedding_name,\n      shape=[vocab_size, embedding_size],\n      initializer=create_initializer(initializer_range))\n\n  # batch_size x max_seq_length x 1 --> (batch_size x max_seq_length,) \n  # 降维\n  flat_input_ids = tf.reshape(input_ids, [-1]) \n  if use_one_hot_embeddings:\n    one_hot_input_ids = tf.one_hot(flat_input_ids, depth=vocab_size)\n    output = tf.matmul(one_hot_input_ids, embedding_table)\n  else:\n\n    # 在大表里面查找 <-- look up\n    # output --> (batch_size x max_seq_length,hidden_size)\n    output = tf.gather(embedding_table, flat_input_ids)\n\n  input_shape = get_shape_list(input_ids)\n  \n  # output --> (batch_size,max_seq_length,hidden_size)\n  \n  output = tf.reshape(output,\n                      input_shape[0:-1] + [input_shape[-1] * embedding_size])\n  return (output, embedding_table)\n\n# 添加位置编码\n\ndef embedding_postprocessor(input_tensor,\n                            use_token_type=False,\n                            token_type_ids=None,\n                            token_type_vocab_size=16,\n                            token_type_embedding_name=\"token_type_embeddings\",\n                            use_position_embeddings=True,\n                            position_embedding_name=\"position_embeddings\",\n                            initializer_range=0.02,\n                            max_position_embeddings=512,\n                            dropout_prob=0.1):\n  \"\"\"Performs various post-processing on a word embedding tensor.\n\n  Args:\n    input_tensor: float Tensor of shape [batch_size, seq_length,\n      embedding_size].\n    use_token_type: bool. Whether to add embeddings for `token_type_ids`.\n    token_type_ids: (optional) int32 Tensor of shape [batch_size, seq_length].\n      Must be specified if `use_token_type` is True.\n    token_type_vocab_size: int. The vocabulary size of `token_type_ids`.\n    token_type_embedding_name: string. The name of the embedding table variable\n      for token type ids.\n    use_position_embeddings: bool. Whether to add position embeddings for the\n      position of each token in the sequence.\n    position_embedding_name: string. The name of the embedding table variable\n      for positional embeddings.\n    initializer_range: float. Range of the weight initialization.\n    max_position_embeddings: int. Maximum sequence length that might ever be\n      used with this model. This can be longer than the sequence length of\n      input_tensor, but cannot be shorter.\n    dropout_prob: float. Dropout probability applied to the final output tensor.\n\n  Returns:\n    float tensor with same shape as `input_tensor`. 维度不变\n\n  Raises:\n    ValueError: One of the tensor shapes or input values is invalid.\n  \"\"\"\n  # 把维度变成列表\n  input_shape = get_shape_list(input_tensor, expected_rank=3)\n  batch_size = input_shape[0]\n  seq_length = input_shape[1]\n  width = input_shape[2]\n\n  output = input_tensor\n\n  if use_token_type:\n    if token_type_ids is None:\n      raise ValueError(\"`token_type_ids` must be specified if\"\n                       \"`use_token_type` is True.\")\n\n    # (2,hidden_size) width <-- hidden_size\n    # 2的原因是有两个句子\n\n    token_type_table = tf.get_variable(\n        name=token_type_embedding_name,\n        shape=[token_type_vocab_size, width],\n        initializer=create_initializer(initializer_range))\n    \n    # This vocab will be small so we always do one-hot here, since it is always\n    # faster for a small vocabulary.\n    # one-hot 对于小字典来说可以加速\n    # flat 可以理解为展平，变为一维，即为 (batch_size x max_seq_length,)\n    # 其实展平可以理解为拼接\n    # one_hot_ids --> (batch_size x max_seq_length,2) \n    # one-hot encoding 如 0 --> [1,0] | 1 --> [0,1]\n    # token_type_embeddings --> (batch_size x max_seq_length,hidden_size)\n    flat_token_type_ids = tf.reshape(token_type_ids, [-1])\n    one_hot_ids = tf.one_hot(flat_token_type_ids, depth=token_type_vocab_size)\n    token_type_embeddings = tf.matmul(one_hot_ids, token_type_table)\n    \n    # 还原到(batch_size,max_seq_length,hidden_size)\n    # 为后面相加做准备\n    token_type_embeddings = tf.reshape(token_type_embeddings,\n                                       [batch_size, seq_length, width])\n    # 将token_type_ids 与 词向量 加起来\n    output += token_type_embeddings\n\n  if use_position_embeddings:\n    assert_op = tf.assert_less_equal(seq_length, max_position_embeddings)\n    with tf.control_dependencies([assert_op]):\n\n      # (max_position_embeddings,width) --> full_position_embeddings\n      full_position_embeddings = tf.get_variable(\n          name=position_embedding_name,\n          shape=[max_position_embeddings, width],\n          initializer=create_initializer(initializer_range))\n\n      # Since the position embedding table is a learned variable, we create it\n      # using a (long) sequence length `max_position_embeddings`. The actual\n      # sequence length might be shorter than this, for faster training of\n      # tasks that do not have long sequences.\n      #\n      # So `full_position_embeddings` is effectively an embedding table\n      # for position [0, 1, 2, ..., max_position_embeddings-1], and the current\n      # sequence has positions [0, 1, 2, ... seq_length-1], so we can just\n      # perform a slice.\n      # slice的原因是小于初始化的长度，提高运算效率\n      position_embeddings = tf.slice(full_position_embeddings, [0, 0],\n                                     [seq_length, -1])\n      num_dims = len(output.shape.as_list())\n\n      # Only the last two dimensions are relevant (`seq_length` and `width`), so\n      # we broadcast among the first dimensions, which is typically just\n      # the batch size.\n      position_broadcast_shape = []\n      for _ in range(num_dims - 2):\n        position_broadcast_shape.append(1)\n      position_broadcast_shape.extend([seq_length, width])\n      # reshape --> [1,max_seq_length,768]\n      position_embeddings = tf.reshape(position_embeddings,\n                                       position_broadcast_shape)\n      # 加入位置编码\n      output += position_embeddings\n\n  output = layer_norm_and_dropout(output, dropout_prob)\n  return output\n\ndef create_attention_mask_from_input_mask(from_tensor, to_mask):\n  \"\"\"Create 3D attention mask from a 2D tensor mask.\n\n  Args:\n    from_tensor: 2D or 3D Tensor of shape [batch_size, from_seq_length, ...].\n    to_mask: int32 Tensor of shape [batch_size, to_seq_length].\n\n  Returns:\n    float Tensor of shape [batch_size, from_seq_length, to_seq_length].\n  \"\"\"\n  from_shape = get_shape_list(from_tensor, expected_rank=[2, 3])\n  batch_size = from_shape[0]\n  from_seq_length = from_shape[1]\n\n  to_shape = get_shape_list(to_mask, expected_rank=2)\n  to_seq_length = to_shape[1]\n\n  to_mask = tf.cast(\n      tf.reshape(to_mask, [batch_size, 1, to_seq_length]), tf.float32)\n\n  # We don't assume that `from_tensor` is a mask (although it could be). We\n  # don't actually care if we attend *from* padding tokens (only *to* padding)\n  # tokens so we create a tensor of all ones.\n  #\n  # `broadcast_ones` = (batch_size, from_seq_length, 1)\n  broadcast_ones = tf.ones(\n      shape=[batch_size, from_seq_length, 1], dtype=tf.float32)\n\n  # Here we broadcast along two dimensions to create the mask.\n  mask = broadcast_ones * to_mask\n  # mask --> (batch_size,from_seq_length,to_seq_length)\n  return mask\n\n\ndef attention_layer(from_tensor,\n                    to_tensor,\n                    attention_mask=None,\n                    num_attention_heads=1,\n                    size_per_head=512,\n                    # q,k,v 矩阵激活函数\n                    query_act=None,\n                    key_act=None,\n                    value_act=None,\n                    attention_probs_dropout_prob=0.0,\n                    initializer_range=0.02,\n                    do_return_2d_tensor=False,\n                    batch_size=None,\n                    from_seq_length=None,\n                    to_seq_length=None):\n  \"\"\"Performs multi-headed attention from `from_tensor` to `to_tensor`.\n\n  This is an implementation of multi-headed attention based on \"Attention\n  is all you Need\". If `from_tensor` and `to_tensor` are the same, then\n  this is self-attention. Each timestep in `from_tensor` attends to the\n  corresponding sequence in `to_tensor`, and returns a fixed-with vector.\n\n  This function first projects `from_tensor` into a \"query\" tensor and\n  `to_tensor` into \"key\" and \"value\" tensors. These are (effectively) a list\n  of tensors of length `num_attention_heads`, where each tensor is of shape\n  [batch_size, seq_length, size_per_head].\n\n  Then, the query and key tensors are dot-producted and scaled. These are\n  softmaxed to obtain attention probabilities. The value tensors are then\n  interpolated by these probabilities, then concatenated back to a single\n  tensor and returned.\n\n  In practice, the multi-headed attention are done with transposes and\n  reshapes rather than actual separate tensors.\n\n  Args:\n    from_tensor: float Tensor of shape [batch_size, from_seq_length,\n      from_width].\n    to_tensor: float Tensor of shape [batch_size, to_seq_length, to_width].\n    attention_mask: (optional) int32 Tensor of shape [batch_size,\n      from_seq_length, to_seq_length]. The values should be 1 or 0. The\n      attention scores will effectively be set to -infinity for any positions in\n      the mask that are 0, and will be unchanged for positions that are 1.\n    num_attention_heads: int. Number of attention heads.\n    size_per_head: int. Size of each attention head.\n    query_act: (optional) Activation function for the query transform.\n    key_act: (optional) Activation function for the key transform.\n    value_act: (optional) Activation function for the value transform.\n    attention_probs_dropout_prob: (optional) float. Dropout probability of the\n      attention probabilities.\n    initializer_range: float. Range of the weight initializer.\n    do_return_2d_tensor: bool. If True, the output will be of shape [batch_size\n      * from_seq_length, num_attention_heads * size_per_head]. If False, the\n      output will be of shape [batch_size, from_seq_length, num_attention_heads\n      * size_per_head].\n    batch_size: (Optional) int. If the input is 2D, this might be the batch size\n      of the 3D version of the `from_tensor` and `to_tensor`.\n    from_seq_length: (Optional) If the input is 2D, this might be the seq length\n      of the 3D version of the `from_tensor`.\n    to_seq_length: (Optional) If the input is 2D, this might be the seq length\n      of the 3D version of the `to_tensor`.\n\n  Returns:\n    float Tensor of shape [batch_size, from_seq_length,\n      num_attention_heads * size_per_head]. (If `do_return_2d_tensor` is\n      true, this will be of shape [batch_size * from_seq_length,\n      num_attention_heads * size_per_head]).\n\n  Raises:\n    ValueError: Any of the arguments or tensor shapes are invalid.\n  \"\"\"\n\n  def transpose_for_scores(input_tensor, batch_size, num_attention_heads,\n                           seq_length, width):\n    output_tensor = tf.reshape(\n        input_tensor, [batch_size, seq_length, num_attention_heads, width])\n\n    output_tensor = tf.transpose(output_tensor, [0, 2, 1, 3])\n    return output_tensor\n\n  from_shape = get_shape_list(from_tensor, expected_rank=[2, 3])\n  to_shape = get_shape_list(to_tensor, expected_rank=[2, 3])\n\n  if len(from_shape) != len(to_shape):\n    raise ValueError(\n        \"The rank of `from_tensor` must match the rank of `to_tensor`.\")\n\n  if len(from_shape) == 3:\n    batch_size = from_shape[0]\n    from_seq_length = from_shape[1]\n    to_seq_length = to_shape[1]\n  elif len(from_shape) == 2:\n    if (batch_size is None or from_seq_length is None or to_seq_length is None):\n      raise ValueError(\n          \"When passing in rank 2 tensors to attention_layer, the values \"\n          \"for `batch_size`, `from_seq_length`, and `to_seq_length` \"\n          \"must all be specified.\")\n\n  # Scalar dimensions referenced here:\n  #   B = batch size (number of sequences)\n  #   F = `from_tensor` sequence length\n  #   T = `to_tensor` sequence length\n  #   N = `num_attention_heads`\n  #   H = `size_per_head`\n\n  from_tensor_2d = reshape_to_matrix(from_tensor)\n  to_tensor_2d = reshape_to_matrix(to_tensor)\n\n  # 构建q,k,v矩阵\n  # `query_layer` = [B*F, N*H]\n  # q矩阵由from_tensor产生\n\n  query_layer = tf.layers.dense(\n      from_tensor_2d,\n      num_attention_heads * size_per_head,\n      activation=query_act,\n      name=\"query\",\n      kernel_initializer=create_initializer(initializer_range))\n\n  # `key_layer` = [B*T, N*H]\n  key_layer = tf.layers.dense(\n      to_tensor_2d,\n      num_attention_heads * size_per_head,\n      activation=key_act,\n      name=\"key\",\n      kernel_initializer=create_initializer(initializer_range))\n\n  # `value_layer` = [B*T, N*H]\n  value_layer = tf.layers.dense(\n      to_tensor_2d,\n      num_attention_heads * size_per_head,\n      activation=value_act,\n      name=\"value\",\n      kernel_initializer=create_initializer(initializer_range))\n\n  # `query_layer` = [B, N, F, H] #加速内积\n  query_layer = transpose_for_scores(query_layer, batch_size,\n                                     num_attention_heads, from_seq_length,\n                                     size_per_head)\n\n  # `key_layer` = [B, N, T, H] # 加速内积\n  key_layer = transpose_for_scores(key_layer, batch_size, num_attention_heads,\n                                   to_seq_length, size_per_head)\n\n  # Take the dot product between \"query\" and \"key\" to get the raw\n  # attention scores.\n  # `attention_scores` = [B, N, F, T]\n  attention_scores = tf.matmul(query_layer, key_layer, transpose_b=True)\n  attention_scores = tf.multiply(attention_scores,\n                                 1.0 / math.sqrt(float(size_per_head))) # 除以分母 \n  \n  if attention_mask is not None:\n    # `attention_mask` = [B, 1, F, T]\n    attention_mask = tf.expand_dims(attention_mask, axis=[1])\n\n    # Since attention_mask is 1.0 for positions we want to attend and 0.0 for\n    # masked positions, this operation will create a tensor which is 0.0 for\n    # positions we want to attend and -10000.0 for masked positions.\n    # 这样做softmax的时候 1 --> 0 --> 1 not e | 0 -- > -10000 -- > 0 所以不需要的会很小不占比率\n    adder = (1.0 - tf.cast(attention_mask, tf.float32)) * -10000.0\n\n\n    # Since we are adding it to the raw scores before the softmax, this is\n    # effectively the same as removing these entirely.\n    attention_scores += adder\n\n  # Normalize the attention scores to probabilities.\n  # `attention_probs` = [B, N, F, T]\n  attention_probs = tf.nn.softmax(attention_scores)\n\n  # This is actually dropping out entire tokens to attend to, which might\n  # seem a bit unusual, but is taken from the original Transformer paper.\n  attention_probs = dropout(attention_probs, attention_probs_dropout_prob)\n\n  # `value_layer` = [B, T, N, H]\n  value_layer = tf.reshape(\n      value_layer,\n      [batch_size, to_seq_length, num_attention_heads, size_per_head])\n\n  # `value_layer` = [B, N, T, H]\n  value_layer = tf.transpose(value_layer, [0, 2, 1, 3])\n\n  # `context_layer` = [B, N, F, H]\n  context_layer = tf.matmul(attention_probs, value_layer)\n\n  # `context_layer` = [B, F, N, H]\n  context_layer = tf.transpose(context_layer, [0, 2, 1, 3])\n\n  if do_return_2d_tensor:\n    # `context_layer` = [B*F, N*H]\n    context_layer = tf.reshape(\n        context_layer,\n        [batch_size * from_seq_length, num_attention_heads * size_per_head])\n  else:\n    # `context_layer` = [B, F, N*H]\n    context_layer = tf.reshape(\n        context_layer,\n        [batch_size, from_seq_length, num_attention_heads * size_per_head])\n\n  return context_layer\n\n\ndef transformer_model(input_tensor,\n                      attention_mask=None,\n                      hidden_size=768,\n                      num_hidden_layers=12,\n                      num_attention_heads=12,\n                      intermediate_size=3072,\n                      intermediate_act_fn=gelu,\n                      hidden_dropout_prob=0.1,\n                      attention_probs_dropout_prob=0.1,\n                      initializer_range=0.02,\n                      do_return_all_layers=False):\n  \"\"\"Multi-headed, multi-layer Transformer from \"Attention is All You Need\".\n\n  This is almost an exact implementation of the original Transformer encoder.\n\n  See the original paper:\n  https://arxiv.org/abs/1706.03762\n\n  Also see:\n  https://github.com/tensorflow/tensor2tensor/blob/master/tensor2tensor/models/transformer.py\n\n  Args:\n    input_tensor: float Tensor of shape [batch_size, seq_length, hidden_size].\n    attention_mask: (optional) int32 Tensor of shape [batch_size, seq_length,\n      seq_length], with 1 for positions that can be attended to and 0 in\n      positions that should not be.\n    hidden_size: int. Hidden size of the Transformer.\n    num_hidden_layers: int. Number of layers (blocks) in the Transformer.\n    num_attention_heads: int. Number of attention heads in the Transformer.\n    intermediate_size: int. The size of the \"intermediate\" (a.k.a., feed\n      forward) layer.\n    intermediate_act_fn: function. The non-linear activation function to apply\n      to the output of the intermediate/feed-forward layer.\n    hidden_dropout_prob: float. Dropout probability for the hidden layers.\n    attention_probs_dropout_prob: float. Dropout probability of the attention\n      probabilities.\n    initializer_range: float. Range of the initializer (stddev of truncated\n      normal).\n    do_return_all_layers: Whether to also return all layers or just the final\n      layer.\n\n  Returns:\n    float Tensor of shape [batch_size, seq_length, hidden_size], the final\n    hidden layer of the Transformer.\n\n  Raises:\n    ValueError: A Tensor shape or parameter is invalid.\n  \"\"\"\n  # 768 % 12 得要能整除\n  if hidden_size % num_attention_heads != 0:\n    raise ValueError(\n        \"The hidden size (%d) is not a multiple of the number of attention \"\n        \"heads (%d)\" % (hidden_size, num_attention_heads))\n  # attention_head_size = 768 % 12\n  attention_head_size = int(hidden_size / num_attention_heads)\n  input_shape = get_shape_list(input_tensor, expected_rank=3)\n  batch_size = input_shape[0]\n  seq_length = input_shape[1]\n  input_width = input_shape[2]\n\n  # The Transformer performs sum residuals on all layers so the input needs\n  # to be the same as the hidden size.\n\n  if input_width != hidden_size:\n    raise ValueError(\"The width of the input tensor (%d) != hidden size (%d)\" %\n                     (input_width, hidden_size))\n\n  # We keep the representation as a 2D tensor to avoid re-shaping it back and\n  # forth from a 3D tensor to a 2D tensor. Re-shapes are normally free on\n  # the GPU/CPU but may not be free on the TPU, so we want to minimize them to\n  # help the optimizer.\n  # [batch_size x max_seq_length,768]\n  prev_output = reshape_to_matrix(input_tensor)\n\n  all_layer_outputs = []\n  # 遍历所有层\n  for layer_idx in range(num_hidden_layers):\n    with tf.variable_scope(\"layer_%d\" % layer_idx):\n      layer_input = prev_output\n\n      with tf.variable_scope(\"attention\"):\n        attention_heads = []\n        with tf.variable_scope(\"self\"):\n          attention_head = attention_layer(\n              # from_tensor 和 to_tensor一样的 --> self-attention\n              from_tensor=layer_input,\n              to_tensor=layer_input,\n              attention_mask=attention_mask,\n              num_attention_heads=num_attention_heads,\n              size_per_head=attention_head_size,\n              attention_probs_dropout_prob=attention_probs_dropout_prob,\n              initializer_range=initializer_range,\n              do_return_2d_tensor=True,\n              batch_size=batch_size,\n              from_seq_length=seq_length,\n              to_seq_length=seq_length)\n          attention_heads.append(attention_head)\n\n        attention_output = None\n        if len(attention_heads) == 1:\n          attention_output = attention_heads[0]\n        else:\n          # In the case where we have other sequences, we just concatenate\n          # them to the self-attention head before the projection.\n          attention_output = tf.concat(attention_heads, axis=-1)\n\n        # Run a linear projection of `hidden_size` then add a residual\n        # with `layer_input`.\n        with tf.variable_scope(\"output\"):\n          attention_output = tf.layers.dense(\n              attention_output,\n              hidden_size,\n              kernel_initializer=create_initializer(initializer_range))\n          attention_output = dropout(attention_output, hidden_dropout_prob)\n          # 残差相连\n          attention_output = layer_norm(attention_output + layer_input)\n\n      # The activation is only applied to the \"intermediate\" hidden layer.\n      with tf.variable_scope(\"intermediate\"):\n        intermediate_output = tf.layers.dense(\n            attention_output,\n            intermediate_size,\n            activation=intermediate_act_fn,\n            kernel_initializer=create_initializer(initializer_range))\n\n      # Down-project back to `hidden_size` then add the residual.\n      with tf.variable_scope(\"output\"):\n        layer_output = tf.layers.dense(\n            intermediate_output,\n            hidden_size,\n            kernel_initializer=create_initializer(initializer_range))\n        layer_output = dropout(layer_output, hidden_dropout_prob)\n        layer_output = layer_norm(layer_output + attention_output)\n        prev_output = layer_output\n        all_layer_outputs.append(layer_output)\n\n  if do_return_all_layers:\n    final_outputs = []\n    for layer_output in all_layer_outputs:\n      final_output = reshape_from_matrix(layer_output, input_shape)\n      final_outputs.append(final_output)\n    return final_outputs\n  else:\n    final_output = reshape_from_matrix(prev_output, input_shape)\n    return final_output\n\n\ndef get_shape_list(tensor, expected_rank=None, name=None):\n  \"\"\"Returns a list of the shape of tensor, preferring static dimensions.\n\n  Args:\n    tensor: A tf.Tensor object to find the shape of.\n    expected_rank: (optional) int. The expected rank of `tensor`. If this is\n      specified and the `tensor` has a different rank, and exception will be\n      thrown.\n    name: Optional name of the tensor for the error message.\n\n  Returns:\n    A list of dimensions of the shape of tensor. All static dimensions will\n    be returned as python integers, and dynamic dimensions will be returned\n    as tf.Tensor scalars.\n  \"\"\"\n  if name is None:\n    name = tensor.name\n\n  if expected_rank is not None:\n    assert_rank(tensor, expected_rank, name)\n\n  shape = tensor.shape.as_list()\n\n  non_static_indexes = []\n  for (index, dim) in enumerate(shape):\n    if dim is None:\n      non_static_indexes.append(index)\n\n  if not non_static_indexes:\n    return shape\n\n  dyn_shape = tf.shape(tensor)\n  for index in non_static_indexes:\n    shape[index] = dyn_shape[index]\n  return shape\n\n\ndef reshape_to_matrix(input_tensor):\n  \"\"\"Reshapes a >= rank 2 tensor to a rank 2 tensor (i.e., a matrix).\"\"\"\n  ndims = input_tensor.shape.ndims\n  if ndims < 2:\n    raise ValueError(\"Input tensor must have at least rank 2. Shape = %s\" %\n                     (input_tensor.shape))\n  if ndims == 2:\n    return input_tensor\n\n  width = input_tensor.shape[-1]\n  output_tensor = tf.reshape(input_tensor, [-1, width])\n  return output_tensor\n\n\ndef reshape_from_matrix(output_tensor, orig_shape_list):\n  \"\"\"Reshapes a rank 2 tensor back to its original rank >= 2 tensor.\"\"\"\n  if len(orig_shape_list) == 2:\n    return output_tensor\n\n  output_shape = get_shape_list(output_tensor)\n\n  orig_dims = orig_shape_list[0:-1]\n  width = output_shape[-1]\n\n  return tf.reshape(output_tensor, orig_dims + [width])\n\n\ndef assert_rank(tensor, expected_rank, name=None):\n  \"\"\"Raises an exception if the tensor rank is not of the expected rank.\n\n  Args:\n    tensor: A tf.Tensor to check the rank of.\n    expected_rank: Python integer or list of integers, expected rank.\n    name: Optional name of the tensor for the error message.\n\n  Raises:\n    ValueError: If the expected shape doesn't match the actual shape.\n  \"\"\"\n  if name is None:\n    name = tensor.name\n\n  expected_rank_dict = {}\n  if isinstance(expected_rank, six.integer_types):\n    expected_rank_dict[expected_rank] = True\n  else:\n    for x in expected_rank:\n      expected_rank_dict[x] = True\n\n  actual_rank = tensor.shape.ndims\n  if actual_rank not in expected_rank_dict:\n    scope_name = tf.get_variable_scope().name\n    raise ValueError(\n        \"For the tensor `%s` in scope `%s`, the actual rank \"\n        \"`%d` (shape = %s) is not equal to the expected rank `%s`\" %\n        (name, scope_name, actual_rank, str(tensor.shape), str(expected_rank)))\n"
  },
  {
    "path": "nlp/code/run_classifier.py",
    "content": "# coding=utf-8\n# Copyright 2018 The Google AI Language Team Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\"\"\"BERT finetuning runner.\"\"\"\n\nfrom __future__ import absolute_import\nfrom __future__ import division\nfrom __future__ import print_function\n\nimport collections\nimport csv\nimport os\nimport modeling\nimport optimization\nimport tokenization\nimport tensorflow as tf\n\n\n# FLAGS代表你传进去的参数，有必要参数和其他参数\n\nflags = tf.flags\n\nFLAGS = flags.FLAGS\n\n## Required parameters\nflags.DEFINE_string(\n    \"data_dir\", None,\n    \"The input data dir. Should contain the .tsv files (or other data files) \"\n    \"for the task.\")\n\nflags.DEFINE_string(\n    \"bert_config_file\", None,\n    \"The config json file corresponding to the pre-trained BERT model. \"\n    \"This specifies the model architecture.\")\n\nflags.DEFINE_string(\"task_name\", None, \"The name of the task to train.\")\n\nflags.DEFINE_string(\"vocab_file\", None,\n                    \"The vocabulary file that the BERT model was trained on.\")\n\nflags.DEFINE_string(\n    \"output_dir\", None,\n    \"The output directory where the model checkpoints will be written.\")\n\n## Other parameters\n\nflags.DEFINE_string(\n    \"init_checkpoint\", None,\n    \"Initial checkpoint (usually from a pre-trained BERT model).\")\n\nflags.DEFINE_bool(\n    \"do_lower_case\", True,\n    \"Whether to lower case the input text. Should be True for uncased \"\n    \"models and False for cased models.\")\n\nflags.DEFINE_integer(\n    \"max_seq_length\", 128,\n    \"The maximum total input sequence length after WordPiece tokenization. \"\n    \"Sequences longer than this will be truncated, and sequences shorter \"\n    \"than this will be padded.\")\n\nflags.DEFINE_bool(\"do_train\", False, \"Whether to run training.\")\n\nflags.DEFINE_bool(\"do_eval\", False, \"Whether to run eval on the dev set.\")\n\nflags.DEFINE_bool(\n    \"do_predict\", False,\n    \"Whether to run the model in inference mode on the test set.\")\n\nflags.DEFINE_integer(\"train_batch_size\", 32, \"Total batch size for training.\")\n\nflags.DEFINE_integer(\"eval_batch_size\", 8, \"Total batch size for eval.\")\n\nflags.DEFINE_integer(\"predict_batch_size\", 8, \"Total batch size for predict.\")\n\nflags.DEFINE_float(\"learning_rate\", 5e-5, \"The initial learning rate for Adam.\")\n\nflags.DEFINE_float(\"num_train_epochs\", 3.0,\n                   \"Total number of training epochs to perform.\")\n\nflags.DEFINE_float(\n    \"warmup_proportion\", 0.1,\n    \"Proportion of training to perform linear learning rate warmup for. \"\n    \"E.g., 0.1 = 10% of training.\")\n\nflags.DEFINE_integer(\"save_checkpoints_steps\", 1000,\n                     \"How often to save the model checkpoint.\")\n\nflags.DEFINE_integer(\"iterations_per_loop\", 1000,\n                     \"How many steps to make in each estimator call.\")\n\nflags.DEFINE_bool(\"use_tpu\", False, \"Whether to use TPU or GPU/CPU.\")\n\ntf.flags.DEFINE_string(\n    \"tpu_name\", None,\n    \"The Cloud TPU to use for training. This should be either the name \"\n    \"used when creating the Cloud TPU, or a grpc://ip.address.of.tpu:8470 \"\n    \"url.\")\n\ntf.flags.DEFINE_string(\n    \"tpu_zone\", None,\n    \"[Optional] GCE zone where the Cloud TPU is located in. If not \"\n    \"specified, we will attempt to automatically detect the GCE project from \"\n    \"metadata.\")\n\ntf.flags.DEFINE_string(\n    \"gcp_project\", None,\n    \"[Optional] Project name for the Cloud TPU-enabled project. If not \"\n    \"specified, we will attempt to automatically detect the GCE project from \"\n    \"metadata.\")\n\ntf.flags.DEFINE_string(\"master\", None, \"[Optional] TensorFlow master URL.\")\n\nflags.DEFINE_integer(\n    \"num_tpu_cores\", 8,\n    \"Only used if `use_tpu` is True. Total number of TPU cores to use.\")\n\n\nclass InputExample(object):\n  \"\"\"A single training/test example for simple sequence classification.\"\"\"\n\n  def __init__(self, guid, text_a, text_b=None, label=None):\n    \"\"\"Constructs a InputExample.\n\n    Args:\n      guid: Unique id for the example.\n      text_a: string. The untokenized text of the first sequence. For single\n        sequence tasks, only this sequence must be specified.\n      text_b: (Optional) string. The untokenized text of the second sequence.\n        Only must be specified for sequence pair tasks.\n      label: (Optional) string. The label of the example. This should be\n        specified for train and dev examples, but not for test examples.\n    \"\"\"\n    self.guid = guid\n    self.text_a = text_a\n    self.text_b = text_b\n    self.label = label\n\n\nclass PaddingInputExample(object):\n  \"\"\"Fake example so the num input examples is a multiple of the batch size.\n\n  When running eval/predict on the TPU, we need to pad the number of examples\n  to be a multiple of the batch size, because the TPU requires a fixed batch\n  size. The alternative is to drop the last batch, which is bad because it means\n  the entire output data won't be generated.\n\n  We use this class instead of `None` because treating `None` as padding\n  battches could cause silent errors.\n  \"\"\"\n\n\nclass InputFeatures(object):\n  \"\"\"A single set of features of data.\"\"\"\n\n  def __init__(self,\n               input_ids,\n               input_mask,\n               segment_ids,\n               label_id,\n               is_real_example=True):\n    self.input_ids = input_ids\n    self.input_mask = input_mask\n    self.segment_ids = segment_ids\n    self.label_id = label_id\n    self.is_real_example = is_real_example\n\n\nclass DataProcessor(object):\n  \"\"\"Base class for data converters for sequence classification data sets.\"\"\"\n\n  def get_train_examples(self, data_dir):\n    \"\"\"Gets a collection of `InputExample`s for the train set.\"\"\"\n    raise NotImplementedError()\n\n  def get_dev_examples(self, data_dir):\n    \"\"\"Gets a collection of `InputExample`s for the dev set.\"\"\"\n    raise NotImplementedError()\n\n  def get_test_examples(self, data_dir):\n    \"\"\"Gets a collection of `InputExample`s for prediction.\"\"\"\n    raise NotImplementedError()\n\n  def get_labels(self):\n    \"\"\"Gets the list of labels for this data set.\"\"\"\n    raise NotImplementedError()\n\n  @classmethod\n  def _read_tsv(cls, input_file, quotechar=None):\n    \"\"\"Reads a tab separated value file.\"\"\"\n    with tf.gfile.Open(input_file, \"r\") as f:\n      reader = csv.reader(f, delimiter=\"\\t\", quotechar=quotechar)  \n      lines = []\n      \n      # line --> ['0', '453575', '453448', 'The 30-year bond US3...s close.\", 'The 30-year bond US3...Wednesday.']\n      # 将每一行内容，变成一个列表\n      \n      for line in reader:\n        lines.append(line)\n      return lines\n      \n      # lines最终结果是将每一个列表再作为一个元素，拼接成一个大列表\n      # len --> 3669\n\nclass MyDataProcessor(DataProcessor):\n  \"\"\"Base class for data converters for sequence classification data sets.\"\"\"\n\n  def get_train_examples(self, data_dir):\n    \"\"\"Gets a collection of `InputExample`s for the train set.\"\"\"\n    file_path = os.path.join(data_dir,\"train_sentiment.txt\")\n    f = open(file_path,\"r\",encoding=\"utf-8\")\n    train_data = []\n    index = 0\n    for line in f.readlines():\n      guid = \"train-%d\" %(index)\n      line = line.replace(\"\\n\",\"\").split(\"\\t\")\n      text_a = tokenization.convert_to_unicode(str(line[1]))\n      label = str(line[2])\n      train_data.append(\n          InputExample(guid=guid, text_a=text_a, text_b=None, label=label))\n      index += 1\n    return train_data\n\n  def get_dev_examples(self, data_dir):\n    file_path = os.path.join(data_dir, 'test_sentiment.txt')\n    f = open(file_path, 'r', encoding='utf-8')\n    dev_data = []\n    index = 0\n    for line in f.readlines():\n      guid = 'dev-%d' % index\n      line = line.replace(\"\\n\", \"\").split(\"\\t\")\n      text_a = tokenization.convert_to_unicode(str(line[1]))\n      label = str(line[2])\n      dev_data.append(InputExample(guid=guid, text_a=text_a, text_b=None, label=label))\n      index += 1\n    return dev_data\n\n  def get_test_examples(self, data_dir):\n    \"\"\"Gets a collection of `InputExample`s for prediction.\"\"\"\n    file_path = os.path.join(data_dir,\"test_sentiment.txt\")\n    f = open(file_path,\"r\",encoding=\"utf-8\")\n    test_data = []\n    index = 0\n    for line in f.readlines():\n      guid = \"test-%d\" %(index)\n      line = line.replace(\"\\n\",\"\").split(\"\\t\")\n      text_a = tokenization.convert_to_unicode(str(line[1]))\n      label = str(line[2])\n      test_data.append(\n          InputExample(guid=guid, text_a=text_a, text_b=None, label=label))\n      index += 1\n    return test_data\n\n  def get_labels(self):\n    \"\"\"Gets the list of labels for this data set.\"\"\"\n    return [\"0\", \"1\", \"2\"]\n\n  @classmethod\n  def _read_tsv(cls, input_file, quotechar=None):\n    \"\"\"Reads a tab separated value file.\"\"\"\n    with tf.gfile.Open(input_file, \"r\") as f:\n      reader = csv.reader(f, delimiter=\"\\t\", quotechar=quotechar)  \n      lines = []\n      \n      # line --> ['0', '453575', '453448', 'The 30-year bond US3...s close.\", 'The 30-year bond US3...Wednesday.']\n      # 将每一行内容，变成一个列表\n      \n      for line in reader:\n        lines.append(line)\n      return lines\n\n\nclass XnliProcessor(DataProcessor):\n  \"\"\"Processor for the XNLI data set.\"\"\"\n\n  def __init__(self):\n    self.language = \"zh\"\n\n  def get_train_examples(self, data_dir):\n    \"\"\"See base class.\"\"\"\n    lines = self._read_tsv(\n        os.path.join(data_dir, \"multinli\",\n                     \"multinli.train.%s.tsv\" % self.language))\n    examples = []\n    for (i, line) in enumerate(lines):\n      if i == 0:\n        continue\n      guid = \"train-%d\" % (i)\n      text_a = tokenization.convert_to_unicode(line[0])\n      text_b = tokenization.convert_to_unicode(line[1])\n      label = tokenization.convert_to_unicode(line[2])\n      if label == tokenization.convert_to_unicode(\"contradictory\"):\n        label = tokenization.convert_to_unicode(\"contradiction\")\n      examples.append(\n          InputExample(guid=guid, text_a=text_a, text_b=text_b, label=label))\n    return examples\n\n  def get_dev_examples(self, data_dir):\n    \"\"\"See base class.\"\"\"\n    lines = self._read_tsv(os.path.join(data_dir, \"xnli.dev.tsv\"))\n    examples = []\n    for (i, line) in enumerate(lines):\n      if i == 0:\n        continue\n      guid = \"dev-%d\" % (i)\n      language = tokenization.convert_to_unicode(line[0])\n      if language != tokenization.convert_to_unicode(self.language):\n        continue\n      text_a = tokenization.convert_to_unicode(line[6])\n      text_b = tokenization.convert_to_unicode(line[7])\n      label = tokenization.convert_to_unicode(line[1])\n      examples.append(\n          InputExample(guid=guid, text_a=text_a, text_b=text_b, label=label))\n    return examples\n\n  def get_labels(self):\n    \"\"\"See base class.\"\"\"\n    return [\"contradiction\", \"entailment\", \"neutral\"]\n\n\nclass MnliProcessor(DataProcessor):\n  \"\"\"Processor for the MultiNLI data set (GLUE version).\"\"\"\n\n  def get_train_examples(self, data_dir):\n    \"\"\"See base class.\"\"\"\n    return self._create_examples(\n        self._read_tsv(os.path.join(data_dir, \"train.tsv\")), \"train\")\n\n  def get_dev_examples(self, data_dir):\n    \"\"\"See base class.\"\"\"\n    return self._create_examples(\n        self._read_tsv(os.path.join(data_dir, \"dev.tsv\")),\"dev\")\n\n\n  def get_test_examples(self, data_dir):\n    \"\"\"See base class.\"\"\"\n    return self._create_examples(\n        self._read_tsv(os.path.join(data_dir, \"test.tsv\")), \"test\")\n\n  def get_labels(self):\n    \"\"\"See base class.\"\"\"\n    return [\"contradiction\", \"entailment\", \"neutral\"]\n\n  def _create_examples(self, lines, set_type):\n    \"\"\"Creates examples for the training and dev sets.\"\"\"\n    examples = []\n    for (i, line) in enumerate(lines):\n      if i == 0:\n        continue\n      guid = \"%s-%s\" % (set_type, tokenization.convert_to_unicode(line[0]))\n      text_a = tokenization.convert_to_unicode(line[8])\n      text_b = tokenization.convert_to_unicode(line[9])\n      if set_type == \"test\":\n        label = \"contradiction\"\n      else:\n        label = tokenization.convert_to_unicode(line[-1])\n      examples.append(\n          InputExample(guid=guid, text_a=text_a, text_b=text_b, label=label))\n    return examples\n\n\nclass MrpcProcessor(DataProcessor):\n  \"\"\"Processor for the MRPC data set (GLUE version).\"\"\"\n  # 读取train,dev和test文件\n  \n  def get_train_examples(self, data_dir):\n    \"\"\"See base class.\"\"\"\n    return self._create_examples(\n        self._read_tsv(os.path.join(data_dir, \"train.tsv\")), \"train\")\n\n  def get_dev_examples(self, data_dir):\n    \"\"\"See base class.\"\"\"\n    return self._create_examples(\n        self._read_tsv(os.path.join(data_dir, \"dev.tsv\")), \"dev\")\n\n  def get_test_examples(self, data_dir):\n    \"\"\"See base class.\"\"\"\n    return self._create_examples(\n        self._read_tsv(os.path.join(data_dir, \"test.tsv\")), \"test\")\n  # 设置标签，此为二分类，故为0，1\n  \n  def get_labels(self):\n    \"\"\"See base class.\"\"\"\n    return [\"0\", \"1\"]\n\n  def _create_examples(self, lines, set_type):\n    \"\"\"Creates examples for the training and dev sets.\"\"\"\n    examples = []\n    # i 是小列表在大列表的索引，line 是每一个具体的小列表\n    for (i, line) in enumerate(lines):\n      if i == 0:\n        continue\n      guid = \"%s-%s\" % (set_type, i)\n      # text_a,text_b 都是每一行最后两列具体句子，这里转换为Unicode编码\n      text_a = tokenization.convert_to_unicode(line[3])\n      text_b = tokenization.convert_to_unicode(line[4])\n      # 初始化test标签，因为train已经有了，所以拿来用就好\n      if set_type == \"test\":\n        label = \"0\"\n      else:\n        label = tokenization.convert_to_unicode(line[0])\n      examples.append(\n          InputExample(guid=guid, text_a=text_a, text_b=text_b, label=label))\n      \n      # examples -- >\n      # guid:'train-1'\n      # label:'1'\n      # text_a:'Amrozi accused his brother ...\n      # text_b:'Referring to him ...\n    \n    return examples\n\n\nclass ColaProcessor(DataProcessor):\n  \"\"\"Processor for the CoLA data set (GLUE version).\"\"\"\n\n  def get_train_examples(self, data_dir):\n    \"\"\"See base class.\"\"\"\n    return self._create_examples(\n        self._read_tsv(os.path.join(data_dir, \"train.tsv\")), \"train\")\n\n  def get_dev_examples(self, data_dir):\n    \"\"\"See base class.\"\"\"\n    return self._create_examples(\n        self._read_tsv(os.path.join(data_dir, \"dev.tsv\")), \"dev\")\n\n  def get_test_examples(self, data_dir):\n    \"\"\"See base class.\"\"\"\n    return self._create_examples(\n        self._read_tsv(os.path.join(data_dir, \"test.tsv\")), \"test\")\n\n  def get_labels(self):\n    \"\"\"See base class.\"\"\"\n    return [\"0\", \"1\"]\n\n  def _create_examples(self, lines, set_type):\n    \"\"\"Creates examples for the training and dev sets.\"\"\"\n    examples = []\n    for (i, line) in enumerate(lines):\n      # Only the test set has a header\n      if set_type == \"test\" and i == 0:\n        continue\n      guid = \"%s-%s\" % (set_type, i)\n      if set_type == \"test\":\n        text_a = tokenization.convert_to_unicode(line[1])\n        label = \"0\"\n      else:\n        text_a = tokenization.convert_to_unicode(line[3])\n        label = tokenization.convert_to_unicode(line[1])\n      examples.append(\n          InputExample(guid=guid, text_a=text_a, text_b=None, label=label))\n    return examples\n\n# 构建实例\n\ndef convert_single_example(ex_index, example, label_list, max_seq_length,\n                           tokenizer):\n  \"\"\"Converts a single `InputExample` into a single `InputFeatures`.\"\"\"\n  # 创造初始化例子\n  if isinstance(example, PaddingInputExample):\n    return InputFeatures(\n        input_ids=[0] * max_seq_length,\n        input_mask=[0] * max_seq_length,\n        segment_ids=[0] * max_seq_length,\n        label_id=0,\n        is_real_example=False)\n  \n  # label_map --> {\"0\":0,\"1\":1}\n  \n  label_map = {}\n  for (i, label) in enumerate(label_list):\n    label_map[label] = i\n  \n  # 按照词表进行切分\n  # tokens_a --> ['am', '##ro', '##zi', 'accused', 'his', 'brother', ','...]\n  tokens_a = tokenizer.tokenize(example.text_a)\n  tokens_b = None\n  if example.text_b:\n    # tokens_b 是被词切分之后更精细的结构\n    tokens_b = tokenizer.tokenize(example.text_b)\n\n  if tokens_b:\n    # Modifies `tokens_a` and `tokens_b` in place so that the total\n    # length is less than the specified length.\n    # Account for [CLS], [SEP], [SEP] with \"- 3\"\n    # 如果b不为空，为两句话，句子开头要放[CLS]，中间和结尾都要放[SEP]，所以最大长度应该去掉这三者\n    \n    _truncate_seq_pair(tokens_a, tokens_b, max_seq_length - 3)\n  else:\n    # Account for [CLS] and [SEP] with \"- 2\"\n    # b 为空就是一句话，两个就行\n    if len(tokens_a) > max_seq_length - 2:\n      tokens_a = tokens_a[0:(max_seq_length - 2)]\n\n  # The convention in BERT is:\n  # (a) For sequence pairs:\n  # 第一个句子用0表示，第二个句子用1表示，第一个[SEP]为0，第二个[SEP]为1\n  #  tokens:   [CLS] is this jack ##son ##ville ? [SEP] no it is not . [SEP]\n  #  type_ids: 0     0  0    0    0     0       0 0     1  1  1  1   1 1\n  # (b) For single sequences:\n  #  tokens:   [CLS] the dog is hairy . [SEP]\n  #  type_ids: 0     0   0   0  0     0 0\n  #\n  # Where \"type_ids\" are used to indicate whether this is the first\n  # sequence or the second sequence. The embedding vectors for `type=0` and\n  # `type=1` were learned during pre-training and are added to the wordpiece\n  # embedding vector (and position vector). This is not *strictly* necessary\n  # since the [SEP] token unambiguously separates the sequences, but it makes\n  # it easier for the model to learn the concept of sequences.\n  #\n  # For classification tasks, the first vector (corresponding to [CLS]) is\n  # used as the \"sentence vector\". Note that this only makes sense because\n  # the entire model is fine-tuned.\n  \n  tokens = []\n  segment_ids = []\n  \n  tokens.append(\"[CLS]\")\n  segment_ids.append(0)\n  for token in tokens_a:\n    tokens.append(token)\n    segment_ids.append(0)\n  tokens.append(\"[SEP]\")\n  segment_ids.append(0)\n\n  # ['[CLS]', 'am', '##ro', '##zi', 'accused', 'his', 'brother', ','...\"[SEP]\",...,\"[SEP]\"]\n\n  if tokens_b:\n    for token in tokens_b:\n      tokens.append(token)\n      segment_ids.append(1)\n    tokens.append(\"[SEP]\")\n    segment_ids.append(1)\n  \n  # [101, 2572, 3217, 5831, 5496, 2010, 2567, 1010, 3183, 2002, 2170, 1000, 1996, 7409, ...]\n  input_ids = tokenizer.convert_tokens_to_ids(tokens)\n\n  # The mask has 1 for real tokens and 0 for padding tokens. Only real\n  # tokens are attended to.\n  # 如果有内容，[MASK]为1，若为空，[MASK]为0\n\n  input_mask = [1] * len(input_ids)\n\n  # Zero-pad up to the sequence length.\n  # input_ids 代表每个词的索引\n  # input_mask 代表MASK的值\n  # segment_ids 代表是第一个还是第二个句子\n  # 小于最大长度补0，保持长度一致，但是0同样有对应的内容，后续做self-attention，\n  # 一个词要对应一个句子中所有的词，但是这样做没有意义，所以这里采用MASK机制\n\n  while len(input_ids) < max_seq_length:\n    input_ids.append(0)\n    input_mask.append(0)\n    segment_ids.append(0)\n\n  assert len(input_ids) == max_seq_length\n  assert len(input_mask) == max_seq_length\n  assert len(segment_ids) == max_seq_length\n\n  label_id = label_map[example.label]\n  if ex_index < 5:\n    tf.logging.info(\"*** Example ***\")\n    tf.logging.info(\"guid: %s\" % (example.guid))\n    tf.logging.info(\"tokens: %s\" % \" \".join(\n        [tokenization.printable_text(x) for x in tokens]))\n    tf.logging.info(\"input_ids: %s\" % \" \".join([str(x) for x in input_ids]))\n    tf.logging.info(\"input_mask: %s\" % \" \".join([str(x) for x in input_mask]))\n    tf.logging.info(\"segment_ids: %s\" % \" \".join([str(x) for x in segment_ids]))\n    tf.logging.info(\"label: %s (id = %d)\" % (example.label, label_id))\n\n  feature = InputFeatures(\n      input_ids=input_ids,\n      input_mask=input_mask,\n      segment_ids=segment_ids,\n      label_id=label_id,\n      is_real_example=True)\n  return feature\n\n# TFRecord File\ndef file_based_convert_examples_to_features(\n    examples, label_list, max_seq_length, tokenizer, output_file):\n  \"\"\"Convert a set of `InputExample`s to a TFRecord file.\"\"\"\n\n  # 用TFRecord 读取文件方便快速，需要需要先把文件转换为TFRecord格式\n  writer = tf.python_io.TFRecordWriter(output_file)\n   \n  # 遍历写入 \n  for (ex_index, example) in enumerate(examples):\n    if ex_index % 10000 == 0:\n      tf.logging.info(\"Writing example %d of %d\" % (ex_index, len(examples)))\n\n    feature = convert_single_example(ex_index, example, label_list,\n                                     max_seq_length, tokenizer)\n\n    def create_int_feature(values):\n      f = tf.train.Feature(int64_list=tf.train.Int64List(value=list(values)))\n      return f\n\n    features = collections.OrderedDict()\n    features[\"input_ids\"] = create_int_feature(feature.input_ids)\n    features[\"input_mask\"] = create_int_feature(feature.input_mask)\n    features[\"segment_ids\"] = create_int_feature(feature.segment_ids)\n    features[\"label_ids\"] = create_int_feature([feature.label_id])\n    features[\"is_real_example\"] = create_int_feature(\n        [int(feature.is_real_example)])\n\n    tf_example = tf.train.Example(features=tf.train.Features(feature=features))\n    writer.write(tf_example.SerializeToString())\n  writer.close()\n\n# TPU需要\ndef file_based_input_fn_builder(input_file, seq_length, is_training,\n                                drop_remainder):\n  \"\"\"Creates an `input_fn` closure to be passed to TPUEstimator.\"\"\"\n\n  name_to_features = {\n      \"input_ids\": tf.FixedLenFeature([seq_length], tf.int64),\n      \"input_mask\": tf.FixedLenFeature([seq_length], tf.int64),\n      \"segment_ids\": tf.FixedLenFeature([seq_length], tf.int64),\n      \"label_ids\": tf.FixedLenFeature([], tf.int64),\n      \"is_real_example\": tf.FixedLenFeature([], tf.int64),\n  }\n\n  def _decode_record(record, name_to_features):\n    \"\"\"Decodes a record to a TensorFlow example.\"\"\"\n    example = tf.parse_single_example(record, name_to_features)\n\n    # tf.Example only supports tf.int64, but the TPU only supports tf.int32.\n    # So cast all int64 to int32.\n    for name in list(example.keys()):\n      t = example[name]\n      if t.dtype == tf.int64:\n        t = tf.to_int32(t)\n      example[name] = t\n\n    return example\n\n  def input_fn(params):\n    \"\"\"The actual input function.\"\"\"\n    batch_size = params[\"batch_size\"]\n\n    # For training, we want a lot of parallel reading and shuffling.\n    # For eval, we want no shuffling and parallel reading doesn't matter.\n    d = tf.data.TFRecordDataset(input_file)\n    if is_training:\n      d = d.repeat()\n      d = d.shuffle(buffer_size=100)\n\n    d = d.apply(\n        tf.contrib.data.map_and_batch(\n            lambda record: _decode_record(record, name_to_features),\n            batch_size=batch_size,\n            drop_remainder=drop_remainder))\n\n    return d\n\n  return input_fn\n\n\ndef _truncate_seq_pair(tokens_a, tokens_b, max_length):\n\n  \"\"\"Truncates a sequence pair in place to the maximum length.\"\"\"\n\n  # This is a simple heuristic which will always truncate the longer sequence\n  # one token at a time. This makes more sense than truncating an equal percent\n  # of tokens from each, since if one sequence is very short then each token\n  # that's truncated likely contains more information than a longer sequence.\n  # 一次截断一个\n\n  while True:\n    total_length = len(tokens_a) + len(tokens_b)\n    if total_length <= max_length:\n      break\n    \n    # 确保a,b长度一致\n    if len(tokens_a) > len(tokens_b):\n      tokens_a.pop()\n    else:\n      tokens_b.pop()\n\n# 构建模型\n\ndef create_model(bert_config, is_training, input_ids, input_mask, segment_ids,\n                 labels, num_labels, use_one_hot_embeddings):\n  \"\"\"Creates a classification model.\"\"\"\n  model = modeling.BertModel(\n      config=bert_config,\n      is_training=is_training,\n      input_ids=input_ids, # batch_size x max_seq_length\n      input_mask=input_mask, # batch_size x max_seq_length\n      token_type_ids=segment_ids, # batch_size x max_seq_length\n      # one_hot TPU 才用\n      use_one_hot_embeddings=use_one_hot_embeddings)\n\n  # In the demo, we are doing a simple classification task on the entire\n  # segment.\n  #\n  # If you want to use the token-level output, use model.get_sequence_output()\n  # instead.\n\n  # output < -- [CLS]\n  output_layer = model.get_pooled_output()\n\n  hidden_size = output_layer.shape[-1].value\n\n# 映射\n# 权重\n  output_weights = tf.get_variable(\n      \"output_weights\", [num_labels, hidden_size],\n      initializer=tf.truncated_normal_initializer(stddev=0.02))\n# 偏差\n  output_bias = tf.get_variable(\n      \"output_bias\", [num_labels], initializer=tf.zeros_initializer())\n\n  with tf.variable_scope(\"loss\"):\n    if is_training:\n      # I.e., 0.1 dropout\n      output_layer = tf.nn.dropout(output_layer, keep_prob=0.9)\n\n    logits = tf.matmul(output_layer, output_weights, transpose_b=True)\n    logits = tf.nn.bias_add(logits, output_bias)\n    # 以上为 w * x + b\n    probabilities = tf.nn.softmax(logits, axis=-1)\n    log_probs = tf.nn.log_softmax(logits, axis=-1)\n\n    one_hot_labels = tf.one_hot(labels, depth=num_labels, dtype=tf.float32)\n\n    # 损失优化，配合上方log，为交叉熵损失\n    per_example_loss = -tf.reduce_sum(one_hot_labels * log_probs, axis=-1)\n    loss = tf.reduce_mean(per_example_loss)\n\n    return (loss, per_example_loss, logits, probabilities)\n\n\n\ndef model_fn_builder(bert_config, num_labels, init_checkpoint, learning_rate,\n                     num_train_steps, num_warmup_steps, use_tpu,\n                     use_one_hot_embeddings):\n  \"\"\"Returns `model_fn` closure for TPUEstimator.\"\"\"\n\n  # 无论是TPU，GPU还是CPU，都会call这个函数\n  def model_fn(features, labels, mode, params):  # pylint: disable=unused-argument\n    \"\"\"The `model_fn` for TPUEstimator.\"\"\"\n    # 注意！！！这个和GPU是兼容的！！！\n\n    tf.logging.info(\"*** Features ***\")\n    for name in sorted(features.keys()):\n      tf.logging.info(\"  name = %s, shape = %s\" % (name, features[name].shape))\n\n    input_ids = features[\"input_ids\"]\n    input_mask = features[\"input_mask\"]\n    segment_ids = features[\"segment_ids\"]\n    label_ids = features[\"label_ids\"]\n    is_real_example = None\n    if \"is_real_example\" in features:\n      is_real_example = tf.cast(features[\"is_real_example\"], dtype=tf.float32)\n    else:\n      is_real_example = tf.ones(tf.shape(label_ids), dtype=tf.float32)\n\n    is_training = (mode == tf.estimator.ModeKeys.TRAIN)\n\n    (total_loss, per_example_loss, logits, probabilities) = create_model(\n        bert_config, is_training, input_ids, input_mask, segment_ids, label_ids,\n        num_labels, use_one_hot_embeddings)\n\n    tvars = tf.trainable_variables()\n    initialized_variable_names = {}\n    scaffold_fn = None\n    # 加载预训练模型\n    if init_checkpoint:\n      (assignment_map, initialized_variable_names\n      ) = modeling.get_assignment_map_from_checkpoint(tvars, init_checkpoint)\n      if use_tpu:\n\n        def tpu_scaffold():\n          tf.train.init_from_checkpoint(init_checkpoint, assignment_map)\n          return tf.train.Scaffold()\n\n        scaffold_fn = tpu_scaffold\n      else:\n        tf.train.init_from_checkpoint(init_checkpoint, assignment_map)\n\n    tf.logging.info(\"**** Trainable Variables ****\")\n    for var in tvars:\n      init_string = \"\"\n      if var.name in initialized_variable_names:\n        init_string = \", *INIT_FROM_CKPT*\"\n      tf.logging.info(\"  name = %s, shape = %s%s\", var.name, var.shape,\n                      init_string)\n\n    output_spec = None\n    if mode == tf.estimator.ModeKeys.TRAIN:\n\n      train_op = optimization.create_optimizer(\n          total_loss, learning_rate, num_train_steps, num_warmup_steps, use_tpu)\n\n      output_spec = tf.contrib.tpu.TPUEstimatorSpec(\n          mode=mode,\n          loss=total_loss,\n          train_op=train_op,\n          scaffold_fn=scaffold_fn)\n    elif mode == tf.estimator.ModeKeys.EVAL:\n\n      def metric_fn(per_example_loss, label_ids, logits, is_real_example):\n        predictions = tf.argmax(logits, axis=-1, output_type=tf.int32)\n        accuracy = tf.metrics.accuracy(\n            labels=label_ids, predictions=predictions, weights=is_real_example)\n        loss = tf.metrics.mean(values=per_example_loss, weights=is_real_example)\n        return {\n            \"eval_accuracy\": accuracy,\n            \"eval_loss\": loss,\n        }\n\n      eval_metrics = (metric_fn,\n                      [per_example_loss, label_ids, logits, is_real_example])\n      output_spec = tf.contrib.tpu.TPUEstimatorSpec(\n          mode=mode,\n          loss=total_loss,\n          eval_metrics=eval_metrics,\n          scaffold_fn=scaffold_fn)\n    else:\n      output_spec = tf.contrib.tpu.TPUEstimatorSpec(\n          mode=mode,\n          predictions={\"probabilities\": probabilities},\n          scaffold_fn=scaffold_fn)\n    return output_spec\n\n  return model_fn\n\n# TPU需要\n# This function is not used by this file but is still used by the Colab and\n# people who depend on it.\n\ndef input_fn_builder(features, seq_length, is_training, drop_remainder):\n  \"\"\"Creates an `input_fn` closure to be passed to TPUEstimator.\"\"\"\n\n  all_input_ids = []\n  all_input_mask = []\n  all_segment_ids = []\n  all_label_ids = []\n\n  for feature in features:\n    all_input_ids.append(feature.input_ids)\n    all_input_mask.append(feature.input_mask)\n    all_segment_ids.append(feature.segment_ids)\n    all_label_ids.append(feature.label_id)\n\n  def input_fn(params):\n    \"\"\"The actual input function.\"\"\"\n    batch_size = params[\"batch_size\"]\n\n    num_examples = len(features)\n\n    # This is for demo purposes and does NOT scale to large data sets. We do\n    # not use Dataset.from_generator() because that uses tf.py_func which is\n    # not TPU compatible. The right way to load data is with TFRecordReader.\n    d = tf.data.Dataset.from_tensor_slices({\n        \"input_ids\":\n            tf.constant(\n                all_input_ids, shape=[num_examples, seq_length],\n                dtype=tf.int32),\n        \"input_mask\":\n            tf.constant(\n                all_input_mask,\n                shape=[num_examples, seq_length],\n                dtype=tf.int32),\n        \"segment_ids\":\n            tf.constant(\n                all_segment_ids,\n                shape=[num_examples, seq_length],\n                dtype=tf.int32),\n        \"label_ids\":\n            tf.constant(all_label_ids, shape=[num_examples], dtype=tf.int32),\n    })\n\n    if is_training:\n      d = d.repeat()\n      d = d.shuffle(buffer_size=100)\n\n    d = d.batch(batch_size=batch_size, drop_remainder=drop_remainder)\n    return d\n\n  return input_fn\n\n\n# This function is not used by this file but is still used by the Colab and\n# people who depend on it.\ndef convert_examples_to_features(examples, label_list, max_seq_length,\n                                 tokenizer):\n  \"\"\"Convert a set of `InputExample`s to a list of `InputFeatures`.\"\"\"\n\n  features = []\n  for (ex_index, example) in enumerate(examples):\n    if ex_index % 10000 == 0:\n      tf.logging.info(\"Writing example %d of %d\" % (ex_index, len(examples)))\n\n    feature = convert_single_example(ex_index, example, label_list,\n                                     max_seq_length, tokenizer)\n\n    features.append(feature)\n  return features\n\n# 主函数\ndef main(_):\n  tf.logging.set_verbosity(tf.logging.INFO)\n\n  processors = {\n      \"cola\": ColaProcessor,\n      \"mnli\": MnliProcessor,\n      \"mrpc\": MrpcProcessor,\n      \"xnli\": XnliProcessor,\n      # 这里添加进我们自己定义的处理类\n      \"my\"  : MyDataProcessor,\n  }\n\n  tokenization.validate_case_matches_checkpoint(FLAGS.do_lower_case,\n                                                FLAGS.init_checkpoint)\n\n  if not FLAGS.do_train and not FLAGS.do_eval and not FLAGS.do_predict:\n    raise ValueError(\n        \"At least one of `do_train`, `do_eval` or `do_predict' must be True.\")\n  \n  # 加载预训练好的参数\n  bert_config = modeling.BertConfig.from_json_file(FLAGS.bert_config_file)\n\n  if FLAGS.max_seq_length > bert_config.max_position_embeddings:\n    raise ValueError(\n        \"Cannot use sequence length %d because the BERT model \"\n        \"was only trained up to sequence length %d\" %\n        (FLAGS.max_seq_length, bert_config.max_position_embeddings))\n\n  # 创造目录\n  tf.gfile.MakeDirs(FLAGS.output_dir)\n\n  # 将task_name转换为小写\n  # 换句话说，一开始输参数的时候无论大小写都行\n  task_name = FLAGS.task_name.lower()\n\n  if task_name not in processors:\n    raise ValueError(\"Task not found: %s\" % (task_name))\n\n  processor = processors[task_name]()\n\n  label_list = processor.get_labels()\n\n  tokenizer = tokenization.FullTokenizer(\n      vocab_file=FLAGS.vocab_file, do_lower_case=FLAGS.do_lower_case)\n  # TPU\n  tpu_cluster_resolver = None\n  if FLAGS.use_tpu and FLAGS.tpu_name:\n    tpu_cluster_resolver = tf.contrib.cluster_resolver.TPUClusterResolver(\n        FLAGS.tpu_name, zone=FLAGS.tpu_zone, project=FLAGS.gcp_project)\n\n  is_per_host = tf.contrib.tpu.InputPipelineConfig.PER_HOST_V2\n  run_config = tf.contrib.tpu.RunConfig(\n      cluster=tpu_cluster_resolver,\n      master=FLAGS.master,\n      model_dir=FLAGS.output_dir,\n      save_checkpoints_steps=FLAGS.save_checkpoints_steps,\n      tpu_config=tf.contrib.tpu.TPUConfig(\n          iterations_per_loop=FLAGS.iterations_per_loop,\n          num_shards=FLAGS.num_tpu_cores,\n          per_host_input_for_training=is_per_host))\n\n  train_examples = None\n  num_train_steps = None\n  num_warmup_steps = None\n  if FLAGS.do_train:\n    train_examples = processor.get_train_examples(FLAGS.data_dir)\n    # 3668 / batch_size / epochs = num_steps\n    num_train_steps = int(\n        len(train_examples) / FLAGS.train_batch_size * FLAGS.num_train_epochs)\n    # num_warmup = num_steps * proportion\n    # warm-up 的意思是一开始训练先让学习率低一些，等到了warm-up步数之后再把学习率还原\n\n    num_warmup_steps = int(num_train_steps * FLAGS.warmup_proportion)\n  \n  model_fn = model_fn_builder(\n      bert_config=bert_config,\n      num_labels=len(label_list),\n      init_checkpoint=FLAGS.init_checkpoint,\n      learning_rate=FLAGS.learning_rate,\n      num_train_steps=num_train_steps,\n      num_warmup_steps=num_warmup_steps,\n      use_tpu=FLAGS.use_tpu,\n      use_one_hot_embeddings=FLAGS.use_tpu)\n\n  # If TPU is not available, this will fall back to normal Estimator on CPU\n  # or GPU.\n  estimator = tf.contrib.tpu.TPUEstimator(\n      use_tpu=FLAGS.use_tpu,\n      model_fn=model_fn,\n      config=run_config,\n      # 3个batch_size 大小一致\n      train_batch_size=FLAGS.train_batch_size,\n      eval_batch_size=FLAGS.eval_batch_size,\n      predict_batch_size=FLAGS.predict_batch_size)\n\n  if FLAGS.do_train:\n    # 读入训练中转文件\n\n    train_file = os.path.join(FLAGS.output_dir, \"train.tf_record\")\n    file_based_convert_examples_to_features(\n        train_examples, label_list, FLAGS.max_seq_length, tokenizer, train_file)\n    # 日志记载\n    # 终端或者输出栏所见\n    # 训练\n    tf.logging.info(\"***** Running training *****\")\n    tf.logging.info(\"  Num examples = %d\", len(train_examples))\n    tf.logging.info(\"  Batch size = %d\", FLAGS.train_batch_size)\n    tf.logging.info(\"  Num steps = %d\", num_train_steps)\n    train_input_fn = file_based_input_fn_builder(\n        input_file=train_file,\n        seq_length=FLAGS.max_seq_length,\n        is_training=True,\n        drop_remainder=True)\n    estimator.train(input_fn=train_input_fn, max_steps=num_train_steps)\n\n  if FLAGS.do_eval:\n    eval_examples = processor.get_dev_examples(FLAGS.data_dir)\n    num_actual_eval_examples = len(eval_examples)\n    if FLAGS.use_tpu:\n      # TPU requires a fixed batch size for all batches, therefore the number\n      # of examples must be a multiple of the batch size, or else examples\n      # will get dropped. So we pad with fake examples which are ignored\n      # later on. These do NOT count towards the metric (all tf.metrics\n      # support a per-instance weight, and these get a weight of 0.0).\n      while len(eval_examples) % FLAGS.eval_batch_size != 0:\n        eval_examples.append(PaddingInputExample())\n\n    eval_file = os.path.join(FLAGS.output_dir, \"eval.tf_record\")\n    file_based_convert_examples_to_features(\n        eval_examples, label_list, FLAGS.max_seq_length, tokenizer, eval_file)\n\n    # 进行验证\n    tf.logging.info(\"***** Running evaluation *****\")\n    tf.logging.info(\"  Num examples = %d (%d actual, %d padding)\",\n                    len(eval_examples), num_actual_eval_examples,\n                    len(eval_examples) - num_actual_eval_examples)\n    tf.logging.info(\"  Batch size = %d\", FLAGS.eval_batch_size)\n\n    # This tells the estimator to run through the entire set.\n    eval_steps = None\n    # However, if running eval on the TPU, you will need to specify the\n    # number of steps.\n    if FLAGS.use_tpu:\n      assert len(eval_examples) % FLAGS.eval_batch_size == 0\n      eval_steps = int(len(eval_examples) // FLAGS.eval_batch_size)\n\n    eval_drop_remainder = True if FLAGS.use_tpu else False\n    eval_input_fn = file_based_input_fn_builder(\n        input_file=eval_file,\n        seq_length=FLAGS.max_seq_length,\n        is_training=False,\n        drop_remainder=eval_drop_remainder)\n\n    result = estimator.evaluate(input_fn=eval_input_fn, steps=eval_steps)\n\n    output_eval_file = os.path.join(FLAGS.output_dir, \"eval_results.txt\")\n    with tf.gfile.GFile(output_eval_file, \"w\") as writer:\n      tf.logging.info(\"***** Eval results *****\")\n      for key in sorted(result.keys()):\n        tf.logging.info(\"  %s = %s\", key, str(result[key]))\n        writer.write(\"%s = %s\\n\" % (key, str(result[key])))\n\n  if FLAGS.do_predict:\n    predict_examples = processor.get_test_examples(FLAGS.data_dir)\n    num_actual_predict_examples = len(predict_examples)\n    if FLAGS.use_tpu:\n      # TPU requires a fixed batch size for all batches, therefore the number\n      # of examples must be a multiple of the batch size, or else examples\n      # will get dropped. So we pad with fake examples which are ignored\n      # later on.\n      while len(predict_examples) % FLAGS.predict_batch_size != 0:\n        predict_examples.append(PaddingInputExample())\n\n    predict_file = os.path.join(FLAGS.output_dir, \"predict.tf_record\")\n    file_based_convert_examples_to_features(predict_examples, label_list,\n                                            FLAGS.max_seq_length, tokenizer,\n                                            predict_file)\n\n    tf.logging.info(\"***** Running prediction*****\")\n    tf.logging.info(\"  Num examples = %d (%d actual, %d padding)\",\n                    len(predict_examples), num_actual_predict_examples,\n                    len(predict_examples) - num_actual_predict_examples)\n    tf.logging.info(\"  Batch size = %d\", FLAGS.predict_batch_size)\n\n    predict_drop_remainder = True if FLAGS.use_tpu else False\n    predict_input_fn = file_based_input_fn_builder(\n        input_file=predict_file,\n        seq_length=FLAGS.max_seq_length,\n        is_training=False,\n        drop_remainder=predict_drop_remainder)\n\n    result = estimator.predict(input_fn=predict_input_fn)\n    \n    # 将预测结果输出到指定路径\n\n    output_predict_file = os.path.join(FLAGS.output_dir, \"test_results.tsv\")\n    with tf.gfile.GFile(output_predict_file, \"w\") as writer:\n      num_written_lines = 0\n      tf.logging.info(\"***** Predict results *****\")\n      for (i, prediction) in enumerate(result):\n        probabilities = prediction[\"probabilities\"]\n        if i >= num_actual_predict_examples:\n          break\n        output_line = \"\\t\".join(\n            str(class_probability)\n            for class_probability in probabilities) + \"\\n\"\n        writer.write(output_line)\n        num_written_lines += 1\n    assert num_written_lines == num_actual_predict_examples\n\n\nif __name__ == \"__main__\":\n  flags.mark_flag_as_required(\"data_dir\")\n  flags.mark_flag_as_required(\"task_name\")\n  flags.mark_flag_as_required(\"vocab_file\")\n  flags.mark_flag_as_required(\"bert_config_file\")\n  flags.mark_flag_as_required(\"output_dir\")\n  tf.app.run()\n"
  },
  {
    "path": "nlp/code/run_squad.py",
    "content": "# coding=utf-8\n# Copyright 2018 The Google AI Language Team Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\"\"\"Run BERT on SQuAD 1.1 and SQuAD 2.0.\"\"\"\n\nfrom __future__ import absolute_import\nfrom __future__ import division\nfrom __future__ import print_function\n\nimport collections\nimport json\nimport math\nimport os\nimport random\nimport modeling\nimport optimization\nimport tokenization\nimport six\nimport tensorflow as tf\n\nflags = tf.flags\n\nFLAGS = flags.FLAGS\n\n## Required parameters\nflags.DEFINE_string(\n    \"bert_config_file\", None,\n    \"The config json file corresponding to the pre-trained BERT model. \"\n    \"This specifies the model architecture.\")\n\nflags.DEFINE_string(\"vocab_file\", None,\n                    \"The vocabulary file that the BERT model was trained on.\")\n\nflags.DEFINE_string(\n    \"output_dir\", None,\n    \"The output directory where the model checkpoints will be written.\")\n\n## Other parameters\nflags.DEFINE_string(\"train_file\", None,\n                    \"SQuAD json for training. E.g., train-v1.1.json\")\n\nflags.DEFINE_string(\n    \"predict_file\", None,\n    \"SQuAD json for predictions. E.g., dev-v1.1.json or test-v1.1.json\")\n\nflags.DEFINE_string(\n    \"init_checkpoint\", None,\n    \"Initial checkpoint (usually from a pre-trained BERT model).\")\n\nflags.DEFINE_bool(\n    \"do_lower_case\", True,\n    \"Whether to lower case the input text. Should be True for uncased \"\n    \"models and False for cased models.\")\n\nflags.DEFINE_integer(\n    \"max_seq_length\", 384,\n    \"The maximum total input sequence length after WordPiece tokenization. \"\n    \"Sequences longer than this will be truncated, and sequences shorter \"\n    \"than this will be padded.\")\n\nflags.DEFINE_integer(\n    \"doc_stride\", 128,\n    \"When splitting up a long document into chunks, how much stride to \"\n    \"take between chunks.\")\n\nflags.DEFINE_integer(\n    \"max_query_length\", 64,\n    \"The maximum number of tokens for the question. Questions longer than \"\n    \"this will be truncated to this length.\")\n\nflags.DEFINE_bool(\"do_train\", False, \"Whether to run training.\")\n\nflags.DEFINE_bool(\"do_predict\", False, \"Whether to run eval on the dev set.\")\n\nflags.DEFINE_integer(\"train_batch_size\", 32, \"Total batch size for training.\")\n\nflags.DEFINE_integer(\"predict_batch_size\", 8,\n                     \"Total batch size for predictions.\")\n\nflags.DEFINE_float(\"learning_rate\", 5e-5, \"The initial learning rate for Adam.\")\n\nflags.DEFINE_float(\"num_train_epochs\", 3.0,\n                   \"Total number of training epochs to perform.\")\n\nflags.DEFINE_float(\n    \"warmup_proportion\", 0.1,\n    \"Proportion of training to perform linear learning rate warmup for. \"\n    \"E.g., 0.1 = 10% of training.\")\n\nflags.DEFINE_integer(\"save_checkpoints_steps\", 1000,\n                     \"How often to save the model checkpoint.\")\n\nflags.DEFINE_integer(\"iterations_per_loop\", 1000,\n                     \"How many steps to make in each estimator call.\")\n\nflags.DEFINE_integer(\n    \"n_best_size\", 20,\n    \"The total number of n-best predictions to generate in the \"\n    \"nbest_predictions.json output file.\")\n\nflags.DEFINE_integer(\n    \"max_answer_length\", 30,\n    \"The maximum length of an answer that can be generated. This is needed \"\n    \"because the start and end predictions are not conditioned on one another.\")\n\nflags.DEFINE_bool(\"use_tpu\", False, \"Whether to use TPU or GPU/CPU.\")\n\ntf.flags.DEFINE_string(\n    \"tpu_name\", None,\n    \"The Cloud TPU to use for training. This should be either the name \"\n    \"used when creating the Cloud TPU, or a grpc://ip.address.of.tpu:8470 \"\n    \"url.\")\n\ntf.flags.DEFINE_string(\n    \"tpu_zone\", None,\n    \"[Optional] GCE zone where the Cloud TPU is located in. If not \"\n    \"specified, we will attempt to automatically detect the GCE project from \"\n    \"metadata.\")\n\ntf.flags.DEFINE_string(\n    \"gcp_project\", None,\n    \"[Optional] Project name for the Cloud TPU-enabled project. If not \"\n    \"specified, we will attempt to automatically detect the GCE project from \"\n    \"metadata.\")\n\ntf.flags.DEFINE_string(\"master\", None, \"[Optional] TensorFlow master URL.\")\n\nflags.DEFINE_integer(\n    \"num_tpu_cores\", 8,\n    \"Only used if `use_tpu` is True. Total number of TPU cores to use.\")\n\nflags.DEFINE_bool(\n    \"verbose_logging\", False,\n    \"If true, all of the warnings related to data processing will be printed. \"\n    \"A number of warnings are expected for a normal SQuAD evaluation.\")\n\nflags.DEFINE_bool(\n    \"version_2_with_negative\", False,\n    \"If true, the SQuAD examples contain some that do not have an answer.\")\n\nflags.DEFINE_float(\n    \"null_score_diff_threshold\", 0.0,\n    \"If null_score - best_non_null is greater than the threshold predict null.\")\n\n\nclass SquadExample(object):\n  \"\"\"A single training/test example for simple sequence classification.\n\n     For examples without an answer, the start and end position are -1.\n     # 如果没有答案，那么答案始末点都是-1\n  \"\"\"\n\n  def __init__(self,\n               qas_id,\n               question_text,\n               doc_tokens,\n               orig_answer_text=None,\n               start_position=None,\n               end_position=None,\n               is_impossible=False):\n    self.qas_id = qas_id\n    self.question_text = question_text\n    self.doc_tokens = doc_tokens\n    self.orig_answer_text = orig_answer_text\n    self.start_position = start_position\n    self.end_position = end_position\n    self.is_impossible = is_impossible\n\n  def __str__(self):\n    return self.__repr__()\n\n  def __repr__(self):\n    s = \"\"\n    s += \"qas_id: %s\" % (tokenization.printable_text(self.qas_id))\n    s += \", question_text: %s\" % (\n        tokenization.printable_text(self.question_text))\n    s += \", doc_tokens: [%s]\" % (\" \".join(self.doc_tokens))\n    if self.start_position:\n      s += \", start_position: %d\" % (self.start_position)\n    if self.start_position:\n      s += \", end_position: %d\" % (self.end_position)\n    if self.start_position:\n      s += \", is_impossible: %r\" % (self.is_impossible)\n    return s\n\n\nclass InputFeatures(object):\n  \"\"\"A single set of features of data.\"\"\"\n\n  def __init__(self,\n               unique_id,\n               example_index,\n               doc_span_index,\n               tokens,\n               token_to_orig_map,\n               token_is_max_context,\n               input_ids,\n               input_mask,\n               segment_ids,\n               start_position=None,\n               end_position=None,\n               is_impossible=None):\n    self.unique_id = unique_id\n    self.example_index = example_index\n    self.doc_span_index = doc_span_index\n    self.tokens = tokens\n    self.token_to_orig_map = token_to_orig_map\n    self.token_is_max_context = token_is_max_context\n    self.input_ids = input_ids\n    self.input_mask = input_mask\n    self.segment_ids = segment_ids\n    self.start_position = start_position\n    self.end_position = end_position\n    self.is_impossible = is_impossible\n\n\ndef read_squad_examples(input_file, is_training):\n  \"\"\"Read a SQuAD json file into a list of SquadExample.\"\"\"\n  # 读入训练集（json格式），并且转换为样例\n  with tf.gfile.Open(input_file, \"r\") as reader:\n    # 读入json文件\n    # 元素样例 -->\n    # --> {'paragraphs': [{...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, ...], 'title': 'University_of_Notre_Dame'}\n    # 以上一个字典会当做一个大列表的元素存进input_data\n    input_data = json.load(reader)[\"data\"]\n\n  \n  # 判断是否有空格\n  # \\r - 回车，\\n - 换行\n  def is_whitespace(c):\n    if c == \" \" or c == \"\\t\" or c == \"\\r\" or c == \"\\n\" or ord(c) == 0x202F:\n      return True\n    return False\n\n  examples = []\n  for entry in input_data:\n    for paragraph in entry[\"paragraphs\"]:\n      paragraph_text = paragraph[\"context\"]\n      doc_tokens = []\n      char_to_word_offset = []\n      prev_is_whitespace = True\n      # 对context内容字符串进行遍历\n      for c in paragraph_text:\n        if is_whitespace(c):\n          prev_is_whitespace = True\n        else:\n          if prev_is_whitespace:\n            doc_tokens.append(c)\n          else:\n            # 若非空格，则加入doc_tokens\n            # doc_tokens实则是对内容按照空格进行切分\n            # 注意标点符号也包括在内，一开始会有[\"Architecturally,\",\"t\"]\n            doc_tokens[-1] += c\n          prev_is_whitespace = False\n        # char_to_word_offset <-- 切分后的索引集，内容表示一个词有几个字符组成\n        char_to_word_offset.append(len(doc_tokens) - 1)\n\n      for qa in paragraph[\"qas\"]:\n        # {'answers': [{...}], 'id': '5733be284776f41900661182', 'question': 'To whom did the Virg...es France?'}\n        # 'answers':[{'answer_start': 515, 'text': 'Saint Bernadette Soubirous'}]\n        # 'question':'To whom did the Virgin Mary allegedly appear in 1858 in Lourdes France?'\n        # 'id':'5733be284776f41900661182'\n        qas_id = qa[\"id\"]\n        question_text = qa[\"question\"]\n        # 始末都对应于doc_tokens\n        start_position = None\n        end_position = None\n        orig_answer_text = None\n        is_impossible = False\n        if is_training:\n\n          if FLAGS.version_2_with_negative:\n            is_impossible = qa[\"is_impossible\"]\n            # 确保答案不为空，SQuAD1.0不行 2.0好像可以\n          if (len(qa[\"answers\"]) != 1) and (not is_impossible):\n            raise ValueError(\n                \"For training, each question should have exactly 1 answer.\")\n          # 有答案\n          if not is_impossible:\n            # answers --> [{'answer_start': 515, 'text': 'Saint Bernadette Soubirous'},{...}]\n            answer = qa[\"answers\"][0]\n            orig_answer_text = answer[\"text\"]\n            answer_offset = answer[\"answer_start\"]\n            answer_length = len(orig_answer_text)\n            start_position = char_to_word_offset[answer_offset]\n            end_position = char_to_word_offset[answer_offset + answer_length -\n                                               1]\n            # Only add answers where the text can be exactly recovered from the\n            # document. If this CAN'T happen it's likely due to weird Unicode\n            # stuff so we will just skip the example.\n            # Note that this means for training mode, every example is NOT\n            # guaranteed to be preserved.\n            actual_text = \" \".join(\n                doc_tokens[start_position:(end_position + 1)])\n            # 切除两边空白\n            cleaned_answer_text = \" \".join(\n                tokenization.whitespace_tokenize(orig_answer_text))\n            # 日志异常检测 find是字符串方法，找不到即为-1，找到即为1\n            if actual_text.find(cleaned_answer_text) == -1:\n              tf.logging.warning(\"Could not find answer: '%s' vs. '%s'\",\n                                 actual_text, cleaned_answer_text)\n              continue\n          else:\n            start_position = -1\n            end_position = -1\n            orig_answer_text = \"\"\n\n        example = SquadExample(\n            qas_id=qas_id,\n            question_text=question_text,\n            doc_tokens=doc_tokens,\n            orig_answer_text=orig_answer_text,\n            start_position=start_position,\n            end_position=end_position,\n            is_impossible=is_impossible)\n        # examples是列表，但是它里面的example既不是列表也不是字典，而是SquadExample实例化的一个对象\n        # 这也是为什么后文可以example句点访问一些变量\n        examples.append(example)\n\n  return examples\n\n\ndef convert_examples_to_features(examples, tokenizer, max_seq_length,\n                                 doc_stride, max_query_length, is_training,\n                                 output_fn):\n  \"\"\"Loads a data file into a list of `InputBatch`s.\"\"\"\n\n  unique_id = 1000000000\n\n  for (example_index, example) in enumerate(examples):\n    # 进行空格切分以及去除非法字符\n    # e.g. \n    # ['where', 'was', 'the', 'second', 'anti', '-', 'labor', 'party', 'held', 'in', '1944', '?']\n    query_tokens = tokenizer.tokenize(example.question_text)\n\n    # 若问题太长，进行截断\n    if len(query_tokens) > max_query_length:\n      query_tokens = query_tokens[0:max_query_length]\n\n    tok_to_orig_index = []\n    orig_to_tok_index = []\n    all_doc_tokens = []\n    for (i, token) in enumerate(example.doc_tokens):\n      # orig_to_tok_index --> 代表doc_tokens在all_doc_tokens的索引，取最近的\n      # --> 每一个索引对应一个大词，索引对应的值为子词的数量\n      orig_to_tok_index.append(len(all_doc_tokens))\n      # 进行空格切分和词切分\n      # e.g. 'Menzies' --> ['men', '##zie', '##s']\n      sub_tokens = tokenizer.tokenize(token)\n      for sub_token in sub_tokens:\n        # tok_to_orig_index 代表all_doc_tokens在doc_tokens的索引\n        tok_to_orig_index.append(i)\n        # all_doc_tokens <-- 精细化切分之后的\n        all_doc_tokens.append(sub_token)\n\n    # tok_start_position/tok_end_position --> 在all_doc_tokens的索引\n    tok_start_position = None\n    tok_end_position = None\n    # 若答案缺失\n    if is_training and example.is_impossible:\n      tok_start_position = -1\n      tok_end_position = -1\n    # 正常情况\n    if is_training and not example.is_impossible:\n      tok_start_position = orig_to_tok_index[example.start_position]\n      # \"<\" 后面代表一组文本最后一个索引\n      if example.end_position < len(example.doc_tokens) - 1:\n        tok_end_position = orig_to_tok_index[example.end_position + 1] - 1\n      else:\n        tok_end_position = len(all_doc_tokens) - 1\n      (tok_start_position, tok_end_position) = _improve_answer_span(\n          all_doc_tokens, tok_start_position, tok_end_position, tokenizer,\n          example.orig_answer_text)\n\n    # The -3 accounts for [CLS], [SEP] and [SEP]\n    # tokens = [CLS] query_tokens [SEP] context [SEP]\n    # 计算最大文章长度\n    max_tokens_for_doc = max_seq_length - len(query_tokens) - 3\n\n    # We can have documents that are longer than the maximum sequence length.\n    # To deal with this we do a sliding window approach, where we take chunks\n    # of the up to our max length with a stride of `doc_stride`.\n    # 当我们文章长度大于max_tokens_doc时，这里采用滑动窗口法来弥补\n    _DocSpan = collections.namedtuple(  # pylint: disable=invalid-name\n        \"DocSpan\", [\"start\", \"length\"])\n    doc_spans = []\n    start_offset = 0\n    while start_offset < len(all_doc_tokens):\n      length = len(all_doc_tokens) - start_offset\n      # 若答案过长，则把max_tokens_for_doc当做length\n      if length > max_tokens_for_doc:\n        length = max_tokens_for_doc\n      # 一个窗口确认\n      doc_spans.append(_DocSpan(start=start_offset, length=length))\n      # 若全包含在内，则退出while\n      if start_offset + length == len(all_doc_tokens):\n        break\n      start_offset += min(length, doc_stride)\n\n    for (doc_span_index, doc_span) in enumerate(doc_spans):\n      # [CLS] --> [SEP] 之间都是第一部分，segment_ids = 0\n      # [SEP] 到最后属于第二部，segment_ids = 1\n      tokens = []\n      token_to_orig_map = {}\n      token_is_max_context = {}\n      segment_ids = []\n      tokens.append(\"[CLS]\")\n      segment_ids.append(0)\n      # 先加入问题tokens\n      for token in query_tokens:\n        tokens.append(token)\n        segment_ids.append(0)\n      tokens.append(\"[SEP]\")\n      segment_ids.append(0)\n\n      for i in range(doc_span.length):\n        split_token_index = doc_span.start + i\n        # token_to_orig_map 是用来记录文章部分在all_doc_tokens的索引\n        # token_to_orig_map 不包括问题部分\n        token_to_orig_map[len(tokens)] = tok_to_orig_index[split_token_index]\n\n        is_max_context = _check_is_max_context(doc_spans, doc_span_index,\n                                               split_token_index)\n        token_is_max_context[len(tokens)] = is_max_context\n        tokens.append(all_doc_tokens[split_token_index])\n        segment_ids.append(1)\n      tokens.append(\"[SEP]\")\n      segment_ids.append(1)\n\n      # 按词表添加id\n      input_ids = tokenizer.convert_tokens_to_ids(tokens)\n\n      # The mask has 1 for real tokens and 0 for padding tokens. Only real\n      # tokens are attended to.\n      input_mask = [1] * len(input_ids)\n\n      # Zero-pad up to the sequence length.\n      while len(input_ids) < max_seq_length:\n        input_ids.append(0)\n        input_mask.append(0)\n        segment_ids.append(0)\n\n      assert len(input_ids) == max_seq_length\n      assert len(input_mask) == max_seq_length\n      assert len(segment_ids) == max_seq_length\n\n      start_position = None\n      end_position = None\n      if is_training and not example.is_impossible:\n        # For training, if our document chunk does not contain an annotation\n        # we throw it out, since there is nothing to predict.\n        # 如果切了之后，答案不在里面，没有信息效益，舍弃\n        doc_start = doc_span.start\n        doc_end = doc_span.start + doc_span.length - 1\n        out_of_span = False\n        if not (tok_start_position >= doc_start and\n                tok_end_position <= doc_end):\n          out_of_span = True\n        if out_of_span:\n          start_position = 0\n          end_position = 0\n        else:\n          # 2指的是[CLS] & [SEP]\n          doc_offset = len(query_tokens) + 2\n          # start_position --> input_ids的索引，这里加上doc_offset目的是为了跳过问题以及[CLS] & [SEP]、\n          # 因为原来的all_doc_tokens没有问题以及[CLS] & [SEP]，要得到正文部分，需要跳过\n          start_position = tok_start_position - doc_start + doc_offset\n          end_position = tok_end_position - doc_start + doc_offset\n\n      if is_training and example.is_impossible:\n        start_position = 0\n        end_position = 0\n\n      # 即为终端所见\n      if example_index < 20:\n        tf.logging.info(\"*** Example ***\")\n        tf.logging.info(\"unique_id: %s\" % (unique_id))\n        tf.logging.info(\"example_index: %s\" % (example_index))\n        tf.logging.info(\"doc_span_index: %s\" % (doc_span_index))\n        tf.logging.info(\"tokens: %s\" % \" \".join(\n            [tokenization.printable_text(x) for x in tokens]))\n        tf.logging.info(\"token_to_orig_map: %s\" % \" \".join(\n            [\"%d:%d\" % (x, y) for (x, y) in six.iteritems(token_to_orig_map)]))\n        tf.logging.info(\"token_is_max_context: %s\" % \" \".join([\n            \"%d:%s\" % (x, y) for (x, y) in six.iteritems(token_is_max_context)\n        ]))\n        tf.logging.info(\"input_ids: %s\" % \" \".join([str(x) for x in input_ids]))\n        tf.logging.info(\n            \"input_mask: %s\" % \" \".join([str(x) for x in input_mask]))\n        tf.logging.info(\n            \"segment_ids: %s\" % \" \".join([str(x) for x in segment_ids]))\n        if is_training and example.is_impossible:\n          tf.logging.info(\"impossible example\")\n        if is_training and not example.is_impossible:\n          answer_text = \" \".join(tokens[start_position:(end_position + 1)])\n          tf.logging.info(\"start_position: %d\" % (start_position))\n          tf.logging.info(\"end_position: %d\" % (end_position))\n          tf.logging.info(\n              \"answer: %s\" % (tokenization.printable_text(answer_text)))\n\n      feature = InputFeatures(\n          unique_id=unique_id,\n          example_index=example_index,\n          doc_span_index=doc_span_index,\n          # tokens 最终是[CLS] query [SEP] context [SEP]\n          tokens=tokens,\n          token_to_orig_map=token_to_orig_map,\n          token_is_max_context=token_is_max_context,\n          input_ids=input_ids,\n          input_mask=input_mask,\n          segment_ids=segment_ids,\n          start_position=start_position,\n          end_position=end_position,\n          is_impossible=example.is_impossible)\n\n      # Run callback\n      output_fn(feature)\n\n      unique_id += 1\n\n\ndef _improve_answer_span(doc_tokens, input_start, input_end, tokenizer,\n                         orig_answer_text):\n  \"\"\"Returns tokenized answer spans that better match the annotated answer.\"\"\"\n  # 词切分会有一个问题：一旦词表里面有，那么切分即会停止\n  # 如答案为Japan，而文中只有Japanese。\n  # 情况比较少见\n  # The SQuAD annotations are character based. We first project them to\n  # whitespace-tokenized words. But then after WordPiece tokenization, we can\n  # often find a \"better match\". For example:\n  #\n  #   Question: What year was John Smith born?\n  #   Context: The leader was John Smith (1895-1943).\n  #   Answer: 1895\n  #\n  # The original whitespace-tokenized answer will be \"(1895-1943).\". However\n  # after tokenization, our tokens will be \"( 1895 - 1943 ) .\". So we can match\n  # the exact answer, 1895.\n  #\n  # However, this is not always possible. Consider the following:\n  #\n  #   Question: What country is the top exporter of electornics?\n  #   Context: The Japanese electronics industry is the lagest in the world.\n  #   Answer: Japan\n  #\n  # In this case, the annotator chose \"Japan\" as a character sub-span of\n  # the word \"Japanese\". Since our WordPiece tokenizer does not split\n  # \"Japanese\", we just use \"Japanese\" as the annotation. This is fairly rare\n  # in SQuAD, but does happen.\n  # 进行空格切分和词切分之后的\n  tok_answer_text = \" \".join(tokenizer.tokenize(orig_answer_text))\n  # input_start，input_end <-- tok_start_position/tok_end_position\n  # 31 37 new start --> 31...36\n  # 36 30 new_end --> 36...31\n  for new_start in range(input_start, input_end + 1):\n    # 倒序for 循环\n    for new_end in range(input_end, new_start - 1, -1):\n      # 变成字符串\n      # 注意这里的doc_tokens是精细切分的\n      text_span = \" \".join(doc_tokens[new_start:(new_end + 1)])\n      if text_span == tok_answer_text:\n        return (new_start, new_end)\n\n  return (input_start, input_end)\n\n\ndef _check_is_max_context(doc_spans, cur_span_index, position):\n  \"\"\"Check if this is the 'max context' doc span for the token.\"\"\"\n  # Because of the sliding window approach taken to scoring documents, a single\n  # token can appear in multiple documents. E.g.\n  #  Doc: the man went to the store and bought a gallon of milk\n  #  Span A: the man went to the\n  #  Span B: to the store and bought\n  #  Span C: and bought a gallon of\n  #  ...\n  #\n  # Now the word 'bought' will have two scores from spans B and C. We only\n  # want to consider the score with \"maximum context\", which we define as\n  # the *minimum* of its left and right context (the *sum* of left and\n  # right context will always be the same, of course).\n  #\n  # In the example the maximum context for 'bought' would be span C since\n  # it has 1 left context and 3 right context, while span B has 4 left context\n  # and 0 right context.\n  # 计算最大上下文分数\n  # score = min(num_left_context, num_right_context) + 0.01 * doc_span.length\n  # 用以判断token在当前span里面是否具有完整的上下文关系\n  best_score = None\n  best_span_index = None\n  for (span_index, doc_span) in enumerate(doc_spans):\n    end = doc_span.start + doc_span.length - 1\n    if position < doc_span.start:\n      continue\n    if position > end:\n      continue\n    num_left_context = position - doc_span.start\n    num_right_context = end - position\n    score = min(num_left_context, num_right_context) + 0.01 * doc_span.length\n    if best_score is None or score > best_score:\n      best_score = score\n      best_span_index = span_index\n\n  return cur_span_index == best_span_index\n\n\ndef create_model(bert_config, is_training, input_ids, input_mask, segment_ids,\n                 use_one_hot_embeddings):\n  \"\"\"Creates a classification model.\"\"\"\n  model = modeling.BertModel(\n      config=bert_config,\n      is_training=is_training,\n      input_ids=input_ids,\n      input_mask=input_mask,\n      token_type_ids=segment_ids,\n      use_one_hot_embeddings=use_one_hot_embeddings)\n\n  final_hidden = model.get_sequence_output()\n\n  final_hidden_shape = modeling.get_shape_list(final_hidden, expected_rank=3)\n  batch_size = final_hidden_shape[0]\n  seq_length = final_hidden_shape[1]\n  hidden_size = final_hidden_shape[2]\n\n  output_weights = tf.get_variable(\n      \"cls/squad/output_weights\", [2, hidden_size],\n      initializer=tf.truncated_normal_initializer(stddev=0.02))\n\n  output_bias = tf.get_variable(\n      \"cls/squad/output_bias\", [2], initializer=tf.zeros_initializer())\n\n  final_hidden_matrix = tf.reshape(final_hidden,\n                                   [batch_size * seq_length, hidden_size])\n  logits = tf.matmul(final_hidden_matrix, output_weights, transpose_b=True)\n  logits = tf.nn.bias_add(logits, output_bias)\n\n  logits = tf.reshape(logits, [batch_size, seq_length, 2])\n  logits = tf.transpose(logits, [2, 0, 1])\n\n  unstacked_logits = tf.unstack(logits, axis=0)\n\n  (start_logits, end_logits) = (unstacked_logits[0], unstacked_logits[1])\n\n  return (start_logits, end_logits)\n\n\ndef model_fn_builder(bert_config, init_checkpoint, learning_rate,\n                     num_train_steps, num_warmup_steps, use_tpu,\n                     use_one_hot_embeddings):\n  \"\"\"Returns `model_fn` closure for TPUEstimator.\"\"\"\n\n  # 无论是TPU，GPU还是CPU，都会call这个函数\n  def model_fn(features, labels, mode, params):  # pylint: disable=unused-argument\n    \"\"\"The `model_fn` for TPUEstimator.\"\"\"\n\n    # 注意！！！这个和GPU是兼容的！！！\n    tf.logging.info(\"*** Features ***\")\n    for name in sorted(features.keys()):\n      tf.logging.info(\"  name = %s, shape = %s\" % (name, features[name].shape))\n\n    unique_ids = features[\"unique_ids\"]\n    input_ids = features[\"input_ids\"]\n    input_mask = features[\"input_mask\"]\n    segment_ids = features[\"segment_ids\"]\n\n    is_training = (mode == tf.estimator.ModeKeys.TRAIN)\n\n    (start_logits, end_logits) = create_model(\n        bert_config=bert_config,\n        is_training=is_training,\n        input_ids=input_ids,\n        input_mask=input_mask,\n        segment_ids=segment_ids,\n        use_one_hot_embeddings=use_one_hot_embeddings)\n\n    tvars = tf.trainable_variables()\n\n    initialized_variable_names = {}\n    scaffold_fn = None\n    if init_checkpoint:\n      (assignment_map, initialized_variable_names\n      ) = modeling.get_assignment_map_from_checkpoint(tvars, init_checkpoint)\n      if use_tpu:\n\n        def tpu_scaffold():\n          tf.train.init_from_checkpoint(init_checkpoint, assignment_map)\n          return tf.train.Scaffold()\n\n        scaffold_fn = tpu_scaffold\n      else:\n        tf.train.init_from_checkpoint(init_checkpoint, assignment_map)\n\n    tf.logging.info(\"**** Trainable Variables ****\")\n    for var in tvars:\n      init_string = \"\"\n      if var.name in initialized_variable_names:\n        init_string = \", *INIT_FROM_CKPT*\"\n      tf.logging.info(\"  name = %s, shape = %s%s\", var.name, var.shape,\n                      init_string)\n\n    output_spec = None\n    if mode == tf.estimator.ModeKeys.TRAIN:\n      seq_length = modeling.get_shape_list(input_ids)[1]\n\n      def compute_loss(logits, positions):\n        one_hot_positions = tf.one_hot(\n            positions, depth=seq_length, dtype=tf.float32)\n        log_probs = tf.nn.log_softmax(logits, axis=-1)\n        loss = -tf.reduce_mean(\n            tf.reduce_sum(one_hot_positions * log_probs, axis=-1))\n        return loss\n\n      start_positions = features[\"start_positions\"]\n      end_positions = features[\"end_positions\"]\n\n      start_loss = compute_loss(start_logits, start_positions)\n      end_loss = compute_loss(end_logits, end_positions)\n\n      total_loss = (start_loss + end_loss) / 2.0\n\n      train_op = optimization.create_optimizer(\n          total_loss, learning_rate, num_train_steps, num_warmup_steps, use_tpu)\n\n      output_spec = tf.contrib.tpu.TPUEstimatorSpec(\n          mode=mode,\n          loss=total_loss,\n          train_op=train_op,\n          scaffold_fn=scaffold_fn)\n    elif mode == tf.estimator.ModeKeys.PREDICT:\n      predictions = {\n          \"unique_ids\": unique_ids,\n          \"start_logits\": start_logits,\n          \"end_logits\": end_logits,\n      }\n      output_spec = tf.contrib.tpu.TPUEstimatorSpec(\n          mode=mode, predictions=predictions, scaffold_fn=scaffold_fn)\n    else:\n      raise ValueError(\n          \"Only TRAIN and PREDICT modes are supported: %s\" % (mode))\n\n    return output_spec\n\n  return model_fn\n\n\ndef input_fn_builder(input_file, seq_length, is_training, drop_remainder):\n  \"\"\"Creates an `input_fn` closure to be passed to TPUEstimator.\"\"\"\n\n  name_to_features = {\n      \"unique_ids\": tf.FixedLenFeature([], tf.int64),\n      \"input_ids\": tf.FixedLenFeature([seq_length], tf.int64),\n      \"input_mask\": tf.FixedLenFeature([seq_length], tf.int64),\n      \"segment_ids\": tf.FixedLenFeature([seq_length], tf.int64),\n  }\n\n  if is_training:\n    name_to_features[\"start_positions\"] = tf.FixedLenFeature([], tf.int64)\n    name_to_features[\"end_positions\"] = tf.FixedLenFeature([], tf.int64)\n\n  def _decode_record(record, name_to_features):\n    \"\"\"Decodes a record to a TensorFlow example.\"\"\"\n    example = tf.parse_single_example(record, name_to_features)\n\n    # tf.Example only supports tf.int64, but the TPU only supports tf.int32.\n    # So cast all int64 to int32.\n    for name in list(example.keys()):\n      t = example[name]\n      if t.dtype == tf.int64:\n        t = tf.to_int32(t)\n      example[name] = t\n\n    return example\n\n  def input_fn(params):\n    \"\"\"The actual input function.\"\"\"\n    batch_size = params[\"batch_size\"]\n\n    # For training, we want a lot of parallel reading and shuffling.\n    # For eval, we want no shuffling and parallel reading doesn't matter.\n    d = tf.data.TFRecordDataset(input_file)\n    if is_training:\n      d = d.repeat()\n      d = d.shuffle(buffer_size=100)\n\n    d = d.apply(\n        tf.contrib.data.map_and_batch(\n            lambda record: _decode_record(record, name_to_features),\n            batch_size=batch_size,\n            drop_remainder=drop_remainder))\n\n    return d\n\n  return input_fn\n\n# 可通过句点访问\nRawResult = collections.namedtuple(\"RawResult\",\n                                   [\"unique_id\", \"start_logits\", \"end_logits\"])\n\n\ndef write_predictions(all_examples, all_features, all_results, n_best_size,\n                      max_answer_length, do_lower_case, output_prediction_file,\n                      output_nbest_file, output_null_log_odds_file):\n  \"\"\"Write final predictions to the json file and log-odds of null if needed.\"\"\"\n  # 将最终预测写入json文件和log几率\n  tf.logging.info(\"Writing predictions to: %s\" % (output_prediction_file))\n  tf.logging.info(\"Writing nbest to: %s\" % (output_nbest_file))\n\n  example_index_to_features = collections.defaultdict(list)\n  for feature in all_features:\n    example_index_to_features[feature.example_index].append(feature)\n\n  unique_id_to_result = {}\n  for result in all_results:\n    unique_id_to_result[result.unique_id] = result\n\n  # start_logit & end_logit 都是未经过softmax的概率\n  # start_logit 表示以每个token作为开头的几率\n  _PrelimPrediction = collections.namedtuple(  # pylint: disable=invalid-name\n      \"PrelimPrediction\",\n      [\"feature_index\", \"start_index\", \"end_index\", \"start_logit\", \"end_logit\"])\n\n  all_predictions = collections.OrderedDict()\n  all_nbest_json = collections.OrderedDict()\n  scores_diff_json = collections.OrderedDict()\n\n  for (example_index, example) in enumerate(all_examples):\n    features = example_index_to_features[example_index]\n\n    prelim_predictions = []\n    # keep track of the minimum score of null start+end of position 0\n    score_null = 1000000  # large and positive\n    min_null_feature_index = 0  # the paragraph slice with min mull score\n    null_start_logit = 0  # the start logit at the slice with min null score\n    null_end_logit = 0  # the end logit at the slice with min null score\n    for (feature_index, feature) in enumerate(features):\n      result = unique_id_to_result[feature.unique_id]\n      start_indexes = _get_best_indexes(result.start_logits, n_best_size)\n      end_indexes = _get_best_indexes(result.end_logits, n_best_size)\n      # if we could have irrelevant answers, get the min score of irrelevant\n      if FLAGS.version_2_with_negative:\n        feature_null_score = result.start_logits[0] + result.end_logits[0]\n        if feature_null_score < score_null:\n          score_null = feature_null_score\n          min_null_feature_index = feature_index\n          null_start_logit = result.start_logits[0]\n          null_end_logit = result.end_logits[0]\n      for start_index in start_indexes:\n        for end_index in end_indexes:\n          # We could hypothetically create invalid predictions, e.g., predict\n          # that the start of the span is in the question. We throw out all\n          # invalid predictions.\n          if start_index >= len(feature.tokens):\n            continue\n          if end_index >= len(feature.tokens):\n            continue\n          if start_index not in feature.token_to_orig_map:\n            continue\n          if end_index not in feature.token_to_orig_map:\n            continue\n          if not feature.token_is_max_context.get(start_index, False):\n            continue\n          if end_index < start_index:\n            continue\n          length = end_index - start_index + 1\n          if length > max_answer_length:\n            continue\n          prelim_predictions.append(\n              _PrelimPrediction(\n                  feature_index=feature_index,\n                  start_index=start_index,\n                  end_index=end_index,\n                  start_logit=result.start_logits[start_index],\n                  end_logit=result.end_logits[end_index]))\n\n    if FLAGS.version_2_with_negative:\n      prelim_predictions.append(\n          _PrelimPrediction(\n              feature_index=min_null_feature_index,\n              start_index=0,\n              end_index=0,\n              start_logit=null_start_logit,\n              end_logit=null_end_logit))\n    prelim_predictions = sorted(\n        prelim_predictions,\n        key=lambda x: (x.start_logit + x.end_logit),\n        reverse=True)\n\n    _NbestPrediction = collections.namedtuple(  # pylint: disable=invalid-name\n        \"NbestPrediction\", [\"text\", \"start_logit\", \"end_logit\"])\n\n    seen_predictions = {}\n    nbest = []\n    for pred in prelim_predictions:\n      if len(nbest) >= n_best_size:\n        break\n      feature = features[pred.feature_index]\n      if pred.start_index > 0:  # this is a non-null prediction\n        # token_to_orig_map 记录文章部分在all_doc_tokens的索引，取最近的\n        # example.doc_tokens 未经过词切分的\n        tok_tokens = feature.tokens[pred.start_index:(pred.end_index + 1)]\n        orig_doc_start = feature.token_to_orig_map[pred.start_index]\n        orig_doc_end = feature.token_to_orig_map[pred.end_index]\n        orig_tokens = example.doc_tokens[orig_doc_start:(orig_doc_end + 1)]\n        tok_text = \" \".join(tok_tokens)\n\n        # De-tokenize WordPieces that have been split off.\n        tok_text = tok_text.replace(\" ##\", \"\")\n        tok_text = tok_text.replace(\"##\", \"\")\n\n        # Clean whitespace\n        tok_text = tok_text.strip()\n        tok_text = \" \".join(tok_text.split())\n        orig_text = \" \".join(orig_tokens)\n\n        final_text = get_final_text(tok_text, orig_text, do_lower_case)\n        if final_text in seen_predictions:\n          continue\n\n        seen_predictions[final_text] = True\n      else:\n        final_text = \"\"\n        seen_predictions[final_text] = True\n\n      nbest.append(\n          _NbestPrediction(\n              text=final_text,\n              start_logit=pred.start_logit,\n              end_logit=pred.end_logit))\n\n    # if we didn't inlude the empty option in the n-best, inlcude it\n    if FLAGS.version_2_with_negative:\n      if \"\" not in seen_predictions:\n        nbest.append(\n            _NbestPrediction(\n                text=\"\", start_logit=null_start_logit,\n                end_logit=null_end_logit))\n    # In very rare edge cases we could have no valid predictions. So we\n    # just create a nonce prediction in this case to avoid failure.\n    if not nbest:\n      nbest.append(\n          _NbestPrediction(text=\"empty\", start_logit=0.0, end_logit=0.0))\n\n    assert len(nbest) >= 1\n\n    total_scores = []\n    best_non_null_entry = None\n    for entry in nbest:\n      total_scores.append(entry.start_logit + entry.end_logit)\n      if not best_non_null_entry:\n        if entry.text:\n          best_non_null_entry = entry\n\n    probs = _compute_softmax(total_scores)\n\n    nbest_json = []\n    for (i, entry) in enumerate(nbest):\n      output = collections.OrderedDict()\n      output[\"text\"] = entry.text\n      output[\"probability\"] = probs[i]\n      output[\"start_logit\"] = entry.start_logit\n      output[\"end_logit\"] = entry.end_logit\n      nbest_json.append(output)\n\n    assert len(nbest_json) >= 1\n\n    if not FLAGS.version_2_with_negative:\n      all_predictions[example.qas_id] = nbest_json[0][\"text\"]\n    else:\n      # predict \"\" iff the null score - the score of best non-null > threshold\n      score_diff = score_null - best_non_null_entry.start_logit - (\n          best_non_null_entry.end_logit)\n      scores_diff_json[example.qas_id] = score_diff\n      if score_diff > FLAGS.null_score_diff_threshold:\n        all_predictions[example.qas_id] = \"\"\n      else:\n        all_predictions[example.qas_id] = best_non_null_entry.text\n\n    all_nbest_json[example.qas_id] = nbest_json\n\n  with tf.gfile.GFile(output_prediction_file, \"w\") as writer:\n    writer.write(json.dumps(all_predictions, indent=4) + \"\\n\")\n\n  with tf.gfile.GFile(output_nbest_file, \"w\") as writer:\n    writer.write(json.dumps(all_nbest_json, indent=4) + \"\\n\")\n\n  if FLAGS.version_2_with_negative:\n    with tf.gfile.GFile(output_null_log_odds_file, \"w\") as writer:\n      writer.write(json.dumps(scores_diff_json, indent=4) + \"\\n\")\n\n\ndef get_final_text(pred_text, orig_text, do_lower_case):\n  \"\"\"Project the tokenized prediction back to the original text.\"\"\"\n\n  # When we created the data, we kept track of the alignment between original\n  # (whitespace tokenized) tokens and our WordPiece tokenized tokens. So\n  # now `orig_text` contains the span of our original text corresponding to the\n  # span that we predicted.\n  #\n  # However, `orig_text` may contain extra characters that we don't want in\n  # our prediction.\n  #\n  # For example, let's say:\n  #   pred_text = steve smith\n  #   orig_text = Steve Smith's\n  #\n  # We don't want to return `orig_text` because it contains the extra \"'s\".\n  #\n  # We don't want to return `pred_text` because it's already been normalized\n  # (the SQuAD eval script also does punctuation stripping/lower casing but\n  # our tokenizer does additional normalization like stripping accent\n  # characters).\n  #\n  # What we really want to return is \"Steve Smith\".\n  #\n  # Therefore, we have to apply a semi-complicated alignment heruistic between\n  # `pred_text` and `orig_text` to get a character-to-charcter alignment. This\n  # can fail in certain cases in which case we just return `orig_text`.\n\n  def _strip_spaces(text):\n    ns_chars = []\n    ns_to_s_map = collections.OrderedDict()\n    for (i, c) in enumerate(text):\n      if c == \" \":\n        continue\n      ns_to_s_map[len(ns_chars)] = i\n      ns_chars.append(c)\n    ns_text = \"\".join(ns_chars)\n    return (ns_text, ns_to_s_map)\n\n  # We first tokenize `orig_text`, strip whitespace from the result\n  # and `pred_text`, and check if they are the same length. If they are\n  # NOT the same length, the heuristic has failed. If they are the same\n  # length, we assume the characters are one-to-one aligned.\n  tokenizer = tokenization.BasicTokenizer(do_lower_case=do_lower_case)\n\n  tok_text = \" \".join(tokenizer.tokenize(orig_text))\n\n  start_position = tok_text.find(pred_text)\n  if start_position == -1:\n    if FLAGS.verbose_logging:\n      tf.logging.info(\n          \"Unable to find text: '%s' in '%s'\" % (pred_text, orig_text))\n    return orig_text\n  end_position = start_position + len(pred_text) - 1\n\n  (orig_ns_text, orig_ns_to_s_map) = _strip_spaces(orig_text)\n  (tok_ns_text, tok_ns_to_s_map) = _strip_spaces(tok_text)\n\n  if len(orig_ns_text) != len(tok_ns_text):\n    if FLAGS.verbose_logging:\n      tf.logging.info(\"Length not equal after stripping spaces: '%s' vs '%s'\",\n                      orig_ns_text, tok_ns_text)\n    return orig_text\n\n  # We then project the characters in `pred_text` back to `orig_text` using\n  # the character-to-character alignment.\n  tok_s_to_ns_map = {}\n  for (i, tok_index) in six.iteritems(tok_ns_to_s_map):\n    tok_s_to_ns_map[tok_index] = i\n\n  orig_start_position = None\n  if start_position in tok_s_to_ns_map:\n    ns_start_position = tok_s_to_ns_map[start_position]\n    if ns_start_position in orig_ns_to_s_map:\n      orig_start_position = orig_ns_to_s_map[ns_start_position]\n\n  if orig_start_position is None:\n    if FLAGS.verbose_logging:\n      tf.logging.info(\"Couldn't map start position\")\n    return orig_text\n\n  orig_end_position = None\n  if end_position in tok_s_to_ns_map:\n    ns_end_position = tok_s_to_ns_map[end_position]\n    if ns_end_position in orig_ns_to_s_map:\n      orig_end_position = orig_ns_to_s_map[ns_end_position]\n\n  if orig_end_position is None:\n    if FLAGS.verbose_logging:\n      tf.logging.info(\"Couldn't map end position\")\n    return orig_text\n\n  output_text = orig_text[orig_start_position:(orig_end_position + 1)]\n  return output_text\n\n\ndef _get_best_indexes(logits, n_best_size):\n  \"\"\"Get the n-best logits from a list.\"\"\"\n  # 得到从高到低排列的前n个的几率\n  # 并且得到它们的索引\n  index_and_score = sorted(enumerate(logits), key=lambda x: x[1], reverse=True)\n\n  best_indexes = []\n  for i in range(len(index_and_score)):\n    if i >= n_best_size:\n      break\n    best_indexes.append(index_and_score[i][0])\n  return best_indexes\n\n\ndef _compute_softmax(scores):\n  \"\"\"Compute softmax probability over raw logits.\"\"\"\n  if not scores:\n    return []\n\n  max_score = None\n  for score in scores:\n    if max_score is None or score > max_score:\n      max_score = score\n\n  exp_scores = []\n  total_sum = 0.0\n  for score in scores:\n    x = math.exp(score - max_score)\n    exp_scores.append(x)\n    total_sum += x\n\n  probs = []\n  for score in exp_scores:\n    probs.append(score / total_sum)\n  return probs\n\n\nclass FeatureWriter(object):\n  \"\"\"Writes InputFeature to TF example file.\"\"\"\n\n  def __init__(self, filename, is_training):\n    self.filename = filename\n    self.is_training = is_training\n    self.num_features = 0\n    self._writer = tf.python_io.TFRecordWriter(filename)\n\n  def process_feature(self, feature):\n    \"\"\"Write a InputFeature to the TFRecordWriter as a tf.train.Example.\"\"\"\n    self.num_features += 1\n\n    def create_int_feature(values):\n      feature = tf.train.Feature(\n          int64_list=tf.train.Int64List(value=list(values)))\n      return feature\n\n    features = collections.OrderedDict()\n    features[\"unique_ids\"] = create_int_feature([feature.unique_id])\n    features[\"input_ids\"] = create_int_feature(feature.input_ids)\n    features[\"input_mask\"] = create_int_feature(feature.input_mask)\n    features[\"segment_ids\"] = create_int_feature(feature.segment_ids)\n\n    if self.is_training:\n      features[\"start_positions\"] = create_int_feature([feature.start_position])\n      features[\"end_positions\"] = create_int_feature([feature.end_position])\n      impossible = 0\n      if feature.is_impossible:\n        impossible = 1\n      features[\"is_impossible\"] = create_int_feature([impossible])\n\n    tf_example = tf.train.Example(features=tf.train.Features(feature=features))\n    self._writer.write(tf_example.SerializeToString())\n\n  def close(self):\n    self._writer.close()\n\n\ndef validate_flags_or_throw(bert_config):\n  \"\"\"Validate the input FLAGS or throw an exception.\"\"\"\n  tokenization.validate_case_matches_checkpoint(FLAGS.do_lower_case,\n                                                FLAGS.init_checkpoint)\n\n  if not FLAGS.do_train and not FLAGS.do_predict:\n    raise ValueError(\"At least one of `do_train` or `do_predict` must be True.\")\n\n  if FLAGS.do_train:\n    if not FLAGS.train_file:\n      raise ValueError(\n          \"If `do_train` is True, then `train_file` must be specified.\")\n  if FLAGS.do_predict:\n    if not FLAGS.predict_file:\n      raise ValueError(\n          \"If `do_predict` is True, then `predict_file` must be specified.\")\n\n  if FLAGS.max_seq_length > bert_config.max_position_embeddings:\n    raise ValueError(\n        \"Cannot use sequence length %d because the BERT model \"\n        \"was only trained up to sequence length %d\" %\n        (FLAGS.max_seq_length, bert_config.max_position_embeddings))\n\n  if FLAGS.max_seq_length <= FLAGS.max_query_length + 3:\n    raise ValueError(\n        \"The max_seq_length (%d) must be greater than max_query_length \"\n        \"(%d) + 3\" % (FLAGS.max_seq_length, FLAGS.max_query_length))\n\n\ndef main(_):\n  tf.logging.set_verbosity(tf.logging.INFO)\n\n  bert_config = modeling.BertConfig.from_json_file(FLAGS.bert_config_file)\n\n  validate_flags_or_throw(bert_config)\n\n  tf.gfile.MakeDirs(FLAGS.output_dir)\n\n  tokenizer = tokenization.FullTokenizer(\n      vocab_file=FLAGS.vocab_file, do_lower_case=FLAGS.do_lower_case)\n\n  tpu_cluster_resolver = None\n  if FLAGS.use_tpu and FLAGS.tpu_name:\n    tpu_cluster_resolver = tf.contrib.cluster_resolver.TPUClusterResolver(\n        FLAGS.tpu_name, zone=FLAGS.tpu_zone, project=FLAGS.gcp_project)\n\n  is_per_host = tf.contrib.tpu.InputPipelineConfig.PER_HOST_V2\n  run_config = tf.contrib.tpu.RunConfig(\n      cluster=tpu_cluster_resolver,\n      master=FLAGS.master,\n      model_dir=FLAGS.output_dir,\n      save_checkpoints_steps=FLAGS.save_checkpoints_steps,\n      tpu_config=tf.contrib.tpu.TPUConfig(\n          iterations_per_loop=FLAGS.iterations_per_loop,\n          num_shards=FLAGS.num_tpu_cores,\n          per_host_input_for_training=is_per_host))\n\n  train_examples = None\n  num_train_steps = None\n  num_warmup_steps = None\n  if FLAGS.do_train:\n    train_examples = read_squad_examples(\n        input_file=FLAGS.train_file, is_training=True)\n    num_train_steps = int(\n        len(train_examples) / FLAGS.train_batch_size * FLAGS.num_train_epochs)\n    num_warmup_steps = int(num_train_steps * FLAGS.warmup_proportion)\n\n    # Pre-shuffle the input to avoid having to make a very large shuffle\n    # buffer in in the `input_fn`.\n    rng = random.Random(12345)\n    rng.shuffle(train_examples)\n\n  model_fn = model_fn_builder(\n      bert_config=bert_config,\n      init_checkpoint=FLAGS.init_checkpoint,\n      learning_rate=FLAGS.learning_rate,\n      num_train_steps=num_train_steps,\n      num_warmup_steps=num_warmup_steps,\n      use_tpu=FLAGS.use_tpu,\n      use_one_hot_embeddings=FLAGS.use_tpu)\n\n  # If TPU is not available, this will fall back to normal Estimator on CPU\n  # or GPU.\n  estimator = tf.contrib.tpu.TPUEstimator(\n      use_tpu=FLAGS.use_tpu,\n      model_fn=model_fn,\n      config=run_config,\n      train_batch_size=FLAGS.train_batch_size,\n      predict_batch_size=FLAGS.predict_batch_size)\n\n  if FLAGS.do_train:\n    # We write to a temporary file to avoid storing very large constant tensors\n    # in memory.\n    train_writer = FeatureWriter(\n        filename=os.path.join(FLAGS.output_dir, \"train.tf_record\"),\n        is_training=True)\n    convert_examples_to_features(\n        examples=train_examples,\n        tokenizer=tokenizer,\n        max_seq_length=FLAGS.max_seq_length,\n        doc_stride=FLAGS.doc_stride,\n        max_query_length=FLAGS.max_query_length,\n        is_training=True,\n        output_fn=train_writer.process_feature)\n    train_writer.close()\n\n    tf.logging.info(\"***** Running training *****\")\n    tf.logging.info(\"  Num orig examples = %d\", len(train_examples))\n    tf.logging.info(\"  Num split examples = %d\", train_writer.num_features)\n    tf.logging.info(\"  Batch size = %d\", FLAGS.train_batch_size)\n    tf.logging.info(\"  Num steps = %d\", num_train_steps)\n    del train_examples\n\n    train_input_fn = input_fn_builder(\n        input_file=train_writer.filename,\n        seq_length=FLAGS.max_seq_length,\n        is_training=True,\n        drop_remainder=True)\n    estimator.train(input_fn=train_input_fn, max_steps=num_train_steps)\n\n  if FLAGS.do_predict:\n    eval_examples = read_squad_examples(\n        input_file=FLAGS.predict_file, is_training=False)\n\n    eval_writer = FeatureWriter(\n        filename=os.path.join(FLAGS.output_dir, \"eval.tf_record\"),\n        is_training=False)\n    eval_features = []\n\n    def append_feature(feature):\n      eval_features.append(feature)\n      eval_writer.process_feature(feature)\n\n    convert_examples_to_features(\n        examples=eval_examples,\n        tokenizer=tokenizer,\n        max_seq_length=FLAGS.max_seq_length,\n        doc_stride=FLAGS.doc_stride,\n        max_query_length=FLAGS.max_query_length,\n        is_training=False,\n        output_fn=append_feature)\n    eval_writer.close()\n\n    tf.logging.info(\"***** Running predictions *****\")\n    tf.logging.info(\"  Num orig examples = %d\", len(eval_examples))\n    tf.logging.info(\"  Num split examples = %d\", len(eval_features))\n    tf.logging.info(\"  Batch size = %d\", FLAGS.predict_batch_size)\n\n    all_results = []\n\n    predict_input_fn = input_fn_builder(\n        input_file=eval_writer.filename,\n        seq_length=FLAGS.max_seq_length,\n        is_training=False,\n        drop_remainder=False)\n\n    # If running eval on the TPU, you will need to specify the number of\n    # steps.\n    all_results = []\n    for result in estimator.predict(\n        predict_input_fn, yield_single_examples=True):\n      if len(all_results) % 1000 == 0:\n        tf.logging.info(\"Processing example: %d\" % (len(all_results)))\n      unique_id = int(result[\"unique_ids\"])\n      start_logits = [float(x) for x in result[\"start_logits\"].flat]\n      end_logits = [float(x) for x in result[\"end_logits\"].flat]\n      all_results.append(\n          RawResult(\n              unique_id=unique_id,\n              start_logits=start_logits,\n              end_logits=end_logits))\n\n    output_prediction_file = os.path.join(FLAGS.output_dir, \"predictions.json\")\n    output_nbest_file = os.path.join(FLAGS.output_dir, \"nbest_predictions.json\")\n    output_null_log_odds_file = os.path.join(FLAGS.output_dir, \"null_odds.json\")\n\n    write_predictions(eval_examples, eval_features, all_results,\n                      FLAGS.n_best_size, FLAGS.max_answer_length,\n                      FLAGS.do_lower_case, output_prediction_file,\n                      output_nbest_file, output_null_log_odds_file)\n\n\nif __name__ == \"__main__\":\n  flags.mark_flag_as_required(\"vocab_file\")\n  flags.mark_flag_as_required(\"bert_config_file\")\n  flags.mark_flag_as_required(\"output_dir\")\n  tf.app.run()\n"
  },
  {
    "path": "nlp/code/tokenization.py",
    "content": "# coding=utf-8\n# Copyright 2018 The Google AI Language Team Authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\"\"\"Tokenization classes.\"\"\"\n\nfrom __future__ import absolute_import\nfrom __future__ import division\nfrom __future__ import print_function\n\nimport collections\nimport re\nimport unicodedata\nimport six\nimport tensorflow as tf\n\n\ndef validate_case_matches_checkpoint(do_lower_case, init_checkpoint):\n  \"\"\"Checks whether the casing config is consistent with the checkpoint name.\"\"\"\n\n  # The casing has to be passed in by the user and there is no explicit check\n  # as to whether it matches the checkpoint. The casing information probably\n  # should have been stored in the bert_config.json file, but it's not, so\n  # we have to heuristically detect it to validate.\n\n  if not init_checkpoint:\n    return\n\n  m = re.match(\"^.*?([A-Za-z0-9_-]+)/bert_model.ckpt\", init_checkpoint)\n  if m is None:\n    return\n\n  model_name = m.group(1)\n\n  lower_models = [\n      \"uncased_L-24_H-1024_A-16\", \"uncased_L-12_H-768_A-12\",\n      \"multilingual_L-12_H-768_A-12\", \"chinese_L-12_H-768_A-12\"\n  ]\n\n  cased_models = [\n      \"cased_L-12_H-768_A-12\", \"cased_L-24_H-1024_A-16\",\n      \"multi_cased_L-12_H-768_A-12\"\n  ]\n\n  is_bad_config = False\n  if model_name in lower_models and not do_lower_case:\n    is_bad_config = True\n    actual_flag = \"False\"\n    case_name = \"lowercased\"\n    opposite_flag = \"True\"\n\n  if model_name in cased_models and do_lower_case:\n    is_bad_config = True\n    actual_flag = \"True\"\n    case_name = \"cased\"\n    opposite_flag = \"False\"\n\n  if is_bad_config:\n    raise ValueError(\n        \"You passed in `--do_lower_case=%s` with `--init_checkpoint=%s`. \"\n        \"However, `%s` seems to be a %s model, so you \"\n        \"should pass in `--do_lower_case=%s` so that the fine-tuning matches \"\n        \"how the model was pre-training. If this error is wrong, please \"\n        \"just comment out this check.\" % (actual_flag, init_checkpoint,\n                                          model_name, case_name, opposite_flag))\n\n\ndef convert_to_unicode(text):\n  \"\"\"Converts `text` to Unicode (if it's not already), assuming utf-8 input.\"\"\"\n  if six.PY3:\n    if isinstance(text, str):\n      return text\n    elif isinstance(text, bytes):\n      return text.decode(\"utf-8\", \"ignore\")\n    else:\n      raise ValueError(\"Unsupported string type: %s\" % (type(text)))\n  elif six.PY2:\n    if isinstance(text, str):\n      return text.decode(\"utf-8\", \"ignore\")\n    elif isinstance(text, unicode):\n      return text\n    else:\n      raise ValueError(\"Unsupported string type: %s\" % (type(text)))\n  else:\n    raise ValueError(\"Not running on Python2 or Python 3?\")\n\n\ndef printable_text(text):\n  \"\"\"Returns text encoded in a way suitable for print or `tf.logging`.\"\"\"\n\n  # These functions want `str` for both Python2 and Python3, but in one case\n  # it's a Unicode string and in the other it's a byte string.\n  if six.PY3:\n    if isinstance(text, str):\n      return text\n    elif isinstance(text, bytes):\n      return text.decode(\"utf-8\", \"ignore\")\n    else:\n      raise ValueError(\"Unsupported string type: %s\" % (type(text)))\n  elif six.PY2:\n    if isinstance(text, str):\n      return text\n    elif isinstance(text, unicode):\n      return text.encode(\"utf-8\")\n    else:\n      raise ValueError(\"Unsupported string type: %s\" % (type(text)))\n  else:\n    raise ValueError(\"Not running on Python2 or Python 3?\")\n\n# 加载词表\n# OrderedDict([('!', 999), ('\"', 1000), ('#', 1001), ('##!', 29612), ('##\"', 29613)...('###', 29614)])\ndef load_vocab(vocab_file):\n  \"\"\"Loads a vocabulary file into a dictionary.\"\"\"\n  vocab = collections.OrderedDict()\n  index = 0\n  with tf.gfile.GFile(vocab_file, \"r\") as reader:\n    while True:\n      token = convert_to_unicode(reader.readline())\n      if not token:\n        break\n      token = token.strip()\n      vocab[token] = index\n      index += 1\n  return vocab\n\n\ndef convert_by_vocab(vocab, items):\n  \"\"\"Converts a sequence of [tokens|ids] using the vocab.\"\"\"\n  # output --> [101, 2572, 3217, 5831, 102, 7727, 2000, 102]\n  output = []\n  for item in items:\n    output.append(vocab[item])\n  return output\n\n\ndef convert_tokens_to_ids(vocab, tokens):\n  return convert_by_vocab(vocab, tokens)\n\n\ndef convert_ids_to_tokens(inv_vocab, ids):\n  return convert_by_vocab(inv_vocab, ids)\n\n\n\n\ndef whitespace_tokenize(text):\n  \"\"\"Runs basic whitespace cleaning and splitting on a piece of text.\"\"\"\n  # 按照空格切分每个词，并且去除两边多余空白\n  text = text.strip()\n  if not text:\n    return []\n  tokens = text.split()\n  return tokens\n\n\nclass FullTokenizer(object):\n  \"\"\"Runs end-to-end tokenziation.\"\"\"\n\n  def __init__(self, vocab_file, do_lower_case=True):\n    self.vocab = load_vocab(vocab_file)\n    # 键值对颠倒\n    self.inv_vocab = {v: k for k, v in self.vocab.items()}\n    self.basic_tokenizer = BasicTokenizer(do_lower_case=do_lower_case)\n    self.wordpiece_tokenizer = WordpieceTokenizer(vocab=self.vocab)\n  \n  # 空格切分之后再采用词切分，将单词划分为更精细的结构\n  \n  def tokenize(self, text):\n    split_tokens = []\n    for token in self.basic_tokenizer.tokenize(text):\n      for sub_token in self.wordpiece_tokenizer.tokenize(token):\n        split_tokens.append(sub_token)\n\n    return split_tokens\n\n  def convert_tokens_to_ids(self, tokens):\n    return convert_by_vocab(self.vocab, tokens)\n\n  def convert_ids_to_tokens(self, ids):\n    return convert_by_vocab(self.inv_vocab, ids)\n\n\nclass BasicTokenizer(object):\n  \"\"\"Runs basic tokenization (punctuation splitting, lower casing, etc.).\"\"\"\n\n  def __init__(self, do_lower_case=True):\n    \"\"\"Constructs a BasicTokenizer.\n\n    Args:\n      do_lower_case: Whether to lower case the input.\n    \"\"\"\n    self.do_lower_case = do_lower_case\n\n  def tokenize(self, text):\n    \"\"\"Tokenizes a piece of text.\"\"\"\n    text = convert_to_unicode(text)\n    text = self._clean_text(text)\n\n    # This was added on November 1st, 2018 for the multilingual and Chinese\n    # models. This is also applied to the English models now, but it doesn't\n    # matter since the English models were not trained on any Chinese data\n    # and generally don't have any Chinese data in them (there are Chinese\n    # characters in the vocabulary because Wikipedia does have some Chinese\n    # words in the English Wikipedia.).\n    text = self._tokenize_chinese_chars(text)\n\n    orig_tokens = whitespace_tokenize(text)\n    split_tokens = []\n    for token in orig_tokens:\n      # 全部转成小写\n      if self.do_lower_case:\n        token = token.lower()\n        token = self._run_strip_accents(token)\n      split_tokens.extend(self._run_split_on_punc(token))\n\n    output_tokens = whitespace_tokenize(\" \".join(split_tokens))\n    return output_tokens\n\n  def _run_strip_accents(self, text):\n    \"\"\"Strips accents from a piece of text.\"\"\"\n    # 去除各种变音字符\n    text = unicodedata.normalize(\"NFD\", text)\n    output = []\n    for char in text:\n      cat = unicodedata.category(char)\n      if cat == \"Mn\":\n        continue\n      output.append(char)\n    return \"\".join(output)\n\n  def _run_split_on_punc(self, text):\n    \"\"\"Splits punctuation on a piece of text.\"\"\"\n    # 切分标点字符 e.g. One-hot --> [\"one\",\"-\",\"hot\"]\n    chars = list(text)\n    i = 0\n    start_new_word = True\n    output = []\n    while i < len(chars):\n      char = chars[i]\n      if _is_punctuation(char):\n        output.append([char])\n        start_new_word = True\n      else:\n        if start_new_word:\n          output.append([])\n        start_new_word = False\n        output[-1].append(char)\n      i += 1\n\n    return [\"\".join(x) for x in output]\n\n  def _tokenize_chinese_chars(self, text):\n    # e.g. 源码一定要读懂呀 --> 源 码 一 定 要 读 懂 呀\n    \"\"\"Adds whitespace around any CJK character.\"\"\"\n    output = []\n    for char in text:\n      cp = ord(char)\n      if self._is_chinese_char(cp):\n        output.append(\" \")\n        output.append(char)\n        output.append(\" \")\n      else:\n        output.append(char)\n    return \"\".join(output)\n\n  def _is_chinese_char(self, cp):\n    \"\"\"Checks whether CP is the codepoint of a CJK character.\"\"\"\n    # This defines a \"chinese character\" as anything in the CJK Unicode block:\n    #   https://en.wikipedia.org/wiki/CJK_Unified_Ideographs_(Unicode_block)\n    #\n    # Note that the CJK Unicode block is NOT all Japanese and Korean characters,\n    # despite its name. The modern Korean Hangul alphabet is a different block,\n    # as is Japanese Hiragana and Katakana. Those alphabets are used to write\n    # space-separated words, so they are not treated specially and handled\n    # like the all of the other languages.\n    if ((cp >= 0x4E00 and cp <= 0x9FFF) or  #\n        (cp >= 0x3400 and cp <= 0x4DBF) or  #\n        (cp >= 0x20000 and cp <= 0x2A6DF) or  #\n        (cp >= 0x2A700 and cp <= 0x2B73F) or  #\n        (cp >= 0x2B740 and cp <= 0x2B81F) or  #\n        (cp >= 0x2B820 and cp <= 0x2CEAF) or\n        (cp >= 0xF900 and cp <= 0xFAFF) or  #\n        (cp >= 0x2F800 and cp <= 0x2FA1F)):  #\n      return True\n\n    return False\n\n  def _clean_text(self, text):\n    \"\"\"Performs invalid character removal and whitespace cleanup on text.\"\"\"\n    output = []\n    for char in text:\n      cp = ord(char)\n      if cp == 0 or cp == 0xfffd or _is_control(char):\n        continue\n      if _is_whitespace(char):\n        output.append(\" \")\n      else:\n        output.append(char)\n    return \"\".join(output)\n\n\nclass WordpieceTokenizer(object):\n  \"\"\"Runs WordPiece tokenziation.\"\"\"\n\n  def __init__(self, vocab, unk_token=\"[UNK]\", max_input_chars_per_word=200):\n    self.vocab = vocab\n    self.unk_token = unk_token\n    self.max_input_chars_per_word = max_input_chars_per_word\n\n  def tokenize(self, text):\n    \"\"\"Tokenizes a piece of text into its word pieces.\n\n    This uses a greedy longest-match-first algorithm to perform tokenization\n    using the given vocabulary.\n\n    For example:\n      input = \"unaffable\"\n      output = [\"un\", \"##aff\", \"##able\"]\n\n    Args:\n      text: A single token or whitespace separated tokens. This should have\n        already been passed through `BasicTokenizer.\n\n    Returns:\n      A list of wordpiece tokens.\n    \"\"\"\n\n    text = convert_to_unicode(text)\n\n    output_tokens = []\n    for token in whitespace_tokenize(text):\n      chars = list(token)\n      if len(chars) > self.max_input_chars_per_word:\n        output_tokens.append(self.unk_token)\n        continue\n\n      is_bad = False\n      start = 0\n      sub_tokens = []\n      while start < len(chars):\n        end = len(chars)\n        cur_substr = None\n        while start < end:\n          substr = \"\".join(chars[start:end])\n          if start > 0:\n            substr = \"##\" + substr\n          if substr in self.vocab:\n            cur_substr = substr\n            break\n          end -= 1\n        if cur_substr is None:\n          is_bad = True\n          break\n        sub_tokens.append(cur_substr)\n        start = end\n\n      if is_bad:\n        output_tokens.append(self.unk_token)\n      else:\n        output_tokens.extend(sub_tokens)\n    return output_tokens\n\n\ndef _is_whitespace(char):\n  \"\"\"Checks whether `chars` is a whitespace character.\"\"\"\n  # \\t, \\n, and \\r are technically contorl characters but we treat them\n  # as whitespace since they are generally considered as such.\n  if char == \" \" or char == \"\\t\" or char == \"\\n\" or char == \"\\r\":\n    return True\n  cat = unicodedata.category(char)\n  if cat == \"Zs\":\n    return True\n  return False\n\n\ndef _is_control(char):\n  \"\"\"Checks whether `chars` is a control character.\"\"\"\n  # These are technically control characters but we count them as whitespace\n  # characters.\n  if char == \"\\t\" or char == \"\\n\" or char == \"\\r\":\n    return False\n  cat = unicodedata.category(char)\n  if cat in (\"Cc\", \"Cf\"):\n    return True\n  return False\n\n\ndef _is_punctuation(char):\n  \"\"\"Checks whether `chars` is a punctuation character.\"\"\"\n  cp = ord(char)\n  # We treat all non-letter/number ASCII as punctuation.\n  # Characters such as \"^\", \"$\", and \"`\" are not in the Unicode\n  # Punctuation class but we treat them as punctuation anyways, for\n  # consistency.\n  if ((cp >= 33 and cp <= 47) or (cp >= 58 and cp <= 64) or\n      (cp >= 91 and cp <= 96) or (cp >= 123 and cp <= 126)):\n    return True\n  cat = unicodedata.category(char)\n  if cat.startswith(\"P\"):\n    return True\n  return False\n"
  },
  {
    "path": "nlp/embedded.md",
    "content": "### 词嵌入\n\n章节\n\n- [词嵌入概述](#summary)\n- [skip-gram](#skip)\n- [CBOW](#cbow)\n- [Negative Sample](#ns)\n- [GloVe](#glove)\n- [ELMo](#elmo)\n- [参考文献](#references)\n\n### <div id='summary'>词嵌入概述</div>\n\n深度学习任务中，我们不能直接将词语送入模型，我们需要将其转换为数值矩阵。常见的问题是\n- 如何以较低维度的矩阵来表示词从而减少运算量；\n- 在转换为数值之后仍然保留不同词之间的相关性；\n- 同词不同场景的情况如何表示；\n- 如何使得出现频率不同的词都能得到较好的训练等等\n\n这篇词嵌入会具体梳理前辈中做的工作以及目前的主流操作，以原理为主，因大多数已渐被取代且预训练不易（需要大量数据集），不切入代码实践\n\n***\n\n### <div id='skip'>skip-gram</div>\n\n先介绍one-hot（独热编码）为什么在NLP中不大能胜任，我们不仅需要将词转换为矩阵，而且还要保持不同词之间的关系，比如余弦相似度：\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/cos.png)\n\n而不同的单词用one-hot做内积之后结果均为0，这样就会丧失词之间的关系\n\nskip-gram就是选出中心词来预测其他词出现在它周围的概率，例如，一个句子是\"the man loves his car.\"，假设\"loves\"是中心词，引入一个context window的概念，即为周围两侧覆盖的范围，若为2，那么左侧的\"the man\"和右侧\"his car\"都会被覆盖到。P(the,man,his,car|loves)意为当中心词为\"loves\"，那么在context window范围内，它周围词为这些的概率\n\n假设![](http://latex.codecogs.com/svg.latex?w_i,w_c)分别代表context word和central word（文本词与中心词）以及![](http://latex.codecogs.com/svg.latex?u_i,v_c)代表它们所被表示成的向量，![](http://latex.codecogs.com/svg.latex?\\mathcal{V})代表词表内单词的数量，那么给定中心词，任意文本词作为它邻居的概率其实是softmax：\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/skip.png)\n\n那么给定一个长度为T，t为每一个时间步，m是context window的大小，那么，将所有概率相乘，并且每一个词都可以作为文本词和中心词，这就意味着每一个词有二维向量，分别对应不同的场景，即为：\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/skip_.png)\n\n例如，句子长度为5，m为2，句子仍为\"the man loves his car\"，在第一个时间步时：\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/skip_t1.png)\n\n对于时间步小于1和大于T的不予考虑，另外对自身不做softmax概率，那么![](http://latex.codecogs.com/svg.latex?P(w^2|w^1),P(w^3|w^1))分别代表man，loves从the中生成的概率，在不同时间步上中心词都不同。\n\n极大似然概率被用于训练skip-gram，SGD常用于skip-gram的参数更新\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/skip_max.png)\n\n联系上面![](http://latex.codecogs.com/svg.latex?P(w_i|w_c))的定义（注意其实w的上标和下标并没有本质区别，上标只是为了更清楚地表示时间步而已）可以得到：\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/skip_log.png)\n\n接下来我们求![](http://latex.codecogs.com/svg.latex?v_c)的梯度（其实分子和分母的下标应该是一致的，这里处理不是为了分子分母同除，为了区分，所以采用不同下标）：\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/skip_log_.png)\n\n\n***\n\n### <div id='cbow'>CBOW</div>\n\n其实CBOW和skip-gram最大的不同是前者是由中心词产生周围邻居，而CBOW恰恰相反，由周围词产生中心词。继续上面的例子，\"the man loves his car\"，那么对应的中心词概率为P(loves|the,man,his,car)\n\n因为中心词数量过多，这里平均处理，相对应的softmax概率即为：\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/cbow.png)\n\n为了简便，记![](http://latex.codecogs.com/svg.latex?\\mathcal{W}_0=\\\\{w_{o1},\\dots,w_{o2m}\\\\})，\n![](http://latex.codecogs.com/svg.latex?\\bar{\\mathbf{v}}_o=(v_{o1}+\\dots+v_{o2m})/(2m))\n\n所以上面的式子简化为\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/cbow_simple.png)\n\n所以，在给定时间步长T下（同skip-gram）：\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/cbow_.png)\n\n那么，极大似然概率为\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/cbow_log.png)\n\n联系上面的式子，进行简化：\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/cbow_concrete.png)\n\n计算![](http://latex.codecogs.com/svg.latex?\\bar{\\mathbf{v}}_{oi})的梯度\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/cbow_last.png)\n\n不难发现，当需要求一个参数的梯度时，skip-gram和CBOW都需要将整个词表乘一遍，当词表很大的时候，计算会非常耗时\n\n***\n\n### <div id='ns'>Negative Sample</div>\n\n为了解决skip-gram和CBOW都会遍历词表，复杂度为![](http://latex.codecogs.com/svg.latex?\\mathbf{O}(n))，一个方法是hierarchical softmax，它是通过哈夫曼树让复杂度降至![](http://latex.codecogs.com/svg.latex?\\mathbf{O}(logn))，但较为复杂而且也不是普遍应用，这里忽略，详细介绍另一种方法Negative Sampling，下方简写为NS\n\nNS其实是符合直觉的，一开始是遍历整个词表，那么有没有可能遍历从词表中取样出来的小样本呢？不断学习，不就间接上等于把词表整个遍历了吗？\n\n这里用skip-gram为例，CBOW和它差不多，假设给定一个句子，![](http://latex.codecogs.com/svg.latex?w_c,w_o)分别代表中心词和句子中出现的词，![](http://latex.codecogs.com/svg.latex?v_c,u_o)分别代表它们被表示成的向量，P(D=1)代表正样本，即为![](http://latex.codecogs.com/svg.latex?w_o)出现在中心词的context window里\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/ns.png)\n\n那么，在给定时间步上，![](http://latex.codecogs.com/svg.latex?w^t)代表不同时间步时的中心词\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/ns_prod.png)\n\n我们取对数处理\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/ns_prod_log.png)\n\n意味着我们希望不同的中心词时，邻居出现在它context window的可能性尽可能大，还是\"the man loves his car\"，这次假设context window大小为1，那么当t=1时，则希望在所有词中\"man\"出现在它旁边的概率最大，以此类推，t=2，则希望\"the\"，\"loves\"出现在\"man\"周围的概率最大等等\n\n\n负采样的意思是不仅要让所有在context window里的正样本概率变大，同时从不在window里的词中采样![](http://latex.codecogs.com/svg.latex?\\mathcal{K})个词作为噪声词，然后把两个样本概率相乘，记![](http://latex.codecogs.com/svg.latex?P(w))为负样本采样时的分布，![](http://latex.codecogs.com/svg.latex?w_k)为噪声词\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/ns_joint.png)\n\n正负样本符合伯努利分布，即两个相加为1，改写并取对数，极大似然概率如下：\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/ns_last.png)\n\n问题来了，![](http://latex.codecogs.com/svg.latex?P(w))是多少呢？其实取样会有个问题，高频词被取样出来的概率会大于低频词，所以就希望能够平衡高频词和低频词之间的比例，原论文提出将每一个词的频率的3/4次方作为每一个词的词频，关于为啥是3/4，这是经验之谈，是通过实验结果找出的，并没有好的理论依托，不过可以通过例子来直观感受\n\n假如一个句子中，loves，his，metal出现的概率分别为0.9，0.09，0.01（即该词出现的次数/总词数），那么变换之后分别是0.92，0.16，0.032，可以发现虽然每一个值都上升了，但是高频词上升的程度远没有低配词来的大，这样就可以一定程度平衡比例\n****\n\n### <div id='glove'>GloVe</div>\n\n经过上述介绍，不难发现skip-gram和CBOW都是通过滑动窗口来捕捉词与词之间的关系，但是没有用到整个序列的统计信息，而且需要用到大量语料进行训练，训练较慢，而如LSA，HAL这类虽然可以较好地用到整个序列的统计信息，训练也较快，但是只能捕捉较为原始的词与词之间的关系。\n\nGlove的出现结合了这两者的优点\n\n记![](http://latex.codecogs.com/svg.latex?x_{ij})为![](http://latex.codecogs.com/svg.latex?x_i)出现在以![](http://latex.codecogs.com/svg.latex?x_j)为中心词的窗口中的概率，![](http://latex.codecogs.com/svg.latex?u_i,v_j)为文本词和中心词被表示成的向量，其实GloVe用的平方损失![](http://latex.codecogs.com/svg.latex?loss=(logx_{ij}-logexp(u_i^Tv_j))^2=(u_i^Tv_j-logx_{ij})^2)\n\n\n\n然后加上两个标量![](http://latex.codecogs.com/svg.latex?b_j,c_i)分别对应中心词和文本词，每一次损失我们都给它加上一个权重![](http://latex.codecogs.com/svg.latex?f(x_{ij}))（不加的话就全为1）\n\n全部放一起，即为：\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/glove.png)\n\n![](http://latex.codecogs.com/svg.latex?f(x_{ij}))是一个线性的函数，![](http://latex.codecogs.com/svg.latex?x_{max})通常设为100\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/glove_weights.png)\n\n***\n\n### <div id='elmo'>ELMo</div>\n\n上述介绍的word embedding方法有一个很大的局限，训练好之后一个词的意思就定下来了，可是不同语境的词的意思可能有很大差异，比如telsa可以指科学家，也还可以指电动车公司；不同语境下的语法也是问题，\"is playing\" 和 \"has played\"虽然都是play，但是是不同的。\n\n于是，有人就设想，能不能根据具体语境具体化向量呢？\n\n在介绍ELMo之前，先讲讲RNNLM，LM指的是Language Model，是用前面一个词预测它后一个词出现的概率，加上RNN，其实就是在每一个时间步上输入一个词，吐出下一个词，再把输出的词放到下一个时间步的输入，以此类推，整个序列就全部输出，这样可以保证每一个词都携带特定语义，而不是泛泛而谈。\n\nRNN有前向和后向之分，表示就是![](http://latex.codecogs.com/svg.latex?P(w_t|w_1,w_2,\\dots,w_{t-1}))和![](http://latex.codecogs.com/svg.latex?P(w_t|w_n,w_{n-1},\\dots,w_{t+1}))\n\nELMo的使用双向RNN，每一个RNN有两层LSTM，按照上面RNNLM的构想进行操作，一开始的Embedding是用CNN完成的\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/elmo.png)\n\n然后把隐藏层的向量拼接起来，得到两个向量，最后完成的embedding就是这两个向量的加权求和，权重从何来呢？做好词嵌入后会接下游任务，每一个任务会对这个embedding有一定反馈，根据不同任务的特点以及重要程度，进行加权\n\n![](https://github.com/sherlcok314159/ML/blob/main/pre/Images/elmo_2.png)\n\n据原论文作者实验得出，通常第一层隐藏层可以捕捉基础的语法，第二层可以捕捉到更高级的语义关系 \n\nELMo被提出的时候打败上述的所有词嵌入方式，但是好景不长，GPT出来后就被取代了，目前万物皆bert，用bert加下游任务就行fine-tune\n\n当然，bert在本仓库的其他地方已有说明，这里不再赘述\n\n***\n\n### <div id='references'>参考文献</div>\n\nhttps://d2l.ai/chapter_natural-language-processing-pretraining/glove.html\n\nhttps://www.bilibili.com/video/BV19g4y1b7vx?p=28&spm_id_from=pageDriver\n\n"
  },
  {
    "path": "nlp/fast.md",
    "content": "**上手项目？**\n\n**1.** 确认你的目标，是刨根问底还是浅尝辄止，还有你给自己分配的时间，这样可以在规定时间内完成自己想要的结果。\n\n**2.** 找到好的教程，个人认为，想要快速上手一个项目，先不要看书上的理论，相信我，看完理论你也不一定跑的起来，更何况你还不一定看得完。应该找一个通俗易懂的视频，不需要很高大上，听懂入门就好。后期跑完想要深究配合书岂不更香。\n\n**3.** 找网上博客教程，多找一些，汇总学习。\n\n\n**4.** 一定一定一定学会阅读官方文档，也许你辛辛苦苦搜了半天的精华不过在官方文档很小的一个地方。除非官方文档十分难懂！\n\n****\n**阅读源码？**\n\n\n**1.** 从0到1。什么意思呢？拿到一个源代码，先不要想着全部理解，你应该想着先跑通一个小demo。从demo里面慢慢认识源码。\n\n**2.** 学会看官方英文注释，官方的英文注释言简意赅。一定一定要仔细阅读。\n\n**3.** 学会debug。阅读源代码很容易不知所云，这个时候debug一下简直不要太酸爽！对于基础的断点，调点，单步调试，添加config文件要熟练。实在不行，print也不赖。\n\n**4.** 跑源代码之前，先去找通俗易懂的解读视频，视频为第一位。视频能帮助你迅速入门并掌握。再辅以好的技术博客，问题就不大了。"
  },
  {
    "path": "nlp/load_data.md",
    "content": ""
  },
  {
    "path": "nlp/models/bert.md",
    "content": "### Bidirectional Encoder Representations from Transformers\n\n\n**章节**\n- [Encoder](#encoder)\n- [Ways Of Training](#train)\n    - [MASK](#mask)\n    - [Connect Or Not](#connect)\n- [Reading Comprehension](#comprehension)\n- [参考文献](#references)\n\n**<div id='encoder'>Encoder</div>**\n\n\n其实Bert就是[Transformer](../nlp/transformer.md)编码器的部分。比较神奇的一点是并不需要标签，有预料即可训练\n\n\n**<div id='train'>Ways Of Training</div>**\n\n一共有两种方法训练Bert，一是MASK，二是拼接法。\n\n**<div id='mask'>MASK</div>**\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/MASK.png)\n\n\n我们可以定义一个概率决定多少的数据被遮盖掉，比如说设置为15%，然后我们让bert去猜遮掉的究竟是什么。bert会根据前后句子关系，然后去自己的语料库里找匹配的词语，然后返回最佳匹配的。英文一般均为一个英文单词，但是中文大多为一个字，**因为中文的词语简直太多，没有办法全部涵盖**\n\n**<div id='connect'>Connect Or Not</div>**\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/connect.png)\n\n\n[CLS]代表分类的结果，对于一个二分类任务就是可以或不可以连在一起（0，1），[SEP]是句子连接符。这个任务就是判断两个句子是否可以合在一起，通过[CLS]输出结果。\n\n***\n\n**<div id='comprehension'>Reading Comprehension</div>**\n\n\n比如说一篇文章里有这样一句话，Apples fall under gravity.那么问题可以就是What causes apples to fll? 答案为gravity。对于一篇文章，我们可以将整篇文章转换为向量表达，记为d1,d2,...,dn，同样的，问题可以记为q1,q2,...,qn，最终答案为qs,...,qe，答案是个序列，代表从哪开始，到哪结束。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/comprehension.png)\n\n\n这里需要额外训练两个辅助向量，因为答案我们需要始末位置，一个是开始，一个是结束。然后拿辅助向量与文章内容做内积，经过softmax得到最终概率，然后输出最相近的作为起始点，同样的得到结束点，然后答案就是始末位置卡住的地方。\n\n***\n**<div id='references'>参考文献</div>**\n\nhttps://arxiv.org/abs/1810.04805)\n\nhttps://www.bilibili.com/video/BV1NJ411o7u3?p=11\n"
  },
  {
    "path": "nlp/models/functions.py",
    "content": "import math\nfrom typing import Optional, Tuple, Any\nfrom typing import List, Optional, Tuple\nimport torch.nn as nn\nimport torch\nimport torch.nn.functional as F\nfrom torch.nn.parameter import Parameter\nfrom torch.nn.init import constant_, xavier_normal_\nfrom torch.nn.init import xavier_uniform_\nimport warnings\n\n\nTensor = torch.Tensor\ndef positional_encoding(X, num_features, dropout_p=0.0, max_len=512) -> Tensor:\n    r'''\n        给输入加入位置编码\n    参数：\n        - num_features: 输入进来的维度\n        - dropout_p: dropout的概率，当其为非零元素时执行dropout\n        - max_len: 句子的最大长度，默认512\n    \n    形状：\n        - 输入： [batch_size, seq_length, num_features]\n        - 输出： [batch_size, seq_length, num_features]\n\n    例子：\n        >>> X = torch.randn((2,4,10))\n        >>> X = positional_encoding(X, 10)\n        >>> print(X.shape)\n        >>> torch.Size([2, 4, 10])\n    '''\n\n    dropout = nn.Dropout(dropout_p)\n    P = torch.zeros((1,max_len,num_features))\n    X_ = torch.arange(max_len,dtype=torch.float32).reshape(-1,1) / torch.pow(\n        10000,\n        torch.arange(0,num_features,2,dtype=torch.float32) /num_features)\n    P[:,:,0::2] = torch.sin(X_)\n    P[:,:,1::2] = torch.cos(X_)\n    X = X + P[:,:X.shape[1],:].to(X.device)\n    return dropout(X)\n\ndef _in_projection_packed(\n    q: Tensor,\n    k: Tensor,\n    v: Tensor,\n    w: Tensor,\n    b: Optional[Tensor] = None,\n) -> List[Tensor]:\n    r\"\"\"\n    用一个大的权重参数矩阵进行线性变换\n\n    参数:\n        q, k, v: 对自注意来说，三者都是src；对于seq2seq模型，k和v是一致的tensor。\n                 但它们的最后一维(num_features或者叫做embed_dim)都必须保持一致。\n        w: 用以线性变换的大矩阵，按照q,k,v的顺序压在一个tensor里面。\n        b: 用以线性变换的偏置，按照q,k,v的顺序压在一个tensor里面。\n\n    形状:\n        输入:\n        - q: shape:`(..., E)`，E是词嵌入的维度（下面出现的E均为此意）。\n        - k: shape:`(..., E)`\n        - v: shape:`(..., E)`\n        - w: shape:`(E * 3, E)`\n        - b: shape:`E * 3` \n\n        输出:\n        - 输出列表 :`[q', k', v']`，q,k,v经过线性变换前后的形状都一致。\n    \"\"\"\n    E = q.size(-1)\n    # 若为自注意，则q = k = v = src，因此它们的引用变量都是src\n    # 即k is v和q is k结果均为True\n    # 若为seq2seq，k = v，因而k is v的结果是True\n    if k is v:\n        if q is k:\n            # 自注意\n            return nn.functional.linear(q, w, b).chunk(3, dim=-1)\n        else:\n            # seq2seq模型\n            w_q, w_kv = w.split([E, E * 2])\n            if b is None:\n                b_q = b_kv = None\n            else:\n                b_q, b_kv = b.split([E, E * 2])\n            return (nn.functional.linear(q, w_q, b_q),) + nn.functional.linear(k, w_kv, b_kv).chunk(2, dim=-1)\n    else:\n        w_q, w_k, w_v = w.chunk(3)\n        if b is None:\n            b_q = b_k = b_v = None\n        else:\n            b_q, b_k, b_v = b.chunk(3)\n        return nn.functional.linear(q, w_q, b_q), nn.functional.linear(k, w_k, b_k), nn.functional.linear(v, w_v, b_v)\n\ndef _scaled_dot_product_attention(\n    q: Tensor,\n    k: Tensor,\n    v: Tensor,\n    attn_mask: Optional[Tensor] = None,\n    dropout_p: float = 0.0,\n) -> Tuple[Tensor, Tensor]:\n    r'''\n    在query, key, value上计算点积注意力，若有注意力遮盖则使用，并且应用一个概率为dropout_p的dropout\n\n    参数：\n        - q: shape:`(B, Nt, E)` B代表batch size， Nt是目标语言序列长度，E是嵌入后的特征维度\n        - key: shape:`(B, Ns, E)` Ns是源语言序列长度\n        - value: shape:`(B, Ns, E)`与key形状一样\n        - attn_mask: 要么是3D的tensor，形状为:`(B, Nt, Ns)`或者2D的tensor，形状如:`(Nt, Ns)`\n\n        - Output: attention values: shape:`(B, Nt, E)`，与q的形状一致;attention weights: shape:`(B, Nt, Ns)`\n    \n    例子：\n        >>> q = torch.randn((2,3,6))\n        >>> k = torch.randn((2,4,6))\n        >>> v = torch.randn((2,4,6))\n        >>> out = scaled_dot_product_attention(q, k, v)\n        >>> out[0].shape, out[1].shape\n        >>> torch.Size([2, 3, 6]) torch.Size([2, 3, 4])\n    '''\n    B, Nt, E = q.shape\n    q = q / math.sqrt(E)\n    # (B, Nt, E) x (B, E, Ns) -> (B, Nt, Ns)\n    attn = torch.bmm(q, k.transpose(-2, -1))\n    if attn_mask is not None:\n        attn += attn_mask\n    # attn意味着目标序列的每个词对源语言序列做注意力\n    attn = nn.functional.softmax(attn, dim=-1)\n    if dropout_p > 0.0:\n        attn = nn.functional.dropout(attn, p=dropout_p)\n    # (B, Nt, Ns) x (B, Ns, E) -> (B, Nt, E)\n    output = torch.bmm(attn, v)\n    return output, attn\n\n\ndef multi_head_attention_forward(\n    query: Tensor,\n    key: Tensor,\n    value: Tensor,\n    num_heads: int,\n    in_proj_weight: Tensor,\n    in_proj_bias: Optional[Tensor],\n    dropout_p: float,\n    out_proj_weight: Tensor,\n    out_proj_bias: Optional[Tensor],\n    training: bool = True,\n    key_padding_mask: Optional[Tensor] = None,\n    need_weights: bool = True,\n    attn_mask: Optional[Tensor] = None,\n    use_separate_proj_weight: bool = False,\n    q_proj_weight: Optional[Tensor] = None,\n    k_proj_weight: Optional[Tensor] = None,\n    v_proj_weight: Optional[Tensor] = None,\n) -> Tuple[Tensor, Optional[Tensor]]:\n    r'''\n    形状：\n        输入：\n        - query：`(L, N, E)`\n        - key: `(S, N, E)`\n        - value: `(S, N, E)`\n        - key_padding_mask: `(N, S)`\n        - attn_mask: `(L, S)` or `(N * num_heads, L, S)`\n        输出：\n        - attn_output:`(L, N, E)`\n        - attn_output_weights:`(N, L, S)`\n    '''\n\n    tgt_len, bsz, embed_dim = query.shape\n    src_len, _, _ = key.shape\n    head_dim = embed_dim // num_heads\n    q, k, v = _in_projection_packed(query, key, value, in_proj_weight, in_proj_bias)\n\n    if attn_mask is not None:\n        if attn_mask.dtype == torch.uint8:\n            warnings.warn(\"Byte tensor for attn_mask in nn.MultiheadAttention is deprecated. Use bool tensor instead.\")\n            attn_mask = attn_mask.to(torch.bool)\n        else:\n            assert attn_mask.is_floating_point() or attn_mask.dtype == torch.bool, \\\n                f\"Only float, byte, and bool types are supported for attn_mask, not {attn_mask.dtype}\"\n\n        if attn_mask.dim() == 2:\n            correct_2d_size = (tgt_len, src_len)\n            if attn_mask.shape != correct_2d_size:\n                raise RuntimeError(f\"The shape of the 2D attn_mask is {attn_mask.shape}, but should be {correct_2d_size}.\")\n            attn_mask = attn_mask.unsqueeze(0)\n        elif attn_mask.dim() == 3:\n            correct_3d_size = (bsz * num_heads, tgt_len, src_len)\n            if attn_mask.shape != correct_3d_size:\n                raise RuntimeError(f\"The shape of the 3D attn_mask is {attn_mask.shape}, but should be {correct_3d_size}.\")\n        else:\n            raise RuntimeError(f\"attn_mask's dimension {attn_mask.dim()} is not supported\")\n\n    if key_padding_mask is not None and key_padding_mask.dtype == torch.uint8:\n        warnings.warn(\"Byte tensor for key_padding_mask in nn.MultiheadAttention is deprecated. Use bool tensor instead.\")\n        key_padding_mask = key_padding_mask.to(torch.bool)\n    \n    # reshape q,k,v将Batch放在第一维以适合点积注意力\n    # 同时为多头机制，将不同的头拼在一起组成一层\n    q = q.contiguous().view(tgt_len, bsz * num_heads, head_dim).transpose(0, 1)\n    k = k.contiguous().view(-1, bsz * num_heads, head_dim).transpose(0, 1)\n    v = v.contiguous().view(-1, bsz * num_heads, head_dim).transpose(0, 1)\n    if key_padding_mask is not None:\n        assert key_padding_mask.shape == (bsz, src_len), \\\n            f\"expecting key_padding_mask shape of {(bsz, src_len)}, but got {key_padding_mask.shape}\"\n        key_padding_mask = key_padding_mask.view(bsz, 1, 1, src_len).   \\\n            expand(-1, num_heads, -1, -1).reshape(bsz * num_heads, 1, src_len)\n        if attn_mask is None:\n            attn_mask = key_padding_mask\n        elif attn_mask.dtype == torch.bool:\n            attn_mask = attn_mask.logical_or(key_padding_mask)\n        else:\n            attn_mask = attn_mask.masked_fill(key_padding_mask, float(\"-inf\"))\n    # 若attn_mask值是布尔值，则将mask转换为float\n    if attn_mask is not None and attn_mask.dtype == torch.bool:\n        new_attn_mask = torch.zeros_like(attn_mask, dtype=torch.float)\n        new_attn_mask.masked_fill_(attn_mask, float(\"-inf\"))\n        attn_mask = new_attn_mask\n\n    # 若training为True时才应用dropout\n    if not training:\n        dropout_p = 0.0\n    attn_output, attn_output_weights = _scaled_dot_product_attention(q, k, v, attn_mask, dropout_p)\n    attn_output = attn_output.transpose(0, 1).contiguous().view(tgt_len, bsz, embed_dim)\n    attn_output = nn.functional.linear(attn_output, out_proj_weight, out_proj_bias)\n    if need_weights:\n        # average attention weights over heads\n        attn_output_weights = attn_output_weights.view(bsz, num_heads, tgt_len, src_len)\n        return attn_output, attn_output_weights.sum(dim=1) / num_heads\n    else:\n        return attn_output, None\n\n\n\nclass MultiheadAttention(nn.Module):\n    r'''\n    参数：\n        embed_dim: 词嵌入的维度\n        num_heads: 平行头的数量\n        batch_first: 若`True`，则为(batch, seq, feture)，若为`False`，则为(seq, batch, feature)\n    \n    例子：\n        >>> multihead_attn = nn.MultiheadAttention(embed_dim, num_heads)\n        >>> attn_output, attn_output_weights = multihead_attn(query, key, value)\n    '''\n    def __init__(self, embed_dim, num_heads, dropout=0., bias=True, kdim=None, vdim=None,\n                 batch_first=False) -> None:\n        super(MultiheadAttention, self).__init__()\n        self.embed_dim = embed_dim\n        self.kdim = kdim if kdim is not None else embed_dim\n        self.vdim = vdim if vdim is not None else embed_dim\n        self._qkv_same_embed_dim = self.kdim == embed_dim and self.vdim == embed_dim\n\n        self.num_heads = num_heads\n        self.dropout = dropout\n        self.batch_first = batch_first\n        self.head_dim = embed_dim // num_heads\n        assert self.head_dim * num_heads == self.embed_dim, \"embed_dim must be divisible by num_heads\"\n\n        if self._qkv_same_embed_dim is False:\n            self.q_proj_weight = Parameter(torch.empty((embed_dim, embed_dim)))\n            self.k_proj_weight = Parameter(torch.empty((embed_dim, self.kdim)))\n            self.v_proj_weight = Parameter(torch.empty((embed_dim, self.vdim)))\n            self.register_parameter('in_proj_weight', None)\n        else:\n            self.in_proj_weight = Parameter(torch.empty((3 * embed_dim, embed_dim)))\n            self.register_parameter('q_proj_weight', None)\n            self.register_parameter('k_proj_weight', None)\n            self.register_parameter('v_proj_weight', None)\n\n        if bias:\n            self.in_proj_bias = Parameter(torch.empty(3 * embed_dim))\n        else:\n            self.register_parameter('in_proj_bias', None)\n        self.out_proj = nn.Linear(embed_dim, embed_dim, bias=bias)\n        self._reset_parameters()\n\n    def _reset_parameters(self):\n        if self._qkv_same_embed_dim:\n            xavier_uniform_(self.in_proj_weight)\n        else:\n            xavier_uniform_(self.q_proj_weight)\n            xavier_uniform_(self.k_proj_weight)\n            xavier_uniform_(self.v_proj_weight)\n\n        if self.in_proj_bias is not None:\n            constant_(self.in_proj_bias, 0.)\n            constant_(self.out_proj.bias, 0.)\n\n    def forward(self, query: Tensor, key: Tensor, value: Tensor, key_padding_mask: Optional[Tensor] = None,\n                need_weights: bool = True, attn_mask: Optional[Tensor] = None) -> Tuple[Tensor, Optional[Tensor]]:\n        if self.batch_first:\n            query, key, value = [x.transpose(1, 0) for x in (query, key, value)]\n\n        if not self._qkv_same_embed_dim:\n            attn_output, attn_output_weights = multi_head_attention_forward(\n                query, key, value, self.num_heads,\n                self.in_proj_weight, self.in_proj_bias,\n                self.dropout, self.out_proj.weight, self.out_proj.bias,\n                key_padding_mask=key_padding_mask, need_weights=need_weights,\n                attn_mask=attn_mask, use_separate_proj_weight=True,\n                q_proj_weight=self.q_proj_weight, k_proj_weight=self.k_proj_weight,\n                v_proj_weight=self.v_proj_weight)\n        else:\n            attn_output, attn_output_weights = multi_head_attention_forward(\n                query, key, value,self.num_heads,\n                self.in_proj_weight, self.in_proj_bias,\n                self.dropout, self.out_proj.weight, self.out_proj.bias,\n                key_padding_mask=key_padding_mask, need_weights=need_weights,\n                attn_mask=attn_mask)\n        if self.batch_first:\n            return attn_output.transpose(1, 0), attn_output_weights\n        else:\n            return attn_output, attn_output_weights\n\n# src = torch.randn((2,4,100))\n# src = positional_encoding(src,100,0.1)\n# print(src.shape)\n# multihead_attn = MultiheadAttention(100, 4, 0.1)\n# attn_output, attn_output_weights = multihead_attn(src,src,src)\n# print(attn_output.shape, attn_output_weights.shape)\n\n\n\nclass TransformerEncoderLayer(nn.Module):\n    r'''\n    参数：\n        d_model: 词嵌入的维度\n        nhead: 多头注意力中平行头的数目\n        dim_feedforward: 全连接层的神经元的数目，又称经过此层输入的维度（Default = 2048）\n        dropout: dropout的概率\n        activation: 两个线性层中间的激活函数，默认relu或gelu\n        lay_norm_eps: layer normalization中的微小量，防止分母为0\n        batch_first: 若`True`，则为(batch, seq, feture)，若为`False`，则为(seq, batch, feature)\n\n    例子：\n        >>> encoder_layer = nn.TransformerEncoderLayer(d_model=512, nhead=8)\n        >>> src = torch.randn((32, 10, 512))\n        >>> out = encoder_layer(src)\n    '''\n\n    def __init__(self, d_model, nhead, dim_feedforward=2048, dropout=0.1, activation=F.relu,\n                 layer_norm_eps=1e-5, batch_first=False) -> None:\n        super(TransformerEncoderLayer, self).__init__()\n        self.self_attn = MultiheadAttention(d_model, nhead, dropout=dropout, batch_first=batch_first)\n        self.linear1 = nn.Linear(d_model, dim_feedforward)\n        self.dropout = nn.Dropout(dropout)\n        self.linear2 = nn.Linear(dim_feedforward, d_model)\n\n        self.activation = activation\n        self.norm1 = nn.LayerNorm(d_model, eps=layer_norm_eps)\n        self.norm2 = nn.LayerNorm(d_model, eps=layer_norm_eps)\n        self.dropout1 = nn.Dropout(dropout)\n        self.dropout2 = nn.Dropout(dropout)\n\n\n    def forward(self, src: Tensor, src_mask: Optional[Tensor] = None, src_key_padding_mask: Optional[Tensor] = None) -> Tensor:\n        src2 = self.self_attn(src, src, src, attn_mask=src_mask, \n        key_padding_mask=src_key_padding_mask)[0]\n        src = src + self.dropout1(src2)\n        src = self.norm1(src)\n        src2 = self.linear2(self.dropout(self.activation(self.linear1(src))))\n        src = src + self.dropout(src2)\n        src = self.norm2(src)\n        return src\n\n\n# encoder_layer = TransformerEncoderLayer(d_model=512, nhead=8)\n# src = torch.randn((32, 10, 512))\n# out = encoder_layer(src)\n# print(out.shape)\n# torch.Size([32, 10, 512])\n\nclass TransformerDecoderLayer(nn.Module):\n    r'''\n    参数：\n        d_model: 词嵌入的维度（必备）\n        nhead: 多头注意力中平行头的数目（必备）\n        dim_feedforward: 全连接层的神经元的数目，又称经过此层输入的维度（Default = 2048）\n        dropout: dropout的概率（Default = 0.1）\n        activation: 两个线性层中间的激活函数，默认relu或gelu\n        lay_norm_eps: layer normalization中的微小量，防止分母为0（Default = 1e-5）\n        batch_first: 若`True`，则为(batch, seq, feture)，若为`False`，则为(seq, batch, feature)（Default：False）\n    \n    例子：\n        >>> decoder_layer = nn.TransformerDecoderLayer(d_model=512, nhead=8)\n        >>> memory = torch.randn((10, 32, 512))\n        >>> tgt = torch.randn((20, 32, 512))\n        >>> out = decoder_layer(tgt, memory)\n    '''\n    def __init__(self, d_model, nhead, dim_feedforward=2048, dropout=0.1, activation=F.relu,\n                 layer_norm_eps=1e-5, batch_first=False) -> None:\n        super(TransformerDecoderLayer, self).__init__()\n        self.self_attn = MultiheadAttention(d_model, nhead, dropout=dropout, batch_first=batch_first)\n        self.multihead_attn = MultiheadAttention(d_model, nhead, dropout=dropout, batch_first=batch_first)\n\n        self.linear1 = nn.Linear(d_model, dim_feedforward)\n        self.dropout = nn.Dropout(dropout)\n        self.linear2 = nn.Linear(dim_feedforward, d_model)\n\n        self.norm1 = nn.LayerNorm(d_model, eps=layer_norm_eps)\n        self.norm2 = nn.LayerNorm(d_model, eps=layer_norm_eps)\n        self.norm3 = nn.LayerNorm(d_model, eps=layer_norm_eps)\n        self.dropout1 = nn.Dropout(dropout)\n        self.dropout2 = nn.Dropout(dropout)\n        self.dropout3 = nn.Dropout(dropout)\n\n        self.activation = activation\n\n    def forward(self, tgt: Tensor, memory: Tensor, tgt_mask: Optional[Tensor] = None, \n                memory_mask: Optional[Tensor] = None,tgt_key_padding_mask: Optional[Tensor] = None, memory_key_padding_mask: Optional[Tensor] = None) -> Tensor:\n        r'''\n        参数：\n            tgt: 目标语言序列（必备）\n            memory: 从最后一个encoder_layer跑出的句子（必备）\n            tgt_mask: 目标语言序列的mask（可选）\n            memory_mask（可选）\n            tgt_key_padding_mask（可选）\n            memory_key_padding_mask（可选）\n        '''\n        tgt2 = self.self_attn(tgt, tgt, tgt, attn_mask=tgt_mask,\n                              key_padding_mask=tgt_key_padding_mask)[0]\n        tgt = tgt + self.dropout1(tgt2)\n        tgt = self.norm1(tgt)\n        tgt2 = self.multihead_attn(tgt, memory, memory, attn_mask=memory_mask,\n                                   key_padding_mask=memory_key_padding_mask)[0]\n        tgt = tgt + self.dropout2(tgt2)\n        tgt = self.norm2(tgt)\n        tgt2 = self.linear2(self.dropout(self.activation(self.linear1(tgt))))\n        tgt = tgt + self.dropout3(tgt2)\n        tgt = self.norm3(tgt)\n        return tgt\n\n\n# decoder_layer = nn.TransformerDecoderLayer(d_model=512, nhead=8)\n# memory = torch.randn((10, 32, 512))\n# tgt = torch.randn((20, 32, 512))\n# out = decoder_layer(tgt, memory)\n# print(out.shape)\n# torch.Size([20, 32, 512])\n\n\nclass TransformerEncoder(nn.Module):\n    r'''\n    参数：\n        encoder_layer\n        num_layers： encoder_layer的层数\n        norm: 归一化的选择\n    \n    例子：\n        >>> encoder_layer = nn.TransformerEncoderLayer(d_model=512, nhead=8)\n        >>> transformer_encoder = nn.TransformerEncoder(encoder_layer, num_layers=6)\n        >>> src = torch.randn((10, 32, 512))\n        >>> out = transformer_encoder(src)\n    '''\n\n    def __init__(self, encoder_layer, num_layers, norm=None):\n        super(TransformerEncoder, self).__init__()\n        self.layer = encoder_layer\n        self.num_layers = num_layers\n        self.norm = norm\n    \n    def forward(self, src: Tensor, mask: Optional[Tensor] = None, src_key_padding_mask: Optional[Tensor] = None) -> Tensor:\n        output = positional_encoding(src, src.shape[-1])\n        for _ in range(self.num_layers):\n            output = self.layer(output, src_mask=mask, src_key_padding_mask=src_key_padding_mask)\n        \n        if self.norm is not None:\n            output = self.norm(output)\n        \n        return output\n\n# encoder_layer = TransformerEncoderLayer(d_model=512, nhead=8)\n# transformer_encoder = nn.TransformerEncoder(encoder_layer, num_layers=6)\n# src = torch.randn((10, 32, 512))\n# out = transformer_encoder(src)\n# print(out.shape)\n\nclass TransformerDecoder(nn.Module):\n    r'''\n    参数：\n        decoder_layer（必备）\n        num_layers: decoder_layer的层数（必备）\n        norm: 归一化选择\n    \n    例子：\n        >>> decoder_layer =TransformerDecoderLayer(d_model=512, nhead=8)\n        >>> transformer_decoder = TransformerDecoder(decoder_layer, num_layers=6)\n        >>> memory = torch.rand(10, 32, 512)\n        >>> tgt = torch.rand(20, 32, 512)\n        >>> out = transformer_decoder(tgt, memory)\n    '''\n    def __init__(self, decoder_layer, num_layers, norm=None):\n        super(TransformerDecoder, self).__init__()\n        self.layer = decoder_layer\n        self.num_layers = num_layers\n        self.norm = norm\n    \n    def forward(self, tgt: Tensor, memory: Tensor, tgt_mask: Optional[Tensor] = None,\n                memory_mask: Optional[Tensor] = None, tgt_key_padding_mask: Optional[Tensor] = None,\n                memory_key_padding_mask: Optional[Tensor] = None) -> Tensor:\n        output = tgt\n        for _ in range(self.num_layers):\n            output = self.layer(output, memory, tgt_mask=tgt_mask,\n                         memory_mask=memory_mask,\n                         tgt_key_padding_mask=tgt_key_padding_mask,\n                         memory_key_padding_mask=memory_key_padding_mask)\n        if self.norm is not None:\n            output = self.norm(output)\n\n        return output\n\n# decoder_layer =TransformerDecoderLayer(d_model=512, nhead=8)\n# transformer_decoder = TransformerDecoder(decoder_layer, num_layers=6)\n# memory = torch.rand(10, 32, 512)\n# tgt = torch.rand(20, 32, 512)\n# out = transformer_decoder(tgt, memory)\n# print(out.shape)\n# torch.Size([20, 32, 512])\n\nclass Transformer(nn.Module):\n    r'''\n    参数：\n        d_model: 词嵌入的维度（必备）（Default=512）\n        nhead: 多头注意力中平行头的数目（必备）（Default=8）\n        num_encoder_layers:编码层层数（Default=8）\n        num_decoder_layers:解码层层数（Default=8）\n        dim_feedforward: 全连接层的神经元的数目，又称经过此层输入的维度（Default = 2048）\n        dropout: dropout的概率（Default = 0.1）\n        activation: 两个线性层中间的激活函数，默认relu或gelu\n        custom_encoder: 自定义encoder（Default=None）\n        custom_decoder: 自定义decoder（Default=None）\n        lay_norm_eps: layer normalization中的微小量，防止分母为0（Default = 1e-5）\n        batch_first: 若`True`，则为(batch, seq, feture)，若为`False`，则为(seq, batch, feature)（Default：False）\n    \n    例子：\n        >>> transformer_model = Transformer(nhead=16, num_encoder_layers=12)\n        >>> src = torch.rand((10, 32, 512))\n        >>> tgt = torch.rand((20, 32, 512))\n        >>> out = transformer_model(src, tgt)\n    '''\n    def __init__(self, d_model: int = 512, nhead: int = 8, num_encoder_layers: int = 6,\n                 num_decoder_layers: int = 6, dim_feedforward: int = 2048, dropout: float = 0.1,\n                 activation = F.relu, custom_encoder: Optional[Any] = None, custom_decoder: Optional[Any] = None,\n                 layer_norm_eps: float = 1e-5, batch_first: bool = False) -> None:\n        super(Transformer, self).__init__()\n        if custom_encoder is not None:\n            self.encoder = custom_encoder\n        else:\n            encoder_layer = TransformerEncoderLayer(d_model, nhead, dim_feedforward, dropout,\n                                                    activation, layer_norm_eps, batch_first)\n            encoder_norm = nn.LayerNorm(d_model, eps=layer_norm_eps)\n            self.encoder = TransformerEncoder(encoder_layer, num_encoder_layers)\n\n        if custom_decoder is not None:\n            self.decoder = custom_decoder\n        else:\n            decoder_layer = TransformerDecoderLayer(d_model, nhead, dim_feedforward, dropout,\n                                                    activation, layer_norm_eps, batch_first)\n            decoder_norm = nn.LayerNorm(d_model, eps=layer_norm_eps)\n            self.decoder = TransformerDecoder(decoder_layer, num_decoder_layers, decoder_norm)\n\n        self._reset_parameters()\n\n        self.d_model = d_model\n        self.nhead = nhead\n\n        self.batch_first = batch_first\n\n    def forward(self, src: Tensor, tgt: Tensor, src_mask: Optional[Tensor] = None, tgt_mask: Optional[Tensor] = None,\n                memory_mask: Optional[Tensor] = None, src_key_padding_mask: Optional[Tensor] = None,\n                tgt_key_padding_mask: Optional[Tensor] = None, memory_key_padding_mask: Optional[Tensor] = None) -> Tensor:\n        r'''\n        参数：\n            src: 源语言序列（送入Encoder）（必备）\n            tgt: 目标语言序列（送入Decoder）（必备）\n            src_mask: （可选)\n            tgt_mask: （可选）\n            memory_mask: （可选）\n            src_key_padding_mask: （可选）\n            tgt_key_padding_mask: （可选）\n            memory_key_padding_mask: （可选）\n        \n        形状：\n            - src: shape:`(S, N, E)`, `(N, S, E)` if batch_first.\n            - tgt: shape:`(T, N, E)`, `(N, T, E)` if batch_first.\n            - src_mask: shape:`(S, S)`.\n            - tgt_mask: shape:`(T, T)`.\n            - memory_mask: shape:`(T, S)`.\n            - src_key_padding_mask: shape:`(N, S)`.\n            - tgt_key_padding_mask: shape:`(N, T)`.\n            - memory_key_padding_mask: shape:`(N, S)`.\n\n            [src/tgt/memory]_mask确保有些位置不被看到，如做decode的时候，只能看该位置及其以前的，而不能看后面的。\n            若为ByteTensor，非0的位置会被忽略不做注意力；若为BoolTensor，True对应的位置会被忽略；\n            若为数值，则会直接加到attn_weights\n\n            [src/tgt/memory]_key_padding_mask 使得key里面的某些元素不参与attention计算，三种情况同上\n\n            - output: shape:`(T, N, E)`, `(N, T, E)` if batch_first.\n\n        注意：\n            src和tgt的最后一维需要等于d_model，batch的那一维需要相等\n            \n        例子:\n            >>> output = transformer_model(src, tgt, src_mask=src_mask, tgt_mask=tgt_mask)\n        '''\n        memory = self.encoder(src, mask=src_mask, src_key_padding_mask=src_key_padding_mask)\n        output = self.decoder(tgt, memory, tgt_mask=tgt_mask, memory_mask=memory_mask,\n                              tgt_key_padding_mask=tgt_key_padding_mask,\n                              memory_key_padding_mask=memory_key_padding_mask)\n        return output\n        \n    def generate_square_subsequent_mask(self, sz: int) -> Tensor:\n        r'''产生关于序列的mask，被遮住的区域赋值`-inf`，未被遮住的区域赋值为`0`'''\n        mask = (torch.triu(torch.ones(sz, sz)) == 1).transpose(0, 1)\n        mask = mask.float().masked_fill(mask == 0, float('-inf')).masked_fill(mask == 1, float(0.0))\n        return mask\n\n    def _reset_parameters(self):\n        r'''用正态分布初始化参数'''\n        for p in self.parameters():\n            if p.dim() > 1:\n                xavier_uniform_(p)\n\n\ntransformer_model = Transformer(nhead=16, num_encoder_layers=12)\nsrc = torch.rand((10, 32, 512))\ntgt = torch.rand((20, 32, 512))\nout = transformer_model(src, tgt)\nprint(out.shape)\n# torch.Size([20, 32, 512])"
  },
  {
    "path": "nlp/models/transformer.md",
    "content": "\n### Transformer\n\n**章节**\n- [Reasons](#reasons)\n- [Self-Attention](#self_attention)\n    - [Multi-Head Attention](#multi)\n- [Positional Encoding](#positional)\n- [Add & Norm](#add)\n- [Feed Forward](#feed)\n- [Residual Dropout](#drop)\n- [Encoder To Decoder](#etd)\n- [Shared Weights](#share)\n- [Effect](#effect)\n- [References](#references)\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/transformer.png)\n\n\n**<div id='reasons'>Reasons For Transformer</div>**\n\n新模型的产生往往是为了旧模型的问题所设计的。那么，原始模型的问题有哪些呢？\n\n**1、无法并行运算**\n\n在transformer之前，大部分应该都是[RNN](https://en.wikipedia.org/wiki/Recurrent_neural_network)，下面简单介绍一下RNN\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/RNN.png)\n\n\n可以看出，在计算X2加进去吐出来的值的时候必须要先把X1得出的参数值与X2放在一起才行。换句话说，RNN的计算是必须**一个接一个**，并不存在并行运算。如果不能并行运算，那么时间和计算成本均会增加。\n\n**2、语义表述不清**\n\n传统的[word2vec](https://en.wikipedia.org/wiki/Word2vec)通过将词语转换为坐标形式，并且根据**距离之远近决定两个词意思的相近程度。** 但是在NLP任务中，尽管是同一个词语，但在不同语境下代表的意思很有可能不同。例如，你今天方便的时候，来我家吃饭吧和我肚子不舒服，去厕所方便一下这两句中方便的意思肯定不一样。可是，word2vec处理之后坐标形式就固定了。\n\n**3、突出对待**\n\n在一个句子中，当我们需要强调某一个部分的时候，word2vec无法为我们做到这些。比如，\n\nThe cat doesn't eat the cake because it is not hungry.\n\nThe cat doesn't eat the cake because it smells bad.\n\n第一个句子中it强调的是the cat，在第二个句子中it强调的是the cake。\n\n\n**4、长距离信息缺失**\n\n尽管RNN处理序列问题很拿手，但如果一个句子很长，那么我要一直把句首的信息携带到句尾，距离越长，信息缺失的可能性就会变大。\n\n***\n**<div id='self_attention'>Self-Attention</div>**\n\nattention的意思是我们给有意义的内容配以较高的权重，那么自己与自己做attention是什么意思？\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/self_attention.png)\n\n比如这个句中的\"green\"，self的意思就是说拿这个词与整个句子其他的词语分别算相似程度。如此便考虑了词与上下文和句子整体之间的关系。当然，自己与自己肯定是联系最紧密。我们的目的是让机器能够判定出某个词语与整个句子之间的关系。\n\n那么，如何计算self-attenion呢？\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/qkv.png)\n\n\n首先将词编码成向量，总不大可能直接将词输进去。其次定义三个矩阵，W^Q,W^K,W^V这三个矩阵分别代表了Query,Key,Value，分别代表去查询的，被查询的以及实际的特征信息。W的意思是权重的意思，可以类比于梯度下降，权重一般都是初始化一个参数，然后通过训练得出。最后用词向量与矩阵分别做**点积**即可得到q1,q2,k1,k2,v1,v2。\n\n用q1,q2分别与k1,k2的转置做**点积**，q代表的要查的，而k是被查的。如此便可得到两者的关系了。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/qkv_2.png)\n\n注意力一共分为[additive attention](https://paperswithcode.com/method/additive-attention)和这里提到的dot product attention，那么为什么偏要用后者而非前者呢？\n\n因为内积在实际中可以用高度优化矩阵运算，所以更快，同时空间利用率也很好。在此，简要解释一下内积可以表示两向量关系的原因，在坐标系中，当两个向量垂直时，其关系最小，为0。其实就是cos为0。假如a1,a2两个向量很接近，那么，它们之间的夹角会很小，可知cos就很大，代表联系就越紧密。\n\n在K的维度很小的时候，两种注意力机制几乎一致，但是当K的维度上升之后，发现内积效果开始变差。其实，可以联系一下Softmax图像，当值变得很大的时候，梯度变化量几乎很难观察到，又被称为**梯度消失**问题，这是为什么做scale的第一个原因。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/values.png)\n\n在论文中提到\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/paper_1.png)\n\n两者做点积之后还需要除以矩阵K的维度开根号，Q，K，V矩阵维度是q x d_k，p x d_k，p x d_v，softmax是沿着p维进行的，但是很多时候大方差会导致数值分布不均匀，经过softmax之后就会大的愈大，小的愈小，这里除以一个矩阵K的维度其实类似于一个归一化，让它的**方差趋向于1，分布均匀一点**，这是第二个原因，所以在原paper里面又叫做**Scaled Dot-Product Attention**。\n\n那为什么除以一个矩阵K的维度开根号能使方差变为1呢？首先对于随机分布的q，k，方差均为1，期望均为0。我们把特定的一个q_i,k_i看成X，Y。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/scaled.png)\n\n\n那么q与k做点积之后的结果均值为0，方差为d_k。方差太大不稳定，所以除以矩阵K的维度开根号，参照链接(https://www.zhihu.com/question/339723385) 。\n\n\n例如 v = 0.36v1 + 0.64v2，v1,v2是矩阵V里的。\n\n既然都是矩阵运算，那么都是可以**并行加速**的。\n\nself-attention除了可以捕获到句子语法特征外，还可以在长序列中捕获各个部分的**依赖关系**，而同样的处理用RNN和LSTM需要进行按照次序运算，迭代几次之后才有可能得到信息，而且距离越远，可能捕获到的可能性就越小。而self-attention极大程度上缩小了距离，更有利于利用特征。\n\n***\n**<div id='multi'>Multi-head Attention</div>**\n\n理解了自注意力，那么什么是多头注意力呢？\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/cnn.png)\n\n\n类比一下[CNN](../NN/CNN/cnn.md)，当我们不断提取特征的时候会用到一个叫卷积核的东西（filter），我们为了最大化提取有效特征，通常选择**一组卷积核**来提取，因为不同的卷积核对图片的不同区域的注意力不同。\n比如，我们要识别一张鸟的图片，可能第一个卷积核更关注鸟嘴，第二个卷积核更关注鸟翅膀等等。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/qkv_4.png)\n\n在Transformer中也是如此，不同的Q，K，V矩阵得出的特征关系也不相同，同样，不一定一组Q，K，V提取到的关系能解决问题，所以保险起见，我们用多组。这里可以把一组Q，K，V矩阵类比为一个卷积核，最后再通过全连接层进行拼接降维。红线和绿线分别代表了两个不同的头在做自注意力时的情况，这里谷歌特地选了大不相同的两个头，其实在实践中，不同头的大部分关照的对象还是一样的，只有小部分不同，这也为后面为多头注意力减头提供了灵感。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/qkv_3.png)\n\n\n****\n**<div id='positional'>Positional Encoding</div>**\n\n为什么要进行位置编码呢？\n\n我上面阐述的注意力机制是不是只说了某个词与它所处的句子之间的关系，但是在实际自然语言处理中，只知道这个词与句子的关系而不知道它在哪个位置是不行的。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/position.png)\n\n为什么用正余弦呢？因为这样的话，![](http://latex.codecogs.com/svg.latex?sin(x+k),cos(x+k))都可以被两者表示出来\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/_.png)\n\n那么，既然有了公式，那位置编码是算出来的还是学出来的呢？其实算出来和学出来的效果差不多，但是考虑到算出来的可以接受更长的序列长度而不必受训练的干扰，所以在这个模型中，位置编码是通过公式算出来的。\n\n这里用Toy Example来揭示位置编码的美妙之处：\n\n假如我们现在有一个序列：\"I love nlp.\"，词典里有且仅有这三个词，且均按照顺序排列。一开始是找词典索引，那么结果变为：[0, 1, 2]（这里不算上batch），这个进入模型得经过一个词嵌入层，不妨假设每一个词用3维向量表示（公式里对应于![](http://latex.codecogs.com/svg.latex?d_{model})），那么结果变为：\n```python\ntensor([[ 0.4924,  0.3564,  0.4850],\n        [ 1.0244, -0.0162, -0.0017],\n        [ 0.6738,  0.7967,  0.6629]])\n```\n在这个3 x 3 的矩阵里，每一行代表一个词，对于改变后的序列，每一个词的位置（pos）分别为0, 1, 2。那么，公式的i则代表被嵌入的维度的索引，这里每一个词被嵌入到3维，拿字母\"I\"来说，第一行的每一个数分别对应于i = 0, 1, 2，这便是公式里的变量的意义。\n\n接下来一步一步推演，首先我们假设公式里把2i去掉，这里换另一个比较长的序列，拿出第1，2，6，7个词，每个词用5维的向量表示，![](http://latex.codecogs.com/svg.latex?p_i)代表一个词\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/begin.png)\n\n正弦图像是具有周期性的，不巧的话就会出现不同的位置是一个值，真是那样的话，位置编码的意义就失去了，如何让不同词之间分开是位置编码的目的，接下来引入i，依照公式，只有i为偶数才为正弦图，引入i之后代表进一步细分，不止是按照一个一个词来分，而是按照词和词嵌入的特征来分，其实可以想想，人其实大多数情况的行为举止都是差不多的，细分才能看出不同，这里用了![](http://latex.codecogs.com/svg.latex?p_0)和![](http://latex.codecogs.com/svg.latex?p_6) 第1，3，5个特征：\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/second.png)\n\n不难发现，不仅不同词之间分开了，同一个词不同的特征之间也能区分出来\n\n当两个参数都变得很大的时候，又会发生什么呢？\n\ntransformer默认的词嵌入维度是512，这里举个特例，假如句子很长，以第101个词为例\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/special.png)\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/sin.png)\n\n显然，前期有大量特征会出现重合，且会出现较高频率变换，后期几乎趋于一致（奇数情况也如此），我们其实可以猜想出后面的其实几乎不带有位置信息，下图为奇偶混合的情况，可以看出有很多重合，当i较大时，两者都不带任何信息\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/mix.png)\n\n下图为小demo的位置编码的可视化结果\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/positional_encoding.png)\n\n深度是一个词的特征维度，Position代表的是哪一个词，可以看出，当i较小时，特征之间重合较大，而且离得近的位置之间特征变化很快，当i大到一定程度，几乎没有任何区别\n\n对于上述现象，我的猜想是当词与词之间离得很近时（pos差得小）或者对于一个词不同特征来说，携带信息相同其实是符合逻辑的。在word2vec里面，如果两个词意相同，转换为坐标空间内的向量就会离得近（对应于一个词不同特征），有时候，一个句子之间离得近的词可能有关联效果，如\"I love reading books.\"，reading和books它们一起出现的概率是较大的（对应于离得近的词）。\n\n位置编码是加上去的，为什么不拼接上去呢？\n\n拼接的话会扩大参数空间，占用内存增加，而且不易拟合，而且其实没有证据表明拼接就比加来的好\n\n***\n\n**<div id='add'>Add & Norm</div>**\n\nAdd 的意思是残差相连，思路来源于论文[Deep residual learning for image recognition](https://openaccess.thecvf.com/content_cvpr_2016/html/He_Deep_Residual_Learning_CVPR_2016_paper.html)，Norm指的是Layer Normalization，来源于论文[Layer normalization](https://arxiv.org/abs/1607.06450)。\n\n论文中指出\n> That is, the output of each sub-layer is\nLayerNorm(x + Sublayer(x)), where Sublayer(x) is the function implemented by the sub-layer\nitself\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/add.jpg)\n\n\n意思是上一层的输入和输出结果相拼接，然后进行归一化，这样可以更加稳定。肯定会有读者好奇为什么不直接将输出结果归一化，偏要把输入结果拼接到输出结果然后再归一化。\n\n如果还有读者不明白Backprogation，建议看[BP](https://github.com/sherlcok314159/ML/blob/main/NN/bp.md)，这里简要说明一下，求后向传播的过程中，设残差相连之后输入的层为L层，那么，肯定要求这一层对残差相连的时候的偏导数，而这时x是作为自变量的，所以对于F(x)+ x，求偏导后x就会变为1，那么无论什么时候都会加上这个常数1，这样会一定程度上缓解梯度消失这个问题。\n\n这里选取的是层归一化（Layer Normalization），用CNN举例，假如我们的输入是![](http://latex.codecogs.com/svg.latex?[N,C,H,W])，分别代表样本数量（每一个神经元对应着一个样本），通道数，高度和宽度，那么LN就是对于单独的每一个样本做归一化，计算![](http://latex.codecogs.com/svg.latex?C*H*W)个值的均值和标准差然后应用到这个样本里面。\n\n归一化的公式如下：\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/ln.png)\n\n\n***\n\n**<div id='feed'>Feed Forward</div>**\n\nFeed-Forward Network究竟做了啥呢？\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/FFN_2.png)\n\n首先它会引入[RELU](../NN/activation.md)进行非线性变化，也就是公式前半部分所为，而且经过这一层之后会被升维，之后把这一层的结果连接到下一层进行线性变化，同时进行降维，保证输入输出维度一致。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/FFN.png)\n\n***\n**<div id='drop'>Residual Dropout</div>**\n\n在此模型中还在输入，输出层和位置编码拼接中采用了dropout，这里的比例是0.1。\n\n***\n**<div id='etd'>Encoder To Decoder</div>**\n\n接下来要把左侧的编码器和右侧的解码器进行相连，细心观察图会发现只有两个箭头到了右边，这两个箭头代表的是K，V矩阵，Q矩阵由右侧解码器提供。\n\n另外，解码器会**MASK**掉序列的某些部分，因为如果要判断机器是否真正理解了整段句子的意思，可以把后面遮掉，它如果猜的出来，那么说明机器理解了。具体来说，对于位置i，通常会将i+1后面的全都**MASK**掉，这样机器就是从前面学到的，它没有提前看到后面的结果。\n\n\n其他结构与编码器一致，最后再进行线性变化，最终用softmax映射成概率。\n***\n**<div id='share'>Shared Weights</div>**\n\n我们需要把输入和输出转换为向量表示，而向量表示的方法是提前学到的。此外，最后用的线性转换以及softmax都是学出来的。和常规的序列模型一致，输入输出以及线性转换用的权重矩阵是共享的，只不过在输入输出层用的时候乘以模型维度开根号。\n***\n**<div id='effect'>Effect</div>**\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/effect.png)\n\n一般来说，维度d肯定比序列长度n大很多，所以每一层的复杂度此模型吊打RNN。模型结果对比没多说的，几乎是碾压式的。\n\n***\n**<div id='references'>References</div>**\n\nhttps://arxiv.org/abs/1706.03762\n\nhttps://kazemnejad.com/blog/transformer_architecture_positional_encoding/\n\nhttps://www.youtube.com/watch?v=dichIcUZfOw&t=3s"
  },
  {
    "path": "nlp/models/transformer_.md",
    "content": "\n### Transformer源代码解释之PyTorch篇\n\n**章节**\n\n- [词嵌入](#embed)\n- [位置编码](#pos)\n- [多头注意力](#multihead)\n- [搭建Transformer](#build)\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/transformer.png)\n\n**<div id='embed'>词嵌入</div>**\n\nTransformer本质上是一种Encoder，以翻译任务为例，原始数据集是以两种语言组成一行的，在应用时，应是Encoder输入源语言序列，Decoder里面输入需要被转换的语言序列（训练时）。一个文本常有许多序列组成，常见操作为将序列进行一些预处理（如词切分等）变成列表，一个序列的列表的元素通常为词表中不可切分的最小词，整个文本就是一个大列表，元素为一个一个由序列组成的列表。如一个序列经过切分后变为[\"am\", \"##ro\", \"##zi\", \"accused\", \"his\", \"father\"]，接下来按照它们在词表中对应的索引进行转换，假设结果如[23, 94, 13, 41, 27, 96]。假如整个文本一共100个句子，那么就有100个列表为它的元素，因为每个序列的长度不一，需要设定最大长度，这里不妨设为128，那么将整个文本转换为数组之后，形状即为100 x 128，这就对应着batch_size和seq_length。\n\n输入之后，紧接着进行词嵌入处理，词嵌入就是将每一个词用预先训练好的向量进行映射，参数为词表的大小和被映射的向量的维度，通俗来说就是向量里面有多少个数。注意，第一个参数是词表的大小，如果你目前有4个词，就填4，你后面万一进入与这4个词不同的词，还需要重新映射，为了统一，一开始的也要重新映射，因此这里填词表总大小。假如我们打算映射到512维（num_features或者embed_dim），那么，整个文本的形状变为100 x 128 x 512。接下来举个小例子解释一下：假设我们词表一共有10个词，文本里有2个句子，每个句子有4个词，我们想要把每个词映射到8维的向量。于是2，4，8对应于batch_size, seq_length, embed_dim（如果batch在第一维的话）。\n\n另外，一般深度学习任务只改变num_features，所以讲维度一般是针对最后特征所在的维度。\n\n所有需要的包的导入：\n```python\nimport torch\nimport torch.nn as nn\nfrom torch.nn.parameter import Parameter\nfrom torch.nn.init import xavier_uniform_\nfrom torch.nn.init import constant_\nfrom torch.nn.init import xavier_normal_\nimport torch.nn.functional as F\nfrom typing import Optional, Tuple, Any\nfrom typing import List, Optional, Tuple\nimport math\nimport warnings\n```\n\n```python\nX = torch.zeros((2,4),dtype=torch.long)\nembed = nn.Embedding(10,8)\nprint(embed(X).shape)\n# torch.Size([2, 4, 8])\n```\n\n***\n\n**<div id='pos'>位置编码</div>**\n\n词嵌入之后紧接着就是位置编码，位置编码用以区分不同词以及同词不同特征之间的关系。代码中需要注意：X_只是初始化的矩阵，并不是输入进来的；完成位置编码之后会加一个dropout。另外，位置编码是最后加上去的，因此输入输出形状不变。\n\n```python\nTensor = torch.Tensor\ndef positional_encoding(X, num_features, dropout_p=0.1, max_len=512) -> Tensor:\n    r'''\n        给输入加入位置编码\n    参数：\n        - num_features: 输入进来的维度\n        - dropout_p: dropout的概率，当其为非零时执行dropout\n        - max_len: 句子的最大长度，默认512\n    \n    形状：\n        - 输入： [batch_size, seq_length, num_features]\n        - 输出： [batch_size, seq_length, num_features]\n\n    例子：\n        >>> X = torch.randn((2,4,10))\n        >>> X = positional_encoding(X, 10)\n        >>> print(X.shape)\n        >>> torch.Size([2, 4, 10])\n    '''\n\n    dropout = nn.Dropout(dropout_p)\n    P = torch.zeros((1,max_len,num_features))\n    X_ = torch.arange(max_len,dtype=torch.float32).reshape(-1,1) / torch.pow(\n        10000,\n        torch.arange(0,num_features,2,dtype=torch.float32) /num_features)\n    P[:,:,0::2] = torch.sin(X_)\n    P[:,:,1::2] = torch.cos(X_)\n    X = X + P[:,:X.shape[1],:].to(X.device)\n    return dropout(X)\n```\n***\n\n**<div id='multihead'>多头注意力</div>**\n\n多头注意力大概分为三个部分讲，分别为参数初始化，q,k,v从何来，遮挡机制，点积注意力\n\n- 初始化参数\n\nquery，key，value是源语言序列（本文记为src）乘以对应的矩阵得到的，那么，那些矩阵从何而来（注意，因为大部分代码都是从源码中抽离出来的，因而常带有self等，最后会呈现组成好的，而行文过程中不会将整个结构呈现出来）：\n\n```python\nif self._qkv_same_embed_dim is False:\n    # 初始化前后形状维持不变\n    # (seq_length x embed_dim) x (embed_dim x embed_dim) ==> (seq_length x embed_dim)\n    self.q_proj_weight = Parameter(torch.empty((embed_dim, embed_dim)))\n    self.k_proj_weight = Parameter(torch.empty((embed_dim, self.kdim)))\n    self.v_proj_weight = Parameter(torch.empty((embed_dim, self.vdim)))\n    self.register_parameter('in_proj_weight', None)\nelse:\n    self.in_proj_weight = Parameter(torch.empty((3 * embed_dim, embed_dim)))\n    self.register_parameter('q_proj_weight', None)\n    self.register_parameter('k_proj_weight', None)\n    self.register_parameter('v_proj_weight', None)\n\nif bias:\n    self.in_proj_bias = Parameter(torch.empty(3 * embed_dim))\nelse:\n    self.register_parameter('in_proj_bias', None)\n# 后期会将所有头的注意力拼接在一起然后乘上权重矩阵输出\n# out_proj是为了后期准备的\nself.out_proj = nn.Linear(embed_dim, embed_dim, bias=bias)\nself._reset_parameters()\n```\n\ntorch.empty是按照所给的形状形成对应的tensor，特点是填充的值还未初始化，类比torch.randn（标准正态分布），这就是一种初始化的方式。在PyTorch中，变量类型是tensor的话是无法修改值的，而Parameter()函数可以看作为一种类型转变函数，将不可改值的tensor转换为可训练可修改的模型参数，即与model.parameters绑定在一起，register_parameter的意思是是否将这个参数放到model.parameters，None的意思是没有这个参数。\n\n这里有个if判断，用以判断q,k,v的最后一维是否一致，若一致，则一个大的权重矩阵全部乘然后分割出来，若不是，则各初始化各的，其实初始化是不会改变原来的形状的（如![](http://latex.codecogs.com/svg.latex?q=qW_q+b_q)，见注释）。\n\n可以发现最后有一个_reset_parameters()函数，这个是用来初始化参数数值的。xavier_uniform意思是从[连续型均匀分布](https://zh.wikipedia.org/wiki/%E9%80%A3%E7%BA%8C%E5%9E%8B%E5%9D%87%E5%8B%BB%E5%88%86%E5%B8%83)里面随机取样出值来作为初始化的值，xavier_normal_取样的分布是正态分布。正因为初始化值在训练神经网络的时候很重要，所以才需要这两个函数。\n\nconstant_意思是用所给值来填充输入的向量。\n\n另外，在PyTorch的源码里，似乎projection代表是一种线性变换的意思，in_proj_bias的意思就是一开始的线性变换的偏置\n\n```python\ndef _reset_parameters(self):\n    if self._qkv_same_embed_dim:\n        xavier_uniform_(self.in_proj_weight)\n    else:\n        xavier_uniform_(self.q_proj_weight)\n        xavier_uniform_(self.k_proj_weight)\n        xavier_uniform_(self.v_proj_weight)\n    if self.in_proj_bias is not None:\n        constant_(self.in_proj_bias, 0.)\n        constant_(self.out_proj.bias, 0.)\n\n```\n以上便是参数初始化过程，接下来是进行query,key和value的赋值\n\n***\n- q,k,v从何来？\n\n对于`nn.functional.linear`函数，其实就是一个线性变换，与`nn.Linear`不同的是，前者可以提供权重矩阵和偏置，执行![](http://latex.codecogs.com/svg.latex?y=xW^T+b)，而后者是可以自由决定输出的维度，因为linear函数多层调用且无太大意义，这里省略。\n\n```python\ndef _in_projection_packed(\n    q: Tensor,\n    k: Tensor,\n    v: Tensor,\n    w: Tensor,\n    b: Optional[Tensor] = None,\n) -> List[Tensor]:\n    r\"\"\"\n    用一个大的权重参数矩阵进行线性变换\n\n    参数:\n        q, k, v: 对自注意来说，三者都是src；对于seq2seq模型，k和v是一致的tensor。\n                 但它们的最后一维(num_features或者叫做embed_dim)都必须保持一致。\n        w: 用以线性变换的大矩阵，按照q,k,v的顺序压在一个tensor里面。\n        b: 用以线性变换的偏置，按照q,k,v的顺序压在一个tensor里面。\n\n    形状:\n        输入:\n        - q: shape:`(..., E)`，E是词嵌入的维度（下面出现的E均为此意）。\n        - k: shape:`(..., E)`\n        - v: shape:`(..., E)`\n        - w: shape:`(E * 3, E)`\n        - b: shape:`E * 3` \n\n        输出:\n        - 输出列表 :`[q', k', v']`，q,k,v经过线性变换前后的形状都一致。\n    \"\"\"\n    E = q.size(-1)\n    # 若为自注意，则q = k = v = src，因此它们的引用变量都是src\n    # 即k is v和q is k结果均为True\n    # 若为seq2seq，k = v，因而k is v的结果是True\n    if k is v:\n        if q is k:\n            return F.linear(q, w, b).chunk(3, dim=-1)\n        else:\n            # seq2seq模型\n            w_q, w_kv = w.split([E, E * 2])\n            if b is None:\n                b_q = b_kv = None\n            else:\n                b_q, b_kv = b.split([E, E * 2])\n            return (F.linear(q, w_q, b_q),) + F.linear(k, w_kv, b_kv).chunk(2, dim=-1)\n    else:\n        w_q, w_k, w_v = w.chunk(3)\n        if b is None:\n            b_q = b_k = b_v = None\n        else:\n            b_q, b_k, b_v = b.chunk(3)\n        return F.linear(q, w_q, b_q), F.linear(k, w_k, b_k), F.linear(v, w_v, b_v)\n\nq, k, v = _in_projection_packed(query, key, value, in_proj_weight, in_proj_bias)\n\n```\n***\n\n- 遮挡机制\n\n对于attn_mask来说，若为2D，形状如`(L, S)`，L和S分别代表着目标语言和源语言序列长度，若为3D,形状如`(N * num_heads, L, S)`，N代表着batch_size，num_heads代表注意力头的数目。若为ByteTensor，非0的位置会被忽略不做注意力；若为BoolTensor，True对应的位置会被忽略；若为数值，则会直接加到attn_weights。\n\n因为在decoder解码的时候，只能看该位置和它之前的，如果看后面就犯规了，所以需要attn_mask遮挡住。\n\n下面函数直接复制PyTorch的，意思是确保不同维度的mask形状正确以及不同类型的转换\n\n\n```python\nif attn_mask is not None:\n    if attn_mask.dtype == torch.uint8:\n        warnings.warn(\"Byte tensor for attn_mask in nn.MultiheadAttention is deprecated. Use bool tensor instead.\")\n        attn_mask = attn_mask.to(torch.bool)\n    else:\n        assert attn_mask.is_floating_point() or attn_mask.dtype == torch.bool, \\\n            f\"Only float, byte, and bool types are supported for attn_mask, not {attn_mask.dtype}\"\n    # 对不同维度的形状判定\n    if attn_mask.dim() == 2:\n        correct_2d_size = (tgt_len, src_len)\n        if attn_mask.shape != correct_2d_size:\n            raise RuntimeError(f\"The shape of the 2D attn_mask is {attn_mask.shape}, but should be {correct_2d_size}.\")\n            attn_mask = attn_mask.unsqueeze(0)\n    elif attn_mask.dim() == 3:\n        correct_3d_size = (bsz * num_heads, tgt_len, src_len)\n        if attn_mask.shape != correct_3d_size:\n            raise RuntimeError(f\"The shape of the 3D attn_mask is {attn_mask.shape}, but should be {correct_3d_size}.\")\n    else:\n        raise RuntimeError(f\"attn_mask's dimension {attn_mask.dim()} is not supported\")\n\n```\n与`attn_mask`不同的是，`key_padding_mask`是用来遮挡住key里面的值，详细来说应该是`<PAD>`，被忽略的情况与attn_mask一致。\n\n```python\n# 将key_padding_mask值改为布尔值\nif key_padding_mask is not None and key_padding_mask.dtype == torch.uint8:\n    warnings.warn(\"Byte tensor for key_padding_mask in nn.MultiheadAttention is deprecated. Use bool tensor instead.\")\n    key_padding_mask = key_padding_mask.to(torch.bool)\n```\n\n先介绍两个小函数，`logical_or`，输入两个tensor，并对这两个tensor里的值做`逻辑或`运算，只有当两个值均为0的时候才为`False`，其他时候均为`True`，另一个是`masked_fill`，输入是一个mask，和用以填充的值。mask由1，0组成，0的位置值维持不变，1的位置用新值填充。\n```python\na = torch.tensor([0,1,10,0],dtype=torch.int8)\nb = torch.tensor([4,0,1,0],dtype=torch.int8)\nprint(torch.logical_or(a,b))\n# tensor([ True,  True,  True, False])\n```\n\n```python\nr = torch.tensor([[0,0,0,0],[0,0,0,0]])\nmask = torch.tensor([[1,1,1,1],[0,0,0,0]])\nprint(r.masked_fill(mask,1))\n# tensor([[1, 1, 1, 1],\n#         [0, 0, 0, 0]])\n```\n其实attn_mask和key_padding_mask有些时候对象是一致的，所以有时候可以合起来看。`-inf`做softmax之后值为0，即被忽略。\n```python\nif key_padding_mask is not None:\n    assert key_padding_mask.shape == (bsz, src_len), \\\n        f\"expecting key_padding_mask shape of {(bsz, src_len)}, but got {key_padding_mask.shape}\"\n    key_padding_mask = key_padding_mask.view(bsz, 1, 1, src_len).   \\\n        expand(-1, num_heads, -1, -1).reshape(bsz * num_heads, 1, src_len)\n    # 若attn_mask为空，直接用key_padding_mask\n    if attn_mask is None:\n        attn_mask = key_padding_mask\n    elif attn_mask.dtype == torch.bool:\n        attn_mask = attn_mask.logical_or(key_padding_mask)\n    else:\n        attn_mask = attn_mask.masked_fill(key_padding_mask, float(\"-inf\"))\n\n# 若attn_mask值是布尔值，则将mask转换为float\nif attn_mask is not None and attn_mask.dtype == torch.bool:\n    new_attn_mask = torch.zeros_like(attn_mask, dtype=torch.float)\n    new_attn_mask.masked_fill_(attn_mask, float(\"-inf\"))\n    attn_mask = new_attn_mask\n\n```\n\n***\n-  点积注意力\n\n```python\nfrom typing import Optional, Tuple, Any\ndef scaled_dot_product_attention(\n    q: Tensor,\n    k: Tensor,\n    v: Tensor,\n    attn_mask: Optional[Tensor] = None,\n    dropout_p: float = 0.0,\n) -> Tuple[Tensor, Tensor]:\n    r'''\n    在query, key, value上计算点积注意力，若有注意力遮盖则使用，并且应用一个概率为dropout_p的dropout\n\n    参数：\n        - q: shape:`(B, Nt, E)` B代表batch size， Nt是目标语言序列长度，E是嵌入后的特征维度\n        - key: shape:`(B, Ns, E)` Ns是源语言序列长度\n        - value: shape:`(B, Ns, E)`与key形状一样\n        - attn_mask: 要么是3D的tensor，形状为:`(B, Nt, Ns)`或者2D的tensor，形状如:`(Nt, Ns)`\n\n        - Output: attention values: shape:`(B, Nt, E)`，与q的形状一致;attention weights: shape:`(B, Nt, Ns)`\n    \n    例子：\n        >>> q = torch.randn((2,3,6))\n        >>> k = torch.randn((2,4,6))\n        >>> v = torch.randn((2,4,6))\n        >>> out = scaled_dot_product_attention(q, k, v)\n        >>> out[0].shape, out[1].shape\n        >>> torch.Size([2, 3, 6]) torch.Size([2, 3, 4])\n    '''\n    B, Nt, E = q.shape\n    q = q / math.sqrt(E)\n    # (B, Nt, E) x (B, E, Ns) -> (B, Nt, Ns)\n    attn = torch.bmm(q, k.transpose(-2,-1))\n    if attn_mask is not None:\n        attn += attn_mask \n    # attn意味着目标序列的每个词对源语言序列做注意力\n    attn = F.softmax(attn, dim=-1)\n    if dropout_p:\n        attn = F.dropout(attn, p=dropout_p)\n    # (B, Nt, Ns) x (B, Ns, E) -> (B, Nt, E)\n    output = torch.bmm(attn, v)\n    return output, attn \n```\n\n接下来将三个部分连起来：\n```python\ndef multi_head_attention_forward(\n    query: Tensor,\n    key: Tensor,\n    value: Tensor,\n    num_heads: int,\n    in_proj_weight: Tensor,\n    in_proj_bias: Optional[Tensor],\n    dropout_p: float,\n    out_proj_weight: Tensor,\n    out_proj_bias: Optional[Tensor],\n    training: bool = True,\n    key_padding_mask: Optional[Tensor] = None,\n    need_weights: bool = True,\n    attn_mask: Optional[Tensor] = None,\n    use_seperate_proj_weight = None,\n    q_proj_weight: Optional[Tensor] = None,\n    k_proj_weight: Optional[Tensor] = None,\n    v_proj_weight: Optional[Tensor] = None,\n) -> Tuple[Tensor, Optional[Tensor]]:\n    r'''\n    形状：\n        输入：\n        - query：`(L, N, E)`\n        - key: `(S, N, E)`\n        - value: `(S, N, E)`\n        - key_padding_mask: `(N, S)`\n        - attn_mask: `(L, S)` or `(N * num_heads, L, S)`\n        输出：\n        - attn_output:`(L, N, E)`\n        - attn_output_weights:`(N, L, S)`\n    '''\n    tgt_len, bsz, embed_dim = query.shape\n    src_len, _, _ = key.shape\n    head_dim = embed_dim // num_heads\n    q, k, v = _in_projection_packed(query, key, value, in_proj_weight, in_proj_bias)\n\n    if attn_mask is not None:\n        if attn_mask.dtype == torch.uint8:\n            warnings.warn(\"Byte tensor for attn_mask in nn.MultiheadAttention is deprecated. Use bool tensor instead.\")\n            attn_mask = attn_mask.to(torch.bool)\n        else:\n            assert attn_mask.is_floating_point() or attn_mask.dtype == torch.bool, \\\n                f\"Only float, byte, and bool types are supported for attn_mask, not {attn_mask.dtype}\"\n\n        if attn_mask.dim() == 2:\n            correct_2d_size = (tgt_len, src_len)\n            if attn_mask.shape != correct_2d_size:\n                raise RuntimeError(f\"The shape of the 2D attn_mask is {attn_mask.shape}, but should be {correct_2d_size}.\")\n            attn_mask = attn_mask.unsqueeze(0)\n        elif attn_mask.dim() == 3:\n            correct_3d_size = (bsz * num_heads, tgt_len, src_len)\n            if attn_mask.shape != correct_3d_size:\n                raise RuntimeError(f\"The shape of the 3D attn_mask is {attn_mask.shape}, but should be {correct_3d_size}.\")\n        else:\n            raise RuntimeError(f\"attn_mask's dimension {attn_mask.dim()} is not supported\")\n\n    if key_padding_mask is not None and key_padding_mask.dtype == torch.uint8:\n        warnings.warn(\"Byte tensor for key_padding_mask in nn.MultiheadAttention is deprecated. Use bool tensor instead.\")\n        key_padding_mask = key_padding_mask.to(torch.bool)\n    \n    # reshape q,k,v将Batch放在第一维以适合点积注意力\n    # 同时为多头机制，将不同的头拼在一起组成一层\n    q = q.contiguous().view(tgt_len, bsz * num_heads, head_dim).transpose(0, 1)\n    k = k.contiguous().view(-1, bsz * num_heads, head_dim).transpose(0, 1)\n    v = v.contiguous().view(-1, bsz * num_heads, head_dim).transpose(0, 1)\n    if key_padding_mask is not None:\n        assert key_padding_mask.shape == (bsz, src_len), \\\n            f\"expecting key_padding_mask shape of {(bsz, src_len)}, but got {key_padding_mask.shape}\"\n        key_padding_mask = key_padding_mask.view(bsz, 1, 1, src_len).   \\\n            expand(-1, num_heads, -1, -1).reshape(bsz * num_heads, 1, src_len)\n        if attn_mask is None:\n            attn_mask = key_padding_mask\n        elif attn_mask.dtype == torch.bool:\n            attn_mask = attn_mask.logical_or(key_padding_mask)\n        else:\n            attn_mask = attn_mask.masked_fill(key_padding_mask, float(\"-inf\"))\n    # 若attn_mask值是布尔值，则将mask转换为float\n    if attn_mask is not None and attn_mask.dtype == torch.bool:\n        new_attn_mask = torch.zeros_like(attn_mask, dtype=torch.float)\n        new_attn_mask.masked_fill_(attn_mask, float(\"-inf\"))\n        attn_mask = new_attn_mask\n\n    # 若training为True时才应用dropout\n    if not training:\n        dropout_p = 0.0\n    attn_output, attn_output_weights = _scaled_dot_product_attention(q, k, v, attn_mask, dropout_p)\n    attn_output = attn_output.transpose(0, 1).contiguous().view(tgt_len, bsz, embed_dim)\n    attn_output = linear(attn_output, out_proj_weight, out_proj_bias)\n    if need_weights:\n        # average attention weights over heads\n        attn_output_weights = attn_output_weights.view(bsz, num_heads, tgt_len, src_len)\n        return attn_output, attn_output_weights.sum(dim=1) / num_heads\n    else:\n        return attn_output, None\n\n```\n接下来构建MultiheadAttention类\n\n```python\nclass MultiheadAttention(nn.Module):\n    r'''\n    参数：\n        embed_dim: 词嵌入的维度\n        num_heads: 平行头的数量\n        batch_first: 若`True`，则为(batch, seq, feture)，若为`False`，则为(seq, batch, feature)\n    \n    例子：\n        >>> multihead_attn = MultiheadAttention(embed_dim, num_heads)\n        >>> attn_output, attn_output_weights = multihead_attn(query, key, value)\n    '''\n    def __init__(self, embed_dim, num_heads, dropout=0., bias=True,\n                 kdim=None, vdim=None, batch_first=False) -> None:\n        factory_kwargs = {'device': device, 'dtype': dtype}\n        super(MultiheadAttention, self).__init__()\n        self.embed_dim = embed_dim\n        self.kdim = kdim if kdim is not None else embed_dim\n        self.vdim = vdim if vdim is not None else embed_dim\n        self._qkv_same_embed_dim = self.kdim == embed_dim and self.vdim == embed_dim\n\n        self.num_heads = num_heads\n        self.dropout = dropout\n        self.batch_first = batch_first\n        self.head_dim = embed_dim // num_heads\n        assert self.head_dim * num_heads == self.embed_dim, \"embed_dim must be divisible by num_heads\"\n\n        if self._qkv_same_embed_dim is False:\n            self.q_proj_weight = Parameter(torch.empty((embed_dim, embed_dim)))\n            self.k_proj_weight = Parameter(torch.empty((embed_dim, self.kdim)))\n            self.v_proj_weight = Parameter(torch.empty((embed_dim, self.vdim)))\n            self.register_parameter('in_proj_weight', None)\n        else:\n            self.in_proj_weight = Parameter(torch.empty((3 * embed_dim, embed_dim)))\n            self.register_parameter('q_proj_weight', None)\n            self.register_parameter('k_proj_weight', None)\n            self.register_parameter('v_proj_weight', None)\n\n        if bias:\n            self.in_proj_bias = Parameter(torch.empty(3 * embed_dim))\n        else:\n            self.register_parameter('in_proj_bias', None)\n        self.out_proj = nn.Linear(embed_dim, embed_dim, bias=bias)\n\n        self._reset_parameters()\n\n    def _reset_parameters(self):\n        if self._qkv_same_embed_dim:\n            xavier_uniform_(self.in_proj_weight)\n        else:\n            xavier_uniform_(self.q_proj_weight)\n            xavier_uniform_(self.k_proj_weight)\n            xavier_uniform_(self.v_proj_weight)\n\n        if self.in_proj_bias is not None:\n            constant_(self.in_proj_bias, 0.)\n            constant_(self.out_proj.bias, 0.)\n        if self.bias_k is not None:\n            xavier_normal_(self.bias_k)\n        if self.bias_v is not None:\n            xavier_normal_(self.bias_v)\n\n\n    def forward(self, query: Tensor, key: Tensor, value: Tensor, key_padding_mask: Optional[Tensor] = None,\n                need_weights: bool = True, attn_mask: Optional[Tensor] = None) -> Tuple[Tensor, Optional[Tensor]]:\n        if self.batch_first:\n            query, key, value = [x.transpose(1, 0) for x in (query, key, value)]\n\n        if not self._qkv_same_embed_dim:\n            attn_output, attn_output_weights = F.multi_head_attention_forward(\n                query, key, value, self.num_heads,\n                self.in_proj_weight, self.in_proj_bias,\n                self.dropout, self.out_proj.weight, self.out_proj.bias,\n                training=self.training,\n                key_padding_mask=key_padding_mask, need_weights=need_weights,\n                attn_mask=attn_mask, use_separate_proj_weight=True,\n                q_proj_weight=self.q_proj_weight, k_proj_weight=self.k_proj_weight,\n                v_proj_weight=self.v_proj_weight)\n        else:\n            attn_output, attn_output_weights = F.multi_head_attention_forward(\n                query, key, value, self.num_heads,\n                self.in_proj_weight, self.in_proj_bias,\n                self.dropout, self.out_proj.weight, self.out_proj.bias,\n                training=self.training,\n                key_padding_mask=key_padding_mask, need_weights=need_weights,\n                attn_mask=attn_mask)\n        if self.batch_first:\n            return attn_output.transpose(1, 0), attn_output_weights\n        else:\n            return attn_output, attn_output_weights\n```\n\n接下来可以实践一下，并且把位置编码加起来，可以发现加入位置编码和进行多头注意力的前后形状都是不会变的\n\n```python\n# 因为batch_first为False,所以src的shape：`(seq, batch, embed_dim)`\nsrc = torch.randn((2,4,100))\nsrc = positional_encoding(src,100,0.1)\nprint(src.shape)\nmultihead_attn = MultiheadAttention(100, 4, 0.1)\nattn_output, attn_output_weights = multihead_attn(src,src,src)\nprint(attn_output.shape, attn_output_weights.shape)\n\n# torch.Size([2, 4, 100])\n# torch.Size([2, 4, 100]) torch.Size([4, 2, 2])\n```\n***\n**<div id='build'>搭建Transformer</div>**\n\n- Encoder Layer\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/encoder.png)\n\n```python\nclass TransformerEncoderLayer(nn.Module):\n    r'''\n    参数：\n        d_model: 词嵌入的维度（必备）\n        nhead: 多头注意力中平行头的数目（必备）\n        dim_feedforward: 全连接层的神经元的数目，又称经过此层输入的维度（Default = 2048）\n        dropout: dropout的概率（Default = 0.1）\n        activation: 两个线性层中间的激活函数，默认relu或gelu\n        lay_norm_eps: layer normalization中的微小量，防止分母为0（Default = 1e-5）\n        batch_first: 若`True`，则为(batch, seq, feture)，若为`False`，则为(seq, batch, feature)（Default：False）\n\n    例子：\n        >>> encoder_layer = TransformerEncoderLayer(d_model=512, nhead=8)\n        >>> src = torch.randn((32, 10, 512))\n        >>> out = encoder_layer(src)\n    '''\n\n    def __init__(self, d_model, nhead, dim_feedforward=2048, dropout=0.1, activation=F.relu,\n                 layer_norm_eps=1e-5, batch_first=False) -> None:\n        super(TransformerEncoderLayer, self).__init__()\n        self.self_attn = MultiheadAttention(d_model, nhead, dropout=dropout, batch_first=batch_first)\n        self.linear1 = nn.Linear(d_model, dim_feedforward)\n        self.dropout = nn.Dropout(dropout)\n        self.linear2 = nn.Linear(dim_feedforward, d_model)\n\n        self.norm1 = nn.LayerNorm(d_model, eps=layer_norm_eps)\n        self.norm2 = nn.LayerNorm(d_model, eps=layer_norm_eps)\n        self.dropout1 = nn.Dropout(dropout)\n        self.dropout2 = nn.Dropout(dropout)\n        self.activation = activation        \n\n\n    def forward(self, src: Tensor, src_mask: Optional[Tensor] = None, src_key_padding_mask: Optional[Tensor] = None) -> Tensor:\n        src = positional_encoding(src, src.shape[-1])\n        src2 = self.self_attn(src, src, src, attn_mask=src_mask, \n        key_padding_mask=src_key_padding_mask)[0]\n        src = src + self.dropout1(src2)\n        src = self.norm1(src)\n        src2 = self.linear2(self.dropout(self.activation(self.linear1(src))))\n        src = src + self.dropout(src2)\n        src = self.norm2(src)\n        return src\n\n```\n用小例子看一下\n```python\nencoder_layer = TransformerEncoderLayer(d_model=512, nhead=8)\nsrc = torch.randn((32, 10, 512))\nout = encoder_layer(src)\nprint(out.shape)\n# torch.Size([32, 10, 512])\n```\n***\n- Encoder\n\n```python\nclass TransformerEncoder(nn.Module):\n    r'''\n    参数：\n        encoder_layer（必备）\n        num_layers： encoder_layer的层数（必备）\n        norm: 归一化的选择（可选）\n    \n    例子：\n        >>> encoder_layer = TransformerEncoderLayer(d_model=512, nhead=8)\n        >>> transformer_encoder = TransformerEncoder(encoder_layer, num_layers=6)\n        >>> src = torch.randn((10, 32, 512))\n        >>> out = transformer_encoder(src)\n    '''\n\n    def __init__(self, encoder_layer, num_layers, norm=None):\n        super(TransformerEncoder, self).__init__()\n        self.layer = encoder_layer\n        self.num_layers = num_layers\n        self.norm = norm\n    \n    def forward(self, src: Tensor, mask: Optional[Tensor] = None, src_key_padding_mask: Optional[Tensor] = None) -> Tensor:\n        output = positional_encoding(src, src.shape[-1])\n        for _ in range(self.num_layers):\n            output = self.layer(output, src_mask=mask, src_key_padding_mask=src_key_padding_mask)\n        \n        if self.norm is not None:\n            output = self.norm(output)\n        \n        return output\n```\n用小例子看一下\n\n```python\nencoder_layer = TransformerEncoderLayer(d_model=512, nhead=8)\ntransformer_encoder = TransformerEncoder(encoder_layer, num_layers=6)\nsrc = torch.randn((10, 32, 512))\nout = transformer_encoder(src)\nprint(out.shape)\n# torch.Size([10, 32, 512])\n```\n***\n- Decoder Layer:\n\n```python\nclass TransformerDecoderLayer(nn.Module):\n    r'''\n    参数：\n        d_model: 词嵌入的维度（必备）\n        nhead: 多头注意力中平行头的数目（必备）\n        dim_feedforward: 全连接层的神经元的数目，又称经过此层输入的维度（Default = 2048）\n        dropout: dropout的概率（Default = 0.1）\n        activation: 两个线性层中间的激活函数，默认relu或gelu\n        lay_norm_eps: layer normalization中的微小量，防止分母为0（Default = 1e-5）\n        batch_first: 若`True`，则为(batch, seq, feture)，若为`False`，则为(seq, batch, feature)（Default：False）\n    \n    例子：\n        >>> decoder_layer = TransformerDecoderLayer(d_model=512, nhead=8)\n        >>> memory = torch.randn((10, 32, 512))\n        >>> tgt = torch.randn((20, 32, 512))\n        >>> out = decoder_layer(tgt, memory)\n    '''\n    def __init__(self, d_model, nhead, dim_feedforward=2048, dropout=0.1, activation=F.relu,\n                 layer_norm_eps=1e-5, batch_first=False) -> None:\n        super(TransformerDecoderLayer, self).__init__()\n        self.self_attn = MultiheadAttention(d_model, nhead, dropout=dropout, batch_first=batch_first)\n        self.multihead_attn = MultiheadAttention(d_model, nhead, dropout=dropout, batch_first=batch_first)\n\n        self.linear1 = nn.Linear(d_model, dim_feedforward)\n        self.dropout = nn.Dropout(dropout)\n        self.linear2 = nn.Linear(dim_feedforward, d_model)\n\n        self.norm1 = nn.LayerNorm(d_model, eps=layer_norm_eps)\n        self.norm2 = nn.LayerNorm(d_model, eps=layer_norm_eps)\n        self.norm3 = nn.LayerNorm(d_model, eps=layer_norm_eps)\n        self.dropout1 = nn.Dropout(dropout)\n        self.dropout2 = nn.Dropout(dropout)\n        self.dropout3 = nn.Dropout(dropout)\n\n        self.activation = activation\n\n    def forward(self, tgt: Tensor, memory: Tensor, tgt_mask: Optional[Tensor] = None, \n                memory_mask: Optional[Tensor] = None,tgt_key_padding_mask: Optional[Tensor] = None, memory_key_padding_mask: Optional[Tensor] = None) -> Tensor:\n        r'''\n        参数：\n            tgt: 目标语言序列（必备）\n            memory: 从最后一个encoder_layer跑出的句子（必备）\n            tgt_mask: 目标语言序列的mask（可选）\n            memory_mask（可选）\n            tgt_key_padding_mask（可选）\n            memory_key_padding_mask（可选）\n        '''\n        tgt2 = self.self_attn(tgt, tgt, tgt, attn_mask=tgt_mask,\n                              key_padding_mask=tgt_key_padding_mask)[0]\n        tgt = tgt + self.dropout1(tgt2)\n        tgt = self.norm1(tgt)\n        tgt2 = self.multihead_attn(tgt, memory, memory, attn_mask=memory_mask,\n                                   key_padding_mask=memory_key_padding_mask)[0]\n        tgt = tgt + self.dropout2(tgt2)\n        tgt = self.norm2(tgt)\n        tgt2 = self.linear2(self.dropout(self.activation(self.linear1(tgt))))\n        tgt = tgt + self.dropout3(tgt2)\n        tgt = self.norm3(tgt)\n        return tgt\n```\n用小例子看一下\n```python\ndecoder_layer = nn.TransformerDecoderLayer(d_model=512, nhead=8)\nmemory = torch.randn((10, 32, 512))\ntgt = torch.randn((20, 32, 512))\nout = decoder_layer(tgt, memory)\nprint(out.shape)\n# torch.Size([20, 32, 512])\n```\n\n- Decoder\n\n```python\nclass TransformerDecoder(nn.Module):\n    r'''\n    参数：\n        decoder_layer（必备）\n        num_layers: decoder_layer的层数（必备）\n        norm: 归一化选择\n    \n    例子：\n        >>> decoder_layer =TransformerDecoderLayer(d_model=512, nhead=8)\n        >>> transformer_decoder = TransformerDecoder(decoder_layer, num_layers=6)\n        >>> memory = torch.rand(10, 32, 512)\n        >>> tgt = torch.rand(20, 32, 512)\n        >>> out = transformer_decoder(tgt, memory)\n    '''\n    def __init__(self, decoder_layer, num_layers, norm=None):\n        super(TransformerDecoder, self).__init__()\n        self.layer = decoder_layer\n        self.num_layers = num_layers\n        self.norm = norm\n    \n    def forward(self, tgt: Tensor, memory: Tensor, tgt_mask: Optional[Tensor] = None,\n                memory_mask: Optional[Tensor] = None, tgt_key_padding_mask: Optional[Tensor] = None,\n                memory_key_padding_mask: Optional[Tensor] = None) -> Tensor:\n        output = tgt\n        for _ in range(self.num_layers):\n            output = self.layer(output, memory, tgt_mask=tgt_mask,\n                         memory_mask=memory_mask,\n                         tgt_key_padding_mask=tgt_key_padding_mask,\n                         memory_key_padding_mask=memory_key_padding_mask)\n        if self.norm is not None:\n            output = self.norm(output)\n\n        return output\n```\n用小例子看一下\n```python\ndecoder_layer =TransformerDecoderLayer(d_model=512, nhead=8)\ntransformer_decoder = TransformerDecoder(decoder_layer, num_layers=6)\nmemory = torch.rand(10, 32, 512)\ntgt = torch.rand(20, 32, 512)\nout = transformer_decoder(tgt, memory)\nprint(out.shape)\n# torch.Size([20, 32, 512])\n```\n总结一下，其实经过位置编码，多头注意力，Encoder Layer和Decoder Layer形状不会变的，而Encoder和Decoder分别与src和tgt形状一致\n\n***\n- Transformer\n\n```python\nclass Transformer(nn.Module):\n    r'''\n    参数：\n        d_model: 词嵌入的维度（必备）（Default=512）\n        nhead: 多头注意力中平行头的数目（必备）（Default=8）\n        num_encoder_layers:编码层层数（Default=8）\n        num_decoder_layers:解码层层数（Default=8）\n        dim_feedforward: 全连接层的神经元的数目，又称经过此层输入的维度（Default = 2048）\n        dropout: dropout的概率（Default = 0.1）\n        activation: 两个线性层中间的激活函数，默认relu或gelu\n        custom_encoder: 自定义encoder（Default=None）\n        custom_decoder: 自定义decoder（Default=None）\n        lay_norm_eps: layer normalization中的微小量，防止分母为0（Default = 1e-5）\n        batch_first: 若`True`，则为(batch, seq, feture)，若为`False`，则为(seq, batch, feature)（Default：False）\n    \n    例子：\n        >>> transformer_model = Transformer(nhead=16, num_encoder_layers=12)\n        >>> src = torch.rand((10, 32, 512))\n        >>> tgt = torch.rand((20, 32, 512))\n        >>> out = transformer_model(src, tgt)\n    '''\n    def __init__(self, d_model: int = 512, nhead: int = 8, num_encoder_layers: int = 6,\n                 num_decoder_layers: int = 6, dim_feedforward: int = 2048, dropout: float = 0.1,\n                 activation = F.relu, custom_encoder: Optional[Any] = None, custom_decoder: Optional[Any] = None,\n                 layer_norm_eps: float = 1e-5, batch_first: bool = False) -> None:\n        super(Transformer, self).__init__()\n        if custom_encoder is not None:\n            self.encoder = custom_encoder\n        else:\n            encoder_layer = TransformerEncoderLayer(d_model, nhead, dim_feedforward, dropout,\n                                                    activation, layer_norm_eps, batch_first)\n            encoder_norm = nn.LayerNorm(d_model, eps=layer_norm_eps)\n            self.encoder = TransformerEncoder(encoder_layer, num_encoder_layers)\n\n        if custom_decoder is not None:\n            self.decoder = custom_decoder\n        else:\n            decoder_layer = TransformerDecoderLayer(d_model, nhead, dim_feedforward, dropout,\n                                                    activation, layer_norm_eps, batch_first)\n            decoder_norm = nn.LayerNorm(d_model, eps=layer_norm_eps)\n            self.decoder = TransformerDecoder(decoder_layer, num_decoder_layers, decoder_norm)\n\n        self._reset_parameters()\n\n        self.d_model = d_model\n        self.nhead = nhead\n\n        self.batch_first = batch_first\n\n    def forward(self, src: Tensor, tgt: Tensor, src_mask: Optional[Tensor] = None, tgt_mask: Optional[Tensor] = None,\n                memory_mask: Optional[Tensor] = None, src_key_padding_mask: Optional[Tensor] = None,\n                tgt_key_padding_mask: Optional[Tensor] = None, memory_key_padding_mask: Optional[Tensor] = None) -> Tensor:\n        r'''\n        参数：\n            src: 源语言序列（送入Encoder）（必备）\n            tgt: 目标语言序列（送入Decoder）（必备）\n            src_mask: （可选)\n            tgt_mask: （可选）\n            memory_mask: （可选）\n            src_key_padding_mask: （可选）\n            tgt_key_padding_mask: （可选）\n            memory_key_padding_mask: （可选）\n        \n        形状：\n            - src: shape:`(S, N, E)`, `(N, S, E)` if batch_first.\n            - tgt: shape:`(T, N, E)`, `(N, T, E)` if batch_first.\n            - src_mask: shape:`(S, S)`.\n            - tgt_mask: shape:`(T, T)`.\n            - memory_mask: shape:`(T, S)`.\n            - src_key_padding_mask: shape:`(N, S)`.\n            - tgt_key_padding_mask: shape:`(N, T)`.\n            - memory_key_padding_mask: shape:`(N, S)`.\n\n            [src/tgt/memory]_mask确保有些位置不被看到，如做decode的时候，只能看该位置及其以前的，而不能看后面的。\n            若为ByteTensor，非0的位置会被忽略不做注意力；若为BoolTensor，True对应的位置会被忽略；\n            若为数值，则会直接加到attn_weights\n\n            [src/tgt/memory]_key_padding_mask 使得key里面的某些元素不参与attention计算，三种情况同上\n\n            - output: shape:`(T, N, E)`, `(N, T, E)` if batch_first.\n\n        注意：\n            src和tgt的最后一维需要等于d_model，batch的那一维需要相等\n            \n        例子:\n            >>> output = transformer_model(src, tgt, src_mask=src_mask, tgt_mask=tgt_mask)\n        '''\n        memory = self.encoder(src, mask=src_mask, src_key_padding_mask=src_key_padding_mask)\n        output = self.decoder(tgt, memory, tgt_mask=tgt_mask, memory_mask=memory_mask,\n                              tgt_key_padding_mask=tgt_key_padding_mask,\n                              memory_key_padding_mask=memory_key_padding_mask)\n        return output\n        \n    def generate_square_subsequent_mask(self, sz: int) -> Tensor:\n        r'''产生关于序列的mask，被遮住的区域赋值`-inf`，未被遮住的区域赋值为`0`'''\n        mask = (torch.triu(torch.ones(sz, sz)) == 1).transpose(0, 1)\n        mask = mask.float().masked_fill(mask == 0, float('-inf')).masked_fill(mask == 1, float(0.0))\n        return mask\n\n    def _reset_parameters(self):\n        r'''用正态分布初始化参数'''\n        for p in self.parameters():\n            if p.dim() > 1:\n                xavier_uniform_(p)\n```\n用个小例子侧试一下\n```python\ntransformer_model = Transformer(nhead=16, num_encoder_layers=12)\nsrc = torch.rand((10, 32, 512))\ntgt = torch.rand((20, 32, 512))\nout = transformer_model(src, tgt)\nprint(out.shape)\n# torch.Size([20, 32, 512])\n```\n\n到此为止，PyTorch的Transformer库我已经全部实现，相比于官方的版本，我自己手写的这个少了较多的判定语句，所以使用时请确保自己看了我的教程，目明白基本的输入输出，有些不必要的调用，打包均已省略，另有一些不必要的函数已经全部自己重写写过。\n\n另外，所有代码均经过测试，若有问题，定是你的问题，[完整版代码](functions.py)。\n\n\n"
  },
  {
    "path": "nlp/models/transformer_translate.md",
    "content": "### Transformer之翻译篇\n\n章节\n\n- [Pipeline构建](#preprocess)\n- [DataLoader构建](#build)\n- [MASK机制](#mask)\n- [模型搭建](#model)\n- [自定义学习率](#special)\n- [train和validation](#mix)\n- [模型训练](#train)\n- [评估](#eval)\n- [讨论](#discuss)\n    - 卷积代替全连接？\n    - Bert作为Encoder?\n    - 多头注意力真的那么有效？\n    - epoch越多越好？\n- [参考文献](#references)\n\n源码在[colab](https://colab.research.google.com/drive/1CILp7vwm8bZy6dOnRuwPeujP3-Mdm67z?usp=sharing)上，数据集若要自己下载[data](../RNN/eng-fra.txt)\n\n### <div id='preprocess'>Pipeline构建</div>\n\n必备包的导入\n\n```python\nimport torch \nimport torchtext\n\nfrom sklearn.model_selection import train_test_split\n\nimport random\nimport re \nfrom tqdm import tqdm\nimport pandas as pd\nimport numpy as np \nfrom matplotlib import pyplot as plt \nimport unicodedata\nimport datetime\nimport time\nfrom torchtext.legacy.data import Field, Dataset, Example, Iterator\nimport copy\nimport torch.nn as nn \nimport matplotlib.pyplot as plt\nimport os \nimport pdb # jupyter调试用，一般不需要\n\nuse_cuda = torch.cuda.is_available()\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\nprint(\"device=\",device)\n```\n\n首先用pandas读入：\n\n```python\ndata_df = pd.read_csv(\"./eng-fra.txt\",encoding=\"utf-8\",sep=\"\\t\",header=None,names=[\"eng\",\"fra\"],index_col=False)\n\nprint(data_df.shape)\nprint(data_df.values.shape)\nprint(data_df.values[0])\nprint(data_df.values[0].shape)\ndata_df.head()\n\n# (135842, 2)\n# (135842, 2)\n# ['Go.' 'Va !']\n# (2,)\n'''\n\teng\tfra\n0\tGo.\tVa !\n1\tRun!\tCours !\n2\tRun!\tCourez !\n3\tWow!\tÇa alors !\n4\tFire!\tAu feu !\n'''\n```\n详见注释\n\n```python\n# 数据预处理\n# 将unicode字符串转化为ASCII码：\ndef unicodeToAscii(s):\n    return ''.join(c for c in unicodedata.normalize('NFD', s) if unicodedata.category(c) != 'Mn')\n\n\n# 规范化字符串\ndef normalizeString(s):\n    # print(s) # list  ['Go.']\n    # s = s[0]\n    s = s.lower().strip()\n    s = unicodeToAscii(s)\n    s = re.sub(r\"([.!?])\", r\" \\1\", s)  # \\1表示group(1)即第一个匹配到的 即匹配到'.'或者'!'或者'?'后，一律替换成'空格.'或者'空格!'或者'空格？'\n    s = re.sub(r\"[^a-zA-Z.!?]+\", r\" \", s)  # 非字母以及非.!?的其他任何字符 一律被替换成空格\n    s = re.sub(r'[\\s]+', \" \", s)  # 将出现的多个空格，都使用一个空格代替。例如：w='abc  1   23  1' 处理后：w='abc 1 23 1'\n    return s\n```\n\n```python\nprint(normalizeString('Va !'))\nprint(normalizeString('Go.'))\n\n# va !\n# go .\n```\n\n\n```python\nMAX_LENGTH = 10\n\neng_prefixes = (  # 之前normalizeString()已经对撇号等进行了过滤，以及清洗，小写化等\n    \"i am \", \"i m \",\n    \"he is\", \"he s \",\n    \"she is\", \"she s \",\n    \"you are\", \"you re \",\n    \"we are\", \"we re \",\n    \"they are\", \"they re \"\n)\n\n# print(eng_prefixes)\npairs = [[normalizeString(s) for s in line] for line in data_df.values]\nprint('pairs num=', len(pairs))\nprint(pairs[0])\nprint(pairs[1])\n\n# pairs num= 135842\n# ['go .', 'va !']\n# ['run !', 'cours !']\n```\n\n```python\n# 文件是英译法，我们实现的是法译英，所以进行了reverse，所以pair[1]是英语\n# 为了快速训练，仅保留“我是”“你是”“他是”等简单句子，并且删除原始文本长度大于10个标记的样本\ndef filterPair(p):\n    return len(p[0].split(' ')) < MAX_LENGTH and len(p[1].split(' ')) < MAX_LENGTH and \\\n           p[0].startswith(eng_prefixes)  # startswith first arg must be str or a tuple of str\n\n\ndef filterPairs(pairs):\n    # 过滤，并交换句子顺序，得到法英句子对（之前是英法句子对）\n    return [[pair[1], pair[0]] for pair in pairs if filterPair(pair)]\n\n\npairs = filterPairs(pairs)\n```\n\n```python\nprint('after trimming, pairs num=', len(pairs))\nprint(pairs[0])\nprint(pairs[1])\nprint(random.choice(pairs))\nprint(pairs[0:2])\n\n# after trimming, pairs num= 10599\n# ['j ai ans .', 'i m .']\n# ['je vais bien .', 'i m ok .']\n# ['on nous fait chanter .', 'we re being blackmailed .']\n# [['j ai ans .', 'i m .'], ['je vais bien .', 'i m ok .']]\n```\n以上代码的目的是首先对特殊字符进行修正`（i'm ==> i m)`并将字符与字母之间留出空格，其次按照序列长度和特定开头对数据进行筛选以便后期的训练，最终将`pairs`变成大列表，每一个元素即为小列表，小列表第一，二个元素分别为法文和英文序列。\n\n```python\n# 划分数据集： 训练集和验证集\ntrain_pairs, val_pairs = train_test_split(pairs, test_size=0.2, random_state=1234)\n\nprint(len(train_pairs))\nprint(len(val_pairs))\n\n# 8479\n# 2120\n```\n\n***\n\n### <div id='build'>DataLoader构建</div>\n\n第一部分我们构建了数据基础处理的流水线，接下来构建可以迭代并且符合PyTorch数据格式的DataLoader。\n\n不同的Field其实是针对不同的数据的，`SRC_TEXT`和`TGT_TEXT`分别针对法语和英语（本次的任务是法译英）\n\n```python\ntokenizer = lambda x: x.split()\n\nSRC_TEXT = Field(sequential=True,\ntokenize=tokenizer,\n# +2 因为<start>和<end>\nfix_length=MAX_LENGTH+2,\npreprocessing=lambda x:[\"<start>\"] + x + [\"<end>\"])\n\nTGT_TEXT = Field(sequential=True,\ntokenize=tokenizer,\nfix_length=MAX_LENGTH+2,\npreprocessing=lambda x:[\"<start>\"] + x + [\"<end>\"])\n\ndef get_dataset(pairs, src, tgt):\n    # field信息：fields dict([str, Field])\n    fields = [(\"src\",src),(\"tgt\",tgt)]\n    # list(Example)\n    examples = [] \n    # tqdm用以计时\n    for fra, eng in tqdm(pairs):\n        # 创建Example时会调用field.preprocessing方法\n        examples.append(Example.fromlist([fra,eng],fields))\n    return examples, fields\n```\n\n准备训练和测试数据集\n\n```python\nds_train = Dataset(*get_dataset(train_pairs, SRC_TEXT, TGT_TEXT))\nds_val = Dataset(*get_dataset(val_pairs, SRC_TEXT, TGT_TEXT))\n\nprint(len(ds_train[0].src), ds_train[0].src)\nprint(len(ds_train[0].tgt), ds_train[0].tgt)\n\n# 9 ['<start>', 'tu', 'n', 'es', 'qu', 'un', 'lache', '.', '<end>']\n# 8 ['<start>', 'you', 're', 'just', 'a', 'coward', '.', '<end>']\n```\n\n构建法语词表，这里务必注意`<pad>`是1而非0，`<unk>`表示unknown，即为词表中未出现过的词\n\n```python\nSRC_TEXT.build_vocab(ds_train)\nprint(len(SRC_TEXT.vocab))\nprint(SRC_TEXT.vocab.itos[0])\nprint(SRC_TEXT.vocab.itos[1])\nprint(SRC_TEXT.vocab.itos[2])\nprint(SRC_TEXT.vocab.itos[3])\nprint(SRC_TEXT.vocab.stoi[\"<start>\"])\nprint(SRC_TEXT.vocab.stoi[\"<end>\"])\n\n# 3901\n# <unk>\n# <pad>\n# <end>\n# <start>\n# 3\n# 2\n```\n\n模拟decode\n\n```python\nres = []\nfor id in [3, 5, 6, 71, 48, 5, 8, 32, 743, 4, 2, 1]:\n    res.append(SRC_TEXT.vocab.itos[id])\nprint(\" \".join(res)+\"\\n\")\n# <start> je suis fais si je vous l examen . <end> <pad>\n```\n构建英文词表，关于`<unk>`,`<pad>`均与法语词表一致\n\n```python\nTGT_TEXT.build_vocab(ds_train)\nprint(len(TGT_TEXT.vocab))\n# 2591\n```\n\n```python\nBATCH_SIZE = 64\n\n# 构建数据管道迭代器\n# split可以分开处理训练和验证集\n# train_iter由许多batch组成\ntrain_iter, val_iter = Iterator.splits(\n    (ds_train, ds_val),\n    # batch内部对数据是否排序\n    # 上面有ds_train[0].src\n    # 根据每一条数据src的长度进行降序排列\n    sort_within_batch=True,\n    sort_key=lambda x:len(x.src),\n    batch_sizes=(BATCH_SIZE, BATCH_SIZE)\n)\n\n# 查看数据管道信息，会触发postprocessing，如果有的话\nfor batch in train_iter:\n    # 注意，这里text第一维是seq_len，而非batch\n    print(batch.src[:,0])\n    print(batch.src.shape, batch.tgt.shape)\n    break\n```\n\n```python\ntensor([3, 29, 17, 33, 82, 31, 381, 363, 3591, 4, 2, 1])\ntorch.Size([12, 64]) torch.Size([12, 64])\n```\n\n构建DataLoader\n```python\nclass DataLoader:\n    def __init__(self, data_iter):\n        self.data_iter = data_iter\n        self.length = len(data_iter)\n    \n    def __len__(self):\n        return self.length\n    \n    def __iter__(self):\n        # 注意，此处调整text的shape为batch_first\n        for batch in self.data_iter:\n            yield(torch.transpose(batch.src, 0, 1), torch.transpose(batch.tgt, 0, 1))\n\ntrain_dataloader = DataLoader(train_iter)\nval_dataloader = DataLoader(val_iter)\n```\n\n```python\n# 查看数据管道\nprint(\"len(train_dataloader):\",len(train_dataloader))\nfor batch_src, batch_tgt in train_dataloader:\n    print(batch_src.shape, batch_tgt.shape)\n    print(batch_src[0], batch_src.dtype)\n    print(batch_tgt[0], batch_tgt.dtype)\n    break\n\n# len(train_dataloader): 133\n# torch.Size([64, 12]) torch.Size([64, 12])\n# tensor([  3,  13,  15,  21,   9,  17,  46,  10, 230,   4,   2,   1]) torch.int64\n# tensor([  3,  14,   6,  10, 210,   4,   2,   1,   1,   1,   1,   1]) torch.int64\n\n```\n***\n### <div id='mask'>MASK机制</div>\n\n原始的句子首先需要转换为词表中的索引，然后进入词嵌入层。举个例子，假如某个时间步长上输入句子为`\"I love u\"`，src_vocab（源语言词表）为`{\"SOS\":0,\"EOS\":1,\"I\":2,\"love\":3,\"u\":4}`，`SOS`和`EOS`代表句子的开头和末尾，那么输入句子变为`[[2, 3, 4, 1]]`，接下来进入词嵌入层，目前我们的词表只有5个词，所以`embed = nn.Embedding(5, 6)`，用一个6维向量表示每一个词，如下所示：\n\n```python\nimport torch\nimport torch.nn as nn\nt = torch.tensor([[2, 3, 4, 1]])\nembed = nn.Embedding(5, 6)\nprint(embed(t))\n'''\ntensor([[[-0.5557,  0.9911, -0.2482,  1.5019,  0.9141,  0.0697],\n         [-1.5058, -0.4237,  1.1189, -0.7472, -0.9834, -1.2829],\n         [-0.8558,  0.4753,  0.0555, -0.3921, -0.0232,  0.2518],\n         [-0.3563,  0.7707, -0.8797,  0.6719, -0.4903,  0.0508]]],\n       grad_fn=<EmbeddingBackward>)\n'''       \n```\n\n- PAD MASK\n\n但现实中往往还要复杂的多，其中最重要的问题即为不定长，在RNN中序列可以不定长，可是在transformer中是需要定长的，这意味着需要设置一个最大长度，小于最大长度的全部补0，这些补0的就被称为`<PAD>`，对应的索引常为0，src_vocab扩充为`{\"PAD\":0,\"SOS\":1,\"EOS\":2,\"I\":3,\"love\":4,\"u\":5}`，假如最大长度为6，那么输入句子对应的索引变为`[[2, 3, 4, 1, 0, 0]]`。长度统一之后，新的问题产生了：那些补0的地方机器并不知道，在做注意力运算的时候还是要加入运算，这样结果带有一定的误导性，为了减免填充的地方对注意力运算带来影响，在实际运用中用`MASK`遮住补0的地方。\n\n```python\ndef get_attn_pad_mask(seq_q, seq_k):\n    batch_size, len_q = seq_q.size()\n    batch_size, len_k = seq_k.size()\n    # 等于0的即为<PAD>\n    # .data意思是不在计算图中储存它的梯度\n    # eq意思是equal，是否相等\n    pad_attn_mask = seq_k.data.eq(0).unsequeeze(1)\n    # pad_attn_mask ==> [batch_size, 1, seq_k_length]\n    return pad_attn_mask.expand(batch_size, len_q, len_k)\n```\n\n为什么需要让pad_attn_mask的形状为`(batch_size, len_q, len_k)`呢？众所周知，做注意力的时候是query去与key做点积运算，做embedding之后q和k的形状为`(batch_size, q_len, embed_size)`和`(batch_size, k_len, embed_size)`，于是两者做点积后的shape变为`(batch_size, q_len, k_len)`，`MASK`需要与`attn_mask`形状一致。\n\n`pad_attn_mask`是针对`key`的，`True`的地方代表是填充的，做自注意力的时候，q和k都是q，接下来实例看一下：\n\n```python\nq = torch.tensor([[2, 3, 4, 1, 0, 0]])\nmask = get_attn_pad_mask(q, q) \nprint(mask)\n'''\ntensor([[[False, False, False, False,  True,  True],\n         [False, False, False, False,  True,  True],\n         [False, False, False, False,  True,  True],\n         [False, False, False, False,  True,  True],\n         [False, False, False, False,  True,  True],\n         [False, False, False, False,  True,  True]]])\n'''\n```\n这里有一个容易混淆的点，`get_attn_pad_mask`里的参数只是需要索引转成tensor之后的就可以了，不必经过Embedding层，因为我们获得注意力mask只是想将索引为0的部分给填充掉，况且若经过Embedding之后也找不到0了。而做注意力点积的时候，是需要经过Embedding之后的。\n\n观察下面的示例，不难发现mask里面为`True`的全被填上了`-inf`，这样经过softmax之后值即为0，是不会对结果造成影响的。\n\nattn_mask有两种主流操作，一是先不管，正常进行，在softmax之前masked_fill将`1`和`True`的地方填充为`-inf`；二是一开始先将mask的组成变为`0`和`-inf`，然后直接加上去，加0的地方自然无影响，加`-inf`地方进行softmax之后全为0。\n\n下面为最后填充的做法\n\n```python\nembed = nn.Embedding(5, 6)\nq = embed(q)\nattn = torch.bmm(q, q)\nattn = attn.masked_fill(get_attn_pad_mask, float(\"-inf\"))\nprint(attn)\n'''\ntensor([[[ 0.8943, -1.5924,  0.3291,  2.9090,    -inf,    -inf],\n         [ 7.0428,  3.5899, 14.1080,  1.9872,    -inf,    -inf],\n         [ 4.8335,  1.7810,  6.7327,  2.5438,    -inf,    -inf],\n         [ 0.9912,  0.1271,  1.1755,  5.6559,    -inf,    -inf],\n         [-2.8715, -1.5905, -6.0587,  5.0048,    -inf,    -inf],\n         [-2.8715, -1.5905, -6.0587,  5.0048,    -inf,    -inf]]],\n       grad_fn=<MaskedFillBackward0>)\n'''\nsoftmax = nn.Softmax(dim=-1)\nattn = softmax(attn)\nprint(attn)\n'''\ntensor([[[1.0929e-01, 9.0916e-03, 6.2105e-02, 8.1951e-01, 0.0000e+00,\n          0.0000e+00],\n         [8.5359e-04, 2.7020e-05, 9.9911e-01, 5.4402e-06, 0.0000e+00,\n          0.0000e+00],\n         [1.2773e-01, 6.0340e-03, 8.5329e-01, 1.2938e-02, 0.0000e+00,\n          0.0000e+00],\n         [9.1945e-03, 3.8746e-03, 1.1054e-02, 9.7588e-01, 0.0000e+00,\n          0.0000e+00],\n         [3.7898e-04, 1.3644e-03, 1.5646e-05, 9.9824e-01, 0.0000e+00,\n          0.0000e+00],\n         [3.7898e-04, 1.3644e-03, 1.5646e-05, 9.9824e-01, 0.0000e+00,\n          0.0000e+00]]], grad_fn=<SoftmaxBackward>)\n'''\n```\n\n当然也可用第二种方法，因为每次Embedding权重不一，执行了两种操作我分别用了不同的文件来执行，故结果有所不同。\n\n```python\nmask = mask.float().masked_fill(mask == 1, float(\"-inf\")).masked_fill(mask == 0, float(0.0))\nprint(mask)\n'''\ntensor([[[0., 0., 0., 0., -inf, -inf],\n         [0., 0., 0., 0., -inf, -inf],\n         [0., 0., 0., 0., -inf, -inf],\n         [0., 0., 0., 0., -inf, -inf],\n         [0., 0., 0., 0., -inf, -inf],\n         [0., 0., 0., 0., -inf, -inf]]])\n'''\nattn += mask\nattn = softmax(attn)\nprint(attn)\n'''\ntensor([[[7.2725e-01, 1.4629e-03, 2.6949e-01, 1.7929e-03, 0.0000e+00,\n          0.0000e+00],\n         [1.4819e-01, 6.5444e-03, 1.0565e-05, 8.4526e-01, 0.0000e+00,\n          0.0000e+00],\n         [1.0830e-02, 7.3555e-01, 2.4050e-01, 1.3125e-02, 0.0000e+00,\n          0.0000e+00],\n         [1.0847e-02, 9.8162e-01, 6.8870e-03, 6.4141e-04, 0.0000e+00,\n          0.0000e+00],\n         [1.1121e-01, 7.8785e-01, 5.9839e-05, 1.0088e-01, 0.0000e+00,\n          0.0000e+00],\n         [1.1121e-01, 7.8785e-01, 5.9839e-05, 1.0088e-01, 0.0000e+00,\n          0.0000e+00]]], grad_fn=<SoftmaxBackward>)\n'''\n```\n\n- Position Mask\n\n众所周知，在解码的时候，首先还是对decode_input做自注意处理，这个时候我们需要输入进一个词从而让机器决定下一个可能出现的词，若对decode_input不做处理的话，全部看到就犯规了，等于白训练。\n\n即position mask的作用是让某位置只能关照它和它之前的位置，而不是之后的位置也可以看到。\n\n```python\ndef generate_square_subsequent_mask(sz: int):\n    mask = (torch.triu(torch.ones(sz, sz)) == 1).transpose(0, 1)\n    mask = mask.float().masked_fill(mask == 0, float('-inf')).masked_fill(mask == 1, float(0.0))\n    return mask\n```\n\n不妨继续上面的例子，q依旧是`[[2, 3, 4, 1, 0, 0]](tensor形式)`，此时q变成了解码器里面的输入，不仅要遮挡住`<PAD>`，同时还得让每个位置只能瞻前不能顾后\n\n```python\nposition_mask = generate_square_subsequent_mask(q.size[-1])\nprint(position_mask)\n'''\ntensor([[0., -inf, -inf, -inf, -inf, -inf],\n        [0., 0., -inf, -inf, -inf, -inf],\n        [0., 0., 0., -inf, -inf, -inf],\n        [0., 0., 0., 0., -inf, -inf],\n        [0., 0., 0., 0., 0., -inf],\n        [0., 0., 0., 0., 0., 0.]])\n'''\n# 整合PAD MASK和位置遮挡\nattn_mask = mask + position_mask\nattn += attn_mask\nattn = softmax(attn)\nprint(attn)\n'''\ntensor([[[1.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000],\n         [0.2119, 0.7881, 0.0000, 0.0000, 0.0000, 0.0000],\n         [0.1788, 0.6952, 0.1260, 0.0000, 0.0000, 0.0000],\n         [0.1402, 0.2170, 0.1522, 0.4907, 0.0000, 0.0000],\n         [0.1363, 0.0096, 0.0186, 0.8355, 0.0000, 0.0000],\n         [0.1363, 0.0096, 0.0186, 0.8355, 0.0000, 0.0000]]],\n       grad_fn=<SoftmaxBackward>)\n'''\n```\n\n两种seq2seq模型必备的注意力机制到此为止，接下来讲一下transformer翻译模型的各个模块\n***\n\n### <div id='model'>模型搭建</div>\n\n关于Transformer的[原理](transformer.md)以及[源码](transformer_.md)（PyTorch）并不是本文的重点，如有不了解的地方，按照相应的地方进行了解。\n\n- Positional Encoding\n\n这里我多返回了一个位置矩阵用以后面可视化\n\n```python\nTensor = torch.Tensor\n# 给一个tensor所有位置的位置编码\ndef positional_encoding(X, num_features, dropout_p=0.1, max_len=128) -> Tensor:\n    r'''\n        给输入加入位置编码\n    参数：\n        - num_features: 输入进来的维度\n        - dropout_p: dropout的概率，当其为非零元素时执行dropout\n        - max_len: 句子的最大长度，默认512\n    \n    形状：\n        - 输入： [batch_size, seq_length, num_features]\n        - 输出： [batch_size, seq_length, num_features]\n\n    例子：\n        >>> X = torch.randn((2,4,10))\n        >>> X = positional_encoding(X, 10)\n        >>> print(X.shape)\n        >>> torch.Size([2, 4, 10])\n    '''\n\n    dropout = nn.Dropout(dropout_p)\n    P = torch.zeros((1,max_len,num_features))\n    X_ = torch.arange(max_len,dtype=torch.float32).reshape(-1,1) / torch.pow(\n        10000,\n        torch.arange(0,num_features,2,dtype=torch.float32) /num_features)\n    P[:,:,0::2] = torch.sin(X_)\n    P[:,:,1::2] = torch.cos(X_)\n    X = X + P[:,:X.shape[1],:].to(X.device)\n    return dropout(X), P\n```\n定义可视化注意力图函数\n```python\ndef draw_pos_encoding(pos_encoding, d_model):\n    plt.figure()\n    plt.pcolormesh(pos_encoding[0],cmap=\"RdBu\")\n    plt.xlabel(\"Depth\")\n    plt.xlim((0, d_model))\n    plt.ylabel(\"Position\")\n    plt.colorbar()\n    plt.show()\n\nX = torch.randn((2,4,128))\npos_encoding = positional_encoding(X, 128)\ndraw_pos_encoding(pos_encoding[1], 128)\n```\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/pos.png)\n\n\n- MASK \n\n上述的讲解以及大多数情况pad mask均为0，这里torchtext是1，尤其小心！\n\n```python\n# 在NLP中，<PAD>用以填充句子，而这没有携带任何信息，故需要被mask掉\n# 返回True和False组成的mask\ndef get_attn_pad_mask(seq_q, seq_k):\n    batch_size, len_q = seq_q.size()\n    batch_size, len_k = seq_k.size()\n    # eq(1) 即为<PAD>\n    # 注意torchtext是<pad>为1而非0\n    pad_attn_mask = seq_k.data.eq(1).unsqueeze(1)\n    return pad_attn_mask.expand(batch_size, len_q, len_k)\n\n# 返回1，0组成的mask\ndef get_attn_subsequent_mask(seq):\n    attn_shape = [seq.size(0), seq.size(1), seq.size(1)]\n    subsequent_mask = torch.triu(torch.ones(attn_shape),1)\n    subsequent_mask = subsequent_mask.byte()\n    return subsequent_mask\n```\n\n- ScaledDotProductAttention\n\n```python\nclass ScaledDotProductAttention(nn.Module):\n    def __init__(self):\n        super(ScaledDotProductAttention, self).__init__()\n\n    def forward(self, Q, K, V, attn_mask):\n        # scores : [batch_size x n_heads x len_q(=len_k) x len_k(=len_q)]\n        scores = torch.matmul(Q, K.transpose(-1, -2)) / np.sqrt(d_k) \n        # 1的位置全部填充以忽略\n        scores.masked_fill_(attn_mask, -1e9)\n        attn = nn.Softmax(dim=-1)(scores)\n        context = torch.matmul(attn, V)\n        return context, attn\n```\n\n下面的矩阵初始化以及乘积可能有些迷惑，先看一个引例\n\n```python\nw = nn.Linear(128, 10 * 8)\nq = torch.randn((10, 10, 128))\n# 第一个10不动，(10 x 128) x (128 x 80) => 10 x 80\n# 无转置，其实是q x w\nw(q).shape\n# torch.Size([10, 10, 80])\n```\n\n\n- MultiHeadAttention\n\n```python\nclass MultiHeadAttention(nn.Module):\n    def __init__(self):\n        super(MultiHeadAttention, self).__init__()\n        self.W_Q = nn.Linear(d_model, d_k * n_heads)\n        self.W_K = nn.Linear(d_model, d_k * n_heads)\n        self.W_V = nn.Linear(d_model, d_v * n_heads)\n        self.linear = nn.Linear(n_heads * d_v, d_model)\n        self.layer_norm = nn.LayerNorm(d_model)\n\n    def forward(self, Q, K, V, attn_mask):\n        # Q: [batch_size x len_q x d_model], K: [batch_size x len_k x d_model], V: [batch_size x len_k x d_model]\n\n        residual, batch_size = Q, Q.size(0)\n        \n        # (B, S, D) -proj-> (B, S, D) -split-> (B, S, H, W) -trans-> (B, H, S, W)\n        # q_s: [batch_size x n_heads x len_q x d_k]\n        q_s = self.W_Q(Q).view(batch_size, -1, n_heads, d_k).transpose(1,2)\n        \n        # k_s: [batch_size x n_heads x len_k x d_k]  \n        k_s = self.W_K(K).view(batch_size, -1, n_heads, d_k).transpose(1,2)\n        \n        # v_s: [batch_size x n_heads x len_k x d_v]  \n        v_s = self.W_V(V).view(batch_size, -1, n_heads, d_v).transpose(1,2)  \n        \n        # attn_mask : [batch_size x n_heads x len_q x len_k]\n        attn_mask = attn_mask.unsqueeze(1).repeat(1, n_heads, 1, 1)\n        \n        # context: [batch_size x n_heads x len_q x d_v]\n        # attn: [batch_size x n_heads x len_q(=len_k) x len_k(=len_q)]\n        context, attn = ScaledDotProductAttention()(q_s, k_s, v_s, attn_mask)\n        \n        # context: [batch_size x len_q x n_heads * d_v]\n        context = context.transpose(1, 2).contiguous().view(batch_size, -1, n_heads * d_v) \n        \n        # output: [batch_size x len_q x d_model]\n        output = self.linear(context)\n        return self.layer_norm(output + residual), attn \n```\n\n\n- PoswiseFeedForwardNet\n\n\n```python\nclass PoswiseFeedForwardNet(nn.Module):\n    def __init__(self):\n        super(PoswiseFeedForwardNet, self).__init__()\n        self.linear1 = nn.Linear(d_model, d_ff)\n        self.linear2 = nn.Linear(d_ff, d_model)\n        self.layer_norm = nn.LayerNorm(d_model)\n        self.dropout = nn.Dropout(0.1)\n    \n    def forward(self, inputs):\n        residual = inputs \n        output = self.dropout(nn.ReLU()(self.linear1(inputs)))\n        output = self.layer_norm(self.dropout(self.linear2(output)) + residual)\n        return output\n```\n\n- EncoderLayer\n\n在Encode的时候我们只需要使用pad_mask即可，PyTorch的transformer库有很多mask，如src_mask，src_key_padding_mask，前者按照官方的意思是让某些位置被忽略，后者是与pad_mask等价的，在训练Encoder的时候，两者等价，只需要一个src_key_padding_mask即可，这里即为`enc_self_attn_mask`\n\n```python\nclass EncoderLayer(nn.Module):\n    def __init__(self):\n        super(EncoderLayer, self).__init__()\n        self.enc_self_attn = MultiHeadAttention()\n        self.pos_ffn = PoswiseFeedForwardNet()\n\n    def forward(self, enc_inputs, enc_self_attn_mask):\n        enc_outputs, attn = self.enc_self_attn(enc_inputs, enc_inputs, enc_inputs, enc_self_attn_mask) \n        enc_outputs = self.pos_ffn(enc_outputs)\n        return enc_outputs, attn\n```\n\n- DecoderLayer\n\n记得上面的dec_inputs是两种MASK结合一起的，即为`dec_self_attn_mask`，`dec_enc_self_mask`是针对enc_inputs来说的key_padding_mask，与上面的enc_self_attn_mask本质一致，只是shape不一样，一个是`[batch_size, enc_size, enc_size]`，另一个是`[batch_size, dec_size, enc_size]`。\n\ndec_inputs首先经过解码器的自注意运算，然后充当query去查enc_outputs\n\n```python\nclass DecoderLayer(nn.Module):\n    def __init__(self):\n        super(DecoderLayer, self).__init__()\n        self.dec_self_attn = MultiHeadAttention()\n        self.dec_enc_attn = MultiHeadAttention()\n        self.pos_ffn = PoswiseFeedForwardNet()\n\n    def forward(self, dec_inputs, enc_outputs, dec_self_attn_mask, dec_enc_attn_mask):\n        dec_outputs, dec_self_attn = self.dec_self_attn(dec_inputs, dec_inputs, dec_inputs, dec_self_attn_mask)\n        dec_outputs, dec_enc_attn = self.dec_enc_attn(dec_outputs, enc_outputs, enc_outputs, dec_enc_attn_mask)\n        dec_outputs = self.pos_ffn(dec_outputs)\n        return dec_outputs, dec_self_attn, dec_enc_attn\n```\n\n- Encoder\n\n注意其实源语言和目标语言不共用一个Embedding\n\n```python\nclass Encoder(nn.Module):\n    def __init__(self):\n        super(Encoder, self).__init__()\n        self.src_emb = nn.Embedding(src_vocab_size, d_model)\n        self.layers = nn.ModuleList([EncoderLayer() for _ in range(n_layers)])\n        self.dropout = nn.Dropout(0.1)\n\n    def forward(self, enc_inputs):\n        enc_outputs = self.dropout(positional_encoding(self.src_emb(enc_inputs), d_model)[0])\n        enc_self_attn_mask = get_attn_pad_mask(enc_inputs, enc_inputs).to(device)\n        enc_self_attns = []\n        for layer in self.layers:\n            enc_outputs, enc_self_attn = layer(enc_outputs, enc_self_attn_mask)\n            enc_self_attns.append(enc_self_attn)\n        return enc_outputs, enc_self_attns\n```\n\n- Decoder\n```python\nclass Decoder(nn.Module):\n    def __init__(self):\n        super(Decoder, self).__init__()\n        self.tgt_emb = nn.Embedding(tgt_vocab_size, d_model)\n        self.layers = nn.ModuleList([DecoderLayer() for _ in range(n_layers)])\n\n    def forward(self, dec_inputs, enc_inputs, enc_outputs):\n        dec_outputs = positional_encoding(self.tgt_emb(dec_inputs), d_model)[0]\n        dec_self_attn_pad_mask = get_attn_pad_mask(dec_inputs, dec_inputs).to(device)\n        dec_self_attn_subsequent_mask = get_attn_subsequent_mask(dec_inputs).to(device)\n        # torch.gt严格大于\n        dec_self_attn_mask = torch.gt((dec_self_attn_pad_mask + dec_self_attn_subsequent_mask), 0)\n\n        dec_enc_attn_mask = get_attn_pad_mask(dec_inputs, enc_inputs).to(device)\n\n        dec_self_attns, dec_enc_attns = [], []\n        for layer in self.layers:\n            dec_outputs, dec_self_attn, dec_enc_attn = layer(dec_outputs, enc_outputs, \n            dec_self_attn_mask, dec_enc_attn_mask)\n            dec_self_attns.append(dec_self_attn)\n            dec_enc_attns.append(dec_enc_attn)\n        return dec_outputs, dec_self_attns, dec_enc_attns\n```\n\n- Transformer\n\n```python\nclass Transformer(nn.Module):\n    def __init__(self):\n        super(Transformer, self).__init__()\n        self.encoder = Encoder()\n        self.decoder = Decoder()\n        self.projection = nn.Linear(d_model, tgt_vocab_size, bias=False)\n    def forward(self, enc_inputs, dec_inputs):\n        enc_outputs, enc_self_attns = self.encoder(enc_inputs)\n        dec_outputs, dec_self_attns, dec_enc_attns = self.decoder(dec_inputs, enc_inputs, enc_outputs)\n        dec_logits = self.projection(dec_outputs) \n        return dec_logits, enc_self_attns, dec_self_attns, dec_enc_attns\n```\n***\n### <div id='special'>自定义学习率</div>\n\n按照论文里面的，我们还需要自定义学习率，不难发现一开始学习率上升比较快，后期学习率缓慢下降，最终趋于平衡\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/math.png)\n\n```python\nclass CustomSchedule(torch.optim.lr_scheduler._LRScheduler):\n    def __init__(self, optimizer, warm_steps=4):\n        self.optimizer = optimizer\n        self.warmup_steps = warm_steps\n\n        super(CustomSchedule, self).__init__(optimizer)\n\n    def get_lr(self):\n        arg1 = self._step_count ** (-0.5)\n        arg2 = self._step_count * (self.warmup_steps ** (-1.5))\n        dynamic_lr = (d_model ** (-0.5)) * min(arg1, arg2)\n        return [dynamic_lr for group in self.optimizer.param_groups]\n```\n\n接下来可视化看一下学习率的变化情况\n\n```python\n# 测试\nimport warnings\nwarnings.filterwarnings(\"ignore\")\n\nn_layers, d_model, n_heads, d_ff  = 6, 512, 8, 2048\n\nsrc_vocab_size = len(SRC_TEXT.vocab) \ntgt_vocab_size = len(TGT_TEXT.vocab) \n\nd_k = d_v = d_model // n_heads\n\nmodel = Transformer().to(device)\noptimizer = torch.optim.Adam(model.parameters(), lr=0, betas=(0.9, 0.98), eps=1e-9)\nlearning_rate = CustomSchedule(optimizer, warm_steps=4000)\n\n\nlr_list = []\nfor i in range(1, 20000):\n    learning_rate.step()\n    lr_list.append(learning_rate.get_lr()[0])\nplt.figure()\nplt.plot(np.arange(1, 20000), lr_list)\nplt.legend(['warmup=4000 steps'])\nplt.ylabel(\"Learning Rate\")\nplt.xlabel(\"Train Step\")\nplt.show()\n```\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/lr.png)\n\n***\n### <div id='mix'>train和validation</div>\n\n先是train_step，详见注释\n\n```python\ndef train_step(inp,tgt,criterion):\n    # 采取teacher_forcing，将上一个时间步的标签直接输入模型\n    tgt_input = tgt[:,:-1]\n    tgt_real = tgt[:,1:]\n\n    # to(device)不能少，否则默认cpu\n    inp = inp.to(device)\n    tgt_input = tgt_input.to(device)\n    tgt_real = tgt_real.to(device)\n\n    model.train()\n    optimizer.zero_grad()\n\n    # pred ==> [bz, seq_len, vocab_size]\n    # tgt_real ==> [bz, seq_len]\n    pred, enc_self_attns, dec_self_attns, dec_enc_attns = model(inp, tgt_input)\n    # pdb.set_trace()\n    # transformed_pred ==> [bz x seq_len, vocab_size]\n    # transformed_tgt_real ==> [bz x seq_len, ]\n    loss = criterion(pred.view(-1, pred.size(-1)), tgt_real.contiguous().view(-1))\n    # sum()不能忘，item()只能转换标量值为python值而非向量\n    loss_ = loss.sum().item()\n\n    # pred_ ==> [bz, seq_len]\n    pred_ = pred.argmax(dim=-1)\n    acc = pred_.eq(tgt_real)\n    # acc计算比例需要算占总比多少\n    # 画图时必须要item()\n    acc = (acc.sum()/ tgt.size(0)/ tgt.size(1)).item()\n\n    loss.backward()\n    optimizer.step()\n\n    return loss_, acc \n```\n\n注意这个是随机的，所以每一次的结果都不一样\n\n```python\n# 检查train_step()的效果\ncriterion = nn.CrossEntropyLoss()\nbatch_src, batch_tgt = next(iter(train_dataloader))\ntrain_step(batch_src, batch_tgt, criterion)\n\n# (8.144109725952148, 0.0)\n```\n\n```python\ndef validation_step(inp, tgt, criterion):\n    tgt_input = tgt[:,:-1]\n    tgt_real = tgt[:,1:]\n\n    inp = inp.to(device)\n    tgt_input = tgt_input.to(device)\n    tgt_real = tgt_real.to(device)\n\n    model.eval()\n\n    with torch.no_grad():\n        pred, _, _, _ = model(inp, tgt_input)\n        val_loss = criterion(pred.view(-1, pred.size(-1)), tgt_real.contiguous().view(-1))\n        val_loss = val_loss.sum().item()\n\n        pred_ = pred.argmax(dim=-1)\n        val_acc = pred_.eq(tgt_real)\n        val_acc = (val_acc.sum()/ tgt.size(0)/ tgt.size(1)).item()\n    return val_loss, val_acc\n```\n\n***\n### <div id='train'>模型训练</div>\n\n```python\nEPOCHS = 20\n\nprint_trainstep_every = 50\n\nlr_scheduler = CustomSchedule(optimizer, warm_steps=4000)\n\n# 存储数据\ndf_history = pd.DataFrame(columns=[\"epoch\",\"loss\",\"acc\",\"val_loss\",\"val_acc\"])\n\n# 打印时间\ndef printbar():\n    nowtime = datetime.datetime.now().strftime('%Y-%m_%d %H:%M:%S')\n    print('\\n' + \"==========\"*4 + '%s'%nowtime + \"==========\"*4)\n```\n\n```python\nsave_dir = \"train\"\ndef train_model(epochs, train_dataloader, val_dataloader, print_every):\n    starttime = time.time()\n    print('\\n' + \"==========\"*4 + \"start training\" + \"==========\"*4)\n    best_acc = 0.81\n    for epoch in range(1, epochs + 1):\n\n        loss_sum = 0\n        acc_sum = 0\n\n        for step, (inp, tgt) in enumerate(train_dataloader, start=1):\n            loss, acc = train_step(inp, tgt, criterion)\n            loss_sum += loss\n            acc_sum += acc \n\n            # 打印batch级别信息\n            if step % print_every == 0:\n                print('*' * 8, f'[step = {step}] loss: {loss_sum / step:.3f}, {\"acc\"}: {acc_sum / step:.3f}')\n            \n            # 更新学习率\n            lr_scheduler.step()\n        # 一个epoch结束，做一次验证\n        val_loss_sum = 0\n        val_acc_sum = 0\n        for val_step, (inp, tgt) in enumerate(val_dataloader, start=1):\n            val_loss, val_acc = validation_step(inp, tgt, criterion)\n            val_loss_sum += val_loss\n            val_acc_sum += val_acc \n        \n        # 记录收集一个epoch的信息\n        # 与列对应\n        # epoch从0开始\n        record = (epoch, loss_sum/step, acc_sum/step, val_loss_sum/val_step, val_acc_sum/val_step) \n        df_history.loc[epoch-1] = record\n        # 打印epoch级别的日志\n        print('EPOCH = {} loss: {:.3f}, {}: {:.3f}, val_loss: {:.3f}, val_{}: {:.3f}'.format(\n        record[0], record[1], \"acc\", record[2], record[3], \"acc\", record[4]))\n        printbar()\n        current_acc_avg = val_acc_sum / val_step \n        # 若大于基础正确率，则保存\n        if current_acc_avg > best_acc:\n            best_acc = current_acc_avg\n            checkpoint = save_dir + '{:03d}_{:.2f}_ckpt.tar'.format(epoch, current_acc_avg)\n            \n            # 若只是普通保存，则只会保留基础网络结构而非具体参数\n            model_sd = copy.deepcopy(model.state_dict())\n            torch.save({\n                'loss': loss_sum / step,\n                'epoch': epoch,\n                'net': model_sd,\n                'opt': optimizer.state_dict(),\n                'lr_scheduler': lr_scheduler.state_dict()\n            }, checkpoint)\n        print('finishing training...')\n    \n    # 时间记录\n    endtime = time.time()\n    time_elapsed = endtime - starttime\n    print('Training complete in {:.0f}m {:.0f}s'.format(time_elapsed // 60, time_elapsed % 60))\n    return df_history\n```\n\n```python\n# 开始训练\ndf_history = train_model(EPOCHS, train_dataloader, val_dataloader, print_trainstep_every)\nprint(df_history)\n```\n\n截取部分，如下：\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/show.png)\n\n\n接下来把训练结果可视化：\n\n```python\ndef plot_metric(df_history, metric):\n    plt.figure()\n\n    train_metrics = df_history[metric]\n    val_metrics = df_history[\"val_\" + metric]\n\n    # epochs变为列表，才能画\n    epochs = range(1, len(train_metrics) + 1)\n\n    plt.plot(epochs, train_metrics, \"bo--\")\n    plt.plot(epochs, val_metrics, \"ro--\")\n\n    plt.title(\"Training and validation \" + metric)\n    plt.xlabel(\"Epochs\")\n    plt.ylabel(metric)\n    plt.legend([\"train_\" + metric,\"val_\" + metric])\n    plt.savefig(metric + \" conv\" + \".png\")\n    plt.show()\n\nplot_metric(df_history, \"loss\")\nplot_metric(df_history, \"acc\")\n```\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/1.png)\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/2.png)\n\n***\n### <div id='eval'>评估</div>\n\n加载模型\n\n```python\n# 具体看保存哪个，需要自行修改\ncheckpoint = \"/content/train015_0.82_ckpt.tar\"\nprint(\"checkpoint:\",checkpoint)\n\nckpt = torch.load(checkpoint)\n\ntransformer_sd = ckpt[\"net\"]\n\nreload_model = Transformer().to(device)\nreload_model.load_state_dict(transformer_sd)\n```\n\n```python\ndef tokenizer_encode(tokenize, sentence, vocab):\n    sentence = normalizeString(sentence)\n\n    sentence = tokenize(sentence)\n    sentence = [\"<start>\"] + sentence + [\"<end>\"]\n    sentence_ids = [vocab.stoi[token] for token in sentence]\n    return sentence_ids\n\ndef tokenizer_decode(sentence_ids, vocab):\n    sentence = [vocab.itos[id] for id in sentence_ids if id < len(vocab)]\n    return \" \".join(sentence)\n```\n\n```python\n# 只有一个句子，不需要加pad\ns = 'je pars en vacances pour quelques jours .'\nprint(tokenizer_encode(tokenizer, s, SRC_TEXT.vocab))\n\ns_ids = [3, 5, 251, 17, 365, 35, 492, 390, 4, 2]\nprint(tokenizer_decode(s_ids, SRC_TEXT.vocab))\nprint(tokenizer_decode(s_ids, TGT_TEXT.vocab))\n\n# [3, 5, 251, 17, 365, 35, 492, 390, 4, 2]\n# <start> je pars en vacances pour quelques jours . <end>\n# <start> i tennis very forgetful me helping bed . <end>\n```\n评估函数\n\n```python\ndef evaluate(inp_sentence):\n    reload_model.eval()\n    \n    inp_sentence_ids = tokenizer_encode(tokenizer, inp_sentence, SRC_TEXT.vocab)\n    # =>[b=1, inp_seq_len=10]\n    encoder_input = torch.tensor(inp_sentence_ids).unsqueeze(dim=0)\n\n    # 预估时一句对一句，decode_input为<start>\n    decoder_input = [TGT_TEXT.vocab.stoi[\"<start>\"]]\n    # =>[b=1, inp_seq_len=1]    \n    decoder_input = torch.tensor(decoder_input).unsqueeze(0)\n\n    encoder_input = encoder_input.to(device)\n    decoder_input = decoder_input.to(device)\n\n    with torch.no_grad():\n        for i in range(MAX_LENGTH + 2):\n            # pred ==> [b=1, 1(len_q), tgt_vocab_size]\n            pred, enc_self_attns, dec_self_attns, dec_enc_attns = reload_model(encoder_input, decoder_input)\n            # 最后一个词\n            # pdb.set_trace()\n            pred = pred[:,-1:,:]\n            # pred_ids ==> [1,1]\n            pred_ids = torch.argmax(pred, dim=-1)\n\n            if pred_ids.squeeze().item() == TGT_TEXT.vocab.stoi[\"<end>\"]:\n              return decoder_input.squeeze(dim=0), dec_enc_attns\n            \n            # [b=1, tgt_seq_len=1] ==> [b=1, tgt_seq_len=2]\n            # deocder_input不断变长\n            decoder_input = torch.cat([decoder_input, pred_ids],dim=-1)\n    return decoder_input.squeeze(dim=0), dec_enc_attns\n```\n\n```python\ns = 'je pars en vacances pour quelques jours .'\ns_targ = 'i m taking a couple of days off .'\npred_result, attention_weights = evaluate(s)\npred_sentence = tokenizer_decode(pred_result, TGT_TEXT.vocab)\nprint('real target:', s_targ)\nprint('pred_sentence:', pred_sentence)\n\n# real target: i m taking a couple of days off .\n# pred_sentence: <start> i m taking a couple of days off .\n```\n\n```python\n# 批量翻译\nsentence_pairs = [\n    ['je pars en vacances pour quelques jours .', 'i m taking a couple of days off .'],\n    ['je ne me panique pas .', 'i m not panicking .'],\n    ['je recherche un assistant .', 'i am looking for an assistant .'],\n    ['je suis loin de chez moi .', 'i m a long way from home .'],\n    ['vous etes en retard .', 'you re very late .'],\n    ['j ai soif .', 'i am thirsty .'],\n    ['je suis fou de vous .', 'i m crazy about you .'],\n    ['vous etes vilain .', 'you are naughty .'],\n    ['il est vieux et laid .', 'he s old and ugly .'],\n    ['je suis terrifiee .', 'i m terrified .'],\n]\n\n\ndef batch_translate(sentence_pairs):\n    for pair in sentence_pairs:\n        print('input:', pair[0])\n        print('target:', pair[1])\n        pred_result, _ = evaluate(pair[0])\n        pred_sentence = tokenizer_decode(pred_result, TGT_TEXT.vocab)\n        print('pred:', pred_sentence)\n        print('')\n\nbatch_translate(sentence_pairs)\n```\n截取部分\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/res.png)\n\n最终可视化注意力权重\n\n```python\n# 可视化attenton 这里我们只展示...block2的attention，即[b, num_heads, tgt_seq_len, inp_seq_len]\n# attention: {'decoder_layer{i + 1}_block1': [b, num_heads, tgt_seq_len, tgt_seq_len],\n#             'decoder_layer{i + 1}_block2': [b, num_heads, tgt_seq_len, inp_seq_len], ...}\n# sentence: [seq_len]，例如：'je recherche un assistant .'\n# pred_result: [seq_len]，例如：'<start> i m looking for an assistant .'\n# layer: 表示模型decoder的N层decoder-layer的第几层的attention，形如'decoder_layer{i}_block1'或'decoder_layer{i}_block2'\ndef plot_attention_weights(attention, sentence, pred_sentence, layer):\n    sentence = sentence.split()\n    pred_sentence = pred_sentence.split()\n    # pdb.set_trace()\n    fig = plt.figure(figsize=(16, 8))\n\n    # block2 attention[layer] => [b=1, num_heads, targ_seq_len, inp_seq_len]\n    # attention为列表，长度为层数6\n    attention = torch.squeeze(attention[layer], dim=0) # => [num_heads, targ_seq_len, inp_seq_len]\n\n    for head in range(attention.shape[0]):\n        # 111是单个整数编码的子绘图网格参数。例如，“111”表示“1×1网格，第一子图”，“234”表示“2×3网格，第四子图”\n\n        ax = fig.add_subplot(2, 4, head + 1)  \n        cax = ax.matshow(attention[head].cpu(), cmap='viridis')  # 绘制网格热图，注意力权重\n        # fig.colorbar(cax)#给子图添加colorbar（颜色条或渐变色条）\n\n        fontdict = {'fontsize': 10}\n\n        # 设置轴刻度线\n        ax.set_xticks(range(len(sentence)+2))  # 算上start和end\n        ax.set_yticks(range(len(pred_sentence)))\n\n        ax.set_ylim(len(pred_sentence) - 1.5, -0.5)  # 设定y座标轴的范围\n\n        # 设置轴\n        ax.set_xticklabels(['<start>']+sentence+['<end>'], fontdict=fontdict, rotation=90)  # 顺时间旋转90度\n        ax.set_yticklabels(pred_sentence, fontdict=fontdict)\n\n        ax.set_xlabel('Head {}'.format(head + 1))\n    plt.tight_layout()\n    plt.show()\n\n\ndef translate(sentence_pair, plot=None):\n    print('input:', sentence_pair[0])\n    print('target:', sentence_pair[1])\n    pred_result, attention_weights = evaluate(sentence_pair[0])\n    # print('attention_weights:', attention_weights[0])\n    # pdb.set_trace()\n    pred_sentence = tokenizer_decode(pred_result, TGT_TEXT.vocab)\n    print('pred:', pred_sentence)\n    print('')\n\n    if plot:\n        plot_attention_weights(attention_weights, sentence_pair[0], pred_sentence, plot)\n\n\ntranslate(sentence_pairs[0], plot=1)\ntranslate(sentence_pairs[2], plot=2)\n```\n\n```python\n# input: je pars en vacances pour quelques jours .\n# target: i m taking a couple of days off .\n# pred: <start> i m taking a couple of days off .\n```\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/attn.png)\n\n```python\n# input: je recherche un assistant .\n# target: i am looking for an assistant .\n# pred: <start> i am looking for an assistant .\n```\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/attn_.png)\n\n***\n### <div id='discuss'>讨论</div>\n\n接下来列举了一些有趣的讨论：\n\n- 卷积代替全连接？\n\n这里使用的是1 x 1的卷积，不会改变shape，只会改变通道数，具体关于这方面的阐述，请移步[CNN](https://github.com/sherlcok314159/ML/blob/main/NN/CNN/cnn.md)，这样的话就是不同通道之间进行线性组合，如原来的通道数由2变为1，则原来两个相加，卷积的时候也是进行矩阵乘法运算。全连接层也是乘上参数矩阵，这两者应该差不多，详见下方：\n\n```python\nclass PoswiseFeedForwardNet(nn.Module):\n    def __init__(self):\n        super(PoswiseFeedForwardNet, self).__init__()\n        self.conv1 = nn.Conv1d(in_channels=d_model, out_channels=d_ff, kernel_size=1)\n        self.conv2 = nn.Conv1d(in_channels=d_ff, out_channels=d_model, kernel_size=1)\n        self.layer_norm = nn.LayerNorm(d_model)\n\n    def forward(self, inputs):\n        residual = inputs # inputs : [batch_size, len_q, d_model]\n        output = nn.ReLU()(self.conv1(inputs.transpose(1, 2)))\n        output = self.conv2(output).transpose(1, 2)\n        return self.layer_norm(output + residual)\n```\n\n以下是我训练的结果，其实结果证明确实是差不多的，前两张为全连接层\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/1.png)\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/2.png)\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/cov1.png)\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/conv2.png)\n\n- Bert作为Encoder?\n\n写完transformer的教程本打算直接硬上bert来train一发，看了论文才发现事情没那么简单。ICLR2020这篇Incorporating BERT into Neural Machine Translation（参考文献第二个）详细讲了这件事，总结来说就是一般情况使用bert结果不会好反倒糟，不值得花气力，当然，如果要在词料丰富和词料贫乏的语言之间构造翻译器，那么bert作为encoder可能有奇效。\n\n- 多头注意力真的那么有效？\n\n为了验证多头注意力是否真的像论文说的那么有效，这里将注意力头数目改为1，其实光一个头也可以有不错的结果，多头注意力不是很强，强的是注意力机制\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/one_head.png)\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/one_head_1.png)\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/one_head_2.png)\n\n看一下注意力权重图，不难发现其实关照的和上面多头的差不多\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/one.png)\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/one_2.png)\n\n- epoch越多越好？\n\n我设了两组对照，分别为20和40，两组的原因是40中包括了其他大于20的，其实到20差不多已经饱和了，为了节省时间，还是设置20来的划算\n\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/20.png)\n \n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/40.png)\n\n***\n### <div id='references'>参考文献</div>\n\nhttps://arxiv.org/abs/1409.0473\n\nhttps://arxiv.org/pdf/2002.06823.pdf\n\n[Step By Step](https://blog.csdn.net/xixiaoyaoww/article/details/105683495?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522162246804316780271557962%2522%252C%2522scm%2522%253A%252220140713.130102334.pc%255Fblog.%2522%257D&request_id=162246804316780271557962&biz_id=0&utm_medium=distribute.pc_search_result.none-task-blog-2~blog~first_rank_v2~rank_v29-1-105683495.nonecase&utm_term=%E7%BF%BB%E8%AF%91&spm=1018.2226.3001.4450)\n\nhttps://blog.csdn.net/u010366748/article/details/111269231\n"
  },
  {
    "path": "nlp/practice/sentiment.md",
    "content": "### 中文情感分类单标签\n\n**章节**\n- [背景介绍](#bg)\n- [预处理](#preprocess)\n\n\n**<div id='bg'>背景介绍</div>**\n\n这次的任务是中文的一个评论情感去向分类\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/data_.png)\n\n每一行一共有三个部分，第一个是索引，无所谓；第二个是评论具体内容；第三个是标签，由0，1，2组成，1代表很好，2是负面评论，0应该是情感取向中立。\n\n***\n\n**<div id='preprocess'>数据预处理</div>**\n\nbert模型是可以通用的，但是不同数据需要通过预处理来达到满足bert输入的标准才行。\n\n首先，我们创造一个读入自己数据的类，名为MyDataProcessor。其实，这个可以借鉴一下谷歌写好的例子，比如说MrpcProcessor。\n\n首先将DataProcessor类复制粘贴一下，然后命名为MyDataProcessor，别忘了继承一下DataProcessor。\n\n接下来我们以get_train_examples为例来简单介绍一下如何读入自己的数据。\n\n第一步我们需要读取文件进来，这里需要注意的是中文要额外加一个utf-8编码。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/file.png)\n\n读取好之后，这里模仿创建train_data为空列表，索引值为0。\n\n代码主体跟其他的差不多，有区别的是我们这里并没有用DataProcessor的_read_tsv方法，所以文件分割部分我们得自己写。同时因为中文每行结束会有换行符（\"\\n\"），需要换为空白。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/tsv.png)\n\n至于dev和test数据集处理方式大同小异，只需要将名字换一下，这里不多赘述，这里放了处理训练集的完整函数。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/train.png)\n\n然后get_labels方法，里面写具体的labels，这里是0，1，2，那么就是0，1，2，注意不要忘了带上英文引号就行。\n\n最重要的是去main(_)方法下面添加自己定义的数据处理类别\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/my.png)\n\n模型去bert官方下载中文的预训练模型，其他的对着改改就好，相信看过我的[文本分类](../tasks/text.md)的剩下的都不需要多说。\n\n跑出来的结果如下，我用的是Tesla K80，白嫖Google Colab的，用时1h17min47s。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/result.png)\n\n\n\n"
  },
  {
    "path": "nlp/preprocess.md",
    "content": "实战中数据往往不会像教程中的那样已经处理好，直接套模型就好，其实往往在数据的处理以及加载上花较多的时间，本文介绍在送往模型之前，如何处理文本数据以及如何在训练过程中读入。\n\n**目录**\n\n- [读取数据](#load)\n- [清洗数据](#clean)\n- [Dataset对象](#dataset)\n- [DataLoader](#dataloader)\n\n### <div id='load'>读取数据</div>\n\n- 读取csv/tsv\n\n首先，选择的csv文件视图如下，以`\\t`作为分隔符：\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/example.png)\n\n可以读取csv的方法大致分为`open()`和`pandas.read_csv()`两种，下面介绍两种方法的优点：\n\n一般用`open`会与`csv.reader()`组合起来，每一行对应一个小列表，最终用大列表储存，好处是方便遍历\n\n```python\ndef read_csv(your_file):\n    with open(your_file, \"r\", encoding=\"utf-8\") as f:\n        return list(csv.reader(f, delimiter=\"\\t\"))\n\nExample:\n\nfor line in read_csv(your_file):\n    print(line)\n    print(line[2])\n    break\n\n['id', 'title', 'body', 'category', 'doctype']\nbody\n```\n\n第二种是通过pandas进行读取，读取后是DataFrame对象\n\n```python\nimport pandas as pd\ntrain = pd.read_csv(your_file, sep=\"\\t\", encoding=\"utf-8\")\n\nprint(type(train))\n<class 'pandas.core.frame.DataFrame'>\nprint(train.head())\n# 打印文件前几行\nprint(train.describe())\n# 对各列数据进行统计\n```\n\n![](https://github.com/sherlcok314159/ML/blob/main/Images/show.png)\n\n若想访问某一列的值，索引就是列名：\n\n```python\nprint(train[\"doctype\"])\n```\n\n读取某一列特定位置的值，`.values`是全部的值\n\n```python\ntrain[\"doctype\"].values[2]\n```\n\n而且这个可以直接用来matplotlib画图，如：\n\n```python\nimport matplotlib.pyplot as plt\nplt.hist(train[\"doctype\"])\nplt.show()\n```\n\n同时，你还可以对于特定列的特定值进行过滤与替换\n\n```python\n# 定义新的一列new，为doctype列每一个值加1得到\ntrain[\"new\"] = train[\"doctype\"].apply(lambda x : x+ 1)\n# 选取doctype等于0的\ntrain.loc[train[\"doctype\"] == 0]\n```\n\n- 读取json文件\n\n这里介绍json文件的读取，每一行为一个大字典，每一个字典的组成如下：\n\n`{\"id\":xx, \"title\":xx, \"body\":xx, \"category\":xx, \"doctype\":xx}`\n\n```python\nfrom pandas import DataFrame\ndef read_json(your_file):\n    data = [json.loads(line) for line in open(your_file, \"r\", encoding=\"utf-8\")]\n    data_ = DataFrame(data)\n    data_.to_csv(\"example.csv\", index=False, sep=\"\\t\")\n```\n\n***\n### <div id='clean'>清洗数据</div>\n\n原始的文本控制符：（`\\n`），制表符（`\\t`）和回车（`\\r`）以及一些非法字符会影响模型对数据的读入，因而需要去除。\n\n\n```python\ndef clean_text(text:str) -> str:\n    '''去除非法字符以及控制字符 \"\\n\", \"\\t\", \"r\"'''\n    output = []\n    for char in text:\n      cp = ord(char)\n      if cp == 0 or cp == 0xfffd or is_control(char):\n        continue\n      if is_whitespace(char):\n        output.append(\" \")\n      else:\n        output.append(char)\n    return \"\".join(output)\n\n\ndef is_control(char:str) -> bool:\n  \"\"\"检查是否为控制字符\"\"\"\n\n  if char == \"\\t\" or char == \"\\n\" or char == \"\\r\":\n    return False\n  cat = unicodedata.category(char)\n  if cat in (\"Cc\", \"Cf\"):\n    return True\n  return False\n\n\ndef is_whitespace(char:str)-> bool:\n  \"\"\"检查是否为空白字符\"\"\"\n\n  if char == \" \" or char == \"\\t\" or char == \"\\n\" or char == \"\\r\":\n    return True\n  cat = unicodedata.category(char)\n  if cat == \"Zs\":\n    return True\n  return False\n\nExample:\n\nstring = \"今天学文本处理很开心\\n明天要去学校开会\\t回家得好好学习\\r\"\nstring = clean_text(string)\nprint(string)\n\n\"今天学文本处理很开心 明天要去学校开会 回家得好好学习\"\n```\n***\n### <div id='dataset'>Dataset对象</div>\n\n假如一开始的csv用来做多文本分类，`doctype`为标签，需要将`title`和`body`拼接起来作为`text_a`，`text_b`为`None`。一般`__init__`是将文件读取进来，也可以加点预处理步骤。`__len__`就是单纯返回数据集长度。`__getitem`有一个参数`idx`代表每次的索引，这个函数的作用是每次迭代时返回需要的信息。\n\n```python\nfrom torch.utils.data import Dataset\nimport pandas as pd\nimport csv\n\ndef read_csv(your_file):\n    with open(your_file, \"r\", encoding=\"utf-8\") as f:\n        return list(csv.reader(f, delimiter=\"\\t\"))\n\n# 自定义自己的数据集\nclass MyDataset(Dataset):\n    def __init__(self, path):\n        self.file = read_csv(path)\n\n    def __len__(self):\n        return len(self.file)\n    \n    def __getitem__(self, idx):\n        guid = self.file[idx][0]\n        text_a = self.file[idx][1] + self.file[idx][2]\n        text_b = None\n        label = self.file[idx][-1]\n        return guid, text_a, text_b, label\n```\n***\n### <div id='dataloader'>DataLoader</div>\n\nDataLoader的作用是能够迭代地读取上面我们自定义的数据集然后用以训练和评估。\n\n```python\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\n\ntrain_set = MyDataset(your_file)\ntrain_dataloader = DataLoader(train_set, batch_size=64, shuffle=True)\n\n# 方便计时\nfor batch in tqdm(train_dataloader, desc=\"Training\"):\n    model.train()\n    guid, text_a, text_b, label = batch[0], batch[1], batch[2], batch[3]\n    # 后续操作\n\n```\n\n\n"
  },
  {
    "path": "nlp/tasks/text.md",
    "content": "### Bert & Transformer文本分类源码详解\n\n参考论文\n\nhttps://arxiv.org/abs/1706.03762\n\nhttps://arxiv.org/abs/1810.04805\n\n\n在本文中，我将以run_classifier.py以及MRPC数据集为例介绍关于bert以及transformer的源码，官方代码基于tensorflow-gpu 1.x，若为tensorflow 2.x版本，会有各种错误，建议切换版本至1.14。\n\n当然，注释好的源代码在[这里](https://github.com/sherlcok314159/ML/tree/main/nlp/code)\n\n**章节**\n- [Demo传参](#flags)\n    - [跑不动?](#bugs)\n- [数据篇](#data)\n    - [数据读入](#read)\n    - [数据处理](#handle)\n- [词处理](#deal)\n    - [切分](#split)\n    - [词向量编码](#embedding)\n- [TFRecord文件构建](#tf)\n- [模型构建](#model)\n    - [词向量拼接](#connect)\n        - [词向量编码](#token)\n        - [句子类型编码](#type)\n        - [位置编码](#position)\n    - [多头注意力](#head)\n        - [MASK机制](#mask)\n        - [Q,K,V矩阵构建](#qkv)\n    - [损失优化](#loss)\n    - [构建模型](#mode)\n    - [其他注意点](#others)\n\n\n**<div id='flags'>Demo传参</div>**\n\n首先大家拿到这个模型，管他什么原理，肯定想跑起来看看结果，至于预训练模型以及数据集下载。任何时候应该先看[官方教程](https://github.com/google-research/bert)，官方代表着权威，更容易实现，如果遇到问题可以去issues和stackoverflow看看，再辅以中文教程，一般上手就不难了，这里就不再赘述了。\n\n先从Flags参数讲起，到如何跑通demo。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/flags.png)\n\n拿到源码不要慌张，英文注释往往起着最关键的作用，另外阅读源码详细技巧可以看[源码技巧](../source_code.md)。\n\n\"Required Parameters\"意思是必要参数，你等会执行时必须向程序里面传的参数。\n\n```bash\nexport BERT_BASE_DIR=/path/to/bert/uncased_L-12_H-768_A-12\nexport GLUE_DIR=/path/to/glue\n\npython run_classifier.py \\\n  --task_name=MRPC \\\n  --do_train=true \\\n  --do_eval=true \\\n  --data_dir=$GLUE_DIR/MRPC \\\n  --vocab_file=$BERT_BASE_DIR/vocab.txt \\\n  --bert_config_file=$BERT_BASE_DIR/bert_config.json \\\n  --init_checkpoint=$BERT_BASE_DIR/bert_model.ckpt \\\n  --max_seq_length=128 \\\n  --train_batch_size=32 \\\n  --learning_rate=2e-5 \\\n  --num_train_epochs=3.0 \\\n  --output_dir=/tmp/mrpc_output/\n```\n\n这是官方给的示例，这个将两个文件夹加入了系统路径，本人Ubuntu18.04加了好像也找不到，所以建议**将那些文件路径改为绝对路径**。\n\n```python\ntask_name --> 这次任务的名称\ndo_train --> 是否做fine-tune\ndo_eval --> 是否交叉验证\ndo_predict --> 是否做预测\ndata_dir --> 数据集的位置\nvocab_dir --> 词表的位置（一般bert模型下好就能找到） \nbert_config --> bert模型参数设置\ninit_checkpoint --> 预训练好的模型\nmax_seq_length --> 一个序列的最大长度\noutput_dir --> 结果输出文件（包括日志文件）\ndo_lower_case --> 是否小写处理（针对英文）\n\n其他的字面意思\n```\n***\n**<div id='bugs'>跑不动？</div>**\n\n有些时候发现跑demo的时候会出现各种问题，这里简单汇总一下\n\n**1.No such file or directory!**\n\n这个意思是没找到，你需要确保你上面模型和数据文件的路径填正确就可解决\n\n**2.Memory Limit**\n\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/bug.png)\n\n因为bert参数量巨大，模型复杂，如果GPU显存不够是带不动的，就会出现上图的情形不断跳出。\n\n解决方法\n\n- 把batch_size,max_seq_length,num_epochs改小一点\n- 把do_train直接false掉\n- 使用优化bert模型，如Albert,FastTransformer\n\n经过本人实证，把参数适当改小参数，如果还是不行直接不做fine-tune就好，这对迅速跑通demo的人来说最有效。\n\n***\n\n**<div id='data'>数据篇</div>**\n\n这是很多时候我们自己跑别的任务最为重要的一章，因为很多时候模型并不需要你大改，人家都已经给你训练好了，你在它的基础上进行优化就好了。而数据如何读入以及进行处理，让模型可以训练是至关重要的一步。\n\n***\n\n**<div id='read'>数据读入</div>**\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/data.png)\n\n\n简单介绍一下我们的数据，第一列为Quality，意思是前后两个句子能不能匹配得起来，如果可以即为1，反之为0。第二，三两列为ID，没什么意义，最后两列分别代表两个句子。\n\n接下来我们看到DataProcessor类，（有些类的作用仅仅是初始化参数，本文不作讲解）。这个类是父类（超类），后面不同任务数据处理类都会继承自它。它里面定义了一个读取tsv文件的方法。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/read.png)\n\n首先会将每一列的内容读取到一个列表里面，然后将每一行的内容作为一个小列表作为元素加到大列表里面。\n\n***\n**<div id='handle'>数据处理</div>**\n\n\n因为我们的数据集为MRPC，我们直接跳到MrpcProcessor类就好，它是继承自DataProcessor。\n\n这里简要介绍一下os.path.join。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/os_path.png)\n\n我们不是一共有三个数据集，train,dev以及test嘛，data_dir我们给的是它们的父目录，我们如何能读取到它们呢？以train为例，是不是得\"path/train.tsv\"，这个时候，os.path.join就可以把两者拼接起来。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/labels.png)\n\n这个意思是任务的标签，我们的任务是二分类，自然为0&1。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/read_.png)\n\nexamples最终是列表，第一个元素为列表，内容图中已有。\n\n***\n**<div id='deal'>词处理</div>**\n读取数据之后，接下来我们需要对词进行切分以及简单的编码处理\n\n***\n\n\n**<div id='split'>切分</div>**\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/label_map.png)\n\nlabel_list前面对数据进行处理的类里有get_labels参数，返回的是一个列表，如[\"0\",\"1\"]。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/load_vocab.png)\n\n想要切分数据，首先得读取词表吧，代码里面一开始创造一个OrderedDict，这个是为什么呢？\n\n在python 3.5的时候，当你想要遍历键值对的时候它是任意返回的，换句话说它并不关心键值对的储存顺序，而只是跟踪键和值的关联程度，会出现**无序**情况。而OrderedDict可以解决无序情况，它内部维护着一个根据插入顺序排序的双向链表，另外，对一个已经存在的键的重复复制不会改变键的顺序。\n\n需要注意，OrderedDict的大小为一般字典的两倍，尤其当储存的东西大了起来的时候，需要慎重权衡。\n\n但是到了python 3.6，字典已经就变成有序的了，为什么还用OrderedDict，我就有些疑惑了。如果说OrderedDict排序用得到，可是普通dict也能胜任，为什么非要用OrderedDict呢？\n\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/or.png)\n\n\n在tokenization.py文件中提供了三种切分，分别是BasicTokenizer，WordpieceTokenizer和FullTokenizer，下面具体介绍一下这三者。\n\n在tokenization.py文件中遍布convert_to_unicode，这是用来转换为unicode编码，一般来说，输入输出不会有变化。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/clean.png)\n\n这个方法是用来替换不合法字符以及多余的空格，比如\\t,\\n会被替换为两个标准空格。\n\n接下来会有一个_tokenize_chinese_chars方法，这个是对中文进行编码，我们首先要判断一下是否是中文字符吧，_is_chinese_char方法会进行一个判断。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/chinese.png)\n\n如果是中文字符，_tokenize_chinese_chars会将中文字符旁边都加上空格，图中我也有引例注释。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/whitespace.png)\n\nwhitespace_tokenize会进行按空格切分。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/accents.png)\n\n_run_strip_accents会将变音字符替换掉，如résumé中的é会被替换为e。\n\n接下来进行标点字符切分，前提是判断是否是标点吧，_is_punctuation履行了这个职责，这里不再多说。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/punc.png)\n\n以上便是BasicTokenizer的内容了。\n\n接下来是WordpieceTokenizer了，其实这个词切分是针对英文单词的，因为汉字每个字已经是最小的结构，不能进行切分了。而英文还可以进行切分，英文有不同语态，如loved,loves,loving等等，这个时候WordpieceTokenizer就能发挥作用了。\n\n- 遍历一个英文单词里面的小结构，如果发现在词表里找到，就把这个切掉\n- 对未被切分的部分继续进行步骤一，直至所有都被切分干净，注意除了第一个，其他的前面都要加上\"##\"\n\n下面有个gif可以直观显示，[来源](https://alanlee.fun/2019/10/16/bert-tokenizer/)\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/v2-4771d1cfbda7282b74e5713e628290f0_b.gif)\n\n\n最后是FullTokenizer，这个是两者的集成版，先进行BasicTokenizer，后进行WordpieceTokenizer。当然了，对于中文，就没必要跑WordpieceTokenizer。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/full.png)\n\n下面简单提一下convert_by_vocab，这里是将具体的内容转换为索引。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/id.png)\n\n以上就是切分了。\n***\n\n**<div id='embedding'>词向量编码</div>**\n\n刚刚对数据进行了切分，接下来我们跳到函数convert_single_example，进一步进行词向量编码。\n\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/single_features.png)\n\n这里是初始化一个例子。input_ids 是等会把一个一个词转换为词表的索引；segment_ids代表是前一句话（0）还是后一句话（1），因为这还未实例化，所以is_real_example为false。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/tok.png)\n\n此处tokenizer.tokenize是FullTokenizer的方法。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/b_none.png)\n\n不同的任务可能含有的句子不一样，上面代码的意思就是若b不为空，那么max_length = 总长度 - 3，原因注释已有；若b为空，则就需要减去2即可。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/truncate.png)\n\n_truncate_seq_pair进行一个截断操作，里面用了pop()，这个是列表方法，把列表最后一个取出来，英文注释也说了为什么没有按照比例截断，若一个序列很短，那按比例截断会流失信息较多，因为比例是长短序列通用的。同时，_truncate_seq_pair还保证了a,b长度一致。若b为空，a则不需要调用这个方法，直接列表方法取就好。\n\n\n我们不是说需要在开头添加[CLS]，句子分割处和结尾添加[SEP]嘛（本次任务a,b均不为空），刚刚只是进行了一个切分和截断操作。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/cls.png)\n\ntokens是我们用来放序列转换为编码的新列表，segment_ids用来区别是第一句还是第二句。这段代码大意就是在开头和结尾处加入[CLS]，[SEP]，因为是a所以都是第一句，segment_ids就都为0，同时[CLS]和[SEP]也都被当做是a的部分，编码为0。下面关于b的同理。\n\n接下来再把具体内容转换为索引。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/ids.png)\n\n我们一开始的参数不是有max_seq_length嘛，这个代表一整个序列的最大长度（a,b拼接的），但是很多时候我们的总序列长度不会达到最大长度，但是我们又要保证所有输入序列长度一致，即为最大序列长度。所以我们需要对剩下的部分，即没有内容的部分进行填充（Padding），但填充的时候有个问题，一般我们都会添0，但做self-attention的时候（如果还不了解自注意力，可以去主页看看我写的Transformer的论文解读），每一个词要跟句子里面所有的词做内积，但是0是我们人为填充进去的，它不代表任何意义，然而，做自注意力的时候还是要跟它做内积，是不是不太合理呀？\n\n于是就有了MASK机制，什么意思呢？我们把机器需要看，需要做自注意力的保留，不要看的MASK掉，这样做自注意力的时候就不会出岔子。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/mask.png)\n\n同时，只要没达到最大长度，就全部补零。\n\n这个的剩余部分tf.logging是日志，不用管，这个convert_single_example最终返回的是feature，feature包含什么已经具体阐述过了。\n\n\n****\n\n**<div id='tf'>TFRecord文件构建</div>**\n\n\n因为用TFRecord读取文件比较方便快捷，需要转换一下文件格式。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/example.png)\n\n前半部分是examples写入，examples是来自上图方法。features是来自上面刚讲过的convert_single_example方法。\n\n需要注意的是这份run_classifier.py人家谷歌是用TPU跑的，所以会有TPU部分代码，一般我们只用GPU，所以TPU部分不需要关注，一般TPU都会出现TPUEstimator。\n\n***\n\n**<div id='model'>模型构建</div>**\n\n接下来，是构建模型篇，是整个代码中最重要的一部分。接下来我将用代码介绍一下transformer模型的架构。\n\n找到modeling.py文件，这是模型文件。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/bertconfig.png)\n\n首先是BertConfig的类，这里自定义了一些参数及数值。\n\n```python\nvocab_size --> 词表的大小，用别人的词表，这个参数已经固定\nhidden_size --> 隐层神经元个数\nnum_hidden_layers --> encoder的层数\nnum_attention_heads -->注意力头的个数\nintermediate_size --> 中间层神经元个数\nhidden_act --> 隐层激活函数\nhidden_dropout_prob --> 在全连接层中实施Dropout，被去掉的概率\nattention_probs_dropout_prob --> 注意力层dropout比例\nmax_position_embeddings --> 最大位置数目\ninitializer_range --> truncated_normal_initializer的stdev，用来初始化权重参数，从普通正态分布中标准差为0.02的分布中取样出一部分参数，作为初始化权重\n```\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/shape.png)\n\n后面 batch_size x seq_length 会经常出现，这里是原始定义\n\n这里还有个初始化，如果MASK和token_type_ids我们前面没有，这里就默认全为1和0。这是为了后面词嵌入（embedding）做准备。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/mask_type.png)\n\n***\n\n**<div id='connect'>词向量拼接</div>**\n\n接下来正式进入Embedding层的操作，最终传到注意力层的其实是原始token_ids，token_type_ids以及positional embedding拼接起来的。\n\n**<div id='token'>token_ids编码</div>**\n\n首先是token_ids的操作，先来看一下embedding_lookup方法。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/embedding_lookup.png)\n\n这是它的参数，大部分英文注释已有，需要注意的一点是input_ids的shape必须为[batch_size,max_seq_length]。\n\n接下来进行扩维。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/input_shape.png)\n\n等会我们需要在embedding_table里面查找，这里先构建一个[vocab_size,embedding_size]的table。需要注意的是vocab_size 和 embedding_size 都是固定好的，训练的时候不能乱改。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/embedding_table.png)\n\n之后我们对input_ids进行降维，貌似这样可以加速。one_hot_embedding一般为false，这是对TPU加速用的。接下来在embedding_table里面进行查找。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/gather.png)\n\n然后我们把output reshape一下。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/output_reshape.png)\n\n这就是token的编码了。\n\n***\n\n**<div id='type'>句子类型编码</div>**\n\n进行位置编码之前，我们首先进行对token_type_ids的编码（判断是哪一句）。\n\n首先创建token_type_table。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/token_type_table.png)\n\n然后进行一个token_type_embedding，matul是矩阵相乘\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/type_embedding.png)\n\n做好相乘之后，我们需要把token_type_embedding的shape还原，因为等会要将token_type_ids与词编码相加。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/type_reshape.png)\n\n***\n**<div id='position'>位置编码</div>**\n\n首先我们先创造大量的位置，max_position_embeddings是官方给定的参数，不能修改。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/full_position.png)\n\n我们创造了这么多的位置，最终不一定用的完，为了更快速的训练，我们一般做切片处理，只要到我的max_seq_length还有位置就好，后面都可以不要。\n\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/slice.png)\n\n前面要把token_type_embeddings加到input_ids的编码中，进行了同维度处理，这里对于位置编码也一样，不然最后相加不了。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/position_reshape.png)\n\n至此，Embedding层就结束了。\n\nTransformer论文不是说了嘛，在加入位置编码之前会进行一个Dropout操作\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/embedding_dropout.png)\n\n***\n\n**<div id='head'>多头机制</div>**\n\n接下来来到整个transformer模型的精华部分，即为多头注意力机制。\n\n***\n\n**<div id='mask'>MASK机制</div>**\n\n首先来到create_attention_mask_from_input_mask方法，from_seq_length和to_seq_length分别指的是a和b，前面讲关于切分的时候已经说了，切分处理会让a,b长度一致为max_seq_length。所以这里两者长度相等。最后创建了一个shape为(batch_size,from_seq_length,to_seq_length)的MASK。又扩充了一个维度，那这个维度用来干什么呢？我们一开始不是说了吗？自注意的时候需要将填充的部分遮掉，那么多余的维度干的就是这个事。比如我们设置最大长度为8，句子长度为6，那么有一个维度是[1,1,1,1,1,1,0,0]。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/attention_mask_.png)\n\n***\n**<div id='qkv'>Q,K,V矩阵构建</div>**\n\n首先来到attention_layer方法，q,k,v矩阵的激活函数均为None。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/attention_layer.png)\n\n在进入构建之前，最好先熟悉这5个字母的含义。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/convention.png)\n\n开始构建q矩阵，注意q是由from_tensor，即第一个句子构建的。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/q_layer.png)\n\n接着构建k和v矩阵，都是从to_tensor构建的。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/k_layer.png)\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/v_layer.png)\n\n接下来会对q,k矩阵进行加速内积处理，不做深入探讨。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/speed.png)\n\n记得我们在transformer里面需要除以d的维度开根号。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/regularization.png)\n\n\nattention_mask即为上节我们说的MASK，这里进行拓展一个维度。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/attention_expand.png)\n\n这里再简要介绍一下adder。tf.cast方法只是转换数据类型，这里用x代表attention_mask，（1-x）* (-1000)的目的是当attention为1时，即要关注这个，那么(1-x)就越趋近于0，那么做softmax，值就越接近于0，类似地，如果attention为0，那么进过softmax后的值就更接近-1。最后把这个adder加到刚刚我们得到注意力的值，估计这里会有人搞不懂为什么怎么做。\n\n如果关联度很高，那么attention_scores就越接近1，越低，越接近0，但是，很可能是我们补零的部分，所以我们需要对这个进行处理，这里有两种思路，既然是补零的，我们直接去掉就好；或者这里谷歌的做法是如果不需要，直接-1，是不是注意力值就趋近于0了，如果需要，加了0本身值不会发生变化。经过谷歌验证，后者效率更高。\n\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/adder.png)\n\n\n接下来进行transformer模型构建，不难发现这里from_tensor和to_tensor一致，所以是做自注意力。\n\n***\n**<div id='loss'>损失优化</div>**\n\n在bert里面说过，最后拿出开头的[CLS]就可以了。这既是get_pooled_output方法的作用。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/output_cls.png)\n\n最后再连接一个全连接层，最后就是二分类的任务w * x + b\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/loss.png)\n\n\n***\n**<div id='mode'>模型构建</div>**\n\nmodel_fn方法是构建的函数之一，一定一定要小心，虽然上面写着返回给TPUEstimator，可如果你运行过demo的话，输出的很多东西都来源于这个方法。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/model_fn.png)\n\n进入main(_)主方法，需要注意的是，以后我们需要fine-tune，需要把我们自己定义的processor添加进processors。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/my.png)\n\n确认要训练之后，会计算需要一共多少步完成，这里还有个warm-up，意思是一开始呢让learning rate低一下，等到了warm-up proportion之后再还原。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/warm.png)\n\n终于我们开始构建模型了\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/model_fn_builder.png)\n\n最终我们构建了estimator用于后期训练，评估和预测\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/estimator.png)\n\n***\n**<div id='others'>其他注意点</div>**\n\n这是残差相连的部分\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/residuals.png)\n\n还有一点就是记得在transformer中讲过我们会连两层全连接层，一层升维，另一层降维。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/dim_up.png)\n\n接下来进行降维\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/dim_down.png)\n\n\n\n"
  },
  {
    "path": "nlp/tasks/understand.md",
    "content": "### Bert & Transformer阅读理解源码详解\n\n参考论文\n\nhttps://arxiv.org/abs/1706.03762\n\nhttps://arxiv.org/abs/1810.04805\n\n\n在本文中，我将以run_squad.py以及SQuAD数据集为例介绍阅读理解的源码，官方代码基于tensorflow-gpu 1.x，若为tensorflow 2.x版本，会有各种错误，建议切换版本至1.14。\n\n当然，注释好的源代码在[这里](https://github.com/sherlcok314159/ML/tree/main/nlp/code)\n\n**章节**\n- [Demo传参](#flags)\n- [数据篇](#data)\n  - [番外句子分类](#outside)\n  - [创造实例](#example)\n  - [实例转换](#convert)\n- [模型构造](#model)\n- [写入预测](#predict)\n\n**<div id='flags'>Demo传参</div>**\n\n```bash\npython bert/run_squad.py \\\n  --vocab_file=uncased_L-12_H-768_A-12/vocab.txt \\\n  --bert_config_file=uncased_L-12_H-768_A-12/bert_config.json \\\n  --init_checkpoint=uncased_L-12_H-768_A-12/bert_model.ckpt \\\n  --do_train=True \\\n  --train_file=SQUAD_DIR/train-v2.0.json \\\n  --train_batch_size=8 \\\n  --learning_rate=3e-5 \\\n  --num_train_epochs=1.0 \\\n  --max_seq_length=384 \\\n  --doc_stride=128 \\\n  --output_dir=/tmp/squad2.0_base/ \\\n  --version_2_with_negative=True\n```\n\n阅读源码最重要的一点不是拿到就读，而是跑通源码里面的小demo，因为你跑通demo就意味着你对代码的一些基础逻辑和参数有了一定的了解。\n\n前面的参数都十分常规，如果不懂，建议看我的[文本分类](text.md)的讲解。这里讲一下比较特殊的最后一个参数，我们做的任务是阅读理解，如果有答案缺失，在SQuAD1.0是不可以的，但是在SQuAD允许，这也就是True的意思。\n\n需要注意，不同人的文件路径都是不一样的，你不能照搬我的，要改成自己的路径。\n\n***\n\n\n**<div id='data'>数据篇</div>**\n\n其实阅读理解任务模型是跟文本分类几乎是一样的，大的差异在于两者对于数据的处理，所以本篇文章重点在于如何将原生的数据转换为阅读理解任务所能接受的数据，至于模型构造篇，请看[文本分类](text.md)。\n\n***\n\n**<div id='outside'>番外句子分类</div>**\n\n想必很多人看到SquadExample类的_repr_方法都很疑惑，这里处理好一个example，为什么后面还要进行处理？看英文注释会发现这个类其实跟阅读理解没关系，它只是处理之后对于句子分类任务的，自然在run_squad.py里面没被调用。\n\n_repr_方法只是在有start_position的时候进行字符串的拼接。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/repr.png)\n\n***\n\n**<div id='example'>创造实例</div>**\n\n用于训练的数据集是json文件，需要用json库读入。\n\n训练集的样式如下，可见data是最外层的\n\n```python\n{\n    \"data\": [\n        {\n            \"title\": \"University_of_Notre_Dame\",\n            \"paragraphs\": [\n                {\n                    \"context\": \"Architecturally, the school has a Catholic character.\",\n                    \"qas\": [\n                        {\n                            \"answers\": [\n                                {\n                                    \"answer_start\": 515,\n                                    \"text\": \"Saint Bernadette Soubirous\"\n                                }\n                            ],\n                            \"question\": \"To whom did the Virgin Mary allegedly appear in 1858 in Lourdes France?\",\n                            \"id\": \"5733be284776f41900661182\"\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"title\":\"...\",\n            \"paragraphs\":[\n                {\n                    \"context\":\"...\",\n                    \"qas\":[\n                        {\n                            \"answers\":[\n                                {\n                                    \"answer_start\":..,\n                                    \"text\":\"...\",\n                                }\n                            ],\n                            \"question\":\"...\",\n                            \"id\":\"...\"\n                        },\n                    ]\n                }\n            ]\n        }\n    ]\n}\n```\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/json.png)\n\ninput_data是一个大列表，然后每一个元素样式如下\n\n```python\n{'paragraphs': [{...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}, ...], 'title': 'University_of_Notre_Dame'}\n```\n\nis_whitespace方法是用来判断是否是一个空格，在切分字符然后加入doc_tokens会用到。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/white.png)\n\n\n然后我们层层剥开，然后遍历context的内容，它是一个字符串，所以遍历的时候会遍历每一个字母，字符会被进行判断，如果是空格，则加入doc_tokens，char_to_word_offset表示切分后的索引列表，每一个元素表示一个词有几个字符组成。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/context.png)\n\n切分后的doc_tokens会去掉空白部分，同时会包括英文逗号。一个单词会有很多字符，每个字符对应的索引会存在char_to_word_offset，例如，前面都是0，代表这些字符都是第一个单词的，所以都是0，换句话说就是第一个单词很长。\n\n```python\ndoc_tokens = ['Architecturally,', 'the', 'school', 'has', 'a', 'Catholic', 'character.', 'Atop', 'the',\"...\"]\n\nchar_to_word_offset = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...]\n```\n接下来进行qas内容的遍历，每个元素称为qa，进行id和question内容的分配，后面都是初始化一些参数\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/qas.png)\n\nqa里面还有一个is_impossible，用于判断是否有答案\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/ispossible.png)\n\n确保有答案之后，刚刚读入了问题，现在读入与答案相关的部分，读入的时候注意start_position和end_position是相对于doc_tokens的\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/answer.png)\n\n接下来对答案部分进行双重检验，actual_text是根据doc_tokens和始末位置拼接好的内容，然后对orig_answer_text进行空格切分，最后用find方法判断orig_answer_text是否被包含在actual_text里面。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/find.png)\n\n这个是针对is_impossible来说的，如果没有答案，则把始末位置全部变成-1。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/impossible.png)\n\n然后将example变成SquadExample的实例化对象，将example加入大列表——examples并返回，至此实例创建完成。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/example_.png)\n\n***\n\n**<div id='convert'>实例转换</div>**\n\n把json文件变成实例之后，我们还差一步便可以把数据塞进模型进行训练了，那就是将实例转化为变量。\n\n先对question_text进行简单的空格切分变为query_tokens\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/example_tokenize.png)\n\n如果问题过长，就进行截断操作\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/question_slice.png)\n\n接下来对doc_tokens进行空格切分以及词切分，变成all_doc_tokens，需要注意的是orig_to_tok_index代表的是doc_tokens在all_doc_tokens的索引，取最近的一个，而tok_to_orig_index代表的是all_doc_tokens在doc_tokens索引\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/subtoken.png)\n\n对tok_start_position和tok_end_position进行初始化，记住，这两个是相对于all_doc_tokens来说的，一定要与start_position和end_position区分开来，它们是相对于doc_tokens来说的\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/tok_start.png)\n\n接下来先介绍_improve_answer_span方法，这个方法是用来处理特殊的情况的，举个例子，假如说你的文本是\"The Japanese electronics industry is the lagest in the world.\"，你的问题是\"What country is the top exporter of electornics?\" 那答案其实应该是Japan，可是呢，你用空格和词切分的时候会发现Japanese已经在词表中可查，这意味着不会对它进行再切分，会直接将它返回，这种情况下可能需要这个方法救场。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/_improve.png)\n\n因为是监督学习，答案已经给出，所以呢，这个方法干的事情就是词切分后的tokens进行再一次切分，如果发现切分之后会有更好的答案，就返回新的始末点，否则就返回原来的。\n\n对tok_start_position和tok_end_position进行进一步赋值\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/tok_.png)\n\n\n计算max_tokens_for_doc，与文本分类类似，需要减去[CLS]和两个[SEP]的位置，这里不同的是还要减去问题的长度，因为这里算的是文本的长度。\n\ntokens = [CLS] query tokens [SEP] context [SEP]\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/squad_length.png)\n\n很多时候文章长度大于maximum_sequence_length的时候，这个时候我们要对文章进行切片处理，把它按照一定长度进行切分，每一个切片称为一个doc_span，start代表从哪开始，length代表一个的长度。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/doc_span.png)\n\ndoc_spans储存很多个doc_span。这里对窗口的长度有所限制，规定了start_offset不能比doc_stride大，这是第二个窗口的起点，从这个角度或许可以理解doc_stride代表平滑的长度。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/doc_stride.png)\n\n接下来的操作跟文本分类有些类似，添加[CLS]，然后添加问题和[SEP]，这些在segment_ids里面都为0。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/cls_0.png)\n\n下面讲_check_is_max_context方法，这个方法是用来判断某个词是否具有完备的上下文关系，源代码给了一个例子：\n\nSpan A: the man went to the\n\nSpan B: to the store and bought\n\nSpan C: and bought a gallon of ...\n\n那么对于bought来说，它在Span B和Span C中都有出现，那么，哪一个上下文关系最全呢？其实我们凭直觉应该可以猜到应该是Span C，因为Span B中bought出现在句末，没有下文。当然了，我们还是得用公式计算一下\n\n```python\nscore = min(num_left_context, num_right_context) + 0.01 * doc_span.length\n```\n\nscore_B = min(4, 0) + 0.05 = 0.05\n\nscore_C = min(1,3) + 0.05 = 1.05\n\n所以，在Span C中，bought的上下文语义最全，最终该方法会返回True or False，在滑动窗口这个方法中，一个词很可能出现在多个span里面，所以用这个方法判断当前这个词在当前span里面是否具有最完整的上下文\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/is_max.png)\n\n回到上面，token_to_orig_map是用来记录文章部分在all_doc_tokens的索引，而token_is_max_context是记录文章每一个词在当前span里面是否具有最完整的上下文关系，因为一开始只有一个span，那么一开始每个词肯定都是True。split_token_index用于切分成每一个token，这样可以进行上下文关系判断，至于后面添[SEP]和segment_ids添1这种操作文本分类也有。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/token_max_span.png)\n\n接下来将tokens（精细化切分后的）按照词表转化为id，另外若不足，则把0填充进去这种操作也是很常见的。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/pad.png)\n\n前面是进行判断，如果切了之后答案并不在span里面就直接舍弃，若在里面，因为一开始all_doc_tokens里面没有问题和[CLS],[SEP]时正文的索引是tok_start_position，然后转换为input_ids又有问题以及[CLS],[SEP]，所以要得到正文索引需要跳过它们。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/doc_offset.png)\n\n接下来大量的tf.logging只是写入日志信息，同时也是你终端或输出那里看到的。\n\n最终用这些参数实例化InputFeatures对象，然后不断重复，每一个feature对应着一个特殊的id，即为unique_id。\n***\n\n**<div id='model'>模型构建</div>**\n\n这里大致与文本分类差不多，只是文本分类在模型里面直接进行了softmax处理，然后进行最小交叉熵损失，而这次我们没有直接这样做，得到了开头和结尾处的未归一化的概率logits，之后我们直接返回。\n\n然后这次我们是在model_fn_builder方法里面的子方法model_fn里定义compute_loss，其实这里也是经过softmax进行归一化，然后再计算交叉熵损失，最终返回均方误差。\n\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/compute.png)\n\n\n然后我们计算开头和结尾处的损失，总损失为二者和的平均。\n\n最终我们进行优化。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/optimization.png)\n***\n\n**<div id='predict'>写入预测</div>**\n\nstart_logit & end_logit 代表着未经过softmax的概率，start_logit表示tokens里面以每一个token作为开头的概率，后者类似的。还有一对null_start_logit & null_end_logit，它们两个代表的是SQuAD2.0没有答案的那些，默认全为0。\n\n首先，简单介绍一下_get_best_indexes，这个方法是用来输出由高到低前n_best_size个的概率的索引。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/get_indexes.png)\n\n遍历start_indexes，end_indexes（都是分别经过_get_best_indexes得到），对于答案未缺失的，以具体的logit填入，另外，feature_index代表第几个feature。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/with_prediction.png)\n\n如果答案缺失，则全都为0\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/without_prediction.png)\n\n接下来我们进一步转换为具体的文本\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/pred.png)\n\n然后进一步清洗数据\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/clean_.png)\n\n这样还有个问题，词切分会自动小写，与答案还存在一定的偏移，这里介绍get_final_text方法来解决这一问题，比如：\n\npred_text = steve smith\n\norig_text = Steve Smith's\n\n这个方法通俗来讲就是获得orig_text（未经过词切分）上正确的截取片段。\n\n然后将其添加到nbest中\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/nbest.png)\n\n同样会存在没有答案的情况\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/nbest_.png)\n\n接下来会有一个total_scores，它的元素是start_logit和end_logit相加，注意，它们不是数值，是数组，之后就计算total_scores的交叉熵损失作为概率。\n\n![](https://github.com/sherlcok314159/ML/blob/main/nlp/Images/probs.png)\n\n剩下的部分跟文本分类差不多，这里就此略过。\n\n\n\n\n"
  },
  {
    "path": "optimization/GD.md",
    "content": "### Gradient Descent\r\n\r\n**章节**\r\n- [BGD](#bgd)\r\n- [SGD](#sgd)\r\n- [Better](#better)\r\n    - [Momentum](#mom)\r\n    - [RMSProp](#rms)\r\n    - [Adam](#adam)\r\n    - [Adagrad](#adag)\r\n- [参考文献](#references)\r\n\r\n一开始挑好模型集合之后，接着定义出一个损失函数，那么机器学习就变成**优化问题**，找出一组参数，使得**Loss**最小。\r\n\r\n\r\n在这个例子，我们以PM2.5值预测为例，选的是**Linear Regression**模型。\r\n\r\n\r\n我们选的**Loss Function**是**RMSE(Root Mean Square Error)**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/root_mean_square_error.png)\r\n\r\n**<div id='bgd'>Batch-Gradient-Descent</div>**\r\n\r\n\r\n```python\r\ndef BGD(T,lr):\r\n    #initialize \r\n    w = 0\r\n    for i in range(T):\r\n        w = w - lr * gradient(w)\r\n    return w\r\n```\r\n**参数解释**\r\n<!-- **** -->\r\n**BGD**其实就是原始的梯度下降算法，**Learning Rate(lr)** 决定了参数更新的速度。e.g.假如你在山顶上，现在你要跑到山谷处，**Learning Rate** 就相对于你迈出多大步（i.e.Step Size）。\r\n\r\n梯度是所有的**w**微分之后所组成的一个向量\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/gradient.png)\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/gd_0.png)\r\n\r\n\r\n有人会问为什么是**w**减，而不是**w**加呢？\r\n\r\n斜率若为正，按照直觉知道左边函数值小，那应该往左走，就是**w**减去一个正数。\r\n\r\n斜率若为负，函数值是左大右小，那么应该往右走，就是**w**加上一个正数。\r\n\r\n\r\n迭代次数的设定其实没什么好说的。我们来讨论一下**Learning Rate**。\r\n\r\n**A.** 若**lr**稍微大点会如何呢？\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/gd_1.png)\r\n\r\n我们会发现上面四步我们两步就到了，是不是很激动？那我们更大一点会如何呢？\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/gd_2.png)\r\n\r\n直接烂掉，**如果太大，会发生大幅度的偏离** ，如果是实操，输出会是**nan**\r\n\r\n**B.** 若**lr**稍微小一点呢？\r\n\r\n这里就不画图了。不过是走的时间多一点，更新参数次数多一点。只要不是小碎步，你最终还是可以走到全局最优的。\r\n\r\n\r\n**注意**\r\n\r\n**它走的方向只是在图像上往左还是往右**，本质上是横坐标的**加减变化**，而不是按照斜率去走的。梯度可以想象成你走之前往旁边看一眼，看看是不是更低一点。然后你再决定往左还是往右走。 \r\n\r\n**w**没有必要设成零向量，还得看看维度，直接设成0，第一次迭代结束就是一个向量了\r\n\r\n不同人的**Loss Function**的设定可能不一样，因为可以是预测值减去真实值，也可以是真实值减去预测值，因为是均方偏差。你看别人的代码需要注意这一点，**因为微分后不同的写法决定梯度是否差一个负号**\r\n\r\n所优化的函数一定要**可微！可微！可微！**，那遇到不可微的怎么办呢？\r\n\r\n比如说 [ReLu](../NN/activation.md)，既然在原点处不可微，那就直接不看好了，因为输入很小机率是0\r\n\r\n接下来讨论一下跟它很像的SGD\r\n\r\n**<div id='sgd'>Stochastic-Gradient-Descent</div>**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/sgd.png)\r\n\r\n**注意**，虽然BGD和SGD看起来很像，但其实BGD是将整个数据看过一遍；而SGD只是从Dataset中Sample出某一个点。所以两者的梯度都不一样，前者梯度会带求和符号，而SGD就单个点的梯度。\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/sgd_2.png)\r\n\r\n可以看出，SGD收敛的十分**剧烈**\r\n\r\n***BGD VS SGD？***\r\n\r\nSGD is better in 3 reasons:\r\n\r\n**1.Fast Computation**。虽然BGD很稳定，但是它必须看过整个数据才能进行更新参数，而数据量太大，会花很长时间。\r\n\r\n**2.Beat Local Minimum** BGD有时候会被卡在局部最优，而SGD可能有望跳出来\r\n\r\n**3.Avoid Overfitting** 有的时候我们选择SGD是不想要过拟合，BGD的拟合效果是好于SGD的\r\n\r\n****\r\n\r\n细心的读者会发现图中有一个 **Convex** ，意思是凸函数。类如**f(x) = (x - 2) ^ 2**\r\n\r\n理想总是很丰满，那是因为你没有经历过社会（数据）的毒打，如果不是 **Convex** ，会是如何呢？\r\n\r\n****\r\n\r\n**<div id='better'>问题探讨</div>**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/gd.png)\r\n\r\n从上图中不难发现我们卡在**Local Minimum**了，我们想要到达**Global Minimum**，有人可能会想，卡住了没关系，我迭代次数多一点，让他慢慢走出来不就行了？细心观察就会明白，小步伐的时候，严格按照**Gradient** 指引的方向走，左右两边是相反方向。i.e. 你会一直往返直到结束\r\n\r\n那么，如何解决这个问题呢？\r\n\r\n**1.依靠惯性**\r\n\r\n假如他卡在那个**Local**的地方了，他如果具有惯性，能够自己滚出来，会不会有机会到达**Global**？\r\n\r\n**<div id='mom'>Momentum</div>**\r\n\r\n```python\r\ndef momentum(T,lr,k):\r\n    w = 0\r\n    v = 0\r\n    for i in range(T):\r\n        v = k * v - lr * gradient(w)\r\n        w = w + v\r\n    return w \r\n```\r\n\r\n\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/momentum.png)\r\n\r\n当然，这个方法还是比较看人品的，参数**k**是需要你自己调的。是时候表演真正的技术（人品）了，一般在 **[0.5,0.9]** 的范围调，来决定惯性对整个式子的影响程度。\r\n\r\n像我一直脸黑，当然不能靠这种。\r\n\r\n**<div id='rms'>2.RMSProp</div>**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/rmsprop.png)\r\n\r\n其他跟**BGD**一样\r\n\r\n**<div id='adam'>3.Adam</div>**\r\n\r\n\r\n**Adam = RMSProp + Momentum**\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/adam.png)\r\n\r\n\r\n**4.Adagrad**\r\n\r\n可以将缩写理解为**Adaptive Gradient Descent**，意思就是**lr**会随着参数的更新一起对应更新\r\n\r\n与**BGD**相比，这个不一样罢了\r\n\r\n![](https://github.com/sherlcok314159/ML/blob/main/Images/adagrad.png)\r\n\r\n里面还加了一个极小的数，防止分母为0，一般取1.0e-7\r\n\r\n****\r\n\r\n**<div id='references'>参考文献</div>**\r\n\r\n\r\nhttps://openlearninglibrary.mit.edu/courses/course-v1:MITx+6.036+1T2019/courseware/Week4/gradient_descent/?activate_block_id=block-v1%3AMITx%2B6.036%2B1T2019%2Btype%40sequential%2Bblock%40gradient_descent"
  },
  {
    "path": "problems.md",
    "content": "### 问题库\n\n集锦\n\n- [Colab](#colab)\n- [处理文件](#file)\n\n\n**<div id='colab'>Colab——深度学习</div>**\n\n- 切换tensorflow版本：\n```python\n%tensorflow_version 1.x #切换至1.x\nimport tensorflow\nprint(tensorflow.__version__) #验证版本\n```\n\n- 下载东西：\n```bash\n!wget + 链接 （colab命令行前面加!，另外，下载东西可以一起下，中间加空格即可）\n# e.g. !wget https://dl.fbaipublicfiles.com/senteval/senteval_data/msr_paraphrase_train.txt https://dl.fbaipublicfiles.com/senteval/senteval_data/msr_paraphrase_test.txt\n\n```\n\n- 源码项目：\n```bash\n!git clone + 链接\n# e.g. !git clone https://github.com/carlos9310/bert.git\n```\n\n- 创造文件夹\n```bash\n!mkdir SQUAD_DIR && cd SQUAD_DIR # 导航至该文件下\n# 另外可以支持多条命令 &&即可 \n```\n\n- 切换GPU：> 代码执行程序 > 更改运行类型\n\n- 计时\n\n```bash\n%%time\n```\n\n- debug\n```bash\n%debug print(i)\n```\n![](https://github.com/sherlcok314159/ML/blob/main/Images/debug.png)\n\n- 定位到自己云盘\n\n```python\nfrom google.colab import drive\ndrive.mount(\"/content/drive\")\n```\n\n- 把云盘某文件夹当做工作区\n\n```bash\n!cd /content/drive/MyDrive/R-transformer\n```\n\n```python\nimport os\npath = \"/content/drive/MyDrive/R-transformer\"\nos.chdir(path)\nos.listdir(path)\n```\n\n- 终端运行Python文件\n\n```bash\npython file.py\n```\n\n- bash报错\n\nbash不能留空\n\n- 终端运行bash文件\n\n```bash\nbash xxx.sh\n```\n\n- \"Consider using the `--user` option or check the permissions.\"\n\n```bash\npip3 install --user 包名\n```\n\n- bash运行报错，默认Linux执行bash是python2\n```\npython3 main.py\n```\n\n- pip批量安装\n\n```bash\npip3 install --user -r requirements.txt\n```\n\n- pip全局设定清华源\n\n```bash\npip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple\n```\n\n临时使用：\n```bash\npip install -i https://pypi.tuna.tsinghua.edu.cn/simple pip -U\n```\n***\n\n- 检测 GPU运行时间和内存\n```\n%load_ext scalene\n```\n\n**<div id='file'>文件处理</div>**\n\n- json文件结构不清楚，可以在vscode中格式化文档，用json美化拓展\n\n- Ubuntu 直接解压zip文件会出现中文乱码现象，用下列命令：\n```bash\nunzip -O CP936 xxx.zip\n```\n\n- Ubuntu解压.rar文件\n\n```\nsudo apt-get install unrar\nunrar e filename\n```\n\n- 生成该环境所有包\n\n```bash\npip freeze > requirements.txt\n```\n\n- 生成某个项目的包\n\n```\npip install pipreqs\ncd 根目录\npipreqs ./ --encoding=utf8 --force\n```\n\n- 中文乱码问题\n\n试试转换编码（UTF-8/GB-18030/GBK）\n\n- 程序报错\n\n利用try-except语句或者编辑器自带的debug工具\n\n- Expected object of scalar type Float but got scalar type Double for argument #3 'weight' in call to _thnn_nll_loss_forward\n\n```python\nweight = np.ones(39,dtype=np.float32)\n```\n\nfloat32和float64（`FLOAT`）并不等价\n\n\n- curl命令出现无法获取内容或需要权限\n\n```bash\nsudo curl url\n```\n\n- json.loads单引号报错，直接用\n```python\njs = json.loads(json.dumps(eval(s)))\n```\n\n- 引用包出错\n```python\nfrom pysrc.Config import *\n```\n\n- pandas读取文件\n\n```python\ndata = pd.read_csv(path, header=None, sep=\"\\t\")\n```\n- pip 找不到\n\n尝试更新Pip\n```bash\npip install --upgrade pip\n```\n\n- 一个Pip源没有的时候\n```bash\npip install --upgrade pip -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com\n```\n- from_pretrained()报\n\n```python\nUnicodeDecodeError: 'utf-8' codec can't decode byte 0x80 in position 0: invalid start byte\n```\n不指定具体路径即可\n\n```python\nmodel = xxx.from_pretrained(dir)\n```\n- 写入json\n```python\nwith open(\"test.json\", \"w) as f:\n  json.dump(\"{}\", f)\n```\n\n- latex 两列\n\n```python\n\\begin{figure*}\n\n\\end{figure*}\n```\n\n- matplotlib保存图片不清晰\n```python\nplt.savefig('output.png', dpi=500, bbox_inches='tight')\nplt.show() ## show()一定要在后面，否则会空白\n```\n\n- zsh 安装后conda不能正常使用\n\n```python\nvim ~/.zshrc\n\nexport PATH=/home/username/anaconda3/bin:$PATH\n\nsource ~/.zshrc\n```\n\n- latex 左引号(``)\n\n- latex 索引排序\n\n```python\n\\bibliographystyle{unsrt}\n```\n- latex bib排序\n\n```python\n1. 创建.bib文件\n2. 开头：\n\\usepackage{cite}\n\\begin{document}\n3. \n\\bibliographystyle{unsrt/plain}\n\\bibliography{UN}\n```\n\n- latex表格宽度\n\n```python\n\\setlength{\\belowcaptionskip}{0.2cm}\n```\n\n- latex斜体公理\n```python\n\\newtheorem{assump}{Assumption}\n\n\\begin{assump}\nxxx\n\\end{assump}\n```\n\n- latex 共一\n\n```python\n\\equalcontrib\n```\n\n- word打印图片吞图\n\n```\n插入而非复制图片\n```\n\n- ubuntu查看所有已安装包\n\n```bash\napt list --installed\n```\n- ubuntu查看某个目录或包大小\n\n```\ndu -sh directory/file\n```\n\n- ubuntu查看代理设置\n```\nenv|grep -i proxy\n```\n若不能上网，直接将所有proxy置为零即可\n```\nexport http_proxy=\"\"\nexport https_proxy=\"\"\nexport ftp_proxy=\"\"\nexport NO_PROXY=\"\"\n```\n\n- Ubuntu查看某个文件内容\n\n```\ncat file\n```\n"
  }
]